diff --git a/.github/workflows/pr-metadata.yml b/.github/workflows/pr-metadata.yml index 625ee6bd5c4..21f4fcd7412 100644 --- a/.github/workflows/pr-metadata.yml +++ b/.github/workflows/pr-metadata.yml @@ -101,6 +101,19 @@ jobs: break; } + const changedLines = files.reduce((sum, file) => sum + file.additions + file.deletions, 0); + let priority = 'Medium'; + if (labels.has('data') && (files.length >= 25 || changedLines >= 1000)) { + priority = 'High'; + } else if (labels.has('data') || labels.has('app') || title.startsWith('fix')) { + priority = 'High'; + } else if (labels.size === 1 && labels.has('documentation')) { + priority = 'Low'; + } else if (changedLines <= 25 && !labels.has('ci')) { + priority = 'Low'; + } + core.exportVariable('TRIAGE_PRIORITY', priority); + const trackingIssuesByLabel = new Map([ ['data', 1], ['site', 19], @@ -131,20 +144,97 @@ jobs: body: updatedBody, }); } - } - const changedLines = files.reduce((sum, file) => sum + file.additions + file.deletions, 0); - let priority = 'Medium'; - if (labels.has('data') && (files.length >= 25 || changedLines >= 1000)) { - priority = 'High'; - } else if (labels.has('data') || labels.has('app') || title.startsWith('fix')) { - priority = 'High'; - } else if (labels.size === 1 && labels.has('documentation')) { - priority = 'Low'; - } else if (changedLines <= 25 && !labels.has('ci')) { - priority = 'Low'; + const changedByTopLevel = new Map(); + const changedData = new Map([ + ['brand', { added: 0, modified: 0, deleted: 0 }], + ['soc', { added: 0, modified: 0, deleted: 0 }], + ['smartphone', { added: 0, modified: 0, deleted: 0 }], + ['gpu', { added: 0, modified: 0, deleted: 0 }], + ['cpu', { added: 0, modified: 0, deleted: 0 }], + ]); + for (const file of files) { + const top = file.filename.split('/')[0] || '(root)'; + changedByTopLevel.set(top, (changedByTopLevel.get(top) || 0) + 1); + const parts = file.filename.split('/'); + if (parts[0] === 'data' && changedData.has(parts[1])) { + const bucket = changedData.get(parts[1]); + const status = file.status === 'removed' + ? 'deleted' + : file.status === 'added' + ? 'added' + : 'modified'; + bucket[status] += 1; + } + } + + const dataRows = [...changedData.entries()] + .filter(([, counts]) => counts.added || counts.modified || counts.deleted) + .map(([category, counts]) => `| ${category} | ${counts.added} | ${counts.modified} | ${counts.deleted} |`) + .join('\n') || '| none | 0 | 0 | 0 |'; + const topRows = [...changedByTopLevel.entries()] + .sort((a, b) => b[1] - a[1]) + .slice(0, 8) + .map(([area, count]) => `| ${area} | ${count} |`) + .join('\n'); + const labelText = [...labels].sort().map((label) => `\`${label}\``).join(', ') || 'none'; + const trackerComment = [ + ``, + `## Linked PR update: ${pr.title} #${issue_number}`, + '', + `- PR: ${pr.html_url}`, + `- Branch: \`${pr.head.ref}\``, + `- Author: @${pr.user.login}`, + `- Labels: ${labelText}`, + `- Priority: ${priority}`, + `- Files changed: ${files.length}`, + `- Lines changed: +${files.reduce((sum, file) => sum + file.additions, 0)} / -${files.reduce((sum, file) => sum + file.deletions, 0)}`, + '', + '### Changed Data', + '', + '| Category | Added | Modified | Deleted |', + '| --- | ---: | ---: | ---: |', + dataRows, + '', + '### Changed Areas', + '', + '| Area | Files |', + '| --- | ---: |', + topRows || '| none | 0 |', + '', + '### Notes', + '', + '- This is an automatic tracking comment for the long-running issue.', + '- PR validation details are posted on the PR by TechEngineBot.', + '- The tracker issue remains open even when the PR uses `Closes #...` for GitHub Development linking.', + ].join('\n'); + + for (const issueNumber of trackingIssues) { + const comments = await github.paginate(github.rest.issues.listComments, { + owner, + repo, + issue_number: issueNumber, + per_page: 100, + }); + const marker = ``; + const existing = comments.find((comment) => comment.body?.includes(marker)); + if (existing) { + await github.rest.issues.updateComment({ + owner, + repo, + comment_id: existing.id, + body: trackerComment, + }); + } else { + await github.rest.issues.createComment({ + owner, + repo, + issue_number: issueNumber, + body: trackerComment, + }); + } + } } - core.exportVariable('TRIAGE_PRIORITY', priority); - name: Add PR to configured projects if: env.TRIAGE_PROJECT_URLS != '' && env.PROJECT_TOKEN != '' diff --git a/data/smartphone/alcatel/2016/one-touch-pop-4-global-dual-sim-lte-5056d-pop-4-plus.json b/data/smartphone/alcatel/2016/one-touch-pop-4-global-dual-sim-lte-5056d-pop-4-plus.json new file mode 100644 index 00000000000..20ecaf2e66e --- /dev/null +++ b/data/smartphone/alcatel/2016/one-touch-pop-4-global-dual-sim-lte-5056d-pop-4-plus.json @@ -0,0 +1,41 @@ +{ + "slug": "one-touch-pop-4-global-dual-sim-lte-5056d-pop-4-plus", + "name": "One Touch Pop 4+ Global Dual SIM LTE 5056D / Pop 4 Plus", + "brand": "alcatel", + "soc": "snapdragon-210", + "release_date": "2016-03-01", + "ram_gb": 2, + "battery_mah": 2500, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "6.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Czech , Denmark , Estonia , Finland , France , Germany , Hungary , Italy , Latvia , Lithuania , Netherlands , Norway , Pakistan , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Switzerland , Sweden , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/alcatel/2016/one-touch-pop-4-lte-latam-5056a-pop-4-plus.json b/data/smartphone/alcatel/2016/one-touch-pop-4-lte-latam-5056a-pop-4-plus.json new file mode 100644 index 00000000000..c8af4eda6d9 --- /dev/null +++ b/data/smartphone/alcatel/2016/one-touch-pop-4-lte-latam-5056a-pop-4-plus.json @@ -0,0 +1,42 @@ +{ + "slug": "one-touch-pop-4-lte-latam-5056a-pop-4-plus", + "name": "One Touch Pop 4+ LTE LATAM 5056A / Pop 4 Plus", + "brand": "alcatel", + "soc": "snapdragon-210", + "release_date": "2016-09-01", + "ram_gb": 2, + "battery_mah": 2500, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "6.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/alcatel/2016/one-touch-pop-4-plus-dual-sim-lte-am-5056e-pop-4.json b/data/smartphone/alcatel/2016/one-touch-pop-4-plus-dual-sim-lte-am-5056e-pop-4.json new file mode 100644 index 00000000000..3ba5fe396b6 --- /dev/null +++ b/data/smartphone/alcatel/2016/one-touch-pop-4-plus-dual-sim-lte-am-5056e-pop-4.json @@ -0,0 +1,42 @@ +{ + "slug": "one-touch-pop-4-plus-dual-sim-lte-am-5056e-pop-4", + "name": "One Touch Pop 4 Plus Dual SIM LTE AM 5056E / Pop 4+", + "brand": "alcatel", + "soc": "snapdragon-210", + "release_date": "2016-08-01", + "ram_gb": 2, + "battery_mah": 2500, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "6.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Canada , Ecuador , Mexico , Peru , USA", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/alcatel/2016/one-touch-pop-4-plus-lte-am-5056g-pop-4.json b/data/smartphone/alcatel/2016/one-touch-pop-4-plus-lte-am-5056g-pop-4.json new file mode 100644 index 00000000000..0d659d9cd58 --- /dev/null +++ b/data/smartphone/alcatel/2016/one-touch-pop-4-plus-lte-am-5056g-pop-4.json @@ -0,0 +1,42 @@ +{ + "slug": "one-touch-pop-4-plus-lte-am-5056g-pop-4", + "name": "One Touch Pop 4 Plus LTE AM 5056G / Pop 4+", + "brand": "alcatel", + "soc": "snapdragon-210", + "release_date": "2016-09-01", + "ram_gb": 2, + "battery_mah": 2500, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "6.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Argentina , Canada , Chile , Paraguay , Peru", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/alcatel/2018/5v-dual-sim-lte-emea.json b/data/smartphone/alcatel/2018/5v-dual-sim-lte-emea.json new file mode 100644 index 00000000000..fccc4edbbfc --- /dev/null +++ b/data/smartphone/alcatel/2018/5v-dual-sim-lte-emea.json @@ -0,0 +1,41 @@ +{ + "slug": "5v-dual-sim-lte-emea", + "name": "5V Dual SIM LTE EMEA", + "brand": "alcatel", + "soc": "helio-p22", + "release_date": "2018-07-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 158.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1500", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB C reversible" + }, + "market_countries": "France , Germany , Hungary , Italy , Poland , Portugal , Romania , Russia , Spain , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/alcatel/2018/7-lte-am-6062w.json b/data/smartphone/alcatel/2018/7-lte-am-6062w.json new file mode 100644 index 00000000000..67f2ef00b04 --- /dev/null +++ b/data/smartphone/alcatel/2018/7-lte-am-6062w.json @@ -0,0 +1,41 @@ +{ + "slug": "7-lte-am-6062w", + "name": "7 LTE AM 6062W", + "brand": "alcatel", + "soc": "helio-p23", + "release_date": "2018-09-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2180", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/alcatel/2019/3-2019-dual-sim-lte-emea-32gb-5053d.json b/data/smartphone/alcatel/2019/3-2019-dual-sim-lte-emea-32gb-5053d.json new file mode 100644 index 00000000000..879ebb3cb49 --- /dev/null +++ b/data/smartphone/alcatel/2019/3-2019-dual-sim-lte-emea-32gb-5053d.json @@ -0,0 +1,41 @@ +{ + "slug": "3-2019-dual-sim-lte-emea-32gb-5053d", + "name": "3 2019 Dual SIM LTE EMEA 32GB 5053D", + "brand": "alcatel", + "soc": "snapdragon-439", + "release_date": "2019-04-01", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.94, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 289 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Austria , Belgium , Bulgaria , Czech , Estonia , France , Germany , Hungary , Italy , Latvia , Lithuania , Netherlands , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , Spain , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/alcatel/2019/3-2019-dual-sim-lte-emea-64gb-5053k.json b/data/smartphone/alcatel/2019/3-2019-dual-sim-lte-emea-64gb-5053k.json new file mode 100644 index 00000000000..ccbdb139eb8 --- /dev/null +++ b/data/smartphone/alcatel/2019/3-2019-dual-sim-lte-emea-64gb-5053k.json @@ -0,0 +1,41 @@ +{ + "slug": "3-2019-dual-sim-lte-emea-64gb-5053k", + "name": "3 2019 Dual SIM LTE EMEA 64GB 5053K", + "brand": "alcatel", + "soc": "snapdragon-439", + "release_date": "2019-04-01", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.94, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 289 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Belgium , Bulgaria , Czech , France , Germany , Hungary , Italy , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , Spain", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/alcatel/2019/3-2019-lte-emea-32gb-5053y.json b/data/smartphone/alcatel/2019/3-2019-lte-emea-32gb-5053y.json new file mode 100644 index 00000000000..88eced247fd --- /dev/null +++ b/data/smartphone/alcatel/2019/3-2019-lte-emea-32gb-5053y.json @@ -0,0 +1,41 @@ +{ + "slug": "3-2019-lte-emea-32gb-5053y", + "name": "3 2019 LTE EMEA 32GB 5053Y", + "brand": "alcatel", + "soc": "snapdragon-439", + "release_date": "2019-04-01", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.94, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 289 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Austria , Belgium , Bulgaria , Czech , Estonia , France , Germany , Hungary , Italy , Latvia , Lithuania , Netherlands , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , Spain , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/alcatel/2019/3x-2019-dual-sim-lte-emea-128gb-5048u.json b/data/smartphone/alcatel/2019/3x-2019-dual-sim-lte-emea-128gb-5048u.json new file mode 100644 index 00000000000..3cb7291ddb3 --- /dev/null +++ b/data/smartphone/alcatel/2019/3x-2019-dual-sim-lte-emea-128gb-5048u.json @@ -0,0 +1,41 @@ +{ + "slug": "3x-2019-dual-sim-lte-emea-128gb-5048u", + "name": "3x 2019 Dual SIM LTE EMEA 128GB 5048U", + "brand": "alcatel", + "soc": "helio-p23", + "release_date": "2019-11-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Hungary , Italy , Latvia , Lithuania , Netherlands , Poland , Portugal , Russia , Romania , Serbia , Slovakia , Slovenia , Spain , Sweden , Switzerland , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/alcatel/2019/3x-2019-dual-sim-lte-emea-5048i.json b/data/smartphone/alcatel/2019/3x-2019-dual-sim-lte-emea-5048i.json new file mode 100644 index 00000000000..029846f5f67 --- /dev/null +++ b/data/smartphone/alcatel/2019/3x-2019-dual-sim-lte-emea-5048i.json @@ -0,0 +1,41 @@ +{ + "slug": "3x-2019-dual-sim-lte-emea-5048i", + "name": "3x 2019 Dual SIM LTE EMEA 5048I", + "brand": "alcatel", + "soc": "helio-p23", + "release_date": "2019-09-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Hungary , Italy , Latvia , Lithuania , Netherlands , Pakistan , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Switzerland , Sweden , Turkey , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/alcatel/2019/3x-2019-dual-sim-lte-emea-5048y.json b/data/smartphone/alcatel/2019/3x-2019-dual-sim-lte-emea-5048y.json new file mode 100644 index 00000000000..e7b3e7c1ea5 --- /dev/null +++ b/data/smartphone/alcatel/2019/3x-2019-dual-sim-lte-emea-5048y.json @@ -0,0 +1,41 @@ +{ + "slug": "3x-2019-dual-sim-lte-emea-5048y", + "name": "3x 2019 Dual SIM LTE EMEA 5048Y", + "brand": "alcatel", + "soc": "helio-p23", + "release_date": "2019-09-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Hungary , Italy , Latvia , Lithuania , Netherlands , Poland , Portugal , Russia , Romania , Serbia , Slovakia , Slovenia , Spain , Sweden , Switzerland , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/alcatel/2019/3x-2019-lte-am-5048a.json b/data/smartphone/alcatel/2019/3x-2019-lte-am-5048a.json new file mode 100644 index 00000000000..98df04d2eb0 --- /dev/null +++ b/data/smartphone/alcatel/2019/3x-2019-lte-am-5048a.json @@ -0,0 +1,41 @@ +{ + "slug": "3x-2019-lte-am-5048a", + "name": "3x 2019 LTE AM 5048A", + "brand": "alcatel", + "soc": "helio-p23", + "release_date": "2019-09-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Mexico , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/alcatel/2020/1b-2020-global-dual-sim-lte-5002d.json b/data/smartphone/alcatel/2020/1b-2020-global-dual-sim-lte-5002d.json new file mode 100644 index 00000000000..81be41d9343 --- /dev/null +++ b/data/smartphone/alcatel/2020/1b-2020-global-dual-sim-lte-5002d.json @@ -0,0 +1,41 @@ +{ + "slug": "1b-2020-global-dual-sim-lte-5002d", + "name": "1B 2020 Global Dual SIM LTE 5002D", + "brand": "alcatel", + "soc": "snapdragon-215", + "release_date": "2020-02-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 293 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Belarus , Bulgaria , Cyprus , France , Germany , Greece , Hungary , Jordan , Netherlands , Poland , Romania , Russia , Slovakia , Slovenia , Spain , UAE , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/alcatel/2020/1b-2020-global-lte-5002x.json b/data/smartphone/alcatel/2020/1b-2020-global-lte-5002x.json new file mode 100644 index 00000000000..29583907267 --- /dev/null +++ b/data/smartphone/alcatel/2020/1b-2020-global-lte-5002x.json @@ -0,0 +1,41 @@ +{ + "slug": "1b-2020-global-lte-5002x", + "name": "1B 2020 Global LTE 5002X", + "brand": "alcatel", + "soc": "snapdragon-215", + "release_date": "2020-02-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 293 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Australia , Belarus , Belgium , Cyprus , Czech , Denmark , Finland , France , Greece , Germany , Ireland , Italy , Netherlands , Norway , Poland , Portugal , Slovakia , Slovenia , Spain , Sweden , Switzerland , UK", + "market_regions": "Australia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/alcatel/2020/1s-2020-global-dual-sim-td-lte-5028d.json b/data/smartphone/alcatel/2020/1s-2020-global-dual-sim-td-lte-5028d.json new file mode 100644 index 00000000000..636089816df --- /dev/null +++ b/data/smartphone/alcatel/2020/1s-2020-global-dual-sim-td-lte-5028d.json @@ -0,0 +1,42 @@ +{ + "slug": "1s-2020-global-dual-sim-td-lte-5028d", + "name": "1s 2020 Global Dual SIM TD-LTE 5028D", + "brand": "alcatel", + "soc": "helio-a25", + "release_date": "2020-02-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Belgium , Bulgaria , Croatia , Czech , Denmark , Finland , France , Germany , Hungary , Italy , Netherlands , Pakistan , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , Spain , Sweden , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/alcatel/2020/1s-2020-global-dual-sim-td-lte-5028y.json b/data/smartphone/alcatel/2020/1s-2020-global-dual-sim-td-lte-5028y.json new file mode 100644 index 00000000000..54358635d1c --- /dev/null +++ b/data/smartphone/alcatel/2020/1s-2020-global-dual-sim-td-lte-5028y.json @@ -0,0 +1,42 @@ +{ + "slug": "1s-2020-global-dual-sim-td-lte-5028y", + "name": "1s 2020 Global Dual SIM TD-LTE 5028Y", + "brand": "alcatel", + "soc": "helio-a25", + "release_date": "2020-02-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Belgium , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , Spain , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/alcatel/2020/1s-2020-lte-latam-5028a.json b/data/smartphone/alcatel/2020/1s-2020-lte-latam-5028a.json new file mode 100644 index 00000000000..ad24723443b --- /dev/null +++ b/data/smartphone/alcatel/2020/1s-2020-lte-latam-5028a.json @@ -0,0 +1,42 @@ +{ + "slug": "1s-2020-lte-latam-5028a", + "name": "1s 2020 LTE LATAM 5028A", + "brand": "alcatel", + "soc": "helio-a25", + "release_date": "2020-04-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/alcatel/2020/1v-2020-global-dual-sim-td-lte-5007u.json b/data/smartphone/alcatel/2020/1v-2020-global-dual-sim-td-lte-5007u.json new file mode 100644 index 00000000000..ac294420357 --- /dev/null +++ b/data/smartphone/alcatel/2020/1v-2020-global-dual-sim-td-lte-5007u.json @@ -0,0 +1,41 @@ +{ + "slug": "1v-2020-global-dual-sim-td-lte-5007u", + "name": "1V 2020 Global Dual SIM TD-LTE 5007U", + "brand": "alcatel", + "soc": "helio-a25", + "release_date": "2020-02-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Yes" + }, + "market_countries": "Argentina , Cyprus , France , Germany , Greece , Hungary , Italy , Peru , Poland , Portugal , Romania , Russia , Spain , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , South America , Western Europe" +} diff --git a/data/smartphone/alcatel/2020/3l-2020-global-dual-sim-td-lte-5029d.json b/data/smartphone/alcatel/2020/3l-2020-global-dual-sim-td-lte-5029d.json new file mode 100644 index 00000000000..ea89e0ca32c --- /dev/null +++ b/data/smartphone/alcatel/2020/3l-2020-global-dual-sim-td-lte-5029d.json @@ -0,0 +1,41 @@ +{ + "slug": "3l-2020-global-dual-sim-td-lte-5029d", + "name": "3L 2020 Global Dual SIM TD-LTE 5029D", + "brand": "alcatel", + "soc": "helio-p22", + "release_date": "2020-02-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "France , Germany , Hungary , Italy , Poland , Portugal , Romania , Russia , Spain , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/alcatel/2020/3x-2020-global-dual-sim-td-lte-5061k.json b/data/smartphone/alcatel/2020/3x-2020-global-dual-sim-td-lte-5061k.json new file mode 100644 index 00000000000..953addf12cd --- /dev/null +++ b/data/smartphone/alcatel/2020/3x-2020-global-dual-sim-td-lte-5061k.json @@ -0,0 +1,41 @@ +{ + "slug": "3x-2020-global-dual-sim-td-lte-5061k", + "name": "3x 2020 Global Dual SIM TD-LTE 5061K", + "brand": "alcatel", + "soc": "helio-p22", + "release_date": "2020-06-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Bangladesh , Belarus , Belgium , Bulgaria , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Hungary , Ireland , Italy , Latvia , Lithuania , Poland , Portugal , Romania , Russia , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Sweden , Switzerland , Turkey , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/alcatel/2020/5x-2020-dual-sim-td-lte-latam-128gb-5061a.json b/data/smartphone/alcatel/2020/5x-2020-dual-sim-td-lte-latam-128gb-5061a.json new file mode 100644 index 00000000000..de300dcbc82 --- /dev/null +++ b/data/smartphone/alcatel/2020/5x-2020-dual-sim-td-lte-latam-128gb-5061a.json @@ -0,0 +1,41 @@ +{ + "slug": "5x-2020-dual-sim-td-lte-latam-128gb-5061a", + "name": "5X 2020 Dual SIM TD-LTE LATAM 128GB 5061A", + "brand": "alcatel", + "soc": "helio-p22", + "release_date": "2020-09-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Peru", + "market_regions": "South America" +} diff --git a/data/smartphone/alcatel/2021/1s-2021-global-dual-sim-td-lte-6025d.json b/data/smartphone/alcatel/2021/1s-2021-global-dual-sim-td-lte-6025d.json new file mode 100644 index 00000000000..9870fa12120 --- /dev/null +++ b/data/smartphone/alcatel/2021/1s-2021-global-dual-sim-td-lte-6025d.json @@ -0,0 +1,42 @@ +{ + "slug": "1s-2021-global-dual-sim-td-lte-6025d", + "name": "1s 2021 Global Dual SIM TD-LTE 6025D", + "brand": "alcatel", + "soc": "helio-a25", + "release_date": "2021-03-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Belgium , Bulgaria , Croatia , Czech , Denmark , Finland , France , Germany , Hungary , Italy , Netherlands , Pakistan , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , Spain , Sweden , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/alcatel/2021/1s-2021-global-td-lte-6025h.json b/data/smartphone/alcatel/2021/1s-2021-global-td-lte-6025h.json new file mode 100644 index 00000000000..c3dc8e94a78 --- /dev/null +++ b/data/smartphone/alcatel/2021/1s-2021-global-td-lte-6025h.json @@ -0,0 +1,43 @@ +{ + "slug": "1s-2021-global-td-lte-6025h", + "name": "1s 2021 Global TD-LTE 6025H", + "brand": "alcatel", + "soc": "helio-a25", + "release_date": "2021-03-24", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 100, + "market_countries": "Austria , Belgium , Bulgaria , Croatia , Czech , Denmark , Finland , France , Germany , Hungary , Italy , Netherlands , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , Spain , Sweden , UK", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/alcatel/2021/3l-2021-dual-sim-lte-eu-6056h.json b/data/smartphone/alcatel/2021/3l-2021-dual-sim-lte-eu-6056h.json new file mode 100644 index 00000000000..36cfe13f388 --- /dev/null +++ b/data/smartphone/alcatel/2021/3l-2021-dual-sim-lte-eu-6056h.json @@ -0,0 +1,44 @@ +{ + "slug": "3l-2021-dual-sim-lte-eu-6056h", + "name": "3L 2021 Dual SIM LTE EU 6056H", + "brand": "alcatel", + "soc": "helio-a25", + "release_date": "2021-04-26", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 155, + "market_countries": "Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Finland , France , Germany , Greece , Hungary , Italy , Netherlands , Poland , Portugal , Slovakia , Slovenia , Spain , Sweden , UK", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/alcatel/2021/3l-2021-global-dual-sim-td-lte-6056d.json b/data/smartphone/alcatel/2021/3l-2021-global-dual-sim-td-lte-6056d.json new file mode 100644 index 00000000000..75c39ea3d86 --- /dev/null +++ b/data/smartphone/alcatel/2021/3l-2021-global-dual-sim-td-lte-6056d.json @@ -0,0 +1,43 @@ +{ + "slug": "3l-2021-global-dual-sim-td-lte-6056d", + "name": "3L 2021 Global Dual SIM TD-LTE 6056D", + "brand": "alcatel", + "soc": "helio-a25", + "release_date": "2021-04-26", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Finland , France , Germany , Greece , Hungary , Italy , Jordan , Kuwait , Netherlands , Pakistan , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Slovenia , Spain , Sweden , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/alcatel/2021/5h-2021-lte-latam-128gb-6056a.json b/data/smartphone/alcatel/2021/5h-2021-lte-latam-128gb-6056a.json new file mode 100644 index 00000000000..643f8a4cdb9 --- /dev/null +++ b/data/smartphone/alcatel/2021/5h-2021-lte-latam-128gb-6056a.json @@ -0,0 +1,43 @@ +{ + "slug": "5h-2021-lte-latam-128gb-6056a", + "name": "5H 2021 LTE LATAM 128GB 6056A", + "brand": "alcatel", + "soc": "helio-a25", + "release_date": "2021-07-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Argentina , Peru", + "market_regions": "South America" +} diff --git a/data/smartphone/apple/2017/iphone-8-a1907-td-lte-cn-64gb.json b/data/smartphone/apple/2017/iphone-8-a1907-td-lte-cn-64gb.json new file mode 100644 index 00000000000..02e9bad8676 --- /dev/null +++ b/data/smartphone/apple/2017/iphone-8-a1907-td-lte-cn-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-8-a1907-td-lte-cn-64gb", + "name": "iPhone 8 A1907 TD-LTE CN 64GB", + "brand": "apple", + "soc": "apple-a11-bionic", + "release_date": "2017-10-12", + "ram_gb": 2.0, + "battery_mah": 1820, + "weight_g": 148.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/apple/2017/iphone-8-plus-a1899-td-lte-cn-64gb.json b/data/smartphone/apple/2017/iphone-8-plus-a1899-td-lte-cn-64gb.json new file mode 100644 index 00000000000..d7110d5604f --- /dev/null +++ b/data/smartphone/apple/2017/iphone-8-plus-a1899-td-lte-cn-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-8-plus-a1899-td-lte-cn-64gb", + "name": "iPhone 8 Plus A1899 TD-LTE CN 64GB", + "brand": "apple", + "soc": "apple-a11-bionic", + "release_date": "2017-10-01", + "ram_gb": 3.0, + "battery_mah": 2675, + "weight_g": 202.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.47, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/apple/2018/iphone-xr-a1984-td-lte-na-128gb.json b/data/smartphone/apple/2018/iphone-xr-a1984-td-lte-na-128gb.json new file mode 100644 index 00000000000..b818b3ee323 --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xr-a1984-td-lte-na-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xr-a1984-td-lte-na-128gb", + "name": "iPhone XR A1984 TD-LTE NA 128GB", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-10-26", + "ram_gb": 3.0, + "battery_mah": 2945, + "weight_g": 194.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Canada , Puerto Rico , USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/apple/2018/iphone-xr-a1984-td-lte-na-256gb.json b/data/smartphone/apple/2018/iphone-xr-a1984-td-lte-na-256gb.json new file mode 100644 index 00000000000..6486ec5a7dd --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xr-a1984-td-lte-na-256gb.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xr-a1984-td-lte-na-256gb", + "name": "iPhone XR A1984 TD-LTE NA 256GB", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-10-26", + "ram_gb": 3.0, + "battery_mah": 2945, + "weight_g": 194.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Canada , Puerto Rico , USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/apple/2018/iphone-xr-a1984-td-lte-na-64gb.json b/data/smartphone/apple/2018/iphone-xr-a1984-td-lte-na-64gb.json new file mode 100644 index 00000000000..602bd8082f2 --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xr-a1984-td-lte-na-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xr-a1984-td-lte-na-64gb", + "name": "iPhone XR A1984 TD-LTE NA 64GB", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-10-26", + "ram_gb": 3.0, + "battery_mah": 2945, + "weight_g": 194.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Canada , Puerto Rico , USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/apple/2018/iphone-xr-a2105-global-td-lte-128gb.json b/data/smartphone/apple/2018/iphone-xr-a2105-global-td-lte-128gb.json new file mode 100644 index 00000000000..17546b4cf6d --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xr-a2105-global-td-lte-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xr-a2105-global-td-lte-128gb", + "name": "iPhone XR A2105 Global TD-LTE 128GB", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-10-26", + "ram_gb": 3.0, + "battery_mah": 2945, + "weight_g": 194.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Armenia , Australia , Austria , Belgium , Brazil , Bulgaria , Canada , Chile , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , India , Indonesia , Ireland , Israel , Italy , Kazakhstan , Kuwait , Latvia , Lithuania , Malaysia , Mexico , Netherlands , Norway , NZ , Poland , Portugal , Romania , Russia , Saudi Arabia , Singapore , Slovakia , Slovenia , South Africa , Spain , Sweden , Switzerland , Taiwan , Thailand , Turkey , UAE , UK , Ukraine , USA", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/apple/2018/iphone-xr-a2105-global-td-lte-256gb.json b/data/smartphone/apple/2018/iphone-xr-a2105-global-td-lte-256gb.json new file mode 100644 index 00000000000..a02befa69a6 --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xr-a2105-global-td-lte-256gb.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xr-a2105-global-td-lte-256gb", + "name": "iPhone XR A2105 Global TD-LTE 256GB", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-10-26", + "ram_gb": 3.0, + "battery_mah": 2945, + "weight_g": 194.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Armenia , Australia , Austria , Belgium , Brazil , Bulgaria , Canada , Chile , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , India , Indonesia , Ireland , Israel , Italy , Kazakhstan , Kuwait , Latvia , Lithuania , Malaysia , Mexico , Netherlands , Norway , NZ , Poland , Portugal , Romania , Russia , Saudi Arabia , Singapore , Slovakia , Slovenia , South Africa , Spain , Sweden , Switzerland , Taiwan , Thailand , Turkey , UAE , UK , Ukraine , USA", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/apple/2018/iphone-xr-a2105-global-td-lte-64gb.json b/data/smartphone/apple/2018/iphone-xr-a2105-global-td-lte-64gb.json new file mode 100644 index 00000000000..973203956ab --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xr-a2105-global-td-lte-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xr-a2105-global-td-lte-64gb", + "name": "iPhone XR A2105 Global TD-LTE 64GB", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-10-26", + "ram_gb": 3.0, + "battery_mah": 2945, + "weight_g": 194.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Armenia , Australia , Austria , Belgium , Brazil , Bulgaria , Canada , Chile , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , India , Indonesia , Ireland , Israel , Italy , Kazakhstan , Kuwait , Latvia , Lithuania , Malaysia , Mexico , Netherlands , Norway , NZ , Poland , Portugal , Romania , Russia , Saudi Arabia , Singapore , Slovakia , Slovenia , South Africa , Spain , Sweden , Switzerland , Taiwan , Thailand , Turkey , UAE , UK , Ukraine , USA", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/apple/2018/iphone-xr-a2106-td-lte-jp-128gb.json b/data/smartphone/apple/2018/iphone-xr-a2106-td-lte-jp-128gb.json new file mode 100644 index 00000000000..a251d01c9ed --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xr-a2106-td-lte-jp-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xr-a2106-td-lte-jp-128gb", + "name": "iPhone XR A2106 TD-LTE JP 128GB", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-10-26", + "ram_gb": 3.0, + "battery_mah": 2945, + "weight_g": 194.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2018/iphone-xr-a2106-td-lte-jp-256gb.json b/data/smartphone/apple/2018/iphone-xr-a2106-td-lte-jp-256gb.json new file mode 100644 index 00000000000..4e32e22dc81 --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xr-a2106-td-lte-jp-256gb.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xr-a2106-td-lte-jp-256gb", + "name": "iPhone XR A2106 TD-LTE JP 256GB", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-10-26", + "ram_gb": 3.0, + "battery_mah": 2945, + "weight_g": 194.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2018/iphone-xr-a2106-td-lte-jp-64gb.json b/data/smartphone/apple/2018/iphone-xr-a2106-td-lte-jp-64gb.json new file mode 100644 index 00000000000..3af5d90a0d7 --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xr-a2106-td-lte-jp-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xr-a2106-td-lte-jp-64gb", + "name": "iPhone XR A2106 TD-LTE JP 64GB", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-10-26", + "ram_gb": 3.0, + "battery_mah": 2945, + "weight_g": 194.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2018/iphone-xr-a2108-dual-sim-td-lte-cn-128gb-a2107.json b/data/smartphone/apple/2018/iphone-xr-a2108-dual-sim-td-lte-cn-128gb-a2107.json new file mode 100644 index 00000000000..4ce17a30cde --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xr-a2108-dual-sim-td-lte-cn-128gb-a2107.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xr-a2108-dual-sim-td-lte-cn-128gb-a2107", + "name": "iPhone XR A2108 Dual SIM TD-LTE CN 128GB / A2107", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-10-26", + "ram_gb": 3.0, + "battery_mah": 2945, + "weight_g": 194.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2018/iphone-xr-a2108-dual-sim-td-lte-cn-256gb-a2107.json b/data/smartphone/apple/2018/iphone-xr-a2108-dual-sim-td-lte-cn-256gb-a2107.json new file mode 100644 index 00000000000..f8b8533bbab --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xr-a2108-dual-sim-td-lte-cn-256gb-a2107.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xr-a2108-dual-sim-td-lte-cn-256gb-a2107", + "name": "iPhone XR A2108 Dual SIM TD-LTE CN 256GB / A2107", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-10-26", + "ram_gb": 3.0, + "battery_mah": 2945, + "weight_g": 194.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2018/iphone-xr-a2108-dual-sim-td-lte-cn-64gb-a2107.json b/data/smartphone/apple/2018/iphone-xr-a2108-dual-sim-td-lte-cn-64gb-a2107.json new file mode 100644 index 00000000000..bd0754e37ff --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xr-a2108-dual-sim-td-lte-cn-64gb-a2107.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xr-a2108-dual-sim-td-lte-cn-64gb-a2107", + "name": "iPhone XR A2108 Dual SIM TD-LTE CN 64GB / A2107", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-10-26", + "ram_gb": 3.0, + "battery_mah": 2945, + "weight_g": 194.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2018/iphone-xs-a1920-td-lte-na-256gb.json b/data/smartphone/apple/2018/iphone-xs-a1920-td-lte-na-256gb.json new file mode 100644 index 00000000000..550bf472a79 --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xs-a1920-td-lte-na-256gb.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xs-a1920-td-lte-na-256gb", + "name": "iPhone Xs A1920 TD-LTE NA 256GB", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-09-21", + "ram_gb": 4.0, + "battery_mah": 2659, + "weight_g": 177.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.85, + "resolution": "1125x2436", + "type": "AM-OLED display", + "ppi": 459 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Canada , HK , Puerto Rico , USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/apple/2018/iphone-xs-a1920-td-lte-na-512gb.json b/data/smartphone/apple/2018/iphone-xs-a1920-td-lte-na-512gb.json new file mode 100644 index 00000000000..483a2fe16a5 --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xs-a1920-td-lte-na-512gb.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xs-a1920-td-lte-na-512gb", + "name": "iPhone Xs A1920 TD-LTE NA 512GB", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-09-21", + "ram_gb": 4.0, + "battery_mah": 2659, + "weight_g": 177.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 5.85, + "resolution": "1125x2436", + "type": "AM-OLED display", + "ppi": 459 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Canada , Puerto Rico , USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/apple/2018/iphone-xs-a1920-td-lte-na-64gb.json b/data/smartphone/apple/2018/iphone-xs-a1920-td-lte-na-64gb.json new file mode 100644 index 00000000000..191e4a486b6 --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xs-a1920-td-lte-na-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xs-a1920-td-lte-na-64gb", + "name": "iPhone Xs A1920 TD-LTE NA 64GB", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-09-21", + "ram_gb": 4.0, + "battery_mah": 2659, + "weight_g": 177.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.85, + "resolution": "1125x2436", + "type": "AM-OLED display", + "ppi": 459 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Canada , HK , Puerto Rico , USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/apple/2018/iphone-xs-a2097-global-td-lte-256gb.json b/data/smartphone/apple/2018/iphone-xs-a2097-global-td-lte-256gb.json new file mode 100644 index 00000000000..2072d0051ae --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xs-a2097-global-td-lte-256gb.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xs-a2097-global-td-lte-256gb", + "name": "iPhone Xs A2097 Global TD-LTE 256GB", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-09-21", + "ram_gb": 4.0, + "battery_mah": 2659, + "weight_g": 177.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.85, + "resolution": "1125x2436", + "type": "AM-OLED display", + "ppi": 459 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Armenia , Australia , Austria , Belarus , Belgium , Brazil , Bulgaria , Chile , Croatia , Cyprus , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , India , Indonesia , Ireland , Israel , Italy , Kazakhstan , Kuwait , Latvia , Lithuania , Malaysia , Mexico , Netherlands , Norway , NZ , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , South Africa , Spain , Sweden , Switzerland , Taiwan , Thailand , Turkey , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/apple/2018/iphone-xs-a2097-global-td-lte-512gb.json b/data/smartphone/apple/2018/iphone-xs-a2097-global-td-lte-512gb.json new file mode 100644 index 00000000000..a8f8b379ac3 --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xs-a2097-global-td-lte-512gb.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xs-a2097-global-td-lte-512gb", + "name": "iPhone Xs A2097 Global TD-LTE 512GB", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-09-21", + "ram_gb": 4.0, + "battery_mah": 2659, + "weight_g": 177.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 5.85, + "resolution": "1125x2436", + "type": "AM-OLED display", + "ppi": 459 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Armenia , Australia , Austria , Belarus , Belgium , Brazil , Bulgaria , Chile , Croatia , Cyprus , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , India , Indonesia , Ireland , Israel , Italy , Kazakhstan , Kuwait , Latvia , Lithuania , Malaysia , Mexico , Netherlands , Norway , NZ , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , South Africa , Spain , Sweden , Switzerland , Taiwan , Thailand , Turkey , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/apple/2018/iphone-xs-a2097-global-td-lte-64gb.json b/data/smartphone/apple/2018/iphone-xs-a2097-global-td-lte-64gb.json new file mode 100644 index 00000000000..746b1b44132 --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xs-a2097-global-td-lte-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xs-a2097-global-td-lte-64gb", + "name": "iPhone Xs A2097 Global TD-LTE 64GB", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-09-21", + "ram_gb": 4.0, + "battery_mah": 2659, + "weight_g": 177.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.85, + "resolution": "1125x2436", + "type": "AM-OLED display", + "ppi": 459 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Armenia , Australia , Austria , Belarus , Belgium , Brazil , Bulgaria , Chile , Croatia , Cyprus , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , India , Indonesia , Ireland , Israel , Italy , Kazakhstan , Kuwait , Latvia , Lithuania , Lebanon , Malaysia , Mexico , Netherlands , Norway , NZ , Philippines , Poland , Portugal , Romania , Russia , Saudi Arabia , Singapore , Slovakia , Slovenia , South Africa , Spain , Sweden , Switzerland , Taiwan , Thailand , Turkey , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , North America , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/apple/2018/iphone-xs-a2098-td-lte-jp-256gb.json b/data/smartphone/apple/2018/iphone-xs-a2098-td-lte-jp-256gb.json new file mode 100644 index 00000000000..db3c9d33d92 --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xs-a2098-td-lte-jp-256gb.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xs-a2098-td-lte-jp-256gb", + "name": "iPhone Xs A2098 TD-LTE JP 256GB", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-09-21", + "ram_gb": 4.0, + "battery_mah": 2659, + "weight_g": 177.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.85, + "resolution": "1125x2436", + "type": "AM-OLED display", + "ppi": 459 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2018/iphone-xs-a2098-td-lte-jp-512gb.json b/data/smartphone/apple/2018/iphone-xs-a2098-td-lte-jp-512gb.json new file mode 100644 index 00000000000..33b6711f78d --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xs-a2098-td-lte-jp-512gb.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xs-a2098-td-lte-jp-512gb", + "name": "iPhone Xs A2098 TD-LTE JP 512GB", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-09-21", + "ram_gb": 4.0, + "battery_mah": 2659, + "weight_g": 177.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 5.85, + "resolution": "1125x2436", + "type": "AM-OLED display", + "ppi": 459 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2018/iphone-xs-a2098-td-lte-jp-64gb.json b/data/smartphone/apple/2018/iphone-xs-a2098-td-lte-jp-64gb.json new file mode 100644 index 00000000000..1046c861e89 --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xs-a2098-td-lte-jp-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xs-a2098-td-lte-jp-64gb", + "name": "iPhone Xs A2098 TD-LTE JP 64GB", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-09-21", + "ram_gb": 4.0, + "battery_mah": 2659, + "weight_g": 177.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.85, + "resolution": "1125x2436", + "type": "AM-OLED display", + "ppi": 459 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2018/iphone-xs-a2099-dual-sim-td-lte-cn-64gb.json b/data/smartphone/apple/2018/iphone-xs-a2099-dual-sim-td-lte-cn-64gb.json new file mode 100644 index 00000000000..57342c334cd --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xs-a2099-dual-sim-td-lte-cn-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xs-a2099-dual-sim-td-lte-cn-64gb", + "name": "iPhone Xs A2099 Dual SIM TD-LTE CN 64GB", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-11-01", + "ram_gb": 4.0, + "battery_mah": 2659, + "weight_g": 177.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.85, + "resolution": "1125x2436", + "type": "AM-OLED display", + "ppi": 459 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2018/iphone-xs-a2100-dual-sim-td-lte-cn-256gb.json b/data/smartphone/apple/2018/iphone-xs-a2100-dual-sim-td-lte-cn-256gb.json new file mode 100644 index 00000000000..5a54aded91b --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xs-a2100-dual-sim-td-lte-cn-256gb.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xs-a2100-dual-sim-td-lte-cn-256gb", + "name": "iPhone Xs A2100 Dual SIM TD-LTE CN 256GB", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-09-21", + "ram_gb": 4.0, + "battery_mah": 2659, + "weight_g": 177.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.85, + "resolution": "1125x2436", + "type": "AM-OLED display", + "ppi": 459 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2018/iphone-xs-a2100-dual-sim-td-lte-cn-512gb.json b/data/smartphone/apple/2018/iphone-xs-a2100-dual-sim-td-lte-cn-512gb.json new file mode 100644 index 00000000000..77c31bf3c93 --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xs-a2100-dual-sim-td-lte-cn-512gb.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xs-a2100-dual-sim-td-lte-cn-512gb", + "name": "iPhone Xs A2100 Dual SIM TD-LTE CN 512GB", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-09-21", + "ram_gb": 4.0, + "battery_mah": 2659, + "weight_g": 177.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 5.85, + "resolution": "1125x2436", + "type": "AM-OLED display", + "ppi": 459 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2018/iphone-xs-a2100-dual-sim-td-lte-cn-64gb.json b/data/smartphone/apple/2018/iphone-xs-a2100-dual-sim-td-lte-cn-64gb.json new file mode 100644 index 00000000000..d5e2a9325bc --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xs-a2100-dual-sim-td-lte-cn-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xs-a2100-dual-sim-td-lte-cn-64gb", + "name": "iPhone Xs A2100 Dual SIM TD-LTE CN 64GB", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-09-21", + "ram_gb": 4.0, + "battery_mah": 2659, + "weight_g": 177.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.85, + "resolution": "1125x2436", + "type": "AM-OLED display", + "ppi": 459 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2018/iphone-xs-max-a1921-td-lte-na-256gb-a2103.json b/data/smartphone/apple/2018/iphone-xs-max-a1921-td-lte-na-256gb-a2103.json new file mode 100644 index 00000000000..4c4cea5d635 --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xs-max-a1921-td-lte-na-256gb-a2103.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xs-max-a1921-td-lte-na-256gb-a2103", + "name": "iPhone Xs Max A1921 TD-LTE NA 256GB / A2103", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-09-21", + "ram_gb": 4.0, + "battery_mah": 3179, + "weight_g": 208.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Canada , Puerto Rico , USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/apple/2018/iphone-xs-max-a1921-td-lte-na-512gb-a2103.json b/data/smartphone/apple/2018/iphone-xs-max-a1921-td-lte-na-512gb-a2103.json new file mode 100644 index 00000000000..5c75f446fa5 --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xs-max-a1921-td-lte-na-512gb-a2103.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xs-max-a1921-td-lte-na-512gb-a2103", + "name": "iPhone Xs Max A1921 TD-LTE NA 512GB / A2103", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-09-21", + "ram_gb": 4.0, + "battery_mah": 3179, + "weight_g": 208.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Canada , Puerto Rico , USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/apple/2018/iphone-xs-max-a1921-td-lte-na-64gb-a2103.json b/data/smartphone/apple/2018/iphone-xs-max-a1921-td-lte-na-64gb-a2103.json new file mode 100644 index 00000000000..6a197b0197a --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xs-max-a1921-td-lte-na-64gb-a2103.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xs-max-a1921-td-lte-na-64gb-a2103", + "name": "iPhone Xs Max A1921 TD-LTE NA 64GB / A2103", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-09-21", + "ram_gb": 4.0, + "battery_mah": 3179, + "weight_g": 208.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Canada , Puerto Rico , USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/apple/2018/iphone-xs-max-a2101-global-td-lte-256gb.json b/data/smartphone/apple/2018/iphone-xs-max-a2101-global-td-lte-256gb.json new file mode 100644 index 00000000000..e92aeb68a8a --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xs-max-a2101-global-td-lte-256gb.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xs-max-a2101-global-td-lte-256gb", + "name": "iPhone Xs Max A2101 Global TD-LTE 256GB", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-09-21", + "ram_gb": 4.0, + "battery_mah": 3179, + "weight_g": 208.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Armenia , Australia , Austria , Belarus , Belgium , Brazil , Bulgaria , Chile , Croatia , Cyprus , Czech , Denmark , Estonia , Egypt , Finland , France , Germany , Greece , Hungary , India , Indonesia , Ireland , Israel , Italy , Kazakhstan , Kuwait , Latvia , Lithuania , Malaysia , Mexico , Netherlands , Norway , NZ , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Switzerland , Sweden , Taiwan , Thailand , Turkey , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/apple/2018/iphone-xs-max-a2101-global-td-lte-512gb.json b/data/smartphone/apple/2018/iphone-xs-max-a2101-global-td-lte-512gb.json new file mode 100644 index 00000000000..5671b384f3d --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xs-max-a2101-global-td-lte-512gb.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xs-max-a2101-global-td-lte-512gb", + "name": "iPhone Xs Max A2101 Global TD-LTE 512GB", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-09-21", + "ram_gb": 4.0, + "battery_mah": 3179, + "weight_g": 208.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Armenia , Australia , Austria , Belarus , Belgium , Brazil , Bulgaria , Chile , Croatia , Cyprus , Czech , Denmark , Estonia , Egypt , Finland , France , Germany , Greece , Hungary , India , Indonesia , Ireland , Israel , Italy , Kazakhstan , Kuwait , Latvia , Lithuania , Malaysia , Mexico , Netherlands , Norway , NZ , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Switzerland , Sweden , Taiwan , Thailand , Turkey , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/apple/2018/iphone-xs-max-a2101-global-td-lte-64gb.json b/data/smartphone/apple/2018/iphone-xs-max-a2101-global-td-lte-64gb.json new file mode 100644 index 00000000000..074e26833bf --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xs-max-a2101-global-td-lte-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xs-max-a2101-global-td-lte-64gb", + "name": "iPhone Xs Max A2101 Global TD-LTE 64GB", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-09-21", + "ram_gb": 4.0, + "battery_mah": 3179, + "weight_g": 208.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Armenia , Australia , Austria , Belarus , Belgium , Brazil , Bulgaria , Chile , Croatia , Cyprus , Czech , Denmark , Estonia , Egypt , Finland , France , Germany , Greece , Hungary , India , Indonesia , Ireland , Israel , Italy , Kazakhstan , Kuwait , Latvia , Lithuania , Malaysia , Mexico , Netherlands , Norway , NZ , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Switzerland , Sweden , Taiwan , Thailand , Turkey , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/apple/2018/iphone-xs-max-a2102-td-lte-jp-256gb.json b/data/smartphone/apple/2018/iphone-xs-max-a2102-td-lte-jp-256gb.json new file mode 100644 index 00000000000..12fbd508c1c --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xs-max-a2102-td-lte-jp-256gb.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xs-max-a2102-td-lte-jp-256gb", + "name": "iPhone Xs Max A2102 TD-LTE JP 256GB", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-09-21", + "ram_gb": 4.0, + "battery_mah": 3179, + "weight_g": 208.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2018/iphone-xs-max-a2102-td-lte-jp-512gb.json b/data/smartphone/apple/2018/iphone-xs-max-a2102-td-lte-jp-512gb.json new file mode 100644 index 00000000000..e0d83d7f29d --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xs-max-a2102-td-lte-jp-512gb.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xs-max-a2102-td-lte-jp-512gb", + "name": "iPhone Xs Max A2102 TD-LTE JP 512GB", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-09-21", + "ram_gb": 4.0, + "battery_mah": 3179, + "weight_g": 208.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2018/iphone-xs-max-a2102-td-lte-jp-64gb.json b/data/smartphone/apple/2018/iphone-xs-max-a2102-td-lte-jp-64gb.json new file mode 100644 index 00000000000..10a2e22155a --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xs-max-a2102-td-lte-jp-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xs-max-a2102-td-lte-jp-64gb", + "name": "iPhone Xs Max A2102 TD-LTE JP 64GB", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-09-21", + "ram_gb": 4.0, + "battery_mah": 3179, + "weight_g": 208.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2018/iphone-xs-max-a2104-dual-sim-td-lte-cn-256gb.json b/data/smartphone/apple/2018/iphone-xs-max-a2104-dual-sim-td-lte-cn-256gb.json new file mode 100644 index 00000000000..c72b11eeeb2 --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xs-max-a2104-dual-sim-td-lte-cn-256gb.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xs-max-a2104-dual-sim-td-lte-cn-256gb", + "name": "iPhone Xs Max A2104 Dual SIM TD-LTE CN 256GB", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-09-21", + "ram_gb": 4.0, + "battery_mah": 3179, + "weight_g": 208.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2018/iphone-xs-max-a2104-dual-sim-td-lte-cn-512gb.json b/data/smartphone/apple/2018/iphone-xs-max-a2104-dual-sim-td-lte-cn-512gb.json new file mode 100644 index 00000000000..6967d1ccadf --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xs-max-a2104-dual-sim-td-lte-cn-512gb.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xs-max-a2104-dual-sim-td-lte-cn-512gb", + "name": "iPhone Xs Max A2104 Dual SIM TD-LTE CN 512GB", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-09-21", + "ram_gb": 4.0, + "battery_mah": 3179, + "weight_g": 208.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2018/iphone-xs-max-a2104-dual-sim-td-lte-cn-64gb.json b/data/smartphone/apple/2018/iphone-xs-max-a2104-dual-sim-td-lte-cn-64gb.json new file mode 100644 index 00000000000..d73df215d5a --- /dev/null +++ b/data/smartphone/apple/2018/iphone-xs-max-a2104-dual-sim-td-lte-cn-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-xs-max-a2104-dual-sim-td-lte-cn-64gb", + "name": "iPhone Xs Max A2104 Dual SIM TD-LTE CN 64GB", + "brand": "apple", + "soc": "apple-a12-bionic", + "release_date": "2018-09-21", + "ram_gb": 4.0, + "battery_mah": 3179, + "weight_g": 208.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2019/iphone-11-a2111-dual-sim-td-lte-na-128gb.json b/data/smartphone/apple/2019/iphone-11-a2111-dual-sim-td-lte-na-128gb.json new file mode 100644 index 00000000000..a628a2e496c --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-a2111-dual-sim-td-lte-na-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-a2111-dual-sim-td-lte-na-128gb", + "name": "iPhone 11 A2111 Dual SIM TD-LTE NA 128GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-21", + "ram_gb": 4.0, + "battery_mah": 3110, + "weight_g": 194.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Canada , Puerto Rico , USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/apple/2019/iphone-11-a2111-dual-sim-td-lte-na-256gb.json b/data/smartphone/apple/2019/iphone-11-a2111-dual-sim-td-lte-na-256gb.json new file mode 100644 index 00000000000..7baf7688531 --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-a2111-dual-sim-td-lte-na-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-a2111-dual-sim-td-lte-na-256gb", + "name": "iPhone 11 A2111 Dual SIM TD-LTE NA 256GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-21", + "ram_gb": 4.0, + "battery_mah": 3110, + "weight_g": 194.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Canada , Puerto Rico , USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/apple/2019/iphone-11-a2111-dual-sim-td-lte-na-64gb.json b/data/smartphone/apple/2019/iphone-11-a2111-dual-sim-td-lte-na-64gb.json new file mode 100644 index 00000000000..f9136850c63 --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-a2111-dual-sim-td-lte-na-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-a2111-dual-sim-td-lte-na-64gb", + "name": "iPhone 11 A2111 Dual SIM TD-LTE NA 64GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-21", + "ram_gb": 4.0, + "battery_mah": 3110, + "weight_g": 194.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Canada , Puerto Rico , USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/apple/2019/iphone-11-a2221-dual-sim-td-lte-jp-128gb.json b/data/smartphone/apple/2019/iphone-11-a2221-dual-sim-td-lte-jp-128gb.json new file mode 100644 index 00000000000..ff36996c466 --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-a2221-dual-sim-td-lte-jp-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-a2221-dual-sim-td-lte-jp-128gb", + "name": "iPhone 11 A2221 Dual SIM TD-LTE JP 128GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-21", + "ram_gb": 4.0, + "battery_mah": 3110, + "weight_g": 194.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2019/iphone-11-a2221-dual-sim-td-lte-jp-256gb.json b/data/smartphone/apple/2019/iphone-11-a2221-dual-sim-td-lte-jp-256gb.json new file mode 100644 index 00000000000..9e0e05fcb30 --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-a2221-dual-sim-td-lte-jp-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-a2221-dual-sim-td-lte-jp-256gb", + "name": "iPhone 11 A2221 Dual SIM TD-LTE JP 256GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-21", + "ram_gb": 4.0, + "battery_mah": 3110, + "weight_g": 194.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2019/iphone-11-a2221-dual-sim-td-lte-jp-64gb.json b/data/smartphone/apple/2019/iphone-11-a2221-dual-sim-td-lte-jp-64gb.json new file mode 100644 index 00000000000..0f3e8591807 --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-a2221-dual-sim-td-lte-jp-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-a2221-dual-sim-td-lte-jp-64gb", + "name": "iPhone 11 A2221 Dual SIM TD-LTE JP 64GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-21", + "ram_gb": 4.0, + "battery_mah": 3110, + "weight_g": 194.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2019/iphone-11-a2221-global-dual-sim-td-lte-128gb.json b/data/smartphone/apple/2019/iphone-11-a2221-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..74fd0d20136 --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-a2221-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-a2221-global-dual-sim-td-lte-128gb", + "name": "iPhone 11 A2221 Global Dual SIM TD-LTE 128GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-21", + "ram_gb": 4.0, + "battery_mah": 3110, + "weight_g": 194.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Bolivia , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , Guatemala , HK , Honduras , Hungary , India , Indonesia , Iran , Ireland , Israel , Italy , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lithuania , Malaysia , Mali , Mexico , Mongolia , Morocco , Myanmar , Nepal , Netherlands , Nicaragua , Nigeria , Norway , NZ , Panama , Pakistan , Paraguay , Peru , Philippines , Poland , Portugal , Puerto Rico , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Sri Lanka , Sweden , Switzerland , Taiwan , Tanzania , Thailand , Tunisie , Turkey , UAE , Uganda , UK , Ukraine , Uzbekistan , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2019/iphone-11-a2221-global-dual-sim-td-lte-256gb.json b/data/smartphone/apple/2019/iphone-11-a2221-global-dual-sim-td-lte-256gb.json new file mode 100644 index 00000000000..637a01c8fd7 --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-a2221-global-dual-sim-td-lte-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-a2221-global-dual-sim-td-lte-256gb", + "name": "iPhone 11 A2221 Global Dual SIM TD-LTE 256GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-21", + "ram_gb": 4.0, + "battery_mah": 3110, + "weight_g": 194.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Bolivia , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , Guatemala , HK , Honduras , Hungary , India , Indonesia , Iran , Ireland , Israel , Italy , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lithuania , Malaysia , Mali , Mexico , Mongolia , Morocco , Myanmar , Nepal , Netherlands , Nicaragua , Nigeria , Norway , NZ , Panama , Pakistan , Paraguay , Peru , Philippines , Poland , Portugal , Puerto Rico , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Sri Lanka , Sweden , Switzerland , Taiwan , Tanzania , Thailand , Tunisie , Turkey , UAE , Uganda , UK , Ukraine , Uzbekistan , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2019/iphone-11-a2221-global-dual-sim-td-lte-64gb.json b/data/smartphone/apple/2019/iphone-11-a2221-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..5835509f3da --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-a2221-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-a2221-global-dual-sim-td-lte-64gb", + "name": "iPhone 11 A2221 Global Dual SIM TD-LTE 64GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-01", + "ram_gb": 4.0, + "battery_mah": 3110, + "weight_g": 194.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Bolivia , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , Guatemala , HK , Honduras , Hungary , India , Indonesia , Iran , Ireland , Israel , Italy , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lithuania , Malaysia , Mali , Mexico , Mongolia , Morocco , Myanmar , Nepal , Netherlands , Nicaragua , Nigeria , Norway , NZ , Panama , Pakistan , Paraguay , Peru , Philippines , Poland , Portugal , Puerto Rico , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Sri Lanka , Sweden , Switzerland , Taiwan , Tanzania , Thailand , Tunisie , Turkey , UAE , Uganda , UK , Ukraine , Uzbekistan , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2019/iphone-11-a2223-dual-sim-td-lte-cn-128gb.json b/data/smartphone/apple/2019/iphone-11-a2223-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..2909dd79892 --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-a2223-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-a2223-dual-sim-td-lte-cn-128gb", + "name": "iPhone 11 A2223 Dual SIM TD-LTE CN 128GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-01", + "ram_gb": 4.0, + "battery_mah": 3110, + "weight_g": 194.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2019/iphone-11-a2223-dual-sim-td-lte-cn-256gb.json b/data/smartphone/apple/2019/iphone-11-a2223-dual-sim-td-lte-cn-256gb.json new file mode 100644 index 00000000000..63a93c971c9 --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-a2223-dual-sim-td-lte-cn-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-a2223-dual-sim-td-lte-cn-256gb", + "name": "iPhone 11 A2223 Dual SIM TD-LTE CN 256GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-01", + "ram_gb": 4.0, + "battery_mah": 3110, + "weight_g": 194.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2019/iphone-11-a2223-dual-sim-td-lte-cn-64gb.json b/data/smartphone/apple/2019/iphone-11-a2223-dual-sim-td-lte-cn-64gb.json new file mode 100644 index 00000000000..7b913d358cd --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-a2223-dual-sim-td-lte-cn-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-a2223-dual-sim-td-lte-cn-64gb", + "name": "iPhone 11 A2223 Dual SIM TD-LTE CN 64GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-01", + "ram_gb": 4.0, + "battery_mah": 3110, + "weight_g": 194.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2019/iphone-11-pro-a2160-dual-sim-td-lte-na-256gb.json b/data/smartphone/apple/2019/iphone-11-pro-a2160-dual-sim-td-lte-na-256gb.json new file mode 100644 index 00000000000..f9e8783706d --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-pro-a2160-dual-sim-td-lte-na-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-pro-a2160-dual-sim-td-lte-na-256gb", + "name": "iPhone 11 Pro A2160 Dual SIM TD-LTE NA 256GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-21", + "ram_gb": 4.0, + "battery_mah": 3046, + "weight_g": 188.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.79, + "resolution": "1125x2436", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 464 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Canada , Puerto Rico , USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/apple/2019/iphone-11-pro-a2160-dual-sim-td-lte-na-512gb.json b/data/smartphone/apple/2019/iphone-11-pro-a2160-dual-sim-td-lte-na-512gb.json new file mode 100644 index 00000000000..46438850b20 --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-pro-a2160-dual-sim-td-lte-na-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-pro-a2160-dual-sim-td-lte-na-512gb", + "name": "iPhone 11 Pro A2160 Dual SIM TD-LTE NA 512GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-21", + "ram_gb": 4.0, + "battery_mah": 3046, + "weight_g": 188.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 5.79, + "resolution": "1125x2436", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 464 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Canada , Puerto Rico , USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/apple/2019/iphone-11-pro-a2160-dual-sim-td-lte-na-64gb.json b/data/smartphone/apple/2019/iphone-11-pro-a2160-dual-sim-td-lte-na-64gb.json new file mode 100644 index 00000000000..2f8bd7279ba --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-pro-a2160-dual-sim-td-lte-na-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-pro-a2160-dual-sim-td-lte-na-64gb", + "name": "iPhone 11 Pro A2160 Dual SIM TD-LTE NA 64GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-21", + "ram_gb": 4.0, + "battery_mah": 3046, + "weight_g": 188.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.79, + "resolution": "1125x2436", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 464 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Canada , Puerto Rico , USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/apple/2019/iphone-11-pro-a2215-dual-sim-td-lte-jp-256gb.json b/data/smartphone/apple/2019/iphone-11-pro-a2215-dual-sim-td-lte-jp-256gb.json new file mode 100644 index 00000000000..37121151076 --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-pro-a2215-dual-sim-td-lte-jp-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-pro-a2215-dual-sim-td-lte-jp-256gb", + "name": "iPhone 11 Pro A2215 Dual SIM TD-LTE JP 256GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-21", + "ram_gb": 4.0, + "battery_mah": 3046, + "weight_g": 188.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.79, + "resolution": "1125x2436", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 464 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2019/iphone-11-pro-a2215-dual-sim-td-lte-jp-512gb.json b/data/smartphone/apple/2019/iphone-11-pro-a2215-dual-sim-td-lte-jp-512gb.json new file mode 100644 index 00000000000..c475517d53d --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-pro-a2215-dual-sim-td-lte-jp-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-pro-a2215-dual-sim-td-lte-jp-512gb", + "name": "iPhone 11 Pro A2215 Dual SIM TD-LTE JP 512GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-21", + "ram_gb": 4.0, + "battery_mah": 3046, + "weight_g": 188.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 5.79, + "resolution": "1125x2436", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 464 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2019/iphone-11-pro-a2215-dual-sim-td-lte-jp-64gb.json b/data/smartphone/apple/2019/iphone-11-pro-a2215-dual-sim-td-lte-jp-64gb.json new file mode 100644 index 00000000000..9157a2ffd75 --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-pro-a2215-dual-sim-td-lte-jp-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-pro-a2215-dual-sim-td-lte-jp-64gb", + "name": "iPhone 11 Pro A2215 Dual SIM TD-LTE JP 64GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-21", + "ram_gb": 4.0, + "battery_mah": 3046, + "weight_g": 188.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.79, + "resolution": "1125x2436", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 464 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2019/iphone-11-pro-a2215-global-dual-sim-td-lte-256gb.json b/data/smartphone/apple/2019/iphone-11-pro-a2215-global-dual-sim-td-lte-256gb.json new file mode 100644 index 00000000000..e3481cce361 --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-pro-a2215-global-dual-sim-td-lte-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-pro-a2215-global-dual-sim-td-lte-256gb", + "name": "iPhone 11 Pro A2215 Global Dual SIM TD-LTE 256GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-21", + "ram_gb": 4.0, + "battery_mah": 3046, + "weight_g": 188.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.79, + "resolution": "1125x2436", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 464 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Bolivia , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , Guatemala , HK , Honduras , Hungary , India , Indonesia , Iran , Ireland , Israel , Italy , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lithuania , Malaysia , Mali , Mexico , Mongolia , Morocco , Myanmar , Nepal , Netherlands , Nicaragua , Nigeria , Norway , NZ , Panama , Pakistan , Paraguay , Peru , Philippines , Poland , Portugal , Puerto Rico , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Sri Lanka , Sweden , Switzerland , Taiwan , Tanzania , Thailand , Tunisie , Turkey , UAE , Uganda , UK , Ukraine , Uzbekistan , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2019/iphone-11-pro-a2215-global-dual-sim-td-lte-512gb.json b/data/smartphone/apple/2019/iphone-11-pro-a2215-global-dual-sim-td-lte-512gb.json new file mode 100644 index 00000000000..afcd73fc212 --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-pro-a2215-global-dual-sim-td-lte-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-pro-a2215-global-dual-sim-td-lte-512gb", + "name": "iPhone 11 Pro A2215 Global Dual SIM TD-LTE 512GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-21", + "ram_gb": 4.0, + "battery_mah": 3046, + "weight_g": 188.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 5.79, + "resolution": "1125x2436", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 464 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Bolivia , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , Guatemala , HK , Honduras , Hungary , India , Indonesia , Ireland , Israel , Italy , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lithuania , Malaysia , Mali , Mexico , Mongolia , Morocco , Myanmar , Nepal , Netherlands , Nicaragua , Nigeria , Norway , NZ , Panama , Pakistan , Paraguay , Peru , Philippines , Poland , Portugal , Puerto Rico , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Sri Lanka , Sweden , Switzerland , Taiwan , Tanzania , Thailand , Tunisie , Turkey , UAE , Uganda , UK , Ukraine , Uzbekistan , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2019/iphone-11-pro-a2215-global-dual-sim-td-lte-64gb.json b/data/smartphone/apple/2019/iphone-11-pro-a2215-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..744b7f17b63 --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-pro-a2215-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-pro-a2215-global-dual-sim-td-lte-64gb", + "name": "iPhone 11 Pro A2215 Global Dual SIM TD-LTE 64GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-21", + "ram_gb": 4.0, + "battery_mah": 3046, + "weight_g": 188.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.79, + "resolution": "1125x2436", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 464 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Bolivia , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , Guatemala , HK , Honduras , Hungary , India , Indonesia , Ireland , Israel , Italy , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lithuania , Malaysia , Mali , Mexico , Mongolia , Morocco , Myanmar , Nepal , Netherlands , Nicaragua , Nigeria , Norway , NZ , Panama , Pakistan , Paraguay , Peru , Philippines , Poland , Portugal , Puerto Rico , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Sri Lanka , Sweden , Switzerland , Taiwan , Tanzania , Thailand , Tunisie , Turkey , UAE , UK , Ukraine , Uzbekistan , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2019/iphone-11-pro-a2217-dual-sim-td-lte-cn-256gb.json b/data/smartphone/apple/2019/iphone-11-pro-a2217-dual-sim-td-lte-cn-256gb.json new file mode 100644 index 00000000000..ff826c323bf --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-pro-a2217-dual-sim-td-lte-cn-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-pro-a2217-dual-sim-td-lte-cn-256gb", + "name": "iPhone 11 Pro A2217 Dual SIM TD-LTE CN 256GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-21", + "ram_gb": 4.0, + "battery_mah": 3046, + "weight_g": 188.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.79, + "resolution": "1125x2436", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 464 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2019/iphone-11-pro-a2217-dual-sim-td-lte-cn-512gb.json b/data/smartphone/apple/2019/iphone-11-pro-a2217-dual-sim-td-lte-cn-512gb.json new file mode 100644 index 00000000000..0eca4fbeabe --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-pro-a2217-dual-sim-td-lte-cn-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-pro-a2217-dual-sim-td-lte-cn-512gb", + "name": "iPhone 11 Pro A2217 Dual SIM TD-LTE CN 512GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-21", + "ram_gb": 4.0, + "battery_mah": 3046, + "weight_g": 188.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 5.79, + "resolution": "1125x2436", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 464 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2019/iphone-11-pro-a2217-dual-sim-td-lte-cn-64gb.json b/data/smartphone/apple/2019/iphone-11-pro-a2217-dual-sim-td-lte-cn-64gb.json new file mode 100644 index 00000000000..90a9519063d --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-pro-a2217-dual-sim-td-lte-cn-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-pro-a2217-dual-sim-td-lte-cn-64gb", + "name": "iPhone 11 Pro A2217 Dual SIM TD-LTE CN 64GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-21", + "ram_gb": 4.0, + "battery_mah": 3046, + "weight_g": 188.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.79, + "resolution": "1125x2436", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 464 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2019/iphone-11-pro-max-a2161-dual-sim-td-lte-na-256gb.json b/data/smartphone/apple/2019/iphone-11-pro-max-a2161-dual-sim-td-lte-na-256gb.json new file mode 100644 index 00000000000..27339ab1be7 --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-pro-max-a2161-dual-sim-td-lte-na-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-pro-max-a2161-dual-sim-td-lte-na-256gb", + "name": "iPhone 11 Pro Max A2161 Dual SIM TD-LTE NA 256GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-21", + "ram_gb": 4.0, + "battery_mah": 3969, + "weight_g": 226.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Canada , Puerto Rico , USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/apple/2019/iphone-11-pro-max-a2161-dual-sim-td-lte-na-512gb.json b/data/smartphone/apple/2019/iphone-11-pro-max-a2161-dual-sim-td-lte-na-512gb.json new file mode 100644 index 00000000000..88b959dca63 --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-pro-max-a2161-dual-sim-td-lte-na-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-pro-max-a2161-dual-sim-td-lte-na-512gb", + "name": "iPhone 11 Pro Max A2161 Dual SIM TD-LTE NA 512GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-21", + "ram_gb": 4.0, + "battery_mah": 3969, + "weight_g": 226.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Canada , Puerto Rico , USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/apple/2019/iphone-11-pro-max-a2161-dual-sim-td-lte-na-64gb.json b/data/smartphone/apple/2019/iphone-11-pro-max-a2161-dual-sim-td-lte-na-64gb.json new file mode 100644 index 00000000000..b19736f1f90 --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-pro-max-a2161-dual-sim-td-lte-na-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-pro-max-a2161-dual-sim-td-lte-na-64gb", + "name": "iPhone 11 Pro Max A2161 Dual SIM TD-LTE NA 64GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-21", + "ram_gb": 4.0, + "battery_mah": 3969, + "weight_g": 226.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Canada , Puerto Rico , USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/apple/2019/iphone-11-pro-max-a2218-dual-sim-td-lte-jp-256gb.json b/data/smartphone/apple/2019/iphone-11-pro-max-a2218-dual-sim-td-lte-jp-256gb.json new file mode 100644 index 00000000000..2f003946805 --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-pro-max-a2218-dual-sim-td-lte-jp-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-pro-max-a2218-dual-sim-td-lte-jp-256gb", + "name": "iPhone 11 Pro Max A2218 Dual SIM TD-LTE JP 256GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-21", + "ram_gb": 4.0, + "battery_mah": 3969, + "weight_g": 226.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2019/iphone-11-pro-max-a2218-dual-sim-td-lte-jp-512gb.json b/data/smartphone/apple/2019/iphone-11-pro-max-a2218-dual-sim-td-lte-jp-512gb.json new file mode 100644 index 00000000000..6db3151f367 --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-pro-max-a2218-dual-sim-td-lte-jp-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-pro-max-a2218-dual-sim-td-lte-jp-512gb", + "name": "iPhone 11 Pro Max A2218 Dual SIM TD-LTE JP 512GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-21", + "ram_gb": 4.0, + "battery_mah": 3969, + "weight_g": 226.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2019/iphone-11-pro-max-a2218-dual-sim-td-lte-jp-64gb.json b/data/smartphone/apple/2019/iphone-11-pro-max-a2218-dual-sim-td-lte-jp-64gb.json new file mode 100644 index 00000000000..03575e7c13b --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-pro-max-a2218-dual-sim-td-lte-jp-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-pro-max-a2218-dual-sim-td-lte-jp-64gb", + "name": "iPhone 11 Pro Max A2218 Dual SIM TD-LTE JP 64GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-21", + "ram_gb": 4.0, + "battery_mah": 3969, + "weight_g": 226.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2019/iphone-11-pro-max-a2218-global-dual-sim-td-lte-256gb.json b/data/smartphone/apple/2019/iphone-11-pro-max-a2218-global-dual-sim-td-lte-256gb.json new file mode 100644 index 00000000000..d8e6b3e0d50 --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-pro-max-a2218-global-dual-sim-td-lte-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-pro-max-a2218-global-dual-sim-td-lte-256gb", + "name": "iPhone 11 Pro Max A2218 Global Dual SIM TD-LTE 256GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-21", + "ram_gb": 4.0, + "battery_mah": 3969, + "weight_g": 226.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Bolivia , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , Guatemala , HK , Honduras , Hungary , India , Indonesia , Ireland , Israel , Italy , Kazakhstan , Kuwait , Latvia , Lithuania , Malaysia , Mexico , Morocco , Nepal , Netherlands , Nicaragua , Norway , NZ , Panama , Pakistan , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Singapore , Slovenia , South Africa , South Korea , Spain , Switzerland , Sri Lanka , Sweden , Taiwan , Tanzania , Tunisie , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2019/iphone-11-pro-max-a2218-global-dual-sim-td-lte-512gb.json b/data/smartphone/apple/2019/iphone-11-pro-max-a2218-global-dual-sim-td-lte-512gb.json new file mode 100644 index 00000000000..9509c7c9a5d --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-pro-max-a2218-global-dual-sim-td-lte-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-pro-max-a2218-global-dual-sim-td-lte-512gb", + "name": "iPhone 11 Pro Max A2218 Global Dual SIM TD-LTE 512GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-21", + "ram_gb": 4.0, + "battery_mah": 3969, + "weight_g": 226.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Bolivia , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , Guatemala , HK , Honduras , Hungary , India , Indonesia , Ireland , Israel , Italy , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lithuania , Malaysia , Mali , Mexico , Morocco , Nepal , Netherlands , Nicaragua , Nigeria , Norway , NZ , Panama , Pakistan , Peru , Philippines , Poland , Portugal , Puerto Rico , Romania , Russia , Saudi Arabia , Serbia , Slovakia , Singapore , Slovenia , South Africa , South Korea , Spain , Sweden , Switzerland , Sri Lanka , Taiwan , Tanzania , Tunisie , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2019/iphone-11-pro-max-a2218-global-dual-sim-td-lte-64gb.json b/data/smartphone/apple/2019/iphone-11-pro-max-a2218-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..6b4d6e6ec95 --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-pro-max-a2218-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-pro-max-a2218-global-dual-sim-td-lte-64gb", + "name": "iPhone 11 Pro Max A2218 Global Dual SIM TD-LTE 64GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-21", + "ram_gb": 4.0, + "battery_mah": 3969, + "weight_g": 226.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Belarus , Belgium , Bolivia , Brazil , Bulgaria , Chile , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , Guatemala , HK , Honduras , Hungary , India , Indonesia , Ireland , Israel , Italy , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lithuania , Malaysia , Mexico , Netherlands , Nigeria , Norway , NZ , Panama , Pakistan , Peru , Philippines , Poland , Portugal , Puerto Rico , Romania , Russia , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Sweden , Sri Lanka , Switzerland , Taiwan , Tanzania , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/apple/2019/iphone-11-pro-max-a2220-dual-sim-td-lte-cn-256gb.json b/data/smartphone/apple/2019/iphone-11-pro-max-a2220-dual-sim-td-lte-cn-256gb.json new file mode 100644 index 00000000000..3ebb9434df5 --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-pro-max-a2220-dual-sim-td-lte-cn-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-pro-max-a2220-dual-sim-td-lte-cn-256gb", + "name": "iPhone 11 Pro Max A2220 Dual SIM TD-LTE CN 256GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-21", + "ram_gb": 4.0, + "battery_mah": 3969, + "weight_g": 226.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2019/iphone-11-pro-max-a2220-dual-sim-td-lte-cn-512gb.json b/data/smartphone/apple/2019/iphone-11-pro-max-a2220-dual-sim-td-lte-cn-512gb.json new file mode 100644 index 00000000000..fe6889fe557 --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-pro-max-a2220-dual-sim-td-lte-cn-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-pro-max-a2220-dual-sim-td-lte-cn-512gb", + "name": "iPhone 11 Pro Max A2220 Dual SIM TD-LTE CN 512GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-21", + "ram_gb": 4.0, + "battery_mah": 3969, + "weight_g": 226.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2019/iphone-11-pro-max-a2220-dual-sim-td-lte-cn-64gb.json b/data/smartphone/apple/2019/iphone-11-pro-max-a2220-dual-sim-td-lte-cn-64gb.json new file mode 100644 index 00000000000..03b06dfd437 --- /dev/null +++ b/data/smartphone/apple/2019/iphone-11-pro-max-a2220-dual-sim-td-lte-cn-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-11-pro-max-a2220-dual-sim-td-lte-cn-64gb", + "name": "iPhone 11 Pro Max A2220 Dual SIM TD-LTE CN 64GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2019-09-21", + "ram_gb": 4.0, + "battery_mah": 3969, + "weight_g": 226.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2019/iphone-8-a1863-td-lte-128gb.json b/data/smartphone/apple/2019/iphone-8-a1863-td-lte-128gb.json new file mode 100644 index 00000000000..ca77611b728 --- /dev/null +++ b/data/smartphone/apple/2019/iphone-8-a1863-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "iphone-8-a1863-td-lte-128gb", + "name": "iPhone 8 A1863 TD-LTE 128GB", + "brand": "apple", + "soc": "apple-a11-bionic", + "release_date": "2019-09-12", + "ram_gb": 2.0, + "battery_mah": 1821, + "weight_g": 148.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12.4", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 499, + "market_countries": "Australia , China , HK , India , NZ , Taiwan , USA", + "market_regions": "Asia , Australia , Central America , North America , Southeast Asia" +} diff --git a/data/smartphone/apple/2019/iphone-8-a1905-td-lte-128gb.json b/data/smartphone/apple/2019/iphone-8-a1905-td-lte-128gb.json new file mode 100644 index 00000000000..959705203a0 --- /dev/null +++ b/data/smartphone/apple/2019/iphone-8-a1905-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "iphone-8-a1905-td-lte-128gb", + "name": "iPhone 8 A1905 TD-LTE 128GB", + "brand": "apple", + "soc": "apple-a11-bionic", + "release_date": "2019-09-12", + "ram_gb": 2.0, + "battery_mah": 1821, + "weight_g": 148.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12.4", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 499, + "market_countries": "Austria , Belgium , Canada , Cyprus , Croatia , Czech , Denmark , Finland , France , Germany , Greece , Hungary , India , Indonesia , Ireland , Italy , Mexico , Netherlands , Norway , Poland , Portugal , Russia , Slovakia , Spain , Sweden , Switzerland , UAE , UK , USA", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , Western Europe" +} diff --git a/data/smartphone/apple/2019/iphone-8-a1906-td-lte-jp-128gb.json b/data/smartphone/apple/2019/iphone-8-a1906-td-lte-jp-128gb.json new file mode 100644 index 00000000000..d07c95328c8 --- /dev/null +++ b/data/smartphone/apple/2019/iphone-8-a1906-td-lte-jp-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-8-a1906-td-lte-jp-128gb", + "name": "iPhone 8 A1906 TD-LTE JP 128GB", + "brand": "apple", + "soc": "apple-a11-bionic", + "release_date": "2019-09-12", + "ram_gb": 2.0, + "battery_mah": 1821, + "weight_g": 148.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12.4", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2019/iphone-8-a1907-td-lte-cn-128gb.json b/data/smartphone/apple/2019/iphone-8-a1907-td-lte-cn-128gb.json new file mode 100644 index 00000000000..fb0a2d37f69 --- /dev/null +++ b/data/smartphone/apple/2019/iphone-8-a1907-td-lte-cn-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "iphone-8-a1907-td-lte-cn-128gb", + "name": "iPhone 8 A1907 TD-LTE CN 128GB", + "brand": "apple", + "soc": "apple-a11-bionic", + "release_date": "2019-09-01", + "ram_gb": 2.0, + "battery_mah": 1820, + "weight_g": 148.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12.4", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 3999, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/apple/2019/iphone-8-plus-a1864-td-lte-128gb.json b/data/smartphone/apple/2019/iphone-8-plus-a1864-td-lte-128gb.json new file mode 100644 index 00000000000..6f9916aeddd --- /dev/null +++ b/data/smartphone/apple/2019/iphone-8-plus-a1864-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "iphone-8-plus-a1864-td-lte-128gb", + "name": "iPhone 8 Plus A1864 TD-LTE 128GB", + "brand": "apple", + "soc": "apple-a11-bionic", + "release_date": "2019-09-12", + "ram_gb": 3.0, + "battery_mah": 2675, + "weight_g": 202.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12.4", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.47, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 599, + "market_countries": "Australia , China , HK , India , NZ , Puerto Rico , Taiwan , USA", + "market_regions": "Asia , Australia , North America , Southeast Asia" +} diff --git a/data/smartphone/apple/2019/iphone-8-plus-a1897-td-lte-128gb.json b/data/smartphone/apple/2019/iphone-8-plus-a1897-td-lte-128gb.json new file mode 100644 index 00000000000..0fd72fd45a4 --- /dev/null +++ b/data/smartphone/apple/2019/iphone-8-plus-a1897-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "iphone-8-plus-a1897-td-lte-128gb", + "name": "iPhone 8 Plus A1897 TD-LTE 128GB", + "brand": "apple", + "soc": "apple-a11-bionic", + "release_date": "2019-09-12", + "ram_gb": 3.0, + "battery_mah": 2675, + "weight_g": 202.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12.4", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.47, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 599, + "market_countries": "Argentina , Armenia , Australia , Austria , Belgium , Brazil , Bulgaria , Canada , Chile , Costa Rica , Cyprus , Croatia , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , HK , Hungary , India , Indonesia , Iran , Ireland , Israel , Italy , Kazakhstan , Kuwait , Latvia , Lithuania , Malaysia , Mexico , Netherlands , Norway , NZ , Panama , Pakistan , Peru , Philippines , Poland , Portugal , Puerto Rico , Romania , Russia , Saudi Arabia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Switzerland , Sweden , Sri Lanka , Taiwan , Thailand , Turkey , UAE , UK , Ukraine , USA , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2019/iphone-8-plus-a1898-td-lte-jp-128gb.json b/data/smartphone/apple/2019/iphone-8-plus-a1898-td-lte-jp-128gb.json new file mode 100644 index 00000000000..8a8c6c3c632 --- /dev/null +++ b/data/smartphone/apple/2019/iphone-8-plus-a1898-td-lte-jp-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "iphone-8-plus-a1898-td-lte-jp-128gb", + "name": "iPhone 8 Plus A1898 TD-LTE JP 128GB", + "brand": "apple", + "soc": "apple-a11-bionic", + "release_date": "2019-09-12", + "ram_gb": 3.0, + "battery_mah": 2675, + "weight_g": 202.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12.4", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.47, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2019/iphone-8-plus-a1899-td-lte-cn-128gb.json b/data/smartphone/apple/2019/iphone-8-plus-a1899-td-lte-cn-128gb.json new file mode 100644 index 00000000000..420f4286f52 --- /dev/null +++ b/data/smartphone/apple/2019/iphone-8-plus-a1899-td-lte-cn-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "iphone-8-plus-a1899-td-lte-cn-128gb", + "name": "iPhone 8 Plus A1899 TD-LTE CN 128GB", + "brand": "apple", + "soc": "apple-a11-bionic", + "release_date": "2019-09-12", + "ram_gb": 3.0, + "battery_mah": 2675, + "weight_g": 202.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12.4", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.47, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 4999, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/apple/2020/iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-128gb.json b/data/smartphone/apple/2020/iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-128gb.json new file mode 100644 index 00000000000..75ae40e4bb3 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-128gb", + "name": "iPhone 12 5G A2402 Dual SIM TD-LTE JP CA 128GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-11-13", + "ram_gb": 4.0, + "battery_mah": 2815, + "weight_g": 162.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Canada , Japan , Puerto Rico", + "market_regions": "Asia , Central America , North America" +} diff --git a/data/smartphone/apple/2020/iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-256gb.json b/data/smartphone/apple/2020/iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-256gb.json new file mode 100644 index 00000000000..ef91bc517d6 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-256gb", + "name": "iPhone 12 5G A2402 Dual SIM TD-LTE JP CA 256GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-11-13", + "ram_gb": 4.0, + "battery_mah": 2815, + "weight_g": 162.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Canada , Japan , Puerto Rico", + "market_regions": "Asia , Central America , North America" +} diff --git a/data/smartphone/apple/2020/iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-64gb.json b/data/smartphone/apple/2020/iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-64gb.json new file mode 100644 index 00000000000..a45f49e8cdc --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-64gb", + "name": "iPhone 12 5G A2402 Dual SIM TD-LTE JP CA 64GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-11-13", + "ram_gb": 4.0, + "battery_mah": 2815, + "weight_g": 162.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Canada , Japan , Puerto Rico", + "market_regions": "Asia , Central America , North America" +} diff --git a/data/smartphone/apple/2020/iphone-12-5g-a2403-global-dual-sim-td-lte-128gb.json b/data/smartphone/apple/2020/iphone-12-5g-a2403-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..5c329acd642 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-5g-a2403-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-12-5g-a2403-global-dual-sim-td-lte-128gb", + "name": "iPhone 12 5G A2403 Global Dual SIM TD-LTE 128GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-10-23", + "ram_gb": 4.0, + "battery_mah": 2815, + "weight_g": 162.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 849, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , Guatemala , HK , Hungary , India , Indonesia , Ireland , Israel , Italy , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lebanon , Lithuania , Malaysia , Mali , Mexico , Morocco , Nepal , Netherlands , Norway , NZ , Pakistan , Peru , Philippines , Poland , Portugal , Puerto Rico , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Switzerland , Sweden , Sri Lanka , Taiwan , Tanzania , Tunisie , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2020/iphone-12-5g-a2403-global-dual-sim-td-lte-256gb.json b/data/smartphone/apple/2020/iphone-12-5g-a2403-global-dual-sim-td-lte-256gb.json new file mode 100644 index 00000000000..c5c7e3db08c --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-5g-a2403-global-dual-sim-td-lte-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-12-5g-a2403-global-dual-sim-td-lte-256gb", + "name": "iPhone 12 5G A2403 Global Dual SIM TD-LTE 256GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-10-23", + "ram_gb": 4.0, + "battery_mah": 2815, + "weight_g": 162.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 949, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , Guatemala , HK , Hungary , India , Indonesia , Ireland , Israel , Italy , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lebanon , Lithuania , Malaysia , Mali , Mexico , Morocco , Nepal , Netherlands , Norway , NZ , Pakistan , Peru , Philippines , Poland , Portugal , Puerto Rico , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Switzerland , Sweden , Sri Lanka , Taiwan , Tanzania , Tunisie , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2020/iphone-12-5g-a2403-global-dual-sim-td-lte-64gb.json b/data/smartphone/apple/2020/iphone-12-5g-a2403-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..fa42ce60bcc --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-5g-a2403-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-12-5g-a2403-global-dual-sim-td-lte-64gb", + "name": "iPhone 12 5G A2403 Global Dual SIM TD-LTE 64GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-10-23", + "ram_gb": 4.0, + "battery_mah": 2815, + "weight_g": 162.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 799, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , Guatemala , HK , Hungary , India , Indonesia , Ireland , Israel , Italy , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lebanon , Lithuania , Malaysia , Mali , Mexico , Morocco , Nepal , Netherlands , Norway , NZ , Pakistan , Peru , Philippines , Poland , Portugal , Puerto Rico , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Switzerland , Sweden , Sri Lanka , Taiwan , Tanzania , Tunisie , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2020/iphone-12-5g-a2404-dual-sim-td-lte-cn-128gb-a2405.json b/data/smartphone/apple/2020/iphone-12-5g-a2404-dual-sim-td-lte-cn-128gb-a2405.json new file mode 100644 index 00000000000..12fa561380e --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-5g-a2404-dual-sim-td-lte-cn-128gb-a2405.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-12-5g-a2404-dual-sim-td-lte-cn-128gb-a2405", + "name": "iPhone 12 5G A2404 Dual SIM TD-LTE CN 128GB / A2405", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-10-23", + "ram_gb": 4.0, + "battery_mah": 2815, + "weight_g": 162.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/apple/2020/iphone-12-5g-a2404-dual-sim-td-lte-cn-256gb-a2405.json b/data/smartphone/apple/2020/iphone-12-5g-a2404-dual-sim-td-lte-cn-256gb-a2405.json new file mode 100644 index 00000000000..18ea7721880 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-5g-a2404-dual-sim-td-lte-cn-256gb-a2405.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-12-5g-a2404-dual-sim-td-lte-cn-256gb-a2405", + "name": "iPhone 12 5G A2404 Dual SIM TD-LTE CN 256GB / A2405", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-10-23", + "ram_gb": 4.0, + "battery_mah": 2815, + "weight_g": 162.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/apple/2020/iphone-12-5g-a2404-dual-sim-td-lte-cn-64gb-a2405.json b/data/smartphone/apple/2020/iphone-12-5g-a2404-dual-sim-td-lte-cn-64gb-a2405.json new file mode 100644 index 00000000000..555fea2b73c --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-5g-a2404-dual-sim-td-lte-cn-64gb-a2405.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-12-5g-a2404-dual-sim-td-lte-cn-64gb-a2405", + "name": "iPhone 12 5G A2404 Dual SIM TD-LTE CN 64GB / A2405", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-10-23", + "ram_gb": 4.0, + "battery_mah": 2815, + "weight_g": 162.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/apple/2020/iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-128gb.json b/data/smartphone/apple/2020/iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-128gb.json new file mode 100644 index 00000000000..20e93445893 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-128gb", + "name": "iPhone 12 Mini 5G A2398 Dual SIM TD-LTE JP CA 128GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-11-13", + "ram_gb": 4.0, + "battery_mah": 2227, + "weight_g": 133.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.42, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 475 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Canada , Japan , Puerto Rico", + "market_regions": "Asia , Central America , North America" +} diff --git a/data/smartphone/apple/2020/iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-256gb.json b/data/smartphone/apple/2020/iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-256gb.json new file mode 100644 index 00000000000..e7ad3d40531 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-256gb", + "name": "iPhone 12 Mini 5G A2398 Dual SIM TD-LTE JP CA 256GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-11-13", + "ram_gb": 4.0, + "battery_mah": 2227, + "weight_g": 133.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.42, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 475 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Canada , Japan , Puerto Rico", + "market_regions": "Asia , Central America , North America" +} diff --git a/data/smartphone/apple/2020/iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-64gb.json b/data/smartphone/apple/2020/iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-64gb.json new file mode 100644 index 00000000000..7c6e54d7e0c --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-64gb", + "name": "iPhone 12 Mini 5G A2398 Dual SIM TD-LTE JP CA 64GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-11-13", + "ram_gb": 4.0, + "battery_mah": 2227, + "weight_g": 133.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.42, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 475 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Canada , Japan , Puerto Rico", + "market_regions": "Asia , Central America , North America" +} diff --git a/data/smartphone/apple/2020/iphone-12-mini-5g-a2399-global-dual-sim-td-lte-128gb.json b/data/smartphone/apple/2020/iphone-12-mini-5g-a2399-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..24d56b29425 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-mini-5g-a2399-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-12-mini-5g-a2399-global-dual-sim-td-lte-128gb", + "name": "iPhone 12 Mini 5G A2399 Global Dual SIM TD-LTE 128GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-11-12", + "ram_gb": 4.0, + "battery_mah": 2227, + "weight_g": 133.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.42, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 475 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 749, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Bolivia , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , Guatemala , HK , Hungary , India , Indonesia , Ireland , Israel , Italy , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lebanon , Lithuania , Malaysia , Mexico , Morocco , Mongolia , Myanmar , Nepal , Netherlands , Norway , NZ , Panama , Pakistan , Peru , Philippines , Poland , Portugal , Puerto Rico , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Sri Lanka , Switzerland , Sweden , Taiwan , Tanzania , Thailand , Tunisie , Turkey , UAE , UK , Ukraine , Uzbekistan , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2020/iphone-12-mini-5g-a2399-global-dual-sim-td-lte-256gb.json b/data/smartphone/apple/2020/iphone-12-mini-5g-a2399-global-dual-sim-td-lte-256gb.json new file mode 100644 index 00000000000..430a2c8dbe0 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-mini-5g-a2399-global-dual-sim-td-lte-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-12-mini-5g-a2399-global-dual-sim-td-lte-256gb", + "name": "iPhone 12 Mini 5G A2399 Global Dual SIM TD-LTE 256GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-11-12", + "ram_gb": 4.0, + "battery_mah": 2227, + "weight_g": 133.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.42, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 475 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 849, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Bolivia , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , Guatemala , HK , Hungary , India , Indonesia , Ireland , Israel , Italy , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lebanon , Lithuania , Malaysia , Mexico , Morocco , Mongolia , Myanmar , Nepal , Netherlands , Norway , NZ , Panama , Pakistan , Peru , Philippines , Poland , Portugal , Puerto Rico , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Sri Lanka , Switzerland , Sweden , Taiwan , Tanzania , Thailand , Tunisie , Turkey , UAE , UK , Ukraine , Uzbekistan , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2020/iphone-12-mini-5g-a2399-global-dual-sim-td-lte-64gb.json b/data/smartphone/apple/2020/iphone-12-mini-5g-a2399-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..dbc7de8cf87 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-mini-5g-a2399-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-12-mini-5g-a2399-global-dual-sim-td-lte-64gb", + "name": "iPhone 12 Mini 5G A2399 Global Dual SIM TD-LTE 64GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-11-12", + "ram_gb": 4.0, + "battery_mah": 2227, + "weight_g": 133.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.42, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 475 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 699, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Bolivia , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , Guatemala , HK , Hungary , India , Indonesia , Ireland , Israel , Italy , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lebanon , Lithuania , Malaysia , Mexico , Morocco , Mongolia , Myanmar , Nepal , Netherlands , Norway , NZ , Panama , Pakistan , Peru , Philippines , Poland , Portugal , Puerto Rico , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Sri Lanka , Switzerland , Sweden , Taiwan , Tanzania , Thailand , Tunisie , Turkey , UAE , UK , Ukraine , Uzbekistan , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2020/iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-128gb-a2401.json b/data/smartphone/apple/2020/iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-128gb-a2401.json new file mode 100644 index 00000000000..5aaded8d0e3 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-128gb-a2401.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-128gb-a2401", + "name": "iPhone 12 mini 5G A2400 Dual SIM TD-LTE CN 128GB / A2401", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-10-23", + "ram_gb": 4.0, + "battery_mah": 2227, + "weight_g": 133.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.42, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 475 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/apple/2020/iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-256gb-a2401.json b/data/smartphone/apple/2020/iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-256gb-a2401.json new file mode 100644 index 00000000000..6d677c1a671 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-256gb-a2401.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-256gb-a2401", + "name": "iPhone 12 mini 5G A2400 Dual SIM TD-LTE CN 256GB / A2401", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-10-23", + "ram_gb": 4.0, + "battery_mah": 2227, + "weight_g": 133.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.42, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 475 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/apple/2020/iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-64gb-a2401.json b/data/smartphone/apple/2020/iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-64gb-a2401.json new file mode 100644 index 00000000000..9b75d9d5c6d --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-64gb-a2401.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-64gb-a2401", + "name": "iPhone 12 mini 5G A2400 Dual SIM TD-LTE CN 64GB / A2401", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-10-23", + "ram_gb": 4.0, + "battery_mah": 2227, + "weight_g": 133.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.42, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 475 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/apple/2020/iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-128gb.json b/data/smartphone/apple/2020/iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-128gb.json new file mode 100644 index 00000000000..482cb30b3d5 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-128gb", + "name": "iPhone 12 Mini UW 5G A2176 Dual SIM TD-LTE US 128GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-10-23", + "ram_gb": 4.0, + "battery_mah": 2227, + "weight_g": 133.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.42, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 475 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 749, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/apple/2020/iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-256gb.json b/data/smartphone/apple/2020/iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-256gb.json new file mode 100644 index 00000000000..d6ba302bc41 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-256gb", + "name": "iPhone 12 Mini UW 5G A2176 Dual SIM TD-LTE US 256GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-10-23", + "ram_gb": 4.0, + "battery_mah": 2227, + "weight_g": 133.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.42, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 475 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 849, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/apple/2020/iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-64gb.json b/data/smartphone/apple/2020/iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-64gb.json new file mode 100644 index 00000000000..840c102f9c1 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-64gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-64gb", + "name": "iPhone 12 Mini UW 5G A2176 Dual SIM TD-LTE US 64GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-10-23", + "ram_gb": 4.0, + "battery_mah": 2227, + "weight_g": 133.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.42, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 475 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 699, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/apple/2020/iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-128gb.json b/data/smartphone/apple/2020/iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-128gb.json new file mode 100644 index 00000000000..b08dfab0cd2 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-128gb", + "name": "iPhone 12 Pro 5G A2406 Dual SIM TD-LTE JP CA 128GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-11-13", + "ram_gb": 6.0, + "battery_mah": 2815, + "weight_g": 187.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1399, + "market_countries": "Canada , Japan , Puerto Rico", + "market_regions": "Asia , Central America , North America" +} diff --git a/data/smartphone/apple/2020/iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-256gb.json b/data/smartphone/apple/2020/iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-256gb.json new file mode 100644 index 00000000000..21501025327 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-256gb", + "name": "iPhone 12 Pro 5G A2406 Dual SIM TD-LTE JP CA 256GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-11-13", + "ram_gb": 6.0, + "battery_mah": 2815, + "weight_g": 187.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1539, + "market_countries": "Canada , Japan , Puerto Rico", + "market_regions": "Asia , Central America , North America" +} diff --git a/data/smartphone/apple/2020/iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-512gb.json b/data/smartphone/apple/2020/iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-512gb.json new file mode 100644 index 00000000000..c0a5faf7c62 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-512gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-512gb", + "name": "iPhone 12 Pro 5G A2406 Dual SIM TD-LTE JP CA 512GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-11-13", + "ram_gb": 6.0, + "battery_mah": 2815, + "weight_g": 187.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1809, + "market_countries": "Canada , Japan , Puerto Rico", + "market_regions": "Asia , Central America , North America" +} diff --git a/data/smartphone/apple/2020/iphone-12-pro-5g-a2407-global-dual-sim-td-lte-128gb.json b/data/smartphone/apple/2020/iphone-12-pro-5g-a2407-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..f62d4da3408 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-pro-5g-a2407-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-12-pro-5g-a2407-global-dual-sim-td-lte-128gb", + "name": "iPhone 12 Pro 5G A2407 Global Dual SIM TD-LTE 128GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-11-06", + "ram_gb": 6.0, + "battery_mah": 2815, + "weight_g": 187.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 999, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , Guatemala , HK , Hungary , India , Indonesia , Ireland , Israel , Italy , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lebanon , Lithuania , Malaysia , Mali , Mexico , Morocco , Nepal , Netherlands , Norway , NZ , Pakistan , Peru , Philippines , Poland , Portugal , Puerto Rico , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Switzerland , Sweden , Sri Lanka , Taiwan , Tanzania , Tunisie , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2020/iphone-12-pro-5g-a2407-global-dual-sim-td-lte-256gb.json b/data/smartphone/apple/2020/iphone-12-pro-5g-a2407-global-dual-sim-td-lte-256gb.json new file mode 100644 index 00000000000..bd5dda15e36 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-pro-5g-a2407-global-dual-sim-td-lte-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-12-pro-5g-a2407-global-dual-sim-td-lte-256gb", + "name": "iPhone 12 Pro 5G A2407 Global Dual SIM TD-LTE 256GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-11-06", + "ram_gb": 6.0, + "battery_mah": 2815, + "weight_g": 187.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1099, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , Guatemala , HK , Hungary , India , Indonesia , Ireland , Israel , Italy , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lebanon , Lithuania , Malaysia , Mali , Mexico , Morocco , Nepal , Netherlands , Norway , NZ , Pakistan , Peru , Philippines , Poland , Portugal , Puerto Rico , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Switzerland , Sweden , Sri Lanka , Taiwan , Tanzania , Tunisie , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2020/iphone-12-pro-5g-a2407-global-dual-sim-td-lte-512gb.json b/data/smartphone/apple/2020/iphone-12-pro-5g-a2407-global-dual-sim-td-lte-512gb.json new file mode 100644 index 00000000000..9361895d6b0 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-pro-5g-a2407-global-dual-sim-td-lte-512gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-12-pro-5g-a2407-global-dual-sim-td-lte-512gb", + "name": "iPhone 12 Pro 5G A2407 Global Dual SIM TD-LTE 512GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-11-06", + "ram_gb": 6.0, + "battery_mah": 2815, + "weight_g": 187.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1299, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , Guatemala , HK , Hungary , India , Indonesia , Ireland , Israel , Italy , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lebanon , Lithuania , Malaysia , Mali , Mexico , Morocco , Nepal , Netherlands , Norway , NZ , Pakistan , Peru , Philippines , Poland , Portugal , Puerto Rico , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Switzerland , Sweden , Sri Lanka , Taiwan , Tanzania , Tunisie , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2020/iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-128gb-a2409.json b/data/smartphone/apple/2020/iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-128gb-a2409.json new file mode 100644 index 00000000000..c08a2969684 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-128gb-a2409.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-128gb-a2409", + "name": "iPhone 12 Pro 5G A2408 Dual SIM TD-LTE CN 128GB / A2409", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-10-23", + "ram_gb": 6.0, + "battery_mah": 2815, + "weight_g": 187.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/apple/2020/iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-256gb-a2409.json b/data/smartphone/apple/2020/iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-256gb-a2409.json new file mode 100644 index 00000000000..568b8ebf169 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-256gb-a2409.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-256gb-a2409", + "name": "iPhone 12 Pro 5G A2408 Dual SIM TD-LTE CN 256GB / A2409", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-10-23", + "ram_gb": 6.0, + "battery_mah": 2815, + "weight_g": 187.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/apple/2020/iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-512gb-a2409.json b/data/smartphone/apple/2020/iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-512gb-a2409.json new file mode 100644 index 00000000000..48ab94e2da3 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-512gb-a2409.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-512gb-a2409", + "name": "iPhone 12 Pro 5G A2408 Dual SIM TD-LTE CN 512GB / A2409", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-10-23", + "ram_gb": 6.0, + "battery_mah": 2815, + "weight_g": 187.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/apple/2020/iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-128gb.json b/data/smartphone/apple/2020/iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-128gb.json new file mode 100644 index 00000000000..9b371a4b253 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-128gb", + "name": "iPhone 12 Pro Max 5G A2410 Dual SIM TD-LTE JP CA 128GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-11-13", + "ram_gb": 6.0, + "battery_mah": 3687, + "weight_g": 226.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1549, + "market_countries": "Canada , Japan , Puerto Rico", + "market_regions": "Asia , Central America , North America" +} diff --git a/data/smartphone/apple/2020/iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-256gb.json b/data/smartphone/apple/2020/iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-256gb.json new file mode 100644 index 00000000000..afa9959f94c --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-256gb", + "name": "iPhone 12 Pro Max 5G A2410 Dual SIM TD-LTE JP CA 256GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-11-13", + "ram_gb": 6.0, + "battery_mah": 3687, + "weight_g": 226.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1689, + "market_countries": "Canada , Japan , Puerto Rico", + "market_regions": "Asia , Central America , North America" +} diff --git a/data/smartphone/apple/2020/iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-512gb.json b/data/smartphone/apple/2020/iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-512gb.json new file mode 100644 index 00000000000..cfdd5149d37 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-512gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-512gb", + "name": "iPhone 12 Pro Max 5G A2410 Dual SIM TD-LTE JP CA 512GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-11-13", + "ram_gb": 6.0, + "battery_mah": 3687, + "weight_g": 226.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1959, + "market_countries": "Canada , Japan , Puerto Rico", + "market_regions": "Asia , Central America , North America" +} diff --git a/data/smartphone/apple/2020/iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-128gb.json b/data/smartphone/apple/2020/iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..6e0e3b8e3ee --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-128gb", + "name": "iPhone 12 Pro Max 5G A2411 Global Dual SIM TD-LTE 128GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-11-12", + "ram_gb": 6.0, + "battery_mah": 3687, + "weight_g": 226.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1099, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , Guatemala , HK , Hungary , India , Indonesia , Ireland , Israel , Italy , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lebanon , Lithuania , Malaysia , Mali , Mexico , Morocco , Nepal , Netherlands , Norway , NZ , Pakistan , Peru , Philippines , Poland , Portugal , Puerto Rico , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Switzerland , Sweden , Sri Lanka , Taiwan , Tanzania , Tunisie , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2020/iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-256gb.json b/data/smartphone/apple/2020/iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-256gb.json new file mode 100644 index 00000000000..36b576c9076 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-256gb", + "name": "iPhone 12 Pro Max 5G A2411 Global Dual SIM TD-LTE 256GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-11-12", + "ram_gb": 6.0, + "battery_mah": 3687, + "weight_g": 226.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1199, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , Guatemala , HK , Hungary , India , Indonesia , Ireland , Israel , Italy , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lebanon , Lithuania , Malaysia , Mali , Mexico , Morocco , Nepal , Netherlands , Norway , NZ , Pakistan , Peru , Philippines , Poland , Portugal , Puerto Rico , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Switzerland , Sweden , Sri Lanka , Taiwan , Tanzania , Tunisie , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2020/iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-512gb.json b/data/smartphone/apple/2020/iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-512gb.json new file mode 100644 index 00000000000..2f03fabcaaf --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-512gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-512gb", + "name": "iPhone 12 Pro Max 5G A2411 Global Dual SIM TD-LTE 512GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-11-12", + "ram_gb": 6.0, + "battery_mah": 3687, + "weight_g": 226.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1399, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , Guatemala , HK , Hungary , India , Indonesia , Ireland , Israel , Italy , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lebanon , Lithuania , Malaysia , Mali , Mexico , Morocco , Nepal , Netherlands , Norway , NZ , Pakistan , Peru , Philippines , Poland , Portugal , Puerto Rico , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Switzerland , Sweden , Sri Lanka , Taiwan , Tanzania , Tunisie , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2020/iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-128gb-a2413.json b/data/smartphone/apple/2020/iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-128gb-a2413.json new file mode 100644 index 00000000000..91984997958 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-128gb-a2413.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-128gb-a2413", + "name": "iPhone 12 Pro Max 5G A2412 Dual SIM TD-LTE CN 128GB / A2413", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-10-23", + "ram_gb": 6.0, + "battery_mah": 3687, + "weight_g": 226.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/apple/2020/iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-256gb-a2413.json b/data/smartphone/apple/2020/iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-256gb-a2413.json new file mode 100644 index 00000000000..5c42c914322 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-256gb-a2413.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-256gb-a2413", + "name": "iPhone 12 Pro Max 5G A2412 Dual SIM TD-LTE CN 256GB / A2413", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-10-23", + "ram_gb": 6.0, + "battery_mah": 3687, + "weight_g": 226.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/apple/2020/iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-512gb-a2413.json b/data/smartphone/apple/2020/iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-512gb-a2413.json new file mode 100644 index 00000000000..0eaa93442cd --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-512gb-a2413.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-512gb-a2413", + "name": "iPhone 12 Pro Max 5G A2412 Dual SIM TD-LTE CN 512GB / A2413", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-10-23", + "ram_gb": 6.0, + "battery_mah": 3687, + "weight_g": 226.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/apple/2020/iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-128gb.json b/data/smartphone/apple/2020/iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-128gb.json new file mode 100644 index 00000000000..52d1cc2aa87 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-128gb", + "name": "iPhone 12 Pro Max UW 5G A2342 Dual SIM TD-LTE US 128GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-10-23", + "ram_gb": 6.0, + "battery_mah": 3687, + "weight_g": 228.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2772", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1099, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/apple/2020/iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-256gb.json b/data/smartphone/apple/2020/iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-256gb.json new file mode 100644 index 00000000000..010853d3999 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-256gb", + "name": "iPhone 12 Pro Max UW 5G A2342 Dual SIM TD-LTE US 256GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-10-23", + "ram_gb": 6.0, + "battery_mah": 3687, + "weight_g": 228.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2772", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1199, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/apple/2020/iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-512gb.json b/data/smartphone/apple/2020/iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-512gb.json new file mode 100644 index 00000000000..8139bd7ba31 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-512gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-512gb", + "name": "iPhone 12 Pro Max UW 5G A2342 Dual SIM TD-LTE US 512GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-10-23", + "ram_gb": 6.0, + "battery_mah": 3687, + "weight_g": 228.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2772", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1399, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/apple/2020/iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-128gb.json b/data/smartphone/apple/2020/iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-128gb.json new file mode 100644 index 00000000000..fbca42bb25f --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-128gb", + "name": "iPhone 12 Pro UW 5G A2341 Dual SIM TD-LTE US 128GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-10-23", + "ram_gb": 6.0, + "battery_mah": 2815, + "weight_g": 189.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 999, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/apple/2020/iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-256gb.json b/data/smartphone/apple/2020/iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-256gb.json new file mode 100644 index 00000000000..5fd0e08715a --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-256gb", + "name": "iPhone 12 Pro UW 5G A2341 Dual SIM TD-LTE US 256GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-10-23", + "ram_gb": 6.0, + "battery_mah": 2815, + "weight_g": 189.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1099, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/apple/2020/iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-512gb.json b/data/smartphone/apple/2020/iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-512gb.json new file mode 100644 index 00000000000..8c0953531ef --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-512gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-512gb", + "name": "iPhone 12 Pro UW 5G A2341 Dual SIM TD-LTE US 512GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-10-23", + "ram_gb": 6.0, + "battery_mah": 2815, + "weight_g": 189.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1299, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/apple/2020/iphone-12-uw-5g-a2172-dual-sim-td-lte-us-128gb.json b/data/smartphone/apple/2020/iphone-12-uw-5g-a2172-dual-sim-td-lte-us-128gb.json new file mode 100644 index 00000000000..b96b77c5446 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-uw-5g-a2172-dual-sim-td-lte-us-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-12-uw-5g-a2172-dual-sim-td-lte-us-128gb", + "name": "iPhone 12 UW 5G A2172 Dual SIM TD-LTE US 128GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-10-23", + "ram_gb": 4.0, + "battery_mah": 2815, + "weight_g": 164.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 849, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/apple/2020/iphone-12-uw-5g-a2172-dual-sim-td-lte-us-256gb.json b/data/smartphone/apple/2020/iphone-12-uw-5g-a2172-dual-sim-td-lte-us-256gb.json new file mode 100644 index 00000000000..bab2df90b32 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-uw-5g-a2172-dual-sim-td-lte-us-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-12-uw-5g-a2172-dual-sim-td-lte-us-256gb", + "name": "iPhone 12 UW 5G A2172 Dual SIM TD-LTE US 256GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-10-23", + "ram_gb": 4.0, + "battery_mah": 2815, + "weight_g": 164.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 949, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/apple/2020/iphone-12-uw-5g-a2172-dual-sim-td-lte-us-64gb.json b/data/smartphone/apple/2020/iphone-12-uw-5g-a2172-dual-sim-td-lte-us-64gb.json new file mode 100644 index 00000000000..aceca9a1088 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-12-uw-5g-a2172-dual-sim-td-lte-us-64gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-12-uw-5g-a2172-dual-sim-td-lte-us-64gb", + "name": "iPhone 12 UW 5G A2172 Dual SIM TD-LTE US 64GB", + "brand": "apple", + "soc": "apple-a14-bionic", + "release_date": "2020-10-23", + "ram_gb": 4.0, + "battery_mah": 2815, + "weight_g": 164.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "14.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 799, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/apple/2020/iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-128gb.json b/data/smartphone/apple/2020/iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-128gb.json new file mode 100644 index 00000000000..2d1459cf465 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-128gb", + "name": "iPhone SE 2020 2nd gen A2275 Dual SIM TD-LTE NA 128GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2020-04-24", + "ram_gb": 3.0, + "battery_mah": 1821, + "weight_g": 148.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13.4", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Canada , Puerto Rico , USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/apple/2020/iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-256gb.json b/data/smartphone/apple/2020/iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-256gb.json new file mode 100644 index 00000000000..b59e52e15e4 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-256gb", + "name": "iPhone SE 2020 2nd gen A2275 Dual SIM TD-LTE NA 256GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2020-04-24", + "ram_gb": 3.0, + "battery_mah": 1821, + "weight_g": 148.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13.4", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Canada , Puerto Rico , USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/apple/2020/iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-64gb.json b/data/smartphone/apple/2020/iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-64gb.json new file mode 100644 index 00000000000..63dab0882bf --- /dev/null +++ b/data/smartphone/apple/2020/iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-64gb", + "name": "iPhone SE 2020 2nd gen A2275 Dual SIM TD-LTE NA 64GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2020-04-24", + "ram_gb": 3.0, + "battery_mah": 1821, + "weight_g": 148.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13.4", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Canada , Puerto Rico , USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/apple/2020/iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-128gb.json b/data/smartphone/apple/2020/iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..a6638a6c477 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-128gb", + "name": "iPhone SE 2020 2nd gen A2296 Global Dual SIM TD-LTE 128GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2020-04-24", + "ram_gb": 3.0, + "battery_mah": 1821, + "weight_g": 148.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13.4", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Brazil , Bulgaria , Cambodia , Chile , Colombia , Croatia , Cyprus , Czech , Denmark , Estonia , Egypt , Finland , France , Greece , Germany , HK , Hungary , India , Indonesia , Ireland , Israel , Italy , Japan , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lithuania , Malaysia , Mexico , Morocco , Myanmar , Nepal , Netherlands , Norway , NZ , Panama , Pakistan , Peru , Philippines , Poland , Portugal , Puerto Rico , Romania , Russia , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Sweden , Sri Lanka , Switzerland , Taiwan , Thailand , Tunisie , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2020/iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-256gb.json b/data/smartphone/apple/2020/iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-256gb.json new file mode 100644 index 00000000000..b8882d8f262 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-256gb", + "name": "iPhone SE 2020 2nd gen A2296 Global Dual SIM TD-LTE 256GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2020-04-24", + "ram_gb": 3.0, + "battery_mah": 1821, + "weight_g": 148.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13.4", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Brazil , Bulgaria , Cambodia , Chile , Colombia , Croatia , Cyprus , Czech , Denmark , Estonia , Egypt , Finland , France , Greece , Germany , HK , Hungary , India , Indonesia , Ireland , Israel , Italy , Japan , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lithuania , Malaysia , Mexico , Morocco , Myanmar , Nepal , Netherlands , Norway , NZ , Panama , Pakistan , Peru , Philippines , Poland , Portugal , Puerto Rico , Romania , Russia , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Sweden , Sri Lanka , Switzerland , Taiwan , Thailand , Tunisie , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2020/iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-64gb.json b/data/smartphone/apple/2020/iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..54abf65b242 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-64gb", + "name": "iPhone SE 2020 2nd gen A2296 Global Dual SIM TD-LTE 64GB", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2020-04-24", + "ram_gb": 3.0, + "battery_mah": 1821, + "weight_g": 148.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13.4", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Brazil , Bulgaria , Cambodia , Chile , Colombia , Croatia , Cyprus , Czech , Denmark , Estonia , Egypt , Finland , France , Greece , Germany , HK , Hungary , India , Indonesia , Ireland , Israel , Italy , Japan , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lithuania , Malaysia , Mexico , Morocco , Myanmar , Nepal , Netherlands , Norway , NZ , Panama , Pakistan , Peru , Philippines , Poland , Portugal , Puerto Rico , Romania , Russia , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Sweden , Sri Lanka , Switzerland , Taiwan , Thailand , Tunisie , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2020/iphone-se-2020-2nd-gen-a2298-td-lte-cn-128gb-a2297.json b/data/smartphone/apple/2020/iphone-se-2020-2nd-gen-a2298-td-lte-cn-128gb-a2297.json new file mode 100644 index 00000000000..cef64769a3f --- /dev/null +++ b/data/smartphone/apple/2020/iphone-se-2020-2nd-gen-a2298-td-lte-cn-128gb-a2297.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-se-2020-2nd-gen-a2298-td-lte-cn-128gb-a2297", + "name": "iPhone SE 2020 2nd gen A2298 TD-LTE CN 128GB / A2297", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2020-04-24", + "ram_gb": 3.0, + "battery_mah": 1821, + "weight_g": 148.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13.4", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2020/iphone-se-2020-2nd-gen-a2298-td-lte-cn-256gb-a2297.json b/data/smartphone/apple/2020/iphone-se-2020-2nd-gen-a2298-td-lte-cn-256gb-a2297.json new file mode 100644 index 00000000000..0fdb89dd27c --- /dev/null +++ b/data/smartphone/apple/2020/iphone-se-2020-2nd-gen-a2298-td-lte-cn-256gb-a2297.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-se-2020-2nd-gen-a2298-td-lte-cn-256gb-a2297", + "name": "iPhone SE 2020 2nd gen A2298 TD-LTE CN 256GB / A2297", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2020-04-24", + "ram_gb": 3.0, + "battery_mah": 1821, + "weight_g": 148.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13.4", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2020/iphone-se-2020-2nd-gen-a2298-td-lte-cn-64gb-a2297.json b/data/smartphone/apple/2020/iphone-se-2020-2nd-gen-a2298-td-lte-cn-64gb-a2297.json new file mode 100644 index 00000000000..f3323811609 --- /dev/null +++ b/data/smartphone/apple/2020/iphone-se-2020-2nd-gen-a2298-td-lte-cn-64gb-a2297.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-se-2020-2nd-gen-a2298-td-lte-cn-64gb-a2297", + "name": "iPhone SE 2020 2nd gen A2298 TD-LTE CN 64GB / A2297", + "brand": "apple", + "soc": "apple-a13-bionic", + "release_date": "2020-04-24", + "ram_gb": 3.0, + "battery_mah": 1821, + "weight_g": 148.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "13.4", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2021/iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-128gb.json b/data/smartphone/apple/2021/iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-128gb.json new file mode 100644 index 00000000000..acf09315121 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-128gb", + "name": "iPhone 13 5G A2631 Dual SIM TD-LTE JP CA MX 128GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 4.0, + "battery_mah": 3227, + "weight_g": 173.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1099, + "market_countries": "Canada , Guatemala , Japan , Mexico , Puerto Rico , Saudi Arabia", + "market_regions": "Asia , Central America , Middle East , North America" +} diff --git a/data/smartphone/apple/2021/iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-256gb.json b/data/smartphone/apple/2021/iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-256gb.json new file mode 100644 index 00000000000..ea313ddae18 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-256gb", + "name": "iPhone 13 5G A2631 Dual SIM TD-LTE JP CA MX 256GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 4.0, + "battery_mah": 3227, + "weight_g": 173.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1239, + "market_countries": "Canada , Guatemala , Japan , Mexico , Puerto Rico , Saudi Arabia", + "market_regions": "Asia , Central America , Middle East , North America" +} diff --git a/data/smartphone/apple/2021/iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-512gb.json b/data/smartphone/apple/2021/iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-512gb.json new file mode 100644 index 00000000000..0baa7954c3e --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-512gb", + "name": "iPhone 13 5G A2631 Dual SIM TD-LTE JP CA MX 512GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 4.0, + "battery_mah": 3227, + "weight_g": 173.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Canada , Guatemala , Japan , Mexico , Puerto Rico , Saudi Arabia", + "market_regions": "Asia , Central America , Middle East , North America" +} diff --git a/data/smartphone/apple/2021/iphone-13-5g-a2633-global-dual-sim-td-lte-128gb.json b/data/smartphone/apple/2021/iphone-13-5g-a2633-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..82f3a3ebd61 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-5g-a2633-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-13-5g-a2633-global-dual-sim-td-lte-128gb", + "name": "iPhone 13 5G A2633 Global Dual SIM TD-LTE 128GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 4.0, + "battery_mah": 3227, + "weight_g": 173.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 899, + "market_countries": "Algeria , Argentina , Australia , Austria , Bangladesh , Belgium , Bolivia , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , HK , Honduras , Hungary , India , Indonesia , Ireland , Israel , Italy , Jordan , Kenya , Kuwait , Latvia , Lebanon , Lithuania , Malaysia , Mali , Morocco , Mongolia , Myanmar , Nepal , Netherlands , Nigeria , Norway , NZ , Panama , Pakistan , Paraguay , Peru , Philippines , Poland , Portugal , Romania , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Sri Lanka , Switzerland , Sweden , Taiwan , Tanzania , Thailand , Tunisie , Turkey , UAE , UK , Ukraine , Uzbekistan , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2021/iphone-13-5g-a2633-global-dual-sim-td-lte-256gb.json b/data/smartphone/apple/2021/iphone-13-5g-a2633-global-dual-sim-td-lte-256gb.json new file mode 100644 index 00000000000..ac883b3cdce --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-5g-a2633-global-dual-sim-td-lte-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-13-5g-a2633-global-dual-sim-td-lte-256gb", + "name": "iPhone 13 5G A2633 Global Dual SIM TD-LTE 256GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 4.0, + "battery_mah": 3227, + "weight_g": 173.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1019, + "market_countries": "Algeria , Argentina , Australia , Austria , Bangladesh , Belgium , Bolivia , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , HK , Honduras , Hungary , India , Indonesia , Ireland , Israel , Italy , Jordan , Kenya , Kuwait , Latvia , Lebanon , Lithuania , Malaysia , Mali , Morocco , Mongolia , Myanmar , Nepal , Netherlands , Nigeria , Norway , NZ , Panama , Pakistan , Paraguay , Peru , Philippines , Poland , Portugal , Romania , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Sri Lanka , Switzerland , Sweden , Taiwan , Tanzania , Thailand , Tunisie , Turkey , UAE , UK , Ukraine , Uzbekistan , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2021/iphone-13-5g-a2633-global-dual-sim-td-lte-512gb.json b/data/smartphone/apple/2021/iphone-13-5g-a2633-global-dual-sim-td-lte-512gb.json new file mode 100644 index 00000000000..4eab0a6e9c4 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-5g-a2633-global-dual-sim-td-lte-512gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-13-5g-a2633-global-dual-sim-td-lte-512gb", + "name": "iPhone 13 5G A2633 Global Dual SIM TD-LTE 512GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 4.0, + "battery_mah": 3227, + "weight_g": 173.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1249, + "market_countries": "Algeria , Argentina , Australia , Austria , Bangladesh , Belgium , Bolivia , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , HK , Honduras , Hungary , India , Indonesia , Ireland , Israel , Italy , Jordan , Kenya , Kuwait , Latvia , Lebanon , Lithuania , Malaysia , Mali , Morocco , Mongolia , Myanmar , Nepal , Netherlands , Nigeria , Norway , NZ , Panama , Pakistan , Paraguay , Peru , Philippines , Poland , Portugal , Romania , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Sri Lanka , Switzerland , Sweden , Taiwan , Tanzania , Thailand , Tunisie , Turkey , UAE , UK , Ukraine , Uzbekistan , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2021/iphone-13-5g-a2634-dual-sim-td-lte-cn-128gb.json b/data/smartphone/apple/2021/iphone-13-5g-a2634-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..27aac0b12b1 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-5g-a2634-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-5g-a2634-dual-sim-td-lte-cn-128gb", + "name": "iPhone 13 5G A2634 Dual SIM TD-LTE CN 128GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 4.0, + "battery_mah": 3227, + "weight_g": 173.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/apple/2021/iphone-13-5g-a2634-dual-sim-td-lte-cn-256gb.json b/data/smartphone/apple/2021/iphone-13-5g-a2634-dual-sim-td-lte-cn-256gb.json new file mode 100644 index 00000000000..74b7e120437 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-5g-a2634-dual-sim-td-lte-cn-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-5g-a2634-dual-sim-td-lte-cn-256gb", + "name": "iPhone 13 5G A2634 Dual SIM TD-LTE CN 256GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 4.0, + "battery_mah": 3227, + "weight_g": 173.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/apple/2021/iphone-13-5g-a2634-dual-sim-td-lte-cn-512gb.json b/data/smartphone/apple/2021/iphone-13-5g-a2634-dual-sim-td-lte-cn-512gb.json new file mode 100644 index 00000000000..ac098577c9d --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-5g-a2634-dual-sim-td-lte-cn-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-5g-a2634-dual-sim-td-lte-cn-512gb", + "name": "iPhone 13 5G A2634 Dual SIM TD-LTE CN 512GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 4.0, + "battery_mah": 3227, + "weight_g": 173.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/apple/2021/iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-128gb.json b/data/smartphone/apple/2021/iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-128gb.json new file mode 100644 index 00000000000..5a3a28f3da5 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-128gb", + "name": "iPhone 13 5G A2635 Dual SIM TD-LTE RU KZ 128GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 4.0, + "battery_mah": 3227, + "weight_g": 173.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Armenia , Belarus , Kazakhstan , Kyrgyzstan , Russia", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/apple/2021/iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-256gb.json b/data/smartphone/apple/2021/iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-256gb.json new file mode 100644 index 00000000000..f18017dfd80 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-256gb", + "name": "iPhone 13 5G A2635 Dual SIM TD-LTE RU KZ 256GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 4.0, + "battery_mah": 3227, + "weight_g": 173.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Armenia , Belarus , Kazakhstan , Kyrgyzstan , Russia", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/apple/2021/iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-512gb.json b/data/smartphone/apple/2021/iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-512gb.json new file mode 100644 index 00000000000..8e56625db5c --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-512gb", + "name": "iPhone 13 5G A2635 Dual SIM TD-LTE RU KZ 512GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 4.0, + "battery_mah": 3227, + "weight_g": 173.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Armenia , Belarus , Kazakhstan , Kyrgyzstan , Russia", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/apple/2021/iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-128gb.json b/data/smartphone/apple/2021/iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-128gb.json new file mode 100644 index 00000000000..6bbf55ec7a8 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-128gb", + "name": "iPhone 13 mini 5G A2626 Dual SIM TD-LTE JP CA MX 128GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 4.0, + "battery_mah": 2406, + "weight_g": 140.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 478 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Canada , Guatemala , Japan , Mexico , Puerto Rico , Saudi Arabia", + "market_regions": "Asia , Central America , Middle East , North America" +} diff --git a/data/smartphone/apple/2021/iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-256gb.json b/data/smartphone/apple/2021/iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-256gb.json new file mode 100644 index 00000000000..58ad619d890 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-256gb", + "name": "iPhone 13 mini 5G A2626 Dual SIM TD-LTE JP CA MX 256GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 4.0, + "battery_mah": 2406, + "weight_g": 140.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 478 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1089, + "market_countries": "Canada , Guatemala , Japan , Mexico , Puerto Rico , Saudi Arabia", + "market_regions": "Asia , Central America , Middle East , North America" +} diff --git a/data/smartphone/apple/2021/iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-512gb.json b/data/smartphone/apple/2021/iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-512gb.json new file mode 100644 index 00000000000..96a5cd8bc5c --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-512gb", + "name": "iPhone 13 mini 5G A2626 Dual SIM TD-LTE JP CA MX 512GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 4.0, + "battery_mah": 2406, + "weight_g": 140.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 5.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 478 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Canada , Guatemala , Japan , Mexico , Puerto Rico , Saudi Arabia", + "market_regions": "Asia , Central America , Middle East , North America" +} diff --git a/data/smartphone/apple/2021/iphone-13-mini-5g-a2628-global-dual-sim-td-lte-128gb.json b/data/smartphone/apple/2021/iphone-13-mini-5g-a2628-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..e7e1a1d83aa --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-mini-5g-a2628-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-13-mini-5g-a2628-global-dual-sim-td-lte-128gb", + "name": "iPhone 13 mini 5G A2628 Global Dual SIM TD-LTE 128GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 4.0, + "battery_mah": 2406, + "weight_g": 140.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 478 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 799, + "market_countries": "Algeria , Argentina , Australia , Austria , Bangladesh , Belgium , Bolivia , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , HK , Honduras , Hungary , India , Indonesia , Ireland , Israel , Italy , Jordan , Kenya , Kuwait , Latvia , Lebanon , Lithuania , Malaysia , Mali , Morocco , Mongolia , Myanmar , Nepal , Netherlands , Nigeria , Norway , NZ , Panama , Pakistan , Paraguay , Peru , Philippines , Poland , Portugal , Romania , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Sri Lanka , Switzerland , Sweden , Taiwan , Tanzania , Thailand , Tunisie , Turkey , UAE , UK , Ukraine , Uzbekistan , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2021/iphone-13-mini-5g-a2628-global-dual-sim-td-lte-256gb.json b/data/smartphone/apple/2021/iphone-13-mini-5g-a2628-global-dual-sim-td-lte-256gb.json new file mode 100644 index 00000000000..611c9f398f9 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-mini-5g-a2628-global-dual-sim-td-lte-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-13-mini-5g-a2628-global-dual-sim-td-lte-256gb", + "name": "iPhone 13 mini 5G A2628 Global Dual SIM TD-LTE 256GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 4.0, + "battery_mah": 2406, + "weight_g": 140.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 478 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 919, + "market_countries": "Algeria , Argentina , Australia , Austria , Bangladesh , Belgium , Bolivia , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , HK , Honduras , Hungary , India , Indonesia , Ireland , Israel , Italy , Jordan , Kenya , Kuwait , Latvia , Lebanon , Lithuania , Malaysia , Mali , Morocco , Mongolia , Myanmar , Nepal , Netherlands , Nigeria , Norway , NZ , Panama , Pakistan , Paraguay , Peru , Philippines , Poland , Portugal , Romania , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Sri Lanka , Switzerland , Sweden , Taiwan , Tanzania , Thailand , Tunisie , Turkey , UAE , UK , Ukraine , Uzbekistan , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2021/iphone-13-mini-5g-a2628-global-dual-sim-td-lte-512gb.json b/data/smartphone/apple/2021/iphone-13-mini-5g-a2628-global-dual-sim-td-lte-512gb.json new file mode 100644 index 00000000000..debd2e059db --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-mini-5g-a2628-global-dual-sim-td-lte-512gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-13-mini-5g-a2628-global-dual-sim-td-lte-512gb", + "name": "iPhone 13 mini 5G A2628 Global Dual SIM TD-LTE 512GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 4.0, + "battery_mah": 2406, + "weight_g": 140.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 5.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 478 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1149, + "market_countries": "Algeria , Argentina , Australia , Austria , Bangladesh , Belgium , Bolivia , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , HK , Honduras , Hungary , India , Indonesia , Ireland , Israel , Italy , Jordan , Kenya , Kuwait , Latvia , Lebanon , Lithuania , Malaysia , Mali , Morocco , Mongolia , Myanmar , Nepal , Netherlands , Nigeria , Norway , NZ , Panama , Pakistan , Paraguay , Peru , Philippines , Poland , Portugal , Romania , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Sri Lanka , Switzerland , Sweden , Taiwan , Tanzania , Thailand , Tunisie , Turkey , UAE , UK , Ukraine , Uzbekistan , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2021/iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-128gb.json b/data/smartphone/apple/2021/iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..f45a3a70c44 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-128gb", + "name": "iPhone 13 mini 5G A2629 Dual SIM TD-LTE CN 128GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 4.0, + "battery_mah": 2406, + "weight_g": 140.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 478 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/apple/2021/iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-256gb.json b/data/smartphone/apple/2021/iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-256gb.json new file mode 100644 index 00000000000..614b383fdf1 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-256gb", + "name": "iPhone 13 mini 5G A2629 Dual SIM TD-LTE CN 256GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 4.0, + "battery_mah": 2406, + "weight_g": 140.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 478 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/apple/2021/iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-512gb.json b/data/smartphone/apple/2021/iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-512gb.json new file mode 100644 index 00000000000..e0daf344554 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-512gb", + "name": "iPhone 13 mini 5G A2629 Dual SIM TD-LTE CN 512GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 4.0, + "battery_mah": 2406, + "weight_g": 140.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 5.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 478 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/apple/2021/iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-128gb.json b/data/smartphone/apple/2021/iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-128gb.json new file mode 100644 index 00000000000..a558d6c8aa3 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-128gb", + "name": "iPhone 13 mini 5G A2630 Dual SIM TD-LTE RU KZ 128GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 4.0, + "battery_mah": 2406, + "weight_g": 140.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 478 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Armenia , Belarus , Kazakhstan , Kyrgyzstan , Russia", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/apple/2021/iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-256gb.json b/data/smartphone/apple/2021/iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-256gb.json new file mode 100644 index 00000000000..12f74fbff61 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-256gb", + "name": "iPhone 13 mini 5G A2630 Dual SIM TD-LTE RU KZ 256GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 4.0, + "battery_mah": 2406, + "weight_g": 140.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 478 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Armenia , Belarus , Kazakhstan , Kyrgyzstan , Russia", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/apple/2021/iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-512gb.json b/data/smartphone/apple/2021/iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-512gb.json new file mode 100644 index 00000000000..2c1e27e8f6c --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-512gb", + "name": "iPhone 13 mini 5G A2630 Dual SIM TD-LTE RU KZ 512GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 4.0, + "battery_mah": 2406, + "weight_g": 140.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 5.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 478 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Armenia , Belarus , Kazakhstan , Kyrgyzstan , Russia", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/apple/2021/iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-128gb.json b/data/smartphone/apple/2021/iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-128gb.json new file mode 100644 index 00000000000..a7936b3c97a --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-128gb", + "name": "iPhone 13 mini UW 5G A2481 Dual SIM TD-LTE US 128GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 4.0, + "battery_mah": 2406, + "weight_g": 141.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 478 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 799, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/apple/2021/iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-256gb.json b/data/smartphone/apple/2021/iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-256gb.json new file mode 100644 index 00000000000..0313c72fcc8 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-256gb", + "name": "iPhone 13 mini UW 5G A2481 Dual SIM TD-LTE US 256GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 4.0, + "battery_mah": 2406, + "weight_g": 141.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 478 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 799, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/apple/2021/iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-512gb.json b/data/smartphone/apple/2021/iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-512gb.json new file mode 100644 index 00000000000..b51ec7a6643 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-512gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-512gb", + "name": "iPhone 13 mini UW 5G A2481 Dual SIM TD-LTE US 512GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 4.0, + "battery_mah": 2406, + "weight_g": 141.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 5.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 478 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 999, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-128gb.json b/data/smartphone/apple/2021/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-128gb.json new file mode 100644 index 00000000000..cb449994b6f --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-128gb", + "name": "iPhone 13 Pro 5G A2636 Dual SIM TD-LTE JP CA MX 128GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 3095, + "weight_g": 203.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Canada , Guatemala , Japan , Mexico , Puerto Rico , Saudi Arabia", + "market_regions": "Asia , Central America , Middle East , North America" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-1tb.json b/data/smartphone/apple/2021/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-1tb.json new file mode 100644 index 00000000000..b253b7e3c59 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-1tb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-1tb", + "name": "iPhone 13 Pro 5G A2636 Dual SIM TD-LTE JP CA MX 1TB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 3095, + "weight_g": 203.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 2079, + "market_countries": "Canada , Guatemala , Japan , Mexico , Puerto Rico , Saudi Arabia", + "market_regions": "Asia , Central America , Middle East , North America" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-256gb.json b/data/smartphone/apple/2021/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-256gb.json new file mode 100644 index 00000000000..b9558752f14 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-256gb", + "name": "iPhone 13 Pro 5G A2636 Dual SIM TD-LTE JP CA MX 256GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 3095, + "weight_g": 203.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Canada , Guatemala , Japan , Mexico , Puerto Rico , Saudi Arabia", + "market_regions": "Asia , Central America , Middle East , North America" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-512gb.json b/data/smartphone/apple/2021/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-512gb.json new file mode 100644 index 00000000000..72dc681763d --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-512gb", + "name": "iPhone 13 Pro 5G A2636 Dual SIM TD-LTE JP CA MX 512GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 3095, + "weight_g": 203.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Canada , Guatemala , Japan , Mexico , Puerto Rico , Saudi Arabia", + "market_regions": "Asia , Central America , Middle East , North America" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-128gb.json b/data/smartphone/apple/2021/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..5d11a2b148b --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-13-pro-5g-a2638-global-dual-sim-td-lte-128gb", + "name": "iPhone 13 Pro 5G A2638 Global Dual SIM TD-LTE 128GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 3095, + "weight_g": 203.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1149, + "market_countries": "Algeria , Argentina , Australia , Austria , Bangladesh , Belgium , Bolivia , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , HK , Honduras , Hungary , India , Indonesia , Ireland , Israel , Italy , Jordan , Kenya , Kuwait , Latvia , Lebanon , Lithuania , Malaysia , Mali , Morocco , Mongolia , Myanmar , Nepal , Netherlands , Nigeria , Norway , NZ , Panama , Pakistan , Paraguay , Peru , Philippines , Poland , Portugal , Romania , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Sri Lanka , Switzerland , Sweden , Taiwan , Tanzania , Thailand , Tunisie , Turkey , UAE , UK , Ukraine , Uzbekistan , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-1tb.json b/data/smartphone/apple/2021/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-1tb.json new file mode 100644 index 00000000000..417f31aa086 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-1tb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-13-pro-5g-a2638-global-dual-sim-td-lte-1tb", + "name": "iPhone 13 Pro 5G A2638 Global Dual SIM TD-LTE 1TB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 3095, + "weight_g": 203.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1729, + "market_countries": "Algeria , Argentina , Australia , Austria , Bangladesh , Belgium , Bolivia , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , HK , Honduras , Hungary , India , Indonesia , Ireland , Israel , Italy , Jordan , Kenya , Kuwait , Latvia , Lebanon , Lithuania , Malaysia , Mali , Morocco , Mongolia , Myanmar , Nepal , Netherlands , Nigeria , Norway , NZ , Panama , Pakistan , Paraguay , Peru , Philippines , Poland , Portugal , Romania , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Sri Lanka , Switzerland , Sweden , Taiwan , Tanzania , Thailand , Tunisie , Turkey , UAE , UK , Ukraine , Uzbekistan , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-256gb.json b/data/smartphone/apple/2021/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-256gb.json new file mode 100644 index 00000000000..44d73ec96d0 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-13-pro-5g-a2638-global-dual-sim-td-lte-256gb", + "name": "iPhone 13 Pro 5G A2638 Global Dual SIM TD-LTE 256GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 3095, + "weight_g": 203.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1269, + "market_countries": "Algeria , Argentina , Australia , Austria , Bangladesh , Belgium , Bolivia , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , HK , Honduras , Hungary , India , Indonesia , Ireland , Israel , Italy , Jordan , Kenya , Kuwait , Latvia , Lebanon , Lithuania , Malaysia , Mali , Morocco , Mongolia , Myanmar , Nepal , Netherlands , Nigeria , Norway , NZ , Panama , Pakistan , Paraguay , Peru , Philippines , Poland , Portugal , Romania , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Sri Lanka , Switzerland , Sweden , Taiwan , Tanzania , Thailand , Tunisie , Turkey , UAE , UK , Ukraine , Uzbekistan , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-512gb.json b/data/smartphone/apple/2021/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-512gb.json new file mode 100644 index 00000000000..e9175775b78 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-512gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-13-pro-5g-a2638-global-dual-sim-td-lte-512gb", + "name": "iPhone 13 Pro 5G A2638 Global Dual SIM TD-LTE 512GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 3095, + "weight_g": 204.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1499, + "market_countries": "Algeria , Argentina , Australia , Austria , Bangladesh , Belgium , Bolivia , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , HK , Honduras , Hungary , India , Indonesia , Ireland , Israel , Italy , Jordan , Kenya , Kuwait , Latvia , Lebanon , Lithuania , Malaysia , Mali , Morocco , Mongolia , Myanmar , Nepal , Netherlands , Nigeria , Norway , NZ , Panama , Pakistan , Paraguay , Peru , Philippines , Poland , Portugal , Romania , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Sri Lanka , Switzerland , Sweden , Taiwan , Tanzania , Thailand , Tunisie , Turkey , UAE , UK , Ukraine , Uzbekistan , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-128gb.json b/data/smartphone/apple/2021/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..e5c1f44f818 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-128gb", + "name": "iPhone 13 Pro 5G A2639 Dual SIM TD-LTE CN 128GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 3095, + "weight_g": 203.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-1tb.json b/data/smartphone/apple/2021/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-1tb.json new file mode 100644 index 00000000000..ed1c128b3a3 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-1tb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-1tb", + "name": "iPhone 13 Pro 5G A2639 Dual SIM TD-LTE CN 1TB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 3095, + "weight_g": 203.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-256gb.json b/data/smartphone/apple/2021/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-256gb.json new file mode 100644 index 00000000000..1506b31d6aa --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-256gb", + "name": "iPhone 13 Pro 5G A2639 Dual SIM TD-LTE CN 256GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 3095, + "weight_g": 203.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-512gb.json b/data/smartphone/apple/2021/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-512gb.json new file mode 100644 index 00000000000..40af0e88c04 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-512gb", + "name": "iPhone 13 Pro 5G A2639 Dual SIM TD-LTE CN 512GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 3095, + "weight_g": 203.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-128gb.json b/data/smartphone/apple/2021/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-128gb.json new file mode 100644 index 00000000000..2cf7d1f6df1 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-128gb", + "name": "iPhone 13 Pro 5G A2640 Dual SIM TD-LTE RU KZ 128GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 3095, + "weight_g": 203.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Armenia , Belarus , Kazakhstan , Kyrgyzstan , Russia", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-1tb.json b/data/smartphone/apple/2021/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-1tb.json new file mode 100644 index 00000000000..7989f75db02 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-1tb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-1tb", + "name": "iPhone 13 Pro 5G A2640 Dual SIM TD-LTE RU KZ 1TB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 3095, + "weight_g": 203.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Armenia , Belarus , Kazakhstan , Kyrgyzstan , Russia", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-256gb.json b/data/smartphone/apple/2021/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-256gb.json new file mode 100644 index 00000000000..3a400aaaa42 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-256gb", + "name": "iPhone 13 Pro 5G A2640 Dual SIM TD-LTE RU KZ 256GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 3095, + "weight_g": 203.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Armenia , Belarus , Kazakhstan , Kyrgyzstan , Russia", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-512gb.json b/data/smartphone/apple/2021/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-512gb.json new file mode 100644 index 00000000000..661fe97dce9 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-512gb", + "name": "iPhone 13 Pro 5G A2640 Dual SIM TD-LTE RU KZ 512GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 3095, + "weight_g": 203.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Armenia , Belarus , Kazakhstan , Kyrgyzstan , Russia", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-128gb.json b/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-128gb.json new file mode 100644 index 00000000000..87edd8e2ee9 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-128gb", + "name": "iPhone 13 Pro Max 5G A2641 Dual SIM TD-LTE JP CA MX 128GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 4352, + "weight_g": 238.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Canada , Guatemala , Japan , Mexico , Puerto Rico , Saudi Arabia", + "market_regions": "Asia , Central America , Middle East , North America" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-1tb.json b/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-1tb.json new file mode 100644 index 00000000000..bf73a6935e7 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-1tb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-1tb", + "name": "iPhone 13 Pro Max 5G A2641 Dual SIM TD-LTE JP CA MX 1TB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 4352, + "weight_g": 238.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Canada , Guatemala , Japan , Mexico , Puerto Rico , Saudi Arabia", + "market_regions": "Asia , Central America , Middle East , North America" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-256gb.json b/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-256gb.json new file mode 100644 index 00000000000..ba847e14ff3 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-256gb", + "name": "iPhone 13 Pro Max 5G A2641 Dual SIM TD-LTE JP CA MX 256GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 4352, + "weight_g": 238.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1689, + "market_countries": "Canada , Guatemala , Japan , Mexico , Puerto Rico , Saudi Arabia", + "market_regions": "Asia , Central America , Middle East , North America" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-512gb.json b/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-512gb.json new file mode 100644 index 00000000000..06a16b11cd3 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-512gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-512gb", + "name": "iPhone 13 Pro Max 5G A2641 Dual SIM TD-LTE JP CA MX 512GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 4352, + "weight_g": 238.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1959, + "market_countries": "Canada , Guatemala , Japan , Mexico , Puerto Rico , Saudi Arabia", + "market_regions": "Asia , Central America , Middle East , North America" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-128gb.json b/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..a23daab2baf --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-128gb", + "name": "iPhone 13 Pro Max 5G A2643 Global Dual SIM TD-LTE 128GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 4352, + "weight_g": 238.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1249, + "market_countries": "Algeria , Argentina , Australia , Austria , Bangladesh , Belgium , Bolivia , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , HK , Honduras , Hungary , India , Indonesia , Ireland , Israel , Italy , Jordan , Kenya , Kuwait , Latvia , Lebanon , Lithuania , Malaysia , Mali , Mongolia , Morocco , Myanmar , Nepal , Netherlands , Nicaragua , Nigeria , Norway , NZ , Panama , Pakistan , Paraguay , Peru , Philippines , Poland , Portugal , Romania , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Sweden , Sri Lanka , Switzerland , Taiwan , Tanzania , Thailand , Tunisie , Turkey , UAE , UK , Ukraine , Uzbekistan , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-1tb.json b/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-1tb.json new file mode 100644 index 00000000000..10b9c9e3564 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-1tb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-1tb", + "name": "iPhone 13 Pro Max 5G A2643 Global Dual SIM TD-LTE 1TB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 4352, + "weight_g": 238.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1829, + "market_countries": "Algeria , Argentina , Australia , Austria , Bangladesh , Belgium , Bolivia , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , HK , Honduras , Hungary , India , Indonesia , Ireland , Israel , Italy , Jordan , Kenya , Kuwait , Latvia , Lebanon , Lithuania , Malaysia , Mali , Mongolia , Morocco , Myanmar , Nepal , Netherlands , Nicaragua , Nigeria , Norway , NZ , Panama , Pakistan , Paraguay , Peru , Philippines , Poland , Portugal , Romania , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Sweden , Sri Lanka , Switzerland , Taiwan , Tanzania , Thailand , Tunisie , Turkey , UAE , UK , Ukraine , Uzbekistan , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-256gb.json b/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-256gb.json new file mode 100644 index 00000000000..89596d8c9a8 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-256gb", + "name": "iPhone 13 Pro Max 5G A2643 Global Dual SIM TD-LTE 256GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 4352, + "weight_g": 238.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1369, + "market_countries": "Algeria , Argentina , Australia , Austria , Bangladesh , Belgium , Bolivia , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , HK , Honduras , Hungary , India , Indonesia , Ireland , Israel , Italy , Jordan , Kenya , Kuwait , Latvia , Lebanon , Lithuania , Malaysia , Mali , Mongolia , Morocco , Myanmar , Nepal , Netherlands , Nicaragua , Nigeria , Norway , NZ , Panama , Pakistan , Paraguay , Peru , Philippines , Poland , Portugal , Romania , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Sweden , Sri Lanka , Switzerland , Taiwan , Tanzania , Thailand , Tunisie , Turkey , UAE , UK , Ukraine , Uzbekistan , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-512gb.json b/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-512gb.json new file mode 100644 index 00000000000..62aa27aa268 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-512gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-512gb", + "name": "iPhone 13 Pro Max 5G A2643 Global Dual SIM TD-LTE 512GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 4352, + "weight_g": 238.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1599, + "market_countries": "Algeria , Argentina , Australia , Austria , Bangladesh , Belgium , Bolivia , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , HK , Honduras , Hungary , India , Indonesia , Ireland , Israel , Italy , Jordan , Kenya , Kuwait , Latvia , Lebanon , Lithuania , Malaysia , Mali , Mongolia , Morocco , Myanmar , Nepal , Netherlands , Nicaragua , Nigeria , Norway , NZ , Panama , Pakistan , Paraguay , Peru , Philippines , Poland , Portugal , Romania , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Sweden , Sri Lanka , Switzerland , Taiwan , Tanzania , Thailand , Tunisie , Turkey , UAE , UK , Ukraine , Uzbekistan , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-128gb.json b/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..950d80a0ce1 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-128gb", + "name": "iPhone 13 Pro Max 5G A2644 Dual SIM TD-LTE CN 128GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 4352, + "weight_g": 238.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-1tb.json b/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-1tb.json new file mode 100644 index 00000000000..0913bd206d4 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-1tb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-1tb", + "name": "iPhone 13 Pro Max 5G A2644 Dual SIM TD-LTE CN 1TB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 4352, + "weight_g": 238.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-256gb.json b/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-256gb.json new file mode 100644 index 00000000000..131b2b0c7a7 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-256gb", + "name": "iPhone 13 Pro Max 5G A2644 Dual SIM TD-LTE CN 256GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 4352, + "weight_g": 238.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-512gb.json b/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-512gb.json new file mode 100644 index 00000000000..8b083f2c5c6 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-512gb", + "name": "iPhone 13 Pro Max 5G A2644 Dual SIM TD-LTE CN 512GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 4352, + "weight_g": 238.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-128gb.json b/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-128gb.json new file mode 100644 index 00000000000..49ce27216af --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-128gb", + "name": "iPhone 13 Pro Max 5G A2645 Dual SIM TD-LTE RU KZ 128GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 4352, + "weight_g": 238.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Armenia , Belarus , Kazakhstan , Kyrgyzstan , Russia", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-1tb.json b/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-1tb.json new file mode 100644 index 00000000000..a86294bb81d --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-1tb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-1tb", + "name": "iPhone 13 Pro Max 5G A2645 Dual SIM TD-LTE RU KZ 1TB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 4352, + "weight_g": 238.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Armenia , Belarus , Kazakhstan , Kyrgyzstan , Russia", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-256gb.json b/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-256gb.json new file mode 100644 index 00000000000..b730f6b32d5 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-256gb", + "name": "iPhone 13 Pro Max 5G A2645 Dual SIM TD-LTE RU KZ 256GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 4352, + "weight_g": 238.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Armenia , Belarus , Kazakhstan , Kyrgyzstan , Russia", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-512gb.json b/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-512gb.json new file mode 100644 index 00000000000..b2966ff7901 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-512gb", + "name": "iPhone 13 Pro Max 5G A2645 Dual SIM TD-LTE RU KZ 512GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 4352, + "weight_g": 238.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Armenia , Belarus , Kazakhstan , Kyrgyzstan , Russia", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-128gb.json b/data/smartphone/apple/2021/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-128gb.json new file mode 100644 index 00000000000..737bbf8530a --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-128gb", + "name": "iPhone 13 Pro Max UW 5G A2484 Dual SIM TD-LTE US 128GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 4352, + "weight_g": 240.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1099, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-1tb.json b/data/smartphone/apple/2021/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-1tb.json new file mode 100644 index 00000000000..9979e0b2c9d --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-1tb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-1tb", + "name": "iPhone 13 Pro Max UW 5G A2484 Dual SIM TD-LTE US 1TB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 4352, + "weight_g": 240.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1599, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-256gb.json b/data/smartphone/apple/2021/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-256gb.json new file mode 100644 index 00000000000..69049e31e79 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-256gb", + "name": "iPhone 13 Pro Max UW 5G A2484 Dual SIM TD-LTE US 256GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 4352, + "weight_g": 240.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1199, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-512gb.json b/data/smartphone/apple/2021/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-512gb.json new file mode 100644 index 00000000000..21f4b021a56 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-512gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-512gb", + "name": "iPhone 13 Pro Max UW 5G A2484 Dual SIM TD-LTE US 512GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 4352, + "weight_g": 240.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1399, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-128gb.json b/data/smartphone/apple/2021/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-128gb.json new file mode 100644 index 00000000000..79766195779 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-128gb", + "name": "iPhone 13 Pro UW 5G A2483 Dual SIM TD-LTE US 128GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 3095, + "weight_g": 204.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1099, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-1tb.json b/data/smartphone/apple/2021/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-1tb.json new file mode 100644 index 00000000000..faffd90c935 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-1tb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-1tb", + "name": "iPhone 13 Pro UW 5G A2483 Dual SIM TD-LTE US 1TB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 3095, + "weight_g": 204.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1499, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-256gb.json b/data/smartphone/apple/2021/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-256gb.json new file mode 100644 index 00000000000..f00d56eee52 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-256gb", + "name": "iPhone 13 Pro UW 5G A2483 Dual SIM TD-LTE US 256GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 3095, + "weight_g": 204.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1099, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/apple/2021/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-512gb.json b/data/smartphone/apple/2021/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-512gb.json new file mode 100644 index 00000000000..d9051bb56f8 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-512gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-512gb", + "name": "iPhone 13 Pro UW 5G A2483 Dual SIM TD-LTE US 512GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 6.0, + "battery_mah": 3095, + "weight_g": 204.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1299, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/apple/2021/iphone-13-uw-5g-a2482-dual-sim-td-lte-us-128gb.json b/data/smartphone/apple/2021/iphone-13-uw-5g-a2482-dual-sim-td-lte-us-128gb.json new file mode 100644 index 00000000000..2d42d6b04fb --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-uw-5g-a2482-dual-sim-td-lte-us-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-13-uw-5g-a2482-dual-sim-td-lte-us-128gb", + "name": "iPhone 13 UW 5G A2482 Dual SIM TD-LTE US 128GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 4.0, + "battery_mah": 3227, + "weight_g": 174.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 799, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/apple/2021/iphone-13-uw-5g-a2482-dual-sim-td-lte-us-256gb.json b/data/smartphone/apple/2021/iphone-13-uw-5g-a2482-dual-sim-td-lte-us-256gb.json new file mode 100644 index 00000000000..3b6c9aba9a7 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-uw-5g-a2482-dual-sim-td-lte-us-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-13-uw-5g-a2482-dual-sim-td-lte-us-256gb", + "name": "iPhone 13 UW 5G A2482 Dual SIM TD-LTE US 256GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 4.0, + "battery_mah": 3227, + "weight_g": 174.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 899, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/apple/2021/iphone-13-uw-5g-a2482-dual-sim-td-lte-us-512gb.json b/data/smartphone/apple/2021/iphone-13-uw-5g-a2482-dual-sim-td-lte-us-512gb.json new file mode 100644 index 00000000000..223aacbad05 --- /dev/null +++ b/data/smartphone/apple/2021/iphone-13-uw-5g-a2482-dual-sim-td-lte-us-512gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-13-uw-5g-a2482-dual-sim-td-lte-us-512gb", + "name": "iPhone 13 UW 5G A2482 Dual SIM TD-LTE US 512GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2021-09-24", + "ram_gb": 4.0, + "battery_mah": 3227, + "weight_g": 174.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 1099, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/apple/2022/iphone-se-5g-2022-3rd-gen-a2595-dual-sim-td-lte-na-64gb.json b/data/smartphone/apple/2022/iphone-se-5g-2022-3rd-gen-a2595-dual-sim-td-lte-na-64gb.json new file mode 100644 index 00000000000..4224286cca1 --- /dev/null +++ b/data/smartphone/apple/2022/iphone-se-5g-2022-3rd-gen-a2595-dual-sim-td-lte-na-64gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-se-5g-2022-3rd-gen-a2595-dual-sim-td-lte-na-64gb", + "name": "iPhone SE 5G 2022 3rd gen A2595 Dual SIM TD-LTE NA 64GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2022-03-18", + "ram_gb": 4.0, + "battery_mah": 2018, + "weight_g": 144.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 429, + "market_countries": "Canada , Guatemala , Mexico , Puerto Rico , Saudi Arabia , USA", + "market_regions": "Asia , Central America , Middle East , North America" +} diff --git a/data/smartphone/apple/2022/iphone-se-5g-2022-3rd-gen-a2782-dual-sim-td-lte-jp-64gb.json b/data/smartphone/apple/2022/iphone-se-5g-2022-3rd-gen-a2782-dual-sim-td-lte-jp-64gb.json new file mode 100644 index 00000000000..459f79706e3 --- /dev/null +++ b/data/smartphone/apple/2022/iphone-se-5g-2022-3rd-gen-a2782-dual-sim-td-lte-jp-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-se-5g-2022-3rd-gen-a2782-dual-sim-td-lte-jp-64gb", + "name": "iPhone SE 5G 2022 3rd gen A2782 Dual SIM TD-LTE JP 64GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2022-03-18", + "ram_gb": 4.0, + "battery_mah": 2018, + "weight_g": 144.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/apple/2022/iphone-se-5g-2022-3rd-gen-a2783-global-dual-sim-td-lte-64gb.json b/data/smartphone/apple/2022/iphone-se-5g-2022-3rd-gen-a2783-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..8b6d9d04c08 --- /dev/null +++ b/data/smartphone/apple/2022/iphone-se-5g-2022-3rd-gen-a2783-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-se-5g-2022-3rd-gen-a2783-global-dual-sim-td-lte-64gb", + "name": "iPhone SE 5G 2022 3rd gen A2783 Global Dual SIM TD-LTE 64GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2022-03-18", + "ram_gb": 4.0, + "battery_mah": 2018, + "weight_g": 144.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 519, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Bolivia , Brazil , Bulgaria , Cambodia , Chile , Colombia , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , HK , Hungary , India , Indonesia , Ireland , Israel , Italy , Japan , Jordan , Kazakhstan , Kenya , Kuwait , Kyrgyzstan , Latvia , Lithuania , Malaysia , Morocco , Myanmar , Nepal , Netherlands , Nicaragua , Nigeria , Norway , NZ , Panama , Pakistan , Peru , Philippines , Poland , Portugal , Russia , Romania , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Sweden , Switzerland , Sri Lanka , Taiwan , Tanzania , Thailand , Tunisie , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/apple/2022/iphone-se-5g-2022-3rd-gen-a2784-dual-sim-td-lte-ru-kz-64gb.json b/data/smartphone/apple/2022/iphone-se-5g-2022-3rd-gen-a2784-dual-sim-td-lte-ru-kz-64gb.json new file mode 100644 index 00000000000..81c72e9572b --- /dev/null +++ b/data/smartphone/apple/2022/iphone-se-5g-2022-3rd-gen-a2784-dual-sim-td-lte-ru-kz-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "iphone-se-5g-2022-3rd-gen-a2784-dual-sim-td-lte-ru-kz-64gb", + "name": "iPhone SE 5G 2022 3rd gen A2784 Dual SIM TD-LTE RU KZ 64GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2022-03-18", + "ram_gb": 4.0, + "battery_mah": 2018, + "weight_g": 144.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Armenia , Belarus , Kazakhstan , Kyrgyzstan , Russia", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/apple/2022/iphone-se-5g-2022-3rd-gen-a2785-dual-sim-td-lte-cn-64gb.json b/data/smartphone/apple/2022/iphone-se-5g-2022-3rd-gen-a2785-dual-sim-td-lte-cn-64gb.json new file mode 100644 index 00000000000..a15ff04de5d --- /dev/null +++ b/data/smartphone/apple/2022/iphone-se-5g-2022-3rd-gen-a2785-dual-sim-td-lte-cn-64gb.json @@ -0,0 +1,44 @@ +{ + "slug": "iphone-se-5g-2022-3rd-gen-a2785-dual-sim-td-lte-cn-64gb", + "name": "iPhone SE 5G 2022 3rd gen A2785 Dual SIM TD-LTE CN 64GB", + "brand": "apple", + "soc": "apple-a15-bionic", + "release_date": "2022-03-18", + "ram_gb": 4.0, + "battery_mah": 2018, + "weight_g": 144.0, + "os": "iOS", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "15", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "msrp_usd": 3499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/archos/2019/diamond-2019-dual-sim-lte.json b/data/smartphone/archos/2019/diamond-2019-dual-sim-lte.json new file mode 100644 index 00000000000..a4811528664 --- /dev/null +++ b/data/smartphone/archos/2019/diamond-2019-dual-sim-lte.json @@ -0,0 +1,39 @@ +{ + "slug": "diamond-2019-dual-sim-lte", + "name": "Diamond 2019 Dual SIM LTE", + "brand": "archos", + "soc": "helio-p70", + "release_date": "2019-02-21", + "ram_gb": 4.0, + "battery_mah": 3400, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + } +} diff --git a/data/smartphone/archos/2019/oxygen-68-xl-dual-sim-lte.json b/data/smartphone/archos/2019/oxygen-68-xl-dual-sim-lte.json new file mode 100644 index 00000000000..012cdc4af40 --- /dev/null +++ b/data/smartphone/archos/2019/oxygen-68-xl-dual-sim-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "oxygen-68-xl-dual-sim-lte", + "name": "Oxygen 68 XL Dual SIM LTE", + "brand": "archos", + "soc": "helio-p22", + "release_date": "2019-05-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 214.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.85, + "resolution": "640x1352", + "type": "Color IPS TFT LCD display", + "ppi": 218 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Denmark , France , Germany , Ireland , Italy , Poland , Spain , Switzerland , UK", + "market_regions": "Europe" +} diff --git a/data/smartphone/archos/2021/x67-5g-global-dual-sim-lte.json b/data/smartphone/archos/2021/x67-5g-global-dual-sim-lte.json new file mode 100644 index 00000000000..da52cbb8400 --- /dev/null +++ b/data/smartphone/archos/2021/x67-5g-global-dual-sim-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "x67-5g-global-dual-sim-lte", + "name": "X67 5G Global Dual SIM LTE", + "brand": "archos", + "soc": "dimensity-800", + "release_date": "2021-02-01", + "ram_gb": 8, + "battery_mah": 8000, + "weight_g": 380.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Denmark , France , Germany , Ireland , Italy , Poland , Spain , Switzerland , UK", + "market_regions": "Europe" +} diff --git a/data/smartphone/asus/2016/zenfone-go-4-5-dual-sim-zb452kg.json b/data/smartphone/asus/2016/zenfone-go-4-5-dual-sim-zb452kg.json new file mode 100644 index 00000000000..9389734ec14 --- /dev/null +++ b/data/smartphone/asus/2016/zenfone-go-4-5-dual-sim-zb452kg.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-go-4-5-dual-sim-zb452kg", + "name": "ZenFone Go 4.5 Dual SIM ZB452KG", + "brand": "asus", + "soc": "snapdragon-200", + "release_date": "2016-07-01", + "ram_gb": 1.0, + "battery_mah": 2070, + "weight_g": 125.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "5.1", + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 4.5, + "resolution": "480x845", + "type": "Color IPS TFT LCD display", + "ppi": 216 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Armenia , Austria , Belarus , Belgium , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , Indonesia , Ireland , Italy , Japan , Kazakhstan , Latvia , Lithuania , Malaysia , Netherlands , Norway , Pakistan , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , Thailand , UAE , UK , Ukraine", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/asus/2018/rog-phone-dual-sim-td-lte-cn-version-b-zs600kl-128gb.json b/data/smartphone/asus/2018/rog-phone-dual-sim-td-lte-cn-version-b-zs600kl-128gb.json new file mode 100644 index 00000000000..f5946783bd0 --- /dev/null +++ b/data/smartphone/asus/2018/rog-phone-dual-sim-td-lte-cn-version-b-zs600kl-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "rog-phone-dual-sim-td-lte-cn-version-b-zs600kl-128gb", + "name": "ROG Phone Dual SIM TD-LTE CN Version B ZS600KL 128GB", + "brand": "asus", + "soc": "snapdragon-845", + "release_date": "2018-08-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/asus/2018/rog-phone-global-dual-sim-td-lte-version-a-zs600kl-128gb.json b/data/smartphone/asus/2018/rog-phone-global-dual-sim-td-lte-version-a-zs600kl-128gb.json new file mode 100644 index 00000000000..6820345ba83 --- /dev/null +++ b/data/smartphone/asus/2018/rog-phone-global-dual-sim-td-lte-version-a-zs600kl-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "rog-phone-global-dual-sim-td-lte-version-a-zs600kl-128gb", + "name": "ROG Phone Global Dual SIM TD-LTE Version A ZS600KL 128GB", + "brand": "asus", + "soc": "snapdragon-845", + "release_date": "2018-08-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Finland , Germany , India , Italy , Japan , Malaysia , Mexico , Taiwan , USA", + "market_regions": "Asia , Eastern Europe , Europe , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/asus/2018/rog-phone-global-dual-sim-td-lte-version-a-zs600kl-512gb.json b/data/smartphone/asus/2018/rog-phone-global-dual-sim-td-lte-version-a-zs600kl-512gb.json new file mode 100644 index 00000000000..8304dceaf9f --- /dev/null +++ b/data/smartphone/asus/2018/rog-phone-global-dual-sim-td-lte-version-a-zs600kl-512gb.json @@ -0,0 +1,42 @@ +{ + "slug": "rog-phone-global-dual-sim-td-lte-version-a-zs600kl-512gb", + "name": "ROG Phone Global Dual SIM TD-LTE Version A ZS600KL 512GB", + "brand": "asus", + "soc": "snapdragon-845", + "release_date": "2018-08-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "market_countries": "Brazil , Finland , Germany , India , Italy , Japan , Malaysia , Mexico , Taiwan , USA", + "market_regions": "Asia , Eastern Europe , Europe , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/asus/2018/zenfone-5-2018-dual-sim-td-lte-br-us-tw-ph-au-version-b-ze620kl.json b/data/smartphone/asus/2018/zenfone-5-2018-dual-sim-td-lte-br-us-tw-ph-au-version-b-ze620kl.json new file mode 100644 index 00000000000..98ba77b6ae1 --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-5-2018-dual-sim-td-lte-br-us-tw-ph-au-version-b-ze620kl.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-5-2018-dual-sim-td-lte-br-us-tw-ph-au-version-b-ze620kl", + "name": "ZenFone 5 2018 Dual SIM TD-LTE BR US TW PH AU Version B ZE620KL", + "brand": "asus", + "soc": "snapdragon-636", + "release_date": "2018-06-01", + "ram_gb": 4.0, + "battery_mah": 3300, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Brazil , Canada , Philippines , Taiwan , USA", + "market_regions": "Asia , Australia , North America , Oceania , South America" +} diff --git a/data/smartphone/asus/2018/zenfone-5-2018-dual-sim-td-lte-br-version-b-ze620kl-128gb.json b/data/smartphone/asus/2018/zenfone-5-2018-dual-sim-td-lte-br-version-b-ze620kl-128gb.json new file mode 100644 index 00000000000..6aa4c0ee8a8 --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-5-2018-dual-sim-td-lte-br-version-b-ze620kl-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-5-2018-dual-sim-td-lte-br-version-b-ze620kl-128gb", + "name": "ZenFone 5 2018 Dual SIM TD-LTE BR Version B ZE620KL 128GB", + "brand": "asus", + "soc": "snapdragon-636", + "release_date": "2018-04-18", + "ram_gb": 4.0, + "battery_mah": 3300, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil", + "market_regions": "South America" +} diff --git a/data/smartphone/asus/2018/zenfone-5-2018-dual-sim-td-lte-jp-version-b-ze620kl.json b/data/smartphone/asus/2018/zenfone-5-2018-dual-sim-td-lte-jp-version-b-ze620kl.json new file mode 100644 index 00000000000..ff14258734c --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-5-2018-dual-sim-td-lte-jp-version-b-ze620kl.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-5-2018-dual-sim-td-lte-jp-version-b-ze620kl", + "name": "ZenFone 5 2018 Dual SIM TD-LTE JP Version B ZE620KL", + "brand": "asus", + "soc": "snapdragon-636", + "release_date": "2018-07-01", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/asus/2018/zenfone-5-2018-global-dual-sim-td-lte-version-a-ze620kl.json b/data/smartphone/asus/2018/zenfone-5-2018-global-dual-sim-td-lte-version-a-ze620kl.json new file mode 100644 index 00000000000..be3a8e31122 --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-5-2018-global-dual-sim-td-lte-version-a-ze620kl.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-5-2018-global-dual-sim-td-lte-version-a-ze620kl", + "name": "ZenFone 5 2018 Global Dual SIM TD-LTE Version A ZE620KL", + "brand": "asus", + "soc": "snapdragon-636", + "release_date": "2018-04-18", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/asus/2018/zenfone-5-2018-global-dual-sim-td-lte-version-c-ze620kl.json b/data/smartphone/asus/2018/zenfone-5-2018-global-dual-sim-td-lte-version-c-ze620kl.json new file mode 100644 index 00000000000..1b49f8899bd --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-5-2018-global-dual-sim-td-lte-version-c-ze620kl.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-5-2018-global-dual-sim-td-lte-version-c-ze620kl", + "name": "ZenFone 5 2018 Global Dual SIM TD-LTE Version C ZE620KL", + "brand": "asus", + "soc": "snapdragon-636", + "release_date": "2018-04-18", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Cyprus , Czech , Denmark , Finland , France , Greece , Germany , Hungary , Indonesia , Ireland , Malaysia , Netherlands , Norway , Portugal , Russia , Romania , Sweden , Thailand , Turkey , UAE , UK , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/asus/2018/zenfone-5-lite-2018-dual-sim-td-lte-version-e-32gb-zc600kl.json b/data/smartphone/asus/2018/zenfone-5-lite-2018-dual-sim-td-lte-version-e-32gb-zc600kl.json new file mode 100644 index 00000000000..06ab5ca7e61 --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-5-lite-2018-dual-sim-td-lte-version-e-32gb-zc600kl.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-5-lite-2018-dual-sim-td-lte-version-e-32gb-zc600kl", + "name": "ZenFone 5 Lite 2018 Dual SIM TD-LTE Version E 32GB ZC600KL", + "brand": "asus", + "soc": "snapdragon-430", + "release_date": "2018-03-01", + "ram_gb": 3.0, + "battery_mah": 3300, + "weight_g": 168.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "market_countries": "Czech , France , Germany , Hungary , India , Indonesia , Italy , Poland , Romania", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/asus/2018/zenfone-5-lite-2018-global-dual-sim-td-lte-version-b-64gb-zc600kl.json b/data/smartphone/asus/2018/zenfone-5-lite-2018-global-dual-sim-td-lte-version-b-64gb-zc600kl.json new file mode 100644 index 00000000000..e5d050ca934 --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-5-lite-2018-global-dual-sim-td-lte-version-b-64gb-zc600kl.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-5-lite-2018-global-dual-sim-td-lte-version-b-64gb-zc600kl", + "name": "ZenFone 5 Lite 2018 Global Dual SIM TD-LTE Version B 64GB ZC600KL", + "brand": "asus", + "soc": "snapdragon-630", + "release_date": "2018-03-01", + "ram_gb": 4.0, + "battery_mah": 3300, + "weight_g": 168.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "market_countries": "Cyprus , Czech , France , Germany , Greece , Hungary , India , Indonesia , Italy , Poland , Romania , Russia", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/asus/2018/zenfone-5-selfie-2018-dual-sim-lte-am-version-c-64gb-zc600kl.json b/data/smartphone/asus/2018/zenfone-5-selfie-2018-dual-sim-lte-am-version-c-64gb-zc600kl.json new file mode 100644 index 00000000000..ea29b0ceaf5 --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-5-selfie-2018-dual-sim-lte-am-version-c-64gb-zc600kl.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-5-selfie-2018-dual-sim-lte-am-version-c-64gb-zc600kl", + "name": "ZenFone 5 Selfie 2018 Dual SIM LTE AM Version C 64GB ZC600KL", + "brand": "asus", + "soc": "snapdragon-430", + "release_date": "2018-10-03", + "ram_gb": 4.0, + "battery_mah": 3300, + "weight_g": 168.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "market_countries": "Brazil", + "market_regions": "South America" +} diff --git a/data/smartphone/asus/2018/zenfone-5-selfie-pro-2018-dual-sim-lte-a-am-version-c-128gb-zc600kl.json b/data/smartphone/asus/2018/zenfone-5-selfie-pro-2018-dual-sim-lte-a-am-version-c-128gb-zc600kl.json new file mode 100644 index 00000000000..ad6ca1eb398 --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-5-selfie-pro-2018-dual-sim-lte-a-am-version-c-128gb-zc600kl.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-5-selfie-pro-2018-dual-sim-lte-a-am-version-c-128gb-zc600kl", + "name": "ZenFone 5 Selfie Pro 2018 Dual SIM LTE-A AM Version C 128GB ZC600KL", + "brand": "asus", + "soc": "snapdragon-630", + "release_date": "2018-10-03", + "ram_gb": 4.0, + "battery_mah": 3300, + "weight_g": 168.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "market_countries": "Brazil", + "market_regions": "South America" +} diff --git a/data/smartphone/asus/2018/zenfone-5q-2018-dual-sim-lte-am-version-c-32gb-zc600kl.json b/data/smartphone/asus/2018/zenfone-5q-2018-dual-sim-lte-am-version-c-32gb-zc600kl.json new file mode 100644 index 00000000000..54fa887938e --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-5q-2018-dual-sim-lte-am-version-c-32gb-zc600kl.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-5q-2018-dual-sim-lte-am-version-c-32gb-zc600kl", + "name": "ZenFone 5Q 2018 Dual SIM LTE AM Version C 32GB ZC600KL", + "brand": "asus", + "soc": "snapdragon-430", + "release_date": "2018-07-01", + "ram_gb": 3.0, + "battery_mah": 3300, + "weight_g": 168.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "market_countries": "Brazil , Mexico , USA", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/asus/2018/zenfone-5q-dual-sim-td-lte-apac-version-d-64gb-zc600kl-zenfone-5-lite.json b/data/smartphone/asus/2018/zenfone-5q-dual-sim-td-lte-apac-version-d-64gb-zc600kl-zenfone-5-lite.json new file mode 100644 index 00000000000..f3edf374e34 --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-5q-dual-sim-td-lte-apac-version-d-64gb-zc600kl-zenfone-5-lite.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-5q-dual-sim-td-lte-apac-version-d-64gb-zc600kl-zenfone-5-lite", + "name": "ZenFone 5Q Dual SIM TD-LTE APAC Version D 64GB ZC600KL / ZenFone 5 Lite", + "brand": "asus", + "soc": "snapdragon-630", + "release_date": "2018-04-01", + "ram_gb": 4.0, + "battery_mah": 3300, + "weight_g": 168.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "market_countries": "Malaysia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/asus/2018/zenfone-5q-dual-sim-td-lte-tw-jp-version-a-64gb-zc600kl-zenfone-5-lite.json b/data/smartphone/asus/2018/zenfone-5q-dual-sim-td-lte-tw-jp-version-a-64gb-zc600kl-zenfone-5-lite.json new file mode 100644 index 00000000000..f34bcb9698a --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-5q-dual-sim-td-lte-tw-jp-version-a-64gb-zc600kl-zenfone-5-lite.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-5q-dual-sim-td-lte-tw-jp-version-a-64gb-zc600kl-zenfone-5-lite", + "name": "ZenFone 5Q Dual SIM TD-LTE TW JP Version A 64GB ZC600KL / ZenFone 5 Lite", + "brand": "asus", + "soc": "snapdragon-630", + "release_date": "2018-03-01", + "ram_gb": 4.0, + "battery_mah": 3300, + "weight_g": 168.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "market_countries": "Japan , Taiwan", + "market_regions": "Asia" +} diff --git a/data/smartphone/asus/2018/zenfone-5z-2018-dual-sim-td-lte-cn-version-c-zs620kl-64gb.json b/data/smartphone/asus/2018/zenfone-5z-2018-dual-sim-td-lte-cn-version-c-zs620kl-64gb.json new file mode 100644 index 00000000000..7703fb0c0bf --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-5z-2018-dual-sim-td-lte-cn-version-c-zs620kl-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-5z-2018-dual-sim-td-lte-cn-version-c-zs620kl-64gb", + "name": "ZenFone 5Z 2018 Dual SIM TD-LTE CN Version C ZS620KL 64GB", + "brand": "asus", + "soc": "snapdragon-845", + "release_date": "2018-08-01", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 11.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/asus/2018/zenfone-5z-2018-dual-sim-td-lte-in-zs621kl-256gb.json b/data/smartphone/asus/2018/zenfone-5z-2018-dual-sim-td-lte-in-zs621kl-256gb.json new file mode 100644 index 00000000000..3a429dc488f --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-5z-2018-dual-sim-td-lte-in-zs621kl-256gb.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-5z-2018-dual-sim-td-lte-in-zs621kl-256gb", + "name": "ZenFone 5Z 2018 Dual SIM TD-LTE IN ZS621KL 256GB", + "brand": "asus", + "soc": "snapdragon-845", + "release_date": "2018-07-01", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 11.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/asus/2018/zenfone-5z-2018-dual-sim-td-lte-in-zs621kl-64gb.json b/data/smartphone/asus/2018/zenfone-5z-2018-dual-sim-td-lte-in-zs621kl-64gb.json new file mode 100644 index 00000000000..e1ab55fe80c --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-5z-2018-dual-sim-td-lte-in-zs621kl-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-5z-2018-dual-sim-td-lte-in-zs621kl-64gb", + "name": "ZenFone 5Z 2018 Dual SIM TD-LTE IN ZS621KL 64GB", + "brand": "asus", + "soc": "snapdragon-845", + "release_date": "2018-07-16", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 11.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/asus/2018/zenfone-5z-2018-dual-sim-td-lte-version-b-zs620kl-64gb.json b/data/smartphone/asus/2018/zenfone-5z-2018-dual-sim-td-lte-version-b-zs620kl-64gb.json new file mode 100644 index 00000000000..bf26d41565d --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-5z-2018-dual-sim-td-lte-version-b-zs620kl-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-5z-2018-dual-sim-td-lte-version-b-zs620kl-64gb", + "name": "ZenFone 5Z 2018 Dual SIM TD-LTE Version B ZS620KL 64GB", + "brand": "asus", + "soc": "snapdragon-845", + "release_date": "2018-08-11", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 11.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/asus/2018/zenfone-5z-2018-global-dual-sim-td-lte-version-a-zs620kl-256gb.json b/data/smartphone/asus/2018/zenfone-5z-2018-global-dual-sim-td-lte-version-a-zs620kl-256gb.json new file mode 100644 index 00000000000..773f1d03cdf --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-5z-2018-global-dual-sim-td-lte-version-a-zs620kl-256gb.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-5z-2018-global-dual-sim-td-lte-version-a-zs620kl-256gb", + "name": "ZenFone 5Z 2018 Global Dual SIM TD-LTE Version A ZS620KL 256GB", + "brand": "asus", + "soc": "snapdragon-845", + "release_date": "2018-08-02", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 11.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Cyprus , Czech , Denmark , France , Germany , Greece , Hungary , Italy , Japan , Netherlands , Portugal , Russia , Slovakia , Spain , Taiwan", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/asus/2018/zenfone-5z-2018-global-dual-sim-td-lte-version-a-zs620kl-64gb.json b/data/smartphone/asus/2018/zenfone-5z-2018-global-dual-sim-td-lte-version-a-zs620kl-64gb.json new file mode 100644 index 00000000000..ec48be3678e --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-5z-2018-global-dual-sim-td-lte-version-a-zs620kl-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-5z-2018-global-dual-sim-td-lte-version-a-zs620kl-64gb", + "name": "ZenFone 5Z 2018 Global Dual SIM TD-LTE Version A ZS620KL 64GB", + "brand": "asus", + "soc": "snapdragon-845", + "release_date": "2018-08-02", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 11.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Cyprus , Czech , Denmark , France , Germany , Greece , Hungary , Italy , Japan , Netherlands , Portugal , Russia , Slovakia , Spain , Taiwan", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/asus/2018/zenfone-ares-dual-sim-global-td-lte-128gb-zs572kl.json b/data/smartphone/asus/2018/zenfone-ares-dual-sim-global-td-lte-128gb-zs572kl.json new file mode 100644 index 00000000000..44b182ea65c --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-ares-dual-sim-global-td-lte-128gb-zs572kl.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-ares-dual-sim-global-td-lte-128gb-zs572kl", + "name": "ZenFone Ares Dual SIM Global TD-LTE 128GB ZS572KL", + "brand": "asus", + "soc": "snapdragon-821", + "release_date": "2018-07-01", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.71, + "resolution": "1440x2560", + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 22.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Taiwan", + "market_regions": "Asia" +} diff --git a/data/smartphone/asus/2018/zenfone-live-l1-dual-sim-lte-latam-version-d-za550kl-16gb.json b/data/smartphone/asus/2018/zenfone-live-l1-dual-sim-lte-latam-version-d-za550kl-16gb.json new file mode 100644 index 00000000000..d560b3b3b46 --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-live-l1-dual-sim-lte-latam-version-d-za550kl-16gb.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-live-l1-dual-sim-lte-latam-version-d-za550kl-16gb", + "name": "ZenFone Live L1 Dual SIM LTE LATAM Version D ZA550KL 16GB", + "brand": "asus", + "soc": "snapdragon-425", + "release_date": "2018-08-01", + "ram_gb": 1.0, + "battery_mah": 3000, + "weight_g": 140.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Brazil , Colombia , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/asus/2018/zenfone-live-l1-dual-sim-td-lte-apac-version-c-za550kl-16gb-zenfone-live-l2.json b/data/smartphone/asus/2018/zenfone-live-l1-dual-sim-td-lte-apac-version-c-za550kl-16gb-zenfone-live-l2.json new file mode 100644 index 00000000000..0b0fa601dcd --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-live-l1-dual-sim-td-lte-apac-version-c-za550kl-16gb-zenfone-live-l2.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-live-l1-dual-sim-td-lte-apac-version-c-za550kl-16gb-zenfone-live-l2", + "name": "ZenFone Live L1 Dual SIM TD-LTE APAC Version C ZA550KL 16GB / ZenFone Live L2", + "brand": "asus", + "soc": "snapdragon-425", + "release_date": "2018-12-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 140.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/asus/2018/zenfone-live-l1-dual-sim-td-lte-emea-version-a-za550kl-16gb-zenfone-live-l2.json b/data/smartphone/asus/2018/zenfone-live-l1-dual-sim-td-lte-emea-version-a-za550kl-16gb-zenfone-live-l2.json new file mode 100644 index 00000000000..f06efa0447c --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-live-l1-dual-sim-td-lte-emea-version-a-za550kl-16gb-zenfone-live-l2.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-live-l1-dual-sim-td-lte-emea-version-a-za550kl-16gb-zenfone-live-l2", + "name": "ZenFone Live L1 Dual SIM TD-LTE EMEA Version A ZA550KL 16GB / ZenFone Live L2", + "brand": "asus", + "soc": "snapdragon-425", + "release_date": "2018-09-01", + "ram_gb": 1.0, + "battery_mah": 3000, + "weight_g": 140.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Czech , Norway , Poland , Russia , Sweden , Ukraine", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/asus/2018/zenfone-live-l1-dual-sim-td-lte-id-version-b-za550kl-16gb.json b/data/smartphone/asus/2018/zenfone-live-l1-dual-sim-td-lte-id-version-b-za550kl-16gb.json new file mode 100644 index 00000000000..d93fcfcb151 --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-live-l1-dual-sim-td-lte-id-version-b-za550kl-16gb.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-live-l1-dual-sim-td-lte-id-version-b-za550kl-16gb", + "name": "ZenFone Live L1 Dual SIM TD-LTE ID Version B ZA550KL 16GB", + "brand": "asus", + "soc": "snapdragon-425", + "release_date": "2018-05-21", + "ram_gb": 1.0, + "battery_mah": 3000, + "weight_g": 140.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/asus/2018/zenfone-live-l1-dual-sim-td-lte-id-version-b-za550kl-32gb.json b/data/smartphone/asus/2018/zenfone-live-l1-dual-sim-td-lte-id-version-b-za550kl-32gb.json new file mode 100644 index 00000000000..ff2e72961e0 --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-live-l1-dual-sim-td-lte-id-version-b-za550kl-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-live-l1-dual-sim-td-lte-id-version-b-za550kl-32gb", + "name": "ZenFone Live L1 Dual SIM TD-LTE ID Version B ZA550KL 32GB", + "brand": "asus", + "soc": "snapdragon-425", + "release_date": "2018-05-21", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 140.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/asus/2018/zenfone-live-l1-dual-sim-td-lte-in-za551kl-16gb.json b/data/smartphone/asus/2018/zenfone-live-l1-dual-sim-td-lte-in-za551kl-16gb.json new file mode 100644 index 00000000000..da752fffdd6 --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-live-l1-dual-sim-td-lte-in-za551kl-16gb.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-live-l1-dual-sim-td-lte-in-za551kl-16gb", + "name": "ZenFone Live L1 Dual SIM TD-LTE IN ZA551KL 16GB", + "brand": "asus", + "soc": "snapdragon-430", + "release_date": "2018-05-21", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 140.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/asus/2018/zenfone-max-m1-dual-sim-lte-na-version-d-zb555kl-16gb.json b/data/smartphone/asus/2018/zenfone-max-m1-dual-sim-lte-na-version-d-zb555kl-16gb.json new file mode 100644 index 00000000000..9f0bfbaf895 --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-max-m1-dual-sim-lte-na-version-d-zb555kl-16gb.json @@ -0,0 +1,42 @@ +{ + "slug": "zenfone-max-m1-dual-sim-lte-na-version-d-zb555kl-16gb", + "name": "ZenFone Max M1 Dual SIM LTE NA Version D ZB555KL 16GB", + "brand": "asus", + "soc": "snapdragon-425", + "release_date": "2018-09-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Canada , Mexico , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/asus/2018/zenfone-max-m1-dual-sim-td-lte-apac-version-c-zb555kl-32gb.json b/data/smartphone/asus/2018/zenfone-max-m1-dual-sim-td-lte-apac-version-c-zb555kl-32gb.json new file mode 100644 index 00000000000..7d7348d42f3 --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-max-m1-dual-sim-td-lte-apac-version-c-zb555kl-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "zenfone-max-m1-dual-sim-td-lte-apac-version-c-zb555kl-32gb", + "name": "ZenFone Max M1 Dual SIM TD-LTE APAC Version C ZB555KL 32GB", + "brand": "asus", + "soc": "snapdragon-430", + "release_date": "2018-09-21", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Japan , Taiwan", + "market_regions": "Asia" +} diff --git a/data/smartphone/asus/2018/zenfone-max-m1-dual-sim-td-lte-emea-version-a-zb555kl-32gb.json b/data/smartphone/asus/2018/zenfone-max-m1-dual-sim-td-lte-emea-version-a-zb555kl-32gb.json new file mode 100644 index 00000000000..d07ec5b52e2 --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-max-m1-dual-sim-td-lte-emea-version-a-zb555kl-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "zenfone-max-m1-dual-sim-td-lte-emea-version-a-zb555kl-32gb", + "name": "ZenFone Max M1 Dual SIM TD-LTE EMEA Version A ZB555KL 32GB", + "brand": "asus", + "soc": "snapdragon-430", + "release_date": "2018-06-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Croatia , Czech , Estonia , Finland , France , Germany , Hungary , Italy , Latvia , Lithuania , Norway , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Slovenia , Switzerland , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/asus/2018/zenfone-max-m1-dual-sim-td-lte-in-version-b-zb555kl-32gb.json b/data/smartphone/asus/2018/zenfone-max-m1-dual-sim-td-lte-in-version-b-zb555kl-32gb.json new file mode 100644 index 00000000000..3b58b59693d --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-max-m1-dual-sim-td-lte-in-version-b-zb555kl-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "zenfone-max-m1-dual-sim-td-lte-in-version-b-zb555kl-32gb", + "name": "ZenFone Max M1 Dual SIM TD-LTE IN Version B ZB555KL 32GB", + "brand": "asus", + "soc": "snapdragon-430", + "release_date": "2018-09-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/asus/2018/zenfone-max-m1-dual-sim-td-lte-in-zb556kl-32gb.json b/data/smartphone/asus/2018/zenfone-max-m1-dual-sim-td-lte-in-zb556kl-32gb.json new file mode 100644 index 00000000000..2868f74a317 --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-max-m1-dual-sim-td-lte-in-zb556kl-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-max-m1-dual-sim-td-lte-in-zb556kl-32gb", + "name": "ZenFone Max M1 Dual SIM TD-LTE IN ZB556KL 32GB", + "brand": "asus", + "soc": "snapdragon-430", + "release_date": "2018-10-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/asus/2018/zenfone-max-m2-dtv-dual-sim-lte-br-version-e-zb555kl-32gb.json b/data/smartphone/asus/2018/zenfone-max-m2-dtv-dual-sim-lte-br-version-e-zb555kl-32gb.json new file mode 100644 index 00000000000..8ed09ddd95f --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-max-m2-dtv-dual-sim-lte-br-version-e-zb555kl-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "zenfone-max-m2-dtv-dual-sim-lte-br-version-e-zb555kl-32gb", + "name": "ZenFone Max M2 DTV Dual SIM LTE BR Version E ZB555KL 32GB", + "brand": "asus", + "soc": "snapdragon-430", + "release_date": "2018-12-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Brazil", + "market_regions": "South America" +} diff --git a/data/smartphone/asus/2018/zenfone-max-m2-dual-sim-td-lte-apac-version-b-32gb-zb633kl.json b/data/smartphone/asus/2018/zenfone-max-m2-dual-sim-td-lte-apac-version-b-32gb-zb633kl.json new file mode 100644 index 00000000000..10b43bfb163 --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-max-m2-dual-sim-td-lte-apac-version-b-32gb-zb633kl.json @@ -0,0 +1,42 @@ +{ + "slug": "zenfone-max-m2-dual-sim-td-lte-apac-version-b-32gb-zb633kl", + "name": "ZenFone Max M2 Dual SIM TD-LTE APAC Version B 32GB ZB633KL", + "brand": "asus", + "soc": "snapdragon-632", + "release_date": "2018-12-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Japan , Malaysia , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/asus/2018/zenfone-max-m2-dual-sim-td-lte-apac-version-b-64gb-zb633kl.json b/data/smartphone/asus/2018/zenfone-max-m2-dual-sim-td-lte-apac-version-b-64gb-zb633kl.json new file mode 100644 index 00000000000..06ae254a4eb --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-max-m2-dual-sim-td-lte-apac-version-b-64gb-zb633kl.json @@ -0,0 +1,42 @@ +{ + "slug": "zenfone-max-m2-dual-sim-td-lte-apac-version-b-64gb-zb633kl", + "name": "ZenFone Max M2 Dual SIM TD-LTE APAC Version B 64GB ZB633KL", + "brand": "asus", + "soc": "snapdragon-632", + "release_date": "2018-12-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "HK , Malaysia , Taiwan , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/asus/2018/zenfone-max-m2-dual-sim-td-lte-emea-version-a-32gb-zb633kl.json b/data/smartphone/asus/2018/zenfone-max-m2-dual-sim-td-lte-emea-version-a-32gb-zb633kl.json new file mode 100644 index 00000000000..0ae73e30878 --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-max-m2-dual-sim-td-lte-emea-version-a-32gb-zb633kl.json @@ -0,0 +1,42 @@ +{ + "slug": "zenfone-max-m2-dual-sim-td-lte-emea-version-a-32gb-zb633kl", + "name": "ZenFone Max M2 Dual SIM TD-LTE EMEA Version A 32GB ZB633KL", + "brand": "asus", + "soc": "snapdragon-632", + "release_date": "2018-12-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Belarus , Bulgaria , Estonia , Germany , Hungary , Italy , Latvia , Lithuania , Poland , Portugal , Russia , Spain , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/asus/2018/zenfone-max-m2-dual-sim-td-lte-in-32gb-zb632kl.json b/data/smartphone/asus/2018/zenfone-max-m2-dual-sim-td-lte-in-32gb-zb632kl.json new file mode 100644 index 00000000000..6d245d7e697 --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-max-m2-dual-sim-td-lte-in-32gb-zb632kl.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-max-m2-dual-sim-td-lte-in-32gb-zb632kl", + "name": "ZenFone Max M2 Dual SIM TD-LTE IN 32GB ZB632KL", + "brand": "asus", + "soc": "snapdragon-632", + "release_date": "2018-12-18", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/asus/2018/zenfone-max-m2-dual-sim-td-lte-in-64gb-zb632kl.json b/data/smartphone/asus/2018/zenfone-max-m2-dual-sim-td-lte-in-64gb-zb632kl.json new file mode 100644 index 00000000000..7336149db52 --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-max-m2-dual-sim-td-lte-in-64gb-zb632kl.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-max-m2-dual-sim-td-lte-in-64gb-zb632kl", + "name": "ZenFone Max M2 Dual SIM TD-LTE IN 64GB ZB632KL", + "brand": "asus", + "soc": "snapdragon-632", + "release_date": "2018-12-18", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/asus/2018/zenfone-max-pro-m1-dual-sim-td-lte-apac-version-b-zb602kl-32gb.json b/data/smartphone/asus/2018/zenfone-max-pro-m1-dual-sim-td-lte-apac-version-b-zb602kl-32gb.json new file mode 100644 index 00000000000..8e43bc666ed --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-max-pro-m1-dual-sim-td-lte-apac-version-b-zb602kl-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-max-pro-m1-dual-sim-td-lte-apac-version-b-zb602kl-32gb", + "name": "ZenFone Max Pro M1 Dual SIM TD-LTE APAC Version B ZB602KL 32GB", + "brand": "asus", + "soc": "snapdragon-636", + "release_date": "2018-04-26", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK , Japan , Philippines , Thailand , Vietnam", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/asus/2018/zenfone-max-pro-m1-dual-sim-td-lte-apac-version-b-zb602kl-64gb.json b/data/smartphone/asus/2018/zenfone-max-pro-m1-dual-sim-td-lte-apac-version-b-zb602kl-64gb.json new file mode 100644 index 00000000000..51ab6fbc48c --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-max-pro-m1-dual-sim-td-lte-apac-version-b-zb602kl-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-max-pro-m1-dual-sim-td-lte-apac-version-b-zb602kl-64gb", + "name": "ZenFone Max Pro M1 Dual SIM TD-LTE APAC Version B ZB602KL 64GB", + "brand": "asus", + "soc": "snapdragon-636", + "release_date": "2018-04-26", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK , Japan , Philippines , Thailand , Vietnam", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/asus/2018/zenfone-max-pro-m1-dual-sim-td-lte-in-zb601kl-32gb.json b/data/smartphone/asus/2018/zenfone-max-pro-m1-dual-sim-td-lte-in-zb601kl-32gb.json new file mode 100644 index 00000000000..e623e777896 --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-max-pro-m1-dual-sim-td-lte-in-zb601kl-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-max-pro-m1-dual-sim-td-lte-in-zb601kl-32gb", + "name": "ZenFone Max Pro M1 Dual SIM TD-LTE IN ZB601KL 32GB", + "brand": "asus", + "soc": "snapdragon-636", + "release_date": "2018-07-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/asus/2018/zenfone-max-pro-m1-dual-sim-td-lte-in-zb601kl-64gb.json b/data/smartphone/asus/2018/zenfone-max-pro-m1-dual-sim-td-lte-in-zb601kl-64gb.json new file mode 100644 index 00000000000..09becca4b0c --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-max-pro-m1-dual-sim-td-lte-in-zb601kl-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-max-pro-m1-dual-sim-td-lte-in-zb601kl-64gb", + "name": "ZenFone Max Pro M1 Dual SIM TD-LTE IN ZB601KL 64GB", + "brand": "asus", + "soc": "snapdragon-636", + "release_date": "2018-08-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/asus/2018/zenfone-max-pro-m1-global-dual-sim-td-lte-version-a-zb602kl-32gb.json b/data/smartphone/asus/2018/zenfone-max-pro-m1-global-dual-sim-td-lte-version-a-zb602kl-32gb.json new file mode 100644 index 00000000000..850730f86bb --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-max-pro-m1-global-dual-sim-td-lte-version-a-zb602kl-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-max-pro-m1-global-dual-sim-td-lte-version-a-zb602kl-32gb", + "name": "ZenFone Max Pro M1 Global Dual SIM TD-LTE Version A ZB602KL 32GB", + "brand": "asus", + "soc": "snapdragon-636", + "release_date": "2018-04-26", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Denmark , France , Indonesia , Ireland , Italy , Malaysia , Norway , Russia , Sweden , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/asus/2018/zenfone-max-pro-m1-global-dual-sim-td-lte-version-a-zb602kl-64gb.json b/data/smartphone/asus/2018/zenfone-max-pro-m1-global-dual-sim-td-lte-version-a-zb602kl-64gb.json new file mode 100644 index 00000000000..e0c6cd8ee67 --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-max-pro-m1-global-dual-sim-td-lte-version-a-zb602kl-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-max-pro-m1-global-dual-sim-td-lte-version-a-zb602kl-64gb", + "name": "ZenFone Max Pro M1 Global Dual SIM TD-LTE Version A ZB602KL 64GB", + "brand": "asus", + "soc": "snapdragon-636", + "release_date": "2018-04-26", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Denmark , France , Indonesia , Ireland , Italy , Malaysia , Norway , Russia , Sweden , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/asus/2018/zenfone-max-pro-m2-dual-sim-td-lte-apac-version-b-128gb-zb631kl.json b/data/smartphone/asus/2018/zenfone-max-pro-m2-dual-sim-td-lte-apac-version-b-128gb-zb631kl.json new file mode 100644 index 00000000000..c706f29576c --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-max-pro-m2-dual-sim-td-lte-apac-version-b-128gb-zb631kl.json @@ -0,0 +1,42 @@ +{ + "slug": "zenfone-max-pro-m2-dual-sim-td-lte-apac-version-b-128gb-zb631kl", + "name": "ZenFone Max Pro M2 Dual SIM TD-LTE APAC Version B 128GB ZB631KL", + "brand": "asus", + "soc": "snapdragon-660", + "release_date": "2018-12-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "HK , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/asus/2018/zenfone-max-pro-m2-dual-sim-td-lte-in-id-32gb-zb630kl.json b/data/smartphone/asus/2018/zenfone-max-pro-m2-dual-sim-td-lte-in-id-32gb-zb630kl.json new file mode 100644 index 00000000000..4ae375eff7d --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-max-pro-m2-dual-sim-td-lte-in-id-32gb-zb630kl.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-max-pro-m2-dual-sim-td-lte-in-id-32gb-zb630kl", + "name": "ZenFone Max Pro M2 Dual SIM TD-LTE IN ID 32GB ZB630KL", + "brand": "asus", + "soc": "snapdragon-660", + "release_date": "2018-12-18", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/asus/2018/zenfone-max-pro-m2-dual-sim-td-lte-in-id-64gb-zb630kl.json b/data/smartphone/asus/2018/zenfone-max-pro-m2-dual-sim-td-lte-in-id-64gb-zb630kl.json new file mode 100644 index 00000000000..a398b1dcd60 --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-max-pro-m2-dual-sim-td-lte-in-id-64gb-zb630kl.json @@ -0,0 +1,41 @@ +{ + "slug": "zenfone-max-pro-m2-dual-sim-td-lte-in-id-64gb-zb630kl", + "name": "ZenFone Max Pro M2 Dual SIM TD-LTE IN ID 64GB ZB630KL", + "brand": "asus", + "soc": "snapdragon-660", + "release_date": "2018-12-18", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/asus/2018/zenfone-max-pro-m2-global-dual-sim-td-lte-version-a-64gb-zb631kl.json b/data/smartphone/asus/2018/zenfone-max-pro-m2-global-dual-sim-td-lte-version-a-64gb-zb631kl.json new file mode 100644 index 00000000000..b8641c69d6d --- /dev/null +++ b/data/smartphone/asus/2018/zenfone-max-pro-m2-global-dual-sim-td-lte-version-a-64gb-zb631kl.json @@ -0,0 +1,42 @@ +{ + "slug": "zenfone-max-pro-m2-global-dual-sim-td-lte-version-a-64gb-zb631kl", + "name": "ZenFone Max Pro M2 Global Dual SIM TD-LTE Version A 64GB ZB631KL", + "brand": "asus", + "soc": "snapdragon-660", + "release_date": "2018-12-18", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Germany , Hungary , Malaysia , Poland , Russia , Singapore , Thailand , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/asus/2019/rog-phone-ii-dual-sim-td-lte-cn-128gb-zs660kl.json b/data/smartphone/asus/2019/rog-phone-ii-dual-sim-td-lte-cn-128gb-zs660kl.json new file mode 100644 index 00000000000..4ab8403a188 --- /dev/null +++ b/data/smartphone/asus/2019/rog-phone-ii-dual-sim-td-lte-cn-128gb-zs660kl.json @@ -0,0 +1,43 @@ +{ + "slug": "rog-phone-ii-dual-sim-td-lte-cn-128gb-zs660kl", + "name": "ROG Phone II Dual SIM TD-LTE CN 128GB ZS660KL", + "brand": "asus", + "soc": "snapdragon-855-plus", + "release_date": "2019-08-01", + "ram_gb": 8.0, + "battery_mah": 6000, + "weight_g": 240.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/asus/2019/rog-phone-ii-dual-sim-td-lte-cn-512gb-zs660kl.json b/data/smartphone/asus/2019/rog-phone-ii-dual-sim-td-lte-cn-512gb-zs660kl.json new file mode 100644 index 00000000000..19410c7312d --- /dev/null +++ b/data/smartphone/asus/2019/rog-phone-ii-dual-sim-td-lte-cn-512gb-zs660kl.json @@ -0,0 +1,43 @@ +{ + "slug": "rog-phone-ii-dual-sim-td-lte-cn-512gb-zs660kl", + "name": "ROG Phone II Dual SIM TD-LTE CN 512GB ZS660KL", + "brand": "asus", + "soc": "snapdragon-855-plus", + "release_date": "2019-08-01", + "ram_gb": 12.0, + "battery_mah": 6000, + "weight_g": 240.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/asus/2019/rog-phone-ii-global-dual-sim-td-lte-512gb-zs660kl.json b/data/smartphone/asus/2019/rog-phone-ii-global-dual-sim-td-lte-512gb-zs660kl.json new file mode 100644 index 00000000000..9fb9a593522 --- /dev/null +++ b/data/smartphone/asus/2019/rog-phone-ii-global-dual-sim-td-lte-512gb-zs660kl.json @@ -0,0 +1,43 @@ +{ + "slug": "rog-phone-ii-global-dual-sim-td-lte-512gb-zs660kl", + "name": "ROG Phone II Global Dual SIM TD-LTE 512GB ZS660KL", + "brand": "asus", + "soc": "snapdragon-855-plus", + "release_date": "2019-09-21", + "ram_gb": 12.0, + "battery_mah": 6000, + "weight_g": 240.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belarus , Belgium , Canada , Croatia , Cyprus , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , India , Indonesia , Ireland , Israel , Italy , Japan , Jordan , Latvia , Lithuania , Malaysia , Mexico , Netherlands , Norway , NZ , Philippines , Poland , Portugal , Romania , Russia , Saudi Arabia , Singapore , Slovakia , Slovenia , South Africa , Spain , Switzerland , Sweden , Taiwan , Turkey , UAE , UK , Ukraine , USA", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/asus/2019/rog-phone-ii-strix-edition-global-dual-sim-td-lte-128gb-zs660kl.json b/data/smartphone/asus/2019/rog-phone-ii-strix-edition-global-dual-sim-td-lte-128gb-zs660kl.json new file mode 100644 index 00000000000..676732f1efd --- /dev/null +++ b/data/smartphone/asus/2019/rog-phone-ii-strix-edition-global-dual-sim-td-lte-128gb-zs660kl.json @@ -0,0 +1,43 @@ +{ + "slug": "rog-phone-ii-strix-edition-global-dual-sim-td-lte-128gb-zs660kl", + "name": "ROG Phone II Strix Edition Global Dual SIM TD-LTE 128GB ZS660KL", + "brand": "asus", + "soc": "snapdragon-855-plus", + "release_date": "2019-12-11", + "ram_gb": 8.0, + "battery_mah": 6000, + "weight_g": 240.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belarus , Belgium , Canada , Croatia , Cyprus , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , India , Indonesia , Ireland , Israel , Italy , Japan , Jordan , Latvia , Lithuania , Malaysia , Mexico , Netherlands , Norway , NZ , Philippines , Poland , Portugal , Romania , Russia , Saudi Arabia , Singapore , Slovakia , Slovenia , South Africa , Spain , Switzerland , Sweden , Taiwan , Turkey , UAE , UK , Ukraine , USA", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/asus/2019/rog-phone-ii-ultimate-edition-global-dual-sim-td-lte-1tb-zs660kl.json b/data/smartphone/asus/2019/rog-phone-ii-ultimate-edition-global-dual-sim-td-lte-1tb-zs660kl.json new file mode 100644 index 00000000000..aaa1a2838a4 --- /dev/null +++ b/data/smartphone/asus/2019/rog-phone-ii-ultimate-edition-global-dual-sim-td-lte-1tb-zs660kl.json @@ -0,0 +1,43 @@ +{ + "slug": "rog-phone-ii-ultimate-edition-global-dual-sim-td-lte-1tb-zs660kl", + "name": "ROG Phone II Ultimate Edition Global Dual SIM TD-LTE 1TB ZS660KL", + "brand": "asus", + "soc": "snapdragon-855-plus", + "release_date": "2019-12-11", + "ram_gb": 12.0, + "battery_mah": 6000, + "weight_g": 240.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belarus , Belgium , Canada , Croatia , Cyprus , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , India , Indonesia , Ireland , Israel , Italy , Japan , Jordan , Latvia , Lithuania , Malaysia , Mexico , Netherlands , Norway , NZ , Philippines , Poland , Portugal , Romania , Russia , Saudi Arabia , Singapore , Slovakia , Slovenia , South Africa , Spain , Switzerland , Sweden , Taiwan , Turkey , UAE , UK , Ukraine , USA", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/asus/2019/zenfone-6-2019-dual-sim-td-lte-am-version-c-zs630kl-256gb.json b/data/smartphone/asus/2019/zenfone-6-2019-dual-sim-td-lte-am-version-c-zs630kl-256gb.json new file mode 100644 index 00000000000..1439a00ec8f --- /dev/null +++ b/data/smartphone/asus/2019/zenfone-6-2019-dual-sim-td-lte-am-version-c-zs630kl-256gb.json @@ -0,0 +1,38 @@ +{ + "slug": "zenfone-6-2019-dual-sim-td-lte-am-version-c-zs630kl-256gb", + "name": "ZenFone 6 2019 Dual SIM TD-LTE AM Version C ZS630KL 256GB", + "brand": "asus", + "soc": "snapdragon-855", + "release_date": "2019-05-26", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Canada , USA", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/asus/2019/zenfone-6-2019-dual-sim-td-lte-am-version-c-zs630kl-64gb.json b/data/smartphone/asus/2019/zenfone-6-2019-dual-sim-td-lte-am-version-c-zs630kl-64gb.json new file mode 100644 index 00000000000..0a874d3218b --- /dev/null +++ b/data/smartphone/asus/2019/zenfone-6-2019-dual-sim-td-lte-am-version-c-zs630kl-64gb.json @@ -0,0 +1,38 @@ +{ + "slug": "zenfone-6-2019-dual-sim-td-lte-am-version-c-zs630kl-64gb", + "name": "ZenFone 6 2019 Dual SIM TD-LTE AM Version C ZS630KL 64GB", + "brand": "asus", + "soc": "snapdragon-855", + "release_date": "2019-05-26", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Canada , USA", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/asus/2019/zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-128gb.json b/data/smartphone/asus/2019/zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-128gb.json new file mode 100644 index 00000000000..0034486be36 --- /dev/null +++ b/data/smartphone/asus/2019/zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-128gb.json @@ -0,0 +1,38 @@ +{ + "slug": "zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-128gb", + "name": "ZenFone 6 2019 Dual SIM TD-LTE APAC Version B ZS630KL 128GB", + "brand": "asus", + "soc": "snapdragon-855", + "release_date": "2019-06-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "HK , Japan , Singapore , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/asus/2019/zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-256gb.json b/data/smartphone/asus/2019/zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-256gb.json new file mode 100644 index 00000000000..85608eb6851 --- /dev/null +++ b/data/smartphone/asus/2019/zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-256gb.json @@ -0,0 +1,38 @@ +{ + "slug": "zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-256gb", + "name": "ZenFone 6 2019 Dual SIM TD-LTE APAC Version B ZS630KL 256GB", + "brand": "asus", + "soc": "snapdragon-855", + "release_date": "2019-06-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "HK , Japan , Singapore , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/asus/2019/zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-64gb.json b/data/smartphone/asus/2019/zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-64gb.json new file mode 100644 index 00000000000..5d911ddaf97 --- /dev/null +++ b/data/smartphone/asus/2019/zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-64gb.json @@ -0,0 +1,38 @@ +{ + "slug": "zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-64gb", + "name": "ZenFone 6 2019 Dual SIM TD-LTE APAC Version B ZS630KL 64GB", + "brand": "asus", + "soc": "snapdragon-855", + "release_date": "2019-06-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "HK , Japan , Singapore , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/asus/2019/zenfone-6-2019-edition-30-dual-sim-td-lte-am-version-c-zs630kl-512gb.json b/data/smartphone/asus/2019/zenfone-6-2019-edition-30-dual-sim-td-lte-am-version-c-zs630kl-512gb.json new file mode 100644 index 00000000000..0c5f7c8fcd3 --- /dev/null +++ b/data/smartphone/asus/2019/zenfone-6-2019-edition-30-dual-sim-td-lte-am-version-c-zs630kl-512gb.json @@ -0,0 +1,38 @@ +{ + "slug": "zenfone-6-2019-edition-30-dual-sim-td-lte-am-version-c-zs630kl-512gb", + "name": "ZenFone 6 2019 Edition 30 Dual SIM TD-LTE AM Version C ZS630KL 512GB", + "brand": "asus", + "soc": "snapdragon-855", + "release_date": "2019-06-01", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Canada , USA", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/asus/2019/zenfone-6-2019-edition-30-dual-sim-td-lte-apac-version-b-zs630kl-512gb.json b/data/smartphone/asus/2019/zenfone-6-2019-edition-30-dual-sim-td-lte-apac-version-b-zs630kl-512gb.json new file mode 100644 index 00000000000..8ce92056afc --- /dev/null +++ b/data/smartphone/asus/2019/zenfone-6-2019-edition-30-dual-sim-td-lte-apac-version-b-zs630kl-512gb.json @@ -0,0 +1,38 @@ +{ + "slug": "zenfone-6-2019-edition-30-dual-sim-td-lte-apac-version-b-zs630kl-512gb", + "name": "ZenFone 6 2019 Edition 30 Dual SIM TD-LTE APAC Version B ZS630KL 512GB", + "brand": "asus", + "soc": "snapdragon-855", + "release_date": "2019-06-01", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "HK , Japan , Singapore , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/asus/2019/zenfone-6-2019-edition-30-global-dual-sim-td-lte-version-a-zs630kl-512gb.json b/data/smartphone/asus/2019/zenfone-6-2019-edition-30-global-dual-sim-td-lte-version-a-zs630kl-512gb.json new file mode 100644 index 00000000000..6b384c255e3 --- /dev/null +++ b/data/smartphone/asus/2019/zenfone-6-2019-edition-30-global-dual-sim-td-lte-version-a-zs630kl-512gb.json @@ -0,0 +1,38 @@ +{ + "slug": "zenfone-6-2019-edition-30-global-dual-sim-td-lte-version-a-zs630kl-512gb", + "name": "ZenFone 6 2019 Edition 30 Global Dual SIM TD-LTE Version A ZS630KL 512GB", + "brand": "asus", + "soc": "snapdragon-855", + "release_date": "2019-06-01", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Finland , France , Germany , Greece , Hungary , India , Ireland , Italy , Japan , Netherlands , Norway , Pakistan , Poland , Portugal , Russia , Romania , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/asus/2019/zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-128gb-6z.json b/data/smartphone/asus/2019/zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-128gb-6z.json new file mode 100644 index 00000000000..4f41d8dba95 --- /dev/null +++ b/data/smartphone/asus/2019/zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-128gb-6z.json @@ -0,0 +1,38 @@ +{ + "slug": "zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-128gb-6z", + "name": "ZenFone 6 2019 Global Dual SIM TD-LTE Version A ZS630KL 128GB / 6z", + "brand": "asus", + "soc": "snapdragon-855", + "release_date": "2019-05-26", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Japan , Netherlands , Norway , Pakistan , Poland , Portugal , Russia , Romania , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/asus/2019/zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-256gb-6z.json b/data/smartphone/asus/2019/zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-256gb-6z.json new file mode 100644 index 00000000000..d14b8b38c9e --- /dev/null +++ b/data/smartphone/asus/2019/zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-256gb-6z.json @@ -0,0 +1,38 @@ +{ + "slug": "zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-256gb-6z", + "name": "ZenFone 6 2019 Global Dual SIM TD-LTE Version A ZS630KL 256GB / 6z", + "brand": "asus", + "soc": "snapdragon-855", + "release_date": "2019-07-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Finland , France , Germany , Greece , Hungary , India , Ireland , Italy , Japan , Netherlands , Norway , Pakistan , Poland , Portugal , Russia , Romania , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/asus/2019/zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-64gb-6z.json b/data/smartphone/asus/2019/zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-64gb-6z.json new file mode 100644 index 00000000000..48024888a1c --- /dev/null +++ b/data/smartphone/asus/2019/zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-64gb-6z.json @@ -0,0 +1,38 @@ +{ + "slug": "zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-64gb-6z", + "name": "ZenFone 6 2019 Global Dual SIM TD-LTE Version A ZS630KL 64GB / 6z", + "brand": "asus", + "soc": "snapdragon-855", + "release_date": "2019-06-19", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Japan , Netherlands , Norway , Pakistan , Poland , Portugal , Russia , Romania , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/asus/2019/zenfone-max-m2-dual-sim-td-lte-emea-version-a-64gb-zb633kl.json b/data/smartphone/asus/2019/zenfone-max-m2-dual-sim-td-lte-emea-version-a-64gb-zb633kl.json new file mode 100644 index 00000000000..7cc92babe54 --- /dev/null +++ b/data/smartphone/asus/2019/zenfone-max-m2-dual-sim-td-lte-emea-version-a-64gb-zb633kl.json @@ -0,0 +1,42 @@ +{ + "slug": "zenfone-max-m2-dual-sim-td-lte-emea-version-a-64gb-zb633kl", + "name": "ZenFone Max M2 Dual SIM TD-LTE EMEA Version A 64GB ZB633KL", + "brand": "asus", + "soc": "snapdragon-632", + "release_date": "2019-01-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Bulgaria , Estonia , Germany , Hungary , Italy , Latvia , Lithuania , Poland , Russia , Spain , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/asus/2019/zenfone-max-pro-m2-dual-sim-td-lte-apac-version-b-64gb-zb631kl.json b/data/smartphone/asus/2019/zenfone-max-pro-m2-dual-sim-td-lte-apac-version-b-64gb-zb631kl.json new file mode 100644 index 00000000000..458c4a14da3 --- /dev/null +++ b/data/smartphone/asus/2019/zenfone-max-pro-m2-dual-sim-td-lte-apac-version-b-64gb-zb631kl.json @@ -0,0 +1,42 @@ +{ + "slug": "zenfone-max-pro-m2-dual-sim-td-lte-apac-version-b-64gb-zb631kl", + "name": "ZenFone Max Pro M2 Dual SIM TD-LTE APAC Version B 64GB ZB631KL", + "brand": "asus", + "soc": "snapdragon-660", + "release_date": "2019-01-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "HK , Japan , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/asus/2020/rog-phone-3-5g-classic-edition-dual-sim-td-lte-cn-version-c-256gb-zs661ks.json b/data/smartphone/asus/2020/rog-phone-3-5g-classic-edition-dual-sim-td-lte-cn-version-c-256gb-zs661ks.json new file mode 100644 index 00000000000..c544c489901 --- /dev/null +++ b/data/smartphone/asus/2020/rog-phone-3-5g-classic-edition-dual-sim-td-lte-cn-version-c-256gb-zs661ks.json @@ -0,0 +1,44 @@ +{ + "slug": "rog-phone-3-5g-classic-edition-dual-sim-td-lte-cn-version-c-256gb-zs661ks", + "name": "ROG Phone 3 5G Classic Edition Dual SIM TD-LTE CN Version C 256GB ZS661KS", + "brand": "asus", + "soc": "snapdragon-865-plus", + "release_date": "2020-08-18", + "ram_gb": 12.0, + "battery_mah": 6000, + "weight_g": 240.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 4699, + "market_countries": "China , HK", + "market_regions": "Asia , South America" +} diff --git a/data/smartphone/asus/2020/rog-phone-3-5g-elite-edition-dual-sim-td-lte-cn-version-c-128gb-zs661ks.json b/data/smartphone/asus/2020/rog-phone-3-5g-elite-edition-dual-sim-td-lte-cn-version-c-128gb-zs661ks.json new file mode 100644 index 00000000000..2d081f380a1 --- /dev/null +++ b/data/smartphone/asus/2020/rog-phone-3-5g-elite-edition-dual-sim-td-lte-cn-version-c-128gb-zs661ks.json @@ -0,0 +1,44 @@ +{ + "slug": "rog-phone-3-5g-elite-edition-dual-sim-td-lte-cn-version-c-128gb-zs661ks", + "name": "ROG Phone 3 5G Elite Edition Dual SIM TD-LTE CN Version C 128GB ZS661KS", + "brand": "asus", + "soc": "snapdragon-865", + "release_date": "2020-08-18", + "ram_gb": 12.0, + "battery_mah": 6000, + "weight_g": 240.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 3999, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/asus/2020/rog-phone-3-5g-extreme-edition-dual-sim-td-lte-cn-version-c-512gb-zs661ks.json b/data/smartphone/asus/2020/rog-phone-3-5g-extreme-edition-dual-sim-td-lte-cn-version-c-512gb-zs661ks.json new file mode 100644 index 00000000000..a2363073569 --- /dev/null +++ b/data/smartphone/asus/2020/rog-phone-3-5g-extreme-edition-dual-sim-td-lte-cn-version-c-512gb-zs661ks.json @@ -0,0 +1,43 @@ +{ + "slug": "rog-phone-3-5g-extreme-edition-dual-sim-td-lte-cn-version-c-512gb-zs661ks", + "name": "ROG Phone 3 5G Extreme Edition Dual SIM TD-LTE CN Version C 512GB ZS661KS", + "brand": "asus", + "soc": "snapdragon-865-plus", + "release_date": "2020-08-18", + "ram_gb": 12.0, + "battery_mah": 6000, + "weight_g": 240.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , South America" +} diff --git a/data/smartphone/asus/2020/rog-phone-3-5g-extreme-edition-global-dual-sim-td-lte-version-a-512gb-zs661ks.json b/data/smartphone/asus/2020/rog-phone-3-5g-extreme-edition-global-dual-sim-td-lte-version-a-512gb-zs661ks.json new file mode 100644 index 00000000000..0fa3c4893dc --- /dev/null +++ b/data/smartphone/asus/2020/rog-phone-3-5g-extreme-edition-global-dual-sim-td-lte-version-a-512gb-zs661ks.json @@ -0,0 +1,44 @@ +{ + "slug": "rog-phone-3-5g-extreme-edition-global-dual-sim-td-lte-version-a-512gb-zs661ks", + "name": "ROG Phone 3 5G Extreme Edition Global Dual SIM TD-LTE Version A 512GB ZS661KS", + "brand": "asus", + "soc": "snapdragon-865-plus", + "release_date": "2020-08-18", + "ram_gb": 12.0, + "battery_mah": 6000, + "weight_g": 240.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 999, + "market_countries": "Australia , Austria , Belarus , Belgium , Brazil , Bulgaria , Canada , Croatia , Cyprus , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , Indonesia , Ireland , Israel , Italy , Japan , Jordan , Latvia , Lithuania , Malaysia , Mexico , Morocco , Netherlands , Norway , NZ , Philippines , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Singapore , Slovenia , South Africa , Spain , Sweden , Switzerland , Taiwan , Thailand , Tunisie , Turkey , UAE , UK , Ukraine , USA , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/asus/2020/rog-phone-3-5g-premium-edition-dual-sim-td-lte-in-version-b-256gb-zs661ks.json b/data/smartphone/asus/2020/rog-phone-3-5g-premium-edition-dual-sim-td-lte-in-version-b-256gb-zs661ks.json new file mode 100644 index 00000000000..9364fdd5a7a --- /dev/null +++ b/data/smartphone/asus/2020/rog-phone-3-5g-premium-edition-dual-sim-td-lte-in-version-b-256gb-zs661ks.json @@ -0,0 +1,43 @@ +{ + "slug": "rog-phone-3-5g-premium-edition-dual-sim-td-lte-in-version-b-256gb-zs661ks", + "name": "ROG Phone 3 5G Premium Edition Dual SIM TD-LTE IN Version B 256GB ZS661KS", + "brand": "asus", + "soc": "snapdragon-865-plus", + "release_date": "2020-08-01", + "ram_gb": 12.0, + "battery_mah": 6000, + "weight_g": 240.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/asus/2020/rog-phone-3-5g-standard-edition-dual-sim-td-lte-in-version-b-128gb-zs661ks.json b/data/smartphone/asus/2020/rog-phone-3-5g-standard-edition-dual-sim-td-lte-in-version-b-128gb-zs661ks.json new file mode 100644 index 00000000000..0cde8958543 --- /dev/null +++ b/data/smartphone/asus/2020/rog-phone-3-5g-standard-edition-dual-sim-td-lte-in-version-b-128gb-zs661ks.json @@ -0,0 +1,43 @@ +{ + "slug": "rog-phone-3-5g-standard-edition-dual-sim-td-lte-in-version-b-128gb-zs661ks", + "name": "ROG Phone 3 5G Standard Edition Dual SIM TD-LTE IN Version B 128GB ZS661KS", + "brand": "asus", + "soc": "snapdragon-865-plus", + "release_date": "2020-08-01", + "ram_gb": 8.0, + "battery_mah": 6000, + "weight_g": 240.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/asus/2020/rog-phone-3-5g-strix-edition-global-dual-sim-td-lte-version-b-128gb-zs661ks.json b/data/smartphone/asus/2020/rog-phone-3-5g-strix-edition-global-dual-sim-td-lte-version-b-128gb-zs661ks.json new file mode 100644 index 00000000000..72da191f40d --- /dev/null +++ b/data/smartphone/asus/2020/rog-phone-3-5g-strix-edition-global-dual-sim-td-lte-version-b-128gb-zs661ks.json @@ -0,0 +1,44 @@ +{ + "slug": "rog-phone-3-5g-strix-edition-global-dual-sim-td-lte-version-b-128gb-zs661ks", + "name": "ROG Phone 3 5G Strix Edition Global Dual SIM TD-LTE Version B 128GB ZS661KS", + "brand": "asus", + "soc": "snapdragon-865", + "release_date": "2020-08-18", + "ram_gb": 8.0, + "battery_mah": 6000, + "weight_g": 240.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 799, + "market_countries": "Australia , Austria , Belarus , Belgium , Brazil , Bulgaria , Canada , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Ireland , Israel , Italy , Japan , Latvia , Lithuania , Malaysia , Mexico , Netherlands , Norway , NZ , Philippines , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , South Africa , Spain , Switzerland , Sweden , Taiwan , Thailand , Turkey , UAE , UK , Ukraine , USA , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/asus/2020/rog-phone-3-5g-ultimate-edition-dual-sim-td-lte-cn-version-c-512gb-zs661ks.json b/data/smartphone/asus/2020/rog-phone-3-5g-ultimate-edition-dual-sim-td-lte-cn-version-c-512gb-zs661ks.json new file mode 100644 index 00000000000..7366f27d876 --- /dev/null +++ b/data/smartphone/asus/2020/rog-phone-3-5g-ultimate-edition-dual-sim-td-lte-cn-version-c-512gb-zs661ks.json @@ -0,0 +1,43 @@ +{ + "slug": "rog-phone-3-5g-ultimate-edition-dual-sim-td-lte-cn-version-c-512gb-zs661ks", + "name": "ROG Phone 3 5G Ultimate Edition Dual SIM TD-LTE CN Version C 512GB ZS661KS", + "brand": "asus", + "soc": "snapdragon-865-plus", + "release_date": "2020-08-18", + "ram_gb": 16.0, + "battery_mah": 6000, + "weight_g": 240.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , South America" +} diff --git a/data/smartphone/asus/2020/zenfone-7-2020-premium-edition-global-dual-sim-td-lte-zs670ks-128gb.json b/data/smartphone/asus/2020/zenfone-7-2020-premium-edition-global-dual-sim-td-lte-zs670ks-128gb.json new file mode 100644 index 00000000000..a8ce44d57dc --- /dev/null +++ b/data/smartphone/asus/2020/zenfone-7-2020-premium-edition-global-dual-sim-td-lte-zs670ks-128gb.json @@ -0,0 +1,39 @@ +{ + "slug": "zenfone-7-2020-premium-edition-global-dual-sim-td-lte-zs670ks-128gb", + "name": "ZenFone 7 2020 Premium Edition Global Dual SIM TD-LTE ZS670KS 128GB", + "brand": "asus", + "soc": "snapdragon-865", + "release_date": "2020-09-19", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 230.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Finland , France , Germany , Greece , Hungary , India , Ireland , Italy , Japan , Netherlands , Norway , NZ , Pakistan , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , Turkey , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/asus/2020/zenfone-7-2020-standard-edition-global-dual-sim-td-lte-zs670ks-128gb.json b/data/smartphone/asus/2020/zenfone-7-2020-standard-edition-global-dual-sim-td-lte-zs670ks-128gb.json new file mode 100644 index 00000000000..0dab081cd00 --- /dev/null +++ b/data/smartphone/asus/2020/zenfone-7-2020-standard-edition-global-dual-sim-td-lte-zs670ks-128gb.json @@ -0,0 +1,39 @@ +{ + "slug": "zenfone-7-2020-standard-edition-global-dual-sim-td-lte-zs670ks-128gb", + "name": "ZenFone 7 2020 Standard Edition Global Dual SIM TD-LTE ZS670KS 128GB", + "brand": "asus", + "soc": "snapdragon-865", + "release_date": "2020-09-19", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 230.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Finland , France , Germany , Greece , Hungary , India , Ireland , Italy , Japan , Netherlands , Norway , NZ , Pakistan , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , Turkey , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/asus/2020/zenfone-7-pro-2020-global-dual-sim-td-lte-zs671ks-256gb.json b/data/smartphone/asus/2020/zenfone-7-pro-2020-global-dual-sim-td-lte-zs671ks-256gb.json new file mode 100644 index 00000000000..fb60cf60a2e --- /dev/null +++ b/data/smartphone/asus/2020/zenfone-7-pro-2020-global-dual-sim-td-lte-zs671ks-256gb.json @@ -0,0 +1,39 @@ +{ + "slug": "zenfone-7-pro-2020-global-dual-sim-td-lte-zs671ks-256gb", + "name": "ZenFone 7 Pro 2020 Global Dual SIM TD-LTE ZS671KS 256GB", + "brand": "asus", + "soc": "snapdragon-865-plus", + "release_date": "2020-09-19", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 230.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Finland , France , Germany , Greece , Hungary , India , Ireland , Italy , Japan , Netherlands , Norway , NZ , Pakistan , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , Turkey , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/asus/2021/rog-phone-5-5g-base-edition-dual-sim-td-lte-apac-version-f-h-128gb-zs673ks.json b/data/smartphone/asus/2021/rog-phone-5-5g-base-edition-dual-sim-td-lte-apac-version-f-h-128gb-zs673ks.json new file mode 100644 index 00000000000..eff0e0e95c2 --- /dev/null +++ b/data/smartphone/asus/2021/rog-phone-5-5g-base-edition-dual-sim-td-lte-apac-version-f-h-128gb-zs673ks.json @@ -0,0 +1,43 @@ +{ + "slug": "rog-phone-5-5g-base-edition-dual-sim-td-lte-apac-version-f-h-128gb-zs673ks", + "name": "ROG Phone 5 5G Base Edition Dual SIM TD-LTE APAC Version F H 128GB ZS673KS", + "brand": "asus", + "soc": "snapdragon-888", + "release_date": "2021-04-11", + "ram_gb": 8.0, + "battery_mah": 6000, + "weight_g": 239.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "HK , India , Russia , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia" +} diff --git a/data/smartphone/asus/2021/rog-phone-5-5g-base-edition-dual-sim-td-lte-cn-version-c-g-128gb-zs673ks.json b/data/smartphone/asus/2021/rog-phone-5-5g-base-edition-dual-sim-td-lte-cn-version-c-g-128gb-zs673ks.json new file mode 100644 index 00000000000..ce9a5738c5f --- /dev/null +++ b/data/smartphone/asus/2021/rog-phone-5-5g-base-edition-dual-sim-td-lte-cn-version-c-g-128gb-zs673ks.json @@ -0,0 +1,43 @@ +{ + "slug": "rog-phone-5-5g-base-edition-dual-sim-td-lte-cn-version-c-g-128gb-zs673ks", + "name": "ROG Phone 5 5G Base Edition Dual SIM TD-LTE CN Version C G 128GB ZS673KS", + "brand": "asus", + "soc": "snapdragon-888", + "release_date": "2021-04-11", + "ram_gb": 8.0, + "battery_mah": 6000, + "weight_g": 239.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/asus/2021/rog-phone-5-5g-base-edition-global-dual-sim-td-lte-version-a-d-128gb-zs673ks.json b/data/smartphone/asus/2021/rog-phone-5-5g-base-edition-global-dual-sim-td-lte-version-a-d-128gb-zs673ks.json new file mode 100644 index 00000000000..711fd9d0ee9 --- /dev/null +++ b/data/smartphone/asus/2021/rog-phone-5-5g-base-edition-global-dual-sim-td-lte-version-a-d-128gb-zs673ks.json @@ -0,0 +1,44 @@ +{ + "slug": "rog-phone-5-5g-base-edition-global-dual-sim-td-lte-version-a-d-128gb-zs673ks", + "name": "ROG Phone 5 5G Base Edition Global Dual SIM TD-LTE Version A D 128GB ZS673KS", + "brand": "asus", + "soc": "snapdragon-888", + "release_date": "2021-04-11", + "ram_gb": 8.0, + "battery_mah": 6000, + "weight_g": 239.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 799, + "market_countries": "Australia , Austria , Belarus , Belgium , Brazil , Bulgaria , Canada , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Indonesia , Ireland , Israel , Italy , Japan , Jordan , Latvia , Lithuania , Malaysia , Mexico , Morocco , Netherlands , Norway , NZ , Philippines , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Singapore , Slovenia , South Africa , Spain , Switzerland , Sweden , Thailand , Tunisie , Turkey , UAE , UK , Ukraine , USA , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/asus/2021/rog-phone-5-5g-premium-edition-dual-sim-td-lte-apac-version-f-h-256gb-zs673ks.json b/data/smartphone/asus/2021/rog-phone-5-5g-premium-edition-dual-sim-td-lte-apac-version-f-h-256gb-zs673ks.json new file mode 100644 index 00000000000..a24970c4286 --- /dev/null +++ b/data/smartphone/asus/2021/rog-phone-5-5g-premium-edition-dual-sim-td-lte-apac-version-f-h-256gb-zs673ks.json @@ -0,0 +1,43 @@ +{ + "slug": "rog-phone-5-5g-premium-edition-dual-sim-td-lte-apac-version-f-h-256gb-zs673ks", + "name": "ROG Phone 5 5G Premium Edition Dual SIM TD-LTE APAC Version F H 256GB ZS673KS", + "brand": "asus", + "soc": "snapdragon-888", + "release_date": "2021-04-11", + "ram_gb": 16.0, + "battery_mah": 6000, + "weight_g": 239.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "HK , India , Russia , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia" +} diff --git a/data/smartphone/asus/2021/rog-phone-5-5g-premium-edition-dual-sim-td-lte-cn-version-c-g-256gb-zs673ks.json b/data/smartphone/asus/2021/rog-phone-5-5g-premium-edition-dual-sim-td-lte-cn-version-c-g-256gb-zs673ks.json new file mode 100644 index 00000000000..a5e854533de --- /dev/null +++ b/data/smartphone/asus/2021/rog-phone-5-5g-premium-edition-dual-sim-td-lte-cn-version-c-g-256gb-zs673ks.json @@ -0,0 +1,43 @@ +{ + "slug": "rog-phone-5-5g-premium-edition-dual-sim-td-lte-cn-version-c-g-256gb-zs673ks", + "name": "ROG Phone 5 5G Premium Edition Dual SIM TD-LTE CN Version C G 256GB ZS673KS", + "brand": "asus", + "soc": "snapdragon-888", + "release_date": "2021-04-11", + "ram_gb": 16.0, + "battery_mah": 6000, + "weight_g": 239.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China , Malaysia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/asus/2021/rog-phone-5-5g-premium-edition-dual-sim-td-lte-na-version-b-e-256gb-zs673ks.json b/data/smartphone/asus/2021/rog-phone-5-5g-premium-edition-dual-sim-td-lte-na-version-b-e-256gb-zs673ks.json new file mode 100644 index 00000000000..c43b07af818 --- /dev/null +++ b/data/smartphone/asus/2021/rog-phone-5-5g-premium-edition-dual-sim-td-lte-na-version-b-e-256gb-zs673ks.json @@ -0,0 +1,44 @@ +{ + "slug": "rog-phone-5-5g-premium-edition-dual-sim-td-lte-na-version-b-e-256gb-zs673ks", + "name": "ROG Phone 5 5G Premium Edition Dual SIM TD-LTE NA Version B E 256GB ZS673KS", + "brand": "asus", + "soc": "snapdragon-888", + "release_date": "2021-04-11", + "ram_gb": 16.0, + "battery_mah": 6000, + "weight_g": 239.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1000, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/asus/2021/rog-phone-5-5g-premium-edition-global-dual-sim-td-lte-version-a-d-256gb-zs673ks.json b/data/smartphone/asus/2021/rog-phone-5-5g-premium-edition-global-dual-sim-td-lte-version-a-d-256gb-zs673ks.json new file mode 100644 index 00000000000..1a083812fb8 --- /dev/null +++ b/data/smartphone/asus/2021/rog-phone-5-5g-premium-edition-global-dual-sim-td-lte-version-a-d-256gb-zs673ks.json @@ -0,0 +1,44 @@ +{ + "slug": "rog-phone-5-5g-premium-edition-global-dual-sim-td-lte-version-a-d-256gb-zs673ks", + "name": "ROG Phone 5 5G Premium Edition Global Dual SIM TD-LTE Version A D 256GB ZS673KS", + "brand": "asus", + "soc": "snapdragon-888", + "release_date": "2021-04-11", + "ram_gb": 16.0, + "battery_mah": 6000, + "weight_g": 239.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 999, + "market_countries": "Belgium , Czech , France , Germany , Hungary , Italy , Malaysia , Netherlands , Portugal , Singapore , Spain , Taiwan , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/asus/2021/rog-phone-5-5g-pro-global-dual-sim-td-lte-version-a-d-512gb-zs673ks.json b/data/smartphone/asus/2021/rog-phone-5-5g-pro-global-dual-sim-td-lte-version-a-d-512gb-zs673ks.json new file mode 100644 index 00000000000..1ad6f90e760 --- /dev/null +++ b/data/smartphone/asus/2021/rog-phone-5-5g-pro-global-dual-sim-td-lte-version-a-d-512gb-zs673ks.json @@ -0,0 +1,43 @@ +{ + "slug": "rog-phone-5-5g-pro-global-dual-sim-td-lte-version-a-d-512gb-zs673ks", + "name": "ROG Phone 5 5G Pro Global Dual SIM TD-LTE Version A D 512GB ZS673KS", + "brand": "asus", + "soc": "snapdragon-888", + "release_date": "2021-07-01", + "ram_gb": 16.0, + "battery_mah": 6000, + "weight_g": 239.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/asus/2021/rog-phone-5-5g-standard-edition-dual-sim-td-lte-apac-version-f-h-256gb-zs673ks.json b/data/smartphone/asus/2021/rog-phone-5-5g-standard-edition-dual-sim-td-lte-apac-version-f-h-256gb-zs673ks.json new file mode 100644 index 00000000000..f61f5649013 --- /dev/null +++ b/data/smartphone/asus/2021/rog-phone-5-5g-standard-edition-dual-sim-td-lte-apac-version-f-h-256gb-zs673ks.json @@ -0,0 +1,43 @@ +{ + "slug": "rog-phone-5-5g-standard-edition-dual-sim-td-lte-apac-version-f-h-256gb-zs673ks", + "name": "ROG Phone 5 5G Standard Edition Dual SIM TD-LTE APAC Version F H 256GB ZS673KS", + "brand": "asus", + "soc": "snapdragon-888", + "release_date": "2021-04-11", + "ram_gb": 12.0, + "battery_mah": 6000, + "weight_g": 239.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "HK , India , Iran , Russia , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia" +} diff --git a/data/smartphone/asus/2021/rog-phone-5-5g-standard-edition-dual-sim-td-lte-cn-version-c-g-256gb-zs673ks.json b/data/smartphone/asus/2021/rog-phone-5-5g-standard-edition-dual-sim-td-lte-cn-version-c-g-256gb-zs673ks.json new file mode 100644 index 00000000000..286f02c4647 --- /dev/null +++ b/data/smartphone/asus/2021/rog-phone-5-5g-standard-edition-dual-sim-td-lte-cn-version-c-g-256gb-zs673ks.json @@ -0,0 +1,43 @@ +{ + "slug": "rog-phone-5-5g-standard-edition-dual-sim-td-lte-cn-version-c-g-256gb-zs673ks", + "name": "ROG Phone 5 5G Standard Edition Dual SIM TD-LTE CN Version C G 256GB ZS673KS", + "brand": "asus", + "soc": "snapdragon-888", + "release_date": "2021-04-11", + "ram_gb": 12.0, + "battery_mah": 6000, + "weight_g": 239.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China , Malaysia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/asus/2021/rog-phone-5-5g-standard-edition-global-dual-sim-td-lte-version-a-d-256gb-zs673ks.json b/data/smartphone/asus/2021/rog-phone-5-5g-standard-edition-global-dual-sim-td-lte-version-a-d-256gb-zs673ks.json new file mode 100644 index 00000000000..eb616ecdb17 --- /dev/null +++ b/data/smartphone/asus/2021/rog-phone-5-5g-standard-edition-global-dual-sim-td-lte-version-a-d-256gb-zs673ks.json @@ -0,0 +1,44 @@ +{ + "slug": "rog-phone-5-5g-standard-edition-global-dual-sim-td-lte-version-a-d-256gb-zs673ks", + "name": "ROG Phone 5 5G Standard Edition Global Dual SIM TD-LTE Version A D 256GB ZS673KS", + "brand": "asus", + "soc": "snapdragon-888", + "release_date": "2021-04-11", + "ram_gb": 12.0, + "battery_mah": 6000, + "weight_g": 239.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 899, + "market_countries": "Australia , Austria , Belarus , Belgium , Brazil , Bulgaria , Canada , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Indonesia , Ireland , Israel , Italy , Japan , Jordan , Latvia , Lithuania , Malaysia , Mexico , Morocco , Netherlands , Norway , NZ , Philippines , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Singapore , Slovenia , South Africa , Spain , Switzerland , Sweden , Thailand , Tunisie , Turkey , UAE , UK , Ukraine , USA , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/asus/2021/rog-phone-5-5g-ultimate-dual-sim-td-lte-cn-version-c-g-512gb-zs673ks.json b/data/smartphone/asus/2021/rog-phone-5-5g-ultimate-dual-sim-td-lte-cn-version-c-g-512gb-zs673ks.json new file mode 100644 index 00000000000..a9f72b06a26 --- /dev/null +++ b/data/smartphone/asus/2021/rog-phone-5-5g-ultimate-dual-sim-td-lte-cn-version-c-g-512gb-zs673ks.json @@ -0,0 +1,43 @@ +{ + "slug": "rog-phone-5-5g-ultimate-dual-sim-td-lte-cn-version-c-g-512gb-zs673ks", + "name": "ROG Phone 5 5G Ultimate Dual SIM TD-LTE CN Version C G 512GB ZS673KS", + "brand": "asus", + "soc": "snapdragon-888", + "release_date": "2021-06-01", + "ram_gb": 18.0, + "battery_mah": 6000, + "weight_g": 239.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/asus/2021/rog-phone-5-5g-ultimate-dual-sim-td-lte-na-version-b-e-512gb-zs673ks.json b/data/smartphone/asus/2021/rog-phone-5-5g-ultimate-dual-sim-td-lte-na-version-b-e-512gb-zs673ks.json new file mode 100644 index 00000000000..4f9dd8d75d4 --- /dev/null +++ b/data/smartphone/asus/2021/rog-phone-5-5g-ultimate-dual-sim-td-lte-na-version-b-e-512gb-zs673ks.json @@ -0,0 +1,44 @@ +{ + "slug": "rog-phone-5-5g-ultimate-dual-sim-td-lte-na-version-b-e-512gb-zs673ks", + "name": "ROG Phone 5 5G Ultimate Dual SIM TD-LTE NA Version B E 512GB ZS673KS", + "brand": "asus", + "soc": "snapdragon-888", + "release_date": "2021-06-01", + "ram_gb": 18.0, + "battery_mah": 6000, + "weight_g": 239.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1300, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/asus/2021/rog-phone-5-5g-ultimate-global-dual-sim-td-lte-version-a-d-512gb-zs673ks.json b/data/smartphone/asus/2021/rog-phone-5-5g-ultimate-global-dual-sim-td-lte-version-a-d-512gb-zs673ks.json new file mode 100644 index 00000000000..17d23d457d8 --- /dev/null +++ b/data/smartphone/asus/2021/rog-phone-5-5g-ultimate-global-dual-sim-td-lte-version-a-d-512gb-zs673ks.json @@ -0,0 +1,44 @@ +{ + "slug": "rog-phone-5-5g-ultimate-global-dual-sim-td-lte-version-a-d-512gb-zs673ks", + "name": "ROG Phone 5 5G Ultimate Global Dual SIM TD-LTE Version A D 512GB ZS673KS", + "brand": "asus", + "soc": "snapdragon-888", + "release_date": "2021-06-01", + "ram_gb": 18.0, + "battery_mah": 6000, + "weight_g": 239.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1299, + "market_countries": "Australia , Austria , Belarus , Belgium , Brazil , Bulgaria , Canada , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Indonesia , Iran , Ireland , Israel , Italy , Japan , Jordan , Latvia , Lithuania , Malaysia , Mexico , Morocco , Netherlands , Norway , NZ , Philippines , Poland , Portugal , Romania , Russia , Saudi Arabia , Singapore , Slovakia , Slovenia , South Africa , Spain , Sweden , Switzerland , Tunisie , Thailand , Turkey , UAE , UK , Ukraine , USA , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/asus/2021/rog-phone-5s-5g-base-edition-dual-sim-td-lte-cn-version-c-256gb-zs676ks.json b/data/smartphone/asus/2021/rog-phone-5s-5g-base-edition-dual-sim-td-lte-cn-version-c-256gb-zs676ks.json new file mode 100644 index 00000000000..25ff4e19cc9 --- /dev/null +++ b/data/smartphone/asus/2021/rog-phone-5s-5g-base-edition-dual-sim-td-lte-cn-version-c-256gb-zs676ks.json @@ -0,0 +1,43 @@ +{ + "slug": "rog-phone-5s-5g-base-edition-dual-sim-td-lte-cn-version-c-256gb-zs676ks", + "name": "ROG Phone 5s 5G Base Edition Dual SIM TD-LTE CN Version C 256GB ZS676KS", + "brand": "asus", + "soc": "snapdragon-888-plus", + "release_date": "2021-09-01", + "ram_gb": 12.0, + "battery_mah": 6000, + "weight_g": 239.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/asus/2021/rog-phone-5s-5g-base-edition-dual-sim-td-lte-na-version-b-512gb-zs676ks.json b/data/smartphone/asus/2021/rog-phone-5s-5g-base-edition-dual-sim-td-lte-na-version-b-512gb-zs676ks.json new file mode 100644 index 00000000000..004394b41c5 --- /dev/null +++ b/data/smartphone/asus/2021/rog-phone-5s-5g-base-edition-dual-sim-td-lte-na-version-b-512gb-zs676ks.json @@ -0,0 +1,43 @@ +{ + "slug": "rog-phone-5s-5g-base-edition-dual-sim-td-lte-na-version-b-512gb-zs676ks", + "name": "ROG Phone 5s 5G Base Edition Dual SIM TD-LTE NA Version B 512GB ZS676KS", + "brand": "asus", + "soc": "snapdragon-888-plus", + "release_date": "2021-10-01", + "ram_gb": 12.0, + "battery_mah": 6000, + "weight_g": 239.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/asus/2021/rog-phone-5s-5g-premium-edition-dual-sim-td-lte-cn-version-c-512gb-zs676ks.json b/data/smartphone/asus/2021/rog-phone-5s-5g-premium-edition-dual-sim-td-lte-cn-version-c-512gb-zs676ks.json new file mode 100644 index 00000000000..42646c3bcda --- /dev/null +++ b/data/smartphone/asus/2021/rog-phone-5s-5g-premium-edition-dual-sim-td-lte-cn-version-c-512gb-zs676ks.json @@ -0,0 +1,43 @@ +{ + "slug": "rog-phone-5s-5g-premium-edition-dual-sim-td-lte-cn-version-c-512gb-zs676ks", + "name": "ROG Phone 5s 5G Premium Edition Dual SIM TD-LTE CN Version C 512GB ZS676KS", + "brand": "asus", + "soc": "snapdragon-888-plus", + "release_date": "2021-09-01", + "ram_gb": 18.0, + "battery_mah": 6000, + "weight_g": 239.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/asus/2021/rog-phone-5s-5g-premium-edition-global-dual-sim-td-lte-version-a-d-512gb-zs676ks.json b/data/smartphone/asus/2021/rog-phone-5s-5g-premium-edition-global-dual-sim-td-lte-version-a-d-512gb-zs676ks.json new file mode 100644 index 00000000000..96cc7fc54e7 --- /dev/null +++ b/data/smartphone/asus/2021/rog-phone-5s-5g-premium-edition-global-dual-sim-td-lte-version-a-d-512gb-zs676ks.json @@ -0,0 +1,43 @@ +{ + "slug": "rog-phone-5s-5g-premium-edition-global-dual-sim-td-lte-version-a-d-512gb-zs676ks", + "name": "ROG Phone 5s 5G Premium Edition Global Dual SIM TD-LTE Version A D 512GB ZS676KS", + "brand": "asus", + "soc": "snapdragon-888-plus", + "release_date": "2021-09-01", + "ram_gb": 18.0, + "battery_mah": 6000, + "weight_g": 239.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Cyprus , Czech , France , Germany , Greece , HK , Hungary , India , Indonesia , Ireland , Italy , Japan , Malaysia , Netherlands , Poland , Portugal , Russia , Singapore , Spain , Taiwan , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/asus/2021/rog-phone-5s-5g-standard-edition-dual-sim-td-lte-na-version-b-512gb-zs676ks.json b/data/smartphone/asus/2021/rog-phone-5s-5g-standard-edition-dual-sim-td-lte-na-version-b-512gb-zs676ks.json new file mode 100644 index 00000000000..67ee05fc5ea --- /dev/null +++ b/data/smartphone/asus/2021/rog-phone-5s-5g-standard-edition-dual-sim-td-lte-na-version-b-512gb-zs676ks.json @@ -0,0 +1,43 @@ +{ + "slug": "rog-phone-5s-5g-standard-edition-dual-sim-td-lte-na-version-b-512gb-zs676ks", + "name": "ROG Phone 5s 5G Standard Edition Dual SIM TD-LTE NA Version B 512GB ZS676KS", + "brand": "asus", + "soc": "snapdragon-888-plus", + "release_date": "2021-10-01", + "ram_gb": 16.0, + "battery_mah": 6000, + "weight_g": 239.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/asus/2021/rog-phone-5s-5g-standard-edition-global-dual-sim-td-lte-version-a-d-256gb-zs676ks.json b/data/smartphone/asus/2021/rog-phone-5s-5g-standard-edition-global-dual-sim-td-lte-version-a-d-256gb-zs676ks.json new file mode 100644 index 00000000000..1a7cc0f143f --- /dev/null +++ b/data/smartphone/asus/2021/rog-phone-5s-5g-standard-edition-global-dual-sim-td-lte-version-a-d-256gb-zs676ks.json @@ -0,0 +1,43 @@ +{ + "slug": "rog-phone-5s-5g-standard-edition-global-dual-sim-td-lte-version-a-d-256gb-zs676ks", + "name": "ROG Phone 5s 5G Standard Edition Global Dual SIM TD-LTE Version A D 256GB ZS676KS", + "brand": "asus", + "soc": "snapdragon-888-plus", + "release_date": "2021-09-01", + "ram_gb": 16.0, + "battery_mah": 6000, + "weight_g": 239.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Brazil , Cyprus , Czech , France , Greece , Germany , HK , Hungary , India , Indonesia , Iran , Ireland , Italy , Japan , Malaysia , Netherlands , Poland , Portugal , Singapore , Spain , Taiwan , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/asus/2021/rog-phone-5s-5g-standard-edition-global-dual-sim-td-lte-version-a-d-512gb-zs676ks.json b/data/smartphone/asus/2021/rog-phone-5s-5g-standard-edition-global-dual-sim-td-lte-version-a-d-512gb-zs676ks.json new file mode 100644 index 00000000000..fa1bcc24548 --- /dev/null +++ b/data/smartphone/asus/2021/rog-phone-5s-5g-standard-edition-global-dual-sim-td-lte-version-a-d-512gb-zs676ks.json @@ -0,0 +1,43 @@ +{ + "slug": "rog-phone-5s-5g-standard-edition-global-dual-sim-td-lte-version-a-d-512gb-zs676ks", + "name": "ROG Phone 5s 5G Standard Edition Global Dual SIM TD-LTE Version A D 512GB ZS676KS", + "brand": "asus", + "soc": "snapdragon-888-plus", + "release_date": "2021-09-01", + "ram_gb": 16.0, + "battery_mah": 6000, + "weight_g": 239.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Brazil , Cyprus , Czech , France , Greece , Germany , HK , Hungary , India , Indonesia , Iran , Ireland , Italy , Malaysia , Netherlands , Poland , Portugal , Russia , Singapore , Spain , Taiwan , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/asus/2021/rog-phone-5s-pro-5g-dual-sim-td-lte-cn-version-c-512gb-zs676ks.json b/data/smartphone/asus/2021/rog-phone-5s-pro-5g-dual-sim-td-lte-cn-version-c-512gb-zs676ks.json new file mode 100644 index 00000000000..bc72086e381 --- /dev/null +++ b/data/smartphone/asus/2021/rog-phone-5s-pro-5g-dual-sim-td-lte-cn-version-c-512gb-zs676ks.json @@ -0,0 +1,43 @@ +{ + "slug": "rog-phone-5s-pro-5g-dual-sim-td-lte-cn-version-c-512gb-zs676ks", + "name": "ROG Phone 5s Pro 5G Dual SIM TD-LTE CN Version C 512GB ZS676KS", + "brand": "asus", + "soc": "snapdragon-888-plus", + "release_date": "2021-09-01", + "ram_gb": 18.0, + "battery_mah": 6000, + "weight_g": 238.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/asus/2021/rog-phone-5s-pro-5g-global-dual-sim-td-lte-version-a-d-512gb-zs676ks.json b/data/smartphone/asus/2021/rog-phone-5s-pro-5g-global-dual-sim-td-lte-version-a-d-512gb-zs676ks.json new file mode 100644 index 00000000000..efb1dfcd7e9 --- /dev/null +++ b/data/smartphone/asus/2021/rog-phone-5s-pro-5g-global-dual-sim-td-lte-version-a-d-512gb-zs676ks.json @@ -0,0 +1,43 @@ +{ + "slug": "rog-phone-5s-pro-5g-global-dual-sim-td-lte-version-a-d-512gb-zs676ks", + "name": "ROG Phone 5s Pro 5G Global Dual SIM TD-LTE Version A D 512GB ZS676KS", + "brand": "asus", + "soc": "snapdragon-888-plus", + "release_date": "2021-09-01", + "ram_gb": 18.0, + "battery_mah": 6000, + "weight_g": 238.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Belgium , Brazil , Croatia , Cyprus , Czech , Denmark , France , Germany , Greece , HK , Hungary , India , Indonesia , Ireland , Israel , Italy , Malaysia , Netherlands , Philippines , Portugal , Russia , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Taiwan , Thailand , Turkey , UAE , UK , Vietnam", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Oceania , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/asus/2021/zenfone-8-2021-premium-edition-global-dual-sim-td-lte-zs590ks-256gb.json b/data/smartphone/asus/2021/zenfone-8-2021-premium-edition-global-dual-sim-td-lte-zs590ks-256gb.json new file mode 100644 index 00000000000..b8dc8969604 --- /dev/null +++ b/data/smartphone/asus/2021/zenfone-8-2021-premium-edition-global-dual-sim-td-lte-zs590ks-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "zenfone-8-2021-premium-edition-global-dual-sim-td-lte-zs590ks-256gb", + "name": "ZenFone 8 2021 Premium Edition Global Dual SIM TD-LTE ZS590KS 256GB", + "brand": "asus", + "soc": "snapdragon-888", + "release_date": "2021-05-01", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.9, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 446 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Belgium , Czech , Denmark , Finland , France , HK , Ireland , Netherlands , Norway , Poland , Portugal , Saudi Arabia , Singapore , Slovakia , Spain , Switzerland , Sweden , Taiwan", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/asus/2021/zenfone-8-2021-standard-edition-dual-sim-td-lte-am-zs590ks-128gb.json b/data/smartphone/asus/2021/zenfone-8-2021-standard-edition-dual-sim-td-lte-am-zs590ks-128gb.json new file mode 100644 index 00000000000..19e31ef9316 --- /dev/null +++ b/data/smartphone/asus/2021/zenfone-8-2021-standard-edition-dual-sim-td-lte-am-zs590ks-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "zenfone-8-2021-standard-edition-dual-sim-td-lte-am-zs590ks-128gb", + "name": "ZenFone 8 2021 Standard Edition Dual SIM TD-LTE AM ZS590KS 128GB", + "brand": "asus", + "soc": "snapdragon-888", + "release_date": "2021-06-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.9, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 446 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Canada , USA", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/asus/2021/zenfone-8-2021-standard-edition-dual-sim-td-lte-am-zs590ks-256gb.json b/data/smartphone/asus/2021/zenfone-8-2021-standard-edition-dual-sim-td-lte-am-zs590ks-256gb.json new file mode 100644 index 00000000000..5d8e504723d --- /dev/null +++ b/data/smartphone/asus/2021/zenfone-8-2021-standard-edition-dual-sim-td-lte-am-zs590ks-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "zenfone-8-2021-standard-edition-dual-sim-td-lte-am-zs590ks-256gb", + "name": "ZenFone 8 2021 Standard Edition Dual SIM TD-LTE AM ZS590KS 256GB", + "brand": "asus", + "soc": "snapdragon-888", + "release_date": "2021-06-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.9, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 446 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Canada , USA", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/asus/2021/zenfone-8-2021-standard-edition-global-dual-sim-td-lte-zs590ks-128gb.json b/data/smartphone/asus/2021/zenfone-8-2021-standard-edition-global-dual-sim-td-lte-zs590ks-128gb.json new file mode 100644 index 00000000000..3438243f15b --- /dev/null +++ b/data/smartphone/asus/2021/zenfone-8-2021-standard-edition-global-dual-sim-td-lte-zs590ks-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "zenfone-8-2021-standard-edition-global-dual-sim-td-lte-zs590ks-128gb", + "name": "ZenFone 8 2021 Standard Edition Global Dual SIM TD-LTE ZS590KS 128GB", + "brand": "asus", + "soc": "snapdragon-888", + "release_date": "2021-05-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.9, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 446 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 600, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Finland , France , Greece , Germany , HK , Hungary , India , Ireland , Italy , Japan , Malaysia , Netherlands , Norway , NZ , Pakistan , Philippines , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Singapore , Slovenia , Spain , Switzerland , Sweden , Taiwan , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/asus/2021/zenfone-8-2021-standard-edition-global-dual-sim-td-lte-zs590ks-256gb.json b/data/smartphone/asus/2021/zenfone-8-2021-standard-edition-global-dual-sim-td-lte-zs590ks-256gb.json new file mode 100644 index 00000000000..aa72aa95d1f --- /dev/null +++ b/data/smartphone/asus/2021/zenfone-8-2021-standard-edition-global-dual-sim-td-lte-zs590ks-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "zenfone-8-2021-standard-edition-global-dual-sim-td-lte-zs590ks-256gb", + "name": "ZenFone 8 2021 Standard Edition Global Dual SIM TD-LTE ZS590KS 256GB", + "brand": "asus", + "soc": "snapdragon-888", + "release_date": "2021-05-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.9, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 446 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 999, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Finland , France , Greece , Germany , HK , Hungary , India , Ireland , Italy , Japan , Malaysia , Netherlands , Norway , NZ , Pakistan , Philippines , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Singapore , Slovenia , Spain , Switzerland , Sweden , Taiwan , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/asus/2021/zenfone-8-2021-top-edition-global-dual-sim-td-lte-zs590ks-256gb.json b/data/smartphone/asus/2021/zenfone-8-2021-top-edition-global-dual-sim-td-lte-zs590ks-256gb.json new file mode 100644 index 00000000000..b688124c2ee --- /dev/null +++ b/data/smartphone/asus/2021/zenfone-8-2021-top-edition-global-dual-sim-td-lte-zs590ks-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "zenfone-8-2021-top-edition-global-dual-sim-td-lte-zs590ks-256gb", + "name": "ZenFone 8 2021 Top Edition Global Dual SIM TD-LTE ZS590KS 256GB", + "brand": "asus", + "soc": "snapdragon-888", + "release_date": "2021-05-01", + "ram_gb": 16.0, + "battery_mah": 4000, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.9, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 446 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 829, + "market_countries": "Australia , Belgium , Cyprus , Czech , Denmark , Finland , France , Germany , Greece , HK , Hungary , India , Ireland , Italy , Japan , Malaysia , Netherlands , Norway , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Singapore , Spain , Sweden , Switzerland , Taiwan , Thailand , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/asus/2021/zenfone-8-flip-2021-global-dual-sim-td-lte-zs672ks-128gb.json b/data/smartphone/asus/2021/zenfone-8-flip-2021-global-dual-sim-td-lte-zs672ks-128gb.json new file mode 100644 index 00000000000..8a87bbfa44c --- /dev/null +++ b/data/smartphone/asus/2021/zenfone-8-flip-2021-global-dual-sim-td-lte-zs672ks-128gb.json @@ -0,0 +1,39 @@ +{ + "slug": "zenfone-8-flip-2021-global-dual-sim-td-lte-zs672ks-128gb", + "name": "ZenFone 8 Flip 2021 Global Dual SIM TD-LTE ZS672KS 128GB", + "brand": "asus", + "soc": "snapdragon-888", + "release_date": "2021-05-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 230.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Finland , France , Germany , Greece , Hungary , India , Ireland , Italy , Japan , Netherlands , Norway , NZ , Pakistan , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , Turkey , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/asus/2021/zenfone-8-flip-2021-global-dual-sim-td-lte-zs672ks-256gb.json b/data/smartphone/asus/2021/zenfone-8-flip-2021-global-dual-sim-td-lte-zs672ks-256gb.json new file mode 100644 index 00000000000..4aaa017f987 --- /dev/null +++ b/data/smartphone/asus/2021/zenfone-8-flip-2021-global-dual-sim-td-lte-zs672ks-256gb.json @@ -0,0 +1,40 @@ +{ + "slug": "zenfone-8-flip-2021-global-dual-sim-td-lte-zs672ks-256gb", + "name": "ZenFone 8 Flip 2021 Global Dual SIM TD-LTE ZS672KS 256GB", + "brand": "asus", + "soc": "snapdragon-888", + "release_date": "2021-05-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 230.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 829, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Finland , France , Germany , Greece , Hungary , India , Ireland , Italy , Japan , Netherlands , Norway , NZ , Pakistan , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , Turkey , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/blackberry/2017/blackberry-motion-global-dual-sim-td-lte-bbd100-6.json b/data/smartphone/blackberry/2017/blackberry-motion-global-dual-sim-td-lte-bbd100-6.json new file mode 100644 index 00000000000..2b71f645edd --- /dev/null +++ b/data/smartphone/blackberry/2017/blackberry-motion-global-dual-sim-td-lte-bbd100-6.json @@ -0,0 +1,41 @@ +{ + "slug": "blackberry-motion-global-dual-sim-td-lte-bbd100-6", + "name": "BlackBerry Motion Global Dual SIm TD-LTE BBD100-6", + "brand": "blackberry", + "soc": "snapdragon-625", + "release_date": "2017-10-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.47, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Germany , HK , Hungary , Malaysia , Netherlands , NZ , Pakistan , Saudi Arabia , Switzerland , Taiwan , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/blackberry/2018/blackberry-evolve-bbg100-1-dual-sim-td-lte-in.json b/data/smartphone/blackberry/2018/blackberry-evolve-bbg100-1-dual-sim-td-lte-in.json new file mode 100644 index 00000000000..e169e422a5c --- /dev/null +++ b/data/smartphone/blackberry/2018/blackberry-evolve-bbg100-1-dual-sim-td-lte-in.json @@ -0,0 +1,41 @@ +{ + "slug": "blackberry-evolve-bbg100-1-dual-sim-td-lte-in", + "name": "BlackBerry Evolve BBG100-1 Dual SIM TD-LTE IN", + "brand": "blackberry", + "soc": "snapdragon-450", + "release_date": "2018-10-11", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , India , Nepal , Sri Lanka", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/blackberry/2018/blackberry-evolve-x-bbh100-1-dual-sim-td-lte-in.json b/data/smartphone/blackberry/2018/blackberry-evolve-x-bbh100-1-dual-sim-td-lte-in.json new file mode 100644 index 00000000000..86e427f0adb --- /dev/null +++ b/data/smartphone/blackberry/2018/blackberry-evolve-x-bbh100-1-dual-sim-td-lte-in.json @@ -0,0 +1,41 @@ +{ + "slug": "blackberry-evolve-x-bbh100-1-dual-sim-td-lte-in", + "name": "BlackBerry Evolve X BBH100-1 Dual SIM TD-LTE IN", + "brand": "blackberry", + "soc": "snapdragon-660", + "release_date": "2018-10-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , India , Nepal , Sri Lanka", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/blackberry/2018/blackberry-key2-bbf100-1-td-lte-eu-au-jp.json b/data/smartphone/blackberry/2018/blackberry-key2-bbf100-1-td-lte-eu-au-jp.json new file mode 100644 index 00000000000..5e8ad0ad2e1 --- /dev/null +++ b/data/smartphone/blackberry/2018/blackberry-key2-bbf100-1-td-lte-eu-au-jp.json @@ -0,0 +1,41 @@ +{ + "slug": "blackberry-key2-bbf100-1-td-lte-eu-au-jp", + "name": "BlackBerry KEY2 BBF100-1 TD-LTE EU AU JP", + "brand": "blackberry", + "soc": "snapdragon-660", + "release_date": "2018-06-27", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.48, + "resolution": "1080x1620", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Cyprus , Czech , Denmark , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Japan , Netherlands , Norway , Poland , Portugal , Romania , Russia , Saudi Arabia , Singapore , Slovenia , South Africa , Spain , Switzerland , Sweden , Taiwan , UAE , UK", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/blackberry/2018/blackberry-key2-bbf100-2-td-lte-am-128gb.json b/data/smartphone/blackberry/2018/blackberry-key2-bbf100-2-td-lte-am-128gb.json new file mode 100644 index 00000000000..9a8a9d8274b --- /dev/null +++ b/data/smartphone/blackberry/2018/blackberry-key2-bbf100-2-td-lte-am-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "blackberry-key2-bbf100-2-td-lte-am-128gb", + "name": "BlackBerry KEY2 BBF100-2 TD-LTE AM 128GB", + "brand": "blackberry", + "soc": "snapdragon-660", + "release_date": "2018-06-21", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 4.48, + "resolution": "1080x1620", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Brazil , Canada , Chile , Ecuador , Mexico , USA", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/blackberry/2018/blackberry-key2-bbf100-2-td-lte-am.json b/data/smartphone/blackberry/2018/blackberry-key2-bbf100-2-td-lte-am.json new file mode 100644 index 00000000000..4417cc2e514 --- /dev/null +++ b/data/smartphone/blackberry/2018/blackberry-key2-bbf100-2-td-lte-am.json @@ -0,0 +1,41 @@ +{ + "slug": "blackberry-key2-bbf100-2-td-lte-am", + "name": "BlackBerry KEY2 BBF100-2 TD-LTE AM", + "brand": "blackberry", + "soc": "snapdragon-660", + "release_date": "2018-06-21", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.48, + "resolution": "1080x1620", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Brazil , Canada , Chile , Ecuador , Mexico , USA", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/blackberry/2018/blackberry-key2-bbf100-4-td-lte-cn.json b/data/smartphone/blackberry/2018/blackberry-key2-bbf100-4-td-lte-cn.json new file mode 100644 index 00000000000..6a1d4cc980b --- /dev/null +++ b/data/smartphone/blackberry/2018/blackberry-key2-bbf100-4-td-lte-cn.json @@ -0,0 +1,41 @@ +{ + "slug": "blackberry-key2-bbf100-4-td-lte-cn", + "name": "BlackBerry KEY2 BBF100-4 TD-LTE CN", + "brand": "blackberry", + "soc": "snapdragon-660", + "release_date": "2018-06-01", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.48, + "resolution": "1080x1620", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/blackberry/2018/blackberry-key2-bbf100-6-dual-sim-td-lte-apac-128gb.json b/data/smartphone/blackberry/2018/blackberry-key2-bbf100-6-dual-sim-td-lte-apac-128gb.json new file mode 100644 index 00000000000..4e2b2d5f191 --- /dev/null +++ b/data/smartphone/blackberry/2018/blackberry-key2-bbf100-6-dual-sim-td-lte-apac-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "blackberry-key2-bbf100-6-dual-sim-td-lte-apac-128gb", + "name": "BlackBerry KEY2 BBF100-6 Dual SIM TD-LTE APAC 128GB", + "brand": "blackberry", + "soc": "snapdragon-660", + "release_date": "2018-07-23", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 4.48, + "resolution": "1080x1620", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "HK , India , Indonesia , Japan , Saudi Arabia , South Korea , Taiwan , UAE", + "market_regions": "Asia , Middle East , Southeast Asia" +} diff --git a/data/smartphone/blackberry/2018/blackberry-key2-bbf100-6-dual-sim-td-lte-apac.json b/data/smartphone/blackberry/2018/blackberry-key2-bbf100-6-dual-sim-td-lte-apac.json new file mode 100644 index 00000000000..50c2051ea5c --- /dev/null +++ b/data/smartphone/blackberry/2018/blackberry-key2-bbf100-6-dual-sim-td-lte-apac.json @@ -0,0 +1,41 @@ +{ + "slug": "blackberry-key2-bbf100-6-dual-sim-td-lte-apac", + "name": "BlackBerry KEY2 BBF100-6 Dual SIM TD-LTE APAC", + "brand": "blackberry", + "soc": "snapdragon-660", + "release_date": "2018-07-23", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.48, + "resolution": "1080x1620", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "HK , India , Indonesia , Japan , Saudi Arabia , South Korea , Taiwan , UAE", + "market_regions": "Asia , Middle East , Southeast Asia" +} diff --git a/data/smartphone/blackberry/2018/blackberry-key2-bbf100-8-dual-sim-td-lte-jp-64gb.json b/data/smartphone/blackberry/2018/blackberry-key2-bbf100-8-dual-sim-td-lte-jp-64gb.json new file mode 100644 index 00000000000..12b4890d194 --- /dev/null +++ b/data/smartphone/blackberry/2018/blackberry-key2-bbf100-8-dual-sim-td-lte-jp-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "blackberry-key2-bbf100-8-dual-sim-td-lte-jp-64gb", + "name": "BlackBerry KEY2 BBF100-8 Dual SIM TD-LTE JP 64GB", + "brand": "blackberry", + "soc": "snapdragon-660", + "release_date": "2018-08-01", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.48, + "resolution": "1080x1620", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/blackberry/2018/blackberry-key2-bbf100-9-td-lte-jp-128gb.json b/data/smartphone/blackberry/2018/blackberry-key2-bbf100-9-td-lte-jp-128gb.json new file mode 100644 index 00000000000..ff27bf5c8f6 --- /dev/null +++ b/data/smartphone/blackberry/2018/blackberry-key2-bbf100-9-td-lte-jp-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "blackberry-key2-bbf100-9-td-lte-jp-128gb", + "name": "BlackBerry KEY2 BBF100-9 TD-LTE JP 128GB", + "brand": "blackberry", + "soc": "snapdragon-660", + "release_date": "2018-09-07", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 4.48, + "resolution": "1080x1620", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/blackberry/2018/blackberry-key2-le-bbe100-1-global-td-lte.json b/data/smartphone/blackberry/2018/blackberry-key2-le-bbe100-1-global-td-lte.json new file mode 100644 index 00000000000..e0c55e0d67b --- /dev/null +++ b/data/smartphone/blackberry/2018/blackberry-key2-le-bbe100-1-global-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "blackberry-key2-le-bbe100-1-global-td-lte", + "name": "BlackBerry KEY2 LE BBE100-1 Global TD-LTE", + "brand": "blackberry", + "soc": "snapdragon-636", + "release_date": "2018-09-02", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 4.48, + "resolution": "1080x1620", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Cyprus , Croatia , Czech , Denmark , France , Germany , Greece , Hungary , Ireland , Italy , Japan , Netherlands , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , South Africa , Spain , Switzerland , Taiwan , UAE , UK", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/blackberry/2018/blackberry-key2-le-bbe100-2-td-lte-am-32gb.json b/data/smartphone/blackberry/2018/blackberry-key2-le-bbe100-2-td-lte-am-32gb.json new file mode 100644 index 00000000000..17e4253b76b --- /dev/null +++ b/data/smartphone/blackberry/2018/blackberry-key2-le-bbe100-2-td-lte-am-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "blackberry-key2-le-bbe100-2-td-lte-am-32gb", + "name": "BlackBerry KEY2 LE BBE100-2 TD-LTE AM 32GB", + "brand": "blackberry", + "soc": "snapdragon-636", + "release_date": "2018-09-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 4.48, + "resolution": "1080x1620", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Brazil , Canada , Chile , Ecuador , Mexico , USA", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/blackberry/2018/blackberry-key2-le-bbe100-4-global-dual-sim-td-lte-64gb.json b/data/smartphone/blackberry/2018/blackberry-key2-le-bbe100-4-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..d36b12001bf --- /dev/null +++ b/data/smartphone/blackberry/2018/blackberry-key2-le-bbe100-4-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "blackberry-key2-le-bbe100-4-global-dual-sim-td-lte-64gb", + "name": "BlackBerry KEY2 LE BBE100-4 Global Dual SIM TD-LTE 64GB", + "brand": "blackberry", + "soc": "snapdragon-636", + "release_date": "2018-09-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.48, + "resolution": "1080x1620", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Czech , France , Germany , Hungary , India , Ireland , Italy , Japan , Netherlands , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Slovenia , Switzerland , Taiwan , UAE , UK", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/blackberry/2018/blackberry-key2-le-bbe100-5-dual-sim-td-lte-na-64gb.json b/data/smartphone/blackberry/2018/blackberry-key2-le-bbe100-5-dual-sim-td-lte-na-64gb.json new file mode 100644 index 00000000000..cb17c0eccfd --- /dev/null +++ b/data/smartphone/blackberry/2018/blackberry-key2-le-bbe100-5-dual-sim-td-lte-na-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "blackberry-key2-le-bbe100-5-dual-sim-td-lte-na-64gb", + "name": "BlackBerry KEY2 LE BBE100-5 Dual SIM TD-LTE NA 64GB", + "brand": "blackberry", + "soc": "snapdragon-636", + "release_date": "2018-09-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.48, + "resolution": "1080x1620", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada , Ecuador , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/blackberry/2019/blackberry-key2-red-edition-bbf100-1-td-lte-eu-au-jp-128gb.json b/data/smartphone/blackberry/2019/blackberry-key2-red-edition-bbf100-1-td-lte-eu-au-jp-128gb.json new file mode 100644 index 00000000000..f981d605c73 --- /dev/null +++ b/data/smartphone/blackberry/2019/blackberry-key2-red-edition-bbf100-1-td-lte-eu-au-jp-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "blackberry-key2-red-edition-bbf100-1-td-lte-eu-au-jp-128gb", + "name": "BlackBerry KEY2 Red Edition BBF100-1 TD-LTE EU AU JP 128GB", + "brand": "blackberry", + "soc": "snapdragon-660", + "release_date": "2019-03-08", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 4.48, + "resolution": "1080x1620", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Cyprus , Czech , Denmark , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Japan , Netherlands , Norway , Poland , Portugal , Romania , Russia , Saudi Arabia , Singapore , Slovenia , South Africa , Spain , Sweden , Switzerland , Taiwan , UAE , UK", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/blackberry/2019/blackberry-key2-red-eition-bbf100-2-td-lte-am-128gb.json b/data/smartphone/blackberry/2019/blackberry-key2-red-eition-bbf100-2-td-lte-am-128gb.json new file mode 100644 index 00000000000..aeadc1b09a4 --- /dev/null +++ b/data/smartphone/blackberry/2019/blackberry-key2-red-eition-bbf100-2-td-lte-am-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "blackberry-key2-red-eition-bbf100-2-td-lte-am-128gb", + "name": "BlackBerry KEY2 Red Eition BBF100-2 TD-LTE AM 128GB", + "brand": "blackberry", + "soc": "snapdragon-660", + "release_date": "2019-04-18", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 4.48, + "resolution": "1080x1620", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/blackberry/2020/blackberry-key2-last-edition-bbf100-9-td-lte-jp-128gb.json b/data/smartphone/blackberry/2020/blackberry-key2-last-edition-bbf100-9-td-lte-jp-128gb.json new file mode 100644 index 00000000000..9d6c660d8c1 --- /dev/null +++ b/data/smartphone/blackberry/2020/blackberry-key2-last-edition-bbf100-9-td-lte-jp-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "blackberry-key2-last-edition-bbf100-9-td-lte-jp-128gb", + "name": "BlackBerry KEY2 Last Edition BBF100-9 TD-LTE JP 128GB", + "brand": "blackberry", + "soc": "snapdragon-660", + "release_date": "2020-07-01", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 4.48, + "resolution": "1080x1620", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/blu/2018/v0210ww-vivo-xl-3-plus-dual-sim-lte.json b/data/smartphone/blu/2018/v0210ww-vivo-xl-3-plus-dual-sim-lte.json new file mode 100644 index 00000000000..95287257016 --- /dev/null +++ b/data/smartphone/blu/2018/v0210ww-vivo-xl-3-plus-dual-sim-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "v0210ww-vivo-xl-3-plus-dual-sim-lte", + "name": "V0210WW Vivo XL 3 Plus Dual SIM LTE", + "brand": "blu", + "soc": "snapdragon-425", + "release_date": "2018-04-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.0, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/blu/2018/v0350ww-vivo-xl-4-dual-sim-lte.json b/data/smartphone/blu/2018/v0350ww-vivo-xl-4-dual-sim-lte.json new file mode 100644 index 00000000000..01d3f669392 --- /dev/null +++ b/data/smartphone/blu/2018/v0350ww-vivo-xl-4-dual-sim-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "v0350ww-vivo-xl-4-dual-sim-lte", + "name": "V0350WW Vivo XL 4 Dual SIM LTE", + "brand": "blu", + "soc": "helio-p22", + "release_date": "2018-12-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 12.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/blu/2018/vivo-xi-dual-sim-lte-a-v0311ww.json b/data/smartphone/blu/2018/vivo-xi-dual-sim-lte-a-v0311ww.json new file mode 100644 index 00000000000..ab0b1613194 --- /dev/null +++ b/data/smartphone/blu/2018/vivo-xi-dual-sim-lte-a-v0311ww.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-xi-dual-sim-lte-a-v0311ww", + "name": "Vivo XI+ Dual SIM LTE-A V0311WW", + "brand": "blu", + "soc": "helio-p60", + "release_date": "2018-08-01", + "ram_gb": 6.0, + "battery_mah": 3050, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB C reversible" + }, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/blu/2018/vivo-xi-dual-sim-lte-a-v0330ww.json b/data/smartphone/blu/2018/vivo-xi-dual-sim-lte-a-v0330ww.json new file mode 100644 index 00000000000..66a02896f61 --- /dev/null +++ b/data/smartphone/blu/2018/vivo-xi-dual-sim-lte-a-v0330ww.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-xi-dual-sim-lte-a-v0330ww", + "name": "Vivo XI Dual SIM LTE-A V0330WW", + "brand": "blu", + "soc": "helio-p22", + "release_date": "2018-09-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 187.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.9, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 285 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Canada , USA", + "market_regions": "Worldwide" +} diff --git a/data/smartphone/blu/2019/g0130ww-g9-dual-sim-lte.json b/data/smartphone/blu/2019/g0130ww-g9-dual-sim-lte.json new file mode 100644 index 00000000000..90b408827a2 --- /dev/null +++ b/data/smartphone/blu/2019/g0130ww-g9-dual-sim-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "g0130ww-g9-dual-sim-lte", + "name": "G0130WW G9 Dual SIM LTE", + "brand": "blu", + "soc": "helio-p22", + "release_date": "2019-05-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/blu/2019/g0230ww-g9-pro-dual-sim-lte.json b/data/smartphone/blu/2019/g0230ww-g9-pro-dual-sim-lte.json new file mode 100644 index 00000000000..88f6f4e4e9b --- /dev/null +++ b/data/smartphone/blu/2019/g0230ww-g9-pro-dual-sim-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "g0230ww-g9-pro-dual-sim-lte", + "name": "G0230WW G9 Pro Dual SIM LTE", + "brand": "blu", + "soc": "helio-p60", + "release_date": "2019-08-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 20.2 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/blu/2019/n0030ww-bold-n1-dual-sim-lte.json b/data/smartphone/blu/2019/n0030ww-bold-n1-dual-sim-lte.json new file mode 100644 index 00000000000..c719ed82234 --- /dev/null +++ b/data/smartphone/blu/2019/n0030ww-bold-n1-dual-sim-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "n0030ww-bold-n1-dual-sim-lte", + "name": "N0030WW BOLD N1 Dual SIM LTE", + "brand": "blu", + "soc": "helio-p70", + "release_date": "2019-09-01", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/blu/2020/g0250ww-g70-dual-sim-lte.json b/data/smartphone/blu/2020/g0250ww-g70-dual-sim-lte.json new file mode 100644 index 00000000000..c52cba5e03b --- /dev/null +++ b/data/smartphone/blu/2020/g0250ww-g70-dual-sim-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "g0250ww-g70-dual-sim-lte", + "name": "G0250WW G70 Dual SIM LTE", + "brand": "blu", + "soc": "helio-a25", + "release_date": "2020-01-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.4, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/blu/2020/g0290ww-g80-dual-sim-lte.json b/data/smartphone/blu/2020/g0290ww-g80-dual-sim-lte.json new file mode 100644 index 00000000000..5adb575a1b3 --- /dev/null +++ b/data/smartphone/blu/2020/g0290ww-g80-dual-sim-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "g0290ww-g80-dual-sim-lte", + "name": "G0290WW G80 Dual SIM LTE", + "brand": "blu", + "soc": "helio-p23", + "release_date": "2020-06-24", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/blu/2020/g0370ww-g90-dual-sim-lte.json b/data/smartphone/blu/2020/g0370ww-g90-dual-sim-lte.json new file mode 100644 index 00000000000..0d2234c5589 --- /dev/null +++ b/data/smartphone/blu/2020/g0370ww-g90-dual-sim-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "g0370ww-g90-dual-sim-lte", + "name": "G0370WW G90 Dual SIM LTE", + "brand": "blu", + "soc": "helio-a25", + "release_date": "2020-06-24", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/bq/2018/aquaris-x2-lte-dual-sim-32gb.json b/data/smartphone/bq/2018/aquaris-x2-lte-dual-sim-32gb.json new file mode 100644 index 00000000000..21eed7f7e4e --- /dev/null +++ b/data/smartphone/bq/2018/aquaris-x2-lte-dual-sim-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "aquaris-x2-lte-dual-sim-32gb", + "name": "Aquaris X2 LTE Dual SIM 32GB", + "brand": "bq", + "soc": "snapdragon-636", + "release_date": "2018-06-01", + "ram_gb": 3.0, + "battery_mah": 3100, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.65, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 427 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Germany , Italy , Portugal , Russia , Spain , UK", + "market_regions": "Eastern Europe , Europe" +} diff --git a/data/smartphone/bq/2018/aquaris-x2-lte-dual-sim-64gb.json b/data/smartphone/bq/2018/aquaris-x2-lte-dual-sim-64gb.json new file mode 100644 index 00000000000..7a8159ef867 --- /dev/null +++ b/data/smartphone/bq/2018/aquaris-x2-lte-dual-sim-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "aquaris-x2-lte-dual-sim-64gb", + "name": "Aquaris X2 LTE Dual SIM 64GB", + "brand": "bq", + "soc": "snapdragon-636", + "release_date": "2018-06-01", + "ram_gb": 4.0, + "battery_mah": 3100, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.65, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 427 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Germany , Italy , Portugal , Russia , Spain , UK", + "market_regions": "Eastern Europe , Europe" +} diff --git a/data/smartphone/bq/2018/aquaris-x2-pro-lte-dual-sim-128gb.json b/data/smartphone/bq/2018/aquaris-x2-pro-lte-dual-sim-128gb.json new file mode 100644 index 00000000000..d3442a9b639 --- /dev/null +++ b/data/smartphone/bq/2018/aquaris-x2-pro-lte-dual-sim-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "aquaris-x2-pro-lte-dual-sim-128gb", + "name": "Aquaris X2 Pro LTE Dual SIM 128GB", + "brand": "bq", + "soc": "snapdragon-660", + "release_date": "2018-06-01", + "ram_gb": 6.0, + "battery_mah": 3100, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.65, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 427 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Germany , Italy , Portugal , Russia , Spain , UK", + "market_regions": "Eastern Europe , Europe" +} diff --git a/data/smartphone/bq/2018/aquaris-x2-pro-lte-dual-sim-64gb.json b/data/smartphone/bq/2018/aquaris-x2-pro-lte-dual-sim-64gb.json new file mode 100644 index 00000000000..e356fd2d3b9 --- /dev/null +++ b/data/smartphone/bq/2018/aquaris-x2-pro-lte-dual-sim-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "aquaris-x2-pro-lte-dual-sim-64gb", + "name": "Aquaris X2 Pro LTE Dual SIM 64GB", + "brand": "bq", + "soc": "snapdragon-660", + "release_date": "2018-06-01", + "ram_gb": 4.0, + "battery_mah": 3100, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.65, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 427 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Germany , Italy , Portugal , Russia , Spain , UK", + "market_regions": "Eastern Europe , Europe" +} diff --git a/data/smartphone/caterpillar/2018/cat-s61-dual-sim-lte-us.json b/data/smartphone/caterpillar/2018/cat-s61-dual-sim-lte-us.json new file mode 100644 index 00000000000..4311874748e --- /dev/null +++ b/data/smartphone/caterpillar/2018/cat-s61-dual-sim-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "cat-s61-dual-sim-lte-us", + "name": "CAT S61 Dual SIM LTE US", + "brand": "caterpillar", + "soc": "snapdragon-630", + "release_date": "2018-04-01", + "ram_gb": 4.0, + "battery_mah": 4500, + "weight_g": 259.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.2, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/caterpillar/2018/cat-s61-dual-sim-td-lte-apac.json b/data/smartphone/caterpillar/2018/cat-s61-dual-sim-td-lte-apac.json new file mode 100644 index 00000000000..195465e0ad6 --- /dev/null +++ b/data/smartphone/caterpillar/2018/cat-s61-dual-sim-td-lte-apac.json @@ -0,0 +1,41 @@ +{ + "slug": "cat-s61-dual-sim-td-lte-apac", + "name": "CAT S61 Dual SIM TD-LTE APAC", + "brand": "caterpillar", + "soc": "snapdragon-630", + "release_date": "2018-08-01", + "ram_gb": 4.0, + "battery_mah": 4500, + "weight_g": 259.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.2, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "HK , Japan , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/caterpillar/2018/cat-s61-global-dual-sim-td-lte.json b/data/smartphone/caterpillar/2018/cat-s61-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..ec5e38babdd --- /dev/null +++ b/data/smartphone/caterpillar/2018/cat-s61-global-dual-sim-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "cat-s61-global-dual-sim-td-lte", + "name": "CAT S61 Global Dual SIM TD-LTE", + "brand": "caterpillar", + "soc": "snapdragon-630", + "release_date": "2018-05-01", + "ram_gb": 4.0, + "battery_mah": 4500, + "weight_g": 259.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.2, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Czech , Denmark , France , Germany , Ireland , Norway , Portugal , Russia , South Africa , Sweden , UK", + "market_regions": "Africa , Eastern Europe , Europe , South America , Western Europe" +} diff --git a/data/smartphone/caterpillar/2019/cat-s52-global-dual-sim-td-lte.json b/data/smartphone/caterpillar/2019/cat-s52-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..d301eeb67b1 --- /dev/null +++ b/data/smartphone/caterpillar/2019/cat-s52-global-dual-sim-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "cat-s52-global-dual-sim-td-lte", + "name": "Cat S52 Global Dual SIM TD-LTE", + "brand": "caterpillar", + "soc": "helio-p35", + "release_date": "2019-11-12", + "ram_gb": 4.0, + "battery_mah": 3100, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.65, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 285 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Austria , Belarus , Belgium , Bulgaria , Cyprus , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Ireland , Italy , Kazakhstan , Latvia , Lithuania , Malaysia , Netherlands , Pakistan , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Slovenia , Spain , Sweden , Switzerland , Thailand , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/caterpillar/2020/cat-s62-pro-dual-sim-lte-a-am.json b/data/smartphone/caterpillar/2020/cat-s62-pro-dual-sim-lte-a-am.json new file mode 100644 index 00000000000..069a7543d50 --- /dev/null +++ b/data/smartphone/caterpillar/2020/cat-s62-pro-dual-sim-lte-a-am.json @@ -0,0 +1,43 @@ +{ + "slug": "cat-s62-pro-dual-sim-lte-a-am", + "name": "CAT S62 Pro Dual SIM LTE-A AM", + "brand": "caterpillar", + "soc": "snapdragon-660", + "release_date": "2020-08-17", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 248.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 649, + "market_countries": "Argentina , Canada , Chile , Colombia , Costa Rica , USA", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/caterpillar/2020/cat-s62-pro-global-dual-sim-td-lte.json b/data/smartphone/caterpillar/2020/cat-s62-pro-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..072a744d629 --- /dev/null +++ b/data/smartphone/caterpillar/2020/cat-s62-pro-global-dual-sim-td-lte.json @@ -0,0 +1,43 @@ +{ + "slug": "cat-s62-pro-global-dual-sim-td-lte", + "name": "CAT S62 Pro Global Dual SIM TD-LTE", + "brand": "caterpillar", + "soc": "snapdragon-660", + "release_date": "2020-08-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 248.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 499, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Finland , France , Greece , Germany , HK , Hungary , Ireland , Italy , Netherlands , Norway , NZ , Poland , Portugal , Russia , Slovakia , South Africa , Sweden , UK", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/caterpillar/2020/cat-s62-pro-lte-a-am.json b/data/smartphone/caterpillar/2020/cat-s62-pro-lte-a-am.json new file mode 100644 index 00000000000..d5bc422c937 --- /dev/null +++ b/data/smartphone/caterpillar/2020/cat-s62-pro-lte-a-am.json @@ -0,0 +1,43 @@ +{ + "slug": "cat-s62-pro-lte-a-am", + "name": "CAT S62 Pro LTE-A AM", + "brand": "caterpillar", + "soc": "snapdragon-660", + "release_date": "2020-08-17", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 248.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 649, + "market_countries": "Argentina , Canada , Chile , Colombia , Costa Rica , USA", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/caterpillar/2021/cat-s62-td-lte-am.json b/data/smartphone/caterpillar/2021/cat-s62-td-lte-am.json new file mode 100644 index 00000000000..0ae1a583cc4 --- /dev/null +++ b/data/smartphone/caterpillar/2021/cat-s62-td-lte-am.json @@ -0,0 +1,43 @@ +{ + "slug": "cat-s62-td-lte-am", + "name": "CAT S62 TD-LTE- AM", + "brand": "caterpillar", + "soc": "snapdragon-660", + "release_date": "2021-07-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 260.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 499, + "market_countries": "Argentina , Canada , Chile , Colombia , Costa Rica , USA", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/coolpad/2017/canvas-4g-lte-us-3636a.json b/data/smartphone/coolpad/2017/canvas-4g-lte-us-3636a.json new file mode 100644 index 00000000000..5b16a3a8bc5 --- /dev/null +++ b/data/smartphone/coolpad/2017/canvas-4g-lte-us-3636a.json @@ -0,0 +1,41 @@ +{ + "slug": "canvas-4g-lte-us-3636a", + "name": "Canvas 4G LTE US 3636A", + "brand": "coolpad", + "soc": "snapdragon-425", + "release_date": "2017-07-01", + "ram_gb": 2.0, + "battery_mah": 2500, + "weight_g": 167.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.47, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/coolpad/2017/defiant-3632a-lte-us.json b/data/smartphone/coolpad/2017/defiant-3632a-lte-us.json new file mode 100644 index 00000000000..4e5592aeda9 --- /dev/null +++ b/data/smartphone/coolpad/2017/defiant-3632a-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "defiant-3632a-lte-us", + "name": "Defiant 3632A LTE US", + "brand": "coolpad", + "soc": "snapdragon-425", + "release_date": "2017-06-01", + "ram_gb": 1.0, + "battery_mah": 2450, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.0, + "resolution": "480x854", + "type": "Color IPS TFT LCD display", + "ppi": 196 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/coolpad/2018/illumina-lte-us-3310a-legacy-go.json b/data/smartphone/coolpad/2018/illumina-lte-us-3310a-legacy-go.json new file mode 100644 index 00000000000..31c4a9cd199 --- /dev/null +++ b/data/smartphone/coolpad/2018/illumina-lte-us-3310a-legacy-go.json @@ -0,0 +1,41 @@ +{ + "slug": "illumina-lte-us-3310a-legacy-go", + "name": "Illumina LTE US 3310A / Legacy Go", + "brand": "coolpad", + "soc": "snapdragon-210", + "release_date": "2018-11-01", + "ram_gb": 1.0, + "battery_mah": 2150, + "weight_g": 140.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.0, + "resolution": "480x854", + "type": "Color IPS TFT LCD display", + "ppi": 196 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/coolpad/2018/note-6-td-lte-dual-sim-32gb.json b/data/smartphone/coolpad/2018/note-6-td-lte-dual-sim-32gb.json new file mode 100644 index 00000000000..358df1fb7e9 --- /dev/null +++ b/data/smartphone/coolpad/2018/note-6-td-lte-dual-sim-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "note-6-td-lte-dual-sim-32gb", + "name": "Note 6 TD-LTE Dual SIM 32GB", + "brand": "coolpad", + "soc": "snapdragon-435", + "release_date": "2018-05-01", + "ram_gb": 3.0, + "battery_mah": 4070, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/coolpad/2018/note-6-td-lte-dual-sim-64gb.json b/data/smartphone/coolpad/2018/note-6-td-lte-dual-sim-64gb.json new file mode 100644 index 00000000000..a9697f2a895 --- /dev/null +++ b/data/smartphone/coolpad/2018/note-6-td-lte-dual-sim-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "note-6-td-lte-dual-sim-64gb", + "name": "Note 6 TD-LTE Dual SIM 64GB", + "brand": "coolpad", + "soc": "snapdragon-435", + "release_date": "2018-05-01", + "ram_gb": 4.0, + "battery_mah": 4070, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/coolpad/2019/cool-5-dual-sim-td-lte-1826-i01.json b/data/smartphone/coolpad/2019/cool-5-dual-sim-td-lte-1826-i01.json new file mode 100644 index 00000000000..ed05fdc9dcf --- /dev/null +++ b/data/smartphone/coolpad/2019/cool-5-dual-sim-td-lte-1826-i01.json @@ -0,0 +1,41 @@ +{ + "slug": "cool-5-dual-sim-td-lte-1826-i01", + "name": "Cool 5 Dual SIM TD-LTE 1826-I01", + "brand": "coolpad", + "soc": "helio-p22", + "release_date": "2019-10-03", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Japan , Russia", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia" +} diff --git a/data/smartphone/coolpad/2019/legacy-lte-a-us-3705a.json b/data/smartphone/coolpad/2019/legacy-lte-a-us-3705a.json new file mode 100644 index 00000000000..3c3d74b7eb1 --- /dev/null +++ b/data/smartphone/coolpad/2019/legacy-lte-a-us-3705a.json @@ -0,0 +1,41 @@ +{ + "slug": "legacy-lte-a-us-3705a", + "name": "Legacy LTE-A US 3705A", + "brand": "coolpad", + "soc": "snapdragon-450", + "release_date": "2019-05-14", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 169.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.36, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 380 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/coolpad/2019/legacy-s-td-lte-us-3648a.json b/data/smartphone/coolpad/2019/legacy-s-td-lte-us-3648a.json new file mode 100644 index 00000000000..1470d621357 --- /dev/null +++ b/data/smartphone/coolpad/2019/legacy-s-td-lte-us-3648a.json @@ -0,0 +1,41 @@ +{ + "slug": "legacy-s-td-lte-us-3648a", + "name": "Legacy S TD-LTE US 3648A", + "brand": "coolpad", + "soc": "helio-a22", + "release_date": "2019-02-01", + "ram_gb": 2.0, + "battery_mah": 2450, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/coolpad/2019/legacy-td-lte-us-3705as.json b/data/smartphone/coolpad/2019/legacy-td-lte-us-3705as.json new file mode 100644 index 00000000000..d0fa36a0e0d --- /dev/null +++ b/data/smartphone/coolpad/2019/legacy-td-lte-us-3705as.json @@ -0,0 +1,41 @@ +{ + "slug": "legacy-td-lte-us-3705as", + "name": "Legacy TD-LTE US 3705AS", + "brand": "coolpad", + "soc": "snapdragon-450", + "release_date": "2019-06-18", + "ram_gb": 3.0, + "battery_mah": 3980, + "weight_g": 169.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.36, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 380 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/coolpad/2020/n10-pro-dual-sim-td-lte-cn-128gb-sac-a0.json b/data/smartphone/coolpad/2020/n10-pro-dual-sim-td-lte-cn-128gb-sac-a0.json new file mode 100644 index 00000000000..be8e8a7bd8b --- /dev/null +++ b/data/smartphone/coolpad/2020/n10-pro-dual-sim-td-lte-cn-128gb-sac-a0.json @@ -0,0 +1,41 @@ +{ + "slug": "n10-pro-dual-sim-td-lte-cn-128gb-sac-a0", + "name": "N10 Pro Dual SIM TD-LTE CN 128GB SAC-A0", + "brand": "coolpad", + "soc": "snapdragon-710", + "release_date": "2020-01-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 168.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/coolpad/2021/cool-20-premium-edition-dual-sim-td-lte-cn-128gb.json b/data/smartphone/coolpad/2021/cool-20-premium-edition-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..b38689189cd --- /dev/null +++ b/data/smartphone/coolpad/2021/cool-20-premium-edition-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "cool-20-premium-edition-dual-sim-td-lte-cn-128gb", + "name": "Cool 20 Premium Edition Dual SIM TD-LTE CN 128GB", + "brand": "coolpad", + "soc": "helio-g80", + "release_date": "2021-06-08", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 199.6, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 23, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1099, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/coolpad/2021/cool-20-standard-edition-dual-sim-td-lte-cn-128gb.json b/data/smartphone/coolpad/2021/cool-20-standard-edition-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..b7ce20ba4e0 --- /dev/null +++ b/data/smartphone/coolpad/2021/cool-20-standard-edition-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "cool-20-standard-edition-dual-sim-td-lte-cn-128gb", + "name": "Cool 20 Standard Edition Dual SIM TD-LTE CN 128GB", + "brand": "coolpad", + "soc": "helio-g80", + "release_date": "2021-06-08", + "ram_gb": 4.0, + "battery_mah": 4500, + "weight_g": 199.6, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 23, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 899, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/coolpad/2021/cool-20-standard-edition-dual-sim-td-lte-cn-64gb.json b/data/smartphone/coolpad/2021/cool-20-standard-edition-dual-sim-td-lte-cn-64gb.json new file mode 100644 index 00000000000..bf7c6718ce0 --- /dev/null +++ b/data/smartphone/coolpad/2021/cool-20-standard-edition-dual-sim-td-lte-cn-64gb.json @@ -0,0 +1,44 @@ +{ + "slug": "cool-20-standard-edition-dual-sim-td-lte-cn-64gb", + "name": "Cool 20 Standard Edition Dual SIM TD-LTE CN 64GB", + "brand": "coolpad", + "soc": "helio-g80", + "release_date": "2021-06-08", + "ram_gb": 4.0, + "battery_mah": 4500, + "weight_g": 199.6, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 23, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 699, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/coolpad/2021/rakuten-big-s-5g-uw-td-lte-jp-3917jr.json b/data/smartphone/coolpad/2021/rakuten-big-s-5g-uw-td-lte-jp-3917jr.json new file mode 100644 index 00000000000..e8541a3f228 --- /dev/null +++ b/data/smartphone/coolpad/2021/rakuten-big-s-5g-uw-td-lte-jp-3917jr.json @@ -0,0 +1,42 @@ +{ + "slug": "rakuten-big-s-5g-uw-td-lte-jp-3917jr", + "name": "Rakuten BIG s 5G UW TD-LTE JP 3917JR", + "brand": "coolpad", + "soc": "snapdragon-765", + "release_date": "2021-04-21", + "ram_gb": 6.0, + "battery_mah": 3900, + "weight_g": 204.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/doogee/2018/bl9000-dual-sim-lte-emea.json b/data/smartphone/doogee/2018/bl9000-dual-sim-lte-emea.json new file mode 100644 index 00000000000..a2f9be45e2f --- /dev/null +++ b/data/smartphone/doogee/2018/bl9000-dual-sim-lte-emea.json @@ -0,0 +1,42 @@ +{ + "slug": "bl9000-dual-sim-lte-emea", + "name": "BL9000 Dual SIM LTE EMEA", + "brand": "doogee", + "soc": "helio-p23", + "release_date": "2018-05-28", + "ram_gb": 6.0, + "battery_mah": 9000, + "weight_g": 275.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Austria , Belarus , Belgium , Bulgaria , Canada , China , Croatia , Cyprus , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Ireland , Israel , Italy , Japan , Jordan , Kazakhstan , Kuwait , Latvia , Lithuania , Netherlands , Norway , Pakistan , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Sweden , Switzerland , Turkey , UAE , UK , Ukraine , USA", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , Western Europe" +} diff --git a/data/smartphone/doogee/2018/homtom-zoji-z9-dual-sim-td-lte-p270.json b/data/smartphone/doogee/2018/homtom-zoji-z9-dual-sim-td-lte-p270.json new file mode 100644 index 00000000000..a3b6da57c54 --- /dev/null +++ b/data/smartphone/doogee/2018/homtom-zoji-z9-dual-sim-td-lte-p270.json @@ -0,0 +1,41 @@ +{ + "slug": "homtom-zoji-z9-dual-sim-td-lte-p270", + "name": "HOMTOM Zoji Z9 Dual SIM TD-LTE P270", + "brand": "doogee", + "soc": "helio-p23", + "release_date": "2018-07-02", + "ram_gb": 6.0, + "battery_mah": 5500, + "weight_g": 280.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB C reversible" + }, + "market_countries": "China , Czech , HK , Netherlands , Russia , UK", + "market_regions": "Africa , Asia , Europe , Worldwide" +} diff --git a/data/smartphone/doogee/2018/s70-global-dual-sim-td-lte.json b/data/smartphone/doogee/2018/s70-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..76041edc686 --- /dev/null +++ b/data/smartphone/doogee/2018/s70-global-dual-sim-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "s70-global-dual-sim-td-lte", + "name": "S70 Global Dual SIM TD-LTE", + "brand": "doogee", + "soc": "helio-p23", + "release_date": "2018-09-01", + "ram_gb": 6.0, + "battery_mah": 5500, + "weight_g": 278.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 24, + "connectivity": { + "bluetooth": "Yes", + "usb": "Yes" + }, + "market_countries": "Armenia , Austria , Belarus , Belgium , Bulgaria , China , Cyprus , Croatia , Czech , Denmark , Estonia , France , Greece , Germany , HK , Hungary , Ireland , Kazakhstan , Latvia , Lithuania , Netherlands , Norway , Pakistan , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Sweden , Switzerland , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/doogee/2018/s70-lite-global-dual-sim-td-lte.json b/data/smartphone/doogee/2018/s70-lite-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..8908b14bcfd --- /dev/null +++ b/data/smartphone/doogee/2018/s70-lite-global-dual-sim-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "s70-lite-global-dual-sim-td-lte", + "name": "S70 Lite Global Dual SIM TD-LTE", + "brand": "doogee", + "soc": "helio-p23", + "release_date": "2018-10-01", + "ram_gb": 4.0, + "battery_mah": 5500, + "weight_g": 278.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 24, + "connectivity": { + "bluetooth": "Yes", + "usb": "Yes" + }, + "market_countries": "Armenia , Belarus , Belgium , China , Estonia , France , Germany , HK , Ireland , Kazakhstan , Latvia , Lithuania , Netherlands , Pakistan , Poland , Portugal , Romania , Russia , Serbia , Spain , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/doogee/2018/s80-global-dual-sim-td-lte.json b/data/smartphone/doogee/2018/s80-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..da73d1ba091 --- /dev/null +++ b/data/smartphone/doogee/2018/s80-global-dual-sim-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "s80-global-dual-sim-td-lte", + "name": "S80 Global Dual SIM TD-LTE", + "brand": "doogee", + "soc": "helio-p23", + "release_date": "2018-11-01", + "ram_gb": 6.0, + "battery_mah": 10080, + "weight_g": 398.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 24, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "China , Czech , HK , Netherlands , Russia , UK", + "market_regions": "Africa , Asia , Europe , Worldwide" +} diff --git a/data/smartphone/doogee/2018/s80-lite-global-dual-sim-td-lte.json b/data/smartphone/doogee/2018/s80-lite-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..925e713a12f --- /dev/null +++ b/data/smartphone/doogee/2018/s80-lite-global-dual-sim-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "s80-lite-global-dual-sim-td-lte", + "name": "S80 Lite Global Dual SIM TD-LTE", + "brand": "doogee", + "soc": "helio-p23", + "release_date": "2018-12-01", + "ram_gb": 4.0, + "battery_mah": 10080, + "weight_g": 398.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 24, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "China , Czech , HK , Netherlands , Russia , UK", + "market_regions": "Africa , Asia , Europe , Worldwide" +} diff --git a/data/smartphone/doogee/2019/n100-dual-sim-lte-a-emea.json b/data/smartphone/doogee/2019/n100-dual-sim-lte-a-emea.json new file mode 100644 index 00000000000..44576fc3806 --- /dev/null +++ b/data/smartphone/doogee/2019/n100-dual-sim-lte-a-emea.json @@ -0,0 +1,42 @@ +{ + "slug": "n100-dual-sim-lte-a-emea", + "name": "N100 Dual SIM LTE-A EMEA", + "brand": "doogee", + "soc": "helio-p23", + "release_date": "2019-11-01", + "ram_gb": 4.0, + "battery_mah": 10000, + "weight_g": 275.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 21.5 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 24, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Austria , Belarus , Belgium , Bulgaria , Canada , China , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Ireland , Israel , Italy , Japan , Jordan , Kazakhstan , Kuwait , Latvia , Lithuania , Netherlands , Norway , Pakistan , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Singapore , Slovenia , Spain , Sweden , Switzerland , Turkey , UAE , UK , Ukraine , USA", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/doogee/2019/n20-dual-sim-lte-a-emea.json b/data/smartphone/doogee/2019/n20-dual-sim-lte-a-emea.json new file mode 100644 index 00000000000..cc02ab05e0a --- /dev/null +++ b/data/smartphone/doogee/2019/n20-dual-sim-lte-a-emea.json @@ -0,0 +1,42 @@ +{ + "slug": "n20-dual-sim-lte-a-emea", + "name": "N20 Dual SIM LTE-A EMEA", + "brand": "doogee", + "soc": "helio-p23", + "release_date": "2019-11-01", + "ram_gb": 4.0, + "battery_mah": 4350, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Yes", + "usb": "Yes" + }, + "market_countries": "Armenia , Austria , Belarus , Belgium , Bulgaria , Canada , China , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Ireland , Israel , Italy , Japan , Jordan , Kazakhstan , Kuwait , Latvia , Lithuania , Netherlands , Norway , Pakistan , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Singapore , Slovenia , Spain , Sweden , Switzerland , Turkey , UAE , UK , Ukraine , USA", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/doogee/2019/s90-global-dual-sim-td-lte.json b/data/smartphone/doogee/2019/s90-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..5af0fc2791d --- /dev/null +++ b/data/smartphone/doogee/2019/s90-global-dual-sim-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "s90-global-dual-sim-td-lte", + "name": "S90 Global Dual SIM TD-LTE", + "brand": "doogee", + "soc": "helio-p60", + "release_date": "2019-02-01", + "ram_gb": 6.0, + "battery_mah": 5050, + "weight_g": 300.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Austria , Belgium , China , Cyprus , Czech , Denmark , Estonia , France , Greece , Germany , HK , Hungary , Italy , Kazakhstan , Latvia , Lithuania , Netherlands , Norway , Pakistan , Poland , Portugal , Romania , Russia , Serbia , Spain , Sweden , Switzerland , UK", + "market_regions": "Asia , Europe" +} diff --git a/data/smartphone/doogee/2019/s90-pro-global-dual-sim-td-lte.json b/data/smartphone/doogee/2019/s90-pro-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..3f52669a705 --- /dev/null +++ b/data/smartphone/doogee/2019/s90-pro-global-dual-sim-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "s90-pro-global-dual-sim-td-lte", + "name": "S90 Pro Global Dual SIM TD-LTE", + "brand": "doogee", + "soc": "helio-p70", + "release_date": "2019-07-16", + "ram_gb": 6.0, + "battery_mah": 5050, + "weight_g": 300.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Austria , Belarus , Belgium , Bulgaria , China , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Ireland , Italy , Kazakhstan , Latvia , Lithuania , Netherlands , Norway , Pakistan , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Spain , Sweden , Switzerland , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/doogee/2019/s90c-global-dual-sim-td-lte.json b/data/smartphone/doogee/2019/s90c-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..5878104a6be --- /dev/null +++ b/data/smartphone/doogee/2019/s90c-global-dual-sim-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "s90c-global-dual-sim-td-lte", + "name": "S90C Global Dual SIM TD-LTE", + "brand": "doogee", + "soc": "helio-p70", + "release_date": "2019-11-01", + "ram_gb": 4.0, + "battery_mah": 5050, + "weight_g": 285.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Austria , Belarus , Belgium , Brazil , Bulgaria , Canada , China , Cyprus , Czech , Denmark , Estonia , Finland , France , Germany , Greece , HK , Ireland , Italy , Japan , Kazakhstan , Kenya , Latvia , Lithuania , Mexico , Netherlands , Norway , Pakistan , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Spain , Sweden , Switzerland , UAE , UK , Ukraine , USA", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , North America , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/doogee/2020/s95-pro-global-dual-sim-td-lte.json b/data/smartphone/doogee/2020/s95-pro-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..4e0a474cfc4 --- /dev/null +++ b/data/smartphone/doogee/2020/s95-pro-global-dual-sim-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "s95-pro-global-dual-sim-td-lte", + "name": "S95 Pro Global Dual SIM TD-LTE", + "brand": "doogee", + "soc": "helio-p90", + "release_date": "2020-01-01", + "ram_gb": 8.0, + "battery_mah": 5150, + "weight_g": 285.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 24, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Austria , Belarus , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Italy , Japan , Kazakhstan , Latvia , Lithuania , Netherlands , Norway , NZ , Pakistan , Poland , Portugal , Romania , Russia , Slovakia , Singapore , Spain , Sweden , Switzerland , Turkey , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/fairphone/2017/2-2017-dual-sim-lte.json b/data/smartphone/fairphone/2017/2-2017-dual-sim-lte.json new file mode 100644 index 00000000000..9cbb0745528 --- /dev/null +++ b/data/smartphone/fairphone/2017/2-2017-dual-sim-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "2-2017-dual-sim-lte", + "name": "2 2017 Dual SIM LTE", + "brand": "fairphone", + "soc": "snapdragon-801", + "release_date": "2017-03-23", + "ram_gb": 2.0, + "battery_mah": 2420, + "weight_g": 148.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "6.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.0, + "resolution": "1080x1920", + "type": "AM-OLED display", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Netherlands", + "market_regions": "Europe , Western Europe" +} diff --git a/data/smartphone/fairphone/2019/3-dual-sim-lte-fp3.json b/data/smartphone/fairphone/2019/3-dual-sim-lte-fp3.json new file mode 100644 index 00000000000..87a74bacb06 --- /dev/null +++ b/data/smartphone/fairphone/2019/3-dual-sim-lte-fp3.json @@ -0,0 +1,42 @@ +{ + "slug": "3-dual-sim-lte-fp3", + "name": "3 Dual SIM LTE FP3", + "brand": "fairphone", + "soc": "snapdragon-632", + "release_date": "2019-08-27", + "ram_gb": 4.0, + "battery_mah": 3060, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.64, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 428 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 419, + "market_countries": "Australia , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Slovakia , Slovenia , Spain , Sweden , Switzerland , UK", + "market_regions": "Europe , Western Europe" +} diff --git a/data/smartphone/fujitsu/2018/arrows-me-f-04k-lte.json b/data/smartphone/fujitsu/2018/arrows-me-f-04k-lte.json new file mode 100644 index 00000000000..ef35c8d1e68 --- /dev/null +++ b/data/smartphone/fujitsu/2018/arrows-me-f-04k-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "arrows-me-f-04k-lte", + "name": "Arrows me F-04K LTE", + "brand": "fujitsu", + "soc": "snapdragon-450", + "release_date": "2018-05-01", + "ram_gb": 3.0, + "battery_mah": 2580, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/fujitsu/2019/arrows-be3-f-02l-td-lte-jp.json b/data/smartphone/fujitsu/2019/arrows-be3-f-02l-td-lte-jp.json new file mode 100644 index 00000000000..86a829f83d2 --- /dev/null +++ b/data/smartphone/fujitsu/2019/arrows-be3-f-02l-td-lte-jp.json @@ -0,0 +1,41 @@ +{ + "slug": "arrows-be3-f-02l-td-lte-jp", + "name": "Arrows Be3 F-02L TD-LTE JP", + "brand": "fujitsu", + "soc": "snapdragon-450", + "release_date": "2019-06-07", + "ram_gb": 3.0, + "battery_mah": 2780, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.6, + "resolution": "1080x2220", + "type": "Color IPS TFT LCD display", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/fujitsu/2019/arrows-j-td-lte-jp-901fj.json b/data/smartphone/fujitsu/2019/arrows-j-td-lte-jp-901fj.json new file mode 100644 index 00000000000..2978423835d --- /dev/null +++ b/data/smartphone/fujitsu/2019/arrows-j-td-lte-jp-901fj.json @@ -0,0 +1,41 @@ +{ + "slug": "arrows-j-td-lte-jp-901fj", + "name": "Arrows J TD-LTE JP 901FJ", + "brand": "fujitsu", + "soc": "snapdragon-450", + "release_date": "2019-11-01", + "ram_gb": 3.0, + "battery_mah": 2880, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.8, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/fujitsu/2019/arrows-m05-td-lte-jp.json b/data/smartphone/fujitsu/2019/arrows-m05-td-lte-jp.json new file mode 100644 index 00000000000..66f723dd7aa --- /dev/null +++ b/data/smartphone/fujitsu/2019/arrows-m05-td-lte-jp.json @@ -0,0 +1,41 @@ +{ + "slug": "arrows-m05-td-lte-jp", + "name": "Arrows M05 TD-LTE JP", + "brand": "fujitsu", + "soc": "snapdragon-450", + "release_date": "2019-12-18", + "ram_gb": 3.0, + "battery_mah": 2880, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.8, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/fujitsu/2019/arrows-rx-td-lte-jp.json b/data/smartphone/fujitsu/2019/arrows-rx-td-lte-jp.json new file mode 100644 index 00000000000..a1ac31d38e6 --- /dev/null +++ b/data/smartphone/fujitsu/2019/arrows-rx-td-lte-jp.json @@ -0,0 +1,41 @@ +{ + "slug": "arrows-rx-td-lte-jp", + "name": "Arrows RX TD-LTE JP", + "brand": "fujitsu", + "soc": "snapdragon-450", + "release_date": "2019-10-01", + "ram_gb": 3.0, + "battery_mah": 2880, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.8, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/fujitsu/2019/raku-raku-me-f-01l-lte.json b/data/smartphone/fujitsu/2019/raku-raku-me-f-01l-lte.json new file mode 100644 index 00000000000..7d910043650 --- /dev/null +++ b/data/smartphone/fujitsu/2019/raku-raku-me-f-01l-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "raku-raku-me-f-01l-lte", + "name": "Raku-Raku me F-01L LTE", + "brand": "fujitsu", + "soc": "snapdragon-450", + "release_date": "2019-03-01", + "ram_gb": 3.0, + "battery_mah": 2110, + "weight_g": 140.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 4.7, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 312 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/fujitsu/2020/arrows-5g-f-51a-td-lte-jp.json b/data/smartphone/fujitsu/2020/arrows-5g-f-51a-td-lte-jp.json new file mode 100644 index 00000000000..58eaa0aa0e7 --- /dev/null +++ b/data/smartphone/fujitsu/2020/arrows-5g-f-51a-td-lte-jp.json @@ -0,0 +1,41 @@ +{ + "slug": "arrows-5g-f-51a-td-lte-jp", + "name": "Arrows 5G F-51A TD-LTE JP", + "brand": "fujitsu", + "soc": "snapdragon-865", + "release_date": "2020-06-01", + "ram_gb": 8.0, + "battery_mah": 4070, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 385 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/fujitsu/2020/arrows-be4-f-41a-td-lte-jp.json b/data/smartphone/fujitsu/2020/arrows-be4-f-41a-td-lte-jp.json new file mode 100644 index 00000000000..c7737e84211 --- /dev/null +++ b/data/smartphone/fujitsu/2020/arrows-be4-f-41a-td-lte-jp.json @@ -0,0 +1,41 @@ +{ + "slug": "arrows-be4-f-41a-td-lte-jp", + "name": "Arrows Be4 F-41A TD-LTE JP", + "brand": "fujitsu", + "soc": "snapdragon-450", + "release_date": "2020-06-01", + "ram_gb": 3.0, + "battery_mah": 2780, + "weight_g": 140.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.6, + "resolution": "1080x2220", + "type": "Color IPS TFT LCD display", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/fujitsu/2020/arrows-bz01-td-lte-jp.json b/data/smartphone/fujitsu/2020/arrows-bz01-td-lte-jp.json new file mode 100644 index 00000000000..804da14b81a --- /dev/null +++ b/data/smartphone/fujitsu/2020/arrows-bz01-td-lte-jp.json @@ -0,0 +1,41 @@ +{ + "slug": "arrows-bz01-td-lte-jp", + "name": "Arrows BZ01 TD-LTE JP", + "brand": "fujitsu", + "soc": "snapdragon-450", + "release_date": "2020-04-01", + "ram_gb": 3.0, + "battery_mah": 2780, + "weight_g": 140.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.6, + "resolution": "1080x2220", + "type": "Color IPS TFT LCD display", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/fujitsu/2020/arrows-nx9-5g-f-52a-td-lte-jp.json b/data/smartphone/fujitsu/2020/arrows-nx9-5g-f-52a-td-lte-jp.json new file mode 100644 index 00000000000..7a8f284f414 --- /dev/null +++ b/data/smartphone/fujitsu/2020/arrows-nx9-5g-f-52a-td-lte-jp.json @@ -0,0 +1,41 @@ +{ + "slug": "arrows-nx9-5g-f-52a-td-lte-jp", + "name": "Arrows NX9 5G F-52A TD-LTE JP", + "brand": "fujitsu", + "soc": "snapdragon-765", + "release_date": "2020-12-01", + "ram_gb": 8.0, + "battery_mah": 3600, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.4 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/fujitsu/2021/arrows-be4-plus-f-41b-td-lte-jp.json b/data/smartphone/fujitsu/2021/arrows-be4-plus-f-41b-td-lte-jp.json new file mode 100644 index 00000000000..91634a4e80d --- /dev/null +++ b/data/smartphone/fujitsu/2021/arrows-be4-plus-f-41b-td-lte-jp.json @@ -0,0 +1,41 @@ +{ + "slug": "arrows-be4-plus-f-41b-td-lte-jp", + "name": "Arrows Be4 Plus F-41B TD-LTE JP", + "brand": "fujitsu", + "soc": "snapdragon-460", + "release_date": "2021-05-28", + "ram_gb": 4.0, + "battery_mah": 3600, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.6, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/fujitsu/2021/arrows-bz02-dual-sim-lte-a-jp.json b/data/smartphone/fujitsu/2021/arrows-bz02-dual-sim-lte-a-jp.json new file mode 100644 index 00000000000..e56cd2969dc --- /dev/null +++ b/data/smartphone/fujitsu/2021/arrows-bz02-dual-sim-lte-a-jp.json @@ -0,0 +1,41 @@ +{ + "slug": "arrows-bz02-dual-sim-lte-a-jp", + "name": "Arrows BZ02 Dual SIM LTE-A JP", + "brand": "fujitsu", + "soc": "snapdragon-460", + "release_date": "2021-08-01", + "ram_gb": 4.0, + "battery_mah": 3600, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.6, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/fujitsu/2021/arrows-we-td-lte-jp-f-51b.json b/data/smartphone/fujitsu/2021/arrows-we-td-lte-jp-f-51b.json new file mode 100644 index 00000000000..3368bc4b081 --- /dev/null +++ b/data/smartphone/fujitsu/2021/arrows-we-td-lte-jp-f-51b.json @@ -0,0 +1,41 @@ +{ + "slug": "arrows-we-td-lte-jp-f-51b", + "name": "Arrows We TD-LTE JP F-51B", + "brand": "fujitsu", + "soc": "snapdragon-480", + "release_date": "2021-12-03", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/fujitsu/2021/arrows-we-td-lte-jp-fcg01.json b/data/smartphone/fujitsu/2021/arrows-we-td-lte-jp-fcg01.json new file mode 100644 index 00000000000..2c5c3164d35 --- /dev/null +++ b/data/smartphone/fujitsu/2021/arrows-we-td-lte-jp-fcg01.json @@ -0,0 +1,41 @@ +{ + "slug": "arrows-we-td-lte-jp-fcg01", + "name": "Arrows We TD-LTE JP FCG01", + "brand": "fujitsu", + "soc": "snapdragon-480", + "release_date": "2021-12-03", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/fujitsu/2022/raku-raku-easy-smartphone-td-lte-jp-f-52b.json b/data/smartphone/fujitsu/2022/raku-raku-easy-smartphone-td-lte-jp-f-52b.json new file mode 100644 index 00000000000..eb565019204 --- /dev/null +++ b/data/smartphone/fujitsu/2022/raku-raku-easy-smartphone-td-lte-jp-f-52b.json @@ -0,0 +1,41 @@ +{ + "slug": "raku-raku-easy-smartphone-td-lte-jp-f-52b", + "name": "Raku-Raku Easy Smartphone TD-LTE JP F-52B", + "brand": "fujitsu", + "soc": "snapdragon-480", + "release_date": "2022-02-24", + "ram_gb": 4.0, + "battery_mah": 3400, + "weight_g": 153.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.0, + "resolution": "1080x1980", + "type": "AM-OLED display", + "ppi": 451 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/google/2018/pixel-3-phone-global-td-lte-128gb-g013a.json b/data/smartphone/google/2018/pixel-3-phone-global-td-lte-128gb-g013a.json new file mode 100644 index 00000000000..07578309f7b --- /dev/null +++ b/data/smartphone/google/2018/pixel-3-phone-global-td-lte-128gb-g013a.json @@ -0,0 +1,41 @@ +{ + "slug": "pixel-3-phone-global-td-lte-128gb-g013a", + "name": "Pixel 3 Phone Global TD-LTE 128GB G013A", + "brand": "google", + "soc": "snapdragon-845", + "release_date": "2018-10-17", + "ram_gb": 4.0, + "battery_mah": 2915, + "weight_g": 148.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.47, + "resolution": "1080x2160", + "type": "Yes", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Brazil , Canada , China , Denmark , Finland , France , Germany , India , Indonesia , Ireland , Italy , Malaysia , Mexico , Netherlands , Norway , NZ , Philippines , Portugal , Puerto Rico , Singapore , South Korea , Spain , Sweden , Switzerland , Taiwan , Thailand , UK , USA", + "market_regions": "Asia , Australia , Europe , Middle East , North America , South America , Western Europe" +} diff --git a/data/smartphone/google/2018/pixel-3-phone-global-td-lte-64gb-g013a.json b/data/smartphone/google/2018/pixel-3-phone-global-td-lte-64gb-g013a.json new file mode 100644 index 00000000000..3f27c93678a --- /dev/null +++ b/data/smartphone/google/2018/pixel-3-phone-global-td-lte-64gb-g013a.json @@ -0,0 +1,41 @@ +{ + "slug": "pixel-3-phone-global-td-lte-64gb-g013a", + "name": "Pixel 3 Phone Global TD-LTE 64GB G013A", + "brand": "google", + "soc": "snapdragon-845", + "release_date": "2018-10-17", + "ram_gb": 4.0, + "battery_mah": 2915, + "weight_g": 148.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.47, + "resolution": "1080x2160", + "type": "Yes", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Brazil , Canada , China , Denmark , Finland , France , Germany , India , Indonesia , Ireland , Italy , Malaysia , Mexico , Netherlands , Norway , NZ , Philippines , Portugal , Puerto Rico , Singapore , South Korea , Spain , Sweden , Switzerland , Taiwan , Thailand , UK , USA", + "market_regions": "Asia , Australia , Europe , Middle East , North America , South America , Western Europe" +} diff --git a/data/smartphone/google/2018/pixel-3-phone-td-lte-jp-64gb-g013b.json b/data/smartphone/google/2018/pixel-3-phone-td-lte-jp-64gb-g013b.json new file mode 100644 index 00000000000..c51bb48c207 --- /dev/null +++ b/data/smartphone/google/2018/pixel-3-phone-td-lte-jp-64gb-g013b.json @@ -0,0 +1,41 @@ +{ + "slug": "pixel-3-phone-td-lte-jp-64gb-g013b", + "name": "Pixel 3 Phone TD-LTE JP 64GB G013B", + "brand": "google", + "soc": "snapdragon-845", + "release_date": "2018-11-02", + "ram_gb": 4.0, + "battery_mah": 2915, + "weight_g": 148.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.47, + "resolution": "1080x2160", + "type": "Yes", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/google/2018/pixel-xl-3-phone-global-td-lte-128gb-g013c.json b/data/smartphone/google/2018/pixel-xl-3-phone-global-td-lte-128gb-g013c.json new file mode 100644 index 00000000000..600e8055507 --- /dev/null +++ b/data/smartphone/google/2018/pixel-xl-3-phone-global-td-lte-128gb-g013c.json @@ -0,0 +1,41 @@ +{ + "slug": "pixel-xl-3-phone-global-td-lte-128gb-g013c", + "name": "Pixel XL 3 Phone Global TD-LTE 128GB G013C", + "brand": "google", + "soc": "snapdragon-845", + "release_date": "2018-10-17", + "ram_gb": 4.0, + "battery_mah": 3430, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Brazil , Canada , China , Denmark , Finland , France , Germany , India , Indonesia , Ireland , Italy , Malaysia , Mexico , Netherlands , Norway , NZ , Philippines , Portugal , Puerto Rico , Singapore , South Korea , Spain , Sweden , Switzerland , Taiwan , Thailand , UK , USA", + "market_regions": "Asia , Australia , Europe , Middle East , North America , South America , Western Europe" +} diff --git a/data/smartphone/google/2018/pixel-xl-3-phone-global-td-lte-64gb-g013c.json b/data/smartphone/google/2018/pixel-xl-3-phone-global-td-lte-64gb-g013c.json new file mode 100644 index 00000000000..70972d12922 --- /dev/null +++ b/data/smartphone/google/2018/pixel-xl-3-phone-global-td-lte-64gb-g013c.json @@ -0,0 +1,41 @@ +{ + "slug": "pixel-xl-3-phone-global-td-lte-64gb-g013c", + "name": "Pixel XL 3 Phone Global TD-LTE 64GB G013C", + "brand": "google", + "soc": "snapdragon-845", + "release_date": "2018-10-17", + "ram_gb": 4.0, + "battery_mah": 3430, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Brazil , Canada , China , Denmark , Finland , France , Germany , India , Indonesia , Ireland , Italy , Malaysia , Mexico , Netherlands , Norway , NZ , Philippines , Portugal , Puerto Rico , Singapore , South Korea , Spain , Sweden , Switzerland , Taiwan , Thailand , UK , USA", + "market_regions": "Asia , Australia , Europe , Middle East , North America , South America , Western Europe" +} diff --git a/data/smartphone/google/2018/pixel-xl-3-phone-td-lte-jp-128gb-g013d.json b/data/smartphone/google/2018/pixel-xl-3-phone-td-lte-jp-128gb-g013d.json new file mode 100644 index 00000000000..95183d04f9d --- /dev/null +++ b/data/smartphone/google/2018/pixel-xl-3-phone-td-lte-jp-128gb-g013d.json @@ -0,0 +1,41 @@ +{ + "slug": "pixel-xl-3-phone-td-lte-jp-128gb-g013d", + "name": "Pixel XL 3 Phone TD-LTE JP 128GB G013D", + "brand": "google", + "soc": "snapdragon-845", + "release_date": "2018-11-02", + "ram_gb": 4.0, + "battery_mah": 3430, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/google/2019/pixel-3a-global-td-lte-g020f.json b/data/smartphone/google/2019/pixel-3a-global-td-lte-g020f.json new file mode 100644 index 00000000000..ed60054265f --- /dev/null +++ b/data/smartphone/google/2019/pixel-3a-global-td-lte-g020f.json @@ -0,0 +1,42 @@ +{ + "slug": "pixel-3a-global-td-lte-g020f", + "name": "Pixel 3a Global TD-LTE G020F", + "brand": "google", + "soc": "snapdragon-670", + "release_date": "2019-05-08", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 147.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.6, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Denmark , Finland , France , Germany , India , Ireland , Italy , Malaysia , Netherlands , Norway , Portugal , Singapore , Spain , Sweden , Switzerland , Taiwan , Thailand , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/google/2019/pixel-3a-td-lte-jp-g020h.json b/data/smartphone/google/2019/pixel-3a-td-lte-jp-g020h.json new file mode 100644 index 00000000000..b0d4e43e83c --- /dev/null +++ b/data/smartphone/google/2019/pixel-3a-td-lte-jp-g020h.json @@ -0,0 +1,42 @@ +{ + "slug": "pixel-3a-td-lte-jp-g020h", + "name": "Pixel 3a TD-LTE JP G020H", + "brand": "google", + "soc": "snapdragon-670", + "release_date": "2019-05-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 147.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.6, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/google/2019/pixel-3a-td-lte-na-g020e.json b/data/smartphone/google/2019/pixel-3a-td-lte-na-g020e.json new file mode 100644 index 00000000000..6d21907e342 --- /dev/null +++ b/data/smartphone/google/2019/pixel-3a-td-lte-na-g020e.json @@ -0,0 +1,42 @@ +{ + "slug": "pixel-3a-td-lte-na-g020e", + "name": "Pixel 3a TD-LTE NA G020E", + "brand": "google", + "soc": "snapdragon-670", + "release_date": "2019-05-08", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 147.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.6, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada , USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/google/2019/pixel-3a-td-lte-na-g020g.json b/data/smartphone/google/2019/pixel-3a-td-lte-na-g020g.json new file mode 100644 index 00000000000..4e7abb45467 --- /dev/null +++ b/data/smartphone/google/2019/pixel-3a-td-lte-na-g020g.json @@ -0,0 +1,42 @@ +{ + "slug": "pixel-3a-td-lte-na-g020g", + "name": "Pixel 3a TD-LTE NA G020G", + "brand": "google", + "soc": "snapdragon-670", + "release_date": "2019-05-08", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 147.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.6, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada , Puerto Rico , USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/google/2019/pixel-3a-xl-global-td-lte-g020b.json b/data/smartphone/google/2019/pixel-3a-xl-global-td-lte-g020b.json new file mode 100644 index 00000000000..8d104568071 --- /dev/null +++ b/data/smartphone/google/2019/pixel-3a-xl-global-td-lte-g020b.json @@ -0,0 +1,42 @@ +{ + "slug": "pixel-3a-xl-global-td-lte-g020b", + "name": "Pixel 3a XL Global TD-LTE G020B", + "brand": "google", + "soc": "snapdragon-670", + "release_date": "2019-05-08", + "ram_gb": 4.0, + "battery_mah": 3700, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Denmark , Finland , France , Germany , India , Ireland , Italy , Malaysia , Netherlands , Norway , Portugal , Singapore , Spain , Sweden , Switzerland , Taiwan , Thailand , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/google/2019/pixel-3a-xl-td-lte-jp-g020d.json b/data/smartphone/google/2019/pixel-3a-xl-td-lte-jp-g020d.json new file mode 100644 index 00000000000..5ba7114e01f --- /dev/null +++ b/data/smartphone/google/2019/pixel-3a-xl-td-lte-jp-g020d.json @@ -0,0 +1,42 @@ +{ + "slug": "pixel-3a-xl-td-lte-jp-g020d", + "name": "Pixel 3a XL TD-LTE JP G020D", + "brand": "google", + "soc": "snapdragon-670", + "release_date": "2019-05-11", + "ram_gb": 4.0, + "battery_mah": 3700, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/google/2019/pixel-3a-xl-td-lte-na-g020a.json b/data/smartphone/google/2019/pixel-3a-xl-td-lte-na-g020a.json new file mode 100644 index 00000000000..da1ae2e734d --- /dev/null +++ b/data/smartphone/google/2019/pixel-3a-xl-td-lte-na-g020a.json @@ -0,0 +1,42 @@ +{ + "slug": "pixel-3a-xl-td-lte-na-g020a", + "name": "Pixel 3a XL TD-LTE NA G020A", + "brand": "google", + "soc": "snapdragon-670", + "release_date": "2019-05-08", + "ram_gb": 4.0, + "battery_mah": 3700, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada , USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/google/2019/pixel-3a-xl-td-lte-na-g020c.json b/data/smartphone/google/2019/pixel-3a-xl-td-lte-na-g020c.json new file mode 100644 index 00000000000..d2a2f1bf5bb --- /dev/null +++ b/data/smartphone/google/2019/pixel-3a-xl-td-lte-na-g020c.json @@ -0,0 +1,42 @@ +{ + "slug": "pixel-3a-xl-td-lte-na-g020c", + "name": "Pixel 3a XL TD-LTE NA G020C", + "brand": "google", + "soc": "snapdragon-670", + "release_date": "2019-05-08", + "ram_gb": 4.0, + "battery_mah": 3700, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada , Puerto Rico , USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/google/2019/pixel-4-global-td-lte-128gb-g020m.json b/data/smartphone/google/2019/pixel-4-global-td-lte-128gb-g020m.json new file mode 100644 index 00000000000..25a27475c80 --- /dev/null +++ b/data/smartphone/google/2019/pixel-4-global-td-lte-128gb-g020m.json @@ -0,0 +1,43 @@ +{ + "slug": "pixel-4-global-td-lte-128gb-g020m", + "name": "Pixel 4 Global TD-LTE 128GB G020M", + "brand": "google", + "soc": "snapdragon-855", + "release_date": "2019-10-24", + "ram_gb": 4.0, + "battery_mah": 2800, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2280", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 443 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Brazil , Canada , China , Denmark , Finland , France , Germany , India , Indonesia , Ireland , Italy , Malaysia , Mexico , Netherlands , Norway , NZ , Philippines , Portugal , Puerto Rico , Singapore , South Korea , Spain , Sweden , Switzerland , Taiwan , Thailand , UK , USA", + "market_regions": "Asia , Australia , Europe , Middle East , North America , South America , Western Europe" +} diff --git a/data/smartphone/google/2019/pixel-4-global-td-lte-64gb-g020m.json b/data/smartphone/google/2019/pixel-4-global-td-lte-64gb-g020m.json new file mode 100644 index 00000000000..28ff8d676c3 --- /dev/null +++ b/data/smartphone/google/2019/pixel-4-global-td-lte-64gb-g020m.json @@ -0,0 +1,43 @@ +{ + "slug": "pixel-4-global-td-lte-64gb-g020m", + "name": "Pixel 4 Global TD-LTE 64GB G020M", + "brand": "google", + "soc": "snapdragon-855", + "release_date": "2019-10-24", + "ram_gb": 4.0, + "battery_mah": 2800, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2280", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 443 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Brazil , Canada , China , Denmark , Finland , France , Germany , India , Indonesia , Ireland , Italy , Malaysia , Mexico , Netherlands , Norway , NZ , Philippines , Portugal , Puerto Rico , Singapore , South Korea , Spain , Sweden , Switzerland , Taiwan , Thailand , UK , USA", + "market_regions": "Asia , Australia , Europe , Middle East , North America , South America , Western Europe" +} diff --git a/data/smartphone/google/2019/pixel-4-jp-td-lte-64gb-g020n.json b/data/smartphone/google/2019/pixel-4-jp-td-lte-64gb-g020n.json new file mode 100644 index 00000000000..ecfa514b776 --- /dev/null +++ b/data/smartphone/google/2019/pixel-4-jp-td-lte-64gb-g020n.json @@ -0,0 +1,43 @@ +{ + "slug": "pixel-4-jp-td-lte-64gb-g020n", + "name": "Pixel 4 JP TD-LTE 64GB G020N", + "brand": "google", + "soc": "snapdragon-855", + "release_date": "2019-10-24", + "ram_gb": 4.0, + "battery_mah": 2800, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2280", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 443 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/google/2019/pixel-4-us-td-lte-128gb-g020i.json b/data/smartphone/google/2019/pixel-4-us-td-lte-128gb-g020i.json new file mode 100644 index 00000000000..37072c9993c --- /dev/null +++ b/data/smartphone/google/2019/pixel-4-us-td-lte-128gb-g020i.json @@ -0,0 +1,43 @@ +{ + "slug": "pixel-4-us-td-lte-128gb-g020i", + "name": "Pixel 4 US TD-LTE 128GB G020I", + "brand": "google", + "soc": "snapdragon-855", + "release_date": "2019-10-24", + "ram_gb": 4.0, + "battery_mah": 2800, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2280", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 443 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/google/2019/pixel-4-us-td-lte-64gb-g020i.json b/data/smartphone/google/2019/pixel-4-us-td-lte-64gb-g020i.json new file mode 100644 index 00000000000..a9d1ee30c24 --- /dev/null +++ b/data/smartphone/google/2019/pixel-4-us-td-lte-64gb-g020i.json @@ -0,0 +1,43 @@ +{ + "slug": "pixel-4-us-td-lte-64gb-g020i", + "name": "Pixel 4 US TD-LTE 64GB G020I", + "brand": "google", + "soc": "snapdragon-855", + "release_date": "2019-10-24", + "ram_gb": 4.0, + "battery_mah": 2800, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2280", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 443 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/google/2019/pixel-4-xl-global-td-lte-128gb-g020p.json b/data/smartphone/google/2019/pixel-4-xl-global-td-lte-128gb-g020p.json new file mode 100644 index 00000000000..7dd40d1b747 --- /dev/null +++ b/data/smartphone/google/2019/pixel-4-xl-global-td-lte-128gb-g020p.json @@ -0,0 +1,43 @@ +{ + "slug": "pixel-4-xl-global-td-lte-128gb-g020p", + "name": "Pixel 4 XL Global TD-LTE 128GB G020P", + "brand": "google", + "soc": "snapdragon-855", + "release_date": "2019-10-24", + "ram_gb": 4.0, + "battery_mah": 3700, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1440x3040", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 534 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Brazil , Canada , China , Denmark , Finland , France , Germany , India , Indonesia , Ireland , Italy , Malaysia , Mexico , Netherlands , Norway , NZ , Philippines , Portugal , Puerto Rico , Singapore , South Korea , Spain , Sweden , Switzerland , Taiwan , Thailand , UK , USA", + "market_regions": "Asia , Australia , Europe , Middle East , North America , South America , Western Europe" +} diff --git a/data/smartphone/google/2019/pixel-4-xl-global-td-lte-64gb-g020p.json b/data/smartphone/google/2019/pixel-4-xl-global-td-lte-64gb-g020p.json new file mode 100644 index 00000000000..124de539799 --- /dev/null +++ b/data/smartphone/google/2019/pixel-4-xl-global-td-lte-64gb-g020p.json @@ -0,0 +1,43 @@ +{ + "slug": "pixel-4-xl-global-td-lte-64gb-g020p", + "name": "Pixel 4 XL Global TD-LTE 64GB G020P", + "brand": "google", + "soc": "snapdragon-855", + "release_date": "2019-10-24", + "ram_gb": 4.0, + "battery_mah": 3700, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1440x3040", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 534 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Brazil , Canada , China , Denmark , Finland , France , Germany , India , Indonesia , Ireland , Italy , Malaysia , Mexico , Netherlands , Norway , NZ , Philippines , Portugal , Puerto Rico , Singapore , South Korea , Spain , Sweden , Switzerland , Taiwan , Thailand , UK , USA", + "market_regions": "Asia , Australia , Europe , Middle East , North America , South America , Western Europe" +} diff --git a/data/smartphone/google/2019/pixel-4-xl-jp-td-lte-64gb-g020q.json b/data/smartphone/google/2019/pixel-4-xl-jp-td-lte-64gb-g020q.json new file mode 100644 index 00000000000..25165bcd370 --- /dev/null +++ b/data/smartphone/google/2019/pixel-4-xl-jp-td-lte-64gb-g020q.json @@ -0,0 +1,43 @@ +{ + "slug": "pixel-4-xl-jp-td-lte-64gb-g020q", + "name": "Pixel 4 XL JP TD-LTE 64GB G020Q", + "brand": "google", + "soc": "snapdragon-855", + "release_date": "2019-10-24", + "ram_gb": 4.0, + "battery_mah": 3700, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1440x3040", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 534 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/google/2019/pixel-4-xl-us-td-lte-128gb-g020j.json b/data/smartphone/google/2019/pixel-4-xl-us-td-lte-128gb-g020j.json new file mode 100644 index 00000000000..9b8b6d370c9 --- /dev/null +++ b/data/smartphone/google/2019/pixel-4-xl-us-td-lte-128gb-g020j.json @@ -0,0 +1,43 @@ +{ + "slug": "pixel-4-xl-us-td-lte-128gb-g020j", + "name": "Pixel 4 XL US TD-LTE 128GB G020J", + "brand": "google", + "soc": "snapdragon-855", + "release_date": "2019-10-24", + "ram_gb": 4.0, + "battery_mah": 3700, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1440x3040", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 534 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/google/2019/pixel-4-xl-us-td-lte-64gb-g020j.json b/data/smartphone/google/2019/pixel-4-xl-us-td-lte-64gb-g020j.json new file mode 100644 index 00000000000..b642bebfa37 --- /dev/null +++ b/data/smartphone/google/2019/pixel-4-xl-us-td-lte-64gb-g020j.json @@ -0,0 +1,43 @@ +{ + "slug": "pixel-4-xl-us-td-lte-64gb-g020j", + "name": "Pixel 4 XL US TD-LTE 64GB G020J", + "brand": "google", + "soc": "snapdragon-855", + "release_date": "2019-10-24", + "ram_gb": 4.0, + "battery_mah": 3700, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1440x3040", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 534 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/google/2020/pixel-4a-5g-global-td-lte-128gb-g025i.json b/data/smartphone/google/2020/pixel-4a-5g-global-td-lte-128gb-g025i.json new file mode 100644 index 00000000000..00d33e59eaa --- /dev/null +++ b/data/smartphone/google/2020/pixel-4a-5g-global-td-lte-128gb-g025i.json @@ -0,0 +1,43 @@ +{ + "slug": "pixel-4a-5g-global-td-lte-128gb-g025i", + "name": "Pixel 4a 5G Global TD-LTE 128GB G025I", + "brand": "google", + "soc": "snapdragon-765", + "release_date": "2020-11-01", + "ram_gb": 6.0, + "battery_mah": 3885, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.22, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 414 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 499, + "market_countries": "Australia , Austria , Belgium , Canada , Finland , France , Germany , India , Ireland , Italy , Netherlands , Norway , Portugal , Singapore , Spain , Sweden , UK", + "market_regions": "Australia , Europe , North America , Western Europe" +} diff --git a/data/smartphone/google/2020/pixel-4a-5g-td-lte-jp-128gb-g025h.json b/data/smartphone/google/2020/pixel-4a-5g-td-lte-jp-128gb-g025h.json new file mode 100644 index 00000000000..65fdbd22cd4 --- /dev/null +++ b/data/smartphone/google/2020/pixel-4a-5g-td-lte-jp-128gb-g025h.json @@ -0,0 +1,42 @@ +{ + "slug": "pixel-4a-5g-td-lte-jp-128gb-g025h", + "name": "Pixel 4a 5G TD-LTE JP 128GB G025H", + "brand": "google", + "soc": "snapdragon-765", + "release_date": "2020-10-16", + "ram_gb": 6.0, + "battery_mah": 3885, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.22, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 414 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/google/2020/pixel-4a-5g-td-lte-us-128gb-g025e.json b/data/smartphone/google/2020/pixel-4a-5g-td-lte-us-128gb-g025e.json new file mode 100644 index 00000000000..1e1909b4fa0 --- /dev/null +++ b/data/smartphone/google/2020/pixel-4a-5g-td-lte-us-128gb-g025e.json @@ -0,0 +1,43 @@ +{ + "slug": "pixel-4a-5g-td-lte-us-128gb-g025e", + "name": "Pixel 4a 5G TD-LTE US 128GB G025E", + "brand": "google", + "soc": "snapdragon-765", + "release_date": "2020-10-19", + "ram_gb": 6.0, + "battery_mah": 3885, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.22, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 414 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 499, + "market_countries": "Puerto Rico , USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/google/2020/pixel-4a-5g-uw-td-lte-us-128gb-g6qu3.json b/data/smartphone/google/2020/pixel-4a-5g-uw-td-lte-us-128gb-g6qu3.json new file mode 100644 index 00000000000..5a3c7ba6080 --- /dev/null +++ b/data/smartphone/google/2020/pixel-4a-5g-uw-td-lte-us-128gb-g6qu3.json @@ -0,0 +1,43 @@ +{ + "slug": "pixel-4a-5g-uw-td-lte-us-128gb-g6qu3", + "name": "Pixel 4a 5G UW TD-LTE US 128GB G6QU3", + "brand": "google", + "soc": "snapdragon-765", + "release_date": "2020-11-06", + "ram_gb": 6.0, + "battery_mah": 3885, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.22, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 414 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 499, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/google/2020/pixel-4a-global-td-lte-128gb-g025n.json b/data/smartphone/google/2020/pixel-4a-global-td-lte-128gb-g025n.json new file mode 100644 index 00000000000..45cd9a84855 --- /dev/null +++ b/data/smartphone/google/2020/pixel-4a-global-td-lte-128gb-g025n.json @@ -0,0 +1,43 @@ +{ + "slug": "pixel-4a-global-td-lte-128gb-g025n", + "name": "Pixel 4a Global TD-LTE 128GB G025N", + "brand": "google", + "soc": "snapdragon-730", + "release_date": "2020-08-01", + "ram_gb": 6.0, + "battery_mah": 3140, + "weight_g": 143.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.81, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 444 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 349, + "market_countries": "Australia , Austria , Belgium , Canada , Denmark , Finland , France , Germany , Ireland , Italy , Netherlands , Norway , NZ , Portugal , Spain , Sweden , Switzerland , UK", + "market_regions": "Asia , Australia , Europe , Western Europe" +} diff --git a/data/smartphone/google/2020/pixel-4a-td-lte-us-128gb-g025j.json b/data/smartphone/google/2020/pixel-4a-td-lte-us-128gb-g025j.json new file mode 100644 index 00000000000..24df588cef8 --- /dev/null +++ b/data/smartphone/google/2020/pixel-4a-td-lte-us-128gb-g025j.json @@ -0,0 +1,43 @@ +{ + "slug": "pixel-4a-td-lte-us-128gb-g025j", + "name": "Pixel 4a TD-LTE US 128GB G025J", + "brand": "google", + "soc": "snapdragon-730", + "release_date": "2020-08-21", + "ram_gb": 6.0, + "battery_mah": 3140, + "weight_g": 143.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.81, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 444 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 350, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/google/2020/pixel-5-5g-global-td-lte-128gb-gtt9q.json b/data/smartphone/google/2020/pixel-5-5g-global-td-lte-128gb-gtt9q.json new file mode 100644 index 00000000000..a17a38ac850 --- /dev/null +++ b/data/smartphone/google/2020/pixel-5-5g-global-td-lte-128gb-gtt9q.json @@ -0,0 +1,44 @@ +{ + "slug": "pixel-5-5g-global-td-lte-128gb-gtt9q", + "name": "Pixel 5 5G Global TD-LTE 128GB GTT9Q", + "brand": "google", + "soc": "snapdragon-765", + "release_date": "2020-10-19", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 151.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.94, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 434 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 599, + "market_countries": "Australia , Austria , Canada , Finland , France , Germany , India , Ireland , Italy , Netherlands , Norway , NZ , Portugal , Singapore , Spain , Sweden , Taiwan , UK", + "market_regions": "Asia , Australia , Europe , Middle East , North America , Western Europe" +} diff --git a/data/smartphone/google/2020/pixel-5-5g-td-lte-jp-128gb-g5nz6.json b/data/smartphone/google/2020/pixel-5-5g-td-lte-jp-128gb-g5nz6.json new file mode 100644 index 00000000000..d048db20b26 --- /dev/null +++ b/data/smartphone/google/2020/pixel-5-5g-td-lte-jp-128gb-g5nz6.json @@ -0,0 +1,43 @@ +{ + "slug": "pixel-5-5g-td-lte-jp-128gb-g5nz6", + "name": "Pixel 5 5G TD-LTE JP 128GB G5NZ6", + "brand": "google", + "soc": "snapdragon-765", + "release_date": "2020-10-16", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 151.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.94, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 434 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/google/2020/pixel-5-5g-uw-td-lte-us-128gb-gd1yq.json b/data/smartphone/google/2020/pixel-5-5g-uw-td-lte-us-128gb-gd1yq.json new file mode 100644 index 00000000000..e1f9a3a162b --- /dev/null +++ b/data/smartphone/google/2020/pixel-5-5g-uw-td-lte-us-128gb-gd1yq.json @@ -0,0 +1,44 @@ +{ + "slug": "pixel-5-5g-uw-td-lte-us-128gb-gd1yq", + "name": "Pixel 5 5G UW TD-LTE US 128GB GD1YQ", + "brand": "google", + "soc": "snapdragon-765", + "release_date": "2020-10-19", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 151.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.94, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 434 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 699, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/google/2021/pixel-5a-5g-td-lte-jp-128gb-g4s1m.json b/data/smartphone/google/2021/pixel-5a-5g-td-lte-jp-128gb-g4s1m.json new file mode 100644 index 00000000000..a1b129b8f3d --- /dev/null +++ b/data/smartphone/google/2021/pixel-5a-5g-td-lte-jp-128gb-g4s1m.json @@ -0,0 +1,42 @@ +{ + "slug": "pixel-5a-5g-td-lte-jp-128gb-g4s1m", + "name": "Pixel 5a 5G TD-LTE JP 128GB G4S1M", + "brand": "google", + "soc": "snapdragon-765", + "release_date": "2021-08-26", + "ram_gb": 6.0, + "battery_mah": 4680, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.34, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/google/2021/pixel-5a-5g-td-lte-us-128gb-g1f8f.json b/data/smartphone/google/2021/pixel-5a-5g-td-lte-us-128gb-g1f8f.json new file mode 100644 index 00000000000..176b929e542 --- /dev/null +++ b/data/smartphone/google/2021/pixel-5a-5g-td-lte-us-128gb-g1f8f.json @@ -0,0 +1,43 @@ +{ + "slug": "pixel-5a-5g-td-lte-us-128gb-g1f8f", + "name": "Pixel 5a 5G TD-LTE US 128GB G1F8F", + "brand": "google", + "soc": "snapdragon-765", + "release_date": "2021-08-26", + "ram_gb": 6.0, + "battery_mah": 4680, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.34, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 449, + "market_countries": "Puerto Rico , USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/google/2021/pixel-6-5g-global-td-lte-128gb-gb7n6.json b/data/smartphone/google/2021/pixel-6-5g-global-td-lte-128gb-gb7n6.json new file mode 100644 index 00000000000..fcd0a1ac1f2 --- /dev/null +++ b/data/smartphone/google/2021/pixel-6-5g-global-td-lte-128gb-gb7n6.json @@ -0,0 +1,44 @@ +{ + "slug": "pixel-6-5g-global-td-lte-128gb-gb7n6", + "name": "Pixel 6 5G Global TD-LTE 128GB GB7N6", + "brand": "google", + "soc": "google-tensor", + "release_date": "2021-10-28", + "ram_gb": 8.0, + "battery_mah": 4614, + "weight_g": 207.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 410 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 599, + "market_countries": "Australia , Austria , Canada , Finland , France , Germany , Ireland , Italy , Netherlands , Norway , NZ , Portugal , Singapore , Spain , Sweden , Taiwan , UK", + "market_regions": "Asia , Australia , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/google/2021/pixel-6-5g-global-td-lte-256gb-gb7n6.json b/data/smartphone/google/2021/pixel-6-5g-global-td-lte-256gb-gb7n6.json new file mode 100644 index 00000000000..841292543f6 --- /dev/null +++ b/data/smartphone/google/2021/pixel-6-5g-global-td-lte-256gb-gb7n6.json @@ -0,0 +1,44 @@ +{ + "slug": "pixel-6-5g-global-td-lte-256gb-gb7n6", + "name": "Pixel 6 5G Global TD-LTE 256GB GB7N6", + "brand": "google", + "soc": "google-tensor", + "release_date": "2021-10-28", + "ram_gb": 8.0, + "battery_mah": 4614, + "weight_g": 207.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 410 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1129, + "market_countries": "Australia , Austria , Belgium , Canada , Finland , France , Germany , Ireland , Italy , Netherlands , Norway , NZ , Portugal , Singapore , Spain , Sweden , Switzerland , Taiwan , UK", + "market_regions": "Asia , Australia , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/google/2021/pixel-6-5g-uw-td-lte-jp-128gb-gr1yh.json b/data/smartphone/google/2021/pixel-6-5g-uw-td-lte-jp-128gb-gr1yh.json new file mode 100644 index 00000000000..5f8242be078 --- /dev/null +++ b/data/smartphone/google/2021/pixel-6-5g-uw-td-lte-jp-128gb-gr1yh.json @@ -0,0 +1,43 @@ +{ + "slug": "pixel-6-5g-uw-td-lte-jp-128gb-gr1yh", + "name": "Pixel 6 5G UW TD-LTE JP 128GB GR1YH", + "brand": "google", + "soc": "google-tensor", + "release_date": "2021-10-28", + "ram_gb": 8.0, + "battery_mah": 4614, + "weight_g": 207.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 410 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/google/2021/pixel-6-5g-uw-td-lte-jp-256gb-gr1yh.json b/data/smartphone/google/2021/pixel-6-5g-uw-td-lte-jp-256gb-gr1yh.json new file mode 100644 index 00000000000..2eba21e9816 --- /dev/null +++ b/data/smartphone/google/2021/pixel-6-5g-uw-td-lte-jp-256gb-gr1yh.json @@ -0,0 +1,43 @@ +{ + "slug": "pixel-6-5g-uw-td-lte-jp-256gb-gr1yh", + "name": "Pixel 6 5G UW TD-LTE JP 256GB GR1YH", + "brand": "google", + "soc": "google-tensor", + "release_date": "2021-10-28", + "ram_gb": 8.0, + "battery_mah": 4614, + "weight_g": 207.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 410 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/google/2021/pixel-6-5g-uw-td-lte-us-128gb-g9s9b.json b/data/smartphone/google/2021/pixel-6-5g-uw-td-lte-us-128gb-g9s9b.json new file mode 100644 index 00000000000..9d28efe2feb --- /dev/null +++ b/data/smartphone/google/2021/pixel-6-5g-uw-td-lte-us-128gb-g9s9b.json @@ -0,0 +1,44 @@ +{ + "slug": "pixel-6-5g-uw-td-lte-us-128gb-g9s9b", + "name": "Pixel 6 5G UW TD-LTE US 128GB G9S9B", + "brand": "google", + "soc": "google-tensor", + "release_date": "2021-10-28", + "ram_gb": 8.0, + "battery_mah": 4614, + "weight_g": 207.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 410 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 599, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/google/2021/pixel-6-5g-uw-td-lte-us-256gb-g9s9b.json b/data/smartphone/google/2021/pixel-6-5g-uw-td-lte-us-256gb-g9s9b.json new file mode 100644 index 00000000000..472a5fdef6a --- /dev/null +++ b/data/smartphone/google/2021/pixel-6-5g-uw-td-lte-us-256gb-g9s9b.json @@ -0,0 +1,44 @@ +{ + "slug": "pixel-6-5g-uw-td-lte-us-256gb-g9s9b", + "name": "Pixel 6 5G UW TD-LTE US 256GB G9S9B", + "brand": "google", + "soc": "google-tensor", + "release_date": "2021-10-28", + "ram_gb": 8.0, + "battery_mah": 4614, + "weight_g": 207.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 410 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 699, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/google/2021/pixel-6-pro-5g-global-td-lte-128gb-gluog.json b/data/smartphone/google/2021/pixel-6-pro-5g-global-td-lte-128gb-gluog.json new file mode 100644 index 00000000000..10ed048aca8 --- /dev/null +++ b/data/smartphone/google/2021/pixel-6-pro-5g-global-td-lte-128gb-gluog.json @@ -0,0 +1,44 @@ +{ + "slug": "pixel-6-pro-5g-global-td-lte-128gb-gluog", + "name": "Pixel 6 Pro 5G Global TD-LTE 128GB GLUOG", + "brand": "google", + "soc": "google-tensor", + "release_date": "2021-10-28", + "ram_gb": 12.0, + "battery_mah": 5003, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3120", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 513 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 11.1 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 849, + "market_countries": "Australia , Austria , Canada , Finland , France , Germany , India , Ireland , Italy , Netherlands , Norway , NZ , Portugal , Singapore , Spain , Sweden , Taiwan , UK", + "market_regions": "Asia , Australia , Europe , Middle East , North America , Western Europe" +} diff --git a/data/smartphone/google/2021/pixel-6-pro-5g-global-td-lte-256gb-gluog.json b/data/smartphone/google/2021/pixel-6-pro-5g-global-td-lte-256gb-gluog.json new file mode 100644 index 00000000000..69b573414e1 --- /dev/null +++ b/data/smartphone/google/2021/pixel-6-pro-5g-global-td-lte-256gb-gluog.json @@ -0,0 +1,44 @@ +{ + "slug": "pixel-6-pro-5g-global-td-lte-256gb-gluog", + "name": "Pixel 6 Pro 5G Global TD-LTE 256GB GLUOG", + "brand": "google", + "soc": "google-tensor", + "release_date": "2021-10-28", + "ram_gb": 12.0, + "battery_mah": 5003, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3120", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 513 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 11.1 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 999, + "market_countries": "Australia , Austria , Canada , Finland , France , Germany , India , Ireland , Italy , Netherlands , Norway , NZ , Portugal , Singapore , Spain , Sweden , Taiwan , UK", + "market_regions": "Asia , Australia , Europe , Middle East , North America , Western Europe" +} diff --git a/data/smartphone/google/2021/pixel-6-pro-5g-global-td-lte-512gb-gluog.json b/data/smartphone/google/2021/pixel-6-pro-5g-global-td-lte-512gb-gluog.json new file mode 100644 index 00000000000..2f84d1f0165 --- /dev/null +++ b/data/smartphone/google/2021/pixel-6-pro-5g-global-td-lte-512gb-gluog.json @@ -0,0 +1,44 @@ +{ + "slug": "pixel-6-pro-5g-global-td-lte-512gb-gluog", + "name": "Pixel 6 Pro 5G Global TD-LTE 512GB GLUOG", + "brand": "google", + "soc": "google-tensor", + "release_date": "2021-10-28", + "ram_gb": 12.0, + "battery_mah": 5003, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3120", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 513 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 11.1 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1599, + "market_countries": "Australia , Austria , Canada , Finland , France , Germany , India , Ireland , Italy , Netherlands , Norway , NZ , Portugal , Singapore , Spain , Sweden , Taiwan , UK", + "market_regions": "Asia , Australia , Europe , Middle East , North America , Western Europe" +} diff --git a/data/smartphone/google/2021/pixel-6-pro-5g-uw-td-lte-jp-128gb-gf5kq.json b/data/smartphone/google/2021/pixel-6-pro-5g-uw-td-lte-jp-128gb-gf5kq.json new file mode 100644 index 00000000000..430faa6368e --- /dev/null +++ b/data/smartphone/google/2021/pixel-6-pro-5g-uw-td-lte-jp-128gb-gf5kq.json @@ -0,0 +1,43 @@ +{ + "slug": "pixel-6-pro-5g-uw-td-lte-jp-128gb-gf5kq", + "name": "Pixel 6 Pro 5G UW TD-LTE JP 128GB GF5KQ", + "brand": "google", + "soc": "google-tensor", + "release_date": "2021-10-28", + "ram_gb": 12.0, + "battery_mah": 5003, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3120", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 513 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 11.1 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/google/2021/pixel-6-pro-5g-uw-td-lte-jp-256gb-gf5kq.json b/data/smartphone/google/2021/pixel-6-pro-5g-uw-td-lte-jp-256gb-gf5kq.json new file mode 100644 index 00000000000..e251ac261b7 --- /dev/null +++ b/data/smartphone/google/2021/pixel-6-pro-5g-uw-td-lte-jp-256gb-gf5kq.json @@ -0,0 +1,43 @@ +{ + "slug": "pixel-6-pro-5g-uw-td-lte-jp-256gb-gf5kq", + "name": "Pixel 6 Pro 5G UW TD-LTE JP 256GB GF5KQ", + "brand": "google", + "soc": "google-tensor", + "release_date": "2021-10-28", + "ram_gb": 12.0, + "battery_mah": 5003, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3120", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 513 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 11.1 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/google/2021/pixel-6-pro-5g-uw-td-lte-us-128gb-g8vou.json b/data/smartphone/google/2021/pixel-6-pro-5g-uw-td-lte-us-128gb-g8vou.json new file mode 100644 index 00000000000..41c6858432b --- /dev/null +++ b/data/smartphone/google/2021/pixel-6-pro-5g-uw-td-lte-us-128gb-g8vou.json @@ -0,0 +1,44 @@ +{ + "slug": "pixel-6-pro-5g-uw-td-lte-us-128gb-g8vou", + "name": "Pixel 6 Pro 5G UW TD-LTE US 128GB G8VOU", + "brand": "google", + "soc": "google-tensor", + "release_date": "2021-10-28", + "ram_gb": 12.0, + "battery_mah": 5003, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3120", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 513 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 11.1 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 899, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/google/2021/pixel-6-pro-5g-uw-td-lte-us-256gb-g8vou.json b/data/smartphone/google/2021/pixel-6-pro-5g-uw-td-lte-us-256gb-g8vou.json new file mode 100644 index 00000000000..d7549c906b7 --- /dev/null +++ b/data/smartphone/google/2021/pixel-6-pro-5g-uw-td-lte-us-256gb-g8vou.json @@ -0,0 +1,43 @@ +{ + "slug": "pixel-6-pro-5g-uw-td-lte-us-256gb-g8vou", + "name": "Pixel 6 Pro 5G UW TD-LTE US 256GB G8VOU", + "brand": "google", + "soc": "google-tensor", + "release_date": "2021-10-28", + "ram_gb": 12.0, + "battery_mah": 5003, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3120", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 513 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 11.1 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/hisense/2018/a6-dual-sim-td-lte-hlte700t.json b/data/smartphone/hisense/2018/a6-dual-sim-td-lte-hlte700t.json new file mode 100644 index 00000000000..38656ef9466 --- /dev/null +++ b/data/smartphone/hisense/2018/a6-dual-sim-td-lte-hlte700t.json @@ -0,0 +1,41 @@ +{ + "slug": "a6-dual-sim-td-lte-hlte700t", + "name": "A6 Dual SIM TD-LTE HLTE700T", + "brand": "hisense", + "soc": "snapdragon-660", + "release_date": "2018-10-01", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.01, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/hisense/2018/a6l-dual-sim-td-lte-128gb-hlte730t.json b/data/smartphone/hisense/2018/a6l-dual-sim-td-lte-128gb-hlte730t.json new file mode 100644 index 00000000000..b06f3949610 --- /dev/null +++ b/data/smartphone/hisense/2018/a6l-dual-sim-td-lte-128gb-hlte730t.json @@ -0,0 +1,41 @@ +{ + "slug": "a6l-dual-sim-td-lte-128gb-hlte730t", + "name": "A6L Dual SIM TD-LTE 128GB HLTE730T", + "brand": "hisense", + "soc": "snapdragon-660", + "release_date": "2018-10-23", + "ram_gb": 6.0, + "battery_mah": 3800, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/hisense/2018/a6l-dual-sim-td-lte-64gb-hlte730t.json b/data/smartphone/hisense/2018/a6l-dual-sim-td-lte-64gb-hlte730t.json new file mode 100644 index 00000000000..bd871a658a9 --- /dev/null +++ b/data/smartphone/hisense/2018/a6l-dual-sim-td-lte-64gb-hlte730t.json @@ -0,0 +1,41 @@ +{ + "slug": "a6l-dual-sim-td-lte-64gb-hlte730t", + "name": "A6L Dual SIM TD-LTE 64GB HLTE730T", + "brand": "hisense", + "soc": "snapdragon-660", + "release_date": "2018-10-23", + "ram_gb": 6.0, + "battery_mah": 3800, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/hisense/2018/h18-dual-sim-td-lte.json b/data/smartphone/hisense/2018/h18-dual-sim-td-lte.json new file mode 100644 index 00000000000..b20fa97926d --- /dev/null +++ b/data/smartphone/hisense/2018/h18-dual-sim-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "h18-dual-sim-td-lte", + "name": "H18 Dual SIM TD-LTE", + "brand": "hisense", + "soc": "snapdragon-636", + "release_date": "2018-06-27", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.19, + "resolution": "720x1500", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/hisense/2018/h20-dual-sim-td-lte-hlte510t-128gb.json b/data/smartphone/hisense/2018/h20-dual-sim-td-lte-hlte510t-128gb.json new file mode 100644 index 00000000000..1baaf72c068 --- /dev/null +++ b/data/smartphone/hisense/2018/h20-dual-sim-td-lte-hlte510t-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "h20-dual-sim-td-lte-hlte510t-128gb", + "name": "H20 Dual SIM TD-LTE HLTE510T 128GB", + "brand": "hisense", + "soc": "snapdragon-636", + "release_date": "2018-06-01", + "ram_gb": 6.0, + "battery_mah": 3020, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2220", + "type": "Color IPS TFT LCD display", + "ppi": 423 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 20.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/hisense/2018/h20-dual-sim-td-lte-hlte510t-64gb.json b/data/smartphone/hisense/2018/h20-dual-sim-td-lte-hlte510t-64gb.json new file mode 100644 index 00000000000..15327e7879e --- /dev/null +++ b/data/smartphone/hisense/2018/h20-dual-sim-td-lte-hlte510t-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "h20-dual-sim-td-lte-hlte510t-64gb", + "name": "H20 Dual SIM TD-LTE HLTE510T 64GB", + "brand": "hisense", + "soc": "snapdragon-636", + "release_date": "2018-06-01", + "ram_gb": 6.0, + "battery_mah": 3020, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2220", + "type": "Color IPS TFT LCD display", + "ppi": 423 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 20.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/hisense/2018/infinity-h11-pro-dual-sim-td-lte.json b/data/smartphone/hisense/2018/infinity-h11-pro-dual-sim-td-lte.json new file mode 100644 index 00000000000..421d7265109 --- /dev/null +++ b/data/smartphone/hisense/2018/infinity-h11-pro-dual-sim-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "infinity-h11-pro-dual-sim-td-lte", + "name": "Infinity H11 Pro Dual SIM TD-LTE", + "brand": "hisense", + "soc": "snapdragon-630", + "release_date": "2018-03-03", + "ram_gb": 4.0, + "battery_mah": 3400, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 20.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/hisense/2018/jingang-4-pro-dual-sim-td-lte-cn-hlte311t.json b/data/smartphone/hisense/2018/jingang-4-pro-dual-sim-td-lte-cn-hlte311t.json new file mode 100644 index 00000000000..d21f5a3716c --- /dev/null +++ b/data/smartphone/hisense/2018/jingang-4-pro-dual-sim-td-lte-cn-hlte311t.json @@ -0,0 +1,41 @@ +{ + "slug": "jingang-4-pro-dual-sim-td-lte-cn-hlte311t", + "name": "Jingang 4 PRO Dual SIM TD-LTE CN HLTE311T", + "brand": "hisense", + "soc": "snapdragon-636", + "release_date": "2018-11-14", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/hisense/2019/a5-dual-sim-td-lte-cn-32gb-hlte202n.json b/data/smartphone/hisense/2019/a5-dual-sim-td-lte-cn-32gb-hlte202n.json new file mode 100644 index 00000000000..a1d9c5357e5 --- /dev/null +++ b/data/smartphone/hisense/2019/a5-dual-sim-td-lte-cn-32gb-hlte202n.json @@ -0,0 +1,42 @@ +{ + "slug": "a5-dual-sim-td-lte-cn-32gb-hlte202n", + "name": "A5 Dual SIM TD-LTE CN 32GB HLTE202N", + "brand": "hisense", + "soc": "snapdragon-439", + "release_date": "2019-11-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 158.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.84, + "resolution": "720x1440", + "type": "mono E Ink display", + "ppi": 276 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/hisense/2019/a5-dual-sim-td-lte-cn-64gb-hlte202n.json b/data/smartphone/hisense/2019/a5-dual-sim-td-lte-cn-64gb-hlte202n.json new file mode 100644 index 00000000000..6acbe5a47ad --- /dev/null +++ b/data/smartphone/hisense/2019/a5-dual-sim-td-lte-cn-64gb-hlte202n.json @@ -0,0 +1,42 @@ +{ + "slug": "a5-dual-sim-td-lte-cn-64gb-hlte202n", + "name": "A5 Dual SIM TD-LTE CN 64GB HLTE202N", + "brand": "hisense", + "soc": "snapdragon-439", + "release_date": "2019-11-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 158.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "720x1440", + "type": "mono E Ink display", + "ppi": 276 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/hisense/2019/f40-premium-edition-td-lte-cn-128gb-hlte227t.json b/data/smartphone/hisense/2019/f40-premium-edition-td-lte-cn-128gb-hlte227t.json new file mode 100644 index 00000000000..1fd3b20093d --- /dev/null +++ b/data/smartphone/hisense/2019/f40-premium-edition-td-lte-cn-128gb-hlte227t.json @@ -0,0 +1,42 @@ +{ + "slug": "f40-premium-edition-td-lte-cn-128gb-hlte227t", + "name": "F40 Premium Edition TD-LTE CN 128GB HLTE227T", + "brand": "hisense", + "soc": "helio-p60", + "release_date": "2019-11-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/hisense/2019/f40-premium-edition-td-lte-cn-256gb-hlte227t.json b/data/smartphone/hisense/2019/f40-premium-edition-td-lte-cn-256gb-hlte227t.json new file mode 100644 index 00000000000..fa8861bc615 --- /dev/null +++ b/data/smartphone/hisense/2019/f40-premium-edition-td-lte-cn-256gb-hlte227t.json @@ -0,0 +1,42 @@ +{ + "slug": "f40-premium-edition-td-lte-cn-256gb-hlte227t", + "name": "F40 Premium Edition TD-LTE CN 256GB HLTE227T", + "brand": "hisense", + "soc": "helio-p60", + "release_date": "2019-11-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/hisense/2019/f40-standard-edition-td-lte-cn-128gb-hlte227t.json b/data/smartphone/hisense/2019/f40-standard-edition-td-lte-cn-128gb-hlte227t.json new file mode 100644 index 00000000000..d8f9bf0c6ce --- /dev/null +++ b/data/smartphone/hisense/2019/f40-standard-edition-td-lte-cn-128gb-hlte227t.json @@ -0,0 +1,42 @@ +{ + "slug": "f40-standard-edition-td-lte-cn-128gb-hlte227t", + "name": "F40 Standard Edition TD-LTE CN 128GB HLTE227T", + "brand": "hisense", + "soc": "helio-p60", + "release_date": "2019-11-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/hisense/2019/u30-dual-sim-td-lte.json b/data/smartphone/hisense/2019/u30-dual-sim-td-lte.json new file mode 100644 index 00000000000..0f22fbc4868 --- /dev/null +++ b/data/smartphone/hisense/2019/u30-dual-sim-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "u30-dual-sim-td-lte", + "name": "U30 Dual SIM TD-LTE", + "brand": "hisense", + "soc": "snapdragon-675", + "release_date": "2019-01-09", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 21.5 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/honor/2020/30.json b/data/smartphone/honor/2020/30.json new file mode 100644 index 00000000000..e81ba21dbe4 --- /dev/null +++ b/data/smartphone/honor/2020/30.json @@ -0,0 +1,29 @@ +{ + "slug": "30", + "name": "30", + "brand": "honor", + "soc": "kirin-985", + "release_date": "2020-01-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "display": { + "size_inch": 6.53 + }, + "cameras": [ + { + "type": "main", + "mp": 40.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "msrp_usd": 449 +} diff --git a/data/smartphone/honor/2020/30s.json b/data/smartphone/honor/2020/30s.json new file mode 100644 index 00000000000..fa7341233e6 --- /dev/null +++ b/data/smartphone/honor/2020/30s.json @@ -0,0 +1,29 @@ +{ + "slug": "30s", + "name": "30S", + "brand": "honor", + "soc": "kirin-820", + "release_date": "2020-01-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "display": { + "size_inch": 6.5 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "msrp_usd": 349 +} diff --git a/data/smartphone/honor/2020/x10.json b/data/smartphone/honor/2020/x10.json new file mode 100644 index 00000000000..a96d8d409ed --- /dev/null +++ b/data/smartphone/honor/2020/x10.json @@ -0,0 +1,29 @@ +{ + "slug": "x10", + "name": "X10", + "brand": "honor", + "soc": "kirin-820", + "release_date": "2020-01-01", + "ram_gb": 6.0, + "battery_mah": 4300, + "weight_g": 203.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "display": { + "size_inch": 6.63 + }, + "cameras": [ + { + "type": "main", + "mp": 40.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "msrp_usd": 319 +} diff --git a/data/smartphone/honor/2023/play-7.json b/data/smartphone/honor/2023/play-7.json new file mode 100644 index 00000000000..6b0e2d6a352 --- /dev/null +++ b/data/smartphone/honor/2023/play-7.json @@ -0,0 +1,29 @@ +{ + "slug": "play-7", + "name": "Play 7", + "brand": "honor", + "soc": "helio-g37", + "release_date": "2023-01-01", + "ram_gb": 4.0, + "battery_mah": 5200, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "display": { + "size_inch": 6.74 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "msrp_usd": 159 +} diff --git a/data/smartphone/htc/2017/u11-td-lte-64gb-u-3u.json b/data/smartphone/htc/2017/u11-td-lte-64gb-u-3u.json new file mode 100644 index 00000000000..154d0cee57f --- /dev/null +++ b/data/smartphone/htc/2017/u11-td-lte-64gb-u-3u.json @@ -0,0 +1,41 @@ +{ + "slug": "u11-td-lte-64gb-u-3u", + "name": "U11 TD-LTE 64GB U-3u", + "brand": "htc", + "soc": "snapdragon-835", + "release_date": "2017-05-26", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.5, + "resolution": "1440x2560", + "type": "Color PVA TFT LCD display", + "ppi": 534 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , India , Indonesia , Ireland , Israel , Italy , Latvia , Lithuania , Netherlands , NZ , Pakistan , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , Turkey , UK , Ukraine", + "market_regions": "Asia , Australia , Europe , Middle East , Southeast Asia" +} diff --git a/data/smartphone/htc/2018/desire-12-dual-sim-td-lte-apac-32gb.json b/data/smartphone/htc/2018/desire-12-dual-sim-td-lte-apac-32gb.json new file mode 100644 index 00000000000..18110ad2b7d --- /dev/null +++ b/data/smartphone/htc/2018/desire-12-dual-sim-td-lte-apac-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "desire-12-dual-sim-td-lte-apac-32gb", + "name": "Desire 12+ Dual SIM TD-LTE APAC 32GB", + "brand": "htc", + "soc": "snapdragon-450", + "release_date": "2018-06-02", + "ram_gb": 3.0, + "battery_mah": 2965, + "weight_g": 157.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.98, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Taiwan", + "market_regions": "Asia" +} diff --git a/data/smartphone/htc/2018/desire-12-global-dual-sim-td-lte-32gb.json b/data/smartphone/htc/2018/desire-12-global-dual-sim-td-lte-32gb.json new file mode 100644 index 00000000000..193b02cd295 --- /dev/null +++ b/data/smartphone/htc/2018/desire-12-global-dual-sim-td-lte-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "desire-12-global-dual-sim-td-lte-32gb", + "name": "Desire 12+ Global Dual SIM TD-LTE 32GB", + "brand": "htc", + "soc": "snapdragon-450", + "release_date": "2018-04-01", + "ram_gb": 3.0, + "battery_mah": 2965, + "weight_g": 157.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.98, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "France , Germany , Ireland , Italy , Russia , Spain , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/htc/2018/desire-12s-global-dual-sim-td-lte-32gb.json b/data/smartphone/htc/2018/desire-12s-global-dual-sim-td-lte-32gb.json new file mode 100644 index 00000000000..81ed8494049 --- /dev/null +++ b/data/smartphone/htc/2018/desire-12s-global-dual-sim-td-lte-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "desire-12s-global-dual-sim-td-lte-32gb", + "name": "Desire 12s Global Dual SIM TD-LTE 32GB", + "brand": "htc", + "soc": "snapdragon-435", + "release_date": "2018-12-01", + "ram_gb": 3.0, + "battery_mah": 3075, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Taiwan", + "market_regions": "Asia" +} diff --git a/data/smartphone/htc/2018/desire-12s-global-dual-sim-td-lte-64gb.json b/data/smartphone/htc/2018/desire-12s-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..3a81d017fe5 --- /dev/null +++ b/data/smartphone/htc/2018/desire-12s-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "desire-12s-global-dual-sim-td-lte-64gb", + "name": "Desire 12s Global Dual SIM TD-LTE 64GB", + "brand": "htc", + "soc": "snapdragon-435", + "release_date": "2018-12-01", + "ram_gb": 4.0, + "battery_mah": 3075, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Taiwan", + "market_regions": "Asia" +} diff --git a/data/smartphone/htc/2018/exodus-1-global-dual-sim-td-lte.json b/data/smartphone/htc/2018/exodus-1-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..502e63ac826 --- /dev/null +++ b/data/smartphone/htc/2018/exodus-1-global-dual-sim-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "exodus-1-global-dual-sim-td-lte", + "name": "Exodus 1 Global Dual SIM TD-LTE", + "brand": "htc", + "soc": "snapdragon-845", + "release_date": "2018-12-08", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1440x2880", + "type": "Color PVA TFT LCD display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , HK , Norway , NZ , Singapore , Taiwan , UK , USA", + "market_regions": "Asia , Europe , North America , Southeast Asia , Worldwide" +} diff --git a/data/smartphone/htc/2018/u12-dual-sim-td-lte-128gb.json b/data/smartphone/htc/2018/u12-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..fa45f6aadbc --- /dev/null +++ b/data/smartphone/htc/2018/u12-dual-sim-td-lte-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "u12-dual-sim-td-lte-128gb", + "name": "U12+ Dual SIM TD-LTE 128GB", + "brand": "htc", + "soc": "snapdragon-845", + "release_date": "2018-06-21", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "Color PVA TFT LCD display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Cyprus , Croatia , Czech , Denmark , Egypt , Finland , France , Germany , Greece , Hungary , India , Indonesia , Ireland , Israel , Italy , Malaysia , Netherlands , NZ , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Singapore , Slovenia , South Korea , Spain , Switzerland , Sweden , Taiwan , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Australia , Europe , Middle East , Southeast Asia" +} diff --git a/data/smartphone/htc/2018/u12-dual-sim-td-lte-64gb.json b/data/smartphone/htc/2018/u12-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..13dd7ac3e54 --- /dev/null +++ b/data/smartphone/htc/2018/u12-dual-sim-td-lte-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "u12-dual-sim-td-lte-64gb", + "name": "U12+ Dual SIM TD-LTE 64GB", + "brand": "htc", + "soc": "snapdragon-845", + "release_date": "2018-06-01", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "Color PVA TFT LCD display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Netherlands , Poland , Portugal , Russia , Romania , Slovakia , Slovenia , Spain , Sweden , Switzerland , Taiwan , Turkey , UK , Ukraine", + "market_regions": "Asia , Europe" +} diff --git a/data/smartphone/htc/2018/u12-dual-sim-td-lte-cn-128gb.json b/data/smartphone/htc/2018/u12-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..1609a5c7269 --- /dev/null +++ b/data/smartphone/htc/2018/u12-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "u12-dual-sim-td-lte-cn-128gb", + "name": "U12+ Dual SIM TD-LTE CN 128GB", + "brand": "htc", + "soc": "snapdragon-845", + "release_date": "2018-06-01", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "Color PVA TFT LCD display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/htc/2018/u12-life-global-dual-sim-td-lte.json b/data/smartphone/htc/2018/u12-life-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..c0e990d91e1 --- /dev/null +++ b/data/smartphone/htc/2018/u12-life-global-dual-sim-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "u12-life-global-dual-sim-td-lte", + "name": "U12 life Global Dual SIM TD-LTE", + "brand": "htc", + "soc": "snapdragon-636", + "release_date": "2018-10-01", + "ram_gb": 4.0, + "battery_mah": 3600, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Austria , Croatia , Czech , Denmark , Finland , France , Germany , Hungary , Ireland , Italy , Kazakhstan , Malaysia , Netherlands , Norway , Poland , Romania , Russia , Saudi Arabia , Spain , Sweden , Switzerland , Turkey , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/htc/2018/u12-mayday-limited-edition-dual-sim-td-lte.json b/data/smartphone/htc/2018/u12-mayday-limited-edition-dual-sim-td-lte.json new file mode 100644 index 00000000000..acc99bfeb3b --- /dev/null +++ b/data/smartphone/htc/2018/u12-mayday-limited-edition-dual-sim-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "u12-mayday-limited-edition-dual-sim-td-lte", + "name": "U12+ Mayday Limited Edition Dual SIM TD-LTE", + "brand": "htc", + "soc": "snapdragon-845", + "release_date": "2018-07-17", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "Color PVA TFT LCD display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Taiwan", + "market_regions": "Asia" +} diff --git a/data/smartphone/htc/2018/u12-td-lte-jp-128gb.json b/data/smartphone/htc/2018/u12-td-lte-jp-128gb.json new file mode 100644 index 00000000000..6840c36f562 --- /dev/null +++ b/data/smartphone/htc/2018/u12-td-lte-jp-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "u12-td-lte-jp-128gb", + "name": "U12+ TD-LTE JP 128GB", + "brand": "htc", + "soc": "snapdragon-845", + "release_date": "2018-07-01", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "Color PVA TFT LCD display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/htc/2018/u12-td-lte-na-128gb.json b/data/smartphone/htc/2018/u12-td-lte-na-128gb.json new file mode 100644 index 00000000000..bf78e04a251 --- /dev/null +++ b/data/smartphone/htc/2018/u12-td-lte-na-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "u12-td-lte-na-128gb", + "name": "U12+ TD-LTE NA 128GB", + "brand": "htc", + "soc": "snapdragon-845", + "release_date": "2018-06-28", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "Color PVA TFT LCD display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/htc/2018/u12-td-lte-na-64gb.json b/data/smartphone/htc/2018/u12-td-lte-na-64gb.json new file mode 100644 index 00000000000..9ee4d7fbc02 --- /dev/null +++ b/data/smartphone/htc/2018/u12-td-lte-na-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "u12-td-lte-na-64gb", + "name": "U12+ TD-LTE NA 64GB", + "brand": "htc", + "soc": "snapdragon-845", + "release_date": "2018-06-28", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "Color PVA TFT LCD display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/htc/2019/desire-19-global-dual-sim-td-lte-128gb.json b/data/smartphone/htc/2019/desire-19-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..dac1fb106a8 --- /dev/null +++ b/data/smartphone/htc/2019/desire-19-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "desire-19-global-dual-sim-td-lte-128gb", + "name": "Desire 19+ Global Dual SIM TD-LTE 128GB", + "brand": "htc", + "soc": "helio-p35", + "release_date": "2019-07-01", + "ram_gb": 6.0, + "battery_mah": 3850, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Czech , France , Germany , Hungary , Ireland , Italy , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , Spain , Taiwan , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/htc/2019/desire-19-global-dual-sim-td-lte-64gb.json b/data/smartphone/htc/2019/desire-19-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..cfad9c1ac5b --- /dev/null +++ b/data/smartphone/htc/2019/desire-19-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "desire-19-global-dual-sim-td-lte-64gb", + "name": "Desire 19+ Global Dual SIM TD-LTE 64GB", + "brand": "htc", + "soc": "helio-p35", + "release_date": "2019-07-01", + "ram_gb": 4.0, + "battery_mah": 3850, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Austria , Belarus , Belgium , Bulgaria , Cyprus , Czech , Denmark , Estonia , France , Greece , Germany , Hungary , Ireland , Italy , Kazakhstan , Latvia , Lithuania , Netherlands , Pakistan , Poland , Portugal , Romania , Russia , Serbia , Slovakia , Slovenia , Spain , Sweden , Switzerland , Taiwan , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/htc/2019/desire-19s-global-dual-sim-td-lte.json b/data/smartphone/htc/2019/desire-19s-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..3ae5a99dbdc --- /dev/null +++ b/data/smartphone/htc/2019/desire-19s-global-dual-sim-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "desire-19s-global-dual-sim-td-lte", + "name": "Desire 19s Global Dual SIM TD-LTE", + "brand": "htc", + "soc": "helio-p22", + "release_date": "2019-11-01", + "ram_gb": 3.0, + "battery_mah": 3850, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belarus , France , Germany , Ireland , Italy , Poland , Romania , Russia , Spain , Taiwan , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/htc/2019/exodus-1s-global-dual-sim-td-lte.json b/data/smartphone/htc/2019/exodus-1s-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..1faf1281a85 --- /dev/null +++ b/data/smartphone/htc/2019/exodus-1s-global-dual-sim-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "exodus-1s-global-dual-sim-td-lte", + "name": "Exodus 1s Global Dual SIM TD-LTE", + "brand": "htc", + "soc": "snapdragon-435", + "release_date": "2019-12-01", + "ram_gb": 4.0, + "battery_mah": 3075, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Austria , HK , Norway , NZ , Singapore , Taiwan , UK , USA", + "market_regions": "Asia , Eastern Europe , Europe , North America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/htc/2019/u19e-global-dual-sim-td-lte.json b/data/smartphone/htc/2019/u19e-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..7476bbe476b --- /dev/null +++ b/data/smartphone/htc/2019/u19e-global-dual-sim-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "u19e-global-dual-sim-td-lte", + "name": "U19e Global Dual SIM TD-LTE", + "brand": "htc", + "soc": "snapdragon-710", + "release_date": "2019-06-01", + "ram_gb": 6.0, + "battery_mah": 3930, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Austria , Croatia , Czech , Denmark , Finland , France , Germany , Hungary , Ireland , Italy , Kazakhstan , Malaysia , Netherlands , Norway , Poland , Romania , Russia , Saudi Arabia , Spain , Sweden , Switzerland , Taiwan , Turkey , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/htc/2019/wildfire-e1-dual-sim-td-lte.json b/data/smartphone/htc/2019/wildfire-e1-dual-sim-td-lte.json new file mode 100644 index 00000000000..d17c185dfcc --- /dev/null +++ b/data/smartphone/htc/2019/wildfire-e1-dual-sim-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "wildfire-e1-dual-sim-td-lte", + "name": "Wildfire E1 Dual SIM TD-LTE", + "brand": "htc", + "soc": "helio-p23", + "release_date": "2019-12-27", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 8, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Belarus , India , Poland , Russia , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia" +} diff --git a/data/smartphone/htc/2019/wildfire-e1-plus-dual-sim-td-lte.json b/data/smartphone/htc/2019/wildfire-e1-plus-dual-sim-td-lte.json new file mode 100644 index 00000000000..aff930e8a0e --- /dev/null +++ b/data/smartphone/htc/2019/wildfire-e1-plus-dual-sim-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "wildfire-e1-plus-dual-sim-td-lte", + "name": "Wildfire E1 Plus Dual SIM TD-LTE", + "brand": "htc", + "soc": "helio-p23", + "release_date": "2019-12-27", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 8, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Belarus , India , Poland , Russia , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia" +} diff --git a/data/smartphone/htc/2019/wildfire-x-dual-sim-td-lte-in-128gb.json b/data/smartphone/htc/2019/wildfire-x-dual-sim-td-lte-in-128gb.json new file mode 100644 index 00000000000..dbff1597a5a --- /dev/null +++ b/data/smartphone/htc/2019/wildfire-x-dual-sim-td-lte-in-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "wildfire-x-dual-sim-td-lte-in-128gb", + "name": "Wildfire X Dual SIM TD-LTE IN 128GB", + "brand": "htc", + "soc": "helio-p22", + "release_date": "2019-08-22", + "ram_gb": 4.0, + "battery_mah": 3300, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/htc/2019/wildfire-x-dual-sim-td-lte-in-32gb.json b/data/smartphone/htc/2019/wildfire-x-dual-sim-td-lte-in-32gb.json new file mode 100644 index 00000000000..a059246f370 --- /dev/null +++ b/data/smartphone/htc/2019/wildfire-x-dual-sim-td-lte-in-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "wildfire-x-dual-sim-td-lte-in-32gb", + "name": "Wildfire X Dual SIM TD-LTE IN 32GB", + "brand": "htc", + "soc": "helio-p22", + "release_date": "2019-08-22", + "ram_gb": 3.0, + "battery_mah": 3300, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/htc/2020/desire-20-pro-global-dual-sim-td-lte.json b/data/smartphone/htc/2020/desire-20-pro-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..09878aa5ace --- /dev/null +++ b/data/smartphone/htc/2020/desire-20-pro-global-dual-sim-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "desire-20-pro-global-dual-sim-td-lte", + "name": "Desire 20 Pro Global Dual SIM TD-LTE", + "brand": "htc", + "soc": "snapdragon-665", + "release_date": "2020-06-18", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 201.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Denmark , France , Germany , HK , India , Ireland , Italy , Malaysia , Netherlands , Portugal , Singapore , Spain , Switzerland , Taiwan , Thailand , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/htc/2020/u20-5g-dual-sim-lte-global.json b/data/smartphone/htc/2020/u20-5g-dual-sim-lte-global.json new file mode 100644 index 00000000000..3dd189cb812 --- /dev/null +++ b/data/smartphone/htc/2020/u20-5g-dual-sim-lte-global.json @@ -0,0 +1,42 @@ +{ + "slug": "u20-5g-dual-sim-lte-global", + "name": "U20 5G Dual SIM LTE Global", + "brand": "htc", + "soc": "snapdragon-765", + "release_date": "2020-08-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 215.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Denmark , Finland , France , Germany , Ireland , Italy , Malaysia , Netherlands , Norway , Portugal , Singapore , Spain , Sweden , Switzerland , Taiwan , Thailand , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/htc/2020/wildfire-e2-dual-sim-td-lte-32gb.json b/data/smartphone/htc/2020/wildfire-e2-dual-sim-td-lte-32gb.json new file mode 100644 index 00000000000..5814f01d4d3 --- /dev/null +++ b/data/smartphone/htc/2020/wildfire-e2-dual-sim-td-lte-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "wildfire-e2-dual-sim-td-lte-32gb", + "name": "Wildfire E2 Dual SIM TD-LTE 32GB", + "brand": "htc", + "soc": "helio-p22", + "release_date": "2020-08-06", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 173.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 276 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belarus , Poland , Russia , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/htc/2020/wildfire-e2-dual-sim-td-lte-64gb.json b/data/smartphone/htc/2020/wildfire-e2-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..f80c34b4c4f --- /dev/null +++ b/data/smartphone/htc/2020/wildfire-e2-dual-sim-td-lte-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "wildfire-e2-dual-sim-td-lte-64gb", + "name": "Wildfire E2 Dual SIM TD-LTE 64GB", + "brand": "htc", + "soc": "helio-p22", + "release_date": "2020-08-06", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 173.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 276 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belarus , Poland , Russia , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/htc/2020/wildfire-r70-dual-sim-lte-global.json b/data/smartphone/htc/2020/wildfire-r70-dual-sim-lte-global.json new file mode 100644 index 00000000000..7a2d32773e3 --- /dev/null +++ b/data/smartphone/htc/2020/wildfire-r70-dual-sim-lte-global.json @@ -0,0 +1,42 @@ +{ + "slug": "wildfire-r70-dual-sim-lte-global", + "name": "Wildfire R70 Dual SIM LTE Global", + "brand": "htc", + "soc": "helio-p23", + "release_date": "2020-03-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 263 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , Austria , Belgium , Denmark , Finland , France , Germany , India , Ireland , Italy , Malaysia , Netherlands , Norway , Portugal , Singapore , Spain , Sweden , Switzerland , Taiwan , Thailand , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/htc/2020/wildfire-r70-dual-sim-td-lte-in.json b/data/smartphone/htc/2020/wildfire-r70-dual-sim-td-lte-in.json new file mode 100644 index 00000000000..34f6dac0247 --- /dev/null +++ b/data/smartphone/htc/2020/wildfire-r70-dual-sim-td-lte-in.json @@ -0,0 +1,42 @@ +{ + "slug": "wildfire-r70-dual-sim-td-lte-in", + "name": "Wildfire R70 Dual SIM TD-LTE IN", + "brand": "htc", + "soc": "helio-p23", + "release_date": "2020-03-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 263 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2017/g-elite-plus-lte-latam-sla-l03.json b/data/smartphone/huawei/2017/g-elite-plus-lte-latam-sla-l03.json new file mode 100644 index 00000000000..fa8635a0149 --- /dev/null +++ b/data/smartphone/huawei/2017/g-elite-plus-lte-latam-sla-l03.json @@ -0,0 +1,41 @@ +{ + "slug": "g-elite-plus-lte-latam-sla-l03", + "name": "G Elite Plus LTE LATAM SLA-L03", + "brand": "huawei", + "soc": "snapdragon-425", + "release_date": "2017-12-01", + "ram_gb": 2.0, + "battery_mah": 3020, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/huawei/2017/honor-v10-standard-edition-dual-sim-td-lte-cn-bkl-tl10-64gb.json b/data/smartphone/huawei/2017/honor-v10-standard-edition-dual-sim-td-lte-cn-bkl-tl10-64gb.json new file mode 100644 index 00000000000..1a57ee748a9 --- /dev/null +++ b/data/smartphone/huawei/2017/honor-v10-standard-edition-dual-sim-td-lte-cn-bkl-tl10-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-v10-standard-edition-dual-sim-td-lte-cn-bkl-tl10-64gb", + "name": "Honor V10 Standard Edition Dual SIM TD-LTE CN BKL-TL10 64GB", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2017-12-06", + "ram_gb": 6.0, + "battery_mah": 3750, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 11.8 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2017/mate-10-pro-standard-edition-dual-sim-td-lte-bla-l29.json b/data/smartphone/huawei/2017/mate-10-pro-standard-edition-dual-sim-td-lte-bla-l29.json new file mode 100644 index 00000000000..f17794263ce --- /dev/null +++ b/data/smartphone/huawei/2017/mate-10-pro-standard-edition-dual-sim-td-lte-bla-l29.json @@ -0,0 +1,41 @@ +{ + "slug": "mate-10-pro-standard-edition-dual-sim-td-lte-bla-l29", + "name": "Mate 10 Pro Standard Edition Dual SIM TD-LTE BLA-L29", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2017-11-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 11.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Cyprus , Finland , France , Greece , Germany , HK , Hungary , India , Italy , Japan , Malaysia , Poland , Russia , Taiwan , Thailand , UAE , UK", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2017/nova-2-plus-dual-sim-lte-a-emea-bac-l21.json b/data/smartphone/huawei/2017/nova-2-plus-dual-sim-lte-a-emea-bac-l21.json new file mode 100644 index 00000000000..e49dd42911c --- /dev/null +++ b/data/smartphone/huawei/2017/nova-2-plus-dual-sim-lte-a-emea-bac-l21.json @@ -0,0 +1,41 @@ +{ + "slug": "nova-2-plus-dual-sim-lte-a-emea-bac-l21", + "name": "Nova 2 Plus Dual SIM LTE-A EMEA BAC-L21", + "brand": "huawei", + "soc": "kirin-659", + "release_date": "2017-08-01", + "ram_gb": 4.0, + "battery_mah": 3340, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.47, + "resolution": "1080x1920", + "type": "Color TN-TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 11.8 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Germany , Hungary , Poland , Saudi Arabia , UAE , UK", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2017/nova-2-plus-dual-sim-td-lte-apac-128gb-bac-l22.json b/data/smartphone/huawei/2017/nova-2-plus-dual-sim-td-lte-apac-128gb-bac-l22.json new file mode 100644 index 00000000000..c42770c3931 --- /dev/null +++ b/data/smartphone/huawei/2017/nova-2-plus-dual-sim-td-lte-apac-128gb-bac-l22.json @@ -0,0 +1,41 @@ +{ + "slug": "nova-2-plus-dual-sim-td-lte-apac-128gb-bac-l22", + "name": "Nova 2 Plus Dual SIM TD-LTE APAC 128GB BAC-L22", + "brand": "huawei", + "soc": "kirin-659", + "release_date": "2017-09-01", + "ram_gb": 4.0, + "battery_mah": 3340, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.47, + "resolution": "1080x1920", + "type": "Color TN-TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 11.8 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Malaysia , NZ", + "market_regions": "Asia , Australia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2017/nova-2-plus-lte-a-emea-bac-l01.json b/data/smartphone/huawei/2017/nova-2-plus-lte-a-emea-bac-l01.json new file mode 100644 index 00000000000..5856954d5af --- /dev/null +++ b/data/smartphone/huawei/2017/nova-2-plus-lte-a-emea-bac-l01.json @@ -0,0 +1,41 @@ +{ + "slug": "nova-2-plus-lte-a-emea-bac-l01", + "name": "Nova 2 Plus LTE-A EMEA BAC-L01", + "brand": "huawei", + "soc": "kirin-659", + "release_date": "2017-09-01", + "ram_gb": 4.0, + "battery_mah": 3340, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.47, + "resolution": "1080x1920", + "type": "Color TN-TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 11.8 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Germany , Spain , Switzerland , UK", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2017/p10-selfie-lte-a-latam-bac-l03.json b/data/smartphone/huawei/2017/p10-selfie-lte-a-latam-bac-l03.json new file mode 100644 index 00000000000..68b06b86d7f --- /dev/null +++ b/data/smartphone/huawei/2017/p10-selfie-lte-a-latam-bac-l03.json @@ -0,0 +1,41 @@ +{ + "slug": "p10-selfie-lte-a-latam-bac-l03", + "name": "P10 Selfie LTE-A LATAM BAC-L03", + "brand": "huawei", + "soc": "kirin-659", + "release_date": "2017-09-01", + "ram_gb": 4.0, + "battery_mah": 3340, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.47, + "resolution": "1080x1920", + "type": "Color TN-TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 11.8 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB C reversible" + }, + "market_countries": "Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/huawei/2017/p9-lite-mini-dual-sim-lte-latam-sla-l23.json b/data/smartphone/huawei/2017/p9-lite-mini-dual-sim-lte-latam-sla-l23.json new file mode 100644 index 00000000000..5a9fd9538ac --- /dev/null +++ b/data/smartphone/huawei/2017/p9-lite-mini-dual-sim-lte-latam-sla-l23.json @@ -0,0 +1,41 @@ +{ + "slug": "p9-lite-mini-dual-sim-lte-latam-sla-l23", + "name": "P9 lite mini Dual SIM LTE LATAM SLA-L23", + "brand": "huawei", + "soc": "snapdragon-425", + "release_date": "2017-11-01", + "ram_gb": 2.0, + "battery_mah": 3020, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Argentina , Brazil , Colombia , Peru", + "market_regions": "South America" +} diff --git a/data/smartphone/huawei/2018/enjoy-8-dual-sim-td-lte-cn-ldn-al00.json b/data/smartphone/huawei/2018/enjoy-8-dual-sim-td-lte-cn-ldn-al00.json new file mode 100644 index 00000000000..0fad8ed862a --- /dev/null +++ b/data/smartphone/huawei/2018/enjoy-8-dual-sim-td-lte-cn-ldn-al00.json @@ -0,0 +1,41 @@ +{ + "slug": "enjoy-8-dual-sim-td-lte-cn-ldn-al00", + "name": "Enjoy 8 Dual SIM TD-LTE CN LDN-AL00", + "brand": "huawei", + "soc": "snapdragon-430", + "release_date": "2018-03-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 155.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/enjoy-8-dual-sim-td-lte-cn-ldn-tl10-y7-prime-2018-ldn-tl30-ldn-tl40.json b/data/smartphone/huawei/2018/enjoy-8-dual-sim-td-lte-cn-ldn-tl10-y7-prime-2018-ldn-tl30-ldn-tl40.json new file mode 100644 index 00000000000..4bcf46f3a34 --- /dev/null +++ b/data/smartphone/huawei/2018/enjoy-8-dual-sim-td-lte-cn-ldn-tl10-y7-prime-2018-ldn-tl30-ldn-tl40.json @@ -0,0 +1,41 @@ +{ + "slug": "enjoy-8-dual-sim-td-lte-cn-ldn-tl10-y7-prime-2018-ldn-tl30-ldn-tl40", + "name": "Enjoy 8 Dual SIM TD-LTE CN LDN-TL10 / Y7 Prime 2018 LDN-TL30 / LDN-TL40", + "brand": "huawei", + "soc": "snapdragon-430", + "release_date": "2018-03-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 155.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/enjoy-8-plus-dual-sim-td-lte-cn-fla-al00-32gb.json b/data/smartphone/huawei/2018/enjoy-8-plus-dual-sim-td-lte-cn-fla-al00-32gb.json new file mode 100644 index 00000000000..01789c61ec7 --- /dev/null +++ b/data/smartphone/huawei/2018/enjoy-8-plus-dual-sim-td-lte-cn-fla-al00-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "enjoy-8-plus-dual-sim-td-lte-cn-fla-al00-32gb", + "name": "Enjoy 8 Plus Dual SIM TD-LTE CN FLA-AL00 32GB", + "brand": "huawei", + "soc": "kirin-659", + "release_date": "2018-03-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.93, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 407 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/enjoy-8-plus-dual-sim-td-lte-cn-fla-al10-64gb.json b/data/smartphone/huawei/2018/enjoy-8-plus-dual-sim-td-lte-cn-fla-al10-64gb.json new file mode 100644 index 00000000000..c8eced7a9cb --- /dev/null +++ b/data/smartphone/huawei/2018/enjoy-8-plus-dual-sim-td-lte-cn-fla-al10-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "enjoy-8-plus-dual-sim-td-lte-cn-fla-al10-64gb", + "name": "Enjoy 8 Plus Dual SIM TD-LTE CN FLA-AL10 64GB", + "brand": "huawei", + "soc": "kirin-659", + "release_date": "2018-03-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.93, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 407 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/enjoy-8-plus-dual-sim-td-lte-cn-fla-al20-128gb.json b/data/smartphone/huawei/2018/enjoy-8-plus-dual-sim-td-lte-cn-fla-al20-128gb.json new file mode 100644 index 00000000000..6ad5dc346e9 --- /dev/null +++ b/data/smartphone/huawei/2018/enjoy-8-plus-dual-sim-td-lte-cn-fla-al20-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "enjoy-8-plus-dual-sim-td-lte-cn-fla-al20-128gb", + "name": "Enjoy 8 Plus Dual SIM TD-LTE CN FLA-AL20 128GB", + "brand": "huawei", + "soc": "kirin-659", + "release_date": "2018-03-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.93, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 407 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/enjoy-8-plus-dual-sim-td-lte-cn-fla-tl00-32gb.json b/data/smartphone/huawei/2018/enjoy-8-plus-dual-sim-td-lte-cn-fla-tl00-32gb.json new file mode 100644 index 00000000000..3580512232e --- /dev/null +++ b/data/smartphone/huawei/2018/enjoy-8-plus-dual-sim-td-lte-cn-fla-tl00-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "enjoy-8-plus-dual-sim-td-lte-cn-fla-tl00-32gb", + "name": "Enjoy 8 Plus Dual SIM TD-LTE CN FLA-TL00 32GB", + "brand": "huawei", + "soc": "kirin-659", + "release_date": "2018-03-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.93, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 407 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/enjoy-8e-dual-sim-td-lte-cn-atu-al10.json b/data/smartphone/huawei/2018/enjoy-8e-dual-sim-td-lte-cn-atu-al10.json new file mode 100644 index 00000000000..0e06b3b9ac6 --- /dev/null +++ b/data/smartphone/huawei/2018/enjoy-8e-dual-sim-td-lte-cn-atu-al10.json @@ -0,0 +1,41 @@ +{ + "slug": "enjoy-8e-dual-sim-td-lte-cn-atu-al10", + "name": "Enjoy 8e Dual SIM TD-LTE CN ATU-AL10", + "brand": "huawei", + "soc": "snapdragon-430", + "release_date": "2018-03-29", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/enjoy-8e-dual-sim-td-lte-cn-atu-tl10.json b/data/smartphone/huawei/2018/enjoy-8e-dual-sim-td-lte-cn-atu-tl10.json new file mode 100644 index 00000000000..e4bf2108b06 --- /dev/null +++ b/data/smartphone/huawei/2018/enjoy-8e-dual-sim-td-lte-cn-atu-tl10.json @@ -0,0 +1,41 @@ +{ + "slug": "enjoy-8e-dual-sim-td-lte-cn-atu-tl10", + "name": "Enjoy 8e Dual SIM TD-LTE CN ATU-TL10", + "brand": "huawei", + "soc": "snapdragon-430", + "release_date": "2018-03-29", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/enjoy-9-dual-sim-td-lte-cn-dub-al00.json b/data/smartphone/huawei/2018/enjoy-9-dual-sim-td-lte-cn-dub-al00.json new file mode 100644 index 00000000000..c1ec93828eb --- /dev/null +++ b/data/smartphone/huawei/2018/enjoy-9-dual-sim-td-lte-cn-dub-al00.json @@ -0,0 +1,41 @@ +{ + "slug": "enjoy-9-dual-sim-td-lte-cn-dub-al00", + "name": "Enjoy 9 Dual SIM TD-LTE CN DUB-AL00", + "brand": "huawei", + "soc": "snapdragon-450", + "release_date": "2018-12-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/enjoy-9-dual-sim-td-lte-cn-dub-al20-64gb.json b/data/smartphone/huawei/2018/enjoy-9-dual-sim-td-lte-cn-dub-al20-64gb.json new file mode 100644 index 00000000000..ae47382082e --- /dev/null +++ b/data/smartphone/huawei/2018/enjoy-9-dual-sim-td-lte-cn-dub-al20-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "enjoy-9-dual-sim-td-lte-cn-dub-al20-64gb", + "name": "Enjoy 9 Dual SIM TD-LTE CN DUB-AL20 64GB", + "brand": "huawei", + "soc": "snapdragon-450", + "release_date": "2018-12-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/enjoy-9-dual-sim-td-lte-cn-dub-tl00.json b/data/smartphone/huawei/2018/enjoy-9-dual-sim-td-lte-cn-dub-tl00.json new file mode 100644 index 00000000000..14452142d3e --- /dev/null +++ b/data/smartphone/huawei/2018/enjoy-9-dual-sim-td-lte-cn-dub-tl00.json @@ -0,0 +1,41 @@ +{ + "slug": "enjoy-9-dual-sim-td-lte-cn-dub-tl00", + "name": "Enjoy 9 Dual SIM TD-LTE CN DUB-TL00", + "brand": "huawei", + "soc": "snapdragon-450", + "release_date": "2018-12-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/enjoy-9-max-dual-sim-td-lte-cn-ars-al00-128gb-changxiang-max.json b/data/smartphone/huawei/2018/enjoy-9-max-dual-sim-td-lte-cn-ars-al00-128gb-changxiang-max.json new file mode 100644 index 00000000000..2e3fe07fdde --- /dev/null +++ b/data/smartphone/huawei/2018/enjoy-9-max-dual-sim-td-lte-cn-ars-al00-128gb-changxiang-max.json @@ -0,0 +1,41 @@ +{ + "slug": "enjoy-9-max-dual-sim-td-lte-cn-ars-al00-128gb-changxiang-max", + "name": "Enjoy 9 Max Dual SIM TD-LTE CN ARS-AL00 128GB / Changxiang Max", + "brand": "huawei", + "soc": "snapdragon-660", + "release_date": "2018-10-21", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 7.12, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 350 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/enjoy-9-max-dual-sim-td-lte-cn-ars-al00-64gb-changxiang-max.json b/data/smartphone/huawei/2018/enjoy-9-max-dual-sim-td-lte-cn-ars-al00-64gb-changxiang-max.json new file mode 100644 index 00000000000..d3fa0beb6b3 --- /dev/null +++ b/data/smartphone/huawei/2018/enjoy-9-max-dual-sim-td-lte-cn-ars-al00-64gb-changxiang-max.json @@ -0,0 +1,41 @@ +{ + "slug": "enjoy-9-max-dual-sim-td-lte-cn-ars-al00-64gb-changxiang-max", + "name": "Enjoy 9 Max Dual SIM TD-LTE CN ARS-AL00 64GB / Changxiang Max", + "brand": "huawei", + "soc": "snapdragon-660", + "release_date": "2018-10-21", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 7.12, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 350 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/enjoy-9-max-dual-sim-td-lte-cn-ars-tl00-64gb.json b/data/smartphone/huawei/2018/enjoy-9-max-dual-sim-td-lte-cn-ars-tl00-64gb.json new file mode 100644 index 00000000000..8b67418f8bd --- /dev/null +++ b/data/smartphone/huawei/2018/enjoy-9-max-dual-sim-td-lte-cn-ars-tl00-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "enjoy-9-max-dual-sim-td-lte-cn-ars-tl00-64gb", + "name": "Enjoy 9 Max Dual SIM TD-LTE CN ARS-TL00 64GB", + "brand": "huawei", + "soc": "snapdragon-660", + "release_date": "2018-10-21", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 7.12, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 350 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/enjoy-9-plus-premium-edition-dual-sim-td-lte-cn-jkm-al00-128gb.json b/data/smartphone/huawei/2018/enjoy-9-plus-premium-edition-dual-sim-td-lte-cn-jkm-al00-128gb.json new file mode 100644 index 00000000000..f4aa64b563d --- /dev/null +++ b/data/smartphone/huawei/2018/enjoy-9-plus-premium-edition-dual-sim-td-lte-cn-jkm-al00-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "enjoy-9-plus-premium-edition-dual-sim-td-lte-cn-jkm-al00-128gb", + "name": "Enjoy 9 Plus Premium Edition Dual SIM TD-LTE CN JKM-AL00 128GB", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2018-10-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/enjoy-9-plus-standard-edition-dual-sim-td-lte-cn-128gb-jkm-al00-jkm-al00b.json b/data/smartphone/huawei/2018/enjoy-9-plus-standard-edition-dual-sim-td-lte-cn-128gb-jkm-al00-jkm-al00b.json new file mode 100644 index 00000000000..e830f510c5b --- /dev/null +++ b/data/smartphone/huawei/2018/enjoy-9-plus-standard-edition-dual-sim-td-lte-cn-128gb-jkm-al00-jkm-al00b.json @@ -0,0 +1,41 @@ +{ + "slug": "enjoy-9-plus-standard-edition-dual-sim-td-lte-cn-128gb-jkm-al00-jkm-al00b", + "name": "Enjoy 9 Plus Standard Edition Dual SIM TD-LTE CN 128GB JKM-AL00 / JKM-AL00B", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2018-10-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/enjoy-9-plus-standard-edition-dual-sim-td-lte-cn-jkm-al00-64gb.json b/data/smartphone/huawei/2018/enjoy-9-plus-standard-edition-dual-sim-td-lte-cn-jkm-al00-64gb.json new file mode 100644 index 00000000000..4304334bba2 --- /dev/null +++ b/data/smartphone/huawei/2018/enjoy-9-plus-standard-edition-dual-sim-td-lte-cn-jkm-al00-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "enjoy-9-plus-standard-edition-dual-sim-td-lte-cn-jkm-al00-64gb", + "name": "Enjoy 9 Plus Standard Edition Dual SIM TD-LTE CN JKM-AL00 64GB", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2018-10-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/honor-10-4g-premium-edition-dual-sim-td-lte-cn-col-tl10-128gb.json b/data/smartphone/huawei/2018/honor-10-4g-premium-edition-dual-sim-td-lte-cn-col-tl10-128gb.json new file mode 100644 index 00000000000..04c4019aefa --- /dev/null +++ b/data/smartphone/huawei/2018/honor-10-4g-premium-edition-dual-sim-td-lte-cn-col-tl10-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-10-4g-premium-edition-dual-sim-td-lte-cn-col-tl10-128gb", + "name": "Honor 10 4G+ Premium Edition Dual SIM TD-LTE CN COL-TL10 128GB", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-05-01", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 153.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/honor-10-global-dual-sim-td-lte-128gb-col-l29.json b/data/smartphone/huawei/2018/honor-10-global-dual-sim-td-lte-128gb-col-l29.json new file mode 100644 index 00000000000..ac5385e82b6 --- /dev/null +++ b/data/smartphone/huawei/2018/honor-10-global-dual-sim-td-lte-128gb-col-l29.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-10-global-dual-sim-td-lte-128gb-col-l29", + "name": "Honor 10 Global Dual SIM TD-LTE 128GB COL-L29", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-05-16", + "ram_gb": 4.0, + "battery_mah": 3400, + "weight_g": 153.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Canada , Cyprus , Czech , Egypt , Finland , Greece , Germany , Hungary , India , Indonesia , Italy , Japan , Malaysia , Netherlands , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , South Africa , Spain , Sweden , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2018/honor-10-global-dual-sim-td-lte-64gb-col-l29.json b/data/smartphone/huawei/2018/honor-10-global-dual-sim-td-lte-64gb-col-l29.json new file mode 100644 index 00000000000..f17eba8103a --- /dev/null +++ b/data/smartphone/huawei/2018/honor-10-global-dual-sim-td-lte-64gb-col-l29.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-10-global-dual-sim-td-lte-64gb-col-l29", + "name": "Honor 10 Global Dual SIM TD-LTE 64GB COL-L29", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-05-16", + "ram_gb": 4.0, + "battery_mah": 3400, + "weight_g": 153.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Canada , Cyprus , Czech , Egypt , Finland , Greece , Germany , Hungary , India , Indonesia , Italy , Japan , Malaysia , Netherlands , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , South Africa , Spain , Sweden , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2018/honor-10-gt-dual-sim-td-lte-cn.json b/data/smartphone/huawei/2018/honor-10-gt-dual-sim-td-lte-cn.json new file mode 100644 index 00000000000..a6e457c6397 --- /dev/null +++ b/data/smartphone/huawei/2018/honor-10-gt-dual-sim-td-lte-cn.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-10-gt-dual-sim-td-lte-cn", + "name": "Honor 10 GT Dual SIM TD-LTE CN", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-07-24", + "ram_gb": 8.0, + "battery_mah": 3400, + "weight_g": 153.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/honor-10-lite-premium-edition-dual-sim-td-lte-cn-128gb-hry-al00.json b/data/smartphone/huawei/2018/honor-10-lite-premium-edition-dual-sim-td-lte-cn-128gb-hry-al00.json new file mode 100644 index 00000000000..fff2c869c08 --- /dev/null +++ b/data/smartphone/huawei/2018/honor-10-lite-premium-edition-dual-sim-td-lte-cn-128gb-hry-al00.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-10-lite-premium-edition-dual-sim-td-lte-cn-128gb-hry-al00", + "name": "Honor 10 Lite Premium Edition Dual SIM TD-LTE CN 128GB HRY-AL00", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2018-11-22", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/honor-10-lite-premium-edition-dual-sim-td-lte-cn-64gb-hry-tl00-honor-10-youth.json b/data/smartphone/huawei/2018/honor-10-lite-premium-edition-dual-sim-td-lte-cn-64gb-hry-tl00-honor-10-youth.json new file mode 100644 index 00000000000..2908081e615 --- /dev/null +++ b/data/smartphone/huawei/2018/honor-10-lite-premium-edition-dual-sim-td-lte-cn-64gb-hry-tl00-honor-10-youth.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-10-lite-premium-edition-dual-sim-td-lte-cn-64gb-hry-tl00-honor-10-youth", + "name": "Honor 10 Lite Premium Edition Dual SIM TD-LTE CN 64GB HRY-TL00 / Honor 10 Youth", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2018-11-22", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/honor-10-lite-premium-edition-dual-sim-td-lte-cn-in-64gb-hry-al00a-honor-10-youth.json b/data/smartphone/huawei/2018/honor-10-lite-premium-edition-dual-sim-td-lte-cn-in-64gb-hry-al00a-honor-10-youth.json new file mode 100644 index 00000000000..0d1fe1b10a5 --- /dev/null +++ b/data/smartphone/huawei/2018/honor-10-lite-premium-edition-dual-sim-td-lte-cn-in-64gb-hry-al00a-honor-10-youth.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-10-lite-premium-edition-dual-sim-td-lte-cn-in-64gb-hry-al00a-honor-10-youth", + "name": "Honor 10 Lite Premium Edition Dual SIM TD-LTE CN IN 64GB HRY-AL00a / Honor 10 Youth", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2018-11-22", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China , India", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/honor-10-lite-standard-edition-dual-sim-td-lte-cn-in-64gb-hry-al00.json b/data/smartphone/huawei/2018/honor-10-lite-standard-edition-dual-sim-td-lte-cn-in-64gb-hry-al00.json new file mode 100644 index 00000000000..dda7bd583a3 --- /dev/null +++ b/data/smartphone/huawei/2018/honor-10-lite-standard-edition-dual-sim-td-lte-cn-in-64gb-hry-al00.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-10-lite-standard-edition-dual-sim-td-lte-cn-in-64gb-hry-al00", + "name": "Honor 10 Lite Standard Edition Dual SIM TD-LTE CN IN 64GB HRY-AL00", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2018-11-22", + "ram_gb": 4.0, + "battery_mah": 3400, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China , India", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/honor-10-premium-edition-dual-sim-td-lte-cn-col-al10-128gb.json b/data/smartphone/huawei/2018/honor-10-premium-edition-dual-sim-td-lte-cn-col-al10-128gb.json new file mode 100644 index 00000000000..015ed10aaf7 --- /dev/null +++ b/data/smartphone/huawei/2018/honor-10-premium-edition-dual-sim-td-lte-cn-col-al10-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-10-premium-edition-dual-sim-td-lte-cn-col-al10-128gb", + "name": "Honor 10 Premium Edition Dual SIM TD-LTE CN COL-AL10 128GB", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-04-27", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 153.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/honor-10-premium-edition-dual-sim-td-lte-cn-col-al10-64gb.json b/data/smartphone/huawei/2018/honor-10-premium-edition-dual-sim-td-lte-cn-col-al10-64gb.json new file mode 100644 index 00000000000..f88488f75d6 --- /dev/null +++ b/data/smartphone/huawei/2018/honor-10-premium-edition-dual-sim-td-lte-cn-col-al10-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-10-premium-edition-dual-sim-td-lte-cn-col-al10-64gb", + "name": "Honor 10 Premium Edition Dual SIM TD-LTE CN COL-AL10 64GB", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-04-27", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 153.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/honor-10-standard-edition-dual-sim-td-lte-cn-col-al00-64gb.json b/data/smartphone/huawei/2018/honor-10-standard-edition-dual-sim-td-lte-cn-col-al00-64gb.json new file mode 100644 index 00000000000..2f7f6c488b7 --- /dev/null +++ b/data/smartphone/huawei/2018/honor-10-standard-edition-dual-sim-td-lte-cn-col-al00-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-10-standard-edition-dual-sim-td-lte-cn-col-al00-64gb", + "name": "Honor 10 Standard Edition Dual SIM TD-LTE CN COL-AL00 64GB", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-04-27", + "ram_gb": 4.0, + "battery_mah": 3400, + "weight_g": 153.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/honor-7a-pro-dual-sim-lte-emea-aum-l29.json b/data/smartphone/huawei/2018/honor-7a-pro-dual-sim-lte-emea-aum-l29.json new file mode 100644 index 00000000000..49e5a5b0f8e --- /dev/null +++ b/data/smartphone/huawei/2018/honor-7a-pro-dual-sim-lte-emea-aum-l29.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-7a-pro-dual-sim-lte-emea-aum-l29", + "name": "Honor 7A Pro Dual SIM LTE EMEA AUM-L29", + "brand": "huawei", + "soc": "snapdragon-425", + "release_date": "2018-05-01", + "ram_gb": 2.0, + "battery_mah": 3020, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Bulgaria , Czech , Estonia , Hungary , Latvia , Lithuania , Poland , Russia , Slovakia , Slovenia , Spain , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/huawei/2018/honor-8c-global-dual-sim-td-lte-bkk-lx1-64gb-bkk-l21.json b/data/smartphone/huawei/2018/honor-8c-global-dual-sim-td-lte-bkk-lx1-64gb-bkk-l21.json new file mode 100644 index 00000000000..ec1a8623a7b --- /dev/null +++ b/data/smartphone/huawei/2018/honor-8c-global-dual-sim-td-lte-bkk-lx1-64gb-bkk-l21.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-8c-global-dual-sim-td-lte-bkk-lx1-64gb-bkk-l21", + "name": "Honor 8C Global Dual SIM TD-LTE BKK-LX1 64GB / BKK-L21", + "brand": "huawei", + "soc": "snapdragon-632", + "release_date": "2018-11-29", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 167.2, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "France , Germany , India , Russia", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2018/honor-8x-dual-sim-lte-a-emea-128gb-jsn-l21.json b/data/smartphone/huawei/2018/honor-8x-dual-sim-lte-a-emea-128gb-jsn-l21.json new file mode 100644 index 00000000000..4f66fba9ec6 --- /dev/null +++ b/data/smartphone/huawei/2018/honor-8x-dual-sim-lte-a-emea-128gb-jsn-l21.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-8x-dual-sim-lte-a-emea-128gb-jsn-l21", + "name": "Honor 8X Dual SIM LTE-A EMEA 128GB JSN-L21", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2018-10-18", + "ram_gb": 4.0, + "battery_mah": 3750, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 19.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Belarus , Bulgaria , Cyprus , Czech , Egypt , Finland , France , Greece , Hungary , Italy , Poland , Russia , Saudi Arabia , Serbia , South Africa , Spain , UAE , UK , Ukraine", + "market_regions": "Africa , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2018/honor-8x-dual-sim-lte-a-latam-64gb-jsn-lx3-jsn-l23.json b/data/smartphone/huawei/2018/honor-8x-dual-sim-lte-a-latam-64gb-jsn-lx3-jsn-l23.json new file mode 100644 index 00000000000..f472b3ef635 --- /dev/null +++ b/data/smartphone/huawei/2018/honor-8x-dual-sim-lte-a-latam-64gb-jsn-lx3-jsn-l23.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-8x-dual-sim-lte-a-latam-64gb-jsn-lx3-jsn-l23", + "name": "Honor 8X Dual SIM LTE-A LATAM 64GB JSN-LX3 / JSN-L23", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2018-11-01", + "ram_gb": 4.0, + "battery_mah": 3750, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 19.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Colombia , Mexico , Peru", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/huawei/2018/honor-8x-dual-sim-td-lte-apac-128gb-jsn-lx2-jsn-l22.json b/data/smartphone/huawei/2018/honor-8x-dual-sim-td-lte-apac-128gb-jsn-lx2-jsn-l22.json new file mode 100644 index 00000000000..8a19c4ad697 --- /dev/null +++ b/data/smartphone/huawei/2018/honor-8x-dual-sim-td-lte-apac-128gb-jsn-lx2-jsn-l22.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-8x-dual-sim-td-lte-apac-128gb-jsn-lx2-jsn-l22", + "name": "Honor 8X Dual SIM TD-LTE APAC 128GB JSN-LX2 / JSN-L22", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2018-10-18", + "ram_gb": 4.0, + "battery_mah": 3750, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 19.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Egypt , HK , Iran , Malaysia , Pakistan , Philippines , Saudi Arabia , Singapore , UAE", + "market_regions": "Asia , Middle East , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/honor-8x-dual-sim-td-lte-in-128gb-jsn-l42.json b/data/smartphone/huawei/2018/honor-8x-dual-sim-td-lte-in-128gb-jsn-l42.json new file mode 100644 index 00000000000..4e5cd2f787c --- /dev/null +++ b/data/smartphone/huawei/2018/honor-8x-dual-sim-td-lte-in-128gb-jsn-l42.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-8x-dual-sim-td-lte-in-128gb-jsn-l42", + "name": "Honor 8X Dual SIM TD-LTE IN 128GB JSN-L42", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2018-07-01", + "ram_gb": 4.0, + "battery_mah": 3750, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 19.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/honor-8x-max-4g-standard-edition-dual-sim-td-lte-cn-128gb-are-tl00.json b/data/smartphone/huawei/2018/honor-8x-max-4g-standard-edition-dual-sim-td-lte-cn-128gb-are-tl00.json new file mode 100644 index 00000000000..ab024523f95 --- /dev/null +++ b/data/smartphone/huawei/2018/honor-8x-max-4g-standard-edition-dual-sim-td-lte-cn-128gb-are-tl00.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-8x-max-4g-standard-edition-dual-sim-td-lte-cn-128gb-are-tl00", + "name": "Honor 8X Max 4G+ Standard Edition Dual SIM TD-LTE CN 128GB ARE-TL00", + "brand": "huawei", + "soc": "snapdragon-636", + "release_date": "2018-09-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 7.12, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 350 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/honor-8x-max-premium-edition-dual-sim-td-lte-cn-64gb-are-al10.json b/data/smartphone/huawei/2018/honor-8x-max-premium-edition-dual-sim-td-lte-cn-64gb-are-al10.json new file mode 100644 index 00000000000..6e392acd88f --- /dev/null +++ b/data/smartphone/huawei/2018/honor-8x-max-premium-edition-dual-sim-td-lte-cn-64gb-are-al10.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-8x-max-premium-edition-dual-sim-td-lte-cn-64gb-are-al10", + "name": "Honor 8X Max Premium Edition Dual SIM TD-LTE CN 64GB ARE-AL10", + "brand": "huawei", + "soc": "snapdragon-660", + "release_date": "2018-09-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 7.12, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 350 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/honor-8x-max-standard-edition-dual-sim-td-lte-cn-128gb-are-al00.json b/data/smartphone/huawei/2018/honor-8x-max-standard-edition-dual-sim-td-lte-cn-128gb-are-al00.json new file mode 100644 index 00000000000..cfedd359e57 --- /dev/null +++ b/data/smartphone/huawei/2018/honor-8x-max-standard-edition-dual-sim-td-lte-cn-128gb-are-al00.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-8x-max-standard-edition-dual-sim-td-lte-cn-128gb-are-al00", + "name": "Honor 8X Max Standard Edition Dual SIM TD-LTE CN 128GB ARE-AL00", + "brand": "huawei", + "soc": "snapdragon-636", + "release_date": "2018-09-11", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 7.12, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 350 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/honor-8x-max-standard-edition-dual-sim-td-lte-cn-64gb-are-al00.json b/data/smartphone/huawei/2018/honor-8x-max-standard-edition-dual-sim-td-lte-cn-64gb-are-al00.json new file mode 100644 index 00000000000..5d936c66a69 --- /dev/null +++ b/data/smartphone/huawei/2018/honor-8x-max-standard-edition-dual-sim-td-lte-cn-64gb-are-al00.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-8x-max-standard-edition-dual-sim-td-lte-cn-64gb-are-al00", + "name": "Honor 8X Max Standard Edition Dual SIM TD-LTE CN 64GB ARE-AL00", + "brand": "huawei", + "soc": "snapdragon-636", + "release_date": "2018-09-11", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 7.12, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 350 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/honor-8x-premium-edition-dual-sim-td-lte-cn-128gb-jsn-al00a.json b/data/smartphone/huawei/2018/honor-8x-premium-edition-dual-sim-td-lte-cn-128gb-jsn-al00a.json new file mode 100644 index 00000000000..b1530b6bafc --- /dev/null +++ b/data/smartphone/huawei/2018/honor-8x-premium-edition-dual-sim-td-lte-cn-128gb-jsn-al00a.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-8x-premium-edition-dual-sim-td-lte-cn-128gb-jsn-al00a", + "name": "Honor 8X Premium Edition Dual SIM TD-LTE CN 128GB JSN-AL00a", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2018-09-01", + "ram_gb": 6.0, + "battery_mah": 3750, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 19.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/honor-8x-premium-edition-dual-sim-td-lte-cn-64gb-jsn-al00a.json b/data/smartphone/huawei/2018/honor-8x-premium-edition-dual-sim-td-lte-cn-64gb-jsn-al00a.json new file mode 100644 index 00000000000..213bb46badb --- /dev/null +++ b/data/smartphone/huawei/2018/honor-8x-premium-edition-dual-sim-td-lte-cn-64gb-jsn-al00a.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-8x-premium-edition-dual-sim-td-lte-cn-64gb-jsn-al00a", + "name": "Honor 8X Premium Edition Dual SIM TD-LTE CN 64GB JSN-AL00a", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2018-09-11", + "ram_gb": 6.0, + "battery_mah": 3750, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 19.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/honor-8x-standard-edition-dual-sim-td-lte-cn-64gb-jsn-al00.json b/data/smartphone/huawei/2018/honor-8x-standard-edition-dual-sim-td-lte-cn-64gb-jsn-al00.json new file mode 100644 index 00000000000..1497f2724fa --- /dev/null +++ b/data/smartphone/huawei/2018/honor-8x-standard-edition-dual-sim-td-lte-cn-64gb-jsn-al00.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-8x-standard-edition-dual-sim-td-lte-cn-64gb-jsn-al00", + "name": "Honor 8X Standard Edition Dual SIM TD-LTE CN 64GB JSN-AL00", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2018-09-11", + "ram_gb": 4.0, + "battery_mah": 3750, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 19.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/honor-8x-standard-edition-dual-sim-td-lte-cn-64gb-jsn-tl00.json b/data/smartphone/huawei/2018/honor-8x-standard-edition-dual-sim-td-lte-cn-64gb-jsn-tl00.json new file mode 100644 index 00000000000..c4efe3205af --- /dev/null +++ b/data/smartphone/huawei/2018/honor-8x-standard-edition-dual-sim-td-lte-cn-64gb-jsn-tl00.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-8x-standard-edition-dual-sim-td-lte-cn-64gb-jsn-tl00", + "name": "Honor 8X Standard Edition Dual SIM TD-LTE CN 64GB JSN-TL00", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2018-09-11", + "ram_gb": 4.0, + "battery_mah": 3750, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 19.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/honor-9i-2018-dual-sim-td-lte-cn-128gb-lld-al30-honor-9n.json b/data/smartphone/huawei/2018/honor-9i-2018-dual-sim-td-lte-cn-128gb-lld-al30-honor-9n.json new file mode 100644 index 00000000000..27172f3543e --- /dev/null +++ b/data/smartphone/huawei/2018/honor-9i-2018-dual-sim-td-lte-cn-128gb-lld-al30-honor-9n.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-9i-2018-dual-sim-td-lte-cn-128gb-lld-al30-honor-9n", + "name": "Honor 9i 2018 Dual SIM TD-LTE CN 128GB LLD-AL30 / Honor 9N", + "brand": "huawei", + "soc": "kirin-659", + "release_date": "2018-07-31", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 152.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , India", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/honor-9i-2018-dual-sim-td-lte-cn-64gb-lld-al20-honor-9n.json b/data/smartphone/huawei/2018/honor-9i-2018-dual-sim-td-lte-cn-64gb-lld-al20-honor-9n.json new file mode 100644 index 00000000000..5032b4d962c --- /dev/null +++ b/data/smartphone/huawei/2018/honor-9i-2018-dual-sim-td-lte-cn-64gb-lld-al20-honor-9n.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-9i-2018-dual-sim-td-lte-cn-64gb-lld-al20-honor-9n", + "name": "Honor 9i 2018 Dual SIM TD-LTE CN 64GB LLD-AL20 / Honor 9N", + "brand": "huawei", + "soc": "kirin-659", + "release_date": "2018-06-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 152.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , India", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/honor-changwan-7a-dual-sim-td-lte-cn-aum-al00-honor-play-7a.json b/data/smartphone/huawei/2018/honor-changwan-7a-dual-sim-td-lte-cn-aum-al00-honor-play-7a.json new file mode 100644 index 00000000000..1f360e83374 --- /dev/null +++ b/data/smartphone/huawei/2018/honor-changwan-7a-dual-sim-td-lte-cn-aum-al00-honor-play-7a.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-changwan-7a-dual-sim-td-lte-cn-aum-al00-honor-play-7a", + "name": "Honor Changwan 7A Dual SIM TD-LTE CN AUM-AL00 / Honor Play 7A", + "brand": "huawei", + "soc": "snapdragon-430", + "release_date": "2018-04-04", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/honor-changwan-7a-dual-sim-td-lte-cn-aum-al20.json b/data/smartphone/huawei/2018/honor-changwan-7a-dual-sim-td-lte-cn-aum-al20.json new file mode 100644 index 00000000000..4b0ad63a00f --- /dev/null +++ b/data/smartphone/huawei/2018/honor-changwan-7a-dual-sim-td-lte-cn-aum-al20.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-changwan-7a-dual-sim-td-lte-cn-aum-al20", + "name": "Honor Changwan 7A Dual SIM TD-LTE CN AUM-AL20", + "brand": "huawei", + "soc": "snapdragon-430", + "release_date": "2018-04-04", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China , India", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/honor-changwan-7a-dual-sim-td-lte-cn-aum-tl20.json b/data/smartphone/huawei/2018/honor-changwan-7a-dual-sim-td-lte-cn-aum-tl20.json new file mode 100644 index 00000000000..a2bbd8dd5d5 --- /dev/null +++ b/data/smartphone/huawei/2018/honor-changwan-7a-dual-sim-td-lte-cn-aum-tl20.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-changwan-7a-dual-sim-td-lte-cn-aum-tl20", + "name": "Honor Changwan 7A Dual SIM TD-LTE CN AUM-TL20", + "brand": "huawei", + "soc": "snapdragon-430", + "release_date": "2018-04-04", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/honor-changwan-7c-dual-sim-td-lte-cn-lnd-al30-honor-play-7c.json b/data/smartphone/huawei/2018/honor-changwan-7c-dual-sim-td-lte-cn-lnd-al30-honor-play-7c.json new file mode 100644 index 00000000000..bcbf9d0ec33 --- /dev/null +++ b/data/smartphone/huawei/2018/honor-changwan-7c-dual-sim-td-lte-cn-lnd-al30-honor-play-7c.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-changwan-7c-dual-sim-td-lte-cn-lnd-al30-honor-play-7c", + "name": "Honor Changwan 7C Dual SIM TD-LTE CN LND-AL30 / Honor Play 7C", + "brand": "huawei", + "soc": "snapdragon-450", + "release_date": "2018-03-13", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China , India", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/honor-changwan-7c-dual-sim-td-lte-cn-lnd-al40-honor-play-7c.json b/data/smartphone/huawei/2018/honor-changwan-7c-dual-sim-td-lte-cn-lnd-al40-honor-play-7c.json new file mode 100644 index 00000000000..07cc4d3b4e1 --- /dev/null +++ b/data/smartphone/huawei/2018/honor-changwan-7c-dual-sim-td-lte-cn-lnd-al40-honor-play-7c.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-changwan-7c-dual-sim-td-lte-cn-lnd-al40-honor-play-7c", + "name": "Honor Changwan 7C Dual SIM TD-LTE CN LND-AL40 / Honor Play 7C", + "brand": "huawei", + "soc": "snapdragon-450", + "release_date": "2018-03-13", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China , India", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/honor-changwan-7c-dual-sim-td-lte-cn-lnd-tl30.json b/data/smartphone/huawei/2018/honor-changwan-7c-dual-sim-td-lte-cn-lnd-tl30.json new file mode 100644 index 00000000000..02b1bdd66e6 --- /dev/null +++ b/data/smartphone/huawei/2018/honor-changwan-7c-dual-sim-td-lte-cn-lnd-tl30.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-changwan-7c-dual-sim-td-lte-cn-lnd-tl30", + "name": "Honor Changwan 7C Dual SIM TD-LTE CN LND-TL30", + "brand": "huawei", + "soc": "snapdragon-450", + "release_date": "2018-03-13", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/honor-changwan-7c-dual-sim-td-lte-cn-lnd-tl40.json b/data/smartphone/huawei/2018/honor-changwan-7c-dual-sim-td-lte-cn-lnd-tl40.json new file mode 100644 index 00000000000..d45220132a2 --- /dev/null +++ b/data/smartphone/huawei/2018/honor-changwan-7c-dual-sim-td-lte-cn-lnd-tl40.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-changwan-7c-dual-sim-td-lte-cn-lnd-tl40", + "name": "Honor Changwan 7C Dual SIM TD-LTE CN LND-TL40", + "brand": "huawei", + "soc": "snapdragon-450", + "release_date": "2018-03-13", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/honor-changwan-8c-dual-sim-td-lte-cn-bkk-al00-64gb.json b/data/smartphone/huawei/2018/honor-changwan-8c-dual-sim-td-lte-cn-bkk-al00-64gb.json new file mode 100644 index 00000000000..24c26043514 --- /dev/null +++ b/data/smartphone/huawei/2018/honor-changwan-8c-dual-sim-td-lte-cn-bkk-al00-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-changwan-8c-dual-sim-td-lte-cn-bkk-al00-64gb", + "name": "Honor Changwan 8C Dual SIM TD-LTE CN BKK-AL00 64GB", + "brand": "huawei", + "soc": "snapdragon-632", + "release_date": "2018-10-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 167.2, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/honor-changwan-8c-dual-sim-td-lte-cn-bkk-al10-32gb.json b/data/smartphone/huawei/2018/honor-changwan-8c-dual-sim-td-lte-cn-bkk-al10-32gb.json new file mode 100644 index 00000000000..74f0e4f1f29 --- /dev/null +++ b/data/smartphone/huawei/2018/honor-changwan-8c-dual-sim-td-lte-cn-bkk-al10-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-changwan-8c-dual-sim-td-lte-cn-bkk-al10-32gb", + "name": "Honor Changwan 8C Dual SIM TD-LTE CN BKK-AL10 32GB", + "brand": "huawei", + "soc": "snapdragon-632", + "release_date": "2018-10-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 167.2, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/honor-changwan-8c-dual-sim-td-lte-cn-bkk-tl00-64gb.json b/data/smartphone/huawei/2018/honor-changwan-8c-dual-sim-td-lte-cn-bkk-tl00-64gb.json new file mode 100644 index 00000000000..89165c5c052 --- /dev/null +++ b/data/smartphone/huawei/2018/honor-changwan-8c-dual-sim-td-lte-cn-bkk-tl00-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-changwan-8c-dual-sim-td-lte-cn-bkk-tl00-64gb", + "name": "Honor Changwan 8C Dual SIM TD-LTE CN BKK-TL00 64GB", + "brand": "huawei", + "soc": "snapdragon-632", + "release_date": "2018-10-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 167.2, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/honor-magic-2-premium-edition-dual-sim-td-lte-cn-128gb-tny-al00.json b/data/smartphone/huawei/2018/honor-magic-2-premium-edition-dual-sim-td-lte-cn-128gb-tny-al00.json new file mode 100644 index 00000000000..6e935f2f1dd --- /dev/null +++ b/data/smartphone/huawei/2018/honor-magic-2-premium-edition-dual-sim-td-lte-cn-128gb-tny-al00.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-magic-2-premium-edition-dual-sim-td-lte-cn-128gb-tny-al00", + "name": "Honor Magic 2 Premium Edition Dual SIM TD-LTE CN 128GB TNY-AL00", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2018-11-02", + "ram_gb": 8.0, + "battery_mah": 3500, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/honor-magic-2-premium-edition-dual-sim-td-lte-cn-256gb-tny-al00.json b/data/smartphone/huawei/2018/honor-magic-2-premium-edition-dual-sim-td-lte-cn-256gb-tny-al00.json new file mode 100644 index 00000000000..8e5083625e6 --- /dev/null +++ b/data/smartphone/huawei/2018/honor-magic-2-premium-edition-dual-sim-td-lte-cn-256gb-tny-al00.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-magic-2-premium-edition-dual-sim-td-lte-cn-256gb-tny-al00", + "name": "Honor Magic 2 Premium Edition Dual SIM TD-LTE CN 256GB TNY-AL00", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2018-11-02", + "ram_gb": 8.0, + "battery_mah": 3500, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/honor-magic-2-standard-edition-dual-sim-td-lte-cn-128gb-tny-al00.json b/data/smartphone/huawei/2018/honor-magic-2-standard-edition-dual-sim-td-lte-cn-128gb-tny-al00.json new file mode 100644 index 00000000000..9adbdf90651 --- /dev/null +++ b/data/smartphone/huawei/2018/honor-magic-2-standard-edition-dual-sim-td-lte-cn-128gb-tny-al00.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-magic-2-standard-edition-dual-sim-td-lte-cn-128gb-tny-al00", + "name": "Honor Magic 2 Standard Edition Dual SIM TD-LTE CN 128GB TNY-AL00", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2018-11-02", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/honor-magic-2-standard-edition-dual-sim-td-lte-cn-128gb-tny-tl00.json b/data/smartphone/huawei/2018/honor-magic-2-standard-edition-dual-sim-td-lte-cn-128gb-tny-tl00.json new file mode 100644 index 00000000000..4676259da1d --- /dev/null +++ b/data/smartphone/huawei/2018/honor-magic-2-standard-edition-dual-sim-td-lte-cn-128gb-tny-tl00.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-magic-2-standard-edition-dual-sim-td-lte-cn-128gb-tny-tl00", + "name": "Honor Magic 2 Standard Edition Dual SIM TD-LTE CN 128GB TNY-TL00", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2018-11-02", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/honor-note-10-premium-edition-dual-sim-td-lte-cn-rvl-al09-128gb.json b/data/smartphone/huawei/2018/honor-note-10-premium-edition-dual-sim-td-lte-cn-rvl-al09-128gb.json new file mode 100644 index 00000000000..a1e8a8c849e --- /dev/null +++ b/data/smartphone/huawei/2018/honor-note-10-premium-edition-dual-sim-td-lte-cn-rvl-al09-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-note-10-premium-edition-dual-sim-td-lte-cn-rvl-al09-128gb", + "name": "Honor Note 10 Premium Edition Dual SIM TD-LTE CN RVL-AL09 128GB", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-08-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 230.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.95, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 355 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/honor-note-10-standard-edition-dual-sim-td-lte-cn-rvl-al09-128gb.json b/data/smartphone/huawei/2018/honor-note-10-standard-edition-dual-sim-td-lte-cn-rvl-al09-128gb.json new file mode 100644 index 00000000000..5a4f885989f --- /dev/null +++ b/data/smartphone/huawei/2018/honor-note-10-standard-edition-dual-sim-td-lte-cn-rvl-al09-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-note-10-standard-edition-dual-sim-td-lte-cn-rvl-al09-128gb", + "name": "Honor Note 10 Standard Edition Dual SIM TD-LTE CN RVL-AL09 128GB", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-08-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 230.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.95, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 355 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/honor-note-10-standard-edition-dual-sim-td-lte-cn-rvl-al09-64gb.json b/data/smartphone/huawei/2018/honor-note-10-standard-edition-dual-sim-td-lte-cn-rvl-al09-64gb.json new file mode 100644 index 00000000000..1ebf5ed5871 --- /dev/null +++ b/data/smartphone/huawei/2018/honor-note-10-standard-edition-dual-sim-td-lte-cn-rvl-al09-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-note-10-standard-edition-dual-sim-td-lte-cn-rvl-al09-64gb", + "name": "Honor Note 10 Standard Edition Dual SIM TD-LTE CN RVL-AL09 64GB", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-08-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 230.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.95, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 355 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/honor-play-global-dual-sim-td-lte-cor-l29.json b/data/smartphone/huawei/2018/honor-play-global-dual-sim-td-lte-cor-l29.json new file mode 100644 index 00000000000..5e65e0949f1 --- /dev/null +++ b/data/smartphone/huawei/2018/honor-play-global-dual-sim-td-lte-cor-l29.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-play-global-dual-sim-td-lte-cor-l29", + "name": "Honor Play Global Dual SIM TD-LTE COR-L29", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-09-01", + "ram_gb": 4.0, + "battery_mah": 3750, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Cyprus , Czech , France , Germany , Greece , Hungary , Italy , Netherlands , Norway , Poland , Russia , Sweden , Taiwan , UK", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/huawei/2018/honor-play-premium-edition-dual-sim-td-lte-apac-cor-al10.json b/data/smartphone/huawei/2018/honor-play-premium-edition-dual-sim-td-lte-apac-cor-al10.json new file mode 100644 index 00000000000..1a9d946617d --- /dev/null +++ b/data/smartphone/huawei/2018/honor-play-premium-edition-dual-sim-td-lte-apac-cor-al10.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-play-premium-edition-dual-sim-td-lte-apac-cor-al10", + "name": "Honor Play Premium Edition Dual SIM TD-LTE APAC COR-AL10", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-08-08", + "ram_gb": 6.0, + "battery_mah": 3750, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , India", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/honor-play-standard-edition-dual-sim-td-lte-apac-cor-al00.json b/data/smartphone/huawei/2018/honor-play-standard-edition-dual-sim-td-lte-apac-cor-al00.json new file mode 100644 index 00000000000..0241cdbfa52 --- /dev/null +++ b/data/smartphone/huawei/2018/honor-play-standard-edition-dual-sim-td-lte-apac-cor-al00.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-play-standard-edition-dual-sim-td-lte-apac-cor-al00", + "name": "Honor Play Standard Edition Dual SIM TD-LTE APAC COR-AL00", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-07-01", + "ram_gb": 4.0, + "battery_mah": 3750, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , India", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/honor-v10-premium-edition-dual-sim-td-lte-cn-bkl-al20-128gb.json b/data/smartphone/huawei/2018/honor-v10-premium-edition-dual-sim-td-lte-cn-bkl-al20-128gb.json new file mode 100644 index 00000000000..6b7615a8de7 --- /dev/null +++ b/data/smartphone/huawei/2018/honor-v10-premium-edition-dual-sim-td-lte-cn-bkl-al20-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-v10-premium-edition-dual-sim-td-lte-cn-bkl-al20-128gb", + "name": "Honor V10 Premium Edition Dual SIM TD-LTE CN BKL-AL20 128GB", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-08-14", + "ram_gb": 8.0, + "battery_mah": 3750, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 11.8 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/honor-v20-premium-edition-dual-sim-td-lte-cn-pct-al10-view-20.json b/data/smartphone/huawei/2018/honor-v20-premium-edition-dual-sim-td-lte-cn-pct-al10-view-20.json new file mode 100644 index 00000000000..6bf97600598 --- /dev/null +++ b/data/smartphone/huawei/2018/honor-v20-premium-edition-dual-sim-td-lte-cn-pct-al10-view-20.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-v20-premium-edition-dual-sim-td-lte-cn-pct-al10-view-20", + "name": "Honor V20 Premium Edition Dual SIM TD-LTE CN PCT-AL10 / View 20", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2018-12-28", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/honor-v20-standard-edition-dual-sim-td-lte-cn-pct-al10-view-20.json b/data/smartphone/huawei/2018/honor-v20-standard-edition-dual-sim-td-lte-cn-pct-al10-view-20.json new file mode 100644 index 00000000000..5eb74201138 --- /dev/null +++ b/data/smartphone/huawei/2018/honor-v20-standard-edition-dual-sim-td-lte-cn-pct-al10-view-20.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-v20-standard-edition-dual-sim-td-lte-cn-pct-al10-view-20", + "name": "Honor V20 Standard Edition Dual SIM TD-LTE CN PCT-AL10 / View 20", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2018-12-28", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/honor-v20-standard-edition-dual-sim-td-lte-cn-pct-tl10.json b/data/smartphone/huawei/2018/honor-v20-standard-edition-dual-sim-td-lte-cn-pct-tl10.json new file mode 100644 index 00000000000..18268ff2b96 --- /dev/null +++ b/data/smartphone/huawei/2018/honor-v20-standard-edition-dual-sim-td-lte-cn-pct-tl10.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-v20-standard-edition-dual-sim-td-lte-cn-pct-tl10", + "name": "Honor V20 Standard Edition Dual SIM TD-LTE CN PCT-TL10", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2018-12-28", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/maimang-7-dual-sim-td-lte-cn-sne-al00.json b/data/smartphone/huawei/2018/maimang-7-dual-sim-td-lte-cn-sne-al00.json new file mode 100644 index 00000000000..a7c9564cb13 --- /dev/null +++ b/data/smartphone/huawei/2018/maimang-7-dual-sim-td-lte-cn-sne-al00.json @@ -0,0 +1,41 @@ +{ + "slug": "maimang-7-dual-sim-td-lte-cn-sne-al00", + "name": "Maimang 7 Dual SIM TD-LTE CN SNE-AL00", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2018-09-01", + "ram_gb": 6.0, + "battery_mah": 3750, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 19.7 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/mate-10-pro-dual-sim-td-lte-703hw.json b/data/smartphone/huawei/2018/mate-10-pro-dual-sim-td-lte-703hw.json new file mode 100644 index 00000000000..6ea5d48660b --- /dev/null +++ b/data/smartphone/huawei/2018/mate-10-pro-dual-sim-td-lte-703hw.json @@ -0,0 +1,41 @@ +{ + "slug": "mate-10-pro-dual-sim-td-lte-703hw", + "name": "Mate 10 Pro Dual SIM TD-LTE 703HW", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-05-18", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 11.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/mate-20-dual-sim-td-lte-cn-128gb-hma-al00.json b/data/smartphone/huawei/2018/mate-20-dual-sim-td-lte-cn-128gb-hma-al00.json new file mode 100644 index 00000000000..ee16f955234 --- /dev/null +++ b/data/smartphone/huawei/2018/mate-20-dual-sim-td-lte-cn-128gb-hma-al00.json @@ -0,0 +1,42 @@ +{ + "slug": "mate-20-dual-sim-td-lte-cn-128gb-hma-al00", + "name": "Mate 20 Dual SIM TD-LTE CN 128GB HMA-AL00", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2018-10-17", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 381 + }, + "cameras": [ + { + "type": "main", + "mp": 11.8 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/mate-20-dual-sim-td-lte-cn-64gb-hma-tl00.json b/data/smartphone/huawei/2018/mate-20-dual-sim-td-lte-cn-64gb-hma-tl00.json new file mode 100644 index 00000000000..f4d37b474e7 --- /dev/null +++ b/data/smartphone/huawei/2018/mate-20-dual-sim-td-lte-cn-64gb-hma-tl00.json @@ -0,0 +1,42 @@ +{ + "slug": "mate-20-dual-sim-td-lte-cn-64gb-hma-tl00", + "name": "Mate 20 Dual SIM TD-LTE CN 64GB HMA-TL00", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2018-10-17", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 381 + }, + "cameras": [ + { + "type": "main", + "mp": 11.8 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/mate-20-lite-dual-sim-lte-a-emea-sne-lx1-sne-l21.json b/data/smartphone/huawei/2018/mate-20-lite-dual-sim-lte-a-emea-sne-lx1-sne-l21.json new file mode 100644 index 00000000000..babd8a12bca --- /dev/null +++ b/data/smartphone/huawei/2018/mate-20-lite-dual-sim-lte-a-emea-sne-lx1-sne-l21.json @@ -0,0 +1,41 @@ +{ + "slug": "mate-20-lite-dual-sim-lte-a-emea-sne-lx1-sne-l21", + "name": "Mate 20 Lite Dual SIM LTE-A EMEA SNE-LX1 / SNE-L21", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2018-09-03", + "ram_gb": 4.0, + "battery_mah": 3750, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 20.1 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Germany , Hungary , Poland , Portugal , Romania , Russia , UAE", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2018/mate-20-lite-dual-sim-lte-a-latam-sne-lx3-sne-l23.json b/data/smartphone/huawei/2018/mate-20-lite-dual-sim-lte-a-latam-sne-lx3-sne-l23.json new file mode 100644 index 00000000000..d002d6e70ab --- /dev/null +++ b/data/smartphone/huawei/2018/mate-20-lite-dual-sim-lte-a-latam-sne-lx3-sne-l23.json @@ -0,0 +1,41 @@ +{ + "slug": "mate-20-lite-dual-sim-lte-a-latam-sne-lx3-sne-l23", + "name": "Mate 20 Lite Dual SIM LTE-A LATAM SNE-LX3 / SNE-L23", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2018-09-01", + "ram_gb": 4.0, + "battery_mah": 3750, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 20.1 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Costa Rica , Ecuador , Honduras , Paraguay , Peru", + "market_regions": "South America" +} diff --git a/data/smartphone/huawei/2018/mate-20-lite-dual-sim-td-lte-apac-sne-lx2-sne-l22.json b/data/smartphone/huawei/2018/mate-20-lite-dual-sim-td-lte-apac-sne-lx2-sne-l22.json new file mode 100644 index 00000000000..8df34571b35 --- /dev/null +++ b/data/smartphone/huawei/2018/mate-20-lite-dual-sim-td-lte-apac-sne-lx2-sne-l22.json @@ -0,0 +1,41 @@ +{ + "slug": "mate-20-lite-dual-sim-td-lte-apac-sne-lx2-sne-l22", + "name": "Mate 20 Lite Dual SIM TD-LTE APAC SNE-LX2 / SNE-L22", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2018-10-01", + "ram_gb": 4.0, + "battery_mah": 3750, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 20.1 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , Cambodia , India , Indonesia , Japan , Malaysia , Myanmar , Nepal , Philippines , Singapore , Thailand , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/mate-20-lite-lte-a-emea-sne-l01.json b/data/smartphone/huawei/2018/mate-20-lite-lte-a-emea-sne-l01.json new file mode 100644 index 00000000000..27daf2e5c45 --- /dev/null +++ b/data/smartphone/huawei/2018/mate-20-lite-lte-a-emea-sne-l01.json @@ -0,0 +1,41 @@ +{ + "slug": "mate-20-lite-lte-a-emea-sne-l01", + "name": "Mate 20 Lite LTE-A EMEA SNE-L01", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2018-09-03", + "ram_gb": 4.0, + "battery_mah": 3750, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 20.1 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Croatia , Czech , Denmark , Finland , Germany , Hungary , Ireland , Italy , Netherlands , Norway , Poland , Portugal , Slovakia , Slovenia , South Africa , Spain , Switzerland , Sweden , Turkey , UK", + "market_regions": "Africa , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2018/mate-20-lite-lte-a-latam-sne-l03.json b/data/smartphone/huawei/2018/mate-20-lite-lte-a-latam-sne-l03.json new file mode 100644 index 00000000000..be1014b0ed4 --- /dev/null +++ b/data/smartphone/huawei/2018/mate-20-lite-lte-a-latam-sne-l03.json @@ -0,0 +1,41 @@ +{ + "slug": "mate-20-lite-lte-a-latam-sne-l03", + "name": "Mate 20 Lite LTE-A LATAM SNE-L03", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2018-09-01", + "ram_gb": 4.0, + "battery_mah": 3750, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 20.1 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Mexico , USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/huawei/2018/mate-20-premium-edition-global-dual-sim-td-lte-hma-lx9-hma-l29.json b/data/smartphone/huawei/2018/mate-20-premium-edition-global-dual-sim-td-lte-hma-lx9-hma-l29.json new file mode 100644 index 00000000000..7c3e872060c --- /dev/null +++ b/data/smartphone/huawei/2018/mate-20-premium-edition-global-dual-sim-td-lte-hma-lx9-hma-l29.json @@ -0,0 +1,42 @@ +{ + "slug": "mate-20-premium-edition-global-dual-sim-td-lte-hma-lx9-hma-l29", + "name": "Mate 20 Premium Edition Global Dual SIM TD-LTE HMA-LX9 / HMA-L29", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2018-10-17", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 381 + }, + "cameras": [ + { + "type": "main", + "mp": 11.8 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belgium , Canada , Cyprus , Denmark , Finland , France , Greece , Germany , HK , Hungary , India , Italy , Japan , Kenya , Malaysia , Poland , Portugal , Romania , Russia , Singapore , Spain , Switzerland , Sweden , Taiwan , Thailand , UK , USA", + "market_regions": "Africa , Asia , Eastern Europe , Europe , North America , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2018/mate-20-pro-global-dual-sim-td-lte-128gb-lya-lx9-lya-l29.json b/data/smartphone/huawei/2018/mate-20-pro-global-dual-sim-td-lte-128gb-lya-lx9-lya-l29.json new file mode 100644 index 00000000000..bca37d17073 --- /dev/null +++ b/data/smartphone/huawei/2018/mate-20-pro-global-dual-sim-td-lte-128gb-lya-lx9-lya-l29.json @@ -0,0 +1,42 @@ +{ + "slug": "mate-20-pro-global-dual-sim-td-lte-128gb-lya-lx9-lya-l29", + "name": "Mate 20 Pro Global Dual SIM TD-LTE 128GB LYA-LX9 / LYA-L29", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2018-11-16", + "ram_gb": 6.0, + "battery_mah": 4200, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bolivia , Bulgaria , Cyprus , Czech , Finland , France , Greece , Germany , HK , Hungary , India , Italy , Japan , Kenya , Malaysia , Netherlands , Poland , Russia , Romania , Slovakia , Singapore , Slovenia , Taiwan , Thailand , UAE , UK , USA", + "market_regions": "Africa , Asia , Eastern Europe , Europe , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2018/mate-20-pro-global-td-lte-128gb-lya-l09.json b/data/smartphone/huawei/2018/mate-20-pro-global-td-lte-128gb-lya-l09.json new file mode 100644 index 00000000000..4391fe5e61f --- /dev/null +++ b/data/smartphone/huawei/2018/mate-20-pro-global-td-lte-128gb-lya-l09.json @@ -0,0 +1,42 @@ +{ + "slug": "mate-20-pro-global-td-lte-128gb-lya-l09", + "name": "Mate 20 Pro Global TD-LTE 128GB LYA-L09", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2018-11-16", + "ram_gb": 6.0, + "battery_mah": 4200, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belarus , Bolivia , Canada , Colombia , Cyprus , Czech , Estonia , Finland , France , Germany , Greece , HK , Hungary , Italy , Latvia , Lithuania , Mexico , Netherlands , Norway , NZ , Poland , Russia , Slovakia , Slovenia , Spain , Switzerland , UK , USA", + "market_regions": "Asia , Australia , Eastern Europe , Europe , North America , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2018/mate-20-pro-premium-edition-dual-sim-td-lte-cn-256gb-lya-al00.json b/data/smartphone/huawei/2018/mate-20-pro-premium-edition-dual-sim-td-lte-cn-256gb-lya-al00.json new file mode 100644 index 00000000000..00f50b71493 --- /dev/null +++ b/data/smartphone/huawei/2018/mate-20-pro-premium-edition-dual-sim-td-lte-cn-256gb-lya-al00.json @@ -0,0 +1,42 @@ +{ + "slug": "mate-20-pro-premium-edition-dual-sim-td-lte-cn-256gb-lya-al00", + "name": "Mate 20 Pro Premium Edition Dual SIM TD-LTE CN 256GB LYA-AL00", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2018-11-16", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/mate-20-pro-premium-edition-dual-sim-td-lte-cn-256gb-lya-tl00.json b/data/smartphone/huawei/2018/mate-20-pro-premium-edition-dual-sim-td-lte-cn-256gb-lya-tl00.json new file mode 100644 index 00000000000..cb7e8ac6a77 --- /dev/null +++ b/data/smartphone/huawei/2018/mate-20-pro-premium-edition-dual-sim-td-lte-cn-256gb-lya-tl00.json @@ -0,0 +1,42 @@ +{ + "slug": "mate-20-pro-premium-edition-dual-sim-td-lte-cn-256gb-lya-tl00", + "name": "Mate 20 Pro Premium Edition Dual SIM TD-LTE CN 256GB LYA-TL00", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2018-11-16", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/mate-20-pro-standard-edition-dual-sim-td-lte-cn-128gb-lya-al10.json b/data/smartphone/huawei/2018/mate-20-pro-standard-edition-dual-sim-td-lte-cn-128gb-lya-al10.json new file mode 100644 index 00000000000..4e04c5bfc54 --- /dev/null +++ b/data/smartphone/huawei/2018/mate-20-pro-standard-edition-dual-sim-td-lte-cn-128gb-lya-al10.json @@ -0,0 +1,42 @@ +{ + "slug": "mate-20-pro-standard-edition-dual-sim-td-lte-cn-128gb-lya-al10", + "name": "Mate 20 Pro Standard Edition Dual SIM TD-LTE CN 128GB LYA-AL10", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2018-10-27", + "ram_gb": 6.0, + "battery_mah": 4200, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/mate-20-rs-porsche-design-dual-sim-td-lte-256gb-lya-al00p.json b/data/smartphone/huawei/2018/mate-20-rs-porsche-design-dual-sim-td-lte-256gb-lya-al00p.json new file mode 100644 index 00000000000..27e881fcf97 --- /dev/null +++ b/data/smartphone/huawei/2018/mate-20-rs-porsche-design-dual-sim-td-lte-256gb-lya-al00p.json @@ -0,0 +1,42 @@ +{ + "slug": "mate-20-rs-porsche-design-dual-sim-td-lte-256gb-lya-al00p", + "name": "Mate 20 RS Porsche Design Dual SIM TD-LTE 256GB LYA-AL00P", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2018-11-16", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 187.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , UK", + "market_regions": "Asia , Europe , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2018/mate-20-rs-porsche-design-global-dual-sim-td-lte-256gb-lya-l29.json b/data/smartphone/huawei/2018/mate-20-rs-porsche-design-global-dual-sim-td-lte-256gb-lya-l29.json new file mode 100644 index 00000000000..c8aa82e2d45 --- /dev/null +++ b/data/smartphone/huawei/2018/mate-20-rs-porsche-design-global-dual-sim-td-lte-256gb-lya-l29.json @@ -0,0 +1,42 @@ +{ + "slug": "mate-20-rs-porsche-design-global-dual-sim-td-lte-256gb-lya-l29", + "name": "Mate 20 RS Porsche Design Global Dual SIM TD-LTE 256GB LYA-L29", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2018-12-01", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada , Cyprus , Czech , Finland , France , Greece , Germany , HK , Hungary , India , Italy , Japan , Malaysia , Netherlands , Poland , Russia , Singapore , Slovakia , Slovenia , Taiwan , Thailand , UAE , UK , USA", + "market_regions": "Africa , Asia , Eastern Europe , Europe , North America , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2018/mate-20-x-dual-sim-td-lte-cn-128gb-evr-al00.json b/data/smartphone/huawei/2018/mate-20-x-dual-sim-td-lte-cn-128gb-evr-al00.json new file mode 100644 index 00000000000..d08f72a733f --- /dev/null +++ b/data/smartphone/huawei/2018/mate-20-x-dual-sim-td-lte-cn-128gb-evr-al00.json @@ -0,0 +1,41 @@ +{ + "slug": "mate-20-x-dual-sim-td-lte-cn-128gb-evr-al00", + "name": "Mate 20 X Dual SIM TD-LTE CN 128GB EVR-AL00", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2018-11-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 232.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 7.17, + "resolution": "1080x2244", + "type": "AM-OLED display", + "ppi": 348 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/mate-20-x-dual-sim-td-lte-cn-256gb-evr-al00.json b/data/smartphone/huawei/2018/mate-20-x-dual-sim-td-lte-cn-256gb-evr-al00.json new file mode 100644 index 00000000000..a434633cddf --- /dev/null +++ b/data/smartphone/huawei/2018/mate-20-x-dual-sim-td-lte-cn-256gb-evr-al00.json @@ -0,0 +1,41 @@ +{ + "slug": "mate-20-x-dual-sim-td-lte-cn-256gb-evr-al00", + "name": "Mate 20 X Dual SIM TD-LTE CN 256GB EVR-AL00", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2018-11-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 232.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 7.17, + "resolution": "1080x2244", + "type": "AM-OLED display", + "ppi": 348 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/mate-rs-porsche-design-dual-sim-td-lte-256gb-neo-al00.json b/data/smartphone/huawei/2018/mate-rs-porsche-design-dual-sim-td-lte-256gb-neo-al00.json new file mode 100644 index 00000000000..37bdc896447 --- /dev/null +++ b/data/smartphone/huawei/2018/mate-rs-porsche-design-dual-sim-td-lte-256gb-neo-al00.json @@ -0,0 +1,41 @@ +{ + "slug": "mate-rs-porsche-design-dual-sim-td-lte-256gb-neo-al00", + "name": "Mate RS Porsche Design Dual SIM TD-LTE 256GB NEO-AL00", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-05-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.98, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Chile , Cyprus , Croatia , Czech , Denmark , Finland , France , Germany , Greece , Hungary , Ireland , Israel , Italy , Japan , Kuwait , Netherlands , Norway , NZ , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Singapore , Slovenia , Spain , Sweden , Switzerland , Taiwan , Turkey , UAE , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2018/mate-rs-porsche-design-dual-sim-td-lte-512gb-neo-al00.json b/data/smartphone/huawei/2018/mate-rs-porsche-design-dual-sim-td-lte-512gb-neo-al00.json new file mode 100644 index 00000000000..b482ecc37e9 --- /dev/null +++ b/data/smartphone/huawei/2018/mate-rs-porsche-design-dual-sim-td-lte-512gb-neo-al00.json @@ -0,0 +1,41 @@ +{ + "slug": "mate-rs-porsche-design-dual-sim-td-lte-512gb-neo-al00", + "name": "Mate RS Porsche Design Dual SIM TD-LTE 512GB NEO-AL00", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-05-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 5.98, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Chile , Cyprus , Croatia , Czech , Denmark , Finland , France , Germany , Greece , Hungary , Ireland , Israel , Italy , Japan , Kuwait , Netherlands , Norway , NZ , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Singapore , Slovenia , Spain , Sweden , Switzerland , Taiwan , Turkey , UAE , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2018/nova-2-lite-dual-sim-td-lte-apac-ldn-lx2-y7-pro-2018-ldn-l22.json b/data/smartphone/huawei/2018/nova-2-lite-dual-sim-td-lte-apac-ldn-lx2-y7-pro-2018-ldn-l22.json new file mode 100644 index 00000000000..506a0b56b9a --- /dev/null +++ b/data/smartphone/huawei/2018/nova-2-lite-dual-sim-td-lte-apac-ldn-lx2-y7-pro-2018-ldn-l22.json @@ -0,0 +1,41 @@ +{ + "slug": "nova-2-lite-dual-sim-td-lte-apac-ldn-lx2-y7-pro-2018-ldn-l22", + "name": "Nova 2 Lite Dual SIM TD-LTE APAC LDN-LX2 / Y7 Pro 2018 LDN-L22", + "brand": "huawei", + "soc": "snapdragon-430", + "release_date": "2018-03-16", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 155.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "market_countries": "Malaysia , Philippines , Vietnam", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/nova-3-dual-sim-lte-a-emea-par-lx1-par-l21.json b/data/smartphone/huawei/2018/nova-3-dual-sim-lte-a-emea-par-lx1-par-l21.json new file mode 100644 index 00000000000..c70aab66ffd --- /dev/null +++ b/data/smartphone/huawei/2018/nova-3-dual-sim-lte-a-emea-par-lx1-par-l21.json @@ -0,0 +1,41 @@ +{ + "slug": "nova-3-dual-sim-lte-a-emea-par-lx1-par-l21", + "name": "Nova 3 Dual SIM LTE-A EMEA PAR-LX1 / PAR-L21", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-08-01", + "ram_gb": 4.0, + "battery_mah": 3750, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "France , Germany , Italy , Poland , Russia , UAE , UK", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2018/nova-3-dual-sim-lte-a-emea-par-lx1m-par-l21m.json b/data/smartphone/huawei/2018/nova-3-dual-sim-lte-a-emea-par-lx1m-par-l21m.json new file mode 100644 index 00000000000..f8673f616fe --- /dev/null +++ b/data/smartphone/huawei/2018/nova-3-dual-sim-lte-a-emea-par-lx1m-par-l21m.json @@ -0,0 +1,41 @@ +{ + "slug": "nova-3-dual-sim-lte-a-emea-par-lx1m-par-l21m", + "name": "Nova 3 Dual SIM LTE-A EMEA PAR-LX1M / PAR-L21M", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-08-01", + "ram_gb": 4.0, + "battery_mah": 3750, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Czech , France , Germany , Hungary , Poland , Romania , Russia , Slovakia , UAE", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2018/nova-3-dual-sim-td-lte-apac-par-lx9-par-l29.json b/data/smartphone/huawei/2018/nova-3-dual-sim-td-lte-apac-par-lx9-par-l29.json new file mode 100644 index 00000000000..f4d8131856b --- /dev/null +++ b/data/smartphone/huawei/2018/nova-3-dual-sim-td-lte-apac-par-lx9-par-l29.json @@ -0,0 +1,41 @@ +{ + "slug": "nova-3-dual-sim-td-lte-apac-par-lx9-par-l29", + "name": "Nova 3 Dual SIM TD-LTE APAC PAR-LX9 / PAR-L29", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-07-19", + "ram_gb": 6.0, + "battery_mah": 3750, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "India , Japan , Malaysia , Nepal , Philippines , Sri Lanka , Taiwan", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/nova-3-dual-sim-td-lte-cn-par-al00.json b/data/smartphone/huawei/2018/nova-3-dual-sim-td-lte-cn-par-al00.json new file mode 100644 index 00000000000..5fe81259c17 --- /dev/null +++ b/data/smartphone/huawei/2018/nova-3-dual-sim-td-lte-cn-par-al00.json @@ -0,0 +1,41 @@ +{ + "slug": "nova-3-dual-sim-td-lte-cn-par-al00", + "name": "Nova 3 Dual SIM TD-LTE CN PAR-AL00", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-07-19", + "ram_gb": 6.0, + "battery_mah": 3750, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/nova-3-dual-sim-td-lte-cn-par-tl20.json b/data/smartphone/huawei/2018/nova-3-dual-sim-td-lte-cn-par-tl20.json new file mode 100644 index 00000000000..fd09335d967 --- /dev/null +++ b/data/smartphone/huawei/2018/nova-3-dual-sim-td-lte-cn-par-tl20.json @@ -0,0 +1,41 @@ +{ + "slug": "nova-3-dual-sim-td-lte-cn-par-tl20", + "name": "Nova 3 Dual SIM TD-LTE CN PAR-TL20", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-07-19", + "ram_gb": 6.0, + "battery_mah": 3750, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/nova-3-lte-a-emea-par-l11.json b/data/smartphone/huawei/2018/nova-3-lte-a-emea-par-l11.json new file mode 100644 index 00000000000..f35925958f5 --- /dev/null +++ b/data/smartphone/huawei/2018/nova-3-lte-a-emea-par-l11.json @@ -0,0 +1,41 @@ +{ + "slug": "nova-3-lte-a-emea-par-l11", + "name": "Nova 3 LTE-A EMEA PAR-L11", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-07-19", + "ram_gb": 4.0, + "battery_mah": 3750, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Belgium , France , Germany , Hungary , Italy , Netherlands , Spain", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/huawei/2018/nova-3e-dual-sim-td-lte-apac-ane-lx2-ane-l22-ane-lx2j.json b/data/smartphone/huawei/2018/nova-3e-dual-sim-td-lte-apac-ane-lx2-ane-l22-ane-lx2j.json new file mode 100644 index 00000000000..469147b2714 --- /dev/null +++ b/data/smartphone/huawei/2018/nova-3e-dual-sim-td-lte-apac-ane-lx2-ane-l22-ane-lx2j.json @@ -0,0 +1,41 @@ +{ + "slug": "nova-3e-dual-sim-td-lte-apac-ane-lx2-ane-l22-ane-lx2j", + "name": "Nova 3e Dual SIM TD-LTE APAC ANE-LX2 / ANE-L22 / ANE-LX2J", + "brand": "huawei", + "soc": "kirin-659", + "release_date": "2018-06-02", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Malaysia , Taiwan , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/nova-3e-dual-sim-td-lte-cn-128gb-ane-al00.json b/data/smartphone/huawei/2018/nova-3e-dual-sim-td-lte-cn-128gb-ane-al00.json new file mode 100644 index 00000000000..17ec50501ca --- /dev/null +++ b/data/smartphone/huawei/2018/nova-3e-dual-sim-td-lte-cn-128gb-ane-al00.json @@ -0,0 +1,41 @@ +{ + "slug": "nova-3e-dual-sim-td-lte-cn-128gb-ane-al00", + "name": "Nova 3e Dual SIM TD-LTE CN 128GB ANE-AL00", + "brand": "huawei", + "soc": "kirin-659", + "release_date": "2018-03-27", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/nova-3e-dual-sim-td-lte-cn-64gb-ane-al00-p20-lite.json b/data/smartphone/huawei/2018/nova-3e-dual-sim-td-lte-cn-64gb-ane-al00-p20-lite.json new file mode 100644 index 00000000000..f6bfe5b0b8c --- /dev/null +++ b/data/smartphone/huawei/2018/nova-3e-dual-sim-td-lte-cn-64gb-ane-al00-p20-lite.json @@ -0,0 +1,41 @@ +{ + "slug": "nova-3e-dual-sim-td-lte-cn-64gb-ane-al00-p20-lite", + "name": "Nova 3e Dual SIM TD-LTE CN 64GB ANE-AL00 / P20 Lite", + "brand": "huawei", + "soc": "kirin-659", + "release_date": "2018-03-27", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , India", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/nova-3e-dual-sim-td-lte-cn-64gb-ane-tl00.json b/data/smartphone/huawei/2018/nova-3e-dual-sim-td-lte-cn-64gb-ane-tl00.json new file mode 100644 index 00000000000..f04ae2b37d1 --- /dev/null +++ b/data/smartphone/huawei/2018/nova-3e-dual-sim-td-lte-cn-64gb-ane-tl00.json @@ -0,0 +1,41 @@ +{ + "slug": "nova-3e-dual-sim-td-lte-cn-64gb-ane-tl00", + "name": "Nova 3e Dual SIM TD-LTE CN 64GB ANE-TL00", + "brand": "huawei", + "soc": "kirin-659", + "release_date": "2018-03-27", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/nova-3i-dual-sim-td-lte-apac-ine-lx2-128gb.json b/data/smartphone/huawei/2018/nova-3i-dual-sim-td-lte-apac-ine-lx2-128gb.json new file mode 100644 index 00000000000..7fa3622f08a --- /dev/null +++ b/data/smartphone/huawei/2018/nova-3i-dual-sim-td-lte-apac-ine-lx2-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "nova-3i-dual-sim-td-lte-apac-ine-lx2-128gb", + "name": "Nova 3i Dual SIM TD-LTE APAC INE-LX2 128GB", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2018-07-26", + "ram_gb": 4.0, + "battery_mah": 3340, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Indonesia , Malaysia , Philippines , Sri Lanka , Vietnam", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/nova-3i-dual-sim-td-lte-cn-ine-al00-128gb.json b/data/smartphone/huawei/2018/nova-3i-dual-sim-td-lte-cn-ine-al00-128gb.json new file mode 100644 index 00000000000..22fe8a2f06f --- /dev/null +++ b/data/smartphone/huawei/2018/nova-3i-dual-sim-td-lte-cn-ine-al00-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "nova-3i-dual-sim-td-lte-cn-ine-al00-128gb", + "name": "Nova 3i Dual SIM TD-LTE CN INE-AL00 128GB", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2018-08-01", + "ram_gb": 4.0, + "battery_mah": 3340, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/nova-3i-dual-sim-td-lte-cn-ine-tl00-128gb.json b/data/smartphone/huawei/2018/nova-3i-dual-sim-td-lte-cn-ine-tl00-128gb.json new file mode 100644 index 00000000000..8661e5b532f --- /dev/null +++ b/data/smartphone/huawei/2018/nova-3i-dual-sim-td-lte-cn-ine-tl00-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "nova-3i-dual-sim-td-lte-cn-ine-tl00-128gb", + "name": "Nova 3i Dual SIM TD-LTE CN INE-TL00 128GB", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2018-08-01", + "ram_gb": 4.0, + "battery_mah": 3340, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/nova-4-premium-edition-20mp-dual-sim-td-lte-cn-vce-al00.json b/data/smartphone/huawei/2018/nova-4-premium-edition-20mp-dual-sim-td-lte-cn-vce-al00.json new file mode 100644 index 00000000000..4af45755110 --- /dev/null +++ b/data/smartphone/huawei/2018/nova-4-premium-edition-20mp-dual-sim-td-lte-cn-vce-al00.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-4-premium-edition-20mp-dual-sim-td-lte-cn-vce-al00", + "name": "Nova 4 Premium Edition 20MP Dual SIM TD-LTE CN VCE-AL00", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-12-27", + "ram_gb": 8.0, + "battery_mah": 3750, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 19.7 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/nova-4-premium-edition-20mp-dual-sim-td-lte-cn-vce-tl00.json b/data/smartphone/huawei/2018/nova-4-premium-edition-20mp-dual-sim-td-lte-cn-vce-tl00.json new file mode 100644 index 00000000000..8643a0ebe11 --- /dev/null +++ b/data/smartphone/huawei/2018/nova-4-premium-edition-20mp-dual-sim-td-lte-cn-vce-tl00.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-4-premium-edition-20mp-dual-sim-td-lte-cn-vce-tl00", + "name": "Nova 4 Premium Edition 20MP Dual SIM TD-LTE CN VCE-TL00", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-12-27", + "ram_gb": 8.0, + "battery_mah": 3750, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 19.7 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/nova-4-premium-edition-48mp-dual-sim-td-lte-cn-vce-al00.json b/data/smartphone/huawei/2018/nova-4-premium-edition-48mp-dual-sim-td-lte-cn-vce-al00.json new file mode 100644 index 00000000000..a95734b4180 --- /dev/null +++ b/data/smartphone/huawei/2018/nova-4-premium-edition-48mp-dual-sim-td-lte-cn-vce-al00.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-4-premium-edition-48mp-dual-sim-td-lte-cn-vce-al00", + "name": "Nova 4 Premium Edition 48MP Dual SIM TD-LTE CN VCE-AL00", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-12-01", + "ram_gb": 8.0, + "battery_mah": 3750, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/nova-lite-2-dual-sim-td-lte-jp-704hw.json b/data/smartphone/huawei/2018/nova-lite-2-dual-sim-td-lte-jp-704hw.json new file mode 100644 index 00000000000..518fab680c3 --- /dev/null +++ b/data/smartphone/huawei/2018/nova-lite-2-dual-sim-td-lte-jp-704hw.json @@ -0,0 +1,41 @@ +{ + "slug": "nova-lite-2-dual-sim-td-lte-jp-704hw", + "name": "Nova Lite 2 Dual SIM TD-LTE JP 704HW", + "brand": "huawei", + "soc": "kirin-659", + "release_date": "2018-07-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 143.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.65, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 427 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/p-smart-dual-sim-lte-a-latam-fig-lx3-fig-l23.json b/data/smartphone/huawei/2018/p-smart-dual-sim-lte-a-latam-fig-lx3-fig-l23.json new file mode 100644 index 00000000000..c20068fc47b --- /dev/null +++ b/data/smartphone/huawei/2018/p-smart-dual-sim-lte-a-latam-fig-lx3-fig-l23.json @@ -0,0 +1,41 @@ +{ + "slug": "p-smart-dual-sim-lte-a-latam-fig-lx3-fig-l23", + "name": "P Smart Dual SIM LTE-A LATAM FIG-LX3 / FIG-L23", + "brand": "huawei", + "soc": "kirin-659", + "release_date": "2018-03-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 143.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.65, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 427 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Peru", + "market_regions": "South America" +} diff --git a/data/smartphone/huawei/2018/p-smart-dual-sim-lte-emea-ine-lx1-64gb-p-smart-plus-ine-l21.json b/data/smartphone/huawei/2018/p-smart-dual-sim-lte-emea-ine-lx1-64gb-p-smart-plus-ine-l21.json new file mode 100644 index 00000000000..ec9e9d5f63a --- /dev/null +++ b/data/smartphone/huawei/2018/p-smart-dual-sim-lte-emea-ine-lx1-64gb-p-smart-plus-ine-l21.json @@ -0,0 +1,41 @@ +{ + "slug": "p-smart-dual-sim-lte-emea-ine-lx1-64gb-p-smart-plus-ine-l21", + "name": "P Smart+ Dual SIM LTE EMEA INE-LX1 64GB / P smart Plus INE-L21", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2018-08-01", + "ram_gb": 4.0, + "battery_mah": 3340, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Belgium , Czech , France , Germany , Hungary , Italy , Netherlands , Russia , UAE , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2018/p-smart-lte-a-latam-fig-l03.json b/data/smartphone/huawei/2018/p-smart-lte-a-latam-fig-l03.json new file mode 100644 index 00000000000..72ea709d1f4 --- /dev/null +++ b/data/smartphone/huawei/2018/p-smart-lte-a-latam-fig-l03.json @@ -0,0 +1,41 @@ +{ + "slug": "p-smart-lte-a-latam-fig-l03", + "name": "P Smart LTE-A LATAM FIG-L03", + "brand": "huawei", + "soc": "kirin-659", + "release_date": "2018-03-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 143.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.65, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 427 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Chile , Mexico", + "market_regions": "South America" +} diff --git a/data/smartphone/huawei/2018/p-smart-lte-emea-ine-lx1-128gb-nova-3i.json b/data/smartphone/huawei/2018/p-smart-lte-emea-ine-lx1-128gb-nova-3i.json new file mode 100644 index 00000000000..ec611a9c0a1 --- /dev/null +++ b/data/smartphone/huawei/2018/p-smart-lte-emea-ine-lx1-128gb-nova-3i.json @@ -0,0 +1,41 @@ +{ + "slug": "p-smart-lte-emea-ine-lx1-128gb-nova-3i", + "name": "P Smart+ LTE EMEA INE-LX1 128GB / Nova 3i", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2018-08-01", + "ram_gb": 4.0, + "battery_mah": 3340, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "France , Germany , Italy , Netherlands , Pakistan , Spain , UAE , UK", + "market_regions": "Asia , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2018/p20-global-dual-sim-td-lte-eml-l29-64gb.json b/data/smartphone/huawei/2018/p20-global-dual-sim-td-lte-eml-l29-64gb.json new file mode 100644 index 00000000000..afca87d2961 --- /dev/null +++ b/data/smartphone/huawei/2018/p20-global-dual-sim-td-lte-eml-l29-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "p20-global-dual-sim-td-lte-eml-l29-64gb", + "name": "P20 Global Dual SIM TD-LTE EML-L29 64GB", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-08-04", + "ram_gb": 4.0, + "battery_mah": 3400, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.79, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 430 + }, + "cameras": [ + { + "type": "main", + "mp": 11.7 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Czech , France , Germany , Hungary , Ireland , Italy , Romania , Russia , Slovakia , Slovenia , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/huawei/2018/p20-global-dual-sim-td-lte-eml-l29-eml-l29c.json b/data/smartphone/huawei/2018/p20-global-dual-sim-td-lte-eml-l29-eml-l29c.json new file mode 100644 index 00000000000..d89b256642e --- /dev/null +++ b/data/smartphone/huawei/2018/p20-global-dual-sim-td-lte-eml-l29-eml-l29c.json @@ -0,0 +1,41 @@ +{ + "slug": "p20-global-dual-sim-td-lte-eml-l29-eml-l29c", + "name": "P20 Global Dual SIM TD-LTE EML-L29 / EML-L29C", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-04-01", + "ram_gb": 4.0, + "battery_mah": 3400, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.79, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 430 + }, + "cameras": [ + { + "type": "main", + "mp": 11.7 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Bolivia , Bulgaria , Czech , France , Germany , Hungary , India , Indonesia , Ireland , Italy , Kenya , Malaysia , Russia , Romania , Singapore , Slovakia , Slovenia , Taiwan , Thailand , UAE , UK , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2018/p20-global-td-lte-eml-l09-eml-l09c.json b/data/smartphone/huawei/2018/p20-global-td-lte-eml-l09-eml-l09c.json new file mode 100644 index 00000000000..a65293edaf9 --- /dev/null +++ b/data/smartphone/huawei/2018/p20-global-td-lte-eml-l09-eml-l09c.json @@ -0,0 +1,41 @@ +{ + "slug": "p20-global-td-lte-eml-l09-eml-l09c", + "name": "P20 Global TD-LTE EML-L09 / EML-L09C", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-04-01", + "ram_gb": 4.0, + "battery_mah": 3400, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.79, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 430 + }, + "cameras": [ + { + "type": "main", + "mp": 11.7 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Canada , Cyprus , Croatia , Czech , Finland , France , Germany , Greece , Hungary , Ireland , Israel , Italy , Mexico , Netherlands , Norway , Poland , Portugal , Russia , Romania , Slovakia , Slovenia , Spain , Switzerland , Sweden , UAE , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , North America , Western Europe" +} diff --git a/data/smartphone/huawei/2018/p20-lite-dual-sim-lte-a-am-ane-lx3-ane-l23.json b/data/smartphone/huawei/2018/p20-lite-dual-sim-lte-a-am-ane-lx3-ane-l23.json new file mode 100644 index 00000000000..b32ebe3b10f --- /dev/null +++ b/data/smartphone/huawei/2018/p20-lite-dual-sim-lte-a-am-ane-lx3-ane-l23.json @@ -0,0 +1,41 @@ +{ + "slug": "p20-lite-dual-sim-lte-a-am-ane-lx3-ane-l23", + "name": "P20 Lite Dual SIM LTE-A AM ANE-LX3 / ANE-L23", + "brand": "huawei", + "soc": "kirin-659", + "release_date": "2018-04-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Canada , Peru", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/huawei/2018/p20-lite-dual-sim-lte-a-emea-ane-lx1-nova-3e-ane-l21.json b/data/smartphone/huawei/2018/p20-lite-dual-sim-lte-a-emea-ane-lx1-nova-3e-ane-l21.json new file mode 100644 index 00000000000..fc83e88fdda --- /dev/null +++ b/data/smartphone/huawei/2018/p20-lite-dual-sim-lte-a-emea-ane-lx1-nova-3e-ane-l21.json @@ -0,0 +1,41 @@ +{ + "slug": "p20-lite-dual-sim-lte-a-emea-ane-lx1-nova-3e-ane-l21", + "name": "P20 Lite Dual SIM LTE-A EMEA ANE-LX1 / Nova 3e ANE-L21", + "brand": "huawei", + "soc": "kirin-659", + "release_date": "2018-03-28", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Bulgaria , Finland , France , Germany , Hungary , Ireland , Italy , Netherlands , Poland , Romania , Saudi Arabia , Slovakia , UAE , UK", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2018/p20-lite-lte-a-emea-ane-l01.json b/data/smartphone/huawei/2018/p20-lite-lte-a-emea-ane-l01.json new file mode 100644 index 00000000000..6b1cad8cf6e --- /dev/null +++ b/data/smartphone/huawei/2018/p20-lite-lte-a-emea-ane-l01.json @@ -0,0 +1,41 @@ +{ + "slug": "p20-lite-lte-a-emea-ane-l01", + "name": "P20 Lite LTE-A EMEA ANE-L01", + "brand": "huawei", + "soc": "kirin-659", + "release_date": "2018-03-28", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Cyprus , Czech , France , Germany , Greece , Hungary , Ireland , Italy , Netherlands , Norway , Poland , Portugal , Slovakia , Slovenia , South Africa , Spain , Turkey , UAE , UK", + "market_regions": "Africa , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2018/p20-lite-wimax-2-hwv32.json b/data/smartphone/huawei/2018/p20-lite-wimax-2-hwv32.json new file mode 100644 index 00000000000..758bd55cc26 --- /dev/null +++ b/data/smartphone/huawei/2018/p20-lite-wimax-2-hwv32.json @@ -0,0 +1,41 @@ +{ + "slug": "p20-lite-wimax-2-hwv32", + "name": "P20 Lite WiMAX 2+ HWV32", + "brand": "huawei", + "soc": "kirin-659", + "release_date": "2018-06-16", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/p20-pro-dual-sim-td-lte-clt-al00-128gb.json b/data/smartphone/huawei/2018/p20-pro-dual-sim-td-lte-clt-al00-128gb.json new file mode 100644 index 00000000000..fc488e9cf6d --- /dev/null +++ b/data/smartphone/huawei/2018/p20-pro-dual-sim-td-lte-clt-al00-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "p20-pro-dual-sim-td-lte-clt-al00-128gb", + "name": "P20 Pro Dual SIM TD-LTE CLT-AL00 128GB", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-04-13", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2240", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/p20-pro-dual-sim-td-lte-clt-al00-256gb.json b/data/smartphone/huawei/2018/p20-pro-dual-sim-td-lte-clt-al00-256gb.json new file mode 100644 index 00000000000..6368bd11abf --- /dev/null +++ b/data/smartphone/huawei/2018/p20-pro-dual-sim-td-lte-clt-al00-256gb.json @@ -0,0 +1,41 @@ +{ + "slug": "p20-pro-dual-sim-td-lte-clt-al00-256gb", + "name": "P20 Pro Dual SIM TD-LTE CLT-AL00 256GB", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-04-13", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2240", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/p20-pro-dual-sim-td-lte-clt-al01-64gb.json b/data/smartphone/huawei/2018/p20-pro-dual-sim-td-lte-clt-al01-64gb.json new file mode 100644 index 00000000000..de464bda23a --- /dev/null +++ b/data/smartphone/huawei/2018/p20-pro-dual-sim-td-lte-clt-al01-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "p20-pro-dual-sim-td-lte-clt-al01-64gb", + "name": "P20 Pro Dual SIM TD-LTE CLT-AL01 64GB", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-04-13", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2240", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/p20-pro-dual-sim-td-lte-clt-tl01-64gb.json b/data/smartphone/huawei/2018/p20-pro-dual-sim-td-lte-clt-tl01-64gb.json new file mode 100644 index 00000000000..8e9c6cb5473 --- /dev/null +++ b/data/smartphone/huawei/2018/p20-pro-dual-sim-td-lte-clt-tl01-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "p20-pro-dual-sim-td-lte-clt-tl01-64gb", + "name": "P20 Pro Dual SIM TD-LTE CLT-TL01 64GB", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-04-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2240", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/p20-pro-global-dual-sim-td-lte-clt-l29-clt-l29c.json b/data/smartphone/huawei/2018/p20-pro-global-dual-sim-td-lte-clt-l29-clt-l29c.json new file mode 100644 index 00000000000..5f9561dfac5 --- /dev/null +++ b/data/smartphone/huawei/2018/p20-pro-global-dual-sim-td-lte-clt-l29-clt-l29c.json @@ -0,0 +1,41 @@ +{ + "slug": "p20-pro-global-dual-sim-td-lte-clt-l29-clt-l29c", + "name": "P20 Pro Global Dual SIM TD-LTE CLT-L29 / CLT-L29C", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-04-24", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2240", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Bolivia , Bulgaria , Czech , Estonia , France , Germany , Hungary , India , Indonesia , Italy , Japan , Kenya , Latvia , Lithuania , Malaysia , Netherlands , NZ , Philippines , Poland , Portugal , Romania , Russia , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Taiwan , Thailand , Turkey , UAE , UK , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2018/p20-pro-global-td-lte-clt-l09-clt-l09c.json b/data/smartphone/huawei/2018/p20-pro-global-td-lte-clt-l09-clt-l09c.json new file mode 100644 index 00000000000..593f5a1c5c6 --- /dev/null +++ b/data/smartphone/huawei/2018/p20-pro-global-td-lte-clt-l09-clt-l09c.json @@ -0,0 +1,41 @@ +{ + "slug": "p20-pro-global-td-lte-clt-l09-clt-l09c", + "name": "P20 Pro Global TD-LTE CLT-L09 / CLT-L09C", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-04-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2240", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , Ireland , Israel , Italy , Japan , Latvia , Lithuania , Mexico , Netherlands , Norway , NZ , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , Spain , Sweden , Switzerland , Taiwan , Turkey , UAE , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , North America , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2018/p20-pro-td-lte-jp-hw-01k-clt-l0j-clt-l01j.json b/data/smartphone/huawei/2018/p20-pro-td-lte-jp-hw-01k-clt-l0j-clt-l01j.json new file mode 100644 index 00000000000..1b4379c1e0d --- /dev/null +++ b/data/smartphone/huawei/2018/p20-pro-td-lte-jp-hw-01k-clt-l0j-clt-l01j.json @@ -0,0 +1,41 @@ +{ + "slug": "p20-pro-td-lte-jp-hw-01k-clt-l0j-clt-l01j", + "name": "P20 Pro TD-LTE JP HW-01K CLT-L0J / CLT-L01J", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-06-13", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2240", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/p20-pro-td-lte-na-clt-l04-clt-l04c.json b/data/smartphone/huawei/2018/p20-pro-td-lte-na-clt-l04-clt-l04c.json new file mode 100644 index 00000000000..3728abd935d --- /dev/null +++ b/data/smartphone/huawei/2018/p20-pro-td-lte-na-clt-l04-clt-l04c.json @@ -0,0 +1,41 @@ +{ + "slug": "p20-pro-td-lte-na-clt-l04-clt-l04c", + "name": "P20 Pro TD-LTE NA CLT-L04 / CLT-L04C", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-05-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2240", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/huawei/2018/p20-standard-edition-dual-sim-td-lte-cn-eml-al00.json b/data/smartphone/huawei/2018/p20-standard-edition-dual-sim-td-lte-cn-eml-al00.json new file mode 100644 index 00000000000..a90801b324b --- /dev/null +++ b/data/smartphone/huawei/2018/p20-standard-edition-dual-sim-td-lte-cn-eml-al00.json @@ -0,0 +1,41 @@ +{ + "slug": "p20-standard-edition-dual-sim-td-lte-cn-eml-al00", + "name": "P20 Standard Edition Dual SIM TD-LTE CN EML-AL00", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-04-12", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.79, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 430 + }, + "cameras": [ + { + "type": "main", + "mp": 11.7 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/p20-standard-edition-dual-sim-td-lte-cn-eml-tl00.json b/data/smartphone/huawei/2018/p20-standard-edition-dual-sim-td-lte-cn-eml-tl00.json new file mode 100644 index 00000000000..1fb36e5ec21 --- /dev/null +++ b/data/smartphone/huawei/2018/p20-standard-edition-dual-sim-td-lte-cn-eml-tl00.json @@ -0,0 +1,41 @@ +{ + "slug": "p20-standard-edition-dual-sim-td-lte-cn-eml-tl00", + "name": "P20 Standard Edition Dual SIM TD-LTE CN EML-TL00", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2018-04-12", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.79, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 430 + }, + "cameras": [ + { + "type": "main", + "mp": 11.7 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2018/y-max-dual-sim-td-lte-apac-ars-lx2-honor-8x-max-ars-l22.json b/data/smartphone/huawei/2018/y-max-dual-sim-td-lte-apac-ars-lx2-honor-8x-max-ars-l22.json new file mode 100644 index 00000000000..2afb562f09a --- /dev/null +++ b/data/smartphone/huawei/2018/y-max-dual-sim-td-lte-apac-ars-lx2-honor-8x-max-ars-l22.json @@ -0,0 +1,41 @@ +{ + "slug": "y-max-dual-sim-td-lte-apac-ars-lx2-honor-8x-max-ars-l22", + "name": "Y Max Dual SIM TD-LTE APAC ARS-LX2 / Honor 8X Max ARS-L22", + "brand": "huawei", + "soc": "snapdragon-660", + "release_date": "2018-10-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 7.12, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 350 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Malaysia , Philippines , Taiwan , Thailand", + "market_regions": "Asia , Middle East , Oceania , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/y6-2018-dual-sim-lte-apac-atu-lx2-atu-l22.json b/data/smartphone/huawei/2018/y6-2018-dual-sim-lte-apac-atu-lx2-atu-l22.json new file mode 100644 index 00000000000..6afbd4fe576 --- /dev/null +++ b/data/smartphone/huawei/2018/y6-2018-dual-sim-lte-apac-atu-lx2-atu-l22.json @@ -0,0 +1,41 @@ +{ + "slug": "y6-2018-dual-sim-lte-apac-atu-lx2-atu-l22", + "name": "Y6 2018 Dual SIM LTE APAC ATU-LX2 / ATU-L22", + "brand": "huawei", + "soc": "snapdragon-425", + "release_date": "2018-05-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , Philippines", + "market_regions": "Australia , Oceania" +} diff --git a/data/smartphone/huawei/2018/y6-2018-dual-sim-lte-emea-atu-lx1-atu-l21.json b/data/smartphone/huawei/2018/y6-2018-dual-sim-lte-emea-atu-lx1-atu-l21.json new file mode 100644 index 00000000000..6b4dd11d0b9 --- /dev/null +++ b/data/smartphone/huawei/2018/y6-2018-dual-sim-lte-emea-atu-lx1-atu-l21.json @@ -0,0 +1,41 @@ +{ + "slug": "y6-2018-dual-sim-lte-emea-atu-lx1-atu-l21", + "name": "Y6 2018 Dual SIM LTE EMEA ATU-LX1 / ATU-L21", + "brand": "huawei", + "soc": "snapdragon-425", + "release_date": "2018-05-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Belgium , Cyprus , Czech , Denmark , France , Germany , Greece , Hungary , Ireland , Kuwait , Poland , Romania , Russia , Slovakia , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2018/y6-2018-dual-sim-lte-latam-atu-lx3-atu-l23.json b/data/smartphone/huawei/2018/y6-2018-dual-sim-lte-latam-atu-lx3-atu-l23.json new file mode 100644 index 00000000000..9e4bba797a0 --- /dev/null +++ b/data/smartphone/huawei/2018/y6-2018-dual-sim-lte-latam-atu-lx3-atu-l23.json @@ -0,0 +1,41 @@ +{ + "slug": "y6-2018-dual-sim-lte-latam-atu-lx3-atu-l23", + "name": "Y6 2018 Dual SIM LTE LATAM ATU-LX3 / ATU-L23", + "brand": "huawei", + "soc": "snapdragon-425", + "release_date": "2018-06-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Brazil , Chile , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/huawei/2018/y6-2018-lte-emea-atu-l11.json b/data/smartphone/huawei/2018/y6-2018-lte-emea-atu-l11.json new file mode 100644 index 00000000000..c49a27c7e8b --- /dev/null +++ b/data/smartphone/huawei/2018/y6-2018-lte-emea-atu-l11.json @@ -0,0 +1,41 @@ +{ + "slug": "y6-2018-lte-emea-atu-l11", + "name": "Y6 2018 LTE EMEA ATU-L11", + "brand": "huawei", + "soc": "snapdragon-425", + "release_date": "2018-05-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Czech , France , Germany , Hungary , Italy , Poland , Romania , Russia , Slovakia", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/huawei/2018/y6-prime-2018-dual-sim-lte-emea-atu-l31.json b/data/smartphone/huawei/2018/y6-prime-2018-dual-sim-lte-emea-atu-l31.json new file mode 100644 index 00000000000..e924b6099d0 --- /dev/null +++ b/data/smartphone/huawei/2018/y6-prime-2018-dual-sim-lte-emea-atu-l31.json @@ -0,0 +1,41 @@ +{ + "slug": "y6-prime-2018-dual-sim-lte-emea-atu-l31", + "name": "Y6 Prime 2018 Dual SIM LTE EMEA ATU-L31", + "brand": "huawei", + "soc": "snapdragon-425", + "release_date": "2018-05-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Armenia , Czech , France , Hungary , Israel , Jordan , Kazakhstan , Kenya , Kuwait , Morocco , Pakistan , Poland , Romania , Saudi Arabia , Slovakia , Slovenia , Tunisie , UAE", + "market_regions": "Africa , Asia , Eastern Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2018/y6-prime-2018-dual-sim-td-lte-apac-atu-l42.json b/data/smartphone/huawei/2018/y6-prime-2018-dual-sim-td-lte-apac-atu-l42.json new file mode 100644 index 00000000000..32b88ee0512 --- /dev/null +++ b/data/smartphone/huawei/2018/y6-prime-2018-dual-sim-td-lte-apac-atu-l42.json @@ -0,0 +1,41 @@ +{ + "slug": "y6-prime-2018-dual-sim-td-lte-apac-atu-l42", + "name": "Y6 Prime 2018 Dual SIM TD-LTE APAC ATU-L42", + "brand": "huawei", + "soc": "snapdragon-425", + "release_date": "2018-05-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , Thailand , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/y7-2018-dual-sim-lte-latam-ldn-lx3-ldn-l23.json b/data/smartphone/huawei/2018/y7-2018-dual-sim-lte-latam-ldn-lx3-ldn-l23.json new file mode 100644 index 00000000000..a3ca7f972b9 --- /dev/null +++ b/data/smartphone/huawei/2018/y7-2018-dual-sim-lte-latam-ldn-lx3-ldn-l23.json @@ -0,0 +1,41 @@ +{ + "slug": "y7-2018-dual-sim-lte-latam-ldn-lx3-ldn-l23", + "name": "Y7 2018 Dual SIM LTE LATAM LDN-LX3 / LDN-L23", + "brand": "huawei", + "soc": "snapdragon-430", + "release_date": "2018-04-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 155.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "market_countries": "Brazil , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/huawei/2018/y7-2018-lte-emea-ldn-l01.json b/data/smartphone/huawei/2018/y7-2018-lte-emea-ldn-l01.json new file mode 100644 index 00000000000..c2617e4fa18 --- /dev/null +++ b/data/smartphone/huawei/2018/y7-2018-lte-emea-ldn-l01.json @@ -0,0 +1,41 @@ +{ + "slug": "y7-2018-lte-emea-ldn-l01", + "name": "Y7 2018 LTE EMEA LDN-L01", + "brand": "huawei", + "soc": "snapdragon-430", + "release_date": "2018-03-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 155.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "market_countries": "Austria , Belgium , Cyprus , Czech , France , Germany , Greece , Hungary , Italy , Russia , Slovakia , Slovenia , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/huawei/2018/y7-prime-2018-dual-sim-lte-emea-ldn-lx1-ldn-l21.json b/data/smartphone/huawei/2018/y7-prime-2018-dual-sim-lte-emea-ldn-lx1-ldn-l21.json new file mode 100644 index 00000000000..7de902d9688 --- /dev/null +++ b/data/smartphone/huawei/2018/y7-prime-2018-dual-sim-lte-emea-ldn-lx1-ldn-l21.json @@ -0,0 +1,41 @@ +{ + "slug": "y7-prime-2018-dual-sim-lte-emea-ldn-lx1-ldn-l21", + "name": "Y7 Prime 2018 Dual SIM LTE EMEA LDN-LX1 / LDN-L21", + "brand": "huawei", + "soc": "snapdragon-430", + "release_date": "2018-03-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 155.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "market_countries": "Austria , Belgium , Cyprus , France , Germany , Greece , Hungary , Romania , Russia , Slovakia , Spain , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2018/y9-2018-dual-sim-lte-a-emea-fla-lx1-fla-l21.json b/data/smartphone/huawei/2018/y9-2018-dual-sim-lte-a-emea-fla-lx1-fla-l21.json new file mode 100644 index 00000000000..08f4557e1b1 --- /dev/null +++ b/data/smartphone/huawei/2018/y9-2018-dual-sim-lte-a-emea-fla-lx1-fla-l21.json @@ -0,0 +1,41 @@ +{ + "slug": "y9-2018-dual-sim-lte-a-emea-fla-lx1-fla-l21", + "name": "Y9 2018 Dual SIM LTE-A EMEA FLA-LX1 / FLA-L21", + "brand": "huawei", + "soc": "kirin-659", + "release_date": "2018-05-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.93, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 407 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Egypt , Russia , Saudi Arabia , UAE", + "market_regions": "Africa , Eastern Europe , Europe , Middle East" +} diff --git a/data/smartphone/huawei/2018/y9-2018-dual-sim-lte-a-latam-fla-lx3-fla-l23.json b/data/smartphone/huawei/2018/y9-2018-dual-sim-lte-a-latam-fla-lx3-fla-l23.json new file mode 100644 index 00000000000..30b49c26a60 --- /dev/null +++ b/data/smartphone/huawei/2018/y9-2018-dual-sim-lte-a-latam-fla-lx3-fla-l23.json @@ -0,0 +1,41 @@ +{ + "slug": "y9-2018-dual-sim-lte-a-latam-fla-lx3-fla-l23", + "name": "Y9 2018 Dual SIM LTE-A LATAM FLA-LX3 / FLA-L23", + "brand": "huawei", + "soc": "kirin-659", + "release_date": "2018-06-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.93, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 407 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Brazil , Chile , Mexico , USA", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/huawei/2018/y9-2018-dual-sim-td-lte-apac-fla-lx2-fla-l22.json b/data/smartphone/huawei/2018/y9-2018-dual-sim-td-lte-apac-fla-lx2-fla-l22.json new file mode 100644 index 00000000000..031bfc33bed --- /dev/null +++ b/data/smartphone/huawei/2018/y9-2018-dual-sim-td-lte-apac-fla-lx2-fla-l22.json @@ -0,0 +1,41 @@ +{ + "slug": "y9-2018-dual-sim-td-lte-apac-fla-lx2-fla-l22", + "name": "Y9 2018 Dual SIM TD-LTE APAC FLA-LX2 / FLA-L22", + "brand": "huawei", + "soc": "kirin-659", + "release_date": "2018-04-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.93, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 407 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Malaysia , Pakistan , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2018/y9-2019-dual-sim-lte-a-emea-jkm-lx1-jkm-l21.json b/data/smartphone/huawei/2018/y9-2019-dual-sim-lte-a-emea-jkm-lx1-jkm-l21.json new file mode 100644 index 00000000000..99fc47d168b --- /dev/null +++ b/data/smartphone/huawei/2018/y9-2019-dual-sim-lte-a-emea-jkm-lx1-jkm-l21.json @@ -0,0 +1,41 @@ +{ + "slug": "y9-2019-dual-sim-lte-a-emea-jkm-lx1-jkm-l21", + "name": "Y9 2019 Dual SIM LTE-A EMEA JKM-LX1 / JKM-L21", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2018-10-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Czech , France , Germany , Hungary , Poland , Romania , Russia , Slovakia , UAE", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2018/y9-2019-dual-sim-lte-a-latam-jkm-lx3-jkm-l23.json b/data/smartphone/huawei/2018/y9-2019-dual-sim-lte-a-latam-jkm-lx3-jkm-l23.json new file mode 100644 index 00000000000..e6d7fd03959 --- /dev/null +++ b/data/smartphone/huawei/2018/y9-2019-dual-sim-lte-a-latam-jkm-lx3-jkm-l23.json @@ -0,0 +1,41 @@ +{ + "slug": "y9-2019-dual-sim-lte-a-latam-jkm-lx3-jkm-l23", + "name": "Y9 2019 Dual SIM LTE-A LATAM JKM-LX3 / JKM-L23", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2018-10-16", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Bolivia , Chile , Colombia , Mexico , Peru", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/huawei/2019/enjoy-10-plus-premium-edition-dual-sim-td-lte-cn-128gb-stk-al00.json b/data/smartphone/huawei/2019/enjoy-10-plus-premium-edition-dual-sim-td-lte-cn-128gb-stk-al00.json new file mode 100644 index 00000000000..2c94ae99a7c --- /dev/null +++ b/data/smartphone/huawei/2019/enjoy-10-plus-premium-edition-dual-sim-td-lte-cn-128gb-stk-al00.json @@ -0,0 +1,42 @@ +{ + "slug": "enjoy-10-plus-premium-edition-dual-sim-td-lte-cn-128gb-stk-al00", + "name": "Enjoy 10 Plus Premium Edition Dual SIM TD-LTE CN 128GB STK-AL00", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-09-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 196.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/enjoy-10-plus-premium-edition-dual-sim-td-lte-cn-128gb-stk-tl00.json b/data/smartphone/huawei/2019/enjoy-10-plus-premium-edition-dual-sim-td-lte-cn-128gb-stk-tl00.json new file mode 100644 index 00000000000..cd9759f4dd8 --- /dev/null +++ b/data/smartphone/huawei/2019/enjoy-10-plus-premium-edition-dual-sim-td-lte-cn-128gb-stk-tl00.json @@ -0,0 +1,42 @@ +{ + "slug": "enjoy-10-plus-premium-edition-dual-sim-td-lte-cn-128gb-stk-tl00", + "name": "Enjoy 10 Plus Premium Edition Dual SIM TD-LTE CN 128GB STK-TL00", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-09-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 196.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/enjoy-10-plus-standard-edition-dual-sim-td-lte-cn-128gb-stk-al00.json b/data/smartphone/huawei/2019/enjoy-10-plus-standard-edition-dual-sim-td-lte-cn-128gb-stk-al00.json new file mode 100644 index 00000000000..fd4b285e8bc --- /dev/null +++ b/data/smartphone/huawei/2019/enjoy-10-plus-standard-edition-dual-sim-td-lte-cn-128gb-stk-al00.json @@ -0,0 +1,42 @@ +{ + "slug": "enjoy-10-plus-standard-edition-dual-sim-td-lte-cn-128gb-stk-al00", + "name": "Enjoy 10 Plus Standard Edition Dual SIM TD-LTE CN 128GB STK-AL00", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-09-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 196.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/enjoy-10-plus-standard-edition-dual-sim-td-lte-cn-128gb-stk-tl00.json b/data/smartphone/huawei/2019/enjoy-10-plus-standard-edition-dual-sim-td-lte-cn-128gb-stk-tl00.json new file mode 100644 index 00000000000..1cde808cfc4 --- /dev/null +++ b/data/smartphone/huawei/2019/enjoy-10-plus-standard-edition-dual-sim-td-lte-cn-128gb-stk-tl00.json @@ -0,0 +1,42 @@ +{ + "slug": "enjoy-10-plus-standard-edition-dual-sim-td-lte-cn-128gb-stk-tl00", + "name": "Enjoy 10 Plus Standard Edition Dual SIM TD-LTE CN 128GB STK-TL00", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-09-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 196.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/enjoy-10-plus-top-edition-dual-sim-td-lte-cn-128gb-stk-al00.json b/data/smartphone/huawei/2019/enjoy-10-plus-top-edition-dual-sim-td-lte-cn-128gb-stk-al00.json new file mode 100644 index 00000000000..3e6b1cb90f9 --- /dev/null +++ b/data/smartphone/huawei/2019/enjoy-10-plus-top-edition-dual-sim-td-lte-cn-128gb-stk-al00.json @@ -0,0 +1,42 @@ +{ + "slug": "enjoy-10-plus-top-edition-dual-sim-td-lte-cn-128gb-stk-al00", + "name": "Enjoy 10 Plus Top Edition Dual SIM TD-LTE CN 128GB STK-AL00", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-09-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 196.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/enjoy-10-plus-top-edition-dual-sim-td-lte-cn-128gb-stk-tl00.json b/data/smartphone/huawei/2019/enjoy-10-plus-top-edition-dual-sim-td-lte-cn-128gb-stk-tl00.json new file mode 100644 index 00000000000..36f594cb6eb --- /dev/null +++ b/data/smartphone/huawei/2019/enjoy-10-plus-top-edition-dual-sim-td-lte-cn-128gb-stk-tl00.json @@ -0,0 +1,42 @@ +{ + "slug": "enjoy-10-plus-top-edition-dual-sim-td-lte-cn-128gb-stk-tl00", + "name": "Enjoy 10 Plus Top Edition Dual SIM TD-LTE CN 128GB STK-TL00", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-09-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 196.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/enjoy-10-premium-edition-dual-sim-td-lte-cn-64gb-art-al00x.json b/data/smartphone/huawei/2019/enjoy-10-premium-edition-dual-sim-td-lte-cn-64gb-art-al00x.json new file mode 100644 index 00000000000..dc962fe9082 --- /dev/null +++ b/data/smartphone/huawei/2019/enjoy-10-premium-edition-dual-sim-td-lte-cn-64gb-art-al00x.json @@ -0,0 +1,42 @@ +{ + "slug": "enjoy-10-premium-edition-dual-sim-td-lte-cn-64gb-art-al00x", + "name": "Enjoy 10 Premium Edition Dual SIM TD-LTE CN 64GB ART-AL00x", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-10-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/enjoy-10-standard-edition-dual-sim-td-lte-cn-128gb-art-al00x.json b/data/smartphone/huawei/2019/enjoy-10-standard-edition-dual-sim-td-lte-cn-128gb-art-al00x.json new file mode 100644 index 00000000000..9273a90164b --- /dev/null +++ b/data/smartphone/huawei/2019/enjoy-10-standard-edition-dual-sim-td-lte-cn-128gb-art-al00x.json @@ -0,0 +1,42 @@ +{ + "slug": "enjoy-10-standard-edition-dual-sim-td-lte-cn-128gb-art-al00x", + "name": "Enjoy 10 Standard Edition Dual SIM TD-LTE CN 128GB ART-AL00x", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-10-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/enjoy-10-standard-edition-dual-sim-td-lte-cn-128gb-art-tl00x.json b/data/smartphone/huawei/2019/enjoy-10-standard-edition-dual-sim-td-lte-cn-128gb-art-tl00x.json new file mode 100644 index 00000000000..e414da78e53 --- /dev/null +++ b/data/smartphone/huawei/2019/enjoy-10-standard-edition-dual-sim-td-lte-cn-128gb-art-tl00x.json @@ -0,0 +1,42 @@ +{ + "slug": "enjoy-10-standard-edition-dual-sim-td-lte-cn-128gb-art-tl00x", + "name": "Enjoy 10 Standard Edition Dual SIM TD-LTE CN 128GB ART-TL00x", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-10-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/enjoy-10-standard-edition-dual-sim-td-lte-cn-64gb-art-al00x.json b/data/smartphone/huawei/2019/enjoy-10-standard-edition-dual-sim-td-lte-cn-64gb-art-al00x.json new file mode 100644 index 00000000000..041f0aca893 --- /dev/null +++ b/data/smartphone/huawei/2019/enjoy-10-standard-edition-dual-sim-td-lte-cn-64gb-art-al00x.json @@ -0,0 +1,42 @@ +{ + "slug": "enjoy-10-standard-edition-dual-sim-td-lte-cn-64gb-art-al00x", + "name": "Enjoy 10 Standard Edition Dual SIM TD-LTE CN 64GB ART-AL00x", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-10-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/enjoy-10-standard-edition-dual-sim-td-lte-cn-64gb-art-tl00x.json b/data/smartphone/huawei/2019/enjoy-10-standard-edition-dual-sim-td-lte-cn-64gb-art-tl00x.json new file mode 100644 index 00000000000..3f841d5945e --- /dev/null +++ b/data/smartphone/huawei/2019/enjoy-10-standard-edition-dual-sim-td-lte-cn-64gb-art-tl00x.json @@ -0,0 +1,42 @@ +{ + "slug": "enjoy-10-standard-edition-dual-sim-td-lte-cn-64gb-art-tl00x", + "name": "Enjoy 10 Standard Edition Dual SIM TD-LTE CN 64GB ART-TL00x", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-10-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/enjoy-10s-premium-edition-dual-sim-td-lte-cn-128gb-aqm-al00.json b/data/smartphone/huawei/2019/enjoy-10s-premium-edition-dual-sim-td-lte-cn-128gb-aqm-al00.json new file mode 100644 index 00000000000..8460ccee458 --- /dev/null +++ b/data/smartphone/huawei/2019/enjoy-10s-premium-edition-dual-sim-td-lte-cn-128gb-aqm-al00.json @@ -0,0 +1,43 @@ +{ + "slug": "enjoy-10s-premium-edition-dual-sim-td-lte-cn-128gb-aqm-al00", + "name": "Enjoy 10S Premium Edition Dual SIM TD-LTE CN 128GB AQM-AL00", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-11-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 418 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/enjoy-10s-standard-edition-dual-sim-td-lte-cn-128gb-aqm-al00.json b/data/smartphone/huawei/2019/enjoy-10s-standard-edition-dual-sim-td-lte-cn-128gb-aqm-al00.json new file mode 100644 index 00000000000..8a6c2e7645d --- /dev/null +++ b/data/smartphone/huawei/2019/enjoy-10s-standard-edition-dual-sim-td-lte-cn-128gb-aqm-al00.json @@ -0,0 +1,43 @@ +{ + "slug": "enjoy-10s-standard-edition-dual-sim-td-lte-cn-128gb-aqm-al00", + "name": "Enjoy 10S Standard Edition Dual SIM TD-LTE CN 128GB AQM-AL00", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-11-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 418 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/enjoy-10s-standard-edition-dual-sim-td-lte-cn-64gb-aqm-al00.json b/data/smartphone/huawei/2019/enjoy-10s-standard-edition-dual-sim-td-lte-cn-64gb-aqm-al00.json new file mode 100644 index 00000000000..00172b55128 --- /dev/null +++ b/data/smartphone/huawei/2019/enjoy-10s-standard-edition-dual-sim-td-lte-cn-64gb-aqm-al00.json @@ -0,0 +1,43 @@ +{ + "slug": "enjoy-10s-standard-edition-dual-sim-td-lte-cn-64gb-aqm-al00", + "name": "Enjoy 10S Standard Edition Dual SIM TD-LTE CN 64GB AQM-AL00", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-11-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 418 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/enjoy-10s-standard-edition-dual-sim-td-lte-cn-64gb-aqm-tl00.json b/data/smartphone/huawei/2019/enjoy-10s-standard-edition-dual-sim-td-lte-cn-64gb-aqm-tl00.json new file mode 100644 index 00000000000..9f20e3bef0d --- /dev/null +++ b/data/smartphone/huawei/2019/enjoy-10s-standard-edition-dual-sim-td-lte-cn-64gb-aqm-tl00.json @@ -0,0 +1,43 @@ +{ + "slug": "enjoy-10s-standard-edition-dual-sim-td-lte-cn-64gb-aqm-tl00", + "name": "Enjoy 10S Standard Edition Dual SIM TD-LTE CN 64GB AQM-TL00", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-11-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 418 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/enjoy-9e-dual-sim-td-lte-cn-mrd-al00.json b/data/smartphone/huawei/2019/enjoy-9e-dual-sim-td-lte-cn-mrd-al00.json new file mode 100644 index 00000000000..be224840521 --- /dev/null +++ b/data/smartphone/huawei/2019/enjoy-9e-dual-sim-td-lte-cn-mrd-al00.json @@ -0,0 +1,41 @@ +{ + "slug": "enjoy-9e-dual-sim-td-lte-cn-mrd-al00", + "name": "Enjoy 9e Dual SIM TD-LTE CN MRD-AL00", + "brand": "huawei", + "soc": "helio-p35", + "release_date": "2019-04-08", + "ram_gb": 3.0, + "battery_mah": 3020, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/enjoy-9e-dual-sim-td-lte-cn-mrd-tl00.json b/data/smartphone/huawei/2019/enjoy-9e-dual-sim-td-lte-cn-mrd-tl00.json new file mode 100644 index 00000000000..0eae4ffab87 --- /dev/null +++ b/data/smartphone/huawei/2019/enjoy-9e-dual-sim-td-lte-cn-mrd-tl00.json @@ -0,0 +1,41 @@ +{ + "slug": "enjoy-9e-dual-sim-td-lte-cn-mrd-tl00", + "name": "Enjoy 9e Dual SIM TD-LTE CN MRD-TL00", + "brand": "huawei", + "soc": "helio-p35", + "release_date": "2019-04-08", + "ram_gb": 3.0, + "battery_mah": 3020, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/enjoy-9s-premium-edition-dual-sim-td-lte-cn-64gb-pot-al00a.json b/data/smartphone/huawei/2019/enjoy-9s-premium-edition-dual-sim-td-lte-cn-64gb-pot-al00a.json new file mode 100644 index 00000000000..d42a5cbbe42 --- /dev/null +++ b/data/smartphone/huawei/2019/enjoy-9s-premium-edition-dual-sim-td-lte-cn-64gb-pot-al00a.json @@ -0,0 +1,42 @@ +{ + "slug": "enjoy-9s-premium-edition-dual-sim-td-lte-cn-64gb-pot-al00a", + "name": "Enjoy 9S Premium Edition Dual SIM TD-LTE CN 64GB POT-AL00a", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-03-01", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/enjoy-9s-standard-edition-dual-sim-td-lte-cn-128gb-pot-al00a.json b/data/smartphone/huawei/2019/enjoy-9s-standard-edition-dual-sim-td-lte-cn-128gb-pot-al00a.json new file mode 100644 index 00000000000..8a29b49a91d --- /dev/null +++ b/data/smartphone/huawei/2019/enjoy-9s-standard-edition-dual-sim-td-lte-cn-128gb-pot-al00a.json @@ -0,0 +1,42 @@ +{ + "slug": "enjoy-9s-standard-edition-dual-sim-td-lte-cn-128gb-pot-al00a", + "name": "Enjoy 9S Standard Edition Dual SIM TD-LTE CN 128GB POT-AL00a", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-04-02", + "ram_gb": 4.0, + "battery_mah": 3400, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/enjoy-9s-standard-edition-dual-sim-td-lte-cn-128gb-pot-tl00a.json b/data/smartphone/huawei/2019/enjoy-9s-standard-edition-dual-sim-td-lte-cn-128gb-pot-tl00a.json new file mode 100644 index 00000000000..b0ae1083520 --- /dev/null +++ b/data/smartphone/huawei/2019/enjoy-9s-standard-edition-dual-sim-td-lte-cn-128gb-pot-tl00a.json @@ -0,0 +1,42 @@ +{ + "slug": "enjoy-9s-standard-edition-dual-sim-td-lte-cn-128gb-pot-tl00a", + "name": "Enjoy 9S Standard Edition Dual SIM TD-LTE CN 128GB POT-TL00a", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-04-02", + "ram_gb": 4.0, + "battery_mah": 3400, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/enjoy-9s-standard-edition-dual-sim-td-lte-cn-64gb-pot-al00a.json b/data/smartphone/huawei/2019/enjoy-9s-standard-edition-dual-sim-td-lte-cn-64gb-pot-al00a.json new file mode 100644 index 00000000000..22068957529 --- /dev/null +++ b/data/smartphone/huawei/2019/enjoy-9s-standard-edition-dual-sim-td-lte-cn-64gb-pot-al00a.json @@ -0,0 +1,42 @@ +{ + "slug": "enjoy-9s-standard-edition-dual-sim-td-lte-cn-64gb-pot-al00a", + "name": "Enjoy 9S Standard Edition Dual SIM TD-LTE CN 64GB POT-AL00a", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-03-01", + "ram_gb": 4.0, + "battery_mah": 3400, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-10-lite-dual-sim-td-lte-apac-64gb-hry-lx2-hry-l22.json b/data/smartphone/huawei/2019/honor-10-lite-dual-sim-td-lte-apac-64gb-hry-lx2-hry-l22.json new file mode 100644 index 00000000000..e008e943939 --- /dev/null +++ b/data/smartphone/huawei/2019/honor-10-lite-dual-sim-td-lte-apac-64gb-hry-lx2-hry-l22.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-10-lite-dual-sim-td-lte-apac-64gb-hry-lx2-hry-l22", + "name": "Honor 10 Lite Dual SIM TD-LTE APAC 64GB HRY-LX2 / HRY-L22", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-01-01", + "ram_gb": 3.0, + "battery_mah": 3400, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , HK , Japan , Singapore", + "market_regions": "Asia , Australia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2019/honor-10-lite-dual-sim-td-lte-emea-64gb-hry-lx1-hry-l21.json b/data/smartphone/huawei/2019/honor-10-lite-dual-sim-td-lte-emea-64gb-hry-lx1-hry-l21.json new file mode 100644 index 00000000000..0db6d2f13a6 --- /dev/null +++ b/data/smartphone/huawei/2019/honor-10-lite-dual-sim-td-lte-emea-64gb-hry-lx1-hry-l21.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-10-lite-dual-sim-td-lte-emea-64gb-hry-lx1-hry-l21", + "name": "Honor 10 Lite Dual SIM TD-LTE EMEA 64GB HRY-LX1 / HRY-L21", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-01-11", + "ram_gb": 3.0, + "battery_mah": 3400, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Belarus , Cyprus , Czech , Estonia , Germany , Greece , Hungary , Italy , Latvia , Lithuania , Romania , Russia , Slovakia , UAE , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2019/honor-10-lite-standard-edition-dual-sim-td-lte-cn-in-32gb-hry-al00.json b/data/smartphone/huawei/2019/honor-10-lite-standard-edition-dual-sim-td-lte-cn-in-32gb-hry-al00.json new file mode 100644 index 00000000000..1ea52b9f4c6 --- /dev/null +++ b/data/smartphone/huawei/2019/honor-10-lite-standard-edition-dual-sim-td-lte-cn-in-32gb-hry-al00.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-10-lite-standard-edition-dual-sim-td-lte-cn-in-32gb-hry-al00", + "name": "Honor 10 Lite Standard Edition Dual SIM TD-LTE CN IN 32GB HRY-AL00", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-03-17", + "ram_gb": 3.0, + "battery_mah": 3400, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China , India", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-10i-dual-sim-lte-a-emea-128gb-hry-lx1t-honor-20-lite-hry-l21t.json b/data/smartphone/huawei/2019/honor-10i-dual-sim-lte-a-emea-128gb-hry-lx1t-honor-20-lite-hry-l21t.json new file mode 100644 index 00000000000..8827eed12f9 --- /dev/null +++ b/data/smartphone/huawei/2019/honor-10i-dual-sim-lte-a-emea-128gb-hry-lx1t-honor-20-lite-hry-l21t.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-10i-dual-sim-lte-a-emea-128gb-hry-lx1t-honor-20-lite-hry-l21t", + "name": "Honor 10i Dual SIM LTE-A EMEA 128GB HRY-LX1T / Honor 20 Lite HRY-L21T", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-04-01", + "ram_gb": 4.0, + "battery_mah": 3400, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Austria , Czech , Hungary , Poland , Romania , Russia , Slovakia , Slovenia , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2019/honor-20-4g-dual-sim-td-lte-cn-128gb-yal-tl00.json b/data/smartphone/huawei/2019/honor-20-4g-dual-sim-td-lte-cn-128gb-yal-tl00.json new file mode 100644 index 00000000000..619e59b5dd7 --- /dev/null +++ b/data/smartphone/huawei/2019/honor-20-4g-dual-sim-td-lte-cn-128gb-yal-tl00.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-20-4g-dual-sim-td-lte-cn-128gb-yal-tl00", + "name": "Honor 20 4G+ Dual SIM TD-LTE CN 128GB YAL-TL00", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-06-07", + "ram_gb": 8.0, + "battery_mah": 3750, + "weight_g": 174.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-20-dual-sim-td-lte-cn-128gb-yal-al00.json b/data/smartphone/huawei/2019/honor-20-dual-sim-td-lte-cn-128gb-yal-al00.json new file mode 100644 index 00000000000..a802c30a41e --- /dev/null +++ b/data/smartphone/huawei/2019/honor-20-dual-sim-td-lte-cn-128gb-yal-al00.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-20-dual-sim-td-lte-cn-128gb-yal-al00", + "name": "Honor 20 Dual SIM TD-LTE CN 128GB YAL-AL00", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-06-07", + "ram_gb": 8.0, + "battery_mah": 3750, + "weight_g": 174.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-20-dual-sim-td-lte-cn-256gb-yal-al00.json b/data/smartphone/huawei/2019/honor-20-dual-sim-td-lte-cn-256gb-yal-al00.json new file mode 100644 index 00000000000..582edae556f --- /dev/null +++ b/data/smartphone/huawei/2019/honor-20-dual-sim-td-lte-cn-256gb-yal-al00.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-20-dual-sim-td-lte-cn-256gb-yal-al00", + "name": "Honor 20 Dual SIM TD-LTE CN 256GB YAL-AL00", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-06-07", + "ram_gb": 8.0, + "battery_mah": 3750, + "weight_g": 174.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-20-pro-4g-dual-sim-td-lte-cn-256gb-yal-tl10.json b/data/smartphone/huawei/2019/honor-20-pro-4g-dual-sim-td-lte-cn-256gb-yal-tl10.json new file mode 100644 index 00000000000..39d0b81cc2a --- /dev/null +++ b/data/smartphone/huawei/2019/honor-20-pro-4g-dual-sim-td-lte-cn-256gb-yal-tl10.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-20-pro-4g-dual-sim-td-lte-cn-256gb-yal-tl10", + "name": "Honor 20 Pro 4G+ Dual SIM TD-LTE CN 256GB YAL-TL10", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-06-16", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-20-pro-dual-sim-td-lte-cn-128gb-yal-al10.json b/data/smartphone/huawei/2019/honor-20-pro-dual-sim-td-lte-cn-128gb-yal-al10.json new file mode 100644 index 00000000000..abd3546354b --- /dev/null +++ b/data/smartphone/huawei/2019/honor-20-pro-dual-sim-td-lte-cn-128gb-yal-al10.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-20-pro-dual-sim-td-lte-cn-128gb-yal-al10", + "name": "Honor 20 Pro Dual SIM TD-LTE CN 128GB YAL-AL10", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-06-16", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-20-pro-dual-sim-td-lte-cn-256gb-yal-al10.json b/data/smartphone/huawei/2019/honor-20-pro-dual-sim-td-lte-cn-256gb-yal-al10.json new file mode 100644 index 00000000000..4ee362b3d67 --- /dev/null +++ b/data/smartphone/huawei/2019/honor-20-pro-dual-sim-td-lte-cn-256gb-yal-al10.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-20-pro-dual-sim-td-lte-cn-256gb-yal-al10", + "name": "Honor 20 Pro Dual SIM TD-LTE CN 256GB YAL-AL10", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-06-16", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-20-pro-global-dual-sim-td-lte-256gb-yal-l41.json b/data/smartphone/huawei/2019/honor-20-pro-global-dual-sim-td-lte-256gb-yal-l41.json new file mode 100644 index 00000000000..4749ee0851c --- /dev/null +++ b/data/smartphone/huawei/2019/honor-20-pro-global-dual-sim-td-lte-256gb-yal-l41.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-20-pro-global-dual-sim-td-lte-256gb-yal-l41", + "name": "Honor 20 Pro Global Dual SIM TD-LTE 256GB YAL-L41", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-07-29", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belgium , Bulgaria , Cyprus , Czech , Egypt , Finland , France , Germany , Greece , Hungary , India , Indonesia , Italy , Japan , Malaysia , Netherlands , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , Spain , Sweden , Taiwan , UAE , UK", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2019/honor-20-standard-edition-global-dual-sim-td-lte-128gb-yal-l21-nova-5t.json b/data/smartphone/huawei/2019/honor-20-standard-edition-global-dual-sim-td-lte-128gb-yal-l21-nova-5t.json new file mode 100644 index 00000000000..9ffe5d752e1 --- /dev/null +++ b/data/smartphone/huawei/2019/honor-20-standard-edition-global-dual-sim-td-lte-128gb-yal-l21-nova-5t.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-20-standard-edition-global-dual-sim-td-lte-128gb-yal-l21-nova-5t", + "name": "Honor 20 Standard Edition Global Dual SIM TD-LTE 128GB YAL-L21 / nova 5T", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-06-21", + "ram_gb": 6.0, + "battery_mah": 3750, + "weight_g": 174.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belgium , Bulgaria , Cyprus , Czech , Egypt , Finland , France , Germany , Greece , Hungary , India , Indonesia , Japan , Malaysia , Netherlands , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Singapore , Slovenia , Spain , Sweden , Taiwan , Thailand , UAE , UK", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2019/honor-20-youth-premium-edition-dual-sim-td-lte-cn-128gb-lra-al00.json b/data/smartphone/huawei/2019/honor-20-youth-premium-edition-dual-sim-td-lte-cn-128gb-lra-al00.json new file mode 100644 index 00000000000..a262721b28e --- /dev/null +++ b/data/smartphone/huawei/2019/honor-20-youth-premium-edition-dual-sim-td-lte-cn-128gb-lra-al00.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-20-youth-premium-edition-dual-sim-td-lte-cn-128gb-lra-al00", + "name": "Honor 20 Youth Premium Edition Dual SIM TD-LTE CN 128GB LRA-AL00", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-10-22", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 171.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 418 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-20-youth-premium-edition-dual-sim-td-lte-cn-64gb-lra-al00.json b/data/smartphone/huawei/2019/honor-20-youth-premium-edition-dual-sim-td-lte-cn-64gb-lra-al00.json new file mode 100644 index 00000000000..1360223917b --- /dev/null +++ b/data/smartphone/huawei/2019/honor-20-youth-premium-edition-dual-sim-td-lte-cn-64gb-lra-al00.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-20-youth-premium-edition-dual-sim-td-lte-cn-64gb-lra-al00", + "name": "Honor 20 Youth Premium Edition Dual SIM TD-LTE CN 64GB LRA-AL00", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-10-22", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 171.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 418 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-20-youth-standard-edition-dual-sim-td-lte-cn-64gb-lra-al00.json b/data/smartphone/huawei/2019/honor-20-youth-standard-edition-dual-sim-td-lte-cn-64gb-lra-al00.json new file mode 100644 index 00000000000..397458c978c --- /dev/null +++ b/data/smartphone/huawei/2019/honor-20-youth-standard-edition-dual-sim-td-lte-cn-64gb-lra-al00.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-20-youth-standard-edition-dual-sim-td-lte-cn-64gb-lra-al00", + "name": "Honor 20 Youth Standard Edition Dual SIM TD-LTE CN 64GB LRA-AL00", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-10-22", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 171.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 418 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-20-youth-top-edition-dual-sim-td-lte-cn-128gb-lra-al00.json b/data/smartphone/huawei/2019/honor-20-youth-top-edition-dual-sim-td-lte-cn-128gb-lra-al00.json new file mode 100644 index 00000000000..88d803441d7 --- /dev/null +++ b/data/smartphone/huawei/2019/honor-20-youth-top-edition-dual-sim-td-lte-cn-128gb-lra-al00.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-20-youth-top-edition-dual-sim-td-lte-cn-128gb-lra-al00", + "name": "Honor 20 Youth Top Edition Dual SIM TD-LTE CN 128GB LRA-AL00", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-10-22", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 171.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 418 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-20i-premium-edition-dual-sim-td-lte-cn-256gb-hry-al00t-honor-20-lite.json b/data/smartphone/huawei/2019/honor-20i-premium-edition-dual-sim-td-lte-cn-256gb-hry-al00t-honor-20-lite.json new file mode 100644 index 00000000000..eb134c17aab --- /dev/null +++ b/data/smartphone/huawei/2019/honor-20i-premium-edition-dual-sim-td-lte-cn-256gb-hry-al00t-honor-20-lite.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-20i-premium-edition-dual-sim-td-lte-cn-256gb-hry-al00t-honor-20-lite", + "name": "Honor 20i Premium Edition Dual SIM TD-LTE CN 256GB HRY-AL00T / Honor 20 Lite", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-04-18", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-20i-standard-edition-dual-sim-td-lte-cn-128gb-hry-al00t-honor-20-lite.json b/data/smartphone/huawei/2019/honor-20i-standard-edition-dual-sim-td-lte-cn-128gb-hry-al00t-honor-20-lite.json new file mode 100644 index 00000000000..928bbf0e0c2 --- /dev/null +++ b/data/smartphone/huawei/2019/honor-20i-standard-edition-dual-sim-td-lte-cn-128gb-hry-al00t-honor-20-lite.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-20i-standard-edition-dual-sim-td-lte-cn-128gb-hry-al00t-honor-20-lite", + "name": "Honor 20i Standard Edition Dual SIM TD-LTE CN 128GB HRY-AL00T / Honor 20 Lite", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-04-18", + "ram_gb": 4.0, + "battery_mah": 3400, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-20s-premium-edition-dual-sim-td-lte-cn-128gb-yal-al50.json b/data/smartphone/huawei/2019/honor-20s-premium-edition-dual-sim-td-lte-cn-128gb-yal-al50.json new file mode 100644 index 00000000000..970af11022f --- /dev/null +++ b/data/smartphone/huawei/2019/honor-20s-premium-edition-dual-sim-td-lte-cn-128gb-yal-al50.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-20s-premium-edition-dual-sim-td-lte-cn-128gb-yal-al50", + "name": "Honor 20S Premium Edition Dual SIM TD-LTE CN 128GB YAL-AL50", + "brand": "huawei", + "soc": "kirin-810", + "release_date": "2019-09-01", + "ram_gb": 8.0, + "battery_mah": 3750, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-20s-standard-edition-dual-sim-td-lte-cn-128gb-yal-al50.json b/data/smartphone/huawei/2019/honor-20s-standard-edition-dual-sim-td-lte-cn-128gb-yal-al50.json new file mode 100644 index 00000000000..893b014bd20 --- /dev/null +++ b/data/smartphone/huawei/2019/honor-20s-standard-edition-dual-sim-td-lte-cn-128gb-yal-al50.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-20s-standard-edition-dual-sim-td-lte-cn-128gb-yal-al50", + "name": "Honor 20S Standard Edition Dual SIM TD-LTE CN 128GB YAL-AL50", + "brand": "huawei", + "soc": "kirin-810", + "release_date": "2019-09-01", + "ram_gb": 6.0, + "battery_mah": 3750, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-20s-standard-edition-dual-sim-td-lte-cn-128gb-yal-tl50.json b/data/smartphone/huawei/2019/honor-20s-standard-edition-dual-sim-td-lte-cn-128gb-yal-tl50.json new file mode 100644 index 00000000000..ca805d42010 --- /dev/null +++ b/data/smartphone/huawei/2019/honor-20s-standard-edition-dual-sim-td-lte-cn-128gb-yal-tl50.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-20s-standard-edition-dual-sim-td-lte-cn-128gb-yal-tl50", + "name": "Honor 20S Standard Edition Dual SIM TD-LTE CN 128GB YAL-TL50", + "brand": "huawei", + "soc": "kirin-810", + "release_date": "2019-09-01", + "ram_gb": 6.0, + "battery_mah": 3750, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-8a-premium-edition-global-dual-sim-td-lte-32gb-jat-l29.json b/data/smartphone/huawei/2019/honor-8a-premium-edition-global-dual-sim-td-lte-32gb-jat-l29.json new file mode 100644 index 00000000000..4972dac16f3 --- /dev/null +++ b/data/smartphone/huawei/2019/honor-8a-premium-edition-global-dual-sim-td-lte-32gb-jat-l29.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-8a-premium-edition-global-dual-sim-td-lte-32gb-jat-l29", + "name": "Honor 8A Premium Edition Global Dual SIM TD-LTE 32GB JAT-L29", + "brand": "huawei", + "soc": "helio-p35", + "release_date": "2019-02-18", + "ram_gb": 3.0, + "battery_mah": 3020, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , Belarus , Bulgaria , Canada , Czech , Egypt , France , Germany , Hungary , Italy , Mexico , NZ , Poland , Russia , Romania , Saudi Arabia , Slovakia , UAE", + "market_regions": "Australia , Eastern Europe , Europe , Middle East , North America , Western Europe" +} diff --git a/data/smartphone/huawei/2019/honor-8a-standard-edition-global-dual-sim-td-lte-32gb-jat-lx9-jat-l29.json b/data/smartphone/huawei/2019/honor-8a-standard-edition-global-dual-sim-td-lte-32gb-jat-lx9-jat-l29.json new file mode 100644 index 00000000000..becac06b8fd --- /dev/null +++ b/data/smartphone/huawei/2019/honor-8a-standard-edition-global-dual-sim-td-lte-32gb-jat-lx9-jat-l29.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-8a-standard-edition-global-dual-sim-td-lte-32gb-jat-lx9-jat-l29", + "name": "Honor 8A Standard Edition Global Dual SIM TD-LTE 32GB JAT-LX9 / JAT-L29", + "brand": "huawei", + "soc": "helio-p35", + "release_date": "2019-02-18", + "ram_gb": 2.0, + "battery_mah": 3020, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , Belarus , Bulgaria , Canada , Czech , Egypt , France , Germany , Hungary , Italy , Mexico , NZ , Poland , Russia , Romania , Saudi Arabia , Slovakia , UAE", + "market_regions": "Australia , Eastern Europe , Europe , Middle East , North America , Western Europe" +} diff --git a/data/smartphone/huawei/2019/honor-8s-2019-dual-sim-lte-emea-32gb-ksa-lx9-ksa-l29.json b/data/smartphone/huawei/2019/honor-8s-2019-dual-sim-lte-emea-32gb-ksa-lx9-ksa-l29.json new file mode 100644 index 00000000000..34bb6a1a8c5 --- /dev/null +++ b/data/smartphone/huawei/2019/honor-8s-2019-dual-sim-lte-emea-32gb-ksa-lx9-ksa-l29.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-8s-2019-dual-sim-lte-emea-32gb-ksa-lx9-ksa-l29", + "name": "Honor 8S 2019 Dual SIM LTE EMEA 32GB KSA-LX9 / KSA-L29", + "brand": "huawei", + "soc": "helio-a22", + "release_date": "2019-04-01", + "ram_gb": 2.0, + "battery_mah": 3020, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Belarus , Bulgaria , Cyprus , Czech , Egypt , Greece , Germany , Hungary , Italy , Netherlands , Pakistan , Poland , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , South Africa , Spain , UAE , UK , Ukraine", + "market_regions": "Africa , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2019/honor-8s-2019-dual-sim-lte-latam-32gb-ksa-lx3-ksa-l23.json b/data/smartphone/huawei/2019/honor-8s-2019-dual-sim-lte-latam-32gb-ksa-lx3-ksa-l23.json new file mode 100644 index 00000000000..69d70b17f48 --- /dev/null +++ b/data/smartphone/huawei/2019/honor-8s-2019-dual-sim-lte-latam-32gb-ksa-lx3-ksa-l23.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-8s-2019-dual-sim-lte-latam-32gb-ksa-lx3-ksa-l23", + "name": "Honor 8S 2019 Dual SIM LTE LATAM 32GB KSA-LX3 / KSA-L23", + "brand": "huawei", + "soc": "helio-a22", + "release_date": "2019-01-01", + "ram_gb": 2.0, + "battery_mah": 3020, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Colombia , Mexico , Paraguay , Peru", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/huawei/2019/honor-8s-2019-dual-sim-td-lte-apac-32gb-ksa-lx2-ksa-l22.json b/data/smartphone/huawei/2019/honor-8s-2019-dual-sim-td-lte-apac-32gb-ksa-lx2-ksa-l22.json new file mode 100644 index 00000000000..104c32b1c0e --- /dev/null +++ b/data/smartphone/huawei/2019/honor-8s-2019-dual-sim-td-lte-apac-32gb-ksa-lx2-ksa-l22.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-8s-2019-dual-sim-td-lte-apac-32gb-ksa-lx2-ksa-l22", + "name": "Honor 8S 2019 Dual SIM TD-LTE APAC 32GB KSA-LX2 / KSA-L22", + "brand": "huawei", + "soc": "helio-a22", + "release_date": "2019-05-01", + "ram_gb": 2.0, + "battery_mah": 3020, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , HK , Malaysia , NZ , Philippines , Singapore , Thailand", + "market_regions": "Asia , Australia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/huawei/2019/honor-8s-2019-lte-emea-32gb-ksa-lx9-ksa-l09.json b/data/smartphone/huawei/2019/honor-8s-2019-lte-emea-32gb-ksa-lx9-ksa-l09.json new file mode 100644 index 00000000000..dcd218fb88d --- /dev/null +++ b/data/smartphone/huawei/2019/honor-8s-2019-lte-emea-32gb-ksa-lx9-ksa-l09.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-8s-2019-lte-emea-32gb-ksa-lx9-ksa-l09", + "name": "Honor 8S 2019 LTE EMEA 32GB KSA-LX9 / KSA-L09", + "brand": "huawei", + "soc": "helio-a22", + "release_date": "2019-04-01", + "ram_gb": 2.0, + "battery_mah": 3020, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Belgium , Cyprus , Czech , Denmark , Finland , Germany , Greece , Italy , Netherlands , Portugal , Russia , Spain , Sweden , Switzerland , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/huawei/2019/honor-8s-2019-lte-latam-32gb-ksa-lx3-ksa-l03.json b/data/smartphone/huawei/2019/honor-8s-2019-lte-latam-32gb-ksa-lx3-ksa-l03.json new file mode 100644 index 00000000000..db1e41a0c30 --- /dev/null +++ b/data/smartphone/huawei/2019/honor-8s-2019-lte-latam-32gb-ksa-lx3-ksa-l03.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-8s-2019-lte-latam-32gb-ksa-lx3-ksa-l03", + "name": "Honor 8S 2019 LTE LATAM 32GB KSA-LX3 / KSA-L03", + "brand": "huawei", + "soc": "helio-a22", + "release_date": "2019-04-01", + "ram_gb": 2.0, + "battery_mah": 3020, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/huawei/2019/honor-9x-premium-edition-dual-sim-td-lte-cn-128gb-hlk-al00.json b/data/smartphone/huawei/2019/honor-9x-premium-edition-dual-sim-td-lte-cn-128gb-hlk-al00.json new file mode 100644 index 00000000000..b39e665e49d --- /dev/null +++ b/data/smartphone/huawei/2019/honor-9x-premium-edition-dual-sim-td-lte-cn-128gb-hlk-al00.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-9x-premium-edition-dual-sim-td-lte-cn-128gb-hlk-al00", + "name": "Honor 9X Premium Edition Dual SIM TD-LTE CN 128GB HLK-AL00", + "brand": "huawei", + "soc": "kirin-810", + "release_date": "2019-07-23", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-9x-premium-edition-dual-sim-td-lte-cn-64gb-hlk-al00.json b/data/smartphone/huawei/2019/honor-9x-premium-edition-dual-sim-td-lte-cn-64gb-hlk-al00.json new file mode 100644 index 00000000000..49113166895 --- /dev/null +++ b/data/smartphone/huawei/2019/honor-9x-premium-edition-dual-sim-td-lte-cn-64gb-hlk-al00.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-9x-premium-edition-dual-sim-td-lte-cn-64gb-hlk-al00", + "name": "Honor 9X Premium Edition Dual SIM TD-LTE CN 64GB HLK-AL00", + "brand": "huawei", + "soc": "kirin-810", + "release_date": "2019-07-23", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-9x-premium-edition-dual-sim-td-lte-emea-128gb-hlk-l41.json b/data/smartphone/huawei/2019/honor-9x-premium-edition-dual-sim-td-lte-emea-128gb-hlk-l41.json new file mode 100644 index 00000000000..fa7057ae578 --- /dev/null +++ b/data/smartphone/huawei/2019/honor-9x-premium-edition-dual-sim-td-lte-emea-128gb-hlk-l41.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-9x-premium-edition-dual-sim-td-lte-emea-128gb-hlk-l41", + "name": "Honor 9X Premium Edition Dual SIM TD-LTE EMEA 128GB HLK-L41", + "brand": "huawei", + "soc": "kirin-810", + "release_date": "2019-11-02", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 196.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Egypt , Russia , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2019/honor-9x-pro-dual-sim-td-lte-cn-128gb-hlk-al10.json b/data/smartphone/huawei/2019/honor-9x-pro-dual-sim-td-lte-cn-128gb-hlk-al10.json new file mode 100644 index 00000000000..a8df6954c0e --- /dev/null +++ b/data/smartphone/huawei/2019/honor-9x-pro-dual-sim-td-lte-cn-128gb-hlk-al10.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-9x-pro-dual-sim-td-lte-cn-128gb-hlk-al10", + "name": "Honor 9X Pro Dual SIM TD-LTE CN 128GB HLK-AL10", + "brand": "huawei", + "soc": "kirin-810", + "release_date": "2019-07-23", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-9x-pro-dual-sim-td-lte-cn-256gb-hlk-al10.json b/data/smartphone/huawei/2019/honor-9x-pro-dual-sim-td-lte-cn-256gb-hlk-al10.json new file mode 100644 index 00000000000..c060f02d751 --- /dev/null +++ b/data/smartphone/huawei/2019/honor-9x-pro-dual-sim-td-lte-cn-256gb-hlk-al10.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-9x-pro-dual-sim-td-lte-cn-256gb-hlk-al10", + "name": "Honor 9X Pro Dual SIM TD-LTE CN 256GB HLK-AL10", + "brand": "huawei", + "soc": "kirin-810", + "release_date": "2019-07-23", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-9x-standard-edition-dual-sim-td-lte-cn-64gb-hlk-al00.json b/data/smartphone/huawei/2019/honor-9x-standard-edition-dual-sim-td-lte-cn-64gb-hlk-al00.json new file mode 100644 index 00000000000..d81fbf86c3f --- /dev/null +++ b/data/smartphone/huawei/2019/honor-9x-standard-edition-dual-sim-td-lte-cn-64gb-hlk-al00.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-9x-standard-edition-dual-sim-td-lte-cn-64gb-hlk-al00", + "name": "Honor 9X Standard Edition Dual SIM TD-LTE CN 64GB HLK-AL00", + "brand": "huawei", + "soc": "kirin-810", + "release_date": "2019-07-23", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-9x-standard-edition-dual-sim-td-lte-cn-64gb-hlk-tl00.json b/data/smartphone/huawei/2019/honor-9x-standard-edition-dual-sim-td-lte-cn-64gb-hlk-tl00.json new file mode 100644 index 00000000000..1dece361ebf --- /dev/null +++ b/data/smartphone/huawei/2019/honor-9x-standard-edition-dual-sim-td-lte-cn-64gb-hlk-tl00.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-9x-standard-edition-dual-sim-td-lte-cn-64gb-hlk-tl00", + "name": "Honor 9X Standard Edition Dual SIM TD-LTE CN 64GB HLK-TL00", + "brand": "huawei", + "soc": "kirin-810", + "release_date": "2019-07-23", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-9x-standard-edition-dual-sim-td-lte-emea-128gb-hlk-lx1-hlk-l21.json b/data/smartphone/huawei/2019/honor-9x-standard-edition-dual-sim-td-lte-emea-128gb-hlk-lx1-hlk-l21.json new file mode 100644 index 00000000000..b8a36f5114b --- /dev/null +++ b/data/smartphone/huawei/2019/honor-9x-standard-edition-dual-sim-td-lte-emea-128gb-hlk-lx1-hlk-l21.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-9x-standard-edition-dual-sim-td-lte-emea-128gb-hlk-lx1-hlk-l21", + "name": "Honor 9X Standard Edition Dual SIM TD-LTE EMEA 128GB HLK-LX1 / HLK-L21", + "brand": "huawei", + "soc": "kirin-810", + "release_date": "2019-11-13", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 196.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Czech , Finland , Germany , Italy , Netherlands , Slovakia , Spain , UK , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/huawei/2019/honor-changwan-8a-dual-sim-td-lte-cn-32gb-jat-al00-honor-play-8a.json b/data/smartphone/huawei/2019/honor-changwan-8a-dual-sim-td-lte-cn-32gb-jat-al00-honor-play-8a.json new file mode 100644 index 00000000000..fd6ce6e8a7f --- /dev/null +++ b/data/smartphone/huawei/2019/honor-changwan-8a-dual-sim-td-lte-cn-32gb-jat-al00-honor-play-8a.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-changwan-8a-dual-sim-td-lte-cn-32gb-jat-al00-honor-play-8a", + "name": "Honor Changwan 8A Dual SIM TD-LTE CN 32GB JAT-AL00 / Honor Play 8A", + "brand": "huawei", + "soc": "helio-p35", + "release_date": "2019-01-08", + "ram_gb": 3.0, + "battery_mah": 3020, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-changwan-8a-dual-sim-td-lte-cn-32gb-jat-tl00-honor-glory-8a.json b/data/smartphone/huawei/2019/honor-changwan-8a-dual-sim-td-lte-cn-32gb-jat-tl00-honor-glory-8a.json new file mode 100644 index 00000000000..25850eb0f28 --- /dev/null +++ b/data/smartphone/huawei/2019/honor-changwan-8a-dual-sim-td-lte-cn-32gb-jat-tl00-honor-glory-8a.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-changwan-8a-dual-sim-td-lte-cn-32gb-jat-tl00-honor-glory-8a", + "name": "Honor Changwan 8A Dual SIM TD-LTE CN 32GB JAT-TL00 / Honor Glory 8A", + "brand": "huawei", + "soc": "helio-p35", + "release_date": "2019-01-08", + "ram_gb": 3.0, + "battery_mah": 3020, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-changwan-8a-dual-sim-td-lte-cn-64gb-jat-al00-honor-play-8a.json b/data/smartphone/huawei/2019/honor-changwan-8a-dual-sim-td-lte-cn-64gb-jat-al00-honor-play-8a.json new file mode 100644 index 00000000000..1fdff0afc5d --- /dev/null +++ b/data/smartphone/huawei/2019/honor-changwan-8a-dual-sim-td-lte-cn-64gb-jat-al00-honor-play-8a.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-changwan-8a-dual-sim-td-lte-cn-64gb-jat-al00-honor-play-8a", + "name": "Honor Changwan 8A Dual SIM TD-LTE CN 64GB JAT-AL00 / Honor Play 8A", + "brand": "huawei", + "soc": "helio-p35", + "release_date": "2019-01-08", + "ram_gb": 3.0, + "battery_mah": 3020, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-play-3-premium-edition-dual-sim-td-lte-cn-128gb-ask-al00x.json b/data/smartphone/huawei/2019/honor-play-3-premium-edition-dual-sim-td-lte-cn-128gb-ask-al00x.json new file mode 100644 index 00000000000..57db8f33fe6 --- /dev/null +++ b/data/smartphone/huawei/2019/honor-play-3-premium-edition-dual-sim-td-lte-cn-128gb-ask-al00x.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-play-3-premium-edition-dual-sim-td-lte-cn-128gb-ask-al00x", + "name": "Honor Play 3 Premium Edition Dual SIM TD-LTE CN 128GB ASK-AL00x", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-11-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-play-3-premium-edition-dual-sim-td-lte-cn-64gb-ask-al00x.json b/data/smartphone/huawei/2019/honor-play-3-premium-edition-dual-sim-td-lte-cn-64gb-ask-al00x.json new file mode 100644 index 00000000000..acd934a3bd4 --- /dev/null +++ b/data/smartphone/huawei/2019/honor-play-3-premium-edition-dual-sim-td-lte-cn-64gb-ask-al00x.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-play-3-premium-edition-dual-sim-td-lte-cn-64gb-ask-al00x", + "name": "Honor Play 3 Premium Edition Dual SIM TD-LTE CN 64GB ASK-AL00x", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-09-07", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-play-3-standard-edition-dual-sim-td-lte-cn-128gb-ask-al00x.json b/data/smartphone/huawei/2019/honor-play-3-standard-edition-dual-sim-td-lte-cn-128gb-ask-al00x.json new file mode 100644 index 00000000000..88f2adc3a10 --- /dev/null +++ b/data/smartphone/huawei/2019/honor-play-3-standard-edition-dual-sim-td-lte-cn-128gb-ask-al00x.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-play-3-standard-edition-dual-sim-td-lte-cn-128gb-ask-al00x", + "name": "Honor Play 3 Standard Edition Dual SIM TD-LTE CN 128GB ASK-AL00x", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-09-07", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-play-3-standard-edition-dual-sim-td-lte-cn-128gb-ask-tl00x.json b/data/smartphone/huawei/2019/honor-play-3-standard-edition-dual-sim-td-lte-cn-128gb-ask-tl00x.json new file mode 100644 index 00000000000..d1649fd1951 --- /dev/null +++ b/data/smartphone/huawei/2019/honor-play-3-standard-edition-dual-sim-td-lte-cn-128gb-ask-tl00x.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-play-3-standard-edition-dual-sim-td-lte-cn-128gb-ask-tl00x", + "name": "Honor Play 3 Standard Edition Dual SIM TD-LTE CN 128GB ASK-TL00x", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-09-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-play-3-standard-edition-dual-sim-td-lte-cn-64gb-ask-al00x.json b/data/smartphone/huawei/2019/honor-play-3-standard-edition-dual-sim-td-lte-cn-64gb-ask-al00x.json new file mode 100644 index 00000000000..5da583e5264 --- /dev/null +++ b/data/smartphone/huawei/2019/honor-play-3-standard-edition-dual-sim-td-lte-cn-64gb-ask-al00x.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-play-3-standard-edition-dual-sim-td-lte-cn-64gb-ask-al00x", + "name": "Honor Play 3 Standard Edition Dual SIM TD-LTE CN 64GB ASK-AL00x", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-09-07", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-play-3-standard-edition-dual-sim-td-lte-cn-64gb-ask-tl00x.json b/data/smartphone/huawei/2019/honor-play-3-standard-edition-dual-sim-td-lte-cn-64gb-ask-tl00x.json new file mode 100644 index 00000000000..5d920c5d7b6 --- /dev/null +++ b/data/smartphone/huawei/2019/honor-play-3-standard-edition-dual-sim-td-lte-cn-64gb-ask-tl00x.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-play-3-standard-edition-dual-sim-td-lte-cn-64gb-ask-tl00x", + "name": "Honor Play 3 Standard Edition Dual SIM TD-LTE CN 64GB ASK-TL00x", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-09-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-play-3e-dual-sim-td-lte-cn-32gb-ksa-al00.json b/data/smartphone/huawei/2019/honor-play-3e-dual-sim-td-lte-cn-32gb-ksa-al00.json new file mode 100644 index 00000000000..836d085b5eb --- /dev/null +++ b/data/smartphone/huawei/2019/honor-play-3e-dual-sim-td-lte-cn-32gb-ksa-al00.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-play-3e-dual-sim-td-lte-cn-32gb-ksa-al00", + "name": "Honor Play 3e Dual SIM TD-LTE CN 32GB KSA-AL00", + "brand": "huawei", + "soc": "helio-p22", + "release_date": "2019-09-01", + "ram_gb": 2.0, + "battery_mah": 3020, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-play-3e-dual-sim-td-lte-cn-32gb-ksa-tl00.json b/data/smartphone/huawei/2019/honor-play-3e-dual-sim-td-lte-cn-32gb-ksa-tl00.json new file mode 100644 index 00000000000..58cde3bf80e --- /dev/null +++ b/data/smartphone/huawei/2019/honor-play-3e-dual-sim-td-lte-cn-32gb-ksa-tl00.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-play-3e-dual-sim-td-lte-cn-32gb-ksa-tl00", + "name": "Honor Play 3e Dual SIM TD-LTE CN 32GB KSA-TL00", + "brand": "huawei", + "soc": "helio-p22", + "release_date": "2019-09-01", + "ram_gb": 2.0, + "battery_mah": 3020, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-play-3e-dual-sim-td-lte-cn-64gb-ksa-al00.json b/data/smartphone/huawei/2019/honor-play-3e-dual-sim-td-lte-cn-64gb-ksa-al00.json new file mode 100644 index 00000000000..04b4e83402e --- /dev/null +++ b/data/smartphone/huawei/2019/honor-play-3e-dual-sim-td-lte-cn-64gb-ksa-al00.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-play-3e-dual-sim-td-lte-cn-64gb-ksa-al00", + "name": "Honor Play 3e Dual SIM TD-LTE CN 64GB KSA-AL00", + "brand": "huawei", + "soc": "helio-p22", + "release_date": "2019-09-17", + "ram_gb": 3.0, + "battery_mah": 3020, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-play-8-dual-sim-td-lte-cn-32gb-ksa-al00.json b/data/smartphone/huawei/2019/honor-play-8-dual-sim-td-lte-cn-32gb-ksa-al00.json new file mode 100644 index 00000000000..bcf10c70d1f --- /dev/null +++ b/data/smartphone/huawei/2019/honor-play-8-dual-sim-td-lte-cn-32gb-ksa-al00.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-play-8-dual-sim-td-lte-cn-32gb-ksa-al00", + "name": "Honor Play 8 Dual SIM TD-LTE CN 32GB KSA-AL00", + "brand": "huawei", + "soc": "helio-a22", + "release_date": "2019-07-01", + "ram_gb": 2.0, + "battery_mah": 3020, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-play-8-dual-sim-td-lte-cn-32gb-ksa-tl00.json b/data/smartphone/huawei/2019/honor-play-8-dual-sim-td-lte-cn-32gb-ksa-tl00.json new file mode 100644 index 00000000000..68487ca80bb --- /dev/null +++ b/data/smartphone/huawei/2019/honor-play-8-dual-sim-td-lte-cn-32gb-ksa-tl00.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-play-8-dual-sim-td-lte-cn-32gb-ksa-tl00", + "name": "Honor Play 8 Dual SIM TD-LTE CN 32GB KSA-TL00", + "brand": "huawei", + "soc": "helio-a22", + "release_date": "2019-07-01", + "ram_gb": 2.0, + "battery_mah": 3020, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-v20-moschino-edition-dual-sim-td-lte-cn-pct-al10.json b/data/smartphone/huawei/2019/honor-v20-moschino-edition-dual-sim-td-lte-cn-pct-al10.json new file mode 100644 index 00000000000..4cc5583dcb3 --- /dev/null +++ b/data/smartphone/huawei/2019/honor-v20-moschino-edition-dual-sim-td-lte-cn-pct-al10.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-v20-moschino-edition-dual-sim-td-lte-cn-pct-al10", + "name": "Honor V20 Moschino Edition Dual SIM TD-LTE CN PCT-AL10", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-01-22", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/honor-view-20-global-dual-sim-td-lte-pct-lx9-pct-l29.json b/data/smartphone/huawei/2019/honor-view-20-global-dual-sim-td-lte-pct-lx9-pct-l29.json new file mode 100644 index 00000000000..57a11ef6ee8 --- /dev/null +++ b/data/smartphone/huawei/2019/honor-view-20-global-dual-sim-td-lte-pct-lx9-pct-l29.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-view-20-global-dual-sim-td-lte-pct-lx9-pct-l29", + "name": "Honor View 20 Global Dual SIM TD-LTE PCT-LX9 / PCT-L29", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-01-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Cyprus , Czech , Egypt , Finland , France , Germany , Greece , Hungary , India , Japan , Malaysia , Netherlands , Poland , Portugal , Romania , Russia , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Taiwan , UAE , UK", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2019/honor-view-20-moschino-edition-global-dual-sim-td-lte-pct-lx9-pct-l29.json b/data/smartphone/huawei/2019/honor-view-20-moschino-edition-global-dual-sim-td-lte-pct-lx9-pct-l29.json new file mode 100644 index 00000000000..d5095de6f5e --- /dev/null +++ b/data/smartphone/huawei/2019/honor-view-20-moschino-edition-global-dual-sim-td-lte-pct-lx9-pct-l29.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-view-20-moschino-edition-global-dual-sim-td-lte-pct-lx9-pct-l29", + "name": "Honor View 20 Moschino Edition Global Dual SIM TD-LTE PCT-LX9 / PCT-L29", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-02-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belgium , Cyprus , Czech , Egypt , Finland , France , Germany , Greece , Hungary , India , Japan , Malaysia , Netherlands , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Taiwan , UAE , UK", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2019/maimang-8-dual-sim-td-lte-cn-128gb-pot-al10.json b/data/smartphone/huawei/2019/maimang-8-dual-sim-td-lte-cn-128gb-pot-al10.json new file mode 100644 index 00000000000..37305660f84 --- /dev/null +++ b/data/smartphone/huawei/2019/maimang-8-dual-sim-td-lte-cn-128gb-pot-al10.json @@ -0,0 +1,42 @@ +{ + "slug": "maimang-8-dual-sim-td-lte-cn-128gb-pot-al10", + "name": "Maimang 8 Dual SIM TD-LTE CN 128GB POT-AL10", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-06-12", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/mate-20-pro-td-lte-na-128gb-lya-l0c.json b/data/smartphone/huawei/2019/mate-20-pro-td-lte-na-128gb-lya-l0c.json new file mode 100644 index 00000000000..9a7e43aad73 --- /dev/null +++ b/data/smartphone/huawei/2019/mate-20-pro-td-lte-na-128gb-lya-l0c.json @@ -0,0 +1,42 @@ +{ + "slug": "mate-20-pro-td-lte-na-128gb-lya-l0c", + "name": "Mate 20 Pro TD-LTE NA 128GB LYA-L0C", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-03-01", + "ram_gb": 6.0, + "battery_mah": 4200, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/huawei/2019/mate-20-x-global-dual-sim-td-lte-128gb-evr-l29.json b/data/smartphone/huawei/2019/mate-20-x-global-dual-sim-td-lte-128gb-evr-l29.json new file mode 100644 index 00000000000..68bfdaa6bcf --- /dev/null +++ b/data/smartphone/huawei/2019/mate-20-x-global-dual-sim-td-lte-128gb-evr-l29.json @@ -0,0 +1,41 @@ +{ + "slug": "mate-20-x-global-dual-sim-td-lte-128gb-evr-l29", + "name": "Mate 20 X Global Dual SIM TD-LTE 128GB EVR-L29", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-01-19", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 232.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 7.17, + "resolution": "1080x2244", + "type": "AM-OLED display", + "ppi": 348 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , Japan , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2019/mate-x-dual-sim-5g-td-lte-cn-512gb-tah-an00-tah-tn00.json b/data/smartphone/huawei/2019/mate-x-dual-sim-5g-td-lte-cn-512gb-tah-an00-tah-tn00.json new file mode 100644 index 00000000000..eca46733e98 --- /dev/null +++ b/data/smartphone/huawei/2019/mate-x-dual-sim-5g-td-lte-cn-512gb-tah-an00-tah-tn00.json @@ -0,0 +1,38 @@ +{ + "slug": "mate-x-dual-sim-5g-td-lte-cn-512gb-tah-an00-tah-tn00", + "name": "Mate X Dual SIM 5G TD-LTE CN 512GB TAH-AN00 / TAH-TN00", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-11-14", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 295.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 7.99, + "resolution": "2480x2200", + "type": "AM-OLED display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/mate-x-global-dual-sim-5g-td-lte-512gb-tah-n29.json b/data/smartphone/huawei/2019/mate-x-global-dual-sim-5g-td-lte-512gb-tah-n29.json new file mode 100644 index 00000000000..c74fb06d0e9 --- /dev/null +++ b/data/smartphone/huawei/2019/mate-x-global-dual-sim-5g-td-lte-512gb-tah-n29.json @@ -0,0 +1,38 @@ +{ + "slug": "mate-x-global-dual-sim-5g-td-lte-512gb-tah-n29", + "name": "Mate X Global Dual SIM 5G TD-LTE 512GB TAH-N29", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-12-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 295.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 7.99, + "resolution": "2480x2200", + "type": "AM-OLED display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belarus , Bolivia , Canada , China , Colombia , Cyprus , Czech , Estonia , Finland , France , Germany , Greece , HK , Hungary , Italy , Japan , Latvia , Lithuania , Mexico , Netherlands , Norway , NZ , Poland , Russia , Slovakia , Slovenia , Spain , Switzerland , Taiwan , UK , USA", + "market_regions": "Asia , Australia , Eastern Europe , Europe , North America , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2019/nova-4-premium-edition-20mp-dual-sim-td-lte-apac-vce-lx2-vce-l22.json b/data/smartphone/huawei/2019/nova-4-premium-edition-20mp-dual-sim-td-lte-apac-vce-lx2-vce-l22.json new file mode 100644 index 00000000000..11b59d86b1a --- /dev/null +++ b/data/smartphone/huawei/2019/nova-4-premium-edition-20mp-dual-sim-td-lte-apac-vce-lx2-vce-l22.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-4-premium-edition-20mp-dual-sim-td-lte-apac-vce-lx2-vce-l22", + "name": "Nova 4 Premium Edition 20MP Dual SIM TD-LTE APAC VCE-LX2 / VCE-L22", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2019-01-01", + "ram_gb": 8.0, + "battery_mah": 3750, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 19.7 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "HK , Japan , Malaysia , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2019/nova-4-standard-edition-20mp-dual-sim-td-lte-cn-vce-al00.json b/data/smartphone/huawei/2019/nova-4-standard-edition-20mp-dual-sim-td-lte-cn-vce-al00.json new file mode 100644 index 00000000000..2c0a0f509dc --- /dev/null +++ b/data/smartphone/huawei/2019/nova-4-standard-edition-20mp-dual-sim-td-lte-cn-vce-al00.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-4-standard-edition-20mp-dual-sim-td-lte-cn-vce-al00", + "name": "Nova 4 Standard Edition 20MP Dual SIM TD-LTE CN VCE-AL00", + "brand": "huawei", + "soc": "kirin-970", + "release_date": "2019-03-14", + "ram_gb": 6.0, + "battery_mah": 3750, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 19.7 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2019/nova-4e-premium-edition-dual-sim-td-lte-apac-128gb-mar-lx2-p30-lite-mar-l22.json b/data/smartphone/huawei/2019/nova-4e-premium-edition-dual-sim-td-lte-apac-128gb-mar-lx2-p30-lite-mar-l22.json new file mode 100644 index 00000000000..686cd337b95 --- /dev/null +++ b/data/smartphone/huawei/2019/nova-4e-premium-edition-dual-sim-td-lte-apac-128gb-mar-lx2-p30-lite-mar-l22.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-4e-premium-edition-dual-sim-td-lte-apac-128gb-mar-lx2-p30-lite-mar-l22", + "name": "Nova 4e Premium Edition Dual SIM TD-LTE APAC 128GB MAR-LX2 / P30 Lite MAR-L22", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-04-01", + "ram_gb": 6.0, + "battery_mah": 3340, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.15, + "resolution": "1080x2312", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , Cambodia , India , Indonesia , Myanmar , Nepal , Pakistan , Thailand , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2019/nova-4e-premium-edition-dual-sim-td-lte-cn-128gb-mar-al00.json b/data/smartphone/huawei/2019/nova-4e-premium-edition-dual-sim-td-lte-cn-128gb-mar-al00.json new file mode 100644 index 00000000000..88f08aac6c6 --- /dev/null +++ b/data/smartphone/huawei/2019/nova-4e-premium-edition-dual-sim-td-lte-cn-128gb-mar-al00.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-4e-premium-edition-dual-sim-td-lte-cn-128gb-mar-al00", + "name": "Nova 4e Premium Edition Dual SIM TD-LTE CN 128GB MAR-AL00", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-03-21", + "ram_gb": 6.0, + "battery_mah": 3340, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.15, + "resolution": "1080x2312", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/nova-4e-standard-edition-dual-sim-td-lte-cn-128gb-mar-tl00.json b/data/smartphone/huawei/2019/nova-4e-standard-edition-dual-sim-td-lte-cn-128gb-mar-tl00.json new file mode 100644 index 00000000000..bc4771b90d4 --- /dev/null +++ b/data/smartphone/huawei/2019/nova-4e-standard-edition-dual-sim-td-lte-cn-128gb-mar-tl00.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-4e-standard-edition-dual-sim-td-lte-cn-128gb-mar-tl00", + "name": "Nova 4e Standard Edition Dual SIM TD-LTE CN 128GB MAR-TL00", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-03-21", + "ram_gb": 4.0, + "battery_mah": 3340, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.15, + "resolution": "1080x2312", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/nova-5-dual-sim-td-lte-cn-128gb-sea-al00.json b/data/smartphone/huawei/2019/nova-5-dual-sim-td-lte-cn-128gb-sea-al00.json new file mode 100644 index 00000000000..534058c5144 --- /dev/null +++ b/data/smartphone/huawei/2019/nova-5-dual-sim-td-lte-cn-128gb-sea-al00.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-5-dual-sim-td-lte-cn-128gb-sea-al00", + "name": "Nova 5 Dual SIM TD-LTE CN 128GB SEA-AL00", + "brand": "huawei", + "soc": "kirin-810", + "release_date": "2019-06-01", + "ram_gb": 8.0, + "battery_mah": 3500, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/nova-5-dual-sim-td-lte-cn-128gb-sea-tl00.json b/data/smartphone/huawei/2019/nova-5-dual-sim-td-lte-cn-128gb-sea-tl00.json new file mode 100644 index 00000000000..b33e88651d5 --- /dev/null +++ b/data/smartphone/huawei/2019/nova-5-dual-sim-td-lte-cn-128gb-sea-tl00.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-5-dual-sim-td-lte-cn-128gb-sea-tl00", + "name": "Nova 5 Dual SIM TD-LTE CN 128GB SEA-TL00", + "brand": "huawei", + "soc": "kirin-810", + "release_date": "2019-06-01", + "ram_gb": 8.0, + "battery_mah": 3500, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/nova-5-pro-dual-sim-td-lte-cn-128gb-sea-al10.json b/data/smartphone/huawei/2019/nova-5-pro-dual-sim-td-lte-cn-128gb-sea-al10.json new file mode 100644 index 00000000000..8ca3feadbc8 --- /dev/null +++ b/data/smartphone/huawei/2019/nova-5-pro-dual-sim-td-lte-cn-128gb-sea-al10.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-5-pro-dual-sim-td-lte-cn-128gb-sea-al10", + "name": "Nova 5 Pro Dual SIM TD-LTE CN 128GB SEA-AL10", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-06-01", + "ram_gb": 8.0, + "battery_mah": 3500, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/nova-5-pro-dual-sim-td-lte-cn-128gb-sea-tl10.json b/data/smartphone/huawei/2019/nova-5-pro-dual-sim-td-lte-cn-128gb-sea-tl10.json new file mode 100644 index 00000000000..b3b5ea8da79 --- /dev/null +++ b/data/smartphone/huawei/2019/nova-5-pro-dual-sim-td-lte-cn-128gb-sea-tl10.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-5-pro-dual-sim-td-lte-cn-128gb-sea-tl10", + "name": "Nova 5 Pro Dual SIM TD-LTE CN 128GB SEA-TL10", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-06-01", + "ram_gb": 8.0, + "battery_mah": 3500, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/nova-5-pro-dual-sim-td-lte-cn-256gb-sea-al10.json b/data/smartphone/huawei/2019/nova-5-pro-dual-sim-td-lte-cn-256gb-sea-al10.json new file mode 100644 index 00000000000..6a077d57e0e --- /dev/null +++ b/data/smartphone/huawei/2019/nova-5-pro-dual-sim-td-lte-cn-256gb-sea-al10.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-5-pro-dual-sim-td-lte-cn-256gb-sea-al10", + "name": "Nova 5 Pro Dual SIM TD-LTE CN 256GB SEA-AL10", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-06-01", + "ram_gb": 8.0, + "battery_mah": 3500, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/nova-5i-premium-edition-dual-sim-td-lte-cn-128gb-glk-al00.json b/data/smartphone/huawei/2019/nova-5i-premium-edition-dual-sim-td-lte-cn-128gb-glk-al00.json new file mode 100644 index 00000000000..118836ade63 --- /dev/null +++ b/data/smartphone/huawei/2019/nova-5i-premium-edition-dual-sim-td-lte-cn-128gb-glk-al00.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-5i-premium-edition-dual-sim-td-lte-cn-128gb-glk-al00", + "name": "Nova 5i Premium Edition Dual SIM TD-LTE CN 128GB GLK-AL00", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-06-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-128gb-spn-al00.json b/data/smartphone/huawei/2019/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-128gb-spn-al00.json new file mode 100644 index 00000000000..1c6cebb6d6b --- /dev/null +++ b/data/smartphone/huawei/2019/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-128gb-spn-al00.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-5i-pro-premium-edition-dual-sim-td-lte-cn-128gb-spn-al00", + "name": "Nova 5i Pro Premium Edition Dual SIM TD-LTE CN 128GB SPN-AL00", + "brand": "huawei", + "soc": "kirin-810", + "release_date": "2019-08-02", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-128gb-spn-tl00.json b/data/smartphone/huawei/2019/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-128gb-spn-tl00.json new file mode 100644 index 00000000000..d8c103cb4c6 --- /dev/null +++ b/data/smartphone/huawei/2019/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-128gb-spn-tl00.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-5i-pro-premium-edition-dual-sim-td-lte-cn-128gb-spn-tl00", + "name": "Nova 5i Pro Premium Edition Dual SIM TD-LTE CN 128GB SPN-TL00", + "brand": "huawei", + "soc": "kirin-810", + "release_date": "2019-08-02", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-256gb-spn-al00.json b/data/smartphone/huawei/2019/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-256gb-spn-al00.json new file mode 100644 index 00000000000..708ccd1ab03 --- /dev/null +++ b/data/smartphone/huawei/2019/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-256gb-spn-al00.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-5i-pro-premium-edition-dual-sim-td-lte-cn-256gb-spn-al00", + "name": "Nova 5i Pro Premium Edition Dual SIM TD-LTE CN 256GB SPN-AL00", + "brand": "huawei", + "soc": "kirin-810", + "release_date": "2019-08-02", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-256gb-spn-tl00.json b/data/smartphone/huawei/2019/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-256gb-spn-tl00.json new file mode 100644 index 00000000000..c23dec1cbe0 --- /dev/null +++ b/data/smartphone/huawei/2019/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-256gb-spn-tl00.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-5i-pro-premium-edition-dual-sim-td-lte-cn-256gb-spn-tl00", + "name": "Nova 5i Pro Premium Edition Dual SIM TD-LTE CN 256GB SPN-TL00", + "brand": "huawei", + "soc": "kirin-810", + "release_date": "2019-08-02", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/nova-5i-pro-standard-edition-dual-sim-td-lte-cn-128gb-spn-al00-nova-5z.json b/data/smartphone/huawei/2019/nova-5i-pro-standard-edition-dual-sim-td-lte-cn-128gb-spn-al00-nova-5z.json new file mode 100644 index 00000000000..c39928afba8 --- /dev/null +++ b/data/smartphone/huawei/2019/nova-5i-pro-standard-edition-dual-sim-td-lte-cn-128gb-spn-al00-nova-5z.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-5i-pro-standard-edition-dual-sim-td-lte-cn-128gb-spn-al00-nova-5z", + "name": "Nova 5i Pro Standard Edition Dual SIM TD-LTE CN 128GB SPN-AL00 / nova 5z", + "brand": "huawei", + "soc": "kirin-810", + "release_date": "2019-08-02", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/nova-5i-pro-standard-edition-dual-sim-td-lte-cn-128gb-spn-tl00-nova-5z.json b/data/smartphone/huawei/2019/nova-5i-pro-standard-edition-dual-sim-td-lte-cn-128gb-spn-tl00-nova-5z.json new file mode 100644 index 00000000000..10896fc4c40 --- /dev/null +++ b/data/smartphone/huawei/2019/nova-5i-pro-standard-edition-dual-sim-td-lte-cn-128gb-spn-tl00-nova-5z.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-5i-pro-standard-edition-dual-sim-td-lte-cn-128gb-spn-tl00-nova-5z", + "name": "Nova 5i Pro Standard Edition Dual SIM TD-LTE CN 128GB SPN-TL00 / nova 5z", + "brand": "huawei", + "soc": "kirin-810", + "release_date": "2019-08-02", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/nova-5i-standard-edition-dual-sim-td-lte-cn-128gb-glk-al00.json b/data/smartphone/huawei/2019/nova-5i-standard-edition-dual-sim-td-lte-cn-128gb-glk-al00.json new file mode 100644 index 00000000000..d4b06c365d8 --- /dev/null +++ b/data/smartphone/huawei/2019/nova-5i-standard-edition-dual-sim-td-lte-cn-128gb-glk-al00.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-5i-standard-edition-dual-sim-td-lte-cn-128gb-glk-al00", + "name": "Nova 5i Standard Edition Dual SIM TD-LTE CN 128GB GLK-AL00", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-06-28", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/nova-5i-standard-edition-dual-sim-td-lte-cn-128gb-glk-tl00.json b/data/smartphone/huawei/2019/nova-5i-standard-edition-dual-sim-td-lte-cn-128gb-glk-tl00.json new file mode 100644 index 00000000000..f886cc66059 --- /dev/null +++ b/data/smartphone/huawei/2019/nova-5i-standard-edition-dual-sim-td-lte-cn-128gb-glk-tl00.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-5i-standard-edition-dual-sim-td-lte-cn-128gb-glk-tl00", + "name": "Nova 5i Standard Edition Dual SIM TD-LTE CN 128GB GLK-TL00", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-06-28", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/nova-5t-premium-edition-global-dual-sim-td-lte-128gb-yal-l61d.json b/data/smartphone/huawei/2019/nova-5t-premium-edition-global-dual-sim-td-lte-128gb-yal-l61d.json new file mode 100644 index 00000000000..008afca6288 --- /dev/null +++ b/data/smartphone/huawei/2019/nova-5t-premium-edition-global-dual-sim-td-lte-128gb-yal-l61d.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-5t-premium-edition-global-dual-sim-td-lte-128gb-yal-l61d", + "name": "Nova 5T Premium Edition Global Dual SIM TD-LTE 128GB YAL-L61D", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-08-31", + "ram_gb": 8.0, + "battery_mah": 3750, + "weight_g": 174.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "HK , Japan , Malaysia , Myanmar , Russia , Singapore , Taiwan , Thailand", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia" +} diff --git a/data/smartphone/huawei/2019/nova-5t-standard-edition-global-dual-sim-td-lte-128gb-yal-l61a.json b/data/smartphone/huawei/2019/nova-5t-standard-edition-global-dual-sim-td-lte-128gb-yal-l61a.json new file mode 100644 index 00000000000..5ff9daae3c1 --- /dev/null +++ b/data/smartphone/huawei/2019/nova-5t-standard-edition-global-dual-sim-td-lte-128gb-yal-l61a.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-5t-standard-edition-global-dual-sim-td-lte-128gb-yal-l61a", + "name": "Nova 5T Standard Edition Global Dual SIM TD-LTE 128GB YAL-L61A", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-11-01", + "ram_gb": 6.0, + "battery_mah": 3750, + "weight_g": 174.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belgium , Bulgaria , Cyprus , Czech , Finland , France , Germany , Greece , Hungary , Italy , Japan , Netherlands , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Spain , Sweden , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2019/nova-5t-standard-edition-global-td-lte-128gb-yal-l71a.json b/data/smartphone/huawei/2019/nova-5t-standard-edition-global-td-lte-128gb-yal-l71a.json new file mode 100644 index 00000000000..1b4d9fd48c2 --- /dev/null +++ b/data/smartphone/huawei/2019/nova-5t-standard-edition-global-td-lte-128gb-yal-l71a.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-5t-standard-edition-global-td-lte-128gb-yal-l71a", + "name": "Nova 5T Standard Edition Global TD-LTE 128GB YAL-L71A", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-09-01", + "ram_gb": 6.0, + "battery_mah": 3750, + "weight_g": 174.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Belgium , Chile , Czech , Germany , Hungary , Mexico , Portugal , Russia , Slovakia , Spain , UK", + "market_regions": "Asia , Eastern Europe , Europe , North America , South America , Western Europe" +} diff --git a/data/smartphone/huawei/2019/nova-5t-standard-edition-global-td-lte-128gb-yal-lx1.json b/data/smartphone/huawei/2019/nova-5t-standard-edition-global-td-lte-128gb-yal-lx1.json new file mode 100644 index 00000000000..6ee6b4cc3de --- /dev/null +++ b/data/smartphone/huawei/2019/nova-5t-standard-edition-global-td-lte-128gb-yal-lx1.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-5t-standard-edition-global-td-lte-128gb-yal-lx1", + "name": "Nova 5T Standard Edition Global TD-LTE 128GB YAL-LX1", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-06-21", + "ram_gb": 6.0, + "battery_mah": 3750, + "weight_g": 174.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belgium , Bulgaria , Cyprus , Czech , Finland , France , Greece , Germany , Hungary , Japan , Netherlands , Norway , Poland , Portugal , Russia , Slovakia , Slovenia , South Africa , Spain , Sweden , Switzerland , Turkey , UK", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/huawei/2019/nova-5z-dual-sim-td-lte-cn-64gb-spn-al00.json b/data/smartphone/huawei/2019/nova-5z-dual-sim-td-lte-cn-64gb-spn-al00.json new file mode 100644 index 00000000000..f4c251ac3e7 --- /dev/null +++ b/data/smartphone/huawei/2019/nova-5z-dual-sim-td-lte-cn-64gb-spn-al00.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-5z-dual-sim-td-lte-cn-64gb-spn-al00", + "name": "Nova 5z Dual SIM TD-LTE CN 64GB SPN-AL00", + "brand": "huawei", + "soc": "kirin-810", + "release_date": "2019-10-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/nova-5z-dual-sim-td-lte-cn-64gb-spn-tl00.json b/data/smartphone/huawei/2019/nova-5z-dual-sim-td-lte-cn-64gb-spn-tl00.json new file mode 100644 index 00000000000..7737e650ae5 --- /dev/null +++ b/data/smartphone/huawei/2019/nova-5z-dual-sim-td-lte-cn-64gb-spn-tl00.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-5z-dual-sim-td-lte-cn-64gb-spn-tl00", + "name": "Nova 5z Dual SIM TD-LTE CN 64GB SPN-TL00", + "brand": "huawei", + "soc": "kirin-810", + "release_date": "2019-10-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/nova-6-se-dual-sim-td-lte-cn-128gb-jny-al10.json b/data/smartphone/huawei/2019/nova-6-se-dual-sim-td-lte-cn-128gb-jny-al10.json new file mode 100644 index 00000000000..a52e8274c5f --- /dev/null +++ b/data/smartphone/huawei/2019/nova-6-se-dual-sim-td-lte-cn-128gb-jny-al10.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-6-se-dual-sim-td-lte-cn-128gb-jny-al10", + "name": "Nova 6 SE Dual SIM TD-LTE CN 128GB JNY-AL10", + "brand": "huawei", + "soc": "kirin-810", + "release_date": "2019-12-24", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/nova-6-se-dual-sim-td-lte-cn-128gb-jny-tl10.json b/data/smartphone/huawei/2019/nova-6-se-dual-sim-td-lte-cn-128gb-jny-tl10.json new file mode 100644 index 00000000000..01f20bd5c77 --- /dev/null +++ b/data/smartphone/huawei/2019/nova-6-se-dual-sim-td-lte-cn-128gb-jny-tl10.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-6-se-dual-sim-td-lte-cn-128gb-jny-tl10", + "name": "Nova 6 SE Dual SIM TD-LTE CN 128GB JNY-TL10", + "brand": "huawei", + "soc": "kirin-810", + "release_date": "2019-12-24", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/nova-lite-3-dual-sim-td-lte-jp-32gb-pot-lx2j-pot-l62j-pot-l72j.json b/data/smartphone/huawei/2019/nova-lite-3-dual-sim-td-lte-jp-32gb-pot-lx2j-pot-l62j-pot-l72j.json new file mode 100644 index 00000000000..18d8a8790ea --- /dev/null +++ b/data/smartphone/huawei/2019/nova-lite-3-dual-sim-td-lte-jp-32gb-pot-lx2j-pot-l62j-pot-l72j.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-lite-3-dual-sim-td-lte-jp-32gb-pot-lx2j-pot-l62j-pot-l72j", + "name": "Nova Lite 3 Dual SIM TD-LTE JP 32GB POT-LX2J / POT-L62J / POT-L72J", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-02-03", + "ram_gb": 3.0, + "battery_mah": 3400, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/p-smart-2019-dual-sim-lte-a-emea-32gb-pot-lx1rua.json b/data/smartphone/huawei/2019/p-smart-2019-dual-sim-lte-a-emea-32gb-pot-lx1rua.json new file mode 100644 index 00000000000..311773846c6 --- /dev/null +++ b/data/smartphone/huawei/2019/p-smart-2019-dual-sim-lte-a-emea-32gb-pot-lx1rua.json @@ -0,0 +1,41 @@ +{ + "slug": "p-smart-2019-dual-sim-lte-a-emea-32gb-pot-lx1rua", + "name": "P Smart 2019 Dual SIM LTE-A EMEA 32GB POT-LX1RUA", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-01-02", + "ram_gb": 3.0, + "battery_mah": 3400, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Czech , Finland , France , Germany , Hungary , Poland , Romania , Russia , Slovakia , UAE , UK", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2019/p-smart-2019-dual-sim-lte-a-emea-64gb-pot-lx1-pot-l21-pot-lx1af.json b/data/smartphone/huawei/2019/p-smart-2019-dual-sim-lte-a-emea-64gb-pot-lx1-pot-l21-pot-lx1af.json new file mode 100644 index 00000000000..12d50fe5ff3 --- /dev/null +++ b/data/smartphone/huawei/2019/p-smart-2019-dual-sim-lte-a-emea-64gb-pot-lx1-pot-l21-pot-lx1af.json @@ -0,0 +1,41 @@ +{ + "slug": "p-smart-2019-dual-sim-lte-a-emea-64gb-pot-lx1-pot-l21-pot-lx1af", + "name": "P Smart 2019 Dual SIM LTE-A EMEA 64GB POT-LX1 / POT-L21 / POT-LX1AF", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-01-02", + "ram_gb": 3.0, + "battery_mah": 3400, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Czech , Finland , France , Germany , Hungary , Poland , Romania , Russia , Slovakia , UAE , UK", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2019/p-smart-2019-dual-sim-lte-a-latam-64gb-pot-lx3-pot-l23.json b/data/smartphone/huawei/2019/p-smart-2019-dual-sim-lte-a-latam-64gb-pot-lx3-pot-l23.json new file mode 100644 index 00000000000..0fdce0ed692 --- /dev/null +++ b/data/smartphone/huawei/2019/p-smart-2019-dual-sim-lte-a-latam-64gb-pot-lx3-pot-l23.json @@ -0,0 +1,41 @@ +{ + "slug": "p-smart-2019-dual-sim-lte-a-latam-64gb-pot-lx3-pot-l23", + "name": "P Smart 2019 Dual SIM LTE-A LATAM 64GB POT-LX3 / POT-L23", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-02-01", + "ram_gb": 3.0, + "battery_mah": 3400, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Brazil , Peru", + "market_regions": "South America" +} diff --git a/data/smartphone/huawei/2019/p-smart-2019-global-dual-sim-td-lte-64gb-pot-al00.json b/data/smartphone/huawei/2019/p-smart-2019-global-dual-sim-td-lte-64gb-pot-al00.json new file mode 100644 index 00000000000..271c62c39da --- /dev/null +++ b/data/smartphone/huawei/2019/p-smart-2019-global-dual-sim-td-lte-64gb-pot-al00.json @@ -0,0 +1,41 @@ +{ + "slug": "p-smart-2019-global-dual-sim-td-lte-64gb-pot-al00", + "name": "P Smart+ 2019 Global Dual SIM TD-LTE 64GB POT-AL00", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-04-01", + "ram_gb": 3.0, + "battery_mah": 3400, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "France , Germany , Hungary , Poland , Russia , Slovakia , UAE , UK", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2019/p-smart-z-dual-sim-lte-a-emea-stk-lx1.json b/data/smartphone/huawei/2019/p-smart-z-dual-sim-lte-a-emea-stk-lx1.json new file mode 100644 index 00000000000..4cd3b0ab344 --- /dev/null +++ b/data/smartphone/huawei/2019/p-smart-z-dual-sim-lte-a-emea-stk-lx1.json @@ -0,0 +1,43 @@ +{ + "slug": "p-smart-z-dual-sim-lte-a-emea-stk-lx1", + "name": "P Smart Z Dual SIM LTE-A EMEA STK-LX1", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-07-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 196.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 198, + "market_countries": "Austria , Czech , Denmark , Finland , France , Germany , Hungary , Ireland , Italy , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , Spain , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2019/p20-lite-2019-dual-sim-td-lte-emea-64gb-glk-lx1u.json b/data/smartphone/huawei/2019/p20-lite-2019-dual-sim-td-lte-emea-64gb-glk-lx1u.json new file mode 100644 index 00000000000..43daa0b4631 --- /dev/null +++ b/data/smartphone/huawei/2019/p20-lite-2019-dual-sim-td-lte-emea-64gb-glk-lx1u.json @@ -0,0 +1,42 @@ +{ + "slug": "p20-lite-2019-dual-sim-td-lte-emea-64gb-glk-lx1u", + "name": "P20 Lite 2019 Dual SIM TD-LTE EMEA 64GB GLK-LX1U", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-06-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Czech , Germany , Hungary , Poland , Romania , Russia , Slovakia , Switzerland", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/huawei/2019/p30-global-td-lte-ele-l09-128gb.json b/data/smartphone/huawei/2019/p30-global-td-lte-ele-l09-128gb.json new file mode 100644 index 00000000000..7dd33ea95e2 --- /dev/null +++ b/data/smartphone/huawei/2019/p30-global-td-lte-ele-l09-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "p30-global-td-lte-ele-l09-128gb", + "name": "P30 Global TD-LTE ELE-L09 128GB", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-04-03", + "ram_gb": 6.0, + "battery_mah": 3650, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Finland , France , Germany , Greece , Hungary , Israel , Italy , Netherlands , Norway , NZ , Poland , Portugal , Russia , Romania , Slovakia , Slovenia , Spain , Sweden , Switzerland , Turkey , UK", + "market_regions": "Africa , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2019/p30-lite-dual-sim-lte-a-am-128gb-mar-lx3-mar-lx3a-mar-l23-mar-l23a.json b/data/smartphone/huawei/2019/p30-lite-dual-sim-lte-a-am-128gb-mar-lx3-mar-lx3a-mar-l23-mar-l23a.json new file mode 100644 index 00000000000..cd75559daed --- /dev/null +++ b/data/smartphone/huawei/2019/p30-lite-dual-sim-lte-a-am-128gb-mar-lx3-mar-lx3a-mar-l23-mar-l23a.json @@ -0,0 +1,42 @@ +{ + "slug": "p30-lite-dual-sim-lte-a-am-128gb-mar-lx3-mar-lx3a-mar-l23-mar-l23a", + "name": "P30 Lite Dual SIM LTE-A AM 128GB MAR-LX3 / MAR-LX3A / MAR-L23 / MAR-L23A", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-04-01", + "ram_gb": 4.0, + "battery_mah": 3340, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.15, + "resolution": "1080x2312", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Brazil , Canada , Chile , Mexico , Peru", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/huawei/2019/p30-lite-dual-sim-td-lte-emea-128gb-mar-lx1-mar-lx1m-mar-l21-mar-l21m.json b/data/smartphone/huawei/2019/p30-lite-dual-sim-td-lte-emea-128gb-mar-lx1-mar-lx1m-mar-l21-mar-l21m.json new file mode 100644 index 00000000000..ac3b3cbf971 --- /dev/null +++ b/data/smartphone/huawei/2019/p30-lite-dual-sim-td-lte-emea-128gb-mar-lx1-mar-lx1m-mar-l21-mar-l21m.json @@ -0,0 +1,42 @@ +{ + "slug": "p30-lite-dual-sim-td-lte-emea-128gb-mar-lx1-mar-lx1m-mar-l21-mar-l21m", + "name": "P30 Lite Dual SIM TD-LTE EMEA 128GB MAR-LX1 / MAR-LX1M / MAR-L21 / MAR-L21M", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-05-01", + "ram_gb": 4.0, + "battery_mah": 3340, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.15, + "resolution": "1080x2312", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Bulgaria , Egypt , Finland , France , Germany , Hungary , Ireland , Kenya , Netherlands , Poland , Russia , Romania , Saudi Arabia , Slovakia , South Africa , UAE , UK", + "market_regions": "Africa , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2019/p30-lite-dual-sim-td-lte-emea-128gb-mar-lx1a-mar-lx21a.json b/data/smartphone/huawei/2019/p30-lite-dual-sim-td-lte-emea-128gb-mar-lx1a-mar-lx21a.json new file mode 100644 index 00000000000..70fd78dcd43 --- /dev/null +++ b/data/smartphone/huawei/2019/p30-lite-dual-sim-td-lte-emea-128gb-mar-lx1a-mar-lx21a.json @@ -0,0 +1,42 @@ +{ + "slug": "p30-lite-dual-sim-td-lte-emea-128gb-mar-lx1a-mar-lx21a", + "name": "P30 Lite Dual SIM TD-LTE EMEA 128GB MAR-LX1A / MAR-LX21A", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-05-01", + "ram_gb": 4.0, + "battery_mah": 3340, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.15, + "resolution": "1080x2312", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , Spain , Sweden , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/huawei/2019/p30-lite-dual-sim-td-lte-jp-64gb-mar-lx2j.json b/data/smartphone/huawei/2019/p30-lite-dual-sim-td-lte-jp-64gb-mar-lx2j.json new file mode 100644 index 00000000000..a26204ede2a --- /dev/null +++ b/data/smartphone/huawei/2019/p30-lite-dual-sim-td-lte-jp-64gb-mar-lx2j.json @@ -0,0 +1,42 @@ +{ + "slug": "p30-lite-dual-sim-td-lte-jp-64gb-mar-lx2j", + "name": "P30 Lite Dual SIM TD-LTE JP 64GB MAR-LX2J", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-08-09", + "ram_gb": 4.0, + "battery_mah": 3340, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.15, + "resolution": "1080x2312", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/p30-lite-premium-dual-sim-wimax-2-128gb-hwv33.json b/data/smartphone/huawei/2019/p30-lite-premium-dual-sim-wimax-2-128gb-hwv33.json new file mode 100644 index 00000000000..5995f1af769 --- /dev/null +++ b/data/smartphone/huawei/2019/p30-lite-premium-dual-sim-wimax-2-128gb-hwv33.json @@ -0,0 +1,42 @@ +{ + "slug": "p30-lite-premium-dual-sim-wimax-2-128gb-hwv33", + "name": "P30 Lite Premium Dual SIM WiMAX 2+ 128GB HWV33", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-08-09", + "ram_gb": 4.0, + "battery_mah": 3340, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.15, + "resolution": "1080x2312", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/p30-lite-td-lte-emea-128gb-mar-l01-mar-l01m.json b/data/smartphone/huawei/2019/p30-lite-td-lte-emea-128gb-mar-l01-mar-l01m.json new file mode 100644 index 00000000000..7f414326366 --- /dev/null +++ b/data/smartphone/huawei/2019/p30-lite-td-lte-emea-128gb-mar-l01-mar-l01m.json @@ -0,0 +1,43 @@ +{ + "slug": "p30-lite-td-lte-emea-128gb-mar-l01-mar-l01m", + "name": "P30 Lite TD-LTE EMEA 128GB MAR-L01 / MAR-L01M", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-05-01", + "ram_gb": 4.0, + "battery_mah": 3340, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.15, + "resolution": "1080x2312", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 222, + "market_countries": "Austria , Bulgaria , Cyprus , Czech , Denmark , Finland , France , Greece , Germany , Hungary , Ireland , Netherlands , Poland , Romania , Russia , Saudi Arabia , Slovakia , South Africa , Spain , Sweden , UK", + "market_regions": "Africa , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/huawei/2019/p30-lite-td-lte-emea-128gb-mar-l01a.json b/data/smartphone/huawei/2019/p30-lite-td-lte-emea-128gb-mar-l01a.json new file mode 100644 index 00000000000..c5fe81579c6 --- /dev/null +++ b/data/smartphone/huawei/2019/p30-lite-td-lte-emea-128gb-mar-l01a.json @@ -0,0 +1,42 @@ +{ + "slug": "p30-lite-td-lte-emea-128gb-mar-l01a", + "name": "P30 Lite TD-LTE EMEA 128GB MAR-L01A", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-05-01", + "ram_gb": 4.0, + "battery_mah": 3340, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.15, + "resolution": "1080x2312", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Bulgaria , Cyprus , Czech , Denmark , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Netherlands , Norway , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , Spain , Sweden , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/huawei/2019/p30-premium-edition-dual-sim-td-lte-cn-128gb-ele-al00.json b/data/smartphone/huawei/2019/p30-premium-edition-dual-sim-td-lte-cn-128gb-ele-al00.json new file mode 100644 index 00000000000..35c707d937b --- /dev/null +++ b/data/smartphone/huawei/2019/p30-premium-edition-dual-sim-td-lte-cn-128gb-ele-al00.json @@ -0,0 +1,42 @@ +{ + "slug": "p30-premium-edition-dual-sim-td-lte-cn-128gb-ele-al00", + "name": "P30 Premium Edition Dual SIM TD-LTE CN 128GB ELE-AL00", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-04-02", + "ram_gb": 8.0, + "battery_mah": 3650, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/p30-premium-edition-dual-sim-td-lte-cn-128gb-ele-tl00.json b/data/smartphone/huawei/2019/p30-premium-edition-dual-sim-td-lte-cn-128gb-ele-tl00.json new file mode 100644 index 00000000000..d20c7faa64c --- /dev/null +++ b/data/smartphone/huawei/2019/p30-premium-edition-dual-sim-td-lte-cn-128gb-ele-tl00.json @@ -0,0 +1,42 @@ +{ + "slug": "p30-premium-edition-dual-sim-td-lte-cn-128gb-ele-tl00", + "name": "P30 Premium Edition Dual SIM TD-LTE CN 128GB ELE-TL00", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-04-02", + "ram_gb": 8.0, + "battery_mah": 3650, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/p30-premium-edition-dual-sim-td-lte-cn-256gb-ele-al00-ele-al10.json b/data/smartphone/huawei/2019/p30-premium-edition-dual-sim-td-lte-cn-256gb-ele-al00-ele-al10.json new file mode 100644 index 00000000000..bfc7fb0b2c3 --- /dev/null +++ b/data/smartphone/huawei/2019/p30-premium-edition-dual-sim-td-lte-cn-256gb-ele-al00-ele-al10.json @@ -0,0 +1,42 @@ +{ + "slug": "p30-premium-edition-dual-sim-td-lte-cn-256gb-ele-al00-ele-al10", + "name": "P30 Premium Edition Dual SIM TD-LTE CN 256GB ELE-AL00 / ELE-AL10", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-04-02", + "ram_gb": 8.0, + "battery_mah": 3650, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/p30-premium-edition-dual-sim-td-lte-cn-64gb-ele-al00.json b/data/smartphone/huawei/2019/p30-premium-edition-dual-sim-td-lte-cn-64gb-ele-al00.json new file mode 100644 index 00000000000..aac6e35da73 --- /dev/null +++ b/data/smartphone/huawei/2019/p30-premium-edition-dual-sim-td-lte-cn-64gb-ele-al00.json @@ -0,0 +1,42 @@ +{ + "slug": "p30-premium-edition-dual-sim-td-lte-cn-64gb-ele-al00", + "name": "P30 Premium Edition Dual SIM TD-LTE CN 64GB ELE-AL00", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-04-02", + "ram_gb": 8.0, + "battery_mah": 3650, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/p30-premium-edition-global-dual-sim-td-lte-ele-l29-128gb.json b/data/smartphone/huawei/2019/p30-premium-edition-global-dual-sim-td-lte-ele-l29-128gb.json new file mode 100644 index 00000000000..7ce446cc301 --- /dev/null +++ b/data/smartphone/huawei/2019/p30-premium-edition-global-dual-sim-td-lte-ele-l29-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "p30-premium-edition-global-dual-sim-td-lte-ele-l29-128gb", + "name": "P30 Premium Edition Global Dual SIM TD-LTE ELE-L29 128GB", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-04-02", + "ram_gb": 8.0, + "battery_mah": 3650, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Croatia , Czech , Denmark , France , Germany , Hungary , India , Indonesia , Ireland , Italy , Japan , Kenya , Netherlands , NZ , Philippines , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Singapore , Slovenia , South Africa , Spain , Taiwan , UAE , UK , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2019/p30-pro-premium-edition-dual-sim-td-lte-cn-512gb-vog-al00-vog-al10.json b/data/smartphone/huawei/2019/p30-pro-premium-edition-dual-sim-td-lte-cn-512gb-vog-al00-vog-al10.json new file mode 100644 index 00000000000..ef40e0706fe --- /dev/null +++ b/data/smartphone/huawei/2019/p30-pro-premium-edition-dual-sim-td-lte-cn-512gb-vog-al00-vog-al10.json @@ -0,0 +1,42 @@ +{ + "slug": "p30-pro-premium-edition-dual-sim-td-lte-cn-512gb-vog-al00-vog-al10", + "name": "P30 Pro Premium Edition Dual SIM TD-LTE CN 512GB VOG-AL00 / VOG-AL10", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-04-01", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/p30-pro-premium-edition-dual-sim-td-lte-cn-vog-al00-128gb.json b/data/smartphone/huawei/2019/p30-pro-premium-edition-dual-sim-td-lte-cn-vog-al00-128gb.json new file mode 100644 index 00000000000..439a88dc41d --- /dev/null +++ b/data/smartphone/huawei/2019/p30-pro-premium-edition-dual-sim-td-lte-cn-vog-al00-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "p30-pro-premium-edition-dual-sim-td-lte-cn-vog-al00-128gb", + "name": "P30 Pro Premium Edition Dual SIM TD-LTE CN VOG-AL00 128GB", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-04-01", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/p30-pro-premium-edition-dual-sim-td-lte-cn-vog-al00-256gb.json b/data/smartphone/huawei/2019/p30-pro-premium-edition-dual-sim-td-lte-cn-vog-al00-256gb.json new file mode 100644 index 00000000000..1651e2c64de --- /dev/null +++ b/data/smartphone/huawei/2019/p30-pro-premium-edition-dual-sim-td-lte-cn-vog-al00-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "p30-pro-premium-edition-dual-sim-td-lte-cn-vog-al00-256gb", + "name": "P30 Pro Premium Edition Dual SIM TD-LTE CN VOG-AL00 256GB", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-04-01", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/p30-pro-premium-edition-dual-sim-td-lte-cn-vog-tl00-128gb.json b/data/smartphone/huawei/2019/p30-pro-premium-edition-dual-sim-td-lte-cn-vog-tl00-128gb.json new file mode 100644 index 00000000000..cd9778d3726 --- /dev/null +++ b/data/smartphone/huawei/2019/p30-pro-premium-edition-dual-sim-td-lte-cn-vog-tl00-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "p30-pro-premium-edition-dual-sim-td-lte-cn-vog-tl00-128gb", + "name": "P30 Pro Premium Edition Dual SIM TD-LTE CN VOG-TL00 128GB", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-04-01", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/p30-pro-premium-edition-global-dual-sim-td-lte-vog-l29-128gb.json b/data/smartphone/huawei/2019/p30-pro-premium-edition-global-dual-sim-td-lte-vog-l29-128gb.json new file mode 100644 index 00000000000..d4b00f8ffee --- /dev/null +++ b/data/smartphone/huawei/2019/p30-pro-premium-edition-global-dual-sim-td-lte-vog-l29-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "p30-pro-premium-edition-global-dual-sim-td-lte-vog-l29-128gb", + "name": "P30 Pro Premium Edition Global Dual SIM TD-LTE VOG-L29 128GB", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-04-09", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Germany , Italy , Spain , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/huawei/2019/p30-pro-premium-edition-global-dual-sim-td-lte-vog-l29-256gb.json b/data/smartphone/huawei/2019/p30-pro-premium-edition-global-dual-sim-td-lte-vog-l29-256gb.json new file mode 100644 index 00000000000..9ac64e5bed6 --- /dev/null +++ b/data/smartphone/huawei/2019/p30-pro-premium-edition-global-dual-sim-td-lte-vog-l29-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "p30-pro-premium-edition-global-dual-sim-td-lte-vog-l29-256gb", + "name": "P30 Pro Premium Edition Global Dual SIM TD-LTE VOG-L29 256GB", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-04-01", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Bulgaria , Czech , Estonia , France , Germany , Hungary , India , Indonesia , Italy , Japan , Kenya , Latvia , Lithuania , Malaysia , Netherlands , NZ , Philippines , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Taiwan , Thailand , Turkey , UAE , UK , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2019/p30-pro-premium-edition-global-td-lte-vog-l09-128gb.json b/data/smartphone/huawei/2019/p30-pro-premium-edition-global-td-lte-vog-l09-128gb.json new file mode 100644 index 00000000000..b81b7f7f420 --- /dev/null +++ b/data/smartphone/huawei/2019/p30-pro-premium-edition-global-td-lte-vog-l09-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "p30-pro-premium-edition-global-td-lte-vog-l09-128gb", + "name": "P30 Pro Premium Edition Global TD-LTE VOG-L09 128GB", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-04-01", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Bulgaria , Czech , Denmark , Estonia , Finland , France , Germany , Hungary , Israel , Italy , Japan , Latvia , Lithuania , Netherlands , Norway , NZ , Poland , Portugal , Russia , Romania , Slovakia , Slovenia , South Africa , Spain , Switzerland , Sweden , Turkey , UK", + "market_regions": "Africa , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2019/p30-pro-premium-edition-global-td-lte-vog-l09-256gb.json b/data/smartphone/huawei/2019/p30-pro-premium-edition-global-td-lte-vog-l09-256gb.json new file mode 100644 index 00000000000..27c8a8a9cba --- /dev/null +++ b/data/smartphone/huawei/2019/p30-pro-premium-edition-global-td-lte-vog-l09-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "p30-pro-premium-edition-global-td-lte-vog-l09-256gb", + "name": "P30 Pro Premium Edition Global TD-LTE VOG-L09 256GB", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-04-01", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Denmark , Finland , France , Germany , Ireland , Italy , Japan , Netherlands , Norway , NZ , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , Spain , Sweden , Switzerland , UK", + "market_regions": "Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2019/p30-pro-premium-edition-td-lte-na-vog-l04-256gb.json b/data/smartphone/huawei/2019/p30-pro-premium-edition-td-lte-na-vog-l04-256gb.json new file mode 100644 index 00000000000..3831c065660 --- /dev/null +++ b/data/smartphone/huawei/2019/p30-pro-premium-edition-td-lte-na-vog-l04-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "p30-pro-premium-edition-td-lte-na-vog-l04-256gb", + "name": "P30 Pro Premium Edition TD-LTE NA VOG-L04 256GB", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-04-01", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/huawei/2019/p30-pro-standard-edition-global-dual-sim-td-lte-vog-l29-128gb.json b/data/smartphone/huawei/2019/p30-pro-standard-edition-global-dual-sim-td-lte-vog-l29-128gb.json new file mode 100644 index 00000000000..23056918090 --- /dev/null +++ b/data/smartphone/huawei/2019/p30-pro-standard-edition-global-dual-sim-td-lte-vog-l29-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "p30-pro-standard-edition-global-dual-sim-td-lte-vog-l29-128gb", + "name": "P30 Pro Standard Edition Global Dual SIM TD-LTE VOG-L29 128GB", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-04-01", + "ram_gb": 6.0, + "battery_mah": 4200, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Bulgaria , Czech , Estonia , France , Germany , Hungary , India , Indonesia , Italy , Japan , Kenya , Latvia , Lithuania , Malaysia , Netherlands , NZ , Philippines , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Taiwan , Thailand , Turkey , UAE , UK , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2019/p30-pro-standard-edition-td-lte-na-vog-l04-128gb.json b/data/smartphone/huawei/2019/p30-pro-standard-edition-td-lte-na-vog-l04-128gb.json new file mode 100644 index 00000000000..85cc83597c1 --- /dev/null +++ b/data/smartphone/huawei/2019/p30-pro-standard-edition-td-lte-na-vog-l04-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "p30-pro-standard-edition-td-lte-na-vog-l04-128gb", + "name": "P30 Pro Standard Edition TD-LTE NA VOG-L04 128GB", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-04-01", + "ram_gb": 6.0, + "battery_mah": 4200, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/huawei/2019/p30-pro-td-lte-jp-128gb-hw-02l-vog-l0j-vog-l01j.json b/data/smartphone/huawei/2019/p30-pro-td-lte-jp-128gb-hw-02l-vog-l0j-vog-l01j.json new file mode 100644 index 00000000000..d5ebf401192 --- /dev/null +++ b/data/smartphone/huawei/2019/p30-pro-td-lte-jp-128gb-hw-02l-vog-l0j-vog-l01j.json @@ -0,0 +1,42 @@ +{ + "slug": "p30-pro-td-lte-jp-128gb-hw-02l-vog-l0j-vog-l01j", + "name": "P30 Pro TD-LTE JP 128GB HW-02L VOG-L0J / VOG-L01J", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-09-13", + "ram_gb": 6.0, + "battery_mah": 4200, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2019/p30-standard-edition-global-dual-sim-td-lte-ele-l29-128gb.json b/data/smartphone/huawei/2019/p30-standard-edition-global-dual-sim-td-lte-ele-l29-128gb.json new file mode 100644 index 00000000000..65335ae107e --- /dev/null +++ b/data/smartphone/huawei/2019/p30-standard-edition-global-dual-sim-td-lte-ele-l29-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "p30-standard-edition-global-dual-sim-td-lte-ele-l29-128gb", + "name": "P30 Standard Edition Global Dual SIM TD-LTE ELE-L29 128GB", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-04-02", + "ram_gb": 6.0, + "battery_mah": 3650, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Croatia , Czech , Denmark , Estonia , France , Germany , Hungary , India , Indonesia , Ireland , Italy , Japan , Jordan , Kenya , Latvia , Lithuania , Malaysia , Netherlands , NZ , Philippines , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Singapore , Slovenia , Spain , Taiwan , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2019/p30-td-lte-na-ele-l04-128gb.json b/data/smartphone/huawei/2019/p30-td-lte-na-ele-l04-128gb.json new file mode 100644 index 00000000000..3cbfb6f9f89 --- /dev/null +++ b/data/smartphone/huawei/2019/p30-td-lte-na-ele-l04-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "p30-td-lte-na-ele-l04-128gb", + "name": "P30 TD-LTE NA ELE-L04 128GB", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2019-03-29", + "ram_gb": 6.0, + "battery_mah": 3650, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/huawei/2019/y5-2019-dual-sim-lte-a-emea-32gb-amn-lx9-amn-l29.json b/data/smartphone/huawei/2019/y5-2019-dual-sim-lte-a-emea-32gb-amn-lx9-amn-l29.json new file mode 100644 index 00000000000..3d92f9fd913 --- /dev/null +++ b/data/smartphone/huawei/2019/y5-2019-dual-sim-lte-a-emea-32gb-amn-lx9-amn-l29.json @@ -0,0 +1,41 @@ +{ + "slug": "y5-2019-dual-sim-lte-a-emea-32gb-amn-lx9-amn-l29", + "name": "Y5 2019 Dual SIM LTE-A EMEA 32GB AMN-LX9 / AMN-L29", + "brand": "huawei", + "soc": "helio-a22", + "release_date": "2019-05-01", + "ram_gb": 2.0, + "battery_mah": 3020, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "market_countries": "Austria , Belgium , Czech , Denmark , Finland , France , Germany , Hungary , Italy , Jordan , Kuwait , Norway , Pakistan , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , Spain , Sweden , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2019/y5-2019-dual-sim-lte-a-emea-amn-lx1-amn-l21.json b/data/smartphone/huawei/2019/y5-2019-dual-sim-lte-a-emea-amn-lx1-amn-l21.json new file mode 100644 index 00000000000..116b3d23ce3 --- /dev/null +++ b/data/smartphone/huawei/2019/y5-2019-dual-sim-lte-a-emea-amn-lx1-amn-l21.json @@ -0,0 +1,41 @@ +{ + "slug": "y5-2019-dual-sim-lte-a-emea-amn-lx1-amn-l21", + "name": "Y5 2019 Dual SIM LTE-A EMEA AMN-LX1 / AMN-L21", + "brand": "huawei", + "soc": "helio-a22", + "release_date": "2019-05-01", + "ram_gb": 2.0, + "battery_mah": 3020, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "market_countries": "Belgium , Czech , Finland , France , Germany , Hungary , Jordan , Kuwait , Norway , Pakistan , Poland , Portugal , Russia , Romania , Slovakia , Slovenia , Spain , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2019/y6-2019-dual-sim-lte-latam-mrd-lx3-mrd-l23.json b/data/smartphone/huawei/2019/y6-2019-dual-sim-lte-latam-mrd-lx3-mrd-l23.json new file mode 100644 index 00000000000..c45049c4beb --- /dev/null +++ b/data/smartphone/huawei/2019/y6-2019-dual-sim-lte-latam-mrd-lx3-mrd-l23.json @@ -0,0 +1,41 @@ +{ + "slug": "y6-2019-dual-sim-lte-latam-mrd-lx3-mrd-l23", + "name": "Y6 2019 Dual SIM LTE LATAM MRD-LX3 / MRD-L23", + "brand": "huawei", + "soc": "helio-a22", + "release_date": "2019-03-07", + "ram_gb": 2.0, + "battery_mah": 3020, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Canada , Colombia , Mexico , Peru", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/huawei/2019/y6-2019-dual-sim-td-lte-emea-mrd-lx1-mrd-l21-mrd-l21a.json b/data/smartphone/huawei/2019/y6-2019-dual-sim-td-lte-emea-mrd-lx1-mrd-l21-mrd-l21a.json new file mode 100644 index 00000000000..b66ce168e3c --- /dev/null +++ b/data/smartphone/huawei/2019/y6-2019-dual-sim-td-lte-emea-mrd-lx1-mrd-l21-mrd-l21a.json @@ -0,0 +1,42 @@ +{ + "slug": "y6-2019-dual-sim-td-lte-emea-mrd-lx1-mrd-l21-mrd-l21a", + "name": "Y6 2019 Dual SIM TD-LTE EMEA MRD-LX1 / MRD-L21 / MRD-L21A", + "brand": "huawei", + "soc": "helio-a22", + "release_date": "2019-03-01", + "ram_gb": 2.0, + "battery_mah": 3020, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "msrp_usd": 132, + "market_countries": "Czech , France , Germany , Hungary , Jordan , Kuwait , Morocco , Pakistan , Poland , Russia , Romania , Slovakia , Slovenia , South Africa , Spain , Tunisie , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2019/y6-2019-lte-latam-mrd-lx3.json b/data/smartphone/huawei/2019/y6-2019-lte-latam-mrd-lx3.json new file mode 100644 index 00000000000..46ecdec8728 --- /dev/null +++ b/data/smartphone/huawei/2019/y6-2019-lte-latam-mrd-lx3.json @@ -0,0 +1,41 @@ +{ + "slug": "y6-2019-lte-latam-mrd-lx3", + "name": "Y6 2019 LTE LATAM MRD-LX3", + "brand": "huawei", + "soc": "helio-a22", + "release_date": "2019-03-07", + "ram_gb": 2.0, + "battery_mah": 3020, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Chile , Mexico , Peru", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/huawei/2019/y6-prime-2019-dual-sim-td-lte-emea-64gb-mrd-lx1f.json b/data/smartphone/huawei/2019/y6-prime-2019-dual-sim-td-lte-emea-64gb-mrd-lx1f.json new file mode 100644 index 00000000000..f10e94241fc --- /dev/null +++ b/data/smartphone/huawei/2019/y6-prime-2019-dual-sim-td-lte-emea-64gb-mrd-lx1f.json @@ -0,0 +1,41 @@ +{ + "slug": "y6-prime-2019-dual-sim-td-lte-emea-64gb-mrd-lx1f", + "name": "Y6 Prime 2019 Dual SIM TD-LTE EMEA 64GB MRD-LX1F", + "brand": "huawei", + "soc": "helio-a22", + "release_date": "2019-03-01", + "ram_gb": 3.0, + "battery_mah": 3020, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "market_countries": "Czech , France , Germany , Hungary , Jordan , Kuwait , Pakistan , Poland , Romania , Russia , Slovakia , Slovenia , Spain , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2019/y6-pro-2019-dual-sim-td-lte-apac-mrd-lx2-mrd-l22.json b/data/smartphone/huawei/2019/y6-pro-2019-dual-sim-td-lte-apac-mrd-lx2-mrd-l22.json new file mode 100644 index 00000000000..3790a36e1b3 --- /dev/null +++ b/data/smartphone/huawei/2019/y6-pro-2019-dual-sim-td-lte-apac-mrd-lx2-mrd-l22.json @@ -0,0 +1,41 @@ +{ + "slug": "y6-pro-2019-dual-sim-td-lte-apac-mrd-lx2-mrd-l22", + "name": "Y6 Pro 2019 Dual SIM TD-LTE APAC MRD-LX2 / MRD-L22", + "brand": "huawei", + "soc": "helio-a22", + "release_date": "2019-02-01", + "ram_gb": 3.0, + "battery_mah": 3020, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Nepal , Philippines , Sri Lanka", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/huawei/2019/y6s-2019-dual-sim-lte-emea-32gb-jat-l41-honor-8a-pro.json b/data/smartphone/huawei/2019/y6s-2019-dual-sim-lte-emea-32gb-jat-l41-honor-8a-pro.json new file mode 100644 index 00000000000..d600a15f733 --- /dev/null +++ b/data/smartphone/huawei/2019/y6s-2019-dual-sim-lte-emea-32gb-jat-l41-honor-8a-pro.json @@ -0,0 +1,41 @@ +{ + "slug": "y6s-2019-dual-sim-lte-emea-32gb-jat-l41-honor-8a-pro", + "name": "Y6s 2019 Dual SIM LTE EMEA 32GB JAT-L41 / Honor 8A Pro", + "brand": "huawei", + "soc": "helio-p35", + "release_date": "2019-05-01", + "ram_gb": 3.0, + "battery_mah": 3020, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Belarus , Russia , Ukraine", + "market_regions": "Eastern Europe , Europe" +} diff --git a/data/smartphone/huawei/2019/y6s-2019-dual-sim-lte-emea-64gb-jat-l21-honor-8a-prime-jat-lx1.json b/data/smartphone/huawei/2019/y6s-2019-dual-sim-lte-emea-64gb-jat-l21-honor-8a-prime-jat-lx1.json new file mode 100644 index 00000000000..3b3089db4bf --- /dev/null +++ b/data/smartphone/huawei/2019/y6s-2019-dual-sim-lte-emea-64gb-jat-l21-honor-8a-prime-jat-lx1.json @@ -0,0 +1,41 @@ +{ + "slug": "y6s-2019-dual-sim-lte-emea-64gb-jat-l21-honor-8a-prime-jat-lx1", + "name": "Y6s 2019 Dual SIM LTE EMEA 64GB JAT-L21 / Honor 8A Prime JAT-LX1", + "brand": "huawei", + "soc": "helio-p35", + "release_date": "2019-05-01", + "ram_gb": 3.0, + "battery_mah": 3020, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Belarus , Hungary , Poland , Russia , Slovakia , Ukraine", + "market_regions": "Eastern Europe , Europe" +} diff --git a/data/smartphone/huawei/2019/y6s-2019-global-dual-sim-td-lte-64gb-jat-l29.json b/data/smartphone/huawei/2019/y6s-2019-global-dual-sim-td-lte-64gb-jat-l29.json new file mode 100644 index 00000000000..c536f007079 --- /dev/null +++ b/data/smartphone/huawei/2019/y6s-2019-global-dual-sim-td-lte-64gb-jat-l29.json @@ -0,0 +1,41 @@ +{ + "slug": "y6s-2019-global-dual-sim-td-lte-64gb-jat-l29", + "name": "Y6s 2019 Global Dual SIM TD-LTE 64GB JAT-L29", + "brand": "huawei", + "soc": "helio-p35", + "release_date": "2019-12-01", + "ram_gb": 3.0, + "battery_mah": 3020, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Belarus , Czech , Hungary , Malaysia , Poland , Romania , Russia , Singapore , Slovakia , Thailand , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia" +} diff --git a/data/smartphone/huawei/2019/y7-2019-dual-sim-lte-a-emea-dub-lx1-y7-prime-2019-dub-l21.json b/data/smartphone/huawei/2019/y7-2019-dual-sim-lte-a-emea-dub-lx1-y7-prime-2019-dub-l21.json new file mode 100644 index 00000000000..48dd6910d49 --- /dev/null +++ b/data/smartphone/huawei/2019/y7-2019-dual-sim-lte-a-emea-dub-lx1-y7-prime-2019-dub-l21.json @@ -0,0 +1,41 @@ +{ + "slug": "y7-2019-dual-sim-lte-a-emea-dub-lx1-y7-prime-2019-dub-l21", + "name": "Y7 2019 Dual SIM LTE-A EMEA DUB-LX1 / Y7 Prime 2019 DUB-L21", + "brand": "huawei", + "soc": "snapdragon-450", + "release_date": "2019-03-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Austria , Belgium , Bulgaria , Cyprus , Czech , France , Germany , Greece , Hungary , Jordan , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , Spain , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2019/y7-2019-dual-sim-lte-a-latam-dub-lx3-dub-l23.json b/data/smartphone/huawei/2019/y7-2019-dual-sim-lte-a-latam-dub-lx3-dub-l23.json new file mode 100644 index 00000000000..25bb505b5f0 --- /dev/null +++ b/data/smartphone/huawei/2019/y7-2019-dual-sim-lte-a-latam-dub-lx3-dub-l23.json @@ -0,0 +1,41 @@ +{ + "slug": "y7-2019-dual-sim-lte-a-latam-dub-lx3-dub-l23", + "name": "Y7 2019 Dual SIM LTE-A LATAM DUB-LX3 / DUB-L23", + "brand": "huawei", + "soc": "snapdragon-450", + "release_date": "2019-03-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Mexico , Paraguay", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/huawei/2019/y7-pro-2019-dual-sim-td-lte-apac-dub-lx2-dub-l22.json b/data/smartphone/huawei/2019/y7-pro-2019-dual-sim-td-lte-apac-dub-lx2-dub-l22.json new file mode 100644 index 00000000000..6cd99757a4d --- /dev/null +++ b/data/smartphone/huawei/2019/y7-pro-2019-dual-sim-td-lte-apac-dub-lx2-dub-l22.json @@ -0,0 +1,41 @@ +{ + "slug": "y7-pro-2019-dual-sim-td-lte-apac-dub-lx2-dub-l22", + "name": "Y7 Pro 2019 Dual SIM TD-LTE APAC DUB-LX2 / DUB-L22", + "brand": "huawei", + "soc": "snapdragon-450", + "release_date": "2019-01-06", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , Cambodia , HK , NZ , Vietnam", + "market_regions": "Asia , Australia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2019/y9-2019-dual-sim-td-lte-apac-jkm-lx2-jkm-l22.json b/data/smartphone/huawei/2019/y9-2019-dual-sim-td-lte-apac-jkm-lx2-jkm-l22.json new file mode 100644 index 00000000000..116b862fec3 --- /dev/null +++ b/data/smartphone/huawei/2019/y9-2019-dual-sim-td-lte-apac-jkm-lx2-jkm-l22.json @@ -0,0 +1,41 @@ +{ + "slug": "y9-2019-dual-sim-td-lte-apac-jkm-lx2-jkm-l22", + "name": "Y9 2019 Dual SIM TD-LTE APAC JKM-LX2 / JKM-L22", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-01-16", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Australia , HK , India , Malaysia , Nepal , NZ , Philippines , Taiwan , Thailand", + "market_regions": "Asia , Australia , Middle East , Oceania , Southeast Asia" +} diff --git a/data/smartphone/huawei/2019/y9-prime-2019-lte-a-latam-128gb-stk-lx3-stk-l03b.json b/data/smartphone/huawei/2019/y9-prime-2019-lte-a-latam-128gb-stk-lx3-stk-l03b.json new file mode 100644 index 00000000000..95f08f1c820 --- /dev/null +++ b/data/smartphone/huawei/2019/y9-prime-2019-lte-a-latam-128gb-stk-lx3-stk-l03b.json @@ -0,0 +1,42 @@ +{ + "slug": "y9-prime-2019-lte-a-latam-128gb-stk-lx3-stk-l03b", + "name": "Y9 Prime 2019 LTE-A LATAM 128GB STK-LX3 / STK-L03B", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-07-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 196.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Mexico , Peru", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/huawei/2019/y9s-2019-dual-sim-lte-a-emea-stk-l21-p-smart-pro-2019.json b/data/smartphone/huawei/2019/y9s-2019-dual-sim-lte-a-emea-stk-l21-p-smart-pro-2019.json new file mode 100644 index 00000000000..76f04da1dc9 --- /dev/null +++ b/data/smartphone/huawei/2019/y9s-2019-dual-sim-lte-a-emea-stk-l21-p-smart-pro-2019.json @@ -0,0 +1,42 @@ +{ + "slug": "y9s-2019-dual-sim-lte-a-emea-stk-l21-p-smart-pro-2019", + "name": "Y9s 2019 Dual SIM LTE-A EMEA STK-L21 / P Smart Pro 2019", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2019-12-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Bulgaria , Czech , Denmark , Finland , France , Germany , Hungary , Iran , Ireland , Italy , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , Spain , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2020/enjoy-10e-premium-edition-dual-sim-td-lte-cn-128gb-med-al00.json b/data/smartphone/huawei/2020/enjoy-10e-premium-edition-dual-sim-td-lte-cn-128gb-med-al00.json new file mode 100644 index 00000000000..cd768b5b045 --- /dev/null +++ b/data/smartphone/huawei/2020/enjoy-10e-premium-edition-dual-sim-td-lte-cn-128gb-med-al00.json @@ -0,0 +1,42 @@ +{ + "slug": "enjoy-10e-premium-edition-dual-sim-td-lte-cn-128gb-med-al00", + "name": "Enjoy 10e Premium Edition Dual SIM TD-LTE CN 128GB MED-AL00", + "brand": "huawei", + "soc": "helio-p35", + "release_date": "2020-03-04", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 279 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/enjoy-10e-premium-edition-dual-sim-td-lte-cn-64gb-med-al00-changxiang-10e.json b/data/smartphone/huawei/2020/enjoy-10e-premium-edition-dual-sim-td-lte-cn-64gb-med-al00-changxiang-10e.json new file mode 100644 index 00000000000..eddbdb7e608 --- /dev/null +++ b/data/smartphone/huawei/2020/enjoy-10e-premium-edition-dual-sim-td-lte-cn-64gb-med-al00-changxiang-10e.json @@ -0,0 +1,42 @@ +{ + "slug": "enjoy-10e-premium-edition-dual-sim-td-lte-cn-64gb-med-al00-changxiang-10e", + "name": "Enjoy 10e Premium Edition Dual SIM TD-LTE CN 64GB MED-AL00 / Changxiang 10e", + "brand": "huawei", + "soc": "helio-p35", + "release_date": "2020-03-04", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 279 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/enjoy-20-plus-5g-premium-edition-dual-sim-td-lte-cn-frl-an00a-changxiang-20-plus.json b/data/smartphone/huawei/2020/enjoy-20-plus-5g-premium-edition-dual-sim-td-lte-cn-frl-an00a-changxiang-20-plus.json new file mode 100644 index 00000000000..a0bc9dd0f40 --- /dev/null +++ b/data/smartphone/huawei/2020/enjoy-20-plus-5g-premium-edition-dual-sim-td-lte-cn-frl-an00a-changxiang-20-plus.json @@ -0,0 +1,44 @@ +{ + "slug": "enjoy-20-plus-5g-premium-edition-dual-sim-td-lte-cn-frl-an00a-changxiang-20-plus", + "name": "Enjoy 20 Plus 5G Premium Edition Dual SIM TD-LTE CN FRL-AN00a / Changxiang 20 Plus", + "brand": "huawei", + "soc": "dimensity-720", + "release_date": "2020-09-09", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.63, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/enjoy-20-plus-5g-standard-edition-dual-sim-td-lte-cn-frl-an00a-changxiang-20-plus.json b/data/smartphone/huawei/2020/enjoy-20-plus-5g-standard-edition-dual-sim-td-lte-cn-frl-an00a-changxiang-20-plus.json new file mode 100644 index 00000000000..12a13bbfdf9 --- /dev/null +++ b/data/smartphone/huawei/2020/enjoy-20-plus-5g-standard-edition-dual-sim-td-lte-cn-frl-an00a-changxiang-20-plus.json @@ -0,0 +1,44 @@ +{ + "slug": "enjoy-20-plus-5g-standard-edition-dual-sim-td-lte-cn-frl-an00a-changxiang-20-plus", + "name": "Enjoy 20 Plus 5G Standard Edition Dual SIM TD-LTE CN FRL-AN00a / Changxiang 20 Plus", + "brand": "huawei", + "soc": "dimensity-720", + "release_date": "2020-09-09", + "ram_gb": 6.0, + "battery_mah": 4200, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.63, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2299, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/enjoy-20-plus-5g-standard-edition-dual-sim-td-lte-cn-frl-tn00a-changxiang-20-plus.json b/data/smartphone/huawei/2020/enjoy-20-plus-5g-standard-edition-dual-sim-td-lte-cn-frl-tn00a-changxiang-20-plus.json new file mode 100644 index 00000000000..9969abc079b --- /dev/null +++ b/data/smartphone/huawei/2020/enjoy-20-plus-5g-standard-edition-dual-sim-td-lte-cn-frl-tn00a-changxiang-20-plus.json @@ -0,0 +1,43 @@ +{ + "slug": "enjoy-20-plus-5g-standard-edition-dual-sim-td-lte-cn-frl-tn00a-changxiang-20-plus", + "name": "Enjoy 20 Plus 5G Standard Edition Dual SIM TD-LTE CN FRL-TN00a / Changxiang 20 Plus", + "brand": "huawei", + "soc": "dimensity-720", + "release_date": "2020-09-09", + "ram_gb": 6.0, + "battery_mah": 4200, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.63, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/enjoy-20-pro-5g-dual-sim-td-lte-cn-128gb-dvc-an00-changxiang-20-pro-dvc-an20.json b/data/smartphone/huawei/2020/enjoy-20-pro-5g-dual-sim-td-lte-cn-128gb-dvc-an00-changxiang-20-pro-dvc-an20.json new file mode 100644 index 00000000000..550a2c14456 --- /dev/null +++ b/data/smartphone/huawei/2020/enjoy-20-pro-5g-dual-sim-td-lte-cn-128gb-dvc-an00-changxiang-20-pro-dvc-an20.json @@ -0,0 +1,43 @@ +{ + "slug": "enjoy-20-pro-5g-dual-sim-td-lte-cn-128gb-dvc-an00-changxiang-20-pro-dvc-an20", + "name": "Enjoy 20 Pro 5G Dual SIM TD-LTE CN 128GB DVC-AN00 / Changxiang 20 Pro DVC-AN20", + "brand": "huawei", + "soc": "dimensity-800", + "release_date": "2020-06-21", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/enjoy-20-pro-5g-dual-sim-td-lte-cn-128gb-dvc-tn00-changxiang-20-pro-dvc-tn20.json b/data/smartphone/huawei/2020/enjoy-20-pro-5g-dual-sim-td-lte-cn-128gb-dvc-tn00-changxiang-20-pro-dvc-tn20.json new file mode 100644 index 00000000000..9a060241ca2 --- /dev/null +++ b/data/smartphone/huawei/2020/enjoy-20-pro-5g-dual-sim-td-lte-cn-128gb-dvc-tn00-changxiang-20-pro-dvc-tn20.json @@ -0,0 +1,43 @@ +{ + "slug": "enjoy-20-pro-5g-dual-sim-td-lte-cn-128gb-dvc-tn00-changxiang-20-pro-dvc-tn20", + "name": "Enjoy 20 Pro 5G Dual SIM TD-LTE CN 128GB DVC-TN00 / Changxiang 20 Pro DVC-TN20", + "brand": "huawei", + "soc": "dimensity-800", + "release_date": "2020-06-21", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/enjoy-20-pro-5g-premium-edition-dual-sim-td-lte-cn-dvc-an00-enjoy-z-5g.json b/data/smartphone/huawei/2020/enjoy-20-pro-5g-premium-edition-dual-sim-td-lte-cn-dvc-an00-enjoy-z-5g.json new file mode 100644 index 00000000000..9791e3872a5 --- /dev/null +++ b/data/smartphone/huawei/2020/enjoy-20-pro-5g-premium-edition-dual-sim-td-lte-cn-dvc-an00-enjoy-z-5g.json @@ -0,0 +1,43 @@ +{ + "slug": "enjoy-20-pro-5g-premium-edition-dual-sim-td-lte-cn-dvc-an00-enjoy-z-5g", + "name": "Enjoy 20 Pro 5G Premium Edition Dual SIM TD-LTE CN DVC-AN00 / Enjoy Z 5G", + "brand": "huawei", + "soc": "dimensity-800", + "release_date": "2020-06-24", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/enjoy-20-se-premium-edition-dual-sim-td-lte-cn-128gb-ppa-al20-changxiang-20-se.json b/data/smartphone/huawei/2020/enjoy-20-se-premium-edition-dual-sim-td-lte-cn-128gb-ppa-al20-changxiang-20-se.json new file mode 100644 index 00000000000..2d0985b4204 --- /dev/null +++ b/data/smartphone/huawei/2020/enjoy-20-se-premium-edition-dual-sim-td-lte-cn-128gb-ppa-al20-changxiang-20-se.json @@ -0,0 +1,43 @@ +{ + "slug": "enjoy-20-se-premium-edition-dual-sim-td-lte-cn-128gb-ppa-al20-changxiang-20-se", + "name": "Enjoy 20 SE Premium Edition Dual SIM TD-LTE CN 128GB PPA-AL20 / Changxiang 20 SE", + "brand": "huawei", + "soc": "kirin-710a", + "release_date": "2020-12-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/enjoy-20-se-standard-edition-dual-sim-td-lte-cn-128gb-ppa-al20-changxiang-20-se.json b/data/smartphone/huawei/2020/enjoy-20-se-standard-edition-dual-sim-td-lte-cn-128gb-ppa-al20-changxiang-20-se.json new file mode 100644 index 00000000000..40eb5725082 --- /dev/null +++ b/data/smartphone/huawei/2020/enjoy-20-se-standard-edition-dual-sim-td-lte-cn-128gb-ppa-al20-changxiang-20-se.json @@ -0,0 +1,43 @@ +{ + "slug": "enjoy-20-se-standard-edition-dual-sim-td-lte-cn-128gb-ppa-al20-changxiang-20-se", + "name": "Enjoy 20 SE Standard Edition Dual SIM TD-LTE CN 128GB PPA-AL20 / Changxiang 20 SE", + "brand": "huawei", + "soc": "kirin-710a", + "release_date": "2020-12-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1299, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/honor-10x-lite-dual-sim-td-lte-emea-128gb-dnn-lx9-dnn-l29.json b/data/smartphone/huawei/2020/honor-10x-lite-dual-sim-td-lte-emea-128gb-dnn-lx9-dnn-l29.json new file mode 100644 index 00000000000..54a96687b0d --- /dev/null +++ b/data/smartphone/huawei/2020/honor-10x-lite-dual-sim-td-lte-emea-128gb-dnn-lx9-dnn-l29.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-10x-lite-dual-sim-td-lte-emea-128gb-dnn-lx9-dnn-l29", + "name": "Honor 10X Lite Dual SIM TD-LTE EMEA 128GB DNN-LX9 / DNN-L29", + "brand": "huawei", + "soc": "kirin-710a", + "release_date": "2020-11-19", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Bulgaria , Cyprus , Czech , Finland , France , Greece , Germany , Hungary , Israel , Jordan , Kuwait , Lebanon , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , Spain , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2020/honor-20e-dual-sim-lte-a-emea-64gb-hry-lx1t-honor-20-lite-hry-l21t.json b/data/smartphone/huawei/2020/honor-20e-dual-sim-lte-a-emea-64gb-hry-lx1t-honor-20-lite-hry-l21t.json new file mode 100644 index 00000000000..2bef172d17e --- /dev/null +++ b/data/smartphone/huawei/2020/honor-20e-dual-sim-lte-a-emea-64gb-hry-lx1t-honor-20-lite-hry-l21t.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-20e-dual-sim-lte-a-emea-64gb-hry-lx1t-honor-20-lite-hry-l21t", + "name": "Honor 20E Dual SIM LTE-A EMEA 64GB HRY-LX1T / Honor 20 Lite HRY-L21T", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2020-04-01", + "ram_gb": 4.0, + "battery_mah": 3400, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Czech , Germany , Hungary , Italy , Slovakia", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2020/honor-30-5g-global-dual-sim-td-lte-128gb-bmh-nx9-bmh-n29.json b/data/smartphone/huawei/2020/honor-30-5g-global-dual-sim-td-lte-128gb-bmh-nx9-bmh-n29.json new file mode 100644 index 00000000000..f044a1928c8 --- /dev/null +++ b/data/smartphone/huawei/2020/honor-30-5g-global-dual-sim-td-lte-128gb-bmh-nx9-bmh-n29.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-30-5g-global-dual-sim-td-lte-128gb-bmh-nx9-bmh-n29", + "name": "Honor 30 5G Global Dual SIM TD-LTE 128GB BMH-NX9 / BMH-N29", + "brand": "huawei", + "soc": "kirin-985", + "release_date": "2020-05-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Belarus , Bulgaria , Cyprus , Czech , Finland , France , Germany , Greece , Hungary , Italy , Netherlands , Norway , Poland , Portugal , Russia , Romania , Serbia , Slovakia , Spain , Sweden , Turkey , UAE , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2020/honor-30-5g-global-dual-sim-td-lte-256gb-bmh-nx9-bmh-n29.json b/data/smartphone/huawei/2020/honor-30-5g-global-dual-sim-td-lte-256gb-bmh-nx9-bmh-n29.json new file mode 100644 index 00000000000..d37dabe910c --- /dev/null +++ b/data/smartphone/huawei/2020/honor-30-5g-global-dual-sim-td-lte-256gb-bmh-nx9-bmh-n29.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-30-5g-global-dual-sim-td-lte-256gb-bmh-nx9-bmh-n29", + "name": "Honor 30 5G Global Dual SIM TD-LTE 256GB BMH-NX9 / BMH-N29", + "brand": "huawei", + "soc": "kirin-985", + "release_date": "2020-05-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Belarus , Bulgaria , Cyprus , Czech , Finland , France , Germany , Greece , Hungary , Italy , Netherlands , Norway , Poland , Portugal , Russia , Romania , Serbia , Slovakia , Spain , Sweden , Turkey , UAE , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2020/honor-30-5g-premium-edition-dual-sim-td-lte-cn-128gb-bmh-an10-bmh-an20.json b/data/smartphone/huawei/2020/honor-30-5g-premium-edition-dual-sim-td-lte-cn-128gb-bmh-an10-bmh-an20.json new file mode 100644 index 00000000000..cc6afbc2f59 --- /dev/null +++ b/data/smartphone/huawei/2020/honor-30-5g-premium-edition-dual-sim-td-lte-cn-128gb-bmh-an10-bmh-an20.json @@ -0,0 +1,43 @@ +{ + "slug": "honor-30-5g-premium-edition-dual-sim-td-lte-cn-128gb-bmh-an10-bmh-an20", + "name": "Honor 30 5G Premium Edition Dual SIM TD-LTE CN 128GB BMH-AN10 / BMH-AN20", + "brand": "huawei", + "soc": "kirin-985", + "release_date": "2020-04-28", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 3199, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/honor-30-5g-premium-edition-dual-sim-td-lte-cn-256gb-bmh-an10-bmh-an20.json b/data/smartphone/huawei/2020/honor-30-5g-premium-edition-dual-sim-td-lte-cn-256gb-bmh-an10-bmh-an20.json new file mode 100644 index 00000000000..948b3e494ba --- /dev/null +++ b/data/smartphone/huawei/2020/honor-30-5g-premium-edition-dual-sim-td-lte-cn-256gb-bmh-an10-bmh-an20.json @@ -0,0 +1,43 @@ +{ + "slug": "honor-30-5g-premium-edition-dual-sim-td-lte-cn-256gb-bmh-an10-bmh-an20", + "name": "Honor 30 5G Premium Edition Dual SIM TD-LTE CN 256GB BMH-AN10 / BMH-AN20", + "brand": "huawei", + "soc": "kirin-985", + "release_date": "2020-04-28", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 3499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/honor-30-5g-standard-edition-dual-sim-td-lte-cn-128gb-bmh-an10-bmh-an20.json b/data/smartphone/huawei/2020/honor-30-5g-standard-edition-dual-sim-td-lte-cn-128gb-bmh-an10-bmh-an20.json new file mode 100644 index 00000000000..6c758f67dea --- /dev/null +++ b/data/smartphone/huawei/2020/honor-30-5g-standard-edition-dual-sim-td-lte-cn-128gb-bmh-an10-bmh-an20.json @@ -0,0 +1,43 @@ +{ + "slug": "honor-30-5g-standard-edition-dual-sim-td-lte-cn-128gb-bmh-an10-bmh-an20", + "name": "Honor 30 5G Standard Edition Dual SIM TD-LTE CN 128GB BMH-AN10 / BMH-AN20", + "brand": "huawei", + "soc": "kirin-985", + "release_date": "2020-04-28", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/honor-30-lite-5g-premium-edition-dual-sim-td-lte-cn-128gb-mxw-an00-30-lite-youth.json b/data/smartphone/huawei/2020/honor-30-lite-5g-premium-edition-dual-sim-td-lte-cn-128gb-mxw-an00-30-lite-youth.json new file mode 100644 index 00000000000..61e28933e97 --- /dev/null +++ b/data/smartphone/huawei/2020/honor-30-lite-5g-premium-edition-dual-sim-td-lte-cn-128gb-mxw-an00-30-lite-youth.json @@ -0,0 +1,44 @@ +{ + "slug": "honor-30-lite-5g-premium-edition-dual-sim-td-lte-cn-128gb-mxw-an00-30-lite-youth", + "name": "Honor 30 Lite 5G Premium Edition Dual SIM TD-LTE CN 128GB MXW-AN00 / 30 Lite Youth", + "brand": "huawei", + "soc": "dimensity-800", + "release_date": "2020-07-08", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2199, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-128gb-mxw-an00.json b/data/smartphone/huawei/2020/honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-128gb-mxw-an00.json new file mode 100644 index 00000000000..250f1668015 --- /dev/null +++ b/data/smartphone/huawei/2020/honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-128gb-mxw-an00.json @@ -0,0 +1,44 @@ +{ + "slug": "honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-128gb-mxw-an00", + "name": "Honor 30 Lite 5G Standard Edition Dual SIM TD-LTE CN 128GB MXW-AN00", + "brand": "huawei", + "soc": "dimensity-800", + "release_date": "2020-07-08", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1899, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-64gb-mxw-an00.json b/data/smartphone/huawei/2020/honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-64gb-mxw-an00.json new file mode 100644 index 00000000000..e50589ec0fa --- /dev/null +++ b/data/smartphone/huawei/2020/honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-64gb-mxw-an00.json @@ -0,0 +1,44 @@ +{ + "slug": "honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-64gb-mxw-an00", + "name": "Honor 30 Lite 5G Standard Edition Dual SIM TD-LTE CN 64GB MXW-AN00", + "brand": "huawei", + "soc": "dimensity-800", + "release_date": "2020-07-08", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1699, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-64gb-mxw-tn00.json b/data/smartphone/huawei/2020/honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-64gb-mxw-tn00.json new file mode 100644 index 00000000000..5c36655a1da --- /dev/null +++ b/data/smartphone/huawei/2020/honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-64gb-mxw-tn00.json @@ -0,0 +1,44 @@ +{ + "slug": "honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-64gb-mxw-tn00", + "name": "Honor 30 Lite 5G Standard Edition Dual SIM TD-LTE CN 64GB MXW-TN00", + "brand": "huawei", + "soc": "dimensity-800", + "release_date": "2020-07-09", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1699, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/honor-30s-5g-dual-sim-td-lte-cn-128gb-cdy-an90.json b/data/smartphone/huawei/2020/honor-30s-5g-dual-sim-td-lte-cn-128gb-cdy-an90.json new file mode 100644 index 00000000000..6bac1cca8b4 --- /dev/null +++ b/data/smartphone/huawei/2020/honor-30s-5g-dual-sim-td-lte-cn-128gb-cdy-an90.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-30s-5g-dual-sim-td-lte-cn-128gb-cdy-an90", + "name": "Honor 30S 5G Dual SIM TD-LTE CN 128GB CDY-AN90", + "brand": "huawei", + "soc": "kirin-820", + "release_date": "2020-04-07", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/honor-30s-5g-dual-sim-td-lte-cn-256gb-cdy-an90.json b/data/smartphone/huawei/2020/honor-30s-5g-dual-sim-td-lte-cn-256gb-cdy-an90.json new file mode 100644 index 00000000000..a888d97c8f4 --- /dev/null +++ b/data/smartphone/huawei/2020/honor-30s-5g-dual-sim-td-lte-cn-256gb-cdy-an90.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-30s-5g-dual-sim-td-lte-cn-256gb-cdy-an90", + "name": "Honor 30S 5G Dual SIM TD-LTE CN 256GB CDY-AN90", + "brand": "huawei", + "soc": "kirin-820", + "release_date": "2020-04-07", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/honor-30s-5g-dual-sim-td-lte-cn-256gb-cdy-tn90.json b/data/smartphone/huawei/2020/honor-30s-5g-dual-sim-td-lte-cn-256gb-cdy-tn90.json new file mode 100644 index 00000000000..7356c2bdea7 --- /dev/null +++ b/data/smartphone/huawei/2020/honor-30s-5g-dual-sim-td-lte-cn-256gb-cdy-tn90.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-30s-5g-dual-sim-td-lte-cn-256gb-cdy-tn90", + "name": "Honor 30S 5G Dual SIM TD-LTE CN 256GB CDY-TN90", + "brand": "huawei", + "soc": "kirin-820", + "release_date": "2020-04-07", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/honor-8s-2020-dual-sim-lte-emea-64gb-ksa-lx9.json b/data/smartphone/huawei/2020/honor-8s-2020-dual-sim-lte-emea-64gb-ksa-lx9.json new file mode 100644 index 00000000000..bc07c708593 --- /dev/null +++ b/data/smartphone/huawei/2020/honor-8s-2020-dual-sim-lte-emea-64gb-ksa-lx9.json @@ -0,0 +1,43 @@ +{ + "slug": "honor-8s-2020-dual-sim-lte-emea-64gb-ksa-lx9", + "name": "Honor 8S 2020 Dual SIM LTE EMEA 64GB KSA-LX9", + "brand": "huawei", + "soc": "helio-a22", + "release_date": "2020-06-04", + "ram_gb": 3.0, + "battery_mah": 3020, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 100, + "market_countries": "Belarus , Bulgaria , Cyprus , Czech , Egypt , Greece , Germany , Hungary , Italy , Netherlands , Pakistan , Poland , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , South Africa , Spain , UAE , UK , Ukraine", + "market_regions": "Africa , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2020/honor-9a-global-dual-sim-td-lte-64gb-moa-lx9-moa-l29.json b/data/smartphone/huawei/2020/honor-9a-global-dual-sim-td-lte-64gb-moa-lx9-moa-l29.json new file mode 100644 index 00000000000..1c00cf81c99 --- /dev/null +++ b/data/smartphone/huawei/2020/honor-9a-global-dual-sim-td-lte-64gb-moa-lx9-moa-l29.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-9a-global-dual-sim-td-lte-64gb-moa-lx9-moa-l29", + "name": "Honor 9A Global Dual SIM TD-LTE 64GB MOA-LX9 / MOA-L29", + "brand": "huawei", + "soc": "helio-p22", + "release_date": "2020-05-04", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 279 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Belarus , Bulgaria , Cyprus , Czech , France , Greece , Germany , Hungary , Italy , Malaysia , Philippines , Poland , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , Spain , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2020/honor-9a-global-dual-sim-td-lte-64gb-moa-lx9n-moa-l29n.json b/data/smartphone/huawei/2020/honor-9a-global-dual-sim-td-lte-64gb-moa-lx9n-moa-l29n.json new file mode 100644 index 00000000000..576b6d9cab5 --- /dev/null +++ b/data/smartphone/huawei/2020/honor-9a-global-dual-sim-td-lte-64gb-moa-lx9n-moa-l29n.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-9a-global-dual-sim-td-lte-64gb-moa-lx9n-moa-l29n", + "name": "Honor 9A Global Dual SIM TD-LTE 64GB MOA-LX9N / MOA-L29N", + "brand": "huawei", + "soc": "helio-p22", + "release_date": "2020-07-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 279 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Austria , Belgium , Cyprus , Czech , Denmark , France , Germany , Greece , Hungary , Italy , Netherlands , Poland , Romania , Russia , Slovakia , Slovenia , Spain , Switzerland , UK", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/huawei/2020/honor-9c-global-dual-sim-td-lte-64gb-aka-lx9-aka-l29.json b/data/smartphone/huawei/2020/honor-9c-global-dual-sim-td-lte-64gb-aka-lx9-aka-l29.json new file mode 100644 index 00000000000..a535e55b1ef --- /dev/null +++ b/data/smartphone/huawei/2020/honor-9c-global-dual-sim-td-lte-64gb-aka-lx9-aka-l29.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-9c-global-dual-sim-td-lte-64gb-aka-lx9-aka-l29", + "name": "Honor 9C Global Dual SIM TD-LTE 64GB AKA-LX9 / AKA-L29", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2020-05-04", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Czech , Germany , Hungary , Poland , Romania , Russia , Slovakia , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2020/honor-9s-2020-global-dual-sim-td-lte-32gb-dua-lx9-dua-l29.json b/data/smartphone/huawei/2020/honor-9s-2020-global-dual-sim-td-lte-32gb-dua-lx9-dua-l29.json new file mode 100644 index 00000000000..2c34966b282 --- /dev/null +++ b/data/smartphone/huawei/2020/honor-9s-2020-global-dual-sim-td-lte-32gb-dua-lx9-dua-l29.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-9s-2020-global-dual-sim-td-lte-32gb-dua-lx9-dua-l29", + "name": "Honor 9S 2020 Global Dual SIM TD-LTE 32GB DUA-LX9 / DUA-L29", + "brand": "huawei", + "soc": "helio-p22", + "release_date": "2020-05-04", + "ram_gb": 2.0, + "battery_mah": 3020, + "weight_g": 144.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , Belarus , Cyprus , Czech , Germany , Greece , Poland , Romania , Russia , Saudi Arabia , UAE , UK , Ukraine", + "market_regions": "Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2020/honor-9x-lite-dual-sim-lte-a-emea-128gb-jsn-lx1.json b/data/smartphone/huawei/2020/honor-9x-lite-dual-sim-lte-a-emea-128gb-jsn-lx1.json new file mode 100644 index 00000000000..5d5df4d1825 --- /dev/null +++ b/data/smartphone/huawei/2020/honor-9x-lite-dual-sim-lte-a-emea-128gb-jsn-lx1.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-9x-lite-dual-sim-lte-a-emea-128gb-jsn-lx1", + "name": "Honor 9X Lite Dual SIM LTE-A EMEA 128GB JSN-LX1", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2020-05-14", + "ram_gb": 4.0, + "battery_mah": 3750, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Belarus , Bulgaria , Cyprus , Czech , Egypt , Finland , France , Greece , Hungary , Italy , Pakistan , Poland , Russia , Romania , Saudi Arabia , Serbia , South Africa , Spain , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2020/honor-9x-lite-dual-sim-td-lte-apac-128gb-jsn-l22.json b/data/smartphone/huawei/2020/honor-9x-lite-dual-sim-td-lte-apac-128gb-jsn-l22.json new file mode 100644 index 00000000000..426e91dc5b3 --- /dev/null +++ b/data/smartphone/huawei/2020/honor-9x-lite-dual-sim-td-lte-apac-128gb-jsn-l22.json @@ -0,0 +1,41 @@ +{ + "slug": "honor-9x-lite-dual-sim-td-lte-apac-128gb-jsn-l22", + "name": "Honor 9X Lite Dual SIM TD-LTE APAC 128GB JSN-L22", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2020-06-01", + "ram_gb": 4.0, + "battery_mah": 3750, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "HK , Malaysia , Singapore", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2020/honor-9x-premium-edition-dual-sim-td-lte-apac-128gb-stk-lx2-stk-l22.json b/data/smartphone/huawei/2020/honor-9x-premium-edition-dual-sim-td-lte-apac-128gb-stk-lx2-stk-l22.json new file mode 100644 index 00000000000..1b2ae1fe636 --- /dev/null +++ b/data/smartphone/huawei/2020/honor-9x-premium-edition-dual-sim-td-lte-apac-128gb-stk-lx2-stk-l22.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-9x-premium-edition-dual-sim-td-lte-apac-128gb-stk-lx2-stk-l22", + "name": "Honor 9X Premium Edition Dual SIM TD-LTE APAC 128GB STK-LX2 / STK-L22", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2020-01-19", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 196.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/honor-9x-pro-dual-sim-td-lte-apac-256gb-hlk-l42.json b/data/smartphone/huawei/2020/honor-9x-pro-dual-sim-td-lte-apac-256gb-hlk-l42.json new file mode 100644 index 00000000000..f915c151011 --- /dev/null +++ b/data/smartphone/huawei/2020/honor-9x-pro-dual-sim-td-lte-apac-256gb-hlk-l42.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-9x-pro-dual-sim-td-lte-apac-256gb-hlk-l42", + "name": "Honor 9X Pro Dual SIM TD-LTE APAC 256GB HLK-L42", + "brand": "huawei", + "soc": "kirin-810", + "release_date": "2020-05-19", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 202.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/honor-9x-standard-edition-dual-sim-td-lte-apac-128gb-stk-lx2-y9-prime-2019-stk-l22.json b/data/smartphone/huawei/2020/honor-9x-standard-edition-dual-sim-td-lte-apac-128gb-stk-lx2-y9-prime-2019-stk-l22.json new file mode 100644 index 00000000000..ccb155e531f --- /dev/null +++ b/data/smartphone/huawei/2020/honor-9x-standard-edition-dual-sim-td-lte-apac-128gb-stk-lx2-y9-prime-2019-stk-l22.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-9x-standard-edition-dual-sim-td-lte-apac-128gb-stk-lx2-y9-prime-2019-stk-l22", + "name": "Honor 9X Standard Edition Dual SIM TD-LTE APAC 128GB STK-LX2 / Y9 Prime 2019 STK-L22", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2020-01-19", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 196.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia , India , Indonesia , Jordan , Kuwait , Pakistan , Philippines , UAE", + "market_regions": "Asia , Australia , Middle East , Oceania , Southeast Asia" +} diff --git a/data/smartphone/huawei/2020/honor-play-4t-dual-sim-td-lte-cn-128gb-aka-al10.json b/data/smartphone/huawei/2020/honor-play-4t-dual-sim-td-lte-cn-128gb-aka-al10.json new file mode 100644 index 00000000000..a500a219225 --- /dev/null +++ b/data/smartphone/huawei/2020/honor-play-4t-dual-sim-td-lte-cn-128gb-aka-al10.json @@ -0,0 +1,43 @@ +{ + "slug": "honor-play-4t-dual-sim-td-lte-cn-128gb-aka-al10", + "name": "Honor Play 4T Dual SIM TD-LTE CN 128GB AKA-AL10", + "brand": "huawei", + "soc": "kirin-710a", + "release_date": "2020-04-21", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 1347, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/honor-play-4t-dual-sim-td-lte-cn-64gb-aka-al10.json b/data/smartphone/huawei/2020/honor-play-4t-dual-sim-td-lte-cn-64gb-aka-al10.json new file mode 100644 index 00000000000..31d63d687b6 --- /dev/null +++ b/data/smartphone/huawei/2020/honor-play-4t-dual-sim-td-lte-cn-64gb-aka-al10.json @@ -0,0 +1,43 @@ +{ + "slug": "honor-play-4t-dual-sim-td-lte-cn-64gb-aka-al10", + "name": "Honor Play 4T Dual SIM TD-LTE CN 64GB AKA-AL10", + "brand": "huawei", + "soc": "kirin-710a", + "release_date": "2020-04-21", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 1247, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/honor-play-4t-pro-premium-edition-dual-sim-td-lte-cn-128gb-aqm-al10.json b/data/smartphone/huawei/2020/honor-play-4t-pro-premium-edition-dual-sim-td-lte-cn-128gb-aqm-al10.json new file mode 100644 index 00000000000..0f2386f287c --- /dev/null +++ b/data/smartphone/huawei/2020/honor-play-4t-pro-premium-edition-dual-sim-td-lte-cn-128gb-aqm-al10.json @@ -0,0 +1,43 @@ +{ + "slug": "honor-play-4t-pro-premium-edition-dual-sim-td-lte-cn-128gb-aqm-al10", + "name": "Honor Play 4T Pro Premium Edition Dual SIM TD-LTE CN 128GB AQM-AL10", + "brand": "huawei", + "soc": "kirin-810", + "release_date": "2020-04-21", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 418 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1699, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/honor-play-4t-pro-standard-edition-dual-sim-td-lte-cn-128gb-aqm-al10.json b/data/smartphone/huawei/2020/honor-play-4t-pro-standard-edition-dual-sim-td-lte-cn-128gb-aqm-al10.json new file mode 100644 index 00000000000..c03c7bd341e --- /dev/null +++ b/data/smartphone/huawei/2020/honor-play-4t-pro-standard-edition-dual-sim-td-lte-cn-128gb-aqm-al10.json @@ -0,0 +1,43 @@ +{ + "slug": "honor-play-4t-pro-standard-edition-dual-sim-td-lte-cn-128gb-aqm-al10", + "name": "Honor Play 4T Pro Standard Edition Dual SIM TD-LTE CN 128GB AQM-AL10", + "brand": "huawei", + "soc": "kirin-810", + "release_date": "2020-04-21", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 418 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/honor-play-9a-dual-sim-td-lte-cn-128gb-moa-al00-honor-changwan-9a.json b/data/smartphone/huawei/2020/honor-play-9a-dual-sim-td-lte-cn-128gb-moa-al00-honor-changwan-9a.json new file mode 100644 index 00000000000..da950738e56 --- /dev/null +++ b/data/smartphone/huawei/2020/honor-play-9a-dual-sim-td-lte-cn-128gb-moa-al00-honor-changwan-9a.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-play-9a-dual-sim-td-lte-cn-128gb-moa-al00-honor-changwan-9a", + "name": "Honor Play 9A Dual SIM TD-LTE CN 128GB MOA-AL00 / Honor Changwan 9A", + "brand": "huawei", + "soc": "helio-p35", + "release_date": "2020-04-07", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 279 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/honor-play-9a-dual-sim-td-lte-cn-64gb-moa-al00-honor-changwan-9a.json b/data/smartphone/huawei/2020/honor-play-9a-dual-sim-td-lte-cn-64gb-moa-al00-honor-changwan-9a.json new file mode 100644 index 00000000000..ed5a9666a30 --- /dev/null +++ b/data/smartphone/huawei/2020/honor-play-9a-dual-sim-td-lte-cn-64gb-moa-al00-honor-changwan-9a.json @@ -0,0 +1,42 @@ +{ + "slug": "honor-play-9a-dual-sim-td-lte-cn-64gb-moa-al00-honor-changwan-9a", + "name": "Honor Play 9A Dual SIM TD-LTE CN 64GB MOA-AL00 / Honor Changwan 9A", + "brand": "huawei", + "soc": "helio-p35", + "release_date": "2020-04-07", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 279 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/honor-play4-5g-premium-edition-dual-sim-td-lte-cn-128gb-tnnh-an00.json b/data/smartphone/huawei/2020/honor-play4-5g-premium-edition-dual-sim-td-lte-cn-128gb-tnnh-an00.json new file mode 100644 index 00000000000..c7d7c8dd215 --- /dev/null +++ b/data/smartphone/huawei/2020/honor-play4-5g-premium-edition-dual-sim-td-lte-cn-128gb-tnnh-an00.json @@ -0,0 +1,43 @@ +{ + "slug": "honor-play4-5g-premium-edition-dual-sim-td-lte-cn-128gb-tnnh-an00", + "name": "Honor Play4 5G Premium Edition Dual SIM TD-LTE CN 128GB TNNH-AN00", + "brand": "huawei", + "soc": "dimensity-800", + "release_date": "2020-06-12", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 213.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/honor-play4-5g-standard-edition-dual-sim-td-lte-cn-128gb-tnnh-an00.json b/data/smartphone/huawei/2020/honor-play4-5g-standard-edition-dual-sim-td-lte-cn-128gb-tnnh-an00.json new file mode 100644 index 00000000000..67dec3073ab --- /dev/null +++ b/data/smartphone/huawei/2020/honor-play4-5g-standard-edition-dual-sim-td-lte-cn-128gb-tnnh-an00.json @@ -0,0 +1,43 @@ +{ + "slug": "honor-play4-5g-standard-edition-dual-sim-td-lte-cn-128gb-tnnh-an00", + "name": "Honor Play4 5G Standard Edition Dual SIM TD-LTE CN 128GB TNNH-AN00", + "brand": "huawei", + "soc": "dimensity-800", + "release_date": "2020-06-12", + "ram_gb": 6.0, + "battery_mah": 4300, + "weight_g": 213.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1799, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/honor-x10-5g-premium-edition-dual-sim-td-lte-cn-128gb-tel-an00a.json b/data/smartphone/huawei/2020/honor-x10-5g-premium-edition-dual-sim-td-lte-cn-128gb-tel-an00a.json new file mode 100644 index 00000000000..dc5763146ce --- /dev/null +++ b/data/smartphone/huawei/2020/honor-x10-5g-premium-edition-dual-sim-td-lte-cn-128gb-tel-an00a.json @@ -0,0 +1,43 @@ +{ + "slug": "honor-x10-5g-premium-edition-dual-sim-td-lte-cn-128gb-tel-an00a", + "name": "Honor X10 5G Premium Edition Dual SIM TD-LTE CN 128GB TEL-AN00a", + "brand": "huawei", + "soc": "kirin-820", + "release_date": "2020-05-26", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 203.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.63, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/honor-x10-5g-standard-edition-dual-sim-td-lte-cn-128gb-tel-an00.json b/data/smartphone/huawei/2020/honor-x10-5g-standard-edition-dual-sim-td-lte-cn-128gb-tel-an00.json new file mode 100644 index 00000000000..119010ad538 --- /dev/null +++ b/data/smartphone/huawei/2020/honor-x10-5g-standard-edition-dual-sim-td-lte-cn-128gb-tel-an00.json @@ -0,0 +1,43 @@ +{ + "slug": "honor-x10-5g-standard-edition-dual-sim-td-lte-cn-128gb-tel-an00", + "name": "Honor X10 5G Standard Edition Dual SIM TD-LTE CN 128GB TEL-AN00", + "brand": "huawei", + "soc": "kirin-820", + "release_date": "2020-05-26", + "ram_gb": 6.0, + "battery_mah": 4300, + "weight_g": 203.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.63, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/honor-x10-5g-standard-edition-dual-sim-td-lte-cn-64gb-tel-an00.json b/data/smartphone/huawei/2020/honor-x10-5g-standard-edition-dual-sim-td-lte-cn-64gb-tel-an00.json new file mode 100644 index 00000000000..3ba5c260264 --- /dev/null +++ b/data/smartphone/huawei/2020/honor-x10-5g-standard-edition-dual-sim-td-lte-cn-64gb-tel-an00.json @@ -0,0 +1,43 @@ +{ + "slug": "honor-x10-5g-standard-edition-dual-sim-td-lte-cn-64gb-tel-an00", + "name": "Honor X10 5G Standard Edition Dual SIM TD-LTE CN 64GB TEL-AN00", + "brand": "huawei", + "soc": "kirin-820", + "release_date": "2020-05-26", + "ram_gb": 6.0, + "battery_mah": 4300, + "weight_g": 203.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.63, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/honor-x10-5g-standard-edition-dual-sim-td-lte-cn-64gb-tel-tn00.json b/data/smartphone/huawei/2020/honor-x10-5g-standard-edition-dual-sim-td-lte-cn-64gb-tel-tn00.json new file mode 100644 index 00000000000..b34a4b8d946 --- /dev/null +++ b/data/smartphone/huawei/2020/honor-x10-5g-standard-edition-dual-sim-td-lte-cn-64gb-tel-tn00.json @@ -0,0 +1,43 @@ +{ + "slug": "honor-x10-5g-standard-edition-dual-sim-td-lte-cn-64gb-tel-tn00", + "name": "Honor X10 5G Standard Edition Dual SIM TD-LTE CN 64GB TEL-TN00", + "brand": "huawei", + "soc": "kirin-820", + "release_date": "2020-05-26", + "ram_gb": 6.0, + "battery_mah": 4300, + "weight_g": 203.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.63, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/maimang-9-5g-premium-edition-dual-sim-td-lte-cn-128gb-tnn-an00.json b/data/smartphone/huawei/2020/maimang-9-5g-premium-edition-dual-sim-td-lte-cn-128gb-tnn-an00.json new file mode 100644 index 00000000000..fb0f385cdad --- /dev/null +++ b/data/smartphone/huawei/2020/maimang-9-5g-premium-edition-dual-sim-td-lte-cn-128gb-tnn-an00.json @@ -0,0 +1,43 @@ +{ + "slug": "maimang-9-5g-premium-edition-dual-sim-td-lte-cn-128gb-tnn-an00", + "name": "Maimang 9 5G Premium Edition Dual SIM TD-LTE CN 128GB TNN-AN00", + "brand": "huawei", + "soc": "dimensity-800", + "release_date": "2020-08-07", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 212.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2399, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/maimang-9-5g-standard-edition-dual-sim-td-lte-cn-128gb-tnn-an00.json b/data/smartphone/huawei/2020/maimang-9-5g-standard-edition-dual-sim-td-lte-cn-128gb-tnn-an00.json new file mode 100644 index 00000000000..22828fef505 --- /dev/null +++ b/data/smartphone/huawei/2020/maimang-9-5g-standard-edition-dual-sim-td-lte-cn-128gb-tnn-an00.json @@ -0,0 +1,43 @@ +{ + "slug": "maimang-9-5g-standard-edition-dual-sim-td-lte-cn-128gb-tnn-an00", + "name": "Maimang 9 5G Standard Edition Dual SIM TD-LTE CN 128GB TNN-AN00", + "brand": "huawei", + "soc": "dimensity-800", + "release_date": "2020-08-07", + "ram_gb": 6.0, + "battery_mah": 4300, + "weight_g": 212.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2199, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/mate-40-5g-global-dual-sim-td-lte-128gb-oce-an10.json b/data/smartphone/huawei/2020/mate-40-5g-global-dual-sim-td-lte-128gb-oce-an10.json new file mode 100644 index 00000000000..68495fe9353 --- /dev/null +++ b/data/smartphone/huawei/2020/mate-40-5g-global-dual-sim-td-lte-128gb-oce-an10.json @@ -0,0 +1,44 @@ +{ + "slug": "mate-40-5g-global-dual-sim-td-lte-128gb-oce-an10", + "name": "Mate 40 5G Global Dual SIM TD-LTE 128GB OCE-AN10", + "brand": "huawei", + "soc": "kirin-9000e", + "release_date": "2020-12-01", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2376", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 4999, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , China , Cyprus , Croatia , Czech , Estonia , Finland , France , Greece , Germany , HK , Hungary , Indonesia , Ireland , Italy , Japan , Jordan , Kuwait , Latvia , Lithuania , Malaysia , Netherlands , Norway , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Sweden , Switzerland , Taiwan , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2020/mate-40-5g-global-dual-sim-td-lte-256gb-oce-an10.json b/data/smartphone/huawei/2020/mate-40-5g-global-dual-sim-td-lte-256gb-oce-an10.json new file mode 100644 index 00000000000..ca5479faeb3 --- /dev/null +++ b/data/smartphone/huawei/2020/mate-40-5g-global-dual-sim-td-lte-256gb-oce-an10.json @@ -0,0 +1,44 @@ +{ + "slug": "mate-40-5g-global-dual-sim-td-lte-256gb-oce-an10", + "name": "Mate 40 5G Global Dual SIM TD-LTE 256GB OCE-AN10", + "brand": "huawei", + "soc": "kirin-9000e", + "release_date": "2020-12-01", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2376", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 899, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , China , Cyprus , Croatia , Czech , Estonia , Finland , France , Greece , Germany , HK , Hungary , Indonesia , Ireland , Italy , Japan , Jordan , Kuwait , Latvia , Lithuania , Malaysia , Netherlands , Norway , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Sweden , Switzerland , Taiwan , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2020/mate-40-pro-5g-dual-sim-td-lte-cn-128gb-noh-an00.json b/data/smartphone/huawei/2020/mate-40-pro-5g-dual-sim-td-lte-cn-128gb-noh-an00.json new file mode 100644 index 00000000000..ab523b4ec99 --- /dev/null +++ b/data/smartphone/huawei/2020/mate-40-pro-5g-dual-sim-td-lte-cn-128gb-noh-an00.json @@ -0,0 +1,43 @@ +{ + "slug": "mate-40-pro-5g-dual-sim-td-lte-cn-128gb-noh-an00", + "name": "Mate 40 Pro 5G Dual SIM TD-LTE CN 128GB NOH-AN00", + "brand": "huawei", + "soc": "kirin-9000", + "release_date": "2020-10-01", + "ram_gb": 8.0, + "battery_mah": 4400, + "weight_g": 212.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.76, + "resolution": "1344x2772", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/mate-40-pro-5g-dual-sim-td-lte-cn-256gb-noh-an00.json b/data/smartphone/huawei/2020/mate-40-pro-5g-dual-sim-td-lte-cn-256gb-noh-an00.json new file mode 100644 index 00000000000..8501d494a15 --- /dev/null +++ b/data/smartphone/huawei/2020/mate-40-pro-5g-dual-sim-td-lte-cn-256gb-noh-an00.json @@ -0,0 +1,43 @@ +{ + "slug": "mate-40-pro-5g-dual-sim-td-lte-cn-256gb-noh-an00", + "name": "Mate 40 Pro 5G Dual SIM TD-LTE CN 256GB NOH-AN00", + "brand": "huawei", + "soc": "kirin-9000", + "release_date": "2020-10-01", + "ram_gb": 8.0, + "battery_mah": 4400, + "weight_g": 212.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1344x2772", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/mate-40-pro-5g-dual-sim-td-lte-cn-256gb-noh-tn00.json b/data/smartphone/huawei/2020/mate-40-pro-5g-dual-sim-td-lte-cn-256gb-noh-tn00.json new file mode 100644 index 00000000000..4c87895003e --- /dev/null +++ b/data/smartphone/huawei/2020/mate-40-pro-5g-dual-sim-td-lte-cn-256gb-noh-tn00.json @@ -0,0 +1,43 @@ +{ + "slug": "mate-40-pro-5g-dual-sim-td-lte-cn-256gb-noh-tn00", + "name": "Mate 40 Pro 5G Dual SIM TD-LTE CN 256GB NOH-TN00", + "brand": "huawei", + "soc": "kirin-9000", + "release_date": "2020-10-01", + "ram_gb": 8.0, + "battery_mah": 4400, + "weight_g": 212.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1344x2772", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/mate-40-pro-5g-dual-sim-td-lte-cn-512gb-noh-an00.json b/data/smartphone/huawei/2020/mate-40-pro-5g-dual-sim-td-lte-cn-512gb-noh-an00.json new file mode 100644 index 00000000000..dcbcd9a5b1a --- /dev/null +++ b/data/smartphone/huawei/2020/mate-40-pro-5g-dual-sim-td-lte-cn-512gb-noh-an00.json @@ -0,0 +1,43 @@ +{ + "slug": "mate-40-pro-5g-dual-sim-td-lte-cn-512gb-noh-an00", + "name": "Mate 40 Pro 5G Dual SIM TD-LTE CN 512GB NOH-AN00", + "brand": "huawei", + "soc": "kirin-9000", + "release_date": "2020-10-01", + "ram_gb": 8.0, + "battery_mah": 4400, + "weight_g": 212.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.76, + "resolution": "1344x2772", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/mate-40-pro-5g-global-dual-sim-td-lte-256gb-noh-nx9-noh-n29.json b/data/smartphone/huawei/2020/mate-40-pro-5g-global-dual-sim-td-lte-256gb-noh-nx9-noh-n29.json new file mode 100644 index 00000000000..6c8e149e335 --- /dev/null +++ b/data/smartphone/huawei/2020/mate-40-pro-5g-global-dual-sim-td-lte-256gb-noh-nx9-noh-n29.json @@ -0,0 +1,44 @@ +{ + "slug": "mate-40-pro-5g-global-dual-sim-td-lte-256gb-noh-nx9-noh-n29", + "name": "Mate 40 Pro 5G Global Dual SIM TD-LTE 256GB NOH-NX9 / NOH-N29", + "brand": "huawei", + "soc": "kirin-9000", + "release_date": "2020-11-02", + "ram_gb": 8.0, + "battery_mah": 4400, + "weight_g": 212.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1344x2772", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1199, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Estonia , Finland , France , Germany , Greece , HK , Hungary , Indonesia , Ireland , Italy , Japan , Jordan , Kuwait , Latvia , Lebanon , Lithuania , Malaysia , Netherlands , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Singapore , Slovenia , Spain , Switzerland , Sweden , Taiwan , Thailand , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2020/mate-40-pro-5g-global-dual-sim-td-lte-256gb-nop-an00.json b/data/smartphone/huawei/2020/mate-40-pro-5g-global-dual-sim-td-lte-256gb-nop-an00.json new file mode 100644 index 00000000000..f83e4963e8c --- /dev/null +++ b/data/smartphone/huawei/2020/mate-40-pro-5g-global-dual-sim-td-lte-256gb-nop-an00.json @@ -0,0 +1,44 @@ +{ + "slug": "mate-40-pro-5g-global-dual-sim-td-lte-256gb-nop-an00", + "name": "Mate 40 Pro+ 5G Global Dual SIM TD-LTE 256GB NOP-AN00", + "brand": "huawei", + "soc": "kirin-9000", + "release_date": "2020-11-02", + "ram_gb": 12.0, + "battery_mah": 4400, + "weight_g": 230.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1344x2772", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1399, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , Canada , China , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Indonesia , Ireland , Italy , Japan , Jordan , Kuwait , Latvia , Lithuania , Malaysia , Netherlands , Norway , NZ , Philippines , Poland , Portugal , Romania , Russia , Saudi Arabia , Singapore , Slovakia , Slovenia , South Africa , Spain , Sweden , Switzerland , Taiwan , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , North America , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2020/mate-40-pro-5g-global-td-lte-256gb-noh-nx9-noh-n09.json b/data/smartphone/huawei/2020/mate-40-pro-5g-global-td-lte-256gb-noh-nx9-noh-n09.json new file mode 100644 index 00000000000..0cc285800a0 --- /dev/null +++ b/data/smartphone/huawei/2020/mate-40-pro-5g-global-td-lte-256gb-noh-nx9-noh-n09.json @@ -0,0 +1,44 @@ +{ + "slug": "mate-40-pro-5g-global-td-lte-256gb-noh-nx9-noh-n09", + "name": "Mate 40 Pro 5G Global TD-LTE 256GB NOH-NX9 / NOH-N09", + "brand": "huawei", + "soc": "kirin-9000", + "release_date": "2020-11-02", + "ram_gb": 8.0, + "battery_mah": 4400, + "weight_g": 212.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1344x2772", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1199, + "market_countries": "Australia , Cyprus , Germany , Greece , Ireland , Japan , NZ , Portugal , Saudi Arabia , Spain , Turkey , UAE , UK", + "market_regions": "Asia , Australia , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2020/mate-40-rs-5g-porsche-design-collector-edition-global-dual-sim-td-lte-512gb-nop-an00.json b/data/smartphone/huawei/2020/mate-40-rs-5g-porsche-design-collector-edition-global-dual-sim-td-lte-512gb-nop-an00.json new file mode 100644 index 00000000000..693c1944a97 --- /dev/null +++ b/data/smartphone/huawei/2020/mate-40-rs-5g-porsche-design-collector-edition-global-dual-sim-td-lte-512gb-nop-an00.json @@ -0,0 +1,43 @@ +{ + "slug": "mate-40-rs-5g-porsche-design-collector-edition-global-dual-sim-td-lte-512gb-nop-an00", + "name": "Mate 40 RS 5G PORSCHE DESIGN Collector Edition Global Dual SIM TD-LTE 512GB NOP-AN00", + "brand": "huawei", + "soc": "kirin-9000", + "release_date": "2020-11-01", + "ram_gb": 12.0, + "battery_mah": 4400, + "weight_g": 234.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.76, + "resolution": "1344x2772", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , China , Cyprus , Czech , Denmark , France , Greece , Germany , HK , Hungary , Israel , Italy , Japan , Kuwait , Lebanon , Netherlands , Norway , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Sweden , Switzerland , Taiwan , Thailand , UAE , UK , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2020/mate-40-rs-5g-porsche-design-global-dual-sim-td-lte-256gb-nop-an00p.json b/data/smartphone/huawei/2020/mate-40-rs-5g-porsche-design-global-dual-sim-td-lte-256gb-nop-an00p.json new file mode 100644 index 00000000000..3d1721ed5d5 --- /dev/null +++ b/data/smartphone/huawei/2020/mate-40-rs-5g-porsche-design-global-dual-sim-td-lte-256gb-nop-an00p.json @@ -0,0 +1,43 @@ +{ + "slug": "mate-40-rs-5g-porsche-design-global-dual-sim-td-lte-256gb-nop-an00p", + "name": "Mate 40 RS 5G PORSCHE DESIGN Global Dual SIM TD-LTE 256GB NOP-AN00P", + "brand": "huawei", + "soc": "kirin-9000", + "release_date": "2020-10-01", + "ram_gb": 12.0, + "battery_mah": 4400, + "weight_g": 234.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1344x2772", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia , China , Czech , Denmark , France , Germany , HK , Israel , Italy , Jordan , Netherlands , NZ , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovenia , Spain , Sweden , Turkey , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2020/mate-40-rs-5g-porsche-design-global-dual-sim-td-lte-512gb-nop-an00p.json b/data/smartphone/huawei/2020/mate-40-rs-5g-porsche-design-global-dual-sim-td-lte-512gb-nop-an00p.json new file mode 100644 index 00000000000..145e3a218bf --- /dev/null +++ b/data/smartphone/huawei/2020/mate-40-rs-5g-porsche-design-global-dual-sim-td-lte-512gb-nop-an00p.json @@ -0,0 +1,44 @@ +{ + "slug": "mate-40-rs-5g-porsche-design-global-dual-sim-td-lte-512gb-nop-an00p", + "name": "Mate 40 RS 5G PORSCHE DESIGN Global Dual SIM TD-LTE 512GB NOP-AN00P", + "brand": "huawei", + "soc": "kirin-9000", + "release_date": "2020-10-01", + "ram_gb": 12.0, + "battery_mah": 4400, + "weight_g": 234.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.76, + "resolution": "1344x2772", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 2295, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , China , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Indonesia , Ireland , Israel , Italy , Japan , Jordan , Kuwait , Latvia , Lebanon , Lithuania , Netherlands , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Singapore , Slovenia , Spain , Sweden , Switzerland , Taiwan , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2020/nova-5t-premium-edition-global-dual-sim-td-lte-128gb-yal-l21.json b/data/smartphone/huawei/2020/nova-5t-premium-edition-global-dual-sim-td-lte-128gb-yal-l21.json new file mode 100644 index 00000000000..1ca9a5676fb --- /dev/null +++ b/data/smartphone/huawei/2020/nova-5t-premium-edition-global-dual-sim-td-lte-128gb-yal-l21.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-5t-premium-edition-global-dual-sim-td-lte-128gb-yal-l21", + "name": "Nova 5T Premium Edition Global Dual SIM TD-LTE 128GB YAL-L21", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2020-03-04", + "ram_gb": 8.0, + "battery_mah": 3750, + "weight_g": 174.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belgium , Bulgaria , Cyprus , Czech , Egypt , Finland , France , Germany , Greece , Hungary , India , Indonesia , Japan , Malaysia , Netherlands , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Singapore , Slovenia , Spain , Sweden , Taiwan , Thailand , UAE , UK", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2020/nova-7-5g-dual-sim-td-lte-cn-128gb-jef-an00-jef-an20.json b/data/smartphone/huawei/2020/nova-7-5g-dual-sim-td-lte-cn-128gb-jef-an00-jef-an20.json new file mode 100644 index 00000000000..8726ea3bf67 --- /dev/null +++ b/data/smartphone/huawei/2020/nova-7-5g-dual-sim-td-lte-cn-128gb-jef-an00-jef-an20.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-7-5g-dual-sim-td-lte-cn-128gb-jef-an00-jef-an20", + "name": "Nova 7 5G Dual SIM TD-LTE CN 128GB JEF-AN00 / JEF-AN20", + "brand": "huawei", + "soc": "kirin-985", + "release_date": "2020-04-28", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/nova-7-5g-dual-sim-td-lte-cn-128gb-jef-tn00-jef-tn20.json b/data/smartphone/huawei/2020/nova-7-5g-dual-sim-td-lte-cn-128gb-jef-tn00-jef-tn20.json new file mode 100644 index 00000000000..48621a4abba --- /dev/null +++ b/data/smartphone/huawei/2020/nova-7-5g-dual-sim-td-lte-cn-128gb-jef-tn00-jef-tn20.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-7-5g-dual-sim-td-lte-cn-128gb-jef-tn00-jef-tn20", + "name": "Nova 7 5G Dual SIM TD-LTE CN 128GB JEF-TN00 / JEF-TN20", + "brand": "huawei", + "soc": "kirin-985", + "release_date": "2020-04-28", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/nova-7-5g-dual-sim-td-lte-cn-256gb-jef-an00-jef-an20.json b/data/smartphone/huawei/2020/nova-7-5g-dual-sim-td-lte-cn-256gb-jef-an00-jef-an20.json new file mode 100644 index 00000000000..a1b33af2272 --- /dev/null +++ b/data/smartphone/huawei/2020/nova-7-5g-dual-sim-td-lte-cn-256gb-jef-an00-jef-an20.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-7-5g-dual-sim-td-lte-cn-256gb-jef-an00-jef-an20", + "name": "Nova 7 5G Dual SIM TD-LTE CN 256GB JEF-AN00 / JEF-AN20", + "brand": "huawei", + "soc": "kirin-985", + "release_date": "2020-04-28", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/nova-7-5g-global-dual-sim-td-lte-256gb-jef-nx9-jef-n29.json b/data/smartphone/huawei/2020/nova-7-5g-global-dual-sim-td-lte-256gb-jef-nx9-jef-n29.json new file mode 100644 index 00000000000..729c1a12105 --- /dev/null +++ b/data/smartphone/huawei/2020/nova-7-5g-global-dual-sim-td-lte-256gb-jef-nx9-jef-n29.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-7-5g-global-dual-sim-td-lte-256gb-jef-nx9-jef-n29", + "name": "Nova 7 5G Global Dual SIM TD-LTE 256GB JEF-NX9 / JEF-N29", + "brand": "huawei", + "soc": "kirin-985", + "release_date": "2020-07-07", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Germany , HK , Indonesia , Malaysia , NZ , Philippines , Russia , Singapore , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2020/nova-7-pro-5g-dual-sim-td-lte-cn-128gb-jer-an10-jer-an20.json b/data/smartphone/huawei/2020/nova-7-pro-5g-dual-sim-td-lte-cn-128gb-jer-an10-jer-an20.json new file mode 100644 index 00000000000..6b82b90e477 --- /dev/null +++ b/data/smartphone/huawei/2020/nova-7-pro-5g-dual-sim-td-lte-cn-128gb-jer-an10-jer-an20.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-7-pro-5g-dual-sim-td-lte-cn-128gb-jer-an10-jer-an20", + "name": "Nova 7 Pro 5G Dual SIM TD-LTE CN 128GB JER-AN10 / JER-AN20", + "brand": "huawei", + "soc": "kirin-985", + "release_date": "2020-04-28", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 392 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/nova-7-pro-5g-dual-sim-td-lte-cn-128gb-jer-tn10-jer-tn20.json b/data/smartphone/huawei/2020/nova-7-pro-5g-dual-sim-td-lte-cn-128gb-jer-tn10-jer-tn20.json new file mode 100644 index 00000000000..7c69d01c735 --- /dev/null +++ b/data/smartphone/huawei/2020/nova-7-pro-5g-dual-sim-td-lte-cn-128gb-jer-tn10-jer-tn20.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-7-pro-5g-dual-sim-td-lte-cn-128gb-jer-tn10-jer-tn20", + "name": "Nova 7 Pro 5G Dual SIM TD-LTE CN 128GB JER-TN10 / JER-TN20", + "brand": "huawei", + "soc": "kirin-985", + "release_date": "2020-04-28", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 392 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/nova-7-pro-5g-dual-sim-td-lte-cn-256gb-jer-an10-jer-an20.json b/data/smartphone/huawei/2020/nova-7-pro-5g-dual-sim-td-lte-cn-256gb-jer-an10-jer-an20.json new file mode 100644 index 00000000000..7b566198fb2 --- /dev/null +++ b/data/smartphone/huawei/2020/nova-7-pro-5g-dual-sim-td-lte-cn-256gb-jer-an10-jer-an20.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-7-pro-5g-dual-sim-td-lte-cn-256gb-jer-an10-jer-an20", + "name": "Nova 7 Pro 5G Dual SIM TD-LTE CN 256GB JER-AN10 / JER-AN20", + "brand": "huawei", + "soc": "kirin-985", + "release_date": "2020-04-28", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 392 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/nova-7-se-5g-global-dual-sim-td-lte-128gb-cdy-nx9b-cdy-n29b.json b/data/smartphone/huawei/2020/nova-7-se-5g-global-dual-sim-td-lte-128gb-cdy-nx9b-cdy-n29b.json new file mode 100644 index 00000000000..169eef11cda --- /dev/null +++ b/data/smartphone/huawei/2020/nova-7-se-5g-global-dual-sim-td-lte-128gb-cdy-nx9b-cdy-n29b.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-7-se-5g-global-dual-sim-td-lte-128gb-cdy-nx9b-cdy-n29b", + "name": "Nova 7 SE 5G Global Dual SIM TD-LTE 128GB CDY-NX9B / CDY-N29B", + "brand": "huawei", + "soc": "kirin-820", + "release_date": "2020-06-12", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "HK , Malaysia , NZ , Philippines , Singapore , Thailand", + "market_regions": "Asia , Australia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/huawei/2020/nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-cdy-an00-cdy-an20.json b/data/smartphone/huawei/2020/nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-cdy-an00-cdy-an20.json new file mode 100644 index 00000000000..b4a15b0ccf6 --- /dev/null +++ b/data/smartphone/huawei/2020/nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-cdy-an00-cdy-an20.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-cdy-an00-cdy-an20", + "name": "Nova 7 SE 5G Premium Edition Dual SIM TD-LTE CN 128GB CDY-AN00 / CDY-AN20", + "brand": "huawei", + "soc": "kirin-820", + "release_date": "2020-04-28", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-cdy-tn00-cdy-tn20.json b/data/smartphone/huawei/2020/nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-cdy-tn00-cdy-tn20.json new file mode 100644 index 00000000000..f9d8b66cfb7 --- /dev/null +++ b/data/smartphone/huawei/2020/nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-cdy-tn00-cdy-tn20.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-cdy-tn00-cdy-tn20", + "name": "Nova 7 SE 5G Premium Edition Dual SIM TD-LTE CN 128GB CDY-TN00 / CDY-TN20", + "brand": "huawei", + "soc": "kirin-820", + "release_date": "2020-04-28", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-256gb-cdy-an00-cdy-an20.json b/data/smartphone/huawei/2020/nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-256gb-cdy-an00-cdy-an20.json new file mode 100644 index 00000000000..3a7fdea3dbb --- /dev/null +++ b/data/smartphone/huawei/2020/nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-256gb-cdy-an00-cdy-an20.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-256gb-cdy-an00-cdy-an20", + "name": "Nova 7 SE 5G Premium Edition Dual SIM TD-LTE CN 256GB CDY-AN00 / CDY-AN20", + "brand": "huawei", + "soc": "kirin-820", + "release_date": "2020-04-28", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/nova-7-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-cdy-an00-cdy-an20.json b/data/smartphone/huawei/2020/nova-7-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-cdy-an00-cdy-an20.json new file mode 100644 index 00000000000..3b2d6e9e751 --- /dev/null +++ b/data/smartphone/huawei/2020/nova-7-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-cdy-an00-cdy-an20.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-7-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-cdy-an00-cdy-an20", + "name": "Nova 7 SE 5G Standard Edition Dual SIM TD-LTE CN 128GB CDY-AN00 / CDY-AN20", + "brand": "huawei", + "soc": "kirin-820", + "release_date": "2020-04-28", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/nova-7-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-cdy-tn00-cdy-tn20.json b/data/smartphone/huawei/2020/nova-7-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-cdy-tn00-cdy-tn20.json new file mode 100644 index 00000000000..9cd8992ea18 --- /dev/null +++ b/data/smartphone/huawei/2020/nova-7-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-cdy-tn00-cdy-tn20.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-7-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-cdy-tn00-cdy-tn20", + "name": "Nova 7 SE 5G Standard Edition Dual SIM TD-LTE CN 128GB CDY-TN00 / CDY-TN20", + "brand": "huawei", + "soc": "kirin-820", + "release_date": "2020-04-28", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/nova-7-se-5g-vitality-edition-dual-sim-td-lte-cn-128gb-cnd-an00-nova-7-se-5g-huoli.json b/data/smartphone/huawei/2020/nova-7-se-5g-vitality-edition-dual-sim-td-lte-cn-128gb-cnd-an00-nova-7-se-5g-huoli.json new file mode 100644 index 00000000000..c8d308138b9 --- /dev/null +++ b/data/smartphone/huawei/2020/nova-7-se-5g-vitality-edition-dual-sim-td-lte-cn-128gb-cnd-an00-nova-7-se-5g-huoli.json @@ -0,0 +1,43 @@ +{ + "slug": "nova-7-se-5g-vitality-edition-dual-sim-td-lte-cn-128gb-cnd-an00-nova-7-se-5g-huoli", + "name": "Nova 7 SE 5G Vitality Edition Dual SIM TD-LTE CN 128GB CND-AN00 / Nova 7 SE 5G Huoli", + "brand": "huawei", + "soc": "dimensity-800", + "release_date": "2020-10-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2299, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/nova-7i-dual-sim-td-lte-apac-128gb-jny-lx2-jny-l22b.json b/data/smartphone/huawei/2020/nova-7i-dual-sim-td-lte-apac-128gb-jny-lx2-jny-l22b.json new file mode 100644 index 00000000000..f8a42240bb1 --- /dev/null +++ b/data/smartphone/huawei/2020/nova-7i-dual-sim-td-lte-apac-128gb-jny-lx2-jny-l22b.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-7i-dual-sim-td-lte-apac-128gb-jny-lx2-jny-l22b", + "name": "Nova 7i Dual SIM TD-LTE APAC 128GB JNY-LX2 / JNY-L22B", + "brand": "huawei", + "soc": "kirin-810", + "release_date": "2020-02-14", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Cambodia , HK , Malaysia , Myanmar , Philippines , Thailand , Vietnam", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/huawei/2020/nova-7i-global-dual-sim-td-lte-128gb-jny-l21b-p40-lite-4g.json b/data/smartphone/huawei/2020/nova-7i-global-dual-sim-td-lte-128gb-jny-l21b-p40-lite-4g.json new file mode 100644 index 00000000000..eec0dc2324e --- /dev/null +++ b/data/smartphone/huawei/2020/nova-7i-global-dual-sim-td-lte-128gb-jny-l21b-p40-lite-4g.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-7i-global-dual-sim-td-lte-128gb-jny-l21b-p40-lite-4g", + "name": "Nova 7i Global Dual SIM TD-LTE 128GB JNY-L21B / P40 Lite 4G", + "brand": "huawei", + "soc": "kirin-810", + "release_date": "2020-03-01", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Algeria , Egypt , Italy , Kenya , Kuwait , Morocco , Poland , Russia , Saudi Arabia , Spain , Tunisie , UAE", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2020/nova-8-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-jsc-an00.json b/data/smartphone/huawei/2020/nova-8-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-jsc-an00.json new file mode 100644 index 00000000000..722404638cb --- /dev/null +++ b/data/smartphone/huawei/2020/nova-8-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-jsc-an00.json @@ -0,0 +1,44 @@ +{ + "slug": "nova-8-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-jsc-an00", + "name": "Nova 8 SE 5G Premium Edition Dual SIM TD-LTE CN 128GB JSC-AN00", + "brand": "huawei", + "soc": "dimensity-800", + "release_date": "2020-11-12", + "ram_gb": 8.0, + "battery_mah": 3800, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2699, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/nova-8-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-jsc-an00.json b/data/smartphone/huawei/2020/nova-8-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-jsc-an00.json new file mode 100644 index 00000000000..60374489df7 --- /dev/null +++ b/data/smartphone/huawei/2020/nova-8-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-jsc-an00.json @@ -0,0 +1,44 @@ +{ + "slug": "nova-8-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-jsc-an00", + "name": "Nova 8 SE 5G Standard Edition Dual SIM TD-LTE CN 128GB JSC-AN00", + "brand": "huawei", + "soc": "dimensity-720", + "release_date": "2020-11-12", + "ram_gb": 8.0, + "battery_mah": 3800, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2599, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/p-smart-2020-dual-sim-lte-a-emea-128gb-pot-lx1a-pot-l21a.json b/data/smartphone/huawei/2020/p-smart-2020-dual-sim-lte-a-emea-128gb-pot-lx1a-pot-l21a.json new file mode 100644 index 00000000000..fe4b4abdde2 --- /dev/null +++ b/data/smartphone/huawei/2020/p-smart-2020-dual-sim-lte-a-emea-128gb-pot-lx1a-pot-l21a.json @@ -0,0 +1,42 @@ +{ + "slug": "p-smart-2020-dual-sim-lte-a-emea-128gb-pot-lx1a-pot-l21a", + "name": "P Smart 2020 Dual SIM LTE-A EMEA 128GB POT-LX1A / POT-L21A", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2020-05-01", + "ram_gb": 4.0, + "battery_mah": 3400, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Czech , Finland , France , Germany , Hungary , Netherlands , Poland , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2020/p-smart-2021-dual-sim-td-lte-emea-128gb-ppa-lx2-ppa-l22.json b/data/smartphone/huawei/2020/p-smart-2021-dual-sim-td-lte-emea-128gb-ppa-lx2-ppa-l22.json new file mode 100644 index 00000000000..feaa55b2376 --- /dev/null +++ b/data/smartphone/huawei/2020/p-smart-2021-dual-sim-td-lte-emea-128gb-ppa-lx2-ppa-l22.json @@ -0,0 +1,43 @@ +{ + "slug": "p-smart-2021-dual-sim-td-lte-emea-128gb-ppa-lx2-ppa-l22", + "name": "P Smart 2021 Dual SIM TD-LTE EMEA 128GB PPA-LX2 / PPA-L22", + "brand": "huawei", + "soc": "kirin-710a", + "release_date": "2020-09-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 229, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Czech , Finland , France , Germany , Greece , Hungary , Netherlands , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , Spain , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2020/p30-lite-new-edition-dual-sim-td-lte-emea-256gb-mar-l21bx.json b/data/smartphone/huawei/2020/p30-lite-new-edition-dual-sim-td-lte-emea-256gb-mar-l21bx.json new file mode 100644 index 00000000000..04f19c252fd --- /dev/null +++ b/data/smartphone/huawei/2020/p30-lite-new-edition-dual-sim-td-lte-emea-256gb-mar-l21bx.json @@ -0,0 +1,42 @@ +{ + "slug": "p30-lite-new-edition-dual-sim-td-lte-emea-256gb-mar-l21bx", + "name": "P30 Lite New Edition Dual SIM TD-LTE EMEA 256GB MAR-L21BX", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2020-01-01", + "ram_gb": 6.0, + "battery_mah": 3340, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.15, + "resolution": "1080x2312", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Bulgaria , Egypt , Finland , France , Germany , Hungary , Ireland , Kenya , Netherlands , Poland , Russia , Romania , Saudi Arabia , Slovakia , South Africa , UAE , UK", + "market_regions": "Africa , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2020/p30-pro-new-edition-2020-global-dual-sim-td-lte-vog-l29-256gb.json b/data/smartphone/huawei/2020/p30-pro-new-edition-2020-global-dual-sim-td-lte-vog-l29-256gb.json new file mode 100644 index 00000000000..523042f0f14 --- /dev/null +++ b/data/smartphone/huawei/2020/p30-pro-new-edition-2020-global-dual-sim-td-lte-vog-l29-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "p30-pro-new-edition-2020-global-dual-sim-td-lte-vog-l29-256gb", + "name": "P30 Pro New Edition 2020 Global Dual SIM TD-LTE VOG-L29 256GB", + "brand": "huawei", + "soc": "kirin-980", + "release_date": "2020-06-03", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Bulgaria , Czech , Estonia , France , Germany , Hungary , India , Indonesia , Italy , Japan , Kenya , Latvia , Lithuania , Malaysia , Netherlands , NZ , Philippines , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Taiwan , Thailand , Turkey , UAE , UK , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2020/p40-lite-4g-global-dual-sim-td-lte-128gb-jny-lx1-jny-l21a.json b/data/smartphone/huawei/2020/p40-lite-4g-global-dual-sim-td-lte-128gb-jny-lx1-jny-l21a.json new file mode 100644 index 00000000000..14f49ca1933 --- /dev/null +++ b/data/smartphone/huawei/2020/p40-lite-4g-global-dual-sim-td-lte-128gb-jny-lx1-jny-l21a.json @@ -0,0 +1,42 @@ +{ + "slug": "p40-lite-4g-global-dual-sim-td-lte-128gb-jny-lx1-jny-l21a", + "name": "P40 Lite 4G Global Dual SIM TD-LTE 128GB JNY-LX1 / JNY-L21A", + "brand": "huawei", + "soc": "kirin-810", + "release_date": "2020-03-01", + "ram_gb": 6.0, + "battery_mah": 4200, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Austria , Belarus , Cyprus , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , Italy , Kazakhstan , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , South Africa , Spain , Switzerland , Sweden , Turkey , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2020/p40-lite-4g-global-td-lte-128gb-jny-l01a.json b/data/smartphone/huawei/2020/p40-lite-4g-global-td-lte-128gb-jny-l01a.json new file mode 100644 index 00000000000..ad3cb455b5e --- /dev/null +++ b/data/smartphone/huawei/2020/p40-lite-4g-global-td-lte-128gb-jny-l01a.json @@ -0,0 +1,42 @@ +{ + "slug": "p40-lite-4g-global-td-lte-128gb-jny-l01a", + "name": "P40 Lite 4G Global TD-LTE 128GB JNY-L01A", + "brand": "huawei", + "soc": "kirin-810", + "release_date": "2020-03-01", + "ram_gb": 6.0, + "battery_mah": 4200, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Africa , Turkey , UK", + "market_regions": "Africa , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2020/p40-lite-5g-global-dual-sim-td-lte-128gb-cdy-nx9a-cdy-n29a.json b/data/smartphone/huawei/2020/p40-lite-5g-global-dual-sim-td-lte-128gb-cdy-nx9a-cdy-n29a.json new file mode 100644 index 00000000000..b505907d819 --- /dev/null +++ b/data/smartphone/huawei/2020/p40-lite-5g-global-dual-sim-td-lte-128gb-cdy-nx9a-cdy-n29a.json @@ -0,0 +1,42 @@ +{ + "slug": "p40-lite-5g-global-dual-sim-td-lte-128gb-cdy-nx9a-cdy-n29a", + "name": "P40 Lite 5G Global Dual SIM TD-LTE 128GB CDY-NX9A / CDY-N29A", + "brand": "huawei", + "soc": "kirin-820", + "release_date": "2020-06-03", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Belgium , Finland , France , Germany , Ireland , Italy , Japan , Netherlands , Poland , Russia , Spain , Sweden , Switzerland , UK", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/huawei/2020/p40-lite-dual-sim-td-lte-latam-128gb-jny-l22a.json b/data/smartphone/huawei/2020/p40-lite-dual-sim-td-lte-latam-128gb-jny-l22a.json new file mode 100644 index 00000000000..edf2128b933 --- /dev/null +++ b/data/smartphone/huawei/2020/p40-lite-dual-sim-td-lte-latam-128gb-jny-l22a.json @@ -0,0 +1,42 @@ +{ + "slug": "p40-lite-dual-sim-td-lte-latam-128gb-jny-l22a", + "name": "P40 Lite Dual SIM TD-LTE LATAM 128GB JNY-L22A", + "brand": "huawei", + "soc": "kirin-810", + "release_date": "2020-02-14", + "ram_gb": 6.0, + "battery_mah": 4200, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Chile , Colombia , Mexico , Peru", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/huawei/2020/p40-lite-e-dual-sim-td-lte-emea-64gb-art-l29-y7p-2020.json b/data/smartphone/huawei/2020/p40-lite-e-dual-sim-td-lte-emea-64gb-art-l29-y7p-2020.json new file mode 100644 index 00000000000..1f6812338ef --- /dev/null +++ b/data/smartphone/huawei/2020/p40-lite-e-dual-sim-td-lte-emea-64gb-art-l29-y7p-2020.json @@ -0,0 +1,42 @@ +{ + "slug": "p40-lite-e-dual-sim-td-lte-emea-64gb-art-l29-y7p-2020", + "name": "P40 Lite E Dual SIM TD-LTE EMEA 64GB ART-L29 / Y7p 2020", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2020-03-06", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Estonia , Egypt , Finland , Greece , Germany , Hungary , Ireland , Jordan , Kenya , Kuwait , Latvia , Lebanon , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Slovenia , Spain , Sweden , Tunisie , Turkey , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2020/p40-lite-td-lte-latam-128gb-jny-l02a.json b/data/smartphone/huawei/2020/p40-lite-td-lte-latam-128gb-jny-l02a.json new file mode 100644 index 00000000000..07f3bbc9518 --- /dev/null +++ b/data/smartphone/huawei/2020/p40-lite-td-lte-latam-128gb-jny-l02a.json @@ -0,0 +1,42 @@ +{ + "slug": "p40-lite-td-lte-latam-128gb-jny-l02a", + "name": "P40 Lite TD-LTE LATAM 128GB JNY-L02A", + "brand": "huawei", + "soc": "kirin-810", + "release_date": "2020-03-01", + "ram_gb": 6.0, + "battery_mah": 4200, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Chile , Mexico , Peru", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/huawei/2020/y5p-2020-global-dual-sim-td-lte-32gb-dra-lx9-dra-l29-dua-l29a.json b/data/smartphone/huawei/2020/y5p-2020-global-dual-sim-td-lte-32gb-dra-lx9-dra-l29-dua-l29a.json new file mode 100644 index 00000000000..f4de987d838 --- /dev/null +++ b/data/smartphone/huawei/2020/y5p-2020-global-dual-sim-td-lte-32gb-dra-lx9-dra-l29-dua-l29a.json @@ -0,0 +1,43 @@ +{ + "slug": "y5p-2020-global-dual-sim-td-lte-32gb-dra-lx9-dra-l29-dua-l29a", + "name": "Y5p 2020 Global Dual SIM TD-LTE 32GB DRA-LX9 / DRA-L29 / DUA-L29A", + "brand": "huawei", + "soc": "helio-p22", + "release_date": "2020-05-01", + "ram_gb": 2.0, + "battery_mah": 3020, + "weight_g": 144.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 85, + "market_countries": "Armenia , Australia , Belarus , Bulgaria , Cyprus , Czech , Germany , Greece , Kazakhstan , NZ , Poland , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , Sweden , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2020/y6p-2020-global-dual-sim-td-lte-64gb-med-lx9-med-l29.json b/data/smartphone/huawei/2020/y6p-2020-global-dual-sim-td-lte-64gb-med-lx9-med-l29.json new file mode 100644 index 00000000000..4103243ca97 --- /dev/null +++ b/data/smartphone/huawei/2020/y6p-2020-global-dual-sim-td-lte-64gb-med-lx9-med-l29.json @@ -0,0 +1,43 @@ +{ + "slug": "y6p-2020-global-dual-sim-td-lte-64gb-med-lx9-med-l29", + "name": "Y6p 2020 Global Dual SIM TD-LTE 64GB MED-LX9 / MED-L29", + "brand": "huawei", + "soc": "helio-p22", + "release_date": "2020-05-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 279 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 133, + "market_countries": "Armenia , Belarus , Belgium , Czech , Germany , HK , Hungary , Indonesia , Kazakhstan , Malaysia , Mexico , Pakistan , Philippines , Poland , Russia , Romania , Slovakia , Singapore , Slovenia , Thailand , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , North America , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2020/y6p-2020-global-dual-sim-td-lte-64gb-med-lx9n-med-l29n.json b/data/smartphone/huawei/2020/y6p-2020-global-dual-sim-td-lte-64gb-med-lx9n-med-l29n.json new file mode 100644 index 00000000000..c589a7e2d12 --- /dev/null +++ b/data/smartphone/huawei/2020/y6p-2020-global-dual-sim-td-lte-64gb-med-lx9n-med-l29n.json @@ -0,0 +1,42 @@ +{ + "slug": "y6p-2020-global-dual-sim-td-lte-64gb-med-lx9n-med-l29n", + "name": "Y6p 2020 Global Dual SIM TD-LTE 64GB MED-LX9N / MED-L29N", + "brand": "huawei", + "soc": "helio-p22", + "release_date": "2020-05-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 279 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Austria , Belgium , Cyprus , Czech , Denmark , France , Germany , Greece , Hungary , Italy , Netherlands , Poland , Romania , Russia , Slovakia , Slovenia , Spain , Switzerland , UK", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/huawei/2020/y6s-2019-dual-sim-td-lte-latam-64gb-jat-lx3-jat-l23.json b/data/smartphone/huawei/2020/y6s-2019-dual-sim-td-lte-latam-64gb-jat-lx3-jat-l23.json new file mode 100644 index 00000000000..731f5b290f7 --- /dev/null +++ b/data/smartphone/huawei/2020/y6s-2019-dual-sim-td-lte-latam-64gb-jat-lx3-jat-l23.json @@ -0,0 +1,41 @@ +{ + "slug": "y6s-2019-dual-sim-td-lte-latam-64gb-jat-lx3-jat-l23", + "name": "Y6s 2019 Dual SIM TD-LTE LATAM 64GB JAT-LX3 / JAT-L23", + "brand": "huawei", + "soc": "helio-p35", + "release_date": "2020-01-01", + "ram_gb": 3.0, + "battery_mah": 3020, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/huawei/2020/y7a-2021-dual-sim-lte-a-latam-64gb-ppa-lx3b-ppa-l23b.json b/data/smartphone/huawei/2020/y7a-2021-dual-sim-lte-a-latam-64gb-ppa-lx3b-ppa-l23b.json new file mode 100644 index 00000000000..be1917dde43 --- /dev/null +++ b/data/smartphone/huawei/2020/y7a-2021-dual-sim-lte-a-latam-64gb-ppa-lx3b-ppa-l23b.json @@ -0,0 +1,42 @@ +{ + "slug": "y7a-2021-dual-sim-lte-a-latam-64gb-ppa-lx3b-ppa-l23b", + "name": "Y7a 2021 Dual SIM LTE-A LATAM 64GB PPA-LX3B / PPA-L23B", + "brand": "huawei", + "soc": "kirin-710a", + "release_date": "2020-11-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Colombia , Peru", + "market_regions": "South America" +} diff --git a/data/smartphone/huawei/2020/y7a-2021-dual-sim-td-lte-emea-128gb-ppa-lx2b-ppa-l22b.json b/data/smartphone/huawei/2020/y7a-2021-dual-sim-td-lte-emea-128gb-ppa-lx2b-ppa-l22b.json new file mode 100644 index 00000000000..43ab1055d37 --- /dev/null +++ b/data/smartphone/huawei/2020/y7a-2021-dual-sim-td-lte-emea-128gb-ppa-lx2b-ppa-l22b.json @@ -0,0 +1,42 @@ +{ + "slug": "y7a-2021-dual-sim-td-lte-emea-128gb-ppa-lx2b-ppa-l22b", + "name": "Y7a 2021 Dual SIM TD-LTE EMEA 128GB PPA-LX2B / PPA-L22B", + "brand": "huawei", + "soc": "kirin-710a", + "release_date": "2020-10-31", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Morocco , Saudi Arabia , Tunisie", + "market_regions": "Africa , Middle East" +} diff --git a/data/smartphone/huawei/2020/y7a-2021-lte-a-latam-64gb-ppa-l03b.json b/data/smartphone/huawei/2020/y7a-2021-lte-a-latam-64gb-ppa-l03b.json new file mode 100644 index 00000000000..83b5dc23e94 --- /dev/null +++ b/data/smartphone/huawei/2020/y7a-2021-lte-a-latam-64gb-ppa-l03b.json @@ -0,0 +1,42 @@ +{ + "slug": "y7a-2021-lte-a-latam-64gb-ppa-l03b", + "name": "Y7a 2021 LTE-A LATAM 64GB PPA-L03B", + "brand": "huawei", + "soc": "kirin-710a", + "release_date": "2020-11-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Chile , Mexico , Peru", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/huawei/2020/y7a-2021-td-lte-emea-128gb-ppa-l02b.json b/data/smartphone/huawei/2020/y7a-2021-td-lte-emea-128gb-ppa-l02b.json new file mode 100644 index 00000000000..b998cc02b34 --- /dev/null +++ b/data/smartphone/huawei/2020/y7a-2021-td-lte-emea-128gb-ppa-l02b.json @@ -0,0 +1,42 @@ +{ + "slug": "y7a-2021-td-lte-emea-128gb-ppa-l02b", + "name": "Y7a 2021 TD-LTE EMEA 128GB PPA-L02B", + "brand": "huawei", + "soc": "kirin-710a", + "release_date": "2020-10-31", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Saudi Arabia , UAE", + "market_regions": "Middle East" +} diff --git a/data/smartphone/huawei/2020/y7p-2020-dual-sim-td-lte-apac-latam-64gb-art-l28.json b/data/smartphone/huawei/2020/y7p-2020-dual-sim-td-lte-apac-latam-64gb-art-l28.json new file mode 100644 index 00000000000..9945a34c506 --- /dev/null +++ b/data/smartphone/huawei/2020/y7p-2020-dual-sim-td-lte-apac-latam-64gb-art-l28.json @@ -0,0 +1,42 @@ +{ + "slug": "y7p-2020-dual-sim-td-lte-apac-latam-64gb-art-l28", + "name": "Y7p 2020 Dual SIM TD-LTE APAC LATAM 64GB ART-L28", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2020-02-21", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Armenia , Bangladesh , Chile , Colombia , Kazakhstan , Malaysia , Mexico , Myanmar , Pakistan , Peru , Philippines , Thailand", + "market_regions": "Asia , North America , Oceania , South America , Southeast Asia" +} diff --git a/data/smartphone/huawei/2020/y8p-2020-premium-edition-global-dual-sim-td-lte-128gb-aqm-l21a-p-smart-s-aqm-lx1.json b/data/smartphone/huawei/2020/y8p-2020-premium-edition-global-dual-sim-td-lte-128gb-aqm-l21a-p-smart-s-aqm-lx1.json new file mode 100644 index 00000000000..e495959a2cc --- /dev/null +++ b/data/smartphone/huawei/2020/y8p-2020-premium-edition-global-dual-sim-td-lte-128gb-aqm-l21a-p-smart-s-aqm-lx1.json @@ -0,0 +1,43 @@ +{ + "slug": "y8p-2020-premium-edition-global-dual-sim-td-lte-128gb-aqm-l21a-p-smart-s-aqm-lx1", + "name": "Y8p 2020 Premium Edition Global Dual SIM TD-LTE 128GB AQM-L21A / P Smart S AQM-LX1", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2020-06-08", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 418 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Algeria , Armenia , Egypt , India , Kazakhstan , Morocco , Pakistan , Peru , Thailand , Tunisie", + "market_regions": "Africa , Asia , South America , Western Europe" +} diff --git a/data/smartphone/huawei/2020/y8p-2020-premium-edition-global-dual-sim-td-lte-128gb-aqm-lx1-aqm-l21.json b/data/smartphone/huawei/2020/y8p-2020-premium-edition-global-dual-sim-td-lte-128gb-aqm-lx1-aqm-l21.json new file mode 100644 index 00000000000..d94f637c20d --- /dev/null +++ b/data/smartphone/huawei/2020/y8p-2020-premium-edition-global-dual-sim-td-lte-128gb-aqm-lx1-aqm-l21.json @@ -0,0 +1,43 @@ +{ + "slug": "y8p-2020-premium-edition-global-dual-sim-td-lte-128gb-aqm-lx1-aqm-l21", + "name": "Y8p 2020 Premium Edition Global Dual SIM TD-LTE 128GB AQM-LX1 / AQM-L21", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2020-05-28", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 418 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belarus , Cambodia , Jordan , Kenya , Kuwait , Nigeria , Saudi Arabia", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia" +} diff --git a/data/smartphone/huawei/2020/y8p-2020-standard-edition-global-dual-sim-td-lte-128gb-aqm-l21a-p-smart-s-aqm-lx1.json b/data/smartphone/huawei/2020/y8p-2020-standard-edition-global-dual-sim-td-lte-128gb-aqm-l21a-p-smart-s-aqm-lx1.json new file mode 100644 index 00000000000..512fb48d552 --- /dev/null +++ b/data/smartphone/huawei/2020/y8p-2020-standard-edition-global-dual-sim-td-lte-128gb-aqm-l21a-p-smart-s-aqm-lx1.json @@ -0,0 +1,44 @@ +{ + "slug": "y8p-2020-standard-edition-global-dual-sim-td-lte-128gb-aqm-l21a-p-smart-s-aqm-lx1", + "name": "Y8p 2020 Standard Edition Global Dual SIM TD-LTE 128GB AQM-L21A / P Smart S AQM-LX1", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2020-06-08", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 418 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 260, + "market_countries": "Algeria , Armenia , Chile , Egypt , Italy , Kazakhstan , Morocco , Peru , Russia , Tunisie", + "market_regions": "Africa , Asia , Eastern Europe , Europe , South America , Western Europe" +} diff --git a/data/smartphone/huawei/2020/y8p-2020-standard-edition-global-dual-sim-td-lte-128gb-aqm-lx1-aqm-l21.json b/data/smartphone/huawei/2020/y8p-2020-standard-edition-global-dual-sim-td-lte-128gb-aqm-lx1-aqm-l21.json new file mode 100644 index 00000000000..97e02f42f1f --- /dev/null +++ b/data/smartphone/huawei/2020/y8p-2020-standard-edition-global-dual-sim-td-lte-128gb-aqm-lx1-aqm-l21.json @@ -0,0 +1,43 @@ +{ + "slug": "y8p-2020-standard-edition-global-dual-sim-td-lte-128gb-aqm-lx1-aqm-l21", + "name": "Y8p 2020 Standard Edition Global Dual SIM TD-LTE 128GB AQM-LX1 / AQM-L21", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2020-06-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 418 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belarus , Cambodia , Kenya , Nigeria", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Southeast Asia" +} diff --git a/data/smartphone/huawei/2020/y8p-2020-standard-edition-global-td-lte-128gb-aqm-l01a.json b/data/smartphone/huawei/2020/y8p-2020-standard-edition-global-td-lte-128gb-aqm-l01a.json new file mode 100644 index 00000000000..72ed8f7d6b8 --- /dev/null +++ b/data/smartphone/huawei/2020/y8p-2020-standard-edition-global-td-lte-128gb-aqm-l01a.json @@ -0,0 +1,43 @@ +{ + "slug": "y8p-2020-standard-edition-global-td-lte-128gb-aqm-l01a", + "name": "Y8p 2020 Standard Edition Global TD-LTE 128GB AQM-L01A", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2020-05-28", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 418 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Chile , Peru", + "market_regions": "South America" +} diff --git a/data/smartphone/huawei/2020/y8s-2020-dual-sim-lte-a-apac-128gb-jkm-lx2.json b/data/smartphone/huawei/2020/y8s-2020-dual-sim-lte-a-apac-128gb-jkm-lx2.json new file mode 100644 index 00000000000..b72d0879444 --- /dev/null +++ b/data/smartphone/huawei/2020/y8s-2020-dual-sim-lte-a-apac-128gb-jkm-lx2.json @@ -0,0 +1,42 @@ +{ + "slug": "y8s-2020-dual-sim-lte-a-apac-128gb-jkm-lx2", + "name": "Y8s 2020 Dual SIM LTE-A APAC 128GB JKM-LX2", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2020-05-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Pakistan", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2020/y8s-2020-dual-sim-lte-a-emea-jkm-lx1.json b/data/smartphone/huawei/2020/y8s-2020-dual-sim-lte-a-emea-jkm-lx1.json new file mode 100644 index 00000000000..a751dac75ad --- /dev/null +++ b/data/smartphone/huawei/2020/y8s-2020-dual-sim-lte-a-emea-jkm-lx1.json @@ -0,0 +1,42 @@ +{ + "slug": "y8s-2020-dual-sim-lte-a-emea-jkm-lx1", + "name": "Y8s 2020 Dual SIM LTE-A EMEA JKM-LX1", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2020-05-13", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Germany , Jordan , Morocco , Poland , Romania , Russia , Saudi Arabia , Slovakia , South Africa , Tunisie , UAE", + "market_regions": "Africa , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2020/y8s-2020-dual-sim-lte-a-latam-jkm-lx3.json b/data/smartphone/huawei/2020/y8s-2020-dual-sim-lte-a-latam-jkm-lx3.json new file mode 100644 index 00000000000..46c4e429884 --- /dev/null +++ b/data/smartphone/huawei/2020/y8s-2020-dual-sim-lte-a-latam-jkm-lx3.json @@ -0,0 +1,42 @@ +{ + "slug": "y8s-2020-dual-sim-lte-a-latam-jkm-lx3", + "name": "Y8s 2020 Dual SIM LTE-A LATAM JKM-LX3", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2020-05-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Chile , Colombia , Mexico , Peru", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/huawei/2020/y8s-2020-lte-a-emea-jkm-lx1.json b/data/smartphone/huawei/2020/y8s-2020-lte-a-emea-jkm-lx1.json new file mode 100644 index 00000000000..32f4e3e999b --- /dev/null +++ b/data/smartphone/huawei/2020/y8s-2020-lte-a-emea-jkm-lx1.json @@ -0,0 +1,42 @@ +{ + "slug": "y8s-2020-lte-a-emea-jkm-lx1", + "name": "Y8s 2020 LTE-A EMEA JKM-LX1", + "brand": "huawei", + "soc": "kirin-710", + "release_date": "2020-05-13", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Germany , Jordan , Morocco , South Africa", + "market_regions": "Africa , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2020/y9a-4g-premium-edition-dual-sim-td-lte-emea-frl-l22-frl-lx2.json b/data/smartphone/huawei/2020/y9a-4g-premium-edition-dual-sim-td-lte-emea-frl-l22-frl-lx2.json new file mode 100644 index 00000000000..123ed199053 --- /dev/null +++ b/data/smartphone/huawei/2020/y9a-4g-premium-edition-dual-sim-td-lte-emea-frl-l22-frl-lx2.json @@ -0,0 +1,44 @@ +{ + "slug": "y9a-4g-premium-edition-dual-sim-td-lte-emea-frl-l22-frl-lx2", + "name": "Y9a 4G Premium Edition Dual SIM TD-LTE EMEA FRL-L22 / FRL-LX2", + "brand": "huawei", + "soc": "helio-g80", + "release_date": "2020-09-01", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.63, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 240, + "market_countries": "Egypt , Jordan , Kenya , Lebanon , Morocco , Nigeria , Saudi Arabia , South Africa , Tunisie , UAE", + "market_regions": "Africa , Asia , Middle East" +} diff --git a/data/smartphone/huawei/2020/y9a-4g-standard-edition-dual-sim-td-lte-latam-frl-l23-frl-lx3.json b/data/smartphone/huawei/2020/y9a-4g-standard-edition-dual-sim-td-lte-latam-frl-l23-frl-lx3.json new file mode 100644 index 00000000000..69fbf2fdfc8 --- /dev/null +++ b/data/smartphone/huawei/2020/y9a-4g-standard-edition-dual-sim-td-lte-latam-frl-l23-frl-lx3.json @@ -0,0 +1,43 @@ +{ + "slug": "y9a-4g-standard-edition-dual-sim-td-lte-latam-frl-l23-frl-lx3", + "name": "Y9a 4G Standard Edition Dual SIM TD-LTE LATAM FRL-L23 / FRL-LX3", + "brand": "huawei", + "soc": "helio-g80", + "release_date": "2020-09-01", + "ram_gb": 6.0, + "battery_mah": 4200, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.63, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Chile , Colombia , Mexico , Peru", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/huawei/2021/honor-50-se-5g-dual-sim-td-lte-cn-128gb-jlh-an00.json b/data/smartphone/huawei/2021/honor-50-se-5g-dual-sim-td-lte-cn-128gb-jlh-an00.json new file mode 100644 index 00000000000..6f1a301cf1e --- /dev/null +++ b/data/smartphone/huawei/2021/honor-50-se-5g-dual-sim-td-lte-cn-128gb-jlh-an00.json @@ -0,0 +1,44 @@ +{ + "slug": "honor-50-se-5g-dual-sim-td-lte-cn-128gb-jlh-an00", + "name": "Honor 50 SE 5G Dual SIM TD-LTE CN 128GB JLH-AN00", + "brand": "huawei", + "soc": "dimensity-900", + "release_date": "2021-07-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2388", + "refresh_hz": 120, + "type": "Color PLS TFT LCD display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2399, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2021/honor-50-se-5g-dual-sim-td-lte-cn-256gb-jlh-an00.json b/data/smartphone/huawei/2021/honor-50-se-5g-dual-sim-td-lte-cn-256gb-jlh-an00.json new file mode 100644 index 00000000000..f62bd3ce70f --- /dev/null +++ b/data/smartphone/huawei/2021/honor-50-se-5g-dual-sim-td-lte-cn-256gb-jlh-an00.json @@ -0,0 +1,44 @@ +{ + "slug": "honor-50-se-5g-dual-sim-td-lte-cn-256gb-jlh-an00", + "name": "Honor 50 SE 5G Dual SIM TD-LTE CN 256GB JLH-AN00", + "brand": "huawei", + "soc": "dimensity-900", + "release_date": "2021-07-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2388", + "refresh_hz": 120, + "type": "Color PLS TFT LCD display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2699, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2021/honor-magic-3-5g-dual-sim-td-lte-cn-128gb-elz-an00.json b/data/smartphone/huawei/2021/honor-magic-3-5g-dual-sim-td-lte-cn-128gb-elz-an00.json new file mode 100644 index 00000000000..fc4f016a29d --- /dev/null +++ b/data/smartphone/huawei/2021/honor-magic-3-5g-dual-sim-td-lte-cn-128gb-elz-an00.json @@ -0,0 +1,44 @@ +{ + "slug": "honor-magic-3-5g-dual-sim-td-lte-cn-128gb-elz-an00", + "name": "Honor Magic 3 5G Dual SIM TD-LTE CN 128GB ELZ-AN00", + "brand": "huawei", + "soc": "snapdragon-888", + "release_date": "2021-08-18", + "ram_gb": 8.0, + "battery_mah": 4600, + "weight_g": 203.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.76, + "resolution": "1344x2772", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 4599, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2021/honor-magic-3-5g-dual-sim-td-lte-cn-256gb-elz-an00.json b/data/smartphone/huawei/2021/honor-magic-3-5g-dual-sim-td-lte-cn-256gb-elz-an00.json new file mode 100644 index 00000000000..121bea5200f --- /dev/null +++ b/data/smartphone/huawei/2021/honor-magic-3-5g-dual-sim-td-lte-cn-256gb-elz-an00.json @@ -0,0 +1,44 @@ +{ + "slug": "honor-magic-3-5g-dual-sim-td-lte-cn-256gb-elz-an00", + "name": "Honor Magic 3 5G Dual SIM TD-LTE CN 256GB ELZ-AN00", + "brand": "huawei", + "soc": "snapdragon-888", + "release_date": "2021-08-18", + "ram_gb": 8.0, + "battery_mah": 4600, + "weight_g": 203.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1344x2772", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 4999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2021/honor-magic-3-5g-ultimate-edition-dual-sim-td-lte-cn-512gb-elz-an20.json b/data/smartphone/huawei/2021/honor-magic-3-5g-ultimate-edition-dual-sim-td-lte-cn-512gb-elz-an20.json new file mode 100644 index 00000000000..e5e28596412 --- /dev/null +++ b/data/smartphone/huawei/2021/honor-magic-3-5g-ultimate-edition-dual-sim-td-lte-cn-512gb-elz-an20.json @@ -0,0 +1,43 @@ +{ + "slug": "honor-magic-3-5g-ultimate-edition-dual-sim-td-lte-cn-512gb-elz-an20", + "name": "Honor Magic 3 5G Ultimate Edition Dual SIM TD-LTE CN 512GB ELZ-AN20", + "brand": "huawei", + "soc": "snapdragon-888-plus", + "release_date": "2021-08-18", + "ram_gb": 12.0, + "battery_mah": 4600, + "weight_g": 213.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.76, + "resolution": "1344x2772", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2021/honor-magic-3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-elz-an10.json b/data/smartphone/huawei/2021/honor-magic-3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-elz-an10.json new file mode 100644 index 00000000000..580874e9287 --- /dev/null +++ b/data/smartphone/huawei/2021/honor-magic-3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-elz-an10.json @@ -0,0 +1,43 @@ +{ + "slug": "honor-magic-3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-elz-an10", + "name": "Honor Magic 3 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB ELZ-AN10", + "brand": "huawei", + "soc": "snapdragon-888-plus", + "release_date": "2021-08-18", + "ram_gb": 12.0, + "battery_mah": 4600, + "weight_g": 213.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1344x2772", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2021/honor-magic-3-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-elz-an10.json b/data/smartphone/huawei/2021/honor-magic-3-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-elz-an10.json new file mode 100644 index 00000000000..afef82ae04f --- /dev/null +++ b/data/smartphone/huawei/2021/honor-magic-3-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-elz-an10.json @@ -0,0 +1,43 @@ +{ + "slug": "honor-magic-3-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-elz-an10", + "name": "Honor Magic 3 Pro 5G Premium Edition Dual SIM TD-LTE CN 512GB ELZ-AN10", + "brand": "huawei", + "soc": "snapdragon-888-plus", + "release_date": "2021-08-18", + "ram_gb": 12.0, + "battery_mah": 4600, + "weight_g": 213.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.76, + "resolution": "1344x2772", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2021/honor-magic-3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-elz-an10.json b/data/smartphone/huawei/2021/honor-magic-3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-elz-an10.json new file mode 100644 index 00000000000..8868be41274 --- /dev/null +++ b/data/smartphone/huawei/2021/honor-magic-3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-elz-an10.json @@ -0,0 +1,43 @@ +{ + "slug": "honor-magic-3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-elz-an10", + "name": "Honor Magic 3 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB ELZ-AN10", + "brand": "huawei", + "soc": "snapdragon-888-plus", + "release_date": "2021-08-18", + "ram_gb": 8.0, + "battery_mah": 4600, + "weight_g": 213.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1344x2772", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2021/honor-play-20-premium-edition-dual-sim-td-lte-cn-128gb-koz-al00-changwan-20.json b/data/smartphone/huawei/2021/honor-play-20-premium-edition-dual-sim-td-lte-cn-128gb-koz-al00-changwan-20.json new file mode 100644 index 00000000000..fbe5b79c6d0 --- /dev/null +++ b/data/smartphone/huawei/2021/honor-play-20-premium-edition-dual-sim-td-lte-cn-128gb-koz-al00-changwan-20.json @@ -0,0 +1,43 @@ +{ + "slug": "honor-play-20-premium-edition-dual-sim-td-lte-cn-128gb-koz-al00-changwan-20", + "name": "Honor Play 20 Premium Edition Dual SIM TD-LTE CN 128GB KOZ-AL00 / Changwan 20", + "brand": "huawei", + "soc": "tiger-t610", + "release_date": "2021-04-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1099, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2021/honor-play-20-standard-edition-dual-sim-td-lte-cn-128gb-koz-al00.json b/data/smartphone/huawei/2021/honor-play-20-standard-edition-dual-sim-td-lte-cn-128gb-koz-al00.json new file mode 100644 index 00000000000..ed498b97ea3 --- /dev/null +++ b/data/smartphone/huawei/2021/honor-play-20-standard-edition-dual-sim-td-lte-cn-128gb-koz-al00.json @@ -0,0 +1,43 @@ +{ + "slug": "honor-play-20-standard-edition-dual-sim-td-lte-cn-128gb-koz-al00", + "name": "Honor Play 20 Standard Edition Dual SIM TD-LTE CN 128GB KOZ-AL00", + "brand": "huawei", + "soc": "tiger-t610", + "release_date": "2021-04-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 899, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2021/honor-play-20-top-edition-dual-sim-td-lte-cn-128gb-koz-al00.json b/data/smartphone/huawei/2021/honor-play-20-top-edition-dual-sim-td-lte-cn-128gb-koz-al00.json new file mode 100644 index 00000000000..e780c9911ac --- /dev/null +++ b/data/smartphone/huawei/2021/honor-play-20-top-edition-dual-sim-td-lte-cn-128gb-koz-al00.json @@ -0,0 +1,43 @@ +{ + "slug": "honor-play-20-top-edition-dual-sim-td-lte-cn-128gb-koz-al00", + "name": "Honor Play 20 Top Edition Dual SIM TD-LTE CN 128GB KOZ-AL00", + "brand": "huawei", + "soc": "tiger-t610", + "release_date": "2021-05-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1399, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2021/honor-play-5t-pro-dual-sim-td-lte-cn-128gb-chl-al00.json b/data/smartphone/huawei/2021/honor-play-5t-pro-dual-sim-td-lte-cn-128gb-chl-al00.json new file mode 100644 index 00000000000..34d7ccbb117 --- /dev/null +++ b/data/smartphone/huawei/2021/honor-play-5t-pro-dual-sim-td-lte-cn-128gb-chl-al00.json @@ -0,0 +1,43 @@ +{ + "slug": "honor-play-5t-pro-dual-sim-td-lte-cn-128gb-chl-al00", + "name": "Honor Play 5T Pro Dual SIM TD-LTE CN 128GB CHL-AL00", + "brand": "huawei", + "soc": "helio-g80", + "release_date": "2021-08-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2021/honor-play-5t-youth-edition-dual-sim-td-lte-cn-128gb-nza-al00.json b/data/smartphone/huawei/2021/honor-play-5t-youth-edition-dual-sim-td-lte-cn-128gb-nza-al00.json new file mode 100644 index 00000000000..b40bd26aeb7 --- /dev/null +++ b/data/smartphone/huawei/2021/honor-play-5t-youth-edition-dual-sim-td-lte-cn-128gb-nza-al00.json @@ -0,0 +1,43 @@ +{ + "slug": "honor-play-5t-youth-edition-dual-sim-td-lte-cn-128gb-nza-al00", + "name": "Honor Play 5T Youth Edition Dual SIM TD-LTE CN 128GB NZA-AL00", + "brand": "huawei", + "soc": "helio-g35", + "release_date": "2021-04-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1299, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2021/honor-play5-5g-dual-sim-td-lte-cn-128gb-hjc-an90.json b/data/smartphone/huawei/2021/honor-play5-5g-dual-sim-td-lte-cn-128gb-hjc-an90.json new file mode 100644 index 00000000000..ba9ebb947dd --- /dev/null +++ b/data/smartphone/huawei/2021/honor-play5-5g-dual-sim-td-lte-cn-128gb-hjc-an90.json @@ -0,0 +1,43 @@ +{ + "slug": "honor-play5-5g-dual-sim-td-lte-cn-128gb-hjc-an90", + "name": "Honor Play5 5G Dual SIM TD-LTE CN 128GB HJC-AN90", + "brand": "huawei", + "soc": "dimensity-800", + "release_date": "2021-05-16", + "ram_gb": 8.0, + "battery_mah": 3800, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2099, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2021/honor-play5-5g-dual-sim-td-lte-cn-256gb-hjc-an90.json b/data/smartphone/huawei/2021/honor-play5-5g-dual-sim-td-lte-cn-256gb-hjc-an90.json new file mode 100644 index 00000000000..2fe80d1e070 --- /dev/null +++ b/data/smartphone/huawei/2021/honor-play5-5g-dual-sim-td-lte-cn-256gb-hjc-an90.json @@ -0,0 +1,43 @@ +{ + "slug": "honor-play5-5g-dual-sim-td-lte-cn-256gb-hjc-an90", + "name": "Honor Play5 5G Dual SIM TD-LTE CN 256GB HJC-AN90", + "brand": "huawei", + "soc": "dimensity-800", + "release_date": "2021-05-16", + "ram_gb": 8.0, + "battery_mah": 3800, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2299, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2021/honor-v40-5g-dual-sim-td-lte-cn-128gb-yok-an10.json b/data/smartphone/huawei/2021/honor-v40-5g-dual-sim-td-lte-cn-128gb-yok-an10.json new file mode 100644 index 00000000000..1d7c0ede14a --- /dev/null +++ b/data/smartphone/huawei/2021/honor-v40-5g-dual-sim-td-lte-cn-128gb-yok-an10.json @@ -0,0 +1,44 @@ +{ + "slug": "honor-v40-5g-dual-sim-td-lte-cn-128gb-yok-an10", + "name": "Honor V40 5G Dual SIM TD-LTE CN 128GB YOK-AN10", + "brand": "huawei", + "soc": "dimensity-1000-plus", + "release_date": "2021-01-22", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.72, + "resolution": "1236x2676", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 3599, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2021/honor-v40-5g-dual-sim-td-lte-cn-256gb-yok-an10.json b/data/smartphone/huawei/2021/honor-v40-5g-dual-sim-td-lte-cn-256gb-yok-an10.json new file mode 100644 index 00000000000..56e72a8f342 --- /dev/null +++ b/data/smartphone/huawei/2021/honor-v40-5g-dual-sim-td-lte-cn-256gb-yok-an10.json @@ -0,0 +1,44 @@ +{ + "slug": "honor-v40-5g-dual-sim-td-lte-cn-256gb-yok-an10", + "name": "Honor V40 5G Dual SIM TD-LTE CN 256GB YOK-AN10", + "brand": "huawei", + "soc": "dimensity-1000-plus", + "release_date": "2021-01-22", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.72, + "resolution": "1236x2676", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 3999, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/huawei/2021/honor-v40-lite-5g-dual-sim-td-lte-cn-128gb-ala-an70.json b/data/smartphone/huawei/2021/honor-v40-lite-5g-dual-sim-td-lte-cn-128gb-ala-an70.json new file mode 100644 index 00000000000..cebef106003 --- /dev/null +++ b/data/smartphone/huawei/2021/honor-v40-lite-5g-dual-sim-td-lte-cn-128gb-ala-an70.json @@ -0,0 +1,44 @@ +{ + "slug": "honor-v40-lite-5g-dual-sim-td-lte-cn-128gb-ala-an70", + "name": "Honor V40 Lite 5G Dual SIM TD-LTE CN 128GB ALA-AN70", + "brand": "huawei", + "soc": "dimensity-800", + "release_date": "2021-03-01", + "ram_gb": 8.0, + "battery_mah": 3800, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 392 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2021/honor-v40-lite-5g-dual-sim-td-lte-cn-256gb-ala-an70.json b/data/smartphone/huawei/2021/honor-v40-lite-5g-dual-sim-td-lte-cn-256gb-ala-an70.json new file mode 100644 index 00000000000..aa6f9835de8 --- /dev/null +++ b/data/smartphone/huawei/2021/honor-v40-lite-5g-dual-sim-td-lte-cn-256gb-ala-an70.json @@ -0,0 +1,44 @@ +{ + "slug": "honor-v40-lite-5g-dual-sim-td-lte-cn-256gb-ala-an70", + "name": "Honor V40 Lite 5G Dual SIM TD-LTE CN 256GB ALA-AN70", + "brand": "huawei", + "soc": "dimensity-800", + "release_date": "2021-03-01", + "ram_gb": 8.0, + "battery_mah": 3800, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 392 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 3299, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2021/honor-x20-5g-premium-edition-dual-sim-td-lte-cn-128gb-ntn-an20.json b/data/smartphone/huawei/2021/honor-x20-5g-premium-edition-dual-sim-td-lte-cn-128gb-ntn-an20.json new file mode 100644 index 00000000000..b750de28682 --- /dev/null +++ b/data/smartphone/huawei/2021/honor-x20-5g-premium-edition-dual-sim-td-lte-cn-128gb-ntn-an20.json @@ -0,0 +1,44 @@ +{ + "slug": "honor-x20-5g-premium-edition-dual-sim-td-lte-cn-128gb-ntn-an20", + "name": "Honor X20 5G Premium Edition Dual SIM TD-LTE CN 128GB NTN-AN20", + "brand": "huawei", + "soc": "dimensity-900", + "release_date": "2021-08-01", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "Color PLS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2199, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2021/honor-x20-5g-premium-edition-dual-sim-td-lte-cn-256gb-ntn-an20.json b/data/smartphone/huawei/2021/honor-x20-5g-premium-edition-dual-sim-td-lte-cn-256gb-ntn-an20.json new file mode 100644 index 00000000000..79a44492850 --- /dev/null +++ b/data/smartphone/huawei/2021/honor-x20-5g-premium-edition-dual-sim-td-lte-cn-256gb-ntn-an20.json @@ -0,0 +1,44 @@ +{ + "slug": "honor-x20-5g-premium-edition-dual-sim-td-lte-cn-256gb-ntn-an20", + "name": "Honor X20 5G Premium Edition Dual SIM TD-LTE CN 256GB NTN-AN20", + "brand": "huawei", + "soc": "dimensity-900", + "release_date": "2021-08-01", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "Color PLS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2021/honor-x20-5g-standard-edition-dual-sim-td-lte-cn-128gb-ntn-an20.json b/data/smartphone/huawei/2021/honor-x20-5g-standard-edition-dual-sim-td-lte-cn-128gb-ntn-an20.json new file mode 100644 index 00000000000..af3e83a29aa --- /dev/null +++ b/data/smartphone/huawei/2021/honor-x20-5g-standard-edition-dual-sim-td-lte-cn-128gb-ntn-an20.json @@ -0,0 +1,44 @@ +{ + "slug": "honor-x20-5g-standard-edition-dual-sim-td-lte-cn-128gb-ntn-an20", + "name": "Honor X20 5G Standard Edition Dual SIM TD-LTE CN 128GB NTN-AN20", + "brand": "huawei", + "soc": "dimensity-900", + "release_date": "2021-08-01", + "ram_gb": 6.0, + "battery_mah": 4300, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "Color PLS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1899, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2021/honor-x20-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-chl-an00.json b/data/smartphone/huawei/2021/honor-x20-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-chl-an00.json new file mode 100644 index 00000000000..2f59830412a --- /dev/null +++ b/data/smartphone/huawei/2021/honor-x20-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-chl-an00.json @@ -0,0 +1,44 @@ +{ + "slug": "honor-x20-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-chl-an00", + "name": "Honor X20 SE 5G Premium Edition Dual SIM TD-LTE CN 128GB CHL-AN00", + "brand": "huawei", + "soc": "dimensity-700", + "release_date": "2021-07-09", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2021/honor-x20-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-chl-an00.json b/data/smartphone/huawei/2021/honor-x20-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-chl-an00.json new file mode 100644 index 00000000000..1dc432489d2 --- /dev/null +++ b/data/smartphone/huawei/2021/honor-x20-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-chl-an00.json @@ -0,0 +1,44 @@ +{ + "slug": "honor-x20-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-chl-an00", + "name": "Honor X20 SE 5G Standard Edition Dual SIM TD-LTE CN 128GB CHL-AN00", + "brand": "huawei", + "soc": "dimensity-700", + "release_date": "2021-07-09", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1799, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2021/maimang-10-se-5g-dual-sim-td-lte-cn-128gb-tyh611m.json b/data/smartphone/huawei/2021/maimang-10-se-5g-dual-sim-td-lte-cn-128gb-tyh611m.json new file mode 100644 index 00000000000..a5a21ea01d4 --- /dev/null +++ b/data/smartphone/huawei/2021/maimang-10-se-5g-dual-sim-td-lte-cn-128gb-tyh611m.json @@ -0,0 +1,44 @@ +{ + "slug": "maimang-10-se-5g-dual-sim-td-lte-cn-128gb-tyh611m", + "name": "Maimang 10 SE 5G Dual SIM TD-LTE CN 128GB TYH611M", + "brand": "huawei", + "soc": "snapdragon-480", + "release_date": "2021-07-31", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1699, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2021/mate-x2-global-dual-sim-5g-td-lte-256gb-tet-an00.json b/data/smartphone/huawei/2021/mate-x2-global-dual-sim-5g-td-lte-256gb-tet-an00.json new file mode 100644 index 00000000000..b4f0c59339c --- /dev/null +++ b/data/smartphone/huawei/2021/mate-x2-global-dual-sim-5g-td-lte-256gb-tet-an00.json @@ -0,0 +1,43 @@ +{ + "slug": "mate-x2-global-dual-sim-5g-td-lte-256gb-tet-an00", + "name": "Mate X2 Global Dual SIM 5G TD-LTE 256GB TET-AN00", + "brand": "huawei", + "soc": "kirin-9000", + "release_date": "2021-02-26", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 295.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 7.99, + "resolution": "2480x2200", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia , China , Finland , France , Germany , HK , Italy , Malaysia , NZ , Poland , Russia , Singapore , Spain , Thailand , UAE , UK , Vietnam", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2021/mate-x2-global-dual-sim-5g-td-lte-512gb-tet-an00.json b/data/smartphone/huawei/2021/mate-x2-global-dual-sim-5g-td-lte-512gb-tet-an00.json new file mode 100644 index 00000000000..cfae950916b --- /dev/null +++ b/data/smartphone/huawei/2021/mate-x2-global-dual-sim-5g-td-lte-512gb-tet-an00.json @@ -0,0 +1,43 @@ +{ + "slug": "mate-x2-global-dual-sim-5g-td-lte-512gb-tet-an00", + "name": "Mate X2 Global Dual SIM 5G TD-LTE 512GB TET-AN00", + "brand": "huawei", + "soc": "kirin-9000", + "release_date": "2021-02-27", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 295.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 7.99, + "resolution": "2480x2200", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia , China , Finland , France , Germany , HK , Italy , Malaysia , NZ , Poland , Russia , Singapore , Spain , Thailand , UAE , UK , Vietnam", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/huawei/2021/mate-x2.json b/data/smartphone/huawei/2021/mate-x2.json new file mode 100644 index 00000000000..8b70c1c94fc --- /dev/null +++ b/data/smartphone/huawei/2021/mate-x2.json @@ -0,0 +1,29 @@ +{ + "slug": "mate-x2", + "name": "Mate X2", + "brand": "huawei", + "soc": "kirin-9000", + "release_date": "2021-01-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 295.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "display": { + "size_inch": 8.0 + }, + "cameras": [ + { + "type": "main", + "mp": 50.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "msrp_usd": 2699 +} diff --git a/data/smartphone/huawei/2021/nova-8-5g-dual-sim-td-lte-cn-128gb-ang-an00.json b/data/smartphone/huawei/2021/nova-8-5g-dual-sim-td-lte-cn-128gb-ang-an00.json new file mode 100644 index 00000000000..f053f4fa2b8 --- /dev/null +++ b/data/smartphone/huawei/2021/nova-8-5g-dual-sim-td-lte-cn-128gb-ang-an00.json @@ -0,0 +1,44 @@ +{ + "slug": "nova-8-5g-dual-sim-td-lte-cn-128gb-ang-an00", + "name": "Nova 8 5G Dual SIM TD-LTE CN 128GB ANG-AN00", + "brand": "huawei", + "soc": "kirin-985", + "release_date": "2021-01-14", + "ram_gb": 8.0, + "battery_mah": 3800, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 392 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 3299, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2021/nova-8-5g-dual-sim-td-lte-cn-256gb-ang-an00.json b/data/smartphone/huawei/2021/nova-8-5g-dual-sim-td-lte-cn-256gb-ang-an00.json new file mode 100644 index 00000000000..be679de97d4 --- /dev/null +++ b/data/smartphone/huawei/2021/nova-8-5g-dual-sim-td-lte-cn-256gb-ang-an00.json @@ -0,0 +1,44 @@ +{ + "slug": "nova-8-5g-dual-sim-td-lte-cn-256gb-ang-an00", + "name": "Nova 8 5G Dual SIM TD-LTE CN 256GB ANG-AN00", + "brand": "huawei", + "soc": "kirin-985", + "release_date": "2021-01-14", + "ram_gb": 8.0, + "battery_mah": 3800, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 392 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 3699, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2021/nova-8-pro-5g-dual-sim-td-lte-cn-128gb-brq-an00.json b/data/smartphone/huawei/2021/nova-8-pro-5g-dual-sim-td-lte-cn-128gb-brq-an00.json new file mode 100644 index 00000000000..cf94b0b1331 --- /dev/null +++ b/data/smartphone/huawei/2021/nova-8-pro-5g-dual-sim-td-lte-cn-128gb-brq-an00.json @@ -0,0 +1,44 @@ +{ + "slug": "nova-8-pro-5g-dual-sim-td-lte-cn-128gb-brq-an00", + "name": "Nova 8 Pro 5G Dual SIM TD-LTE CN 128GB BRQ-AN00", + "brand": "huawei", + "soc": "kirin-985", + "release_date": "2021-01-14", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.72, + "resolution": "1236x2676", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2021/nova-8-pro-5g-dual-sim-td-lte-cn-256gb-brq-an00.json b/data/smartphone/huawei/2021/nova-8-pro-5g-dual-sim-td-lte-cn-256gb-brq-an00.json new file mode 100644 index 00000000000..cb52b69b478 --- /dev/null +++ b/data/smartphone/huawei/2021/nova-8-pro-5g-dual-sim-td-lte-cn-256gb-brq-an00.json @@ -0,0 +1,44 @@ +{ + "slug": "nova-8-pro-5g-dual-sim-td-lte-cn-256gb-brq-an00", + "name": "Nova 8 Pro 5G Dual SIM TD-LTE CN 256GB BRQ-AN00", + "brand": "huawei", + "soc": "kirin-985", + "release_date": "2021-01-14", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.72, + "resolution": "1236x2676", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 4399, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2021/nova-8-se-youth-edition-dual-sim-td-lte-cn-128gb-chl-al60.json b/data/smartphone/huawei/2021/nova-8-se-youth-edition-dual-sim-td-lte-cn-128gb-chl-al60.json new file mode 100644 index 00000000000..7f5ac4f6f67 --- /dev/null +++ b/data/smartphone/huawei/2021/nova-8-se-youth-edition-dual-sim-td-lte-cn-128gb-chl-al60.json @@ -0,0 +1,43 @@ +{ + "slug": "nova-8-se-youth-edition-dual-sim-td-lte-cn-128gb-chl-al60", + "name": "Nova 8 SE Youth Edition Dual SIM TD-LTE CN 128GB CHL-AL60", + "brand": "huawei", + "soc": "kirin-710a", + "release_date": "2021-08-18", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1899, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2021/nova-8i-dual-sim-td-lte-apac-128gb-nen-l22f.json b/data/smartphone/huawei/2021/nova-8i-dual-sim-td-lte-apac-128gb-nen-l22f.json new file mode 100644 index 00000000000..f63cc0044d1 --- /dev/null +++ b/data/smartphone/huawei/2021/nova-8i-dual-sim-td-lte-apac-128gb-nen-l22f.json @@ -0,0 +1,42 @@ +{ + "slug": "nova-8i-dual-sim-td-lte-apac-128gb-nen-l22f", + "name": "Nova 8i Dual SIM TD-LTE APAC 128GB NEN-L22F", + "brand": "huawei", + "soc": "snapdragon-662", + "release_date": "2021-07-23", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2376", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Malaysia , Philippines , Thailand", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/huawei/2021/nova-y60-2021-global-dual-sim-td-lte-64gb-wkg-lx9a-wkg-l29a.json b/data/smartphone/huawei/2021/nova-y60-2021-global-dual-sim-td-lte-64gb-wkg-lx9a-wkg-l29a.json new file mode 100644 index 00000000000..4d86a8abd41 --- /dev/null +++ b/data/smartphone/huawei/2021/nova-y60-2021-global-dual-sim-td-lte-64gb-wkg-lx9a-wkg-l29a.json @@ -0,0 +1,43 @@ +{ + "slug": "nova-y60-2021-global-dual-sim-td-lte-64gb-wkg-lx9a-wkg-l29a", + "name": "nova Y60 2021 Global Dual SIM TD-LTE 64GB WKG-LX9A / WKG-L29A", + "brand": "huawei", + "soc": "helio-p35", + "release_date": "2021-09-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 179, + "market_countries": "Argentina , Chile , Kenya , South Africa", + "market_regions": "Africa , South America" +} diff --git a/data/smartphone/huawei/2021/nova-y60-2021-global-td-lte-64gb-wkg-l09a.json b/data/smartphone/huawei/2021/nova-y60-2021-global-td-lte-64gb-wkg-l09a.json new file mode 100644 index 00000000000..8055e871a1c --- /dev/null +++ b/data/smartphone/huawei/2021/nova-y60-2021-global-td-lte-64gb-wkg-l09a.json @@ -0,0 +1,43 @@ +{ + "slug": "nova-y60-2021-global-td-lte-64gb-wkg-l09a", + "name": "nova Y60 2021 Global TD-LTE 64GB WKG-L09A", + "brand": "huawei", + "soc": "helio-p35", + "release_date": "2021-09-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 179, + "market_countries": "Argentina , Chile , South Africa", + "market_regions": "Africa , South America" +} diff --git a/data/smartphone/huawei/2021/p50-4g-global-dual-sim-td-lte-128gb-abr-al00.json b/data/smartphone/huawei/2021/p50-4g-global-dual-sim-td-lte-128gb-abr-al00.json new file mode 100644 index 00000000000..e20987b3f48 --- /dev/null +++ b/data/smartphone/huawei/2021/p50-4g-global-dual-sim-td-lte-128gb-abr-al00.json @@ -0,0 +1,42 @@ +{ + "slug": "p50-4g-global-dual-sim-td-lte-128gb-abr-al00", + "name": "P50 4G Global Dual SIM TD-LTE 128GB ABR-AL00", + "brand": "huawei", + "soc": "snapdragon-888", + "release_date": "2021-08-01", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 181.0, + "os": "Huawei HarmonyOS 2.0", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1224x2700", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Australia , Austria , Belarus , Belgium , Bulgaria , Chile , China , Colombia , Croatia , Cyprus , Czech , Denmark , Egypt , Estonia , Finland , France , Germany , Greece , Guatemala , HK , Hungary , Indonesia , Ireland , Italy , Japan , Jordan , Kazakhstan , Kuwait , Latvia , Lebanon , Lithuania , Malaysia , Mexico , Netherlands , Norway , Panama , Peru , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Singapore , Slovenia , South Africa , Spain , Switzerland , Sweden , Taiwan , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , South America , Western Europe" +} diff --git a/data/smartphone/huawei/2021/p50-4g-global-dual-sim-td-lte-256gb-abr-al00.json b/data/smartphone/huawei/2021/p50-4g-global-dual-sim-td-lte-256gb-abr-al00.json new file mode 100644 index 00000000000..da167f2559e --- /dev/null +++ b/data/smartphone/huawei/2021/p50-4g-global-dual-sim-td-lte-256gb-abr-al00.json @@ -0,0 +1,42 @@ +{ + "slug": "p50-4g-global-dual-sim-td-lte-256gb-abr-al00", + "name": "P50 4G Global Dual SIM TD-LTE 256GB ABR-AL00", + "brand": "huawei", + "soc": "snapdragon-888", + "release_date": "2021-08-01", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 181.0, + "os": "Huawei HarmonyOS 2.0", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1224x2700", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , China , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Indonesia , Ireland , Italy , Japan , Jordan , Kuwait , Latvia , Lebanon , Lithuania , Malaysia , Netherlands , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , Spain , Sweden , Switzerland , Taiwan , Thailand , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2021/p50-pocket-4g-premium-art-edition-dual-sim-td-lte-cn-512gb-bal-al00.json b/data/smartphone/huawei/2021/p50-pocket-4g-premium-art-edition-dual-sim-td-lte-cn-512gb-bal-al00.json new file mode 100644 index 00000000000..a8b38daadd5 --- /dev/null +++ b/data/smartphone/huawei/2021/p50-pocket-4g-premium-art-edition-dual-sim-td-lte-cn-512gb-bal-al00.json @@ -0,0 +1,42 @@ +{ + "slug": "p50-pocket-4g-premium-art-edition-dual-sim-td-lte-cn-512gb-bal-al00", + "name": "P50 Pocket 4G Premium Art Edition Dual SIM TD-LTE CN 512GB BAL-AL00", + "brand": "huawei", + "soc": "snapdragon-888", + "release_date": "2021-12-24", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 190.0, + "os": "Huawei HarmonyOS 2.0", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.9, + "resolution": "1188x2790", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 10.7 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2021/p50-pocket-4g-standard-edition-dual-sim-td-lte-cn-256gb-bal-al00.json b/data/smartphone/huawei/2021/p50-pocket-4g-standard-edition-dual-sim-td-lte-cn-256gb-bal-al00.json new file mode 100644 index 00000000000..0d229e5f71d --- /dev/null +++ b/data/smartphone/huawei/2021/p50-pocket-4g-standard-edition-dual-sim-td-lte-cn-256gb-bal-al00.json @@ -0,0 +1,42 @@ +{ + "slug": "p50-pocket-4g-standard-edition-dual-sim-td-lte-cn-256gb-bal-al00", + "name": "P50 Pocket 4G Standard Edition Dual SIM TD-LTE CN 256GB BAL-AL00", + "brand": "huawei", + "soc": "snapdragon-888", + "release_date": "2021-12-24", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 190.0, + "os": "Huawei HarmonyOS 2.0", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.9, + "resolution": "1188x2790", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 10.7 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2021/p50-pocket-4g-standard-edition-global-dual-sim-td-lte-256gb-bal-l49.json b/data/smartphone/huawei/2021/p50-pocket-4g-standard-edition-global-dual-sim-td-lte-256gb-bal-l49.json new file mode 100644 index 00000000000..7cb8c03e586 --- /dev/null +++ b/data/smartphone/huawei/2021/p50-pocket-4g-standard-edition-global-dual-sim-td-lte-256gb-bal-l49.json @@ -0,0 +1,42 @@ +{ + "slug": "p50-pocket-4g-standard-edition-global-dual-sim-td-lte-256gb-bal-l49", + "name": "P50 Pocket 4G Standard Edition Global Dual SIM TD-LTE 256GB BAL-L49", + "brand": "huawei", + "soc": "snapdragon-888", + "release_date": "2021-12-24", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 190.0, + "os": "Huawei HarmonyOS 2.0", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.9, + "resolution": "1188x2790", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 10.7 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , China , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Indonesia , Ireland , Italy , Japan , Jordan , Kuwait , Latvia , Lebanon , Lithuania , Malaysia , Netherlands , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Singapore , Slovenia , Spain , Sweden , Switzerland , Taiwan , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2021/p50-pro-4g-dual-sim-td-lte-cn-256gb-jad-al50.json b/data/smartphone/huawei/2021/p50-pro-4g-dual-sim-td-lte-cn-256gb-jad-al50.json new file mode 100644 index 00000000000..2d7c54b07cd --- /dev/null +++ b/data/smartphone/huawei/2021/p50-pro-4g-dual-sim-td-lte-cn-256gb-jad-al50.json @@ -0,0 +1,42 @@ +{ + "slug": "p50-pro-4g-dual-sim-td-lte-cn-256gb-jad-al50", + "name": "P50 Pro 4G Dual SIM TD-LTE CN 256GB JAD-AL50", + "brand": "huawei", + "soc": "kirin-9000", + "release_date": "2021-08-18", + "ram_gb": 8.0, + "battery_mah": 4360, + "weight_g": 195.0, + "os": "Huawei HarmonyOS 2.0", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.59, + "resolution": "1228x2700", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2021/p50-pro-4g-dual-sim-td-lte-cn-512gb-jad-al50.json b/data/smartphone/huawei/2021/p50-pro-4g-dual-sim-td-lte-cn-512gb-jad-al50.json new file mode 100644 index 00000000000..a0f21d698d4 --- /dev/null +++ b/data/smartphone/huawei/2021/p50-pro-4g-dual-sim-td-lte-cn-512gb-jad-al50.json @@ -0,0 +1,42 @@ +{ + "slug": "p50-pro-4g-dual-sim-td-lte-cn-512gb-jad-al50", + "name": "P50 Pro 4G Dual SIM TD-LTE CN 512GB JAD-AL50", + "brand": "huawei", + "soc": "kirin-9000", + "release_date": "2021-08-18", + "ram_gb": 8.0, + "battery_mah": 4360, + "weight_g": 195.0, + "os": "Huawei HarmonyOS 2.0", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.59, + "resolution": "1228x2700", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/huawei/2021/p50-pro-4g-global-dual-sim-td-lte-256gb-jad-lx9-jad-l29.json b/data/smartphone/huawei/2021/p50-pro-4g-global-dual-sim-td-lte-256gb-jad-lx9-jad-l29.json new file mode 100644 index 00000000000..b43f4986143 --- /dev/null +++ b/data/smartphone/huawei/2021/p50-pro-4g-global-dual-sim-td-lte-256gb-jad-lx9-jad-l29.json @@ -0,0 +1,42 @@ +{ + "slug": "p50-pro-4g-global-dual-sim-td-lte-256gb-jad-lx9-jad-l29", + "name": "P50 Pro 4G Global Dual SIM TD-LTE 256GB JAD-LX9 / JAD-L29", + "brand": "huawei", + "soc": "snapdragon-888", + "release_date": "2021-08-01", + "ram_gb": 8.0, + "battery_mah": 4360, + "weight_g": 195.0, + "os": "Huawei HarmonyOS 2.0", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.59, + "resolution": "1228x2700", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Indonesia , Ireland , Italy , Japan , Jordan , Kuwait , Latvia , Lebanon , Lithuania , Malaysia , Netherlands , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , Spain , Sweden , Switzerland , Taiwan , Thailand , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/huawei/2021/p50-pro-4g-global-td-lte-256gb-jad-lx9-jad-l09.json b/data/smartphone/huawei/2021/p50-pro-4g-global-td-lte-256gb-jad-lx9-jad-l09.json new file mode 100644 index 00000000000..ce76ea375d3 --- /dev/null +++ b/data/smartphone/huawei/2021/p50-pro-4g-global-td-lte-256gb-jad-lx9-jad-l09.json @@ -0,0 +1,42 @@ +{ + "slug": "p50-pro-4g-global-td-lte-256gb-jad-lx9-jad-l09", + "name": "P50 Pro 4G Global TD-LTE 256GB JAD-LX9 / JAD-L09", + "brand": "huawei", + "soc": "snapdragon-888", + "release_date": "2021-08-01", + "ram_gb": 8.0, + "battery_mah": 4360, + "weight_g": 195.0, + "os": "Huawei HarmonyOS 2.0", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.59, + "resolution": "1228x2700", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Australia , Chile , NZ , Portugal , South Africa , Turkey , UAE , UK", + "market_regions": "Australia , Europe , Middle East , South America , Western Europe" +} diff --git a/data/smartphone/huawei/2022/p50-pocket-4g-premium-edition-global-dual-sim-td-lte-512gb-bal-l49.json b/data/smartphone/huawei/2022/p50-pocket-4g-premium-edition-global-dual-sim-td-lte-512gb-bal-l49.json new file mode 100644 index 00000000000..ff1416b93c1 --- /dev/null +++ b/data/smartphone/huawei/2022/p50-pocket-4g-premium-edition-global-dual-sim-td-lte-512gb-bal-l49.json @@ -0,0 +1,43 @@ +{ + "slug": "p50-pocket-4g-premium-edition-global-dual-sim-td-lte-512gb-bal-l49", + "name": "P50 Pocket 4G Premium Edition Global Dual SIM TD-LTE 512GB BAL-L49", + "brand": "huawei", + "soc": "snapdragon-888", + "release_date": "2022-01-26", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 190.0, + "os": "Huawei HarmonyOS 2.0", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.9, + "resolution": "1188x2790", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 10.7 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1299, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , China , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Ireland , Italy , Japan , Jordan , Kuwait , Latvia , Lebanon , Lithuania , Netherlands , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Singapore , Slovenia , Spain , Switzerland , Sweden , Taiwan , Turkey , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/infinix/2018/hot-s3-dual-sim-td-lte-32gb-x573.json b/data/smartphone/infinix/2018/hot-s3-dual-sim-td-lte-32gb-x573.json new file mode 100644 index 00000000000..60ab03af1c8 --- /dev/null +++ b/data/smartphone/infinix/2018/hot-s3-dual-sim-td-lte-32gb-x573.json @@ -0,0 +1,41 @@ +{ + "slug": "hot-s3-dual-sim-td-lte-32gb-x573", + "name": "HOT S3 Dual SIM TD-LTE 32GB X573", + "brand": "infinix", + "soc": "snapdragon-430", + "release_date": "2018-02-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 19.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Algeria , Bangladesh , Colombia , Egypt , India , Indonesia , Jordan , Kenya , Malaysia , Nigeria , Pakistan , Philippines , Tanzania , Thailand , Turkey , UAE , Uganda", + "market_regions": "Africa , Asia , Middle East , Oceania , South America , Worldwide" +} diff --git a/data/smartphone/infinix/2018/note-5-dual-sim-td-lte.json b/data/smartphone/infinix/2018/note-5-dual-sim-td-lte.json new file mode 100644 index 00000000000..3597b754776 --- /dev/null +++ b/data/smartphone/infinix/2018/note-5-dual-sim-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "note-5-dual-sim-td-lte", + "name": "NOTE 5 Dual SIM TD-LTE", + "brand": "infinix", + "soc": "helio-p23", + "release_date": "2018-07-01", + "ram_gb": 4.0, + "battery_mah": 4500, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Egypt , India , Indonesia , Kenya , Malaysia , Nigeria , Pakistan , Vietnam", + "market_regions": "Africa , Asia , Middle East , Southeast Asia" +} diff --git a/data/smartphone/infinix/2018/note-5-stylus-dual-sim-td-lte.json b/data/smartphone/infinix/2018/note-5-stylus-dual-sim-td-lte.json new file mode 100644 index 00000000000..fb47d7324c9 --- /dev/null +++ b/data/smartphone/infinix/2018/note-5-stylus-dual-sim-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "note-5-stylus-dual-sim-td-lte", + "name": "NOTE 5 Stylus Dual SIM TD-LTE", + "brand": "infinix", + "soc": "helio-p23", + "release_date": "2018-08-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , Egypt , India , Indonesia , Kenya , Malaysia , Nigeria , Pakistan , Philippines , Saudi Arabia , South Africa , UAE , Uganda , Vietnam", + "market_regions": "Africa , Asia , Middle East , Oceania , Southeast Asia" +} diff --git a/data/smartphone/infinix/2019/hot-7-pro-dual-sim-td-lte-apac-32gb-x625b.json b/data/smartphone/infinix/2019/hot-7-pro-dual-sim-td-lte-apac-32gb-x625b.json new file mode 100644 index 00000000000..80e6c39a90d --- /dev/null +++ b/data/smartphone/infinix/2019/hot-7-pro-dual-sim-td-lte-apac-32gb-x625b.json @@ -0,0 +1,42 @@ +{ + "slug": "hot-7-pro-dual-sim-td-lte-apac-32gb-x625b", + "name": "HOT 7 Pro Dual SIM TD-LTE APAC 32GB X625B", + "brand": "infinix", + "soc": "helio-a25", + "release_date": "2019-05-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.19, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 272 + }, + "cameras": [ + { + "type": "main", + "mp": 13.3 + }, + { + "type": "selfie", + "mp": 13.3 + } + ], + "charging_wired_w": 6, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , India , Indonesia , Malaysia , Philippines , Thailand , Vietnam", + "market_regions": "Asia , Middle East , Oceania , Southeast Asia" +} diff --git a/data/smartphone/infinix/2019/hot-7-pro-dual-sim-td-lte-apac-64gb-x625d.json b/data/smartphone/infinix/2019/hot-7-pro-dual-sim-td-lte-apac-64gb-x625d.json new file mode 100644 index 00000000000..9deb31e5a4d --- /dev/null +++ b/data/smartphone/infinix/2019/hot-7-pro-dual-sim-td-lte-apac-64gb-x625d.json @@ -0,0 +1,42 @@ +{ + "slug": "hot-7-pro-dual-sim-td-lte-apac-64gb-x625d", + "name": "HOT 7 Pro Dual SIM TD-LTE APAC 64GB X625D", + "brand": "infinix", + "soc": "helio-p22", + "release_date": "2019-05-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.19, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 272 + }, + "cameras": [ + { + "type": "main", + "mp": 13.3 + }, + { + "type": "selfie", + "mp": 13.3 + } + ], + "charging_wired_w": 6, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , India , Indonesia , Malaysia , Philippines , Thailand , Vietnam", + "market_regions": "Asia , Middle East , Oceania , Southeast Asia" +} diff --git a/data/smartphone/infinix/2019/note-6-dual-sim-td-lte-x610.json b/data/smartphone/infinix/2019/note-6-dual-sim-td-lte-x610.json new file mode 100644 index 00000000000..dfd8e265446 --- /dev/null +++ b/data/smartphone/infinix/2019/note-6-dual-sim-td-lte-x610.json @@ -0,0 +1,41 @@ +{ + "slug": "note-6-dual-sim-td-lte-x610", + "name": "NOTE 6 Dual SIM TD-LTE X610", + "brand": "infinix", + "soc": "helio-p35", + "release_date": "2019-06-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.01, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Egypt , India , Indonesia , Kenya , Malaysia , Nigeria , Pakistan , Vietnam", + "market_regions": "Africa , Asia , Middle East , Southeast Asia" +} diff --git a/data/smartphone/infinix/2019/s5-dual-sim-td-lte-apac-x652.json b/data/smartphone/infinix/2019/s5-dual-sim-td-lte-apac-x652.json new file mode 100644 index 00000000000..b0e332cdcf4 --- /dev/null +++ b/data/smartphone/infinix/2019/s5-dual-sim-td-lte-apac-x652.json @@ -0,0 +1,42 @@ +{ + "slug": "s5-dual-sim-td-lte-apac-x652", + "name": "S5 Dual SIM TD-LTE APAC X652", + "brand": "infinix", + "soc": "helio-p22", + "release_date": "2019-10-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , India , Indonesia , Malaysia , Philippines , Thailand , Vietnam", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/infinix/2019/s5-dual-sim-td-lte-emea-x652.json b/data/smartphone/infinix/2019/s5-dual-sim-td-lte-emea-x652.json new file mode 100644 index 00000000000..a73c8cf731b --- /dev/null +++ b/data/smartphone/infinix/2019/s5-dual-sim-td-lte-emea-x652.json @@ -0,0 +1,42 @@ +{ + "slug": "s5-dual-sim-td-lte-emea-x652", + "name": "S5 Dual SIM TD-LTE EMEA X652", + "brand": "infinix", + "soc": "helio-p22", + "release_date": "2019-10-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "market_countries": "Algeria , Egypt , Kenya , Nigeria , Pakistan , Turkey , UAE", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East" +} diff --git a/data/smartphone/infinix/2019/smart-3-dual-sim-lte-emea-x5516b.json b/data/smartphone/infinix/2019/smart-3-dual-sim-lte-emea-x5516b.json new file mode 100644 index 00000000000..dbd41478887 --- /dev/null +++ b/data/smartphone/infinix/2019/smart-3-dual-sim-lte-emea-x5516b.json @@ -0,0 +1,42 @@ +{ + "slug": "smart-3-dual-sim-lte-emea-x5516b", + "name": "Smart 3 Dual SIM LTE EMEA X5516B", + "brand": "infinix", + "soc": "helio-a22", + "release_date": "2019-05-01", + "ram_gb": 1.0, + "battery_mah": 3500, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 293 + }, + "cameras": [ + { + "type": "main", + "mp": 13.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "charging_wired_w": 6, + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Egypt , Kenya , Nigeria , Pakistan , Saudi Arabia , UAE , Uganda", + "market_regions": "Asia , Middle East" +} diff --git a/data/smartphone/infinix/2019/smart-3-dual-sim-td-lte-apac-x5516.json b/data/smartphone/infinix/2019/smart-3-dual-sim-td-lte-apac-x5516.json new file mode 100644 index 00000000000..5649d54d3a3 --- /dev/null +++ b/data/smartphone/infinix/2019/smart-3-dual-sim-td-lte-apac-x5516.json @@ -0,0 +1,42 @@ +{ + "slug": "smart-3-dual-sim-td-lte-apac-x5516", + "name": "Smart 3 Dual SIM TD-LTE APAC X5516", + "brand": "infinix", + "soc": "helio-a22", + "release_date": "2019-05-01", + "ram_gb": 2.0, + "battery_mah": 3500, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 293 + }, + "cameras": [ + { + "type": "main", + "mp": 13.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "charging_wired_w": 6, + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Bangladesh , India , Indonesia , Malaysia , Philippines , Thailand , Vietnam", + "market_regions": "Asia , Middle East , Oceania , Southeast Asia" +} diff --git a/data/smartphone/infinix/2019/smart-3-dual-sim-td-lte-apac-x5516b.json b/data/smartphone/infinix/2019/smart-3-dual-sim-td-lte-apac-x5516b.json new file mode 100644 index 00000000000..10ce4261472 --- /dev/null +++ b/data/smartphone/infinix/2019/smart-3-dual-sim-td-lte-apac-x5516b.json @@ -0,0 +1,42 @@ +{ + "slug": "smart-3-dual-sim-td-lte-apac-x5516b", + "name": "Smart 3 Dual SIM TD-LTE APAC X5516B", + "brand": "infinix", + "soc": "helio-a22", + "release_date": "2019-05-01", + "ram_gb": 1.0, + "battery_mah": 3500, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 293 + }, + "cameras": [ + { + "type": "main", + "mp": 13.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "charging_wired_w": 6, + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Bangladesh , India , Indonesia , Malaysia , Philippines , Thailand , Vietnam", + "market_regions": "Asia , Middle East , Oceania , Southeast Asia" +} diff --git a/data/smartphone/infinix/2019/smart-3-global-dual-sim-lte-x5516.json b/data/smartphone/infinix/2019/smart-3-global-dual-sim-lte-x5516.json new file mode 100644 index 00000000000..fe0695cb025 --- /dev/null +++ b/data/smartphone/infinix/2019/smart-3-global-dual-sim-lte-x5516.json @@ -0,0 +1,42 @@ +{ + "slug": "smart-3-global-dual-sim-lte-x5516", + "name": "Smart 3 Global Dual SIM LTE X5516", + "brand": "infinix", + "soc": "helio-a22", + "release_date": "2019-05-01", + "ram_gb": 2.0, + "battery_mah": 3500, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 293 + }, + "cameras": [ + { + "type": "main", + "mp": 13.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "charging_wired_w": 6, + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Bangladesh , Colombia , Egypt , India , Indonesia , Kenya , Malaysia , Mexico , Nigeria , Pakistan , Philippines , Saudi Arabia , Thailand , UAE , Uganda , Vietnam", + "market_regions": "Asia , Middle East , North America , Oceania , South America , Southeast Asia" +} diff --git a/data/smartphone/infinix/2019/smart-3-plus-dual-sim-lte-emea-16gb.json b/data/smartphone/infinix/2019/smart-3-plus-dual-sim-lte-emea-16gb.json new file mode 100644 index 00000000000..3f5f67bbf23 --- /dev/null +++ b/data/smartphone/infinix/2019/smart-3-plus-dual-sim-lte-emea-16gb.json @@ -0,0 +1,42 @@ +{ + "slug": "smart-3-plus-dual-sim-lte-emea-16gb", + "name": "Smart 3 Plus Dual SIM LTE EMEA 16GB", + "brand": "infinix", + "soc": "helio-a22", + "release_date": "2019-06-01", + "ram_gb": 2.0, + "battery_mah": 3500, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.21, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "charging_wired_w": 6, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Egypt , Kenya , Nigeria , Pakistan , Saudi Arabia , UAE , Uganda", + "market_regions": "Africa , Middle East" +} diff --git a/data/smartphone/infinix/2019/smart-3-plus-dual-sim-td-lte-apac-32gb-x627.json b/data/smartphone/infinix/2019/smart-3-plus-dual-sim-td-lte-apac-32gb-x627.json new file mode 100644 index 00000000000..ba9d788f27d --- /dev/null +++ b/data/smartphone/infinix/2019/smart-3-plus-dual-sim-td-lte-apac-32gb-x627.json @@ -0,0 +1,42 @@ +{ + "slug": "smart-3-plus-dual-sim-td-lte-apac-32gb-x627", + "name": "Smart 3 Plus Dual SIM TD-LTE APAC 32GB X627", + "brand": "infinix", + "soc": "helio-a22", + "release_date": "2019-06-01", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.21, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "charging_wired_w": 6, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Bangladesh , India , Indonesia , Malaysia , Philippines , Thailand , Vietnam", + "market_regions": "Asia , Middle East , Oceania , Southeast Asia" +} diff --git a/data/smartphone/infinix/2019/smart-3-plus-dual-sim-td-lte-apac-32gb-x627v.json b/data/smartphone/infinix/2019/smart-3-plus-dual-sim-td-lte-apac-32gb-x627v.json new file mode 100644 index 00000000000..66af3b196f5 --- /dev/null +++ b/data/smartphone/infinix/2019/smart-3-plus-dual-sim-td-lte-apac-32gb-x627v.json @@ -0,0 +1,42 @@ +{ + "slug": "smart-3-plus-dual-sim-td-lte-apac-32gb-x627v", + "name": "Smart 3 Plus Dual SIM TD-LTE APAC 32GB X627V", + "brand": "infinix", + "soc": "helio-a22", + "release_date": "2019-06-01", + "ram_gb": 2.0, + "battery_mah": 3500, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.21, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "charging_wired_w": 6, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Bangladesh , India , Indonesia , Malaysia , Philippines , Thailand , Vietnam", + "market_regions": "Asia , Middle East , Oceania , Southeast Asia" +} diff --git a/data/smartphone/infinix/2019/smart-3-plus-global-dual-sim-td-lte-32gb-x627.json b/data/smartphone/infinix/2019/smart-3-plus-global-dual-sim-td-lte-32gb-x627.json new file mode 100644 index 00000000000..106f17b2b3d --- /dev/null +++ b/data/smartphone/infinix/2019/smart-3-plus-global-dual-sim-td-lte-32gb-x627.json @@ -0,0 +1,42 @@ +{ + "slug": "smart-3-plus-global-dual-sim-td-lte-32gb-x627", + "name": "Smart 3 Plus Global Dual SIM TD-LTE 32GB X627", + "brand": "infinix", + "soc": "helio-a22", + "release_date": "2019-07-01", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.21, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "charging_wired_w": 6, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Bangladesh , Colombia , Egypt , India , Indonesia , Kenya , Malaysia , Mexico , Nigeria , Philippines , Thailand , UAE , Uganda , Vietnam", + "market_regions": "Africa , Asia , Middle East , North America , Oceania , South America , Southeast Asia" +} diff --git a/data/smartphone/infinix/2019/zero-6-dual-sim-td-lte-64gb-x620b.json b/data/smartphone/infinix/2019/zero-6-dual-sim-td-lte-64gb-x620b.json new file mode 100644 index 00000000000..1f6acf73d7f --- /dev/null +++ b/data/smartphone/infinix/2019/zero-6-dual-sim-td-lte-64gb-x620b.json @@ -0,0 +1,41 @@ +{ + "slug": "zero-6-dual-sim-td-lte-64gb-x620b", + "name": "ZERO 6 Dual SIM TD-LTE 64GB X620B", + "brand": "infinix", + "soc": "snapdragon-636", + "release_date": "2019-03-01", + "ram_gb": 6.0, + "battery_mah": 3650, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Egypt , India , Indonesia , Kenya , Malaysia , Nigeria , Pakistan , Vietnam", + "market_regions": "Africa , Asia , Middle East , South America , Worldwide" +} diff --git a/data/smartphone/infinix/2019/zero-6-pro-dual-sim-td-lte-128gb-x620.json b/data/smartphone/infinix/2019/zero-6-pro-dual-sim-td-lte-128gb-x620.json new file mode 100644 index 00000000000..168a915c307 --- /dev/null +++ b/data/smartphone/infinix/2019/zero-6-pro-dual-sim-td-lte-128gb-x620.json @@ -0,0 +1,41 @@ +{ + "slug": "zero-6-pro-dual-sim-td-lte-128gb-x620", + "name": "ZERO 6 Pro Dual SIM TD-LTE 128GB X620", + "brand": "infinix", + "soc": "snapdragon-636", + "release_date": "2019-03-01", + "ram_gb": 6.0, + "battery_mah": 3650, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Egypt , India , Indonesia , Kenya , Malaysia , Nigeria , Pakistan , Vietnam", + "market_regions": "Africa , Asia , Middle East , South America , Worldwide" +} diff --git a/data/smartphone/infinix/2020/hot-9-dual-sim-lte-emea-32gb-x655.json b/data/smartphone/infinix/2020/hot-9-dual-sim-lte-emea-32gb-x655.json new file mode 100644 index 00000000000..bd9962b458e --- /dev/null +++ b/data/smartphone/infinix/2020/hot-9-dual-sim-lte-emea-32gb-x655.json @@ -0,0 +1,42 @@ +{ + "slug": "hot-9-dual-sim-lte-emea-32gb-x655", + "name": "Hot 9 Dual SIM LTE EMEA 32GB X655", + "brand": "infinix", + "soc": "helio-a25", + "release_date": "2020-06-07", + "ram_gb": 2.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Algeria , Kenya , Morocco , Nigeria , Saudi Arabia , Tanzania , Tunisie , Turkey , UAE", + "market_regions": "Africa , Eastern Europe , Europe , Middle East" +} diff --git a/data/smartphone/infinix/2020/hot-9-dual-sim-lte-emea-64gb-x655c.json b/data/smartphone/infinix/2020/hot-9-dual-sim-lte-emea-64gb-x655c.json new file mode 100644 index 00000000000..7f063d4fa9b --- /dev/null +++ b/data/smartphone/infinix/2020/hot-9-dual-sim-lte-emea-64gb-x655c.json @@ -0,0 +1,42 @@ +{ + "slug": "hot-9-dual-sim-lte-emea-64gb-x655c", + "name": "Hot 9 Dual SIM LTE EMEA 64GB X655C", + "brand": "infinix", + "soc": "helio-a25", + "release_date": "2020-06-07", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Algeria , Kenya , Morocco , Nigeria , Saudi Arabia , Tanzania , Tunisie , Turkey , UAE", + "market_regions": "Africa , Eastern Europe , Europe , Middle East" +} diff --git a/data/smartphone/infinix/2020/hot-9-dual-sim-td-lte-apac-64gb-x655d.json b/data/smartphone/infinix/2020/hot-9-dual-sim-td-lte-apac-64gb-x655d.json new file mode 100644 index 00000000000..999511219ae --- /dev/null +++ b/data/smartphone/infinix/2020/hot-9-dual-sim-td-lte-apac-64gb-x655d.json @@ -0,0 +1,42 @@ +{ + "slug": "hot-9-dual-sim-td-lte-apac-64gb-x655d", + "name": "Hot 9 Dual SIM TD-LTE APAC 64GB X655D", + "brand": "infinix", + "soc": "helio-a25", + "release_date": "2020-06-07", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Indonesia , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/infinix/2020/hot-9-pro-dual-sim-td-lte-apac-64gb-x655f.json b/data/smartphone/infinix/2020/hot-9-pro-dual-sim-td-lte-apac-64gb-x655f.json new file mode 100644 index 00000000000..205bb5728e2 --- /dev/null +++ b/data/smartphone/infinix/2020/hot-9-pro-dual-sim-td-lte-apac-64gb-x655f.json @@ -0,0 +1,42 @@ +{ + "slug": "hot-9-pro-dual-sim-td-lte-apac-64gb-x655f", + "name": "Hot 9 Pro Dual SIM TD-LTE APAC 64GB X655F", + "brand": "infinix", + "soc": "helio-p22", + "release_date": "2020-08-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/infinix/2020/note-7-dual-sim-lte-a-emea.json b/data/smartphone/infinix/2020/note-7-dual-sim-lte-a-emea.json new file mode 100644 index 00000000000..50008a3a4a4 --- /dev/null +++ b/data/smartphone/infinix/2020/note-7-dual-sim-lte-a-emea.json @@ -0,0 +1,42 @@ +{ + "slug": "note-7-dual-sim-lte-a-emea", + "name": "Note 7 Dual SIM LTE-A EMEA", + "brand": "infinix", + "soc": "helio-g70", + "release_date": "2020-04-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.95, + "resolution": "720x1640", + "type": "Color IPS TFT LCD display", + "ppi": 258 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "market_countries": "Algeria , Egypt , Jordan , Kenya , Morocco , Nigeria , Pakistan , Tanzania , Tunisie , UAE , Uganda", + "market_regions": "Africa , Asia , Middle East" +} diff --git a/data/smartphone/infinix/2020/note-7-dual-sim-td-lte-apac.json b/data/smartphone/infinix/2020/note-7-dual-sim-td-lte-apac.json new file mode 100644 index 00000000000..7382c652210 --- /dev/null +++ b/data/smartphone/infinix/2020/note-7-dual-sim-td-lte-apac.json @@ -0,0 +1,42 @@ +{ + "slug": "note-7-dual-sim-td-lte-apac", + "name": "Note 7 Dual SIM TD-LTE APAC", + "brand": "infinix", + "soc": "helio-g70", + "release_date": "2020-04-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.95, + "resolution": "720x1640", + "type": "Color IPS TFT LCD display", + "ppi": 258 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , Indonesia , Pakistan , Philippines , Vietnam", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/infinix/2020/s5-pro-dual-sim-lte-emea.json b/data/smartphone/infinix/2020/s5-pro-dual-sim-lte-emea.json new file mode 100644 index 00000000000..75fdd52cef1 --- /dev/null +++ b/data/smartphone/infinix/2020/s5-pro-dual-sim-lte-emea.json @@ -0,0 +1,42 @@ +{ + "slug": "s5-pro-dual-sim-lte-emea", + "name": "S5 Pro Dual SIM LTE EMEA", + "brand": "infinix", + "soc": "helio-p35", + "release_date": "2020-03-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Algeria , Egypt , Jordan , Kenya , Nigeria , Pakistan , Saudi Arabia , Tanzania , Turkey , UAE , Uganda", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East" +} diff --git a/data/smartphone/infinix/2020/s5-pro-dual-sim-td-lte-apac.json b/data/smartphone/infinix/2020/s5-pro-dual-sim-td-lte-apac.json new file mode 100644 index 00000000000..23e144ebff7 --- /dev/null +++ b/data/smartphone/infinix/2020/s5-pro-dual-sim-td-lte-apac.json @@ -0,0 +1,42 @@ +{ + "slug": "s5-pro-dual-sim-td-lte-apac", + "name": "S5 Pro Dual SIM TD-LTE APAC", + "brand": "infinix", + "soc": "helio-p35", + "release_date": "2020-03-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "India , Indonesia , Malaysia , Thailand , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/infinix/2022/hot-12i.json b/data/smartphone/infinix/2022/hot-12i.json new file mode 100644 index 00000000000..02f89a01e73 --- /dev/null +++ b/data/smartphone/infinix/2022/hot-12i.json @@ -0,0 +1,32 @@ +{ + "slug": "hot-12i", + "name": "Hot 12i", + "brand": "infinix", + "soc": "helio-a22", + "release_date": "2022-01-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.6 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "msrp_usd": 139 +} diff --git a/data/smartphone/infinix/2022/hot-20-play.json b/data/smartphone/infinix/2022/hot-20-play.json new file mode 100644 index 00000000000..b7de527407d --- /dev/null +++ b/data/smartphone/infinix/2022/hot-20-play.json @@ -0,0 +1,32 @@ +{ + "slug": "hot-20-play", + "name": "Hot 20 Play", + "brand": "infinix", + "soc": "helio-g37", + "release_date": "2022-01-01", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 209.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.82 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "msrp_usd": 159 +} diff --git a/data/smartphone/infinix/2023/hot-30-play.json b/data/smartphone/infinix/2023/hot-30-play.json new file mode 100644 index 00000000000..3b0c79916ec --- /dev/null +++ b/data/smartphone/infinix/2023/hot-30-play.json @@ -0,0 +1,32 @@ +{ + "slug": "hot-30-play", + "name": "Hot 30 Play", + "brand": "infinix", + "soc": "helio-g37", + "release_date": "2023-01-01", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.82 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "msrp_usd": 179 +} diff --git a/data/smartphone/kyocera/2018/digno-j-td-lte-jp-704kc.json b/data/smartphone/kyocera/2018/digno-j-td-lte-jp-704kc.json new file mode 100644 index 00000000000..c921f19c212 --- /dev/null +++ b/data/smartphone/kyocera/2018/digno-j-td-lte-jp-704kc.json @@ -0,0 +1,41 @@ +{ + "slug": "digno-j-td-lte-jp-704kc", + "name": "Digno J TD-LTE JP 704KC", + "brand": "kyocera", + "soc": "snapdragon-430", + "release_date": "2018-07-01", + "ram_gb": 3.0, + "battery_mah": 2600, + "weight_g": 130.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.0, + "resolution": "1080x1920", + "type": "Color TN-TFT LCD display", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/kyocera/2018/duraforce-pro-2-xlte-e6910.json b/data/smartphone/kyocera/2018/duraforce-pro-2-xlte-e6910.json new file mode 100644 index 00000000000..c4bebd6ed99 --- /dev/null +++ b/data/smartphone/kyocera/2018/duraforce-pro-2-xlte-e6910.json @@ -0,0 +1,41 @@ +{ + "slug": "duraforce-pro-2-xlte-e6910", + "name": "DuraForce Pro 2 XLTE E6910", + "brand": "kyocera", + "soc": "snapdragon-630", + "release_date": "2018-11-01", + "ram_gb": 4.0, + "battery_mah": 3240, + "weight_g": 243.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.0, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/kyocera/2019/android-one-s6-td-lte-jp-s6-kc.json b/data/smartphone/kyocera/2019/android-one-s6-td-lte-jp-s6-kc.json new file mode 100644 index 00000000000..51a10bda2cd --- /dev/null +++ b/data/smartphone/kyocera/2019/android-one-s6-td-lte-jp-s6-kc.json @@ -0,0 +1,41 @@ +{ + "slug": "android-one-s6-td-lte-jp-s6-kc", + "name": "Android One S6 TD-LTE JP S6-KC", + "brand": "kyocera", + "soc": "helio-p35", + "release_date": "2019-12-19", + "ram_gb": 3.0, + "battery_mah": 3050, + "weight_g": 151.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 16.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/kyocera/2019/digno-bx-td-lte-jp-901kc.json b/data/smartphone/kyocera/2019/digno-bx-td-lte-jp-901kc.json new file mode 100644 index 00000000000..4b5b5b0a4c5 --- /dev/null +++ b/data/smartphone/kyocera/2019/digno-bx-td-lte-jp-901kc.json @@ -0,0 +1,41 @@ +{ + "slug": "digno-bx-td-lte-jp-901kc", + "name": "Digno BX TD-LTE JP 901KC", + "brand": "kyocera", + "soc": "snapdragon-429", + "release_date": "2019-11-14", + "ram_gb": 3.0, + "battery_mah": 2800, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.65, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 285 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/kyocera/2019/torque-g04-wimax-2-kyv46.json b/data/smartphone/kyocera/2019/torque-g04-wimax-2-kyv46.json new file mode 100644 index 00000000000..870ba20bcfb --- /dev/null +++ b/data/smartphone/kyocera/2019/torque-g04-wimax-2-kyv46.json @@ -0,0 +1,41 @@ +{ + "slug": "torque-g04-wimax-2-kyv46", + "name": "Torque G04 WiMAX 2+ KYV46", + "brand": "kyocera", + "soc": "snapdragon-660", + "release_date": "2019-08-29", + "ram_gb": 4.0, + "battery_mah": 2940, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.0, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/kyocera/2019/urbano-v04-wimax-2-kyv45.json b/data/smartphone/kyocera/2019/urbano-v04-wimax-2-kyv45.json new file mode 100644 index 00000000000..7bd029a4bf0 --- /dev/null +++ b/data/smartphone/kyocera/2019/urbano-v04-wimax-2-kyv45.json @@ -0,0 +1,41 @@ +{ + "slug": "urbano-v04-wimax-2-kyv45", + "name": "Urbano V04 WiMAX 2+ KYV45", + "brand": "kyocera", + "soc": "snapdragon-630", + "release_date": "2019-02-08", + "ram_gb": 4.0, + "battery_mah": 2800, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/kyocera/2020/android-one-s8-td-lte-jp-s8-kc.json b/data/smartphone/kyocera/2020/android-one-s8-td-lte-jp-s8-kc.json new file mode 100644 index 00000000000..b5bb8399391 --- /dev/null +++ b/data/smartphone/kyocera/2020/android-one-s8-td-lte-jp-s8-kc.json @@ -0,0 +1,41 @@ +{ + "slug": "android-one-s8-td-lte-jp-s8-kc", + "name": "Android One S8 TD-LTE JP S8-KC", + "brand": "kyocera", + "soc": "helio-p65", + "release_date": "2020-12-17", + "ram_gb": 4.0, + "battery_mah": 4100, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/kyocera/2020/basio4-wimax-2-kyv47.json b/data/smartphone/kyocera/2020/basio4-wimax-2-kyv47.json new file mode 100644 index 00000000000..3d18fe37c89 --- /dev/null +++ b/data/smartphone/kyocera/2020/basio4-wimax-2-kyv47.json @@ -0,0 +1,41 @@ +{ + "slug": "basio4-wimax-2-kyv47", + "name": "BASIO4 WiMAX 2+ KYV47", + "brand": "kyocera", + "soc": "helio-a22", + "release_date": "2020-02-01", + "ram_gb": 3.0, + "battery_mah": 3300, + "weight_g": 151.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.6, + "resolution": "720x1480", + "type": "AM-OLED display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/kyocera/2020/digno-3-for-biz-td-lte-jp-904kc.json b/data/smartphone/kyocera/2020/digno-3-for-biz-td-lte-jp-904kc.json new file mode 100644 index 00000000000..baec1124850 --- /dev/null +++ b/data/smartphone/kyocera/2020/digno-3-for-biz-td-lte-jp-904kc.json @@ -0,0 +1,41 @@ +{ + "slug": "digno-3-for-biz-td-lte-jp-904kc", + "name": "Digno 3 for Biz TD-LTE JP 904KC", + "brand": "kyocera", + "soc": "snapdragon-210", + "release_date": "2020-02-21", + "ram_gb": 1.0, + "battery_mah": 1700, + "weight_g": 131.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 3.4, + "resolution": "480x854", + "type": "Color TN-TFT LCD display", + "ppi": 288 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/kyocera/2020/duraforce-pro-2-lte-a-us-e6921.json b/data/smartphone/kyocera/2020/duraforce-pro-2-lte-a-us-e6921.json new file mode 100644 index 00000000000..b7cf46837fa --- /dev/null +++ b/data/smartphone/kyocera/2020/duraforce-pro-2-lte-a-us-e6921.json @@ -0,0 +1,41 @@ +{ + "slug": "duraforce-pro-2-lte-a-us-e6921", + "name": "DuraForce Pro 2 LTE-A US E6921", + "brand": "kyocera", + "soc": "snapdragon-630", + "release_date": "2020-09-01", + "ram_gb": 4.0, + "battery_mah": 3240, + "weight_g": 235.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.0, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/kyocera/2021/duraforce-ultra-5g-uw-e7110.json b/data/smartphone/kyocera/2021/duraforce-ultra-5g-uw-e7110.json new file mode 100644 index 00000000000..66dbba86bdd --- /dev/null +++ b/data/smartphone/kyocera/2021/duraforce-ultra-5g-uw-e7110.json @@ -0,0 +1,42 @@ +{ + "slug": "duraforce-ultra-5g-uw-e7110", + "name": "DuraForce Ultra 5G UW E7110", + "brand": "kyocera", + "soc": "snapdragon-765", + "release_date": "2021-03-11", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 278.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.45, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 443 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 900, + "market_countries": "Japan , USA", + "market_regions": "Asia , North America" +} diff --git a/data/smartphone/kyocera/2021/durasport-5g-uw-td-lte-us-e6930.json b/data/smartphone/kyocera/2021/durasport-5g-uw-td-lte-us-e6930.json new file mode 100644 index 00000000000..4e31fa15942 --- /dev/null +++ b/data/smartphone/kyocera/2021/durasport-5g-uw-td-lte-us-e6930.json @@ -0,0 +1,44 @@ +{ + "slug": "durasport-5g-uw-td-lte-us-e6930", + "name": "DuraSport 5G UW TD-LTE US E6930", + "brand": "kyocera", + "soc": "snapdragon-480", + "release_date": "2021-11-12", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 580, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/kyocera/2022/anshin-smartphone-5g-td-lte-jp-ky-51b.json b/data/smartphone/kyocera/2022/anshin-smartphone-5g-td-lte-jp-ky-51b.json new file mode 100644 index 00000000000..6582773e721 --- /dev/null +++ b/data/smartphone/kyocera/2022/anshin-smartphone-5g-td-lte-jp-ky-51b.json @@ -0,0 +1,42 @@ +{ + "slug": "anshin-smartphone-5g-td-lte-jp-ky-51b", + "name": "Anshin Smartphone 5G TD-LTE JP KY-51B", + "brand": "kyocera", + "soc": "snapdragon-480", + "release_date": "2022-02-24", + "ram_gb": 4.0, + "battery_mah": 4500, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 431 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/lava/2018/z81-dual-sim-td-lte-16gb.json b/data/smartphone/lava/2018/z81-dual-sim-td-lte-16gb.json new file mode 100644 index 00000000000..092bb9e21a1 --- /dev/null +++ b/data/smartphone/lava/2018/z81-dual-sim-td-lte-16gb.json @@ -0,0 +1,41 @@ +{ + "slug": "z81-dual-sim-td-lte-16gb", + "name": "Z81 Dual SIM TD-LTE 16GB", + "brand": "lava", + "soc": "helio-a22", + "release_date": "2018-12-27", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 141.6, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 283 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/lava/2018/z81-dual-sim-td-lte-32gb.json b/data/smartphone/lava/2018/z81-dual-sim-td-lte-32gb.json new file mode 100644 index 00000000000..4c1742ffab5 --- /dev/null +++ b/data/smartphone/lava/2018/z81-dual-sim-td-lte-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "z81-dual-sim-td-lte-32gb", + "name": "Z81 Dual SIM TD-LTE 32GB", + "brand": "lava", + "soc": "helio-a22", + "release_date": "2018-12-27", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 141.6, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 283 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/lava/2018/z92-premium-edition-dual-sim-td-lte-in.json b/data/smartphone/lava/2018/z92-premium-edition-dual-sim-td-lte-in.json new file mode 100644 index 00000000000..103e17972ce --- /dev/null +++ b/data/smartphone/lava/2018/z92-premium-edition-dual-sim-td-lte-in.json @@ -0,0 +1,41 @@ +{ + "slug": "z92-premium-edition-dual-sim-td-lte-in", + "name": "Z92 Premium Edition Dual SIM TD-LTE IN", + "brand": "lava", + "soc": "helio-p22", + "release_date": "2018-04-02", + "ram_gb": 3.0, + "battery_mah": 3260, + "weight_g": 159.2, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/lava/2018/z92-standard-edition-dual-sim-td-lte-in.json b/data/smartphone/lava/2018/z92-standard-edition-dual-sim-td-lte-in.json new file mode 100644 index 00000000000..f54f44c4da8 --- /dev/null +++ b/data/smartphone/lava/2018/z92-standard-edition-dual-sim-td-lte-in.json @@ -0,0 +1,41 @@ +{ + "slug": "z92-standard-edition-dual-sim-td-lte-in", + "name": "Z92 Standard Edition Dual SIM TD-LTE IN", + "brand": "lava", + "soc": "helio-p22", + "release_date": "2018-04-02", + "ram_gb": 2.0, + "battery_mah": 3260, + "weight_g": 159.2, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/lava/2019/xolo-era-5x-dual-sim-td-lte-in-16gb.json b/data/smartphone/lava/2019/xolo-era-5x-dual-sim-td-lte-in-16gb.json new file mode 100644 index 00000000000..98f5dff5e38 --- /dev/null +++ b/data/smartphone/lava/2019/xolo-era-5x-dual-sim-td-lte-in-16gb.json @@ -0,0 +1,41 @@ +{ + "slug": "xolo-era-5x-dual-sim-td-lte-in-16gb", + "name": "Xolo Era 5X Dual SIM TD-LTE IN 16GB", + "brand": "lava", + "soc": "helio-a22", + "release_date": "2019-01-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 141.6, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/lava/2019/xolo-era-5x-dual-sim-td-lte-in-32gb.json b/data/smartphone/lava/2019/xolo-era-5x-dual-sim-td-lte-in-32gb.json new file mode 100644 index 00000000000..201f1683cc4 --- /dev/null +++ b/data/smartphone/lava/2019/xolo-era-5x-dual-sim-td-lte-in-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "xolo-era-5x-dual-sim-td-lte-in-32gb", + "name": "Xolo Era 5X Dual SIM TD-LTE IN 32GB", + "brand": "lava", + "soc": "helio-a22", + "release_date": "2019-01-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 141.6, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/lava/2019/z62-dual-sim-td-lte-in.json b/data/smartphone/lava/2019/z62-dual-sim-td-lte-in.json new file mode 100644 index 00000000000..fb5c012eeab --- /dev/null +++ b/data/smartphone/lava/2019/z62-dual-sim-td-lte-in.json @@ -0,0 +1,41 @@ +{ + "slug": "z62-dual-sim-td-lte-in", + "name": "Z62 Dual SIM TD-LTE IN", + "brand": "lava", + "soc": "helio-a22", + "release_date": "2019-06-14", + "ram_gb": 2.0, + "battery_mah": 3380, + "weight_g": 182.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.0, + "resolution": "480x960", + "type": "Color IPS TFT LCD display", + "ppi": 179 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/lava/2020/z71-dual-sim-td-lte-32gb.json b/data/smartphone/lava/2020/z71-dual-sim-td-lte-32gb.json new file mode 100644 index 00000000000..eb83773d40b --- /dev/null +++ b/data/smartphone/lava/2020/z71-dual-sim-td-lte-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "z71-dual-sim-td-lte-32gb", + "name": "Z71 Dual SIM TD-LTE 32GB", + "brand": "lava", + "soc": "helio-a22", + "release_date": "2020-01-16", + "ram_gb": 2.0, + "battery_mah": 3200, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2018/k5-note-2018-dual-sim-td-lte-cn-32gb.json b/data/smartphone/lenovo/2018/k5-note-2018-dual-sim-td-lte-cn-32gb.json new file mode 100644 index 00000000000..e6735de4c88 --- /dev/null +++ b/data/smartphone/lenovo/2018/k5-note-2018-dual-sim-td-lte-cn-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "k5-note-2018-dual-sim-td-lte-cn-32gb", + "name": "K5 Note 2018 Dual SIM TD-LTE CN 32GB", + "brand": "lenovo", + "soc": "snapdragon-450", + "release_date": "2018-06-12", + "ram_gb": 3.0, + "battery_mah": 3760, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.0, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2018/k5-note-2018-dual-sim-td-lte-cn-64gb.json b/data/smartphone/lenovo/2018/k5-note-2018-dual-sim-td-lte-cn-64gb.json new file mode 100644 index 00000000000..9272c9a9a10 --- /dev/null +++ b/data/smartphone/lenovo/2018/k5-note-2018-dual-sim-td-lte-cn-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "k5-note-2018-dual-sim-td-lte-cn-64gb", + "name": "K5 Note 2018 Dual SIM TD-LTE CN 64GB", + "brand": "lenovo", + "soc": "snapdragon-450", + "release_date": "2018-06-12", + "ram_gb": 4.0, + "battery_mah": 3760, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2018/k5-play-dual-sim-td-lte-cn-16gb-l38021.json b/data/smartphone/lenovo/2018/k5-play-dual-sim-td-lte-cn-16gb-l38021.json new file mode 100644 index 00000000000..e5b2de1cadc --- /dev/null +++ b/data/smartphone/lenovo/2018/k5-play-dual-sim-td-lte-cn-16gb-l38021.json @@ -0,0 +1,41 @@ +{ + "slug": "k5-play-dual-sim-td-lte-cn-16gb-l38021", + "name": "K5 Play Dual SIM TD-LTE CN 16GB L38021", + "brand": "lenovo", + "soc": "snapdragon-430", + "release_date": "2018-04-17", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 155.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.72, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 281 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2018/k5-play-dual-sim-td-lte-cn-32gb-l38021.json b/data/smartphone/lenovo/2018/k5-play-dual-sim-td-lte-cn-32gb-l38021.json new file mode 100644 index 00000000000..5b1134030ec --- /dev/null +++ b/data/smartphone/lenovo/2018/k5-play-dual-sim-td-lte-cn-32gb-l38021.json @@ -0,0 +1,41 @@ +{ + "slug": "k5-play-dual-sim-td-lte-cn-32gb-l38021", + "name": "K5 Play Dual SIM TD-LTE CN 32GB L38021", + "brand": "lenovo", + "soc": "snapdragon-430", + "release_date": "2018-04-17", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 155.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.72, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 281 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2018/k5-pro-premium-edition-td-lte-dual-sim-128gb-paed0001cn.json b/data/smartphone/lenovo/2018/k5-pro-premium-edition-td-lte-dual-sim-128gb-paed0001cn.json new file mode 100644 index 00000000000..5a4700683b9 --- /dev/null +++ b/data/smartphone/lenovo/2018/k5-pro-premium-edition-td-lte-dual-sim-128gb-paed0001cn.json @@ -0,0 +1,41 @@ +{ + "slug": "k5-pro-premium-edition-td-lte-dual-sim-128gb-paed0001cn", + "name": "K5 Pro Premium Edition TD-LTE Dual SIM 128GB PAED0001CN", + "brand": "lenovo", + "soc": "snapdragon-636", + "release_date": "2018-10-01", + "ram_gb": 6.0, + "battery_mah": 4050, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2018/k5-pro-premium-edition-td-lte-dual-sim-64gb-paed0004cn.json b/data/smartphone/lenovo/2018/k5-pro-premium-edition-td-lte-dual-sim-64gb-paed0004cn.json new file mode 100644 index 00000000000..96d0ec77e68 --- /dev/null +++ b/data/smartphone/lenovo/2018/k5-pro-premium-edition-td-lte-dual-sim-64gb-paed0004cn.json @@ -0,0 +1,41 @@ +{ + "slug": "k5-pro-premium-edition-td-lte-dual-sim-64gb-paed0004cn", + "name": "K5 Pro Premium Edition TD-LTE Dual SIM 64GB PAED0004CN", + "brand": "lenovo", + "soc": "snapdragon-636", + "release_date": "2018-10-01", + "ram_gb": 6.0, + "battery_mah": 4050, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2018/k5-pro-standard-edition-td-lte-dual-sim-64gb-paed0005cn.json b/data/smartphone/lenovo/2018/k5-pro-standard-edition-td-lte-dual-sim-64gb-paed0005cn.json new file mode 100644 index 00000000000..9fdf622c7df --- /dev/null +++ b/data/smartphone/lenovo/2018/k5-pro-standard-edition-td-lte-dual-sim-64gb-paed0005cn.json @@ -0,0 +1,41 @@ +{ + "slug": "k5-pro-standard-edition-td-lte-dual-sim-64gb-paed0005cn", + "name": "K5 Pro Standard Edition TD-LTE Dual SIM 64GB PAED0005CN", + "brand": "lenovo", + "soc": "snapdragon-636", + "release_date": "2018-10-01", + "ram_gb": 4.0, + "battery_mah": 4050, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2018/k5s-td-lte-dual-sim-padl0006cn.json b/data/smartphone/lenovo/2018/k5s-td-lte-dual-sim-padl0006cn.json new file mode 100644 index 00000000000..033192a0570 --- /dev/null +++ b/data/smartphone/lenovo/2018/k5s-td-lte-dual-sim-padl0006cn.json @@ -0,0 +1,41 @@ +{ + "slug": "k5s-td-lte-dual-sim-padl0006cn", + "name": "K5s TD-LTE Dual SIM PADL0006CN", + "brand": "lenovo", + "soc": "helio-p22", + "release_date": "2018-10-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 155.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2018/s5-dual-sim-td-lte-cn-128gb-pabx0010cn-pabx0011cn.json b/data/smartphone/lenovo/2018/s5-dual-sim-td-lte-cn-128gb-pabx0010cn-pabx0011cn.json new file mode 100644 index 00000000000..3f0b9199916 --- /dev/null +++ b/data/smartphone/lenovo/2018/s5-dual-sim-td-lte-cn-128gb-pabx0010cn-pabx0011cn.json @@ -0,0 +1,41 @@ +{ + "slug": "s5-dual-sim-td-lte-cn-128gb-pabx0010cn-pabx0011cn", + "name": "S5 Dual SIM TD-LTE CN 128GB PABX0010CN / PABX0011CN", + "brand": "lenovo", + "soc": "snapdragon-625", + "release_date": "2018-04-11", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 155.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 13.2 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2018/s5-dual-sim-td-lte-cn-32gb-pabx0000cn-pabx0001cn.json b/data/smartphone/lenovo/2018/s5-dual-sim-td-lte-cn-32gb-pabx0000cn-pabx0001cn.json new file mode 100644 index 00000000000..9c317afa458 --- /dev/null +++ b/data/smartphone/lenovo/2018/s5-dual-sim-td-lte-cn-32gb-pabx0000cn-pabx0001cn.json @@ -0,0 +1,41 @@ +{ + "slug": "s5-dual-sim-td-lte-cn-32gb-pabx0000cn-pabx0001cn", + "name": "S5 Dual SIM TD-LTE CN 32GB PABX0000CN / PABX0001CN", + "brand": "lenovo", + "soc": "snapdragon-625", + "release_date": "2018-04-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 155.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 13.2 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2018/s5-dual-sim-td-lte-cn-64gb-pabx0002cn-pabx0003cn.json b/data/smartphone/lenovo/2018/s5-dual-sim-td-lte-cn-64gb-pabx0002cn-pabx0003cn.json new file mode 100644 index 00000000000..b9467e79da4 --- /dev/null +++ b/data/smartphone/lenovo/2018/s5-dual-sim-td-lte-cn-64gb-pabx0002cn-pabx0003cn.json @@ -0,0 +1,41 @@ +{ + "slug": "s5-dual-sim-td-lte-cn-64gb-pabx0002cn-pabx0003cn", + "name": "S5 Dual SIM TD-LTE CN 64GB PABX0002CN / PABX0003CN", + "brand": "lenovo", + "soc": "snapdragon-625", + "release_date": "2018-04-11", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 155.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 13.2 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2018/s5-pro-td-lte-dual-sim-paeg0005cn.json b/data/smartphone/lenovo/2018/s5-pro-td-lte-dual-sim-paeg0005cn.json new file mode 100644 index 00000000000..e123925d01c --- /dev/null +++ b/data/smartphone/lenovo/2018/s5-pro-td-lte-dual-sim-paeg0005cn.json @@ -0,0 +1,41 @@ +{ + "slug": "s5-pro-td-lte-dual-sim-paeg0005cn", + "name": "S5 Pro TD-LTE Dual SIM PAEG0005CN", + "brand": "lenovo", + "soc": "snapdragon-636", + "release_date": "2018-10-01", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 20.1 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2018/z5-pro-premium-edition-dual-sim-td-lte-cn-128gb-l78031.json b/data/smartphone/lenovo/2018/z5-pro-premium-edition-dual-sim-td-lte-cn-128gb-l78031.json new file mode 100644 index 00000000000..f8a676d3486 --- /dev/null +++ b/data/smartphone/lenovo/2018/z5-pro-premium-edition-dual-sim-td-lte-cn-128gb-l78031.json @@ -0,0 +1,41 @@ +{ + "slug": "z5-pro-premium-edition-dual-sim-td-lte-cn-128gb-l78031", + "name": "Z5 Pro Premium Edition Dual SIM TD-LTE CN 128GB L78031", + "brand": "lenovo", + "soc": "snapdragon-710", + "release_date": "2018-11-11", + "ram_gb": 6.0, + "battery_mah": 3350, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2018/z5-pro-premium-edition-dual-sim-td-lte-cn-64gb-l78031.json b/data/smartphone/lenovo/2018/z5-pro-premium-edition-dual-sim-td-lte-cn-64gb-l78031.json new file mode 100644 index 00000000000..79a144f8e1a --- /dev/null +++ b/data/smartphone/lenovo/2018/z5-pro-premium-edition-dual-sim-td-lte-cn-64gb-l78031.json @@ -0,0 +1,41 @@ +{ + "slug": "z5-pro-premium-edition-dual-sim-td-lte-cn-64gb-l78031", + "name": "Z5 Pro Premium Edition Dual SIM TD-LTE CN 64GB L78031", + "brand": "lenovo", + "soc": "snapdragon-710", + "release_date": "2018-11-11", + "ram_gb": 6.0, + "battery_mah": 3350, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2018/z5-td-lte-dual-sim-128gb.json b/data/smartphone/lenovo/2018/z5-td-lte-dual-sim-128gb.json new file mode 100644 index 00000000000..52a3a0c719b --- /dev/null +++ b/data/smartphone/lenovo/2018/z5-td-lte-dual-sim-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "z5-td-lte-dual-sim-128gb", + "name": "Z5 TD-LTE Dual SIM 128GB", + "brand": "lenovo", + "soc": "snapdragon-636", + "release_date": "2018-06-12", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2018/z5-td-lte-dual-sim-64gb.json b/data/smartphone/lenovo/2018/z5-td-lte-dual-sim-64gb.json new file mode 100644 index 00000000000..9d1bf144cbd --- /dev/null +++ b/data/smartphone/lenovo/2018/z5-td-lte-dual-sim-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "z5-td-lte-dual-sim-64gb", + "name": "Z5 TD-LTE Dual SIM 64GB", + "brand": "lenovo", + "soc": "snapdragon-636", + "release_date": "2018-06-12", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2018/z5s-premium-edition-dual-sim-td-lte-cn-128gb-l78071.json b/data/smartphone/lenovo/2018/z5s-premium-edition-dual-sim-td-lte-cn-128gb-l78071.json new file mode 100644 index 00000000000..9449cbe6875 --- /dev/null +++ b/data/smartphone/lenovo/2018/z5s-premium-edition-dual-sim-td-lte-cn-128gb-l78071.json @@ -0,0 +1,41 @@ +{ + "slug": "z5s-premium-edition-dual-sim-td-lte-cn-128gb-l78071", + "name": "Z5s Premium Edition Dual SIM TD-LTE CN 128GB L78071", + "brand": "lenovo", + "soc": "snapdragon-710", + "release_date": "2018-12-24", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2018/z5s-premium-edition-dual-sim-td-lte-cn-64gb-l78071.json b/data/smartphone/lenovo/2018/z5s-premium-edition-dual-sim-td-lte-cn-64gb-l78071.json new file mode 100644 index 00000000000..1117d739153 --- /dev/null +++ b/data/smartphone/lenovo/2018/z5s-premium-edition-dual-sim-td-lte-cn-64gb-l78071.json @@ -0,0 +1,41 @@ +{ + "slug": "z5s-premium-edition-dual-sim-td-lte-cn-64gb-l78071", + "name": "Z5s Premium Edition Dual SIM TD-LTE CN 64GB L78071", + "brand": "lenovo", + "soc": "snapdragon-710", + "release_date": "2018-12-24", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2018/z5s-standard-edition-dual-sim-td-lte-cn-64gb-l78071.json b/data/smartphone/lenovo/2018/z5s-standard-edition-dual-sim-td-lte-cn-64gb-l78071.json new file mode 100644 index 00000000000..4b05c18e435 --- /dev/null +++ b/data/smartphone/lenovo/2018/z5s-standard-edition-dual-sim-td-lte-cn-64gb-l78071.json @@ -0,0 +1,41 @@ +{ + "slug": "z5s-standard-edition-dual-sim-td-lte-cn-64gb-l78071", + "name": "Z5s Standard Edition Dual SIM TD-LTE CN 64GB L78071", + "brand": "lenovo", + "soc": "snapdragon-710", + "release_date": "2018-12-24", + "ram_gb": 4.0, + "battery_mah": 3300, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2019/a6-note-dual-sim-td-lte-in.json b/data/smartphone/lenovo/2019/a6-note-dual-sim-td-lte-in.json new file mode 100644 index 00000000000..7c8a995003b --- /dev/null +++ b/data/smartphone/lenovo/2019/a6-note-dual-sim-td-lte-in.json @@ -0,0 +1,42 @@ +{ + "slug": "a6-note-dual-sim-td-lte-in", + "name": "A6 Note Dual SIM TD-LTE IN", + "brand": "lenovo", + "soc": "helio-p22", + "release_date": "2019-09-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.2 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2019/k10-2019-global-dual-sim-td-lte-64gb-xt2025-3.json b/data/smartphone/lenovo/2019/k10-2019-global-dual-sim-td-lte-64gb-xt2025-3.json new file mode 100644 index 00000000000..c0cf7a4f92c --- /dev/null +++ b/data/smartphone/lenovo/2019/k10-2019-global-dual-sim-td-lte-64gb-xt2025-3.json @@ -0,0 +1,42 @@ +{ + "slug": "k10-2019-global-dual-sim-td-lte-64gb-xt2025-3", + "name": "K10 2019 Global Dual SIM TD-LTE 64GB XT2025-3", + "brand": "lenovo", + "soc": "helio-p22", + "release_date": "2019-10-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 149.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Saudi Arabia , Singapore , UAE", + "market_regions": "Asia , Middle East , Southeast Asia" +} diff --git a/data/smartphone/lenovo/2019/k10-note-dual-sim-td-lte-in.json b/data/smartphone/lenovo/2019/k10-note-dual-sim-td-lte-in.json new file mode 100644 index 00000000000..260923bccc1 --- /dev/null +++ b/data/smartphone/lenovo/2019/k10-note-dual-sim-td-lte-in.json @@ -0,0 +1,42 @@ +{ + "slug": "k10-note-dual-sim-td-lte-in", + "name": "K10 Note Dual SIM TD-LTE IN", + "brand": "lenovo", + "soc": "snapdragon-710", + "release_date": "2019-09-01", + "ram_gb": 4.0, + "battery_mah": 4050, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2019/k10-plus-dual-sim-td-lte-in.json b/data/smartphone/lenovo/2019/k10-plus-dual-sim-td-lte-in.json new file mode 100644 index 00000000000..6bea3c1b72e --- /dev/null +++ b/data/smartphone/lenovo/2019/k10-plus-dual-sim-td-lte-in.json @@ -0,0 +1,42 @@ +{ + "slug": "k10-plus-dual-sim-td-lte-in", + "name": "K10 Plus Dual SIM TD-LTE IN", + "brand": "lenovo", + "soc": "snapdragon-632", + "release_date": "2019-09-01", + "ram_gb": 4.0, + "battery_mah": 4050, + "weight_g": 158.2, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/lenovo/2019/k6-enjoy-dual-sim-td-lte-cn-128gb-l38082.json b/data/smartphone/lenovo/2019/k6-enjoy-dual-sim-td-lte-cn-128gb-l38082.json new file mode 100644 index 00000000000..58955773cdd --- /dev/null +++ b/data/smartphone/lenovo/2019/k6-enjoy-dual-sim-td-lte-cn-128gb-l38082.json @@ -0,0 +1,42 @@ +{ + "slug": "k6-enjoy-dual-sim-td-lte-cn-128gb-l38082", + "name": "K6 Enjoy Dual SIM TD-LTE CN 128GB L38082", + "brand": "lenovo", + "soc": "helio-p22", + "release_date": "2019-04-01", + "ram_gb": 4.0, + "battery_mah": 3300, + "weight_g": 161.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2019/k6-enjoy-dual-sim-td-lte-cn-64gb-l38082.json b/data/smartphone/lenovo/2019/k6-enjoy-dual-sim-td-lte-cn-64gb-l38082.json new file mode 100644 index 00000000000..22c83446a7a --- /dev/null +++ b/data/smartphone/lenovo/2019/k6-enjoy-dual-sim-td-lte-cn-64gb-l38082.json @@ -0,0 +1,42 @@ +{ + "slug": "k6-enjoy-dual-sim-td-lte-cn-64gb-l38082", + "name": "K6 Enjoy Dual SIM TD-LTE CN 64GB L38082", + "brand": "lenovo", + "soc": "helio-p22", + "release_date": "2019-04-01", + "ram_gb": 4.0, + "battery_mah": 3300, + "weight_g": 161.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2019/z5-pro-gt-premium-edition-dual-sim-td-lte-cn-128gb-l78032.json b/data/smartphone/lenovo/2019/z5-pro-gt-premium-edition-dual-sim-td-lte-cn-128gb-l78032.json new file mode 100644 index 00000000000..a65ba4ca86a --- /dev/null +++ b/data/smartphone/lenovo/2019/z5-pro-gt-premium-edition-dual-sim-td-lte-cn-128gb-l78032.json @@ -0,0 +1,41 @@ +{ + "slug": "z5-pro-gt-premium-edition-dual-sim-td-lte-cn-128gb-l78032", + "name": "Z5 Pro GT Premium Edition Dual SIM TD-LTE CN 128GB L78032", + "brand": "lenovo", + "soc": "snapdragon-855", + "release_date": "2019-01-29", + "ram_gb": 8.0, + "battery_mah": 3350, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2019/z5-pro-gt-premium-edition-dual-sim-td-lte-cn-256gb-l78032.json b/data/smartphone/lenovo/2019/z5-pro-gt-premium-edition-dual-sim-td-lte-cn-256gb-l78032.json new file mode 100644 index 00000000000..4de6e38f6f3 --- /dev/null +++ b/data/smartphone/lenovo/2019/z5-pro-gt-premium-edition-dual-sim-td-lte-cn-256gb-l78032.json @@ -0,0 +1,41 @@ +{ + "slug": "z5-pro-gt-premium-edition-dual-sim-td-lte-cn-256gb-l78032", + "name": "Z5 Pro GT Premium Edition Dual SIM TD-LTE CN 256GB L78032", + "brand": "lenovo", + "soc": "snapdragon-855", + "release_date": "2019-01-29", + "ram_gb": 8.0, + "battery_mah": 3350, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2019/z5-pro-gt-standard-edition-dual-sim-td-lte-cn-128gb-l78032.json b/data/smartphone/lenovo/2019/z5-pro-gt-standard-edition-dual-sim-td-lte-cn-128gb-l78032.json new file mode 100644 index 00000000000..2afd83f9ac6 --- /dev/null +++ b/data/smartphone/lenovo/2019/z5-pro-gt-standard-edition-dual-sim-td-lte-cn-128gb-l78032.json @@ -0,0 +1,41 @@ +{ + "slug": "z5-pro-gt-standard-edition-dual-sim-td-lte-cn-128gb-l78032", + "name": "Z5 Pro GT Standard Edition Dual SIM TD-LTE CN 128GB L78032", + "brand": "lenovo", + "soc": "snapdragon-855", + "release_date": "2019-01-28", + "ram_gb": 6.0, + "battery_mah": 3350, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2019/z6-premium-edition-dual-sim-td-lte-cn-128gb-l78121.json b/data/smartphone/lenovo/2019/z6-premium-edition-dual-sim-td-lte-cn-128gb-l78121.json new file mode 100644 index 00000000000..aae935c9378 --- /dev/null +++ b/data/smartphone/lenovo/2019/z6-premium-edition-dual-sim-td-lte-cn-128gb-l78121.json @@ -0,0 +1,43 @@ +{ + "slug": "z6-premium-edition-dual-sim-td-lte-cn-128gb-l78121", + "name": "Z6 Premium Edition Dual SIM TD-LTE CN 128GB L78121", + "brand": "lenovo", + "soc": "snapdragon-730", + "release_date": "2019-07-04", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2019/z6-pro-premium-edition-dual-sim-td-lte-cn-128gb-l78051.json b/data/smartphone/lenovo/2019/z6-pro-premium-edition-dual-sim-td-lte-cn-128gb-l78051.json new file mode 100644 index 00000000000..f127e0481c5 --- /dev/null +++ b/data/smartphone/lenovo/2019/z6-pro-premium-edition-dual-sim-td-lte-cn-128gb-l78051.json @@ -0,0 +1,42 @@ +{ + "slug": "z6-pro-premium-edition-dual-sim-td-lte-cn-128gb-l78051", + "name": "Z6 Pro Premium Edition Dual SIM TD-LTE CN 128GB L78051", + "brand": "lenovo", + "soc": "snapdragon-855", + "release_date": "2019-04-29", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bulgaria , China", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/lenovo/2019/z6-pro-premium-edition-dual-sim-td-lte-cn-256gb-l78051.json b/data/smartphone/lenovo/2019/z6-pro-premium-edition-dual-sim-td-lte-cn-256gb-l78051.json new file mode 100644 index 00000000000..e87e95a553c --- /dev/null +++ b/data/smartphone/lenovo/2019/z6-pro-premium-edition-dual-sim-td-lte-cn-256gb-l78051.json @@ -0,0 +1,42 @@ +{ + "slug": "z6-pro-premium-edition-dual-sim-td-lte-cn-256gb-l78051", + "name": "Z6 Pro Premium Edition Dual SIM TD-LTE CN 256GB L78051", + "brand": "lenovo", + "soc": "snapdragon-855", + "release_date": "2019-04-29", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2019/z6-pro-standard-edition-dual-sim-td-lte-cn-128gb-l78051.json b/data/smartphone/lenovo/2019/z6-pro-standard-edition-dual-sim-td-lte-cn-128gb-l78051.json new file mode 100644 index 00000000000..ae7e3e5deeb --- /dev/null +++ b/data/smartphone/lenovo/2019/z6-pro-standard-edition-dual-sim-td-lte-cn-128gb-l78051.json @@ -0,0 +1,42 @@ +{ + "slug": "z6-pro-standard-edition-dual-sim-td-lte-cn-128gb-l78051", + "name": "Z6 Pro Standard Edition Dual SIM TD-LTE CN 128GB L78051", + "brand": "lenovo", + "soc": "snapdragon-855", + "release_date": "2019-04-29", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bulgaria , China", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/lenovo/2019/z6-pro-top-edition-dual-sim-td-lte-cn-512gb-l78051.json b/data/smartphone/lenovo/2019/z6-pro-top-edition-dual-sim-td-lte-cn-512gb-l78051.json new file mode 100644 index 00000000000..7f92b85ce41 --- /dev/null +++ b/data/smartphone/lenovo/2019/z6-pro-top-edition-dual-sim-td-lte-cn-512gb-l78051.json @@ -0,0 +1,42 @@ +{ + "slug": "z6-pro-top-edition-dual-sim-td-lte-cn-512gb-l78051", + "name": "Z6 Pro Top Edition Dual SIM TD-LTE CN 512GB L78051", + "brand": "lenovo", + "soc": "snapdragon-855", + "release_date": "2019-05-01", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2019/z6-standard-edition-dual-sim-td-lte-cn-128gb-l78121.json b/data/smartphone/lenovo/2019/z6-standard-edition-dual-sim-td-lte-cn-128gb-l78121.json new file mode 100644 index 00000000000..3ab9fc97fff --- /dev/null +++ b/data/smartphone/lenovo/2019/z6-standard-edition-dual-sim-td-lte-cn-128gb-l78121.json @@ -0,0 +1,43 @@ +{ + "slug": "z6-standard-edition-dual-sim-td-lte-cn-128gb-l78121", + "name": "Z6 Standard Edition Dual SIM TD-LTE CN 128GB L78121", + "brand": "lenovo", + "soc": "snapdragon-730", + "release_date": "2019-07-04", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2019/z6-standard-edition-dual-sim-td-lte-cn-64gb-l78121.json b/data/smartphone/lenovo/2019/z6-standard-edition-dual-sim-td-lte-cn-64gb-l78121.json new file mode 100644 index 00000000000..5499dca39e9 --- /dev/null +++ b/data/smartphone/lenovo/2019/z6-standard-edition-dual-sim-td-lte-cn-64gb-l78121.json @@ -0,0 +1,43 @@ +{ + "slug": "z6-standard-edition-dual-sim-td-lte-cn-64gb-l78121", + "name": "Z6 Standard Edition Dual SIM TD-LTE CN 64GB L78121", + "brand": "lenovo", + "soc": "snapdragon-730", + "release_date": "2019-07-04", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2020/k11-2020-dual-sim-td-lte-apac-32gb-xt2053-3.json b/data/smartphone/lenovo/2020/k11-2020-dual-sim-td-lte-apac-32gb-xt2053-3.json new file mode 100644 index 00000000000..baf71756f66 --- /dev/null +++ b/data/smartphone/lenovo/2020/k11-2020-dual-sim-td-lte-apac-32gb-xt2053-3.json @@ -0,0 +1,43 @@ +{ + "slug": "k11-2020-dual-sim-td-lte-apac-32gb-xt2053-3", + "name": "K11 2020 Dual SIM TD-LTE APAC 32GB XT2053-3", + "brand": "lenovo", + "soc": "helio-p22", + "release_date": "2020-06-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "msrp_usd": 2790, + "market_countries": "Indonesia , Malaysia , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/lenovo/2020/k11-power-global-dual-sim-td-lte-64-gb-xt2055-3.json b/data/smartphone/lenovo/2020/k11-power-global-dual-sim-td-lte-64-gb-xt2055-3.json new file mode 100644 index 00000000000..3960db9e68e --- /dev/null +++ b/data/smartphone/lenovo/2020/k11-power-global-dual-sim-td-lte-64-gb-xt2055-3.json @@ -0,0 +1,42 @@ +{ + "slug": "k11-power-global-dual-sim-td-lte-64-gb-xt2055-3", + "name": "K11 Power Global Dual SIM TD-LTE 64 GB XT2055-3", + "brand": "lenovo", + "soc": "helio-p35", + "release_date": "2020-05-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Egypt , Indonesia , Jordan , Lebanon , Pakistan , Saudi Arabia , Thailand , UAE", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Southeast Asia" +} diff --git a/data/smartphone/lenovo/2020/k12-note-2020-global-dual-sim-td-lte-128gb-xt2083-4.json b/data/smartphone/lenovo/2020/k12-note-2020-global-dual-sim-td-lte-128gb-xt2083-4.json new file mode 100644 index 00000000000..7ec6165c516 --- /dev/null +++ b/data/smartphone/lenovo/2020/k12-note-2020-global-dual-sim-td-lte-128gb-xt2083-4.json @@ -0,0 +1,41 @@ +{ + "slug": "k12-note-2020-global-dual-sim-td-lte-128gb-xt2083-4", + "name": "K12 Note 2020 Global Dual SIM TD-LTE 128GB XT2083-4", + "brand": "lenovo", + "soc": "snapdragon-662", + "release_date": "2020-11-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belgium , Bulgaria , Czech , France , Germany , Hungary , India , Indonesia , Italy , Malaysia , Netherlands , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Spain , Switzerland , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/lenovo/2020/k12-pro-2020-dual-sim-td-lte-cn-64gb-xt2091-7.json b/data/smartphone/lenovo/2020/k12-pro-2020-dual-sim-td-lte-cn-64gb-xt2091-7.json new file mode 100644 index 00000000000..98b3e4f7fde --- /dev/null +++ b/data/smartphone/lenovo/2020/k12-pro-2020-dual-sim-td-lte-cn-64gb-xt2091-7.json @@ -0,0 +1,43 @@ +{ + "slug": "k12-pro-2020-dual-sim-td-lte-cn-64gb-xt2091-7", + "name": "K12 Pro 2020 Dual SIM TD-LTE CN 64GB XT2091-7", + "brand": "lenovo", + "soc": "snapdragon-662", + "release_date": "2020-12-12", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 221.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.8, + "resolution": "720x1640", + "type": "Color IPS TFT LCD display", + "ppi": 263 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 899, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2020/k12-pro-2020-global-dual-sim-td-lte-64gb-xt2091-8.json b/data/smartphone/lenovo/2020/k12-pro-2020-global-dual-sim-td-lte-64gb-xt2091-8.json new file mode 100644 index 00000000000..54a5ceac879 --- /dev/null +++ b/data/smartphone/lenovo/2020/k12-pro-2020-global-dual-sim-td-lte-64gb-xt2091-8.json @@ -0,0 +1,42 @@ +{ + "slug": "k12-pro-2020-global-dual-sim-td-lte-64gb-xt2091-8", + "name": "K12 Pro 2020 Global Dual SIM TD-LTE 64GB XT2091-8", + "brand": "lenovo", + "soc": "snapdragon-662", + "release_date": "2020-12-01", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 221.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.8, + "resolution": "720x1640", + "type": "Color IPS TFT LCD display", + "ppi": 263 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Malaysia , Philippines , Russia , Thailand , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , North America , Oceania , Southeast Asia" +} diff --git a/data/smartphone/lenovo/2020/legion-phone-duel-5g-premium-edition-global-dual-sim-td-lte-256gb-l79031.json b/data/smartphone/lenovo/2020/legion-phone-duel-5g-premium-edition-global-dual-sim-td-lte-256gb-l79031.json new file mode 100644 index 00000000000..1ea79c14e0d --- /dev/null +++ b/data/smartphone/lenovo/2020/legion-phone-duel-5g-premium-edition-global-dual-sim-td-lte-256gb-l79031.json @@ -0,0 +1,44 @@ +{ + "slug": "legion-phone-duel-5g-premium-edition-global-dual-sim-td-lte-256gb-l79031", + "name": "Legion Phone Duel 5G Premium Edition Global Dual SIM TD-LTE 256GB L79031", + "brand": "lenovo", + "soc": "snapdragon-865-plus", + "release_date": "2020-10-01", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 239.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 799, + "market_countries": "Austria , Belgium , Brazil , Cyprus , Czech , Egypt , France , Greece , Germany , HK , Indonesia , Israel , Italy , Lebanon , Malaysia , Netherlands , Poland , Portugal , Russia , Saudi Arabia , Singapore , South Africa , Spain , Taiwan , Thailand , Turkey , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/lenovo/2020/legion-phone-duel-5g-top-edition-global-dual-sim-td-lte-256gb-l79031.json b/data/smartphone/lenovo/2020/legion-phone-duel-5g-top-edition-global-dual-sim-td-lte-256gb-l79031.json new file mode 100644 index 00000000000..57947342457 --- /dev/null +++ b/data/smartphone/lenovo/2020/legion-phone-duel-5g-top-edition-global-dual-sim-td-lte-256gb-l79031.json @@ -0,0 +1,44 @@ +{ + "slug": "legion-phone-duel-5g-top-edition-global-dual-sim-td-lte-256gb-l79031", + "name": "Legion Phone Duel 5G Top Edition Global Dual SIM TD-LTE 256GB L79031", + "brand": "lenovo", + "soc": "snapdragon-865-plus", + "release_date": "2020-10-01", + "ram_gb": 16.0, + "battery_mah": 5000, + "weight_g": 239.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 899, + "market_countries": "Austria , Belgium , Brazil , Cyprus , Czech , Egypt , France , Greece , Germany , HK , Indonesia , Israel , Italy , Lebanon , Malaysia , Netherlands , Poland , Portugal , Russia , Saudi Arabia , Singapore , South Africa , Spain , Taiwan , Thailand , Turkey , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/lenovo/2020/legion-phone-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-l79031.json b/data/smartphone/lenovo/2020/legion-phone-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-l79031.json new file mode 100644 index 00000000000..28718da4a21 --- /dev/null +++ b/data/smartphone/lenovo/2020/legion-phone-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-l79031.json @@ -0,0 +1,44 @@ +{ + "slug": "legion-phone-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-l79031", + "name": "Legion Phone Pro 5G Premium Edition Dual SIM TD-LTE CN 128GB L79031", + "brand": "lenovo", + "soc": "snapdragon-865-plus", + "release_date": "2020-07-01", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 239.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 3499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2020/legion-phone-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l79031.json b/data/smartphone/lenovo/2020/legion-phone-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l79031.json new file mode 100644 index 00000000000..0f2d373b414 --- /dev/null +++ b/data/smartphone/lenovo/2020/legion-phone-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l79031.json @@ -0,0 +1,44 @@ +{ + "slug": "legion-phone-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l79031", + "name": "Legion Phone Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB L79031", + "brand": "lenovo", + "soc": "snapdragon-865-plus", + "release_date": "2020-07-01", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 239.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 3599, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2020/legion-phone-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-l79031.json b/data/smartphone/lenovo/2020/legion-phone-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-l79031.json new file mode 100644 index 00000000000..028b134a9aa --- /dev/null +++ b/data/smartphone/lenovo/2020/legion-phone-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-l79031.json @@ -0,0 +1,44 @@ +{ + "slug": "legion-phone-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-l79031", + "name": "Legion Phone Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB L79031", + "brand": "lenovo", + "soc": "snapdragon-865-plus", + "release_date": "2020-07-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 239.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 3399, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2020/legion-phone-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-l79031.json b/data/smartphone/lenovo/2020/legion-phone-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-l79031.json new file mode 100644 index 00000000000..dbbd71db40e --- /dev/null +++ b/data/smartphone/lenovo/2020/legion-phone-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-l79031.json @@ -0,0 +1,43 @@ +{ + "slug": "legion-phone-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-l79031", + "name": "Legion Phone Pro 5G Top Edition Dual SIM TD-LTE CN 512GB L79031", + "brand": "lenovo", + "soc": "snapdragon-865-plus", + "release_date": "2020-07-01", + "ram_gb": 16.0, + "battery_mah": 5000, + "weight_g": 239.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2020/lemon-k12-dual-sim-td-lte-cn-xt2081-4.json b/data/smartphone/lenovo/2020/lemon-k12-dual-sim-td-lte-cn-xt2081-4.json new file mode 100644 index 00000000000..5c0994a02e2 --- /dev/null +++ b/data/smartphone/lenovo/2020/lemon-k12-dual-sim-td-lte-cn-xt2081-4.json @@ -0,0 +1,43 @@ +{ + "slug": "lemon-k12-dual-sim-td-lte-cn-xt2081-4", + "name": "Lemon K12 Dual SIM TD-LTE CN XT2081-4", + "brand": "lenovo", + "soc": "snapdragon-460", + "release_date": "2020-12-11", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 699, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2020/z6-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l79041.json b/data/smartphone/lenovo/2020/z6-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l79041.json new file mode 100644 index 00000000000..c8a9afa83c4 --- /dev/null +++ b/data/smartphone/lenovo/2020/z6-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l79041.json @@ -0,0 +1,42 @@ +{ + "slug": "z6-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l79041", + "name": "Z6 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB L79041", + "brand": "lenovo", + "soc": "snapdragon-855", + "release_date": "2020-01-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2021/k12-2020-global-dual-sim-td-lte-32gb-xt2095-4.json b/data/smartphone/lenovo/2021/k12-2020-global-dual-sim-td-lte-32gb-xt2095-4.json new file mode 100644 index 00000000000..6f36d159c3a --- /dev/null +++ b/data/smartphone/lenovo/2021/k12-2020-global-dual-sim-td-lte-32gb-xt2095-4.json @@ -0,0 +1,43 @@ +{ + "slug": "k12-2020-global-dual-sim-td-lte-32gb-xt2095-4", + "name": "K12 2020 Global Dual SIM TD-LTE 32GB XT2095-4", + "brand": "lenovo", + "soc": "helio-g25", + "release_date": "2021-02-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 119, + "market_countries": "Armenia , Egypt , Jordan , Kazakhstan , Kuwait , Lebanon , Malaysia , Philippines , Russia , Saudi Arabia , Thailand , Tunisie , Turkey , UAE", + "market_regions": "Africa , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia" +} diff --git a/data/smartphone/lenovo/2021/k13-note-2021-global-dual-sim-td-lte-128gb-xt2127-3.json b/data/smartphone/lenovo/2021/k13-note-2021-global-dual-sim-td-lte-128gb-xt2127-3.json new file mode 100644 index 00000000000..827626bb547 --- /dev/null +++ b/data/smartphone/lenovo/2021/k13-note-2021-global-dual-sim-td-lte-128gb-xt2127-3.json @@ -0,0 +1,42 @@ +{ + "slug": "k13-note-2021-global-dual-sim-td-lte-128gb-xt2127-3", + "name": "K13 Note 2021 Global Dual SIM TD-LTE 128GB XT2127-3", + "brand": "lenovo", + "soc": "snapdragon-460", + "release_date": "2021-06-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Poland , Romania , Russia , Saudi Arabia , Serbia , UAE , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/lenovo/2021/k13-pro-2021-global-dual-sim-td-lte-128gb-xt2129-3.json b/data/smartphone/lenovo/2021/k13-pro-2021-global-dual-sim-td-lte-128gb-xt2129-3.json new file mode 100644 index 00000000000..500047dee3f --- /dev/null +++ b/data/smartphone/lenovo/2021/k13-pro-2021-global-dual-sim-td-lte-128gb-xt2129-3.json @@ -0,0 +1,43 @@ +{ + "slug": "k13-pro-2021-global-dual-sim-td-lte-128gb-xt2129-3", + "name": "K13 Pro 2021 Global Dual SIM TD-LTE 128GB XT2129-3", + "brand": "lenovo", + "soc": "snapdragon-662", + "release_date": "2021-08-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bulgaria , Jordan , Kuwait , Poland , Romania , Russia , Saudi Arabia , Serbia , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/lenovo/2021/k14-2021-global-dual-sim-td-lte-32gb-xt2155-4.json b/data/smartphone/lenovo/2021/k14-2021-global-dual-sim-td-lte-32gb-xt2155-4.json new file mode 100644 index 00000000000..eee127f048b --- /dev/null +++ b/data/smartphone/lenovo/2021/k14-2021-global-dual-sim-td-lte-32gb-xt2155-4.json @@ -0,0 +1,42 @@ +{ + "slug": "k14-2021-global-dual-sim-td-lte-32gb-xt2155-4", + "name": "K14 2021 Global Dual SIM TD-LTE 32GB XT2155-4", + "brand": "lenovo", + "soc": "unisoc-t606", + "release_date": "2021-10-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belgium , Bulgaria , Cyprus , Czech , Estonia , Finland , France , Greece , Germany , Hungary , Italy , Latvia , Lebanon , Lithuania , Netherlands , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , UAE", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/lenovo/2021/k14-plus-2021-global-dual-sim-td-lte-64gb-xt2159-5-xt2159-8.json b/data/smartphone/lenovo/2021/k14-plus-2021-global-dual-sim-td-lte-64gb-xt2159-5-xt2159-8.json new file mode 100644 index 00000000000..1f7342afe92 --- /dev/null +++ b/data/smartphone/lenovo/2021/k14-plus-2021-global-dual-sim-td-lte-64gb-xt2159-5-xt2159-8.json @@ -0,0 +1,43 @@ +{ + "slug": "k14-plus-2021-global-dual-sim-td-lte-64gb-xt2159-5-xt2159-8", + "name": "K14 Plus 2021 Global Dual SIM TD-LTE 64GB XT2159-5 / XT2159-8", + "brand": "lenovo", + "soc": "tiger-t700", + "release_date": "2021-11-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belarus , Cyprus , Czech , France , Germany , Greece , Italy , Poland , Romania , Slovakia , Spain , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/lenovo/2021/legion-phone-2-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l70081.json b/data/smartphone/lenovo/2021/legion-phone-2-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l70081.json new file mode 100644 index 00000000000..ba7ed036ccd --- /dev/null +++ b/data/smartphone/lenovo/2021/legion-phone-2-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l70081.json @@ -0,0 +1,44 @@ +{ + "slug": "legion-phone-2-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l70081", + "name": "Legion Phone 2 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB L70081", + "brand": "lenovo", + "soc": "snapdragon-888", + "release_date": "2021-04-01", + "ram_gb": 16.0, + "battery_mah": 5500, + "weight_g": 262.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 4799, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2021/legion-phone-2-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-l70081.json b/data/smartphone/lenovo/2021/legion-phone-2-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-l70081.json new file mode 100644 index 00000000000..c0b4768852d --- /dev/null +++ b/data/smartphone/lenovo/2021/legion-phone-2-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-l70081.json @@ -0,0 +1,43 @@ +{ + "slug": "legion-phone-2-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-l70081", + "name": "Legion Phone 2 Pro 5G Premium Edition Dual SIM TD-LTE CN 512GB L70081", + "brand": "lenovo", + "soc": "snapdragon-888", + "release_date": "2021-04-01", + "ram_gb": 16.0, + "battery_mah": 5500, + "weight_g": 262.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2021/legion-phone-2-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-l70081.json b/data/smartphone/lenovo/2021/legion-phone-2-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-l70081.json new file mode 100644 index 00000000000..a172031d57a --- /dev/null +++ b/data/smartphone/lenovo/2021/legion-phone-2-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-l70081.json @@ -0,0 +1,44 @@ +{ + "slug": "legion-phone-2-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-l70081", + "name": "Legion Phone 2 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB L70081", + "brand": "lenovo", + "soc": "snapdragon-888", + "release_date": "2021-04-01", + "ram_gb": 12.0, + "battery_mah": 5500, + "weight_g": 262.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 4099, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2021/legion-phone-2-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-l70081.json b/data/smartphone/lenovo/2021/legion-phone-2-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-l70081.json new file mode 100644 index 00000000000..e6621c303ee --- /dev/null +++ b/data/smartphone/lenovo/2021/legion-phone-2-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-l70081.json @@ -0,0 +1,44 @@ +{ + "slug": "legion-phone-2-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-l70081", + "name": "Legion Phone 2 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB L70081", + "brand": "lenovo", + "soc": "snapdragon-888", + "release_date": "2021-04-01", + "ram_gb": 12.0, + "battery_mah": 5500, + "weight_g": 262.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 4399, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2021/legion-phone-2-pro-5g-top-edition-dual-sim-td-lte-cn-256gb-l70081.json b/data/smartphone/lenovo/2021/legion-phone-2-pro-5g-top-edition-dual-sim-td-lte-cn-256gb-l70081.json new file mode 100644 index 00000000000..5c9b8907db5 --- /dev/null +++ b/data/smartphone/lenovo/2021/legion-phone-2-pro-5g-top-edition-dual-sim-td-lte-cn-256gb-l70081.json @@ -0,0 +1,43 @@ +{ + "slug": "legion-phone-2-pro-5g-top-edition-dual-sim-td-lte-cn-256gb-l70081", + "name": "Legion Phone 2 Pro 5G Top Edition Dual SIM TD-LTE CN 256GB L70081", + "brand": "lenovo", + "soc": "snapdragon-888", + "release_date": "2021-04-01", + "ram_gb": 18.0, + "battery_mah": 5500, + "weight_g": 262.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2021/legion-phone-2-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-l70081.json b/data/smartphone/lenovo/2021/legion-phone-2-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-l70081.json new file mode 100644 index 00000000000..5954fec491b --- /dev/null +++ b/data/smartphone/lenovo/2021/legion-phone-2-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-l70081.json @@ -0,0 +1,43 @@ +{ + "slug": "legion-phone-2-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-l70081", + "name": "Legion Phone 2 Pro 5G Top Edition Dual SIM TD-LTE CN 512GB L70081", + "brand": "lenovo", + "soc": "snapdragon-888", + "release_date": "2021-04-01", + "ram_gb": 18.0, + "battery_mah": 5500, + "weight_g": 262.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/lenovo/2021/legion-phone-duel-2-5g-premium-edition-global-dual-sim-td-lte-512gb-l70081.json b/data/smartphone/lenovo/2021/legion-phone-duel-2-5g-premium-edition-global-dual-sim-td-lte-512gb-l70081.json new file mode 100644 index 00000000000..466cf5d8afc --- /dev/null +++ b/data/smartphone/lenovo/2021/legion-phone-duel-2-5g-premium-edition-global-dual-sim-td-lte-512gb-l70081.json @@ -0,0 +1,44 @@ +{ + "slug": "legion-phone-duel-2-5g-premium-edition-global-dual-sim-td-lte-512gb-l70081", + "name": "Legion Phone Duel 2 5G Premium Edition Global Dual SIM TD-LTE 512GB L70081", + "brand": "lenovo", + "soc": "snapdragon-888", + "release_date": "2021-04-01", + "ram_gb": 16.0, + "battery_mah": 5500, + "weight_g": 262.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 799, + "market_countries": "Austria , Belgium , Brazil , Canada , Cyprus , Czech , Denmark , Egypt , France , Germany , Greece , HK , Israel , Italy , Lebanon , Malaysia , Netherlands , Poland , Portugal , Russia , Saudi Arabia , Singapore , Slovakia , Slovenia , South Africa , Spain , Taiwan , Thailand , Turkey , UAE , UK , Ukraine , USA", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/lenovo/2021/legion-phone-duel-2-5g-standard-edition-global-dual-sim-td-lte-256gb-l70081.json b/data/smartphone/lenovo/2021/legion-phone-duel-2-5g-standard-edition-global-dual-sim-td-lte-256gb-l70081.json new file mode 100644 index 00000000000..b989d9d6a74 --- /dev/null +++ b/data/smartphone/lenovo/2021/legion-phone-duel-2-5g-standard-edition-global-dual-sim-td-lte-256gb-l70081.json @@ -0,0 +1,44 @@ +{ + "slug": "legion-phone-duel-2-5g-standard-edition-global-dual-sim-td-lte-256gb-l70081", + "name": "Legion Phone Duel 2 5G Standard Edition Global Dual SIM TD-LTE 256GB L70081", + "brand": "lenovo", + "soc": "snapdragon-888", + "release_date": "2021-04-01", + "ram_gb": 12.0, + "battery_mah": 5500, + "weight_g": 262.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 699, + "market_countries": "Austria , Belgium , Brazil , Canada , Cyprus , Czech , Denmark , Egypt , France , Germany , Greece , HK , Israel , Italy , Lebanon , Malaysia , Netherlands , Poland , Portugal , Russia , Saudi Arabia , Singapore , Slovakia , Slovenia , South Africa , Spain , Taiwan , Thailand , Turkey , UAE , UK , Ukraine , USA", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/lg/2017/as110-k-series-k3-2017-lte.json b/data/smartphone/lg/2017/as110-k-series-k3-2017-lte.json new file mode 100644 index 00000000000..d84ff1a7e35 --- /dev/null +++ b/data/smartphone/lg/2017/as110-k-series-k3-2017-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "as110-k-series-k3-2017-lte", + "name": "AS110 K Series K3 2017 LTE", + "brand": "lg", + "soc": "snapdragon-210", + "release_date": "2017-04-01", + "ram_gb": 1.0, + "battery_mah": 2100, + "weight_g": 132.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "6.0", + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 4.49, + "resolution": "480x854", + "type": "Color IPS TFT LCD display", + "ppi": 218 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2017/h873u-g6-lte-a-128gb-g6-plus.json b/data/smartphone/lg/2017/h873u-g6-lte-a-128gb-g6-plus.json new file mode 100644 index 00000000000..b36d11fe898 --- /dev/null +++ b/data/smartphone/lg/2017/h873u-g6-lte-a-128gb-g6-plus.json @@ -0,0 +1,41 @@ +{ + "slug": "h873u-g6-lte-a-128gb-g6-plus", + "name": "H873U G6+ LTE-A 128GB / G6 Plus", + "brand": "lg", + "soc": "snapdragon-821", + "release_date": "2017-12-01", + "ram_gb": 4.0, + "battery_mah": 3300, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.7, + "resolution": "1440x2880", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2017/l157bl-rebel-3-lte.json b/data/smartphone/lg/2017/l157bl-rebel-3-lte.json new file mode 100644 index 00000000000..df061e32383 --- /dev/null +++ b/data/smartphone/lg/2017/l157bl-rebel-3-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "l157bl-rebel-3-lte", + "name": "L157BL Rebel 3 LTE", + "brand": "lg", + "soc": "snapdragon-210", + "release_date": "2017-09-01", + "ram_gb": 2.0, + "battery_mah": 2500, + "weight_g": 138.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "6.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "480x854", + "type": "Color TN-TFT LCD display", + "ppi": 196 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2017/l158vl-rebel-3-lte.json b/data/smartphone/lg/2017/l158vl-rebel-3-lte.json new file mode 100644 index 00000000000..27eff7868f8 --- /dev/null +++ b/data/smartphone/lg/2017/l158vl-rebel-3-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "l158vl-rebel-3-lte", + "name": "L158VL Rebel 3 LTE", + "brand": "lg", + "soc": "snapdragon-210", + "release_date": "2017-10-01", + "ram_gb": 2.0, + "battery_mah": 2500, + "weight_g": 138.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "6.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "480x854", + "type": "Color TN-TFT LCD display", + "ppi": 196 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2017/l163bl-fiesta-2-lte-a.json b/data/smartphone/lg/2017/l163bl-fiesta-2-lte-a.json new file mode 100644 index 00000000000..fd953b3e29d --- /dev/null +++ b/data/smartphone/lg/2017/l163bl-fiesta-2-lte-a.json @@ -0,0 +1,41 @@ +{ + "slug": "l163bl-fiesta-2-lte-a", + "name": "L163BL Fiesta 2 LTE-A", + "brand": "lg", + "soc": "snapdragon-425", + "release_date": "2017-10-01", + "ram_gb": 2.0, + "battery_mah": 4500, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2017/l164vl-fiesta-2-lte-a.json b/data/smartphone/lg/2017/l164vl-fiesta-2-lte-a.json new file mode 100644 index 00000000000..df6f9ff86a4 --- /dev/null +++ b/data/smartphone/lg/2017/l164vl-fiesta-2-lte-a.json @@ -0,0 +1,41 @@ +{ + "slug": "l164vl-fiesta-2-lte-a", + "name": "L164VL Fiesta 2 LTE-A", + "brand": "lg", + "soc": "snapdragon-425", + "release_date": "2017-10-01", + "ram_gb": 2.0, + "battery_mah": 4500, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2017/rs501-k-series-k20-lra-2017-lte.json b/data/smartphone/lg/2017/rs501-k-series-k20-lra-2017-lte.json new file mode 100644 index 00000000000..edef8b9e829 --- /dev/null +++ b/data/smartphone/lg/2017/rs501-k-series-k20-lra-2017-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "rs501-k-series-k20-lra-2017-lte", + "name": "RS501 K Series K20 LRA 2017 LTE", + "brand": "lg", + "soc": "snapdragon-425", + "release_date": "2017-05-01", + "ram_gb": 2.0, + "battery_mah": 2800, + "weight_g": 142.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.28, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 278 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2017/v300k-v30-signature-edition-td-lte-256gb.json b/data/smartphone/lg/2017/v300k-v30-signature-edition-td-lte-256gb.json new file mode 100644 index 00000000000..1f4594423e0 --- /dev/null +++ b/data/smartphone/lg/2017/v300k-v30-signature-edition-td-lte-256gb.json @@ -0,0 +1,41 @@ +{ + "slug": "v300k-v30-signature-edition-td-lte-256gb", + "name": "V300K V30 Signature Edition TD-LTE 256GB", + "brand": "lg", + "soc": "snapdragon-835", + "release_date": "2017-12-01", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2017/v300k-v30-td-lte.json b/data/smartphone/lg/2017/v300k-v30-td-lte.json new file mode 100644 index 00000000000..5c826a6f4c9 --- /dev/null +++ b/data/smartphone/lg/2017/v300k-v30-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "v300k-v30-td-lte", + "name": "V300K V30+ TD-LTE", + "brand": "lg", + "soc": "snapdragon-835", + "release_date": "2017-09-21", + "ram_gb": 4.0, + "battery_mah": 3300, + "weight_g": 158.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2017/v300l-v30-td-lte.json b/data/smartphone/lg/2017/v300l-v30-td-lte.json new file mode 100644 index 00000000000..2848eb9d174 --- /dev/null +++ b/data/smartphone/lg/2017/v300l-v30-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "v300l-v30-td-lte", + "name": "V300L V30+ TD-LTE", + "brand": "lg", + "soc": "snapdragon-835", + "release_date": "2017-09-21", + "ram_gb": 4.0, + "battery_mah": 3300, + "weight_g": 158.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2017/v300s-v30-signature-edition-td-lte-256gb.json b/data/smartphone/lg/2017/v300s-v30-signature-edition-td-lte-256gb.json new file mode 100644 index 00000000000..9f2b6725b0a --- /dev/null +++ b/data/smartphone/lg/2017/v300s-v30-signature-edition-td-lte-256gb.json @@ -0,0 +1,41 @@ +{ + "slug": "v300s-v30-signature-edition-td-lte-256gb", + "name": "V300S V30 Signature Edition TD-LTE 256GB", + "brand": "lg", + "soc": "snapdragon-835", + "release_date": "2017-12-01", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2018/android-one-x5-td-lte-jp-x5-lg.json b/data/smartphone/lg/2018/android-one-x5-td-lte-jp-x5-lg.json new file mode 100644 index 00000000000..da7541e7bf5 --- /dev/null +++ b/data/smartphone/lg/2018/android-one-x5-td-lte-jp-x5-lg.json @@ -0,0 +1,41 @@ +{ + "slug": "android-one-x5-td-lte-jp-x5-lg", + "name": "Android One X5 TD-LTE JP X5-LG", + "brand": "lg", + "soc": "snapdragon-835", + "release_date": "2018-12-13", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 158.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2018/g710n-g7-thinq-td-lte-kr.json b/data/smartphone/lg/2018/g710n-g7-thinq-td-lte-kr.json new file mode 100644 index 00000000000..0fbae925f84 --- /dev/null +++ b/data/smartphone/lg/2018/g710n-g7-thinq-td-lte-kr.json @@ -0,0 +1,41 @@ +{ + "slug": "g710n-g7-thinq-td-lte-kr", + "name": "G710N G7 ThinQ TD-LTE KR", + "brand": "lg", + "soc": "snapdragon-845", + "release_date": "2018-05-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2018/it-wimax-2-lgv36.json b/data/smartphone/lg/2018/it-wimax-2-lgv36.json new file mode 100644 index 00000000000..f89cbfa7504 --- /dev/null +++ b/data/smartphone/lg/2018/it-wimax-2-lgv36.json @@ -0,0 +1,41 @@ +{ + "slug": "it-wimax-2-lgv36", + "name": "it WiMAX 2+ LGV36", + "brand": "lg", + "soc": "snapdragon-425", + "release_date": "2018-11-09", + "ram_gb": 3.0, + "battery_mah": 2500, + "weight_g": 140.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2018/l-03k-style-lte-jp.json b/data/smartphone/lg/2018/l-03k-style-lte-jp.json new file mode 100644 index 00000000000..60fab60b7b3 --- /dev/null +++ b/data/smartphone/lg/2018/l-03k-style-lte-jp.json @@ -0,0 +1,41 @@ +{ + "slug": "l-03k-style-lte-jp", + "name": "L-03K Style LTE JP", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2018-06-22", + "ram_gb": 4.0, + "battery_mah": 2890, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 16.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2018/l413dl-premier-pro-lte.json b/data/smartphone/lg/2018/l413dl-premier-pro-lte.json new file mode 100644 index 00000000000..944c79756f3 --- /dev/null +++ b/data/smartphone/lg/2018/l413dl-premier-pro-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "l413dl-premier-pro-lte", + "name": "L413DL Premier Pro LTE", + "brand": "lg", + "soc": "snapdragon-425", + "release_date": "2018-05-01", + "ram_gb": 2.0, + "battery_mah": 2880, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.3, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 277 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/l713dl-stylo-4-lte-us.json b/data/smartphone/lg/2018/l713dl-stylo-4-lte-us.json new file mode 100644 index 00000000000..e80ded158cd --- /dev/null +++ b/data/smartphone/lg/2018/l713dl-stylo-4-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "l713dl-stylo-4-lte-us", + "name": "L713DL Stylo 4 LTE US", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2018-08-01", + "ram_gb": 2.0, + "battery_mah": 3300, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/lmg710awmh-g7-thinq-lte-a-latam.json b/data/smartphone/lg/2018/lmg710awmh-g7-thinq-lte-a-latam.json new file mode 100644 index 00000000000..3f2274ab018 --- /dev/null +++ b/data/smartphone/lg/2018/lmg710awmh-g7-thinq-lte-a-latam.json @@ -0,0 +1,41 @@ +{ + "slug": "lmg710awmh-g7-thinq-lte-a-latam", + "name": "LMG710AWMH G7 ThinQ LTE-A LATAM", + "brand": "lg", + "soc": "snapdragon-845", + "release_date": "2018-07-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Chile , Ecuador , Mexico , Puerto Rico", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/lg/2018/lmg710eaw-g7-thinq-dual-sim-td-lte-apac.json b/data/smartphone/lg/2018/lmg710eaw-g7-thinq-dual-sim-td-lte-apac.json new file mode 100644 index 00000000000..459ccdfc78e --- /dev/null +++ b/data/smartphone/lg/2018/lmg710eaw-g7-thinq-dual-sim-td-lte-apac.json @@ -0,0 +1,41 @@ +{ + "slug": "lmg710eaw-g7-thinq-dual-sim-td-lte-apac", + "name": "LMG710EAW G7+ ThinQ Dual SIM TD-LTE APAC", + "brand": "lg", + "soc": "snapdragon-845", + "release_date": "2018-06-01", + "ram_gb": 6.0, + "battery_mah": 3000, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "HK , India , Indonesia , Singapore , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/lg/2018/lmg710em-g7-thinq-td-lte-emea-latam.json b/data/smartphone/lg/2018/lmg710em-g7-thinq-td-lte-emea-latam.json new file mode 100644 index 00000000000..0af155cdc57 --- /dev/null +++ b/data/smartphone/lg/2018/lmg710em-g7-thinq-td-lte-emea-latam.json @@ -0,0 +1,41 @@ +{ + "slug": "lmg710em-g7-thinq-td-lte-emea-latam", + "name": "LMG710EM G7 ThinQ TD-LTE EMEA LATAM", + "brand": "lg", + "soc": "snapdragon-845", + "release_date": "2018-06-18", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Bulgaria , Costa Rica , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Guatemala , Honduras , Hungary , Ireland , Israel , Italy , Latvia , Lithuania , Netherlands , Nicaragua , Norway , Panama , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Slovenia , South Africa , Spain , Sweden , Switzerland , Turkey , UAE , UK", + "market_regions": "Africa , Central America , Eastern Europe , Europe , Middle East , South America , Western Europe" +} diff --git a/data/smartphone/lg/2018/lmg710emw-g7-thinq-dual-sim-td-lte-apac-latam.json b/data/smartphone/lg/2018/lmg710emw-g7-thinq-dual-sim-td-lte-apac-latam.json new file mode 100644 index 00000000000..7d55b951257 --- /dev/null +++ b/data/smartphone/lg/2018/lmg710emw-g7-thinq-dual-sim-td-lte-apac-latam.json @@ -0,0 +1,41 @@ +{ + "slug": "lmg710emw-g7-thinq-dual-sim-td-lte-apac-latam", + "name": "LMG710EMW G7 ThinQ Dual SIM TD-LTE APAC LATAM", + "brand": "lg", + "soc": "snapdragon-845", + "release_date": "2018-07-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Brazil , Costa Rica , Guatemala , HK , Honduras , Nicaragua , NZ , Panama", + "market_regions": "Asia , Australia , Central America , South America , Southeast Asia" +} diff --git a/data/smartphone/lg/2018/lmg710pm-g7-thinq-td-lte-us.json b/data/smartphone/lg/2018/lmg710pm-g7-thinq-td-lte-us.json new file mode 100644 index 00000000000..8a16bffc34b --- /dev/null +++ b/data/smartphone/lg/2018/lmg710pm-g7-thinq-td-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "lmg710pm-g7-thinq-td-lte-us", + "name": "LMG710PM G7 ThinQ TD-LTE US", + "brand": "lg", + "soc": "snapdragon-845", + "release_date": "2018-06-02", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/lmg710tm-g7-thinq-td-lte-us.json b/data/smartphone/lg/2018/lmg710tm-g7-thinq-td-lte-us.json new file mode 100644 index 00000000000..e91c823d88d --- /dev/null +++ b/data/smartphone/lg/2018/lmg710tm-g7-thinq-td-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "lmg710tm-g7-thinq-td-lte-us", + "name": "LMG710TM G7 ThinQ TD-LTE US", + "brand": "lg", + "soc": "snapdragon-845", + "release_date": "2018-06-02", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/lmg710ulm-g7-thinq-td-lte-na.json b/data/smartphone/lg/2018/lmg710ulm-g7-thinq-td-lte-na.json new file mode 100644 index 00000000000..8a10349b076 --- /dev/null +++ b/data/smartphone/lg/2018/lmg710ulm-g7-thinq-td-lte-na.json @@ -0,0 +1,41 @@ +{ + "slug": "lmg710ulm-g7-thinq-td-lte-na", + "name": "LMG710ULM G7 ThinQ TD-LTE NA", + "brand": "lg", + "soc": "snapdragon-845", + "release_date": "2018-06-02", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/lmg710vm-g7-thinq-xlte-us-g710vmp.json b/data/smartphone/lg/2018/lmg710vm-g7-thinq-xlte-us-g710vmp.json new file mode 100644 index 00000000000..a777a678331 --- /dev/null +++ b/data/smartphone/lg/2018/lmg710vm-g7-thinq-xlte-us-g710vmp.json @@ -0,0 +1,41 @@ +{ + "slug": "lmg710vm-g7-thinq-xlte-us-g710vmp", + "name": "LMG710VM G7 ThinQ XLTE US / G710VMP", + "brand": "lg", + "soc": "snapdragon-845", + "release_date": "2018-06-02", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/lmg710vmx-g7-thinq-lte-a-us-g710vmx.json b/data/smartphone/lg/2018/lmg710vmx-g7-thinq-lte-a-us-g710vmx.json new file mode 100644 index 00000000000..894ce560525 --- /dev/null +++ b/data/smartphone/lg/2018/lmg710vmx-g7-thinq-lte-a-us-g710vmx.json @@ -0,0 +1,41 @@ +{ + "slug": "lmg710vmx-g7-thinq-lte-a-us-g710vmx", + "name": "LMG710VMX G7 ThinQ LTE-A US G710VMX", + "brand": "lg", + "soc": "snapdragon-845", + "release_date": "2018-06-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/lmq710wa-q-stylo-4-lte-a-ca.json b/data/smartphone/lg/2018/lmq710wa-q-stylo-4-lte-a-ca.json new file mode 100644 index 00000000000..6181c0f1b4f --- /dev/null +++ b/data/smartphone/lg/2018/lmq710wa-q-stylo-4-lte-a-ca.json @@ -0,0 +1,41 @@ +{ + "slug": "lmq710wa-q-stylo-4-lte-a-ca", + "name": "LMQ710WA Q Stylo+ 4 LTE-A CA", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2018-08-03", + "ram_gb": 3.0, + "battery_mah": 3300, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/lmq710xm-q-stylus-td-lte-jp.json b/data/smartphone/lg/2018/lmq710xm-q-stylus-td-lte-jp.json new file mode 100644 index 00000000000..e535a6f8ec4 --- /dev/null +++ b/data/smartphone/lg/2018/lmq710xm-q-stylus-td-lte-jp.json @@ -0,0 +1,41 @@ +{ + "slug": "lmq710xm-q-stylus-td-lte-jp", + "name": "LMQ710XM Q Stylus TD-LTE JP", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2018-12-07", + "ram_gb": 3.0, + "battery_mah": 3300, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2018/lmq850ea-g7-fit-td-lte-apac-latam-64gb-q850ea.json b/data/smartphone/lg/2018/lmq850ea-g7-fit-td-lte-apac-latam-64gb-q850ea.json new file mode 100644 index 00000000000..5c9a750a3b0 --- /dev/null +++ b/data/smartphone/lg/2018/lmq850ea-g7-fit-td-lte-apac-latam-64gb-q850ea.json @@ -0,0 +1,41 @@ +{ + "slug": "lmq850ea-g7-fit-td-lte-apac-latam-64gb-q850ea", + "name": "LMQ850EA G7 Fit TD-LTE APAC LATAM 64GB Q850EA", + "brand": "lg", + "soc": "snapdragon-821", + "release_date": "2018-11-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 158.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Chile , Colombia , NZ , Peru", + "market_regions": "Australia , South America" +} diff --git a/data/smartphone/lg/2018/lmq850eaw-g7-fit-dual-sim-td-lte-apac-latam-64gb-q850eaw.json b/data/smartphone/lg/2018/lmq850eaw-g7-fit-dual-sim-td-lte-apac-latam-64gb-q850eaw.json new file mode 100644 index 00000000000..c58faed940e --- /dev/null +++ b/data/smartphone/lg/2018/lmq850eaw-g7-fit-dual-sim-td-lte-apac-latam-64gb-q850eaw.json @@ -0,0 +1,41 @@ +{ + "slug": "lmq850eaw-g7-fit-dual-sim-td-lte-apac-latam-64gb-q850eaw", + "name": "LMQ850EAW G7 Fit Dual SIM TD-LTE APAC LATAM 64GB Q850EAW", + "brand": "lg", + "soc": "snapdragon-821", + "release_date": "2018-11-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 158.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Ecuador , HK , NZ , Peru", + "market_regions": "Asia , Australia , South America , Southeast Asia" +} diff --git a/data/smartphone/lg/2018/lmq850em-g7-fit-td-lte-emea.json b/data/smartphone/lg/2018/lmq850em-g7-fit-td-lte-emea.json new file mode 100644 index 00000000000..458017047e0 --- /dev/null +++ b/data/smartphone/lg/2018/lmq850em-g7-fit-td-lte-emea.json @@ -0,0 +1,41 @@ +{ + "slug": "lmq850em-g7-fit-td-lte-emea", + "name": "LMQ850EM G7 Fit TD-LTE EMEA", + "brand": "lg", + "soc": "snapdragon-821", + "release_date": "2018-11-06", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 158.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Belgium , Cyprus , Croatia , Czech , Denmark , France , Germany , Greece , Hungary , Ireland , Italy , Norway , Poland , Portugal , Russia , Romania , Slovakia , Slovenia , Spain , Sweden , Switzerland , Turkey , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East" +} diff --git a/data/smartphone/lg/2018/lmq850emw-g7-fit-dual-sim-td-lte-emea.json b/data/smartphone/lg/2018/lmq850emw-g7-fit-dual-sim-td-lte-emea.json new file mode 100644 index 00000000000..263208db318 --- /dev/null +++ b/data/smartphone/lg/2018/lmq850emw-g7-fit-dual-sim-td-lte-emea.json @@ -0,0 +1,41 @@ +{ + "slug": "lmq850emw-g7-fit-dual-sim-td-lte-emea", + "name": "LMQ850EMW G7 Fit Dual SIM TD-LTE EMEA", + "brand": "lg", + "soc": "snapdragon-821", + "release_date": "2018-11-06", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 158.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Croatia , Czech , Denmark , Finland , France , Germany , Hungary , Italy , Norway , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , Spain , Sweden , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East" +} diff --git a/data/smartphone/lg/2018/lmq910um-g7-one-td-lte-na.json b/data/smartphone/lg/2018/lmq910um-g7-one-td-lte-na.json new file mode 100644 index 00000000000..6d679c8eb6d --- /dev/null +++ b/data/smartphone/lg/2018/lmq910um-g7-one-td-lte-na.json @@ -0,0 +1,41 @@ +{ + "slug": "lmq910um-g7-one-td-lte-na", + "name": "LMQ910UM G7 One TD-LTE NA", + "brand": "lg", + "soc": "snapdragon-835", + "release_date": "2018-10-12", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/lmv350awmh-v35-thinq-dual-sim-td-lte-latam.json b/data/smartphone/lg/2018/lmv350awmh-v35-thinq-dual-sim-td-lte-latam.json new file mode 100644 index 00000000000..a7274790a1a --- /dev/null +++ b/data/smartphone/lg/2018/lmv350awmh-v35-thinq-dual-sim-td-lte-latam.json @@ -0,0 +1,41 @@ +{ + "slug": "lmv350awmh-v35-thinq-dual-sim-td-lte-latam", + "name": "LMV350AWMH V35 ThinQ Dual SIM TD-LTE LATAM", + "brand": "lg", + "soc": "snapdragon-845", + "release_date": "2018-08-01", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 157.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Mexico , Puerto Rico", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/lg/2018/lmv350eaw-v35-thinq-dual-sim-lte-a-latam-128gb.json b/data/smartphone/lg/2018/lmv350eaw-v35-thinq-dual-sim-lte-a-latam-128gb.json new file mode 100644 index 00000000000..48b96756343 --- /dev/null +++ b/data/smartphone/lg/2018/lmv350eaw-v35-thinq-dual-sim-lte-a-latam-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "lmv350eaw-v35-thinq-dual-sim-lte-a-latam-128gb", + "name": "LMV350EAW V35 ThinQ Dual SIM LTE-A LATAM 128GB", + "brand": "lg", + "soc": "snapdragon-845", + "release_date": "2018-07-01", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 157.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil", + "market_regions": "South America" +} diff --git a/data/smartphone/lg/2018/lmv350em-v35-thinq-dual-sim-lte-a-latam.json b/data/smartphone/lg/2018/lmv350em-v35-thinq-dual-sim-lte-a-latam.json new file mode 100644 index 00000000000..f91a0b0d8b3 --- /dev/null +++ b/data/smartphone/lg/2018/lmv350em-v35-thinq-dual-sim-lte-a-latam.json @@ -0,0 +1,41 @@ +{ + "slug": "lmv350em-v35-thinq-dual-sim-lte-a-latam", + "name": "LMV350EM V35 ThinQ Dual SIM LTE-A LATAM", + "brand": "lg", + "soc": "snapdragon-845", + "release_date": "2018-08-01", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 157.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Guatemala , Honduras , Panama", + "market_regions": "Central America" +} diff --git a/data/smartphone/lg/2018/lmx210ap-phoenix-4-lte-us-x210apm.json b/data/smartphone/lg/2018/lmx210ap-phoenix-4-lte-us-x210apm.json new file mode 100644 index 00000000000..9df43f28c55 --- /dev/null +++ b/data/smartphone/lg/2018/lmx210ap-phoenix-4-lte-us-x210apm.json @@ -0,0 +1,42 @@ +{ + "slug": "lmx210ap-phoenix-4-lte-us-x210apm", + "name": "LMX210AP Phoenix 4 LTE US X210APM", + "brand": "lg", + "soc": "snapdragon-425", + "release_date": "2018-10-01", + "ram_gb": 2.0, + "battery_mah": 2500, + "weight_g": 142.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 90, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/lmx210bm-k-series-k9-2018-dual-sim-lte-latam.json b/data/smartphone/lg/2018/lmx210bm-k-series-k9-2018-dual-sim-lte-latam.json new file mode 100644 index 00000000000..79b85a4f496 --- /dev/null +++ b/data/smartphone/lg/2018/lmx210bm-k-series-k9-2018-dual-sim-lte-latam.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx210bm-k-series-k9-2018-dual-sim-lte-latam", + "name": "LMX210BM K Series K9 2018 Dual SIM LTE LATAM", + "brand": "lg", + "soc": "snapdragon-212", + "release_date": "2018-08-13", + "ram_gb": 2.0, + "battery_mah": 2410, + "weight_g": 148.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Costa Rica , Guatemala , Honduras , Nicaragua , Panama", + "market_regions": "Central America" +} diff --git a/data/smartphone/lg/2018/lmx210bmw-k-series-k9-tv-2018-dual-sim-lte-latam.json b/data/smartphone/lg/2018/lmx210bmw-k-series-k9-tv-2018-dual-sim-lte-latam.json new file mode 100644 index 00000000000..ae44272a11f --- /dev/null +++ b/data/smartphone/lg/2018/lmx210bmw-k-series-k9-tv-2018-dual-sim-lte-latam.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx210bmw-k-series-k9-tv-2018-dual-sim-lte-latam", + "name": "LMX210BMW K Series K9 TV 2018 Dual SIM LTE LATAM", + "brand": "lg", + "soc": "snapdragon-212", + "release_date": "2018-08-13", + "ram_gb": 2.0, + "battery_mah": 2410, + "weight_g": 148.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Brazil", + "market_regions": "South America" +} diff --git a/data/smartphone/lg/2018/lmx210cm-fortune-2-lte-us-k-series-k8-2018.json b/data/smartphone/lg/2018/lmx210cm-fortune-2-lte-us-k-series-k8-2018.json new file mode 100644 index 00000000000..050c6de8d2e --- /dev/null +++ b/data/smartphone/lg/2018/lmx210cm-fortune-2-lte-us-k-series-k8-2018.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx210cm-fortune-2-lte-us-k-series-k8-2018", + "name": "LMX210CM Fortune 2 LTE US / K Series K8 2018", + "brand": "lg", + "soc": "snapdragon-425", + "release_date": "2018-05-01", + "ram_gb": 2.0, + "battery_mah": 2410, + "weight_g": 140.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/lmx210cmr-risio-3-lte-us.json b/data/smartphone/lg/2018/lmx210cmr-risio-3-lte-us.json new file mode 100644 index 00000000000..0db5e6637dc --- /dev/null +++ b/data/smartphone/lg/2018/lmx210cmr-risio-3-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx210cmr-risio-3-lte-us", + "name": "LMX210CMR Risio 3 LTE US", + "brand": "lg", + "soc": "snapdragon-425", + "release_date": "2018-05-01", + "ram_gb": 2.0, + "battery_mah": 2500, + "weight_g": 140.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 3.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/lmx210em-k-series-k9-2018-lte-emea.json b/data/smartphone/lg/2018/lmx210em-k-series-k9-2018-lte-emea.json new file mode 100644 index 00000000000..2015f899f16 --- /dev/null +++ b/data/smartphone/lg/2018/lmx210em-k-series-k9-2018-lte-emea.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx210em-k-series-k9-2018-lte-emea", + "name": "LMX210EM K Series K9 2018 LTE EMEA", + "brand": "lg", + "soc": "snapdragon-212", + "release_date": "2018-04-18", + "ram_gb": 2.0, + "battery_mah": 2500, + "weight_g": 152.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Austria , Czech , Germany , Hungary , Italy", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/lg/2018/lmx210emw-k-series-k9-2018-dual-sim-lte-emea.json b/data/smartphone/lg/2018/lmx210emw-k-series-k9-2018-dual-sim-lte-emea.json new file mode 100644 index 00000000000..bc4462d5dd8 --- /dev/null +++ b/data/smartphone/lg/2018/lmx210emw-k-series-k9-2018-dual-sim-lte-emea.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx210emw-k-series-k9-2018-dual-sim-lte-emea", + "name": "LMX210EMW K Series K9 2018 Dual SIM LTE EMEA", + "brand": "lg", + "soc": "snapdragon-212", + "release_date": "2018-04-18", + "ram_gb": 2.0, + "battery_mah": 2500, + "weight_g": 152.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Czech , Germany , Italy", + "market_regions": "Europe , Western Europe" +} diff --git a/data/smartphone/lg/2018/lmx210fm-k-series-k9-2018-dual-sim-lte-latam.json b/data/smartphone/lg/2018/lmx210fm-k-series-k9-2018-dual-sim-lte-latam.json new file mode 100644 index 00000000000..e6554e260f9 --- /dev/null +++ b/data/smartphone/lg/2018/lmx210fm-k-series-k9-2018-dual-sim-lte-latam.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx210fm-k-series-k9-2018-dual-sim-lte-latam", + "name": "LMX210FM K Series K9 2018 Dual SIM LTE LATAM", + "brand": "lg", + "soc": "snapdragon-212", + "release_date": "2018-09-01", + "ram_gb": 2.0, + "battery_mah": 2410, + "weight_g": 148.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Costa Rica , Guatemala , Honduras , Nicaragua , Panama , Peru", + "market_regions": "Central America , South America" +} diff --git a/data/smartphone/lg/2018/lmx210hm-k-series-k9-2018-lte-latam-16gb.json b/data/smartphone/lg/2018/lmx210hm-k-series-k9-2018-lte-latam-16gb.json new file mode 100644 index 00000000000..431734a232b --- /dev/null +++ b/data/smartphone/lg/2018/lmx210hm-k-series-k9-2018-lte-latam-16gb.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx210hm-k-series-k9-2018-lte-latam-16gb", + "name": "LMX210HM K Series K9 2018 LTE LATAM 16GB", + "brand": "lg", + "soc": "snapdragon-212", + "release_date": "2018-08-13", + "ram_gb": 2.0, + "battery_mah": 2410, + "weight_g": 148.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Argentina , Mexico , Panama", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/lg/2018/lmx210hm-k-series-k9-2018-lte-latam-32gb-lmx210rm.json b/data/smartphone/lg/2018/lmx210hm-k-series-k9-2018-lte-latam-32gb-lmx210rm.json new file mode 100644 index 00000000000..03bde81a0dc --- /dev/null +++ b/data/smartphone/lg/2018/lmx210hm-k-series-k9-2018-lte-latam-32gb-lmx210rm.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx210hm-k-series-k9-2018-lte-latam-32gb-lmx210rm", + "name": "LMX210HM K Series K9 2018 LTE LATAM 32GB / LMX210RM", + "brand": "lg", + "soc": "snapdragon-212", + "release_date": "2018-08-13", + "ram_gb": 2.0, + "battery_mah": 2410, + "weight_g": 148.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Argentina , Chile , Mexico , Panama", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/lg/2018/lmx210imw-k-series-k9-2018-candy-dual-sim-td-lte-in.json b/data/smartphone/lg/2018/lmx210imw-k-series-k9-2018-candy-dual-sim-td-lte-in.json new file mode 100644 index 00000000000..2aa263432ca --- /dev/null +++ b/data/smartphone/lg/2018/lmx210imw-k-series-k9-2018-candy-dual-sim-td-lte-in.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx210imw-k-series-k9-2018-candy-dual-sim-td-lte-in", + "name": "LMX210IMW K Series K9 2018 Candy Dual SIM TD-LTE IN", + "brand": "lg", + "soc": "snapdragon-212", + "release_date": "2018-09-02", + "ram_gb": 2.0, + "battery_mah": 2500, + "weight_g": 152.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2018/lmx210jm-k-series-k9-2018-td-lte-au.json b/data/smartphone/lg/2018/lmx210jm-k-series-k9-2018-td-lte-au.json new file mode 100644 index 00000000000..d9ef1aedd4b --- /dev/null +++ b/data/smartphone/lg/2018/lmx210jm-k-series-k9-2018-td-lte-au.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx210jm-k-series-k9-2018-td-lte-au", + "name": "LMX210JM K Series K9 2018 TD-LTE AU", + "brand": "lg", + "soc": "snapdragon-212", + "release_date": "2018-12-28", + "ram_gb": 2.0, + "battery_mah": 2500, + "weight_g": 152.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Australia", + "market_regions": "Australia" +} diff --git a/data/smartphone/lg/2018/lmx210nmw-k-series-k9-2018-dual-sim-lte-emea.json b/data/smartphone/lg/2018/lmx210nmw-k-series-k9-2018-dual-sim-lte-emea.json new file mode 100644 index 00000000000..e0445c90371 --- /dev/null +++ b/data/smartphone/lg/2018/lmx210nmw-k-series-k9-2018-dual-sim-lte-emea.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx210nmw-k-series-k9-2018-dual-sim-lte-emea", + "name": "LMX210NMW K Series K9 2018 Dual SIM LTE EMEA", + "brand": "lg", + "soc": "snapdragon-212", + "release_date": "2018-03-24", + "ram_gb": 2.0, + "battery_mah": 2500, + "weight_g": 152.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Russia , Ukraine", + "market_regions": "Eastern Europe , Europe" +} diff --git a/data/smartphone/lg/2018/lmx210wm-k-series-k9-2018-lte-ca-16gb-x210wm.json b/data/smartphone/lg/2018/lmx210wm-k-series-k9-2018-lte-ca-16gb-x210wm.json new file mode 100644 index 00000000000..3a87a3965aa --- /dev/null +++ b/data/smartphone/lg/2018/lmx210wm-k-series-k9-2018-lte-ca-16gb-x210wm.json @@ -0,0 +1,42 @@ +{ + "slug": "lmx210wm-k-series-k9-2018-lte-ca-16gb-x210wm", + "name": "LMX210WM K Series K9 2018 LTE CA 16GB X210WM", + "brand": "lg", + "soc": "snapdragon-212", + "release_date": "2018-09-01", + "ram_gb": 2.0, + "battery_mah": 2410, + "weight_g": 148.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "msrp_usd": 139, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/lmx210ymw-k-series-k9-2018-dual-sim-td-lte-apac.json b/data/smartphone/lg/2018/lmx210ymw-k-series-k9-2018-dual-sim-td-lte-apac.json new file mode 100644 index 00000000000..5c3b1f0c803 --- /dev/null +++ b/data/smartphone/lg/2018/lmx210ymw-k-series-k9-2018-dual-sim-td-lte-apac.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx210ymw-k-series-k9-2018-dual-sim-td-lte-apac", + "name": "LMX210YMW K Series K9 2018 Dual SIM TD-LTE APAC", + "brand": "lg", + "soc": "snapdragon-212", + "release_date": "2018-07-01", + "ram_gb": 2.0, + "battery_mah": 2500, + "weight_g": 152.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "HK , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/lg/2018/lmx212tal-k-series-k9-2018-lte-latam-16gb.json b/data/smartphone/lg/2018/lmx212tal-k-series-k9-2018-lte-latam-16gb.json new file mode 100644 index 00000000000..3517ab0045a --- /dev/null +++ b/data/smartphone/lg/2018/lmx212tal-k-series-k9-2018-lte-latam-16gb.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx212tal-k-series-k9-2018-lte-latam-16gb", + "name": "LMX212TAL K Series K9 2018 LTE LATAM 16GB", + "brand": "lg", + "soc": "snapdragon-212", + "release_date": "2018-09-01", + "ram_gb": 2.0, + "battery_mah": 2410, + "weight_g": 148.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Costa Rica , Honduras", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/lg/2018/lmx410tk-k-series-k30-lte.json b/data/smartphone/lg/2018/lmx410tk-k-series-k30-lte.json new file mode 100644 index 00000000000..2c33cf739aa --- /dev/null +++ b/data/smartphone/lg/2018/lmx410tk-k-series-k30-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx410tk-k-series-k30-lte", + "name": "LMX410TK K Series K30 LTE", + "brand": "lg", + "soc": "snapdragon-425", + "release_date": "2018-05-01", + "ram_gb": 2.0, + "battery_mah": 2880, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.3, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 277 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/lmx410um-k-series-k30-xfinity-mobile-lte.json b/data/smartphone/lg/2018/lmx410um-k-series-k30-xfinity-mobile-lte.json new file mode 100644 index 00000000000..471f6b869c7 --- /dev/null +++ b/data/smartphone/lg/2018/lmx410um-k-series-k30-xfinity-mobile-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx410um-k-series-k30-xfinity-mobile-lte", + "name": "LMX410UM K Series K30 Xfinity Mobile LTE", + "brand": "lg", + "soc": "snapdragon-425", + "release_date": "2018-05-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.3, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 277 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/lmx510wm-x-series-x-power-3-2018-lte-ca.json b/data/smartphone/lg/2018/lmx510wm-x-series-x-power-3-2018-lte-ca.json new file mode 100644 index 00000000000..113b296467c --- /dev/null +++ b/data/smartphone/lg/2018/lmx510wm-x-series-x-power-3-2018-lte-ca.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx510wm-x-series-x-power-3-2018-lte-ca", + "name": "LMX510WM X Series X Power 3 2018 LTE CA", + "brand": "lg", + "soc": "snapdragon-425", + "release_date": "2018-07-24", + "ram_gb": 2.0, + "battery_mah": 4500, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/m700an-q6-dual-sim-lte-a-64gb.json b/data/smartphone/lg/2018/m700an-q6-dual-sim-lte-a-64gb.json new file mode 100644 index 00000000000..d6e4c669845 --- /dev/null +++ b/data/smartphone/lg/2018/m700an-q6-dual-sim-lte-a-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "m700an-q6-dual-sim-lte-a-64gb", + "name": "M700AN Q6+ Dual SIM LTE-A 64GB", + "brand": "lg", + "soc": "snapdragon-435", + "release_date": "2018-01-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 149.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Armenia , Kazakhstan , Pakistan , Russia , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/lg/2018/q610ma-q7-td-lte-us.json b/data/smartphone/lg/2018/q610ma-q7-td-lte-us.json new file mode 100644 index 00000000000..3663c19e081 --- /dev/null +++ b/data/smartphone/lg/2018/q610ma-q7-td-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "q610ma-q7-td-lte-us", + "name": "Q610MA Q7+ TD-LTE US", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2018-08-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 16.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/q610ta-q7-td-lte-us.json b/data/smartphone/lg/2018/q610ta-q7-td-lte-us.json new file mode 100644 index 00000000000..f7f00e749dd --- /dev/null +++ b/data/smartphone/lg/2018/q610ta-q7-td-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "q610ta-q7-td-lte-us", + "name": "Q610TA Q7+ TD-LTE US", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2018-08-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 16.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/q710cs-stylo-4-lte-us.json b/data/smartphone/lg/2018/q710cs-stylo-4-lte-us.json new file mode 100644 index 00000000000..4811cea8f48 --- /dev/null +++ b/data/smartphone/lg/2018/q710cs-stylo-4-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "q710cs-stylo-4-lte-us", + "name": "Q710CS Stylo 4 LTE US", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2018-06-01", + "ram_gb": 3.0, + "battery_mah": 3300, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/q710ms-stylo-4-td-lte-us.json b/data/smartphone/lg/2018/q710ms-stylo-4-td-lte-us.json new file mode 100644 index 00000000000..1f37f6091e2 --- /dev/null +++ b/data/smartphone/lg/2018/q710ms-stylo-4-td-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "q710ms-stylo-4-td-lte-us", + "name": "Q710MS Stylo 4 TD-LTE US", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2018-06-01", + "ram_gb": 2.0, + "battery_mah": 3300, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/q710ts-stylo-4-td-lte-us-q710pr.json b/data/smartphone/lg/2018/q710ts-stylo-4-td-lte-us-q710pr.json new file mode 100644 index 00000000000..c18ff176de7 --- /dev/null +++ b/data/smartphone/lg/2018/q710ts-stylo-4-td-lte-us-q710pr.json @@ -0,0 +1,41 @@ +{ + "slug": "q710ts-stylo-4-td-lte-us-q710pr", + "name": "Q710TS Stylo 4 TD-LTE US / Q710PR", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2018-07-13", + "ram_gb": 2.0, + "battery_mah": 3300, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Puerto Rico , USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/lg/2018/q710ulm-stylo-4-lte-us.json b/data/smartphone/lg/2018/q710ulm-stylo-4-lte-us.json new file mode 100644 index 00000000000..cfae42174b2 --- /dev/null +++ b/data/smartphone/lg/2018/q710ulm-stylo-4-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "q710ulm-stylo-4-lte-us", + "name": "Q710ULM Stylo 4 LTE US", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2018-08-02", + "ram_gb": 3.0, + "battery_mah": 3300, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/q710uls-stylo-4-lte-us.json b/data/smartphone/lg/2018/q710uls-stylo-4-lte-us.json new file mode 100644 index 00000000000..75a26fc0196 --- /dev/null +++ b/data/smartphone/lg/2018/q710uls-stylo-4-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "q710uls-stylo-4-lte-us", + "name": "Q710ULS Stylo 4 LTE US", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2018-08-01", + "ram_gb": 2.0, + "battery_mah": 3300, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/q710us-stylo-4-lte-us.json b/data/smartphone/lg/2018/q710us-stylo-4-lte-us.json new file mode 100644 index 00000000000..aa7e455aaa0 --- /dev/null +++ b/data/smartphone/lg/2018/q710us-stylo-4-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "q710us-stylo-4-lte-us", + "name": "Q710US Stylo 4 LTE US", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2018-07-01", + "ram_gb": 2.0, + "battery_mah": 3300, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/q720k-q7-td-lte-kr.json b/data/smartphone/lg/2018/q720k-q7-td-lte-kr.json new file mode 100644 index 00000000000..6a39f767377 --- /dev/null +++ b/data/smartphone/lg/2018/q720k-q7-td-lte-kr.json @@ -0,0 +1,41 @@ +{ + "slug": "q720k-q7-td-lte-kr", + "name": "Q720K Q7 TD-LTE KR", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2018-06-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2018/q720l-q7-td-lte-kr.json b/data/smartphone/lg/2018/q720l-q7-td-lte-kr.json new file mode 100644 index 00000000000..77d2600fcfb --- /dev/null +++ b/data/smartphone/lg/2018/q720l-q7-td-lte-kr.json @@ -0,0 +1,41 @@ +{ + "slug": "q720l-q7-td-lte-kr", + "name": "Q720L Q7 TD-LTE KR", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2018-06-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2018/q720s-q7-td-lte-kr.json b/data/smartphone/lg/2018/q720s-q7-td-lte-kr.json new file mode 100644 index 00000000000..471439fd55c --- /dev/null +++ b/data/smartphone/lg/2018/q720s-q7-td-lte-kr.json @@ -0,0 +1,41 @@ +{ + "slug": "q720s-q7-td-lte-kr", + "name": "Q720S Q7 TD-LTE KR", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2018-06-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2018/q725k-q7-td-lte-kr.json b/data/smartphone/lg/2018/q725k-q7-td-lte-kr.json new file mode 100644 index 00000000000..2e6210fa6e7 --- /dev/null +++ b/data/smartphone/lg/2018/q725k-q7-td-lte-kr.json @@ -0,0 +1,41 @@ +{ + "slug": "q725k-q7-td-lte-kr", + "name": "Q725K Q7+ TD-LTE KR", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2018-06-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 16.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2018/q725l-q7-td-lte-kr.json b/data/smartphone/lg/2018/q725l-q7-td-lte-kr.json new file mode 100644 index 00000000000..3c015b26f9e --- /dev/null +++ b/data/smartphone/lg/2018/q725l-q7-td-lte-kr.json @@ -0,0 +1,41 @@ +{ + "slug": "q725l-q7-td-lte-kr", + "name": "Q725L Q7+ TD-LTE KR", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2018-06-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 16.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2018/q725s-q7-td-lte-kr.json b/data/smartphone/lg/2018/q725s-q7-td-lte-kr.json new file mode 100644 index 00000000000..ec9d689b426 --- /dev/null +++ b/data/smartphone/lg/2018/q725s-q7-td-lte-kr.json @@ -0,0 +1,41 @@ +{ + "slug": "q725s-q7-td-lte-kr", + "name": "Q725S Q7+ TD-LTE KR", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2018-06-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 16.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2018/q727k-q7-bts-edition-td-lte-kr.json b/data/smartphone/lg/2018/q727k-q7-bts-edition-td-lte-kr.json new file mode 100644 index 00000000000..c8c79d1f97e --- /dev/null +++ b/data/smartphone/lg/2018/q727k-q7-bts-edition-td-lte-kr.json @@ -0,0 +1,41 @@ +{ + "slug": "q727k-q7-bts-edition-td-lte-kr", + "name": "Q727K Q7 BTS Edition TD-LTE KR", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2018-09-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2018/q815l-q-series-q8-2018-td-lte-kr.json b/data/smartphone/lg/2018/q815l-q-series-q8-2018-td-lte-kr.json new file mode 100644 index 00000000000..1c16f9469b6 --- /dev/null +++ b/data/smartphone/lg/2018/q815l-q-series-q8-2018-td-lte-kr.json @@ -0,0 +1,41 @@ +{ + "slug": "q815l-q-series-q8-2018-td-lte-kr", + "name": "Q815L Q Series Q8 2018 TD-LTE KR", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2018-08-01", + "ram_gb": 4.0, + "battery_mah": 3300, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2018/q815s-q-series-q8-2018-td-lte-kr.json b/data/smartphone/lg/2018/q815s-q-series-q8-2018-td-lte-kr.json new file mode 100644 index 00000000000..cc26bff4b5a --- /dev/null +++ b/data/smartphone/lg/2018/q815s-q-series-q8-2018-td-lte-kr.json @@ -0,0 +1,41 @@ +{ + "slug": "q815s-q-series-q8-2018-td-lte-kr", + "name": "Q815S Q Series Q8 2018 TD-LTE KR", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2018-08-01", + "ram_gb": 4.0, + "battery_mah": 3300, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2018/us998r-v30s-thinq-td-lte-us.json b/data/smartphone/lg/2018/us998r-v30s-thinq-td-lte-us.json new file mode 100644 index 00000000000..6ab36eefbee --- /dev/null +++ b/data/smartphone/lg/2018/us998r-v30s-thinq-td-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "us998r-v30s-thinq-td-lte-us", + "name": "US998R V30S ThinQ TD-LTE US", + "brand": "lg", + "soc": "snapdragon-835", + "release_date": "2018-06-03", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 158.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/v300kr-v30s-thinq-td-lte.json b/data/smartphone/lg/2018/v300kr-v30s-thinq-td-lte.json new file mode 100644 index 00000000000..a91db18c093 --- /dev/null +++ b/data/smartphone/lg/2018/v300kr-v30s-thinq-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "v300kr-v30s-thinq-td-lte", + "name": "V300KR V30S ThinQ TD-LTE", + "brand": "lg", + "soc": "snapdragon-835", + "release_date": "2018-03-01", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 158.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2018/v300kw-v30s-thinq-td-lte.json b/data/smartphone/lg/2018/v300kw-v30s-thinq-td-lte.json new file mode 100644 index 00000000000..4fe4fecf926 --- /dev/null +++ b/data/smartphone/lg/2018/v300kw-v30s-thinq-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "v300kw-v30s-thinq-td-lte", + "name": "V300KW V30S+ ThinQ TD-LTE", + "brand": "lg", + "soc": "snapdragon-835", + "release_date": "2018-03-01", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 158.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2018/v300l-v30s-thinq-td-lte.json b/data/smartphone/lg/2018/v300l-v30s-thinq-td-lte.json new file mode 100644 index 00000000000..55e31200851 --- /dev/null +++ b/data/smartphone/lg/2018/v300l-v30s-thinq-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "v300l-v30s-thinq-td-lte", + "name": "V300L V30S ThinQ TD-LTE", + "brand": "lg", + "soc": "snapdragon-835", + "release_date": "2018-03-01", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 158.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2018/v300lw-v30s-thinq-td-lte.json b/data/smartphone/lg/2018/v300lw-v30s-thinq-td-lte.json new file mode 100644 index 00000000000..3a39ba19878 --- /dev/null +++ b/data/smartphone/lg/2018/v300lw-v30s-thinq-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "v300lw-v30s-thinq-td-lte", + "name": "V300LW V30S+ ThinQ TD-LTE", + "brand": "lg", + "soc": "snapdragon-835", + "release_date": "2018-03-01", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 158.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2018/v300s-v30s-thinq-td-lte.json b/data/smartphone/lg/2018/v300s-v30s-thinq-td-lte.json new file mode 100644 index 00000000000..2d9c34ba65b --- /dev/null +++ b/data/smartphone/lg/2018/v300s-v30s-thinq-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "v300s-v30s-thinq-td-lte", + "name": "V300S V30S ThinQ TD-LTE", + "brand": "lg", + "soc": "snapdragon-835", + "release_date": "2018-03-01", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 158.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2018/v300sw-v30s-thinq-td-lte.json b/data/smartphone/lg/2018/v300sw-v30s-thinq-td-lte.json new file mode 100644 index 00000000000..2a9af441d13 --- /dev/null +++ b/data/smartphone/lg/2018/v300sw-v30s-thinq-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "v300sw-v30s-thinq-td-lte", + "name": "V300SW V30S+ ThinQ TD-LTE", + "brand": "lg", + "soc": "snapdragon-835", + "release_date": "2018-03-01", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 158.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2018/v350awm-v35-thinq-td-lte-us-lmv350awm-lmv350awa-lmv350aws.json b/data/smartphone/lg/2018/v350awm-v35-thinq-td-lte-us-lmv350awm-lmv350awa-lmv350aws.json new file mode 100644 index 00000000000..c7d12a1f6da --- /dev/null +++ b/data/smartphone/lg/2018/v350awm-v35-thinq-td-lte-us-lmv350awm-lmv350awa-lmv350aws.json @@ -0,0 +1,41 @@ +{ + "slug": "v350awm-v35-thinq-td-lte-us-lmv350awm-lmv350awa-lmv350aws", + "name": "V350AWM V35 ThinQ TD-LTE US / LMV350AWM / LMV350AWA / LMV350AWS", + "brand": "lg", + "soc": "snapdragon-845", + "release_date": "2018-06-01", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 157.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/v350n-v35-signature-edition-td-lte-kr-lmv350nos.json b/data/smartphone/lg/2018/v350n-v35-signature-edition-td-lte-kr-lmv350nos.json new file mode 100644 index 00000000000..941b8298dfd --- /dev/null +++ b/data/smartphone/lg/2018/v350n-v35-signature-edition-td-lte-kr-lmv350nos.json @@ -0,0 +1,41 @@ +{ + "slug": "v350n-v35-signature-edition-td-lte-kr-lmv350nos", + "name": "V350N V35 Signature Edition TD-LTE KR / LMV350NOS", + "brand": "lg", + "soc": "snapdragon-845", + "release_date": "2018-08-13", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 187.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2018/v350n-v35-thinq-td-lte-kr-lmv350no.json b/data/smartphone/lg/2018/v350n-v35-thinq-td-lte-kr-lmv350no.json new file mode 100644 index 00000000000..c5fb1f5723b --- /dev/null +++ b/data/smartphone/lg/2018/v350n-v35-thinq-td-lte-kr-lmv350no.json @@ -0,0 +1,41 @@ +{ + "slug": "v350n-v35-thinq-td-lte-kr-lmv350no", + "name": "V350N V35 ThinQ TD-LTE KR / LMV350NO", + "brand": "lg", + "soc": "snapdragon-845", + "release_date": "2018-06-01", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 157.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2018/v350ulm-v35-thinq-td-lte-us-lmv350ulm-lmv350ula-lmv350uls.json b/data/smartphone/lg/2018/v350ulm-v35-thinq-td-lte-us-lmv350ulm-lmv350ula-lmv350uls.json new file mode 100644 index 00000000000..29a300b2d8a --- /dev/null +++ b/data/smartphone/lg/2018/v350ulm-v35-thinq-td-lte-us-lmv350ulm-lmv350ula-lmv350uls.json @@ -0,0 +1,41 @@ +{ + "slug": "v350ulm-v35-thinq-td-lte-us-lmv350ulm-lmv350ula-lmv350uls", + "name": "V350ULM V35 ThinQ TD-LTE US / LMV350ULM / LMV350ULA / LMV350ULS", + "brand": "lg", + "soc": "snapdragon-845", + "release_date": "2018-06-01", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 157.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/v405qa7-v40-thinq-td-lte-us.json b/data/smartphone/lg/2018/v405qa7-v40-thinq-td-lte-us.json new file mode 100644 index 00000000000..cc4d6f48721 --- /dev/null +++ b/data/smartphone/lg/2018/v405qa7-v40-thinq-td-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "v405qa7-v40-thinq-td-lte-us", + "name": "V405QA7 V40 ThinQ TD-LTE US", + "brand": "lg", + "soc": "snapdragon-845", + "release_date": "2018-10-01", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 539 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/v405tab-v40-thinq-td-lte-us-v405ta.json b/data/smartphone/lg/2018/v405tab-v40-thinq-td-lte-us-v405ta.json new file mode 100644 index 00000000000..cf3d7956932 --- /dev/null +++ b/data/smartphone/lg/2018/v405tab-v40-thinq-td-lte-us-v405ta.json @@ -0,0 +1,41 @@ +{ + "slug": "v405tab-v40-thinq-td-lte-us-v405ta", + "name": "V405TAB V40 ThinQ TD-LTE US / V405TA", + "brand": "lg", + "soc": "snapdragon-845", + "release_date": "2018-10-19", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 539 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/v405ua-v40-thinq-sprint-td-lte-us.json b/data/smartphone/lg/2018/v405ua-v40-thinq-sprint-td-lte-us.json new file mode 100644 index 00000000000..24c1db5e38f --- /dev/null +++ b/data/smartphone/lg/2018/v405ua-v40-thinq-sprint-td-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "v405ua-v40-thinq-sprint-td-lte-us", + "name": "V405UA V40 ThinQ Sprint TD-LTE US", + "brand": "lg", + "soc": "snapdragon-845", + "release_date": "2018-10-18", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 539 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/v405ua-v40-thinq-td-lte-us.json b/data/smartphone/lg/2018/v405ua-v40-thinq-td-lte-us.json new file mode 100644 index 00000000000..2738cb23c1c --- /dev/null +++ b/data/smartphone/lg/2018/v405ua-v40-thinq-td-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "v405ua-v40-thinq-td-lte-us", + "name": "V405UA V40 ThinQ TD-LTE US", + "brand": "lg", + "soc": "snapdragon-845", + "release_date": "2018-10-18", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 539 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/v405ua0-v40-thinq-usc-lte-a-us.json b/data/smartphone/lg/2018/v405ua0-v40-thinq-usc-lte-a-us.json new file mode 100644 index 00000000000..a14aaae40d5 --- /dev/null +++ b/data/smartphone/lg/2018/v405ua0-v40-thinq-usc-lte-a-us.json @@ -0,0 +1,41 @@ +{ + "slug": "v405ua0-v40-thinq-usc-lte-a-us", + "name": "V405UA0 V40 ThinQ USC LTE-A US", + "brand": "lg", + "soc": "snapdragon-845", + "release_date": "2018-10-19", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 539 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/v405uab-v40-thinq-vzw-lte-a-us.json b/data/smartphone/lg/2018/v405uab-v40-thinq-vzw-lte-a-us.json new file mode 100644 index 00000000000..49114f67b02 --- /dev/null +++ b/data/smartphone/lg/2018/v405uab-v40-thinq-vzw-lte-a-us.json @@ -0,0 +1,41 @@ +{ + "slug": "v405uab-v40-thinq-vzw-lte-a-us", + "name": "V405UAB V40 ThinQ VZW LTE-A US", + "brand": "lg", + "soc": "snapdragon-845", + "release_date": "2018-10-19", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 539 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/v409n-v40-thinq-td-lte-kr-128gb.json b/data/smartphone/lg/2018/v409n-v40-thinq-td-lte-kr-128gb.json new file mode 100644 index 00000000000..3df52a7ef5a --- /dev/null +++ b/data/smartphone/lg/2018/v409n-v40-thinq-td-lte-kr-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "v409n-v40-thinq-td-lte-kr-128gb", + "name": "V409N V40 ThinQ TD-LTE KR 128GB", + "brand": "lg", + "soc": "snapdragon-845", + "release_date": "2018-10-24", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2018/x210k-x-series-x2-2018-lte-kr.json b/data/smartphone/lg/2018/x210k-x-series-x2-2018-lte-kr.json new file mode 100644 index 00000000000..eb3c3ef940d --- /dev/null +++ b/data/smartphone/lg/2018/x210k-x-series-x2-2018-lte-kr.json @@ -0,0 +1,41 @@ +{ + "slug": "x210k-x-series-x2-2018-lte-kr", + "name": "X210K X Series X2 2018 LTE KR", + "brand": "lg", + "soc": "snapdragon-212", + "release_date": "2018-06-01", + "ram_gb": 2.0, + "battery_mah": 2500, + "weight_g": 152.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2018/x210l-x-series-x2-2018-lte-kr.json b/data/smartphone/lg/2018/x210l-x-series-x2-2018-lte-kr.json new file mode 100644 index 00000000000..ed3ec701e6a --- /dev/null +++ b/data/smartphone/lg/2018/x210l-x-series-x2-2018-lte-kr.json @@ -0,0 +1,41 @@ +{ + "slug": "x210l-x-series-x2-2018-lte-kr", + "name": "X210L X Series X2 2018 LTE KR", + "brand": "lg", + "soc": "snapdragon-212", + "release_date": "2018-06-01", + "ram_gb": 2.0, + "battery_mah": 2500, + "weight_g": 152.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2018/x210s-x-series-x2-2018-lte-kr.json b/data/smartphone/lg/2018/x210s-x-series-x2-2018-lte-kr.json new file mode 100644 index 00000000000..f7e811f3a01 --- /dev/null +++ b/data/smartphone/lg/2018/x210s-x-series-x2-2018-lte-kr.json @@ -0,0 +1,41 @@ +{ + "slug": "x210s-x-series-x2-2018-lte-kr", + "name": "X210S X Series X2 2018 LTE KR", + "brand": "lg", + "soc": "snapdragon-212", + "release_date": "2018-06-01", + "ram_gb": 2.0, + "battery_mah": 2500, + "weight_g": 152.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2018/x210ulm-k-series-k8-2018-lte-us.json b/data/smartphone/lg/2018/x210ulm-k-series-k8-2018-lte-us.json new file mode 100644 index 00000000000..843ca1cd560 --- /dev/null +++ b/data/smartphone/lg/2018/x210ulm-k-series-k8-2018-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "x210ulm-k-series-k8-2018-lte-us", + "name": "X210ULM K Series K8+ 2018 LTE US", + "brand": "lg", + "soc": "snapdragon-425", + "release_date": "2018-05-01", + "ram_gb": 2.0, + "battery_mah": 2500, + "weight_g": 140.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/x210ulma-k-series-k8-2018-acg-lte-us.json b/data/smartphone/lg/2018/x210ulma-k-series-k8-2018-acg-lte-us.json new file mode 100644 index 00000000000..adc737accb5 --- /dev/null +++ b/data/smartphone/lg/2018/x210ulma-k-series-k8-2018-acg-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "x210ulma-k-series-k8-2018-acg-lte-us", + "name": "X210ULMA K Series K8+ 2018 ACG LTE US", + "brand": "lg", + "soc": "snapdragon-425", + "release_date": "2018-05-01", + "ram_gb": 2.0, + "battery_mah": 2500, + "weight_g": 140.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/x210ulmg-k-series-k8-2018-lte-us.json b/data/smartphone/lg/2018/x210ulmg-k-series-k8-2018-lte-us.json new file mode 100644 index 00000000000..3a21bd2fc88 --- /dev/null +++ b/data/smartphone/lg/2018/x210ulmg-k-series-k8-2018-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "x210ulmg-k-series-k8-2018-lte-us", + "name": "X210ULMG K Series K8 2018 LTE US", + "brand": "lg", + "soc": "snapdragon-425", + "release_date": "2018-05-01", + "ram_gb": 2.0, + "battery_mah": 2410, + "weight_g": 140.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/x210vpp-zone-4-lte-us.json b/data/smartphone/lg/2018/x210vpp-zone-4-lte-us.json new file mode 100644 index 00000000000..3dcd729e22b --- /dev/null +++ b/data/smartphone/lg/2018/x210vpp-zone-4-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "x210vpp-zone-4-lte-us", + "name": "X210VPP Zone 4 LTE US", + "brand": "lg", + "soc": "snapdragon-425", + "release_date": "2018-03-01", + "ram_gb": 2.0, + "battery_mah": 2500, + "weight_g": 140.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/x212tal-aristo-2-plus-lte-us.json b/data/smartphone/lg/2018/x212tal-aristo-2-plus-lte-us.json new file mode 100644 index 00000000000..e624d79f7bf --- /dev/null +++ b/data/smartphone/lg/2018/x212tal-aristo-2-plus-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "x212tal-aristo-2-plus-lte-us", + "name": "X212TAL Aristo 2 Plus LTE US", + "brand": "lg", + "soc": "snapdragon-425", + "release_date": "2018-06-01", + "ram_gb": 2.0, + "battery_mah": 2410, + "weight_g": 140.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/x410as-phoenix-plus-lte-a-us.json b/data/smartphone/lg/2018/x410as-phoenix-plus-lte-a-us.json new file mode 100644 index 00000000000..8a1cad1d51e --- /dev/null +++ b/data/smartphone/lg/2018/x410as-phoenix-plus-lte-a-us.json @@ -0,0 +1,41 @@ +{ + "slug": "x410as-phoenix-plus-lte-a-us", + "name": "X410AS Phoenix Plus LTE-A US", + "brand": "lg", + "soc": "snapdragon-425", + "release_date": "2018-08-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.3, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 277 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/x410cs-harmony-2-lte-a-us.json b/data/smartphone/lg/2018/x410cs-harmony-2-lte-a-us.json new file mode 100644 index 00000000000..38b22278bcf --- /dev/null +++ b/data/smartphone/lg/2018/x410cs-harmony-2-lte-a-us.json @@ -0,0 +1,41 @@ +{ + "slug": "x410cs-harmony-2-lte-a-us", + "name": "X410CS Harmony 2 LTE-A US", + "brand": "lg", + "soc": "snapdragon-425", + "release_date": "2018-08-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.3, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 277 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/x410k-x-series-x4-lte.json b/data/smartphone/lg/2018/x410k-x-series-x4-lte.json new file mode 100644 index 00000000000..691eead4431 --- /dev/null +++ b/data/smartphone/lg/2018/x410k-x-series-x4-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "x410k-x-series-x4-lte", + "name": "X410K X Series X4 LTE", + "brand": "lg", + "soc": "snapdragon-425", + "release_date": "2018-03-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.3, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 277 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2018/x410l-x-series-x4-lte.json b/data/smartphone/lg/2018/x410l-x-series-x4-lte.json new file mode 100644 index 00000000000..7e9e2291a01 --- /dev/null +++ b/data/smartphone/lg/2018/x410l-x-series-x4-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "x410l-x-series-x4-lte", + "name": "X410L X Series X4 LTE", + "brand": "lg", + "soc": "snapdragon-425", + "release_date": "2018-03-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.3, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 277 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2018/x410s-x-series-x4-lte.json b/data/smartphone/lg/2018/x410s-x-series-x4-lte.json new file mode 100644 index 00000000000..64727818d8a --- /dev/null +++ b/data/smartphone/lg/2018/x410s-x-series-x4-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "x410s-x-series-x4-lte", + "name": "X410S X Series X4 LTE", + "brand": "lg", + "soc": "snapdragon-425", + "release_date": "2018-03-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.3, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 277 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2018/x410ulmg-k-series-k30-lte-us.json b/data/smartphone/lg/2018/x410ulmg-k-series-k30-lte-us.json new file mode 100644 index 00000000000..5250228bcb0 --- /dev/null +++ b/data/smartphone/lg/2018/x410ulmg-k-series-k30-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "x410ulmg-k-series-k30-lte-us", + "name": "X410ULMG K Series K30 LTE US", + "brand": "lg", + "soc": "snapdragon-425", + "release_date": "2018-05-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.3, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 277 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2018/x410ulml-k-series-k30-lra-lte-us.json b/data/smartphone/lg/2018/x410ulml-k-series-k30-lra-lte-us.json new file mode 100644 index 00000000000..c0ca8b77edb --- /dev/null +++ b/data/smartphone/lg/2018/x410ulml-k-series-k30-lra-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "x410ulml-k-series-k30-lra-lte-us", + "name": "X410ULML K Series K30 LRA LTE US", + "brand": "lg", + "soc": "snapdragon-425", + "release_date": "2018-05-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.3, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 277 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/g8x-thinq-td-lte-jp-901lg.json b/data/smartphone/lg/2019/g8x-thinq-td-lte-jp-901lg.json new file mode 100644 index 00000000000..8b11f67b8c5 --- /dev/null +++ b/data/smartphone/lg/2019/g8x-thinq-td-lte-jp-901lg.json @@ -0,0 +1,42 @@ +{ + "slug": "g8x-thinq-td-lte-jp-901lg", + "name": "G8X ThinQ TD-LTE JP 901LG", + "brand": "lg", + "soc": "snapdragon-855", + "release_date": "2019-12-06", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 21, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2019/k-series-k50-2019-td-lte-jp-802lg.json b/data/smartphone/lg/2019/k-series-k50-2019-td-lte-jp-802lg.json new file mode 100644 index 00000000000..da2fb5471d7 --- /dev/null +++ b/data/smartphone/lg/2019/k-series-k50-2019-td-lte-jp-802lg.json @@ -0,0 +1,41 @@ +{ + "slug": "k-series-k50-2019-td-lte-jp-802lg", + "name": "K Series K50 2019 TD-LTE JP 802LG", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2019-07-06", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2019/l322dl-journey-lte-us.json b/data/smartphone/lg/2019/l322dl-journey-lte-us.json new file mode 100644 index 00000000000..1d0fdcc4109 --- /dev/null +++ b/data/smartphone/lg/2019/l322dl-journey-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "l322dl-journey-lte-us", + "name": "L322DL Journey LTE US", + "brand": "lg", + "soc": "snapdragon-425", + "release_date": "2019-08-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 147.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/l423dl-solo-lte-a-us.json b/data/smartphone/lg/2019/l423dl-solo-lte-a-us.json new file mode 100644 index 00000000000..b6e967ee516 --- /dev/null +++ b/data/smartphone/lg/2019/l423dl-solo-lte-a-us.json @@ -0,0 +1,41 @@ +{ + "slug": "l423dl-solo-lte-a-us", + "name": "L423DL Solo LTE-A US", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2019-06-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/l722dl-stylo-5-lte-a-us-q720dl.json b/data/smartphone/lg/2019/l722dl-stylo-5-lte-a-us-q720dl.json new file mode 100644 index 00000000000..5f065243b93 --- /dev/null +++ b/data/smartphone/lg/2019/l722dl-stylo-5-lte-a-us-q720dl.json @@ -0,0 +1,41 @@ +{ + "slug": "l722dl-stylo-5-lte-a-us-q720dl", + "name": "L722DL Stylo 5 LTE-A US Q720DL", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2019-09-01", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmg810ea-g8s-thinq-global-td-lte.json b/data/smartphone/lg/2019/lmg810ea-g8s-thinq-global-td-lte.json new file mode 100644 index 00000000000..d47d1913ebf --- /dev/null +++ b/data/smartphone/lg/2019/lmg810ea-g8s-thinq-global-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "lmg810ea-g8s-thinq-global-td-lte", + "name": "LMG810EA G8S ThinQ Global TD-LTE", + "brand": "lg", + "soc": "snapdragon-855", + "release_date": "2019-07-06", + "ram_gb": 6.0, + "battery_mah": 3550, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2248", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Ecuador , Israel , Peru , South Africa , Turkey , UK", + "market_regions": "Africa , Australia , Eastern Europe , Europe , Middle East , South America , Western Europe" +} diff --git a/data/smartphone/lg/2019/lmg810eaw-g8s-thinq-global-dual-sim-td-lte.json b/data/smartphone/lg/2019/lmg810eaw-g8s-thinq-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..9c3ef7354b5 --- /dev/null +++ b/data/smartphone/lg/2019/lmg810eaw-g8s-thinq-global-dual-sim-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "lmg810eaw-g8s-thinq-global-dual-sim-td-lte", + "name": "LMG810EAW G8S ThinQ Global Dual SIM TD-LTE", + "brand": "lg", + "soc": "snapdragon-855", + "release_date": "2019-06-28", + "ram_gb": 6.0, + "battery_mah": 3550, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2248", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Czech , France , Germany , Hungary , Italy , Slovakia , Spain , Taiwan , UK", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/lg/2019/lmg820n-g8-thinq-td-lte-kr-g820n.json b/data/smartphone/lg/2019/lmg820n-g8-thinq-td-lte-kr-g820n.json new file mode 100644 index 00000000000..656ea9fad06 --- /dev/null +++ b/data/smartphone/lg/2019/lmg820n-g8-thinq-td-lte-kr-g820n.json @@ -0,0 +1,42 @@ +{ + "slug": "lmg820n-g8-thinq-td-lte-kr-g820n", + "name": "LMG820N G8 ThinQ TD-LTE KR G820N", + "brand": "lg", + "soc": "snapdragon-855", + "release_date": "2019-03-01", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 565 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "charging_wired_w": 21, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2019/lmg820qm5-g8-thinq-td-lte-us-g820qm-lmg820qm7d.json b/data/smartphone/lg/2019/lmg820qm5-g8-thinq-td-lte-us-g820qm-lmg820qm7d.json new file mode 100644 index 00000000000..d07b9ea581b --- /dev/null +++ b/data/smartphone/lg/2019/lmg820qm5-g8-thinq-td-lte-us-g820qm-lmg820qm7d.json @@ -0,0 +1,42 @@ +{ + "slug": "lmg820qm5-g8-thinq-td-lte-us-g820qm-lmg820qm7d", + "name": "LMG820QM5 G8 ThinQ TD-LTE US G820QM / LMG820QM7D", + "brand": "lg", + "soc": "snapdragon-855", + "release_date": "2019-04-01", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 565 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "charging_wired_w": 21, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmg820qm7-g8-thinq-td-lte-us-g820qm-lmg820qm8.json b/data/smartphone/lg/2019/lmg820qm7-g8-thinq-td-lte-us-g820qm-lmg820qm8.json new file mode 100644 index 00000000000..ac095212ad9 --- /dev/null +++ b/data/smartphone/lg/2019/lmg820qm7-g8-thinq-td-lte-us-g820qm-lmg820qm8.json @@ -0,0 +1,42 @@ +{ + "slug": "lmg820qm7-g8-thinq-td-lte-us-g820qm-lmg820qm8", + "name": "LMG820QM7 G8 ThinQ TD-LTE US G820QM / LMG820QM8", + "brand": "lg", + "soc": "snapdragon-855", + "release_date": "2019-04-01", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 565 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "charging_wired_w": 21, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmg820tmb-g8-thinq-td-lte-us-g820tm.json b/data/smartphone/lg/2019/lmg820tmb-g8-thinq-td-lte-us-g820tm.json new file mode 100644 index 00000000000..63b2f0d3fc7 --- /dev/null +++ b/data/smartphone/lg/2019/lmg820tmb-g8-thinq-td-lte-us-g820tm.json @@ -0,0 +1,42 @@ +{ + "slug": "lmg820tmb-g8-thinq-td-lte-us-g820tm", + "name": "LMG820TMB G8 ThinQ TD-LTE US G820TM", + "brand": "lg", + "soc": "snapdragon-855", + "release_date": "2019-04-11", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 565 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "charging_wired_w": 21, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmg820um0-g8-thinq-td-lte-us-g820um.json b/data/smartphone/lg/2019/lmg820um0-g8-thinq-td-lte-us-g820um.json new file mode 100644 index 00000000000..a78c0517c7e --- /dev/null +++ b/data/smartphone/lg/2019/lmg820um0-g8-thinq-td-lte-us-g820um.json @@ -0,0 +1,42 @@ +{ + "slug": "lmg820um0-g8-thinq-td-lte-us-g820um", + "name": "LMG820UM0 G8 ThinQ TD-LTE US G820UM", + "brand": "lg", + "soc": "snapdragon-855", + "release_date": "2019-04-11", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 565 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "charging_wired_w": 21, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmg820um1-g8-thinq-td-lte-us-g820um.json b/data/smartphone/lg/2019/lmg820um1-g8-thinq-td-lte-us-g820um.json new file mode 100644 index 00000000000..671d5863f5f --- /dev/null +++ b/data/smartphone/lg/2019/lmg820um1-g8-thinq-td-lte-us-g820um.json @@ -0,0 +1,42 @@ +{ + "slug": "lmg820um1-g8-thinq-td-lte-us-g820um", + "name": "LMG820UM1 G8 ThinQ TD-LTE US G820UM", + "brand": "lg", + "soc": "snapdragon-855", + "release_date": "2019-04-11", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 565 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "charging_wired_w": 21, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmg820um2-g8-thinq-td-lte-na-g820um.json b/data/smartphone/lg/2019/lmg820um2-g8-thinq-td-lte-na-g820um.json new file mode 100644 index 00000000000..363b9390cf9 --- /dev/null +++ b/data/smartphone/lg/2019/lmg820um2-g8-thinq-td-lte-na-g820um.json @@ -0,0 +1,42 @@ +{ + "slug": "lmg820um2-g8-thinq-td-lte-na-g820um", + "name": "LMG820UM2 G8 ThinQ TD-LTE NA G820UM", + "brand": "lg", + "soc": "snapdragon-855", + "release_date": "2019-04-01", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 565 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "charging_wired_w": 21, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmg820um3-g8-thinq-td-lte-us-g820um.json b/data/smartphone/lg/2019/lmg820um3-g8-thinq-td-lte-us-g820um.json new file mode 100644 index 00000000000..e95316106d3 --- /dev/null +++ b/data/smartphone/lg/2019/lmg820um3-g8-thinq-td-lte-us-g820um.json @@ -0,0 +1,42 @@ +{ + "slug": "lmg820um3-g8-thinq-td-lte-us-g820um", + "name": "LMG820UM3 G8 ThinQ TD-LTE US G820UM", + "brand": "lg", + "soc": "snapdragon-855", + "release_date": "2019-04-01", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 565 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "charging_wired_w": 21, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmg820umb-g8-thinq-lte-a-us-g820um.json b/data/smartphone/lg/2019/lmg820umb-g8-thinq-lte-a-us-g820um.json new file mode 100644 index 00000000000..63b8878ca90 --- /dev/null +++ b/data/smartphone/lg/2019/lmg820umb-g8-thinq-lte-a-us-g820um.json @@ -0,0 +1,42 @@ +{ + "slug": "lmg820umb-g8-thinq-lte-a-us-g820um", + "name": "LMG820UMB G8 ThinQ LTE-A US G820UM", + "brand": "lg", + "soc": "snapdragon-855", + "release_date": "2019-04-11", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 565 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "charging_wired_w": 21, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmg850em-g8x-thinq-global-td-lte-g850em.json b/data/smartphone/lg/2019/lmg850em-g8x-thinq-global-td-lte-g850em.json new file mode 100644 index 00000000000..d4be3ea4fe7 --- /dev/null +++ b/data/smartphone/lg/2019/lmg850em-g8x-thinq-global-td-lte-g850em.json @@ -0,0 +1,42 @@ +{ + "slug": "lmg850em-g8x-thinq-global-td-lte-g850em", + "name": "LMG850EM G8X ThinQ Global TD-LTE G850EM", + "brand": "lg", + "soc": "snapdragon-855", + "release_date": "2019-12-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 21, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Chile , Germany , Peru , Portugal , Spain , UK", + "market_regions": "Europe , South America , Western Europe" +} diff --git a/data/smartphone/lg/2019/lmg850emw-g8x-thinq-global-dual-sim-td-lte-g850emw.json b/data/smartphone/lg/2019/lmg850emw-g8x-thinq-global-dual-sim-td-lte-g850emw.json new file mode 100644 index 00000000000..d9ff4e9fed9 --- /dev/null +++ b/data/smartphone/lg/2019/lmg850emw-g8x-thinq-global-dual-sim-td-lte-g850emw.json @@ -0,0 +1,42 @@ +{ + "slug": "lmg850emw-g8x-thinq-global-dual-sim-td-lte-g850emw", + "name": "LMG850EMW G8X ThinQ Global Dual SIM TD-LTE G850EMW", + "brand": "lg", + "soc": "snapdragon-855", + "release_date": "2019-12-12", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 21, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Czech , France , Germany , Hungary , India , Netherlands , Poland , Romania , Russia , Slovakia , Slovenia , Spain , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/lg/2019/lmg850qm-g8x-thinq-td-lte-us-g850qm7x.json b/data/smartphone/lg/2019/lmg850qm-g8x-thinq-td-lte-us-g850qm7x.json new file mode 100644 index 00000000000..c6878d0bd4b --- /dev/null +++ b/data/smartphone/lg/2019/lmg850qm-g8x-thinq-td-lte-us-g850qm7x.json @@ -0,0 +1,43 @@ +{ + "slug": "lmg850qm-g8x-thinq-td-lte-us-g850qm7x", + "name": "LMG850QM G8X ThinQ TD-LTE US G850QM7X", + "brand": "lg", + "soc": "snapdragon-855", + "release_date": "2019-11-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 21, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 950, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmg850um1-g8x-thinq-td-lte-us-g850um1.json b/data/smartphone/lg/2019/lmg850um1-g8x-thinq-td-lte-us-g850um1.json new file mode 100644 index 00000000000..32646212060 --- /dev/null +++ b/data/smartphone/lg/2019/lmg850um1-g8x-thinq-td-lte-us-g850um1.json @@ -0,0 +1,42 @@ +{ + "slug": "lmg850um1-g8x-thinq-td-lte-us-g850um1", + "name": "LMG850UM1 G8X ThinQ TD-LTE US G850UM1", + "brand": "lg", + "soc": "snapdragon-855", + "release_date": "2019-11-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 21, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmg850um9-g8x-thinq-td-lte-us-g850um9.json b/data/smartphone/lg/2019/lmg850um9-g8x-thinq-td-lte-us-g850um9.json new file mode 100644 index 00000000000..93d37d6ef10 --- /dev/null +++ b/data/smartphone/lg/2019/lmg850um9-g8x-thinq-td-lte-us-g850um9.json @@ -0,0 +1,42 @@ +{ + "slug": "lmg850um9-g8x-thinq-td-lte-us-g850um9", + "name": "LMG850UM9 G8X ThinQ TD-LTE US G850UM9", + "brand": "lg", + "soc": "snapdragon-855", + "release_date": "2019-11-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 21, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmq720am-stylo-5-lte-a-us-q720a.json b/data/smartphone/lg/2019/lmq720am-stylo-5-lte-a-us-q720a.json new file mode 100644 index 00000000000..39d6c7b8ae6 --- /dev/null +++ b/data/smartphone/lg/2019/lmq720am-stylo-5-lte-a-us-q720a.json @@ -0,0 +1,41 @@ +{ + "slug": "lmq720am-stylo-5-lte-a-us-q720a", + "name": "LMQ720AM Stylo 5+ LTE-A US Q720A", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2019-10-21", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 16.1 + }, + { + "type": "selfie", + "mp": 9.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmq720cs-stylo-5-lte-a-us-q720cs.json b/data/smartphone/lg/2019/lmq720cs-stylo-5-lte-a-us-q720cs.json new file mode 100644 index 00000000000..8df60bb8a30 --- /dev/null +++ b/data/smartphone/lg/2019/lmq720cs-stylo-5-lte-a-us-q720cs.json @@ -0,0 +1,41 @@ +{ + "slug": "lmq720cs-stylo-5-lte-a-us-q720cs", + "name": "LMQ720CS Stylo 5 LTE-A US Q720CS", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2019-07-01", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmq720ms-stylo-5-td-lte-us-q720ms.json b/data/smartphone/lg/2019/lmq720ms-stylo-5-td-lte-us-q720ms.json new file mode 100644 index 00000000000..8a9a26401d5 --- /dev/null +++ b/data/smartphone/lg/2019/lmq720ms-stylo-5-td-lte-us-q720ms.json @@ -0,0 +1,41 @@ +{ + "slug": "lmq720ms-stylo-5-td-lte-us-q720ms", + "name": "LMQ720MS Stylo 5 TD-LTE US Q720MS", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2019-08-19", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmq720ps-stylo-5-td-lte-us-q720p.json b/data/smartphone/lg/2019/lmq720ps-stylo-5-td-lte-us-q720p.json new file mode 100644 index 00000000000..68ea58e51ff --- /dev/null +++ b/data/smartphone/lg/2019/lmq720ps-stylo-5-td-lte-us-q720p.json @@ -0,0 +1,41 @@ +{ + "slug": "lmq720ps-stylo-5-td-lte-us-q720p", + "name": "LMQ720PS Stylo 5 TD-LTE US Q720P", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2019-07-19", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmq720qm-stylo-5-lte-a-us-q720qm.json b/data/smartphone/lg/2019/lmq720qm-stylo-5-lte-a-us-q720qm.json new file mode 100644 index 00000000000..e4fbef6eeb6 --- /dev/null +++ b/data/smartphone/lg/2019/lmq720qm-stylo-5-lte-a-us-q720qm.json @@ -0,0 +1,41 @@ +{ + "slug": "lmq720qm-stylo-5-lte-a-us-q720qm", + "name": "LMQ720QM Stylo 5 LTE-A US Q720QM", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2019-09-01", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmq720qm5-stylo-5-lte-a-us-q720qm5.json b/data/smartphone/lg/2019/lmq720qm5-stylo-5-lte-a-us-q720qm5.json new file mode 100644 index 00000000000..f82612e6f79 --- /dev/null +++ b/data/smartphone/lg/2019/lmq720qm5-stylo-5-lte-a-us-q720qm5.json @@ -0,0 +1,41 @@ +{ + "slug": "lmq720qm5-stylo-5-lte-a-us-q720qm5", + "name": "LMQ720QM5 Stylo 5 LTE-A US Q720QM5", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2019-09-01", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmq720qm6-stylo-5-lte-a-us-q720qm6.json b/data/smartphone/lg/2019/lmq720qm6-stylo-5-lte-a-us-q720qm6.json new file mode 100644 index 00000000000..9cfdb115cc5 --- /dev/null +++ b/data/smartphone/lg/2019/lmq720qm6-stylo-5-lte-a-us-q720qm6.json @@ -0,0 +1,41 @@ +{ + "slug": "lmq720qm6-stylo-5-lte-a-us-q720qm6", + "name": "LMQ720QM6 Stylo 5 LTE-A US Q720QM6", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2019-09-01", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmq720tsw-stylo-5-td-lte-us-q720ts.json b/data/smartphone/lg/2019/lmq720tsw-stylo-5-td-lte-us-q720ts.json new file mode 100644 index 00000000000..d6bf5b726f8 --- /dev/null +++ b/data/smartphone/lg/2019/lmq720tsw-stylo-5-td-lte-us-q720ts.json @@ -0,0 +1,41 @@ +{ + "slug": "lmq720tsw-stylo-5-td-lte-us-q720ts", + "name": "LMQ720TSW Stylo 5 TD-LTE US Q720TS", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2019-08-18", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmq720vsp-stylo-5-lte-a-us-q720v.json b/data/smartphone/lg/2019/lmq720vsp-stylo-5-lte-a-us-q720v.json new file mode 100644 index 00000000000..00dfa4ede1a --- /dev/null +++ b/data/smartphone/lg/2019/lmq720vsp-stylo-5-lte-a-us-q720v.json @@ -0,0 +1,41 @@ +{ + "slug": "lmq720vsp-stylo-5-lte-a-us-q720v", + "name": "LMQ720VSP Stylo 5 LTE-A US Q720V", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2019-08-01", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmq730n-q-series-q70-td-lte-kr-q730n.json b/data/smartphone/lg/2019/lmq730n-q-series-q70-td-lte-kr-q730n.json new file mode 100644 index 00000000000..94dde4111c4 --- /dev/null +++ b/data/smartphone/lg/2019/lmq730n-q-series-q70-td-lte-kr-q730n.json @@ -0,0 +1,41 @@ +{ + "slug": "lmq730n-q-series-q70-td-lte-kr-q730n", + "name": "LMQ730N Q Series Q70 TD-LTE KR Q730N", + "brand": "lg", + "soc": "snapdragon-675", + "release_date": "2019-09-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 16.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2019/lmq850qm-g7-fit-td-lte-us-lmq850qm5-lmq850qm6.json b/data/smartphone/lg/2019/lmq850qm-g7-fit-td-lte-us-lmq850qm5-lmq850qm6.json new file mode 100644 index 00000000000..b0865b445ad --- /dev/null +++ b/data/smartphone/lg/2019/lmq850qm-g7-fit-td-lte-us-lmq850qm5-lmq850qm6.json @@ -0,0 +1,41 @@ +{ + "slug": "lmq850qm-g7-fit-td-lte-us-lmq850qm5-lmq850qm6", + "name": "LMQ850QM G7 Fit TD-LTE US / LMQ850QM5 / LMQ850QM6", + "brand": "lg", + "soc": "snapdragon-821", + "release_date": "2019-04-07", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 158.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmq850qmd-g7-fit-td-lte-us-q850qmd.json b/data/smartphone/lg/2019/lmq850qmd-g7-fit-td-lte-us-q850qmd.json new file mode 100644 index 00000000000..f14d3e70760 --- /dev/null +++ b/data/smartphone/lg/2019/lmq850qmd-g7-fit-td-lte-us-q850qmd.json @@ -0,0 +1,41 @@ +{ + "slug": "lmq850qmd-g7-fit-td-lte-us-q850qmd", + "name": "LMQ850QMD G7 Fit TD-LTE US Q850QMD", + "brand": "lg", + "soc": "snapdragon-821", + "release_date": "2019-04-07", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 158.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmv405eb-v40-thinq-td-lte-emea.json b/data/smartphone/lg/2019/lmv405eb-v40-thinq-td-lte-emea.json new file mode 100644 index 00000000000..f2a83218a09 --- /dev/null +++ b/data/smartphone/lg/2019/lmv405eb-v40-thinq-td-lte-emea.json @@ -0,0 +1,38 @@ +{ + "slug": "lmv405eb-v40-thinq-td-lte-emea", + "name": "LMV405EB V40 ThinQ TD-LTE EMEA", + "brand": "lg", + "soc": "snapdragon-845", + "release_date": "2019-01-01", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "display": { + "size_inch": 6.38, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 539 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Cyprus , Czech , France , Germany , Greece , Hungary , Ireland , Italy , Netherlands , Portugal , Russia , Romania , Slovakia , Slovenia , Spain , Turkey , UAE , UK", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/lg/2019/lmv405ebw-v40-thinq-global-dual-sim-td-lte-128gb.json b/data/smartphone/lg/2019/lmv405ebw-v40-thinq-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..3e9598a2903 --- /dev/null +++ b/data/smartphone/lg/2019/lmv405ebw-v40-thinq-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "lmv405ebw-v40-thinq-global-dual-sim-td-lte-128gb", + "name": "LMV405EBW V40 ThinQ Global Dual SIM TD-LTE 128GB", + "brand": "lg", + "soc": "snapdragon-845", + "release_date": "2019-01-01", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 539 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Cyprus , France , Germany , Greece , Hungary , Italy , Netherlands , NZ , Portugal , Singapore , Spain , Taiwan , UAE , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/lg/2019/lmv450pm-v50-thinq-5g-td-lte-us-v450pm.json b/data/smartphone/lg/2019/lmv450pm-v50-thinq-5g-td-lte-us-v450pm.json new file mode 100644 index 00000000000..117a697e2e8 --- /dev/null +++ b/data/smartphone/lg/2019/lmv450pm-v50-thinq-5g-td-lte-us-v450pm.json @@ -0,0 +1,41 @@ +{ + "slug": "lmv450pm-v50-thinq-5g-td-lte-us-v450pm", + "name": "LMV450PM V50 ThinQ 5G TD-LTE US V450PM", + "brand": "lg", + "soc": "snapdragon-855", + "release_date": "2019-05-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmv450vmb-v50-thinq-5g-td-lte-us-v450vmb-g450vm.json b/data/smartphone/lg/2019/lmv450vmb-v50-thinq-5g-td-lte-us-v450vmb-g450vm.json new file mode 100644 index 00000000000..d7cd6bc1a02 --- /dev/null +++ b/data/smartphone/lg/2019/lmv450vmb-v50-thinq-5g-td-lte-us-v450vmb-g450vm.json @@ -0,0 +1,41 @@ +{ + "slug": "lmv450vmb-v50-thinq-5g-td-lte-us-v450vmb-g450vm", + "name": "LMV450VMB V50 ThinQ 5G TD-LTE US V450VMB / G450VM", + "brand": "lg", + "soc": "snapdragon-855", + "release_date": "2019-05-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmv500em-v50-thinq-global-5g-td-lte.json b/data/smartphone/lg/2019/lmv500em-v50-thinq-global-5g-td-lte.json new file mode 100644 index 00000000000..21e1aef5eb4 --- /dev/null +++ b/data/smartphone/lg/2019/lmv500em-v50-thinq-global-5g-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "lmv500em-v50-thinq-global-5g-td-lte", + "name": "LMV500EM V50 ThinQ Global 5G TD-LTE", + "brand": "lg", + "soc": "snapdragon-855", + "release_date": "2019-06-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Czech , Finland , France , Germany , Hungary , Ireland , Italy , Netherlands , Norway , NZ , Portugal , Russia , Slovakia , Slovenia , Spain , UK", + "market_regions": "Australia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/lg/2019/lmx130im-w-series-w10-2019-dual-sim-td-lte-in-x130im.json b/data/smartphone/lg/2019/lmx130im-w-series-w10-2019-dual-sim-td-lte-in-x130im.json new file mode 100644 index 00000000000..6e051c2e0d5 --- /dev/null +++ b/data/smartphone/lg/2019/lmx130im-w-series-w10-2019-dual-sim-td-lte-in-x130im.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx130im-w-series-w10-2019-dual-sim-td-lte-in-x130im", + "name": "LMX130IM W Series W10 2019 Dual SIM TD-LTE IN X130IM", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2019-07-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.19, + "resolution": "720x1512", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "Yes" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2019/lmx210zm-k-series-k9-2018-td-lte-emea-x210zm.json b/data/smartphone/lg/2019/lmx210zm-k-series-k9-2018-td-lte-emea-x210zm.json new file mode 100644 index 00000000000..cab1c8feaef --- /dev/null +++ b/data/smartphone/lg/2019/lmx210zm-k-series-k9-2018-td-lte-emea-x210zm.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx210zm-k-series-k9-2018-td-lte-emea-x210zm", + "name": "LMX210ZM K Series K9 2018 TD-LTE EMEA X210ZM", + "brand": "lg", + "soc": "snapdragon-212", + "release_date": "2019-01-01", + "ram_gb": 2.0, + "battery_mah": 2500, + "weight_g": 152.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Iran , South Africa , Turkey", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East" +} diff --git a/data/smartphone/lg/2019/lmx220n-x-series-x2-2019-td-lte-kr-x220n.json b/data/smartphone/lg/2019/lmx220n-x-series-x2-2019-td-lte-kr-x220n.json new file mode 100644 index 00000000000..9572d8b3155 --- /dev/null +++ b/data/smartphone/lg/2019/lmx220n-x-series-x2-2019-td-lte-kr-x220n.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx220n-x-series-x2-2019-td-lte-kr-x220n", + "name": "LMX220N X Series X2 2019 TD-LTE KR X220N", + "brand": "lg", + "soc": "snapdragon-425", + "release_date": "2019-08-19", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 147.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2019/lmx320aa-prime-2-lte-us-x320aa.json b/data/smartphone/lg/2019/lmx320aa-prime-2-lte-us-x320aa.json new file mode 100644 index 00000000000..353fa9e5965 --- /dev/null +++ b/data/smartphone/lg/2019/lmx320aa-prime-2-lte-us-x320aa.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx320aa-prime-2-lte-us-x320aa", + "name": "LMX320AA Prime 2 LTE US X320AA", + "brand": "lg", + "soc": "snapdragon-425", + "release_date": "2019-09-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 147.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmx320apm-arena-2-lte-us-x320ap.json b/data/smartphone/lg/2019/lmx320apm-arena-2-lte-us-x320ap.json new file mode 100644 index 00000000000..b7b385f32aa --- /dev/null +++ b/data/smartphone/lg/2019/lmx320apm-arena-2-lte-us-x320ap.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx320apm-arena-2-lte-us-x320ap", + "name": "LMX320APM Arena 2 LTE US X320AP", + "brand": "lg", + "soc": "snapdragon-425", + "release_date": "2019-09-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 147.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmx320cm-escape-plus-lte-us-x320cm.json b/data/smartphone/lg/2019/lmx320cm-escape-plus-lte-us-x320cm.json new file mode 100644 index 00000000000..53df4356e41 --- /dev/null +++ b/data/smartphone/lg/2019/lmx320cm-escape-plus-lte-us-x320cm.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx320cm-escape-plus-lte-us-x320cm", + "name": "LMX320CM Escape Plus LTE US X320CM", + "brand": "lg", + "soc": "snapdragon-425", + "release_date": "2019-09-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 147.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmx320pm-tribute-royal-td-lte-us-x320pm.json b/data/smartphone/lg/2019/lmx320pm-tribute-royal-td-lte-us-x320pm.json new file mode 100644 index 00000000000..57da03aa1b1 --- /dev/null +++ b/data/smartphone/lg/2019/lmx320pm-tribute-royal-td-lte-us-x320pm.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx320pm-tribute-royal-td-lte-us-x320pm", + "name": "LMX320PM Tribute Royal TD-LTE US X320PM", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2019-11-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 148.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmx320qm-k-series-k30-2019-lte-us-x320qm.json b/data/smartphone/lg/2019/lmx320qm-k-series-k30-2019-lte-us-x320qm.json new file mode 100644 index 00000000000..e82ea98b318 --- /dev/null +++ b/data/smartphone/lg/2019/lmx320qm-k-series-k30-2019-lte-us-x320qm.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx320qm-k-series-k30-2019-lte-us-x320qm", + "name": "LMX320QM K Series K30 2019 LTE US X320QM", + "brand": "lg", + "soc": "snapdragon-425", + "release_date": "2019-09-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 147.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmx320ta-aristo-4-td-lte-us-x320ta.json b/data/smartphone/lg/2019/lmx320ta-aristo-4-td-lte-us-x320ta.json new file mode 100644 index 00000000000..69e4cc87441 --- /dev/null +++ b/data/smartphone/lg/2019/lmx320ta-aristo-4-td-lte-us-x320ta.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx320ta-aristo-4-td-lte-us-x320ta", + "name": "LMX320TA Aristo 4+ TD-LTE US X320TA", + "brand": "lg", + "soc": "snapdragon-425", + "release_date": "2019-09-01", + "ram_gb": 2.0, + "battery_mah": 2890, + "weight_g": 147.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmx320wm-k-series-k30-2019-lte-ca-x320wm.json b/data/smartphone/lg/2019/lmx320wm-k-series-k30-2019-lte-ca-x320wm.json new file mode 100644 index 00000000000..feeda6fde05 --- /dev/null +++ b/data/smartphone/lg/2019/lmx320wm-k-series-k30-2019-lte-ca-x320wm.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx320wm-k-series-k30-2019-lte-ca-x320wm", + "name": "LMX320WM K Series K30 2019 LTE CA X320WM", + "brand": "lg", + "soc": "snapdragon-425", + "release_date": "2019-10-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 147.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmx420as-k-series-k40-2019-lte-a-us-x420as.json b/data/smartphone/lg/2019/lmx420as-k-series-k40-2019-lte-a-us-x420as.json new file mode 100644 index 00000000000..4c66a3a17cb --- /dev/null +++ b/data/smartphone/lg/2019/lmx420as-k-series-k40-2019-lte-a-us-x420as.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx420as-k-series-k40-2019-lte-a-us-x420as", + "name": "LMX420AS K Series K40 2019 LTE-A US X420AS", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2019-07-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmx420as8-xpression-plus-2-lte-a-us-x420as8.json b/data/smartphone/lg/2019/lmx420as8-xpression-plus-2-lte-a-us-x420as8.json new file mode 100644 index 00000000000..a6477d8e365 --- /dev/null +++ b/data/smartphone/lg/2019/lmx420as8-xpression-plus-2-lte-a-us-x420as8.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx420as8-xpression-plus-2-lte-a-us-x420as8", + "name": "LMX420AS8 Xpression Plus 2 LTE-A US X420AS8", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2019-09-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmx420bmw-k-series-k40-2019-dual-sim-lte-a-latam-x420bmw-k12.json b/data/smartphone/lg/2019/lmx420bmw-k-series-k40-2019-dual-sim-lte-a-latam-x420bmw-k12.json new file mode 100644 index 00000000000..ee7865586e6 --- /dev/null +++ b/data/smartphone/lg/2019/lmx420bmw-k-series-k40-2019-dual-sim-lte-a-latam-x420bmw-k12.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx420bmw-k-series-k40-2019-dual-sim-lte-a-latam-x420bmw-k12", + "name": "LMX420BMW K Series K40 2019 Dual SIM LTE-A LATAM X420BMW / K12+", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2019-04-12", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 144.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Brazil , Costa Rica , Guatemala , Honduras , Nicaragua , Panama , Puerto Rico", + "market_regions": "Central America , South America" +} diff --git a/data/smartphone/lg/2019/lmx420em-k-series-k40-2019-td-lte-emea.json b/data/smartphone/lg/2019/lmx420em-k-series-k40-2019-td-lte-emea.json new file mode 100644 index 00000000000..e2bd3c90506 --- /dev/null +++ b/data/smartphone/lg/2019/lmx420em-k-series-k40-2019-td-lte-emea.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx420em-k-series-k40-2019-td-lte-emea", + "name": "LMX420EM K Series K40 2019 TD-LTE EMEA", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2019-03-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 144.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , France , Greece , Germany , Hungary , Italy , Latvia , Lithuania , Netherlands , Portugal , Romania , Russia , Serbia , Slovakia , Slovenia , Spain", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/lg/2019/lmx420emw-k-series-k40-2019-dual-sim-td-lte-emea.json b/data/smartphone/lg/2019/lmx420emw-k-series-k40-2019-dual-sim-td-lte-emea.json new file mode 100644 index 00000000000..f399e214af1 --- /dev/null +++ b/data/smartphone/lg/2019/lmx420emw-k-series-k40-2019-dual-sim-td-lte-emea.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx420emw-k-series-k40-2019-dual-sim-td-lte-emea", + "name": "LMX420EMW K Series K40 2019 Dual SIM TD-LTE EMEA", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2019-03-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 144.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , France , Greece , Germany , Hungary , Italy , Latvia , Lithuania , Netherlands , Poland , Portugal , Romania , Russia , Serbia , Slovakia , Slovenia , Spain , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/lg/2019/lmx420hm-k-series-k40-2019-lte-a-latam-x420hm.json b/data/smartphone/lg/2019/lmx420hm-k-series-k40-2019-lte-a-latam-x420hm.json new file mode 100644 index 00000000000..ce1aca6e103 --- /dev/null +++ b/data/smartphone/lg/2019/lmx420hm-k-series-k40-2019-lte-a-latam-x420hm.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx420hm-k-series-k40-2019-lte-a-latam-x420hm", + "name": "LMX420HM K Series K40 2019 LTE-A LATAM X420HM", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2019-04-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 144.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Argentina , Chile , Colombia , Costa Rica , Honduras , Mexico , Nicaragua , Panama , Peru", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/lg/2019/lmx420mm-k-series-k40-2019-lte-a-us-x420mm.json b/data/smartphone/lg/2019/lmx420mm-k-series-k40-2019-lte-a-us-x420mm.json new file mode 100644 index 00000000000..d26bf9a1b4a --- /dev/null +++ b/data/smartphone/lg/2019/lmx420mm-k-series-k40-2019-lte-a-us-x420mm.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx420mm-k-series-k40-2019-lte-a-us-x420mm", + "name": "LMX420MM K Series K40 2019 LTE-A US X420MM", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2019-07-19", + "ram_gb": 2.0, + "battery_mah": 2890, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmx420n-x-series-x4-2019-td-lte-kr-x420n.json b/data/smartphone/lg/2019/lmx420n-x-series-x4-2019-td-lte-kr-x420n.json new file mode 100644 index 00000000000..19d0a9a93b2 --- /dev/null +++ b/data/smartphone/lg/2019/lmx420n-x-series-x4-2019-td-lte-kr-x420n.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx420n-x-series-x4-2019-td-lte-kr-x420n", + "name": "LMX420N X Series X4 2019 TD-LTE KR X420N", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2019-04-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 144.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2019/lmx420pr-k-series-k40-2019-lte-a-latam-x420pr.json b/data/smartphone/lg/2019/lmx420pr-k-series-k40-2019-lte-a-latam-x420pr.json new file mode 100644 index 00000000000..6a7826804c6 --- /dev/null +++ b/data/smartphone/lg/2019/lmx420pr-k-series-k40-2019-lte-a-latam-x420pr.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx420pr-k-series-k40-2019-lte-a-latam-x420pr", + "name": "LMX420PR K Series K40 2019 LTE-A LATAM X420PR", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2019-05-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 144.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Puerto Rico", + "market_regions": "Central America" +} diff --git a/data/smartphone/lg/2019/lmx420qm-k-series-k40-2019-lte-a-us-x420qm.json b/data/smartphone/lg/2019/lmx420qm-k-series-k40-2019-lte-a-us-x420qm.json new file mode 100644 index 00000000000..eb1c2fee9fd --- /dev/null +++ b/data/smartphone/lg/2019/lmx420qm-k-series-k40-2019-lte-a-us-x420qm.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx420qm-k-series-k40-2019-lte-a-us-x420qm", + "name": "LMX420QM K Series K40 2019 LTE-A US X420QM", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2019-07-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmx420qm6-k-series-k40-2019-lte-a-us-x420qm6.json b/data/smartphone/lg/2019/lmx420qm6-k-series-k40-2019-lte-a-us-x420qm6.json new file mode 100644 index 00000000000..1bcd5f282dc --- /dev/null +++ b/data/smartphone/lg/2019/lmx420qm6-k-series-k40-2019-lte-a-us-x420qm6.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx420qm6-k-series-k40-2019-lte-a-us-x420qm6", + "name": "LMX420QM6 K Series K40 2019 LTE-A US X420QM6", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2019-08-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmx420qn-k-series-k40-2019-lte-a-us-x420qn.json b/data/smartphone/lg/2019/lmx420qn-k-series-k40-2019-lte-a-us-x420qn.json new file mode 100644 index 00000000000..cb1b181c007 --- /dev/null +++ b/data/smartphone/lg/2019/lmx420qn-k-series-k40-2019-lte-a-us-x420qn.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx420qn-k-series-k40-2019-lte-a-us-x420qn", + "name": "LMX420QN K Series K40 2019 LTE-A US X420QN", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2019-08-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmx420tm-k-series-k40-2019-lte-a-us-x420tm.json b/data/smartphone/lg/2019/lmx420tm-k-series-k40-2019-lte-a-us-x420tm.json new file mode 100644 index 00000000000..ced30cba133 --- /dev/null +++ b/data/smartphone/lg/2019/lmx420tm-k-series-k40-2019-lte-a-us-x420tm.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx420tm-k-series-k40-2019-lte-a-us-x420tm", + "name": "LMX420TM K Series K40 2019 LTE-A US X420TM", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2019-07-17", + "ram_gb": 2.0, + "battery_mah": 2890, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmx430bmw-k-series-k40s-2019-dual-sim-lte-a-latam-x430bmw.json b/data/smartphone/lg/2019/lmx430bmw-k-series-k40s-2019-dual-sim-lte-a-latam-x430bmw.json new file mode 100644 index 00000000000..ca4cd11bf47 --- /dev/null +++ b/data/smartphone/lg/2019/lmx430bmw-k-series-k40s-2019-dual-sim-lte-a-latam-x430bmw.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx430bmw-k-series-k40s-2019-dual-sim-lte-a-latam-x430bmw", + "name": "LMX430BMW K Series K40S 2019 Dual SIM LTE-A LATAM X430BMW", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2019-10-01", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Brazil", + "market_regions": "South America" +} diff --git a/data/smartphone/lg/2019/lmx430emw-k-series-k40s-2019-dual-sim-lte-emea-x430emw.json b/data/smartphone/lg/2019/lmx430emw-k-series-k40s-2019-dual-sim-lte-emea-x430emw.json new file mode 100644 index 00000000000..a14edb1f013 --- /dev/null +++ b/data/smartphone/lg/2019/lmx430emw-k-series-k40s-2019-dual-sim-lte-emea-x430emw.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx430emw-k-series-k40s-2019-dual-sim-lte-emea-x430emw", + "name": "LMX430EMW K Series K40S 2019 Dual SIM LTE EMEA X430EMW", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2019-10-01", + "ram_gb": 2.0, + "battery_mah": 3500, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Serbia , Slovakia , Slovenia , Spain , Switzerland , Sweden , Turkey , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/lg/2019/lmx430fmw-k-series-k40s-2019-dual-sim-lte-a-latam-x430fmw.json b/data/smartphone/lg/2019/lmx430fmw-k-series-k40s-2019-dual-sim-lte-a-latam-x430fmw.json new file mode 100644 index 00000000000..c0a4abd0da3 --- /dev/null +++ b/data/smartphone/lg/2019/lmx430fmw-k-series-k40s-2019-dual-sim-lte-a-latam-x430fmw.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx430fmw-k-series-k40s-2019-dual-sim-lte-a-latam-x430fmw", + "name": "LMX430FMW K Series K40S 2019 Dual SIM LTE-A LATAM X430FMW", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2019-10-01", + "ram_gb": 2.0, + "battery_mah": 3500, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Colombia , Costa Rica , Guatemala , Panama , USA", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/lg/2019/lmx430hm-k-series-k40s-2019-td-lte-latam-x430hm.json b/data/smartphone/lg/2019/lmx430hm-k-series-k40s-2019-td-lte-latam-x430hm.json new file mode 100644 index 00000000000..1d783a45e64 --- /dev/null +++ b/data/smartphone/lg/2019/lmx430hm-k-series-k40s-2019-td-lte-latam-x430hm.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx430hm-k-series-k40s-2019-td-lte-latam-x430hm", + "name": "LMX430HM K Series K40S 2019 TD-LTE LATAM X430HM", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2019-11-01", + "ram_gb": 2.0, + "battery_mah": 3500, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Argentina , Chile , Costa Rica , Honduras , Mexico , Paraguay , Peru , Puerto Rico", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/lg/2019/lmx430zmw-k-series-k40s-2019-dual-sim-td-lte-apac-x430zmw.json b/data/smartphone/lg/2019/lmx430zmw-k-series-k40s-2019-dual-sim-td-lte-apac-x430zmw.json new file mode 100644 index 00000000000..7ad0a34bd5b --- /dev/null +++ b/data/smartphone/lg/2019/lmx430zmw-k-series-k40s-2019-dual-sim-td-lte-apac-x430zmw.json @@ -0,0 +1,42 @@ +{ + "slug": "lmx430zmw-k-series-k40s-2019-dual-sim-td-lte-apac-x430zmw", + "name": "LMX430ZMW K Series K40S 2019 Dual SIM TD-LTE APAC X430ZMW", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2019-11-01", + "ram_gb": 2.0, + "battery_mah": 3500, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 229, + "market_countries": "Australia , Taiwan", + "market_regions": "Asia , Australia" +} diff --git a/data/smartphone/lg/2019/lmx440im-w-series-w30-2019-dual-sim-td-lte-in-x440im-w30-plus.json b/data/smartphone/lg/2019/lmx440im-w-series-w30-2019-dual-sim-td-lte-in-x440im-w30-plus.json new file mode 100644 index 00000000000..ed365a5f0b3 --- /dev/null +++ b/data/smartphone/lg/2019/lmx440im-w-series-w30-2019-dual-sim-td-lte-in-x440im-w30-plus.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx440im-w-series-w30-2019-dual-sim-td-lte-in-x440im-w30-plus", + "name": "LMX440IM W Series W30+ 2019 Dual SIM TD-LTE IN X440IM / W30 Plus", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2019-10-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2019/lmx440im-w-series-w30-2019-dual-sim-td-lte-in-x440im.json b/data/smartphone/lg/2019/lmx440im-w-series-w30-2019-dual-sim-td-lte-in-x440im.json new file mode 100644 index 00000000000..048272e654d --- /dev/null +++ b/data/smartphone/lg/2019/lmx440im-w-series-w30-2019-dual-sim-td-lte-in-x440im.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx440im-w-series-w30-2019-dual-sim-td-lte-in-x440im", + "name": "LMX440IM W Series W30 2019 Dual SIM TD-LTE IN X440IM", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2019-07-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2019/lmx520bmw-k-series-k50-2019-dual-sim-lte-a-latam-x520bmw-k12-max.json b/data/smartphone/lg/2019/lmx520bmw-k-series-k50-2019-dual-sim-lte-a-latam-x520bmw-k12-max.json new file mode 100644 index 00000000000..d83b74ef5e5 --- /dev/null +++ b/data/smartphone/lg/2019/lmx520bmw-k-series-k50-2019-dual-sim-lte-a-latam-x520bmw-k12-max.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx520bmw-k-series-k50-2019-dual-sim-lte-a-latam-x520bmw-k12-max", + "name": "LMX520BMW K Series K50 2019 Dual SIM LTE-A LATAM X520BMW / K12 Max", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2019-06-01", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Colombia , Costa Rica , Guatemala , Honduras , Nicaragua , Panama , Puerto Rico", + "market_regions": "Central America , South America" +} diff --git a/data/smartphone/lg/2019/lmx520emw-k-series-k50-2019-dual-sim-td-lte-emea-x520emw.json b/data/smartphone/lg/2019/lmx520emw-k-series-k50-2019-dual-sim-td-lte-emea-x520emw.json new file mode 100644 index 00000000000..971cf000bfe --- /dev/null +++ b/data/smartphone/lg/2019/lmx520emw-k-series-k50-2019-dual-sim-td-lte-emea-x520emw.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx520emw-k-series-k50-2019-dual-sim-td-lte-emea-x520emw", + "name": "LMX520EMW K Series K50 2019 Dual SIM TD-LTE EMEA X520EMW", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2019-06-01", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , France , Greece , Germany , Hungary , Italy , Netherlands , Poland , Portugal , Romania , Russia , Serbia , Slovakia , Slovenia , Spain , Turkey , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/lg/2019/lmx520hm-k-series-k50-2019-lte-a-latam-x520hm.json b/data/smartphone/lg/2019/lmx520hm-k-series-k50-2019-lte-a-latam-x520hm.json new file mode 100644 index 00000000000..97a79f4b82d --- /dev/null +++ b/data/smartphone/lg/2019/lmx520hm-k-series-k50-2019-lte-a-latam-x520hm.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx520hm-k-series-k50-2019-lte-a-latam-x520hm", + "name": "LMX520HM K Series K50 2019 LTE-A LATAM X520HM", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2019-06-01", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Chile , Colombia , Costa Rica , Guatemala , Honduras , Nicaragua , Panama , Puerto Rico", + "market_regions": "Central America , South America" +} diff --git a/data/smartphone/lg/2019/lmx525baw-q-series-q60-2019-dual-sim-lte-a-latam-x525baw.json b/data/smartphone/lg/2019/lmx525baw-q-series-q60-2019-dual-sim-lte-a-latam-x525baw.json new file mode 100644 index 00000000000..4791c10512b --- /dev/null +++ b/data/smartphone/lg/2019/lmx525baw-q-series-q60-2019-dual-sim-lte-a-latam-x525baw.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx525baw-q-series-q60-2019-dual-sim-lte-a-latam-x525baw", + "name": "LMX525BAW Q Series Q60 2019 Dual SIM LTE-A LATAM X525BAW", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2019-06-01", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Brazil , Colombia , Costa Rica , Guatemala , Honduras , Nicaragua , Panama , Puerto Rico", + "market_regions": "Central America , South America" +} diff --git a/data/smartphone/lg/2019/lmx525eaw-q-series-q60-2019-dual-sim-td-lte-emea-x525eaw.json b/data/smartphone/lg/2019/lmx525eaw-q-series-q60-2019-dual-sim-td-lte-emea-x525eaw.json new file mode 100644 index 00000000000..4ead1c3be3f --- /dev/null +++ b/data/smartphone/lg/2019/lmx525eaw-q-series-q60-2019-dual-sim-td-lte-emea-x525eaw.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx525eaw-q-series-q60-2019-dual-sim-td-lte-emea-x525eaw", + "name": "LMX525EAW Q Series Q60 2019 Dual SIM TD-LTE EMEA X525EAW", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2019-05-01", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , France , Greece , Germany , Hungary , Italy , Latvia , Lithuania , Netherlands , Poland , Portugal , Romania , Russia , Serbia , Slovakia , Slovenia , Spain , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/lg/2019/lmx525ha-q-series-q60-2019-lte-a-latam-x525ha.json b/data/smartphone/lg/2019/lmx525ha-q-series-q60-2019-lte-a-latam-x525ha.json new file mode 100644 index 00000000000..05c27a1d33c --- /dev/null +++ b/data/smartphone/lg/2019/lmx525ha-q-series-q60-2019-lte-a-latam-x525ha.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx525ha-q-series-q60-2019-lte-a-latam-x525ha", + "name": "LMX525HA Q Series Q60 2019 LTE-A LATAM X525HA", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2019-06-01", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Colombia , Mexico , Peru", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/lg/2019/lmx525pr-q-series-q60-2019-lte-a-latam-x525pr.json b/data/smartphone/lg/2019/lmx525pr-q-series-q60-2019-lte-a-latam-x525pr.json new file mode 100644 index 00000000000..efed41006eb --- /dev/null +++ b/data/smartphone/lg/2019/lmx525pr-q-series-q60-2019-lte-a-latam-x525pr.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx525pr-q-series-q60-2019-lte-a-latam-x525pr", + "name": "LMX525PR Q Series Q60 2019 LTE-A LATAM X525PR", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2019-06-01", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Puerto Rico", + "market_regions": "Central America" +} diff --git a/data/smartphone/lg/2019/lmx525wa-q-series-q60-2019-lte-a-ca-x525wa.json b/data/smartphone/lg/2019/lmx525wa-q-series-q60-2019-lte-a-ca-x525wa.json new file mode 100644 index 00000000000..d6acd349a84 --- /dev/null +++ b/data/smartphone/lg/2019/lmx525wa-q-series-q60-2019-lte-a-ca-x525wa.json @@ -0,0 +1,42 @@ +{ + "slug": "lmx525wa-q-series-q60-2019-lte-a-ca-x525wa", + "name": "LMX525WA Q Series Q60 2019 LTE-A CA X525WA", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2019-06-01", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 6, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2019/lmx525za-q-series-q60-2019-td-lte-apac-x525za.json b/data/smartphone/lg/2019/lmx525za-q-series-q60-2019-td-lte-apac-x525za.json new file mode 100644 index 00000000000..fd3587c14b7 --- /dev/null +++ b/data/smartphone/lg/2019/lmx525za-q-series-q60-2019-td-lte-apac-x525za.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx525za-q-series-q60-2019-td-lte-apac-x525za", + "name": "LMX525ZA Q Series Q60 2019 TD-LTE APAC X525ZA", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2019-05-01", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , Iran , NZ , Turkey", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East" +} diff --git a/data/smartphone/lg/2019/lmx525zaw-q-series-q60-2019-dual-sim-td-lte-apac-x525zaw.json b/data/smartphone/lg/2019/lmx525zaw-q-series-q60-2019-dual-sim-td-lte-apac-x525zaw.json new file mode 100644 index 00000000000..435f398f7f7 --- /dev/null +++ b/data/smartphone/lg/2019/lmx525zaw-q-series-q60-2019-dual-sim-td-lte-apac-x525zaw.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx525zaw-q-series-q60-2019-dual-sim-td-lte-apac-x525zaw", + "name": "LMX525ZAW Q Series Q60 2019 Dual SIM TD-LTE APAC X525ZAW", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2019-05-01", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , Taiwan", + "market_regions": "Asia , Australia" +} diff --git a/data/smartphone/lg/2019/lmx540bmw-k-series-k50s-2019-dual-sim-lte-a-latam-x540bmw.json b/data/smartphone/lg/2019/lmx540bmw-k-series-k50s-2019-dual-sim-lte-a-latam-x540bmw.json new file mode 100644 index 00000000000..4177746d866 --- /dev/null +++ b/data/smartphone/lg/2019/lmx540bmw-k-series-k50s-2019-dual-sim-lte-a-latam-x540bmw.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx540bmw-k-series-k50s-2019-dual-sim-lte-a-latam-x540bmw", + "name": "LMX540BMW K Series K50S 2019 Dual SIM LTE-A LATAM X540BMW", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2019-10-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 264 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Costa Rica , Guatemala , Panama", + "market_regions": "Central America , South America" +} diff --git a/data/smartphone/lg/2019/lmx540emw-k-series-k50s-2019-dual-sim-td-lte-emea-x540emw.json b/data/smartphone/lg/2019/lmx540emw-k-series-k50s-2019-dual-sim-td-lte-emea-x540emw.json new file mode 100644 index 00000000000..9660db5ad90 --- /dev/null +++ b/data/smartphone/lg/2019/lmx540emw-k-series-k50s-2019-dual-sim-td-lte-emea-x540emw.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx540emw-k-series-k50s-2019-dual-sim-td-lte-emea-x540emw", + "name": "LMX540EMW K Series K50S 2019 Dual SIM TD-LTE EMEA X540EMW", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2019-10-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 264 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Serbia , Slovakia , Slovenia , Spain , Switzerland , Sweden , Turkey , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/lg/2019/lmx540hm-k-series-k50s-2019-td-lte-latam-x540hm.json b/data/smartphone/lg/2019/lmx540hm-k-series-k50s-2019-td-lte-latam-x540hm.json new file mode 100644 index 00000000000..bd5312567ae --- /dev/null +++ b/data/smartphone/lg/2019/lmx540hm-k-series-k50s-2019-td-lte-latam-x540hm.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx540hm-k-series-k50s-2019-td-lte-latam-x540hm", + "name": "LMX540HM K Series K50S 2019 TD-LTE LATAM X540HM", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2019-11-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 264 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Chile , Costa Rica , Honduras , Mexico , Paraguay , Peru", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/lg/2019/lmx540zmw-k-series-k50s-2019-dual-sim-td-lte-apac-x540zmw.json b/data/smartphone/lg/2019/lmx540zmw-k-series-k50s-2019-dual-sim-td-lte-apac-x540zmw.json new file mode 100644 index 00000000000..024b97f7694 --- /dev/null +++ b/data/smartphone/lg/2019/lmx540zmw-k-series-k50s-2019-dual-sim-td-lte-apac-x540zmw.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx540zmw-k-series-k50s-2019-dual-sim-td-lte-apac-x540zmw", + "name": "LMX540ZMW K Series K50S 2019 Dual SIM TD-LTE APAC X540ZMW", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2019-11-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 264 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Taiwan", + "market_regions": "Asia , Australia" +} diff --git a/data/smartphone/lg/2019/lmx625n-x-series-x6-2019-td-lte-kr-x625n.json b/data/smartphone/lg/2019/lmx625n-x-series-x6-2019-td-lte-kr-x625n.json new file mode 100644 index 00000000000..45c200982be --- /dev/null +++ b/data/smartphone/lg/2019/lmx625n-x-series-x6-2019-td-lte-kr-x625n.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx625n-x-series-x6-2019-td-lte-kr-x625n", + "name": "LMX625N X Series X6 2019 TD-LTE KR X625N", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2019-06-19", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2019/q925k-q9-td-lte-kr.json b/data/smartphone/lg/2019/q925k-q9-td-lte-kr.json new file mode 100644 index 00000000000..dc5750d7d8a --- /dev/null +++ b/data/smartphone/lg/2019/q925k-q9-td-lte-kr.json @@ -0,0 +1,41 @@ +{ + "slug": "q925k-q9-td-lte-kr", + "name": "Q925K Q9 TD-LTE KR", + "brand": "lg", + "soc": "snapdragon-821", + "release_date": "2019-07-11", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 158.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2019/q925l-q9-lte-a-kr.json b/data/smartphone/lg/2019/q925l-q9-lte-a-kr.json new file mode 100644 index 00000000000..532751ae9a6 --- /dev/null +++ b/data/smartphone/lg/2019/q925l-q9-lte-a-kr.json @@ -0,0 +1,41 @@ +{ + "slug": "q925l-q9-lte-a-kr", + "name": "Q925L Q9 LTE-A KR", + "brand": "lg", + "soc": "snapdragon-821", + "release_date": "2019-07-11", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 158.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2019/q925s-q9-td-lte-kr.json b/data/smartphone/lg/2019/q925s-q9-td-lte-kr.json new file mode 100644 index 00000000000..f08433c60d5 --- /dev/null +++ b/data/smartphone/lg/2019/q925s-q9-td-lte-kr.json @@ -0,0 +1,41 @@ +{ + "slug": "q925s-q9-td-lte-kr", + "name": "Q925S Q9 TD-LTE KR", + "brand": "lg", + "soc": "snapdragon-821", + "release_date": "2019-07-11", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 158.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2019/q927l-q9-one-td-lte-kr.json b/data/smartphone/lg/2019/q927l-q9-one-td-lte-kr.json new file mode 100644 index 00000000000..ca257ba88ee --- /dev/null +++ b/data/smartphone/lg/2019/q927l-q9-one-td-lte-kr.json @@ -0,0 +1,41 @@ +{ + "slug": "q927l-q9-one-td-lte-kr", + "name": "Q927L Q9 One TD-LTE KR", + "brand": "lg", + "soc": "snapdragon-835", + "release_date": "2019-02-19", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 158.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2019/ss1805-q-stylus-td-lte-jp-801lg.json b/data/smartphone/lg/2019/ss1805-q-stylus-td-lte-jp-801lg.json new file mode 100644 index 00000000000..68e82c933c5 --- /dev/null +++ b/data/smartphone/lg/2019/ss1805-q-stylus-td-lte-jp-801lg.json @@ -0,0 +1,41 @@ +{ + "slug": "ss1805-q-stylus-td-lte-jp-801lg", + "name": "SS1805 Q Stylus TD-LTE JP 801LG", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2019-01-12", + "ram_gb": 3.0, + "battery_mah": 3300, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2019/style2-td-lte-jp-l-01l.json b/data/smartphone/lg/2019/style2-td-lte-jp-l-01l.json new file mode 100644 index 00000000000..44b330e04cd --- /dev/null +++ b/data/smartphone/lg/2019/style2-td-lte-jp-l-01l.json @@ -0,0 +1,41 @@ +{ + "slug": "style2-td-lte-jp-l-01l", + "name": "style2 TD-LTE JP L-01L", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2019-07-12", + "ram_gb": 4.0, + "battery_mah": 3900, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 16.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2019/v500n-v50-thinq-5g-td-lte-kr.json b/data/smartphone/lg/2019/v500n-v50-thinq-5g-td-lte-kr.json new file mode 100644 index 00000000000..c9aba01441b --- /dev/null +++ b/data/smartphone/lg/2019/v500n-v50-thinq-5g-td-lte-kr.json @@ -0,0 +1,41 @@ +{ + "slug": "v500n-v50-thinq-5g-td-lte-kr", + "name": "V500N V50 ThinQ 5G TD-LTE KR", + "brand": "lg", + "soc": "snapdragon-855", + "release_date": "2019-04-19", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2019/v510n-v50s-thinq-5g-uw-td-lte-kr.json b/data/smartphone/lg/2019/v510n-v50s-thinq-5g-uw-td-lte-kr.json new file mode 100644 index 00000000000..8789c601abc --- /dev/null +++ b/data/smartphone/lg/2019/v510n-v50s-thinq-5g-uw-td-lte-kr.json @@ -0,0 +1,41 @@ +{ + "slug": "v510n-v50s-thinq-5g-uw-td-lte-kr", + "name": "V510N V50S ThinQ 5G UW TD-LTE KR", + "brand": "lg", + "soc": "snapdragon-855", + "release_date": "2019-10-19", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2020/lgl355dl-k-series-k31-rebel-2020-td-lte-us-l355dl-a.json b/data/smartphone/lg/2020/lgl355dl-k-series-k31-rebel-2020-td-lte-us-l355dl-a.json new file mode 100644 index 00000000000..b9a96aa4832 --- /dev/null +++ b/data/smartphone/lg/2020/lgl355dl-k-series-k31-rebel-2020-td-lte-us-l355dl-a.json @@ -0,0 +1,42 @@ +{ + "slug": "lgl355dl-k-series-k31-rebel-2020-td-lte-us-l355dl-a", + "name": "LGL355DL K Series K31 Rebel 2020 TD-LTE US L355DL-A", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-12-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 120, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lgl455dl-premier-pro-plus-2020-td-lte-us-l455dl.json b/data/smartphone/lg/2020/lgl455dl-premier-pro-plus-2020-td-lte-us-l455dl.json new file mode 100644 index 00000000000..c90c7890397 --- /dev/null +++ b/data/smartphone/lg/2020/lgl455dl-premier-pro-plus-2020-td-lte-us-l455dl.json @@ -0,0 +1,42 @@ +{ + "slug": "lgl455dl-premier-pro-plus-2020-td-lte-us-l455dl", + "name": "LGL455DL Premier Pro Plus 2020 TD-LTE US L455DL", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-07-01", + "ram_gb": 2.0, + "battery_mah": 3500, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 100, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lgl555dl-reflect-2020-td-lte-us-l555dl.json b/data/smartphone/lg/2020/lgl555dl-reflect-2020-td-lte-us-l555dl.json new file mode 100644 index 00000000000..8f8d099107a --- /dev/null +++ b/data/smartphone/lg/2020/lgl555dl-reflect-2020-td-lte-us-l555dl.json @@ -0,0 +1,43 @@ +{ + "slug": "lgl555dl-reflect-2020-td-lte-us-l555dl", + "name": "LGL555DL Reflect 2020 TD-LTE US L555DL", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-06-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 204.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1560", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 264 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 170, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmf100emw-wing-5g-global-dual-sim-td-lte-128gb-f100emw.json b/data/smartphone/lg/2020/lmf100emw-wing-5g-global-dual-sim-td-lte-128gb-f100emw.json new file mode 100644 index 00000000000..744221d7a31 --- /dev/null +++ b/data/smartphone/lg/2020/lmf100emw-wing-5g-global-dual-sim-td-lte-128gb-f100emw.json @@ -0,0 +1,42 @@ +{ + "slug": "lmf100emw-wing-5g-global-dual-sim-td-lte-128gb-f100emw", + "name": "LMF100EMW Wing 5G Global Dual SIM TD-LTE 128GB F100EMW", + "brand": "lg", + "soc": "snapdragon-765", + "release_date": "2020-10-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 260.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Czech , Denmark , Estonia , Finland , France , Germany , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Russia , Romania , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/lg/2020/lmf100n-wing-5g-uw-td-lte-kr-128gb-f100n.json b/data/smartphone/lg/2020/lmf100n-wing-5g-uw-td-lte-kr-128gb-f100n.json new file mode 100644 index 00000000000..9eb77d7b5e5 --- /dev/null +++ b/data/smartphone/lg/2020/lmf100n-wing-5g-uw-td-lte-kr-128gb-f100n.json @@ -0,0 +1,41 @@ +{ + "slug": "lmf100n-wing-5g-uw-td-lte-kr-128gb-f100n", + "name": "LMF100N Wing 5G UW TD-LTE KR 128GB F100N", + "brand": "lg", + "soc": "snapdragon-765", + "release_date": "2020-10-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 260.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2020/lmf100tmk-wing-5g-td-lte-us-f100tmk.json b/data/smartphone/lg/2020/lmf100tmk-wing-5g-td-lte-us-f100tmk.json new file mode 100644 index 00000000000..fb7983fd58c --- /dev/null +++ b/data/smartphone/lg/2020/lmf100tmk-wing-5g-td-lte-us-f100tmk.json @@ -0,0 +1,42 @@ +{ + "slug": "lmf100tmk-wing-5g-td-lte-us-f100tmk", + "name": "LMF100TMK Wing 5G TD-LTE US F100TMK", + "brand": "lg", + "soc": "snapdragon-765", + "release_date": "2020-11-06", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 260.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "msrp_usd": 1000, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmf100vm1-wing-5g-td-lte-us-f100vm1.json b/data/smartphone/lg/2020/lmf100vm1-wing-5g-td-lte-us-f100vm1.json new file mode 100644 index 00000000000..7cc344b92c1 --- /dev/null +++ b/data/smartphone/lg/2020/lmf100vm1-wing-5g-td-lte-us-f100vm1.json @@ -0,0 +1,42 @@ +{ + "slug": "lmf100vm1-wing-5g-td-lte-us-f100vm1", + "name": "LMF100VM1 Wing 5G TD-LTE US F100VM1", + "brand": "lg", + "soc": "snapdragon-765", + "release_date": "2020-11-06", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 260.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "msrp_usd": 1050, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmf100vmy-wing-5g-uw-td-lte-us-f100vmy.json b/data/smartphone/lg/2020/lmf100vmy-wing-5g-uw-td-lte-us-f100vmy.json new file mode 100644 index 00000000000..90e12be77dc --- /dev/null +++ b/data/smartphone/lg/2020/lmf100vmy-wing-5g-uw-td-lte-us-f100vmy.json @@ -0,0 +1,42 @@ +{ + "slug": "lmf100vmy-wing-5g-uw-td-lte-us-f100vmy", + "name": "LMF100VMY Wing 5G UW TD-LTE US F100VMY", + "brand": "lg", + "soc": "snapdragon-765", + "release_date": "2020-10-16", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 260.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "msrp_usd": 1000, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmg850um-g8x-thinq-td-lte-na-g850um.json b/data/smartphone/lg/2020/lmg850um-g8x-thinq-td-lte-na-g850um.json new file mode 100644 index 00000000000..c691590016f --- /dev/null +++ b/data/smartphone/lg/2020/lmg850um-g8x-thinq-td-lte-na-g850um.json @@ -0,0 +1,42 @@ +{ + "slug": "lmg850um-g8x-thinq-td-lte-na-g850um", + "name": "LMG850UM G8X ThinQ TD-LTE NA G850UM", + "brand": "lg", + "soc": "snapdragon-855", + "release_date": "2020-01-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 21, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada , Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmg900em-velvet-5g-global-td-lte-g900em.json b/data/smartphone/lg/2020/lmg900em-velvet-5g-global-td-lte-g900em.json new file mode 100644 index 00000000000..66f5f188579 --- /dev/null +++ b/data/smartphone/lg/2020/lmg900em-velvet-5g-global-td-lte-g900em.json @@ -0,0 +1,43 @@ +{ + "slug": "lmg900em-velvet-5g-global-td-lte-g900em", + "name": "LMG900EM Velvet 5G Global TD-LTE G900EM", + "brand": "lg", + "soc": "snapdragon-765", + "release_date": "2020-06-01", + "ram_gb": 6.0, + "battery_mah": 4300, + "weight_g": 179.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 649, + "market_countries": "Australia , Austria , Czech , Denmark , Estonia , Finland , France , Germany , Hungary , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Slovakia , Slovenia , South Africa , Spain , Sweden , Switzerland , UK", + "market_regions": "Africa , Australia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/lg/2020/lmg900emw-velvet-5g-global-dual-sim-td-lte-g900emw.json b/data/smartphone/lg/2020/lmg900emw-velvet-5g-global-dual-sim-td-lte-g900emw.json new file mode 100644 index 00000000000..1ad06c943d0 --- /dev/null +++ b/data/smartphone/lg/2020/lmg900emw-velvet-5g-global-dual-sim-td-lte-g900emw.json @@ -0,0 +1,42 @@ +{ + "slug": "lmg900emw-velvet-5g-global-dual-sim-td-lte-g900emw", + "name": "LMG900EMW Velvet 5G Global Dual SIM TD-LTE G900EMW", + "brand": "lg", + "soc": "snapdragon-765", + "release_date": "2020-08-01", + "ram_gb": 6.0, + "battery_mah": 4300, + "weight_g": 179.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Singapore , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/lg/2020/lmg900n-velvet-5g-td-lte-kr-g900n.json b/data/smartphone/lg/2020/lmg900n-velvet-5g-td-lte-kr-g900n.json new file mode 100644 index 00000000000..4b16712b081 --- /dev/null +++ b/data/smartphone/lg/2020/lmg900n-velvet-5g-td-lte-kr-g900n.json @@ -0,0 +1,42 @@ +{ + "slug": "lmg900n-velvet-5g-td-lte-kr-g900n", + "name": "LMG900N Velvet 5G TD-LTE KR G900N", + "brand": "lg", + "soc": "snapdragon-765", + "release_date": "2020-05-14", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2020/lmg900qm-velvet-5g-td-lte-us-g900qm.json b/data/smartphone/lg/2020/lmg900qm-velvet-5g-td-lte-us-g900qm.json new file mode 100644 index 00000000000..b44216a211f --- /dev/null +++ b/data/smartphone/lg/2020/lmg900qm-velvet-5g-td-lte-us-g900qm.json @@ -0,0 +1,42 @@ +{ + "slug": "lmg900qm-velvet-5g-td-lte-us-g900qm", + "name": "LMG900QM Velvet 5G TD-LTE US G900QM", + "brand": "lg", + "soc": "snapdragon-765", + "release_date": "2020-08-01", + "ram_gb": 6.0, + "battery_mah": 4300, + "weight_g": 179.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmg900tm-velvet-5g-td-lte-us-g900tmy.json b/data/smartphone/lg/2020/lmg900tm-velvet-5g-td-lte-us-g900tmy.json new file mode 100644 index 00000000000..245f9660b24 --- /dev/null +++ b/data/smartphone/lg/2020/lmg900tm-velvet-5g-td-lte-us-g900tmy.json @@ -0,0 +1,43 @@ +{ + "slug": "lmg900tm-velvet-5g-td-lte-us-g900tmy", + "name": "LMG900TM Velvet 5G TD-LTE US G900TMY", + "brand": "lg", + "soc": "dimensity-1000", + "release_date": "2020-09-09", + "ram_gb": 6.0, + "battery_mah": 4300, + "weight_g": 179.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 588, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmg900um1-velvet-5g-td-lte-us-g900um.json b/data/smartphone/lg/2020/lmg900um1-velvet-5g-td-lte-us-g900um.json new file mode 100644 index 00000000000..efb18bf479e --- /dev/null +++ b/data/smartphone/lg/2020/lmg900um1-velvet-5g-td-lte-us-g900um.json @@ -0,0 +1,43 @@ +{ + "slug": "lmg900um1-velvet-5g-td-lte-us-g900um", + "name": "LMG900UM1 Velvet 5G TD-LTE US G900UM", + "brand": "lg", + "soc": "snapdragon-765", + "release_date": "2020-06-01", + "ram_gb": 6.0, + "battery_mah": 4300, + "weight_g": 179.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 600, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmg900um2-velvet-5g-td-lte-ca-g900um.json b/data/smartphone/lg/2020/lmg900um2-velvet-5g-td-lte-ca-g900um.json new file mode 100644 index 00000000000..891e68826c6 --- /dev/null +++ b/data/smartphone/lg/2020/lmg900um2-velvet-5g-td-lte-ca-g900um.json @@ -0,0 +1,43 @@ +{ + "slug": "lmg900um2-velvet-5g-td-lte-ca-g900um", + "name": "LMG900UM2 Velvet 5G TD-LTE CA G900UM", + "brand": "lg", + "soc": "snapdragon-765", + "release_date": "2020-08-07", + "ram_gb": 6.0, + "battery_mah": 4300, + "weight_g": 179.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 750, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmg900vm-velvet-5g-uw-td-lte-us-g900vm.json b/data/smartphone/lg/2020/lmg900vm-velvet-5g-uw-td-lte-us-g900vm.json new file mode 100644 index 00000000000..840b10e082f --- /dev/null +++ b/data/smartphone/lg/2020/lmg900vm-velvet-5g-uw-td-lte-us-g900vm.json @@ -0,0 +1,43 @@ +{ + "slug": "lmg900vm-velvet-5g-uw-td-lte-us-g900vm", + "name": "LMG900VM Velvet 5G UW TD-LTE US G900VM", + "brand": "lg", + "soc": "snapdragon-765", + "release_date": "2020-08-24", + "ram_gb": 6.0, + "battery_mah": 4300, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 700, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmg910emw-velvet-4g-global-dual-sim-td-lte-g910emw.json b/data/smartphone/lg/2020/lmg910emw-velvet-4g-global-dual-sim-td-lte-g910emw.json new file mode 100644 index 00000000000..22d9b87e71a --- /dev/null +++ b/data/smartphone/lg/2020/lmg910emw-velvet-4g-global-dual-sim-td-lte-g910emw.json @@ -0,0 +1,43 @@ +{ + "slug": "lmg910emw-velvet-4g-global-dual-sim-td-lte-g910emw", + "name": "LMG910EMW Velvet 4G Global Dual SIM TD-LTE G910EMW", + "brand": "lg", + "soc": "snapdragon-845", + "release_date": "2020-08-02", + "ram_gb": 6.0, + "battery_mah": 4300, + "weight_g": 179.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 599, + "market_countries": "Czech , Germany , Hungary , Slovakia , Slovenia", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/lg/2020/lmg910hm-velvet-4g-td-lte-latam-g910hm.json b/data/smartphone/lg/2020/lmg910hm-velvet-4g-td-lte-latam-g910hm.json new file mode 100644 index 00000000000..77cf498bad8 --- /dev/null +++ b/data/smartphone/lg/2020/lmg910hm-velvet-4g-td-lte-latam-g910hm.json @@ -0,0 +1,42 @@ +{ + "slug": "lmg910hm-velvet-4g-td-lte-latam-g910hm", + "name": "LMG910HM Velvet 4G TD-LTE LATAM G910HM", + "brand": "lg", + "soc": "snapdragon-845", + "release_date": "2020-08-28", + "ram_gb": 6.0, + "battery_mah": 4300, + "weight_g": 179.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmg910hmw-velvet-4g-dual-sim-td-lte-latam-g910hmw.json b/data/smartphone/lg/2020/lmg910hmw-velvet-4g-dual-sim-td-lte-latam-g910hmw.json new file mode 100644 index 00000000000..4bdf09d43ff --- /dev/null +++ b/data/smartphone/lg/2020/lmg910hmw-velvet-4g-dual-sim-td-lte-latam-g910hmw.json @@ -0,0 +1,42 @@ +{ + "slug": "lmg910hmw-velvet-4g-dual-sim-td-lte-latam-g910hmw", + "name": "LMG910HMW Velvet 4G Dual SIM TD-LTE LATAM G910HMW", + "brand": "lg", + "soc": "snapdragon-845", + "release_date": "2020-08-28", + "ram_gb": 6.0, + "battery_mah": 4300, + "weight_g": 179.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Chile , Colombia , Guatemala , Peru", + "market_regions": "Central America , South America" +} diff --git a/data/smartphone/lg/2020/lmk200baw-k-series-k22-2020-dual-sim-td-lte-latam-k200baw.json b/data/smartphone/lg/2020/lmk200baw-k-series-k22-2020-dual-sim-td-lte-latam-k200baw.json new file mode 100644 index 00000000000..3ad8a12160c --- /dev/null +++ b/data/smartphone/lg/2020/lmk200baw-k-series-k22-2020-dual-sim-td-lte-latam-k200baw.json @@ -0,0 +1,41 @@ +{ + "slug": "lmk200baw-k-series-k22-2020-dual-sim-td-lte-latam-k200baw", + "name": "LMK200BAW K Series K22+ 2020 Dual SIM TD-LTE LATAM K200BAW", + "brand": "lg", + "soc": "snapdragon-215", + "release_date": "2020-10-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Brazil", + "market_regions": "South America" +} diff --git a/data/smartphone/lg/2020/lmk200bmw-k-series-k22-2020-dual-sim-td-lte-latam-k200bmw.json b/data/smartphone/lg/2020/lmk200bmw-k-series-k22-2020-dual-sim-td-lte-latam-k200bmw.json new file mode 100644 index 00000000000..a52a837b38a --- /dev/null +++ b/data/smartphone/lg/2020/lmk200bmw-k-series-k22-2020-dual-sim-td-lte-latam-k200bmw.json @@ -0,0 +1,41 @@ +{ + "slug": "lmk200bmw-k-series-k22-2020-dual-sim-td-lte-latam-k200bmw", + "name": "LMK200BMW K Series K22 2020 Dual SIM TD-LTE LATAM K200BMW", + "brand": "lg", + "soc": "snapdragon-215", + "release_date": "2020-10-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Brazil", + "market_regions": "South America" +} diff --git a/data/smartphone/lg/2020/lmk200emw-k-series-k22-2020-dual-sim-td-lte-emea-k200emw.json b/data/smartphone/lg/2020/lmk200emw-k-series-k22-2020-dual-sim-td-lte-emea-k200emw.json new file mode 100644 index 00000000000..f7892a3514d --- /dev/null +++ b/data/smartphone/lg/2020/lmk200emw-k-series-k22-2020-dual-sim-td-lte-emea-k200emw.json @@ -0,0 +1,41 @@ +{ + "slug": "lmk200emw-k-series-k22-2020-dual-sim-td-lte-emea-k200emw", + "name": "LMK200EMW K Series K22 2020 Dual SIM TD-LTE EMEA K200EMW", + "brand": "lg", + "soc": "snapdragon-215", + "release_date": "2020-09-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Sweden , Switzerland , Turkey , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/lg/2020/lmk200ha-k-series-k22-2020-td-lte-latam-k200ha.json b/data/smartphone/lg/2020/lmk200ha-k-series-k22-2020-td-lte-latam-k200ha.json new file mode 100644 index 00000000000..45bbe9b0709 --- /dev/null +++ b/data/smartphone/lg/2020/lmk200ha-k-series-k22-2020-td-lte-latam-k200ha.json @@ -0,0 +1,42 @@ +{ + "slug": "lmk200ha-k-series-k22-2020-td-lte-latam-k200ha", + "name": "LMK200HA K Series K22+ 2020 TD-LTE LATAM K200HA", + "brand": "lg", + "soc": "snapdragon-215", + "release_date": "2020-10-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 2950, + "market_countries": "Argentina , Canada , Costa Rica , Honduras , Mexico", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/lg/2020/lmk200haw-k-series-k22-2020-dual-sim-td-lte-latam-k200haw.json b/data/smartphone/lg/2020/lmk200haw-k-series-k22-2020-dual-sim-td-lte-latam-k200haw.json new file mode 100644 index 00000000000..08ca3c5a6e2 --- /dev/null +++ b/data/smartphone/lg/2020/lmk200haw-k-series-k22-2020-dual-sim-td-lte-latam-k200haw.json @@ -0,0 +1,41 @@ +{ + "slug": "lmk200haw-k-series-k22-2020-dual-sim-td-lte-latam-k200haw", + "name": "LMK200HAW K Series K22+ 2020 Dual SIM TD-LTE LATAM K200HAW", + "brand": "lg", + "soc": "snapdragon-215", + "release_date": "2020-10-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Colombia , Costa Rica , Ecuador , Guatemala , Honduras , Nicaragua , Panama , Peru , Puerto Rico", + "market_regions": "Central America , South America" +} diff --git a/data/smartphone/lg/2020/lmk200hm-k-series-k22-2020-td-lte-latam-k200hm.json b/data/smartphone/lg/2020/lmk200hm-k-series-k22-2020-td-lte-latam-k200hm.json new file mode 100644 index 00000000000..e11039518ab --- /dev/null +++ b/data/smartphone/lg/2020/lmk200hm-k-series-k22-2020-td-lte-latam-k200hm.json @@ -0,0 +1,42 @@ +{ + "slug": "lmk200hm-k-series-k22-2020-td-lte-latam-k200hm", + "name": "LMK200HM K Series K22 2020 TD-LTE LATAM K200HM", + "brand": "lg", + "soc": "snapdragon-215", + "release_date": "2020-09-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 2699, + "market_countries": "Argentina , Chile , Costa Rica , Mexico , Peru", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/lg/2020/lmk200hmw-k-series-k22-2020-dual-sim-td-lte-latam-k200hmw.json b/data/smartphone/lg/2020/lmk200hmw-k-series-k22-2020-dual-sim-td-lte-latam-k200hmw.json new file mode 100644 index 00000000000..34733e14009 --- /dev/null +++ b/data/smartphone/lg/2020/lmk200hmw-k-series-k22-2020-dual-sim-td-lte-latam-k200hmw.json @@ -0,0 +1,41 @@ +{ + "slug": "lmk200hmw-k-series-k22-2020-dual-sim-td-lte-latam-k200hmw", + "name": "LMK200HMW K Series K22 2020 Dual SIM TD-LTE LATAM K200HMW", + "brand": "lg", + "soc": "snapdragon-215", + "release_date": "2020-09-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Argentina , Chile , Costa Rica , Ecuador , Guatemala , Honduras , Nicaragua , Panama , Peru , Puerto Rico", + "market_regions": "Central America , South America" +} diff --git a/data/smartphone/lg/2020/lmk200qm-k-series-k32-2020-lte-ca-k200qm.json b/data/smartphone/lg/2020/lmk200qm-k-series-k32-2020-lte-ca-k200qm.json new file mode 100644 index 00000000000..cdf6ad18bbe --- /dev/null +++ b/data/smartphone/lg/2020/lmk200qm-k-series-k32-2020-lte-ca-k200qm.json @@ -0,0 +1,42 @@ +{ + "slug": "lmk200qm-k-series-k32-2020-lte-ca-k200qm", + "name": "LMK200QM K Series K32 2020 LTE CA K200QM", + "brand": "lg", + "soc": "snapdragon-215", + "release_date": "2020-11-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 169.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 150, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmk200qm0-k-series-k22-2020-lte-us-k200qm0.json b/data/smartphone/lg/2020/lmk200qm0-k-series-k22-2020-lte-us-k200qm0.json new file mode 100644 index 00000000000..3e627de201b --- /dev/null +++ b/data/smartphone/lg/2020/lmk200qm0-k-series-k22-2020-lte-us-k200qm0.json @@ -0,0 +1,42 @@ +{ + "slug": "lmk200qm0-k-series-k22-2020-lte-us-k200qm0", + "name": "LMK200QM0 K Series K22 2020 LTE US K200QM0", + "brand": "lg", + "soc": "snapdragon-215", + "release_date": "2020-11-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 169.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 90, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmk200tm-k-series-k22-2020-td-lte-us-k200tm9.json b/data/smartphone/lg/2020/lmk200tm-k-series-k22-2020-td-lte-us-k200tm9.json new file mode 100644 index 00000000000..86bcd5bc20b --- /dev/null +++ b/data/smartphone/lg/2020/lmk200tm-k-series-k22-2020-td-lte-us-k200tm9.json @@ -0,0 +1,42 @@ +{ + "slug": "lmk200tm-k-series-k22-2020-td-lte-us-k200tm9", + "name": "LMK200TM K Series K22 2020 TD-LTE US K200TM9", + "brand": "lg", + "soc": "snapdragon-215", + "release_date": "2020-12-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 169.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 90, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmk300am-phoenix-5-td-lte-us-k300ama.json b/data/smartphone/lg/2020/lmk300am-phoenix-5-td-lte-us-k300ama.json new file mode 100644 index 00000000000..111314630ac --- /dev/null +++ b/data/smartphone/lg/2020/lmk300am-phoenix-5-td-lte-us-k300ama.json @@ -0,0 +1,42 @@ +{ + "slug": "lmk300am-phoenix-5-td-lte-us-k300ama", + "name": "LMK300AM Phoenix 5 TD-LTE US K300AMA", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-08-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 100, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmk300am4-fortune-3-lte-us-k300am4.json b/data/smartphone/lg/2020/lmk300am4-fortune-3-lte-us-k300am4.json new file mode 100644 index 00000000000..4e7d1e96724 --- /dev/null +++ b/data/smartphone/lg/2020/lmk300am4-fortune-3-lte-us-k300am4.json @@ -0,0 +1,42 @@ +{ + "slug": "lmk300am4-fortune-3-lte-us-k300am4", + "name": "LMK300AM4 Fortune 3 LTE US K300AM4", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-06-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 100, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmk300cm-risio-4-lte-us-k300cmr.json b/data/smartphone/lg/2020/lmk300cm-risio-4-lte-us-k300cmr.json new file mode 100644 index 00000000000..751c86e85f4 --- /dev/null +++ b/data/smartphone/lg/2020/lmk300cm-risio-4-lte-us-k300cmr.json @@ -0,0 +1,42 @@ +{ + "slug": "lmk300cm-risio-4-lte-us-k300cmr", + "name": "LMK300CM Risio 4 LTE US K300CMR", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-07-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 3.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 100, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmk300mm-aristo-5-td-lte-us-k300mm.json b/data/smartphone/lg/2020/lmk300mm-aristo-5-td-lte-us-k300mm.json new file mode 100644 index 00000000000..6eed3f87912 --- /dev/null +++ b/data/smartphone/lg/2020/lmk300mm-aristo-5-td-lte-us-k300mm.json @@ -0,0 +1,42 @@ +{ + "slug": "lmk300mm-aristo-5-td-lte-us-k300mm", + "name": "LMK300MM Aristo 5 TD-LTE US K300MM", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-09-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 160, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmk300qm-k-series-k31-2020-td-lte-us-k300qm.json b/data/smartphone/lg/2020/lmk300qm-k-series-k31-2020-td-lte-us-k300qm.json new file mode 100644 index 00000000000..31675bcd5d9 --- /dev/null +++ b/data/smartphone/lg/2020/lmk300qm-k-series-k31-2020-td-lte-us-k300qm.json @@ -0,0 +1,42 @@ +{ + "slug": "lmk300qm-k-series-k31-2020-td-lte-us-k300qm", + "name": "LMK300QM K Series K31 2020 TD-LTE US K300QM", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-08-22", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 135, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmk300qm6-k-series-k31-2020-lte-us-k300qm6.json b/data/smartphone/lg/2020/lmk300qm6-k-series-k31-2020-lte-us-k300qm6.json new file mode 100644 index 00000000000..93168ec6baf --- /dev/null +++ b/data/smartphone/lg/2020/lmk300qm6-k-series-k31-2020-lte-us-k300qm6.json @@ -0,0 +1,41 @@ +{ + "slug": "lmk300qm6-k-series-k31-2020-lte-us-k300qm6", + "name": "LMK300QM6 K Series K31 2020 LTE US K300QM6", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-08-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmk300tm-aristo-5-td-lte-us-k300tms.json b/data/smartphone/lg/2020/lmk300tm-aristo-5-td-lte-us-k300tms.json new file mode 100644 index 00000000000..84f5e0a74de --- /dev/null +++ b/data/smartphone/lg/2020/lmk300tm-aristo-5-td-lte-us-k300tms.json @@ -0,0 +1,41 @@ +{ + "slug": "lmk300tm-aristo-5-td-lte-us-k300tms", + "name": "LMK300TM Aristo 5 TD-LTE US K300TMS", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-09-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmk300tm3-tribute-monarch-td-lte-us-k300tm3.json b/data/smartphone/lg/2020/lmk300tm3-tribute-monarch-td-lte-us-k300tm3.json new file mode 100644 index 00000000000..8a6276aa851 --- /dev/null +++ b/data/smartphone/lg/2020/lmk300tm3-tribute-monarch-td-lte-us-k300tm3.json @@ -0,0 +1,42 @@ +{ + "slug": "lmk300tm3-tribute-monarch-td-lte-us-k300tm3", + "name": "LMK300TM3 Tribute Monarch TD-LTE US K300TM3", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-07-11", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 110, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmk300um-k-series-k8x-2020-lte-a-us-k300um.json b/data/smartphone/lg/2020/lmk300um-k-series-k8x-2020-lte-a-us-k300um.json new file mode 100644 index 00000000000..bcb1cd4a3a3 --- /dev/null +++ b/data/smartphone/lg/2020/lmk300um-k-series-k8x-2020-lte-a-us-k300um.json @@ -0,0 +1,42 @@ +{ + "slug": "lmk300um-k-series-k8x-2020-lte-a-us-k300um", + "name": "LMK300UM K Series K8X 2020 LTE-A US K300UM", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-07-26", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 170, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmk300wm-k-series-k31-2020-lte-ca-k300wm.json b/data/smartphone/lg/2020/lmk300wm-k-series-k31-2020-lte-ca-k300wm.json new file mode 100644 index 00000000000..2873e00f0ec --- /dev/null +++ b/data/smartphone/lg/2020/lmk300wm-k-series-k31-2020-lte-ca-k300wm.json @@ -0,0 +1,41 @@ +{ + "slug": "lmk300wm-k-series-k31-2020-lte-ca-k300wm", + "name": "LMK300WM K Series K31 2020 LTE CA K300WM", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-10-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmk310im-w-series-w11-2020-dual-sim-td-lte-in-k310im.json b/data/smartphone/lg/2020/lmk310im-w-series-w11-2020-dual-sim-td-lte-in-k310im.json new file mode 100644 index 00000000000..9e76a9a535c --- /dev/null +++ b/data/smartphone/lg/2020/lmk310im-w-series-w11-2020-dual-sim-td-lte-in-k310im.json @@ -0,0 +1,41 @@ +{ + "slug": "lmk310im-w-series-w11-2020-dual-sim-td-lte-in-k310im", + "name": "LMK310IM W Series W11 2020 Dual SIM TD-LTE IN K310IM", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-12-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "Yes" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2020/lmk315im-w-series-w31-2020-dual-sim-td-lte-in-128gb-k315im.json b/data/smartphone/lg/2020/lmk315im-w-series-w31-2020-dual-sim-td-lte-in-128gb-k315im.json new file mode 100644 index 00000000000..18158aa9249 --- /dev/null +++ b/data/smartphone/lg/2020/lmk315im-w-series-w31-2020-dual-sim-td-lte-in-128gb-k315im.json @@ -0,0 +1,41 @@ +{ + "slug": "lmk315im-w-series-w31-2020-dual-sim-td-lte-in-128gb-k315im", + "name": "LMK315IM W Series W31+ 2020 Dual SIM TD-LTE IN 128GB K315IM", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-12-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 173.6, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2020/lmk315im-w-series-w31-2020-dual-sim-td-lte-in-64gb-k315im.json b/data/smartphone/lg/2020/lmk315im-w-series-w31-2020-dual-sim-td-lte-in-64gb-k315im.json new file mode 100644 index 00000000000..344bf5d26b0 --- /dev/null +++ b/data/smartphone/lg/2020/lmk315im-w-series-w31-2020-dual-sim-td-lte-in-64gb-k315im.json @@ -0,0 +1,41 @@ +{ + "slug": "lmk315im-w-series-w31-2020-dual-sim-td-lte-in-64gb-k315im", + "name": "LMK315IM W Series W31 2020 Dual SIM TD-LTE IN 64GB K315IM", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-12-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 173.6, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2020/lmk400a-xpression-plus-3-2020-lte-a-us-k400akr.json b/data/smartphone/lg/2020/lmk400a-xpression-plus-3-2020-lte-a-us-k400akr.json new file mode 100644 index 00000000000..e15175cc290 --- /dev/null +++ b/data/smartphone/lg/2020/lmk400a-xpression-plus-3-2020-lte-a-us-k400akr.json @@ -0,0 +1,42 @@ +{ + "slug": "lmk400a-xpression-plus-3-2020-lte-a-us-k400akr", + "name": "LMK400A Xpression Plus 3 2020 LTE-A US K400AKR", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-10-01", + "ram_gb": 2.0, + "battery_mah": 3500, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 200, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmk400am-harmony-4-2020-lte-a-us-k400am.json b/data/smartphone/lg/2020/lmk400am-harmony-4-2020-lte-a-us-k400am.json new file mode 100644 index 00000000000..c5dc0ce84b0 --- /dev/null +++ b/data/smartphone/lg/2020/lmk400am-harmony-4-2020-lte-a-us-k400am.json @@ -0,0 +1,41 @@ +{ + "slug": "lmk400am-harmony-4-2020-lte-a-us-k400am", + "name": "LMK400AM Harmony 4 2020 LTE-A US K400AM", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-06-01", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmk410emw-k-series-k41s-2020-dual-sim-td-lte-emea-k410emw.json b/data/smartphone/lg/2020/lmk410emw-k-series-k41s-2020-dual-sim-td-lte-emea-k410emw.json new file mode 100644 index 00000000000..b5a88c7d357 --- /dev/null +++ b/data/smartphone/lg/2020/lmk410emw-k-series-k41s-2020-dual-sim-td-lte-emea-k410emw.json @@ -0,0 +1,41 @@ +{ + "slug": "lmk410emw-k-series-k41s-2020-dual-sim-td-lte-emea-k410emw", + "name": "LMK410EMW K Series K41S 2020 Dual SIM TD-LTE EMEA K410EMW", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-05-28", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Serbia , Slovakia , Slovenia , Spain , Switzerland , Sweden , Turkey , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/lg/2020/lmk410fmw-k-series-k41s-2020-dual-sim-lte-latam-k410fmw.json b/data/smartphone/lg/2020/lmk410fmw-k-series-k41s-2020-dual-sim-lte-latam-k410fmw.json new file mode 100644 index 00000000000..b1503b65042 --- /dev/null +++ b/data/smartphone/lg/2020/lmk410fmw-k-series-k41s-2020-dual-sim-lte-latam-k410fmw.json @@ -0,0 +1,41 @@ +{ + "slug": "lmk410fmw-k-series-k41s-2020-dual-sim-lte-latam-k410fmw", + "name": "LMK410FMW K Series K41S 2020 Dual SIM LTE LATAM K410FMW", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-06-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Colombia , Costa Rica , Guatemala , Honduras , Nicaragua , Panama , Puerto Rico", + "market_regions": "Central America , South America" +} diff --git a/data/smartphone/lg/2020/lmk410hm-k-series-k41s-2020-td-lte-latam-k410hm.json b/data/smartphone/lg/2020/lmk410hm-k-series-k41s-2020-td-lte-latam-k410hm.json new file mode 100644 index 00000000000..12065d92025 --- /dev/null +++ b/data/smartphone/lg/2020/lmk410hm-k-series-k41s-2020-td-lte-latam-k410hm.json @@ -0,0 +1,41 @@ +{ + "slug": "lmk410hm-k-series-k41s-2020-td-lte-latam-k410hm", + "name": "LMK410HM K Series K41S 2020 TD-LTE LATAM K410HM", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-06-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Chile , Costa Rica , Honduras , Mexico , Peru", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/lg/2020/lmk410wm-k-series-k41s-2020-lte-ca-k410wm.json b/data/smartphone/lg/2020/lmk410wm-k-series-k41s-2020-lte-ca-k410wm.json new file mode 100644 index 00000000000..bd0bab8bc08 --- /dev/null +++ b/data/smartphone/lg/2020/lmk410wm-k-series-k41s-2020-lte-ca-k410wm.json @@ -0,0 +1,41 @@ +{ + "slug": "lmk410wm-k-series-k41s-2020-lte-ca-k410wm", + "name": "LMK410WM K Series K41S 2020 LTE CA K410WM", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-08-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmk420bmw-k-series-k52-2020-dual-sim-td-lte-latam-k420bmw.json b/data/smartphone/lg/2020/lmk420bmw-k-series-k52-2020-dual-sim-td-lte-latam-k420bmw.json new file mode 100644 index 00000000000..af291274632 --- /dev/null +++ b/data/smartphone/lg/2020/lmk420bmw-k-series-k52-2020-dual-sim-td-lte-latam-k420bmw.json @@ -0,0 +1,41 @@ +{ + "slug": "lmk420bmw-k-series-k52-2020-dual-sim-td-lte-latam-k420bmw", + "name": "LMK420BMW K Series K52 2020 Dual SIM TD-LTE LATAM K420BMW", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-10-27", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.59, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil", + "market_regions": "South America" +} diff --git a/data/smartphone/lg/2020/lmk420emw-k-series-k42-2020-dual-sim-td-lte-emea-k420emw.json b/data/smartphone/lg/2020/lmk420emw-k-series-k42-2020-dual-sim-td-lte-emea-k420emw.json new file mode 100644 index 00000000000..3a7c0ac5eae --- /dev/null +++ b/data/smartphone/lg/2020/lmk420emw-k-series-k42-2020-dual-sim-td-lte-emea-k420emw.json @@ -0,0 +1,41 @@ +{ + "slug": "lmk420emw-k-series-k42-2020-dual-sim-td-lte-emea-k420emw", + "name": "LMK420EMW K Series K42 2020 Dual SIM TD-LTE EMEA K420EMW", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-10-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.59, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Sweden , Switzerland , Turkey , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/lg/2020/lmk420hm-k-series-k42-2020-td-lte-latam-k420hm.json b/data/smartphone/lg/2020/lmk420hm-k-series-k42-2020-td-lte-latam-k420hm.json new file mode 100644 index 00000000000..4e6440c23be --- /dev/null +++ b/data/smartphone/lg/2020/lmk420hm-k-series-k42-2020-td-lte-latam-k420hm.json @@ -0,0 +1,41 @@ +{ + "slug": "lmk420hm-k-series-k42-2020-td-lte-latam-k420hm", + "name": "LMK420HM K Series K42 2020 TD-LTE LATAM K420HM", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-11-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.59, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Chile , Costa Rica , Guatemala , Honduras , Mexico , Nicaragua , Panama , Puerto Rico", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/lg/2020/lmk420hmw-k-series-k42-2020-dual-sim-td-lte-latam-k420hmw.json b/data/smartphone/lg/2020/lmk420hmw-k-series-k42-2020-dual-sim-td-lte-latam-k420hmw.json new file mode 100644 index 00000000000..888f09e339f --- /dev/null +++ b/data/smartphone/lg/2020/lmk420hmw-k-series-k42-2020-dual-sim-td-lte-latam-k420hmw.json @@ -0,0 +1,41 @@ +{ + "slug": "lmk420hmw-k-series-k42-2020-dual-sim-td-lte-latam-k420hmw", + "name": "LMK420HMW K Series K42 2020 Dual SIM TD-LTE LATAM K420HMW", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-11-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.59, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Chile , Colombia , Costa Rica , Guatemala , Honduras , Nicaragua , Panama , Peru", + "market_regions": "Central America , South America" +} diff --git a/data/smartphone/lg/2020/lmk420ym-k-series-k42-2020-td-lte-apac-k420ym.json b/data/smartphone/lg/2020/lmk420ym-k-series-k42-2020-td-lte-apac-k420ym.json new file mode 100644 index 00000000000..a7eac89b94f --- /dev/null +++ b/data/smartphone/lg/2020/lmk420ym-k-series-k42-2020-td-lte-apac-k420ym.json @@ -0,0 +1,42 @@ +{ + "slug": "lmk420ym-k-series-k42-2020-td-lte-apac-k420ym", + "name": "LMK420YM K Series K42 2020 TD-LTE APAC K420YM", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-10-27", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.59, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 249, + "market_countries": "Australia", + "market_regions": "Australia" +} diff --git a/data/smartphone/lg/2020/lmk420ymw-k-series-k42-2020-dual-sim-td-lte-apac-k420ymw.json b/data/smartphone/lg/2020/lmk420ymw-k-series-k42-2020-dual-sim-td-lte-apac-k420ymw.json new file mode 100644 index 00000000000..cd61067b965 --- /dev/null +++ b/data/smartphone/lg/2020/lmk420ymw-k-series-k42-2020-dual-sim-td-lte-apac-k420ymw.json @@ -0,0 +1,42 @@ +{ + "slug": "lmk420ymw-k-series-k42-2020-dual-sim-td-lte-apac-k420ymw", + "name": "LMK420YMW K Series K42 2020 Dual SIM TD-LTE APAC K420YMW", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-10-27", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.59, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 249, + "market_countries": "Australia , India , Taiwan", + "market_regions": "Asia , Australia" +} diff --git a/data/smartphone/lg/2020/lmk500mm-k-series-k51-2020-td-lte-us-k500mm.json b/data/smartphone/lg/2020/lmk500mm-k-series-k51-2020-td-lte-us-k500mm.json new file mode 100644 index 00000000000..47306e32e5e --- /dev/null +++ b/data/smartphone/lg/2020/lmk500mm-k-series-k51-2020-td-lte-us-k500mm.json @@ -0,0 +1,43 @@ +{ + "slug": "lmk500mm-k-series-k51-2020-td-lte-us-k500mm", + "name": "LMK500MM K Series K51 2020 TD-LTE US K500MM", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-05-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 204.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1560", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 264 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 190, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmk500qm5-k-series-k51-2020-lte-us-k500qm5.json b/data/smartphone/lg/2020/lmk500qm5-k-series-k51-2020-lte-us-k500qm5.json new file mode 100644 index 00000000000..717912a384d --- /dev/null +++ b/data/smartphone/lg/2020/lmk500qm5-k-series-k51-2020-lte-us-k500qm5.json @@ -0,0 +1,43 @@ +{ + "slug": "lmk500qm5-k-series-k51-2020-lte-us-k500qm5", + "name": "LMK500QM5 K Series K51 2020 LTE US K500QM5", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-06-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 203.4, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1560", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 264 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 200, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmk500qm6-k-series-k51-2020-lte-us-k500qm6.json b/data/smartphone/lg/2020/lmk500qm6-k-series-k51-2020-lte-us-k500qm6.json new file mode 100644 index 00000000000..31ba93eed3a --- /dev/null +++ b/data/smartphone/lg/2020/lmk500qm6-k-series-k51-2020-lte-us-k500qm6.json @@ -0,0 +1,42 @@ +{ + "slug": "lmk500qm6-k-series-k51-2020-lte-us-k500qm6", + "name": "LMK500QM6 K Series K51 2020 LTE US K500QM6", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-06-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 203.4, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1560", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 264 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmk500qm7-k-series-k51-2020-td-lte-us-k500qm7.json b/data/smartphone/lg/2020/lmk500qm7-k-series-k51-2020-td-lte-us-k500qm7.json new file mode 100644 index 00000000000..f6fb967717a --- /dev/null +++ b/data/smartphone/lg/2020/lmk500qm7-k-series-k51-2020-td-lte-us-k500qm7.json @@ -0,0 +1,43 @@ +{ + "slug": "lmk500qm7-k-series-k51-2020-td-lte-us-k500qm7", + "name": "LMK500QM7 K Series K51 2020 TD-LTE US K500QM7", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-05-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 204.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1560", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 264 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 200, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmk500qn-k-series-k51-2020-td-lte-latam-k500qn.json b/data/smartphone/lg/2020/lmk500qn-k-series-k51-2020-td-lte-latam-k500qn.json new file mode 100644 index 00000000000..c010b570dad --- /dev/null +++ b/data/smartphone/lg/2020/lmk500qn-k-series-k51-2020-td-lte-latam-k500qn.json @@ -0,0 +1,42 @@ +{ + "slug": "lmk500qn-k-series-k51-2020-td-lte-latam-k500qn", + "name": "LMK500QN K Series K51 2020 TD-LTE LATAM K500QN", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-05-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 198.6, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1560", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 264 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Costa Rica , Guatemala , Panama , Puerto Rico", + "market_regions": "Central America" +} diff --git a/data/smartphone/lg/2020/lmk500um3-k-series-k51-2020-td-lte-us-k500um3.json b/data/smartphone/lg/2020/lmk500um3-k-series-k51-2020-td-lte-us-k500um3.json new file mode 100644 index 00000000000..8970db13bfb --- /dev/null +++ b/data/smartphone/lg/2020/lmk500um3-k-series-k51-2020-td-lte-us-k500um3.json @@ -0,0 +1,42 @@ +{ + "slug": "lmk500um3-k-series-k51-2020-td-lte-us-k500um3", + "name": "LMK500UM3 K Series K51 2020 TD-LTE US K500UM3", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-05-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 204.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1560", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 264 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmk500umt-k-series-k51-2020-lte-us-k500umt.json b/data/smartphone/lg/2020/lmk500umt-k-series-k51-2020-lte-us-k500umt.json new file mode 100644 index 00000000000..efe3ac2ac30 --- /dev/null +++ b/data/smartphone/lg/2020/lmk500umt-k-series-k51-2020-lte-us-k500umt.json @@ -0,0 +1,42 @@ +{ + "slug": "lmk500umt-k-series-k51-2020-lte-us-k500umt", + "name": "LMK500UMT K Series K51 2020 LTE US K500UMT", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-05-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 204.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1560", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 264 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmk500umt3-k-series-k51-2020-td-lte-us-k500umt3.json b/data/smartphone/lg/2020/lmk500umt3-k-series-k51-2020-td-lte-us-k500umt3.json new file mode 100644 index 00000000000..45527482799 --- /dev/null +++ b/data/smartphone/lg/2020/lmk500umt3-k-series-k51-2020-td-lte-us-k500umt3.json @@ -0,0 +1,43 @@ +{ + "slug": "lmk500umt3-k-series-k51-2020-td-lte-us-k500umt3", + "name": "LMK500UMT3 K Series K51 2020 TD-LTE US K500UMT3", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-05-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 204.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1560", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 264 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 190, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmk510bmw-k-series-k51s-2020-dual-sim-td-lte-latam-k510bmw.json b/data/smartphone/lg/2020/lmk510bmw-k-series-k51s-2020-dual-sim-td-lte-latam-k510bmw.json new file mode 100644 index 00000000000..4d9ddffbd01 --- /dev/null +++ b/data/smartphone/lg/2020/lmk510bmw-k-series-k51s-2020-dual-sim-td-lte-latam-k510bmw.json @@ -0,0 +1,41 @@ +{ + "slug": "lmk510bmw-k-series-k51s-2020-dual-sim-td-lte-latam-k510bmw", + "name": "LMK510BMW K Series K51S 2020 Dual SIM TD-LTE LATAM K510BMW", + "brand": "lg", + "soc": "helio-p35", + "release_date": "2020-05-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 194.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Costa Rica , Guatemala , Honduras , Nicaragua , Panama , Puerto Rico", + "market_regions": "Central America , South America" +} diff --git a/data/smartphone/lg/2020/lmk510emw-k-series-k51s-2020-dual-sim-td-lte-emea-k510emw.json b/data/smartphone/lg/2020/lmk510emw-k-series-k51s-2020-dual-sim-td-lte-emea-k510emw.json new file mode 100644 index 00000000000..f5a0e87cfd5 --- /dev/null +++ b/data/smartphone/lg/2020/lmk510emw-k-series-k51s-2020-dual-sim-td-lte-emea-k510emw.json @@ -0,0 +1,42 @@ +{ + "slug": "lmk510emw-k-series-k51s-2020-dual-sim-td-lte-emea-k510emw", + "name": "LMK510EMW K Series K51S 2020 Dual SIM TD-LTE EMEA K510EMW", + "brand": "lg", + "soc": "helio-p35", + "release_date": "2020-05-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 194.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 219, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Serbia , Slovakia , Slovenia , Spain , Switzerland , Sweden , Turkey , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/lg/2020/lmk510hm-k-series-k51s-2020-td-lte-latam-k510hm.json b/data/smartphone/lg/2020/lmk510hm-k-series-k51s-2020-td-lte-latam-k510hm.json new file mode 100644 index 00000000000..718e0881550 --- /dev/null +++ b/data/smartphone/lg/2020/lmk510hm-k-series-k51s-2020-td-lte-latam-k510hm.json @@ -0,0 +1,41 @@ +{ + "slug": "lmk510hm-k-series-k51s-2020-td-lte-latam-k510hm", + "name": "LMK510HM K Series K51S 2020 TD-LTE LATAM K510HM", + "brand": "lg", + "soc": "helio-p35", + "release_date": "2020-07-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 194.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Canada , Chile , Mexico , Peru", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/lg/2020/lmk510zmw-k-series-k51s-2020-dual-sim-td-lte-apac-k510zmw.json b/data/smartphone/lg/2020/lmk510zmw-k-series-k51s-2020-dual-sim-td-lte-apac-k510zmw.json new file mode 100644 index 00000000000..ff1ec97fc3e --- /dev/null +++ b/data/smartphone/lg/2020/lmk510zmw-k-series-k51s-2020-dual-sim-td-lte-apac-k510zmw.json @@ -0,0 +1,42 @@ +{ + "slug": "lmk510zmw-k-series-k51s-2020-dual-sim-td-lte-apac-k510zmw", + "name": "LMK510ZMW K Series K51S 2020 Dual SIM TD-LTE APAC K510ZMW", + "brand": "lg", + "soc": "helio-p35", + "release_date": "2020-06-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 194.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 329, + "market_countries": "Australia , Philippines , Singapore , South Africa , Taiwan", + "market_regions": "Africa , Australia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/lg/2020/lmk520bmw-k-series-k62-2020-dual-sim-td-lte-latam-k520bmw.json b/data/smartphone/lg/2020/lmk520bmw-k-series-k62-2020-dual-sim-td-lte-latam-k520bmw.json new file mode 100644 index 00000000000..402ee3c6906 --- /dev/null +++ b/data/smartphone/lg/2020/lmk520bmw-k-series-k62-2020-dual-sim-td-lte-latam-k520bmw.json @@ -0,0 +1,41 @@ +{ + "slug": "lmk520bmw-k-series-k62-2020-dual-sim-td-lte-latam-k520bmw", + "name": "LMK520BMW K Series K62 2020 Dual SIM TD-LTE LATAM K520BMW", + "brand": "lg", + "soc": "helio-p35", + "release_date": "2020-10-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.59, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil", + "market_regions": "South America" +} diff --git a/data/smartphone/lg/2020/lmk520emw-k-series-k52-2020-dual-sim-td-lte-emea-k520emw.json b/data/smartphone/lg/2020/lmk520emw-k-series-k52-2020-dual-sim-td-lte-emea-k520emw.json new file mode 100644 index 00000000000..c9a55b0201d --- /dev/null +++ b/data/smartphone/lg/2020/lmk520emw-k-series-k52-2020-dual-sim-td-lte-emea-k520emw.json @@ -0,0 +1,41 @@ +{ + "slug": "lmk520emw-k-series-k52-2020-dual-sim-td-lte-emea-k520emw", + "name": "LMK520EMW K Series K52 2020 Dual SIM TD-LTE EMEA K520EMW", + "brand": "lg", + "soc": "helio-p35", + "release_date": "2020-10-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.59, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Sweden , Switzerland , Turkey , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/lg/2020/lmk525bmw-k-series-k62-2020-dual-sim-td-lte-latam-128gb-k525bmw.json b/data/smartphone/lg/2020/lmk525bmw-k-series-k62-2020-dual-sim-td-lte-latam-128gb-k525bmw.json new file mode 100644 index 00000000000..ea7b5074ec0 --- /dev/null +++ b/data/smartphone/lg/2020/lmk525bmw-k-series-k62-2020-dual-sim-td-lte-latam-128gb-k525bmw.json @@ -0,0 +1,41 @@ +{ + "slug": "lmk525bmw-k-series-k62-2020-dual-sim-td-lte-latam-128gb-k525bmw", + "name": "LMK525BMW K Series K62+ 2020 Dual SIM TD-LTE LATAM 128GB K525BMW", + "brand": "lg", + "soc": "helio-p35", + "release_date": "2020-10-27", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 28.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil", + "market_regions": "South America" +} diff --git a/data/smartphone/lg/2020/lmk525hm-k-series-k62-2020-td-lte-latam-128gb-k525hm.json b/data/smartphone/lg/2020/lmk525hm-k-series-k62-2020-td-lte-latam-128gb-k525hm.json new file mode 100644 index 00000000000..c642590fe84 --- /dev/null +++ b/data/smartphone/lg/2020/lmk525hm-k-series-k62-2020-td-lte-latam-128gb-k525hm.json @@ -0,0 +1,41 @@ +{ + "slug": "lmk525hm-k-series-k62-2020-td-lte-latam-128gb-k525hm", + "name": "LMK525HM K Series K62 2020 TD-LTE LATAM 128GB K525HM", + "brand": "lg", + "soc": "helio-p35", + "release_date": "2020-10-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 28.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Guatemala , Honduras , Mexico , Panama", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/lg/2020/lmk920am-k-series-k92-5g-td-lte-us-k920am1.json b/data/smartphone/lg/2020/lmk920am-k-series-k92-5g-td-lte-us-k920am1.json new file mode 100644 index 00000000000..dfea8bfde55 --- /dev/null +++ b/data/smartphone/lg/2020/lmk920am-k-series-k92-5g-td-lte-us-k920am1.json @@ -0,0 +1,42 @@ +{ + "slug": "lmk920am-k-series-k92-5g-td-lte-us-k920am1", + "name": "LMK920AM K Series K92 5G TD-LTE US K920AM1", + "brand": "lg", + "soc": "snapdragon-690", + "release_date": "2020-11-06", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 202.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 395, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmk920am-k-series-k92-5g-td-lte-us-k920am4.json b/data/smartphone/lg/2020/lmk920am-k-series-k92-5g-td-lte-us-k920am4.json new file mode 100644 index 00000000000..685c4b6057e --- /dev/null +++ b/data/smartphone/lg/2020/lmk920am-k-series-k92-5g-td-lte-us-k920am4.json @@ -0,0 +1,41 @@ +{ + "slug": "lmk920am-k-series-k92-5g-td-lte-us-k920am4", + "name": "LMK920AM K Series K92 5G TD-LTE US K920AM4", + "brand": "lg", + "soc": "snapdragon-690", + "release_date": "2020-11-06", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 202.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmk920tm-k-series-k92-5g-td-lte-us-k920tm0.json b/data/smartphone/lg/2020/lmk920tm-k-series-k92-5g-td-lte-us-k920tm0.json new file mode 100644 index 00000000000..dda53e9a6ca --- /dev/null +++ b/data/smartphone/lg/2020/lmk920tm-k-series-k92-5g-td-lte-us-k920tm0.json @@ -0,0 +1,42 @@ +{ + "slug": "lmk920tm-k-series-k92-5g-td-lte-us-k920tm0", + "name": "LMK920TM K Series K92 5G TD-LTE US K920TM0", + "brand": "lg", + "soc": "snapdragon-690", + "release_date": "2020-11-19", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 202.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 359, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmq310n-q-series-q31-2020-td-lte-kr-q310n.json b/data/smartphone/lg/2020/lmq310n-q-series-q31-2020-td-lte-kr-q310n.json new file mode 100644 index 00000000000..1ff73ce6cc0 --- /dev/null +++ b/data/smartphone/lg/2020/lmq310n-q-series-q31-2020-td-lte-kr-q310n.json @@ -0,0 +1,41 @@ +{ + "slug": "lmq310n-q-series-q31-2020-td-lte-kr-q310n", + "name": "LMQ310N Q Series Q31 2020 TD-LTE KR Q310N", + "brand": "lg", + "soc": "helio-p22", + "release_date": "2020-10-26", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2020/lmq520n-q-series-q52-2020-td-lte-kr-q520n.json b/data/smartphone/lg/2020/lmq520n-q-series-q52-2020-td-lte-kr-q520n.json new file mode 100644 index 00000000000..904b3432e51 --- /dev/null +++ b/data/smartphone/lg/2020/lmq520n-q-series-q52-2020-td-lte-kr-q520n.json @@ -0,0 +1,41 @@ +{ + "slug": "lmq520n-q-series-q52-2020-td-lte-kr-q520n", + "name": "LMQ520N Q Series Q52 2020 TD-LTE KR Q520N", + "brand": "lg", + "soc": "helio-p35", + "release_date": "2020-10-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.59, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2020/lmq620qm-q-series-q70-td-lte-us-q620qm.json b/data/smartphone/lg/2020/lmq620qm-q-series-q70-td-lte-us-q620qm.json new file mode 100644 index 00000000000..11a5e74aaca --- /dev/null +++ b/data/smartphone/lg/2020/lmq620qm-q-series-q70-td-lte-us-q620qm.json @@ -0,0 +1,43 @@ +{ + "slug": "lmq620qm-q-series-q70-td-lte-us-q620qm", + "name": "LMQ620QM Q Series Q70 TD-LTE US Q620QM", + "brand": "lg", + "soc": "snapdragon-675", + "release_date": "2020-06-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 16.1 + } + ], + "charging_wired_w": 16, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 350, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmq620qm5-q-series-q70-lte-a-us-q620qm5.json b/data/smartphone/lg/2020/lmq620qm5-q-series-q70-lte-a-us-q620qm5.json new file mode 100644 index 00000000000..96559b31dce --- /dev/null +++ b/data/smartphone/lg/2020/lmq620qm5-q-series-q70-lte-a-us-q620qm5.json @@ -0,0 +1,41 @@ +{ + "slug": "lmq620qm5-q-series-q70-lte-a-us-q620qm5", + "name": "LMQ620QM5 Q Series Q70 LTE-A US Q620QM5", + "brand": "lg", + "soc": "snapdragon-675", + "release_date": "2020-08-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 16.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmq620qm6-q-series-q70-lte-a-us-q620qm6.json b/data/smartphone/lg/2020/lmq620qm6-q-series-q70-lte-a-us-q620qm6.json new file mode 100644 index 00000000000..f24c8060411 --- /dev/null +++ b/data/smartphone/lg/2020/lmq620qm6-q-series-q70-lte-a-us-q620qm6.json @@ -0,0 +1,42 @@ +{ + "slug": "lmq620qm6-q-series-q70-lte-a-us-q620qm6", + "name": "LMQ620QM6 Q Series Q70 LTE-A US Q620QM6", + "brand": "lg", + "soc": "snapdragon-675", + "release_date": "2020-07-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 16.1 + } + ], + "charging_wired_w": 16, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmq620vab-q-series-q70-lte-a-us-q620vab.json b/data/smartphone/lg/2020/lmq620vab-q-series-q70-lte-a-us-q620vab.json new file mode 100644 index 00000000000..ed0dce27aba --- /dev/null +++ b/data/smartphone/lg/2020/lmq620vab-q-series-q70-lte-a-us-q620vab.json @@ -0,0 +1,42 @@ +{ + "slug": "lmq620vab-q-series-q70-lte-a-us-q620vab", + "name": "LMQ620VAB Q Series Q70 LTE-A US Q620VAB", + "brand": "lg", + "soc": "snapdragon-675", + "release_date": "2020-05-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 16.1 + } + ], + "charging_wired_w": 16, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmq620wa-q-series-q70-lte-a-ca-q620wa.json b/data/smartphone/lg/2020/lmq620wa-q-series-q70-lte-a-ca-q620wa.json new file mode 100644 index 00000000000..15101f68e9b --- /dev/null +++ b/data/smartphone/lg/2020/lmq620wa-q-series-q70-lte-a-ca-q620wa.json @@ -0,0 +1,42 @@ +{ + "slug": "lmq620wa-q-series-q70-lte-a-ca-q620wa", + "name": "LMQ620WA Q Series Q70 LTE-A CA Q620WA", + "brand": "lg", + "soc": "snapdragon-675", + "release_date": "2020-01-16", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 16.1 + } + ], + "charging_wired_w": 16, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmq630baw-k-series-k61-2020-dual-sim-td-lte-latam-q630baw.json b/data/smartphone/lg/2020/lmq630baw-k-series-k61-2020-dual-sim-td-lte-latam-q630baw.json new file mode 100644 index 00000000000..4f0ac31f2b9 --- /dev/null +++ b/data/smartphone/lg/2020/lmq630baw-k-series-k61-2020-dual-sim-td-lte-latam-q630baw.json @@ -0,0 +1,41 @@ +{ + "slug": "lmq630baw-k-series-k61-2020-dual-sim-td-lte-latam-q630baw", + "name": "LMQ630BAW K Series K61 2020 Dual SIM TD-LTE LATAM Q630BAW", + "brand": "lg", + "soc": "helio-p35", + "release_date": "2020-05-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Costa Rica , Guatemala , Honduras , Nicaragua , Puerto Rico", + "market_regions": "Central America , South America" +} diff --git a/data/smartphone/lg/2020/lmq630eaw-k-series-k61-2020-dual-sim-td-lte-emea-q630eaw.json b/data/smartphone/lg/2020/lmq630eaw-k-series-k61-2020-dual-sim-td-lte-emea-q630eaw.json new file mode 100644 index 00000000000..b24c0d8225b --- /dev/null +++ b/data/smartphone/lg/2020/lmq630eaw-k-series-k61-2020-dual-sim-td-lte-emea-q630eaw.json @@ -0,0 +1,42 @@ +{ + "slug": "lmq630eaw-k-series-k61-2020-dual-sim-td-lte-emea-q630eaw", + "name": "LMQ630EAW K Series K61 2020 Dual SIM TD-LTE EMEA Q630EAW", + "brand": "lg", + "soc": "helio-p35", + "release_date": "2020-05-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 279, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Romania , Russia , Serbia , Slovakia , Slovenia , Spain , Sweden , Switzerland , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/lg/2020/lmq630ha-k-series-k61-2020-td-lte-latam-q630ha.json b/data/smartphone/lg/2020/lmq630ha-k-series-k61-2020-td-lte-latam-q630ha.json new file mode 100644 index 00000000000..6443e151508 --- /dev/null +++ b/data/smartphone/lg/2020/lmq630ha-k-series-k61-2020-td-lte-latam-q630ha.json @@ -0,0 +1,41 @@ +{ + "slug": "lmq630ha-k-series-k61-2020-td-lte-latam-q630ha", + "name": "LMQ630HA K Series K61 2020 TD-LTE LATAM Q630HA", + "brand": "lg", + "soc": "helio-p35", + "release_date": "2020-06-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Canada , Costa Rica , Guatemala , Honduras , Mexico , Nicaragua , Peru , Puerto Rico", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/lg/2020/lmq630um-k-series-k61-2020-lte-a-ca-q630um.json b/data/smartphone/lg/2020/lmq630um-k-series-k61-2020-lte-a-ca-q630um.json new file mode 100644 index 00000000000..a082f4e2661 --- /dev/null +++ b/data/smartphone/lg/2020/lmq630um-k-series-k61-2020-lte-a-ca-q630um.json @@ -0,0 +1,41 @@ +{ + "slug": "lmq630um-k-series-k61-2020-lte-a-ca-q630um", + "name": "LMQ630UM K Series K61 2020 LTE-A CA Q630UM", + "brand": "lg", + "soc": "helio-p35", + "release_date": "2020-07-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmq720ts3-stylo-5x-td-lte-us-q720ts.json b/data/smartphone/lg/2020/lmq720ts3-stylo-5x-td-lte-us-q720ts.json new file mode 100644 index 00000000000..ef315a86678 --- /dev/null +++ b/data/smartphone/lg/2020/lmq720ts3-stylo-5x-td-lte-us-q720ts.json @@ -0,0 +1,41 @@ +{ + "slug": "lmq720ts3-stylo-5x-td-lte-us-q720ts", + "name": "LMQ720TS3 Stylo 5x TD-LTE US Q720TS", + "brand": "lg", + "soc": "snapdragon-450", + "release_date": "2020-02-01", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmq730am4-stylo-6-lte-a-us-q730am4.json b/data/smartphone/lg/2020/lmq730am4-stylo-6-lte-a-us-q730am4.json new file mode 100644 index 00000000000..b13e14c5863 --- /dev/null +++ b/data/smartphone/lg/2020/lmq730am4-stylo-6-lte-a-us-q730am4.json @@ -0,0 +1,42 @@ +{ + "slug": "lmq730am4-stylo-6-lte-a-us-q730am4", + "name": "LMQ730AM4 Stylo 6 LTE-A US Q730AM4", + "brand": "lg", + "soc": "helio-p35", + "release_date": "2020-06-04", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.79, + "resolution": "1080x2460", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 230, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmq730baw-k-series-k71-dual-sim-td-lte-latam-128gb-q730baw.json b/data/smartphone/lg/2020/lmq730baw-k-series-k71-dual-sim-td-lte-latam-128gb-q730baw.json new file mode 100644 index 00000000000..79ec52d8bca --- /dev/null +++ b/data/smartphone/lg/2020/lmq730baw-k-series-k71-dual-sim-td-lte-latam-128gb-q730baw.json @@ -0,0 +1,41 @@ +{ + "slug": "lmq730baw-k-series-k71-dual-sim-td-lte-latam-128gb-q730baw", + "name": "LMQ730BAW K Series K71 Dual SIM TD-LTE LATAM 128GB Q730BAW", + "brand": "lg", + "soc": "helio-p35", + "release_date": "2020-09-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.79, + "resolution": "1080x2460", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Colombia , Costa Rica , Ecuador , Guatemala , Honduras , Nicaragua , Panama , Paraguay , Peru , Puerto Rico", + "market_regions": "Central America , South America" +} diff --git a/data/smartphone/lg/2020/lmq730ha-k-series-k71-td-lte-latam-128gb-q730ha.json b/data/smartphone/lg/2020/lmq730ha-k-series-k71-td-lte-latam-128gb-q730ha.json new file mode 100644 index 00000000000..4dc01b7238e --- /dev/null +++ b/data/smartphone/lg/2020/lmq730ha-k-series-k71-td-lte-latam-128gb-q730ha.json @@ -0,0 +1,41 @@ +{ + "slug": "lmq730ha-k-series-k71-td-lte-latam-128gb-q730ha", + "name": "LMQ730HA K Series K71 TD-LTE LATAM 128GB Q730HA", + "brand": "lg", + "soc": "helio-p35", + "release_date": "2020-09-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.79, + "resolution": "1080x2460", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Chile , Costa Rica , Guatemala , Honduras , Mexico , Panama , Puerto Rico", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/lg/2020/lmq730mm-stylo-6-td-lte-us-q730mm.json b/data/smartphone/lg/2020/lmq730mm-stylo-6-td-lte-us-q730mm.json new file mode 100644 index 00000000000..2c7cccdd535 --- /dev/null +++ b/data/smartphone/lg/2020/lmq730mm-stylo-6-td-lte-us-q730mm.json @@ -0,0 +1,42 @@ +{ + "slug": "lmq730mm-stylo-6-td-lte-us-q730mm", + "name": "LMQ730MM Stylo 6 TD-LTE US Q730MM", + "brand": "lg", + "soc": "helio-p35", + "release_date": "2020-05-26", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.79, + "resolution": "1080x2460", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 252, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmq730qm0-stylo-6-lte-a-us-q730qm0.json b/data/smartphone/lg/2020/lmq730qm0-stylo-6-lte-a-us-q730qm0.json new file mode 100644 index 00000000000..86c9482b5ca --- /dev/null +++ b/data/smartphone/lg/2020/lmq730qm0-stylo-6-lte-a-us-q730qm0.json @@ -0,0 +1,41 @@ +{ + "slug": "lmq730qm0-stylo-6-lte-a-us-q730qm0", + "name": "LMQ730QM0 Stylo 6 LTE-A US Q730QM0", + "brand": "lg", + "soc": "helio-p35", + "release_date": "2020-06-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.79, + "resolution": "1080x2460", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmq730qm5-stylo-6-lte-a-us-q730qm5.json b/data/smartphone/lg/2020/lmq730qm5-stylo-6-lte-a-us-q730qm5.json new file mode 100644 index 00000000000..ec31b2ebcc6 --- /dev/null +++ b/data/smartphone/lg/2020/lmq730qm5-stylo-6-lte-a-us-q730qm5.json @@ -0,0 +1,42 @@ +{ + "slug": "lmq730qm5-stylo-6-lte-a-us-q730qm5", + "name": "LMQ730QM5 Stylo 6 LTE-A US Q730QM5", + "brand": "lg", + "soc": "helio-p35", + "release_date": "2020-06-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.79, + "resolution": "1080x2460", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 300, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmq730qm6-stylo-6-lte-a-us-q730qm6.json b/data/smartphone/lg/2020/lmq730qm6-stylo-6-lte-a-us-q730qm6.json new file mode 100644 index 00000000000..504bf074ee3 --- /dev/null +++ b/data/smartphone/lg/2020/lmq730qm6-stylo-6-lte-a-us-q730qm6.json @@ -0,0 +1,41 @@ +{ + "slug": "lmq730qm6-stylo-6-lte-a-us-q730qm6", + "name": "LMQ730QM6 Stylo 6 LTE-A US Q730QM6", + "brand": "lg", + "soc": "helio-p35", + "release_date": "2020-06-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.79, + "resolution": "1080x2460", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmq730qm7-stylo-6-lte-a-us-q730qm7.json b/data/smartphone/lg/2020/lmq730qm7-stylo-6-lte-a-us-q730qm7.json new file mode 100644 index 00000000000..bb9f8329893 --- /dev/null +++ b/data/smartphone/lg/2020/lmq730qm7-stylo-6-lte-a-us-q730qm7.json @@ -0,0 +1,42 @@ +{ + "slug": "lmq730qm7-stylo-6-lte-a-us-q730qm7", + "name": "LMQ730QM7 Stylo 6 LTE-A US Q730QM7", + "brand": "lg", + "soc": "helio-p35", + "release_date": "2020-06-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.79, + "resolution": "1080x2460", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 300, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmq730qn-stylo-6-lte-a-latam-q730qn.json b/data/smartphone/lg/2020/lmq730qn-stylo-6-lte-a-latam-q730qn.json new file mode 100644 index 00000000000..86454f67496 --- /dev/null +++ b/data/smartphone/lg/2020/lmq730qn-stylo-6-lte-a-latam-q730qn.json @@ -0,0 +1,41 @@ +{ + "slug": "lmq730qn-stylo-6-lte-a-latam-q730qn", + "name": "LMQ730QN Stylo 6 LTE-A LATAM Q730QN", + "brand": "lg", + "soc": "helio-p35", + "release_date": "2020-07-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 219.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.79, + "resolution": "1080x2460", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Guatemala , Honduras , Puerto Rico", + "market_regions": "Central America" +} diff --git a/data/smartphone/lg/2020/lmq730tm3-stylo-6-td-lte-us-q730tm3.json b/data/smartphone/lg/2020/lmq730tm3-stylo-6-td-lte-us-q730tm3.json new file mode 100644 index 00000000000..09baa76ae12 --- /dev/null +++ b/data/smartphone/lg/2020/lmq730tm3-stylo-6-td-lte-us-q730tm3.json @@ -0,0 +1,42 @@ +{ + "slug": "lmq730tm3-stylo-6-td-lte-us-q730tm3", + "name": "LMQ730TM3 Stylo 6 TD-LTE US Q730TM3", + "brand": "lg", + "soc": "helio-p35", + "release_date": "2020-05-21", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.79, + "resolution": "1080x2460", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 220, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmq730tmw-stylo-6-td-lte-us-q730tmw.json b/data/smartphone/lg/2020/lmq730tmw-stylo-6-td-lte-us-q730tmw.json new file mode 100644 index 00000000000..dea7436c321 --- /dev/null +++ b/data/smartphone/lg/2020/lmq730tmw-stylo-6-td-lte-us-q730tmw.json @@ -0,0 +1,42 @@ +{ + "slug": "lmq730tmw-stylo-6-td-lte-us-q730tmw", + "name": "LMQ730TMW Stylo 6 TD-LTE US Q730TMW", + "brand": "lg", + "soc": "helio-p35", + "release_date": "2020-05-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.79, + "resolution": "1080x2460", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 252, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmq730vmw-stylo-6-lte-a-us-q730vmw.json b/data/smartphone/lg/2020/lmq730vmw-stylo-6-lte-a-us-q730vmw.json new file mode 100644 index 00000000000..785641ee2e6 --- /dev/null +++ b/data/smartphone/lg/2020/lmq730vmw-stylo-6-lte-a-us-q730vmw.json @@ -0,0 +1,42 @@ +{ + "slug": "lmq730vmw-stylo-6-lte-a-us-q730vmw", + "name": "LMQ730VMW Stylo 6 LTE-A US Q730VMW", + "brand": "lg", + "soc": "helio-p35", + "release_date": "2020-06-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.79, + "resolution": "1080x2460", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 240, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmq920n-q-series-q92-5g-td-lte-kr-q920n.json b/data/smartphone/lg/2020/lmq920n-q-series-q92-5g-td-lte-kr-q920n.json new file mode 100644 index 00000000000..4d4ad95cfa1 --- /dev/null +++ b/data/smartphone/lg/2020/lmq920n-q-series-q92-5g-td-lte-kr-q920n.json @@ -0,0 +1,41 @@ +{ + "slug": "lmq920n-q-series-q92-5g-td-lte-kr-q920n", + "name": "LMQ920N Q Series Q92 5G TD-LTE KR Q920N", + "brand": "lg", + "soc": "snapdragon-765", + "release_date": "2020-08-26", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2020/lmv600am-v60-thinq-5g-td-lte-us-v600am.json b/data/smartphone/lg/2020/lmv600am-v60-thinq-5g-td-lte-us-v600am.json new file mode 100644 index 00000000000..1fe4dc1e47b --- /dev/null +++ b/data/smartphone/lg/2020/lmv600am-v60-thinq-5g-td-lte-us-v600am.json @@ -0,0 +1,42 @@ +{ + "slug": "lmv600am-v60-thinq-5g-td-lte-us-v600am", + "name": "LMV600AM V60 ThinQ 5G TD-LTE US V600AM", + "brand": "lg", + "soc": "snapdragon-865", + "release_date": "2020-03-27", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 214.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmv600ea-v60-thinq-5g-global-td-lte-256gb-v600ea.json b/data/smartphone/lg/2020/lmv600ea-v60-thinq-5g-global-td-lte-256gb-v600ea.json new file mode 100644 index 00000000000..dd25e30296b --- /dev/null +++ b/data/smartphone/lg/2020/lmv600ea-v60-thinq-5g-global-td-lte-256gb-v600ea.json @@ -0,0 +1,42 @@ +{ + "slug": "lmv600ea-v60-thinq-5g-global-td-lte-256gb-v600ea", + "name": "LMV600EA V60 ThinQ 5G Global TD-LTE 256GB V600EA", + "brand": "lg", + "soc": "snapdragon-865", + "release_date": "2020-05-21", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 214.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Denmark , Finland , France , Germany , Italy , Netherlands , Portugal , South Africa , Spain , Switzerland , Taiwan , UK", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/lg/2020/lmv600qm-v60-thinq-5g-td-lte-us-v600qm5-v600qm6.json b/data/smartphone/lg/2020/lmv600qm-v60-thinq-5g-td-lte-us-v600qm5-v600qm6.json new file mode 100644 index 00000000000..d90910efc69 --- /dev/null +++ b/data/smartphone/lg/2020/lmv600qm-v60-thinq-5g-td-lte-us-v600qm5-v600qm6.json @@ -0,0 +1,42 @@ +{ + "slug": "lmv600qm-v60-thinq-5g-td-lte-us-v600qm5-v600qm6", + "name": "LMV600QM V60 ThinQ 5G TD-lTE US V600QM5 / V600QM6", + "brand": "lg", + "soc": "snapdragon-865", + "release_date": "2020-04-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 214.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmv600tm0-v60-thinq-5g-td-lte-us-v600tm.json b/data/smartphone/lg/2020/lmv600tm0-v60-thinq-5g-td-lte-us-v600tm.json new file mode 100644 index 00000000000..69727cb174a --- /dev/null +++ b/data/smartphone/lg/2020/lmv600tm0-v60-thinq-5g-td-lte-us-v600tm.json @@ -0,0 +1,42 @@ +{ + "slug": "lmv600tm0-v60-thinq-5g-td-lte-us-v600tm", + "name": "LMV600TM0 V60 ThinQ 5G TD-LTE US V600TM", + "brand": "lg", + "soc": "snapdragon-865", + "release_date": "2020-04-16", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 214.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmv600tm2x-v60-thinq-5g-td-lte-ca-v600tm2x.json b/data/smartphone/lg/2020/lmv600tm2x-v60-thinq-5g-td-lte-ca-v600tm2x.json new file mode 100644 index 00000000000..8f0fc914790 --- /dev/null +++ b/data/smartphone/lg/2020/lmv600tm2x-v60-thinq-5g-td-lte-ca-v600tm2x.json @@ -0,0 +1,42 @@ +{ + "slug": "lmv600tm2x-v60-thinq-5g-td-lte-ca-v600tm2x", + "name": "LMV600TM2X V60 ThinQ 5G TD-LTE CA V600TM2X", + "brand": "lg", + "soc": "snapdragon-865", + "release_date": "2020-03-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 214.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmv600tml-v60-thinq-5g-td-lte-us-v600tm.json b/data/smartphone/lg/2020/lmv600tml-v60-thinq-5g-td-lte-us-v600tm.json new file mode 100644 index 00000000000..eaf1ffd4928 --- /dev/null +++ b/data/smartphone/lg/2020/lmv600tml-v60-thinq-5g-td-lte-us-v600tm.json @@ -0,0 +1,42 @@ +{ + "slug": "lmv600tml-v60-thinq-5g-td-lte-us-v600tm", + "name": "LMV600TML V60 ThinQ 5G TD-LTE US V600TM", + "brand": "lg", + "soc": "snapdragon-865", + "release_date": "2020-03-28", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 214.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmv600vm-v60-thinq-5g-uw-td-lte-us-v600vm.json b/data/smartphone/lg/2020/lmv600vm-v60-thinq-5g-uw-td-lte-us-v600vm.json new file mode 100644 index 00000000000..6a79aa99f32 --- /dev/null +++ b/data/smartphone/lg/2020/lmv600vm-v60-thinq-5g-uw-td-lte-us-v600vm.json @@ -0,0 +1,42 @@ +{ + "slug": "lmv600vm-v60-thinq-5g-uw-td-lte-us-v600vm", + "name": "LMV600VM V60 ThinQ 5G UW TD-LTE US V600VM", + "brand": "lg", + "soc": "snapdragon-865", + "release_date": "2020-03-27", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 214.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmv605n-v60-thinq-5g-td-lte-kr-v605n.json b/data/smartphone/lg/2020/lmv605n-v60-thinq-5g-td-lte-kr-v605n.json new file mode 100644 index 00000000000..f672c5e69f1 --- /dev/null +++ b/data/smartphone/lg/2020/lmv605n-v60-thinq-5g-td-lte-kr-v605n.json @@ -0,0 +1,42 @@ +{ + "slug": "lmv605n-v60-thinq-5g-td-lte-kr-v605n", + "name": "LMV605N V60 ThinQ 5G TD-LTE KR V605N", + "brand": "lg", + "soc": "snapdragon-865", + "release_date": "2020-03-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 214.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2020/lmx320am8-neon-plus-lte-us-x320am.json b/data/smartphone/lg/2020/lmx320am8-neon-plus-lte-us-x320am.json new file mode 100644 index 00000000000..0479ea6c994 --- /dev/null +++ b/data/smartphone/lg/2020/lmx320am8-neon-plus-lte-us-x320am.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx320am8-neon-plus-lte-us-x320am", + "name": "LMX320AM8 Neon Plus LTE US X320AM", + "brand": "lg", + "soc": "snapdragon-425", + "release_date": "2020-02-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 147.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/lg/2020/lmx600im-w-series-w30-pro-dual-sim-td-lte-in-x600im.json b/data/smartphone/lg/2020/lmx600im-w-series-w30-pro-dual-sim-td-lte-in-x600im.json new file mode 100644 index 00000000000..872191504b2 --- /dev/null +++ b/data/smartphone/lg/2020/lmx600im-w-series-w30-pro-dual-sim-td-lte-in-x600im.json @@ -0,0 +1,41 @@ +{ + "slug": "lmx600im-w-series-w30-pro-dual-sim-td-lte-in-x600im", + "name": "LMX600IM W Series W30 Pro Dual SIM TD-LTE IN X600IM", + "brand": "lg", + "soc": "snapdragon-632", + "release_date": "2020-01-01", + "ram_gb": 4.0, + "battery_mah": 4050, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1480", + "type": "Color IPS TFT LCD display", + "ppi": 263 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2020/style3-td-lte-jp-l-41a.json b/data/smartphone/lg/2020/style3-td-lte-jp-l-41a.json new file mode 100644 index 00000000000..189ca14a6c1 --- /dev/null +++ b/data/smartphone/lg/2020/style3-td-lte-jp-l-41a.json @@ -0,0 +1,41 @@ +{ + "slug": "style3-td-lte-jp-l-41a", + "name": "style3 TD-LTE JP L-41A", + "brand": "lg", + "soc": "snapdragon-845", + "release_date": "2020-06-01", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "1440x3120", + "type": "Color PM-OLED display", + "ppi": 563 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2020/v60-thinq-5g-td-lte-jp-a001lg.json b/data/smartphone/lg/2020/v60-thinq-5g-td-lte-jp-a001lg.json new file mode 100644 index 00000000000..97433d92430 --- /dev/null +++ b/data/smartphone/lg/2020/v60-thinq-5g-td-lte-jp-a001lg.json @@ -0,0 +1,42 @@ +{ + "slug": "v60-thinq-5g-td-lte-jp-a001lg", + "name": "V60 ThinQ 5G TD-LTE JP A001LG", + "brand": "lg", + "soc": "snapdragon-865", + "release_date": "2020-05-11", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 218.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2020/v60-thinq-5g-td-lte-jp-l-51a.json b/data/smartphone/lg/2020/v60-thinq-5g-td-lte-jp-l-51a.json new file mode 100644 index 00000000000..6ea15542741 --- /dev/null +++ b/data/smartphone/lg/2020/v60-thinq-5g-td-lte-jp-l-51a.json @@ -0,0 +1,42 @@ +{ + "slug": "v60-thinq-5g-td-lte-jp-l-51a", + "name": "V60 ThinQ 5G TD-LTE JP L-51A", + "brand": "lg", + "soc": "snapdragon-865", + "release_date": "2020-05-11", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 218.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2020/velvet-5g-td-lte-jp-l-52a.json b/data/smartphone/lg/2020/velvet-5g-td-lte-jp-l-52a.json new file mode 100644 index 00000000000..4e33b623545 --- /dev/null +++ b/data/smartphone/lg/2020/velvet-5g-td-lte-jp-l-52a.json @@ -0,0 +1,42 @@ +{ + "slug": "velvet-5g-td-lte-jp-l-52a", + "name": "Velvet 5G TD-LTE JP L-52A", + "brand": "lg", + "soc": "snapdragon-765", + "release_date": "2020-12-01", + "ram_gb": 6.0, + "battery_mah": 4300, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2021/lmk610im-w-series-w41-2021-dual-sim-td-lte-in-128gb-k610im-w41-plus.json b/data/smartphone/lg/2021/lmk610im-w-series-w41-2021-dual-sim-td-lte-in-128gb-k610im-w41-plus.json new file mode 100644 index 00000000000..58eb8c15f2d --- /dev/null +++ b/data/smartphone/lg/2021/lmk610im-w-series-w41-2021-dual-sim-td-lte-in-128gb-k610im-w41-plus.json @@ -0,0 +1,41 @@ +{ + "slug": "lmk610im-w-series-w41-2021-dual-sim-td-lte-in-128gb-k610im-w41-plus", + "name": "LMK610IM W Series W41+ 2021 Dual SIM TD-LTE IN 128GB K610IM / W41 Plus", + "brand": "lg", + "soc": "helio-g35", + "release_date": "2021-03-02", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "900x1600", + "type": "Color IPS TFT LCD display", + "ppi": 280 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2021/lmk610im-w-series-w41-2021-dual-sim-td-lte-in-64gb-k610im.json b/data/smartphone/lg/2021/lmk610im-w-series-w41-2021-dual-sim-td-lte-in-64gb-k610im.json new file mode 100644 index 00000000000..9ae8516e761 --- /dev/null +++ b/data/smartphone/lg/2021/lmk610im-w-series-w41-2021-dual-sim-td-lte-in-64gb-k610im.json @@ -0,0 +1,41 @@ +{ + "slug": "lmk610im-w-series-w41-2021-dual-sim-td-lte-in-64gb-k610im", + "name": "LMK610IM W Series W41 2021 Dual SIM TD-LTE IN 64GB K610IM", + "brand": "lg", + "soc": "helio-g35", + "release_date": "2021-03-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.55, + "resolution": "900x1600", + "type": "Color IPS TFT LCD display", + "ppi": 280 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/lg/2021/lmk610im-w-series-w41-pro-2021-dual-sim-td-lte-in-128gb-k610im.json b/data/smartphone/lg/2021/lmk610im-w-series-w41-pro-2021-dual-sim-td-lte-in-128gb-k610im.json new file mode 100644 index 00000000000..10d76edc3fc --- /dev/null +++ b/data/smartphone/lg/2021/lmk610im-w-series-w41-pro-2021-dual-sim-td-lte-in-128gb-k610im.json @@ -0,0 +1,41 @@ +{ + "slug": "lmk610im-w-series-w41-pro-2021-dual-sim-td-lte-in-128gb-k610im", + "name": "LMK610IM W Series W41 Pro 2021 Dual SIM TD-LTE IN 128GB K610IM", + "brand": "lg", + "soc": "helio-g35", + "release_date": "2021-03-02", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "900x1600", + "type": "Color IPS TFT LCD display", + "ppi": 280 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2018/15-dual-sim-td-lte-cn-m881q-128gb.json b/data/smartphone/meizu/2018/15-dual-sim-td-lte-cn-m881q-128gb.json new file mode 100644 index 00000000000..7f770ae3664 --- /dev/null +++ b/data/smartphone/meizu/2018/15-dual-sim-td-lte-cn-m881q-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "15-dual-sim-td-lte-cn-m881q-128gb", + "name": "15 Dual SIM TD-LTE CN M881Q 128GB", + "brand": "meizu", + "soc": "snapdragon-660", + "release_date": "2018-03-31", + "ram_gb": 4.0, + "battery_mah": 2940, + "weight_g": 152.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.46, + "resolution": "1080x1920", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2018/15-dual-sim-td-lte-cn-m881q-64gb.json b/data/smartphone/meizu/2018/15-dual-sim-td-lte-cn-m881q-64gb.json new file mode 100644 index 00000000000..acb868ff837 --- /dev/null +++ b/data/smartphone/meizu/2018/15-dual-sim-td-lte-cn-m881q-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "15-dual-sim-td-lte-cn-m881q-64gb", + "name": "15 Dual SIM TD-LTE CN M881Q 64GB", + "brand": "meizu", + "soc": "snapdragon-660", + "release_date": "2018-03-31", + "ram_gb": 4.0, + "battery_mah": 2940, + "weight_g": 152.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.46, + "resolution": "1080x1920", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2018/16-global-dual-sim-td-lte-128gb-m872h-16x.json b/data/smartphone/meizu/2018/16-global-dual-sim-td-lte-128gb-m872h-16x.json new file mode 100644 index 00000000000..cca1af5c787 --- /dev/null +++ b/data/smartphone/meizu/2018/16-global-dual-sim-td-lte-128gb-m872h-16x.json @@ -0,0 +1,41 @@ +{ + "slug": "16-global-dual-sim-td-lte-128gb-m872h-16x", + "name": "16 Global Dual SIM TD-LTE 128GB M872H / 16X", + "brand": "meizu", + "soc": "snapdragon-710", + "release_date": "2018-11-02", + "ram_gb": 6.0, + "battery_mah": 3100, + "weight_g": 154.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Germany , India , Israel , Italy , Russia , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/meizu/2018/16-global-dual-sim-td-lte-64gb-m872h-16x.json b/data/smartphone/meizu/2018/16-global-dual-sim-td-lte-64gb-m872h-16x.json new file mode 100644 index 00000000000..2bd23989878 --- /dev/null +++ b/data/smartphone/meizu/2018/16-global-dual-sim-td-lte-64gb-m872h-16x.json @@ -0,0 +1,41 @@ +{ + "slug": "16-global-dual-sim-td-lte-64gb-m872h-16x", + "name": "16 Global Dual SIM TD-LTE 64GB M872H / 16X", + "brand": "meizu", + "soc": "snapdragon-710", + "release_date": "2018-11-02", + "ram_gb": 6.0, + "battery_mah": 3100, + "weight_g": 154.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Germany , India , Israel , Italy , Russia , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/meizu/2018/16th-global-dual-sim-td-lte-m882h-128gb.json b/data/smartphone/meizu/2018/16th-global-dual-sim-td-lte-m882h-128gb.json new file mode 100644 index 00000000000..4ffc492d045 --- /dev/null +++ b/data/smartphone/meizu/2018/16th-global-dual-sim-td-lte-m882h-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "16th-global-dual-sim-td-lte-m882h-128gb", + "name": "16th Global Dual SIM TD-LTE M882H 128GB", + "brand": "meizu", + "soc": "snapdragon-845", + "release_date": "2018-10-01", + "ram_gb": 8.0, + "battery_mah": 3010, + "weight_g": 152.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Cyprus , Estonia , Germany , Greece , India , Indonesia , Italy , Latvia , Lithuania , Russia , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/meizu/2018/16th-global-dual-sim-td-lte-m882h-64gb.json b/data/smartphone/meizu/2018/16th-global-dual-sim-td-lte-m882h-64gb.json new file mode 100644 index 00000000000..a3a198958a9 --- /dev/null +++ b/data/smartphone/meizu/2018/16th-global-dual-sim-td-lte-m882h-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "16th-global-dual-sim-td-lte-m882h-64gb", + "name": "16th Global Dual SIM TD-LTE M882H 64GB", + "brand": "meizu", + "soc": "snapdragon-845", + "release_date": "2018-10-01", + "ram_gb": 6.0, + "battery_mah": 3010, + "weight_g": 152.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Cyprus , Estonia , Germany , Greece , India , Indonesia , Italy , Latvia , Lithuania , Russia , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/meizu/2018/16th-plus-premium-edition-dual-sim-td-lte-cn-m892q-128gb.json b/data/smartphone/meizu/2018/16th-plus-premium-edition-dual-sim-td-lte-cn-m892q-128gb.json new file mode 100644 index 00000000000..e6323ed7a09 --- /dev/null +++ b/data/smartphone/meizu/2018/16th-plus-premium-edition-dual-sim-td-lte-cn-m892q-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "16th-plus-premium-edition-dual-sim-td-lte-cn-m892q-128gb", + "name": "16th Plus Premium Edition Dual SIM TD-LTE CN M892Q 128GB", + "brand": "meizu", + "soc": "snapdragon-845", + "release_date": "2018-08-19", + "ram_gb": 8.0, + "battery_mah": 3640, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 372 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2018/16th-plus-premium-edition-dual-sim-td-lte-cn-m892q-256gb.json b/data/smartphone/meizu/2018/16th-plus-premium-edition-dual-sim-td-lte-cn-m892q-256gb.json new file mode 100644 index 00000000000..812599aa622 --- /dev/null +++ b/data/smartphone/meizu/2018/16th-plus-premium-edition-dual-sim-td-lte-cn-m892q-256gb.json @@ -0,0 +1,41 @@ +{ + "slug": "16th-plus-premium-edition-dual-sim-td-lte-cn-m892q-256gb", + "name": "16th Plus Premium Edition Dual SIM TD-LTE CN M892Q 256GB", + "brand": "meizu", + "soc": "snapdragon-845", + "release_date": "2018-08-19", + "ram_gb": 8.0, + "battery_mah": 3640, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 372 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2018/16th-plus-standard-edition-dual-sim-td-lte-cn-m892q-128gb.json b/data/smartphone/meizu/2018/16th-plus-standard-edition-dual-sim-td-lte-cn-m892q-128gb.json new file mode 100644 index 00000000000..62eaba9ca51 --- /dev/null +++ b/data/smartphone/meizu/2018/16th-plus-standard-edition-dual-sim-td-lte-cn-m892q-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "16th-plus-standard-edition-dual-sim-td-lte-cn-m892q-128gb", + "name": "16th Plus Standard Edition Dual SIM TD-LTE CN M892Q 128GB", + "brand": "meizu", + "soc": "snapdragon-845", + "release_date": "2018-08-19", + "ram_gb": 6.0, + "battery_mah": 3640, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 372 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2018/16th-premium-edition-dual-sim-td-lte-cn-m882q-128gb.json b/data/smartphone/meizu/2018/16th-premium-edition-dual-sim-td-lte-cn-m882q-128gb.json new file mode 100644 index 00000000000..763ec783a66 --- /dev/null +++ b/data/smartphone/meizu/2018/16th-premium-edition-dual-sim-td-lte-cn-m882q-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "16th-premium-edition-dual-sim-td-lte-cn-m882q-128gb", + "name": "16th Premium Edition Dual SIM TD-LTE CN M882Q 128GB", + "brand": "meizu", + "soc": "snapdragon-845", + "release_date": "2018-08-01", + "ram_gb": 8.0, + "battery_mah": 3010, + "weight_g": 152.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2018/16th-standard-edition-dual-sim-td-lte-cn-m882q-128gb.json b/data/smartphone/meizu/2018/16th-standard-edition-dual-sim-td-lte-cn-m882q-128gb.json new file mode 100644 index 00000000000..417a7a223ff --- /dev/null +++ b/data/smartphone/meizu/2018/16th-standard-edition-dual-sim-td-lte-cn-m882q-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "16th-standard-edition-dual-sim-td-lte-cn-m882q-128gb", + "name": "16th Standard Edition Dual SIM TD-LTE CN M882Q 128GB", + "brand": "meizu", + "soc": "snapdragon-845", + "release_date": "2018-08-01", + "ram_gb": 6.0, + "battery_mah": 3010, + "weight_g": 152.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2018/16th-standard-edition-dual-sim-td-lte-cn-m882q-64gb.json b/data/smartphone/meizu/2018/16th-standard-edition-dual-sim-td-lte-cn-m882q-64gb.json new file mode 100644 index 00000000000..4a5af87b762 --- /dev/null +++ b/data/smartphone/meizu/2018/16th-standard-edition-dual-sim-td-lte-cn-m882q-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "16th-standard-edition-dual-sim-td-lte-cn-m882q-64gb", + "name": "16th Standard Edition Dual SIM TD-LTE CN M882Q 64GB", + "brand": "meizu", + "soc": "snapdragon-845", + "release_date": "2018-08-01", + "ram_gb": 6.0, + "battery_mah": 3010, + "weight_g": 152.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2018/16x-dual-sim-td-lte-cn-128gb-m872q.json b/data/smartphone/meizu/2018/16x-dual-sim-td-lte-cn-128gb-m872q.json new file mode 100644 index 00000000000..efec1820a0d --- /dev/null +++ b/data/smartphone/meizu/2018/16x-dual-sim-td-lte-cn-128gb-m872q.json @@ -0,0 +1,41 @@ +{ + "slug": "16x-dual-sim-td-lte-cn-128gb-m872q", + "name": "16X Dual SIM TD-LTE CN 128GB M872Q", + "brand": "meizu", + "soc": "snapdragon-710", + "release_date": "2018-09-26", + "ram_gb": 6.0, + "battery_mah": 3100, + "weight_g": 154.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2018/16x-dual-sim-td-lte-cn-64gb-m872q.json b/data/smartphone/meizu/2018/16x-dual-sim-td-lte-cn-64gb-m872q.json new file mode 100644 index 00000000000..fe0f2dc5616 --- /dev/null +++ b/data/smartphone/meizu/2018/16x-dual-sim-td-lte-cn-64gb-m872q.json @@ -0,0 +1,41 @@ +{ + "slug": "16x-dual-sim-td-lte-cn-64gb-m872q", + "name": "16X Dual SIM TD-LTE CN 64GB M872Q", + "brand": "meizu", + "soc": "snapdragon-710", + "release_date": "2018-09-26", + "ram_gb": 6.0, + "battery_mah": 3100, + "weight_g": 154.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2018/m6s-premium-edition-dual-sim-td-lte-cn-64gb-m712q-b.json b/data/smartphone/meizu/2018/m6s-premium-edition-dual-sim-td-lte-cn-64gb-m712q-b.json new file mode 100644 index 00000000000..37685e5c68f --- /dev/null +++ b/data/smartphone/meizu/2018/m6s-premium-edition-dual-sim-td-lte-cn-64gb-m712q-b.json @@ -0,0 +1,41 @@ +{ + "slug": "m6s-premium-edition-dual-sim-td-lte-cn-64gb-m712q-b", + "name": "M6S Premium Edition Dual SIM TD-LTE CN 64GB M712Q-B", + "brand": "meizu", + "soc": "exynos-7872", + "release_date": "2018-03-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2018/m8-global-dual-sim-td-lte-m813h.json b/data/smartphone/meizu/2018/m8-global-dual-sim-td-lte-m813h.json new file mode 100644 index 00000000000..ef663f3f3b6 --- /dev/null +++ b/data/smartphone/meizu/2018/m8-global-dual-sim-td-lte-m813h.json @@ -0,0 +1,41 @@ +{ + "slug": "m8-global-dual-sim-td-lte-m813h", + "name": "M8 Global Dual SIM TD-LTE M813H", + "brand": "meizu", + "soc": "helio-p22", + "release_date": "2018-11-01", + "ram_gb": 4.0, + "battery_mah": 3100, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Armenia , Cyprus , Germany , Greece , HK , Italy , Kazakhstan , Poland , Romania , Russia , Spain , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/meizu/2018/mblu-e3-dual-sim-td-lte-cn-m851m-128gb.json b/data/smartphone/meizu/2018/mblu-e3-dual-sim-td-lte-cn-m851m-128gb.json new file mode 100644 index 00000000000..05d2af02c3f --- /dev/null +++ b/data/smartphone/meizu/2018/mblu-e3-dual-sim-td-lte-cn-m851m-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "mblu-e3-dual-sim-td-lte-cn-m851m-128gb", + "name": "mblu E3 Dual SIM TD-LTE CN M851M 128GB", + "brand": "meizu", + "soc": "snapdragon-636", + "release_date": "2018-03-31", + "ram_gb": 6.0, + "battery_mah": 3360, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 20.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2018/mblu-e3-dual-sim-td-lte-cn-m851q-128gb.json b/data/smartphone/meizu/2018/mblu-e3-dual-sim-td-lte-cn-m851q-128gb.json new file mode 100644 index 00000000000..1aa74da2585 --- /dev/null +++ b/data/smartphone/meizu/2018/mblu-e3-dual-sim-td-lte-cn-m851q-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "mblu-e3-dual-sim-td-lte-cn-m851q-128gb", + "name": "mblu E3 Dual SIM TD-LTE CN M851Q 128GB", + "brand": "meizu", + "soc": "snapdragon-636", + "release_date": "2018-03-31", + "ram_gb": 6.0, + "battery_mah": 3360, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 20.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2018/mblu-e3-dual-sim-td-lte-cn-m851q-64gb.json b/data/smartphone/meizu/2018/mblu-e3-dual-sim-td-lte-cn-m851q-64gb.json new file mode 100644 index 00000000000..a6a2a368f8f --- /dev/null +++ b/data/smartphone/meizu/2018/mblu-e3-dual-sim-td-lte-cn-m851q-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "mblu-e3-dual-sim-td-lte-cn-m851q-64gb", + "name": "mblu E3 Dual SIM TD-LTE CN M851Q 64GB", + "brand": "meizu", + "soc": "snapdragon-636", + "release_date": "2018-03-31", + "ram_gb": 6.0, + "battery_mah": 3360, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 20.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2018/note-8-dual-sim-td-lte-cn-32gb-m822q.json b/data/smartphone/meizu/2018/note-8-dual-sim-td-lte-cn-32gb-m822q.json new file mode 100644 index 00000000000..fffb8a720e1 --- /dev/null +++ b/data/smartphone/meizu/2018/note-8-dual-sim-td-lte-cn-32gb-m822q.json @@ -0,0 +1,41 @@ +{ + "slug": "note-8-dual-sim-td-lte-cn-32gb-m822q", + "name": "Note 8 Dual SIM TD-LTE CN 32GB M822Q", + "brand": "meizu", + "soc": "snapdragon-632", + "release_date": "2018-11-07", + "ram_gb": 4.0, + "battery_mah": 3600, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2018/note-8-dual-sim-td-lte-cn-64gb-m822q.json b/data/smartphone/meizu/2018/note-8-dual-sim-td-lte-cn-64gb-m822q.json new file mode 100644 index 00000000000..36170668f3d --- /dev/null +++ b/data/smartphone/meizu/2018/note-8-dual-sim-td-lte-cn-64gb-m822q.json @@ -0,0 +1,41 @@ +{ + "slug": "note-8-dual-sim-td-lte-cn-64gb-m822q", + "name": "Note 8 Dual SIM TD-LTE CN 64GB M822Q", + "brand": "meizu", + "soc": "snapdragon-632", + "release_date": "2018-11-07", + "ram_gb": 4.0, + "battery_mah": 3600, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2018/note-8-global-dual-sim-td-lte-64gb-m822h.json b/data/smartphone/meizu/2018/note-8-global-dual-sim-td-lte-64gb-m822h.json new file mode 100644 index 00000000000..e3a619dae9a --- /dev/null +++ b/data/smartphone/meizu/2018/note-8-global-dual-sim-td-lte-64gb-m822h.json @@ -0,0 +1,41 @@ +{ + "slug": "note-8-global-dual-sim-td-lte-64gb-m822h", + "name": "Note 8 Global Dual SIM TD-LTE 64GB M822H", + "brand": "meizu", + "soc": "snapdragon-632", + "release_date": "2018-12-01", + "ram_gb": 4.0, + "battery_mah": 3600, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Estonia , Germany , Italy , Latvia , Lithuania , Poland , Russia", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/meizu/2018/v8-pro-dual-sim-td-lte-cn-m813q.json b/data/smartphone/meizu/2018/v8-pro-dual-sim-td-lte-cn-m813q.json new file mode 100644 index 00000000000..0ca913a07fb --- /dev/null +++ b/data/smartphone/meizu/2018/v8-pro-dual-sim-td-lte-cn-m813q.json @@ -0,0 +1,41 @@ +{ + "slug": "v8-pro-dual-sim-td-lte-cn-m813q", + "name": "V8 Pro Dual SIM TD-LTE CN M813Q", + "brand": "meizu", + "soc": "helio-p22", + "release_date": "2018-09-26", + "ram_gb": 4.0, + "battery_mah": 3100, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2018/x8-global-dual-sim-td-lte-128gb-m852h.json b/data/smartphone/meizu/2018/x8-global-dual-sim-td-lte-128gb-m852h.json new file mode 100644 index 00000000000..82cdd4cbb9a --- /dev/null +++ b/data/smartphone/meizu/2018/x8-global-dual-sim-td-lte-128gb-m852h.json @@ -0,0 +1,41 @@ +{ + "slug": "x8-global-dual-sim-td-lte-128gb-m852h", + "name": "X8 Global Dual SIM TD-LTE 128GB M852H", + "brand": "meizu", + "soc": "snapdragon-710", + "release_date": "2018-11-01", + "ram_gb": 6.0, + "battery_mah": 3210, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.15, + "resolution": "1080x2220", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Germany , HK , Italy , Russia , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/meizu/2018/x8-global-dual-sim-td-lte-64gb-m852h.json b/data/smartphone/meizu/2018/x8-global-dual-sim-td-lte-64gb-m852h.json new file mode 100644 index 00000000000..c24f16fa5cd --- /dev/null +++ b/data/smartphone/meizu/2018/x8-global-dual-sim-td-lte-64gb-m852h.json @@ -0,0 +1,41 @@ +{ + "slug": "x8-global-dual-sim-td-lte-64gb-m852h", + "name": "X8 Global Dual SIM TD-LTE 64GB M852H", + "brand": "meizu", + "soc": "snapdragon-710", + "release_date": "2018-11-01", + "ram_gb": 4.0, + "battery_mah": 3210, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.15, + "resolution": "1080x2220", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Germany , HK , Italy , Russia , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/meizu/2018/x8-premium-edition-dual-sim-td-lte-cn-128gb-m852q.json b/data/smartphone/meizu/2018/x8-premium-edition-dual-sim-td-lte-cn-128gb-m852q.json new file mode 100644 index 00000000000..72dde70500e --- /dev/null +++ b/data/smartphone/meizu/2018/x8-premium-edition-dual-sim-td-lte-cn-128gb-m852q.json @@ -0,0 +1,41 @@ +{ + "slug": "x8-premium-edition-dual-sim-td-lte-cn-128gb-m852q", + "name": "X8 Premium Edition Dual SIM TD-LTE CN 128GB M852Q", + "brand": "meizu", + "soc": "snapdragon-710", + "release_date": "2018-10-16", + "ram_gb": 6.0, + "battery_mah": 3210, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.15, + "resolution": "1080x2220", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2018/x8-premium-edition-dual-sim-td-lte-cn-64gb-m852q.json b/data/smartphone/meizu/2018/x8-premium-edition-dual-sim-td-lte-cn-64gb-m852q.json new file mode 100644 index 00000000000..0df2557dfa0 --- /dev/null +++ b/data/smartphone/meizu/2018/x8-premium-edition-dual-sim-td-lte-cn-64gb-m852q.json @@ -0,0 +1,41 @@ +{ + "slug": "x8-premium-edition-dual-sim-td-lte-cn-64gb-m852q", + "name": "X8 Premium Edition Dual SIM TD-LTE CN 64GB M852Q", + "brand": "meizu", + "soc": "snapdragon-710", + "release_date": "2018-10-16", + "ram_gb": 6.0, + "battery_mah": 3210, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.15, + "resolution": "1080x2220", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2018/x8-standard-edition-dual-sim-td-lte-cn-64gb-m852q.json b/data/smartphone/meizu/2018/x8-standard-edition-dual-sim-td-lte-cn-64gb-m852q.json new file mode 100644 index 00000000000..f1c6edb23e0 --- /dev/null +++ b/data/smartphone/meizu/2018/x8-standard-edition-dual-sim-td-lte-cn-64gb-m852q.json @@ -0,0 +1,41 @@ +{ + "slug": "x8-standard-edition-dual-sim-td-lte-cn-64gb-m852q", + "name": "X8 Standard Edition Dual SIM TD-LTE CN 64GB M852Q", + "brand": "meizu", + "soc": "snapdragon-710", + "release_date": "2018-10-16", + "ram_gb": 4.0, + "battery_mah": 3210, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.15, + "resolution": "1080x2220", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2019/16s-premium-edition-dual-sim-td-lte-cn-m971q-128gb.json b/data/smartphone/meizu/2019/16s-premium-edition-dual-sim-td-lte-cn-m971q-128gb.json new file mode 100644 index 00000000000..36c3403d96f --- /dev/null +++ b/data/smartphone/meizu/2019/16s-premium-edition-dual-sim-td-lte-cn-m971q-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "16s-premium-edition-dual-sim-td-lte-cn-m971q-128gb", + "name": "16s Premium Edition Dual SIM TD-LTE CN M971Q 128GB", + "brand": "meizu", + "soc": "snapdragon-855", + "release_date": "2019-04-28", + "ram_gb": 8.0, + "battery_mah": 3600, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2232", + "type": "AM-OLED display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2019/16s-premium-edition-dual-sim-td-lte-cn-m971q-256gb.json b/data/smartphone/meizu/2019/16s-premium-edition-dual-sim-td-lte-cn-m971q-256gb.json new file mode 100644 index 00000000000..0d214e75c1a --- /dev/null +++ b/data/smartphone/meizu/2019/16s-premium-edition-dual-sim-td-lte-cn-m971q-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "16s-premium-edition-dual-sim-td-lte-cn-m971q-256gb", + "name": "16s Premium Edition Dual SIM TD-LTE CN M971Q 256GB", + "brand": "meizu", + "soc": "snapdragon-855", + "release_date": "2019-04-28", + "ram_gb": 8.0, + "battery_mah": 3600, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2232", + "type": "AM-OLED display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2019/16s-premium-edition-global-dual-sim-td-lte-m971h-128gb.json b/data/smartphone/meizu/2019/16s-premium-edition-global-dual-sim-td-lte-m971h-128gb.json new file mode 100644 index 00000000000..21fa616663f --- /dev/null +++ b/data/smartphone/meizu/2019/16s-premium-edition-global-dual-sim-td-lte-m971h-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "16s-premium-edition-global-dual-sim-td-lte-m971h-128gb", + "name": "16s Premium Edition Global Dual SIM TD-LTE M971H 128GB", + "brand": "meizu", + "soc": "snapdragon-855", + "release_date": "2019-05-01", + "ram_gb": 8.0, + "battery_mah": 3600, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2232", + "type": "AM-OLED display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Germany , HK , Italy , Poland , Russia , Turkey , UK", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/meizu/2019/16s-pro-premium-edition-dual-sim-td-lte-cn-m973q-128gb.json b/data/smartphone/meizu/2019/16s-pro-premium-edition-dual-sim-td-lte-cn-m973q-128gb.json new file mode 100644 index 00000000000..21c794a3576 --- /dev/null +++ b/data/smartphone/meizu/2019/16s-pro-premium-edition-dual-sim-td-lte-cn-m973q-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "16s-pro-premium-edition-dual-sim-td-lte-cn-m973q-128gb", + "name": "16s Pro Premium Edition Dual SIM TD-LTE CN M973Q 128GB", + "brand": "meizu", + "soc": "snapdragon-855-plus", + "release_date": "2019-09-01", + "ram_gb": 8.0, + "battery_mah": 3600, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2232", + "type": "AM-OLED display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2019/16s-pro-premium-edition-dual-sim-td-lte-cn-m973q-256gb.json b/data/smartphone/meizu/2019/16s-pro-premium-edition-dual-sim-td-lte-cn-m973q-256gb.json new file mode 100644 index 00000000000..53ff9b0e40d --- /dev/null +++ b/data/smartphone/meizu/2019/16s-pro-premium-edition-dual-sim-td-lte-cn-m973q-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "16s-pro-premium-edition-dual-sim-td-lte-cn-m973q-256gb", + "name": "16s Pro Premium Edition Dual SIM TD-LTE CN M973Q 256GB", + "brand": "meizu", + "soc": "snapdragon-855-plus", + "release_date": "2019-09-01", + "ram_gb": 8.0, + "battery_mah": 3600, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2232", + "type": "AM-OLED display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2019/16s-pro-standard-edition-dual-sim-td-lte-cn-m973q-128gb.json b/data/smartphone/meizu/2019/16s-pro-standard-edition-dual-sim-td-lte-cn-m973q-128gb.json new file mode 100644 index 00000000000..f6f6605e7cb --- /dev/null +++ b/data/smartphone/meizu/2019/16s-pro-standard-edition-dual-sim-td-lte-cn-m973q-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "16s-pro-standard-edition-dual-sim-td-lte-cn-m973q-128gb", + "name": "16s Pro Standard Edition Dual SIM TD-LTE CN M973Q 128GB", + "brand": "meizu", + "soc": "snapdragon-855-plus", + "release_date": "2019-09-01", + "ram_gb": 6.0, + "battery_mah": 3600, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2232", + "type": "AM-OLED display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2019/16s-standard-edition-dual-sim-td-lte-cn-m971q-128gb.json b/data/smartphone/meizu/2019/16s-standard-edition-dual-sim-td-lte-cn-m971q-128gb.json new file mode 100644 index 00000000000..26df39a24ca --- /dev/null +++ b/data/smartphone/meizu/2019/16s-standard-edition-dual-sim-td-lte-cn-m971q-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "16s-standard-edition-dual-sim-td-lte-cn-m971q-128gb", + "name": "16s Standard Edition Dual SIM TD-LTE CN M971Q 128GB", + "brand": "meizu", + "soc": "snapdragon-855", + "release_date": "2019-04-28", + "ram_gb": 6.0, + "battery_mah": 3600, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2232", + "type": "AM-OLED display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2019/16s-standard-edition-global-dual-sim-td-lte-m971h-128gb.json b/data/smartphone/meizu/2019/16s-standard-edition-global-dual-sim-td-lte-m971h-128gb.json new file mode 100644 index 00000000000..d628fae9f50 --- /dev/null +++ b/data/smartphone/meizu/2019/16s-standard-edition-global-dual-sim-td-lte-m971h-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "16s-standard-edition-global-dual-sim-td-lte-m971h-128gb", + "name": "16s Standard Edition Global Dual SIM TD-LTE M971H 128GB", + "brand": "meizu", + "soc": "snapdragon-855", + "release_date": "2019-05-01", + "ram_gb": 6.0, + "battery_mah": 3600, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2232", + "type": "AM-OLED display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Germany , HK , Italy , Russia , UK", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/meizu/2019/16t-premium-edition-dual-sim-td-lte-cn-m928q-128gb.json b/data/smartphone/meizu/2019/16t-premium-edition-dual-sim-td-lte-cn-m928q-128gb.json new file mode 100644 index 00000000000..48122c5295a --- /dev/null +++ b/data/smartphone/meizu/2019/16t-premium-edition-dual-sim-td-lte-cn-m928q-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "16t-premium-edition-dual-sim-td-lte-cn-m928q-128gb", + "name": "16T Premium Edition Dual SIM TD-LTE CN M928Q 128GB", + "brand": "meizu", + "soc": "snapdragon-855", + "release_date": "2019-10-28", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2232", + "type": "AM-OLED display", + "ppi": 382 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2019/16t-premium-edition-dual-sim-td-lte-cn-m928q-256gb.json b/data/smartphone/meizu/2019/16t-premium-edition-dual-sim-td-lte-cn-m928q-256gb.json new file mode 100644 index 00000000000..1cf02eb5c7d --- /dev/null +++ b/data/smartphone/meizu/2019/16t-premium-edition-dual-sim-td-lte-cn-m928q-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "16t-premium-edition-dual-sim-td-lte-cn-m928q-256gb", + "name": "16T Premium Edition Dual SIM TD-LTE CN M928Q 256GB", + "brand": "meizu", + "soc": "snapdragon-855", + "release_date": "2019-10-28", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2232", + "type": "AM-OLED display", + "ppi": 382 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2019/16t-standard-edition-dual-sim-td-lte-cn-m928q-128gb.json b/data/smartphone/meizu/2019/16t-standard-edition-dual-sim-td-lte-cn-m928q-128gb.json new file mode 100644 index 00000000000..4adfebf5777 --- /dev/null +++ b/data/smartphone/meizu/2019/16t-standard-edition-dual-sim-td-lte-cn-m928q-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "16t-standard-edition-dual-sim-td-lte-cn-m928q-128gb", + "name": "16T Standard Edition Dual SIM TD-LTE CN M928Q 128GB", + "brand": "meizu", + "soc": "snapdragon-855", + "release_date": "2019-10-28", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2232", + "type": "AM-OLED display", + "ppi": 382 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2019/16xs-dual-sim-td-lte-cn-128gb-m926q.json b/data/smartphone/meizu/2019/16xs-dual-sim-td-lte-cn-128gb-m926q.json new file mode 100644 index 00000000000..381553c6437 --- /dev/null +++ b/data/smartphone/meizu/2019/16xs-dual-sim-td-lte-cn-128gb-m926q.json @@ -0,0 +1,42 @@ +{ + "slug": "16xs-dual-sim-td-lte-cn-128gb-m926q", + "name": "16Xs Dual SIM TD-LTE CN 128GB M926Q", + "brand": "meizu", + "soc": "snapdragon-675", + "release_date": "2019-06-11", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2232", + "type": "AM-OLED display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2019/16xs-dual-sim-td-lte-cn-64gb-m926q.json b/data/smartphone/meizu/2019/16xs-dual-sim-td-lte-cn-64gb-m926q.json new file mode 100644 index 00000000000..fbc45ea7da9 --- /dev/null +++ b/data/smartphone/meizu/2019/16xs-dual-sim-td-lte-cn-64gb-m926q.json @@ -0,0 +1,42 @@ +{ + "slug": "16xs-dual-sim-td-lte-cn-64gb-m926q", + "name": "16Xs Dual SIM TD-LTE CN 64GB M926Q", + "brand": "meizu", + "soc": "snapdragon-675", + "release_date": "2019-06-11", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2232", + "type": "AM-OLED display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2019/16xs-global-dual-sim-td-lte-128gb-m926h.json b/data/smartphone/meizu/2019/16xs-global-dual-sim-td-lte-128gb-m926h.json new file mode 100644 index 00000000000..14e12e93877 --- /dev/null +++ b/data/smartphone/meizu/2019/16xs-global-dual-sim-td-lte-128gb-m926h.json @@ -0,0 +1,42 @@ +{ + "slug": "16xs-global-dual-sim-td-lte-128gb-m926h", + "name": "16Xs Global Dual SIM TD-LTE 128GB M926H", + "brand": "meizu", + "soc": "snapdragon-675", + "release_date": "2019-07-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2232", + "type": "AM-OLED display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "HK , Poland , Russia , Turkey , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/meizu/2019/16xs-global-dual-sim-td-lte-64gb-m926h.json b/data/smartphone/meizu/2019/16xs-global-dual-sim-td-lte-64gb-m926h.json new file mode 100644 index 00000000000..6fe03f2c43e --- /dev/null +++ b/data/smartphone/meizu/2019/16xs-global-dual-sim-td-lte-64gb-m926h.json @@ -0,0 +1,42 @@ +{ + "slug": "16xs-global-dual-sim-td-lte-64gb-m926h", + "name": "16Xs Global Dual SIM TD-LTE 64GB M926H", + "brand": "meizu", + "soc": "snapdragon-675", + "release_date": "2019-07-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2232", + "type": "AM-OLED display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "HK , Poland , Russia , Turkey , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/meizu/2019/note-9-premium-edition-dual-sim-td-lte-cn-64gb-m923q.json b/data/smartphone/meizu/2019/note-9-premium-edition-dual-sim-td-lte-cn-64gb-m923q.json new file mode 100644 index 00000000000..4d00b334510 --- /dev/null +++ b/data/smartphone/meizu/2019/note-9-premium-edition-dual-sim-td-lte-cn-64gb-m923q.json @@ -0,0 +1,42 @@ +{ + "slug": "note-9-premium-edition-dual-sim-td-lte-cn-64gb-m923q", + "name": "Note 9 Premium Edition Dual SIM TD-LTE CN 64GB M923Q", + "brand": "meizu", + "soc": "snapdragon-675", + "release_date": "2019-03-24", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 169.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2019/note-9-standard-edition-dual-sim-td-lte-cn-128gb-m923q.json b/data/smartphone/meizu/2019/note-9-standard-edition-dual-sim-td-lte-cn-128gb-m923q.json new file mode 100644 index 00000000000..ae987c89da2 --- /dev/null +++ b/data/smartphone/meizu/2019/note-9-standard-edition-dual-sim-td-lte-cn-128gb-m923q.json @@ -0,0 +1,42 @@ +{ + "slug": "note-9-standard-edition-dual-sim-td-lte-cn-128gb-m923q", + "name": "Note 9 Standard Edition Dual SIM TD-LTE CN 128GB M923Q", + "brand": "meizu", + "soc": "snapdragon-675", + "release_date": "2019-03-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 169.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2019/note-9-standard-edition-dual-sim-td-lte-cn-64gb-m923q.json b/data/smartphone/meizu/2019/note-9-standard-edition-dual-sim-td-lte-cn-64gb-m923q.json new file mode 100644 index 00000000000..b37c47cc14b --- /dev/null +++ b/data/smartphone/meizu/2019/note-9-standard-edition-dual-sim-td-lte-cn-64gb-m923q.json @@ -0,0 +1,42 @@ +{ + "slug": "note-9-standard-edition-dual-sim-td-lte-cn-64gb-m923q", + "name": "Note 9 Standard Edition Dual SIM TD-LTE CN 64GB M923Q", + "brand": "meizu", + "soc": "snapdragon-675", + "release_date": "2019-03-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 169.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2020/17-5g-aircraft-carrier-limited-edition-dual-sim-td-lte-cn-256gb-m081q.json b/data/smartphone/meizu/2020/17-5g-aircraft-carrier-limited-edition-dual-sim-td-lte-cn-256gb-m081q.json new file mode 100644 index 00000000000..8bd7c6ae220 --- /dev/null +++ b/data/smartphone/meizu/2020/17-5g-aircraft-carrier-limited-edition-dual-sim-td-lte-cn-256gb-m081q.json @@ -0,0 +1,43 @@ +{ + "slug": "17-5g-aircraft-carrier-limited-edition-dual-sim-td-lte-cn-256gb-m081q", + "name": "17 5G Aircraft Carrier Limited Edition Dual SIM TD-LTE CN 256GB M081Q", + "brand": "meizu", + "soc": "snapdragon-865", + "release_date": "2020-05-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2020/17-5g-dual-sim-td-lte-cn-128gb-m081m.json b/data/smartphone/meizu/2020/17-5g-dual-sim-td-lte-cn-128gb-m081m.json new file mode 100644 index 00000000000..7c2db11bf11 --- /dev/null +++ b/data/smartphone/meizu/2020/17-5g-dual-sim-td-lte-cn-128gb-m081m.json @@ -0,0 +1,43 @@ +{ + "slug": "17-5g-dual-sim-td-lte-cn-128gb-m081m", + "name": "17 5G Dual SIM TD-LTE CN 128GB M081M", + "brand": "meizu", + "soc": "snapdragon-865", + "release_date": "2020-05-13", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2020/17-5g-dual-sim-td-lte-cn-128gb-m081q.json b/data/smartphone/meizu/2020/17-5g-dual-sim-td-lte-cn-128gb-m081q.json new file mode 100644 index 00000000000..b8dc7a08f40 --- /dev/null +++ b/data/smartphone/meizu/2020/17-5g-dual-sim-td-lte-cn-128gb-m081q.json @@ -0,0 +1,43 @@ +{ + "slug": "17-5g-dual-sim-td-lte-cn-128gb-m081q", + "name": "17 5G Dual SIM TD-LTE CN 128GB M081Q", + "brand": "meizu", + "soc": "snapdragon-865", + "release_date": "2020-05-13", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , Poland , Turkey", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia" +} diff --git a/data/smartphone/meizu/2020/17-5g-dual-sim-td-lte-cn-256gb-m081q.json b/data/smartphone/meizu/2020/17-5g-dual-sim-td-lte-cn-256gb-m081q.json new file mode 100644 index 00000000000..d1dc7546f5a --- /dev/null +++ b/data/smartphone/meizu/2020/17-5g-dual-sim-td-lte-cn-256gb-m081q.json @@ -0,0 +1,43 @@ +{ + "slug": "17-5g-dual-sim-td-lte-cn-256gb-m081q", + "name": "17 5G Dual SIM TD-LTE CN 256GB M081Q", + "brand": "meizu", + "soc": "snapdragon-865", + "release_date": "2020-05-13", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2020/17-pro-5g-premium-edition-dual-sim-td-lte-cn-m091q.json b/data/smartphone/meizu/2020/17-pro-5g-premium-edition-dual-sim-td-lte-cn-m091q.json new file mode 100644 index 00000000000..1823b6c49c7 --- /dev/null +++ b/data/smartphone/meizu/2020/17-pro-5g-premium-edition-dual-sim-td-lte-cn-m091q.json @@ -0,0 +1,43 @@ +{ + "slug": "17-pro-5g-premium-edition-dual-sim-td-lte-cn-m091q", + "name": "17 Pro 5G Premium Edition Dual SIM TD-LTE CN M091Q", + "brand": "meizu", + "soc": "snapdragon-865", + "release_date": "2020-05-13", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 219.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , Poland , Turkey", + "market_regions": "Asia , Eastern Europe , Europe , Middle East" +} diff --git a/data/smartphone/meizu/2020/17-pro-5g-standard-edition-dual-sim-td-lte-cn-m091m.json b/data/smartphone/meizu/2020/17-pro-5g-standard-edition-dual-sim-td-lte-cn-m091m.json new file mode 100644 index 00000000000..8602f703ff6 --- /dev/null +++ b/data/smartphone/meizu/2020/17-pro-5g-standard-edition-dual-sim-td-lte-cn-m091m.json @@ -0,0 +1,43 @@ +{ + "slug": "17-pro-5g-standard-edition-dual-sim-td-lte-cn-m091m", + "name": "17 Pro 5G Standard Edition Dual SIM TD-LTE CN M091M", + "brand": "meizu", + "soc": "snapdragon-865", + "release_date": "2020-05-13", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 219.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2020/17-pro-5g-standard-edition-dual-sim-td-lte-cn-m091q.json b/data/smartphone/meizu/2020/17-pro-5g-standard-edition-dual-sim-td-lte-cn-m091q.json new file mode 100644 index 00000000000..32e637cab29 --- /dev/null +++ b/data/smartphone/meizu/2020/17-pro-5g-standard-edition-dual-sim-td-lte-cn-m091q.json @@ -0,0 +1,43 @@ +{ + "slug": "17-pro-5g-standard-edition-dual-sim-td-lte-cn-m091q", + "name": "17 Pro 5G Standard Edition Dual SIM TD-LTE CN M091Q", + "brand": "meizu", + "soc": "snapdragon-865", + "release_date": "2020-05-13", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 219.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , Poland , Turkey", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia" +} diff --git a/data/smartphone/meizu/2020/17-pro-5g-xiaofang-kiln-art-edition-dual-sim-td-lte-cn-m091q.json b/data/smartphone/meizu/2020/17-pro-5g-xiaofang-kiln-art-edition-dual-sim-td-lte-cn-m091q.json new file mode 100644 index 00000000000..58f6d566a22 --- /dev/null +++ b/data/smartphone/meizu/2020/17-pro-5g-xiaofang-kiln-art-edition-dual-sim-td-lte-cn-m091q.json @@ -0,0 +1,43 @@ +{ + "slug": "17-pro-5g-xiaofang-kiln-art-edition-dual-sim-td-lte-cn-m091q", + "name": "17 Pro 5G Xiaofang Kiln Art Edition Dual SIM TD-LTE CN M091Q", + "brand": "meizu", + "soc": "snapdragon-865", + "release_date": "2020-05-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 219.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2021/18-5g-premium-edition-dual-sim-td-lte-cn-256gb-m181q.json b/data/smartphone/meizu/2021/18-5g-premium-edition-dual-sim-td-lte-cn-256gb-m181q.json new file mode 100644 index 00000000000..6e928f5b528 --- /dev/null +++ b/data/smartphone/meizu/2021/18-5g-premium-edition-dual-sim-td-lte-cn-256gb-m181q.json @@ -0,0 +1,44 @@ +{ + "slug": "18-5g-premium-edition-dual-sim-td-lte-cn-256gb-m181q", + "name": "18 5G Premium Edition Dual SIM TD-LTE CN 256GB M181Q", + "brand": "meizu", + "soc": "snapdragon-888", + "release_date": "2021-03-09", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.2, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 566 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "charging_wired_w": 36, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 4999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2021/18-5g-standard-edition-dual-sim-td-lte-cn-128gb-m181q.json b/data/smartphone/meizu/2021/18-5g-standard-edition-dual-sim-td-lte-cn-128gb-m181q.json new file mode 100644 index 00000000000..5e2512f0030 --- /dev/null +++ b/data/smartphone/meizu/2021/18-5g-standard-edition-dual-sim-td-lte-cn-128gb-m181q.json @@ -0,0 +1,44 @@ +{ + "slug": "18-5g-standard-edition-dual-sim-td-lte-cn-128gb-m181q", + "name": "18 5G Standard Edition Dual SIM TD-LTE CN 128GB M181Q", + "brand": "meizu", + "soc": "snapdragon-888", + "release_date": "2021-03-09", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 566 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "charging_wired_w": 36, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 4399, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2021/18-5g-standard-edition-dual-sim-td-lte-cn-256gb-m181q.json b/data/smartphone/meizu/2021/18-5g-standard-edition-dual-sim-td-lte-cn-256gb-m181q.json new file mode 100644 index 00000000000..145bc896b54 --- /dev/null +++ b/data/smartphone/meizu/2021/18-5g-standard-edition-dual-sim-td-lte-cn-256gb-m181q.json @@ -0,0 +1,44 @@ +{ + "slug": "18-5g-standard-edition-dual-sim-td-lte-cn-256gb-m181q", + "name": "18 5G Standard Edition Dual SIM TD-LTE CN 256GB M181Q", + "brand": "meizu", + "soc": "snapdragon-888", + "release_date": "2021-03-09", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.2, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 566 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "charging_wired_w": 36, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 4699, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2021/18-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m191q.json b/data/smartphone/meizu/2021/18-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m191q.json new file mode 100644 index 00000000000..1e541d6e150 --- /dev/null +++ b/data/smartphone/meizu/2021/18-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m191q.json @@ -0,0 +1,43 @@ +{ + "slug": "18-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m191q", + "name": "18 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB M191Q", + "brand": "meizu", + "soc": "snapdragon-888", + "release_date": "2021-03-09", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.68, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 43.7 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2021/18-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m191q.json b/data/smartphone/meizu/2021/18-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m191q.json new file mode 100644 index 00000000000..238d0122638 --- /dev/null +++ b/data/smartphone/meizu/2021/18-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m191q.json @@ -0,0 +1,44 @@ +{ + "slug": "18-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m191q", + "name": "18 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB M191Q", + "brand": "meizu", + "soc": "snapdragon-888", + "release_date": "2021-03-09", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.68, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 43.7 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 4999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2021/18-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m191q.json b/data/smartphone/meizu/2021/18-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m191q.json new file mode 100644 index 00000000000..4e8b7d78a5f --- /dev/null +++ b/data/smartphone/meizu/2021/18-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m191q.json @@ -0,0 +1,43 @@ +{ + "slug": "18-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m191q", + "name": "18 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB M191Q", + "brand": "meizu", + "soc": "snapdragon-888", + "release_date": "2021-03-09", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.68, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 43.7 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2021/18s-5g-premium-edition-dual-sim-td-lte-cn-256gb-m182q.json b/data/smartphone/meizu/2021/18s-5g-premium-edition-dual-sim-td-lte-cn-256gb-m182q.json new file mode 100644 index 00000000000..7b44e3a54c6 --- /dev/null +++ b/data/smartphone/meizu/2021/18s-5g-premium-edition-dual-sim-td-lte-cn-256gb-m182q.json @@ -0,0 +1,44 @@ +{ + "slug": "18s-5g-premium-edition-dual-sim-td-lte-cn-256gb-m182q", + "name": "18s 5G Premium Edition Dual SIM TD-LTE CN 256GB M182Q", + "brand": "meizu", + "soc": "snapdragon-888-plus", + "release_date": "2021-09-01", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.2, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 566 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "charging_wired_w": 36, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 4299, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2021/18s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m182q.json b/data/smartphone/meizu/2021/18s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m182q.json new file mode 100644 index 00000000000..3f5e2ec11c6 --- /dev/null +++ b/data/smartphone/meizu/2021/18s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m182q.json @@ -0,0 +1,44 @@ +{ + "slug": "18s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m182q", + "name": "18s 5G Standard Edition Dual SIM TD-LTE CN 128GB M182Q", + "brand": "meizu", + "soc": "snapdragon-888-plus", + "release_date": "2021-09-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 566 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "charging_wired_w": 36, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3699, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2021/18s-5g-standard-edition-dual-sim-td-lte-cn-256gb-m182q.json b/data/smartphone/meizu/2021/18s-5g-standard-edition-dual-sim-td-lte-cn-256gb-m182q.json new file mode 100644 index 00000000000..f043c1a9832 --- /dev/null +++ b/data/smartphone/meizu/2021/18s-5g-standard-edition-dual-sim-td-lte-cn-256gb-m182q.json @@ -0,0 +1,44 @@ +{ + "slug": "18s-5g-standard-edition-dual-sim-td-lte-cn-256gb-m182q", + "name": "18s 5G Standard Edition Dual SIM TD-LTE CN 256GB M182Q", + "brand": "meizu", + "soc": "snapdragon-888-plus", + "release_date": "2021-09-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.2, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 566 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "charging_wired_w": 36, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2021/18s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m192q.json b/data/smartphone/meizu/2021/18s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m192q.json new file mode 100644 index 00000000000..462a1539f55 --- /dev/null +++ b/data/smartphone/meizu/2021/18s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m192q.json @@ -0,0 +1,43 @@ +{ + "slug": "18s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m192q", + "name": "18s Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB M192Q", + "brand": "meizu", + "soc": "snapdragon-888-plus", + "release_date": "2021-09-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.68, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 43.7 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2021/18s-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m192q.json b/data/smartphone/meizu/2021/18s-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m192q.json new file mode 100644 index 00000000000..8689ed06062 --- /dev/null +++ b/data/smartphone/meizu/2021/18s-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m192q.json @@ -0,0 +1,44 @@ +{ + "slug": "18s-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m192q", + "name": "18s Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB M192Q", + "brand": "meizu", + "soc": "snapdragon-888-plus", + "release_date": "2021-09-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.68, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 43.7 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 4599, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2021/18s-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m192q.json b/data/smartphone/meizu/2021/18s-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m192q.json new file mode 100644 index 00000000000..31059832885 --- /dev/null +++ b/data/smartphone/meizu/2021/18s-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m192q.json @@ -0,0 +1,44 @@ +{ + "slug": "18s-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m192q", + "name": "18s Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB M192Q", + "brand": "meizu", + "soc": "snapdragon-888-plus", + "release_date": "2021-09-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.68, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 43.7 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 4999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2021/18x-5g-premium-edition-dual-sim-td-lte-cn-256gb-m172q.json b/data/smartphone/meizu/2021/18x-5g-premium-edition-dual-sim-td-lte-cn-256gb-m172q.json new file mode 100644 index 00000000000..657545d1752 --- /dev/null +++ b/data/smartphone/meizu/2021/18x-5g-premium-edition-dual-sim-td-lte-cn-256gb-m172q.json @@ -0,0 +1,44 @@ +{ + "slug": "18x-5g-premium-edition-dual-sim-td-lte-cn-256gb-m172q", + "name": "18X 5G Premium Edition Dual SIM TD-LTE CN 256GB M172Q", + "brand": "meizu", + "soc": "snapdragon-870", + "release_date": "2021-09-01", + "ram_gb": 12.0, + "battery_mah": 4300, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 2999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2021/18x-5g-standard-edition-dual-sim-td-lte-cn-128gb-m172q.json b/data/smartphone/meizu/2021/18x-5g-standard-edition-dual-sim-td-lte-cn-128gb-m172q.json new file mode 100644 index 00000000000..0daa45b0f72 --- /dev/null +++ b/data/smartphone/meizu/2021/18x-5g-standard-edition-dual-sim-td-lte-cn-128gb-m172q.json @@ -0,0 +1,44 @@ +{ + "slug": "18x-5g-standard-edition-dual-sim-td-lte-cn-128gb-m172q", + "name": "18X 5G Standard Edition Dual SIM TD-LTE CN 128GB M172Q", + "brand": "meizu", + "soc": "snapdragon-870", + "release_date": "2021-09-01", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 2599, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/meizu/2021/18x-5g-standard-edition-dual-sim-td-lte-cn-256gb-m172q.json b/data/smartphone/meizu/2021/18x-5g-standard-edition-dual-sim-td-lte-cn-256gb-m172q.json new file mode 100644 index 00000000000..b751ba05a56 --- /dev/null +++ b/data/smartphone/meizu/2021/18x-5g-standard-edition-dual-sim-td-lte-cn-256gb-m172q.json @@ -0,0 +1,44 @@ +{ + "slug": "18x-5g-standard-edition-dual-sim-td-lte-cn-256gb-m172q", + "name": "18X 5G Standard Edition Dual SIM TD-LTE CN 256GB M172Q", + "brand": "meizu", + "soc": "snapdragon-870", + "release_date": "2021-09-01", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 2799, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/microsoft/2020/surface-duo-global-td-lte-128gb.json b/data/smartphone/microsoft/2020/surface-duo-global-td-lte-128gb.json new file mode 100644 index 00000000000..ceec22dcdfc --- /dev/null +++ b/data/smartphone/microsoft/2020/surface-duo-global-td-lte-128gb.json @@ -0,0 +1,39 @@ +{ + "slug": "surface-duo-global-td-lte-128gb", + "name": "Surface Duo Global TD-LTE 128GB", + "brand": "microsoft", + "soc": "snapdragon-855", + "release_date": "2020-09-01", + "ram_gb": 6.0, + "battery_mah": 3578, + "weight_g": 250.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.6, + "resolution": "1350x1800", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 11.1 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1400, + "market_countries": "Australia , Austria , Belgium , Canada , Denmark , Finland , France , Germany , Ireland , Italy , Japan , Netherlands , Spain , Sweden , Switzerland , UK , USA", + "market_regions": "Australia , Europe , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/microsoft/2020/surface-duo-global-td-lte-256gb.json b/data/smartphone/microsoft/2020/surface-duo-global-td-lte-256gb.json new file mode 100644 index 00000000000..aa247e025a4 --- /dev/null +++ b/data/smartphone/microsoft/2020/surface-duo-global-td-lte-256gb.json @@ -0,0 +1,38 @@ +{ + "slug": "surface-duo-global-td-lte-256gb", + "name": "Surface Duo Global TD-LTE 256GB", + "brand": "microsoft", + "soc": "snapdragon-855", + "release_date": "2020-09-01", + "ram_gb": 6.0, + "battery_mah": 3578, + "weight_g": 250.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.6, + "resolution": "1350x1800", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 11.1 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Canada , Denmark , Finland , France , Germany , Ireland , Italy , Japan , Netherlands , Spain , Sweden , Switzerland , UK , USA", + "market_regions": "Australia , Europe , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/microsoft/2020/surface-duo-td-lte-us-128gb.json b/data/smartphone/microsoft/2020/surface-duo-td-lte-us-128gb.json new file mode 100644 index 00000000000..1571255fa4b --- /dev/null +++ b/data/smartphone/microsoft/2020/surface-duo-td-lte-us-128gb.json @@ -0,0 +1,39 @@ +{ + "slug": "surface-duo-td-lte-us-128gb", + "name": "Surface Duo TD-LTE US 128GB", + "brand": "microsoft", + "soc": "snapdragon-855", + "release_date": "2020-09-01", + "ram_gb": 6.0, + "battery_mah": 3578, + "weight_g": 250.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.6, + "resolution": "1350x1800", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 11.1 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1350, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/microsoft/2020/surface-duo-td-lte-us-256gb.json b/data/smartphone/microsoft/2020/surface-duo-td-lte-us-256gb.json new file mode 100644 index 00000000000..6be5797e281 --- /dev/null +++ b/data/smartphone/microsoft/2020/surface-duo-td-lte-us-256gb.json @@ -0,0 +1,38 @@ +{ + "slug": "surface-duo-td-lte-us-256gb", + "name": "Surface Duo TD-LTE US 256GB", + "brand": "microsoft", + "soc": "snapdragon-855", + "release_date": "2020-09-01", + "ram_gb": 6.0, + "battery_mah": 3578, + "weight_g": 250.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.6, + "resolution": "1350x1800", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 11.1 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/microsoft/2021/surface-duo-2-5g-global-td-lte-128gb-1968.json b/data/smartphone/microsoft/2021/surface-duo-2-5g-global-td-lte-128gb-1968.json new file mode 100644 index 00000000000..a3cbf63f58d --- /dev/null +++ b/data/smartphone/microsoft/2021/surface-duo-2-5g-global-td-lte-128gb-1968.json @@ -0,0 +1,43 @@ +{ + "slug": "surface-duo-2-5g-global-td-lte-128gb-1968", + "name": "Surface Duo 2 5G Global TD-LTE 128GB 1968", + "brand": "microsoft", + "soc": "snapdragon-888", + "release_date": "2021-10-21", + "ram_gb": 8.0, + "battery_mah": 4450, + "weight_g": 284.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.8, + "resolution": "1344x1892", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "charging_wired_w": 23, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Canada , Denmark , Finland , France , Germany , Ireland , Italy , Japan , Netherlands , Spain , Sweden , Switzerland , UK", + "market_regions": "Asia , Australia , Europe , North America , Western Europe" +} diff --git a/data/smartphone/microsoft/2021/surface-duo-2-5g-global-td-lte-256gb-1968.json b/data/smartphone/microsoft/2021/surface-duo-2-5g-global-td-lte-256gb-1968.json new file mode 100644 index 00000000000..b843acd0091 --- /dev/null +++ b/data/smartphone/microsoft/2021/surface-duo-2-5g-global-td-lte-256gb-1968.json @@ -0,0 +1,44 @@ +{ + "slug": "surface-duo-2-5g-global-td-lte-256gb-1968", + "name": "Surface Duo 2 5G Global TD-LTE 256GB 1968", + "brand": "microsoft", + "soc": "snapdragon-888", + "release_date": "2021-10-21", + "ram_gb": 8.0, + "battery_mah": 4450, + "weight_g": 284.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.8, + "resolution": "1344x1892", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "charging_wired_w": 23, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1429, + "market_countries": "Australia , Austria , Belgium , Canada , Denmark , Finland , France , Germany , Ireland , Italy , Japan , Netherlands , Spain , Sweden , Switzerland , UK", + "market_regions": "Asia , Australia , Europe , North America , Western Europe" +} diff --git a/data/smartphone/microsoft/2022/surface-duo-2-5g-global-td-lte-512gb-1968.json b/data/smartphone/microsoft/2022/surface-duo-2-5g-global-td-lte-512gb-1968.json new file mode 100644 index 00000000000..d1bcb0a3d06 --- /dev/null +++ b/data/smartphone/microsoft/2022/surface-duo-2-5g-global-td-lte-512gb-1968.json @@ -0,0 +1,44 @@ +{ + "slug": "surface-duo-2-5g-global-td-lte-512gb-1968", + "name": "Surface Duo 2 5G Global TD-LTE 512GB 1968", + "brand": "microsoft", + "soc": "snapdragon-888", + "release_date": "2022-01-07", + "ram_gb": 8.0, + "battery_mah": 4450, + "weight_g": 284.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 5.8, + "resolution": "1344x1892", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "charging_wired_w": 23, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1589, + "market_countries": "Australia , Austria , Belgium , Canada , Denmark , Finland , France , Germany , Ireland , Italy , Japan , Netherlands , Spain , Sweden , Switzerland , UK", + "market_regions": "Asia , Australia , Europe , North America , Western Europe" +} diff --git a/data/smartphone/motorola/2018/moto-e5-dual-sim-lte-latam-16gb-xt1944-4.json b/data/smartphone/motorola/2018/moto-e5-dual-sim-lte-latam-16gb-xt1944-4.json new file mode 100644 index 00000000000..f34d8be29d7 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-e5-dual-sim-lte-latam-16gb-xt1944-4.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-e5-dual-sim-lte-latam-16gb-xt1944-4", + "name": "Moto E5 Dual SIM LTE LATAM 16GB XT1944-4", + "brand": "motorola", + "soc": "snapdragon-425", + "release_date": "2018-04-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 174.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Brazil , Colombia , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/motorola/2018/moto-e5-dual-sim-lte-latam-32gb-xt1944-4.json b/data/smartphone/motorola/2018/moto-e5-dual-sim-lte-latam-32gb-xt1944-4.json new file mode 100644 index 00000000000..3f84f251440 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-e5-dual-sim-lte-latam-32gb-xt1944-4.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-e5-dual-sim-lte-latam-32gb-xt1944-4", + "name": "Moto E5 Dual SIM LTE LATAM 32GB XT1944-4", + "brand": "motorola", + "soc": "snapdragon-425", + "release_date": "2018-04-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 174.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Brazil , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/motorola/2018/moto-e5-dual-sim-td-lte-apac-16gb-xt1944-6.json b/data/smartphone/motorola/2018/moto-e5-dual-sim-td-lte-apac-16gb-xt1944-6.json new file mode 100644 index 00000000000..76cfe99463e --- /dev/null +++ b/data/smartphone/motorola/2018/moto-e5-dual-sim-td-lte-apac-16gb-xt1944-6.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-e5-dual-sim-td-lte-apac-16gb-xt1944-6", + "name": "Moto E5 Dual SIM TD-LTE APAC 16GB XT1944-6", + "brand": "motorola", + "soc": "snapdragon-425", + "release_date": "2018-06-08", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 174.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , Japan", + "market_regions": "Asia , Australia , Southeast Asia" +} diff --git a/data/smartphone/motorola/2018/moto-e5-dual-sim-td-lte-emea-16gb-xt1944-2.json b/data/smartphone/motorola/2018/moto-e5-dual-sim-td-lte-emea-16gb-xt1944-2.json new file mode 100644 index 00000000000..a05635da843 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-e5-dual-sim-td-lte-emea-16gb-xt1944-2.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-e5-dual-sim-td-lte-emea-16gb-xt1944-2", + "name": "Moto E5 Dual SIM TD-LTE EMEA 16GB XT1944-2", + "brand": "motorola", + "soc": "snapdragon-425", + "release_date": "2018-04-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 174.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Czech , France , Germany , Hungary , Italy , Norway , Poland , Romania , Russia , Serbia , Slovakia , Slovenia , Spain , UAE , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/motorola/2018/moto-e5-dual-sim-td-lte-in-16gb-xt1944-5.json b/data/smartphone/motorola/2018/moto-e5-dual-sim-td-lte-in-16gb-xt1944-5.json new file mode 100644 index 00000000000..255516bcbb1 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-e5-dual-sim-td-lte-in-16gb-xt1944-5.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-e5-dual-sim-td-lte-in-16gb-xt1944-5", + "name": "Moto E5 Dual SIM TD-LTE IN 16GB XT1944-5", + "brand": "motorola", + "soc": "snapdragon-425", + "release_date": "2018-06-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 174.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/motorola/2018/moto-e5-lte-latam-16gb-xt1944-3-moto-e-gen-5.json b/data/smartphone/motorola/2018/moto-e5-lte-latam-16gb-xt1944-3-moto-e-gen-5.json new file mode 100644 index 00000000000..29cc7b35e70 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-e5-lte-latam-16gb-xt1944-3-moto-e-gen-5.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-e5-lte-latam-16gb-xt1944-3-moto-e-gen-5", + "name": "Moto E5 LTE LATAM 16GB XT1944-3 / Moto E Gen 5", + "brand": "motorola", + "soc": "snapdragon-425", + "release_date": "2018-04-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 174.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Argentina , Chile , Mexico , Peru , Puerto Rico", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/motorola/2018/moto-e5-play-go-edition-dual-sim-lte-latam-xt1920-19.json b/data/smartphone/motorola/2018/moto-e5-play-go-edition-dual-sim-lte-latam-xt1920-19.json new file mode 100644 index 00000000000..dcbf2b686e0 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-e5-play-go-edition-dual-sim-lte-latam-xt1920-19.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-e5-play-go-edition-dual-sim-lte-latam-xt1920-19", + "name": "Moto E5 Play Go Edition Dual SIM LTE LATAM XT1920-19", + "brand": "motorola", + "soc": "snapdragon-425", + "release_date": "2018-07-01", + "ram_gb": 1.0, + "battery_mah": 2100, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.34, + "resolution": "480x960", + "type": "Color IPS TFT LCD display", + "ppi": 201 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Brazil", + "market_regions": "South America" +} diff --git a/data/smartphone/motorola/2018/moto-e5-play-go-edition-global-dual-sim-td-lte-xt1920-16.json b/data/smartphone/motorola/2018/moto-e5-play-go-edition-global-dual-sim-td-lte-xt1920-16.json new file mode 100644 index 00000000000..770b39e585c --- /dev/null +++ b/data/smartphone/motorola/2018/moto-e5-play-go-edition-global-dual-sim-td-lte-xt1920-16.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-e5-play-go-edition-global-dual-sim-td-lte-xt1920-16", + "name": "Moto E5 Play Go Edition Global Dual SIM TD-LTE XT1920-16", + "brand": "motorola", + "soc": "snapdragon-425", + "release_date": "2018-07-01", + "ram_gb": 1.0, + "battery_mah": 2100, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.34, + "resolution": "480x960", + "type": "Color IPS TFT LCD display", + "ppi": 201 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Denmark , France , Germany , Norway , Poland , Russia , Serbia , Spain , Sweden , Thailand", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/motorola/2018/moto-e5-play-go-edition-lte-latam-xt1920-18.json b/data/smartphone/motorola/2018/moto-e5-play-go-edition-lte-latam-xt1920-18.json new file mode 100644 index 00000000000..ea69c6ea2d7 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-e5-play-go-edition-lte-latam-xt1920-18.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-e5-play-go-edition-lte-latam-xt1920-18", + "name": "Moto E5 Play Go Edition LTE LATAM XT1920-18", + "brand": "motorola", + "soc": "snapdragon-425", + "release_date": "2018-08-01", + "ram_gb": 1.0, + "battery_mah": 2100, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.34, + "resolution": "480x960", + "type": "Color IPS TFT LCD display", + "ppi": 201 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Argentina , Chile , Mexico , Peru , Puerto Rico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/motorola/2018/moto-e5-play-go-edition-td-lte-emea-xt1920-15.json b/data/smartphone/motorola/2018/moto-e5-play-go-edition-td-lte-emea-xt1920-15.json new file mode 100644 index 00000000000..a5f8f2366be --- /dev/null +++ b/data/smartphone/motorola/2018/moto-e5-play-go-edition-td-lte-emea-xt1920-15.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-e5-play-go-edition-td-lte-emea-xt1920-15", + "name": "Moto E5 Play Go Edition TD-LTE EMEA XT1920-15", + "brand": "motorola", + "soc": "snapdragon-425", + "release_date": "2018-08-01", + "ram_gb": 1.0, + "battery_mah": 2100, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.34, + "resolution": "480x960", + "type": "Color IPS TFT LCD display", + "ppi": 201 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Romania , Spain , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/motorola/2018/moto-e5-play-go-td-lte-us-16gb-xt1921-7-xt1921-8.json b/data/smartphone/motorola/2018/moto-e5-play-go-td-lte-us-16gb-xt1921-7-xt1921-8.json new file mode 100644 index 00000000000..da08488d7e6 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-e5-play-go-td-lte-us-16gb-xt1921-7-xt1921-8.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-e5-play-go-td-lte-us-16gb-xt1921-7-xt1921-8", + "name": "Moto E5 Play Go TD-LTE US 16GB XT1921-7 / XT1921-8", + "brand": "motorola", + "soc": "snapdragon-425", + "release_date": "2018-06-01", + "ram_gb": 1.0, + "battery_mah": 2800, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.2, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 283 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2018/moto-e5-play-lte-us-16gb-xt1921-2-moto-e5-cruise.json b/data/smartphone/motorola/2018/moto-e5-play-lte-us-16gb-xt1921-2-moto-e5-cruise.json new file mode 100644 index 00000000000..3081e268d4b --- /dev/null +++ b/data/smartphone/motorola/2018/moto-e5-play-lte-us-16gb-xt1921-2-moto-e5-cruise.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-e5-play-lte-us-16gb-xt1921-2-moto-e5-cruise", + "name": "Moto E5 Play LTE US 16GB XT1921-2 / Moto E5 Cruise", + "brand": "motorola", + "soc": "snapdragon-427", + "release_date": "2018-07-01", + "ram_gb": 2.0, + "battery_mah": 2800, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.2, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 283 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2018/moto-e5-play-td-lte-na-16gb-xt1921-1-moto-e-play-gen-5-xt1921-7.json b/data/smartphone/motorola/2018/moto-e5-play-td-lte-na-16gb-xt1921-1-moto-e-play-gen-5-xt1921-7.json new file mode 100644 index 00000000000..7710ea9967c --- /dev/null +++ b/data/smartphone/motorola/2018/moto-e5-play-td-lte-na-16gb-xt1921-1-moto-e-play-gen-5-xt1921-7.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-e5-play-td-lte-na-16gb-xt1921-1-moto-e-play-gen-5-xt1921-7", + "name": "Moto E5 Play TD-LTE NA 16GB XT1921-1 / Moto E Play Gen 5 XT1921-7", + "brand": "motorola", + "soc": "snapdragon-425", + "release_date": "2018-05-01", + "ram_gb": 2.0, + "battery_mah": 2800, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.2, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 283 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2018/moto-e5-play-td-lte-us-16gb-xt1921-3.json b/data/smartphone/motorola/2018/moto-e5-play-td-lte-us-16gb-xt1921-3.json new file mode 100644 index 00000000000..204c4a5479b --- /dev/null +++ b/data/smartphone/motorola/2018/moto-e5-play-td-lte-us-16gb-xt1921-3.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-e5-play-td-lte-us-16gb-xt1921-3", + "name": "Moto E5 Play TD-LTE US 16GB XT1921-3", + "brand": "motorola", + "soc": "snapdragon-427", + "release_date": "2018-07-26", + "ram_gb": 2.0, + "battery_mah": 2800, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.2, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 283 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2018/moto-e5-play-td-lte-us-16gb-xt1921-5.json b/data/smartphone/motorola/2018/moto-e5-play-td-lte-us-16gb-xt1921-5.json new file mode 100644 index 00000000000..01c6a36ae46 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-e5-play-td-lte-us-16gb-xt1921-5.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-e5-play-td-lte-us-16gb-xt1921-5", + "name": "Moto E5 Play TD-LTE US 16GB XT1921-5", + "brand": "motorola", + "soc": "snapdragon-427", + "release_date": "2018-06-01", + "ram_gb": 2.0, + "battery_mah": 2800, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.2, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 283 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2018/moto-e5-play-td-lte-us-16gb-xt1921-6.json b/data/smartphone/motorola/2018/moto-e5-play-td-lte-us-16gb-xt1921-6.json new file mode 100644 index 00000000000..ffe81a3049c --- /dev/null +++ b/data/smartphone/motorola/2018/moto-e5-play-td-lte-us-16gb-xt1921-6.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-e5-play-td-lte-us-16gb-xt1921-6", + "name": "Moto E5 Play TD-LTE US 16GB XT1921-6", + "brand": "motorola", + "soc": "snapdragon-425", + "release_date": "2018-05-01", + "ram_gb": 2.0, + "battery_mah": 2800, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.2, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 283 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2018/moto-e5-plus-dual-sim-lte-emea-16gb-xt1924-1.json b/data/smartphone/motorola/2018/moto-e5-plus-dual-sim-lte-emea-16gb-xt1924-1.json new file mode 100644 index 00000000000..82d06330b6c --- /dev/null +++ b/data/smartphone/motorola/2018/moto-e5-plus-dual-sim-lte-emea-16gb-xt1924-1.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-e5-plus-dual-sim-lte-emea-16gb-xt1924-1", + "name": "Moto E5 Plus Dual SIM LTE EMEA 16GB XT1924-1", + "brand": "motorola", + "soc": "snapdragon-425", + "release_date": "2018-06-01", + "ram_gb": 2.0, + "battery_mah": 5000, + "weight_g": 196.6, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.98, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "France , Germany , Poland , Russia , Spain , Ukraine", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/motorola/2018/moto-e5-plus-dual-sim-lte-latam-16gb-xt1924-4.json b/data/smartphone/motorola/2018/moto-e5-plus-dual-sim-lte-latam-16gb-xt1924-4.json new file mode 100644 index 00000000000..b1cd9574e71 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-e5-plus-dual-sim-lte-latam-16gb-xt1924-4.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-e5-plus-dual-sim-lte-latam-16gb-xt1924-4", + "name": "Moto E5 Plus Dual SIM LTE LATAM 16GB XT1924-4", + "brand": "motorola", + "soc": "snapdragon-425", + "release_date": "2018-05-01", + "ram_gb": 2.0, + "battery_mah": 5000, + "weight_g": 196.6, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.98, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Brazil , Colombia", + "market_regions": "South America" +} diff --git a/data/smartphone/motorola/2018/moto-e5-plus-dual-sim-td-lte-cn-32gb-xt1924-9.json b/data/smartphone/motorola/2018/moto-e5-plus-dual-sim-td-lte-cn-32gb-xt1924-9.json new file mode 100644 index 00000000000..862889576e2 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-e5-plus-dual-sim-td-lte-cn-32gb-xt1924-9.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-e5-plus-dual-sim-td-lte-cn-32gb-xt1924-9", + "name": "Moto E5 Plus Dual SIM TD-LTE CN 32GB XT1924-9", + "brand": "motorola", + "soc": "snapdragon-430", + "release_date": "2018-08-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 196.6, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.98, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/motorola/2018/moto-e5-plus-dual-sim-td-lte-cn-64gb-xt1924-9.json b/data/smartphone/motorola/2018/moto-e5-plus-dual-sim-td-lte-cn-64gb-xt1924-9.json new file mode 100644 index 00000000000..c7c62055eac --- /dev/null +++ b/data/smartphone/motorola/2018/moto-e5-plus-dual-sim-td-lte-cn-64gb-xt1924-9.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-e5-plus-dual-sim-td-lte-cn-64gb-xt1924-9", + "name": "Moto E5 Plus Dual SIM TD-LTE CN 64GB XT1924-9", + "brand": "motorola", + "soc": "snapdragon-430", + "release_date": "2018-08-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 196.6, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.98, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/motorola/2018/moto-e5-plus-dual-sim-td-lte-in-32gb-xt1924-3.json b/data/smartphone/motorola/2018/moto-e5-plus-dual-sim-td-lte-in-32gb-xt1924-3.json new file mode 100644 index 00000000000..5cd42d67c8d --- /dev/null +++ b/data/smartphone/motorola/2018/moto-e5-plus-dual-sim-td-lte-in-32gb-xt1924-3.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-e5-plus-dual-sim-td-lte-in-32gb-xt1924-3", + "name": "Moto E5 Plus Dual SIM TD-LTE IN 32GB XT1924-3", + "brand": "motorola", + "soc": "snapdragon-430", + "release_date": "2018-05-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 196.6, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.98, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/motorola/2018/moto-e5-plus-lte-emea-32gb-xt1924-2.json b/data/smartphone/motorola/2018/moto-e5-plus-lte-emea-32gb-xt1924-2.json new file mode 100644 index 00000000000..b2fa7d7797e --- /dev/null +++ b/data/smartphone/motorola/2018/moto-e5-plus-lte-emea-32gb-xt1924-2.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-e5-plus-lte-emea-32gb-xt1924-2", + "name": "Moto E5 Plus LTE EMEA 32GB XT1924-2", + "brand": "motorola", + "soc": "snapdragon-425", + "release_date": "2018-06-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 196.6, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.98, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "France , Poland , Portugal , Romania , Spain , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/motorola/2018/moto-e5-plus-lte-latam-16gb-xt1924-5-moto-e-plus-gen-5.json b/data/smartphone/motorola/2018/moto-e5-plus-lte-latam-16gb-xt1924-5-moto-e-plus-gen-5.json new file mode 100644 index 00000000000..c288505eef4 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-e5-plus-lte-latam-16gb-xt1924-5-moto-e-plus-gen-5.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-e5-plus-lte-latam-16gb-xt1924-5-moto-e-plus-gen-5", + "name": "Moto E5 Plus LTE LATAM 16GB XT1924-5 / Moto E Plus Gen 5", + "brand": "motorola", + "soc": "snapdragon-425", + "release_date": "2018-04-01", + "ram_gb": 2.0, + "battery_mah": 5000, + "weight_g": 196.6, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.98, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Argentina , Chile , Guatemala , Mexico", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/motorola/2018/moto-e5-plus-td-lte-us-32gb-xt1924-7-moto-e-plus-5th-gen.json b/data/smartphone/motorola/2018/moto-e5-plus-td-lte-us-32gb-xt1924-7-moto-e-plus-5th-gen.json new file mode 100644 index 00000000000..700ddf29c7b --- /dev/null +++ b/data/smartphone/motorola/2018/moto-e5-plus-td-lte-us-32gb-xt1924-7-moto-e-plus-5th-gen.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-e5-plus-td-lte-us-32gb-xt1924-7-moto-e-plus-5th-gen", + "name": "Moto E5 Plus TD-LTE US 32GB XT1924-7 / Moto E Plus 5th gen", + "brand": "motorola", + "soc": "snapdragon-435", + "release_date": "2018-07-26", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 196.6, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.98, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2018/moto-e5-plus-td-lte-us-32gb-xt1924-8.json b/data/smartphone/motorola/2018/moto-e5-plus-td-lte-us-32gb-xt1924-8.json new file mode 100644 index 00000000000..bda2707cd90 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-e5-plus-td-lte-us-32gb-xt1924-8.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-e5-plus-td-lte-us-32gb-xt1924-8", + "name": "Moto E5 Plus TD-LTE US 32GB XT1924-8", + "brand": "motorola", + "soc": "snapdragon-435", + "release_date": "2018-05-29", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 196.6, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.98, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2018/moto-e5-supra-lte-a-us-32gb-xt1924-6.json b/data/smartphone/motorola/2018/moto-e5-supra-lte-a-us-32gb-xt1924-6.json new file mode 100644 index 00000000000..0aeb8cdbc3f --- /dev/null +++ b/data/smartphone/motorola/2018/moto-e5-supra-lte-a-us-32gb-xt1924-6.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-e5-supra-lte-a-us-32gb-xt1924-6", + "name": "Moto E5 Supra LTE-A US 32GB XT1924-6", + "brand": "motorola", + "soc": "snapdragon-435", + "release_date": "2018-06-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 196.6, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.98, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2018/moto-e5-td-lte-emea-16gb-xt1944-1.json b/data/smartphone/motorola/2018/moto-e5-td-lte-emea-16gb-xt1944-1.json new file mode 100644 index 00000000000..cdc13f7eec0 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-e5-td-lte-emea-16gb-xt1944-1.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-e5-td-lte-emea-16gb-xt1944-1", + "name": "Moto E5 TD-LTE EMEA 16GB XT1944-1", + "brand": "motorola", + "soc": "snapdragon-425", + "release_date": "2018-04-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 174.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Romania , Slovakia , Spain , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/motorola/2018/moto-e5-td-lte-us-16gb-xt1920dl.json b/data/smartphone/motorola/2018/moto-e5-td-lte-us-16gb-xt1920dl.json new file mode 100644 index 00000000000..48c9385df0f --- /dev/null +++ b/data/smartphone/motorola/2018/moto-e5-td-lte-us-16gb-xt1920dl.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-e5-td-lte-us-16gb-xt1920dl", + "name": "Moto E5 TD-LTE US 16GB XT1920DL", + "brand": "motorola", + "soc": "snapdragon-425", + "release_date": "2018-05-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 174.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2018/moto-g6-dual-sim-lte-a-latam-32gb-xt1925-2.json b/data/smartphone/motorola/2018/moto-g6-dual-sim-lte-a-latam-32gb-xt1925-2.json new file mode 100644 index 00000000000..2e11757a50e --- /dev/null +++ b/data/smartphone/motorola/2018/moto-g6-dual-sim-lte-a-latam-32gb-xt1925-2.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g6-dual-sim-lte-a-latam-32gb-xt1925-2", + "name": "Moto G6 Dual SIM LTE-A LATAM 32GB XT1925-2", + "brand": "motorola", + "soc": "snapdragon-450", + "release_date": "2018-05-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Colombia , Ecuador , Puerto Rico , USA", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/motorola/2018/moto-g6-dual-sim-lte-a-latam-32gb-xt1925-3.json b/data/smartphone/motorola/2018/moto-g6-dual-sim-lte-a-latam-32gb-xt1925-3.json new file mode 100644 index 00000000000..4f31bb57202 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-g6-dual-sim-lte-a-latam-32gb-xt1925-3.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g6-dual-sim-lte-a-latam-32gb-xt1925-3", + "name": "Moto G6 Dual SIM LTE-A LATAM 32GB XT1925-3", + "brand": "motorola", + "soc": "snapdragon-450", + "release_date": "2018-05-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 162.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Brazil", + "market_regions": "South America" +} diff --git a/data/smartphone/motorola/2018/moto-g6-dual-sim-lte-a-latam-64gb-xt1925-3.json b/data/smartphone/motorola/2018/moto-g6-dual-sim-lte-a-latam-64gb-xt1925-3.json new file mode 100644 index 00000000000..08be6c5f4c4 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-g6-dual-sim-lte-a-latam-64gb-xt1925-3.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g6-dual-sim-lte-a-latam-64gb-xt1925-3", + "name": "Moto G6 Dual SIM LTE-A LATAM 64GB XT1925-3", + "brand": "motorola", + "soc": "snapdragon-450", + "release_date": "2018-05-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 162.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Brazil", + "market_regions": "South America" +} diff --git a/data/smartphone/motorola/2018/moto-g6-dual-sim-td-lte-apac-32gb-xt1925-7-xt1925-13.json b/data/smartphone/motorola/2018/moto-g6-dual-sim-td-lte-apac-32gb-xt1925-7-xt1925-13.json new file mode 100644 index 00000000000..78cada28eba --- /dev/null +++ b/data/smartphone/motorola/2018/moto-g6-dual-sim-td-lte-apac-32gb-xt1925-7-xt1925-13.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g6-dual-sim-td-lte-apac-32gb-xt1925-7-xt1925-13", + "name": "Moto G6 Dual SIM TD-LTE APAC 32GB XT1925-7 / XT1925-13", + "brand": "motorola", + "soc": "snapdragon-450", + "release_date": "2018-06-04", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Cambodia , HK , India , Indonesia , Japan , Malaysia , Myanmar , NZ , Philippines , Singapore , Taiwan , Thailand , Vietnam", + "market_regions": "Asia , Australia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/motorola/2018/moto-g6-dual-sim-td-lte-emea-32gb-xt1925-5.json b/data/smartphone/motorola/2018/moto-g6-dual-sim-td-lte-emea-32gb-xt1925-5.json new file mode 100644 index 00000000000..5b0692f6597 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-g6-dual-sim-td-lte-emea-32gb-xt1925-5.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g6-dual-sim-td-lte-emea-32gb-xt1925-5", + "name": "Moto G6 Dual SIM TD-LTE EMEA 32GB XT1925-5", + "brand": "motorola", + "soc": "snapdragon-450", + "release_date": "2018-05-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Cyprus , Czech , Estonia , Finland , France , Germany , Greece , Hungary , Italy , Latvia , Lithuania , Netherlands , Poland , Romania , Russia , Saudi Arabia , Slovakia , Slovenia , Spain , Sweden , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/motorola/2018/moto-g6-dual-sim-td-lte-in-64gb-xt1925-13.json b/data/smartphone/motorola/2018/moto-g6-dual-sim-td-lte-in-64gb-xt1925-13.json new file mode 100644 index 00000000000..0cd8b20f965 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-g6-dual-sim-td-lte-in-64gb-xt1925-13.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g6-dual-sim-td-lte-in-64gb-xt1925-13", + "name": "Moto G6 Dual SIM TD-LTE IN 64GB XT1925-13", + "brand": "motorola", + "soc": "snapdragon-450", + "release_date": "2018-06-04", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/motorola/2018/moto-g6-forge-td-lte-na-xt1922-9-16gb-moto-g6-play.json b/data/smartphone/motorola/2018/moto-g6-forge-td-lte-na-xt1922-9-16gb-moto-g6-play.json new file mode 100644 index 00000000000..04733a539d8 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-g6-forge-td-lte-na-xt1922-9-16gb-moto-g6-play.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g6-forge-td-lte-na-xt1922-9-16gb-moto-g6-play", + "name": "Moto G6 Forge TD-LTE NA XT1922-9 16GB / Moto G6 Play", + "brand": "motorola", + "soc": "snapdragon-427", + "release_date": "2018-06-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2018/moto-g6-lte-a-latam-32gb-xt1925-1.json b/data/smartphone/motorola/2018/moto-g6-lte-a-latam-32gb-xt1925-1.json new file mode 100644 index 00000000000..c52c7c42d9f --- /dev/null +++ b/data/smartphone/motorola/2018/moto-g6-lte-a-latam-32gb-xt1925-1.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g6-lte-a-latam-32gb-xt1925-1", + "name": "Moto G6 LTE-A LATAM 32GB XT1925-1", + "brand": "motorola", + "soc": "snapdragon-450", + "release_date": "2018-05-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Chile , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/motorola/2018/moto-g6-play-dual-sim-lte-a-latam-xt1922-5-32gb.json b/data/smartphone/motorola/2018/moto-g6-play-dual-sim-lte-a-latam-xt1922-5-32gb.json new file mode 100644 index 00000000000..2bbefd39fb0 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-g6-play-dual-sim-lte-a-latam-xt1922-5-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g6-play-dual-sim-lte-a-latam-xt1922-5-32gb", + "name": "Moto G6 Play Dual SIM LTE-A LATAM XT1922-5 32GB", + "brand": "motorola", + "soc": "snapdragon-430", + "release_date": "2018-06-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Brazil , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/motorola/2018/moto-g6-play-dual-sim-td-lte-apac-xt1922-1-32gb.json b/data/smartphone/motorola/2018/moto-g6-play-dual-sim-td-lte-apac-xt1922-1-32gb.json new file mode 100644 index 00000000000..591252b6b38 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-g6-play-dual-sim-td-lte-apac-xt1922-1-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g6-play-dual-sim-td-lte-apac-xt1922-1-32gb", + "name": "Moto G6 Play Dual SIM TD-LTE APAC XT1922-1 32GB", + "brand": "motorola", + "soc": "snapdragon-430", + "release_date": "2018-07-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , HK , Japan", + "market_regions": "Asia , Australia , Southeast Asia" +} diff --git a/data/smartphone/motorola/2018/moto-g6-play-dual-sim-td-lte-emea-xt1922-3-32gb.json b/data/smartphone/motorola/2018/moto-g6-play-dual-sim-td-lte-emea-xt1922-3-32gb.json new file mode 100644 index 00000000000..fe7a3d6ee12 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-g6-play-dual-sim-td-lte-emea-xt1922-3-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g6-play-dual-sim-td-lte-emea-xt1922-3-32gb", + "name": "Moto G6 Play Dual SIM TD-LTE EMEA XT1922-3 32GB", + "brand": "motorola", + "soc": "snapdragon-430", + "release_date": "2018-06-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Belarus , Czech , Estonia , Finland , France , Germany , Hungary , Italy , Latvia , Lithuania , Netherlands , Poland , Russia , Romania , Slovakia , Slovenia , Spain , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/motorola/2018/moto-g6-play-dual-sim-td-lte-in-xt1922-10-32gb.json b/data/smartphone/motorola/2018/moto-g6-play-dual-sim-td-lte-in-xt1922-10-32gb.json new file mode 100644 index 00000000000..a243ab80f58 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-g6-play-dual-sim-td-lte-in-xt1922-10-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g6-play-dual-sim-td-lte-in-xt1922-10-32gb", + "name": "Moto G6 Play Dual SIM TD-LTE IN XT1922-10 32GB", + "brand": "motorola", + "soc": "snapdragon-430", + "release_date": "2018-06-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/motorola/2018/moto-g6-play-lte-a-latam-xt1922-4-32gb.json b/data/smartphone/motorola/2018/moto-g6-play-lte-a-latam-xt1922-4-32gb.json new file mode 100644 index 00000000000..e2c3a6a5f86 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-g6-play-lte-a-latam-xt1922-4-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g6-play-lte-a-latam-xt1922-4-32gb", + "name": "Moto G6 Play LTE-A LATAM XT1922-4 32GB", + "brand": "motorola", + "soc": "snapdragon-430", + "release_date": "2018-06-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Argentina , Chile , Colombia , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/motorola/2018/moto-g6-play-td-lte-emea-xt1922-2-32gb.json b/data/smartphone/motorola/2018/moto-g6-play-td-lte-emea-xt1922-2-32gb.json new file mode 100644 index 00000000000..35fd138f6cc --- /dev/null +++ b/data/smartphone/motorola/2018/moto-g6-play-td-lte-emea-xt1922-2-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g6-play-td-lte-emea-xt1922-2-32gb", + "name": "Moto G6 Play TD-LTE EMEA XT1922-2 32GB", + "brand": "motorola", + "soc": "snapdragon-430", + "release_date": "2018-05-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "France , Germany , Italy , Spain , UK", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/motorola/2018/moto-g6-play-td-lte-na-xt1922-6-16gb.json b/data/smartphone/motorola/2018/moto-g6-play-td-lte-na-xt1922-6-16gb.json new file mode 100644 index 00000000000..8c7fc0a1754 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-g6-play-td-lte-na-xt1922-6-16gb.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g6-play-td-lte-na-xt1922-6-16gb", + "name": "Moto G6 Play TD-LTE NA XT1922-6 16GB", + "brand": "motorola", + "soc": "snapdragon-427", + "release_date": "2018-06-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2018/moto-g6-play-td-lte-na-xt1922-7-16gb.json b/data/smartphone/motorola/2018/moto-g6-play-td-lte-na-xt1922-7-16gb.json new file mode 100644 index 00000000000..f800dec15ed --- /dev/null +++ b/data/smartphone/motorola/2018/moto-g6-play-td-lte-na-xt1922-7-16gb.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g6-play-td-lte-na-xt1922-7-16gb", + "name": "Moto G6 Play TD-LTE NA XT1922-7 16GB", + "brand": "motorola", + "soc": "snapdragon-427", + "release_date": "2018-06-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2018/moto-g6-play-td-lte-na-xt1922-9-32gb-moto-g-play-gen-6-xt1922-6.json b/data/smartphone/motorola/2018/moto-g6-play-td-lte-na-xt1922-9-32gb-moto-g-play-gen-6-xt1922-6.json new file mode 100644 index 00000000000..eee210cec7b --- /dev/null +++ b/data/smartphone/motorola/2018/moto-g6-play-td-lte-na-xt1922-9-32gb-moto-g-play-gen-6-xt1922-6.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g6-play-td-lte-na-xt1922-9-32gb-moto-g-play-gen-6-xt1922-6", + "name": "Moto G6 Play TD-LTE NA XT1922-9 32GB / Moto G Play Gen 6 XT1922-6", + "brand": "motorola", + "soc": "snapdragon-427", + "release_date": "2018-04-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2018/moto-g6-plus-dual-sim-lte-a-latam-xt1926-7-64gb.json b/data/smartphone/motorola/2018/moto-g6-plus-dual-sim-lte-a-latam-xt1926-7-64gb.json new file mode 100644 index 00000000000..b3571938ea7 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-g6-plus-dual-sim-lte-a-latam-xt1926-7-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g6-plus-dual-sim-lte-a-latam-xt1926-7-64gb", + "name": "Moto G6 Plus Dual SIM LTE-A LATAM XT1926-7 64GB", + "brand": "motorola", + "soc": "snapdragon-630", + "release_date": "2018-04-01", + "ram_gb": 4.0, + "battery_mah": 3200, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.9, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Brazil , Chile , Colombia , Mexico , USA", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/motorola/2018/moto-g6-plus-dual-sim-td-lte-apac-xt1926-5-64gb.json b/data/smartphone/motorola/2018/moto-g6-plus-dual-sim-td-lte-apac-xt1926-5-64gb.json new file mode 100644 index 00000000000..db88664e733 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-g6-plus-dual-sim-td-lte-apac-xt1926-5-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g6-plus-dual-sim-td-lte-apac-xt1926-5-64gb", + "name": "Moto G6 Plus Dual SIM TD-LTE APAC XT1926-5 64GB", + "brand": "motorola", + "soc": "snapdragon-630", + "release_date": "2018-06-08", + "ram_gb": 4.0, + "battery_mah": 3200, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.9, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , HK , Japan , Malaysia , Philippines , Singapore , Taiwan", + "market_regions": "Asia , Australia" +} diff --git a/data/smartphone/motorola/2018/moto-g6-plus-dual-sim-td-lte-emea-xt1926-3-64gb.json b/data/smartphone/motorola/2018/moto-g6-plus-dual-sim-td-lte-emea-xt1926-3-64gb.json new file mode 100644 index 00000000000..d404a029cb6 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-g6-plus-dual-sim-td-lte-emea-xt1926-3-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g6-plus-dual-sim-td-lte-emea-xt1926-3-64gb", + "name": "Moto G6 Plus Dual SIM TD-LTE EMEA XT1926-3 64GB", + "brand": "motorola", + "soc": "snapdragon-630", + "release_date": "2018-05-09", + "ram_gb": 4.0, + "battery_mah": 3200, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.9, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Croatia , Czech , Estonia , France , Germany , Hungary , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Romania , Russia , UAE", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/motorola/2018/moto-g6-plus-dual-sim-td-lte-in-xt1926-9-64gb.json b/data/smartphone/motorola/2018/moto-g6-plus-dual-sim-td-lte-in-xt1926-9-64gb.json new file mode 100644 index 00000000000..c4eb1c52fba --- /dev/null +++ b/data/smartphone/motorola/2018/moto-g6-plus-dual-sim-td-lte-in-xt1926-9-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g6-plus-dual-sim-td-lte-in-xt1926-9-64gb", + "name": "Moto G6 Plus Dual SIM TD-LTE IN XT1926-9 64GB", + "brand": "motorola", + "soc": "snapdragon-630", + "release_date": "2018-09-09", + "ram_gb": 6.0, + "battery_mah": 3200, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.9, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/motorola/2018/moto-g6-plus-hdtv-dual-sim-lte-a-br-xt1926-8-64gb.json b/data/smartphone/motorola/2018/moto-g6-plus-hdtv-dual-sim-lte-a-br-xt1926-8-64gb.json new file mode 100644 index 00000000000..f4190ee9665 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-g6-plus-hdtv-dual-sim-lte-a-br-xt1926-8-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g6-plus-hdtv-dual-sim-lte-a-br-xt1926-8-64gb", + "name": "Moto G6 Plus HDTV Dual SIM LTE-A BR XT1926-8 64GB", + "brand": "motorola", + "soc": "snapdragon-630", + "release_date": "2018-05-01", + "ram_gb": 4.0, + "battery_mah": 3200, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.9, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil", + "market_regions": "South America" +} diff --git a/data/smartphone/motorola/2018/moto-g6-plus-lte-a-latam-xt1926-6-64gb.json b/data/smartphone/motorola/2018/moto-g6-plus-lte-a-latam-xt1926-6-64gb.json new file mode 100644 index 00000000000..d00c90aaf4f --- /dev/null +++ b/data/smartphone/motorola/2018/moto-g6-plus-lte-a-latam-xt1926-6-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g6-plus-lte-a-latam-xt1926-6-64gb", + "name": "Moto G6 Plus LTE-A LATAM XT1926-6 64GB", + "brand": "motorola", + "soc": "snapdragon-630", + "release_date": "2018-04-01", + "ram_gb": 4.0, + "battery_mah": 3200, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.9, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Chile , Mexico , Peru , Puerto Rico", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/motorola/2018/moto-g6-plus-td-lte-emea-xt1926-2-64gb-moto-g-plus-gen-6.json b/data/smartphone/motorola/2018/moto-g6-plus-td-lte-emea-xt1926-2-64gb-moto-g-plus-gen-6.json new file mode 100644 index 00000000000..c797554e8e3 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-g6-plus-td-lte-emea-xt1926-2-64gb-moto-g-plus-gen-6.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g6-plus-td-lte-emea-xt1926-2-64gb-moto-g-plus-gen-6", + "name": "Moto G6 Plus TD-LTE EMEA XT1926-2 64GB / Moto G Plus Gen 6", + "brand": "motorola", + "soc": "snapdragon-630", + "release_date": "2018-05-01", + "ram_gb": 4.0, + "battery_mah": 3200, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.9, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Finland , France , Germany , Norway , Spain , UAE , UK", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/motorola/2018/moto-g6-plus-td-lte-na-xt1926-1-64gb.json b/data/smartphone/motorola/2018/moto-g6-plus-td-lte-na-xt1926-1-64gb.json new file mode 100644 index 00000000000..fb7128f25d6 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-g6-plus-td-lte-na-xt1926-1-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g6-plus-td-lte-na-xt1926-1-64gb", + "name": "Moto G6 Plus TD-LTE NA XT1926-1 64GB", + "brand": "motorola", + "soc": "snapdragon-630", + "release_date": "2018-04-19", + "ram_gb": 4.0, + "battery_mah": 3200, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.9, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2018/moto-g6-td-lte-emea-32gb-xt1925-4.json b/data/smartphone/motorola/2018/moto-g6-td-lte-emea-32gb-xt1925-4.json new file mode 100644 index 00000000000..1312c756b89 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-g6-td-lte-emea-32gb-xt1925-4.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g6-td-lte-emea-32gb-xt1925-4", + "name": "Moto G6 TD-LTE EMEA 32GB XT1925-4", + "brand": "motorola", + "soc": "snapdragon-450", + "release_date": "2018-04-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Czech , Egypt , France , Germany , Hungary , Ireland , Italy , Kenya , Netherlands , Russia , Saudi Arabia , Slovakia , South Africa , Spain , Sweden , UAE , UK , Ukraine", + "market_regions": "Africa , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/motorola/2018/moto-g6-td-lte-na-32gb-xt1925-12-moto-g-gen-6.json b/data/smartphone/motorola/2018/moto-g6-td-lte-na-32gb-xt1925-12-moto-g-gen-6.json new file mode 100644 index 00000000000..b3b17b5e4e3 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-g6-td-lte-na-32gb-xt1925-12-moto-g-gen-6.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g6-td-lte-na-32gb-xt1925-12-moto-g-gen-6", + "name": "Moto G6 TD-LTE NA 32GB XT1925-12 / Moto G Gen 6", + "brand": "motorola", + "soc": "snapdragon-450", + "release_date": "2018-05-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2018/moto-g6-td-lte-na-32gb-xt1925-6-moto-g-gen-6.json b/data/smartphone/motorola/2018/moto-g6-td-lte-na-32gb-xt1925-6-moto-g-gen-6.json new file mode 100644 index 00000000000..706e5ae4e6d --- /dev/null +++ b/data/smartphone/motorola/2018/moto-g6-td-lte-na-32gb-xt1925-6-moto-g-gen-6.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g6-td-lte-na-32gb-xt1925-6-moto-g-gen-6", + "name": "Moto G6 TD-LTE NA 32GB XT1925-6 / Moto G Gen 6", + "brand": "motorola", + "soc": "snapdragon-450", + "release_date": "2018-05-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2018/moto-g6-td-lte-na-32gb-xt1925dl.json b/data/smartphone/motorola/2018/moto-g6-td-lte-na-32gb-xt1925dl.json new file mode 100644 index 00000000000..b799914ae14 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-g6-td-lte-na-32gb-xt1925dl.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g6-td-lte-na-32gb-xt1925dl", + "name": "Moto G6 TD-LTE NA 32GB XT1925DL", + "brand": "motorola", + "soc": "snapdragon-450", + "release_date": "2018-05-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2018/moto-z3-dual-sim-td-lte-cn-128gb-xt1929-15.json b/data/smartphone/motorola/2018/moto-z3-dual-sim-td-lte-cn-128gb-xt1929-15.json new file mode 100644 index 00000000000..3433f114f1a --- /dev/null +++ b/data/smartphone/motorola/2018/moto-z3-dual-sim-td-lte-cn-128gb-xt1929-15.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-z3-dual-sim-td-lte-cn-128gb-xt1929-15", + "name": "Moto Z3 Dual SIM TD-LTE CN 128GB XT1929-15", + "brand": "motorola", + "soc": "snapdragon-835", + "release_date": "2018-09-08", + "ram_gb": 6.0, + "battery_mah": 3000, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.01, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/motorola/2018/moto-z3-play-dual-sim-lte-a-am-64gb-xt1929-6-ds.json b/data/smartphone/motorola/2018/moto-z3-play-dual-sim-lte-a-am-64gb-xt1929-6-ds.json new file mode 100644 index 00000000000..03cf0ebdc4d --- /dev/null +++ b/data/smartphone/motorola/2018/moto-z3-play-dual-sim-lte-a-am-64gb-xt1929-6-ds.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-z3-play-dual-sim-lte-a-am-64gb-xt1929-6-ds", + "name": "Moto Z3 Play Dual SIM LTE-A AM 64GB XT1929-6 DS", + "brand": "motorola", + "soc": "snapdragon-636", + "release_date": "2018-06-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.01, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Colombia , Mexico , Paraguay , Peru", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/motorola/2018/moto-z3-play-dual-sim-lte-a-latam-128gb-xt1929-5.json b/data/smartphone/motorola/2018/moto-z3-play-dual-sim-lte-a-latam-128gb-xt1929-5.json new file mode 100644 index 00000000000..26d21030281 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-z3-play-dual-sim-lte-a-latam-128gb-xt1929-5.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-z3-play-dual-sim-lte-a-latam-128gb-xt1929-5", + "name": "Moto Z3 Play Dual SIM LTE-A LATAM 128GB XT1929-5", + "brand": "motorola", + "soc": "snapdragon-636", + "release_date": "2018-06-22", + "ram_gb": 6.0, + "battery_mah": 3000, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.01, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil", + "market_regions": "South America" +} diff --git a/data/smartphone/motorola/2018/moto-z3-play-dual-sim-lte-a-latam-64gb-xt1929-5.json b/data/smartphone/motorola/2018/moto-z3-play-dual-sim-lte-a-latam-64gb-xt1929-5.json new file mode 100644 index 00000000000..98c6cf0c315 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-z3-play-dual-sim-lte-a-latam-64gb-xt1929-5.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-z3-play-dual-sim-lte-a-latam-64gb-xt1929-5", + "name": "Moto Z3 Play Dual SIM LTE-A LATAM 64GB XT1929-5", + "brand": "motorola", + "soc": "snapdragon-636", + "release_date": "2018-06-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.01, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil", + "market_regions": "South America" +} diff --git a/data/smartphone/motorola/2018/moto-z3-play-dual-sim-td-lte-emea-apac-64gb-xt1929-8-ds.json b/data/smartphone/motorola/2018/moto-z3-play-dual-sim-td-lte-emea-apac-64gb-xt1929-8-ds.json new file mode 100644 index 00000000000..40b8c0de21b --- /dev/null +++ b/data/smartphone/motorola/2018/moto-z3-play-dual-sim-td-lte-emea-apac-64gb-xt1929-8-ds.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-z3-play-dual-sim-td-lte-emea-apac-64gb-xt1929-8-ds", + "name": "Moto Z3 Play Dual SIM TD-LTE EMEA APAC 64GB XT1929-8 DS", + "brand": "motorola", + "soc": "snapdragon-636", + "release_date": "2018-07-29", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.01, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "France , Germany , Japan , Romania , Russia , UK", + "market_regions": "Asia , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/motorola/2018/moto-z3-play-lte-a-latam-128gb-xt1929-6m.json b/data/smartphone/motorola/2018/moto-z3-play-lte-a-latam-128gb-xt1929-6m.json new file mode 100644 index 00000000000..886fec5bb44 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-z3-play-lte-a-latam-128gb-xt1929-6m.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-z3-play-lte-a-latam-128gb-xt1929-6m", + "name": "Moto Z3 Play LTE-A LATAM 128GB XT1929-6M", + "brand": "motorola", + "soc": "snapdragon-636", + "release_date": "2018-06-01", + "ram_gb": 6.0, + "battery_mah": 3000, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.01, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Chile , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/motorola/2018/moto-z3-play-lte-a-latam-64gb-xt1929-6.json b/data/smartphone/motorola/2018/moto-z3-play-lte-a-latam-64gb-xt1929-6.json new file mode 100644 index 00000000000..05e2033baf6 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-z3-play-lte-a-latam-64gb-xt1929-6.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-z3-play-lte-a-latam-64gb-xt1929-6", + "name": "Moto Z3 Play LTE-A LATAM 64GB XT1929-6", + "brand": "motorola", + "soc": "snapdragon-636", + "release_date": "2018-06-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.01, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Chile , Mexico , Peru", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/motorola/2018/moto-z3-play-td-lte-emea-apac-64gb-xt1929-8-moto-z-play-3rd-edition.json b/data/smartphone/motorola/2018/moto-z3-play-td-lte-emea-apac-64gb-xt1929-8-moto-z-play-3rd-edition.json new file mode 100644 index 00000000000..489b655c369 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-z3-play-td-lte-emea-apac-64gb-xt1929-8-moto-z-play-3rd-edition.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-z3-play-td-lte-emea-apac-64gb-xt1929-8-moto-z-play-3rd-edition", + "name": "Moto Z3 Play TD-LTE EMEA APAC 64GB XT1929-8 / Moto Z Play 3rd Edition", + "brand": "motorola", + "soc": "snapdragon-636", + "release_date": "2018-07-29", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.01, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , France , Germany , Japan , Romania , Russia , Spain , Sweden , UK", + "market_regions": "Asia , Australia , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/motorola/2018/moto-z3-play-td-lte-na-32gb-xt1929-4-xt1929-1.json b/data/smartphone/motorola/2018/moto-z3-play-td-lte-na-32gb-xt1929-4-xt1929-1.json new file mode 100644 index 00000000000..40e450baf96 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-z3-play-td-lte-na-32gb-xt1929-4-xt1929-1.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-z3-play-td-lte-na-32gb-xt1929-4-xt1929-1", + "name": "Moto Z3 Play TD-LTE NA 32GB XT1929-4 / XT1929-1", + "brand": "motorola", + "soc": "snapdragon-636", + "release_date": "2018-07-02", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.01, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2018/moto-z3-play-td-lte-na-64gb-xt1929-4.json b/data/smartphone/motorola/2018/moto-z3-play-td-lte-na-64gb-xt1929-4.json new file mode 100644 index 00000000000..614714359dd --- /dev/null +++ b/data/smartphone/motorola/2018/moto-z3-play-td-lte-na-64gb-xt1929-4.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-z3-play-td-lte-na-64gb-xt1929-4", + "name": "Moto Z3 Play TD-LTE NA 64GB XT1929-4", + "brand": "motorola", + "soc": "snapdragon-636", + "release_date": "2018-06-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.01, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2018/moto-z3-play-td-lte-us-32gb-xt1929-3.json b/data/smartphone/motorola/2018/moto-z3-play-td-lte-us-32gb-xt1929-3.json new file mode 100644 index 00000000000..81b0d7d2fb9 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-z3-play-td-lte-us-32gb-xt1929-3.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-z3-play-td-lte-us-32gb-xt1929-3", + "name": "Moto Z3 Play TD-LTE US 32GB XT1929-3", + "brand": "motorola", + "soc": "snapdragon-636", + "release_date": "2018-07-02", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.01, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2018/moto-z3-td-lte-us-64gb-xt1929-17-moto-z-3rd-gen.json b/data/smartphone/motorola/2018/moto-z3-td-lte-us-64gb-xt1929-17-moto-z-3rd-gen.json new file mode 100644 index 00000000000..dd3f8b19096 --- /dev/null +++ b/data/smartphone/motorola/2018/moto-z3-td-lte-us-64gb-xt1929-17-moto-z-3rd-gen.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-z3-td-lte-us-64gb-xt1929-17-moto-z-3rd-gen", + "name": "Moto Z3 TD-LTE US 64GB XT1929-17 / Moto Z 3rd gen", + "brand": "motorola", + "soc": "snapdragon-835", + "release_date": "2018-09-08", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.01, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2018/one-dual-sim-lte-latam-xt1941-3.json b/data/smartphone/motorola/2018/one-dual-sim-lte-latam-xt1941-3.json new file mode 100644 index 00000000000..3d6c47fb4ed --- /dev/null +++ b/data/smartphone/motorola/2018/one-dual-sim-lte-latam-xt1941-3.json @@ -0,0 +1,41 @@ +{ + "slug": "one-dual-sim-lte-latam-xt1941-3", + "name": "One Dual SIM LTE LATAM XT1941-3", + "brand": "motorola", + "soc": "snapdragon-625", + "release_date": "2018-09-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.88, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 286 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Chile , USA", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/motorola/2018/one-global-dual-sim-td-lte-xt1941-4.json b/data/smartphone/motorola/2018/one-global-dual-sim-td-lte-xt1941-4.json new file mode 100644 index 00000000000..5cb23bc3cd8 --- /dev/null +++ b/data/smartphone/motorola/2018/one-global-dual-sim-td-lte-xt1941-4.json @@ -0,0 +1,41 @@ +{ + "slug": "one-global-dual-sim-td-lte-xt1941-4", + "name": "One Global Dual SIM TD-LTE XT1941-4", + "brand": "motorola", + "soc": "snapdragon-625", + "release_date": "2018-09-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.88, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 286 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "France , Germany , India , Netherlands , Poland , Romania , Russia , Saudi Arabia , Slovakia , Spain , Taiwan , Thailand , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/motorola/2018/one-global-td-lte-xt1941-1.json b/data/smartphone/motorola/2018/one-global-td-lte-xt1941-1.json new file mode 100644 index 00000000000..52f934fe448 --- /dev/null +++ b/data/smartphone/motorola/2018/one-global-td-lte-xt1941-1.json @@ -0,0 +1,41 @@ +{ + "slug": "one-global-td-lte-xt1941-1", + "name": "One Global TD-LTE XT1941-1", + "brand": "motorola", + "soc": "snapdragon-625", + "release_date": "2018-10-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.88, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 286 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Belgium , Netherlands , Portugal , Spain , UK", + "market_regions": "Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/motorola/2018/one-lte-latam-xt1941-5.json b/data/smartphone/motorola/2018/one-lte-latam-xt1941-5.json new file mode 100644 index 00000000000..23ba66e1609 --- /dev/null +++ b/data/smartphone/motorola/2018/one-lte-latam-xt1941-5.json @@ -0,0 +1,41 @@ +{ + "slug": "one-lte-latam-xt1941-5", + "name": "One LTE LATAM XT1941-5", + "brand": "motorola", + "soc": "snapdragon-625", + "release_date": "2018-09-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.88, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 286 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Chile , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/motorola/2018/one-power-dual-sim-td-lte-in-64gb-xt1942-2.json b/data/smartphone/motorola/2018/one-power-dual-sim-td-lte-in-64gb-xt1942-2.json new file mode 100644 index 00000000000..1ee4e15497f --- /dev/null +++ b/data/smartphone/motorola/2018/one-power-dual-sim-td-lte-in-64gb-xt1942-2.json @@ -0,0 +1,41 @@ +{ + "slug": "one-power-dual-sim-td-lte-in-64gb-xt1942-2", + "name": "One Power Dual SIM TD-LTE IN 64GB XT1942-2", + "brand": "motorola", + "soc": "snapdragon-636", + "release_date": "2018-10-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/motorola/2018/p30-note-premium-edition-dual-sim-td-lte-cn-xt1942-1-64gb.json b/data/smartphone/motorola/2018/p30-note-premium-edition-dual-sim-td-lte-cn-xt1942-1-64gb.json new file mode 100644 index 00000000000..af13a256ffa --- /dev/null +++ b/data/smartphone/motorola/2018/p30-note-premium-edition-dual-sim-td-lte-cn-xt1942-1-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "p30-note-premium-edition-dual-sim-td-lte-cn-xt1942-1-64gb", + "name": "P30 Note Premium Edition Dual SIM TD-LTE CN XT1942-1 64GB", + "brand": "motorola", + "soc": "snapdragon-636", + "release_date": "2018-09-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/motorola/2018/p30-note-standard-edition-dual-sim-td-lte-cn-xt1942-1-64gb.json b/data/smartphone/motorola/2018/p30-note-standard-edition-dual-sim-td-lte-cn-xt1942-1-64gb.json new file mode 100644 index 00000000000..78711c37c87 --- /dev/null +++ b/data/smartphone/motorola/2018/p30-note-standard-edition-dual-sim-td-lte-cn-xt1942-1-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "p30-note-standard-edition-dual-sim-td-lte-cn-xt1942-1-64gb", + "name": "P30 Note Standard Edition Dual SIM TD-LTE CN XT1942-1 64GB", + "brand": "motorola", + "soc": "snapdragon-636", + "release_date": "2018-09-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/motorola/2018/p30-play-dual-sim-td-lte-cn-64gb-xt1941-2.json b/data/smartphone/motorola/2018/p30-play-dual-sim-td-lte-cn-64gb-xt1941-2.json new file mode 100644 index 00000000000..3764871b419 --- /dev/null +++ b/data/smartphone/motorola/2018/p30-play-dual-sim-td-lte-cn-64gb-xt1941-2.json @@ -0,0 +1,41 @@ +{ + "slug": "p30-play-dual-sim-td-lte-cn-64gb-xt1941-2", + "name": "P30 Play Dual SIM TD-LTE CN 64GB XT1941-2", + "brand": "motorola", + "soc": "snapdragon-625", + "release_date": "2018-09-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.88, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 286 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/motorola/2018/p30-td-lte-cn-xt1943-1-128gb.json b/data/smartphone/motorola/2018/p30-td-lte-cn-xt1943-1-128gb.json new file mode 100644 index 00000000000..ec6a23233fc --- /dev/null +++ b/data/smartphone/motorola/2018/p30-td-lte-cn-xt1943-1-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "p30-td-lte-cn-xt1943-1-128gb", + "name": "P30 TD-LTE CN XT1943-1 128GB", + "brand": "motorola", + "soc": "snapdragon-636", + "release_date": "2018-08-01", + "ram_gb": 6.0, + "battery_mah": 3000, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia , Middle East" +} diff --git a/data/smartphone/motorola/2018/p30-td-lte-cn-xt1943-1-64gb.json b/data/smartphone/motorola/2018/p30-td-lte-cn-xt1943-1-64gb.json new file mode 100644 index 00000000000..7f0b0e95650 --- /dev/null +++ b/data/smartphone/motorola/2018/p30-td-lte-cn-xt1943-1-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "p30-td-lte-cn-xt1943-1-64gb", + "name": "P30 TD-LTE CN XT1943-1 64GB", + "brand": "motorola", + "soc": "snapdragon-636", + "release_date": "2018-08-01", + "ram_gb": 6.0, + "battery_mah": 3000, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia , Middle East" +} diff --git a/data/smartphone/motorola/2018/qingyou-1s-dual-sim-td-lte-cn-64gb-xt1925-10-moto-g6.json b/data/smartphone/motorola/2018/qingyou-1s-dual-sim-td-lte-cn-64gb-xt1925-10-moto-g6.json new file mode 100644 index 00000000000..e570c1060ff --- /dev/null +++ b/data/smartphone/motorola/2018/qingyou-1s-dual-sim-td-lte-cn-64gb-xt1925-10-moto-g6.json @@ -0,0 +1,41 @@ +{ + "slug": "qingyou-1s-dual-sim-td-lte-cn-64gb-xt1925-10-moto-g6", + "name": "Qingyou 1s Dual SIM TD-LTE CN 64GB XT1925-10 / Moto G6", + "brand": "motorola", + "soc": "snapdragon-450", + "release_date": "2018-07-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/motorola/2019/moto-e6-lte-a-na-xt2005-1-xt2005-1pp.json b/data/smartphone/motorola/2019/moto-e6-lte-a-na-xt2005-1-xt2005-1pp.json new file mode 100644 index 00000000000..4bf69f9f16c --- /dev/null +++ b/data/smartphone/motorola/2019/moto-e6-lte-a-na-xt2005-1-xt2005-1pp.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-e6-lte-a-na-xt2005-1-xt2005-1pp", + "name": "Moto E6 LTE-A NA XT2005-1 / XT2005-1PP", + "brand": "motorola", + "soc": "snapdragon-435", + "release_date": "2019-07-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2019/moto-e6-plus-dual-sim-lte-a-latam-au-32gb-xt2025-1.json b/data/smartphone/motorola/2019/moto-e6-plus-dual-sim-lte-a-latam-au-32gb-xt2025-1.json new file mode 100644 index 00000000000..5690b41ae7e --- /dev/null +++ b/data/smartphone/motorola/2019/moto-e6-plus-dual-sim-lte-a-latam-au-32gb-xt2025-1.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-e6-plus-dual-sim-lte-a-latam-au-32gb-xt2025-1", + "name": "Moto E6 Plus Dual SIM LTE-A LATAM AU 32GB XT2025-1", + "brand": "motorola", + "soc": "helio-p22", + "release_date": "2019-09-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 149.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Argentina , Australia , Brazil , Chile , Colombia", + "market_regions": "Australia , South America" +} diff --git a/data/smartphone/motorola/2019/moto-e6-plus-dual-sim-lte-a-latam-au-64gb-xt2025-1.json b/data/smartphone/motorola/2019/moto-e6-plus-dual-sim-lte-a-latam-au-64gb-xt2025-1.json new file mode 100644 index 00000000000..cc50b85f416 --- /dev/null +++ b/data/smartphone/motorola/2019/moto-e6-plus-dual-sim-lte-a-latam-au-64gb-xt2025-1.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-e6-plus-dual-sim-lte-a-latam-au-64gb-xt2025-1", + "name": "Moto E6 Plus Dual SIM LTE-A LATAM AU 64GB XT2025-1", + "brand": "motorola", + "soc": "helio-p22", + "release_date": "2019-09-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 149.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Argentina , Brazil , Chile", + "market_regions": "Australia , South America" +} diff --git a/data/smartphone/motorola/2019/moto-e6-plus-global-dual-sim-td-lte-32gb-xt2025-2.json b/data/smartphone/motorola/2019/moto-e6-plus-global-dual-sim-td-lte-32gb-xt2025-2.json new file mode 100644 index 00000000000..0e2ca8f73c5 --- /dev/null +++ b/data/smartphone/motorola/2019/moto-e6-plus-global-dual-sim-td-lte-32gb-xt2025-2.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-e6-plus-global-dual-sim-td-lte-32gb-xt2025-2", + "name": "Moto E6 Plus Global Dual SIM TD-LTE 32GB XT2025-2", + "brand": "motorola", + "soc": "helio-p22", + "release_date": "2019-09-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 149.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Belgium , Bulgaria , Denmark , France , Germany , Italy , Malaysia , Netherlands , Poland , Romania , Russia , Serbia , Slovakia , Spain , Sweden , Thailand , UK", + "market_regions": "Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/motorola/2019/moto-e6-plus-global-dual-sim-td-lte-64gb-xt2025-2.json b/data/smartphone/motorola/2019/moto-e6-plus-global-dual-sim-td-lte-64gb-xt2025-2.json new file mode 100644 index 00000000000..f362531302f --- /dev/null +++ b/data/smartphone/motorola/2019/moto-e6-plus-global-dual-sim-td-lte-64gb-xt2025-2.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-e6-plus-global-dual-sim-td-lte-64gb-xt2025-2", + "name": "Moto E6 Plus Global Dual SIM TD-LTE 64GB XT2025-2", + "brand": "motorola", + "soc": "helio-p22", + "release_date": "2019-09-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 149.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Belgium , Bulgaria , Denmark , France , Germany , Italy , Malaysia , Netherlands , Poland , Romania , Russia , Serbia , Slovakia , Spain , Sweden , Thailand , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/motorola/2019/moto-e6-plus-lte-a-latam-au-32gb-xt2025-1.json b/data/smartphone/motorola/2019/moto-e6-plus-lte-a-latam-au-32gb-xt2025-1.json new file mode 100644 index 00000000000..0863e2e740c --- /dev/null +++ b/data/smartphone/motorola/2019/moto-e6-plus-lte-a-latam-au-32gb-xt2025-1.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-e6-plus-lte-a-latam-au-32gb-xt2025-1", + "name": "Moto E6 Plus LTE-A LATAM AU 32GB XT2025-1", + "brand": "motorola", + "soc": "helio-p22", + "release_date": "2019-09-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 149.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , Mexico", + "market_regions": "Australia , North America" +} diff --git a/data/smartphone/motorola/2019/moto-e6-plus-lte-a-latam-au-64gb-xt2025-1.json b/data/smartphone/motorola/2019/moto-e6-plus-lte-a-latam-au-64gb-xt2025-1.json new file mode 100644 index 00000000000..2ff5f202b60 --- /dev/null +++ b/data/smartphone/motorola/2019/moto-e6-plus-lte-a-latam-au-64gb-xt2025-1.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-e6-plus-lte-a-latam-au-64gb-xt2025-1", + "name": "Moto E6 Plus LTE-A LATAM AU 64GB XT2025-1", + "brand": "motorola", + "soc": "helio-p22", + "release_date": "2019-09-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 149.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , Mexico", + "market_regions": "Australia , North America" +} diff --git a/data/smartphone/motorola/2019/moto-e6-plus-td-lte-eu-64gb-xt2025-2.json b/data/smartphone/motorola/2019/moto-e6-plus-td-lte-eu-64gb-xt2025-2.json new file mode 100644 index 00000000000..07c60f6c55e --- /dev/null +++ b/data/smartphone/motorola/2019/moto-e6-plus-td-lte-eu-64gb-xt2025-2.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-e6-plus-td-lte-eu-64gb-xt2025-2", + "name": "Moto E6 Plus TD-LTE EU 64GB XT2025-2", + "brand": "motorola", + "soc": "helio-p22", + "release_date": "2019-09-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 149.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "UK", + "market_regions": "Europe" +} diff --git a/data/smartphone/motorola/2019/moto-e6-td-lte-na-xt2005-3.json b/data/smartphone/motorola/2019/moto-e6-td-lte-na-xt2005-3.json new file mode 100644 index 00000000000..5e03eed3f57 --- /dev/null +++ b/data/smartphone/motorola/2019/moto-e6-td-lte-na-xt2005-3.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-e6-td-lte-na-xt2005-3", + "name": "Moto E6 TD-LTE NA XT2005-3", + "brand": "motorola", + "soc": "snapdragon-435", + "release_date": "2019-07-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2019/moto-e6-td-lte-na-xt2005-4.json b/data/smartphone/motorola/2019/moto-e6-td-lte-na-xt2005-4.json new file mode 100644 index 00000000000..f934eb748a1 --- /dev/null +++ b/data/smartphone/motorola/2019/moto-e6-td-lte-na-xt2005-4.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-e6-td-lte-na-xt2005-4", + "name": "Moto E6 TD-LTE NA XT2005-4", + "brand": "motorola", + "soc": "snapdragon-435", + "release_date": "2019-08-28", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2019/moto-e6-td-lte-na-xt2005-5.json b/data/smartphone/motorola/2019/moto-e6-td-lte-na-xt2005-5.json new file mode 100644 index 00000000000..0a9ccf56a86 --- /dev/null +++ b/data/smartphone/motorola/2019/moto-e6-td-lte-na-xt2005-5.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-e6-td-lte-na-xt2005-5", + "name": "Moto E6 TD-LTE NA XT2005-5", + "brand": "motorola", + "soc": "snapdragon-435", + "release_date": "2019-09-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2019/moto-e6-td-lte-na-xt2005dl.json b/data/smartphone/motorola/2019/moto-e6-td-lte-na-xt2005dl.json new file mode 100644 index 00000000000..8fbd3e0c3ec --- /dev/null +++ b/data/smartphone/motorola/2019/moto-e6-td-lte-na-xt2005dl.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-e6-td-lte-na-xt2005dl", + "name": "Moto E6 TD-LTE NA XT2005DL", + "brand": "motorola", + "soc": "snapdragon-435", + "release_date": "2019-09-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2019/moto-e6s-2020-dual-sim-lte-latam-32gb-xt2053-2-moto-e6-s.json b/data/smartphone/motorola/2019/moto-e6s-2020-dual-sim-lte-latam-32gb-xt2053-2-moto-e6-s.json new file mode 100644 index 00000000000..b2e1738ed90 --- /dev/null +++ b/data/smartphone/motorola/2019/moto-e6s-2020-dual-sim-lte-latam-32gb-xt2053-2-moto-e6-s.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-e6s-2020-dual-sim-lte-latam-32gb-xt2053-2-moto-e6-s", + "name": "Moto E6s 2020 Dual SIM LTE LATAM 32GB XT2053-2 / Moto E6 S", + "brand": "motorola", + "soc": "helio-p22", + "release_date": "2019-03-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Brazil , Colombia", + "market_regions": "South America" +} diff --git a/data/smartphone/motorola/2019/moto-e6s-dual-sim-td-lte-in-64gb-xt2025-2-moto-e6-plus.json b/data/smartphone/motorola/2019/moto-e6s-dual-sim-td-lte-in-64gb-xt2025-2-moto-e6-plus.json new file mode 100644 index 00000000000..fb0d97d0c5a --- /dev/null +++ b/data/smartphone/motorola/2019/moto-e6s-dual-sim-td-lte-in-64gb-xt2025-2-moto-e6-plus.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-e6s-dual-sim-td-lte-in-64gb-xt2025-2-moto-e6-plus", + "name": "Moto E6s Dual SIM TD-LTE IN 64GB XT2025-2 / Moto E6 Plus", + "brand": "motorola", + "soc": "helio-p22", + "release_date": "2019-09-23", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 149.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/motorola/2019/moto-g7-dual-sim-lte-a-latam-64gb-xt1962-4.json b/data/smartphone/motorola/2019/moto-g7-dual-sim-lte-a-latam-64gb-xt1962-4.json new file mode 100644 index 00000000000..f0c679d1a4b --- /dev/null +++ b/data/smartphone/motorola/2019/moto-g7-dual-sim-lte-a-latam-64gb-xt1962-4.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g7-dual-sim-lte-a-latam-64gb-xt1962-4", + "name": "Moto G7 Dual SIM LTE-A LATAM 64GB XT1962-4", + "brand": "motorola", + "soc": "snapdragon-632", + "release_date": "2019-02-08", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2270", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Brazil", + "market_regions": "South America" +} diff --git a/data/smartphone/motorola/2019/moto-g7-dual-sim-td-lte-in-64gb-xt1962-6.json b/data/smartphone/motorola/2019/moto-g7-dual-sim-td-lte-in-64gb-xt1962-6.json new file mode 100644 index 00000000000..482727b6905 --- /dev/null +++ b/data/smartphone/motorola/2019/moto-g7-dual-sim-td-lte-in-64gb-xt1962-6.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g7-dual-sim-td-lte-in-64gb-xt1962-6", + "name": "Moto G7 Dual SIM TD-LTE IN 64GB XT1962-6", + "brand": "motorola", + "soc": "snapdragon-632", + "release_date": "2019-03-26", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2270", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "India , Thailand , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/motorola/2019/moto-g7-global-dual-sim-td-lte-64gb-xt1962-5.json b/data/smartphone/motorola/2019/moto-g7-global-dual-sim-td-lte-64gb-xt1962-5.json new file mode 100644 index 00000000000..b700bd88c64 --- /dev/null +++ b/data/smartphone/motorola/2019/moto-g7-global-dual-sim-td-lte-64gb-xt1962-5.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g7-global-dual-sim-td-lte-64gb-xt1962-5", + "name": "Moto G7 Global Dual SIM TD-LTE 64GB XT1962-5", + "brand": "motorola", + "soc": "snapdragon-632", + "release_date": "2019-02-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2270", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Ireland , Italy , Japan , Latvia , Lithuania , Netherlands , NZ , Poland , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , Spain , Sweden , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/motorola/2019/moto-g7-global-td-lte-64gb-xt1962-5.json b/data/smartphone/motorola/2019/moto-g7-global-td-lte-64gb-xt1962-5.json new file mode 100644 index 00000000000..8c8d706edb0 --- /dev/null +++ b/data/smartphone/motorola/2019/moto-g7-global-td-lte-64gb-xt1962-5.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g7-global-td-lte-64gb-xt1962-5", + "name": "Moto G7 Global TD-LTE 64GB XT1962-5", + "brand": "motorola", + "soc": "snapdragon-632", + "release_date": "2019-02-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2270", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Cyprus , Czech , Denmark , Finland , France , Greece , Germany , Hungary , Ireland , Italy , Netherlands , NZ , Poland , Romania , Slovakia , Slovenia , Spain , Sweden , UK", + "market_regions": "Australia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/motorola/2019/moto-g7-lte-a-latam-64gb-xt1962-4.json b/data/smartphone/motorola/2019/moto-g7-lte-a-latam-64gb-xt1962-4.json new file mode 100644 index 00000000000..8d3c12532b8 --- /dev/null +++ b/data/smartphone/motorola/2019/moto-g7-lte-a-latam-64gb-xt1962-4.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g7-lte-a-latam-64gb-xt1962-4", + "name": "Moto G7 LTE-A LATAM 64GB XT1962-4", + "brand": "motorola", + "soc": "snapdragon-632", + "release_date": "2019-02-08", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2270", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Chile , Guatemala , Mexico", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/motorola/2019/moto-g7-optimo-maxx-td-lte-us-32gb-xt1955dl.json b/data/smartphone/motorola/2019/moto-g7-optimo-maxx-td-lte-us-32gb-xt1955dl.json new file mode 100644 index 00000000000..171287bf68d --- /dev/null +++ b/data/smartphone/motorola/2019/moto-g7-optimo-maxx-td-lte-us-32gb-xt1955dl.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g7-optimo-maxx-td-lte-us-32gb-xt1955dl", + "name": "Moto G7 Optimo Maxx TD-LTE US 32GB XT1955DL", + "brand": "motorola", + "soc": "snapdragon-632", + "release_date": "2019-06-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1570", + "type": "Color IPS TFT LCD display", + "ppi": 279 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2019/moto-g7-optimo-td-lte-us-32gb-xt1952dl.json b/data/smartphone/motorola/2019/moto-g7-optimo-td-lte-us-32gb-xt1952dl.json new file mode 100644 index 00000000000..4a1747b4cb8 --- /dev/null +++ b/data/smartphone/motorola/2019/moto-g7-optimo-td-lte-us-32gb-xt1952dl.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-g7-optimo-td-lte-us-32gb-xt1952dl", + "name": "Moto G7 Optimo TD-LTE US 32GB XT1952DL", + "brand": "motorola", + "soc": "snapdragon-632", + "release_date": "2019-06-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1512", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2019/moto-g7-play-dual-sim-lte-a-latam-32gb-xt1952-2.json b/data/smartphone/motorola/2019/moto-g7-play-dual-sim-lte-a-latam-32gb-xt1952-2.json new file mode 100644 index 00000000000..c07776b012e --- /dev/null +++ b/data/smartphone/motorola/2019/moto-g7-play-dual-sim-lte-a-latam-32gb-xt1952-2.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g7-play-dual-sim-lte-a-latam-32gb-xt1952-2", + "name": "Moto G7 Play Dual SIM LTE-A LATAM 32GB XT1952-2", + "brand": "motorola", + "soc": "snapdragon-632", + "release_date": "2019-02-08", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 149.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1512", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Colombia", + "market_regions": "South America" +} diff --git a/data/smartphone/motorola/2019/moto-g7-play-global-dual-sim-td-lte-32gb-xt1952-1.json b/data/smartphone/motorola/2019/moto-g7-play-global-dual-sim-td-lte-32gb-xt1952-1.json new file mode 100644 index 00000000000..306b0d7297e --- /dev/null +++ b/data/smartphone/motorola/2019/moto-g7-play-global-dual-sim-td-lte-32gb-xt1952-1.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g7-play-global-dual-sim-td-lte-32gb-xt1952-1", + "name": "Moto G7 Play Global Dual SIM TD-LTE 32GB XT1952-1", + "brand": "motorola", + "soc": "snapdragon-632", + "release_date": "2019-02-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 149.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1512", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , India , Ireland , Italy , Japan , Latvia , Lithuania , Netherlands , NZ , Poland , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Sweden , Taiwan , Thailand , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/motorola/2019/moto-g7-play-global-td-lte-32gb-xt1952-1.json b/data/smartphone/motorola/2019/moto-g7-play-global-td-lte-32gb-xt1952-1.json new file mode 100644 index 00000000000..756b9997881 --- /dev/null +++ b/data/smartphone/motorola/2019/moto-g7-play-global-td-lte-32gb-xt1952-1.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g7-play-global-td-lte-32gb-xt1952-1", + "name": "Moto G7 Play Global TD-LTE 32GB XT1952-1", + "brand": "motorola", + "soc": "snapdragon-632", + "release_date": "2019-02-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 149.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1512", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Cyprus , Czech , Estonia , France , Greece , Germany , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , NZ , Romania , Russia , Slovakia , Slovenia , Spain , Sweden , UK , Ukraine", + "market_regions": "Australia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/motorola/2019/moto-g7-play-lte-a-latam-32gb-xt1952-2.json b/data/smartphone/motorola/2019/moto-g7-play-lte-a-latam-32gb-xt1952-2.json new file mode 100644 index 00000000000..980b54b81e4 --- /dev/null +++ b/data/smartphone/motorola/2019/moto-g7-play-lte-a-latam-32gb-xt1952-2.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g7-play-lte-a-latam-32gb-xt1952-2", + "name": "Moto G7 Play LTE-A LATAM 32GB XT1952-2", + "brand": "motorola", + "soc": "snapdragon-632", + "release_date": "2019-02-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 149.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1512", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Chile , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/motorola/2019/moto-g7-play-lte-a-us-32gb-xt1952-6.json b/data/smartphone/motorola/2019/moto-g7-play-lte-a-us-32gb-xt1952-6.json new file mode 100644 index 00000000000..0d37f6b46b2 --- /dev/null +++ b/data/smartphone/motorola/2019/moto-g7-play-lte-a-us-32gb-xt1952-6.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g7-play-lte-a-us-32gb-xt1952-6", + "name": "Moto G7 Play LTE-A US 32GB XT1952-6", + "brand": "motorola", + "soc": "snapdragon-632", + "release_date": "2019-04-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1512", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 200, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2019/moto-g7-play-td-lte-na-32gb-xt1952-3-xt1952-4.json b/data/smartphone/motorola/2019/moto-g7-play-td-lte-na-32gb-xt1952-3-xt1952-4.json new file mode 100644 index 00000000000..4f03c69d5e2 --- /dev/null +++ b/data/smartphone/motorola/2019/moto-g7-play-td-lte-na-32gb-xt1952-3-xt1952-4.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-g7-play-td-lte-na-32gb-xt1952-3-xt1952-4", + "name": "Moto G7 Play TD-LTE NA 32GB XT1952-3 / XT1952-4", + "brand": "motorola", + "soc": "snapdragon-632", + "release_date": "2019-04-06", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1512", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2019/moto-g7-play-td-lte-us-32gb-xt1952-5.json b/data/smartphone/motorola/2019/moto-g7-play-td-lte-us-32gb-xt1952-5.json new file mode 100644 index 00000000000..df098eeaa4e --- /dev/null +++ b/data/smartphone/motorola/2019/moto-g7-play-td-lte-us-32gb-xt1952-5.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g7-play-td-lte-us-32gb-xt1952-5", + "name": "Moto G7 Play TD-LTE US 32GB XT1952-5", + "brand": "motorola", + "soc": "snapdragon-632", + "release_date": "2019-04-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1512", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 200, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2019/moto-g7-plus-dual-sim-lte-a-latam-64gb-xt1965-2.json b/data/smartphone/motorola/2019/moto-g7-plus-dual-sim-lte-a-latam-64gb-xt1965-2.json new file mode 100644 index 00000000000..32c91414020 --- /dev/null +++ b/data/smartphone/motorola/2019/moto-g7-plus-dual-sim-lte-a-latam-64gb-xt1965-2.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g7-plus-dual-sim-lte-a-latam-64gb-xt1965-2", + "name": "Moto G7 Plus Dual SIM LTE-A LATAM 64GB XT1965-2", + "brand": "motorola", + "soc": "snapdragon-636", + "release_date": "2019-02-12", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2270", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil", + "market_regions": "South America" +} diff --git a/data/smartphone/motorola/2019/moto-g7-plus-dual-sim-td-lte-cn-64gb-xt1965-6.json b/data/smartphone/motorola/2019/moto-g7-plus-dual-sim-td-lte-cn-64gb-xt1965-6.json new file mode 100644 index 00000000000..aea30590b66 --- /dev/null +++ b/data/smartphone/motorola/2019/moto-g7-plus-dual-sim-td-lte-cn-64gb-xt1965-6.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g7-plus-dual-sim-td-lte-cn-64gb-xt1965-6", + "name": "Moto G7 Plus Dual SIM TD-LTE CN 64GB XT1965-6", + "brand": "motorola", + "soc": "snapdragon-636", + "release_date": "2019-08-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2270", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/motorola/2019/moto-g7-plus-global-dual-sim-td-lte-64gb-xt1965-3.json b/data/smartphone/motorola/2019/moto-g7-plus-global-dual-sim-td-lte-64gb-xt1965-3.json new file mode 100644 index 00000000000..8f7304fcffe --- /dev/null +++ b/data/smartphone/motorola/2019/moto-g7-plus-global-dual-sim-td-lte-64gb-xt1965-3.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g7-plus-global-dual-sim-td-lte-64gb-xt1965-3", + "name": "Moto G7 Plus Global Dual SIM TD-LTE 64GB XT1965-3", + "brand": "motorola", + "soc": "snapdragon-636", + "release_date": "2019-02-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2270", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Ireland , Italy , Japan , Latvia , Lithuania , Netherlands , NZ , Poland , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , Spain , Sweden , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/motorola/2019/moto-g7-plus-global-td-lte-64gb-xt1965-3.json b/data/smartphone/motorola/2019/moto-g7-plus-global-td-lte-64gb-xt1965-3.json new file mode 100644 index 00000000000..ec91d5bb0af --- /dev/null +++ b/data/smartphone/motorola/2019/moto-g7-plus-global-td-lte-64gb-xt1965-3.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g7-plus-global-td-lte-64gb-xt1965-3", + "name": "Moto G7 Plus Global TD-LTE 64GB XT1965-3", + "brand": "motorola", + "soc": "snapdragon-636", + "release_date": "2019-02-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2270", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Finland , France , Greece , Germany , Hungary , Ireland , Italy , Netherlands , NZ , Romania , Slovakia , Slovenia , Spain , Sweden , UK", + "market_regions": "Australia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/motorola/2019/moto-g7-plus-lte-a-latam-64gb-xt1965-2.json b/data/smartphone/motorola/2019/moto-g7-plus-lte-a-latam-64gb-xt1965-2.json new file mode 100644 index 00000000000..583b14d524a --- /dev/null +++ b/data/smartphone/motorola/2019/moto-g7-plus-lte-a-latam-64gb-xt1965-2.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g7-plus-lte-a-latam-64gb-xt1965-2", + "name": "Moto G7 Plus LTE-A LATAM 64GB XT1965-2", + "brand": "motorola", + "soc": "snapdragon-636", + "release_date": "2019-02-12", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2270", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2019/moto-g7-power-dtv-dual-sim-lte-a-br-32gb-xt1955-1.json b/data/smartphone/motorola/2019/moto-g7-power-dtv-dual-sim-lte-a-br-32gb-xt1955-1.json new file mode 100644 index 00000000000..301a4b25eab --- /dev/null +++ b/data/smartphone/motorola/2019/moto-g7-power-dtv-dual-sim-lte-a-br-32gb-xt1955-1.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g7-power-dtv-dual-sim-lte-a-br-32gb-xt1955-1", + "name": "Moto G7 Power DTV Dual SIM LTE-A BR 32GB XT1955-1", + "brand": "motorola", + "soc": "snapdragon-632", + "release_date": "2019-02-08", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1570", + "type": "Color IPS TFT LCD display", + "ppi": 279 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Brazil", + "market_regions": "South America" +} diff --git a/data/smartphone/motorola/2019/moto-g7-power-dual-sim-lte-a-latam-64gb-xt1955-2.json b/data/smartphone/motorola/2019/moto-g7-power-dual-sim-lte-a-latam-64gb-xt1955-2.json new file mode 100644 index 00000000000..2cdd89fc0ba --- /dev/null +++ b/data/smartphone/motorola/2019/moto-g7-power-dual-sim-lte-a-latam-64gb-xt1955-2.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g7-power-dual-sim-lte-a-latam-64gb-xt1955-2", + "name": "Moto G7 Power Dual SIM LTE-A LATAM 64GB XT1955-2", + "brand": "motorola", + "soc": "snapdragon-632", + "release_date": "2019-02-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1570", + "type": "Color IPS TFT LCD display", + "ppi": 279 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/motorola/2019/moto-g7-power-global-dual-sim-td-lte-64gb-xt1955-4.json b/data/smartphone/motorola/2019/moto-g7-power-global-dual-sim-td-lte-64gb-xt1955-4.json new file mode 100644 index 00000000000..c103a45223c --- /dev/null +++ b/data/smartphone/motorola/2019/moto-g7-power-global-dual-sim-td-lte-64gb-xt1955-4.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g7-power-global-dual-sim-td-lte-64gb-xt1955-4", + "name": "Moto G7 Power Global Dual SIM TD-LTE 64GB XT1955-4", + "brand": "motorola", + "soc": "snapdragon-632", + "release_date": "2019-02-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1570", + "type": "Color IPS TFT LCD display", + "ppi": 279 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , India , Ireland , Italy , Japan , Jordan , Latvia , Lithuania , Netherlands , NZ , Pakistan , Poland , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , Spain , Sweden , Taiwan , Thailand , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/motorola/2019/moto-g7-power-global-dual-sim-td-lte-64gb-xt1955-7.json b/data/smartphone/motorola/2019/moto-g7-power-global-dual-sim-td-lte-64gb-xt1955-7.json new file mode 100644 index 00000000000..be391bdfec8 --- /dev/null +++ b/data/smartphone/motorola/2019/moto-g7-power-global-dual-sim-td-lte-64gb-xt1955-7.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g7-power-global-dual-sim-td-lte-64gb-xt1955-7", + "name": "Moto G7 Power Global Dual SIM TD-LTE 64GB XT1955-7", + "brand": "motorola", + "soc": "snapdragon-632", + "release_date": "2019-02-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1570", + "type": "Color IPS TFT LCD display", + "ppi": 279 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Ireland , Italy , Japan , Latvia , Lithuania , Netherlands , NZ , Poland , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , Spain , Sweden , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/motorola/2019/moto-g7-power-global-td-lte-64gb-xt1955-4.json b/data/smartphone/motorola/2019/moto-g7-power-global-td-lte-64gb-xt1955-4.json new file mode 100644 index 00000000000..8f5acbe511d --- /dev/null +++ b/data/smartphone/motorola/2019/moto-g7-power-global-td-lte-64gb-xt1955-4.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g7-power-global-td-lte-64gb-xt1955-4", + "name": "Moto G7 Power Global TD-LTE 64GB XT1955-4", + "brand": "motorola", + "soc": "snapdragon-632", + "release_date": "2019-02-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1570", + "type": "Color IPS TFT LCD display", + "ppi": 279 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Croatia , Cyprus , Czech , Denmark , Finland , Greece , Hungary , Italy , Netherlands , NZ , Romania , Spain , Sweden , UK", + "market_regions": "Australia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/motorola/2019/moto-g7-power-global-td-lte-64gb-xt1955-7.json b/data/smartphone/motorola/2019/moto-g7-power-global-td-lte-64gb-xt1955-7.json new file mode 100644 index 00000000000..1f9d489c61b --- /dev/null +++ b/data/smartphone/motorola/2019/moto-g7-power-global-td-lte-64gb-xt1955-7.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g7-power-global-td-lte-64gb-xt1955-7", + "name": "Moto G7 Power Global TD-LTE 64GB XT1955-7", + "brand": "motorola", + "soc": "snapdragon-632", + "release_date": "2019-02-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1570", + "type": "Color IPS TFT LCD display", + "ppi": 279 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Ireland , Italy , Japan , Latvia , Lithuania , Netherlands , NZ , Poland , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , Spain , Sweden , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/motorola/2019/moto-g7-power-lte-a-latam-64gb-xt1955-2.json b/data/smartphone/motorola/2019/moto-g7-power-lte-a-latam-64gb-xt1955-2.json new file mode 100644 index 00000000000..d380f9dad20 --- /dev/null +++ b/data/smartphone/motorola/2019/moto-g7-power-lte-a-latam-64gb-xt1955-2.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g7-power-lte-a-latam-64gb-xt1955-2", + "name": "Moto G7 Power LTE-A LATAM 64GB XT1955-2", + "brand": "motorola", + "soc": "snapdragon-632", + "release_date": "2019-02-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1570", + "type": "Color IPS TFT LCD display", + "ppi": 279 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2019/moto-g7-power-td-lte-na-32gb-xt1955-5-xt1955-6.json b/data/smartphone/motorola/2019/moto-g7-power-td-lte-na-32gb-xt1955-5-xt1955-6.json new file mode 100644 index 00000000000..45260bc312b --- /dev/null +++ b/data/smartphone/motorola/2019/moto-g7-power-td-lte-na-32gb-xt1955-5-xt1955-6.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g7-power-td-lte-na-32gb-xt1955-5-xt1955-6", + "name": "Moto G7 Power TD-LTE NA 32GB XT1955-5 / XT1955-6", + "brand": "motorola", + "soc": "snapdragon-632", + "release_date": "2019-03-22", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1570", + "type": "Color IPS TFT LCD display", + "ppi": 279 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2019/moto-g7-td-lte-na-64gb-xt1962-1.json b/data/smartphone/motorola/2019/moto-g7-td-lte-na-64gb-xt1962-1.json new file mode 100644 index 00000000000..874dca5b1ba --- /dev/null +++ b/data/smartphone/motorola/2019/moto-g7-td-lte-na-64gb-xt1962-1.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g7-td-lte-na-64gb-xt1962-1", + "name": "Moto G7 TD-LTE NA 64GB XT1962-1", + "brand": "motorola", + "soc": "snapdragon-632", + "release_date": "2019-02-27", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2270", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2019/moto-g8-play-dual-sim-lte-a-latam-xt2015-2.json b/data/smartphone/motorola/2019/moto-g8-play-dual-sim-lte-a-latam-xt2015-2.json new file mode 100644 index 00000000000..86e550669c2 --- /dev/null +++ b/data/smartphone/motorola/2019/moto-g8-play-dual-sim-lte-a-latam-xt2015-2.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-g8-play-dual-sim-lte-a-latam-xt2015-2", + "name": "Moto G8 Play Dual SIM LTE-A LATAM XT2015-2", + "brand": "motorola", + "soc": "helio-p70", + "release_date": "2019-10-24", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 183.6, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Brazil", + "market_regions": "South America" +} diff --git a/data/smartphone/motorola/2019/moto-g8-play-lte-a-latam-xt2015-2.json b/data/smartphone/motorola/2019/moto-g8-play-lte-a-latam-xt2015-2.json new file mode 100644 index 00000000000..97baeb59106 --- /dev/null +++ b/data/smartphone/motorola/2019/moto-g8-play-lte-a-latam-xt2015-2.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-g8-play-lte-a-latam-xt2015-2", + "name": "Moto G8 Play LTE-A LATAM XT2015-2", + "brand": "motorola", + "soc": "helio-p70", + "release_date": "2019-10-24", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 183.6, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Chile , Mexico , Peru", + "market_regions": "South America" +} diff --git a/data/smartphone/motorola/2019/moto-g8-plus-dual-sim-lte-a-latam-xt2019-2.json b/data/smartphone/motorola/2019/moto-g8-plus-dual-sim-lte-a-latam-xt2019-2.json new file mode 100644 index 00000000000..896d38d2e7e --- /dev/null +++ b/data/smartphone/motorola/2019/moto-g8-plus-dual-sim-lte-a-latam-xt2019-2.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-g8-plus-dual-sim-lte-a-latam-xt2019-2", + "name": "Moto G8 Plus Dual SIM LTE-A LATAM XT2019-2", + "brand": "motorola", + "soc": "snapdragon-665", + "release_date": "2019-10-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Colombia , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/motorola/2019/moto-g8-plus-global-dual-sim-td-lte-xt2019-1-one-vision-plus.json b/data/smartphone/motorola/2019/moto-g8-plus-global-dual-sim-td-lte-xt2019-1-one-vision-plus.json new file mode 100644 index 00000000000..80784c66ec4 --- /dev/null +++ b/data/smartphone/motorola/2019/moto-g8-plus-global-dual-sim-td-lte-xt2019-1-one-vision-plus.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-g8-plus-global-dual-sim-td-lte-xt2019-1-one-vision-plus", + "name": "Moto G8 Plus Global Dual SIM TD-LTE XT2019-1 / One Vision Plus", + "brand": "motorola", + "soc": "snapdragon-665", + "release_date": "2019-10-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Finland , France , Greece , Germany , Hungary , India , Ireland , Italy , Japan , Netherlands , Norway , NZ , Poland , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Sweden , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/motorola/2019/moto-g8-plus-global-td-lte-xt2019-1.json b/data/smartphone/motorola/2019/moto-g8-plus-global-td-lte-xt2019-1.json new file mode 100644 index 00000000000..e9f6d652302 --- /dev/null +++ b/data/smartphone/motorola/2019/moto-g8-plus-global-td-lte-xt2019-1.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-g8-plus-global-td-lte-xt2019-1", + "name": "Moto G8 Plus Global TD-LTE XT2019-1", + "brand": "motorola", + "soc": "snapdragon-665", + "release_date": "2019-11-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Finland , France , Greece , Germany , Hungary , Ireland , Italy , Netherlands , Norway , NZ , Romania , Slovakia , Slovenia , Spain , Sweden , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/motorola/2019/moto-g8-plus-lte-a-latam-xt2019-2.json b/data/smartphone/motorola/2019/moto-g8-plus-lte-a-latam-xt2019-2.json new file mode 100644 index 00000000000..b0eefb06d4d --- /dev/null +++ b/data/smartphone/motorola/2019/moto-g8-plus-lte-a-latam-xt2019-2.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-g8-plus-lte-a-latam-xt2019-2", + "name": "Moto G8 Plus LTE-A LATAM XT2019-2", + "brand": "motorola", + "soc": "snapdragon-665", + "release_date": "2019-10-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Chile , Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2019/moto-one-action-dual-sim-lte-a-latam-apac-128gb-xt2013-1.json b/data/smartphone/motorola/2019/moto-one-action-dual-sim-lte-a-latam-apac-128gb-xt2013-1.json new file mode 100644 index 00000000000..f0eb856873b --- /dev/null +++ b/data/smartphone/motorola/2019/moto-one-action-dual-sim-lte-a-latam-apac-128gb-xt2013-1.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-one-action-dual-sim-lte-a-latam-apac-128gb-xt2013-1", + "name": "Moto One Action Dual SIM LTE-A LATAM APAC 128GB XT2013-1", + "brand": "motorola", + "soc": "exynos-9609", + "release_date": "2019-08-17", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Brazil , Colombia , HK", + "market_regions": "Asia , South America , Southeast Asia" +} diff --git a/data/smartphone/motorola/2019/moto-one-action-global-dual-sim-td-lte-128gb-xt2013-2.json b/data/smartphone/motorola/2019/moto-one-action-global-dual-sim-td-lte-128gb-xt2013-2.json new file mode 100644 index 00000000000..89ee56061ba --- /dev/null +++ b/data/smartphone/motorola/2019/moto-one-action-global-dual-sim-td-lte-128gb-xt2013-2.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-one-action-global-dual-sim-td-lte-128gb-xt2013-2", + "name": "Moto One Action Global Dual SIM TD-LTE 128GB XT2013-2", + "brand": "motorola", + "soc": "exynos-9609", + "release_date": "2019-09-01", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belgium , Cyprus , France , Germany , Greece , India , Italy , Malaysia , Poland , Russia , Serbia , Thailand , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/motorola/2019/moto-one-action-lte-a-latam-128gb-xt2013-1.json b/data/smartphone/motorola/2019/moto-one-action-lte-a-latam-128gb-xt2013-1.json new file mode 100644 index 00000000000..1fd60189535 --- /dev/null +++ b/data/smartphone/motorola/2019/moto-one-action-lte-a-latam-128gb-xt2013-1.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-one-action-lte-a-latam-128gb-xt2013-1", + "name": "Moto One Action LTE-A LATAM 128GB XT2013-1", + "brand": "motorola", + "soc": "exynos-9609", + "release_date": "2019-08-01", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Chile , Mexico , Peru", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/motorola/2019/moto-one-action-td-lte-na-128gb-xt2013-4.json b/data/smartphone/motorola/2019/moto-one-action-td-lte-na-128gb-xt2013-4.json new file mode 100644 index 00000000000..64458b2be15 --- /dev/null +++ b/data/smartphone/motorola/2019/moto-one-action-td-lte-na-128gb-xt2013-4.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-one-action-td-lte-na-128gb-xt2013-4", + "name": "Moto One Action TD-LTE NA 128GB XT2013-4", + "brand": "motorola", + "soc": "exynos-9609", + "release_date": "2019-11-01", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2019/moto-one-hyper-dual-sim-lte-a-am-xt2027-1.json b/data/smartphone/motorola/2019/moto-one-hyper-dual-sim-lte-a-am-xt2027-1.json new file mode 100644 index 00000000000..cb5734e3fe8 --- /dev/null +++ b/data/smartphone/motorola/2019/moto-one-hyper-dual-sim-lte-a-am-xt2027-1.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-one-hyper-dual-sim-lte-a-am-xt2027-1", + "name": "Moto One Hyper Dual SIM LTE-A AM XT2027-1", + "brand": "motorola", + "soc": "snapdragon-675", + "release_date": "2019-12-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Colombia", + "market_regions": "South America" +} diff --git a/data/smartphone/motorola/2019/moto-one-hyper-global-td-lte-xt2027-3.json b/data/smartphone/motorola/2019/moto-one-hyper-global-td-lte-xt2027-3.json new file mode 100644 index 00000000000..3800e885437 --- /dev/null +++ b/data/smartphone/motorola/2019/moto-one-hyper-global-td-lte-xt2027-3.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-one-hyper-global-td-lte-xt2027-3", + "name": "Moto One Hyper Global TD-LTE XT2027-3", + "brand": "motorola", + "soc": "snapdragon-675", + "release_date": "2019-12-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Belgium , Croatia , Denmark , France , Germany , Ireland , Italy , Netherlands , Poland , Portugal , Romania , Russia , Spain , Switzerland , Turkey , UK , Ukraine", + "market_regions": "Australia , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/motorola/2019/moto-one-hyper-lte-a-am-xt2027-1.json b/data/smartphone/motorola/2019/moto-one-hyper-lte-a-am-xt2027-1.json new file mode 100644 index 00000000000..d0eb0a9bc3c --- /dev/null +++ b/data/smartphone/motorola/2019/moto-one-hyper-lte-a-am-xt2027-1.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-one-hyper-lte-a-am-xt2027-1", + "name": "Moto One Hyper LTE-A AM XT2027-1", + "brand": "motorola", + "soc": "snapdragon-675", + "release_date": "2019-12-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Canada , Chile , Colombia , Guatemala , Mexico , USA", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/motorola/2019/moto-one-macro-dual-sim-latam-lte-a-xt2016-2.json b/data/smartphone/motorola/2019/moto-one-macro-dual-sim-latam-lte-a-xt2016-2.json new file mode 100644 index 00000000000..86da97be5ff --- /dev/null +++ b/data/smartphone/motorola/2019/moto-one-macro-dual-sim-latam-lte-a-xt2016-2.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-one-macro-dual-sim-latam-lte-a-xt2016-2", + "name": "Moto One Macro Dual SIM LATAM LTE-A XT2016-2", + "brand": "motorola", + "soc": "helio-p70", + "release_date": "2019-11-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Brazil", + "market_regions": "South America" +} diff --git a/data/smartphone/motorola/2019/moto-one-macro-global-dual-sim-td-lte-xt2016-1.json b/data/smartphone/motorola/2019/moto-one-macro-global-dual-sim-td-lte-xt2016-1.json new file mode 100644 index 00000000000..a4df1d8d700 --- /dev/null +++ b/data/smartphone/motorola/2019/moto-one-macro-global-dual-sim-td-lte-xt2016-1.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-one-macro-global-dual-sim-td-lte-xt2016-1", + "name": "Moto One Macro Global Dual SIM TD-LTE XT2016-1", + "brand": "motorola", + "soc": "helio-p70", + "release_date": "2019-10-12", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/motorola/2019/moto-one-vision-dual-sim-lte-a-latam-au-128gb-xt1970-1.json b/data/smartphone/motorola/2019/moto-one-vision-dual-sim-lte-a-latam-au-128gb-xt1970-1.json new file mode 100644 index 00000000000..0fba5373041 --- /dev/null +++ b/data/smartphone/motorola/2019/moto-one-vision-dual-sim-lte-a-latam-au-128gb-xt1970-1.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-one-vision-dual-sim-lte-a-latam-au-128gb-xt1970-1", + "name": "Moto One Vision Dual SIM LTE-A LATAM AU 128GB XT1970-1", + "brand": "motorola", + "soc": "exynos-9609", + "release_date": "2019-08-17", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Australia , Brazil , Colombia", + "market_regions": "Australia , South America" +} diff --git a/data/smartphone/motorola/2019/moto-one-vision-dual-sim-td-lte-emea-apac-128gb-xt1970-3.json b/data/smartphone/motorola/2019/moto-one-vision-dual-sim-td-lte-emea-apac-128gb-xt1970-3.json new file mode 100644 index 00000000000..fbda63807c1 --- /dev/null +++ b/data/smartphone/motorola/2019/moto-one-vision-dual-sim-td-lte-emea-apac-128gb-xt1970-3.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-one-vision-dual-sim-td-lte-emea-apac-128gb-xt1970-3", + "name": "Moto One Vision Dual SIM TD-LTE EMEA APAC 128GB XT1970-3", + "brand": "motorola", + "soc": "exynos-9609", + "release_date": "2019-08-01", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "France , Germany , India , Indonesia , Italy , Malaysia , Poland , Russia , Saudi Arabia , Spain , Thailand , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/motorola/2019/moto-one-vision-lte-a-am-128gb-xt1970-2.json b/data/smartphone/motorola/2019/moto-one-vision-lte-a-am-128gb-xt1970-2.json new file mode 100644 index 00000000000..e30a1950598 --- /dev/null +++ b/data/smartphone/motorola/2019/moto-one-vision-lte-a-am-128gb-xt1970-2.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-one-vision-lte-a-am-128gb-xt1970-2", + "name": "Moto One Vision LTE-A AM 128GB XT1970-2", + "brand": "motorola", + "soc": "exynos-9609", + "release_date": "2019-08-01", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Australia , Canada , Guatemala , Mexico , NZ", + "market_regions": "Australia , Central America , North America , South America" +} diff --git a/data/smartphone/motorola/2019/moto-one-vision-td-lte-emea-128gb-xt1970-3.json b/data/smartphone/motorola/2019/moto-one-vision-td-lte-emea-128gb-xt1970-3.json new file mode 100644 index 00000000000..a71688a117f --- /dev/null +++ b/data/smartphone/motorola/2019/moto-one-vision-td-lte-emea-128gb-xt1970-3.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-one-vision-td-lte-emea-128gb-xt1970-3", + "name": "Moto One Vision TD-LTE EMEA 128GB XT1970-3", + "brand": "motorola", + "soc": "exynos-9609", + "release_date": "2019-08-01", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belgium , France , Germany , Portugal , Russia , Spain , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/motorola/2019/moto-one-zoom-global-dual-sim-td-lte-128gb-xt2010-1.json b/data/smartphone/motorola/2019/moto-one-zoom-global-dual-sim-td-lte-128gb-xt2010-1.json new file mode 100644 index 00000000000..a424adf9a6a --- /dev/null +++ b/data/smartphone/motorola/2019/moto-one-zoom-global-dual-sim-td-lte-128gb-xt2010-1.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-one-zoom-global-dual-sim-td-lte-128gb-xt2010-1", + "name": "Moto One Zoom Global Dual SIM TD-LTE 128GB XT2010-1", + "brand": "motorola", + "soc": "snapdragon-675", + "release_date": "2019-09-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Colombia , France , Germany , Ireland , Italy , Poland , Russia , Saudi Arabia , Spain , UAE , UK , Ukraine , USA", + "market_regions": "Eastern Europe , Europe , Middle East , North America , South America , Western Europe" +} diff --git a/data/smartphone/motorola/2019/moto-one-zoom-global-td-lte-128gb-xt2010-1.json b/data/smartphone/motorola/2019/moto-one-zoom-global-td-lte-128gb-xt2010-1.json new file mode 100644 index 00000000000..492d80821cc --- /dev/null +++ b/data/smartphone/motorola/2019/moto-one-zoom-global-td-lte-128gb-xt2010-1.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-one-zoom-global-td-lte-128gb-xt2010-1", + "name": "Moto One Zoom Global TD-LTE 128GB XT2010-1", + "brand": "motorola", + "soc": "snapdragon-675", + "release_date": "2019-09-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Canada , Colombia , Mexico , USA", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/motorola/2019/moto-z4-lte-a-us-xt1980-4.json b/data/smartphone/motorola/2019/moto-z4-lte-a-us-xt1980-4.json new file mode 100644 index 00000000000..1914d3fee72 --- /dev/null +++ b/data/smartphone/motorola/2019/moto-z4-lte-a-us-xt1980-4.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-z4-lte-a-us-xt1980-4", + "name": "Moto Z4 LTE-A US XT1980-4", + "brand": "motorola", + "soc": "snapdragon-675", + "release_date": "2019-06-06", + "ram_gb": 4.0, + "battery_mah": 3600, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.4 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2019/moto-z4-td-lte-na-xt1980-3.json b/data/smartphone/motorola/2019/moto-z4-td-lte-na-xt1980-3.json new file mode 100644 index 00000000000..52c2afdc222 --- /dev/null +++ b/data/smartphone/motorola/2019/moto-z4-td-lte-na-xt1980-3.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-z4-td-lte-na-xt1980-3", + "name": "Moto Z4 TD-LTE NA XT1980-3", + "brand": "motorola", + "soc": "snapdragon-675", + "release_date": "2019-06-06", + "ram_gb": 4.0, + "battery_mah": 3600, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.4 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2019/p50-dual-sim-td-lte-cn-128gb-xt1970-5.json b/data/smartphone/motorola/2019/p50-dual-sim-td-lte-cn-128gb-xt1970-5.json new file mode 100644 index 00000000000..616a4f95b99 --- /dev/null +++ b/data/smartphone/motorola/2019/p50-dual-sim-td-lte-cn-128gb-xt1970-5.json @@ -0,0 +1,42 @@ +{ + "slug": "p50-dual-sim-td-lte-cn-128gb-xt1970-5", + "name": "P50 Dual SIM TD-LTE CN 128GB XT1970-5", + "brand": "motorola", + "soc": "exynos-9609", + "release_date": "2019-07-01", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/motorola/2020/g8-power-lite-dual-sim-lte-a-latam-apac-xt2055-2.json b/data/smartphone/motorola/2020/g8-power-lite-dual-sim-lte-a-latam-apac-xt2055-2.json new file mode 100644 index 00000000000..a41e326aefe --- /dev/null +++ b/data/smartphone/motorola/2020/g8-power-lite-dual-sim-lte-a-latam-apac-xt2055-2.json @@ -0,0 +1,42 @@ +{ + "slug": "g8-power-lite-dual-sim-lte-a-latam-apac-xt2055-2", + "name": "G8 Power Lite Dual SIM LTE-A LATAM APAC XT2055-2", + "brand": "motorola", + "soc": "helio-p35", + "release_date": "2020-04-03", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Brazil , HK , Singapore", + "market_regions": "Asia , South America , Southeast Asia" +} diff --git a/data/smartphone/motorola/2020/g8-power-lite-dual-sim-td-lte-apac-xt2055-4.json b/data/smartphone/motorola/2020/g8-power-lite-dual-sim-td-lte-apac-xt2055-4.json new file mode 100644 index 00000000000..ba928761fd8 --- /dev/null +++ b/data/smartphone/motorola/2020/g8-power-lite-dual-sim-td-lte-apac-xt2055-4.json @@ -0,0 +1,42 @@ +{ + "slug": "g8-power-lite-dual-sim-td-lte-apac-xt2055-4", + "name": "G8 Power Lite Dual SIM TD-LTE APAC XT2055-4", + "brand": "motorola", + "soc": "helio-p35", + "release_date": "2020-09-04", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , Japan , NZ , Taiwan", + "market_regions": "Asia , Australia" +} diff --git a/data/smartphone/motorola/2020/g8-power-lite-dual-sim-td-lte-emea-xt2055-1.json b/data/smartphone/motorola/2020/g8-power-lite-dual-sim-td-lte-emea-xt2055-1.json new file mode 100644 index 00000000000..10e78bf0933 --- /dev/null +++ b/data/smartphone/motorola/2020/g8-power-lite-dual-sim-td-lte-emea-xt2055-1.json @@ -0,0 +1,42 @@ +{ + "slug": "g8-power-lite-dual-sim-td-lte-emea-xt2055-1", + "name": "G8 Power Lite Dual SIM TD-LTE EMEA XT2055-1", + "brand": "motorola", + "soc": "helio-p35", + "release_date": "2020-04-03", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Denmark , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Japan , Netherlands , Norway , Pakistan , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , Spain , Sweden , Switzerland , Taiwan , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/motorola/2020/g8-power-lite-lte-a-latam-xt2055-2.json b/data/smartphone/motorola/2020/g8-power-lite-lte-a-latam-xt2055-2.json new file mode 100644 index 00000000000..2290c8d0729 --- /dev/null +++ b/data/smartphone/motorola/2020/g8-power-lite-lte-a-latam-xt2055-2.json @@ -0,0 +1,42 @@ +{ + "slug": "g8-power-lite-lte-a-latam-xt2055-2", + "name": "G8 Power Lite LTE-A LATAM XT2055-2", + "brand": "motorola", + "soc": "helio-p35", + "release_date": "2020-05-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Chile , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/motorola/2020/g8-power-lite-td-lte-emea-xt2055-1.json b/data/smartphone/motorola/2020/g8-power-lite-td-lte-emea-xt2055-1.json new file mode 100644 index 00000000000..7a447187bd7 --- /dev/null +++ b/data/smartphone/motorola/2020/g8-power-lite-td-lte-emea-xt2055-1.json @@ -0,0 +1,43 @@ +{ + "slug": "g8-power-lite-td-lte-emea-xt2055-1", + "name": "G8 Power Lite TD-LTE EMEA XT2055-1", + "brand": "motorola", + "soc": "helio-p35", + "release_date": "2020-04-03", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "msrp_usd": 150, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Denmark , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Japan , Netherlands , Norway , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , Spain , Sweden , Switzerland , UAE , UK", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/motorola/2020/moto-e-7th-gen-2020-lte-us-32gb-xt2052-2-xt2052-2pp.json b/data/smartphone/motorola/2020/moto-e-7th-gen-2020-lte-us-32gb-xt2052-2-xt2052-2pp.json new file mode 100644 index 00000000000..c06cd364505 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-e-7th-gen-2020-lte-us-32gb-xt2052-2-xt2052-2pp.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-e-7th-gen-2020-lte-us-32gb-xt2052-2-xt2052-2pp", + "name": "Moto E 7th gen 2020 LTE US 32GB XT2052-2 / XT2052-2PP", + "brand": "motorola", + "soc": "snapdragon-632", + "release_date": "2020-06-11", + "ram_gb": 2.0, + "battery_mah": 3550, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "msrp_usd": 150, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2020/moto-e-7th-gen-2020-td-lte-na-32gb-xt2052-1.json b/data/smartphone/motorola/2020/moto-e-7th-gen-2020-td-lte-na-32gb-xt2052-1.json new file mode 100644 index 00000000000..a652d66bbf6 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-e-7th-gen-2020-td-lte-na-32gb-xt2052-1.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-e-7th-gen-2020-td-lte-na-32gb-xt2052-1", + "name": "Moto E 7th gen 2020 TD-LTE NA 32GB XT2052-1", + "brand": "motorola", + "soc": "snapdragon-632", + "release_date": "2020-06-12", + "ram_gb": 2.0, + "battery_mah": 3550, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "msrp_usd": 150, + "market_countries": "Canada , Puerto Rico , USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/motorola/2020/moto-e-7th-gen-2020-td-lte-us-32gb-xt2052-5.json b/data/smartphone/motorola/2020/moto-e-7th-gen-2020-td-lte-us-32gb-xt2052-5.json new file mode 100644 index 00000000000..6861b0965d8 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-e-7th-gen-2020-td-lte-us-32gb-xt2052-5.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-e-7th-gen-2020-td-lte-us-32gb-xt2052-5", + "name": "Moto E 7th gen 2020 TD-LTE US 32GB XT2052-5", + "brand": "motorola", + "soc": "snapdragon-632", + "release_date": "2020-06-12", + "ram_gb": 2.0, + "battery_mah": 3550, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2020/moto-e-7th-gen-2020-td-lte-us-32gb-xt2052-6.json b/data/smartphone/motorola/2020/moto-e-7th-gen-2020-td-lte-us-32gb-xt2052-6.json new file mode 100644 index 00000000000..13c454b878c --- /dev/null +++ b/data/smartphone/motorola/2020/moto-e-7th-gen-2020-td-lte-us-32gb-xt2052-6.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-e-7th-gen-2020-td-lte-us-32gb-xt2052-6", + "name": "Moto E 7th gen 2020 TD-LTE US 32GB XT2052-6", + "brand": "motorola", + "soc": "snapdragon-632", + "release_date": "2020-08-08", + "ram_gb": 2.0, + "battery_mah": 3550, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "msrp_usd": 150, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2020/moto-e-7th-gen-2020-td-lte-us-32gb-xt2052dl-moto-e7.json b/data/smartphone/motorola/2020/moto-e-7th-gen-2020-td-lte-us-32gb-xt2052dl-moto-e7.json new file mode 100644 index 00000000000..eab08a2aa12 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-e-7th-gen-2020-td-lte-us-32gb-xt2052dl-moto-e7.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-e-7th-gen-2020-td-lte-us-32gb-xt2052dl-moto-e7", + "name": "Moto E 7th gen 2020 TD-LTE US 32GB XT2052DL / Moto e7", + "brand": "motorola", + "soc": "snapdragon-632", + "release_date": "2020-07-01", + "ram_gb": 2.0, + "battery_mah": 3550, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "msrp_usd": 100, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2020/moto-e6-plus-td-lte-eu-32gb-xt2025-2.json b/data/smartphone/motorola/2020/moto-e6-plus-td-lte-eu-32gb-xt2025-2.json new file mode 100644 index 00000000000..b533c9dffa4 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-e6-plus-td-lte-eu-32gb-xt2025-2.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-e6-plus-td-lte-eu-32gb-xt2025-2", + "name": "Moto E6 Plus TD-LTE EU 32GB XT2025-2", + "brand": "motorola", + "soc": "helio-p22", + "release_date": "2020-03-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 149.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Belgium , Germany , Italy , Netherlands , Portugal , Spain , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/motorola/2020/moto-e6s-2020-dual-sim-td-lte-au-jp-32gb-xt2053-4.json b/data/smartphone/motorola/2020/moto-e6s-2020-dual-sim-td-lte-au-jp-32gb-xt2053-4.json new file mode 100644 index 00000000000..5b5998b21fe --- /dev/null +++ b/data/smartphone/motorola/2020/moto-e6s-2020-dual-sim-td-lte-au-jp-32gb-xt2053-4.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-e6s-2020-dual-sim-td-lte-au-jp-32gb-xt2053-4", + "name": "Moto E6s 2020 Dual SIM TD-LTE AU JP 32GB XT2053-4", + "brand": "motorola", + "soc": "helio-p22", + "release_date": "2020-05-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , Japan , NZ", + "market_regions": "Australia" +} diff --git a/data/smartphone/motorola/2020/moto-e6s-2020-global-dual-sim-td-lte-32gb-xt2053-1.json b/data/smartphone/motorola/2020/moto-e6s-2020-global-dual-sim-td-lte-32gb-xt2053-1.json new file mode 100644 index 00000000000..54658b2aa0b --- /dev/null +++ b/data/smartphone/motorola/2020/moto-e6s-2020-global-dual-sim-td-lte-32gb-xt2053-1.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-e6s-2020-global-dual-sim-td-lte-32gb-xt2053-1", + "name": "Moto E6s 2020 Global Dual SIM TD-LTE 32GB XT2053-1", + "brand": "motorola", + "soc": "helio-p22", + "release_date": "2020-04-02", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Belarus , Belgium , Bulgaria , Czech , Denmark , France , Germany , Italy , Malaysia , Netherlands , Poland , Romania , Russia , Serbia , Slovakia , Slovenia , Spain , Sweden , Switzerland , Thailand , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/motorola/2020/moto-e6s-2020-lte-latam-32gb-xt2053-2-moto-e6-s.json b/data/smartphone/motorola/2020/moto-e6s-2020-lte-latam-32gb-xt2053-2-moto-e6-s.json new file mode 100644 index 00000000000..2533775f30b --- /dev/null +++ b/data/smartphone/motorola/2020/moto-e6s-2020-lte-latam-32gb-xt2053-2-moto-e6-s.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-e6s-2020-lte-latam-32gb-xt2053-2-moto-e6-s", + "name": "Moto E6s 2020 LTE LATAM 32GB XT2053-2 / Moto E6 S", + "brand": "motorola", + "soc": "helio-p22", + "release_date": "2020-03-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Argentina , Chile , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/motorola/2020/moto-e6s-2020-td-lte-eu-16gb-xt2053-1.json b/data/smartphone/motorola/2020/moto-e6s-2020-td-lte-eu-16gb-xt2053-1.json new file mode 100644 index 00000000000..af308a91db3 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-e6s-2020-td-lte-eu-16gb-xt2053-1.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-e6s-2020-td-lte-eu-16gb-xt2053-1", + "name": "Moto E6s 2020 TD-LTE EU 16GB XT2053-1", + "brand": "motorola", + "soc": "helio-p22", + "release_date": "2020-04-02", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Spain , Turkey , UK", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/motorola/2020/moto-e7-2020-dual-sim-lte-latam-32gb-xt2095-1.json b/data/smartphone/motorola/2020/moto-e7-2020-dual-sim-lte-latam-32gb-xt2095-1.json new file mode 100644 index 00000000000..3a05f676919 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-e7-2020-dual-sim-lte-latam-32gb-xt2095-1.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-e7-2020-dual-sim-lte-latam-32gb-xt2095-1", + "name": "Moto E7 2020 Dual SIM LTE LATAM 32GB XT2095-1", + "brand": "motorola", + "soc": "helio-g25", + "release_date": "2020-11-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1199, + "market_countries": "Brazil , Peru", + "market_regions": "South America" +} diff --git a/data/smartphone/motorola/2020/moto-e7-2020-dual-sim-lte-latam-64gb-xt2095-1.json b/data/smartphone/motorola/2020/moto-e7-2020-dual-sim-lte-latam-64gb-xt2095-1.json new file mode 100644 index 00000000000..a8bc04cd89a --- /dev/null +++ b/data/smartphone/motorola/2020/moto-e7-2020-dual-sim-lte-latam-64gb-xt2095-1.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-e7-2020-dual-sim-lte-latam-64gb-xt2095-1", + "name": "Moto E7 2020 Dual SIM LTE LATAM 64GB XT2095-1", + "brand": "motorola", + "soc": "helio-g25", + "release_date": "2020-11-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1299, + "market_countries": "Brazil , Peru", + "market_regions": "South America" +} diff --git a/data/smartphone/motorola/2020/moto-e7-2020-dual-sim-td-lte-emea-32gb-xt2095-2.json b/data/smartphone/motorola/2020/moto-e7-2020-dual-sim-td-lte-emea-32gb-xt2095-2.json new file mode 100644 index 00000000000..70a31703b1b --- /dev/null +++ b/data/smartphone/motorola/2020/moto-e7-2020-dual-sim-td-lte-emea-32gb-xt2095-2.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-e7-2020-dual-sim-td-lte-emea-32gb-xt2095-2", + "name": "Moto E7 2020 Dual SIM TD-LTE EMEA 32GB XT2095-2", + "brand": "motorola", + "soc": "helio-g25", + "release_date": "2020-12-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 119, + "market_countries": "Belgium , Cyprus , Croatia , Czech , Denmark , Finland , France , Greece , Germany , Hungary , Ireland , Italy , Netherlands , Norway , Poland , Portugal , Russia , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Sweden , UAE , UK", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/motorola/2020/moto-e7-2020-lte-latam-32gb-xt2095-1.json b/data/smartphone/motorola/2020/moto-e7-2020-lte-latam-32gb-xt2095-1.json new file mode 100644 index 00000000000..9b07fc66e83 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-e7-2020-lte-latam-32gb-xt2095-1.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-e7-2020-lte-latam-32gb-xt2095-1", + "name": "Moto E7 2020 LTE LATAM 32GB XT2095-1", + "brand": "motorola", + "soc": "helio-g25", + "release_date": "2020-11-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 3599, + "market_countries": "Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2020/moto-e7-2020-td-lte-emea-32gb-xt2095-2.json b/data/smartphone/motorola/2020/moto-e7-2020-td-lte-emea-32gb-xt2095-2.json new file mode 100644 index 00000000000..b7e9fc564fd --- /dev/null +++ b/data/smartphone/motorola/2020/moto-e7-2020-td-lte-emea-32gb-xt2095-2.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-e7-2020-td-lte-emea-32gb-xt2095-2", + "name": "Moto E7 2020 TD-LTE EMEA 32GB XT2095-2", + "brand": "motorola", + "soc": "helio-g25", + "release_date": "2020-12-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 119, + "market_countries": "Austria , Belgium , Cyprus , Czech , Denmark , Finland , France , Greece , Ireland , Italy , Netherlands , Norway , Poland , Portugal , Russia , Saudi Arabia , Slovakia , Slovenia , Spain , Sweden , UK", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/motorola/2020/moto-e7-plus-2020-dual-sim-lte-a-latam-xt2081-1.json b/data/smartphone/motorola/2020/moto-e7-plus-2020-dual-sim-lte-a-latam-xt2081-1.json new file mode 100644 index 00000000000..e2b52a44f95 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-e7-plus-2020-dual-sim-lte-a-latam-xt2081-1.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-e7-plus-2020-dual-sim-lte-a-latam-xt2081-1", + "name": "Moto E7 Plus 2020 Dual SIM LTE-A LATAM XT2081-1", + "brand": "motorola", + "soc": "snapdragon-460", + "release_date": "2020-09-12", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 1499, + "market_countries": "Brazil , Colombia", + "market_regions": "South America" +} diff --git a/data/smartphone/motorola/2020/moto-e7-plus-2020-global-dual-sim-td-lte-xt2081-2.json b/data/smartphone/motorola/2020/moto-e7-plus-2020-global-dual-sim-td-lte-xt2081-2.json new file mode 100644 index 00000000000..3811bdcbfff --- /dev/null +++ b/data/smartphone/motorola/2020/moto-e7-plus-2020-global-dual-sim-td-lte-xt2081-2.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-e7-plus-2020-global-dual-sim-td-lte-xt2081-2", + "name": "Moto E7 Plus 2020 Global Dual SIM TD-LTE XT2081-2", + "brand": "motorola", + "soc": "snapdragon-460", + "release_date": "2020-10-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 150, + "market_countries": "Austria , Bulgaria , Cyprus , Czech , Finland , France , Germany , Greece , Hungary , Italy , Netherlands , Norway , Poland , Portugal , Russia , Romania , Serbia , Slovakia , Slovenia , Spain , Sweden , UK", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/motorola/2020/moto-e7-plus-2020-lte-a-latam-xt2081-1.json b/data/smartphone/motorola/2020/moto-e7-plus-2020-lte-a-latam-xt2081-1.json new file mode 100644 index 00000000000..5c0feb33878 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-e7-plus-2020-lte-a-latam-xt2081-1.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-e7-plus-2020-lte-a-latam-xt2081-1", + "name": "Moto E7 Plus 2020 LTE-A LATAM XT2081-1", + "brand": "motorola", + "soc": "snapdragon-460", + "release_date": "2020-09-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 4299, + "market_countries": "Argentina , Chile , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/motorola/2020/moto-edge-5g-dual-sim-td-lte-emea-xt2063-4.json b/data/smartphone/motorola/2020/moto-edge-5g-dual-sim-td-lte-emea-xt2063-4.json new file mode 100644 index 00000000000..38f78d4e967 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-edge-5g-dual-sim-td-lte-emea-xt2063-4.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-edge-5g-dual-sim-td-lte-emea-xt2063-4", + "name": "Moto Edge 5G Dual SIM TD-LTE EMEA XT2063-4", + "brand": "motorola", + "soc": "snapdragon-765", + "release_date": "2020-05-28", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 385 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2999, + "market_countries": "Poland , Spain", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/motorola/2020/moto-edge-5g-global-dual-sim-td-lte-xt2063-3.json b/data/smartphone/motorola/2020/moto-edge-5g-global-dual-sim-td-lte-xt2063-3.json new file mode 100644 index 00000000000..b5a97c9fea0 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-edge-5g-global-dual-sim-td-lte-xt2063-3.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-edge-5g-global-dual-sim-td-lte-xt2063-3", + "name": "Moto Edge 5G Global Dual SIM TD-LTE XT2063-3", + "brand": "motorola", + "soc": "snapdragon-765", + "release_date": "2020-05-28", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 385 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Belgium , Brazil , Denmark , France , Germany , India , Italy , Netherlands , Spain , Sweden , Switzerland , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , South America , Western Europe" +} diff --git a/data/smartphone/motorola/2020/moto-edge-5g-global-td-lte-xt2061-3.json b/data/smartphone/motorola/2020/moto-edge-5g-global-td-lte-xt2061-3.json new file mode 100644 index 00000000000..e4cc3663dca --- /dev/null +++ b/data/smartphone/motorola/2020/moto-edge-5g-global-td-lte-xt2061-3.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-edge-5g-global-td-lte-xt2061-3", + "name": "Moto Edge+ 5G Global TD-LTE XT2061-3", + "brand": "motorola", + "soc": "snapdragon-865", + "release_date": "2020-05-26", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 203.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 385 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Belgium , Brazil , Canada , Denmark , France , Germany , India , Italy , Mexico , Netherlands , Slovakia , Spain , Sweden , UAE , UK", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , South America , Western Europe" +} diff --git a/data/smartphone/motorola/2020/moto-edge-5g-global-td-lte-xt2063-3.json b/data/smartphone/motorola/2020/moto-edge-5g-global-td-lte-xt2063-3.json new file mode 100644 index 00000000000..2ba6daae657 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-edge-5g-global-td-lte-xt2063-3.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-edge-5g-global-td-lte-xt2063-3", + "name": "Moto Edge 5G Global TD-LTE XT2063-3", + "brand": "motorola", + "soc": "snapdragon-765", + "release_date": "2020-07-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 385 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Mexico , UK", + "market_regions": "Europe , North America , South America , Western Europe" +} diff --git a/data/smartphone/motorola/2020/moto-edge-5g-td-lte-us-xt2063-2.json b/data/smartphone/motorola/2020/moto-edge-5g-td-lte-us-xt2063-2.json new file mode 100644 index 00000000000..eaa69aac1f7 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-edge-5g-td-lte-us-xt2063-2.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-edge-5g-td-lte-us-xt2063-2", + "name": "Moto Edge 5G TD-LTE US XT2063-2", + "brand": "motorola", + "soc": "snapdragon-765", + "release_date": "2020-07-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 385 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2020/moto-edge-5g-uw-global-td-lte-xt2061-1.json b/data/smartphone/motorola/2020/moto-edge-5g-uw-global-td-lte-xt2061-1.json new file mode 100644 index 00000000000..263a9ea7c2a --- /dev/null +++ b/data/smartphone/motorola/2020/moto-edge-5g-uw-global-td-lte-xt2061-1.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-edge-5g-uw-global-td-lte-xt2061-1", + "name": "Moto Edge+ 5G UW Global TD-LTE XT2061-1", + "brand": "motorola", + "soc": "snapdragon-865", + "release_date": "2020-05-14", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 203.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 385 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "HK , Russia , Saudi Arabia , Singapore , UAE , USA", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia" +} diff --git a/data/smartphone/motorola/2020/moto-g-5g-plus-2020-global-dual-sim-td-lte-128gb-xt2075-3-moto-g8-plus-5g.json b/data/smartphone/motorola/2020/moto-g-5g-plus-2020-global-dual-sim-td-lte-128gb-xt2075-3-moto-g8-plus-5g.json new file mode 100644 index 00000000000..4c639fa7952 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-g-5g-plus-2020-global-dual-sim-td-lte-128gb-xt2075-3-moto-g8-plus-5g.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-g-5g-plus-2020-global-dual-sim-td-lte-128gb-xt2075-3-moto-g8-plus-5g", + "name": "Moto G 5G Plus 2020 Global Dual SIM TD-LTE 128GB XT2075-3 / Moto G8 Plus 5G", + "brand": "motorola", + "soc": "snapdragon-765", + "release_date": "2020-07-19", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 207.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2520", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 350, + "market_countries": "Australia , Belgium , Denmark , Estonia , Finland , Germany , Hungary , Japan , Latvia , Lithuania , Norway , Portugal , Romania , Russia , Saudi Arabia , Spain , Sweden , Taiwan , Thailand , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/motorola/2020/moto-g-5g-plus-2020-global-dual-sim-td-lte-64gb-xt2075-3.json b/data/smartphone/motorola/2020/moto-g-5g-plus-2020-global-dual-sim-td-lte-64gb-xt2075-3.json new file mode 100644 index 00000000000..83183b80f8e --- /dev/null +++ b/data/smartphone/motorola/2020/moto-g-5g-plus-2020-global-dual-sim-td-lte-64gb-xt2075-3.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-g-5g-plus-2020-global-dual-sim-td-lte-64gb-xt2075-3", + "name": "Moto G 5G Plus 2020 Global Dual SIM TD-LTE 64GB XT2075-3", + "brand": "motorola", + "soc": "snapdragon-765", + "release_date": "2020-07-19", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 207.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2520", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 349, + "market_countries": "Belgium , Bulgaria , Czech , Denmark , Estonia , Finland , Germany , Hungary , Japan , Latvia , Lithuania , Mexico , Netherlands , Norway , Portugal , Romania , Russia , Singapore , Slovakia , Spain , Sweden , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , North America , Western Europe" +} diff --git a/data/smartphone/motorola/2020/moto-g-5g-plus-2020-global-td-lte-128gb-xt2075-3.json b/data/smartphone/motorola/2020/moto-g-5g-plus-2020-global-td-lte-128gb-xt2075-3.json new file mode 100644 index 00000000000..28a2375b288 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-g-5g-plus-2020-global-td-lte-128gb-xt2075-3.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-g-5g-plus-2020-global-td-lte-128gb-xt2075-3", + "name": "Moto G 5G Plus 2020 Global TD-LTE 128GB XT2075-3", + "brand": "motorola", + "soc": "snapdragon-765", + "release_date": "2020-07-19", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 207.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2520", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 350, + "market_countries": "Australia , Austria , Belgium , Denmark , Finland , Germany , Ireland , Italy , Norway , NZ , Portugal , Spain , Sweden , Switzerland , UK", + "market_regions": "Australia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/motorola/2020/moto-g-5g-plus-2020-sim-td-lte-latam-128gb-xt2075-3.json b/data/smartphone/motorola/2020/moto-g-5g-plus-2020-sim-td-lte-latam-128gb-xt2075-3.json new file mode 100644 index 00000000000..2cde539c728 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-g-5g-plus-2020-sim-td-lte-latam-128gb-xt2075-3.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-g-5g-plus-2020-sim-td-lte-latam-128gb-xt2075-3", + "name": "Moto G 5G Plus 2020 SIM TD-LTE LATAM 128GB XT2075-3", + "brand": "motorola", + "soc": "snapdragon-765", + "release_date": "2020-07-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 207.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2520", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2999, + "market_countries": "Brazil", + "market_regions": "South America" +} diff --git a/data/smartphone/motorola/2020/moto-g-fast-td-lte-na-xt2045-3-moto-g8.json b/data/smartphone/motorola/2020/moto-g-fast-td-lte-na-xt2045-3-moto-g8.json new file mode 100644 index 00000000000..255b5c68f5c --- /dev/null +++ b/data/smartphone/motorola/2020/moto-g-fast-td-lte-na-xt2045-3-moto-g8.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g-fast-td-lte-na-xt2045-3-moto-g8", + "name": "Moto G Fast TD-LTE NA XT2045-3 / Moto G8", + "brand": "motorola", + "soc": "snapdragon-665", + "release_date": "2020-06-08", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 189.4, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.4, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 150, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2020/moto-g-power-2020-td-lte-na-64gb-xt2041-4-g8-power.json b/data/smartphone/motorola/2020/moto-g-power-2020-td-lte-na-64gb-xt2041-4-g8-power.json new file mode 100644 index 00000000000..0c58de7a213 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-g-power-2020-td-lte-na-64gb-xt2041-4-g8-power.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g-power-2020-td-lte-na-64gb-xt2041-4-g8-power", + "name": "Moto G Power 2020 TD-LTE NA 64GB XT2041-4 / G8 Power", + "brand": "motorola", + "soc": "snapdragon-665", + "release_date": "2020-03-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2300", + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 250, + "market_countries": "Canada , Puerto Rico , USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/motorola/2020/moto-g-power-2020-td-lte-us-64gb-xt2041-6-g8-power.json b/data/smartphone/motorola/2020/moto-g-power-2020-td-lte-us-64gb-xt2041-6-g8-power.json new file mode 100644 index 00000000000..1b804352470 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-g-power-2020-td-lte-us-64gb-xt2041-6-g8-power.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g-power-2020-td-lte-us-64gb-xt2041-6-g8-power", + "name": "Moto G Power 2020 TD-LTE US 64GB XT2041-6 / G8 Power", + "brand": "motorola", + "soc": "snapdragon-665", + "release_date": "2020-05-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2300", + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 250, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2020/moto-g-power-2020-td-lte-us-64gb-xt2041-7-g8-power.json b/data/smartphone/motorola/2020/moto-g-power-2020-td-lte-us-64gb-xt2041-7-g8-power.json new file mode 100644 index 00000000000..307c0adfe5b --- /dev/null +++ b/data/smartphone/motorola/2020/moto-g-power-2020-td-lte-us-64gb-xt2041-7-g8-power.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g-power-2020-td-lte-us-64gb-xt2041-7-g8-power", + "name": "Moto G Power 2020 TD-LTE US 64GB XT2041-7 / G8 Power", + "brand": "motorola", + "soc": "snapdragon-665", + "release_date": "2020-03-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2300", + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 250, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2020/moto-g-pro-2020-global-dual-sim-td-lte-128gb-xt2043-7-moto-g8-pro.json b/data/smartphone/motorola/2020/moto-g-pro-2020-global-dual-sim-td-lte-128gb-xt2043-7-moto-g8-pro.json new file mode 100644 index 00000000000..fd732b63b35 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-g-pro-2020-global-dual-sim-td-lte-128gb-xt2043-7-moto-g8-pro.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-g-pro-2020-global-dual-sim-td-lte-128gb-xt2043-7-moto-g8-pro", + "name": "Moto G Pro 2020 Global Dual SIM TD-LTE 128GB XT2043-7 / Moto G8 Pro", + "brand": "motorola", + "soc": "snapdragon-665", + "release_date": "2020-06-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2300", + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belgium , Chile , Colombia , Denmark , Estonia , Finland , France , Italy , Japan , Latvia , Lithuania , Malaysia , Netherlands , Norway , Portugal , Russia , Serbia , Singapore , Spain , Sweden , Thailand , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/motorola/2020/moto-g-pro-2020-global-td-lte-128gb-xt2043-7-g8-pro.json b/data/smartphone/motorola/2020/moto-g-pro-2020-global-td-lte-128gb-xt2043-7-g8-pro.json new file mode 100644 index 00000000000..9e127aa0ab6 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-g-pro-2020-global-td-lte-128gb-xt2043-7-g8-pro.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-g-pro-2020-global-td-lte-128gb-xt2043-7-g8-pro", + "name": "Moto G Pro 2020 Global TD-LTE 128GB XT2043-7 / G8 Pro", + "brand": "motorola", + "soc": "snapdragon-665", + "release_date": "2020-06-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2300", + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Chile , Colombia", + "market_regions": "South America" +} diff --git a/data/smartphone/motorola/2020/moto-g-stylus-2020-td-lte-na-128gb-xt2043-4-g8-stylus-xt2043-6.json b/data/smartphone/motorola/2020/moto-g-stylus-2020-td-lte-na-128gb-xt2043-4-g8-stylus-xt2043-6.json new file mode 100644 index 00000000000..8195ece2ea7 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-g-stylus-2020-td-lte-na-128gb-xt2043-4-g8-stylus-xt2043-6.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g-stylus-2020-td-lte-na-128gb-xt2043-4-g8-stylus-xt2043-6", + "name": "Moto G Stylus 2020 TD-LTE NA 128GB XT2043-4 / G8 Stylus XT2043-6", + "brand": "motorola", + "soc": "snapdragon-665", + "release_date": "2020-03-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2300", + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 299, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2020/moto-g-stylus-2020-td-lte-us-128gb-xt2043-5-g8-stylus.json b/data/smartphone/motorola/2020/moto-g-stylus-2020-td-lte-us-128gb-xt2043-5-g8-stylus.json new file mode 100644 index 00000000000..1c960649202 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-g-stylus-2020-td-lte-us-128gb-xt2043-5-g8-stylus.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g-stylus-2020-td-lte-us-128gb-xt2043-5-g8-stylus", + "name": "Moto G Stylus 2020 TD-LTE US 128GB XT2043-5 / G8 Stylus", + "brand": "motorola", + "soc": "snapdragon-665", + "release_date": "2020-03-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2300", + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 300, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2020/moto-g-stylus-2020-td-lte-us-128gb-xt2043-8-g8-stylus.json b/data/smartphone/motorola/2020/moto-g-stylus-2020-td-lte-us-128gb-xt2043-8-g8-stylus.json new file mode 100644 index 00000000000..6dc1770288d --- /dev/null +++ b/data/smartphone/motorola/2020/moto-g-stylus-2020-td-lte-us-128gb-xt2043-8-g8-stylus.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g-stylus-2020-td-lte-us-128gb-xt2043-8-g8-stylus", + "name": "Moto G Stylus 2020 TD-LTE US 128GB XT2043-8 / G8 Stylus", + "brand": "motorola", + "soc": "snapdragon-665", + "release_date": "2020-06-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2300", + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 300, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2020/moto-g8-dual-sim-lte-a-latam-xt2045-1.json b/data/smartphone/motorola/2020/moto-g8-dual-sim-lte-a-latam-xt2045-1.json new file mode 100644 index 00000000000..bb73dfabc3c --- /dev/null +++ b/data/smartphone/motorola/2020/moto-g8-dual-sim-lte-a-latam-xt2045-1.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-g8-dual-sim-lte-a-latam-xt2045-1", + "name": "Moto G8 Dual SIM LTE-A LATAM XT2045-1", + "brand": "motorola", + "soc": "snapdragon-665", + "release_date": "2020-03-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 188.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil", + "market_regions": "South America" +} diff --git a/data/smartphone/motorola/2020/moto-g8-dual-sim-td-lte-apac-xt2045-6.json b/data/smartphone/motorola/2020/moto-g8-dual-sim-td-lte-apac-xt2045-6.json new file mode 100644 index 00000000000..2bed7e7f37e --- /dev/null +++ b/data/smartphone/motorola/2020/moto-g8-dual-sim-td-lte-apac-xt2045-6.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-g8-dual-sim-td-lte-apac-xt2045-6", + "name": "Moto G8 Dual SIM TD-LTE APAC XT2045-6", + "brand": "motorola", + "soc": "snapdragon-665", + "release_date": "2020-04-28", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 188.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Japan", + "market_regions": "Asia , Australia" +} diff --git a/data/smartphone/motorola/2020/moto-g8-dual-sim-td-lte-emea-xt2045-2.json b/data/smartphone/motorola/2020/moto-g8-dual-sim-td-lte-emea-xt2045-2.json new file mode 100644 index 00000000000..96ae9df5b68 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-g8-dual-sim-td-lte-emea-xt2045-2.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-g8-dual-sim-td-lte-emea-xt2045-2", + "name": "Moto G8 Dual SIM TD-LTE EMEA XT2045-2", + "brand": "motorola", + "soc": "snapdragon-665", + "release_date": "2020-03-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 188.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Netherlands , Norway , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Sweden , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/motorola/2020/moto-g8-lte-a-latam-xt2045-1.json b/data/smartphone/motorola/2020/moto-g8-lte-a-latam-xt2045-1.json new file mode 100644 index 00000000000..d7fbe6cdc5a --- /dev/null +++ b/data/smartphone/motorola/2020/moto-g8-lte-a-latam-xt2045-1.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-g8-lte-a-latam-xt2045-1", + "name": "Moto G8 LTE-A LATAM XT2045-1", + "brand": "motorola", + "soc": "snapdragon-665", + "release_date": "2020-03-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 188.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/motorola/2020/moto-g8-optimo-maxx-td-lte-us-xt2041dl-g8-power.json b/data/smartphone/motorola/2020/moto-g8-optimo-maxx-td-lte-us-xt2041dl-g8-power.json new file mode 100644 index 00000000000..f663fc3b4f3 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-g8-optimo-maxx-td-lte-us-xt2041dl-g8-power.json @@ -0,0 +1,39 @@ +{ + "slug": "moto-g8-optimo-maxx-td-lte-us-xt2041dl-g8-power", + "name": "Moto G8 Optimo Maxx TD-LTE US XT2041DL / G8 Power", + "brand": "motorola", + "soc": "snapdragon-665", + "release_date": "2020-05-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "display": { + "size_inch": 6.4, + "resolution": "1080x2300", + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2020/moto-g8-power-dual-sim-lte-a-latam-xt2041-1.json b/data/smartphone/motorola/2020/moto-g8-power-dual-sim-lte-a-latam-xt2041-1.json new file mode 100644 index 00000000000..2c5be0ffb84 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-g8-power-dual-sim-lte-a-latam-xt2041-1.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-g8-power-dual-sim-lte-a-latam-xt2041-1", + "name": "Moto G8 Power Dual SIM LTE-A LATAM XT2041-1", + "brand": "motorola", + "soc": "snapdragon-665", + "release_date": "2020-04-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2300", + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Costa Rica", + "market_regions": "Central America , South America" +} diff --git a/data/smartphone/motorola/2020/moto-g8-power-global-dual-sim-td-lte-xt2041-3.json b/data/smartphone/motorola/2020/moto-g8-power-global-dual-sim-td-lte-xt2041-3.json new file mode 100644 index 00000000000..4e082885f55 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-g8-power-global-dual-sim-td-lte-xt2041-3.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-g8-power-global-dual-sim-td-lte-xt2041-3", + "name": "Moto G8 Power Global Dual SIM TD-LTE XT2041-3", + "brand": "motorola", + "soc": "snapdragon-665", + "release_date": "2020-04-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2300", + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Italy , Japan , Latvia , Lithuania , Netherlands , Norway , Pakistan , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , Turkey , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/motorola/2020/moto-g8-power-global-td-lte-xt2041-3.json b/data/smartphone/motorola/2020/moto-g8-power-global-td-lte-xt2041-3.json new file mode 100644 index 00000000000..01d447cfc57 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-g8-power-global-td-lte-xt2041-3.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-g8-power-global-td-lte-xt2041-3", + "name": "Moto G8 Power Global TD-LTE XT2041-3", + "brand": "motorola", + "soc": "snapdragon-665", + "release_date": "2020-04-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2300", + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Cyprus , Croatia , Denmark , Finland , France , Greece , Hungary , Ireland , Italy , Netherlands , Norway , Poland , Portugal , Slovakia , Spain , Sweden , Switzerland , Taiwan , Turkey", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/motorola/2020/moto-g8-power-lte-a-latam-xt2041-1.json b/data/smartphone/motorola/2020/moto-g8-power-lte-a-latam-xt2041-1.json new file mode 100644 index 00000000000..d0bb7b64a60 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-g8-power-lte-a-latam-xt2041-1.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-g8-power-lte-a-latam-xt2041-1", + "name": "Moto G8 Power LTE-A LATAM XT2041-1", + "brand": "motorola", + "soc": "snapdragon-665", + "release_date": "2020-04-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2300", + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Chile , Colombia , Mexico , Panama , USA", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/motorola/2020/moto-g8-td-lte-apac-xt2045-6.json b/data/smartphone/motorola/2020/moto-g8-td-lte-apac-xt2045-6.json new file mode 100644 index 00000000000..be09a17b83a --- /dev/null +++ b/data/smartphone/motorola/2020/moto-g8-td-lte-apac-xt2045-6.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-g8-td-lte-apac-xt2045-6", + "name": "Moto G8 TD-LTE APAC XT2045-6", + "brand": "motorola", + "soc": "snapdragon-665", + "release_date": "2020-04-28", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 188.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Japan", + "market_regions": "Asia , Australia" +} diff --git a/data/smartphone/motorola/2020/moto-g9-play-2020-dual-sim-lte-a-latam-64gb-xt2083-1-moto-g9.json b/data/smartphone/motorola/2020/moto-g9-play-2020-dual-sim-lte-a-latam-64gb-xt2083-1-moto-g9.json new file mode 100644 index 00000000000..f2574295ce5 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-g9-play-2020-dual-sim-lte-a-latam-64gb-xt2083-1-moto-g9.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g9-play-2020-dual-sim-lte-a-latam-64gb-xt2083-1-moto-g9", + "name": "Moto G9 Play 2020 Dual SIM LTE-A LATAM 64GB XT2083-1 / Moto G9", + "brand": "motorola", + "soc": "snapdragon-662", + "release_date": "2020-09-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1599, + "market_countries": "Brazil , Colombia", + "market_regions": "South America" +} diff --git a/data/smartphone/motorola/2020/moto-g9-play-2020-dual-sim-td-lte-apac-128gb-xt2083-5.json b/data/smartphone/motorola/2020/moto-g9-play-2020-dual-sim-td-lte-apac-128gb-xt2083-5.json new file mode 100644 index 00000000000..36dbe6765ea --- /dev/null +++ b/data/smartphone/motorola/2020/moto-g9-play-2020-dual-sim-td-lte-apac-128gb-xt2083-5.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-g9-play-2020-dual-sim-td-lte-apac-128gb-xt2083-5", + "name": "Moto G9 Play 2020 Dual SIM TD-LTE APAC 128GB XT2083-5", + "brand": "motorola", + "soc": "snapdragon-662", + "release_date": "2020-09-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Jordan , Lebanon , Saudi Arabia , Thailand , UAE", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/motorola/2020/moto-g9-play-2020-global-dual-sim-td-lte-64gb-xt2083-3-xt2083-6.json b/data/smartphone/motorola/2020/moto-g9-play-2020-global-dual-sim-td-lte-64gb-xt2083-3-xt2083-6.json new file mode 100644 index 00000000000..06a45703804 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-g9-play-2020-global-dual-sim-td-lte-64gb-xt2083-3-xt2083-6.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g9-play-2020-global-dual-sim-td-lte-64gb-xt2083-3-xt2083-6", + "name": "Moto G9 Play 2020 Global Dual SIM TD-LTE 64GB XT2083-3 / XT2083-6", + "brand": "motorola", + "soc": "snapdragon-662", + "release_date": "2020-08-31", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 160, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Canada , Cyprus , Croatia , Czech , France , Greece , Germany , Hungary , India , Italy , Japan , Netherlands , Poland , Portugal , Russia , Romania , Serbia , Slovakia , Slovenia , Spain , Switzerland , UK , Ukraine , USA", + "market_regions": "Asia , Australia , Eastern Europe , Europe , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/motorola/2020/moto-g9-play-2020-lte-a-latam-64gb-xt2083-1.json b/data/smartphone/motorola/2020/moto-g9-play-2020-lte-a-latam-64gb-xt2083-1.json new file mode 100644 index 00000000000..cdac7806b74 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-g9-play-2020-lte-a-latam-64gb-xt2083-1.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-g9-play-2020-lte-a-latam-64gb-xt2083-1", + "name": "Moto G9 Play 2020 LTE-A LATAM 64GB XT2083-1", + "brand": "motorola", + "soc": "snapdragon-662", + "release_date": "2020-09-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Chile , Mexico , Peru", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/motorola/2020/moto-g9-plus-2020-dual-sim-latam-lte-a-xt2087-1.json b/data/smartphone/motorola/2020/moto-g9-plus-2020-dual-sim-latam-lte-a-xt2087-1.json new file mode 100644 index 00000000000..2d38279ff5e --- /dev/null +++ b/data/smartphone/motorola/2020/moto-g9-plus-2020-dual-sim-latam-lte-a-xt2087-1.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g9-plus-2020-dual-sim-latam-lte-a-xt2087-1", + "name": "Moto G9 Plus 2020 Dual SIM LATAM LTE-A XT2087-1", + "brand": "motorola", + "soc": "snapdragon-730", + "release_date": "2020-09-13", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 223.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 2499, + "market_countries": "Brazil", + "market_regions": "South America" +} diff --git a/data/smartphone/motorola/2020/moto-g9-plus-2020-global-dual-sim-lte-a-xt2087-2.json b/data/smartphone/motorola/2020/moto-g9-plus-2020-global-dual-sim-lte-a-xt2087-2.json new file mode 100644 index 00000000000..530492173a7 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-g9-plus-2020-global-dual-sim-lte-a-xt2087-2.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g9-plus-2020-global-dual-sim-lte-a-xt2087-2", + "name": "Moto G9 Plus 2020 Global Dual SIM LTE-A XT2087-2", + "brand": "motorola", + "soc": "snapdragon-730", + "release_date": "2020-09-17", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 223.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 269, + "market_countries": "Belgium , Cyprus , Croatia , France , Germany , Greece , Hungary , Italy , Netherlands , Poland , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Spain , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/motorola/2020/moto-g9-plus-2020-latam-lte-a-xt2087-1.json b/data/smartphone/motorola/2020/moto-g9-plus-2020-latam-lte-a-xt2087-1.json new file mode 100644 index 00000000000..e21f12cf35f --- /dev/null +++ b/data/smartphone/motorola/2020/moto-g9-plus-2020-latam-lte-a-xt2087-1.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-g9-plus-2020-latam-lte-a-xt2087-1", + "name": "Moto G9 Plus 2020 LATAM LTE-A XT2087-1", + "brand": "motorola", + "soc": "snapdragon-730", + "release_date": "2020-09-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 223.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Colombia , Mexico , Peru", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/motorola/2020/moto-g9-power-2020-dual-sim-lte-a-latam-128gb-xt2091-4.json b/data/smartphone/motorola/2020/moto-g9-power-2020-dual-sim-lte-a-latam-128gb-xt2091-4.json new file mode 100644 index 00000000000..c144c6a2c8d --- /dev/null +++ b/data/smartphone/motorola/2020/moto-g9-power-2020-dual-sim-lte-a-latam-128gb-xt2091-4.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-g9-power-2020-dual-sim-lte-a-latam-128gb-xt2091-4", + "name": "Moto G9 Power 2020 Dual SIM LTE-A LATAM 128GB XT2091-4", + "brand": "motorola", + "soc": "snapdragon-662", + "release_date": "2020-12-01", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 221.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "720x1640", + "type": "Color IPS TFT LCD display", + "ppi": 263 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil", + "market_regions": "South America" +} diff --git a/data/smartphone/motorola/2020/moto-g9-power-2020-global-dual-sim-td-lte-128gb-xt2091-3.json b/data/smartphone/motorola/2020/moto-g9-power-2020-global-dual-sim-td-lte-128gb-xt2091-3.json new file mode 100644 index 00000000000..004ab537930 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-g9-power-2020-global-dual-sim-td-lte-128gb-xt2091-3.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g9-power-2020-global-dual-sim-td-lte-128gb-xt2091-3", + "name": "Moto G9 Power 2020 Global Dual SIM TD-LTE 128GB XT2091-3", + "brand": "motorola", + "soc": "snapdragon-662", + "release_date": "2020-11-01", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 221.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "720x1640", + "type": "Color IPS TFT LCD display", + "ppi": 263 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 199, + "market_countries": "Austria , Belgium , Bulgaria , Canada , Cyprus , Czech , France , Germany , Greece , Hungary , India , Ireland , Italy , Japan , Jordan , Lebanon , Netherlands , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Spain , Switzerland , UAE , UK , Ukraine , USA", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/motorola/2020/moto-g9-power-2020-global-td-lte-128gb-xt2091-3.json b/data/smartphone/motorola/2020/moto-g9-power-2020-global-td-lte-128gb-xt2091-3.json new file mode 100644 index 00000000000..a15994d9d85 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-g9-power-2020-global-td-lte-128gb-xt2091-3.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-g9-power-2020-global-td-lte-128gb-xt2091-3", + "name": "Moto G9 Power 2020 Global TD-LTE 128GB XT2091-3", + "brand": "motorola", + "soc": "snapdragon-662", + "release_date": "2020-11-01", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 211.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "720x1640", + "type": "Color IPS TFT LCD display", + "ppi": 263 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Ireland , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/motorola/2020/moto-g9-power-2020-latam-128gb-xt2091-4.json b/data/smartphone/motorola/2020/moto-g9-power-2020-latam-128gb-xt2091-4.json new file mode 100644 index 00000000000..de7052ee1dc --- /dev/null +++ b/data/smartphone/motorola/2020/moto-g9-power-2020-latam-128gb-xt2091-4.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-g9-power-2020-latam-128gb-xt2091-4", + "name": "Moto G9 Power 2020 LATAM 128GB XT2091-4", + "brand": "motorola", + "soc": "snapdragon-662", + "release_date": "2020-12-01", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 221.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "720x1640", + "type": "Color IPS TFT LCD display", + "ppi": 263 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Chile , Colombia , Mexico , Peru", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/motorola/2020/moto-one-5g-2020-td-lte-us-128gb-xt2075-2.json b/data/smartphone/motorola/2020/moto-one-5g-2020-td-lte-us-128gb-xt2075-2.json new file mode 100644 index 00000000000..d1f7f8b5aaf --- /dev/null +++ b/data/smartphone/motorola/2020/moto-one-5g-2020-td-lte-us-128gb-xt2075-2.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-one-5g-2020-td-lte-us-128gb-xt2075-2", + "name": "Moto One 5G 2020 TD-LTE US 128GB XT2075-2", + "brand": "motorola", + "soc": "snapdragon-765", + "release_date": "2020-09-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 207.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2520", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 550, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2020/moto-one-5g-uw-2020-lte-a-us-128gb-xt2075-1.json b/data/smartphone/motorola/2020/moto-one-5g-uw-2020-lte-a-us-128gb-xt2075-1.json new file mode 100644 index 00000000000..eafed6f85d4 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-one-5g-uw-2020-lte-a-us-128gb-xt2075-1.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-one-5g-uw-2020-lte-a-us-128gb-xt2075-1", + "name": "Moto One 5G UW 2020 LTE-A US 128GB XT2075-1", + "brand": "motorola", + "soc": "snapdragon-765", + "release_date": "2020-10-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 207.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2520", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 550, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2020/moto-one-fusion-dual-sim-latam-lte-a-xt2067-2.json b/data/smartphone/motorola/2020/moto-one-fusion-dual-sim-latam-lte-a-xt2067-2.json new file mode 100644 index 00000000000..75b5ba80d0b --- /dev/null +++ b/data/smartphone/motorola/2020/moto-one-fusion-dual-sim-latam-lte-a-xt2067-2.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-one-fusion-dual-sim-latam-lte-a-xt2067-2", + "name": "Moto One Fusion+ Dual SIM LATAM LTE-A XT2067-2", + "brand": "motorola", + "soc": "snapdragon-730", + "release_date": "2020-06-24", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil", + "market_regions": "South America" +} diff --git a/data/smartphone/motorola/2020/moto-one-fusion-dual-sim-td-lte-apac-xt2067-3.json b/data/smartphone/motorola/2020/moto-one-fusion-dual-sim-td-lte-apac-xt2067-3.json new file mode 100644 index 00000000000..ed805d2c01f --- /dev/null +++ b/data/smartphone/motorola/2020/moto-one-fusion-dual-sim-td-lte-apac-xt2067-3.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-one-fusion-dual-sim-td-lte-apac-xt2067-3", + "name": "Moto One Fusion+ Dual SIM TD-LTE APAC XT2067-3", + "brand": "motorola", + "soc": "snapdragon-730", + "release_date": "2020-06-24", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/motorola/2020/moto-one-fusion-dual-sim-td-lte-emea-xt2067-1.json b/data/smartphone/motorola/2020/moto-one-fusion-dual-sim-td-lte-emea-xt2067-1.json new file mode 100644 index 00000000000..d7c992f04f3 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-one-fusion-dual-sim-td-lte-emea-xt2067-1.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-one-fusion-dual-sim-td-lte-emea-xt2067-1", + "name": "Moto One Fusion+ Dual SIM TD-LTE EMEA XT2067-1", + "brand": "motorola", + "soc": "snapdragon-730", + "release_date": "2020-06-24", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belarus , Belgium , Bulgaria , Cyprus , France , Germany , Greece , Italy , Netherlands , Pakistan , Poland , Romania , Russia , Saudi Arabia , Serbia , Spain , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/motorola/2020/moto-one-fusion-latam-lte-a-xt2067-2.json b/data/smartphone/motorola/2020/moto-one-fusion-latam-lte-a-xt2067-2.json new file mode 100644 index 00000000000..9c9ecb1bf7a --- /dev/null +++ b/data/smartphone/motorola/2020/moto-one-fusion-latam-lte-a-xt2067-2.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-one-fusion-latam-lte-a-xt2067-2", + "name": "Moto One Fusion+ LATAM LTE-A XT2067-2", + "brand": "motorola", + "soc": "snapdragon-730", + "release_date": "2020-06-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2020/moto-one-hyper-global-dual-sim-td-lte-xt2027-3.json b/data/smartphone/motorola/2020/moto-one-hyper-global-dual-sim-td-lte-xt2027-3.json new file mode 100644 index 00000000000..d29931d50e6 --- /dev/null +++ b/data/smartphone/motorola/2020/moto-one-hyper-global-dual-sim-td-lte-xt2027-3.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-one-hyper-global-dual-sim-td-lte-xt2027-3", + "name": "Moto One Hyper Global Dual SIM TD-LTE XT2027-3", + "brand": "motorola", + "soc": "snapdragon-675", + "release_date": "2020-01-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belarus , Belgium , Bulgaria , Cyprus , France , Germany , Greece , Italy , Japan , Netherlands , Pakistan , Poland , Romania , Russia , Saudi Arabia , Spain , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/motorola/2020/razr-1st-gen-2019-global-td-lte-xt2000-2.json b/data/smartphone/motorola/2020/razr-1st-gen-2019-global-td-lte-xt2000-2.json new file mode 100644 index 00000000000..46e909de255 --- /dev/null +++ b/data/smartphone/motorola/2020/razr-1st-gen-2019-global-td-lte-xt2000-2.json @@ -0,0 +1,42 @@ +{ + "slug": "razr-1st-gen-2019-global-td-lte-xt2000-2", + "name": "RAZR 1st gen 2019 Global TD-LTE XT2000-2", + "brand": "motorola", + "soc": "snapdragon-710", + "release_date": "2020-04-02", + "ram_gb": 6.0, + "battery_mah": 2510, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "876x2142", + "type": "AM-OLED display", + "ppi": 373 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Australia , Austria , Belgium , Brazil , Canada , Chile , Cyprus , Czech , Denmark , Estonia , Finland , France , Germany , Greece , HK , India , Indonesia , Ireland , Israel , Italy , Jordan , Latvia , Lithuania , Malaysia , Mexico , Netherlands , Norway , NZ , Pakistan , Philippines , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Singapore , Slovenia , Spain , Switzerland , Sweden , Turkey , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/motorola/2020/razr-1st-gen-2019-lte-a-na-xt2000-1.json b/data/smartphone/motorola/2020/razr-1st-gen-2019-lte-a-na-xt2000-1.json new file mode 100644 index 00000000000..43c825274dd --- /dev/null +++ b/data/smartphone/motorola/2020/razr-1st-gen-2019-lte-a-na-xt2000-1.json @@ -0,0 +1,42 @@ +{ + "slug": "razr-1st-gen-2019-lte-a-na-xt2000-1", + "name": "RAZR 1st gen 2019 LTE-A NA XT2000-1", + "brand": "motorola", + "soc": "snapdragon-710", + "release_date": "2020-01-09", + "ram_gb": 6.0, + "battery_mah": 2510, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "876x2142", + "type": "AM-OLED display", + "ppi": 373 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2020/razr-5g-2nd-gen-2020-dual-sim-td-lte-na-xt2071-3.json b/data/smartphone/motorola/2020/razr-5g-2nd-gen-2020-dual-sim-td-lte-na-xt2071-3.json new file mode 100644 index 00000000000..24981cad606 --- /dev/null +++ b/data/smartphone/motorola/2020/razr-5g-2nd-gen-2020-dual-sim-td-lte-na-xt2071-3.json @@ -0,0 +1,42 @@ +{ + "slug": "razr-5g-2nd-gen-2020-dual-sim-td-lte-na-xt2071-3", + "name": "RAZR 5G 2nd gen 2020 Dual SIM TD-LTE NA XT2071-3", + "brand": "motorola", + "soc": "snapdragon-765", + "release_date": "2020-09-16", + "ram_gb": 8.0, + "battery_mah": 2800, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.2, + "resolution": "876x2142", + "type": "AM-OLED display", + "ppi": 373 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Canada , Mexico , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2020/razr-5g-2nd-gen-2020-dual-sim-td-lte-us-xt2071-2.json b/data/smartphone/motorola/2020/razr-5g-2nd-gen-2020-dual-sim-td-lte-us-xt2071-2.json new file mode 100644 index 00000000000..d443413539a --- /dev/null +++ b/data/smartphone/motorola/2020/razr-5g-2nd-gen-2020-dual-sim-td-lte-us-xt2071-2.json @@ -0,0 +1,43 @@ +{ + "slug": "razr-5g-2nd-gen-2020-dual-sim-td-lte-us-xt2071-2", + "name": "RAZR 5G 2nd gen 2020 Dual SIM TD-LTE US XT2071-2", + "brand": "motorola", + "soc": "snapdragon-765", + "release_date": "2020-09-16", + "ram_gb": 8.0, + "battery_mah": 2800, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.2, + "resolution": "876x2142", + "type": "AM-OLED display", + "ppi": 373 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1399, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2020/razr-5g-2nd-gen-2020-dual-sim-td-lte-us-xt2071-5.json b/data/smartphone/motorola/2020/razr-5g-2nd-gen-2020-dual-sim-td-lte-us-xt2071-5.json new file mode 100644 index 00000000000..6179d2d6bba --- /dev/null +++ b/data/smartphone/motorola/2020/razr-5g-2nd-gen-2020-dual-sim-td-lte-us-xt2071-5.json @@ -0,0 +1,43 @@ +{ + "slug": "razr-5g-2nd-gen-2020-dual-sim-td-lte-us-xt2071-5", + "name": "RAZR 5G 2nd gen 2020 Dual SIM TD-LTE US XT2071-5", + "brand": "motorola", + "soc": "snapdragon-765", + "release_date": "2020-09-17", + "ram_gb": 8.0, + "battery_mah": 2800, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.2, + "resolution": "876x2142", + "type": "AM-OLED display", + "ppi": 373 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1399, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2020/razr-5g-2nd-gen-2020-global-dual-sim-td-lte-xt2071-4.json b/data/smartphone/motorola/2020/razr-5g-2nd-gen-2020-global-dual-sim-td-lte-xt2071-4.json new file mode 100644 index 00000000000..414a4034556 --- /dev/null +++ b/data/smartphone/motorola/2020/razr-5g-2nd-gen-2020-global-dual-sim-td-lte-xt2071-4.json @@ -0,0 +1,43 @@ +{ + "slug": "razr-5g-2nd-gen-2020-global-dual-sim-td-lte-xt2071-4", + "name": "RAZR 5G 2nd gen 2020 Global Dual SIM TD-LTE XT2071-4", + "brand": "motorola", + "soc": "snapdragon-765", + "release_date": "2020-09-16", + "ram_gb": 8.0, + "battery_mah": 2800, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.2, + "resolution": "876x2142", + "type": "AM-OLED display", + "ppi": 373 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1200, + "market_countries": "Argentina , Armenia , Australia , Austria , Belarus , Belgium , Brazil , Bulgaria , Canada , Chile , China , Cyprus , Croatia , Czech , Denmark , Egypt , Estonia , Finland , France , Greece , Germany , HK , Hungary , India , Indonesia , Ireland , Israel , Italy , Japan , Jordan , Kazakhstan , Kuwait , Latvia , Lithuania , Malaysia , Mexico , Netherlands , Norway , NZ , Pakistan , Philippines , Poland , Portugal , Romania , Russia , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Switzerland , Sweden , Taiwan , Tunisie , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/motorola/2021/g-power-3rd-gen-2022-td-lte-na-64gb-xt2165-5.json b/data/smartphone/motorola/2021/g-power-3rd-gen-2022-td-lte-na-64gb-xt2165-5.json new file mode 100644 index 00000000000..0627c14c2cb --- /dev/null +++ b/data/smartphone/motorola/2021/g-power-3rd-gen-2022-td-lte-na-64gb-xt2165-5.json @@ -0,0 +1,44 @@ +{ + "slug": "g-power-3rd-gen-2022-td-lte-na-64gb-xt2165-5", + "name": "G Power 3rd gen 2022 TD-LTE NA 64GB XT2165-5", + "brand": "motorola", + "soc": "helio-g37", + "release_date": "2021-12-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 203.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 200, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2021/moto-e20-2021-dual-sim-td-lte-latam-32gb-xt2155-1.json b/data/smartphone/motorola/2021/moto-e20-2021-dual-sim-td-lte-latam-32gb-xt2155-1.json new file mode 100644 index 00000000000..9f0bf5ef6e3 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-e20-2021-dual-sim-td-lte-latam-32gb-xt2155-1.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-e20-2021-dual-sim-td-lte-latam-32gb-xt2155-1", + "name": "Moto E20 2021 Dual SIM TD-LTE LATAM 32GB XT2155-1", + "brand": "motorola", + "soc": "unisoc-t606", + "release_date": "2021-09-16", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 999, + "market_countries": "Brazil", + "market_regions": "South America" +} diff --git a/data/smartphone/motorola/2021/moto-e20-2021-global-dual-sim-td-lte-32gb-xt2155-3.json b/data/smartphone/motorola/2021/moto-e20-2021-global-dual-sim-td-lte-32gb-xt2155-3.json new file mode 100644 index 00000000000..7049007e05d --- /dev/null +++ b/data/smartphone/motorola/2021/moto-e20-2021-global-dual-sim-td-lte-32gb-xt2155-3.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-e20-2021-global-dual-sim-td-lte-32gb-xt2155-3", + "name": "Moto E20 2021 Global Dual SIM TD-LTE 32GB XT2155-3", + "brand": "motorola", + "soc": "unisoc-t606", + "release_date": "2021-10-04", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Cyprus , Czech , Estonia , Finland , France , Greece , Germany , Hungary , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Sweden , Taiwan , Thailand , UAE", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/motorola/2021/moto-e40-2021-dual-sim-td-lte-latam-apac-64gb-xt2159-1-xt2159-2.json b/data/smartphone/motorola/2021/moto-e40-2021-dual-sim-td-lte-latam-apac-64gb-xt2159-1-xt2159-2.json new file mode 100644 index 00000000000..f9869c62722 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-e40-2021-dual-sim-td-lte-latam-apac-64gb-xt2159-1-xt2159-2.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-e40-2021-dual-sim-td-lte-latam-apac-64gb-xt2159-1-xt2159-2", + "name": "Moto E40 2021 Dual SIM TD-LTE LATAM APAC 64GB XT2159-1 / XT2159-2", + "brand": "motorola", + "soc": "tiger-t700", + "release_date": "2021-10-11", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1499, + "market_countries": "Brazil , Colombia , India", + "market_regions": "Asia , South America" +} diff --git a/data/smartphone/motorola/2021/moto-e40-2021-global-dual-sim-td-lte-64gb-xt2159-3-xt2159-6.json b/data/smartphone/motorola/2021/moto-e40-2021-global-dual-sim-td-lte-64gb-xt2159-3-xt2159-6.json new file mode 100644 index 00000000000..c50c3778b5d --- /dev/null +++ b/data/smartphone/motorola/2021/moto-e40-2021-global-dual-sim-td-lte-64gb-xt2159-3-xt2159-6.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-e40-2021-global-dual-sim-td-lte-64gb-xt2159-3-xt2159-6", + "name": "Moto E40 2021 Global Dual SIM TD-LTE 64GB XT2159-3 / XT2159-6", + "brand": "motorola", + "soc": "tiger-t700", + "release_date": "2021-10-17", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 140, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Cyprus , Czech , Estonia , Finland , France , Greece , Germany , Hungary , Italy , Japan , Latvia , Lithuania , Netherlands , Norway , NZ , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Sweden , Taiwan , Thailand , UAE , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/motorola/2021/moto-e7-2020-dual-sim-td-lte-apac-64gb-xt2095-3.json b/data/smartphone/motorola/2021/moto-e7-2020-dual-sim-td-lte-apac-64gb-xt2095-3.json new file mode 100644 index 00000000000..6bcfe208630 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-e7-2020-dual-sim-td-lte-apac-64gb-xt2095-3.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-e7-2020-dual-sim-td-lte-apac-64gb-xt2095-3", + "name": "Moto E7 2020 Dual SIM TD-LTE APAC 64GB XT2095-3", + "brand": "motorola", + "soc": "helio-g25", + "release_date": "2021-02-26", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan , Malaysia , Philippines , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/motorola/2021/moto-e7-power-2021-dual-sim-lte-latam-32gb-xt2097-5.json b/data/smartphone/motorola/2021/moto-e7-power-2021-dual-sim-lte-latam-32gb-xt2097-5.json new file mode 100644 index 00000000000..59398b8053d --- /dev/null +++ b/data/smartphone/motorola/2021/moto-e7-power-2021-dual-sim-lte-latam-32gb-xt2097-5.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-e7-power-2021-dual-sim-lte-latam-32gb-xt2097-5", + "name": "Moto E7 Power 2021 Dual SIM LTE LATAM 32GB XT2097-5", + "brand": "motorola", + "soc": "helio-g25", + "release_date": "2021-02-01", + "ram_gb": 2.0, + "battery_mah": 5000, + "weight_g": 199.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1099, + "market_countries": "Brazil , Peru", + "market_regions": "South America" +} diff --git a/data/smartphone/motorola/2021/moto-e7-power-2021-dual-sim-td-lte-apac-32gb-xt2097-7.json b/data/smartphone/motorola/2021/moto-e7-power-2021-dual-sim-td-lte-apac-32gb-xt2097-7.json new file mode 100644 index 00000000000..93d529044b4 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-e7-power-2021-dual-sim-td-lte-apac-32gb-xt2097-7.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-e7-power-2021-dual-sim-td-lte-apac-32gb-xt2097-7", + "name": "Moto E7 Power 2021 Dual SIM TD-LTE APAC 32GB XT2097-7", + "brand": "motorola", + "soc": "helio-g25", + "release_date": "2021-02-26", + "ram_gb": 2.0, + "battery_mah": 5000, + "weight_g": 199.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/motorola/2021/moto-e7-power-2021-global-dual-sim-td-lte-32gb-xt2097-6.json b/data/smartphone/motorola/2021/moto-e7-power-2021-global-dual-sim-td-lte-32gb-xt2097-6.json new file mode 100644 index 00000000000..5f2e58d3833 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-e7-power-2021-global-dual-sim-td-lte-32gb-xt2097-6.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-e7-power-2021-global-dual-sim-td-lte-32gb-xt2097-6", + "name": "Moto E7 Power 2021 Global Dual SIM TD-LTE 32GB XT2097-6", + "brand": "motorola", + "soc": "helio-g25", + "release_date": "2021-02-26", + "ram_gb": 2.0, + "battery_mah": 5000, + "weight_g": 199.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Germany , India , Pakistan , Poland , Russia , Serbia , Thailand , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/motorola/2021/moto-edge-20-fusion-5g-premium-edition-2021-global-dual-sim-td-lte-128gb-xt2139-2.json b/data/smartphone/motorola/2021/moto-edge-20-fusion-5g-premium-edition-2021-global-dual-sim-td-lte-128gb-xt2139-2.json new file mode 100644 index 00000000000..72c0c7b78cf --- /dev/null +++ b/data/smartphone/motorola/2021/moto-edge-20-fusion-5g-premium-edition-2021-global-dual-sim-td-lte-128gb-xt2139-2.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-edge-20-fusion-5g-premium-edition-2021-global-dual-sim-td-lte-128gb-xt2139-2", + "name": "Moto Edge 20 Fusion 5G Premium Edition 2021 Global Dual SIM TD-LTE 128GB XT2139-2", + "brand": "motorola", + "soc": "dimensity-800", + "release_date": "2021-09-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/motorola/2021/moto-edge-20-fusion-5g-standard-edition-2021-global-dual-sim-td-lte-128gb-xt2139-2.json b/data/smartphone/motorola/2021/moto-edge-20-fusion-5g-standard-edition-2021-global-dual-sim-td-lte-128gb-xt2139-2.json new file mode 100644 index 00000000000..f89df7bda82 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-edge-20-fusion-5g-standard-edition-2021-global-dual-sim-td-lte-128gb-xt2139-2.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-edge-20-fusion-5g-standard-edition-2021-global-dual-sim-td-lte-128gb-xt2139-2", + "name": "Moto Edge 20 Fusion 5G Standard Edition 2021 Global Dual SIM TD-LTE 128GB XT2139-2", + "brand": "motorola", + "soc": "dimensity-800", + "release_date": "2021-09-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , India , Japan", + "market_regions": "Asia , Australia" +} diff --git a/data/smartphone/motorola/2021/moto-edge-20-lite-5g-2021-dual-sim-td-lte-latam-128gb-xt2139-1.json b/data/smartphone/motorola/2021/moto-edge-20-lite-5g-2021-dual-sim-td-lte-latam-128gb-xt2139-1.json new file mode 100644 index 00000000000..6d71d74bf86 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-edge-20-lite-5g-2021-dual-sim-td-lte-latam-128gb-xt2139-1.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-edge-20-lite-5g-2021-dual-sim-td-lte-latam-128gb-xt2139-1", + "name": "Moto Edge 20 Lite 5G 2021 Dual SIM TD-LTE LATAM 128GB XT2139-1", + "brand": "motorola", + "soc": "dimensity-800", + "release_date": "2021-08-16", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 2999, + "market_countries": "Brazil , Peru", + "market_regions": "Asia , South America" +} diff --git a/data/smartphone/motorola/2021/moto-edge-20-lite-5g-2021-global-dual-sim-td-lte-128gb-xt2139-1.json b/data/smartphone/motorola/2021/moto-edge-20-lite-5g-2021-global-dual-sim-td-lte-128gb-xt2139-1.json new file mode 100644 index 00000000000..b9a28dd6b3c --- /dev/null +++ b/data/smartphone/motorola/2021/moto-edge-20-lite-5g-2021-global-dual-sim-td-lte-128gb-xt2139-1.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-edge-20-lite-5g-2021-global-dual-sim-td-lte-128gb-xt2139-1", + "name": "Moto Edge 20 Lite 5G 2021 Global Dual SIM TD-LTE 128GB XT2139-1", + "brand": "motorola", + "soc": "dimensity-720", + "release_date": "2021-08-16", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 299, + "market_countries": "Austria , Belgium , Bulgaria , Cyprus , Czech , Denmark , Finland , France , Germany , Greece , HK , Hungary , Ireland , Italy , Japan , Malaysia , Netherlands , Norway , Poland , Portugal , Romania , Russia , Singapore , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/motorola/2021/moto-edge-20-lite-5g-2021-td-lte-latam-128gb-xt2139-1.json b/data/smartphone/motorola/2021/moto-edge-20-lite-5g-2021-td-lte-latam-128gb-xt2139-1.json new file mode 100644 index 00000000000..08b5a657506 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-edge-20-lite-5g-2021-td-lte-latam-128gb-xt2139-1.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-edge-20-lite-5g-2021-td-lte-latam-128gb-xt2139-1", + "name": "Moto Edge 20 Lite 5G 2021 TD-LTE LATAM 128GB XT2139-1", + "brand": "motorola", + "soc": "dimensity-720", + "release_date": "2021-08-16", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Chile , Colombia , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/motorola/2021/moto-edge-20-pro-5g-2021-global-dual-sim-td-lte-256gb-xt2153-1.json b/data/smartphone/motorola/2021/moto-edge-20-pro-5g-2021-global-dual-sim-td-lte-256gb-xt2153-1.json new file mode 100644 index 00000000000..7d74dd31848 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-edge-20-pro-5g-2021-global-dual-sim-td-lte-256gb-xt2153-1.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-edge-20-pro-5g-2021-global-dual-sim-td-lte-256gb-xt2153-1", + "name": "Moto Edge 20 Pro 5G 2021 Global Dual SIM TD-LTE 256GB XT2153-1", + "brand": "motorola", + "soc": "snapdragon-870", + "release_date": "2021-08-16", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 650, + "market_countries": "Austria , Belgium , Brazil , Bulgaria , Chile , Cyprus , Czech , Denmark , Finland , France , Germany , Greece , HK , Hungary , Ireland , Italy , Japan , Malaysia , Netherlands , Norway , Peru , Poland , Portugal , Romania , Russia , Singapore , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , UK", + "market_regions": "Asia , Eastern Europe , Europe , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/motorola/2021/moto-edge-20-pro-5g-2021-global-td-lte-256gb-xt2153-1.json b/data/smartphone/motorola/2021/moto-edge-20-pro-5g-2021-global-td-lte-256gb-xt2153-1.json new file mode 100644 index 00000000000..2b75e540555 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-edge-20-pro-5g-2021-global-td-lte-256gb-xt2153-1.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-edge-20-pro-5g-2021-global-td-lte-256gb-xt2153-1", + "name": "Moto Edge 20 Pro 5G 2021 Global TD-LTE 256GB XT2153-1", + "brand": "motorola", + "soc": "snapdragon-870", + "release_date": "2021-08-16", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/motorola/2021/moto-edge-s-premium-edition-dual-sim-td-lte-cn-128gb-xt2125-4.json b/data/smartphone/motorola/2021/moto-edge-s-premium-edition-dual-sim-td-lte-cn-128gb-xt2125-4.json new file mode 100644 index 00000000000..d5116f74397 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-edge-s-premium-edition-dual-sim-td-lte-cn-128gb-xt2125-4.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-edge-s-premium-edition-dual-sim-td-lte-cn-128gb-xt2125-4", + "name": "Moto Edge S Premium Edition Dual SIM TD-LTE CN 128GB XT2125-4", + "brand": "motorola", + "soc": "snapdragon-870", + "release_date": "2021-02-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.69, + "resolution": "1080x2520", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 410 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2399, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/motorola/2021/moto-edge-s-premium-edition-dual-sim-td-lte-cn-256gb-xt2125-4.json b/data/smartphone/motorola/2021/moto-edge-s-premium-edition-dual-sim-td-lte-cn-256gb-xt2125-4.json new file mode 100644 index 00000000000..5f0bc9afa31 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-edge-s-premium-edition-dual-sim-td-lte-cn-256gb-xt2125-4.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-edge-s-premium-edition-dual-sim-td-lte-cn-256gb-xt2125-4", + "name": "Moto Edge S Premium Edition Dual SIM TD-LTE CN 256GB XT2125-4", + "brand": "motorola", + "soc": "snapdragon-870", + "release_date": "2021-02-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1080x2520", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 410 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2799, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/motorola/2021/moto-edge-s-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-xt2153-1.json b/data/smartphone/motorola/2021/moto-edge-s-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-xt2153-1.json new file mode 100644 index 00000000000..996375f50a6 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-edge-s-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-xt2153-1.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-edge-s-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-xt2153-1", + "name": "Moto Edge S Pro 5G 2021 Premium Edition Dual SIM TD-LTE CN 128GB XT2153-1", + "brand": "motorola", + "soc": "snapdragon-870", + "release_date": "2021-08-16", + "ram_gb": 8.0, + "battery_mah": 4520, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.69, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2399, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/motorola/2021/moto-edge-s-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2153-1.json b/data/smartphone/motorola/2021/moto-edge-s-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2153-1.json new file mode 100644 index 00000000000..ebbd8d22e90 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-edge-s-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2153-1.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-edge-s-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2153-1", + "name": "Moto Edge S Pro 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB XT2153-1", + "brand": "motorola", + "soc": "snapdragon-870", + "release_date": "2021-08-16", + "ram_gb": 8.0, + "battery_mah": 4520, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/motorola/2021/moto-edge-s-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2153-1.json b/data/smartphone/motorola/2021/moto-edge-s-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2153-1.json new file mode 100644 index 00000000000..6e5e2bf9f48 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-edge-s-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2153-1.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-edge-s-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2153-1", + "name": "Moto Edge S Pro 5G 2021 Standard Edition Dual SIM TD-LTE CN 128GB XT2153-1", + "brand": "motorola", + "soc": "snapdragon-870", + "release_date": "2021-08-16", + "ram_gb": 6.0, + "battery_mah": 4520, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.69, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2199, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/motorola/2021/moto-edge-s-pro-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-xt2153-1.json b/data/smartphone/motorola/2021/moto-edge-s-pro-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-xt2153-1.json new file mode 100644 index 00000000000..5cf2278ff52 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-edge-s-pro-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-xt2153-1.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-edge-s-pro-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-xt2153-1", + "name": "Moto Edge S Pro 5G 2021 Top Edition Dual SIM TD-LTE CN 256GB XT2153-1", + "brand": "motorola", + "soc": "snapdragon-870", + "release_date": "2021-08-16", + "ram_gb": 12.0, + "battery_mah": 4520, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 3299, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/motorola/2021/moto-edge-s-standard-edition-dual-sim-td-lte-cn-128gb-xt2125-4.json b/data/smartphone/motorola/2021/moto-edge-s-standard-edition-dual-sim-td-lte-cn-128gb-xt2125-4.json new file mode 100644 index 00000000000..fc2c0f08f96 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-edge-s-standard-edition-dual-sim-td-lte-cn-128gb-xt2125-4.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-edge-s-standard-edition-dual-sim-td-lte-cn-128gb-xt2125-4", + "name": "Moto Edge S Standard Edition Dual SIM TD-LTE CN 128GB XT2125-4", + "brand": "motorola", + "soc": "snapdragon-870", + "release_date": "2021-02-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.69, + "resolution": "1080x2520", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 410 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/motorola/2021/moto-edge-s30-5g-2021-base-edition-dual-sim-td-lte-cn-128gb-xt2175-2.json b/data/smartphone/motorola/2021/moto-edge-s30-5g-2021-base-edition-dual-sim-td-lte-cn-128gb-xt2175-2.json new file mode 100644 index 00000000000..2cb72bccd36 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-edge-s30-5g-2021-base-edition-dual-sim-td-lte-cn-128gb-xt2175-2.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-edge-s30-5g-2021-base-edition-dual-sim-td-lte-cn-128gb-xt2175-2", + "name": "Moto Edge S30 5G 2021 Base Edition Dual SIM TD-LTE CN 128GB XT2175-2", + "brand": "motorola", + "soc": "snapdragon-888-plus", + "release_date": "2021-12-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 202.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2460", + "refresh_hz": 144, + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1799, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/motorola/2021/moto-edge-s30-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2175-2.json b/data/smartphone/motorola/2021/moto-edge-s30-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2175-2.json new file mode 100644 index 00000000000..e5c9017cf05 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-edge-s30-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2175-2.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-edge-s30-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2175-2", + "name": "Moto Edge S30 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB XT2175-2", + "brand": "motorola", + "soc": "snapdragon-888-plus", + "release_date": "2021-12-01", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 202.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2460", + "refresh_hz": 144, + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 2399, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/motorola/2021/moto-edge-s30-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2175-2.json b/data/smartphone/motorola/2021/moto-edge-s30-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2175-2.json new file mode 100644 index 00000000000..6f2bf082068 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-edge-s30-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2175-2.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-edge-s30-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2175-2", + "name": "Moto Edge S30 5G 2021 Standard Edition Dual SIM TD-LTE CN 128GB XT2175-2", + "brand": "motorola", + "soc": "snapdragon-888-plus", + "release_date": "2021-12-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 202.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2460", + "refresh_hz": 144, + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/motorola/2021/moto-edge-s30-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-xt2175-2.json b/data/smartphone/motorola/2021/moto-edge-s30-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-xt2175-2.json new file mode 100644 index 00000000000..b81f37c7e86 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-edge-s30-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-xt2175-2.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-edge-s30-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-xt2175-2", + "name": "Moto Edge S30 5G 2021 Standard Edition Dual SIM TD-LTE CN 256GB XT2175-2", + "brand": "motorola", + "soc": "snapdragon-888-plus", + "release_date": "2021-12-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 202.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2460", + "refresh_hz": 144, + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 2199, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/motorola/2021/moto-edge-x30-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2201-2.json b/data/smartphone/motorola/2021/moto-edge-x30-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2201-2.json new file mode 100644 index 00000000000..228eb555eac --- /dev/null +++ b/data/smartphone/motorola/2021/moto-edge-x30-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2201-2.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-edge-x30-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2201-2", + "name": "Moto Edge X30 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB XT2201-2", + "brand": "motorola", + "soc": "snapdragon-8-gen-1", + "release_date": "2021-12-16", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 60.3 + } + ], + "charging_wired_w": 68, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3399, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/motorola/2021/moto-edge-x30-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2201-2.json b/data/smartphone/motorola/2021/moto-edge-x30-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2201-2.json new file mode 100644 index 00000000000..deafbbfebf6 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-edge-x30-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2201-2.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-edge-x30-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2201-2", + "name": "Moto Edge X30 5G 2021 Standard Edition Dual SIM TD-LTE CN 128GB XT2201-2", + "brand": "motorola", + "soc": "snapdragon-8-gen-1", + "release_date": "2021-12-16", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 60.3 + } + ], + "charging_wired_w": 68, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 2999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/motorola/2021/moto-edge-x30-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-xt2201-2.json b/data/smartphone/motorola/2021/moto-edge-x30-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-xt2201-2.json new file mode 100644 index 00000000000..adc6a29a981 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-edge-x30-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-xt2201-2.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-edge-x30-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-xt2201-2", + "name": "Moto Edge X30 5G 2021 Standard Edition Dual SIM TD-LTE CN 256GB XT2201-2", + "brand": "motorola", + "soc": "snapdragon-8-gen-1", + "release_date": "2021-12-16", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 60.3 + } + ], + "charging_wired_w": 68, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3199, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/motorola/2021/moto-g-play-2021-td-lte-na-32gb-xt2093-4.json b/data/smartphone/motorola/2021/moto-g-play-2021-td-lte-na-32gb-xt2093-4.json new file mode 100644 index 00000000000..7da7d20ee2b --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g-play-2021-td-lte-na-32gb-xt2093-4.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g-play-2021-td-lte-na-32gb-xt2093-4", + "name": "Moto G Play 2021 TD-LTE NA 32GB XT2093-4", + "brand": "motorola", + "soc": "snapdragon-460", + "release_date": "2021-03-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 204.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 250, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2021/moto-g-play-2021-td-lte-us-32gb-xt2093-1.json b/data/smartphone/motorola/2021/moto-g-play-2021-td-lte-us-32gb-xt2093-1.json new file mode 100644 index 00000000000..bed6bc8638b --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g-play-2021-td-lte-us-32gb-xt2093-1.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g-play-2021-td-lte-us-32gb-xt2093-1", + "name": "Moto G Play 2021 TD-LTE US 32GB XT2093-1", + "brand": "motorola", + "soc": "snapdragon-460", + "release_date": "2021-01-31", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 204.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 167, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2021/moto-g-play-2021-td-lte-us-32gb-xt2093-2-xt2093-2pp.json b/data/smartphone/motorola/2021/moto-g-play-2021-td-lte-us-32gb-xt2093-2-xt2093-2pp.json new file mode 100644 index 00000000000..1783aba304f --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g-play-2021-td-lte-us-32gb-xt2093-2-xt2093-2pp.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g-play-2021-td-lte-us-32gb-xt2093-2-xt2093-2pp", + "name": "Moto G Play 2021 TD-LTE US 32GB XT2093-2 / XT2093-2PP", + "brand": "motorola", + "soc": "snapdragon-460", + "release_date": "2021-03-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 204.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 150, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2021/moto-g-play-2021-td-lte-us-32gb-xt2093-3.json b/data/smartphone/motorola/2021/moto-g-play-2021-td-lte-us-32gb-xt2093-3.json new file mode 100644 index 00000000000..ba8b178ca83 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g-play-2021-td-lte-us-32gb-xt2093-3.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g-play-2021-td-lte-us-32gb-xt2093-3", + "name": "Moto G Play 2021 TD-LTE US 32GB XT2093-3", + "brand": "motorola", + "soc": "snapdragon-460", + "release_date": "2021-01-14", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 204.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 167, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2021/moto-g-play-2021-td-lte-us-32gb-xt2093-7.json b/data/smartphone/motorola/2021/moto-g-play-2021-td-lte-us-32gb-xt2093-7.json new file mode 100644 index 00000000000..7d260c290cb --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g-play-2021-td-lte-us-32gb-xt2093-7.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g-play-2021-td-lte-us-32gb-xt2093-7", + "name": "Moto G Play 2021 TD-LTE US 32GB XT2093-7", + "brand": "motorola", + "soc": "snapdragon-460", + "release_date": "2021-01-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 204.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 167, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2021/moto-g-play-2021-td-lte-us-32gb-xt2093dl.json b/data/smartphone/motorola/2021/moto-g-play-2021-td-lte-us-32gb-xt2093dl.json new file mode 100644 index 00000000000..a04ad30f238 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g-play-2021-td-lte-us-32gb-xt2093dl.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-g-play-2021-td-lte-us-32gb-xt2093dl", + "name": "Moto G Play 2021 TD-LTE US 32GB XT2093DL", + "brand": "motorola", + "soc": "snapdragon-460", + "release_date": "2021-02-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 204.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2021/moto-g-power-2021-td-lte-na-32gb-xt2117-4.json b/data/smartphone/motorola/2021/moto-g-power-2021-td-lte-na-32gb-xt2117-4.json new file mode 100644 index 00000000000..5e54ee0e79f --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g-power-2021-td-lte-na-32gb-xt2117-4.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-g-power-2021-td-lte-na-32gb-xt2117-4", + "name": "Moto G Power 2021 TD-LTE NA 32GB XT2117-4", + "brand": "motorola", + "soc": "snapdragon-662", + "release_date": "2021-01-14", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 206.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 200, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2021/moto-g-power-2021-td-lte-na-64gb-xt2117-4.json b/data/smartphone/motorola/2021/moto-g-power-2021-td-lte-na-64gb-xt2117-4.json new file mode 100644 index 00000000000..7e993fbece6 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g-power-2021-td-lte-na-64gb-xt2117-4.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-g-power-2021-td-lte-na-64gb-xt2117-4", + "name": "Moto G Power 2021 TD-LTE NA 64GB XT2117-4", + "brand": "motorola", + "soc": "snapdragon-662", + "release_date": "2021-01-14", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 206.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 250, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2021/moto-g-power-2021-td-lte-us-32gb-xt2117dl.json b/data/smartphone/motorola/2021/moto-g-power-2021-td-lte-us-32gb-xt2117dl.json new file mode 100644 index 00000000000..104e082c857 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g-power-2021-td-lte-us-32gb-xt2117dl.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-g-power-2021-td-lte-us-32gb-xt2117dl", + "name": "Moto G Power 2021 TD-LTE US 32GB XT2117DL", + "brand": "motorola", + "soc": "snapdragon-662", + "release_date": "2021-02-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 206.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 249, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2021/moto-g-power-2021-td-lte-us-64gb-xt2117-1.json b/data/smartphone/motorola/2021/moto-g-power-2021-td-lte-us-64gb-xt2117-1.json new file mode 100644 index 00000000000..35010b5c8c8 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g-power-2021-td-lte-us-64gb-xt2117-1.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-g-power-2021-td-lte-us-64gb-xt2117-1", + "name": "Moto G Power 2021 TD-LTE US 64GB XT2117-1", + "brand": "motorola", + "soc": "snapdragon-662", + "release_date": "2021-02-11", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 206.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 100, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2021/moto-g-power-2021-td-lte-us-64gb-xt2117-2.json b/data/smartphone/motorola/2021/moto-g-power-2021-td-lte-us-64gb-xt2117-2.json new file mode 100644 index 00000000000..61d1b6e32ee --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g-power-2021-td-lte-us-64gb-xt2117-2.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g-power-2021-td-lte-us-64gb-xt2117-2", + "name": "Moto G Power 2021 TD-LTE US 64GB XT2117-2", + "brand": "motorola", + "soc": "snapdragon-662", + "release_date": "2021-04-07", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 206.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2021/moto-g-power-2021-td-lte-us-64gb-xt2117-3.json b/data/smartphone/motorola/2021/moto-g-power-2021-td-lte-us-64gb-xt2117-3.json new file mode 100644 index 00000000000..79cb436446f --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g-power-2021-td-lte-us-64gb-xt2117-3.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-g-power-2021-td-lte-us-64gb-xt2117-3", + "name": "Moto G Power 2021 TD-LTE US 64GB XT2117-3", + "brand": "motorola", + "soc": "snapdragon-662", + "release_date": "2021-01-14", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 206.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 250, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2021/moto-g-pure-2021-lte-na-32gb-xt2163-4.json b/data/smartphone/motorola/2021/moto-g-pure-2021-lte-na-32gb-xt2163-4.json new file mode 100644 index 00000000000..cd719507797 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g-pure-2021-lte-na-32gb-xt2163-4.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g-pure-2021-lte-na-32gb-xt2163-4", + "name": "Moto G Pure 2021 LTE NA 32GB XT2163-4", + "brand": "motorola", + "soc": "helio-g25", + "release_date": "2021-10-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 160, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2021/moto-g-pure-2021-lte-us-32gb-xt2163dl.json b/data/smartphone/motorola/2021/moto-g-pure-2021-lte-us-32gb-xt2163dl.json new file mode 100644 index 00000000000..6d5ce5a67c2 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g-pure-2021-lte-us-32gb-xt2163dl.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-g-pure-2021-lte-us-32gb-xt2163dl", + "name": "Moto G Pure 2021 LTE US 32GB XT2163DL", + "brand": "motorola", + "soc": "helio-g25", + "release_date": "2021-11-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2021/moto-g-stylus-2021-td-lte-us-128gb-xt2115-1-g9-stylus.json b/data/smartphone/motorola/2021/moto-g-stylus-2021-td-lte-us-128gb-xt2115-1-g9-stylus.json new file mode 100644 index 00000000000..62a27afbfa6 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g-stylus-2021-td-lte-us-128gb-xt2115-1-g9-stylus.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-g-stylus-2021-td-lte-us-128gb-xt2115-1-g9-stylus", + "name": "Moto G Stylus 2021 TD-LTE US 128GB XT2115-1 / G9 Stylus", + "brand": "motorola", + "soc": "snapdragon-678", + "release_date": "2021-01-14", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 213.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2300", + "type": "Color IPS TFT LCD display", + "ppi": 374 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "msrp_usd": 300, + "market_countries": "Puerto Rico , USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/motorola/2021/moto-g-stylus-2021-td-lte-us-128gb-xt2115dl.json b/data/smartphone/motorola/2021/moto-g-stylus-2021-td-lte-us-128gb-xt2115dl.json new file mode 100644 index 00000000000..53a7339b410 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g-stylus-2021-td-lte-us-128gb-xt2115dl.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-g-stylus-2021-td-lte-us-128gb-xt2115dl", + "name": "Moto G Stylus 2021 TD-LTE US 128GB XT2115DL", + "brand": "motorola", + "soc": "snapdragon-678", + "release_date": "2021-03-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 213.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2300", + "type": "Color IPS TFT LCD display", + "ppi": 374 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "msrp_usd": 200, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2021/moto-g-stylus-5g-2021-td-lte-us-128gb-xt2131-3.json b/data/smartphone/motorola/2021/moto-g-stylus-5g-2021-td-lte-us-128gb-xt2131-3.json new file mode 100644 index 00000000000..5b655f2d0a9 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g-stylus-5g-2021-td-lte-us-128gb-xt2131-3.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g-stylus-5g-2021-td-lte-us-128gb-xt2131-3", + "name": "Moto G Stylus 5G 2021 TD-LTE US 128GB XT2131-3", + "brand": "motorola", + "soc": "snapdragon-480", + "release_date": "2021-07-16", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 217.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.79, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 250, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2021/moto-g-stylus-5g-2021-td-lte-us-128gb-xt2131-4.json b/data/smartphone/motorola/2021/moto-g-stylus-5g-2021-td-lte-us-128gb-xt2131-4.json new file mode 100644 index 00000000000..7f8bad43447 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g-stylus-5g-2021-td-lte-us-128gb-xt2131-4.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g-stylus-5g-2021-td-lte-us-128gb-xt2131-4", + "name": "Moto G Stylus 5G 2021 TD-LTE US 128GB XT2131-4", + "brand": "motorola", + "soc": "snapdragon-480", + "release_date": "2021-07-09", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 217.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.79, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 230, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2021/moto-g-stylus-5g-2021-td-lte-us-256gb-xt2131-1.json b/data/smartphone/motorola/2021/moto-g-stylus-5g-2021-td-lte-us-256gb-xt2131-1.json new file mode 100644 index 00000000000..1422c1d2d8d --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g-stylus-5g-2021-td-lte-us-256gb-xt2131-1.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g-stylus-5g-2021-td-lte-us-256gb-xt2131-1", + "name": "Moto G Stylus 5G 2021 TD-LTE US 256GB XT2131-1", + "brand": "motorola", + "soc": "snapdragon-480", + "release_date": "2021-06-14", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 217.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.79, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 260, + "market_countries": "Puerto Rico , USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/motorola/2021/moto-g-stylus-5g-2021-td-lte-us-256gb-xt2131dl.json b/data/smartphone/motorola/2021/moto-g-stylus-5g-2021-td-lte-us-256gb-xt2131dl.json new file mode 100644 index 00000000000..11300cb8d36 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g-stylus-5g-2021-td-lte-us-256gb-xt2131dl.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g-stylus-5g-2021-td-lte-us-256gb-xt2131dl", + "name": "Moto G Stylus 5G 2021 TD-LTE US 256GB XT2131DL", + "brand": "motorola", + "soc": "snapdragon-480", + "release_date": "2021-07-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 217.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.79, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 450, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/motorola/2021/moto-g10-2021-dual-sim-td-lte-latam-128gb-xt2127-1.json b/data/smartphone/motorola/2021/moto-g10-2021-dual-sim-td-lte-latam-128gb-xt2127-1.json new file mode 100644 index 00000000000..4be19bdffd2 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g10-2021-dual-sim-td-lte-latam-128gb-xt2127-1.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g10-2021-dual-sim-td-lte-latam-128gb-xt2127-1", + "name": "Moto G10 2021 Dual SIM TD-LTE LATAM 128GB XT2127-1", + "brand": "motorola", + "soc": "snapdragon-460", + "release_date": "2021-03-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Colombia , Ecuador", + "market_regions": "South America" +} diff --git a/data/smartphone/motorola/2021/moto-g10-2021-global-dual-sim-td-lte-64gb-xt2127-2.json b/data/smartphone/motorola/2021/moto-g10-2021-global-dual-sim-td-lte-64gb-xt2127-2.json new file mode 100644 index 00000000000..77c00cc8a78 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g10-2021-global-dual-sim-td-lte-64gb-xt2127-2.json @@ -0,0 +1,42 @@ +{ + "slug": "moto-g10-2021-global-dual-sim-td-lte-64gb-xt2127-2", + "name": "Moto G10 2021 Global Dual SIM TD-LTE 64GB XT2127-2", + "brand": "motorola", + "soc": "snapdragon-460", + "release_date": "2021-02-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Cyprus , Czech , Estonia , Finland , France , Greece , Germany , Hungary , Italy , Japan , Latvia , Lithuania , Netherlands , Norway , NZ , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Sweden , Taiwan , UAE , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/motorola/2021/moto-g10-power-2021-dual-sim-td-lte-in-64gb-xt2127-4.json b/data/smartphone/motorola/2021/moto-g10-power-2021-dual-sim-td-lte-in-64gb-xt2127-4.json new file mode 100644 index 00000000000..f40d0213b6d --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g10-power-2021-dual-sim-td-lte-in-64gb-xt2127-4.json @@ -0,0 +1,41 @@ +{ + "slug": "moto-g10-power-2021-dual-sim-td-lte-in-64gb-xt2127-4", + "name": "Moto G10 Power 2021 Dual SIM TD-LTE IN 64GB XT2127-4", + "brand": "motorola", + "soc": "snapdragon-460", + "release_date": "2021-03-16", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/motorola/2021/moto-g100-global-dual-sim-td-lte-128gb-xt2125-4.json b/data/smartphone/motorola/2021/moto-g100-global-dual-sim-td-lte-128gb-xt2125-4.json new file mode 100644 index 00000000000..bec5a18bdce --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g100-global-dual-sim-td-lte-128gb-xt2125-4.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g100-global-dual-sim-td-lte-128gb-xt2125-4", + "name": "Moto g100 Global Dual SIM TD-LTE 128GB XT2125-4", + "brand": "motorola", + "soc": "snapdragon-870", + "release_date": "2021-05-28", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 207.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.69, + "resolution": "1080x2520", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 410 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Bulgaria , Cyprus , Czech , Denmark , Finland , France , Germany , Greece , HK , Hungary , Ireland , Italy , Japan , Malaysia , Netherlands , Norway , Poland , Portugal , Romania , Russia , Singapore , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/motorola/2021/moto-g100-global-dual-sim-td-lte-256gb-xt2125-4.json b/data/smartphone/motorola/2021/moto-g100-global-dual-sim-td-lte-256gb-xt2125-4.json new file mode 100644 index 00000000000..03707f1d11c --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g100-global-dual-sim-td-lte-256gb-xt2125-4.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g100-global-dual-sim-td-lte-256gb-xt2125-4", + "name": "Moto g100 Global Dual SIM TD-LTE 256GB XT2125-4", + "brand": "motorola", + "soc": "snapdragon-870", + "release_date": "2021-06-01", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 207.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1080x2520", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 410 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 3999, + "market_countries": "Brazil , Colombia" +} diff --git a/data/smartphone/motorola/2021/moto-g100-global-td-lte-128gb-xt2125-4.json b/data/smartphone/motorola/2021/moto-g100-global-td-lte-128gb-xt2125-4.json new file mode 100644 index 00000000000..51dbb774fd0 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g100-global-td-lte-128gb-xt2125-4.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g100-global-td-lte-128gb-xt2125-4", + "name": "Moto g100 Global TD-LTE 128GB XT2125-4", + "brand": "motorola", + "soc": "snapdragon-870", + "release_date": "2021-05-28", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 207.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.69, + "resolution": "1080x2520", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 410 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Chile , Mexico , USA", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/motorola/2021/moto-g20-2021-dual-sim-td-lte-latam-128gb-xt2128-1.json b/data/smartphone/motorola/2021/moto-g20-2021-dual-sim-td-lte-latam-128gb-xt2128-1.json new file mode 100644 index 00000000000..19bbf2c589a --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g20-2021-dual-sim-td-lte-latam-128gb-xt2128-1.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-g20-2021-dual-sim-td-lte-latam-128gb-xt2128-1", + "name": "Moto G20 2021 Dual SIM TD-LTE LATAM 128GB XT2128-1", + "brand": "motorola", + "soc": "tiger-t700", + "release_date": "2021-06-09", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1699, + "market_countries": "Brazil , Peru", + "market_regions": "South America" +} diff --git a/data/smartphone/motorola/2021/moto-g20-2021-dual-sim-td-lte-latam-64gb-xt2128-1.json b/data/smartphone/motorola/2021/moto-g20-2021-dual-sim-td-lte-latam-64gb-xt2128-1.json new file mode 100644 index 00000000000..a4a4b24bc38 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g20-2021-dual-sim-td-lte-latam-64gb-xt2128-1.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-g20-2021-dual-sim-td-lte-latam-64gb-xt2128-1", + "name": "Moto G20 2021 Dual SIM TD-LTE LATAM 64GB XT2128-1", + "brand": "motorola", + "soc": "tiger-t700", + "release_date": "2021-05-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1499, + "market_countries": "Brazil , Ecuador , Peru", + "market_regions": "South America" +} diff --git a/data/smartphone/motorola/2021/moto-g20-2021-global-dual-sim-td-lte-128gb-xt2128-2.json b/data/smartphone/motorola/2021/moto-g20-2021-global-dual-sim-td-lte-128gb-xt2128-2.json new file mode 100644 index 00000000000..5c0a1bcfb16 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g20-2021-global-dual-sim-td-lte-128gb-xt2128-2.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g20-2021-global-dual-sim-td-lte-128gb-xt2128-2", + "name": "Moto G20 2021 Global Dual SIM TD-LTE 128GB XT2128-2", + "brand": "motorola", + "soc": "tiger-t700", + "release_date": "2021-06-09", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Cyprus , Czech , Estonia , Finland , France , Greece , Germany , Hungary , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Sweden , Taiwan , Thailand , UAE", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/motorola/2021/moto-g20-2021-global-dual-sim-td-lte-64gb-xt2128-2.json b/data/smartphone/motorola/2021/moto-g20-2021-global-dual-sim-td-lte-64gb-xt2128-2.json new file mode 100644 index 00000000000..fc2b627d7da --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g20-2021-global-dual-sim-td-lte-64gb-xt2128-2.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-g20-2021-global-dual-sim-td-lte-64gb-xt2128-2", + "name": "Moto G20 2021 Global Dual SIM TD-LTE 64GB XT2128-2", + "brand": "motorola", + "soc": "tiger-t700", + "release_date": "2021-06-09", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 169, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Cyprus , Czech , Estonia , Finland , France , Greece , Germany , Hungary , Italy , Japan , Latvia , Lithuania , Netherlands , Norway , NZ , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Sweden , Taiwan , Thailand , UAE , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/motorola/2021/moto-g20-2021-td-lte-latam-128gb-xt2128-1.json b/data/smartphone/motorola/2021/moto-g20-2021-td-lte-latam-128gb-xt2128-1.json new file mode 100644 index 00000000000..7902c79b83d --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g20-2021-td-lte-latam-128gb-xt2128-1.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g20-2021-td-lte-latam-128gb-xt2128-1", + "name": "Moto G20 2021 TD-LTE LATAM 128GB XT2128-1", + "brand": "motorola", + "soc": "tiger-t700", + "release_date": "2021-06-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Chile , Mexico , Peru", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/motorola/2021/moto-g20-2021-td-lte-latam-64gb-xt2128-1.json b/data/smartphone/motorola/2021/moto-g20-2021-td-lte-latam-64gb-xt2128-1.json new file mode 100644 index 00000000000..9fd73b5fccf --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g20-2021-td-lte-latam-64gb-xt2128-1.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-g20-2021-td-lte-latam-64gb-xt2128-1", + "name": "Moto G20 2021 TD-LTE LATAM 64GB XT2128-1", + "brand": "motorola", + "soc": "tiger-t700", + "release_date": "2021-05-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 4599, + "market_countries": "Argentina , Chile , Mexico , Peru", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/motorola/2021/moto-g200-5g-2021-global-dual-sim-td-lte-128gb-xt2175-1.json b/data/smartphone/motorola/2021/moto-g200-5g-2021-global-dual-sim-td-lte-128gb-xt2175-1.json new file mode 100644 index 00000000000..cf747326084 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g200-5g-2021-global-dual-sim-td-lte-128gb-xt2175-1.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-g200-5g-2021-global-dual-sim-td-lte-128gb-xt2175-1", + "name": "Moto G200 5G 2021 Global Dual SIM TD-LTE 128GB XT2175-1", + "brand": "motorola", + "soc": "snapdragon-888-plus", + "release_date": "2021-12-12", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 202.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2460", + "refresh_hz": 144, + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 459, + "market_countries": "Australia , Austria , Belgium , Brazil , Bulgaria , Chile , Colombia , Cyprus , Croatia , Czech , Denmark , Finland , France , Greece , Germany , HK , Hungary , Ireland , Italy , Japan , Malaysia , Netherlands , Norway , Peru , Poland , Portugal , Russia , Romania , Serbia , Singapore , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/motorola/2021/moto-g30-2021-premium-edition-global-dual-sim-td-lte-128gb-xt2129-2.json b/data/smartphone/motorola/2021/moto-g30-2021-premium-edition-global-dual-sim-td-lte-128gb-xt2129-2.json new file mode 100644 index 00000000000..dc9fd41edee --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g30-2021-premium-edition-global-dual-sim-td-lte-128gb-xt2129-2.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-g30-2021-premium-edition-global-dual-sim-td-lte-128gb-xt2129-2", + "name": "Moto G30 2021 Premium Edition Global Dual SIM TD-LTE 128GB XT2129-2", + "brand": "motorola", + "soc": "snapdragon-662", + "release_date": "2021-03-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 190, + "market_countries": "Austria , Belgium , Bulgaria , Cyprus , Czech , Estonia , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Latvia , Lithuania , Malaysia , Netherlands , Norway , Poland , Portugal , Romania , Russia , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Sweden , Thailand , UAE , UK", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/motorola/2021/moto-g30-2021-standard-edition-dual-sim-td-lte-apac-64gb-xt2129-2.json b/data/smartphone/motorola/2021/moto-g30-2021-standard-edition-dual-sim-td-lte-apac-64gb-xt2129-2.json new file mode 100644 index 00000000000..bd115e85177 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g30-2021-standard-edition-dual-sim-td-lte-apac-64gb-xt2129-2.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g30-2021-standard-edition-dual-sim-td-lte-apac-64gb-xt2129-2", + "name": "Moto G30 2021 Standard Edition Dual SIM TD-LTE APAC 64GB XT2129-2", + "brand": "motorola", + "soc": "snapdragon-662", + "release_date": "2021-03-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Malaysia , Saudi Arabia , Thailand , UAE", + "market_regions": "Asia , Middle East , Southeast Asia" +} diff --git a/data/smartphone/motorola/2021/moto-g30-2021-standard-edition-dual-sim-td-lte-latam-128gb-xt2129-1.json b/data/smartphone/motorola/2021/moto-g30-2021-standard-edition-dual-sim-td-lte-latam-128gb-xt2129-1.json new file mode 100644 index 00000000000..c61b258e91a --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g30-2021-standard-edition-dual-sim-td-lte-latam-128gb-xt2129-1.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-g30-2021-standard-edition-dual-sim-td-lte-latam-128gb-xt2129-1", + "name": "Moto G30 2021 Standard Edition Dual SIM TD-LTE LATAM 128GB XT2129-1", + "brand": "motorola", + "soc": "snapdragon-662", + "release_date": "2021-03-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1899, + "market_countries": "Brazil , Chile , Colombia , Ecuador , Peru", + "market_regions": "South America" +} diff --git a/data/smartphone/motorola/2021/moto-g30-2021-standard-edition-global-dual-sim-td-lte-128gb-xt2129-2.json b/data/smartphone/motorola/2021/moto-g30-2021-standard-edition-global-dual-sim-td-lte-128gb-xt2129-2.json new file mode 100644 index 00000000000..672bb17a830 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g30-2021-standard-edition-global-dual-sim-td-lte-128gb-xt2129-2.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-g30-2021-standard-edition-global-dual-sim-td-lte-128gb-xt2129-2", + "name": "Moto G30 2021 Standard Edition Global Dual SIM TD-LTE 128GB XT2129-2", + "brand": "motorola", + "soc": "snapdragon-662", + "release_date": "2021-03-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 160, + "market_countries": "Austria , Belgium , Bulgaria , Cyprus , Czech , Estonia , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Sweden , UAE , UK", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/motorola/2021/moto-g30-2021-standard-edition-td-lte-latam-128gb-xt2129-1.json b/data/smartphone/motorola/2021/moto-g30-2021-standard-edition-td-lte-latam-128gb-xt2129-1.json new file mode 100644 index 00000000000..845f31dcc18 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g30-2021-standard-edition-td-lte-latam-128gb-xt2129-1.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-g30-2021-standard-edition-td-lte-latam-128gb-xt2129-1", + "name": "Moto G30 2021 Standard Edition TD-LTE LATAM 128GB XT2129-1", + "brand": "motorola", + "soc": "snapdragon-662", + "release_date": "2021-03-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 4999, + "market_countries": "Argentina , Guatemala , Mexico", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/motorola/2021/moto-g31-2021-dual-sim-td-lte-apac-128gb-xt2173-2.json b/data/smartphone/motorola/2021/moto-g31-2021-dual-sim-td-lte-apac-128gb-xt2173-2.json new file mode 100644 index 00000000000..1341e621d89 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g31-2021-dual-sim-td-lte-apac-128gb-xt2173-2.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g31-2021-dual-sim-td-lte-apac-128gb-xt2173-2", + "name": "Moto G31 2021 Dual SIM TD-LTE APAC 128GB XT2173-2", + "brand": "motorola", + "soc": "helio-g85", + "release_date": "2021-12-06", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/motorola/2021/moto-g31-2021-dual-sim-td-lte-apac-64gb-xt2173-2.json b/data/smartphone/motorola/2021/moto-g31-2021-dual-sim-td-lte-apac-64gb-xt2173-2.json new file mode 100644 index 00000000000..b4401cf2b2a --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g31-2021-dual-sim-td-lte-apac-64gb-xt2173-2.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g31-2021-dual-sim-td-lte-apac-64gb-xt2173-2", + "name": "Moto G31 2021 Dual SIM TD-LTE APAC 64GB XT2173-2", + "brand": "motorola", + "soc": "helio-g85", + "release_date": "2021-12-06", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/motorola/2021/moto-g31-2021-dual-sim-td-lte-latam-128gb-xt2173-1.json b/data/smartphone/motorola/2021/moto-g31-2021-dual-sim-td-lte-latam-128gb-xt2173-1.json new file mode 100644 index 00000000000..a306b4bc157 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g31-2021-dual-sim-td-lte-latam-128gb-xt2173-1.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-g31-2021-dual-sim-td-lte-latam-128gb-xt2173-1", + "name": "Moto G31 2021 Dual SIM TD-LTE LATAM 128GB XT2173-1", + "brand": "motorola", + "soc": "helio-g85", + "release_date": "2021-12-07", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1999, + "market_countries": "Colombia , Costa Rica , Guatemala , Paraguay", + "market_regions": "Central America , South America" +} diff --git a/data/smartphone/motorola/2021/moto-g31-2021-global-dual-sim-td-lte-128gb-xt2173-3.json b/data/smartphone/motorola/2021/moto-g31-2021-global-dual-sim-td-lte-128gb-xt2173-3.json new file mode 100644 index 00000000000..3bab77e68be --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g31-2021-global-dual-sim-td-lte-128gb-xt2173-3.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g31-2021-global-dual-sim-td-lte-128gb-xt2173-3", + "name": "Moto G31 2021 Global Dual SIM TD-LTE 128GB XT2173-3", + "brand": "motorola", + "soc": "helio-g85", + "release_date": "2021-12-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Japan , Netherlands , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , Spain , Switzerland , Sweden , UAE , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/motorola/2021/moto-g31-2021-global-dual-sim-td-lte-64gb-xt2173-3.json b/data/smartphone/motorola/2021/moto-g31-2021-global-dual-sim-td-lte-64gb-xt2173-3.json new file mode 100644 index 00000000000..3e24b684277 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g31-2021-global-dual-sim-td-lte-64gb-xt2173-3.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-g31-2021-global-dual-sim-td-lte-64gb-xt2173-3", + "name": "Moto G31 2021 Global Dual SIM TD-LTE 64GB XT2173-3", + "brand": "motorola", + "soc": "helio-g85", + "release_date": "2021-12-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 200, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Japan , Netherlands , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , Spain , Switzerland , Sweden , UAE , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/motorola/2021/moto-g31-2021-td-lte-latam-128gb-xt2173-1.json b/data/smartphone/motorola/2021/moto-g31-2021-td-lte-latam-128gb-xt2173-1.json new file mode 100644 index 00000000000..86e056685cc --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g31-2021-td-lte-latam-128gb-xt2173-1.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g31-2021-td-lte-latam-128gb-xt2173-1", + "name": "Moto G31 2021 TD-LTE LATAM 128GB XT2173-1", + "brand": "motorola", + "soc": "helio-g85", + "release_date": "2021-12-07", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Chile , Guatemala , Mexico , Peru", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/motorola/2021/moto-g41-2021-standard-edition-dual-sim-td-lte-latam-128gb-xt2167-1.json b/data/smartphone/motorola/2021/moto-g41-2021-standard-edition-dual-sim-td-lte-latam-128gb-xt2167-1.json new file mode 100644 index 00000000000..c42b7799408 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g41-2021-standard-edition-dual-sim-td-lte-latam-128gb-xt2167-1.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g41-2021-standard-edition-dual-sim-td-lte-latam-128gb-xt2167-1", + "name": "Moto G41 2021 Standard Edition Dual SIM TD-LTE LATAM 128GB XT2167-1", + "brand": "motorola", + "soc": "helio-g85", + "release_date": "2021-12-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Colombia , Peru", + "market_regions": "South America" +} diff --git a/data/smartphone/motorola/2021/moto-g50-5g-2021-dual-sim-td-lte-cn-128gb-xt2137-2.json b/data/smartphone/motorola/2021/moto-g50-5g-2021-dual-sim-td-lte-cn-128gb-xt2137-2.json new file mode 100644 index 00000000000..18b42147732 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g50-5g-2021-dual-sim-td-lte-cn-128gb-xt2137-2.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-g50-5g-2021-dual-sim-td-lte-cn-128gb-xt2137-2", + "name": "Moto G50 5G 2021 Dual SIM TD-LTE CN 128GB XT2137-2", + "brand": "motorola", + "soc": "snapdragon-480", + "release_date": "2021-04-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/motorola/2021/moto-g50-5g-2021-global-dual-sim-td-lte-128gb-xt2137-1.json b/data/smartphone/motorola/2021/moto-g50-5g-2021-global-dual-sim-td-lte-128gb-xt2137-1.json new file mode 100644 index 00000000000..11f3b9e6e58 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g50-5g-2021-global-dual-sim-td-lte-128gb-xt2137-1.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-g50-5g-2021-global-dual-sim-td-lte-128gb-xt2137-1", + "name": "Moto G50 5G 2021 Global Dual SIM TD-LTE 128GB XT2137-1", + "brand": "motorola", + "soc": "snapdragon-480", + "release_date": "2021-04-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 229, + "market_countries": "Austria , Belgium , Bulgaria , Cyprus , Czech , Estonia , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Japan , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Sweden , UAE , UK", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/motorola/2021/moto-g50-5g-2021-global-dual-sim-td-lte-128gb-xt2149-1.json b/data/smartphone/motorola/2021/moto-g50-5g-2021-global-dual-sim-td-lte-128gb-xt2149-1.json new file mode 100644 index 00000000000..86bb7b85765 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g50-5g-2021-global-dual-sim-td-lte-128gb-xt2149-1.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-g50-5g-2021-global-dual-sim-td-lte-128gb-xt2149-1", + "name": "Moto G50 5G 2021 Global Dual SIM TD-LTE 128GB XT2149-1", + "brand": "motorola", + "soc": "dimensity-700", + "release_date": "2021-09-02", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 399, + "market_countries": "Australia , Brazil , Colombia , Japan , Mexico , Thailand", + "market_regions": "Asia , Australia , North America , South America , Southeast Asia" +} diff --git a/data/smartphone/motorola/2021/moto-g50-5g-2021-global-dual-sim-td-lte-64gb-xt2137-1.json b/data/smartphone/motorola/2021/moto-g50-5g-2021-global-dual-sim-td-lte-64gb-xt2137-1.json new file mode 100644 index 00000000000..2640b8c81cf --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g50-5g-2021-global-dual-sim-td-lte-64gb-xt2137-1.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-g50-5g-2021-global-dual-sim-td-lte-64gb-xt2137-1", + "name": "Moto G50 5G 2021 Global Dual SIM TD-LTE 64GB XT2137-1", + "brand": "motorola", + "soc": "snapdragon-480", + "release_date": "2021-04-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 199, + "market_countries": "Austria , Belgium , Bulgaria , Cyprus , Czech , Estonia , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Sweden , UAE , UK", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/motorola/2021/moto-g50-5g-2021-global-td-lte-128gb-xt2149-1.json b/data/smartphone/motorola/2021/moto-g50-5g-2021-global-td-lte-128gb-xt2149-1.json new file mode 100644 index 00000000000..d75ecce0c59 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g50-5g-2021-global-td-lte-128gb-xt2149-1.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g50-5g-2021-global-td-lte-128gb-xt2149-1", + "name": "Moto G50 5G 2021 Global TD-LTE 128GB XT2149-1", + "brand": "motorola", + "soc": "dimensity-700", + "release_date": "2021-09-02", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Chile , Japan , Mexico", + "market_regions": "Asia , Australia , North America , South America" +} diff --git a/data/smartphone/motorola/2021/moto-g60s-2021-dual-sim-td-lte-latam-128gb-xt2133-1.json b/data/smartphone/motorola/2021/moto-g60s-2021-dual-sim-td-lte-latam-128gb-xt2133-1.json new file mode 100644 index 00000000000..ada927faded --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g60s-2021-dual-sim-td-lte-latam-128gb-xt2133-1.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-g60s-2021-dual-sim-td-lte-latam-128gb-xt2133-1", + "name": "Moto G60s 2021 Dual SIM TD-LTE LATAM 128GB XT2133-1", + "brand": "motorola", + "soc": "helio-g95", + "release_date": "2021-08-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 212.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2460", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 50, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 2499, + "market_countries": "Brazil , Colombia", + "market_regions": "South America" +} diff --git a/data/smartphone/motorola/2021/moto-g60s-2021-global-dual-sim-td-lte-128gb-xt2133-2.json b/data/smartphone/motorola/2021/moto-g60s-2021-global-dual-sim-td-lte-128gb-xt2133-2.json new file mode 100644 index 00000000000..3177c881171 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g60s-2021-global-dual-sim-td-lte-128gb-xt2133-2.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-g60s-2021-global-dual-sim-td-lte-128gb-xt2133-2", + "name": "Moto G60s 2021 Global Dual SIM TD-LTE 128GB XT2133-2", + "brand": "motorola", + "soc": "helio-g95", + "release_date": "2021-08-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 212.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2460", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 50, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 220, + "market_countries": "Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Finland , France , Greece , Germany , Hungary , Ireland , Italy , Netherlands , Norway , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , Spain , Sweden , Switzerland , UK", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/motorola/2021/moto-g60s-2021-td-lte-latam-128gb-xt2133-1.json b/data/smartphone/motorola/2021/moto-g60s-2021-td-lte-latam-128gb-xt2133-1.json new file mode 100644 index 00000000000..0893591c701 --- /dev/null +++ b/data/smartphone/motorola/2021/moto-g60s-2021-td-lte-latam-128gb-xt2133-1.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g60s-2021-td-lte-latam-128gb-xt2133-1", + "name": "Moto G60s 2021 TD-LTE LATAM 128GB XT2133-1", + "brand": "motorola", + "soc": "helio-g95", + "release_date": "2021-08-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 212.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2460", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 50, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Chile , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/motorola/2022/edge-30-fusion.json b/data/smartphone/motorola/2022/edge-30-fusion.json new file mode 100644 index 00000000000..bb250ff4dca --- /dev/null +++ b/data/smartphone/motorola/2022/edge-30-fusion.json @@ -0,0 +1,33 @@ +{ + "slug": "edge-30-fusion", + "name": "Edge 30 Fusion", + "brand": "motorola", + "soc": "snapdragon-888-plus", + "release_date": "2022-01-01", + "ram_gb": 12.0, + "battery_mah": 4400, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 128, + 256 + ], + "display": { + "size_inch": 6.55 + }, + "cameras": [ + { + "type": "main", + "mp": 50.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "msrp_usd": 699 +} diff --git a/data/smartphone/motorola/2022/edge-30-neo.json b/data/smartphone/motorola/2022/edge-30-neo.json new file mode 100644 index 00000000000..7f9453ce955 --- /dev/null +++ b/data/smartphone/motorola/2022/edge-30-neo.json @@ -0,0 +1,33 @@ +{ + "slug": "edge-30-neo", + "name": "Edge 30 Neo", + "brand": "motorola", + "soc": "snapdragon-695", + "release_date": "2022-01-01", + "ram_gb": 8.0, + "battery_mah": 4020, + "weight_g": 155.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 128, + 256 + ], + "display": { + "size_inch": 6.28 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "msrp_usd": 499 +} diff --git a/data/smartphone/motorola/2022/moto-e22.json b/data/smartphone/motorola/2022/moto-e22.json new file mode 100644 index 00000000000..b10fde4a9e4 --- /dev/null +++ b/data/smartphone/motorola/2022/moto-e22.json @@ -0,0 +1,32 @@ +{ + "slug": "moto-e22", + "name": "Moto E22", + "brand": "motorola", + "soc": "helio-g37", + "release_date": "2022-01-01", + "ram_gb": 4.0, + "battery_mah": 4020, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "msrp_usd": 199 +} diff --git a/data/smartphone/motorola/2022/moto-e22i.json b/data/smartphone/motorola/2022/moto-e22i.json new file mode 100644 index 00000000000..15798e31c93 --- /dev/null +++ b/data/smartphone/motorola/2022/moto-e22i.json @@ -0,0 +1,32 @@ +{ + "slug": "moto-e22i", + "name": "Moto E22i", + "brand": "motorola", + "soc": "helio-g37", + "release_date": "2022-01-01", + "ram_gb": 2.0, + "battery_mah": 4020, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "msrp_usd": 179 +} diff --git a/data/smartphone/motorola/2022/moto-e32s.json b/data/smartphone/motorola/2022/moto-e32s.json new file mode 100644 index 00000000000..5e61bff0ceb --- /dev/null +++ b/data/smartphone/motorola/2022/moto-e32s.json @@ -0,0 +1,32 @@ +{ + "slug": "moto-e32s", + "name": "Moto E32s", + "brand": "motorola", + "soc": "helio-g37", + "release_date": "2022-01-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "msrp_usd": 199 +} diff --git a/data/smartphone/motorola/2022/moto-edge-30-pro-5g-2022-global-dual-sim-td-lte-128gb-xt2201-1.json b/data/smartphone/motorola/2022/moto-edge-30-pro-5g-2022-global-dual-sim-td-lte-128gb-xt2201-1.json new file mode 100644 index 00000000000..a09f6e2351e --- /dev/null +++ b/data/smartphone/motorola/2022/moto-edge-30-pro-5g-2022-global-dual-sim-td-lte-128gb-xt2201-1.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-edge-30-pro-5g-2022-global-dual-sim-td-lte-128gb-xt2201-1", + "name": "Moto Edge 30 Pro 5G 2022 Global Dual SIM TD-LTE 128GB XT2201-1", + "brand": "motorola", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-03-21", + "ram_gb": 8.0, + "battery_mah": 4800, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 60.3 + } + ], + "charging_wired_w": 68, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Brazil , Bulgaria , Chile , Cyprus , Czech , Denmark , Finland , France , Greece , Germany , HK , Hungary , India , Ireland , Italy , Japan , Malaysia , Netherlands , Norway , NZ , Peru , Poland , Portugal , Russia , Romania , Singapore , Slovakia , Slovenia , Spain , Sweden , Switzerland , Taiwan , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/motorola/2022/moto-g22.json b/data/smartphone/motorola/2022/moto-g22.json new file mode 100644 index 00000000000..a6c02cb8b6a --- /dev/null +++ b/data/smartphone/motorola/2022/moto-g22.json @@ -0,0 +1,32 @@ +{ + "slug": "moto-g22", + "name": "Moto G22", + "brand": "motorola", + "soc": "helio-g37", + "release_date": "2022-01-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5 + }, + "cameras": [ + { + "type": "main", + "mp": 50.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "msrp_usd": 249 +} diff --git a/data/smartphone/motorola/2022/moto-g41-2021-premium-edition-global-dual-sim-td-lte-128gb-xt2167-2.json b/data/smartphone/motorola/2022/moto-g41-2021-premium-edition-global-dual-sim-td-lte-128gb-xt2167-2.json new file mode 100644 index 00000000000..9ee5d470149 --- /dev/null +++ b/data/smartphone/motorola/2022/moto-g41-2021-premium-edition-global-dual-sim-td-lte-128gb-xt2167-2.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g41-2021-premium-edition-global-dual-sim-td-lte-128gb-xt2167-2", + "name": "Moto G41 2021 Premium Edition Global Dual SIM TD-LTE 128GB XT2167-2", + "brand": "motorola", + "soc": "helio-g85", + "release_date": "2022-01-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Japan , Netherlands , Norway , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Slovenia , Spain , Switzerland , Sweden , UAE , UK", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/motorola/2022/moto-g41-2021-standard-edition-global-dual-sim-td-lte-128gb-xt2167-2.json b/data/smartphone/motorola/2022/moto-g41-2021-standard-edition-global-dual-sim-td-lte-128gb-xt2167-2.json new file mode 100644 index 00000000000..b0114499c30 --- /dev/null +++ b/data/smartphone/motorola/2022/moto-g41-2021-standard-edition-global-dual-sim-td-lte-128gb-xt2167-2.json @@ -0,0 +1,44 @@ +{ + "slug": "moto-g41-2021-standard-edition-global-dual-sim-td-lte-128gb-xt2167-2", + "name": "Moto G41 2021 Standard Edition Global Dual SIM TD-LTE 128GB XT2167-2", + "brand": "motorola", + "soc": "helio-g85", + "release_date": "2022-01-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 250, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Japan , Netherlands , Norway , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , Spain , Sweden , Switzerland , UK", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/motorola/2022/moto-g41-2021-standard-edition-td-lte-latam-128gb-xt2167-1.json b/data/smartphone/motorola/2022/moto-g41-2021-standard-edition-td-lte-latam-128gb-xt2167-1.json new file mode 100644 index 00000000000..926deb225e3 --- /dev/null +++ b/data/smartphone/motorola/2022/moto-g41-2021-standard-edition-td-lte-latam-128gb-xt2167-1.json @@ -0,0 +1,43 @@ +{ + "slug": "moto-g41-2021-standard-edition-td-lte-latam-128gb-xt2167-1", + "name": "Moto G41 2021 Standard Edition TD-LTE LATAM 128GB XT2167-1", + "brand": "motorola", + "soc": "helio-g85", + "release_date": "2022-01-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/motorola/2022/moto-g62-5g.json b/data/smartphone/motorola/2022/moto-g62-5g.json new file mode 100644 index 00000000000..c81eeade1e8 --- /dev/null +++ b/data/smartphone/motorola/2022/moto-g62-5g.json @@ -0,0 +1,33 @@ +{ + "slug": "moto-g62-5g", + "name": "Moto G62 5G", + "brand": "motorola", + "soc": "snapdragon-480-plus", + "release_date": "2022-01-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 128, + 256 + ], + "display": { + "size_inch": 6.5 + }, + "cameras": [ + { + "type": "main", + "mp": 50.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "msrp_usd": 349 +} diff --git a/data/smartphone/motorola/2022/moto-g82-5g.json b/data/smartphone/motorola/2022/moto-g82-5g.json new file mode 100644 index 00000000000..acd10da72ed --- /dev/null +++ b/data/smartphone/motorola/2022/moto-g82-5g.json @@ -0,0 +1,33 @@ +{ + "slug": "moto-g82-5g", + "name": "Moto G82 5G", + "brand": "motorola", + "soc": "snapdragon-695", + "release_date": "2022-01-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 128, + 256 + ], + "display": { + "size_inch": 6.6 + }, + "cameras": [ + { + "type": "main", + "mp": 50.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "msrp_usd": 399 +} diff --git a/data/smartphone/nokia/2017/8-dual-sim-td-lte-am.json b/data/smartphone/nokia/2017/8-dual-sim-td-lte-am.json new file mode 100644 index 00000000000..db79cb9daf4 --- /dev/null +++ b/data/smartphone/nokia/2017/8-dual-sim-td-lte-am.json @@ -0,0 +1,41 @@ +{ + "slug": "8-dual-sim-td-lte-am", + "name": "8 Dual SIM TD-LTE AM", + "brand": "nokia", + "soc": "snapdragon-835", + "release_date": "2017-09-27", + "ram_gb": 4.0, + "battery_mah": 3090, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.27, + "resolution": "1440x2560", + "type": "Color IPS TFT LCD display", + "ppi": 557 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bolivia , Canada , USA", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/nokia/2018/2-1-dual-sim-td-lte-in.json b/data/smartphone/nokia/2018/2-1-dual-sim-td-lte-in.json new file mode 100644 index 00000000000..42bf19e5603 --- /dev/null +++ b/data/smartphone/nokia/2018/2-1-dual-sim-td-lte-in.json @@ -0,0 +1,41 @@ +{ + "slug": "2-1-dual-sim-td-lte-in", + "name": "2.1 Dual SIM TD-LTE IN", + "brand": "nokia", + "soc": "snapdragon-425", + "release_date": "2018-07-01", + "ram_gb": 1.0, + "battery_mah": 4000, + "weight_g": 174.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/nokia/2018/2-1-dual-sim-td-lte-latam.json b/data/smartphone/nokia/2018/2-1-dual-sim-td-lte-latam.json new file mode 100644 index 00000000000..b7c415728a2 --- /dev/null +++ b/data/smartphone/nokia/2018/2-1-dual-sim-td-lte-latam.json @@ -0,0 +1,41 @@ +{ + "slug": "2-1-dual-sim-td-lte-latam", + "name": "2.1 Dual SIM TD-LTE LATAM", + "brand": "nokia", + "soc": "snapdragon-425", + "release_date": "2018-12-01", + "ram_gb": 1.0, + "battery_mah": 4000, + "weight_g": 174.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Bolivia , Brazil , Mexico , Peru", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/nokia/2018/2-1-global-dual-sim-td-lte.json b/data/smartphone/nokia/2018/2-1-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..8c6856c9280 --- /dev/null +++ b/data/smartphone/nokia/2018/2-1-global-dual-sim-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "2-1-global-dual-sim-td-lte", + "name": "2.1 Global Dual SIM TD-LTE", + "brand": "nokia", + "soc": "snapdragon-425", + "release_date": "2018-07-01", + "ram_gb": 1.0, + "battery_mah": 4000, + "weight_g": 174.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Bulgaria , Czech , France , Germany , Hungary , Italy , Pakistan , Poland , Romania , Russia , Saudi Arabia , Slovakia , Slovenia , UAE , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/nokia/2018/2-1-global-td-lte.json b/data/smartphone/nokia/2018/2-1-global-td-lte.json new file mode 100644 index 00000000000..9506ec10606 --- /dev/null +++ b/data/smartphone/nokia/2018/2-1-global-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "2-1-global-td-lte", + "name": "2.1 Global TD-LTE", + "brand": "nokia", + "soc": "snapdragon-425", + "release_date": "2018-07-01", + "ram_gb": 1.0, + "battery_mah": 4000, + "weight_g": 174.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Ireland , South Africa , UK", + "market_regions": "Africa , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/nokia/2018/2-1-td-lte-latam.json b/data/smartphone/nokia/2018/2-1-td-lte-latam.json new file mode 100644 index 00000000000..ac4e3088a04 --- /dev/null +++ b/data/smartphone/nokia/2018/2-1-td-lte-latam.json @@ -0,0 +1,41 @@ +{ + "slug": "2-1-td-lte-latam", + "name": "2.1 TD-LTE LATAM", + "brand": "nokia", + "soc": "snapdragon-425", + "release_date": "2018-12-01", + "ram_gb": 1.0, + "battery_mah": 4000, + "weight_g": 174.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/nokia/2018/3-1-plus-dual-sim-td-lte-cn-32gb.json b/data/smartphone/nokia/2018/3-1-plus-dual-sim-td-lte-cn-32gb.json new file mode 100644 index 00000000000..361ce5ee46d --- /dev/null +++ b/data/smartphone/nokia/2018/3-1-plus-dual-sim-td-lte-cn-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "3-1-plus-dual-sim-td-lte-cn-32gb", + "name": "3.1 Plus Dual SIM TD-LTE CN 32GB", + "brand": "nokia", + "soc": "helio-p22", + "release_date": "2018-11-21", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.0, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/nokia/2018/3-1-plus-dual-sim-td-lte-in-16gb.json b/data/smartphone/nokia/2018/3-1-plus-dual-sim-td-lte-in-16gb.json new file mode 100644 index 00000000000..a5ea2c8cd70 --- /dev/null +++ b/data/smartphone/nokia/2018/3-1-plus-dual-sim-td-lte-in-16gb.json @@ -0,0 +1,41 @@ +{ + "slug": "3-1-plus-dual-sim-td-lte-in-16gb", + "name": "3.1 Plus Dual SIM TD-LTE IN 16GB", + "brand": "nokia", + "soc": "helio-p22", + "release_date": "2018-11-21", + "ram_gb": 2.0, + "battery_mah": 3500, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.0, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/nokia/2018/3-1-plus-dual-sim-td-lte-in-32gb.json b/data/smartphone/nokia/2018/3-1-plus-dual-sim-td-lte-in-32gb.json new file mode 100644 index 00000000000..443eca0e57b --- /dev/null +++ b/data/smartphone/nokia/2018/3-1-plus-dual-sim-td-lte-in-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "3-1-plus-dual-sim-td-lte-in-32gb", + "name": "3.1 Plus Dual SIM TD-LTE IN 32GB", + "brand": "nokia", + "soc": "helio-p22", + "release_date": "2018-11-21", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.0, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/nokia/2018/3-1-plus-global-dual-sim-td-lte-32gb.json b/data/smartphone/nokia/2018/3-1-plus-global-dual-sim-td-lte-32gb.json new file mode 100644 index 00000000000..433ee6e6305 --- /dev/null +++ b/data/smartphone/nokia/2018/3-1-plus-global-dual-sim-td-lte-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "3-1-plus-global-dual-sim-td-lte-32gb", + "name": "3.1 Plus Global Dual SIM TD-LTE 32GB", + "brand": "nokia", + "soc": "helio-p22", + "release_date": "2018-12-06", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.0, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , Belarus , Belgium , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , HK , Hungary , Italy , Japan , Latvia , Lithuania , Malaysia , Netherlands , Norway , NZ , Pakistan , Philippines , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Singapore , Slovenia , Spain , Switzerland , Sweden , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/nokia/2018/3-1-plus-global-td-lte-32gb.json b/data/smartphone/nokia/2018/3-1-plus-global-td-lte-32gb.json new file mode 100644 index 00000000000..dce1a327265 --- /dev/null +++ b/data/smartphone/nokia/2018/3-1-plus-global-td-lte-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "3-1-plus-global-td-lte-32gb", + "name": "3.1 Plus Global TD-LTE 32GB", + "brand": "nokia", + "soc": "helio-p22", + "release_date": "2018-12-06", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.0, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , Estonia , Finland , Germany , Hungary , Israel , Latvia , Lithuania , NZ , Poland , Russia , Singapore", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/nokia/2018/5-1-plus-2018-dual-sim-td-lte-in-32gb.json b/data/smartphone/nokia/2018/5-1-plus-2018-dual-sim-td-lte-in-32gb.json new file mode 100644 index 00000000000..2dd80b532df --- /dev/null +++ b/data/smartphone/nokia/2018/5-1-plus-2018-dual-sim-td-lte-in-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "5-1-plus-2018-dual-sim-td-lte-in-32gb", + "name": "5.1 Plus 2018 Dual SIM TD-LTE IN 32GB", + "brand": "nokia", + "soc": "helio-p60", + "release_date": "2018-10-02", + "ram_gb": 3.0, + "battery_mah": 3060, + "weight_g": 151.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.86, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 287 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/nokia/2018/5-1-plus-2018-global-dual-sim-td-lte-32gb.json b/data/smartphone/nokia/2018/5-1-plus-2018-global-dual-sim-td-lte-32gb.json new file mode 100644 index 00000000000..8544a4a2390 --- /dev/null +++ b/data/smartphone/nokia/2018/5-1-plus-2018-global-dual-sim-td-lte-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "5-1-plus-2018-global-dual-sim-td-lte-32gb", + "name": "5.1 Plus 2018 Global Dual SIM TD-LTE 32GB", + "brand": "nokia", + "soc": "helio-p60", + "release_date": "2018-12-06", + "ram_gb": 3.0, + "battery_mah": 3060, + "weight_g": 151.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.86, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 287 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Estonia , France , Germany , Hungary , Italy , Latvia , Lithuania , Netherlands , Pakistan , Russia , Spain , UAE , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/nokia/2018/6-1-plus-2018-global-dual-sim-td-lte.json b/data/smartphone/nokia/2018/6-1-plus-2018-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..03810444d2a --- /dev/null +++ b/data/smartphone/nokia/2018/6-1-plus-2018-global-dual-sim-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "6-1-plus-2018-global-dual-sim-td-lte", + "name": "6.1 Plus 2018 Global Dual SIM TD-LTE", + "brand": "nokia", + "soc": "snapdragon-636", + "release_date": "2018-08-02", + "ram_gb": 4.0, + "battery_mah": 3060, + "weight_g": 152.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.8, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Australia , Cyprus , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Ireland , Italy , Japan , Kazakhstan , Latvia , Lithuania , Malaysia , Norway , NZ , Pakistan , Philippines , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , Spain , Sweden , Switzerland , Taiwan , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/nokia/2018/6-1-plus-2018-standard-edition-sim-td-lte-in.json b/data/smartphone/nokia/2018/6-1-plus-2018-standard-edition-sim-td-lte-in.json new file mode 100644 index 00000000000..446f6f129e1 --- /dev/null +++ b/data/smartphone/nokia/2018/6-1-plus-2018-standard-edition-sim-td-lte-in.json @@ -0,0 +1,41 @@ +{ + "slug": "6-1-plus-2018-standard-edition-sim-td-lte-in", + "name": "6.1 Plus 2018 Standard Edition SIM TD-LTE IN", + "brand": "nokia", + "soc": "snapdragon-636", + "release_date": "2018-08-01", + "ram_gb": 4.0, + "battery_mah": 3060, + "weight_g": 152.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.8, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/nokia/2018/6-2018-dual-sim-td-lte-am-32gb-6-1.json b/data/smartphone/nokia/2018/6-2018-dual-sim-td-lte-am-32gb-6-1.json new file mode 100644 index 00000000000..d7f6e28c69d --- /dev/null +++ b/data/smartphone/nokia/2018/6-2018-dual-sim-td-lte-am-32gb-6-1.json @@ -0,0 +1,41 @@ +{ + "slug": "6-2018-dual-sim-td-lte-am-32gb-6-1", + "name": "6 2018 Dual SIM TD-LTE AM 32GB / 6.1", + "brand": "nokia", + "soc": "snapdragon-630", + "release_date": "2018-04-24", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , USA", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/nokia/2018/6-2018-global-dual-sim-td-lte-32gb-6-1.json b/data/smartphone/nokia/2018/6-2018-global-dual-sim-td-lte-32gb-6-1.json new file mode 100644 index 00000000000..2c3f75240f7 --- /dev/null +++ b/data/smartphone/nokia/2018/6-2018-global-dual-sim-td-lte-32gb-6-1.json @@ -0,0 +1,41 @@ +{ + "slug": "6-2018-global-dual-sim-td-lte-32gb-6-1", + "name": "6 2018 Global Dual SIM TD-LTE 32GB / 6.1", + "brand": "nokia", + "soc": "snapdragon-630", + "release_date": "2018-03-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Bulgaria , Czech , France , Germany , Hungary , India , Pakistan , Poland , Romania , Russia , Serbia , Slovakia , Slovenia , Spain", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/nokia/2018/6-2018-global-dual-sim-td-lte-64gb-6-1.json b/data/smartphone/nokia/2018/6-2018-global-dual-sim-td-lte-64gb-6-1.json new file mode 100644 index 00000000000..863ada7bf51 --- /dev/null +++ b/data/smartphone/nokia/2018/6-2018-global-dual-sim-td-lte-64gb-6-1.json @@ -0,0 +1,41 @@ +{ + "slug": "6-2018-global-dual-sim-td-lte-64gb-6-1", + "name": "6 2018 Global Dual SIM TD-LTE 64GB / 6.1", + "brand": "nokia", + "soc": "snapdragon-630", + "release_date": "2018-06-12", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Belarus , Bulgaria , France , Germany , India , Pakistan , Poland , Romania , Russia , Slovenia , Spain , Taiwan , UAE , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/nokia/2018/7-1-dual-sim-td-lte-am-64gb.json b/data/smartphone/nokia/2018/7-1-dual-sim-td-lte-am-64gb.json new file mode 100644 index 00000000000..30b5d47ecda --- /dev/null +++ b/data/smartphone/nokia/2018/7-1-dual-sim-td-lte-am-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "7-1-dual-sim-td-lte-am-64gb", + "name": "7.1 Dual SIM TD-LTE AM 64GB", + "brand": "nokia", + "soc": "snapdragon-636", + "release_date": "2018-10-22", + "ram_gb": 4.0, + "battery_mah": 3060, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bolivia , Mexico , Peru , USA", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/nokia/2018/7-1-dual-sim-td-lte-emea-32gb.json b/data/smartphone/nokia/2018/7-1-dual-sim-td-lte-emea-32gb.json new file mode 100644 index 00000000000..d02ab618e30 --- /dev/null +++ b/data/smartphone/nokia/2018/7-1-dual-sim-td-lte-emea-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "7-1-dual-sim-td-lte-emea-32gb", + "name": "7.1 Dual SIM TD-LTE EMEA 32GB", + "brand": "nokia", + "soc": "snapdragon-636", + "release_date": "2018-11-01", + "ram_gb": 3.0, + "battery_mah": 3060, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Bulgaria , Cyprus , Czech , Denmark , Finland , France , Greece , Germany , Hungary , Netherlands , Norway , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , Spain , Sweden , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/nokia/2018/7-1-dual-sim-td-lte-emea-64gb.json b/data/smartphone/nokia/2018/7-1-dual-sim-td-lte-emea-64gb.json new file mode 100644 index 00000000000..f8360ee5739 --- /dev/null +++ b/data/smartphone/nokia/2018/7-1-dual-sim-td-lte-emea-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "7-1-dual-sim-td-lte-emea-64gb", + "name": "7.1 Dual SIM TD-LTE EMEA 64GB", + "brand": "nokia", + "soc": "snapdragon-636", + "release_date": "2018-11-01", + "ram_gb": 4.0, + "battery_mah": 3060, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Bulgaria , Cyprus , Czech , Denmark , Egypt , Finland , France , Germany , Greece , Hungary , Israel , Norway , Poland , Russia , Romania , Saudi Arabia , South Africa , Sweden , UAE", + "market_regions": "Africa , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/nokia/2018/7-1-plus-2018-dual-sim-td-lte-am-64gb.json b/data/smartphone/nokia/2018/7-1-plus-2018-dual-sim-td-lte-am-64gb.json new file mode 100644 index 00000000000..74f080c90ab --- /dev/null +++ b/data/smartphone/nokia/2018/7-1-plus-2018-dual-sim-td-lte-am-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "7-1-plus-2018-dual-sim-td-lte-am-64gb", + "name": "7.1 Plus 2018 Dual SIM TD-LTE AM 64GB", + "brand": "nokia", + "soc": "snapdragon-710", + "release_date": "2018-11-01", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/nokia/2018/7-1-td-lte-am-64gb.json b/data/smartphone/nokia/2018/7-1-td-lte-am-64gb.json new file mode 100644 index 00000000000..3a3d8a3284d --- /dev/null +++ b/data/smartphone/nokia/2018/7-1-td-lte-am-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "7-1-td-lte-am-64gb", + "name": "7.1 TD-LTE AM 64GB", + "brand": "nokia", + "soc": "snapdragon-636", + "release_date": "2018-12-01", + "ram_gb": 4.0, + "battery_mah": 3060, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Mexico , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/nokia/2018/7-1-td-lte-emea-32gb.json b/data/smartphone/nokia/2018/7-1-td-lte-emea-32gb.json new file mode 100644 index 00000000000..67e5ff23c50 --- /dev/null +++ b/data/smartphone/nokia/2018/7-1-td-lte-emea-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "7-1-td-lte-emea-32gb", + "name": "7.1 TD-LTE EMEA 32GB", + "brand": "nokia", + "soc": "snapdragon-636", + "release_date": "2018-11-01", + "ram_gb": 3.0, + "battery_mah": 3060, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Croatia , Czech , France , Germany , Hungary , Ireland , Italy , Netherlands , Poland , Romania , Russia , Slovakia , Slovenia , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/nokia/2018/7-plus-android-one-dual-sim-td-lte-in.json b/data/smartphone/nokia/2018/7-plus-android-one-dual-sim-td-lte-in.json new file mode 100644 index 00000000000..de5d1eb359a --- /dev/null +++ b/data/smartphone/nokia/2018/7-plus-android-one-dual-sim-td-lte-in.json @@ -0,0 +1,41 @@ +{ + "slug": "7-plus-android-one-dual-sim-td-lte-in", + "name": "7 Plus Android One Dual SIM TD-LTE IN", + "brand": "nokia", + "soc": "snapdragon-660", + "release_date": "2018-05-01", + "ram_gb": 4.0, + "battery_mah": 3800, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/nokia/2018/7-plus-android-one-global-dual-sim-lte-a.json b/data/smartphone/nokia/2018/7-plus-android-one-global-dual-sim-lte-a.json new file mode 100644 index 00000000000..1a08b07e194 --- /dev/null +++ b/data/smartphone/nokia/2018/7-plus-android-one-global-dual-sim-lte-a.json @@ -0,0 +1,41 @@ +{ + "slug": "7-plus-android-one-global-dual-sim-lte-a", + "name": "7 Plus Android One Global Dual SIM LTE-A", + "brand": "nokia", + "soc": "snapdragon-660", + "release_date": "2018-04-01", + "ram_gb": 4.0, + "battery_mah": 3800, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Bulgaria , Cyprus , Czech , Finland , France , Germany , Greece , HK , Hungary , India , Italy , Japan , Russia , Slovenia , Spain , Switzerland , Taiwan", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/nokia/2018/7-plus-premium-edition-dual-sim-td-lte-apac.json b/data/smartphone/nokia/2018/7-plus-premium-edition-dual-sim-td-lte-apac.json new file mode 100644 index 00000000000..d09d09adda1 --- /dev/null +++ b/data/smartphone/nokia/2018/7-plus-premium-edition-dual-sim-td-lte-apac.json @@ -0,0 +1,41 @@ +{ + "slug": "7-plus-premium-edition-dual-sim-td-lte-apac", + "name": "7 Plus Premium Edition Dual SIM TD-LTE APAC", + "brand": "nokia", + "soc": "snapdragon-660", + "release_date": "2018-03-07", + "ram_gb": 6.0, + "battery_mah": 3800, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , Taiwan", + "market_regions": "Asia , Australia , Southeast Asia" +} diff --git a/data/smartphone/nokia/2018/7-plus-standard-edition-dual-sim-td-lte-apac.json b/data/smartphone/nokia/2018/7-plus-standard-edition-dual-sim-td-lte-apac.json new file mode 100644 index 00000000000..0beb9106476 --- /dev/null +++ b/data/smartphone/nokia/2018/7-plus-standard-edition-dual-sim-td-lte-apac.json @@ -0,0 +1,41 @@ +{ + "slug": "7-plus-standard-edition-dual-sim-td-lte-apac", + "name": "7 Plus Standard Edition Dual SIM TD-LTE APAC", + "brand": "nokia", + "soc": "snapdragon-660", + "release_date": "2018-03-07", + "ram_gb": 4.0, + "battery_mah": 3800, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , China , HK , Japan , Malaysia , NZ , Philippines , Singapore , South Korea , Taiwan , Thailand", + "market_regions": "Asia , Australia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/nokia/2018/8-1-standard-edition-global-dual-sim-td-lte-64gb.json b/data/smartphone/nokia/2018/8-1-standard-edition-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..0a57b94b40c --- /dev/null +++ b/data/smartphone/nokia/2018/8-1-standard-edition-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "8-1-standard-edition-global-dual-sim-td-lte-64gb", + "name": "8.1 Standard Edition Global Dual SIM TD-LTE 64GB", + "brand": "nokia", + "soc": "snapdragon-710", + "release_date": "2018-12-21", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Cyprus , Czech , Finland , France , Germany , Greece , Hungary , India , Italy , Poland , Russia , Slovakia , Taiwan , UAE , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/nokia/2018/x5-2018-dual-sim-td-lte-cn-32gb.json b/data/smartphone/nokia/2018/x5-2018-dual-sim-td-lte-cn-32gb.json new file mode 100644 index 00000000000..aae1499026c --- /dev/null +++ b/data/smartphone/nokia/2018/x5-2018-dual-sim-td-lte-cn-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "x5-2018-dual-sim-td-lte-cn-32gb", + "name": "X5 2018 Dual SIM TD-LTE CN 32GB", + "brand": "nokia", + "soc": "helio-p60", + "release_date": "2018-07-19", + "ram_gb": 3.0, + "battery_mah": 3060, + "weight_g": 151.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.86, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 287 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/nokia/2018/x5-2018-dual-sim-td-lte-cn-64gb.json b/data/smartphone/nokia/2018/x5-2018-dual-sim-td-lte-cn-64gb.json new file mode 100644 index 00000000000..ad1a461cb6b --- /dev/null +++ b/data/smartphone/nokia/2018/x5-2018-dual-sim-td-lte-cn-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "x5-2018-dual-sim-td-lte-cn-64gb", + "name": "X5 2018 Dual SIM TD-LTE CN 64GB", + "brand": "nokia", + "soc": "helio-p60", + "release_date": "2018-07-19", + "ram_gb": 4.0, + "battery_mah": 3060, + "weight_g": 151.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.86, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 287 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/nokia/2018/x6-2018-dual-sim-td-lte-cn-32gb.json b/data/smartphone/nokia/2018/x6-2018-dual-sim-td-lte-cn-32gb.json new file mode 100644 index 00000000000..8efd65e7b05 --- /dev/null +++ b/data/smartphone/nokia/2018/x6-2018-dual-sim-td-lte-cn-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "x6-2018-dual-sim-td-lte-cn-32gb", + "name": "X6 2018 Dual SIM TD-LTE CN 32GB", + "brand": "nokia", + "soc": "snapdragon-636", + "release_date": "2018-05-21", + "ram_gb": 4.0, + "battery_mah": 3060, + "weight_g": 152.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.79, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 436 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/nokia/2018/x6-2018-dual-sim-td-lte-cn-64gb.json b/data/smartphone/nokia/2018/x6-2018-dual-sim-td-lte-cn-64gb.json new file mode 100644 index 00000000000..25f3da003e1 --- /dev/null +++ b/data/smartphone/nokia/2018/x6-2018-dual-sim-td-lte-cn-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "x6-2018-dual-sim-td-lte-cn-64gb", + "name": "X6 2018 Dual SIM TD-LTE CN 64GB", + "brand": "nokia", + "soc": "snapdragon-636", + "release_date": "2018-05-21", + "ram_gb": 6.0, + "battery_mah": 3060, + "weight_g": 152.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.79, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 436 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/nokia/2018/x7-2018-dual-sim-td-lte-cn-128gb.json b/data/smartphone/nokia/2018/x7-2018-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..539b3a396ad --- /dev/null +++ b/data/smartphone/nokia/2018/x7-2018-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "x7-2018-dual-sim-td-lte-cn-128gb", + "name": "X7 2018 Dual SIM TD-LTE CN 128GB", + "brand": "nokia", + "soc": "snapdragon-710", + "release_date": "2018-11-18", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/nokia/2019/2-2-2019-dual-sim-td-lte-in-16gb.json b/data/smartphone/nokia/2019/2-2-2019-dual-sim-td-lte-in-16gb.json new file mode 100644 index 00000000000..cfec3748679 --- /dev/null +++ b/data/smartphone/nokia/2019/2-2-2019-dual-sim-td-lte-in-16gb.json @@ -0,0 +1,42 @@ +{ + "slug": "2-2-2019-dual-sim-td-lte-in-16gb", + "name": "2.2 2019 Dual SIM TD-LTE IN 16GB", + "brand": "nokia", + "soc": "helio-a22", + "release_date": "2019-06-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 153.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/nokia/2019/2-2-2019-dual-sim-td-lte-in-32gb.json b/data/smartphone/nokia/2019/2-2-2019-dual-sim-td-lte-in-32gb.json new file mode 100644 index 00000000000..0eeabf202df --- /dev/null +++ b/data/smartphone/nokia/2019/2-2-2019-dual-sim-td-lte-in-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "2-2-2019-dual-sim-td-lte-in-32gb", + "name": "2.2 2019 Dual SIM TD-LTE IN 32GB", + "brand": "nokia", + "soc": "helio-a22", + "release_date": "2019-06-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 153.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/nokia/2019/2-2-2019-global-dual-sim-td-lte-16gb.json b/data/smartphone/nokia/2019/2-2-2019-global-dual-sim-td-lte-16gb.json new file mode 100644 index 00000000000..038f09a3a20 --- /dev/null +++ b/data/smartphone/nokia/2019/2-2-2019-global-dual-sim-td-lte-16gb.json @@ -0,0 +1,42 @@ +{ + "slug": "2-2-2019-global-dual-sim-td-lte-16gb", + "name": "2.2 2019 Global Dual SIM TD-LTE 16GB", + "brand": "nokia", + "soc": "helio-a22", + "release_date": "2019-07-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 153.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Austria , Belarus , Czech , Denmark , Estonia , France , Germany , Hungary , Ireland , Israel , Italy , Jordan , Kuwait , Latvia , Lithuania , Norway , Pakistan , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Slovenia , South Africa , Spain , Sweden , UAE , UK , Ukraine", + "market_regions": "Africa , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/nokia/2019/2-2-2019-global-dual-sim-td-lte-32gb.json b/data/smartphone/nokia/2019/2-2-2019-global-dual-sim-td-lte-32gb.json new file mode 100644 index 00000000000..9963c694aed --- /dev/null +++ b/data/smartphone/nokia/2019/2-2-2019-global-dual-sim-td-lte-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "2-2-2019-global-dual-sim-td-lte-32gb", + "name": "2.2 2019 Global Dual SIM TD-LTE 32GB", + "brand": "nokia", + "soc": "helio-a22", + "release_date": "2019-07-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 153.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , Belarus , Bulgaria , Czech , Estonia , Finland , France , Germany , Hungary , Ireland , Italy , Jordan , Kuwait , Latvia , Lithuania , Norway , Pakistan , Poland , Portugal , Russia , Saudi Arabia , Slovakia , Slovenia , South Africa , Spain , Switzerland , Sweden , UAE , UK , Ukraine", + "market_regions": "Africa , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/nokia/2019/2-2-2019-global-td-lte-16gb.json b/data/smartphone/nokia/2019/2-2-2019-global-td-lte-16gb.json new file mode 100644 index 00000000000..1c5e60036e2 --- /dev/null +++ b/data/smartphone/nokia/2019/2-2-2019-global-td-lte-16gb.json @@ -0,0 +1,42 @@ +{ + "slug": "2-2-2019-global-td-lte-16gb", + "name": "2.2 2019 Global TD-LTE 16GB", + "brand": "nokia", + "soc": "helio-a22", + "release_date": "2019-07-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 153.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , Austria , Belgium , Czech , Denmark , Estonia , Finland , France , Germany , Hungary , Ireland , Italy , Latvia , Lithuania , Norway , NZ , Pakistan , Poland , Portugal , Romania , Slovakia , Slovenia , South Africa , Spain , Switzerland , Sweden , Turkey , UK", + "market_regions": "Africa , Australia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/nokia/2019/2-2-2019-lte-na-32gb.json b/data/smartphone/nokia/2019/2-2-2019-lte-na-32gb.json new file mode 100644 index 00000000000..ce28a5524a1 --- /dev/null +++ b/data/smartphone/nokia/2019/2-2-2019-lte-na-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "2-2-2019-lte-na-32gb", + "name": "2.2 2019 LTE NA 32GB", + "brand": "nokia", + "soc": "helio-a22", + "release_date": "2019-07-16", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 153.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Canada , Mexico , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/nokia/2019/2-2-2019-lte-us-32gb.json b/data/smartphone/nokia/2019/2-2-2019-lte-us-32gb.json new file mode 100644 index 00000000000..65b0a6b9eec --- /dev/null +++ b/data/smartphone/nokia/2019/2-2-2019-lte-us-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "2-2-2019-lte-us-32gb", + "name": "2.2 2019 LTE US 32GB", + "brand": "nokia", + "soc": "helio-a22", + "release_date": "2019-07-16", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 153.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/nokia/2019/2-3-dual-sim-td-lte-in.json b/data/smartphone/nokia/2019/2-3-dual-sim-td-lte-in.json new file mode 100644 index 00000000000..01854b69a8d --- /dev/null +++ b/data/smartphone/nokia/2019/2-3-dual-sim-td-lte-in.json @@ -0,0 +1,42 @@ +{ + "slug": "2-3-dual-sim-td-lte-in", + "name": "2.3 Dual SIM TD-LTE IN", + "brand": "nokia", + "soc": "helio-a22", + "release_date": "2019-12-19", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.18, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 272 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/nokia/2019/2-3-global-dual-sim-td-lte.json b/data/smartphone/nokia/2019/2-3-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..9b6e6a15e4f --- /dev/null +++ b/data/smartphone/nokia/2019/2-3-global-dual-sim-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "2-3-global-dual-sim-td-lte", + "name": "2.3 Global Dual SIM TD-LTE", + "brand": "nokia", + "soc": "helio-a22", + "release_date": "2019-12-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.18, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 272 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Armenia , Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Egypt , France , Greece , Germany , HK , Hungary , Ireland , Israel , Italy , Jordan , Kazakhstan , Kuwait , Latvia , Lithuania , Malaysia , Netherlands , Norway , Pakistan , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , South Africa , Spain , Switzerland , Taiwan , Thailand , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/nokia/2019/2-v-lte-us.json b/data/smartphone/nokia/2019/2-v-lte-us.json new file mode 100644 index 00000000000..f833354b470 --- /dev/null +++ b/data/smartphone/nokia/2019/2-v-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "2-v-lte-us", + "name": "2 V LTE US", + "brand": "nokia", + "soc": "snapdragon-425", + "release_date": "2019-02-01", + "ram_gb": 1.0, + "battery_mah": 4000, + "weight_g": 174.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/nokia/2019/3-1-plus-dual-sim-lte-latam-32gb.json b/data/smartphone/nokia/2019/3-1-plus-dual-sim-lte-latam-32gb.json new file mode 100644 index 00000000000..49e6ac6eb45 --- /dev/null +++ b/data/smartphone/nokia/2019/3-1-plus-dual-sim-lte-latam-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "3-1-plus-dual-sim-lte-latam-32gb", + "name": "3.1 Plus Dual SIM LTE LATAM 32GB", + "brand": "nokia", + "soc": "helio-p22", + "release_date": "2019-02-01", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.0, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "market_countries": "Bolivia , Colombia , Costa Rica , Ecuador , Guatemala , Mexico , Nicaragua , Paraguay , Peru", + "market_regions": "Central America , South America" +} diff --git a/data/smartphone/nokia/2019/3-1-plus-lte-a-us.json b/data/smartphone/nokia/2019/3-1-plus-lte-a-us.json new file mode 100644 index 00000000000..799ba92ff13 --- /dev/null +++ b/data/smartphone/nokia/2019/3-1-plus-lte-a-us.json @@ -0,0 +1,41 @@ +{ + "slug": "3-1-plus-lte-a-us", + "name": "3.1 Plus LTE-A US", + "brand": "nokia", + "soc": "snapdragon-439", + "release_date": "2019-01-27", + "ram_gb": 2.0, + "battery_mah": 3500, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/nokia/2019/3-1-plus-lte-latam-16gb.json b/data/smartphone/nokia/2019/3-1-plus-lte-latam-16gb.json new file mode 100644 index 00000000000..9a9d91caa68 --- /dev/null +++ b/data/smartphone/nokia/2019/3-1-plus-lte-latam-16gb.json @@ -0,0 +1,41 @@ +{ + "slug": "3-1-plus-lte-latam-16gb", + "name": "3.1 Plus LTE LATAM 16GB", + "brand": "nokia", + "soc": "helio-p22", + "release_date": "2019-02-01", + "ram_gb": 2.0, + "battery_mah": 3500, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.0, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "market_countries": "Bolivia , Colombia , Costa Rica , Ecuador , Guatemala , Mexico , Paraguay", + "market_regions": "Central America , South America" +} diff --git a/data/smartphone/nokia/2019/3-2-2019-dual-sim-td-lte-in-16gb.json b/data/smartphone/nokia/2019/3-2-2019-dual-sim-td-lte-in-16gb.json new file mode 100644 index 00000000000..b83d9a3d563 --- /dev/null +++ b/data/smartphone/nokia/2019/3-2-2019-dual-sim-td-lte-in-16gb.json @@ -0,0 +1,42 @@ +{ + "slug": "3-2-2019-dual-sim-td-lte-in-16gb", + "name": "3.2 2019 Dual SIM TD-LTE IN 16GB", + "brand": "nokia", + "soc": "snapdragon-429", + "release_date": "2019-05-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color TN-TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/nokia/2019/3-2-2019-dual-sim-td-lte-in-32gb.json b/data/smartphone/nokia/2019/3-2-2019-dual-sim-td-lte-in-32gb.json new file mode 100644 index 00000000000..c080713d2d9 --- /dev/null +++ b/data/smartphone/nokia/2019/3-2-2019-dual-sim-td-lte-in-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "3-2-2019-dual-sim-td-lte-in-32gb", + "name": "3.2 2019 Dual SIM TD-LTE IN 32GB", + "brand": "nokia", + "soc": "snapdragon-429", + "release_date": "2019-05-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color TN-TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/nokia/2019/3-2-2019-global-dual-sim-td-lte-16gb.json b/data/smartphone/nokia/2019/3-2-2019-global-dual-sim-td-lte-16gb.json new file mode 100644 index 00000000000..b54d7745c06 --- /dev/null +++ b/data/smartphone/nokia/2019/3-2-2019-global-dual-sim-td-lte-16gb.json @@ -0,0 +1,42 @@ +{ + "slug": "3-2-2019-global-dual-sim-td-lte-16gb", + "name": "3.2 2019 Global Dual SIM TD-LTE 16GB", + "brand": "nokia", + "soc": "snapdragon-429", + "release_date": "2019-10-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color TN-TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Armenia , Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Egypt , Finland , France , Greece , Germany , HK , Hungary , Ireland , Israel , Italy , Jordan , Kazakhstan , Kuwait , Latvia , Lithuania , Malaysia , Netherlands , Norway , Pakistan , Philippines , Poland , Romania , Russia , Saudi Arabia , Serbia , Slovakia , Slovenia , South Africa , Spain , Switzerland , Sweden , Taiwan , Thailand , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/nokia/2019/3-2-2019-global-dual-sim-td-lte-32gb.json b/data/smartphone/nokia/2019/3-2-2019-global-dual-sim-td-lte-32gb.json new file mode 100644 index 00000000000..27e55243a3d --- /dev/null +++ b/data/smartphone/nokia/2019/3-2-2019-global-dual-sim-td-lte-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "3-2-2019-global-dual-sim-td-lte-32gb", + "name": "3.2 2019 Global Dual SIM TD-LTE 32GB", + "brand": "nokia", + "soc": "snapdragon-429", + "release_date": "2019-05-21", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color TN-TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Armenia , Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Egypt , Finland , France , Greece , Germany , HK , Hungary , Ireland , Israel , Italy , Jordan , Kazakhstan , Kuwait , Latvia , Lithuania , Malaysia , Netherlands , Norway , Pakistan , Philippines , Poland , Romania , Russia , Saudi Arabia , Serbia , Slovakia , Slovenia , South Africa , Spain , Switzerland , Sweden , Taiwan , Thailand , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/nokia/2019/3-2-2019-global-dual-sim-td-lte-64gb.json b/data/smartphone/nokia/2019/3-2-2019-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..941c67fba48 --- /dev/null +++ b/data/smartphone/nokia/2019/3-2-2019-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "3-2-2019-global-dual-sim-td-lte-64gb", + "name": "3.2 2019 Global Dual SIM TD-LTE 64GB", + "brand": "nokia", + "soc": "snapdragon-429", + "release_date": "2019-05-21", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color TN-TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Armenia , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Ireland , Israel , Italy , Jordan , Kazakhstan , Kuwait , Latvia , Lithuania , Netherlands , Norway , Pakistan , Philippines , Poland , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , UAE , UK", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/nokia/2019/3-2-2019-global-td-lte-16gb.json b/data/smartphone/nokia/2019/3-2-2019-global-td-lte-16gb.json new file mode 100644 index 00000000000..4545c08c645 --- /dev/null +++ b/data/smartphone/nokia/2019/3-2-2019-global-td-lte-16gb.json @@ -0,0 +1,42 @@ +{ + "slug": "3-2-2019-global-td-lte-16gb", + "name": "3.2 2019 Global TD-LTE 16GB", + "brand": "nokia", + "soc": "snapdragon-429", + "release_date": "2019-10-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color TN-TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , Germany , Ireland , UK", + "market_regions": "Australia , Europe , Western Europe" +} diff --git a/data/smartphone/nokia/2019/4-2-dual-sim-td-lte-am-32gb.json b/data/smartphone/nokia/2019/4-2-dual-sim-td-lte-am-32gb.json new file mode 100644 index 00000000000..f7fc7d90857 --- /dev/null +++ b/data/smartphone/nokia/2019/4-2-dual-sim-td-lte-am-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "4-2-dual-sim-td-lte-am-32gb", + "name": "4.2 Dual SIM TD-LTE AM 32GB", + "brand": "nokia", + "soc": "snapdragon-439", + "release_date": "2019-05-14", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 161.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Brazil , Canada , USA", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/nokia/2019/4-2-dual-sim-td-lte-in-32gb.json b/data/smartphone/nokia/2019/4-2-dual-sim-td-lte-in-32gb.json new file mode 100644 index 00000000000..9a7fd0d0e68 --- /dev/null +++ b/data/smartphone/nokia/2019/4-2-dual-sim-td-lte-in-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "4-2-dual-sim-td-lte-in-32gb", + "name": "4.2 Dual SIM TD-LTE IN 32GB", + "brand": "nokia", + "soc": "snapdragon-439", + "release_date": "2019-05-02", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 161.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/nokia/2019/4-2-global-dual-sim-td-lte-16gb.json b/data/smartphone/nokia/2019/4-2-global-dual-sim-td-lte-16gb.json new file mode 100644 index 00000000000..09e23261310 --- /dev/null +++ b/data/smartphone/nokia/2019/4-2-global-dual-sim-td-lte-16gb.json @@ -0,0 +1,42 @@ +{ + "slug": "4-2-global-dual-sim-td-lte-16gb", + "name": "4.2 Global Dual SIM TD-LTE 16GB", + "brand": "nokia", + "soc": "snapdragon-439", + "release_date": "2019-04-28", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 161.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , Belarus , Belgium , Bulgaria , Croatia , Czech , Denmark , Finland , France , Germany , Hungary , Italy , Netherlands , Poland , Portugal , Russia , Romania , Taiwan , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/nokia/2019/4-2-global-dual-sim-td-lte-32gb.json b/data/smartphone/nokia/2019/4-2-global-dual-sim-td-lte-32gb.json new file mode 100644 index 00000000000..62cb47a59bb --- /dev/null +++ b/data/smartphone/nokia/2019/4-2-global-dual-sim-td-lte-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "4-2-global-dual-sim-td-lte-32gb", + "name": "4.2 Global Dual SIM TD-LTE 32GB", + "brand": "nokia", + "soc": "snapdragon-439", + "release_date": "2019-04-28", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 161.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , Croatia , Czech , Denmark , Finland , France , Germany , Hungary , Italy , Netherlands , Poland , Portugal , Russia , Romania , Slovakia , Slovenia , Spain , Taiwan , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/nokia/2019/4-2-global-td-lte-32gb.json b/data/smartphone/nokia/2019/4-2-global-td-lte-32gb.json new file mode 100644 index 00000000000..e891a53f35c --- /dev/null +++ b/data/smartphone/nokia/2019/4-2-global-td-lte-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "4-2-global-td-lte-32gb", + "name": "4.2 Global TD-LTE 32GB", + "brand": "nokia", + "soc": "snapdragon-439", + "release_date": "2019-04-28", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 161.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , Croatia , Czech , Denmark , Finland , France , Germany , Hungary , Italy , Netherlands , Poland , Portugal , Russia , Romania , Slovakia , Slovenia , Spain , Taiwan , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/nokia/2019/4-2-td-lte-latam-32gb.json b/data/smartphone/nokia/2019/4-2-td-lte-latam-32gb.json new file mode 100644 index 00000000000..8b8ccc377af --- /dev/null +++ b/data/smartphone/nokia/2019/4-2-td-lte-latam-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "4-2-td-lte-latam-32gb", + "name": "4.2 TD-LTE LATAM 32GB", + "brand": "nokia", + "soc": "snapdragon-439", + "release_date": "2019-05-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 161.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Chile , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/nokia/2019/5-1-plus-2018-dual-sim-td-lte-latam.json b/data/smartphone/nokia/2019/5-1-plus-2018-dual-sim-td-lte-latam.json new file mode 100644 index 00000000000..18b2bb2bb8f --- /dev/null +++ b/data/smartphone/nokia/2019/5-1-plus-2018-dual-sim-td-lte-latam.json @@ -0,0 +1,41 @@ +{ + "slug": "5-1-plus-2018-dual-sim-td-lte-latam", + "name": "5.1 Plus 2018 Dual SIM TD-LTE LATAM", + "brand": "nokia", + "soc": "helio-p60", + "release_date": "2019-01-01", + "ram_gb": 3.0, + "battery_mah": 3060, + "weight_g": 151.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.86, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 287 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/nokia/2019/5-1-plus-2018-premium-edition-dual-sim-td-lte-in-64gb.json b/data/smartphone/nokia/2019/5-1-plus-2018-premium-edition-dual-sim-td-lte-in-64gb.json new file mode 100644 index 00000000000..d97092b1005 --- /dev/null +++ b/data/smartphone/nokia/2019/5-1-plus-2018-premium-edition-dual-sim-td-lte-in-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "5-1-plus-2018-premium-edition-dual-sim-td-lte-in-64gb", + "name": "5.1 Plus 2018 Premium Edition Dual SIM TD-LTE IN 64GB", + "brand": "nokia", + "soc": "helio-p60", + "release_date": "2019-02-07", + "ram_gb": 6.0, + "battery_mah": 3060, + "weight_g": 151.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.86, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 287 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/nokia/2019/5-1-plus-2018-standard-edition-dual-sim-td-lte-in-64gb.json b/data/smartphone/nokia/2019/5-1-plus-2018-standard-edition-dual-sim-td-lte-in-64gb.json new file mode 100644 index 00000000000..ff414add35e --- /dev/null +++ b/data/smartphone/nokia/2019/5-1-plus-2018-standard-edition-dual-sim-td-lte-in-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "5-1-plus-2018-standard-edition-dual-sim-td-lte-in-64gb", + "name": "5.1 Plus 2018 Standard Edition Dual SIM TD-LTE IN 64GB", + "brand": "nokia", + "soc": "helio-p60", + "release_date": "2019-02-07", + "ram_gb": 4.0, + "battery_mah": 3060, + "weight_g": 151.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.86, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 287 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/nokia/2019/5-1-plus-2018-td-lte-latam.json b/data/smartphone/nokia/2019/5-1-plus-2018-td-lte-latam.json new file mode 100644 index 00000000000..fd961fed511 --- /dev/null +++ b/data/smartphone/nokia/2019/5-1-plus-2018-td-lte-latam.json @@ -0,0 +1,41 @@ +{ + "slug": "5-1-plus-2018-td-lte-latam", + "name": "5.1 Plus 2018 TD-LTE LATAM", + "brand": "nokia", + "soc": "helio-p60", + "release_date": "2019-01-01", + "ram_gb": 3.0, + "battery_mah": 3060, + "weight_g": 151.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.86, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 287 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/nokia/2019/6-1-plus-2018-premium-edition-sim-td-lte-in.json b/data/smartphone/nokia/2019/6-1-plus-2018-premium-edition-sim-td-lte-in.json new file mode 100644 index 00000000000..85f07e42fe1 --- /dev/null +++ b/data/smartphone/nokia/2019/6-1-plus-2018-premium-edition-sim-td-lte-in.json @@ -0,0 +1,41 @@ +{ + "slug": "6-1-plus-2018-premium-edition-sim-td-lte-in", + "name": "6.1 Plus 2018 Premium Edition SIM TD-LTE IN", + "brand": "nokia", + "soc": "snapdragon-636", + "release_date": "2019-02-23", + "ram_gb": 6.0, + "battery_mah": 3060, + "weight_g": 152.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.8, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/nokia/2019/6-2-dual-sim-td-lte-in-64gb.json b/data/smartphone/nokia/2019/6-2-dual-sim-td-lte-in-64gb.json new file mode 100644 index 00000000000..9097f4f0947 --- /dev/null +++ b/data/smartphone/nokia/2019/6-2-dual-sim-td-lte-in-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "6-2-dual-sim-td-lte-in-64gb", + "name": "6.2 Dual SIM TD-LTE IN 64GB", + "brand": "nokia", + "soc": "snapdragon-636", + "release_date": "2019-10-12", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/nokia/2019/6-2-global-dual-sim-td-lte-128gb.json b/data/smartphone/nokia/2019/6-2-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..44bf94e6949 --- /dev/null +++ b/data/smartphone/nokia/2019/6-2-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "6-2-global-dual-sim-td-lte-128gb", + "name": "6.2 Global Dual SIM TD-LTE 128GB", + "brand": "nokia", + "soc": "snapdragon-636", + "release_date": "2019-09-23", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Australia , Austria , Belgium , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Italy , Kazakhstan , Latvia , Lithuania , Malaysia , Netherlands , Norway , NZ , Pakistan , Poland , Russia , Romania , Saudi Arabia , Spain , Sweden , Switzerland , Thailand , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/nokia/2019/6-2-global-dual-sim-td-lte-64gb.json b/data/smartphone/nokia/2019/6-2-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..4ea6a0fd0a3 --- /dev/null +++ b/data/smartphone/nokia/2019/6-2-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "6-2-global-dual-sim-td-lte-64gb", + "name": "6.2 Global Dual SIM TD-LTE 64GB", + "brand": "nokia", + "soc": "snapdragon-636", + "release_date": "2019-09-23", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Greece , HK , Hungary , Ireland , Italy , Latvia , Lithuania , Malaysia , Netherlands , Norway , Pakistan , Poland , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , Spain , Switzerland , Sweden , Thailand , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/nokia/2019/6-2-global-td-lte-64gb.json b/data/smartphone/nokia/2019/6-2-global-td-lte-64gb.json new file mode 100644 index 00000000000..1b38c75b3b0 --- /dev/null +++ b/data/smartphone/nokia/2019/6-2-global-td-lte-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "6-2-global-td-lte-64gb", + "name": "6.2 Global TD-LTE 64GB", + "brand": "nokia", + "soc": "snapdragon-636", + "release_date": "2019-09-23", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Cyprus , Croatia , Czech , France , Germany , Greece , Hungary , Ireland , Italy , Malaysia , Netherlands , Poland , Russia , Romania , Slovakia , Slovenia , Thailand , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/nokia/2019/6-2-lte-a-am-64gb.json b/data/smartphone/nokia/2019/6-2-lte-a-am-64gb.json new file mode 100644 index 00000000000..f8d2fe28b49 --- /dev/null +++ b/data/smartphone/nokia/2019/6-2-lte-a-am-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "6-2-lte-a-am-64gb", + "name": "6.2 LTE-A AM 64GB", + "brand": "nokia", + "soc": "snapdragon-636", + "release_date": "2019-10-14", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Canada , USA", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/nokia/2019/7-2-dual-sim-td-lte-in-64gb.json b/data/smartphone/nokia/2019/7-2-dual-sim-td-lte-in-64gb.json new file mode 100644 index 00000000000..5bf19de8088 --- /dev/null +++ b/data/smartphone/nokia/2019/7-2-dual-sim-td-lte-in-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "7-2-dual-sim-td-lte-in-64gb", + "name": "7.2 Dual SIM TD-LTE IN 64GB", + "brand": "nokia", + "soc": "snapdragon-660", + "release_date": "2019-10-11", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/nokia/2019/7-2-global-dual-sim-td-lte-128gb.json b/data/smartphone/nokia/2019/7-2-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..ae0fe1ac14a --- /dev/null +++ b/data/smartphone/nokia/2019/7-2-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "7-2-global-dual-sim-td-lte-128gb", + "name": "7.2 Global Dual SIM TD-LTE 128GB", + "brand": "nokia", + "soc": "snapdragon-660", + "release_date": "2019-09-23", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Australia , Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Finland , France , Greece , Germany , HK , Hungary , Ireland , Italy , Kazakhstan , Malaysia , Netherlands , Norway , NZ , Pakistan , Philippines , Poland , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Sweden , Switzerland , Thailand , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/nokia/2019/7-2-global-dual-sim-td-lte-64gb.json b/data/smartphone/nokia/2019/7-2-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..f5de6f87e84 --- /dev/null +++ b/data/smartphone/nokia/2019/7-2-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "7-2-global-dual-sim-td-lte-64gb", + "name": "7.2 Global Dual SIM TD-LTE 64GB", + "brand": "nokia", + "soc": "snapdragon-660", + "release_date": "2019-09-23", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Cyprus , Croatia , Czech , Denmark , Estonia , France , Greece , Germany , Hungary , Ireland , Italy , Kazakhstan , Latvia , Lithuania , Malaysia , Netherlands , Norway , Pakistan , Poland , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Sweden , Switzerland , Thailand , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/nokia/2019/7-2-global-td-lte-64gb.json b/data/smartphone/nokia/2019/7-2-global-td-lte-64gb.json new file mode 100644 index 00000000000..cde8ebd2132 --- /dev/null +++ b/data/smartphone/nokia/2019/7-2-global-td-lte-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "7-2-global-td-lte-64gb", + "name": "7.2 Global TD-LTE 64GB", + "brand": "nokia", + "soc": "snapdragon-660", + "release_date": "2019-09-23", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Cyprus , Croatia , Czech , France , Germany , Greece , Ireland , Italy , Netherlands , Poland , Romania , Russia , Slovakia , Slovenia , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/nokia/2019/7-2-lte-a-am-128gb.json b/data/smartphone/nokia/2019/7-2-lte-a-am-128gb.json new file mode 100644 index 00000000000..06472142818 --- /dev/null +++ b/data/smartphone/nokia/2019/7-2-lte-a-am-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "7-2-lte-a-am-128gb", + "name": "7.2 LTE-A AM 128GB", + "brand": "nokia", + "soc": "snapdragon-660", + "release_date": "2019-09-23", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Canada , Chile , USA", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/nokia/2019/8-1-premium-edition-global-dual-sim-td-lte-64gb.json b/data/smartphone/nokia/2019/8-1-premium-edition-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..22c8a3e22d9 --- /dev/null +++ b/data/smartphone/nokia/2019/8-1-premium-edition-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "8-1-premium-edition-global-dual-sim-td-lte-64gb", + "name": "8.1 Premium Edition Global Dual SIM TD-LTE 64GB", + "brand": "nokia", + "soc": "snapdragon-710", + "release_date": "2019-02-06", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Russia", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/nokia/2019/9-pureview-dual-sim-td-lte-cn.json b/data/smartphone/nokia/2019/9-pureview-dual-sim-td-lte-cn.json new file mode 100644 index 00000000000..ba7d787c260 --- /dev/null +++ b/data/smartphone/nokia/2019/9-pureview-dual-sim-td-lte-cn.json @@ -0,0 +1,42 @@ +{ + "slug": "9-pureview-dual-sim-td-lte-cn", + "name": "9 PureView Dual SIM TD-LTE CN", + "brand": "nokia", + "soc": "snapdragon-845", + "release_date": "2019-04-19", + "ram_gb": 6.0, + "battery_mah": 3320, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/nokia/2019/9-pureview-global-dual-sim-td-lte.json b/data/smartphone/nokia/2019/9-pureview-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..3104d769497 --- /dev/null +++ b/data/smartphone/nokia/2019/9-pureview-global-dual-sim-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "9-pureview-global-dual-sim-td-lte", + "name": "9 PureView Global Dual SIM TD-LTE", + "brand": "nokia", + "soc": "snapdragon-845", + "release_date": "2019-03-16", + "ram_gb": 6.0, + "battery_mah": 3320, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Czech , Finland , France , Germany , India , Italy , Netherlands , Russia , Taiwan", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/nokia/2019/9-pureview-td-lte-na.json b/data/smartphone/nokia/2019/9-pureview-td-lte-na.json new file mode 100644 index 00000000000..23c3cbd613e --- /dev/null +++ b/data/smartphone/nokia/2019/9-pureview-td-lte-na.json @@ -0,0 +1,42 @@ +{ + "slug": "9-pureview-td-lte-na", + "name": "9 PureView TD-LTE NA", + "brand": "nokia", + "soc": "snapdragon-845", + "release_date": "2019-03-03", + "ram_gb": 6.0, + "battery_mah": 3320, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/nokia/2019/x71-dual-sim-td-lte-cn-128gb.json b/data/smartphone/nokia/2019/x71-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..6538f4eaf57 --- /dev/null +++ b/data/smartphone/nokia/2019/x71-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "x71-dual-sim-td-lte-cn-128gb", + "name": "X71 Dual SIM TD-LTE CN 128GB", + "brand": "nokia", + "soc": "snapdragon-660", + "release_date": "2019-04-17", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/nokia/2019/x71-dual-sim-td-lte-cn-64gb.json b/data/smartphone/nokia/2019/x71-dual-sim-td-lte-cn-64gb.json new file mode 100644 index 00000000000..42780bde2a6 --- /dev/null +++ b/data/smartphone/nokia/2019/x71-dual-sim-td-lte-cn-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "x71-dual-sim-td-lte-cn-64gb", + "name": "X71 Dual SIM TD-LTE CN 64GB", + "brand": "nokia", + "soc": "snapdragon-660", + "release_date": "2019-04-17", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/nokia/2019/x71-global-dual-sim-td-lte-8-1-plus.json b/data/smartphone/nokia/2019/x71-global-dual-sim-td-lte-8-1-plus.json new file mode 100644 index 00000000000..3f354c2534a --- /dev/null +++ b/data/smartphone/nokia/2019/x71-global-dual-sim-td-lte-8-1-plus.json @@ -0,0 +1,42 @@ +{ + "slug": "x71-global-dual-sim-td-lte-8-1-plus", + "name": "X71 Global Dual SIM TD-LTE / 8.1 Plus", + "brand": "nokia", + "soc": "snapdragon-660", + "release_date": "2019-04-12", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Canada , HK , Kenya , NZ , Russia , Slovenia , South Africa , Taiwan", + "market_regions": "Africa , Asia , Australia , North America , Southeast Asia" +} diff --git a/data/smartphone/nokia/2020/1-3-2020-dual-sim-lte-emea.json b/data/smartphone/nokia/2020/1-3-2020-dual-sim-lte-emea.json new file mode 100644 index 00000000000..184000c4ade --- /dev/null +++ b/data/smartphone/nokia/2020/1-3-2020-dual-sim-lte-emea.json @@ -0,0 +1,42 @@ +{ + "slug": "1-3-2020-dual-sim-lte-emea", + "name": "1.3 2020 Dual SIM LTE EMEA", + "brand": "nokia", + "soc": "snapdragon-215", + "release_date": "2020-03-01", + "ram_gb": 1.0, + "battery_mah": 3000, + "weight_g": 155.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Estonia , France , Greece , Germany , Hungary , Italy , Jordan , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , Spain , Switzerland , UAE , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/nokia/2020/1-3-2020-dual-sim-lte-latam.json b/data/smartphone/nokia/2020/1-3-2020-dual-sim-lte-latam.json new file mode 100644 index 00000000000..98c4f1946b3 --- /dev/null +++ b/data/smartphone/nokia/2020/1-3-2020-dual-sim-lte-latam.json @@ -0,0 +1,42 @@ +{ + "slug": "1-3-2020-dual-sim-lte-latam", + "name": "1.3 2020 Dual SIM LTE LATAM", + "brand": "nokia", + "soc": "snapdragon-215", + "release_date": "2020-04-01", + "ram_gb": 1.0, + "battery_mah": 3000, + "weight_g": 155.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Chile , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/nokia/2020/1-3-2020-lte-emea.json b/data/smartphone/nokia/2020/1-3-2020-lte-emea.json new file mode 100644 index 00000000000..fd09550a445 --- /dev/null +++ b/data/smartphone/nokia/2020/1-3-2020-lte-emea.json @@ -0,0 +1,42 @@ +{ + "slug": "1-3-2020-lte-emea", + "name": "1.3 2020 LTE EMEA", + "brand": "nokia", + "soc": "snapdragon-215", + "release_date": "2020-04-01", + "ram_gb": 1.0, + "battery_mah": 3000, + "weight_g": 155.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Finland , France , Greece , Israel , Italy , Netherlands , Norway , Portugal , Saudi Arabia , Slovakia , Slovenia , Spain , Sweden , Switzerland , Turkey , UK", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/nokia/2020/2-3-global-td-lte.json b/data/smartphone/nokia/2020/2-3-global-td-lte.json new file mode 100644 index 00000000000..32dff75b657 --- /dev/null +++ b/data/smartphone/nokia/2020/2-3-global-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "2-3-global-td-lte", + "name": "2.3 Global TD-LTE", + "brand": "nokia", + "soc": "helio-a22", + "release_date": "2020-01-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.18, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 272 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , Ireland , NZ , UK", + "market_regions": "Australia , Europe , Western Europe" +} diff --git a/data/smartphone/nokia/2020/2-3-lte-na.json b/data/smartphone/nokia/2020/2-3-lte-na.json new file mode 100644 index 00000000000..a2e289c740c --- /dev/null +++ b/data/smartphone/nokia/2020/2-3-lte-na.json @@ -0,0 +1,42 @@ +{ + "slug": "2-3-lte-na", + "name": "2.3 LTE NA", + "brand": "nokia", + "soc": "helio-a22", + "release_date": "2020-01-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.18, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 272 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Canada , Mexico , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/nokia/2020/2-v-tella-lte-a-us-16gb.json b/data/smartphone/nokia/2020/2-v-tella-lte-a-us-16gb.json new file mode 100644 index 00000000000..bf91c55d1d6 --- /dev/null +++ b/data/smartphone/nokia/2020/2-v-tella-lte-a-us-16gb.json @@ -0,0 +1,43 @@ +{ + "slug": "2-v-tella-lte-a-us-16gb", + "name": "2 V Tella LTE-A US 16GB", + "brand": "nokia", + "soc": "helio-a22", + "release_date": "2020-10-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 168, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/nokia/2020/5-3-2020-dual-sim-td-lte-in-64gb.json b/data/smartphone/nokia/2020/5-3-2020-dual-sim-td-lte-in-64gb.json new file mode 100644 index 00000000000..e05b5039dec --- /dev/null +++ b/data/smartphone/nokia/2020/5-3-2020-dual-sim-td-lte-in-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "5-3-2020-dual-sim-td-lte-in-64gb", + "name": "5.3 2020 Dual SIM TD-LTE IN 64GB", + "brand": "nokia", + "soc": "snapdragon-665", + "release_date": "2020-08-27", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/nokia/2020/5-3-2020-dual-sim-td-lte-latam-128gb.json b/data/smartphone/nokia/2020/5-3-2020-dual-sim-td-lte-latam-128gb.json new file mode 100644 index 00000000000..912a5996bb4 --- /dev/null +++ b/data/smartphone/nokia/2020/5-3-2020-dual-sim-td-lte-latam-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "5-3-2020-dual-sim-td-lte-latam-128gb", + "name": "5.3 2020 Dual SIM TD-LTE LATAM 128GB", + "brand": "nokia", + "soc": "snapdragon-665", + "release_date": "2020-05-21", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1899, + "market_countries": "Brazil , Ecuador , Paraguay", + "market_regions": "South America" +} diff --git a/data/smartphone/nokia/2020/5-3-2020-global-dual-sim-td-lte-64gb.json b/data/smartphone/nokia/2020/5-3-2020-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..33647cef490 --- /dev/null +++ b/data/smartphone/nokia/2020/5-3-2020-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "5-3-2020-global-dual-sim-td-lte-64gb", + "name": "5.3 2020 Global Dual SIM TD-LTE 64GB", + "brand": "nokia", + "soc": "snapdragon-665", + "release_date": "2020-05-07", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 159, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Ireland , Italy , Latvia , Lithuania , Malaysia , Netherlands , Norway , NZ , Pakistan , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Singapore , Slovenia , Spain , Sweden , Switzerland , Taiwan , Thailand , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/nokia/2020/5-3-2020-global-td-lte-64gb.json b/data/smartphone/nokia/2020/5-3-2020-global-td-lte-64gb.json new file mode 100644 index 00000000000..6d7415bcf04 --- /dev/null +++ b/data/smartphone/nokia/2020/5-3-2020-global-td-lte-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "5-3-2020-global-td-lte-64gb", + "name": "5.3 2020 Global TD-LTE 64GB", + "brand": "nokia", + "soc": "snapdragon-665", + "release_date": "2020-05-07", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 159, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Egypt , Finland , France , Greece , Germany , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , NZ , Poland , Portugal , Russia , Slovakia , Singapore , Slovenia , Spain , Switzerland , Sweden , UK", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/nokia/2020/5-3-2020-td-lte-latam-64gb.json b/data/smartphone/nokia/2020/5-3-2020-td-lte-latam-64gb.json new file mode 100644 index 00000000000..1975df88597 --- /dev/null +++ b/data/smartphone/nokia/2020/5-3-2020-td-lte-latam-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "5-3-2020-td-lte-latam-64gb", + "name": "5.3 2020 TD-LTE LATAM 64GB", + "brand": "nokia", + "soc": "snapdragon-665", + "release_date": "2020-05-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Chile , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/nokia/2020/8-3-2020-5g-premium-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/nokia/2020/8-3-2020-5g-premium-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..ebd6b9a326d --- /dev/null +++ b/data/smartphone/nokia/2020/8-3-2020-5g-premium-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "8-3-2020-5g-premium-edition-global-dual-sim-td-lte-128gb", + "name": "8.3 2020 5G Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": "nokia", + "soc": "snapdragon-765", + "release_date": "2020-09-22", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 227.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.81, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 599, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Slovenia , Spain , Switzerland , Sweden , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/nokia/2020/8-3-2020-5g-standard-edition-global-dual-sim-td-lte-64gb.json b/data/smartphone/nokia/2020/8-3-2020-5g-standard-edition-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..caafcec40dc --- /dev/null +++ b/data/smartphone/nokia/2020/8-3-2020-5g-standard-edition-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "8-3-2020-5g-standard-edition-global-dual-sim-td-lte-64gb", + "name": "8.3 2020 5G Standard Edition Global Dual SIM TD-LTE 64GB", + "brand": "nokia", + "soc": "snapdragon-765", + "release_date": "2020-09-22", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 227.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.81, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Slovenia , Spain , Switzerland , Sweden , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/nokia/2020/8-3-2020-5g-standard-edition-global-td-lte-64gb.json b/data/smartphone/nokia/2020/8-3-2020-5g-standard-edition-global-td-lte-64gb.json new file mode 100644 index 00000000000..21fb266178e --- /dev/null +++ b/data/smartphone/nokia/2020/8-3-2020-5g-standard-edition-global-td-lte-64gb.json @@ -0,0 +1,44 @@ +{ + "slug": "8-3-2020-5g-standard-edition-global-td-lte-64gb", + "name": "8.3 2020 5G Standard Edition Global TD-LTE 64GB", + "brand": "nokia", + "soc": "snapdragon-765", + "release_date": "2020-10-08", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 227.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.81, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 500, + "market_countries": "Austria , Belgium , Czech , Denmark , Estonia , Finland , France , Germany , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Poland , Portugal , Russia , Slovakia , Slovenia , Spain , Switzerland , Sweden , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/nokia/2020/8-v-5g-uw-td-lte-us.json b/data/smartphone/nokia/2020/8-v-5g-uw-td-lte-us.json new file mode 100644 index 00000000000..5700fcd72ea --- /dev/null +++ b/data/smartphone/nokia/2020/8-v-5g-uw-td-lte-us.json @@ -0,0 +1,44 @@ +{ + "slug": "8-v-5g-uw-td-lte-us", + "name": "8 V 5G UW TD-LTE US", + "brand": "nokia", + "soc": "snapdragon-765", + "release_date": "2020-11-12", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 226.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.81, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 699, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/nokia/2020/c2-tennen-lte-a-us-32gb-c2-tava.json b/data/smartphone/nokia/2020/c2-tennen-lte-a-us-32gb-c2-tava.json new file mode 100644 index 00000000000..4315451b921 --- /dev/null +++ b/data/smartphone/nokia/2020/c2-tennen-lte-a-us-32gb-c2-tava.json @@ -0,0 +1,42 @@ +{ + "slug": "c2-tennen-lte-a-us-32gb-c2-tava", + "name": "C2 Tennen LTE-A US 32GB / C2 Tava", + "brand": "nokia", + "soc": "helio-a22", + "release_date": "2020-06-14", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/nokia/2020/c5-endi-lte-a-us.json b/data/smartphone/nokia/2020/c5-endi-lte-a-us.json new file mode 100644 index 00000000000..675f9d45c4c --- /dev/null +++ b/data/smartphone/nokia/2020/c5-endi-lte-a-us.json @@ -0,0 +1,42 @@ +{ + "slug": "c5-endi-lte-a-us", + "name": "C5 Endi LTE-A US", + "brand": "nokia", + "soc": "helio-p22", + "release_date": "2020-06-14", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/nokia/2021/1-4-2021-premium-edition-lte-latam.json b/data/smartphone/nokia/2021/1-4-2021-premium-edition-lte-latam.json new file mode 100644 index 00000000000..934cb96832a --- /dev/null +++ b/data/smartphone/nokia/2021/1-4-2021-premium-edition-lte-latam.json @@ -0,0 +1,42 @@ +{ + "slug": "1-4-2021-premium-edition-lte-latam", + "name": "1.4 2021 Premium Edition LTE LATAM", + "brand": "nokia", + "soc": "snapdragon-215", + "release_date": "2021-03-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Argentina , Chile , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/nokia/2021/1-4-2021-standard-edition-dual-sim-lte-emea-16gb.json b/data/smartphone/nokia/2021/1-4-2021-standard-edition-dual-sim-lte-emea-16gb.json new file mode 100644 index 00000000000..3d97d0b86e6 --- /dev/null +++ b/data/smartphone/nokia/2021/1-4-2021-standard-edition-dual-sim-lte-emea-16gb.json @@ -0,0 +1,43 @@ +{ + "slug": "1-4-2021-standard-edition-dual-sim-lte-emea-16gb", + "name": "1.4 2021 Standard Edition Dual SIM LTE EMEA 16GB", + "brand": "nokia", + "soc": "snapdragon-215", + "release_date": "2021-02-04", + "ram_gb": 1.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "msrp_usd": 99, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Estonia , France , Greece , Germany , Hungary , Indonesia , Italy , Jordan , Latvia , Lithuania , Malaysia , Netherlands , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , Spain , Switzerland , UAE , Ukraine , Vietnam", + "market_regions": "Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/nokia/2021/1-4-2021-standard-edition-dual-sim-lte-latam-16gb.json b/data/smartphone/nokia/2021/1-4-2021-standard-edition-dual-sim-lte-latam-16gb.json new file mode 100644 index 00000000000..5e14082c958 --- /dev/null +++ b/data/smartphone/nokia/2021/1-4-2021-standard-edition-dual-sim-lte-latam-16gb.json @@ -0,0 +1,42 @@ +{ + "slug": "1-4-2021-standard-edition-dual-sim-lte-latam-16gb", + "name": "1.4 2021 Standard Edition Dual SIM LTE LATAM 16GB", + "brand": "nokia", + "soc": "snapdragon-215", + "release_date": "2021-02-01", + "ram_gb": 1.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 5, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Brazil , Ecuador , Mexico , Peru , USA", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/nokia/2021/5-4-2021-dual-sim-lte-latam-64gb.json b/data/smartphone/nokia/2021/5-4-2021-dual-sim-lte-latam-64gb.json new file mode 100644 index 00000000000..390c78958ce --- /dev/null +++ b/data/smartphone/nokia/2021/5-4-2021-dual-sim-lte-latam-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "5-4-2021-dual-sim-lte-latam-64gb", + "name": "5.4 2021 Dual SIM LTE LATAM 64GB", + "brand": "nokia", + "soc": "snapdragon-662", + "release_date": "2021-02-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Chile , Ecuador , Paraguay", + "market_regions": "South America" +} diff --git a/data/smartphone/nokia/2021/5-4-2021-global-dual-sim-td-lte-64gb.json b/data/smartphone/nokia/2021/5-4-2021-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..7fd7dd9433f --- /dev/null +++ b/data/smartphone/nokia/2021/5-4-2021-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "5-4-2021-global-dual-sim-td-lte-64gb", + "name": "5.4 2021 Global Dual SIM TD-LTE 64GB", + "brand": "nokia", + "soc": "snapdragon-662", + "release_date": "2021-01-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 189, + "market_countries": "Armenia , Australia , Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Indonesia , Ireland , Italy , Kazakhstan , Latvia , Lithuania , Malaysia , Netherlands , Norway , NZ , Pakistan , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Sweden , Switzerland , Taiwan , Thailand , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/nokia/2021/5-4-2021-global-td-lte-64gb.json b/data/smartphone/nokia/2021/5-4-2021-global-td-lte-64gb.json new file mode 100644 index 00000000000..c8467622358 --- /dev/null +++ b/data/smartphone/nokia/2021/5-4-2021-global-td-lte-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "5-4-2021-global-td-lte-64gb", + "name": "5.4 2021 Global TD-LTE 64GB", + "brand": "nokia", + "soc": "snapdragon-662", + "release_date": "2021-01-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 189, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , NZ , Pakistan , Poland , Portugal , Russia , Serbia , Slovakia , Slovenia , Spain , Sweden , Switzerland , Thailand , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/nokia/2021/5-4-2021-lte-latam-64gb.json b/data/smartphone/nokia/2021/5-4-2021-lte-latam-64gb.json new file mode 100644 index 00000000000..9ba14e03e3d --- /dev/null +++ b/data/smartphone/nokia/2021/5-4-2021-lte-latam-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "5-4-2021-lte-latam-64gb", + "name": "5.4 2021 LTE LATAM 64GB", + "brand": "nokia", + "soc": "snapdragon-662", + "release_date": "2021-01-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Chile , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/nokia/2021/g10-2021-dual-sim-lte-latam-32gb.json b/data/smartphone/nokia/2021/g10-2021-dual-sim-lte-latam-32gb.json new file mode 100644 index 00000000000..e215d42ba12 --- /dev/null +++ b/data/smartphone/nokia/2021/g10-2021-dual-sim-lte-latam-32gb.json @@ -0,0 +1,43 @@ +{ + "slug": "g10-2021-dual-sim-lte-latam-32gb", + "name": "G10 2021 Dual SIM LTE LATAM 32GB", + "brand": "nokia", + "soc": "helio-g25", + "release_date": "2021-04-26", + "ram_gb": 3.0, + "battery_mah": 5050, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 148, + "market_countries": "Brazil , Colombia , USA", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/nokia/2021/g10-2021-dual-sim-lte-latam-64gb.json b/data/smartphone/nokia/2021/g10-2021-dual-sim-lte-latam-64gb.json new file mode 100644 index 00000000000..2887fbb14a4 --- /dev/null +++ b/data/smartphone/nokia/2021/g10-2021-dual-sim-lte-latam-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "g10-2021-dual-sim-lte-latam-64gb", + "name": "G10 2021 Dual SIM LTE LATAM 64GB", + "brand": "nokia", + "soc": "helio-g25", + "release_date": "2021-04-26", + "ram_gb": 3.0, + "battery_mah": 5050, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Colombia , USA", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/nokia/2021/g10-2021-global-dual-sim-td-lte-32gb.json b/data/smartphone/nokia/2021/g10-2021-global-dual-sim-td-lte-32gb.json new file mode 100644 index 00000000000..5773da85f3a --- /dev/null +++ b/data/smartphone/nokia/2021/g10-2021-global-dual-sim-td-lte-32gb.json @@ -0,0 +1,43 @@ +{ + "slug": "g10-2021-global-dual-sim-td-lte-32gb", + "name": "G10 2021 Global Dual SIM TD-LTE 32GB", + "brand": "nokia", + "soc": "helio-g25", + "release_date": "2021-04-01", + "ram_gb": 3.0, + "battery_mah": 5050, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 149, + "market_countries": "Armenia , Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Egypt , Finland , France , Greece , Germany , Hungary , Ireland , Italy , Kazakhstan , Kenya , Latvia , Lithuania , Netherlands , Norway , Pakistan , Poland , Portugal , Romania , Russia , Saudi Arabia , Serbia , Slovakia , Slovenia , South Africa , Spain , Sweden , Switzerland , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/nokia/2021/g10-2021-global-dual-sim-td-lte-64gb.json b/data/smartphone/nokia/2021/g10-2021-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..8813a37fc10 --- /dev/null +++ b/data/smartphone/nokia/2021/g10-2021-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "g10-2021-global-dual-sim-td-lte-64gb", + "name": "G10 2021 Global Dual SIM TD-LTE 64GB", + "brand": "nokia", + "soc": "helio-g25", + "release_date": "2021-04-01", + "ram_gb": 4.0, + "battery_mah": 5050, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Egypt , Finland , France , Greece , Germany , Hungary , Ireland , Italy , Kazakhstan , Kenya , Latvia , Lithuania , Netherlands , Norway , Pakistan , Poland , Portugal , Romania , Russia , Saudi Arabia , Serbia , Slovakia , Slovenia , South Africa , Spain , Sweden , Switzerland , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/nokia/2021/g10-2021-global-td-lte-32gb.json b/data/smartphone/nokia/2021/g10-2021-global-td-lte-32gb.json new file mode 100644 index 00000000000..8af2ddd34a2 --- /dev/null +++ b/data/smartphone/nokia/2021/g10-2021-global-td-lte-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "g10-2021-global-td-lte-32gb", + "name": "G10 2021 Global TD-LTE 32GB", + "brand": "nokia", + "soc": "helio-g25", + "release_date": "2021-04-01", + "ram_gb": 3.0, + "battery_mah": 5050, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Ireland , NZ , UK", + "market_regions": "Australia , Europe , Western Europe" +} diff --git a/data/smartphone/nokia/2021/g10-2021-lte-latam-64gb.json b/data/smartphone/nokia/2021/g10-2021-lte-latam-64gb.json new file mode 100644 index 00000000000..840a309cb46 --- /dev/null +++ b/data/smartphone/nokia/2021/g10-2021-lte-latam-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "g10-2021-lte-latam-64gb", + "name": "G10 2021 LTE LATAM 64GB", + "brand": "nokia", + "soc": "helio-g25", + "release_date": "2021-04-26", + "ram_gb": 3.0, + "battery_mah": 5050, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 4599, + "market_countries": "Chile , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/nokia/2021/g50-2021-5g-premium-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/nokia/2021/g50-2021-5g-premium-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..47a03bae20a --- /dev/null +++ b/data/smartphone/nokia/2021/g50-2021-5g-premium-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "g50-2021-5g-premium-edition-global-dual-sim-td-lte-128gb", + "name": "G50 2021 5G Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": "nokia", + "soc": "snapdragon-480", + "release_date": "2021-10-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.82, + "resolution": "720x1560", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 252 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , Cyprus , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Ireland , Italy , Jordan , Kuwait , Latvia , Lebanon , Lithuania , Netherlands , NZ , Poland , Portugal , Romania , Russia , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/nokia/2021/g50-2021-5g-standard-edition-dual-sim-td-lte-latam-128gb.json b/data/smartphone/nokia/2021/g50-2021-5g-standard-edition-dual-sim-td-lte-latam-128gb.json new file mode 100644 index 00000000000..04595939237 --- /dev/null +++ b/data/smartphone/nokia/2021/g50-2021-5g-standard-edition-dual-sim-td-lte-latam-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "g50-2021-5g-standard-edition-dual-sim-td-lte-latam-128gb", + "name": "G50 2021 5G Standard Edition Dual SIM TD-LTE LATAM 128GB", + "brand": "nokia", + "soc": "snapdragon-480", + "release_date": "2021-10-13", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.82, + "resolution": "720x1560", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 252 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Chile , Colombia , Peru", + "market_regions": "South America" +} diff --git a/data/smartphone/nokia/2021/g50-2021-5g-standard-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/nokia/2021/g50-2021-5g-standard-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..b2b981168d5 --- /dev/null +++ b/data/smartphone/nokia/2021/g50-2021-5g-standard-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "g50-2021-5g-standard-edition-global-dual-sim-td-lte-128gb", + "name": "G50 2021 5G Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": "nokia", + "soc": "snapdragon-480", + "release_date": "2021-10-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.82, + "resolution": "720x1560", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 252 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 279, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Slovenia , Spain , Switzerland , Sweden , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/nokia/2021/g50-2021-5g-standard-edition-global-dual-sim-td-lte-64gb.json b/data/smartphone/nokia/2021/g50-2021-5g-standard-edition-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..c196a8b3161 --- /dev/null +++ b/data/smartphone/nokia/2021/g50-2021-5g-standard-edition-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,44 @@ +{ + "slug": "g50-2021-5g-standard-edition-global-dual-sim-td-lte-64gb", + "name": "G50 2021 5G Standard Edition Global Dual SIM TD-LTE 64GB", + "brand": "nokia", + "soc": "snapdragon-480", + "release_date": "2021-10-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.82, + "resolution": "720x1560", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 252 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 199, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , Spain , Switzerland , Sweden , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/nokia/2021/g50-2021-5g-standard-edition-td-lte-latam-128gb.json b/data/smartphone/nokia/2021/g50-2021-5g-standard-edition-td-lte-latam-128gb.json new file mode 100644 index 00000000000..b5ef934465c --- /dev/null +++ b/data/smartphone/nokia/2021/g50-2021-5g-standard-edition-td-lte-latam-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "g50-2021-5g-standard-edition-td-lte-latam-128gb", + "name": "G50 2021 5G Standard Edition TD-LTE LATAM 128GB", + "brand": "nokia", + "soc": "snapdragon-480", + "release_date": "2021-11-02", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.82, + "resolution": "720x1560", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 252 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/nokia/2021/g50-2021-5g-standard-edition-td-lte-na-128gb.json b/data/smartphone/nokia/2021/g50-2021-5g-standard-edition-td-lte-na-128gb.json new file mode 100644 index 00000000000..9797d748fb7 --- /dev/null +++ b/data/smartphone/nokia/2021/g50-2021-5g-standard-edition-td-lte-na-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "g50-2021-5g-standard-edition-td-lte-na-128gb", + "name": "G50 2021 5G Standard Edition TD-LTE NA 128GB", + "brand": "nokia", + "soc": "snapdragon-480", + "release_date": "2021-10-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.82, + "resolution": "720x1560", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 252 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 299, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/nokia/2021/x10-2021-5g-premium-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/nokia/2021/x10-2021-5g-premium-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..6c797767c27 --- /dev/null +++ b/data/smartphone/nokia/2021/x10-2021-5g-premium-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "x10-2021-5g-premium-edition-global-dual-sim-td-lte-128gb", + "name": "X10 2021 5G Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": "nokia", + "soc": "snapdragon-480", + "release_date": "2021-06-07", + "ram_gb": 6.0, + "battery_mah": 4470, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 349, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Slovenia , Spain , Switzerland , Sweden , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/nokia/2021/x10-2021-5g-premium-edition-global-dual-sim-td-lte-64gb.json b/data/smartphone/nokia/2021/x10-2021-5g-premium-edition-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..c64f3f6d118 --- /dev/null +++ b/data/smartphone/nokia/2021/x10-2021-5g-premium-edition-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,44 @@ +{ + "slug": "x10-2021-5g-premium-edition-global-dual-sim-td-lte-64gb", + "name": "X10 2021 5G Premium Edition Global Dual SIM TD-LTE 64GB", + "brand": "nokia", + "soc": "snapdragon-480", + "release_date": "2021-06-07", + "ram_gb": 6.0, + "battery_mah": 4470, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 309, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Slovenia , Spain , Switzerland , Sweden , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/nokia/2021/x10-2021-5g-standard-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/nokia/2021/x10-2021-5g-standard-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..29aaa0d89fa --- /dev/null +++ b/data/smartphone/nokia/2021/x10-2021-5g-standard-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "x10-2021-5g-standard-edition-global-dual-sim-td-lte-128gb", + "name": "X10 2021 5G Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": "nokia", + "soc": "snapdragon-480", + "release_date": "2021-06-07", + "ram_gb": 4.0, + "battery_mah": 4470, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Slovenia , Spain , Switzerland , Sweden , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/nokia/2021/x20-2021-5g-premium-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/nokia/2021/x20-2021-5g-premium-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..686c0fd8f44 --- /dev/null +++ b/data/smartphone/nokia/2021/x20-2021-5g-premium-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "x20-2021-5g-premium-edition-global-dual-sim-td-lte-128gb", + "name": "X20 2021 5G Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": "nokia", + "soc": "snapdragon-480", + "release_date": "2021-05-03", + "ram_gb": 8.0, + "battery_mah": 4470, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 399, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , Croatia , Cyprus , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Ireland , Italy , Kenya , Latvia , Lithuania , Netherlands , Norway , NZ , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Slovenia , South Africa , Spain , Sweden , Switzerland , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/nokia/2021/x20-2021-5g-standard-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/nokia/2021/x20-2021-5g-standard-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..73e9caf659a --- /dev/null +++ b/data/smartphone/nokia/2021/x20-2021-5g-standard-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "x20-2021-5g-standard-edition-global-dual-sim-td-lte-128gb", + "name": "X20 2021 5G Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": "nokia", + "soc": "snapdragon-480", + "release_date": "2021-05-03", + "ram_gb": 6.0, + "battery_mah": 4470, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 349, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , Cyprus , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , NZ , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Slovenia , Spain , Sweden , Switzerland , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/nokia/2021/x20-2021-5g-standard-edition-global-td-lte-128gb.json b/data/smartphone/nokia/2021/x20-2021-5g-standard-edition-global-td-lte-128gb.json new file mode 100644 index 00000000000..2ca3650e017 --- /dev/null +++ b/data/smartphone/nokia/2021/x20-2021-5g-standard-edition-global-td-lte-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "x20-2021-5g-standard-edition-global-td-lte-128gb", + "name": "X20 2021 5G Standard Edition Global TD-LTE 128GB", + "brand": "nokia", + "soc": "snapdragon-480", + "release_date": "2021-05-03", + "ram_gb": 6.0, + "battery_mah": 4470, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 299, + "market_countries": "Australia , Ireland , NZ , Turkey , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/oneplus/2017/5t-star-wars-edition.json b/data/smartphone/oneplus/2017/5t-star-wars-edition.json new file mode 100644 index 00000000000..863c6c1a421 --- /dev/null +++ b/data/smartphone/oneplus/2017/5t-star-wars-edition.json @@ -0,0 +1,32 @@ +{ + "slug": "5t-star-wars-edition", + "name": "5T Star Wars Edition", + "brand": "oneplus", + "soc": "snapdragon-835", + "release_date": "2017-01-01", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.01 + }, + "cameras": [ + { + "type": "main", + "mp": 20.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "msrp_usd": 649 +} diff --git a/data/smartphone/oneplus/2018/6-dual-sim-global-td-lte-a6003-128gb.json b/data/smartphone/oneplus/2018/6-dual-sim-global-td-lte-a6003-128gb.json new file mode 100644 index 00000000000..9e35ea222d5 --- /dev/null +++ b/data/smartphone/oneplus/2018/6-dual-sim-global-td-lte-a6003-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "6-dual-sim-global-td-lte-a6003-128gb", + "name": "6 Dual SIM Global TD-LTE A6003 128GB", + "brand": "oneplus", + "soc": "snapdragon-845", + "release_date": "2018-05-22", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Canada , China , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , India , Ireland , Italy , Japan , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Singapore , Slovakia , Slovenia , South Korea , Spain , Sweden , Switzerland , Taiwan , Turkey , UK , USA", + "market_regions": "Asia , Australia , Eastern Europe , Europe , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oneplus/2018/6-dual-sim-global-td-lte-a6003-256gb.json b/data/smartphone/oneplus/2018/6-dual-sim-global-td-lte-a6003-256gb.json new file mode 100644 index 00000000000..b18c1cb1472 --- /dev/null +++ b/data/smartphone/oneplus/2018/6-dual-sim-global-td-lte-a6003-256gb.json @@ -0,0 +1,41 @@ +{ + "slug": "6-dual-sim-global-td-lte-a6003-256gb", + "name": "6 Dual SIM Global TD-LTE A6003 256GB", + "brand": "oneplus", + "soc": "snapdragon-845", + "release_date": "2018-05-22", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Canada , China , Croatia , Cyprus , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , India , Ireland , Italy , Japan , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Singapore , Slovakia , Slovenia , South Korea , Spain , Switzerland , Sweden , Taiwan , Turkey , UK , USA", + "market_regions": "Asia , Australia , Eastern Europe , Europe , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oneplus/2018/6-dual-sim-global-td-lte-a6003-64gb.json b/data/smartphone/oneplus/2018/6-dual-sim-global-td-lte-a6003-64gb.json new file mode 100644 index 00000000000..19a1986d057 --- /dev/null +++ b/data/smartphone/oneplus/2018/6-dual-sim-global-td-lte-a6003-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "6-dual-sim-global-td-lte-a6003-64gb", + "name": "6 Dual SIM Global TD-LTE A6003 64GB", + "brand": "oneplus", + "soc": "snapdragon-845", + "release_date": "2018-05-22", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Canada , China , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , India , Ireland , Italy , Japan , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Singapore , Slovakia , Slovenia , South Korea , Spain , Sweden , Switzerland , Taiwan , Turkey , UK , USA", + "market_regions": "Asia , Australia , Eastern Europe , Europe , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oneplus/2018/6-dual-sim-td-lte-apac-a6000-128gb.json b/data/smartphone/oneplus/2018/6-dual-sim-td-lte-apac-a6000-128gb.json new file mode 100644 index 00000000000..2710e8825f8 --- /dev/null +++ b/data/smartphone/oneplus/2018/6-dual-sim-td-lte-apac-a6000-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "6-dual-sim-td-lte-apac-a6000-128gb", + "name": "6 Dual SIM TD-LTE APAC A6000 128GB", + "brand": "oneplus", + "soc": "snapdragon-845", + "release_date": "2018-05-22", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , China , HK , India", + "market_regions": "Asia , Australia , Southeast Asia" +} diff --git a/data/smartphone/oneplus/2018/6-dual-sim-td-lte-apac-a6000-64gb.json b/data/smartphone/oneplus/2018/6-dual-sim-td-lte-apac-a6000-64gb.json new file mode 100644 index 00000000000..c6b040a826f --- /dev/null +++ b/data/smartphone/oneplus/2018/6-dual-sim-td-lte-apac-a6000-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "6-dual-sim-td-lte-apac-a6000-64gb", + "name": "6 Dual SIM TD-LTE APAC A6000 64GB", + "brand": "oneplus", + "soc": "snapdragon-845", + "release_date": "2018-05-22", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , China , HK , India", + "market_regions": "Asia , Australia , Southeast Asia" +} diff --git a/data/smartphone/oneplus/2018/6t-mclaren-edition-dual-sim-global-td-lte-a6013-256gb.json b/data/smartphone/oneplus/2018/6t-mclaren-edition-dual-sim-global-td-lte-a6013-256gb.json new file mode 100644 index 00000000000..caa4d116733 --- /dev/null +++ b/data/smartphone/oneplus/2018/6t-mclaren-edition-dual-sim-global-td-lte-a6013-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "6t-mclaren-edition-dual-sim-global-td-lte-a6013-256gb", + "name": "6T McLaren Edition Dual SIM Global TD-LTE A6013 256GB", + "brand": "oneplus", + "soc": "snapdragon-845", + "release_date": "2018-12-13", + "ram_gb": 10.0, + "battery_mah": 3700, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Canada , China , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , India , Ireland , Italy , Japan , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Singapore , Slovakia , Slovenia , South Korea , Spain , Sweden , Switzerland , Taiwan , Turkey , UK , USA", + "market_regions": "Asia , Australia , Eastern Europe , Europe , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oneplus/2018/6t-mclaren-edition.json b/data/smartphone/oneplus/2018/6t-mclaren-edition.json new file mode 100644 index 00000000000..a950dd583d6 --- /dev/null +++ b/data/smartphone/oneplus/2018/6t-mclaren-edition.json @@ -0,0 +1,32 @@ +{ + "slug": "6t-mclaren-edition", + "name": "6T McLaren Edition", + "brand": "oneplus", + "soc": "snapdragon-845", + "release_date": "2018-01-01", + "ram_gb": 10.0, + "battery_mah": 3700, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41 + }, + "cameras": [ + { + "type": "main", + "mp": 20.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "msrp_usd": 799 +} diff --git a/data/smartphone/oneplus/2018/6t-premium-edition-dual-sim-global-td-lte-a6013-128gb.json b/data/smartphone/oneplus/2018/6t-premium-edition-dual-sim-global-td-lte-a6013-128gb.json new file mode 100644 index 00000000000..0a3667191a5 --- /dev/null +++ b/data/smartphone/oneplus/2018/6t-premium-edition-dual-sim-global-td-lte-a6013-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "6t-premium-edition-dual-sim-global-td-lte-a6013-128gb", + "name": "6T Premium Edition Dual SIM Global TD-LTE A6013 128GB", + "brand": "oneplus", + "soc": "snapdragon-845", + "release_date": "2018-11-06", + "ram_gb": 8.0, + "battery_mah": 3700, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Canada , China , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , India , Ireland , Italy , Japan , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Singapore , Slovakia , Slovenia , South Korea , Spain , Sweden , Switzerland , Taiwan , Turkey , UK , USA", + "market_regions": "Asia , Australia , Eastern Europe , Europe , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oneplus/2018/6t-premium-edition-dual-sim-global-td-lte-a6013-256gb.json b/data/smartphone/oneplus/2018/6t-premium-edition-dual-sim-global-td-lte-a6013-256gb.json new file mode 100644 index 00000000000..0521e7c3b04 --- /dev/null +++ b/data/smartphone/oneplus/2018/6t-premium-edition-dual-sim-global-td-lte-a6013-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "6t-premium-edition-dual-sim-global-td-lte-a6013-256gb", + "name": "6T Premium Edition Dual SIM Global TD-LTE A6013 256GB", + "brand": "oneplus", + "soc": "snapdragon-845", + "release_date": "2018-11-06", + "ram_gb": 8.0, + "battery_mah": 3700, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Canada , China , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , India , Ireland , Italy , Japan , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Singapore , Slovakia , Slovenia , South Korea , Spain , Sweden , Switzerland , Taiwan , Turkey , UK , USA", + "market_regions": "Asia , Australia , Eastern Europe , Europe , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oneplus/2018/6t-premium-edition-dual-sim-td-lte-cn-in-a6010-256gb.json b/data/smartphone/oneplus/2018/6t-premium-edition-dual-sim-td-lte-cn-in-a6010-256gb.json new file mode 100644 index 00000000000..70f7df4663f --- /dev/null +++ b/data/smartphone/oneplus/2018/6t-premium-edition-dual-sim-td-lte-cn-in-a6010-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "6t-premium-edition-dual-sim-td-lte-cn-in-a6010-256gb", + "name": "6T Premium Edition Dual SIM TD-LTE CN IN A6010 256GB", + "brand": "oneplus", + "soc": "snapdragon-845", + "release_date": "2018-11-06", + "ram_gb": 8.0, + "battery_mah": 3700, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , India", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oneplus/2018/6t-standard-edition-dual-sim-global-td-lte-a6013-128gb.json b/data/smartphone/oneplus/2018/6t-standard-edition-dual-sim-global-td-lte-a6013-128gb.json new file mode 100644 index 00000000000..e93ae02712f --- /dev/null +++ b/data/smartphone/oneplus/2018/6t-standard-edition-dual-sim-global-td-lte-a6013-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "6t-standard-edition-dual-sim-global-td-lte-a6013-128gb", + "name": "6T Standard Edition Dual SIM Global TD-LTE A6013 128GB", + "brand": "oneplus", + "soc": "snapdragon-845", + "release_date": "2018-11-06", + "ram_gb": 6.0, + "battery_mah": 3700, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Canada , China , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , India , Ireland , Italy , Japan , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Singapore , Slovakia , Slovenia , South Korea , Spain , Sweden , Switzerland , Taiwan , Turkey , UK , USA", + "market_regions": "Asia , Australia , Eastern Europe , Europe , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oneplus/2018/6t-standard-edition-dual-sim-td-lte-cn-in-a6010-128gb.json b/data/smartphone/oneplus/2018/6t-standard-edition-dual-sim-td-lte-cn-in-a6010-128gb.json new file mode 100644 index 00000000000..8ffc5b94e95 --- /dev/null +++ b/data/smartphone/oneplus/2018/6t-standard-edition-dual-sim-td-lte-cn-in-a6010-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "6t-standard-edition-dual-sim-td-lte-cn-in-a6010-128gb", + "name": "6T Standard Edition Dual SIM TD-LTE CN IN A6010 128GB", + "brand": "oneplus", + "soc": "snapdragon-845", + "release_date": "2018-11-06", + "ram_gb": 6.0, + "battery_mah": 3700, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , India", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oneplus/2019/7-premium-edition-dual-sim-td-lte-cn-in-256gb-gm1901.json b/data/smartphone/oneplus/2019/7-premium-edition-dual-sim-td-lte-cn-in-256gb-gm1901.json new file mode 100644 index 00000000000..1d7b4835591 --- /dev/null +++ b/data/smartphone/oneplus/2019/7-premium-edition-dual-sim-td-lte-cn-in-256gb-gm1901.json @@ -0,0 +1,42 @@ +{ + "slug": "7-premium-edition-dual-sim-td-lte-cn-in-256gb-gm1901", + "name": "7 Premium Edition Dual SIM TD-LTE CN IN 256GB GM1901", + "brand": "oneplus", + "soc": "snapdragon-855", + "release_date": "2019-06-04", + "ram_gb": 8.0, + "battery_mah": 3700, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2019/7-premium-edition-global-dual-sim-td-lte-256gb-gm1903.json b/data/smartphone/oneplus/2019/7-premium-edition-global-dual-sim-td-lte-256gb-gm1903.json new file mode 100644 index 00000000000..e13c496836f --- /dev/null +++ b/data/smartphone/oneplus/2019/7-premium-edition-global-dual-sim-td-lte-256gb-gm1903.json @@ -0,0 +1,42 @@ +{ + "slug": "7-premium-edition-global-dual-sim-td-lte-256gb-gm1903", + "name": "7 Premium Edition Global Dual SIM TD-LTE 256GB GM1903", + "brand": "oneplus", + "soc": "snapdragon-855", + "release_date": "2019-06-04", + "ram_gb": 8.0, + "battery_mah": 3700, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Canada , China , Croatia , Cyprus , Czech , Denmark , Estonia , Finland , France , Germany , Greece , HK , Hungary , India , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , South Korea , Spain , Switzerland , Sweden , Thailand , Turkey , UK , USA", + "market_regions": "Asia , Australia , Eastern Europe , Europe , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oneplus/2019/7-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-gm1920.json b/data/smartphone/oneplus/2019/7-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-gm1920.json new file mode 100644 index 00000000000..ab0828399ba --- /dev/null +++ b/data/smartphone/oneplus/2019/7-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-gm1920.json @@ -0,0 +1,43 @@ +{ + "slug": "7-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-gm1920", + "name": "7 Pro 5G Premium Edition Global Dual SIM TD-LTE 256GB GM1920", + "brand": "oneplus", + "soc": "snapdragon-855", + "release_date": "2019-05-29", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3140", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 518 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "UK", + "market_regions": "Europe , Western Europe" +} diff --git a/data/smartphone/oneplus/2019/7-pro-5g.json b/data/smartphone/oneplus/2019/7-pro-5g.json new file mode 100644 index 00000000000..f72fee25688 --- /dev/null +++ b/data/smartphone/oneplus/2019/7-pro-5g.json @@ -0,0 +1,32 @@ +{ + "slug": "7-pro-5g", + "name": "7 Pro 5G", + "brand": "oneplus", + "soc": "snapdragon-855", + "release_date": "2019-01-01", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "msrp_usd": 799 +} diff --git a/data/smartphone/oneplus/2019/7-pro-premium-edition-dual-sim-td-lte-cn-256gb-gm1910.json b/data/smartphone/oneplus/2019/7-pro-premium-edition-dual-sim-td-lte-cn-256gb-gm1910.json new file mode 100644 index 00000000000..d7b61e1562c --- /dev/null +++ b/data/smartphone/oneplus/2019/7-pro-premium-edition-dual-sim-td-lte-cn-256gb-gm1910.json @@ -0,0 +1,43 @@ +{ + "slug": "7-pro-premium-edition-dual-sim-td-lte-cn-256gb-gm1910", + "name": "7 Pro Premium Edition Dual SIM TD-LTE CN 256GB GM1910", + "brand": "oneplus", + "soc": "snapdragon-855", + "release_date": "2019-05-16", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3140", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 518 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2019/7-pro-premium-edition-dual-sim-td-lte-in-256gb-gm1911.json b/data/smartphone/oneplus/2019/7-pro-premium-edition-dual-sim-td-lte-in-256gb-gm1911.json new file mode 100644 index 00000000000..ced6ef16eba --- /dev/null +++ b/data/smartphone/oneplus/2019/7-pro-premium-edition-dual-sim-td-lte-in-256gb-gm1911.json @@ -0,0 +1,43 @@ +{ + "slug": "7-pro-premium-edition-dual-sim-td-lte-in-256gb-gm1911", + "name": "7 Pro Premium Edition Dual SIM TD-LTE IN 256GB GM1911", + "brand": "oneplus", + "soc": "snapdragon-855", + "release_date": "2019-05-16", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3140", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 518 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2019/7-pro-premium-edition-dual-sim-td-lte-us-256gb-gm1915.json b/data/smartphone/oneplus/2019/7-pro-premium-edition-dual-sim-td-lte-us-256gb-gm1915.json new file mode 100644 index 00000000000..71cdb758a40 --- /dev/null +++ b/data/smartphone/oneplus/2019/7-pro-premium-edition-dual-sim-td-lte-us-256gb-gm1915.json @@ -0,0 +1,43 @@ +{ + "slug": "7-pro-premium-edition-dual-sim-td-lte-us-256gb-gm1915", + "name": "7 Pro Premium Edition Dual SIM TD-LTE US 256GB GM1915", + "brand": "oneplus", + "soc": "snapdragon-855", + "release_date": "2019-05-27", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3140", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 518 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/oneplus/2019/7-pro-premium-edition-dual-sim-td-lte-us-256gb-gm1917.json b/data/smartphone/oneplus/2019/7-pro-premium-edition-dual-sim-td-lte-us-256gb-gm1917.json new file mode 100644 index 00000000000..524f12d8629 --- /dev/null +++ b/data/smartphone/oneplus/2019/7-pro-premium-edition-dual-sim-td-lte-us-256gb-gm1917.json @@ -0,0 +1,43 @@ +{ + "slug": "7-pro-premium-edition-dual-sim-td-lte-us-256gb-gm1917", + "name": "7 Pro Premium Edition Dual SIM TD-LTE US 256GB GM1917", + "brand": "oneplus", + "soc": "snapdragon-855", + "release_date": "2019-06-03", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3140", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 518 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/oneplus/2019/7-pro-premium-edition-global-dual-sim-td-lte-128gb-gm1913.json b/data/smartphone/oneplus/2019/7-pro-premium-edition-global-dual-sim-td-lte-128gb-gm1913.json new file mode 100644 index 00000000000..74c4b77fb3e --- /dev/null +++ b/data/smartphone/oneplus/2019/7-pro-premium-edition-global-dual-sim-td-lte-128gb-gm1913.json @@ -0,0 +1,43 @@ +{ + "slug": "7-pro-premium-edition-global-dual-sim-td-lte-128gb-gm1913", + "name": "7 Pro Premium Edition Global Dual SIM TD-LTE 128GB GM1913", + "brand": "oneplus", + "soc": "snapdragon-855", + "release_date": "2019-05-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3140", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 518 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Canada , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Russia , Romania , Slovakia , Slovenia , South Korea , Spain , Sweden , Switzerland , Thailand , Turkey , UK , USA", + "market_regions": "Asia , Australia , Eastern Europe , Europe , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oneplus/2019/7-pro-premium-edition-global-dual-sim-td-lte-256gb-gm1913.json b/data/smartphone/oneplus/2019/7-pro-premium-edition-global-dual-sim-td-lte-256gb-gm1913.json new file mode 100644 index 00000000000..692a9e2e72e --- /dev/null +++ b/data/smartphone/oneplus/2019/7-pro-premium-edition-global-dual-sim-td-lte-256gb-gm1913.json @@ -0,0 +1,43 @@ +{ + "slug": "7-pro-premium-edition-global-dual-sim-td-lte-256gb-gm1913", + "name": "7 Pro Premium Edition Global Dual SIM TD-LTE 256GB GM1913", + "brand": "oneplus", + "soc": "snapdragon-855", + "release_date": "2019-05-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3140", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 518 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Canada , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Russia , Romania , Slovakia , Slovenia , South Korea , Spain , Sweden , Switzerland , Thailand , Turkey , UK , USA", + "market_regions": "Asia , Australia , Eastern Europe , Europe , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oneplus/2019/7-pro-standard-edition-dual-sim-td-lte-cn-128gb-gm1910.json b/data/smartphone/oneplus/2019/7-pro-standard-edition-dual-sim-td-lte-cn-128gb-gm1910.json new file mode 100644 index 00000000000..ceb09112ddb --- /dev/null +++ b/data/smartphone/oneplus/2019/7-pro-standard-edition-dual-sim-td-lte-cn-128gb-gm1910.json @@ -0,0 +1,43 @@ +{ + "slug": "7-pro-standard-edition-dual-sim-td-lte-cn-128gb-gm1910", + "name": "7 Pro Standard Edition Dual SIM TD-LTE CN 128GB GM1910", + "brand": "oneplus", + "soc": "snapdragon-855", + "release_date": "2019-05-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3140", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 518 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2019/7-pro-standard-edition-dual-sim-td-lte-in-128gb-gm1911.json b/data/smartphone/oneplus/2019/7-pro-standard-edition-dual-sim-td-lte-in-128gb-gm1911.json new file mode 100644 index 00000000000..ae4af49cf56 --- /dev/null +++ b/data/smartphone/oneplus/2019/7-pro-standard-edition-dual-sim-td-lte-in-128gb-gm1911.json @@ -0,0 +1,43 @@ +{ + "slug": "7-pro-standard-edition-dual-sim-td-lte-in-128gb-gm1911", + "name": "7 Pro Standard Edition Dual SIM TD-LTE IN 128GB GM1911", + "brand": "oneplus", + "soc": "snapdragon-855", + "release_date": "2019-05-16", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3140", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 518 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2019/7-pro-top-edition-dual-sim-td-lte-cn-256gb-gm1910.json b/data/smartphone/oneplus/2019/7-pro-top-edition-dual-sim-td-lte-cn-256gb-gm1910.json new file mode 100644 index 00000000000..0464f2c1002 --- /dev/null +++ b/data/smartphone/oneplus/2019/7-pro-top-edition-dual-sim-td-lte-cn-256gb-gm1910.json @@ -0,0 +1,43 @@ +{ + "slug": "7-pro-top-edition-dual-sim-td-lte-cn-256gb-gm1910", + "name": "7 Pro Top Edition Dual SIM TD-LTE CN 256GB GM1910", + "brand": "oneplus", + "soc": "snapdragon-855", + "release_date": "2019-05-01", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3140", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 518 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2019/7-standard-edition-dual-sim-td-lte-cn-in-128gb-gm1901.json b/data/smartphone/oneplus/2019/7-standard-edition-dual-sim-td-lte-cn-in-128gb-gm1901.json new file mode 100644 index 00000000000..56aa21f3a3e --- /dev/null +++ b/data/smartphone/oneplus/2019/7-standard-edition-dual-sim-td-lte-cn-in-128gb-gm1901.json @@ -0,0 +1,42 @@ +{ + "slug": "7-standard-edition-dual-sim-td-lte-cn-in-128gb-gm1901", + "name": "7 Standard Edition Dual SIM TD-LTE CN IN 128GB GM1901", + "brand": "oneplus", + "soc": "snapdragon-855", + "release_date": "2019-06-04", + "ram_gb": 6.0, + "battery_mah": 3700, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2019/7-standard-edition-global-dual-sim-td-lte-128gb-gm1903.json b/data/smartphone/oneplus/2019/7-standard-edition-global-dual-sim-td-lte-128gb-gm1903.json new file mode 100644 index 00000000000..63436b2c9f1 --- /dev/null +++ b/data/smartphone/oneplus/2019/7-standard-edition-global-dual-sim-td-lte-128gb-gm1903.json @@ -0,0 +1,42 @@ +{ + "slug": "7-standard-edition-global-dual-sim-td-lte-128gb-gm1903", + "name": "7 Standard Edition Global Dual SIM TD-LTE 128GB GM1903", + "brand": "oneplus", + "soc": "snapdragon-855", + "release_date": "2019-06-04", + "ram_gb": 6.0, + "battery_mah": 3700, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Canada , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Russia , Romania , Slovakia , Slovenia , South Korea , Spain , Switzerland , Sweden , Thailand , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oneplus/2019/7-top-edition-dual-sim-td-lte-cn-256gb-gm1901.json b/data/smartphone/oneplus/2019/7-top-edition-dual-sim-td-lte-cn-256gb-gm1901.json new file mode 100644 index 00000000000..3dc16365d7b --- /dev/null +++ b/data/smartphone/oneplus/2019/7-top-edition-dual-sim-td-lte-cn-256gb-gm1901.json @@ -0,0 +1,42 @@ +{ + "slug": "7-top-edition-dual-sim-td-lte-cn-256gb-gm1901", + "name": "7 Top Edition Dual SIM TD-LTE CN 256GB GM1901", + "brand": "oneplus", + "soc": "snapdragon-855", + "release_date": "2019-06-06", + "ram_gb": 12.0, + "battery_mah": 3700, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2019/7t-dual-sim-td-lte-na-128gb-hd1905.json b/data/smartphone/oneplus/2019/7t-dual-sim-td-lte-na-128gb-hd1905.json new file mode 100644 index 00000000000..9c675f8758c --- /dev/null +++ b/data/smartphone/oneplus/2019/7t-dual-sim-td-lte-na-128gb-hd1905.json @@ -0,0 +1,43 @@ +{ + "slug": "7t-dual-sim-td-lte-na-128gb-hd1905", + "name": "7T Dual SIM TD-LTE NA 128GB HD1905", + "brand": "oneplus", + "soc": "snapdragon-855-plus", + "release_date": "2019-10-11", + "ram_gb": 8.0, + "battery_mah": 3800, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/oneplus/2019/7t-pro-5g-mclaren-edition-global-dual-sim-td-lte-256gb-hd1925.json b/data/smartphone/oneplus/2019/7t-pro-5g-mclaren-edition-global-dual-sim-td-lte-256gb-hd1925.json new file mode 100644 index 00000000000..c293a52253d --- /dev/null +++ b/data/smartphone/oneplus/2019/7t-pro-5g-mclaren-edition-global-dual-sim-td-lte-256gb-hd1925.json @@ -0,0 +1,43 @@ +{ + "slug": "7t-pro-5g-mclaren-edition-global-dual-sim-td-lte-256gb-hd1925", + "name": "7T Pro 5G McLaren Edition Global Dual SIM TD-LTE 256GB HD1925", + "brand": "oneplus", + "soc": "snapdragon-855-plus", + "release_date": "2019-12-07", + "ram_gb": 12.0, + "battery_mah": 4085, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3120", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/oneplus/2019/7t-pro-5g-mclaren-edition.json b/data/smartphone/oneplus/2019/7t-pro-5g-mclaren-edition.json new file mode 100644 index 00000000000..11a1780877e --- /dev/null +++ b/data/smartphone/oneplus/2019/7t-pro-5g-mclaren-edition.json @@ -0,0 +1,32 @@ +{ + "slug": "7t-pro-5g-mclaren-edition", + "name": "7T Pro 5G McLaren Edition", + "brand": "oneplus", + "soc": "snapdragon-855", + "release_date": "2019-01-01", + "ram_gb": 12.0, + "battery_mah": 4085, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "msrp_usd": 899 +} diff --git a/data/smartphone/oneplus/2019/7t-pro-mclaren-edition-dual-sim-td-lte-cn-256gb-hd1910.json b/data/smartphone/oneplus/2019/7t-pro-mclaren-edition-dual-sim-td-lte-cn-256gb-hd1910.json new file mode 100644 index 00000000000..2616e0b182f --- /dev/null +++ b/data/smartphone/oneplus/2019/7t-pro-mclaren-edition-dual-sim-td-lte-cn-256gb-hd1910.json @@ -0,0 +1,43 @@ +{ + "slug": "7t-pro-mclaren-edition-dual-sim-td-lte-cn-256gb-hd1910", + "name": "7T Pro McLaren Edition Dual SIM TD-LTE CN 256GB HD1910", + "brand": "oneplus", + "soc": "snapdragon-855-plus", + "release_date": "2019-10-01", + "ram_gb": 12.0, + "battery_mah": 4085, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3120", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2019/7t-pro-mclaren-edition-global-dual-sim-td-lte-256gb-hd1913.json b/data/smartphone/oneplus/2019/7t-pro-mclaren-edition-global-dual-sim-td-lte-256gb-hd1913.json new file mode 100644 index 00000000000..8223f5252f4 --- /dev/null +++ b/data/smartphone/oneplus/2019/7t-pro-mclaren-edition-global-dual-sim-td-lte-256gb-hd1913.json @@ -0,0 +1,43 @@ +{ + "slug": "7t-pro-mclaren-edition-global-dual-sim-td-lte-256gb-hd1913", + "name": "7T Pro McLaren Edition Global Dual SIM TD-LTE 256GB HD1913", + "brand": "oneplus", + "soc": "snapdragon-855-plus", + "release_date": "2019-10-26", + "ram_gb": 12.0, + "battery_mah": 4085, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3120", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Bulgaria , China , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , India , Ireland , Italy , Latvia , Lithuania , Malaysia , Netherlands , Norway , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , Spain , Switzerland , Sweden , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oneplus/2019/7t-pro-standard-edition-dual-sim-td-lte-cn-256gb-hd1910.json b/data/smartphone/oneplus/2019/7t-pro-standard-edition-dual-sim-td-lte-cn-256gb-hd1910.json new file mode 100644 index 00000000000..c7adb850cc0 --- /dev/null +++ b/data/smartphone/oneplus/2019/7t-pro-standard-edition-dual-sim-td-lte-cn-256gb-hd1910.json @@ -0,0 +1,43 @@ +{ + "slug": "7t-pro-standard-edition-dual-sim-td-lte-cn-256gb-hd1910", + "name": "7T Pro Standard Edition Dual SIM TD-LTE CN 256GB HD1910", + "brand": "oneplus", + "soc": "snapdragon-855-plus", + "release_date": "2019-10-12", + "ram_gb": 8.0, + "battery_mah": 4085, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3120", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2019/7t-pro-standard-edition-global-dual-sim-td-lte-256gb-hd1913.json b/data/smartphone/oneplus/2019/7t-pro-standard-edition-global-dual-sim-td-lte-256gb-hd1913.json new file mode 100644 index 00000000000..4600545cf50 --- /dev/null +++ b/data/smartphone/oneplus/2019/7t-pro-standard-edition-global-dual-sim-td-lte-256gb-hd1913.json @@ -0,0 +1,43 @@ +{ + "slug": "7t-pro-standard-edition-global-dual-sim-td-lte-256gb-hd1913", + "name": "7T Pro Standard Edition Global Dual SIM TD-LTE 256GB HD1913", + "brand": "oneplus", + "soc": "snapdragon-855-plus", + "release_date": "2019-10-12", + "ram_gb": 8.0, + "battery_mah": 4085, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3120", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Bulgaria , China , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , India , Ireland , Italy , Latvia , Lithuania , Malaysia , Netherlands , Norway , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , Spain , Switzerland , Sweden , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oneplus/2019/7t-standard-edition-dual-sim-td-lte-cn-256gb-hd1900.json b/data/smartphone/oneplus/2019/7t-standard-edition-dual-sim-td-lte-cn-256gb-hd1900.json new file mode 100644 index 00000000000..3a617d4b4b0 --- /dev/null +++ b/data/smartphone/oneplus/2019/7t-standard-edition-dual-sim-td-lte-cn-256gb-hd1900.json @@ -0,0 +1,43 @@ +{ + "slug": "7t-standard-edition-dual-sim-td-lte-cn-256gb-hd1900", + "name": "7T Standard Edition Dual SIM TD-LTE CN 256GB HD1900", + "brand": "oneplus", + "soc": "snapdragon-855-plus", + "release_date": "2019-09-29", + "ram_gb": 8.0, + "battery_mah": 3800, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2019/7t-standard-edition-dual-sim-td-lte-cn-in-128gb-hd1901.json b/data/smartphone/oneplus/2019/7t-standard-edition-dual-sim-td-lte-cn-in-128gb-hd1901.json new file mode 100644 index 00000000000..0312f3804ae --- /dev/null +++ b/data/smartphone/oneplus/2019/7t-standard-edition-dual-sim-td-lte-cn-in-128gb-hd1901.json @@ -0,0 +1,43 @@ +{ + "slug": "7t-standard-edition-dual-sim-td-lte-cn-in-128gb-hd1901", + "name": "7T Standard Edition Dual SIM TD-LTE CN IN 128GB HD1901", + "brand": "oneplus", + "soc": "snapdragon-855-plus", + "release_date": "2019-09-29", + "ram_gb": 8.0, + "battery_mah": 3800, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2019/7t-standard-edition-dual-sim-td-lte-cn-in-256gb-hd1901.json b/data/smartphone/oneplus/2019/7t-standard-edition-dual-sim-td-lte-cn-in-256gb-hd1901.json new file mode 100644 index 00000000000..2097def5b99 --- /dev/null +++ b/data/smartphone/oneplus/2019/7t-standard-edition-dual-sim-td-lte-cn-in-256gb-hd1901.json @@ -0,0 +1,43 @@ +{ + "slug": "7t-standard-edition-dual-sim-td-lte-cn-in-256gb-hd1901", + "name": "7T Standard Edition Dual SIM TD-LTE CN IN 256GB HD1901", + "brand": "oneplus", + "soc": "snapdragon-855-plus", + "release_date": "2019-09-29", + "ram_gb": 8.0, + "battery_mah": 3800, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2019/7t-standard-edition-dual-sim-td-lte-eu-128gb-hd1903.json b/data/smartphone/oneplus/2019/7t-standard-edition-dual-sim-td-lte-eu-128gb-hd1903.json new file mode 100644 index 00000000000..afc551c8662 --- /dev/null +++ b/data/smartphone/oneplus/2019/7t-standard-edition-dual-sim-td-lte-eu-128gb-hd1903.json @@ -0,0 +1,43 @@ +{ + "slug": "7t-standard-edition-dual-sim-td-lte-eu-128gb-hd1903", + "name": "7T Standard Edition Dual SIM TD-LTE EU 128GB HD1903", + "brand": "oneplus", + "soc": "snapdragon-855-plus", + "release_date": "2019-10-18", + "ram_gb": 8.0, + "battery_mah": 3800, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , Spain , Switzerland , Sweden , UK , USA", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/oneplus/2020/8-5g-premium-edition-dual-sim-td-lte-cn-256gb-in2010.json b/data/smartphone/oneplus/2020/8-5g-premium-edition-dual-sim-td-lte-cn-256gb-in2010.json new file mode 100644 index 00000000000..6804c354256 --- /dev/null +++ b/data/smartphone/oneplus/2020/8-5g-premium-edition-dual-sim-td-lte-cn-256gb-in2010.json @@ -0,0 +1,43 @@ +{ + "slug": "8-5g-premium-edition-dual-sim-td-lte-cn-256gb-in2010", + "name": "8 5G Premium Edition Dual SIM TD-LTE CN 256GB IN2010", + "brand": "oneplus", + "soc": "snapdragon-865", + "release_date": "2020-04-17", + "ram_gb": 12.0, + "battery_mah": 4300, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2020/8-5g-premium-edition-dual-sim-td-lte-in-256gb-in2011.json b/data/smartphone/oneplus/2020/8-5g-premium-edition-dual-sim-td-lte-in-256gb-in2011.json new file mode 100644 index 00000000000..f76d297473f --- /dev/null +++ b/data/smartphone/oneplus/2020/8-5g-premium-edition-dual-sim-td-lte-in-256gb-in2011.json @@ -0,0 +1,43 @@ +{ + "slug": "8-5g-premium-edition-dual-sim-td-lte-in-256gb-in2011", + "name": "8 5G Premium Edition Dual SIM TD-LTE IN 256GB IN2011", + "brand": "oneplus", + "soc": "snapdragon-865", + "release_date": "2020-05-29", + "ram_gb": 12.0, + "battery_mah": 4300, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2020/8-5g-premium-edition-dual-sim-td-lte-na-256gb-in2015.json b/data/smartphone/oneplus/2020/8-5g-premium-edition-dual-sim-td-lte-na-256gb-in2015.json new file mode 100644 index 00000000000..6f8e9ffea57 --- /dev/null +++ b/data/smartphone/oneplus/2020/8-5g-premium-edition-dual-sim-td-lte-na-256gb-in2015.json @@ -0,0 +1,43 @@ +{ + "slug": "8-5g-premium-edition-dual-sim-td-lte-na-256gb-in2015", + "name": "8 5G Premium Edition Dual SIM TD-LTE NA 256GB IN2015", + "brand": "oneplus", + "soc": "snapdragon-865", + "release_date": "2020-04-21", + "ram_gb": 12.0, + "battery_mah": 4300, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/oneplus/2020/8-5g-premium-edition-global-dual-sim-td-lte-256gb-in2013.json b/data/smartphone/oneplus/2020/8-5g-premium-edition-global-dual-sim-td-lte-256gb-in2013.json new file mode 100644 index 00000000000..5d46e303476 --- /dev/null +++ b/data/smartphone/oneplus/2020/8-5g-premium-edition-global-dual-sim-td-lte-256gb-in2013.json @@ -0,0 +1,43 @@ +{ + "slug": "8-5g-premium-edition-global-dual-sim-td-lte-256gb-in2013", + "name": "8 5G Premium Edition Global Dual SIM TD-LTE 256GB IN2013", + "brand": "oneplus", + "soc": "snapdragon-865", + "release_date": "2020-04-21", + "ram_gb": 12.0, + "battery_mah": 4300, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , India , Ireland , Italy , Latvia , Lithuania , Malaysia , Netherlands , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , Spain , Switzerland , Sweden , Thailand , UAE , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oneplus/2020/8-5g-standard-edition-dual-sim-td-lte-cn-128gb-in2010.json b/data/smartphone/oneplus/2020/8-5g-standard-edition-dual-sim-td-lte-cn-128gb-in2010.json new file mode 100644 index 00000000000..b0a863dfa80 --- /dev/null +++ b/data/smartphone/oneplus/2020/8-5g-standard-edition-dual-sim-td-lte-cn-128gb-in2010.json @@ -0,0 +1,43 @@ +{ + "slug": "8-5g-standard-edition-dual-sim-td-lte-cn-128gb-in2010", + "name": "8 5G Standard Edition Dual SIM TD-LTE CN 128GB IN2010", + "brand": "oneplus", + "soc": "snapdragon-865", + "release_date": "2020-04-17", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2020/8-5g-standard-edition-dual-sim-td-lte-in-128gb-in2011.json b/data/smartphone/oneplus/2020/8-5g-standard-edition-dual-sim-td-lte-in-128gb-in2011.json new file mode 100644 index 00000000000..ba05370a5e9 --- /dev/null +++ b/data/smartphone/oneplus/2020/8-5g-standard-edition-dual-sim-td-lte-in-128gb-in2011.json @@ -0,0 +1,43 @@ +{ + "slug": "8-5g-standard-edition-dual-sim-td-lte-in-128gb-in2011", + "name": "8 5G Standard Edition Dual SIM TD-LTE IN 128GB IN2011", + "brand": "oneplus", + "soc": "snapdragon-865", + "release_date": "2020-05-29", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2020/8-5g-standard-edition-dual-sim-td-lte-na-128gb-in2015.json b/data/smartphone/oneplus/2020/8-5g-standard-edition-dual-sim-td-lte-na-128gb-in2015.json new file mode 100644 index 00000000000..eb17661ff18 --- /dev/null +++ b/data/smartphone/oneplus/2020/8-5g-standard-edition-dual-sim-td-lte-na-128gb-in2015.json @@ -0,0 +1,43 @@ +{ + "slug": "8-5g-standard-edition-dual-sim-td-lte-na-128gb-in2015", + "name": "8 5G Standard Edition Dual SIM TD-LTE NA 128GB IN2015", + "brand": "oneplus", + "soc": "snapdragon-865", + "release_date": "2020-04-21", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/oneplus/2020/8-5g-standard-edition-global-dual-sim-td-lte-128gb-in2013.json b/data/smartphone/oneplus/2020/8-5g-standard-edition-global-dual-sim-td-lte-128gb-in2013.json new file mode 100644 index 00000000000..fddb3540901 --- /dev/null +++ b/data/smartphone/oneplus/2020/8-5g-standard-edition-global-dual-sim-td-lte-128gb-in2013.json @@ -0,0 +1,43 @@ +{ + "slug": "8-5g-standard-edition-global-dual-sim-td-lte-128gb-in2013", + "name": "8 5G Standard Edition Global Dual SIM TD-LTE 128GB IN2013", + "brand": "oneplus", + "soc": "snapdragon-865", + "release_date": "2020-04-21", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , India , Ireland , Italy , Latvia , Lithuania , Malaysia , Netherlands , Norway , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , Spain , Sweden , Switzerland , Thailand , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oneplus/2020/8-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-in2020.json b/data/smartphone/oneplus/2020/8-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-in2020.json new file mode 100644 index 00000000000..4d0a86b4741 --- /dev/null +++ b/data/smartphone/oneplus/2020/8-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-in2020.json @@ -0,0 +1,43 @@ +{ + "slug": "8-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-in2020", + "name": "8 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB IN2020", + "brand": "oneplus", + "soc": "snapdragon-865", + "release_date": "2020-04-17", + "ram_gb": 12.0, + "battery_mah": 4510, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 513 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2020/8-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-in2021.json b/data/smartphone/oneplus/2020/8-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-in2021.json new file mode 100644 index 00000000000..a4293333865 --- /dev/null +++ b/data/smartphone/oneplus/2020/8-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-in2021.json @@ -0,0 +1,43 @@ +{ + "slug": "8-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-in2021", + "name": "8 Pro 5G Premium Edition Dual SIM TD-LTE IN 128GB IN2021", + "brand": "oneplus", + "soc": "snapdragon-865", + "release_date": "2020-05-29", + "ram_gb": 8.0, + "battery_mah": 4510, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.78, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 513 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2020/8-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-in2021.json b/data/smartphone/oneplus/2020/8-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-in2021.json new file mode 100644 index 00000000000..bc8ebc9a782 --- /dev/null +++ b/data/smartphone/oneplus/2020/8-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-in2021.json @@ -0,0 +1,43 @@ +{ + "slug": "8-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-in2021", + "name": "8 Pro 5G Premium Edition Dual SIM TD-LTE IN 256GB IN2021", + "brand": "oneplus", + "soc": "snapdragon-865", + "release_date": "2020-05-29", + "ram_gb": 12.0, + "battery_mah": 4510, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 513 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2020/8-pro-5g-premium-edition-dual-sim-td-lte-na-256gb-in2025.json b/data/smartphone/oneplus/2020/8-pro-5g-premium-edition-dual-sim-td-lte-na-256gb-in2025.json new file mode 100644 index 00000000000..a2bcedab51a --- /dev/null +++ b/data/smartphone/oneplus/2020/8-pro-5g-premium-edition-dual-sim-td-lte-na-256gb-in2025.json @@ -0,0 +1,43 @@ +{ + "slug": "8-pro-5g-premium-edition-dual-sim-td-lte-na-256gb-in2025", + "name": "8 Pro 5G Premium Edition Dual SIM TD-LTE NA 256GB IN2025", + "brand": "oneplus", + "soc": "snapdragon-865", + "release_date": "2020-04-29", + "ram_gb": 12.0, + "battery_mah": 4510, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 513 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/oneplus/2020/8-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-in2023.json b/data/smartphone/oneplus/2020/8-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-in2023.json new file mode 100644 index 00000000000..670a835d0eb --- /dev/null +++ b/data/smartphone/oneplus/2020/8-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-in2023.json @@ -0,0 +1,43 @@ +{ + "slug": "8-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-in2023", + "name": "8 Pro 5G Premium Edition Global Dual SIM TD-LTE 256GB IN2023", + "brand": "oneplus", + "soc": "snapdragon-865", + "release_date": "2020-04-21", + "ram_gb": 12.0, + "battery_mah": 4510, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 513 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Bulgaria , China , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , India , Ireland , Italy , Latvia , Lithuania , Malaysia , Netherlands , Norway , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , Spain , Sweden , Switzerland , Thailand , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oneplus/2020/8-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-in2020.json b/data/smartphone/oneplus/2020/8-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-in2020.json new file mode 100644 index 00000000000..939f810131b --- /dev/null +++ b/data/smartphone/oneplus/2020/8-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-in2020.json @@ -0,0 +1,43 @@ +{ + "slug": "8-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-in2020", + "name": "8 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB IN2020", + "brand": "oneplus", + "soc": "snapdragon-865", + "release_date": "2020-04-17", + "ram_gb": 8.0, + "battery_mah": 4510, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.78, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 513 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2020/8-pro-5g-standard-edition-dual-sim-td-lte-na-128gb-in2025.json b/data/smartphone/oneplus/2020/8-pro-5g-standard-edition-dual-sim-td-lte-na-128gb-in2025.json new file mode 100644 index 00000000000..508c59ed1fe --- /dev/null +++ b/data/smartphone/oneplus/2020/8-pro-5g-standard-edition-dual-sim-td-lte-na-128gb-in2025.json @@ -0,0 +1,43 @@ +{ + "slug": "8-pro-5g-standard-edition-dual-sim-td-lte-na-128gb-in2025", + "name": "8 Pro 5G Standard Edition Dual SIM TD-LTE NA 128GB IN2025", + "brand": "oneplus", + "soc": "snapdragon-865", + "release_date": "2020-04-29", + "ram_gb": 8.0, + "battery_mah": 4510, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.78, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 513 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/oneplus/2020/8-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-in2023.json b/data/smartphone/oneplus/2020/8-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-in2023.json new file mode 100644 index 00000000000..ef7d45693cd --- /dev/null +++ b/data/smartphone/oneplus/2020/8-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-in2023.json @@ -0,0 +1,43 @@ +{ + "slug": "8-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-in2023", + "name": "8 Pro 5G Standard Edition Global Dual SIM TD-LTE 128GB IN2023", + "brand": "oneplus", + "soc": "snapdragon-865", + "release_date": "2020-04-21", + "ram_gb": 8.0, + "battery_mah": 4510, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.78, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 513 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Bulgaria , China , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , India , Ireland , Italy , Latvia , Lithuania , Malaysia , Netherlands , Norway , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , Spain , Sweden , Switzerland , Thailand , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oneplus/2020/8t-5g-premium-edition-dual-sim-td-lte-cn-256gb-kb2000.json b/data/smartphone/oneplus/2020/8t-5g-premium-edition-dual-sim-td-lte-cn-256gb-kb2000.json new file mode 100644 index 00000000000..87261cac817 --- /dev/null +++ b/data/smartphone/oneplus/2020/8t-5g-premium-edition-dual-sim-td-lte-cn-256gb-kb2000.json @@ -0,0 +1,43 @@ +{ + "slug": "8t-5g-premium-edition-dual-sim-td-lte-cn-256gb-kb2000", + "name": "8T 5G Premium Edition Dual SIM TD-LTE CN 256GB KB2000", + "brand": "oneplus", + "soc": "snapdragon-865", + "release_date": "2020-10-13", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2020/8t-5g-premium-edition-dual-sim-td-lte-in-256gb-kb2001.json b/data/smartphone/oneplus/2020/8t-5g-premium-edition-dual-sim-td-lte-in-256gb-kb2001.json new file mode 100644 index 00000000000..f6f80991495 --- /dev/null +++ b/data/smartphone/oneplus/2020/8t-5g-premium-edition-dual-sim-td-lte-in-256gb-kb2001.json @@ -0,0 +1,43 @@ +{ + "slug": "8t-5g-premium-edition-dual-sim-td-lte-in-256gb-kb2001", + "name": "8T 5G Premium Edition Dual SIM TD-LTE IN 256GB KB2001", + "brand": "oneplus", + "soc": "snapdragon-865", + "release_date": "2020-10-14", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2020/8t-5g-premium-edition-dual-sim-td-lte-na-256gb-kb2005.json b/data/smartphone/oneplus/2020/8t-5g-premium-edition-dual-sim-td-lte-na-256gb-kb2005.json new file mode 100644 index 00000000000..2d6c9f05430 --- /dev/null +++ b/data/smartphone/oneplus/2020/8t-5g-premium-edition-dual-sim-td-lte-na-256gb-kb2005.json @@ -0,0 +1,44 @@ +{ + "slug": "8t-5g-premium-edition-dual-sim-td-lte-na-256gb-kb2005", + "name": "8T 5G Premium Edition Dual SIM TD-LTE NA 256GB KB2005", + "brand": "oneplus", + "soc": "snapdragon-865", + "release_date": "2020-10-14", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 749, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/oneplus/2020/8t-5g-premium-edition-dual-sim-td-lte-us-256gb-kb2007.json b/data/smartphone/oneplus/2020/8t-5g-premium-edition-dual-sim-td-lte-us-256gb-kb2007.json new file mode 100644 index 00000000000..71a373f2bbf --- /dev/null +++ b/data/smartphone/oneplus/2020/8t-5g-premium-edition-dual-sim-td-lte-us-256gb-kb2007.json @@ -0,0 +1,44 @@ +{ + "slug": "8t-5g-premium-edition-dual-sim-td-lte-us-256gb-kb2007", + "name": "8T+ 5G Premium Edition Dual SIM TD-LTE US 256GB KB2007", + "brand": "oneplus", + "soc": "snapdragon-865", + "release_date": "2020-10-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 750, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/oneplus/2020/8t-5g-premium-edition-global-dual-sim-td-lte-256gb-kb2003.json b/data/smartphone/oneplus/2020/8t-5g-premium-edition-global-dual-sim-td-lte-256gb-kb2003.json new file mode 100644 index 00000000000..5c79659d46f --- /dev/null +++ b/data/smartphone/oneplus/2020/8t-5g-premium-edition-global-dual-sim-td-lte-256gb-kb2003.json @@ -0,0 +1,44 @@ +{ + "slug": "8t-5g-premium-edition-global-dual-sim-td-lte-256gb-kb2003", + "name": "8T 5G Premium Edition Global Dual SIM TD-LTE 256GB KB2003", + "brand": "oneplus", + "soc": "snapdragon-865", + "release_date": "2020-10-16", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 778, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Ireland , Italy , Latvia , Lithuania , Malaysia , Netherlands , Norway , Poland , Portugal , Russia , Romania , Serbia , Slovakia , Slovenia , Spain , Sweden , Switzerland , Thailand , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oneplus/2020/8t-5g-standard-edition-dual-sim-td-lte-cn-128gb-kb2000.json b/data/smartphone/oneplus/2020/8t-5g-standard-edition-dual-sim-td-lte-cn-128gb-kb2000.json new file mode 100644 index 00000000000..b4b50d71193 --- /dev/null +++ b/data/smartphone/oneplus/2020/8t-5g-standard-edition-dual-sim-td-lte-cn-128gb-kb2000.json @@ -0,0 +1,44 @@ +{ + "slug": "8t-5g-standard-edition-dual-sim-td-lte-cn-128gb-kb2000", + "name": "8T 5G Standard Edition Dual SIM TD-LTE CN 128GB KB2000", + "brand": "oneplus", + "soc": "snapdragon-865", + "release_date": "2020-10-13", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 3399, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2020/8t-5g-standard-edition-dual-sim-td-lte-in-128gb-kb2001.json b/data/smartphone/oneplus/2020/8t-5g-standard-edition-dual-sim-td-lte-in-128gb-kb2001.json new file mode 100644 index 00000000000..9b453131bcb --- /dev/null +++ b/data/smartphone/oneplus/2020/8t-5g-standard-edition-dual-sim-td-lte-in-128gb-kb2001.json @@ -0,0 +1,43 @@ +{ + "slug": "8t-5g-standard-edition-dual-sim-td-lte-in-128gb-kb2001", + "name": "8T 5G Standard Edition Dual SIM TD-LTE IN 128GB KB2001", + "brand": "oneplus", + "soc": "snapdragon-865", + "release_date": "2020-10-14", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2020/8t-5g-standard-edition-dual-sim-td-lte-na-128gb-kb2005.json b/data/smartphone/oneplus/2020/8t-5g-standard-edition-dual-sim-td-lte-na-128gb-kb2005.json new file mode 100644 index 00000000000..24387736a79 --- /dev/null +++ b/data/smartphone/oneplus/2020/8t-5g-standard-edition-dual-sim-td-lte-na-128gb-kb2005.json @@ -0,0 +1,43 @@ +{ + "slug": "8t-5g-standard-edition-dual-sim-td-lte-na-128gb-kb2005", + "name": "8T 5G Standard Edition Dual SIM TD-LTE NA 128GB KB2005", + "brand": "oneplus", + "soc": "snapdragon-865", + "release_date": "2020-10-14", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/oneplus/2020/8t-5g-standard-edition-global-dual-sim-td-lte-128gb-kb2003.json b/data/smartphone/oneplus/2020/8t-5g-standard-edition-global-dual-sim-td-lte-128gb-kb2003.json new file mode 100644 index 00000000000..2c74f39d958 --- /dev/null +++ b/data/smartphone/oneplus/2020/8t-5g-standard-edition-global-dual-sim-td-lte-128gb-kb2003.json @@ -0,0 +1,44 @@ +{ + "slug": "8t-5g-standard-edition-global-dual-sim-td-lte-128gb-kb2003", + "name": "8T 5G Standard Edition Global Dual SIM TD-LTE 128GB KB2003", + "brand": "oneplus", + "soc": "snapdragon-865", + "release_date": "2020-10-16", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 667, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Ireland , Italy , Latvia , Lithuania , Malaysia , Netherlands , Norway , Poland , Portugal , Russia , Romania , Serbia , Slovakia , Slovenia , Spain , Sweden , Switzerland , Thailand , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oneplus/2020/8t-cyberpunk-2077-edition.json b/data/smartphone/oneplus/2020/8t-cyberpunk-2077-edition.json new file mode 100644 index 00000000000..418901c3fa4 --- /dev/null +++ b/data/smartphone/oneplus/2020/8t-cyberpunk-2077-edition.json @@ -0,0 +1,32 @@ +{ + "slug": "8t-cyberpunk-2077-edition", + "name": "8T Cyberpunk 2077 Edition", + "brand": "oneplus", + "soc": "snapdragon-865", + "release_date": "2020-01-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "msrp_usd": 749 +} diff --git a/data/smartphone/oneplus/2020/nord-5g-dual-sim-td-lte-in-128gb-ac2001.json b/data/smartphone/oneplus/2020/nord-5g-dual-sim-td-lte-in-128gb-ac2001.json new file mode 100644 index 00000000000..6b5f32f2ee1 --- /dev/null +++ b/data/smartphone/oneplus/2020/nord-5g-dual-sim-td-lte-in-128gb-ac2001.json @@ -0,0 +1,43 @@ +{ + "slug": "nord-5g-dual-sim-td-lte-in-128gb-ac2001", + "name": "Nord 5G Dual SIM TD-LTE IN 128GB AC2001", + "brand": "oneplus", + "soc": "snapdragon-765", + "release_date": "2020-08-04", + "ram_gb": 8.0, + "battery_mah": 4115, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2020/nord-5g-dual-sim-td-lte-in-256gb-ac2001.json b/data/smartphone/oneplus/2020/nord-5g-dual-sim-td-lte-in-256gb-ac2001.json new file mode 100644 index 00000000000..c20e16f7d89 --- /dev/null +++ b/data/smartphone/oneplus/2020/nord-5g-dual-sim-td-lte-in-256gb-ac2001.json @@ -0,0 +1,43 @@ +{ + "slug": "nord-5g-dual-sim-td-lte-in-256gb-ac2001", + "name": "Nord 5G Dual SIM TD-LTE IN 256GB AC2001", + "brand": "oneplus", + "soc": "snapdragon-765", + "release_date": "2020-08-04", + "ram_gb": 12.0, + "battery_mah": 4115, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2020/nord-5g-dual-sim-td-lte-in-64gb-ac2001.json b/data/smartphone/oneplus/2020/nord-5g-dual-sim-td-lte-in-64gb-ac2001.json new file mode 100644 index 00000000000..649fb2aea8e --- /dev/null +++ b/data/smartphone/oneplus/2020/nord-5g-dual-sim-td-lte-in-64gb-ac2001.json @@ -0,0 +1,43 @@ +{ + "slug": "nord-5g-dual-sim-td-lte-in-64gb-ac2001", + "name": "Nord 5G Dual SIM TD-LTE IN 64GB AC2001", + "brand": "oneplus", + "soc": "snapdragon-765", + "release_date": "2020-09-01", + "ram_gb": 6.0, + "battery_mah": 4115, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2020/nord-5g-global-dual-sim-td-lte-128gb-ac2003-oneplus-z.json b/data/smartphone/oneplus/2020/nord-5g-global-dual-sim-td-lte-128gb-ac2003-oneplus-z.json new file mode 100644 index 00000000000..ac24a06a6a7 --- /dev/null +++ b/data/smartphone/oneplus/2020/nord-5g-global-dual-sim-td-lte-128gb-ac2003-oneplus-z.json @@ -0,0 +1,44 @@ +{ + "slug": "nord-5g-global-dual-sim-td-lte-128gb-ac2003-oneplus-z", + "name": "Nord 5G Global Dual SIM TD-LTE 128GB AC2003 / OnePlus Z", + "brand": "oneplus", + "soc": "snapdragon-765", + "release_date": "2020-08-04", + "ram_gb": 8.0, + "battery_mah": 4115, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 379, + "market_countries": "Austria , Belgium , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Greece , HK , Hungary , Ireland , Italy , Latvia , Lithuania , Malaysia , Netherlands , Norway , Poland , Portugal , Russia , Singapore , Slovakia , Slovenia , Spain , Sweden , Switzerland , Thailand , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oneplus/2020/nord-5g-global-dual-sim-td-lte-256gb-ac2003.json b/data/smartphone/oneplus/2020/nord-5g-global-dual-sim-td-lte-256gb-ac2003.json new file mode 100644 index 00000000000..6fe8de381ea --- /dev/null +++ b/data/smartphone/oneplus/2020/nord-5g-global-dual-sim-td-lte-256gb-ac2003.json @@ -0,0 +1,44 @@ +{ + "slug": "nord-5g-global-dual-sim-td-lte-256gb-ac2003", + "name": "Nord 5G Global Dual SIM TD-LTE 256GB AC2003", + "brand": "oneplus", + "soc": "snapdragon-765", + "release_date": "2020-08-04", + "ram_gb": 12.0, + "battery_mah": 4115, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 469, + "market_countries": "Austria , Belgium , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Greece , HK , Hungary , Ireland , Italy , Latvia , Lithuania , Malaysia , Netherlands , Norway , Poland , Portugal , Russia , Singapore , Slovakia , Slovenia , Spain , Sweden , Switzerland , Thailand , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oneplus/2020/nord-n10-5g-global-dual-sim-td-lte-128gb-be2029.json b/data/smartphone/oneplus/2020/nord-n10-5g-global-dual-sim-td-lte-128gb-be2029.json new file mode 100644 index 00000000000..da88989ce4c --- /dev/null +++ b/data/smartphone/oneplus/2020/nord-n10-5g-global-dual-sim-td-lte-128gb-be2029.json @@ -0,0 +1,44 @@ +{ + "slug": "nord-n10-5g-global-dual-sim-td-lte-128gb-be2029", + "name": "Nord N10 5G Global Dual SIM TD-LTE 128GB BE2029", + "brand": "oneplus", + "soc": "snapdragon-690", + "release_date": "2020-11-21", + "ram_gb": 6.0, + "battery_mah": 4300, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.49, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 406 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 329, + "market_countries": "Austria , Belgium , Bulgaria , Croatia , Czech , Denmark , Finland , France , Germany , Hungary , Ireland , Italy , Netherlands , Norway , Poland , Portugal , Romania , Russia , Slovakia , Spain , Sweden , Switzerland , UK", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/oneplus/2020/nord-n10-5g.json b/data/smartphone/oneplus/2020/nord-n10-5g.json new file mode 100644 index 00000000000..a6032ff500c --- /dev/null +++ b/data/smartphone/oneplus/2020/nord-n10-5g.json @@ -0,0 +1,32 @@ +{ + "slug": "nord-n10-5g", + "name": "Nord N10 5G", + "brand": "oneplus", + "soc": "snapdragon-690", + "release_date": "2020-01-01", + "ram_gb": 6.0, + "battery_mah": 4300, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.49 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "msrp_usd": 299 +} diff --git a/data/smartphone/oneplus/2020/nord-n100-global-dual-sim-td-lte-64gb-be2013.json b/data/smartphone/oneplus/2020/nord-n100-global-dual-sim-td-lte-64gb-be2013.json new file mode 100644 index 00000000000..08265bce4ef --- /dev/null +++ b/data/smartphone/oneplus/2020/nord-n100-global-dual-sim-td-lte-64gb-be2013.json @@ -0,0 +1,43 @@ +{ + "slug": "nord-n100-global-dual-sim-td-lte-64gb-be2013", + "name": "Nord N100 Global Dual SIM TD-LTE 64GB BE2013", + "brand": "oneplus", + "soc": "snapdragon-460", + "release_date": "2020-10-26", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 179, + "market_countries": "Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , India , Ireland , Italy , Latvia , Lithuania , Malaysia , Netherlands , Norway , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , Spain , Switzerland , Sweden , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oneplus/2020/nord-n100.json b/data/smartphone/oneplus/2020/nord-n100.json new file mode 100644 index 00000000000..9b657360bc7 --- /dev/null +++ b/data/smartphone/oneplus/2020/nord-n100.json @@ -0,0 +1,32 @@ +{ + "slug": "nord-n100", + "name": "Nord N100", + "brand": "oneplus", + "soc": "snapdragon-460", + "release_date": "2020-01-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "msrp_usd": 179 +} diff --git a/data/smartphone/oneplus/2021/9-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2110.json b/data/smartphone/oneplus/2021/9-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2110.json new file mode 100644 index 00000000000..aa25a5fe27d --- /dev/null +++ b/data/smartphone/oneplus/2021/9-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2110.json @@ -0,0 +1,43 @@ +{ + "slug": "9-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2110", + "name": "9 5G Premium Edition Dual SIM TD-LTE CN 256GB LE2110", + "brand": "oneplus", + "soc": "snapdragon-888", + "release_date": "2021-04-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2021/9-5g-premium-edition-dual-sim-td-lte-in-256gb-le2111.json b/data/smartphone/oneplus/2021/9-5g-premium-edition-dual-sim-td-lte-in-256gb-le2111.json new file mode 100644 index 00000000000..0d3d2dc15c4 --- /dev/null +++ b/data/smartphone/oneplus/2021/9-5g-premium-edition-dual-sim-td-lte-in-256gb-le2111.json @@ -0,0 +1,43 @@ +{ + "slug": "9-5g-premium-edition-dual-sim-td-lte-in-256gb-le2111", + "name": "9 5G Premium Edition Dual SIM TD-LTE IN 256GB LE2111", + "brand": "oneplus", + "soc": "snapdragon-888", + "release_date": "2021-03-29", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2021/9-5g-premium-edition-global-dual-sim-td-lte-256gb-le2113.json b/data/smartphone/oneplus/2021/9-5g-premium-edition-global-dual-sim-td-lte-256gb-le2113.json new file mode 100644 index 00000000000..98aad78cea6 --- /dev/null +++ b/data/smartphone/oneplus/2021/9-5g-premium-edition-global-dual-sim-td-lte-256gb-le2113.json @@ -0,0 +1,44 @@ +{ + "slug": "9-5g-premium-edition-global-dual-sim-td-lte-256gb-le2113", + "name": "9 5G Premium Edition Global Dual SIM TD-LTE 256GB LE2113", + "brand": "oneplus", + "soc": "snapdragon-888", + "release_date": "2021-03-29", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 859, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , China , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Ireland , Italy , Latvia , Lithuania , Malaysia , Netherlands , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Singapore , Slovenia , Spain , Sweden , Switzerland , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oneplus/2021/9-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2110.json b/data/smartphone/oneplus/2021/9-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2110.json new file mode 100644 index 00000000000..087ba882ea6 --- /dev/null +++ b/data/smartphone/oneplus/2021/9-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2110.json @@ -0,0 +1,43 @@ +{ + "slug": "9-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2110", + "name": "9 5G Standard Edition Dual SIM TD-LTE CN 128GB LE2110", + "brand": "oneplus", + "soc": "snapdragon-888", + "release_date": "2021-04-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2021/9-5g-standard-edition-dual-sim-td-lte-in-128gb-le2111.json b/data/smartphone/oneplus/2021/9-5g-standard-edition-dual-sim-td-lte-in-128gb-le2111.json new file mode 100644 index 00000000000..1c00e88f979 --- /dev/null +++ b/data/smartphone/oneplus/2021/9-5g-standard-edition-dual-sim-td-lte-in-128gb-le2111.json @@ -0,0 +1,43 @@ +{ + "slug": "9-5g-standard-edition-dual-sim-td-lte-in-128gb-le2111", + "name": "9 5G Standard Edition Dual SIM TD-LTE IN 128GB LE2111", + "brand": "oneplus", + "soc": "snapdragon-888", + "release_date": "2021-03-29", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2021/9-5g-standard-edition-global-dual-sim-td-lte-128gb-le2113.json b/data/smartphone/oneplus/2021/9-5g-standard-edition-global-dual-sim-td-lte-128gb-le2113.json new file mode 100644 index 00000000000..3de08fd3bb7 --- /dev/null +++ b/data/smartphone/oneplus/2021/9-5g-standard-edition-global-dual-sim-td-lte-128gb-le2113.json @@ -0,0 +1,44 @@ +{ + "slug": "9-5g-standard-edition-global-dual-sim-td-lte-128gb-le2113", + "name": "9 5G Standard Edition Global Dual SIM TD-LTE 128GB LE2113", + "brand": "oneplus", + "soc": "snapdragon-888", + "release_date": "2021-03-29", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 759, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , China , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Ireland , Italy , Latvia , Lithuania , Malaysia , Netherlands , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Singapore , Slovenia , Spain , Sweden , Switzerland , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oneplus/2021/9-5g-standard-edition-td-lte-na-128gb-le2115.json b/data/smartphone/oneplus/2021/9-5g-standard-edition-td-lte-na-128gb-le2115.json new file mode 100644 index 00000000000..2765a31576c --- /dev/null +++ b/data/smartphone/oneplus/2021/9-5g-standard-edition-td-lte-na-128gb-le2115.json @@ -0,0 +1,44 @@ +{ + "slug": "9-5g-standard-edition-td-lte-na-128gb-le2115", + "name": "9 5G Standard Edition TD-LTE NA 128GB LE2115", + "brand": "oneplus", + "soc": "snapdragon-888", + "release_date": "2021-03-29", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 729, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/oneplus/2021/9-5g-standard-edition-td-lte-us-128gb-le2117.json b/data/smartphone/oneplus/2021/9-5g-standard-edition-td-lte-us-128gb-le2117.json new file mode 100644 index 00000000000..afccc55849d --- /dev/null +++ b/data/smartphone/oneplus/2021/9-5g-standard-edition-td-lte-us-128gb-le2117.json @@ -0,0 +1,44 @@ +{ + "slug": "9-5g-standard-edition-td-lte-us-128gb-le2117", + "name": "9 5G Standard Edition TD-LTE US 128GB LE2117", + "brand": "oneplus", + "soc": "snapdragon-888", + "release_date": "2021-03-29", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 730, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/oneplus/2021/9-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2120.json b/data/smartphone/oneplus/2021/9-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2120.json new file mode 100644 index 00000000000..8f67c2c6169 --- /dev/null +++ b/data/smartphone/oneplus/2021/9-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2120.json @@ -0,0 +1,43 @@ +{ + "slug": "9-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2120", + "name": "9 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB LE2120", + "brand": "oneplus", + "soc": "snapdragon-888", + "release_date": "2021-04-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3216", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2021/9-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-le2121.json b/data/smartphone/oneplus/2021/9-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-le2121.json new file mode 100644 index 00000000000..c3426bf44f8 --- /dev/null +++ b/data/smartphone/oneplus/2021/9-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-le2121.json @@ -0,0 +1,43 @@ +{ + "slug": "9-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-le2121", + "name": "9 Pro 5G Premium Edition Dual SIM TD-LTE IN 256GB LE2121", + "brand": "oneplus", + "soc": "snapdragon-888", + "release_date": "2021-03-31", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3216", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2021/9-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-le2123.json b/data/smartphone/oneplus/2021/9-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-le2123.json new file mode 100644 index 00000000000..9aaa91a68c2 --- /dev/null +++ b/data/smartphone/oneplus/2021/9-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-le2123.json @@ -0,0 +1,44 @@ +{ + "slug": "9-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-le2123", + "name": "9 Pro 5G Premium Edition Global Dual SIM TD-LTE 256GB LE2123", + "brand": "oneplus", + "soc": "snapdragon-888", + "release_date": "2021-03-29", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3216", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1049, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , China , Cyprus , Croatia , Czech , Denmark , Egypt , Estonia , Finland , France , Greece , Germany , HK , Hungary , Ireland , Italy , Jordan , Latvia , Lithuania , Malaysia , Mexico , Netherlands , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Sweden , Switzerland , Thailand , UAE , UK , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oneplus/2021/9-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2120.json b/data/smartphone/oneplus/2021/9-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2120.json new file mode 100644 index 00000000000..ececf840151 --- /dev/null +++ b/data/smartphone/oneplus/2021/9-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2120.json @@ -0,0 +1,43 @@ +{ + "slug": "9-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2120", + "name": "9 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB LE2120", + "brand": "oneplus", + "soc": "snapdragon-888", + "release_date": "2021-04-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3216", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2021/9-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-le2120.json b/data/smartphone/oneplus/2021/9-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-le2120.json new file mode 100644 index 00000000000..969d7e5476b --- /dev/null +++ b/data/smartphone/oneplus/2021/9-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-le2120.json @@ -0,0 +1,43 @@ +{ + "slug": "9-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-le2120", + "name": "9 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB LE2120", + "brand": "oneplus", + "soc": "snapdragon-888", + "release_date": "2021-04-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3216", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2021/9-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-le2121.json b/data/smartphone/oneplus/2021/9-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-le2121.json new file mode 100644 index 00000000000..b12d886b12f --- /dev/null +++ b/data/smartphone/oneplus/2021/9-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-le2121.json @@ -0,0 +1,43 @@ +{ + "slug": "9-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-le2121", + "name": "9 Pro 5G Standard Edition Dual SIM TD-LTE IN 128GB LE2121", + "brand": "oneplus", + "soc": "snapdragon-888", + "release_date": "2021-03-31", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3216", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2021/9-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-le2123.json b/data/smartphone/oneplus/2021/9-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-le2123.json new file mode 100644 index 00000000000..3cade1f9e2b --- /dev/null +++ b/data/smartphone/oneplus/2021/9-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-le2123.json @@ -0,0 +1,44 @@ +{ + "slug": "9-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-le2123", + "name": "9 Pro 5G Standard Edition Global Dual SIM TD-LTE 128GB LE2123", + "brand": "oneplus", + "soc": "snapdragon-888", + "release_date": "2021-03-29", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3216", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 949, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , China , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Ireland , Italy , Latvia , Lithuania , Malaysia , Mexico , Netherlands , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Singapore , Slovenia , Spain , Sweden , Switzerland , Thailand , Turkey , UAE , UK , Vietnam", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oneplus/2021/9-pro-5g-uw-td-lte-na-256gb-le2125.json b/data/smartphone/oneplus/2021/9-pro-5g-uw-td-lte-na-256gb-le2125.json new file mode 100644 index 00000000000..49a1683758f --- /dev/null +++ b/data/smartphone/oneplus/2021/9-pro-5g-uw-td-lte-na-256gb-le2125.json @@ -0,0 +1,44 @@ +{ + "slug": "9-pro-5g-uw-td-lte-na-256gb-le2125", + "name": "9 Pro 5G UW TD-LTE NA 256GB LE2125", + "brand": "oneplus", + "soc": "snapdragon-888", + "release_date": "2021-03-29", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3216", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1069, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/oneplus/2021/9-pro-5g-uw-td-lte-us-256gb-le2127.json b/data/smartphone/oneplus/2021/9-pro-5g-uw-td-lte-us-256gb-le2127.json new file mode 100644 index 00000000000..05c8dcfaa0a --- /dev/null +++ b/data/smartphone/oneplus/2021/9-pro-5g-uw-td-lte-us-256gb-le2127.json @@ -0,0 +1,44 @@ +{ + "slug": "9-pro-5g-uw-td-lte-us-256gb-le2127", + "name": "9 Pro 5G UW TD-LTE US 256GB LE2127", + "brand": "oneplus", + "soc": "snapdragon-888", + "release_date": "2021-04-02", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3216", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1068, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/oneplus/2021/9r-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2100.json b/data/smartphone/oneplus/2021/9r-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2100.json new file mode 100644 index 00000000000..8735da5ce18 --- /dev/null +++ b/data/smartphone/oneplus/2021/9r-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2100.json @@ -0,0 +1,43 @@ +{ + "slug": "9r-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2100", + "name": "9R 5G Premium Edition Dual SIM TD-LTE CN 256GB LE2100", + "brand": "oneplus", + "soc": "snapdragon-870", + "release_date": "2021-03-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2021/9r-5g-premium-edition-dual-sim-td-lte-in-256gb-le2101.json b/data/smartphone/oneplus/2021/9r-5g-premium-edition-dual-sim-td-lte-in-256gb-le2101.json new file mode 100644 index 00000000000..089056857fe --- /dev/null +++ b/data/smartphone/oneplus/2021/9r-5g-premium-edition-dual-sim-td-lte-in-256gb-le2101.json @@ -0,0 +1,43 @@ +{ + "slug": "9r-5g-premium-edition-dual-sim-td-lte-in-256gb-le2101", + "name": "9R 5G Premium Edition Dual SIM TD-LTE IN 256GB LE2101", + "brand": "oneplus", + "soc": "snapdragon-870", + "release_date": "2021-04-14", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2021/9r-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2100.json b/data/smartphone/oneplus/2021/9r-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2100.json new file mode 100644 index 00000000000..e57404192e8 --- /dev/null +++ b/data/smartphone/oneplus/2021/9r-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2100.json @@ -0,0 +1,43 @@ +{ + "slug": "9r-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2100", + "name": "9R 5G Standard Edition Dual SIM TD-LTE CN 128GB LE2100", + "brand": "oneplus", + "soc": "snapdragon-870", + "release_date": "2021-03-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2021/9r-5g-standard-edition-dual-sim-td-lte-cn-256gb-le2100.json b/data/smartphone/oneplus/2021/9r-5g-standard-edition-dual-sim-td-lte-cn-256gb-le2100.json new file mode 100644 index 00000000000..94d49457419 --- /dev/null +++ b/data/smartphone/oneplus/2021/9r-5g-standard-edition-dual-sim-td-lte-cn-256gb-le2100.json @@ -0,0 +1,43 @@ +{ + "slug": "9r-5g-standard-edition-dual-sim-td-lte-cn-256gb-le2100", + "name": "9R 5G Standard Edition Dual SIM TD-LTE CN 256GB LE2100", + "brand": "oneplus", + "soc": "snapdragon-870", + "release_date": "2021-03-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2021/9r-5g-standard-edition-dual-sim-td-lte-in-128gb-le2101.json b/data/smartphone/oneplus/2021/9r-5g-standard-edition-dual-sim-td-lte-in-128gb-le2101.json new file mode 100644 index 00000000000..2c9fe274314 --- /dev/null +++ b/data/smartphone/oneplus/2021/9r-5g-standard-edition-dual-sim-td-lte-in-128gb-le2101.json @@ -0,0 +1,43 @@ +{ + "slug": "9r-5g-standard-edition-dual-sim-td-lte-in-128gb-le2101", + "name": "9R 5G Standard Edition Dual SIM TD-LTE IN 128GB LE2101", + "brand": "oneplus", + "soc": "snapdragon-870", + "release_date": "2021-04-14", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2021/9r-5g.json b/data/smartphone/oneplus/2021/9r-5g.json new file mode 100644 index 00000000000..c5ab87ed063 --- /dev/null +++ b/data/smartphone/oneplus/2021/9r-5g.json @@ -0,0 +1,32 @@ +{ + "slug": "9r-5g", + "name": "9R 5G", + "brand": "oneplus", + "soc": "snapdragon-870", + "release_date": "2021-01-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "msrp_usd": 599 +} diff --git a/data/smartphone/oneplus/2021/9rt-5g-premium-edition-dual-sim-td-lte-cn-256gb-mt2110.json b/data/smartphone/oneplus/2021/9rt-5g-premium-edition-dual-sim-td-lte-cn-256gb-mt2110.json new file mode 100644 index 00000000000..b09291644d4 --- /dev/null +++ b/data/smartphone/oneplus/2021/9rt-5g-premium-edition-dual-sim-td-lte-cn-256gb-mt2110.json @@ -0,0 +1,44 @@ +{ + "slug": "9rt-5g-premium-edition-dual-sim-td-lte-cn-256gb-mt2110", + "name": "9RT 5G Premium Edition Dual SIM TD-LTE CN 256GB MT2110", + "brand": "oneplus", + "soc": "snapdragon-888", + "release_date": "2021-10-19", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 198.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3799, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2021/9rt-5g-standard-edition-dual-sim-td-lte-cn-128gb-mt2110.json b/data/smartphone/oneplus/2021/9rt-5g-standard-edition-dual-sim-td-lte-cn-128gb-mt2110.json new file mode 100644 index 00000000000..dc1dfcdbaf6 --- /dev/null +++ b/data/smartphone/oneplus/2021/9rt-5g-standard-edition-dual-sim-td-lte-cn-128gb-mt2110.json @@ -0,0 +1,44 @@ +{ + "slug": "9rt-5g-standard-edition-dual-sim-td-lte-cn-128gb-mt2110", + "name": "9RT 5G Standard Edition Dual SIM TD-LTE CN 128GB MT2110", + "brand": "oneplus", + "soc": "snapdragon-888", + "release_date": "2021-10-19", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 198.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3299, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2021/9rt-5g-standard-edition-dual-sim-td-lte-cn-256gb-mt2110.json b/data/smartphone/oneplus/2021/9rt-5g-standard-edition-dual-sim-td-lte-cn-256gb-mt2110.json new file mode 100644 index 00000000000..0529ac5f96b --- /dev/null +++ b/data/smartphone/oneplus/2021/9rt-5g-standard-edition-dual-sim-td-lte-cn-256gb-mt2110.json @@ -0,0 +1,44 @@ +{ + "slug": "9rt-5g-standard-edition-dual-sim-td-lte-cn-256gb-mt2110", + "name": "9RT 5G Standard Edition Dual SIM TD-LTE CN 256GB MT2110", + "brand": "oneplus", + "soc": "snapdragon-888", + "release_date": "2021-10-19", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 198.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3499, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2021/nord-2-5g-premium-edition-dual-sim-td-lte-in-128gb-dn2101.json b/data/smartphone/oneplus/2021/nord-2-5g-premium-edition-dual-sim-td-lte-in-128gb-dn2101.json new file mode 100644 index 00000000000..5b94050f4c4 --- /dev/null +++ b/data/smartphone/oneplus/2021/nord-2-5g-premium-edition-dual-sim-td-lte-in-128gb-dn2101.json @@ -0,0 +1,43 @@ +{ + "slug": "nord-2-5g-premium-edition-dual-sim-td-lte-in-128gb-dn2101", + "name": "Nord 2 5G Premium Edition Dual SIM TD-LTE IN 128GB DN2101", + "brand": "oneplus", + "soc": "dimensity-1200", + "release_date": "2021-07-28", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2021/nord-2-5g-premium-edition-global-dual-sim-td-lte-128gb-dn2103.json b/data/smartphone/oneplus/2021/nord-2-5g-premium-edition-global-dual-sim-td-lte-128gb-dn2103.json new file mode 100644 index 00000000000..db53bb4ed30 --- /dev/null +++ b/data/smartphone/oneplus/2021/nord-2-5g-premium-edition-global-dual-sim-td-lte-128gb-dn2103.json @@ -0,0 +1,44 @@ +{ + "slug": "nord-2-5g-premium-edition-global-dual-sim-td-lte-128gb-dn2103", + "name": "Nord 2 5G Premium Edition Global Dual SIM TD-LTE 128GB DN2103", + "brand": "oneplus", + "soc": "dimensity-1200", + "release_date": "2021-07-28", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 429, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Ireland , Italy , Latvia , Lithuania , Malaysia , Netherlands , Norway , Poland , Portugal , Russia , Singapore , Slovakia , Slovenia , Spain , Sweden , Switzerland , Thailand , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oneplus/2021/nord-2-5g-standard-edition-dual-sim-td-lte-in-128gb-dn2101.json b/data/smartphone/oneplus/2021/nord-2-5g-standard-edition-dual-sim-td-lte-in-128gb-dn2101.json new file mode 100644 index 00000000000..bca9ca33be3 --- /dev/null +++ b/data/smartphone/oneplus/2021/nord-2-5g-standard-edition-dual-sim-td-lte-in-128gb-dn2101.json @@ -0,0 +1,43 @@ +{ + "slug": "nord-2-5g-standard-edition-dual-sim-td-lte-in-128gb-dn2101", + "name": "Nord 2 5G Standard Edition Dual SIM TD-LTE IN 128GB DN2101", + "brand": "oneplus", + "soc": "dimensity-1200", + "release_date": "2021-08-29", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2021/nord-2-5g-top-edition-dual-sim-td-lte-in-256gb-dn2101.json b/data/smartphone/oneplus/2021/nord-2-5g-top-edition-dual-sim-td-lte-in-256gb-dn2101.json new file mode 100644 index 00000000000..5c6dacb7219 --- /dev/null +++ b/data/smartphone/oneplus/2021/nord-2-5g-top-edition-dual-sim-td-lte-in-256gb-dn2101.json @@ -0,0 +1,43 @@ +{ + "slug": "nord-2-5g-top-edition-dual-sim-td-lte-in-256gb-dn2101", + "name": "Nord 2 5G Top Edition Dual SIM TD-LTE IN 256GB DN2101", + "brand": "oneplus", + "soc": "dimensity-1200", + "release_date": "2021-07-28", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2021/nord-2-5g-top-edition-global-dual-sim-td-lte-256gb-dn2103.json b/data/smartphone/oneplus/2021/nord-2-5g-top-edition-global-dual-sim-td-lte-256gb-dn2103.json new file mode 100644 index 00000000000..771245e1dbe --- /dev/null +++ b/data/smartphone/oneplus/2021/nord-2-5g-top-edition-global-dual-sim-td-lte-256gb-dn2103.json @@ -0,0 +1,44 @@ +{ + "slug": "nord-2-5g-top-edition-global-dual-sim-td-lte-256gb-dn2103", + "name": "Nord 2 5G Top Edition Global Dual SIM TD-LTE 256GB DN2103", + "brand": "oneplus", + "soc": "dimensity-1200", + "release_date": "2021-07-28", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 539, + "market_countries": "Austria , Belgium , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Greece , HK , Hungary , Ireland , Italy , Latvia , Lithuania , Malaysia , Netherlands , Norway , Poland , Portugal , Russia , Singapore , Slovakia , Slovenia , Spain , Sweden , Switzerland , Thailand , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oneplus/2021/nord-ce-5g.json b/data/smartphone/oneplus/2021/nord-ce-5g.json new file mode 100644 index 00000000000..e5af90ca9e8 --- /dev/null +++ b/data/smartphone/oneplus/2021/nord-ce-5g.json @@ -0,0 +1,32 @@ +{ + "slug": "nord-ce-5g", + "name": "Nord CE 5G", + "brand": "oneplus", + "soc": "snapdragon-750g", + "release_date": "2021-01-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "msrp_usd": 299 +} diff --git a/data/smartphone/oneplus/2021/nord-n10-5g-td-lte-na-128gb-be2026.json b/data/smartphone/oneplus/2021/nord-n10-5g-td-lte-na-128gb-be2026.json new file mode 100644 index 00000000000..7bfa089c355 --- /dev/null +++ b/data/smartphone/oneplus/2021/nord-n10-5g-td-lte-na-128gb-be2026.json @@ -0,0 +1,44 @@ +{ + "slug": "nord-n10-5g-td-lte-na-128gb-be2026", + "name": "Nord N10 5G TD-LTE NA 128GB BE2026", + "brand": "oneplus", + "soc": "snapdragon-690", + "release_date": "2021-01-14", + "ram_gb": 6.0, + "battery_mah": 4300, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.49, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 406 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 389, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/oneplus/2021/nord-n10-5g-td-lte-us-128gb-be2028.json b/data/smartphone/oneplus/2021/nord-n10-5g-td-lte-us-128gb-be2028.json new file mode 100644 index 00000000000..4ef2fd3141d --- /dev/null +++ b/data/smartphone/oneplus/2021/nord-n10-5g-td-lte-us-128gb-be2028.json @@ -0,0 +1,44 @@ +{ + "slug": "nord-n10-5g-td-lte-us-128gb-be2028", + "name": "Nord N10 5G TD-LTE US 128GB BE2028", + "brand": "oneplus", + "soc": "snapdragon-690", + "release_date": "2021-01-14", + "ram_gb": 6.0, + "battery_mah": 4300, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.49, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 406 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 300, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/oneplus/2021/nord-n100-td-lte-na-64gb-be2011.json b/data/smartphone/oneplus/2021/nord-n100-td-lte-na-64gb-be2011.json new file mode 100644 index 00000000000..703ad0b0fe7 --- /dev/null +++ b/data/smartphone/oneplus/2021/nord-n100-td-lte-na-64gb-be2011.json @@ -0,0 +1,43 @@ +{ + "slug": "nord-n100-td-lte-na-64gb-be2011", + "name": "Nord N100 TD-LTE NA 64GB BE2011", + "brand": "oneplus", + "soc": "snapdragon-460", + "release_date": "2021-01-14", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 4889, + "market_countries": "Canada , Mexico , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/oneplus/2021/nord-n100-td-lte-us-64gb-be2015.json b/data/smartphone/oneplus/2021/nord-n100-td-lte-us-64gb-be2015.json new file mode 100644 index 00000000000..624d0f0606c --- /dev/null +++ b/data/smartphone/oneplus/2021/nord-n100-td-lte-us-64gb-be2015.json @@ -0,0 +1,43 @@ +{ + "slug": "nord-n100-td-lte-us-64gb-be2015", + "name": "Nord N100 TD-LTE US 64GB BE2015", + "brand": "oneplus", + "soc": "snapdragon-460", + "release_date": "2021-01-14", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 180, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/oneplus/2021/nord-n200-5g-td-lte-na-64gb-de2117.json b/data/smartphone/oneplus/2021/nord-n200-5g-td-lte-na-64gb-de2117.json new file mode 100644 index 00000000000..fb0158ccb7a --- /dev/null +++ b/data/smartphone/oneplus/2021/nord-n200-5g-td-lte-na-64gb-de2117.json @@ -0,0 +1,44 @@ +{ + "slug": "nord-n200-5g-td-lte-na-64gb-de2117", + "name": "Nord N200 5G TD-LTE NA 64GB DE2117", + "brand": "oneplus", + "soc": "snapdragon-480", + "release_date": "2021-06-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.49, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 406 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 240, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/oneplus/2021/nord-n200-5g-td-lte-us-64gb-de2118.json b/data/smartphone/oneplus/2021/nord-n200-5g-td-lte-us-64gb-de2118.json new file mode 100644 index 00000000000..529b1f4a8c8 --- /dev/null +++ b/data/smartphone/oneplus/2021/nord-n200-5g-td-lte-us-64gb-de2118.json @@ -0,0 +1,44 @@ +{ + "slug": "nord-n200-5g-td-lte-us-64gb-de2118", + "name": "Nord N200 5G TD-LTE US 64GB DE2118", + "brand": "oneplus", + "soc": "snapdragon-480", + "release_date": "2021-06-18", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.49, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 406 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 216, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/oneplus/2021/nord-n200.json b/data/smartphone/oneplus/2021/nord-n200.json new file mode 100644 index 00000000000..754e6c20c56 --- /dev/null +++ b/data/smartphone/oneplus/2021/nord-n200.json @@ -0,0 +1,32 @@ +{ + "slug": "nord-n200", + "name": "Nord N200", + "brand": "oneplus", + "soc": "snapdragon-480", + "release_date": "2021-01-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.49 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "msrp_usd": 199 +} diff --git a/data/smartphone/oneplus/2022/10t-5g.json b/data/smartphone/oneplus/2022/10t-5g.json new file mode 100644 index 00000000000..00dd50c2872 --- /dev/null +++ b/data/smartphone/oneplus/2022/10t-5g.json @@ -0,0 +1,32 @@ +{ + "slug": "10t-5g", + "name": "10T 5G", + "brand": "oneplus", + "soc": "snapdragon-8-plus-gen-1", + "release_date": "2022-01-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 203.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7 + }, + "cameras": [ + { + "type": "main", + "mp": 50.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "msrp_usd": 749 +} diff --git a/data/smartphone/oneplus/2022/9rt-5g-premium-edition-dual-sim-td-lte-in-256gb-mt2111.json b/data/smartphone/oneplus/2022/9rt-5g-premium-edition-dual-sim-td-lte-in-256gb-mt2111.json new file mode 100644 index 00000000000..94e1c978053 --- /dev/null +++ b/data/smartphone/oneplus/2022/9rt-5g-premium-edition-dual-sim-td-lte-in-256gb-mt2111.json @@ -0,0 +1,43 @@ +{ + "slug": "9rt-5g-premium-edition-dual-sim-td-lte-in-256gb-mt2111", + "name": "9RT 5G Premium Edition Dual SIM TD-LTE IN 256GB MT2111", + "brand": "oneplus", + "soc": "snapdragon-888", + "release_date": "2022-01-16", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 198.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2022/9rt-5g-standard-edition-dual-sim-td-lte-in-128gb-mt2111.json b/data/smartphone/oneplus/2022/9rt-5g-standard-edition-dual-sim-td-lte-in-128gb-mt2111.json new file mode 100644 index 00000000000..8f5de1de358 --- /dev/null +++ b/data/smartphone/oneplus/2022/9rt-5g-standard-edition-dual-sim-td-lte-in-128gb-mt2111.json @@ -0,0 +1,43 @@ +{ + "slug": "9rt-5g-standard-edition-dual-sim-td-lte-in-128gb-mt2111", + "name": "9RT 5G Standard Edition Dual SIM TD-LTE IN 128GB MT2111", + "brand": "oneplus", + "soc": "snapdragon-888", + "release_date": "2022-01-16", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 198.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oneplus/2023/nord-3.json b/data/smartphone/oneplus/2023/nord-3.json new file mode 100644 index 00000000000..a6306709f73 --- /dev/null +++ b/data/smartphone/oneplus/2023/nord-3.json @@ -0,0 +1,32 @@ +{ + "slug": "nord-3", + "name": "Nord 3", + "brand": "oneplus", + "soc": "dimensity-9000", + "release_date": "2023-01-01", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.74 + }, + "cameras": [ + { + "type": "main", + "mp": 50.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "msrp_usd": 499 +} diff --git a/data/smartphone/oneplus/2023/nord-ce-3-lite.json b/data/smartphone/oneplus/2023/nord-ce-3-lite.json new file mode 100644 index 00000000000..4b8680b92c4 --- /dev/null +++ b/data/smartphone/oneplus/2023/nord-ce-3-lite.json @@ -0,0 +1,32 @@ +{ + "slug": "nord-ce-3-lite", + "name": "Nord CE 3 Lite", + "brand": "oneplus", + "soc": "snapdragon-695", + "release_date": "2023-01-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.72 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "msrp_usd": 299 +} diff --git a/data/smartphone/oneplus/2024/12.json b/data/smartphone/oneplus/2024/12.json new file mode 100644 index 00000000000..79524f4a243 --- /dev/null +++ b/data/smartphone/oneplus/2024/12.json @@ -0,0 +1,32 @@ +{ + "slug": "12", + "name": "12", + "brand": "oneplus", + "soc": "snapdragon-8-gen-3", + "release_date": "2024-01-01", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7 + }, + "cameras": [ + { + "type": "main", + "mp": 50.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "msrp_usd": 799 +} diff --git a/data/smartphone/oneplus/2024/12r.json b/data/smartphone/oneplus/2024/12r.json new file mode 100644 index 00000000000..7095d57331a --- /dev/null +++ b/data/smartphone/oneplus/2024/12r.json @@ -0,0 +1,32 @@ +{ + "slug": "12r", + "name": "12R", + "brand": "oneplus", + "soc": "snapdragon-8-gen-2", + "release_date": "2024-01-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 203.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7 + }, + "cameras": [ + { + "type": "main", + "mp": 50.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "msrp_usd": 699 +} diff --git a/data/smartphone/oneplus/2024/open.json b/data/smartphone/oneplus/2024/open.json new file mode 100644 index 00000000000..67a6935e95e --- /dev/null +++ b/data/smartphone/oneplus/2024/open.json @@ -0,0 +1,32 @@ +{ + "slug": "open", + "name": "Open", + "brand": "oneplus", + "soc": "snapdragon-8-gen-2", + "release_date": "2024-01-01", + "ram_gb": 16.0, + "battery_mah": 4800, + "weight_g": 238.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 7.8 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "msrp_usd": 1099 +} diff --git a/data/smartphone/oppo/2016/a37-dual-sim-td-lte-emea.json b/data/smartphone/oppo/2016/a37-dual-sim-td-lte-emea.json new file mode 100644 index 00000000000..b697aa1e52b --- /dev/null +++ b/data/smartphone/oppo/2016/a37-dual-sim-td-lte-emea.json @@ -0,0 +1,41 @@ +{ + "slug": "a37-dual-sim-td-lte-emea", + "name": "A37 Dual SIM TD-LTE EMEA", + "brand": "oppo", + "soc": "snapdragon-410", + "release_date": "2016-06-01", + "ram_gb": 2.0, + "battery_mah": 2630, + "weight_g": 136.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "5.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Kenya , UAE", + "market_regions": "Asia , Middle East" +} diff --git a/data/smartphone/oppo/2016/a37-dual-sim-td-lte-in-kz.json b/data/smartphone/oppo/2016/a37-dual-sim-td-lte-in-kz.json new file mode 100644 index 00000000000..b3810b8bd85 --- /dev/null +++ b/data/smartphone/oppo/2016/a37-dual-sim-td-lte-in-kz.json @@ -0,0 +1,41 @@ +{ + "slug": "a37-dual-sim-td-lte-in-kz", + "name": "A37 Dual SIM TD-LTE IN KZ", + "brand": "oppo", + "soc": "snapdragon-410", + "release_date": "2016-06-01", + "ram_gb": 2.0, + "battery_mah": 2630, + "weight_g": 136.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "5.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Armenia , India , Kazakhstan , Myanmar", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2016/a37-dual-sim-td-lte-sg.json b/data/smartphone/oppo/2016/a37-dual-sim-td-lte-sg.json new file mode 100644 index 00000000000..f6b04147c52 --- /dev/null +++ b/data/smartphone/oppo/2016/a37-dual-sim-td-lte-sg.json @@ -0,0 +1,41 @@ +{ + "slug": "a37-dual-sim-td-lte-sg", + "name": "A37 Dual SIM TD-LTE SG", + "brand": "oppo", + "soc": "snapdragon-410", + "release_date": "2016-06-01", + "ram_gb": 2.0, + "battery_mah": 2630, + "weight_g": 136.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "5.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Singapore", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2017/f5-dual-sim-td-lte-in-th-version-1-32gb-cph1727.json b/data/smartphone/oppo/2017/f5-dual-sim-td-lte-in-th-version-1-32gb-cph1727.json new file mode 100644 index 00000000000..22624190246 --- /dev/null +++ b/data/smartphone/oppo/2017/f5-dual-sim-td-lte-in-th-version-1-32gb-cph1727.json @@ -0,0 +1,41 @@ +{ + "slug": "f5-dual-sim-td-lte-in-th-version-1-32gb-cph1727", + "name": "F5 Dual SIM TD-LTE IN TH Version 1 32GB CPH1727", + "brand": "oppo", + "soc": "helio-p23", + "release_date": "2017-11-08", + "ram_gb": 4.0, + "battery_mah": 3200, + "weight_g": 152.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color ASV TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/a1-dual-sim-td-lte-cn-a83.json b/data/smartphone/oppo/2018/a1-dual-sim-td-lte-cn-a83.json new file mode 100644 index 00000000000..c220231fbf7 --- /dev/null +++ b/data/smartphone/oppo/2018/a1-dual-sim-td-lte-cn-a83.json @@ -0,0 +1,41 @@ +{ + "slug": "a1-dual-sim-td-lte-cn-a83", + "name": "A1 Dual SIM TD-LTE CN / A83", + "brand": "oppo", + "soc": "helio-p23", + "release_date": "2018-04-02", + "ram_gb": 4.0, + "battery_mah": 3180, + "weight_g": 143.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/a3-dual-sim-td-lte-apac-cph1837.json b/data/smartphone/oppo/2018/a3-dual-sim-td-lte-apac-cph1837.json new file mode 100644 index 00000000000..921433b87e5 --- /dev/null +++ b/data/smartphone/oppo/2018/a3-dual-sim-td-lte-apac-cph1837.json @@ -0,0 +1,41 @@ +{ + "slug": "a3-dual-sim-td-lte-apac-cph1837", + "name": "A3 Dual SIM TD-LTE APAC CPH1837", + "brand": "oppo", + "soc": "helio-p60", + "release_date": "2018-06-23", + "ram_gb": 4.0, + "battery_mah": 3400, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Taiwan", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2018/a3-dual-sim-td-lte-cn-padm00.json b/data/smartphone/oppo/2018/a3-dual-sim-td-lte-cn-padm00.json new file mode 100644 index 00000000000..3825049f304 --- /dev/null +++ b/data/smartphone/oppo/2018/a3-dual-sim-td-lte-cn-padm00.json @@ -0,0 +1,41 @@ +{ + "slug": "a3-dual-sim-td-lte-cn-padm00", + "name": "A3 Dual SIM TD-LTE CN PADM00", + "brand": "oppo", + "soc": "helio-p60", + "release_date": "2018-04-01", + "ram_gb": 4.0, + "battery_mah": 3400, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/a3-dual-sim-td-lte-cn-padt00.json b/data/smartphone/oppo/2018/a3-dual-sim-td-lte-cn-padt00.json new file mode 100644 index 00000000000..07a2f181de2 --- /dev/null +++ b/data/smartphone/oppo/2018/a3-dual-sim-td-lte-cn-padt00.json @@ -0,0 +1,41 @@ +{ + "slug": "a3-dual-sim-td-lte-cn-padt00", + "name": "A3 Dual SIM TD-LTE CN PADT00", + "brand": "oppo", + "soc": "helio-p60", + "release_date": "2018-04-01", + "ram_gb": 4.0, + "battery_mah": 3400, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/a3s-dual-sim-td-lte-in-id-th-pk-np-sg-version-3-16gb-cph1803.json b/data/smartphone/oppo/2018/a3s-dual-sim-td-lte-in-id-th-pk-np-sg-version-3-16gb-cph1803.json new file mode 100644 index 00000000000..332979cb012 --- /dev/null +++ b/data/smartphone/oppo/2018/a3s-dual-sim-td-lte-in-id-th-pk-np-sg-version-3-16gb-cph1803.json @@ -0,0 +1,41 @@ +{ + "slug": "a3s-dual-sim-td-lte-in-id-th-pk-np-sg-version-3-16gb-cph1803", + "name": "A3s Dual SIM TD-LTE IN ID TH PK NP SG Version 3 16GB CPH1803", + "brand": "oppo", + "soc": "snapdragon-450", + "release_date": "2018-07-01", + "ram_gb": 2.0, + "battery_mah": 4230, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , India , Indonesia , Nepal , Pakistan , Singapore , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/a3s-dual-sim-td-lte-in-id-th-pk-np-sg-version-3-32gb-cph1805.json b/data/smartphone/oppo/2018/a3s-dual-sim-td-lte-in-id-th-pk-np-sg-version-3-32gb-cph1805.json new file mode 100644 index 00000000000..f72ea728e21 --- /dev/null +++ b/data/smartphone/oppo/2018/a3s-dual-sim-td-lte-in-id-th-pk-np-sg-version-3-32gb-cph1805.json @@ -0,0 +1,41 @@ +{ + "slug": "a3s-dual-sim-td-lte-in-id-th-pk-np-sg-version-3-32gb-cph1805", + "name": "A3s Dual SIM TD-LTE IN ID TH PK NP SG Version 3 32GB CPH1805", + "brand": "oppo", + "soc": "snapdragon-450", + "release_date": "2018-07-01", + "ram_gb": 3.0, + "battery_mah": 4230, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , India , Indonesia , Nepal , Pakistan , Singapore , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/a3s-dual-sim-td-lte-ph-my-version-1-16gb-cph1803.json b/data/smartphone/oppo/2018/a3s-dual-sim-td-lte-ph-my-version-1-16gb-cph1803.json new file mode 100644 index 00000000000..ce7fcd43984 --- /dev/null +++ b/data/smartphone/oppo/2018/a3s-dual-sim-td-lte-ph-my-version-1-16gb-cph1803.json @@ -0,0 +1,41 @@ +{ + "slug": "a3s-dual-sim-td-lte-ph-my-version-1-16gb-cph1803", + "name": "A3s Dual SIM TD-LTE PH MY Version 1 16GB CPH1803", + "brand": "oppo", + "soc": "snapdragon-450", + "release_date": "2018-07-01", + "ram_gb": 2.0, + "battery_mah": 4230, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Malaysia , Philippines", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/a3s-dual-sim-td-lte-vn-version-2-16gb-cph1803-a2-pro.json b/data/smartphone/oppo/2018/a3s-dual-sim-td-lte-vn-version-2-16gb-cph1803-a2-pro.json new file mode 100644 index 00000000000..3c982c89390 --- /dev/null +++ b/data/smartphone/oppo/2018/a3s-dual-sim-td-lte-vn-version-2-16gb-cph1803-a2-pro.json @@ -0,0 +1,41 @@ +{ + "slug": "a3s-dual-sim-td-lte-vn-version-2-16gb-cph1803-a2-pro", + "name": "A3s Dual SIM TD-LTE VN Version 2 16GB CPH1803 / A2 Pro", + "brand": "oppo", + "soc": "snapdragon-450", + "release_date": "2018-07-01", + "ram_gb": 2.0, + "battery_mah": 4230, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/a5-dual-sim-td-lte-in-pk-bd-32gb-cph1809.json b/data/smartphone/oppo/2018/a5-dual-sim-td-lte-in-pk-bd-32gb-cph1809.json new file mode 100644 index 00000000000..57734e6bb43 --- /dev/null +++ b/data/smartphone/oppo/2018/a5-dual-sim-td-lte-in-pk-bd-32gb-cph1809.json @@ -0,0 +1,41 @@ +{ + "slug": "a5-dual-sim-td-lte-in-pk-bd-32gb-cph1809", + "name": "A5 Dual SIM TD-LTE IN PK BD 32GB CPH1809", + "brand": "oppo", + "soc": "snapdragon-450", + "release_date": "2018-08-01", + "ram_gb": 4.0, + "battery_mah": 4230, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , India , Pakistan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/a5-premium-edition-dual-sim-td-lte-cn-pbam00.json b/data/smartphone/oppo/2018/a5-premium-edition-dual-sim-td-lte-cn-pbam00.json new file mode 100644 index 00000000000..6a7294e24cc --- /dev/null +++ b/data/smartphone/oppo/2018/a5-premium-edition-dual-sim-td-lte-cn-pbam00.json @@ -0,0 +1,41 @@ +{ + "slug": "a5-premium-edition-dual-sim-td-lte-cn-pbam00", + "name": "A5 Premium Edition Dual SIM TD-LTE CN PBAM00", + "brand": "oppo", + "soc": "snapdragon-450", + "release_date": "2018-07-13", + "ram_gb": 4.0, + "battery_mah": 4230, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color TN-TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2018/a5-premium-edition-dual-sim-td-lte-cn-pbat00.json b/data/smartphone/oppo/2018/a5-premium-edition-dual-sim-td-lte-cn-pbat00.json new file mode 100644 index 00000000000..b472806ef7e --- /dev/null +++ b/data/smartphone/oppo/2018/a5-premium-edition-dual-sim-td-lte-cn-pbat00.json @@ -0,0 +1,41 @@ +{ + "slug": "a5-premium-edition-dual-sim-td-lte-cn-pbat00", + "name": "A5 Premium Edition Dual SIM TD-LTE CN PBAT00", + "brand": "oppo", + "soc": "snapdragon-450", + "release_date": "2018-07-13", + "ram_gb": 4.0, + "battery_mah": 4230, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color TN-TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/a5-standard-edition-dual-sim-td-lte-cn-pbam00.json b/data/smartphone/oppo/2018/a5-standard-edition-dual-sim-td-lte-cn-pbam00.json new file mode 100644 index 00000000000..3a6c08755e5 --- /dev/null +++ b/data/smartphone/oppo/2018/a5-standard-edition-dual-sim-td-lte-cn-pbam00.json @@ -0,0 +1,41 @@ +{ + "slug": "a5-standard-edition-dual-sim-td-lte-cn-pbam00", + "name": "A5 Standard Edition Dual SIM TD-LTE CN PBAM00", + "brand": "oppo", + "soc": "snapdragon-450", + "release_date": "2018-07-13", + "ram_gb": 3.0, + "battery_mah": 4230, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color TN-TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2018/a7-dual-sim-td-lte-cn-64gb-pbfm00.json b/data/smartphone/oppo/2018/a7-dual-sim-td-lte-cn-64gb-pbfm00.json new file mode 100644 index 00000000000..819b97839a7 --- /dev/null +++ b/data/smartphone/oppo/2018/a7-dual-sim-td-lte-cn-64gb-pbfm00.json @@ -0,0 +1,41 @@ +{ + "slug": "a7-dual-sim-td-lte-cn-64gb-pbfm00", + "name": "A7 Dual SIM TD-LTE CN 64GB PBFM00", + "brand": "oppo", + "soc": "snapdragon-450", + "release_date": "2018-11-22", + "ram_gb": 4.0, + "battery_mah": 4230, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.18, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 272 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2018/a7-dual-sim-td-lte-pk-np-32gb-cph1901.json b/data/smartphone/oppo/2018/a7-dual-sim-td-lte-pk-np-32gb-cph1901.json new file mode 100644 index 00000000000..b9d7671bc4a --- /dev/null +++ b/data/smartphone/oppo/2018/a7-dual-sim-td-lte-pk-np-32gb-cph1901.json @@ -0,0 +1,41 @@ +{ + "slug": "a7-dual-sim-td-lte-pk-np-32gb-cph1901", + "name": "A7 Dual SIM TD-LTE PK NP 32GB CPH1901", + "brand": "oppo", + "soc": "snapdragon-450", + "release_date": "2018-11-22", + "ram_gb": 4.0, + "battery_mah": 4230, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.18, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 272 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Nepal , Pakistan", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2018/a73s-dual-sim-td-lte-tw-cph1859-f7-youth.json b/data/smartphone/oppo/2018/a73s-dual-sim-td-lte-tw-cph1859-f7-youth.json new file mode 100644 index 00000000000..0efc18b670c --- /dev/null +++ b/data/smartphone/oppo/2018/a73s-dual-sim-td-lte-tw-cph1859-f7-youth.json @@ -0,0 +1,41 @@ +{ + "slug": "a73s-dual-sim-td-lte-tw-cph1859-f7-youth", + "name": "A73s Dual SIM TD-LTE TW CPH1859 / F7 Youth", + "brand": "oppo", + "soc": "helio-p60", + "release_date": "2018-06-28", + "ram_gb": 4.0, + "battery_mah": 3410, + "weight_g": 155.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Taiwan", + "market_regions": "Asia , Oceania" +} diff --git a/data/smartphone/oppo/2018/a7x-dual-sim-td-lte-cn-128gb-pbbm00.json b/data/smartphone/oppo/2018/a7x-dual-sim-td-lte-cn-128gb-pbbm00.json new file mode 100644 index 00000000000..8a8bc725ce7 --- /dev/null +++ b/data/smartphone/oppo/2018/a7x-dual-sim-td-lte-cn-128gb-pbbm00.json @@ -0,0 +1,41 @@ +{ + "slug": "a7x-dual-sim-td-lte-cn-128gb-pbbm00", + "name": "A7x Dual SIM TD-LTE CN 128GB PBBM00", + "brand": "oppo", + "soc": "helio-p60", + "release_date": "2018-09-01", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color TN-TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/a7x-dual-sim-td-lte-cn-64gb-pbbm00.json b/data/smartphone/oppo/2018/a7x-dual-sim-td-lte-cn-64gb-pbbm00.json new file mode 100644 index 00000000000..602091fbdeb --- /dev/null +++ b/data/smartphone/oppo/2018/a7x-dual-sim-td-lte-cn-64gb-pbbm00.json @@ -0,0 +1,41 @@ +{ + "slug": "a7x-dual-sim-td-lte-cn-64gb-pbbm00", + "name": "A7x Dual SIM TD-LTE CN 64GB PBBM00", + "brand": "oppo", + "soc": "helio-p60", + "release_date": "2018-09-01", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color TN-TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/a7x-dual-sim-td-lte-cn-64gb-pbbt00.json b/data/smartphone/oppo/2018/a7x-dual-sim-td-lte-cn-64gb-pbbt00.json new file mode 100644 index 00000000000..ac0e0bbe524 --- /dev/null +++ b/data/smartphone/oppo/2018/a7x-dual-sim-td-lte-cn-64gb-pbbt00.json @@ -0,0 +1,41 @@ +{ + "slug": "a7x-dual-sim-td-lte-cn-64gb-pbbt00", + "name": "A7x Dual SIM TD-LTE CN 64GB PBBT00", + "brand": "oppo", + "soc": "helio-p60", + "release_date": "2018-09-01", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color TN-TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/a83-2018-dual-sim-td-lte-in-id-th-16gb.json b/data/smartphone/oppo/2018/a83-2018-dual-sim-td-lte-in-id-th-16gb.json new file mode 100644 index 00000000000..34c7fae9b1b --- /dev/null +++ b/data/smartphone/oppo/2018/a83-2018-dual-sim-td-lte-in-id-th-16gb.json @@ -0,0 +1,41 @@ +{ + "slug": "a83-2018-dual-sim-td-lte-in-id-th-16gb", + "name": "A83 2018 Dual SIM TD-LTE IN ID TH 16GB", + "brand": "oppo", + "soc": "helio-p23", + "release_date": "2018-03-01", + "ram_gb": 2.0, + "battery_mah": 3180, + "weight_g": 143.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Indonesia , Thailand", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2018/a83-2018-dual-sim-td-lte-in-id-th-64gb.json b/data/smartphone/oppo/2018/a83-2018-dual-sim-td-lte-in-id-th-64gb.json new file mode 100644 index 00000000000..679e26b7ff0 --- /dev/null +++ b/data/smartphone/oppo/2018/a83-2018-dual-sim-td-lte-in-id-th-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "a83-2018-dual-sim-td-lte-in-id-th-64gb", + "name": "A83 2018 Dual SIM TD-LTE IN ID TH 64GB", + "brand": "oppo", + "soc": "helio-p23", + "release_date": "2018-01-21", + "ram_gb": 4.0, + "battery_mah": 3180, + "weight_g": 143.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Indonesia , Thailand", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2018/a83-dual-sim-td-lte-my-vn-eg-pk.json b/data/smartphone/oppo/2018/a83-dual-sim-td-lte-my-vn-eg-pk.json new file mode 100644 index 00000000000..86e120da175 --- /dev/null +++ b/data/smartphone/oppo/2018/a83-dual-sim-td-lte-my-vn-eg-pk.json @@ -0,0 +1,41 @@ +{ + "slug": "a83-dual-sim-td-lte-my-vn-eg-pk", + "name": "A83 Dual SIM TD-LTE MY VN EG PK", + "brand": "oppo", + "soc": "helio-p23", + "release_date": "2018-01-21", + "ram_gb": 3.0, + "battery_mah": 3180, + "weight_g": 143.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Algeria , Egypt , Malaysia , Myanmar , Pakistan , Sri Lanka , Vietnam", + "market_regions": "Africa , Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/a83-dual-sim-td-lte-ru-kz-ph-ke.json b/data/smartphone/oppo/2018/a83-dual-sim-td-lte-ru-kz-ph-ke.json new file mode 100644 index 00000000000..538c8461da6 --- /dev/null +++ b/data/smartphone/oppo/2018/a83-dual-sim-td-lte-ru-kz-ph-ke.json @@ -0,0 +1,41 @@ +{ + "slug": "a83-dual-sim-td-lte-ru-kz-ph-ke", + "name": "A83 Dual SIM TD-LTE RU KZ PH KE", + "brand": "oppo", + "soc": "helio-p23", + "release_date": "2018-01-21", + "ram_gb": 3.0, + "battery_mah": 3180, + "weight_g": 143.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Armenia , Kazakhstan , Kenya , Philippines , Russia , UAE", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Oceania" +} diff --git a/data/smartphone/oppo/2018/ax5-dual-sim-td-lte-tw-cph1851.json b/data/smartphone/oppo/2018/ax5-dual-sim-td-lte-tw-cph1851.json new file mode 100644 index 00000000000..288118f06c1 --- /dev/null +++ b/data/smartphone/oppo/2018/ax5-dual-sim-td-lte-tw-cph1851.json @@ -0,0 +1,41 @@ +{ + "slug": "ax5-dual-sim-td-lte-tw-cph1851", + "name": "AX5 Dual SIM TD-LTE TW CPH1851", + "brand": "oppo", + "soc": "snapdragon-450", + "release_date": "2018-08-28", + "ram_gb": 3.0, + "battery_mah": 4230, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Taiwan", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2018/ax7-dual-sim-td-lte-jp-64gb-cph1903.json b/data/smartphone/oppo/2018/ax7-dual-sim-td-lte-jp-64gb-cph1903.json new file mode 100644 index 00000000000..fb501d9aee9 --- /dev/null +++ b/data/smartphone/oppo/2018/ax7-dual-sim-td-lte-jp-64gb-cph1903.json @@ -0,0 +1,41 @@ +{ + "slug": "ax7-dual-sim-td-lte-jp-64gb-cph1903", + "name": "AX7 Dual SIM TD-LTE JP 64GB CPH1903", + "brand": "oppo", + "soc": "snapdragon-450", + "release_date": "2018-12-14", + "ram_gb": 4.0, + "battery_mah": 4230, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.18, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 272 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2018/ax7-global-dual-sim-td-lte-64gb-cph1903.json b/data/smartphone/oppo/2018/ax7-global-dual-sim-td-lte-64gb-cph1903.json new file mode 100644 index 00000000000..d3ea8d29c15 --- /dev/null +++ b/data/smartphone/oppo/2018/ax7-global-dual-sim-td-lte-64gb-cph1903.json @@ -0,0 +1,41 @@ +{ + "slug": "ax7-global-dual-sim-td-lte-64gb-cph1903", + "name": "AX7 Global Dual SIM TD-LTE 64GB CPH1903", + "brand": "oppo", + "soc": "snapdragon-450", + "release_date": "2018-12-14", + "ram_gb": 4.0, + "battery_mah": 4230, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.18, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 272 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , NZ , Philippines , Taiwan , UAE", + "market_regions": "Asia , Australia , Middle East , Oceania" +} diff --git a/data/smartphone/oppo/2018/f7-diamond-black-edition-dual-sim-td-lte-in-id-th-pk-version-1-128gb-cph1821.json b/data/smartphone/oppo/2018/f7-diamond-black-edition-dual-sim-td-lte-in-id-th-pk-version-1-128gb-cph1821.json new file mode 100644 index 00000000000..076da9eb7e6 --- /dev/null +++ b/data/smartphone/oppo/2018/f7-diamond-black-edition-dual-sim-td-lte-in-id-th-pk-version-1-128gb-cph1821.json @@ -0,0 +1,41 @@ +{ + "slug": "f7-diamond-black-edition-dual-sim-td-lte-in-id-th-pk-version-1-128gb-cph1821", + "name": "F7 Diamond Black Edition Dual SIM TD-LTE IN ID TH PK Version 1 128GB CPH1821", + "brand": "oppo", + "soc": "helio-p60", + "release_date": "2018-04-21", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 158.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.23, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Indonesia , Pakistan , Sri Lanka , Thailand", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2018/f7-dual-sim-td-lte-ae-ph-my-version-3-128gb-cph1821.json b/data/smartphone/oppo/2018/f7-dual-sim-td-lte-ae-ph-my-version-3-128gb-cph1821.json new file mode 100644 index 00000000000..bc7a8f4b986 --- /dev/null +++ b/data/smartphone/oppo/2018/f7-dual-sim-td-lte-ae-ph-my-version-3-128gb-cph1821.json @@ -0,0 +1,41 @@ +{ + "slug": "f7-dual-sim-td-lte-ae-ph-my-version-3-128gb-cph1821", + "name": "F7 Dual SIM TD-LTE AE PH MY Version 3 128GB CPH1821", + "brand": "oppo", + "soc": "helio-p60", + "release_date": "2018-04-22", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 158.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.23, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Malaysia , Philippines , UAE , Vietnam", + "market_regions": "Asia , Middle East , Oceania , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/f7-dual-sim-td-lte-in-id-th-pk-version-1-64gb-cph1819.json b/data/smartphone/oppo/2018/f7-dual-sim-td-lte-in-id-th-pk-version-1-64gb-cph1819.json new file mode 100644 index 00000000000..32a82eef39a --- /dev/null +++ b/data/smartphone/oppo/2018/f7-dual-sim-td-lte-in-id-th-pk-version-1-64gb-cph1819.json @@ -0,0 +1,41 @@ +{ + "slug": "f7-dual-sim-td-lte-in-id-th-pk-version-1-64gb-cph1819", + "name": "F7 Dual SIM TD-LTE IN ID TH PK Version 1 64GB CPH1819", + "brand": "oppo", + "soc": "helio-p60", + "release_date": "2018-04-09", + "ram_gb": 4.0, + "battery_mah": 3400, + "weight_g": 158.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.23, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Indonesia , Pakistan , Sri Lanka , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/f7-dual-sim-td-lte-my-version-2-64gb-cph1819.json b/data/smartphone/oppo/2018/f7-dual-sim-td-lte-my-version-2-64gb-cph1819.json new file mode 100644 index 00000000000..cc3a97ce628 --- /dev/null +++ b/data/smartphone/oppo/2018/f7-dual-sim-td-lte-my-version-2-64gb-cph1819.json @@ -0,0 +1,41 @@ +{ + "slug": "f7-dual-sim-td-lte-my-version-2-64gb-cph1819", + "name": "F7 Dual SIM TD-LTE MY Version 2 64GB CPH1819", + "brand": "oppo", + "soc": "helio-p60", + "release_date": "2018-04-22", + "ram_gb": 4.0, + "battery_mah": 3400, + "weight_g": 158.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.23, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Malaysia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/f7-dual-sim-td-lte-ru-ae-ph-version-3-64gb-cph1819.json b/data/smartphone/oppo/2018/f7-dual-sim-td-lte-ru-ae-ph-version-3-64gb-cph1819.json new file mode 100644 index 00000000000..3466346c82b --- /dev/null +++ b/data/smartphone/oppo/2018/f7-dual-sim-td-lte-ru-ae-ph-version-3-64gb-cph1819.json @@ -0,0 +1,41 @@ +{ + "slug": "f7-dual-sim-td-lte-ru-ae-ph-version-3-64gb-cph1819", + "name": "F7 Dual SIM TD-LTE RU AE PH Version 3 64GB CPH1819", + "brand": "oppo", + "soc": "helio-p60", + "release_date": "2018-04-22", + "ram_gb": 4.0, + "battery_mah": 3400, + "weight_g": 158.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.23, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Philippines , Russia , UAE", + "market_regions": "Asia , Eastern Europe , Middle East , Oceania" +} diff --git a/data/smartphone/oppo/2018/f7-youth-edition-dual-sim-td-lte-in-id-my-vn-cph1859.json b/data/smartphone/oppo/2018/f7-youth-edition-dual-sim-td-lte-in-id-my-vn-cph1859.json new file mode 100644 index 00000000000..50a4ccbc8c4 --- /dev/null +++ b/data/smartphone/oppo/2018/f7-youth-edition-dual-sim-td-lte-in-id-my-vn-cph1859.json @@ -0,0 +1,41 @@ +{ + "slug": "f7-youth-edition-dual-sim-td-lte-in-id-my-vn-cph1859", + "name": "F7 Youth Edition Dual SIM TD-LTE IN ID MY VN CPH1859", + "brand": "oppo", + "soc": "helio-p60", + "release_date": "2018-05-31", + "ram_gb": 4.0, + "battery_mah": 3410, + "weight_g": 155.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Indonesia , Malaysia , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/f7-youth-edition-dual-sim-td-lte-ph-cph1859.json b/data/smartphone/oppo/2018/f7-youth-edition-dual-sim-td-lte-ph-cph1859.json new file mode 100644 index 00000000000..a8f7c6a8fad --- /dev/null +++ b/data/smartphone/oppo/2018/f7-youth-edition-dual-sim-td-lte-ph-cph1859.json @@ -0,0 +1,41 @@ +{ + "slug": "f7-youth-edition-dual-sim-td-lte-ph-cph1859", + "name": "F7 Youth Edition Dual SIM TD-LTE PH CPH1859", + "brand": "oppo", + "soc": "helio-p60", + "release_date": "2018-05-28", + "ram_gb": 4.0, + "battery_mah": 3410, + "weight_g": 155.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Philippines", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/f9-premium-edition-dual-sim-td-lte-my-version-2-64gb-cph1823.json b/data/smartphone/oppo/2018/f9-premium-edition-dual-sim-td-lte-my-version-2-64gb-cph1823.json new file mode 100644 index 00000000000..e693f382163 --- /dev/null +++ b/data/smartphone/oppo/2018/f9-premium-edition-dual-sim-td-lte-my-version-2-64gb-cph1823.json @@ -0,0 +1,41 @@ +{ + "slug": "f9-premium-edition-dual-sim-td-lte-my-version-2-64gb-cph1823", + "name": "F9 Premium Edition Dual SIM TD-LTE MY Version 2 64GB CPH1823", + "brand": "oppo", + "soc": "helio-p60", + "release_date": "2018-08-24", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color TN-TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Philippines , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/f9-premium-edition-dual-sim-td-lte-vn-ph-version-1-64gb-cph1823.json b/data/smartphone/oppo/2018/f9-premium-edition-dual-sim-td-lte-vn-ph-version-1-64gb-cph1823.json new file mode 100644 index 00000000000..e1f0fa0d00c --- /dev/null +++ b/data/smartphone/oppo/2018/f9-premium-edition-dual-sim-td-lte-vn-ph-version-1-64gb-cph1823.json @@ -0,0 +1,41 @@ +{ + "slug": "f9-premium-edition-dual-sim-td-lte-vn-ph-version-1-64gb-cph1823", + "name": "F9 Premium Edition Dual SIM TD-LTE VN PH Version 1 64GB CPH1823", + "brand": "oppo", + "soc": "helio-p60", + "release_date": "2018-08-24", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color TN-TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Philippines , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/f9-pro-dual-sim-td-lte-in-version-3-64gb-cph1823.json b/data/smartphone/oppo/2018/f9-pro-dual-sim-td-lte-in-version-3-64gb-cph1823.json new file mode 100644 index 00000000000..99617908dd9 --- /dev/null +++ b/data/smartphone/oppo/2018/f9-pro-dual-sim-td-lte-in-version-3-64gb-cph1823.json @@ -0,0 +1,41 @@ +{ + "slug": "f9-pro-dual-sim-td-lte-in-version-3-64gb-cph1823", + "name": "F9 Pro Dual SIM TD-LTE IN Version 3 64GB CPH1823", + "brand": "oppo", + "soc": "helio-p60", + "release_date": "2018-08-29", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color TN-TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2018/f9-standard-edition-dual-sim-td-lte-in-id-pk-np-version-3-64gb-cph1825.json b/data/smartphone/oppo/2018/f9-standard-edition-dual-sim-td-lte-in-id-pk-np-version-3-64gb-cph1825.json new file mode 100644 index 00000000000..f4ff253e96f --- /dev/null +++ b/data/smartphone/oppo/2018/f9-standard-edition-dual-sim-td-lte-in-id-pk-np-version-3-64gb-cph1825.json @@ -0,0 +1,41 @@ +{ + "slug": "f9-standard-edition-dual-sim-td-lte-in-id-pk-np-version-3-64gb-cph1825", + "name": "F9 Standard Edition Dual SIM TD-LTE IN ID PK NP Version 3 64GB CPH1825", + "brand": "oppo", + "soc": "helio-p60", + "release_date": "2018-08-29", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color TN-TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , India , Indonesia , Nepal , Pakistan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/find-x-automobili-lamborghini-edition-dual-sim-td-lte-cn-512gb-paft10.json b/data/smartphone/oppo/2018/find-x-automobili-lamborghini-edition-dual-sim-td-lte-cn-512gb-paft10.json new file mode 100644 index 00000000000..3843be34c5b --- /dev/null +++ b/data/smartphone/oppo/2018/find-x-automobili-lamborghini-edition-dual-sim-td-lte-cn-512gb-paft10.json @@ -0,0 +1,42 @@ +{ + "slug": "find-x-automobili-lamborghini-edition-dual-sim-td-lte-cn-512gb-paft10", + "name": "Find X Automobili Lamborghini Edition Dual SIM TD-LTE CN 512GB PAFT10", + "brand": "oppo", + "soc": "snapdragon-845", + "release_date": "2018-07-01", + "ram_gb": 8.0, + "battery_mah": 3400, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "charging_wired_w": 50, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2018/find-x-automobili-lamborghini-edition-global-dual-sim-td-lte-512gb-cph1875-cph1871.json b/data/smartphone/oppo/2018/find-x-automobili-lamborghini-edition-global-dual-sim-td-lte-512gb-cph1875-cph1871.json new file mode 100644 index 00000000000..e6cac71ed81 --- /dev/null +++ b/data/smartphone/oppo/2018/find-x-automobili-lamborghini-edition-global-dual-sim-td-lte-512gb-cph1875-cph1871.json @@ -0,0 +1,42 @@ +{ + "slug": "find-x-automobili-lamborghini-edition-global-dual-sim-td-lte-512gb-cph1875-cph1871", + "name": "Find X Automobili Lamborghini Edition Global Dual SIM TD-LTE 512GB CPH1875 / CPH1871", + "brand": "oppo", + "soc": "snapdragon-845", + "release_date": "2018-11-09", + "ram_gb": 8.0, + "battery_mah": 3400, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "charging_wired_w": 50, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , France , Italy , Japan , Jordan , Kuwait , Malaysia , Netherlands , Poland , Russia , Saudi Arabia , Spain , Switzerland , UAE , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2018/find-x-premium-edition-dual-sim-td-lte-cn-256gb-paft10.json b/data/smartphone/oppo/2018/find-x-premium-edition-dual-sim-td-lte-cn-256gb-paft10.json new file mode 100644 index 00000000000..79d08f0cc2c --- /dev/null +++ b/data/smartphone/oppo/2018/find-x-premium-edition-dual-sim-td-lte-cn-256gb-paft10.json @@ -0,0 +1,42 @@ +{ + "slug": "find-x-premium-edition-dual-sim-td-lte-cn-256gb-paft10", + "name": "Find X Premium Edition Dual SIM TD-LTE CN 256GB PAFT10", + "brand": "oppo", + "soc": "snapdragon-845", + "release_date": "2018-06-29", + "ram_gb": 8.0, + "battery_mah": 3400, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "charging_wired_w": 50, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/find-x-premium-edition-global-dual-sim-td-lte-256gb-cph1875-cph1871.json b/data/smartphone/oppo/2018/find-x-premium-edition-global-dual-sim-td-lte-256gb-cph1875-cph1871.json new file mode 100644 index 00000000000..ce704cbffe1 --- /dev/null +++ b/data/smartphone/oppo/2018/find-x-premium-edition-global-dual-sim-td-lte-256gb-cph1875-cph1871.json @@ -0,0 +1,42 @@ +{ + "slug": "find-x-premium-edition-global-dual-sim-td-lte-256gb-cph1875-cph1871", + "name": "Find X Premium Edition Global Dual SIM TD-LTE 256GB CPH1875 / CPH1871", + "brand": "oppo", + "soc": "snapdragon-845", + "release_date": "2018-09-08", + "ram_gb": 8.0, + "battery_mah": 3400, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "charging_wired_w": 50, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Cambodia , Egypt , France , India , Indonesia , Italy , Japan , Kenya , Malaysia , Netherlands , NZ , Poland , Russia , Saudi Arabia , Singapore , Spain , Switzerland , Taiwan , Thailand , Turkey , UAE , UK , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2018/find-x-standard-edition-dual-sim-td-lte-cn-128gb-pafm00.json b/data/smartphone/oppo/2018/find-x-standard-edition-dual-sim-td-lte-cn-128gb-pafm00.json new file mode 100644 index 00000000000..a5195d9417c --- /dev/null +++ b/data/smartphone/oppo/2018/find-x-standard-edition-dual-sim-td-lte-cn-128gb-pafm00.json @@ -0,0 +1,42 @@ +{ + "slug": "find-x-standard-edition-dual-sim-td-lte-cn-128gb-pafm00", + "name": "Find X Standard Edition Dual SIM TD-LTE CN 128GB PAFM00", + "brand": "oppo", + "soc": "snapdragon-845", + "release_date": "2018-06-29", + "ram_gb": 8.0, + "battery_mah": 3730, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/find-x-standard-edition-dual-sim-td-lte-cn-128gb-paft00.json b/data/smartphone/oppo/2018/find-x-standard-edition-dual-sim-td-lte-cn-128gb-paft00.json new file mode 100644 index 00000000000..e6996652715 --- /dev/null +++ b/data/smartphone/oppo/2018/find-x-standard-edition-dual-sim-td-lte-cn-128gb-paft00.json @@ -0,0 +1,42 @@ +{ + "slug": "find-x-standard-edition-dual-sim-td-lte-cn-128gb-paft00", + "name": "Find X Standard Edition Dual SIM TD-LTE CN 128GB PAFT00", + "brand": "oppo", + "soc": "snapdragon-845", + "release_date": "2018-06-29", + "ram_gb": 8.0, + "battery_mah": 3730, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/find-x-standard-edition-global-dual-sim-td-lte-128gb-cph1871.json b/data/smartphone/oppo/2018/find-x-standard-edition-global-dual-sim-td-lte-128gb-cph1871.json new file mode 100644 index 00000000000..9113f7f6868 --- /dev/null +++ b/data/smartphone/oppo/2018/find-x-standard-edition-global-dual-sim-td-lte-128gb-cph1871.json @@ -0,0 +1,41 @@ +{ + "slug": "find-x-standard-edition-global-dual-sim-td-lte-128gb-cph1871", + "name": "Find X Standard Edition Global Dual SIM TD-LTE 128GB CPH1871", + "brand": "oppo", + "soc": "snapdragon-845", + "release_date": "2018-09-08", + "ram_gb": 8.0, + "battery_mah": 3730, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Taiwan" +} diff --git a/data/smartphone/oppo/2018/k1-premium-edition-dual-sim-td-lte-cn-pbcm30.json b/data/smartphone/oppo/2018/k1-premium-edition-dual-sim-td-lte-cn-pbcm30.json new file mode 100644 index 00000000000..5878091f463 --- /dev/null +++ b/data/smartphone/oppo/2018/k1-premium-edition-dual-sim-td-lte-cn-pbcm30.json @@ -0,0 +1,41 @@ +{ + "slug": "k1-premium-edition-dual-sim-td-lte-cn-pbcm30", + "name": "K1 Premium Edition Dual SIM TD-LTE CN PBCM30", + "brand": "oppo", + "soc": "snapdragon-660", + "release_date": "2018-10-01", + "ram_gb": 6.0, + "battery_mah": 3600, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/k1-standard-edition-dual-sim-td-lte-cn-pbcm30.json b/data/smartphone/oppo/2018/k1-standard-edition-dual-sim-td-lte-cn-pbcm30.json new file mode 100644 index 00000000000..2d3696bec5a --- /dev/null +++ b/data/smartphone/oppo/2018/k1-standard-edition-dual-sim-td-lte-cn-pbcm30.json @@ -0,0 +1,41 @@ +{ + "slug": "k1-standard-edition-dual-sim-td-lte-cn-pbcm30", + "name": "K1 Standard Edition Dual SIM TD-LTE CN PBCM30", + "brand": "oppo", + "soc": "snapdragon-660", + "release_date": "2018-10-01", + "ram_gb": 4.0, + "battery_mah": 3600, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/r15-dream-mirror-edition-dual-sim-td-lte-cn-paam00.json b/data/smartphone/oppo/2018/r15-dream-mirror-edition-dual-sim-td-lte-cn-paam00.json new file mode 100644 index 00000000000..630739777e4 --- /dev/null +++ b/data/smartphone/oppo/2018/r15-dream-mirror-edition-dual-sim-td-lte-cn-paam00.json @@ -0,0 +1,41 @@ +{ + "slug": "r15-dream-mirror-edition-dual-sim-td-lte-cn-paam00", + "name": "R15 Dream Mirror Edition Dual SIM TD-LTE CN PAAM00", + "brand": "oppo", + "soc": "snapdragon-660", + "release_date": "2018-04-03", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/r15-dream-mirror-edition-dual-sim-td-lte-cn-paat00-r15-dme-4g.json b/data/smartphone/oppo/2018/r15-dream-mirror-edition-dual-sim-td-lte-cn-paat00-r15-dme-4g.json new file mode 100644 index 00000000000..5f40504a3fe --- /dev/null +++ b/data/smartphone/oppo/2018/r15-dream-mirror-edition-dual-sim-td-lte-cn-paat00-r15-dme-4g.json @@ -0,0 +1,41 @@ +{ + "slug": "r15-dream-mirror-edition-dual-sim-td-lte-cn-paat00-r15-dme-4g", + "name": "R15 Dream Mirror Edition Dual SIM TD-LTE CN PAAT00 / R15 DME 4G+", + "brand": "oppo", + "soc": "snapdragon-660", + "release_date": "2018-04-02", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/r15-dual-sim-td-lte-cn-pacm00.json b/data/smartphone/oppo/2018/r15-dual-sim-td-lte-cn-pacm00.json new file mode 100644 index 00000000000..679808e665d --- /dev/null +++ b/data/smartphone/oppo/2018/r15-dual-sim-td-lte-cn-pacm00.json @@ -0,0 +1,41 @@ +{ + "slug": "r15-dual-sim-td-lte-cn-pacm00", + "name": "R15 Dual SIM TD-LTE CN PACM00", + "brand": "oppo", + "soc": "helio-p60", + "release_date": "2018-05-01", + "ram_gb": 6.0, + "battery_mah": 3450, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/r15-dual-sim-td-lte-cn-pact00.json b/data/smartphone/oppo/2018/r15-dual-sim-td-lte-cn-pact00.json new file mode 100644 index 00000000000..4f88cf85bf8 --- /dev/null +++ b/data/smartphone/oppo/2018/r15-dual-sim-td-lte-cn-pact00.json @@ -0,0 +1,41 @@ +{ + "slug": "r15-dual-sim-td-lte-cn-pact00", + "name": "R15 Dual SIM TD-LTE CN PACT00", + "brand": "oppo", + "soc": "helio-p60", + "release_date": "2018-04-02", + "ram_gb": 6.0, + "battery_mah": 3450, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/r15-dual-sim-td-lte-tw-cph1835.json b/data/smartphone/oppo/2018/r15-dual-sim-td-lte-tw-cph1835.json new file mode 100644 index 00000000000..7c84d4d8998 --- /dev/null +++ b/data/smartphone/oppo/2018/r15-dual-sim-td-lte-tw-cph1835.json @@ -0,0 +1,41 @@ +{ + "slug": "r15-dual-sim-td-lte-tw-cph1835", + "name": "R15 Dual SIM TD-LTE TW CPH1835", + "brand": "oppo", + "soc": "helio-p60", + "release_date": "2018-05-01", + "ram_gb": 6.0, + "battery_mah": 3450, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Taiwan", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2018/r15-neo-dual-sim-td-lte-jp-au-cph1851.json b/data/smartphone/oppo/2018/r15-neo-dual-sim-td-lte-jp-au-cph1851.json new file mode 100644 index 00000000000..54d2a23e9fe --- /dev/null +++ b/data/smartphone/oppo/2018/r15-neo-dual-sim-td-lte-jp-au-cph1851.json @@ -0,0 +1,41 @@ +{ + "slug": "r15-neo-dual-sim-td-lte-jp-au-cph1851", + "name": "R15 Neo Dual SIM TD-LTE JP AU CPH1851", + "brand": "oppo", + "soc": "snapdragon-450", + "release_date": "2018-09-09", + "ram_gb": 4.0, + "battery_mah": 4230, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , Japan", + "market_regions": "Asia , Australia" +} diff --git a/data/smartphone/oppo/2018/r15-pro-dual-sim-td-lte-au-my-sg-th-eu-version-1-cph1831.json b/data/smartphone/oppo/2018/r15-pro-dual-sim-td-lte-au-my-sg-th-eu-version-1-cph1831.json new file mode 100644 index 00000000000..474f2de5486 --- /dev/null +++ b/data/smartphone/oppo/2018/r15-pro-dual-sim-td-lte-au-my-sg-th-eu-version-1-cph1831.json @@ -0,0 +1,41 @@ +{ + "slug": "r15-pro-dual-sim-td-lte-au-my-sg-th-eu-version-1-cph1831", + "name": "R15 Pro Dual SIM TD-LTE AU MY SG TH EU Version 1 CPH1831", + "brand": "oppo", + "soc": "snapdragon-660", + "release_date": "2018-05-01", + "ram_gb": 6.0, + "battery_mah": 3430, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , France , Italy , Malaysia , Netherlands , NZ , Poland , Singapore , Spain , Thailand", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2018/r15-pro-dual-sim-td-lte-jp-version-2-cph1833.json b/data/smartphone/oppo/2018/r15-pro-dual-sim-td-lte-jp-version-2-cph1833.json new file mode 100644 index 00000000000..eb9b14a4a20 --- /dev/null +++ b/data/smartphone/oppo/2018/r15-pro-dual-sim-td-lte-jp-version-2-cph1833.json @@ -0,0 +1,41 @@ +{ + "slug": "r15-pro-dual-sim-td-lte-jp-version-2-cph1833", + "name": "R15 Pro Dual SIM TD-LTE JP Version 2 CPH1833", + "brand": "oppo", + "soc": "snapdragon-660", + "release_date": "2018-08-16", + "ram_gb": 6.0, + "battery_mah": 3430, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2018/r15-pro-dual-sim-td-lte-tw-cph1831.json b/data/smartphone/oppo/2018/r15-pro-dual-sim-td-lte-tw-cph1831.json new file mode 100644 index 00000000000..ca8001427c1 --- /dev/null +++ b/data/smartphone/oppo/2018/r15-pro-dual-sim-td-lte-tw-cph1831.json @@ -0,0 +1,42 @@ +{ + "slug": "r15-pro-dual-sim-td-lte-tw-cph1831", + "name": "R15 Pro Dual SIM TD-LTE TW CPH1831", + "brand": "oppo", + "soc": "snapdragon-660", + "release_date": "2018-05-01", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Taiwan", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2018/r15-pro-td-lte-au-cph1831.json b/data/smartphone/oppo/2018/r15-pro-td-lte-au-cph1831.json new file mode 100644 index 00000000000..5d08e4b25b2 --- /dev/null +++ b/data/smartphone/oppo/2018/r15-pro-td-lte-au-cph1831.json @@ -0,0 +1,42 @@ +{ + "slug": "r15-pro-td-lte-au-cph1831", + "name": "R15 Pro TD-LTE AU CPH1831", + "brand": "oppo", + "soc": "snapdragon-660", + "release_date": "2018-07-01", + "ram_gb": 6.0, + "battery_mah": 3430, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia", + "market_regions": "Australia" +} diff --git a/data/smartphone/oppo/2018/r15x-dual-sim-td-lte-cn-pbcm10.json b/data/smartphone/oppo/2018/r15x-dual-sim-td-lte-cn-pbcm10.json new file mode 100644 index 00000000000..24fd4bfafe4 --- /dev/null +++ b/data/smartphone/oppo/2018/r15x-dual-sim-td-lte-cn-pbcm10.json @@ -0,0 +1,41 @@ +{ + "slug": "r15x-dual-sim-td-lte-cn-pbcm10", + "name": "R15x Dual SIM TD-LTE CN PBCM10", + "brand": "oppo", + "soc": "snapdragon-660", + "release_date": "2018-11-02", + "ram_gb": 6.0, + "battery_mah": 3600, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2018/r15x-dual-sim-td-lte-cn-pbct10.json b/data/smartphone/oppo/2018/r15x-dual-sim-td-lte-cn-pbct10.json new file mode 100644 index 00000000000..5f7bdae1560 --- /dev/null +++ b/data/smartphone/oppo/2018/r15x-dual-sim-td-lte-cn-pbct10.json @@ -0,0 +1,41 @@ +{ + "slug": "r15x-dual-sim-td-lte-cn-pbct10", + "name": "R15x Dual SIM TD-LTE CN PBCT10", + "brand": "oppo", + "soc": "snapdragon-660", + "release_date": "2018-11-02", + "ram_gb": 6.0, + "battery_mah": 3600, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2018/r17-dual-sim-td-lte-in-version-2-cph1879.json b/data/smartphone/oppo/2018/r17-dual-sim-td-lte-in-version-2-cph1879.json new file mode 100644 index 00000000000..a6c6b2f11ad --- /dev/null +++ b/data/smartphone/oppo/2018/r17-dual-sim-td-lte-in-version-2-cph1879.json @@ -0,0 +1,41 @@ +{ + "slug": "r17-dual-sim-td-lte-in-version-2-cph1879", + "name": "R17 Dual SIM TD-LTE IN Version 2 CPH1879", + "brand": "oppo", + "soc": "snapdragon-670", + "release_date": "2018-12-23", + "ram_gb": 8.0, + "battery_mah": 3500, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2018/r17-dual-sim-td-lte-sg-tw-version-1-cph1879.json b/data/smartphone/oppo/2018/r17-dual-sim-td-lte-sg-tw-version-1-cph1879.json new file mode 100644 index 00000000000..7dc72ffb431 --- /dev/null +++ b/data/smartphone/oppo/2018/r17-dual-sim-td-lte-sg-tw-version-1-cph1879.json @@ -0,0 +1,41 @@ +{ + "slug": "r17-dual-sim-td-lte-sg-tw-version-1-cph1879", + "name": "R17 Dual SIM TD-LTE SG TW Version 1 CPH1879", + "brand": "oppo", + "soc": "snapdragon-670", + "release_date": "2018-11-06", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Singapore , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/r17-premium-edition-dual-sim-td-lte-cn-pagm00.json b/data/smartphone/oppo/2018/r17-premium-edition-dual-sim-td-lte-cn-pagm00.json new file mode 100644 index 00000000000..67fb0dc0bf4 --- /dev/null +++ b/data/smartphone/oppo/2018/r17-premium-edition-dual-sim-td-lte-cn-pagm00.json @@ -0,0 +1,42 @@ +{ + "slug": "r17-premium-edition-dual-sim-td-lte-cn-pagm00", + "name": "R17 Premium Edition Dual SIM TD-LTE CN PAGM00", + "brand": "oppo", + "soc": "snapdragon-670", + "release_date": "2018-09-01", + "ram_gb": 8.0, + "battery_mah": 3500, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/r17-pro-dual-sim-td-lte-cn-pbdm00.json b/data/smartphone/oppo/2018/r17-pro-dual-sim-td-lte-cn-pbdm00.json new file mode 100644 index 00000000000..d56e3608e6b --- /dev/null +++ b/data/smartphone/oppo/2018/r17-pro-dual-sim-td-lte-cn-pbdm00.json @@ -0,0 +1,42 @@ +{ + "slug": "r17-pro-dual-sim-td-lte-cn-pbdm00", + "name": "R17 Pro Dual SIM TD-LTE CN PBDM00", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2018-09-01", + "ram_gb": 8.0, + "battery_mah": 3700, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "charging_wired_w": 50, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2018/r17-pro-dual-sim-td-lte-cn-pbdt00.json b/data/smartphone/oppo/2018/r17-pro-dual-sim-td-lte-cn-pbdt00.json new file mode 100644 index 00000000000..b84a08e797e --- /dev/null +++ b/data/smartphone/oppo/2018/r17-pro-dual-sim-td-lte-cn-pbdt00.json @@ -0,0 +1,42 @@ +{ + "slug": "r17-pro-dual-sim-td-lte-cn-pbdt00", + "name": "R17 Pro Dual SIM TD-LTE CN PBDT00", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2018-09-01", + "ram_gb": 8.0, + "battery_mah": 3700, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "charging_wired_w": 50, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/r17-pro-premium-edition-global-dual-sim-td-lte-version-1-cph1877.json b/data/smartphone/oppo/2018/r17-pro-premium-edition-global-dual-sim-td-lte-version-1-cph1877.json new file mode 100644 index 00000000000..f5f79427894 --- /dev/null +++ b/data/smartphone/oppo/2018/r17-pro-premium-edition-global-dual-sim-td-lte-version-1-cph1877.json @@ -0,0 +1,42 @@ +{ + "slug": "r17-pro-premium-edition-global-dual-sim-td-lte-version-1-cph1877", + "name": "R17 Pro Premium Edition Global Dual SIM TD-LTE Version 1 CPH1877", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2018-11-04", + "ram_gb": 8.0, + "battery_mah": 3700, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "charging_wired_w": 50, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , Cambodia , India , Indonesia , Japan , Myanmar , Nepal , Philippines , Singapore , Taiwan , Thailand , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/r17-pro-standard-edition-dual-sim-td-lte-apac-version-2-cph1877.json b/data/smartphone/oppo/2018/r17-pro-standard-edition-dual-sim-td-lte-apac-version-2-cph1877.json new file mode 100644 index 00000000000..13ff049a52e --- /dev/null +++ b/data/smartphone/oppo/2018/r17-pro-standard-edition-dual-sim-td-lte-apac-version-2-cph1877.json @@ -0,0 +1,42 @@ +{ + "slug": "r17-pro-standard-edition-dual-sim-td-lte-apac-version-2-cph1877", + "name": "R17 Pro Standard Edition Dual SIM TD-LTE APAC Version 2 CPH1877", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2018-10-01", + "ram_gb": 6.0, + "battery_mah": 3700, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "charging_wired_w": 50, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Taiwan", + "market_regions": "Asia , Australia" +} diff --git a/data/smartphone/oppo/2018/r17-standard-edition-dual-sim-td-lte-cn-pagm00.json b/data/smartphone/oppo/2018/r17-standard-edition-dual-sim-td-lte-cn-pagm00.json new file mode 100644 index 00000000000..48fc3eedaab --- /dev/null +++ b/data/smartphone/oppo/2018/r17-standard-edition-dual-sim-td-lte-cn-pagm00.json @@ -0,0 +1,41 @@ +{ + "slug": "r17-standard-edition-dual-sim-td-lte-cn-pagm00", + "name": "R17 Standard Edition Dual SIM TD-LTE CN PAGM00", + "brand": "oppo", + "soc": "snapdragon-670", + "release_date": "2018-09-01", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/r17-standard-edition-dual-sim-td-lte-cn-pagt00.json b/data/smartphone/oppo/2018/r17-standard-edition-dual-sim-td-lte-cn-pagt00.json new file mode 100644 index 00000000000..6830e0b79bf --- /dev/null +++ b/data/smartphone/oppo/2018/r17-standard-edition-dual-sim-td-lte-cn-pagt00.json @@ -0,0 +1,41 @@ +{ + "slug": "r17-standard-edition-dual-sim-td-lte-cn-pagt00", + "name": "R17 Standard Edition Dual SIM TD-LTE CN PAGT00", + "brand": "oppo", + "soc": "snapdragon-670", + "release_date": "2018-09-01", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/realme-1-dual-sim-td-lte-in-128gb-cph1861-f7-youth.json b/data/smartphone/oppo/2018/realme-1-dual-sim-td-lte-in-128gb-cph1861-f7-youth.json new file mode 100644 index 00000000000..7eb98c11356 --- /dev/null +++ b/data/smartphone/oppo/2018/realme-1-dual-sim-td-lte-in-128gb-cph1861-f7-youth.json @@ -0,0 +1,41 @@ +{ + "slug": "realme-1-dual-sim-td-lte-in-128gb-cph1861-f7-youth", + "name": "realme 1 Dual SIM TD-LTE IN 128GB CPH1861 / F7 Youth", + "brand": "oppo", + "soc": "helio-p60", + "release_date": "2018-05-26", + "ram_gb": 6.0, + "battery_mah": 3410, + "weight_g": 155.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2018/realme-1-dual-sim-td-lte-in-32gb-cph1861-f7-youth.json b/data/smartphone/oppo/2018/realme-1-dual-sim-td-lte-in-32gb-cph1861-f7-youth.json new file mode 100644 index 00000000000..a60f4b90ca8 --- /dev/null +++ b/data/smartphone/oppo/2018/realme-1-dual-sim-td-lte-in-32gb-cph1861-f7-youth.json @@ -0,0 +1,41 @@ +{ + "slug": "realme-1-dual-sim-td-lte-in-32gb-cph1861-f7-youth", + "name": "realme 1 Dual SIM TD-LTE IN 32GB CPH1861 / F7 Youth", + "brand": "oppo", + "soc": "helio-p60", + "release_date": "2018-05-01", + "ram_gb": 3.0, + "battery_mah": 3410, + "weight_g": 155.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2018/realme-2-dual-sim-td-lte-in-id-32gb.json b/data/smartphone/oppo/2018/realme-2-dual-sim-td-lte-in-id-32gb.json new file mode 100644 index 00000000000..33db3f9cb61 --- /dev/null +++ b/data/smartphone/oppo/2018/realme-2-dual-sim-td-lte-in-id-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "realme-2-dual-sim-td-lte-in-id-32gb", + "name": "Realme 2 Dual SIM TD-LTE IN ID 32GB", + "brand": "oppo", + "soc": "snapdragon-450", + "release_date": "2018-09-04", + "ram_gb": 3.0, + "battery_mah": 4230, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/realme-2-dual-sim-td-lte-in-id-64gb.json b/data/smartphone/oppo/2018/realme-2-dual-sim-td-lte-in-id-64gb.json new file mode 100644 index 00000000000..1b15928210b --- /dev/null +++ b/data/smartphone/oppo/2018/realme-2-dual-sim-td-lte-in-id-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "realme-2-dual-sim-td-lte-in-id-64gb", + "name": "Realme 2 Dual SIM TD-LTE IN ID 64GB", + "brand": "oppo", + "soc": "snapdragon-450", + "release_date": "2018-09-04", + "ram_gb": 4.0, + "battery_mah": 4230, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/realme-2-pro-global-dual-sim-td-lte-128gb-rmx1807.json b/data/smartphone/oppo/2018/realme-2-pro-global-dual-sim-td-lte-128gb-rmx1807.json new file mode 100644 index 00000000000..288d167c575 --- /dev/null +++ b/data/smartphone/oppo/2018/realme-2-pro-global-dual-sim-td-lte-128gb-rmx1807.json @@ -0,0 +1,41 @@ +{ + "slug": "realme-2-pro-global-dual-sim-td-lte-128gb-rmx1807", + "name": "Realme 2 Pro Global Dual SIM TD-LTE 128GB RMX1807", + "brand": "oppo", + "soc": "snapdragon-660", + "release_date": "2018-10-11", + "ram_gb": 8.0, + "battery_mah": 3500, + "weight_g": 174.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "France , Indonesia , Italy , Netherlands , Poland , Russia , Spain", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2018/realme-2-pro-premium-edition-dual-sim-td-lte-in-id-64gb-rmx1801.json b/data/smartphone/oppo/2018/realme-2-pro-premium-edition-dual-sim-td-lte-in-id-64gb-rmx1801.json new file mode 100644 index 00000000000..37d01c6a03c --- /dev/null +++ b/data/smartphone/oppo/2018/realme-2-pro-premium-edition-dual-sim-td-lte-in-id-64gb-rmx1801.json @@ -0,0 +1,41 @@ +{ + "slug": "realme-2-pro-premium-edition-dual-sim-td-lte-in-id-64gb-rmx1801", + "name": "Realme 2 Pro Premium Edition Dual SIM TD-LTE IN ID 64GB RMX1801", + "brand": "oppo", + "soc": "snapdragon-660", + "release_date": "2018-10-11", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 174.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/realme-2-pro-standard-edition-dual-sim-td-lte-in-id-64gb-rmx1801.json b/data/smartphone/oppo/2018/realme-2-pro-standard-edition-dual-sim-td-lte-in-id-64gb-rmx1801.json new file mode 100644 index 00000000000..bedb8ce3e14 --- /dev/null +++ b/data/smartphone/oppo/2018/realme-2-pro-standard-edition-dual-sim-td-lte-in-id-64gb-rmx1801.json @@ -0,0 +1,41 @@ +{ + "slug": "realme-2-pro-standard-edition-dual-sim-td-lte-in-id-64gb-rmx1801", + "name": "Realme 2 Pro Standard Edition Dual SIM TD-LTE IN ID 64GB RMX1801", + "brand": "oppo", + "soc": "snapdragon-660", + "release_date": "2018-10-11", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 174.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/realme-c1-dual-sim-td-lte-in-id-16gb-rmx1811.json b/data/smartphone/oppo/2018/realme-c1-dual-sim-td-lte-in-id-16gb-rmx1811.json new file mode 100644 index 00000000000..c6732a77bfc --- /dev/null +++ b/data/smartphone/oppo/2018/realme-c1-dual-sim-td-lte-in-id-16gb-rmx1811.json @@ -0,0 +1,41 @@ +{ + "slug": "realme-c1-dual-sim-td-lte-in-id-16gb-rmx1811", + "name": "Realme C1 Dual SIM TD-LTE IN ID 16GB RMX1811", + "brand": "oppo", + "soc": "snapdragon-450", + "release_date": "2018-10-11", + "ram_gb": 2.0, + "battery_mah": 4230, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Indonesia , Philippines", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/realme-u1-dual-sim-td-lte-in-32gb-rmx1833.json b/data/smartphone/oppo/2018/realme-u1-dual-sim-td-lte-in-32gb-rmx1833.json new file mode 100644 index 00000000000..d466aac5ed1 --- /dev/null +++ b/data/smartphone/oppo/2018/realme-u1-dual-sim-td-lte-in-32gb-rmx1833.json @@ -0,0 +1,41 @@ +{ + "slug": "realme-u1-dual-sim-td-lte-in-32gb-rmx1833", + "name": "Realme U1 Dual SIM TD-LTE IN 32GB RMX1833", + "brand": "oppo", + "soc": "helio-p70", + "release_date": "2018-12-06", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.32, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/realme-u1-dual-sim-td-lte-in-64gb-rmx1833.json b/data/smartphone/oppo/2018/realme-u1-dual-sim-td-lte-in-64gb-rmx1833.json new file mode 100644 index 00000000000..b3b362831a6 --- /dev/null +++ b/data/smartphone/oppo/2018/realme-u1-dual-sim-td-lte-in-64gb-rmx1833.json @@ -0,0 +1,41 @@ +{ + "slug": "realme-u1-dual-sim-td-lte-in-64gb-rmx1833", + "name": "Realme U1 Dual SIM TD-LTE IN 64GB RMX1833", + "brand": "oppo", + "soc": "helio-p70", + "release_date": "2018-12-06", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.32, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2018/rx17-neo-global-dual-sim-td-lte-cph1893-r17-neo.json b/data/smartphone/oppo/2018/rx17-neo-global-dual-sim-td-lte-cph1893-r17-neo.json new file mode 100644 index 00000000000..57ecac3675c --- /dev/null +++ b/data/smartphone/oppo/2018/rx17-neo-global-dual-sim-td-lte-cph1893-r17-neo.json @@ -0,0 +1,41 @@ +{ + "slug": "rx17-neo-global-dual-sim-td-lte-cph1893-r17-neo", + "name": "RX17 Neo Global Dual SIM TD-LTE CPH1893 / R17 Neo", + "brand": "oppo", + "soc": "snapdragon-660", + "release_date": "2018-11-16", + "ram_gb": 4.0, + "battery_mah": 3600, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "France , Italy , Japan , Netherlands , Russia , Spain", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2018/rx17-pro-standard-edition-global-dual-sim-td-lte-version-1-cph1877-r17-pro.json b/data/smartphone/oppo/2018/rx17-pro-standard-edition-global-dual-sim-td-lte-version-1-cph1877-r17-pro.json new file mode 100644 index 00000000000..b260132e744 --- /dev/null +++ b/data/smartphone/oppo/2018/rx17-pro-standard-edition-global-dual-sim-td-lte-version-1-cph1877-r17-pro.json @@ -0,0 +1,42 @@ +{ + "slug": "rx17-pro-standard-edition-global-dual-sim-td-lte-version-1-cph1877-r17-pro", + "name": "RX17 Pro Standard Edition Global Dual SIM TD-LTE Version 1 CPH1877 / R17 Pro", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2018-11-16", + "ram_gb": 6.0, + "battery_mah": 3700, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "charging_wired_w": 50, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Cambodia , France , Italy , Japan , Myanmar , Netherlands , Russia , Spain", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2019/a11-2019-premium-edition-dual-sim-td-lte-cn-256gb-pchm10.json b/data/smartphone/oppo/2019/a11-2019-premium-edition-dual-sim-td-lte-cn-256gb-pchm10.json new file mode 100644 index 00000000000..99072faf518 --- /dev/null +++ b/data/smartphone/oppo/2019/a11-2019-premium-edition-dual-sim-td-lte-cn-256gb-pchm10.json @@ -0,0 +1,42 @@ +{ + "slug": "a11-2019-premium-edition-dual-sim-td-lte-cn-256gb-pchm10", + "name": "A11 2019 Premium Edition Dual SIM TD-LTE CN 256GB PCHM10", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2019-11-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/a11-2019-standard-edition-dual-sim-td-lte-cn-128gb-pchm10.json b/data/smartphone/oppo/2019/a11-2019-standard-edition-dual-sim-td-lte-cn-128gb-pchm10.json new file mode 100644 index 00000000000..5531f172d3b --- /dev/null +++ b/data/smartphone/oppo/2019/a11-2019-standard-edition-dual-sim-td-lte-cn-128gb-pchm10.json @@ -0,0 +1,42 @@ +{ + "slug": "a11-2019-standard-edition-dual-sim-td-lte-cn-128gb-pchm10", + "name": "A11 2019 Standard Edition Dual SIM TD-LTE CN 128GB PCHM10", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2019-10-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/a11-2019-standard-edition-dual-sim-td-lte-cn-128gb-pcht10.json b/data/smartphone/oppo/2019/a11-2019-standard-edition-dual-sim-td-lte-cn-128gb-pcht10.json new file mode 100644 index 00000000000..8aeb8c45ab5 --- /dev/null +++ b/data/smartphone/oppo/2019/a11-2019-standard-edition-dual-sim-td-lte-cn-128gb-pcht10.json @@ -0,0 +1,42 @@ +{ + "slug": "a11-2019-standard-edition-dual-sim-td-lte-cn-128gb-pcht10", + "name": "A11 2019 Standard Edition Dual SIM TD-LTE CN 128GB PCHT10", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2019-10-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/a11-2019-standard-edition-dual-sim-td-lte-cn-64gb-pchm10.json b/data/smartphone/oppo/2019/a11-2019-standard-edition-dual-sim-td-lte-cn-64gb-pchm10.json new file mode 100644 index 00000000000..f0e40345982 --- /dev/null +++ b/data/smartphone/oppo/2019/a11-2019-standard-edition-dual-sim-td-lte-cn-64gb-pchm10.json @@ -0,0 +1,42 @@ +{ + "slug": "a11-2019-standard-edition-dual-sim-td-lte-cn-64gb-pchm10", + "name": "A11 2019 Standard Edition Dual SIM TD-LTE CN 64GB PCHM10", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2019-10-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/a11-2019-standard-edition-dual-sim-td-lte-cn-64gb-pcht10.json b/data/smartphone/oppo/2019/a11-2019-standard-edition-dual-sim-td-lte-cn-64gb-pcht10.json new file mode 100644 index 00000000000..fe24b8ec917 --- /dev/null +++ b/data/smartphone/oppo/2019/a11-2019-standard-edition-dual-sim-td-lte-cn-64gb-pcht10.json @@ -0,0 +1,42 @@ +{ + "slug": "a11-2019-standard-edition-dual-sim-td-lte-cn-64gb-pcht10", + "name": "A11 2019 Standard Edition Dual SIM TD-LTE CN 64GB PCHT10", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2019-10-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/a11x-2019-premium-edition-dual-sim-td-lte-cn-128gb-pchm00.json b/data/smartphone/oppo/2019/a11x-2019-premium-edition-dual-sim-td-lte-cn-128gb-pchm00.json new file mode 100644 index 00000000000..f9d7bbd1cea --- /dev/null +++ b/data/smartphone/oppo/2019/a11x-2019-premium-edition-dual-sim-td-lte-cn-128gb-pchm00.json @@ -0,0 +1,42 @@ +{ + "slug": "a11x-2019-premium-edition-dual-sim-td-lte-cn-128gb-pchm00", + "name": "A11x 2019 Premium Edition Dual SIM TD-LTE CN 128GB PCHM00", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2019-10-21", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/a11x-2019-premium-edition-dual-sim-td-lte-cn-128gb-pcht00.json b/data/smartphone/oppo/2019/a11x-2019-premium-edition-dual-sim-td-lte-cn-128gb-pcht00.json new file mode 100644 index 00000000000..a452c79082d --- /dev/null +++ b/data/smartphone/oppo/2019/a11x-2019-premium-edition-dual-sim-td-lte-cn-128gb-pcht00.json @@ -0,0 +1,42 @@ +{ + "slug": "a11x-2019-premium-edition-dual-sim-td-lte-cn-128gb-pcht00", + "name": "A11x 2019 Premium Edition Dual SIM TD-LTE CN 128GB PCHT00", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2019-10-21", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/a1k-dual-sim-td-lte-in-mn-bd-32gb-cph1923.json b/data/smartphone/oppo/2019/a1k-dual-sim-td-lte-in-mn-bd-32gb-cph1923.json new file mode 100644 index 00000000000..775d91cd42d --- /dev/null +++ b/data/smartphone/oppo/2019/a1k-dual-sim-td-lte-in-mn-bd-32gb-cph1923.json @@ -0,0 +1,42 @@ +{ + "slug": "a1k-dual-sim-td-lte-in-mn-bd-32gb-cph1923", + "name": "A1k Dual SIM TD-LTE IN MN BD 32GB CPH1923", + "brand": "oppo", + "soc": "helio-p22", + "release_date": "2019-04-23", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 174.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , India , Myanmar", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/a1k-global-dual-sim-td-lte-32gb-cph1923.json b/data/smartphone/oppo/2019/a1k-global-dual-sim-td-lte-32gb-cph1923.json new file mode 100644 index 00000000000..bd1f520095b --- /dev/null +++ b/data/smartphone/oppo/2019/a1k-global-dual-sim-td-lte-32gb-cph1923.json @@ -0,0 +1,42 @@ +{ + "slug": "a1k-global-dual-sim-td-lte-32gb-cph1923", + "name": "A1k Global Dual SIM TD-LTE 32GB CPH1923", + "brand": "oppo", + "soc": "helio-p22", + "release_date": "2019-04-23", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 174.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Russia", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/oppo/2019/a5-2020-premium-edition-dual-sim-td-lte-v1-id-bd-np-128gb-cph1933.json b/data/smartphone/oppo/2019/a5-2020-premium-edition-dual-sim-td-lte-v1-id-bd-np-128gb-cph1933.json new file mode 100644 index 00000000000..670147631c9 --- /dev/null +++ b/data/smartphone/oppo/2019/a5-2020-premium-edition-dual-sim-td-lte-v1-id-bd-np-128gb-cph1933.json @@ -0,0 +1,42 @@ +{ + "slug": "a5-2020-premium-edition-dual-sim-td-lte-v1-id-bd-np-128gb-cph1933", + "name": "A5 2020 Premium Edition Dual SIM TD-LTE V1 ID BD NP 128GB CPH1933", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2019-09-22", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , Indonesia , Myanmar , Nepal , Sri Lanka", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/a5-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-64gb-cph1933.json b/data/smartphone/oppo/2019/a5-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-64gb-cph1933.json new file mode 100644 index 00000000000..11ed48d9c76 --- /dev/null +++ b/data/smartphone/oppo/2019/a5-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-64gb-cph1933.json @@ -0,0 +1,42 @@ +{ + "slug": "a5-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-64gb-cph1933", + "name": "A5 2020 Premium Edition Dual SIM TD-LTE V1 IN ID PK BD NP 64GB CPH1933", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2019-09-22", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , India , Indonesia , Nepal , Pakistan , Sri Lanka", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/a5-2020-premium-edition-dual-sim-td-lte-v2-th-128gb-cph1933.json b/data/smartphone/oppo/2019/a5-2020-premium-edition-dual-sim-td-lte-v2-th-128gb-cph1933.json new file mode 100644 index 00000000000..c1c2e7b5e33 --- /dev/null +++ b/data/smartphone/oppo/2019/a5-2020-premium-edition-dual-sim-td-lte-v2-th-128gb-cph1933.json @@ -0,0 +1,42 @@ +{ + "slug": "a5-2020-premium-edition-dual-sim-td-lte-v2-th-128gb-cph1933", + "name": "A5 2020 Premium Edition Dual SIM TD-LTE V2 TH 128GB CPH1933", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2019-10-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Cambodia , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/a5-2020-premium-edition-dual-sim-td-lte-v4-tw-jp-sg-64gb-cph1943.json b/data/smartphone/oppo/2019/a5-2020-premium-edition-dual-sim-td-lte-v4-tw-jp-sg-64gb-cph1943.json new file mode 100644 index 00000000000..c2002e738a9 --- /dev/null +++ b/data/smartphone/oppo/2019/a5-2020-premium-edition-dual-sim-td-lte-v4-tw-jp-sg-64gb-cph1943.json @@ -0,0 +1,42 @@ +{ + "slug": "a5-2020-premium-edition-dual-sim-td-lte-v4-tw-jp-sg-64gb-cph1943", + "name": "A5 2020 Premium Edition Dual SIM TD-LTE V4 TW JP SG 64GB CPH1943", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2019-11-02", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan , Singapore , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/a5-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph1933.json b/data/smartphone/oppo/2019/a5-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph1933.json new file mode 100644 index 00000000000..b17c7f9c2d3 --- /dev/null +++ b/data/smartphone/oppo/2019/a5-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph1933.json @@ -0,0 +1,42 @@ +{ + "slug": "a5-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph1933", + "name": "A5 2020 Premium Edition Global Dual SIM TD-LTE V3 128GB CPH1933", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2019-10-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Egypt , Philippines , Saudi Arabia , Tunisie , UAE", + "market_regions": "Africa , Asia , Middle East , Oceania" +} diff --git a/data/smartphone/oppo/2019/a5-2020-premium-edition-global-dual-sim-td-lte-v3-64gb-cph1933.json b/data/smartphone/oppo/2019/a5-2020-premium-edition-global-dual-sim-td-lte-v3-64gb-cph1933.json new file mode 100644 index 00000000000..59272c69e03 --- /dev/null +++ b/data/smartphone/oppo/2019/a5-2020-premium-edition-global-dual-sim-td-lte-v3-64gb-cph1933.json @@ -0,0 +1,42 @@ +{ + "slug": "a5-2020-premium-edition-global-dual-sim-td-lte-v3-64gb-cph1933", + "name": "A5 2020 Premium Edition Global Dual SIM TD-LTE V3 64GB CPH1933", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2019-10-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Egypt , Philippines , Saudi Arabia , Tunisie , UAE", + "market_regions": "Africa , Asia , Oceania" +} diff --git a/data/smartphone/oppo/2019/a5-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-bd-64gb-cph1931.json b/data/smartphone/oppo/2019/a5-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-bd-64gb-cph1931.json new file mode 100644 index 00000000000..74d35d58c3d --- /dev/null +++ b/data/smartphone/oppo/2019/a5-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-bd-64gb-cph1931.json @@ -0,0 +1,42 @@ +{ + "slug": "a5-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-bd-64gb-cph1931", + "name": "A5 2020 Standard Edition Dual SIM TD-LTE V1 IN ID PK BD 64GB CPH1931", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2019-09-22", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , India , Indonesia , Pakistan , Sri Lanka", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/a5-2020-standard-edition-dual-sim-td-lte-v2-my-th-64gb-cph1931.json b/data/smartphone/oppo/2019/a5-2020-standard-edition-dual-sim-td-lte-v2-my-th-64gb-cph1931.json new file mode 100644 index 00000000000..b716e04341f --- /dev/null +++ b/data/smartphone/oppo/2019/a5-2020-standard-edition-dual-sim-td-lte-v2-my-th-64gb-cph1931.json @@ -0,0 +1,42 @@ +{ + "slug": "a5-2020-standard-edition-dual-sim-td-lte-v2-my-th-64gb-cph1931", + "name": "A5 2020 Standard Edition Dual SIM TD-LTE V2 MY TH 64GB CPH1931", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2019-10-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Cambodia , Malaysia , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/a5-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph1931.json b/data/smartphone/oppo/2019/a5-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph1931.json new file mode 100644 index 00000000000..c0b05d812c6 --- /dev/null +++ b/data/smartphone/oppo/2019/a5-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph1931.json @@ -0,0 +1,42 @@ +{ + "slug": "a5-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph1931", + "name": "A5 2020 Standard Edition Global Dual SIM TD-LTE V3 64GB CPH1931", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2019-10-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Egypt , Kazakhstan , Kenya , Nigeria , Switzerland , UAE", + "market_regions": "Africa , Asia , Europe , Western Europe" +} diff --git a/data/smartphone/oppo/2019/a5-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph1935.json b/data/smartphone/oppo/2019/a5-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph1935.json new file mode 100644 index 00000000000..7ca5b37519e --- /dev/null +++ b/data/smartphone/oppo/2019/a5-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph1935.json @@ -0,0 +1,42 @@ +{ + "slug": "a5-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph1935", + "name": "A5 2020 Standard Edition Global Dual SIM TD-LTE V3 64GB CPH1935", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2019-10-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "France , Italy , Netherlands , Poland , Russia , Spain , Turkey , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/oppo/2019/a5-dual-sim-td-lte-in-pk-bd-64gb-cph1809.json b/data/smartphone/oppo/2019/a5-dual-sim-td-lte-in-pk-bd-64gb-cph1809.json new file mode 100644 index 00000000000..2b8abab0088 --- /dev/null +++ b/data/smartphone/oppo/2019/a5-dual-sim-td-lte-in-pk-bd-64gb-cph1809.json @@ -0,0 +1,41 @@ +{ + "slug": "a5-dual-sim-td-lte-in-pk-bd-64gb-cph1809", + "name": "A5 Dual SIM TD-LTE IN PK BD 64GB CPH1809", + "brand": "oppo", + "soc": "snapdragon-450", + "release_date": "2019-04-01", + "ram_gb": 4.0, + "battery_mah": 4230, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , India , Pakistan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/a5s-dual-sim-td-lte-ru-kz-ph-v1-32gb-cph1909.json b/data/smartphone/oppo/2019/a5s-dual-sim-td-lte-ru-kz-ph-v1-32gb-cph1909.json new file mode 100644 index 00000000000..74fbbb71cfa --- /dev/null +++ b/data/smartphone/oppo/2019/a5s-dual-sim-td-lte-ru-kz-ph-v1-32gb-cph1909.json @@ -0,0 +1,41 @@ +{ + "slug": "a5s-dual-sim-td-lte-ru-kz-ph-v1-32gb-cph1909", + "name": "A5s Dual SIM TD-LTE RU KZ PH V1 32GB CPH1909", + "brand": "oppo", + "soc": "helio-p35", + "release_date": "2019-04-01", + "ram_gb": 3.0, + "battery_mah": 4230, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Armenia , Kazakhstan , Philippines , Russia", + "market_regions": "Asia , Eastern Europe , Europe , Oceania" +} diff --git a/data/smartphone/oppo/2019/a5s-premium-edition-dual-sim-td-lte-in-id-bd-th-v3-32gb-cph1909.json b/data/smartphone/oppo/2019/a5s-premium-edition-dual-sim-td-lte-in-id-bd-th-v3-32gb-cph1909.json new file mode 100644 index 00000000000..8230691f241 --- /dev/null +++ b/data/smartphone/oppo/2019/a5s-premium-edition-dual-sim-td-lte-in-id-bd-th-v3-32gb-cph1909.json @@ -0,0 +1,41 @@ +{ + "slug": "a5s-premium-edition-dual-sim-td-lte-in-id-bd-th-v3-32gb-cph1909", + "name": "A5s Premium Edition Dual SIM TD-LTE IN ID BD TH V3 32GB CPH1909", + "brand": "oppo", + "soc": "helio-p35", + "release_date": "2019-04-01", + "ram_gb": 3.0, + "battery_mah": 4230, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , India , Indonesia , Myanmar , Sri Lanka , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/a5s-premium-edition-dual-sim-td-lte-vn-kh-my-v2-32gb-cph1909.json b/data/smartphone/oppo/2019/a5s-premium-edition-dual-sim-td-lte-vn-kh-my-v2-32gb-cph1909.json new file mode 100644 index 00000000000..67ce089286a --- /dev/null +++ b/data/smartphone/oppo/2019/a5s-premium-edition-dual-sim-td-lte-vn-kh-my-v2-32gb-cph1909.json @@ -0,0 +1,41 @@ +{ + "slug": "a5s-premium-edition-dual-sim-td-lte-vn-kh-my-v2-32gb-cph1909", + "name": "A5s Premium Edition Dual SIM TD-LTE VN KH MY V2 32GB CPH1909", + "brand": "oppo", + "soc": "helio-p35", + "release_date": "2019-05-01", + "ram_gb": 3.0, + "battery_mah": 4230, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Cambodia , Malaysia , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/a5s-standard-edition-dual-sim-td-lte-in-id-bd-th-v3-32gb-cph1909.json b/data/smartphone/oppo/2019/a5s-standard-edition-dual-sim-td-lte-in-id-bd-th-v3-32gb-cph1909.json new file mode 100644 index 00000000000..e6466211f00 --- /dev/null +++ b/data/smartphone/oppo/2019/a5s-standard-edition-dual-sim-td-lte-in-id-bd-th-v3-32gb-cph1909.json @@ -0,0 +1,41 @@ +{ + "slug": "a5s-standard-edition-dual-sim-td-lte-in-id-bd-th-v3-32gb-cph1909", + "name": "A5s Standard Edition Dual SIM TD-LTE IN ID BD TH V3 32GB CPH1909", + "brand": "oppo", + "soc": "helio-p35", + "release_date": "2019-04-01", + "ram_gb": 2.0, + "battery_mah": 4230, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , India , Indonesia , Myanmar , Sri Lanka , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/a7n-dual-sim-td-lte-cn-pcdm00.json b/data/smartphone/oppo/2019/a7n-dual-sim-td-lte-cn-pcdm00.json new file mode 100644 index 00000000000..f201a45e74a --- /dev/null +++ b/data/smartphone/oppo/2019/a7n-dual-sim-td-lte-cn-pcdm00.json @@ -0,0 +1,41 @@ +{ + "slug": "a7n-dual-sim-td-lte-cn-pcdm00", + "name": "A7n Dual SIM TD-LTE CN PCDM00", + "brand": "oppo", + "soc": "helio-p35", + "release_date": "2019-04-01", + "ram_gb": 4.0, + "battery_mah": 4230, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/a7n-dual-sim-td-lte-cn-pcdt00.json b/data/smartphone/oppo/2019/a7n-dual-sim-td-lte-cn-pcdt00.json new file mode 100644 index 00000000000..b5cf0a3ab67 --- /dev/null +++ b/data/smartphone/oppo/2019/a7n-dual-sim-td-lte-cn-pcdt00.json @@ -0,0 +1,41 @@ +{ + "slug": "a7n-dual-sim-td-lte-cn-pcdt00", + "name": "A7n Dual SIM TD-LTE CN PCDT00", + "brand": "oppo", + "soc": "helio-p35", + "release_date": "2019-04-01", + "ram_gb": 4.0, + "battery_mah": 4230, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/a8-2019-dual-sim-td-lte-cn-pdbm00.json b/data/smartphone/oppo/2019/a8-2019-dual-sim-td-lte-cn-pdbm00.json new file mode 100644 index 00000000000..2e71add9db0 --- /dev/null +++ b/data/smartphone/oppo/2019/a8-2019-dual-sim-td-lte-cn-pdbm00.json @@ -0,0 +1,41 @@ +{ + "slug": "a8-2019-dual-sim-td-lte-cn-pdbm00", + "name": "A8 2019 Dual SIM TD-LTE CN PDBM00", + "brand": "oppo", + "soc": "helio-p35", + "release_date": "2019-12-26", + "ram_gb": 4.0, + "battery_mah": 4230, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/a9-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-np-bd-128gb-cph1939.json b/data/smartphone/oppo/2019/a9-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-np-bd-128gb-cph1939.json new file mode 100644 index 00000000000..3461f0a8786 --- /dev/null +++ b/data/smartphone/oppo/2019/a9-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-np-bd-128gb-cph1939.json @@ -0,0 +1,42 @@ +{ + "slug": "a9-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-np-bd-128gb-cph1939", + "name": "A9 2020 Premium Edition Dual SIM TD-LTE V1 IN ID PK NP BD 128GB CPH1939", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2019-10-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , India , Indonesia , Myanmar , Nepal , Pakistan , Sri Lanka", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/a9-2020-premium-edition-dual-sim-td-lte-v2-my-vn-th-128gb-cph1939.json b/data/smartphone/oppo/2019/a9-2020-premium-edition-dual-sim-td-lte-v2-my-vn-th-128gb-cph1939.json new file mode 100644 index 00000000000..3b04bcbcaa1 --- /dev/null +++ b/data/smartphone/oppo/2019/a9-2020-premium-edition-dual-sim-td-lte-v2-my-vn-th-128gb-cph1939.json @@ -0,0 +1,42 @@ +{ + "slug": "a9-2020-premium-edition-dual-sim-td-lte-v2-my-vn-th-128gb-cph1939", + "name": "A9 2020 Premium Edition Dual SIM TD-LTE V2 MY VN TH 128GB CPH1939", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2019-10-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Cambodia , Malaysia , Thailand , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/a9-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph1939.json b/data/smartphone/oppo/2019/a9-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph1939.json new file mode 100644 index 00000000000..f3d89c4fddd --- /dev/null +++ b/data/smartphone/oppo/2019/a9-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph1939.json @@ -0,0 +1,42 @@ +{ + "slug": "a9-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph1939", + "name": "A9 2020 Premium Edition Global Dual SIM TD-LTE V3 128GB CPH1939", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2019-10-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Egypt , Kenya , Morocco , Philippines , Saudi Arabia , Tunisie , UAE", + "market_regions": "Africa , Middle East , Oceania" +} diff --git a/data/smartphone/oppo/2019/a9-2020-premium-edition-global-dual-sim-td-lte-v4-128gb-cph1941.json b/data/smartphone/oppo/2019/a9-2020-premium-edition-global-dual-sim-td-lte-v4-128gb-cph1941.json new file mode 100644 index 00000000000..245aabf4a91 --- /dev/null +++ b/data/smartphone/oppo/2019/a9-2020-premium-edition-global-dual-sim-td-lte-v4-128gb-cph1941.json @@ -0,0 +1,42 @@ +{ + "slug": "a9-2020-premium-edition-global-dual-sim-td-lte-v4-128gb-cph1941", + "name": "A9 2020 Premium Edition Global Dual SIM TD-LTE V4 128GB CPH1941", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2019-10-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "France , Italy , Netherlands , Poland , Russia , Singapore , Spain , Switzerland , Taiwan , Turkey , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2019/a9-2020-standard-edition-dual-sim-td-lte-v1-in-pk-128gb-cph1937.json b/data/smartphone/oppo/2019/a9-2020-standard-edition-dual-sim-td-lte-v1-in-pk-128gb-cph1937.json new file mode 100644 index 00000000000..4eeadbf3a2d --- /dev/null +++ b/data/smartphone/oppo/2019/a9-2020-standard-edition-dual-sim-td-lte-v1-in-pk-128gb-cph1937.json @@ -0,0 +1,42 @@ +{ + "slug": "a9-2020-standard-edition-dual-sim-td-lte-v1-in-pk-128gb-cph1937", + "name": "A9 2020 Standard Edition Dual SIM TD-LTE V1 IN PK 128GB CPH1937", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2019-10-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Pakistan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/a9-2020-standard-edition-dual-sim-td-lte-v2-my-vn-th-128gb-cph1937.json b/data/smartphone/oppo/2019/a9-2020-standard-edition-dual-sim-td-lte-v2-my-vn-th-128gb-cph1937.json new file mode 100644 index 00000000000..baff0911ecf --- /dev/null +++ b/data/smartphone/oppo/2019/a9-2020-standard-edition-dual-sim-td-lte-v2-my-vn-th-128gb-cph1937.json @@ -0,0 +1,42 @@ +{ + "slug": "a9-2020-standard-edition-dual-sim-td-lte-v2-my-vn-th-128gb-cph1937", + "name": "A9 2020 Standard Edition Dual SIM TD-LTE V2 MY VN TH 128GB CPH1937", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2019-10-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Cambodia , Malaysia , Thailand , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/a9-2020-standard-edition-global-dual-sim-td-lte-v4-128gb-cph1941.json b/data/smartphone/oppo/2019/a9-2020-standard-edition-global-dual-sim-td-lte-v4-128gb-cph1941.json new file mode 100644 index 00000000000..cddc13159cb --- /dev/null +++ b/data/smartphone/oppo/2019/a9-2020-standard-edition-global-dual-sim-td-lte-v4-128gb-cph1941.json @@ -0,0 +1,42 @@ +{ + "slug": "a9-2020-standard-edition-global-dual-sim-td-lte-v4-128gb-cph1941", + "name": "A9 2020 Standard Edition Global Dual SIM TD-LTE V4 128GB CPH1941", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2019-10-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Australia , France , Italy , Kazakhstan , Netherlands , NZ , Poland , Russia , Singapore , Spain , Switzerland , Taiwan , Turkey , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2019/a9-premium-edition-dual-sim-td-lte-cn-128gb-pcam10.json b/data/smartphone/oppo/2019/a9-premium-edition-dual-sim-td-lte-cn-128gb-pcam10.json new file mode 100644 index 00000000000..5c041fc7962 --- /dev/null +++ b/data/smartphone/oppo/2019/a9-premium-edition-dual-sim-td-lte-cn-128gb-pcam10.json @@ -0,0 +1,41 @@ +{ + "slug": "a9-premium-edition-dual-sim-td-lte-cn-128gb-pcam10", + "name": "A9 Premium Edition Dual SIM TD-LTE CN 128GB PCAM10", + "brand": "oppo", + "soc": "helio-p70", + "release_date": "2019-04-01", + "ram_gb": 6.0, + "battery_mah": 4020, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color TN-TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/a9-premium-edition-dual-sim-td-lte-cn-128gb-pcat10.json b/data/smartphone/oppo/2019/a9-premium-edition-dual-sim-td-lte-cn-128gb-pcat10.json new file mode 100644 index 00000000000..7982ee2008a --- /dev/null +++ b/data/smartphone/oppo/2019/a9-premium-edition-dual-sim-td-lte-cn-128gb-pcat10.json @@ -0,0 +1,41 @@ +{ + "slug": "a9-premium-edition-dual-sim-td-lte-cn-128gb-pcat10", + "name": "A9 Premium Edition Dual SIM TD-LTE CN 128GB PCAT10", + "brand": "oppo", + "soc": "helio-p70", + "release_date": "2019-04-01", + "ram_gb": 6.0, + "battery_mah": 4020, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color TN-TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/a9-standard-edition-dual-sim-td-lte-cn-128gb-pcam10.json b/data/smartphone/oppo/2019/a9-standard-edition-dual-sim-td-lte-cn-128gb-pcam10.json new file mode 100644 index 00000000000..eeee7791cd8 --- /dev/null +++ b/data/smartphone/oppo/2019/a9-standard-edition-dual-sim-td-lte-cn-128gb-pcam10.json @@ -0,0 +1,41 @@ +{ + "slug": "a9-standard-edition-dual-sim-td-lte-cn-128gb-pcam10", + "name": "A9 Standard Edition Dual SIM TD-LTE CN 128GB PCAM10", + "brand": "oppo", + "soc": "helio-p70", + "release_date": "2019-05-11", + "ram_gb": 4.0, + "battery_mah": 4020, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color TN-TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/a91-2019-dual-sim-td-lte-cn-128gb-pcpm00.json b/data/smartphone/oppo/2019/a91-2019-dual-sim-td-lte-cn-128gb-pcpm00.json new file mode 100644 index 00000000000..2ef3bb52918 --- /dev/null +++ b/data/smartphone/oppo/2019/a91-2019-dual-sim-td-lte-cn-128gb-pcpm00.json @@ -0,0 +1,42 @@ +{ + "slug": "a91-2019-dual-sim-td-lte-cn-128gb-pcpm00", + "name": "A91 2019 Dual SIM TD-LTE CN 128GB PCPM00", + "brand": "oppo", + "soc": "helio-p70", + "release_date": "2019-12-22", + "ram_gb": 8.0, + "battery_mah": 4025, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/a9x-dual-sim-td-lte-cn-128gb-pcem00.json b/data/smartphone/oppo/2019/a9x-dual-sim-td-lte-cn-128gb-pcem00.json new file mode 100644 index 00000000000..4967f2efaf7 --- /dev/null +++ b/data/smartphone/oppo/2019/a9x-dual-sim-td-lte-cn-128gb-pcem00.json @@ -0,0 +1,41 @@ +{ + "slug": "a9x-dual-sim-td-lte-cn-128gb-pcem00", + "name": "A9x Dual SIM TD-LTE CN 128GB PCEM00", + "brand": "oppo", + "soc": "helio-p70", + "release_date": "2019-05-21", + "ram_gb": 6.0, + "battery_mah": 4020, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color TN-TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/a9x-dual-sim-td-lte-cn-128gb-pcet00.json b/data/smartphone/oppo/2019/a9x-dual-sim-td-lte-cn-128gb-pcet00.json new file mode 100644 index 00000000000..d44c26e5bf2 --- /dev/null +++ b/data/smartphone/oppo/2019/a9x-dual-sim-td-lte-cn-128gb-pcet00.json @@ -0,0 +1,41 @@ +{ + "slug": "a9x-dual-sim-td-lte-cn-128gb-pcet00", + "name": "A9x Dual SIM TD-LTE CN 128GB PCET00", + "brand": "oppo", + "soc": "helio-p70", + "release_date": "2019-05-22", + "ram_gb": 6.0, + "battery_mah": 4020, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color TN-TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/ax5s-standard-edition-dual-sim-td-lte-tw-sg-au-64gb-cph1920.json b/data/smartphone/oppo/2019/ax5s-standard-edition-dual-sim-td-lte-tw-sg-au-64gb-cph1920.json new file mode 100644 index 00000000000..a5c954170a6 --- /dev/null +++ b/data/smartphone/oppo/2019/ax5s-standard-edition-dual-sim-td-lte-tw-sg-au-64gb-cph1920.json @@ -0,0 +1,41 @@ +{ + "slug": "ax5s-standard-edition-dual-sim-td-lte-tw-sg-au-64gb-cph1920", + "name": "AX5s Standard Edition Dual SIM TD-LTE TW SG AU 64GB CPH1920", + "brand": "oppo", + "soc": "helio-p35", + "release_date": "2019-05-01", + "ram_gb": 3.0, + "battery_mah": 4230, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , HK , NZ , Singapore , Taiwan", + "market_regions": "Asia , Australia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/f11-dual-sim-td-lte-in-id-v2-128gb-cph1911.json b/data/smartphone/oppo/2019/f11-dual-sim-td-lte-in-id-v2-128gb-cph1911.json new file mode 100644 index 00000000000..0e08756e1cf --- /dev/null +++ b/data/smartphone/oppo/2019/f11-dual-sim-td-lte-in-id-v2-128gb-cph1911.json @@ -0,0 +1,42 @@ +{ + "slug": "f11-dual-sim-td-lte-in-id-v2-128gb-cph1911", + "name": "F11 Dual SIM TD-LTE IN ID V2 128GB CPH1911", + "brand": "oppo", + "soc": "helio-p70", + "release_date": "2019-03-18", + "ram_gb": 4.0, + "battery_mah": 4020, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color TN-TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/f11-dual-sim-td-lte-in-id-v2-64gb-cph1911.json b/data/smartphone/oppo/2019/f11-dual-sim-td-lte-in-id-v2-64gb-cph1911.json new file mode 100644 index 00000000000..b4b5a70b084 --- /dev/null +++ b/data/smartphone/oppo/2019/f11-dual-sim-td-lte-in-id-v2-64gb-cph1911.json @@ -0,0 +1,42 @@ +{ + "slug": "f11-dual-sim-td-lte-in-id-v2-64gb-cph1911", + "name": "F11 Dual SIM TD-LTE IN ID V2 64GB CPH1911", + "brand": "oppo", + "soc": "helio-p70", + "release_date": "2019-05-18", + "ram_gb": 4.0, + "battery_mah": 4020, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color TN-TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/f11-premium-edition-dual-sim-td-lte-ph-v1-64gb-cph1911-cph1913.json b/data/smartphone/oppo/2019/f11-premium-edition-dual-sim-td-lte-ph-v1-64gb-cph1911-cph1913.json new file mode 100644 index 00000000000..c933825b69e --- /dev/null +++ b/data/smartphone/oppo/2019/f11-premium-edition-dual-sim-td-lte-ph-v1-64gb-cph1911-cph1913.json @@ -0,0 +1,42 @@ +{ + "slug": "f11-premium-edition-dual-sim-td-lte-ph-v1-64gb-cph1911-cph1913", + "name": "F11 Premium Edition Dual SIM TD-LTE PH V1 64GB CPH1911 / CPH1913", + "brand": "oppo", + "soc": "helio-p70", + "release_date": "2019-04-01", + "ram_gb": 6.0, + "battery_mah": 4020, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color TN-TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Philippines", + "market_regions": "Oceania" +} diff --git a/data/smartphone/oppo/2019/f11-premium-edition-dual-sim-td-lte-th-bd-mn-v3-128gb-cph1911-cph1913.json b/data/smartphone/oppo/2019/f11-premium-edition-dual-sim-td-lte-th-bd-mn-v3-128gb-cph1911-cph1913.json new file mode 100644 index 00000000000..b8c3c00678a --- /dev/null +++ b/data/smartphone/oppo/2019/f11-premium-edition-dual-sim-td-lte-th-bd-mn-v3-128gb-cph1911-cph1913.json @@ -0,0 +1,42 @@ +{ + "slug": "f11-premium-edition-dual-sim-td-lte-th-bd-mn-v3-128gb-cph1911-cph1913", + "name": "F11 Premium Edition Dual SIM TD-LTE TH BD MN V3 128GB CPH1911 / CPH1913", + "brand": "oppo", + "soc": "helio-p70", + "release_date": "2019-03-18", + "ram_gb": 6.0, + "battery_mah": 4020, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color TN-TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , Myanmar , Sri Lanka , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/f11-pro-avengers-limited-edition-dual-sim-td-lte-in-id-mn-v3-128gb-cph1969.json b/data/smartphone/oppo/2019/f11-pro-avengers-limited-edition-dual-sim-td-lte-in-id-mn-v3-128gb-cph1969.json new file mode 100644 index 00000000000..5d552f636a8 --- /dev/null +++ b/data/smartphone/oppo/2019/f11-pro-avengers-limited-edition-dual-sim-td-lte-in-id-mn-v3-128gb-cph1969.json @@ -0,0 +1,42 @@ +{ + "slug": "f11-pro-avengers-limited-edition-dual-sim-td-lte-in-id-mn-v3-128gb-cph1969", + "name": "F11 Pro Avengers Limited Edition Dual SIM TD-LTE IN ID MN V3 128GB CPH1969", + "brand": "oppo", + "soc": "helio-p70", + "release_date": "2019-05-06", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Indonesia , Myanmar", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/f11-pro-avengers-limited-edition-dual-sim-td-lte-ph-v1-128gb-cph1969.json b/data/smartphone/oppo/2019/f11-pro-avengers-limited-edition-dual-sim-td-lte-ph-v1-128gb-cph1969.json new file mode 100644 index 00000000000..6748a8bac33 --- /dev/null +++ b/data/smartphone/oppo/2019/f11-pro-avengers-limited-edition-dual-sim-td-lte-ph-v1-128gb-cph1969.json @@ -0,0 +1,42 @@ +{ + "slug": "f11-pro-avengers-limited-edition-dual-sim-td-lte-ph-v1-128gb-cph1969", + "name": "F11 Pro Avengers Limited Edition Dual SIM TD-LTE PH V1 128GB CPH1969", + "brand": "oppo", + "soc": "helio-p70", + "release_date": "2019-05-06", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Philippines", + "market_regions": "Oceania" +} diff --git a/data/smartphone/oppo/2019/f11-pro-dual-sim-td-lte-in-id-bd-th-mn-v3-128gb-cph1969.json b/data/smartphone/oppo/2019/f11-pro-dual-sim-td-lte-in-id-bd-th-mn-v3-128gb-cph1969.json new file mode 100644 index 00000000000..655f7cd5230 --- /dev/null +++ b/data/smartphone/oppo/2019/f11-pro-dual-sim-td-lte-in-id-bd-th-mn-v3-128gb-cph1969.json @@ -0,0 +1,42 @@ +{ + "slug": "f11-pro-dual-sim-td-lte-in-id-bd-th-mn-v3-128gb-cph1969", + "name": "F11 Pro Dual SIM TD-LTE IN ID BD TH MN V3 128GB CPH1969", + "brand": "oppo", + "soc": "helio-p70", + "release_date": "2019-03-14", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , India , Indonesia , Myanmar , Sri Lanka , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/f11-pro-dual-sim-td-lte-in-id-bd-th-mn-v3-64gb-cph1969.json b/data/smartphone/oppo/2019/f11-pro-dual-sim-td-lte-in-id-bd-th-mn-v3-64gb-cph1969.json new file mode 100644 index 00000000000..7df767946ad --- /dev/null +++ b/data/smartphone/oppo/2019/f11-pro-dual-sim-td-lte-in-id-bd-th-mn-v3-64gb-cph1969.json @@ -0,0 +1,42 @@ +{ + "slug": "f11-pro-dual-sim-td-lte-in-id-bd-th-mn-v3-64gb-cph1969", + "name": "F11 Pro Dual SIM TD-LTE IN ID BD TH MN V3 64GB CPH1969", + "brand": "oppo", + "soc": "helio-p70", + "release_date": "2019-03-14", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , India , Indonesia , Myanmar , Sri Lanka , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/f11-pro-dual-sim-td-lte-kh-v2-128gb-cph1969.json b/data/smartphone/oppo/2019/f11-pro-dual-sim-td-lte-kh-v2-128gb-cph1969.json new file mode 100644 index 00000000000..fd1625d4feb --- /dev/null +++ b/data/smartphone/oppo/2019/f11-pro-dual-sim-td-lte-kh-v2-128gb-cph1969.json @@ -0,0 +1,42 @@ +{ + "slug": "f11-pro-dual-sim-td-lte-kh-v2-128gb-cph1969", + "name": "F11 Pro Dual SIM TD-LTE KH V2 128GB CPH1969", + "brand": "oppo", + "soc": "helio-p70", + "release_date": "2019-04-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Cambodia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/f11-pro-dual-sim-td-lte-kh-v2-64gb-cph1969.json b/data/smartphone/oppo/2019/f11-pro-dual-sim-td-lte-kh-v2-64gb-cph1969.json new file mode 100644 index 00000000000..2cf18f70e3f --- /dev/null +++ b/data/smartphone/oppo/2019/f11-pro-dual-sim-td-lte-kh-v2-64gb-cph1969.json @@ -0,0 +1,42 @@ +{ + "slug": "f11-pro-dual-sim-td-lte-kh-v2-64gb-cph1969", + "name": "F11 Pro Dual SIM TD-LTE KH V2 64GB CPH1969", + "brand": "oppo", + "soc": "helio-p70", + "release_date": "2019-04-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Cambodia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/f11-pro-dual-sim-td-lte-ph-v1-64gb-cph1969.json b/data/smartphone/oppo/2019/f11-pro-dual-sim-td-lte-ph-v1-64gb-cph1969.json new file mode 100644 index 00000000000..ab9fe6f0baf --- /dev/null +++ b/data/smartphone/oppo/2019/f11-pro-dual-sim-td-lte-ph-v1-64gb-cph1969.json @@ -0,0 +1,42 @@ +{ + "slug": "f11-pro-dual-sim-td-lte-ph-v1-64gb-cph1969", + "name": "F11 Pro Dual SIM TD-LTE PH V1 64GB CPH1969", + "brand": "oppo", + "soc": "helio-p70", + "release_date": "2019-03-14", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Philippines", + "market_regions": "Oceania" +} diff --git a/data/smartphone/oppo/2019/f11-standard-edition-dual-sim-td-lte-th-bd-mn-v3-64gb-cph1911.json b/data/smartphone/oppo/2019/f11-standard-edition-dual-sim-td-lte-th-bd-mn-v3-64gb-cph1911.json new file mode 100644 index 00000000000..8b1b5005b45 --- /dev/null +++ b/data/smartphone/oppo/2019/f11-standard-edition-dual-sim-td-lte-th-bd-mn-v3-64gb-cph1911.json @@ -0,0 +1,42 @@ +{ + "slug": "f11-standard-edition-dual-sim-td-lte-th-bd-mn-v3-64gb-cph1911", + "name": "F11 Standard Edition Dual SIM TD-LTE TH BD MN V3 64GB CPH1911", + "brand": "oppo", + "soc": "helio-p70", + "release_date": "2019-04-01", + "ram_gb": 4.0, + "battery_mah": 4020, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color TN-TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , Myanmar , Sri Lanka , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/k1-dual-sim-td-lte-in-cph1893.json b/data/smartphone/oppo/2019/k1-dual-sim-td-lte-in-cph1893.json new file mode 100644 index 00000000000..2a9bb3496ac --- /dev/null +++ b/data/smartphone/oppo/2019/k1-dual-sim-td-lte-in-cph1893.json @@ -0,0 +1,41 @@ +{ + "slug": "k1-dual-sim-td-lte-in-cph1893", + "name": "K1 Dual SIM TD-LTE IN CPH1893", + "brand": "oppo", + "soc": "snapdragon-660", + "release_date": "2019-02-12", + "ram_gb": 4.0, + "battery_mah": 3600, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/k3-dual-sim-td-lte-apac-128gb-cph1955.json b/data/smartphone/oppo/2019/k3-dual-sim-td-lte-apac-128gb-cph1955.json new file mode 100644 index 00000000000..2afc8872fda --- /dev/null +++ b/data/smartphone/oppo/2019/k3-dual-sim-td-lte-apac-128gb-cph1955.json @@ -0,0 +1,42 @@ +{ + "slug": "k3-dual-sim-td-lte-apac-128gb-cph1955", + "name": "K3 Dual SIM TD-LTE APAC 128GB CPH1955", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2019-07-23", + "ram_gb": 8.0, + "battery_mah": 3765, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Indonesia , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/k3-dual-sim-td-lte-apac-64gb-cph1955.json b/data/smartphone/oppo/2019/k3-dual-sim-td-lte-apac-64gb-cph1955.json new file mode 100644 index 00000000000..ee2d198fbef --- /dev/null +++ b/data/smartphone/oppo/2019/k3-dual-sim-td-lte-apac-64gb-cph1955.json @@ -0,0 +1,42 @@ +{ + "slug": "k3-dual-sim-td-lte-apac-64gb-cph1955", + "name": "K3 Dual SIM TD-LTE APAC 64GB CPH1955", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2019-07-23", + "ram_gb": 6.0, + "battery_mah": 3765, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Indonesia , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/k3-premium-edition-dual-sim-td-lte-cn-128gb-pcgm00.json b/data/smartphone/oppo/2019/k3-premium-edition-dual-sim-td-lte-cn-128gb-pcgm00.json new file mode 100644 index 00000000000..7149da891ee --- /dev/null +++ b/data/smartphone/oppo/2019/k3-premium-edition-dual-sim-td-lte-cn-128gb-pcgm00.json @@ -0,0 +1,42 @@ +{ + "slug": "k3-premium-edition-dual-sim-td-lte-cn-128gb-pcgm00", + "name": "K3 Premium Edition Dual SIM TD-LTE CN 128GB PCGM00", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2019-05-23", + "ram_gb": 8.0, + "battery_mah": 3765, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/k3-premium-edition-dual-sim-td-lte-cn-128gb-pcgt00.json b/data/smartphone/oppo/2019/k3-premium-edition-dual-sim-td-lte-cn-128gb-pcgt00.json new file mode 100644 index 00000000000..da173340051 --- /dev/null +++ b/data/smartphone/oppo/2019/k3-premium-edition-dual-sim-td-lte-cn-128gb-pcgt00.json @@ -0,0 +1,42 @@ +{ + "slug": "k3-premium-edition-dual-sim-td-lte-cn-128gb-pcgt00", + "name": "K3 Premium Edition Dual SIM TD-LTE CN 128GB PCGT00", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2019-05-23", + "ram_gb": 8.0, + "battery_mah": 3765, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/k3-premium-edition-dual-sim-td-lte-cn-256gb-pcgm00.json b/data/smartphone/oppo/2019/k3-premium-edition-dual-sim-td-lte-cn-256gb-pcgm00.json new file mode 100644 index 00000000000..3c84b827a44 --- /dev/null +++ b/data/smartphone/oppo/2019/k3-premium-edition-dual-sim-td-lte-cn-256gb-pcgm00.json @@ -0,0 +1,42 @@ +{ + "slug": "k3-premium-edition-dual-sim-td-lte-cn-256gb-pcgm00", + "name": "K3 Premium Edition Dual SIM TD-LTE CN 256GB PCGM00", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2019-05-23", + "ram_gb": 8.0, + "battery_mah": 3765, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/k3-standard-edition-dual-sim-td-lte-cn-64gb-pcgm00.json b/data/smartphone/oppo/2019/k3-standard-edition-dual-sim-td-lte-cn-64gb-pcgm00.json new file mode 100644 index 00000000000..1e05f9b3c6f --- /dev/null +++ b/data/smartphone/oppo/2019/k3-standard-edition-dual-sim-td-lte-cn-64gb-pcgm00.json @@ -0,0 +1,42 @@ +{ + "slug": "k3-standard-edition-dual-sim-td-lte-cn-64gb-pcgm00", + "name": "K3 Standard Edition Dual SIM TD-LTE CN 64GB PCGM00", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2019-05-23", + "ram_gb": 6.0, + "battery_mah": 3765, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/k5-2019-premium-edition-dual-sim-td-lte-cn-128gb-pcnm00.json b/data/smartphone/oppo/2019/k5-2019-premium-edition-dual-sim-td-lte-cn-128gb-pcnm00.json new file mode 100644 index 00000000000..a773e545580 --- /dev/null +++ b/data/smartphone/oppo/2019/k5-2019-premium-edition-dual-sim-td-lte-cn-128gb-pcnm00.json @@ -0,0 +1,42 @@ +{ + "slug": "k5-2019-premium-edition-dual-sim-td-lte-cn-128gb-pcnm00", + "name": "K5 2019 Premium Edition Dual SIM TD-LTE CN 128GB PCNM00", + "brand": "oppo", + "soc": "snapdragon-730", + "release_date": "2019-10-17", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/k5-2019-premium-edition-dual-sim-td-lte-cn-256gb-pcnm00.json b/data/smartphone/oppo/2019/k5-2019-premium-edition-dual-sim-td-lte-cn-256gb-pcnm00.json new file mode 100644 index 00000000000..365127938dd --- /dev/null +++ b/data/smartphone/oppo/2019/k5-2019-premium-edition-dual-sim-td-lte-cn-256gb-pcnm00.json @@ -0,0 +1,42 @@ +{ + "slug": "k5-2019-premium-edition-dual-sim-td-lte-cn-256gb-pcnm00", + "name": "K5 2019 Premium Edition Dual SIM TD-LTE CN 256GB PCNM00", + "brand": "oppo", + "soc": "snapdragon-730", + "release_date": "2019-10-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/k5-2019-standard-edition-dual-sim-td-lte-cn-128gb-pcnm00.json b/data/smartphone/oppo/2019/k5-2019-standard-edition-dual-sim-td-lte-cn-128gb-pcnm00.json new file mode 100644 index 00000000000..845bc798d1e --- /dev/null +++ b/data/smartphone/oppo/2019/k5-2019-standard-edition-dual-sim-td-lte-cn-128gb-pcnm00.json @@ -0,0 +1,42 @@ +{ + "slug": "k5-2019-standard-edition-dual-sim-td-lte-cn-128gb-pcnm00", + "name": "K5 2019 Standard Edition Dual SIM TD-LTE CN 128GB PCNM00", + "brand": "oppo", + "soc": "snapdragon-730", + "release_date": "2019-10-17", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/realme-3-global-dual-sim-td-lte-32gb-rmx1821.json b/data/smartphone/oppo/2019/realme-3-global-dual-sim-td-lte-32gb-rmx1821.json new file mode 100644 index 00000000000..309de1e00d9 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-3-global-dual-sim-td-lte-32gb-rmx1821.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-3-global-dual-sim-td-lte-32gb-rmx1821", + "name": "Realme 3 Global Dual SIM TD-LTE 32GB RMX1821", + "brand": "oppo", + "soc": "helio-p60", + "release_date": "2019-05-08", + "ram_gb": 3.0, + "battery_mah": 4230, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Egypt , Indonesia , Malaysia , Philippines , Russia , Thailand , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Oceania , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/realme-3-global-dual-sim-td-lte-64gb-rmx1821.json b/data/smartphone/oppo/2019/realme-3-global-dual-sim-td-lte-64gb-rmx1821.json new file mode 100644 index 00000000000..54e623680be --- /dev/null +++ b/data/smartphone/oppo/2019/realme-3-global-dual-sim-td-lte-64gb-rmx1821.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-3-global-dual-sim-td-lte-64gb-rmx1821", + "name": "Realme 3 Global Dual SIM TD-LTE 64GB RMX1821", + "brand": "oppo", + "soc": "helio-p60", + "release_date": "2019-05-08", + "ram_gb": 4.0, + "battery_mah": 4230, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , Egypt , Indonesia , Malaysia , Philippines , Russia , Taiwan , Thailand , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Oceania , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/realme-3-premium-edition-dual-sim-td-lte-in-32gb-rmx1825.json b/data/smartphone/oppo/2019/realme-3-premium-edition-dual-sim-td-lte-in-32gb-rmx1825.json new file mode 100644 index 00000000000..2f00eecbb84 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-3-premium-edition-dual-sim-td-lte-in-32gb-rmx1825.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-3-premium-edition-dual-sim-td-lte-in-32gb-rmx1825", + "name": "Realme 3 Premium Edition Dual SIM TD-LTE IN 32GB RMX1825", + "brand": "oppo", + "soc": "helio-p70", + "release_date": "2019-05-02", + "ram_gb": 4.0, + "battery_mah": 4230, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Pakistan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/realme-3-premium-edition-dual-sim-td-lte-in-64gb-rmx1825.json b/data/smartphone/oppo/2019/realme-3-premium-edition-dual-sim-td-lte-in-64gb-rmx1825.json new file mode 100644 index 00000000000..084f6f868da --- /dev/null +++ b/data/smartphone/oppo/2019/realme-3-premium-edition-dual-sim-td-lte-in-64gb-rmx1825.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-3-premium-edition-dual-sim-td-lte-in-64gb-rmx1825", + "name": "Realme 3 Premium Edition Dual SIM TD-LTE IN 64GB RMX1825", + "brand": "oppo", + "soc": "helio-p70", + "release_date": "2019-03-12", + "ram_gb": 4.0, + "battery_mah": 4230, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Pakistan , Singapore", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/realme-3-pro-global-dual-sim-td-lte-128gb-rmx1853.json b/data/smartphone/oppo/2019/realme-3-pro-global-dual-sim-td-lte-128gb-rmx1853.json new file mode 100644 index 00000000000..f0693f443c8 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-3-pro-global-dual-sim-td-lte-128gb-rmx1853.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-3-pro-global-dual-sim-td-lte-128gb-rmx1853", + "name": "Realme 3 Pro Global Dual SIM TD-LTE 128GB RMX1853", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2019-05-01", + "ram_gb": 6.0, + "battery_mah": 4045, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Egypt , Malaysia , Russia , Taiwan", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/realme-3-pro-global-dual-sim-td-lte-64gb-rmx1853.json b/data/smartphone/oppo/2019/realme-3-pro-global-dual-sim-td-lte-64gb-rmx1853.json new file mode 100644 index 00000000000..8e15a843f4f --- /dev/null +++ b/data/smartphone/oppo/2019/realme-3-pro-global-dual-sim-td-lte-64gb-rmx1853.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-3-pro-global-dual-sim-td-lte-64gb-rmx1853", + "name": "Realme 3 Pro Global Dual SIM TD-LTE 64GB RMX1853", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2019-05-01", + "ram_gb": 4.0, + "battery_mah": 4045, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Egypt , Malaysia , Russia , Taiwan", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/realme-3-pro-premium-edition-dual-sim-td-lte-apac-128gb-rmx1851.json b/data/smartphone/oppo/2019/realme-3-pro-premium-edition-dual-sim-td-lte-apac-128gb-rmx1851.json new file mode 100644 index 00000000000..ca9e38f29b3 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-3-pro-premium-edition-dual-sim-td-lte-apac-128gb-rmx1851.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-3-pro-premium-edition-dual-sim-td-lte-apac-128gb-rmx1851", + "name": "Realme 3 Pro Premium Edition Dual SIM TD-LTE APAC 128GB RMX1851", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2019-04-01", + "ram_gb": 6.0, + "battery_mah": 4045, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Indonesia , Philippines", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/realme-3-pro-premium-edition-dual-sim-td-lte-apac-64gb-rmx1851.json b/data/smartphone/oppo/2019/realme-3-pro-premium-edition-dual-sim-td-lte-apac-64gb-rmx1851.json new file mode 100644 index 00000000000..6d55810eacc --- /dev/null +++ b/data/smartphone/oppo/2019/realme-3-pro-premium-edition-dual-sim-td-lte-apac-64gb-rmx1851.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-3-pro-premium-edition-dual-sim-td-lte-apac-64gb-rmx1851", + "name": "Realme 3 Pro Premium Edition Dual SIM TD-LTE APAC 64GB RMX1851", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2019-04-01", + "ram_gb": 6.0, + "battery_mah": 4045, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Indonesia , Philippines , Thailand", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/realme-3-pro-standard-edition-dual-sim-td-lte-apac-64gb-rmx1851.json b/data/smartphone/oppo/2019/realme-3-pro-standard-edition-dual-sim-td-lte-apac-64gb-rmx1851.json new file mode 100644 index 00000000000..057a60e9390 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-3-pro-standard-edition-dual-sim-td-lte-apac-64gb-rmx1851.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-3-pro-standard-edition-dual-sim-td-lte-apac-64gb-rmx1851", + "name": "Realme 3 Pro Standard Edition Dual SIM TD-LTE APAC 64GB RMX1851", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2019-04-01", + "ram_gb": 4.0, + "battery_mah": 4045, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Indonesia , Philippines , Thailand", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/realme-3-standard-edition-dual-sim-td-lte-in-32gb-rmx1825.json b/data/smartphone/oppo/2019/realme-3-standard-edition-dual-sim-td-lte-in-32gb-rmx1825.json new file mode 100644 index 00000000000..67a3c07dee5 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-3-standard-edition-dual-sim-td-lte-in-32gb-rmx1825.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-3-standard-edition-dual-sim-td-lte-in-32gb-rmx1825", + "name": "Realme 3 Standard Edition Dual SIM TD-LTE IN 32GB RMX1825", + "brand": "oppo", + "soc": "helio-p70", + "release_date": "2019-03-12", + "ram_gb": 3.0, + "battery_mah": 4230, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Pakistan , Singapore", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/realme-3i-dual-sim-td-lte-in-32gb-rmx1827.json b/data/smartphone/oppo/2019/realme-3i-dual-sim-td-lte-in-32gb-rmx1827.json new file mode 100644 index 00000000000..8a019ba3e56 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-3i-dual-sim-td-lte-in-32gb-rmx1827.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-3i-dual-sim-td-lte-in-32gb-rmx1827", + "name": "Realme 3i Dual SIM TD-LTE IN 32GB RMX1827", + "brand": "oppo", + "soc": "helio-p60", + "release_date": "2019-07-23", + "ram_gb": 3.0, + "battery_mah": 4230, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/realme-3i-dual-sim-td-lte-in-64gb-rmx1827.json b/data/smartphone/oppo/2019/realme-3i-dual-sim-td-lte-in-64gb-rmx1827.json new file mode 100644 index 00000000000..0063e6db42a --- /dev/null +++ b/data/smartphone/oppo/2019/realme-3i-dual-sim-td-lte-in-64gb-rmx1827.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-3i-dual-sim-td-lte-in-64gb-rmx1827", + "name": "Realme 3i Dual SIM TD-LTE IN 64GB RMX1827", + "brand": "oppo", + "soc": "helio-p60", + "release_date": "2019-07-23", + "ram_gb": 4.0, + "battery_mah": 4230, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/realme-5-premium-edition-dual-sim-td-lte-v1-in-id-ph-pk-th-vn-128gb-rmx1911.json b/data/smartphone/oppo/2019/realme-5-premium-edition-dual-sim-td-lte-v1-in-id-ph-pk-th-vn-128gb-rmx1911.json new file mode 100644 index 00000000000..3d78155f054 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-5-premium-edition-dual-sim-td-lte-v1-in-id-ph-pk-th-vn-128gb-rmx1911.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-5-premium-edition-dual-sim-td-lte-v1-in-id-ph-pk-th-vn-128gb-rmx1911", + "name": "Realme 5 Premium Edition Dual SIM TD-LTE V1 IN ID PH PK TH VN 128GB RMX1911", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2019-09-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Indonesia , Pakistan , Philippines , Thailand , Vietnam", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/realme-5-premium-edition-dual-sim-td-lte-v1-in-th-64gb-rmx1911.json b/data/smartphone/oppo/2019/realme-5-premium-edition-dual-sim-td-lte-v1-in-th-64gb-rmx1911.json new file mode 100644 index 00000000000..7cc94f2bcb0 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-5-premium-edition-dual-sim-td-lte-v1-in-th-64gb-rmx1911.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-5-premium-edition-dual-sim-td-lte-v1-in-th-64gb-rmx1911", + "name": "Realme 5 Premium Edition Dual SIM TD-LTE V1 IN TH 64GB RMX1911", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2019-08-27", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Thailand , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/realme-5-premium-edition-dual-sim-td-lte-v2-eg-v2-64gb-rmx1911.json b/data/smartphone/oppo/2019/realme-5-premium-edition-dual-sim-td-lte-v2-eg-v2-64gb-rmx1911.json new file mode 100644 index 00000000000..60d534a62df --- /dev/null +++ b/data/smartphone/oppo/2019/realme-5-premium-edition-dual-sim-td-lte-v2-eg-v2-64gb-rmx1911.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-5-premium-edition-dual-sim-td-lte-v2-eg-v2-64gb-rmx1911", + "name": "Realme 5 Premium Edition Dual SIM TD-LTE V2 EG V2 64GB RMX1911", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2019-08-27", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Egypt", + "market_regions": "Africa" +} diff --git a/data/smartphone/oppo/2019/realme-5-premium-edition-dual-sim-td-lte-v2-eu-au-sg-my-eg-128gb-rmx1911.json b/data/smartphone/oppo/2019/realme-5-premium-edition-dual-sim-td-lte-v2-eu-au-sg-my-eg-128gb-rmx1911.json new file mode 100644 index 00000000000..5924587f247 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-5-premium-edition-dual-sim-td-lte-v2-eu-au-sg-my-eg-128gb-rmx1911.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-5-premium-edition-dual-sim-td-lte-v2-eu-au-sg-my-eg-128gb-rmx1911", + "name": "Realme 5 Premium Edition Dual SIM TD-LTE V2 EU AU SG MY EG 128GB RMX1911", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2019-09-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , Egypt , Malaysia , Russia , Singapore , Spain", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2019/realme-5-pro-premium-edition-dual-sim-td-lte-in-64gb-rmx1971.json b/data/smartphone/oppo/2019/realme-5-pro-premium-edition-dual-sim-td-lte-in-64gb-rmx1971.json new file mode 100644 index 00000000000..48a96f5f39a --- /dev/null +++ b/data/smartphone/oppo/2019/realme-5-pro-premium-edition-dual-sim-td-lte-in-64gb-rmx1971.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-5-pro-premium-edition-dual-sim-td-lte-in-64gb-rmx1971", + "name": "Realme 5 Pro Premium Edition Dual SIM TD-LTE IN 64GB RMX1971", + "brand": "oppo", + "soc": "snapdragon-712", + "release_date": "2019-09-11", + "ram_gb": 6.0, + "battery_mah": 4035, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/realme-5-pro-premium-edition-dual-sim-td-lte-in-th-128gb-rmx1971.json b/data/smartphone/oppo/2019/realme-5-pro-premium-edition-dual-sim-td-lte-in-th-128gb-rmx1971.json new file mode 100644 index 00000000000..98feace888d --- /dev/null +++ b/data/smartphone/oppo/2019/realme-5-pro-premium-edition-dual-sim-td-lte-in-th-128gb-rmx1971.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-5-pro-premium-edition-dual-sim-td-lte-in-th-128gb-rmx1971", + "name": "Realme 5 Pro Premium Edition Dual SIM TD-LTE IN TH 128GB RMX1971", + "brand": "oppo", + "soc": "snapdragon-712", + "release_date": "2019-09-11", + "ram_gb": 8.0, + "battery_mah": 4035, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/realme-5-pro-premium-edition-global-dual-sim-td-lte-128gb-rmx1971.json b/data/smartphone/oppo/2019/realme-5-pro-premium-edition-global-dual-sim-td-lte-128gb-rmx1971.json new file mode 100644 index 00000000000..6059f2478fb --- /dev/null +++ b/data/smartphone/oppo/2019/realme-5-pro-premium-edition-global-dual-sim-td-lte-128gb-rmx1971.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-5-pro-premium-edition-global-dual-sim-td-lte-128gb-rmx1971", + "name": "Realme 5 Pro Premium Edition Global Dual SIM TD-LTE 128GB RMX1971", + "brand": "oppo", + "soc": "snapdragon-712", + "release_date": "2019-10-18", + "ram_gb": 8.0, + "battery_mah": 4035, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belgium , France , Italy , Netherlands , Poland , Portugal , Spain , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/oppo/2019/realme-5-pro-standard-edition-dual-sim-td-lte-in-64gb-rmx1971.json b/data/smartphone/oppo/2019/realme-5-pro-standard-edition-dual-sim-td-lte-in-64gb-rmx1971.json new file mode 100644 index 00000000000..f33a098b3fb --- /dev/null +++ b/data/smartphone/oppo/2019/realme-5-pro-standard-edition-dual-sim-td-lte-in-64gb-rmx1971.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-5-pro-standard-edition-dual-sim-td-lte-in-64gb-rmx1971", + "name": "Realme 5 Pro Standard Edition Dual SIM TD-LTE IN 64GB RMX1971", + "brand": "oppo", + "soc": "snapdragon-712", + "release_date": "2019-09-11", + "ram_gb": 4.0, + "battery_mah": 4035, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/realme-5-pro-standard-edition-dual-sim-td-lte-th-128gb-rmx1971.json b/data/smartphone/oppo/2019/realme-5-pro-standard-edition-dual-sim-td-lte-th-128gb-rmx1971.json new file mode 100644 index 00000000000..140960588e6 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-5-pro-standard-edition-dual-sim-td-lte-th-128gb-rmx1971.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-5-pro-standard-edition-dual-sim-td-lte-th-128gb-rmx1971", + "name": "Realme 5 Pro Standard Edition Dual SIM TD-LTE TH 128GB RMX1971", + "brand": "oppo", + "soc": "snapdragon-712", + "release_date": "2019-09-11", + "ram_gb": 4.0, + "battery_mah": 4035, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/realme-5-pro-standard-edition-global-dual-sim-td-lte-128gb-rmx1971.json b/data/smartphone/oppo/2019/realme-5-pro-standard-edition-global-dual-sim-td-lte-128gb-rmx1971.json new file mode 100644 index 00000000000..81ea84f21c9 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-5-pro-standard-edition-global-dual-sim-td-lte-128gb-rmx1971.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-5-pro-standard-edition-global-dual-sim-td-lte-128gb-rmx1971", + "name": "Realme 5 Pro Standard Edition Global Dual SIM TD-LTE 128GB RMX1971", + "brand": "oppo", + "soc": "snapdragon-712", + "release_date": "2019-10-18", + "ram_gb": 4.0, + "battery_mah": 4035, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belgium , France , Italy , Netherlands , Poland , Portugal , Spain , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/oppo/2019/realme-5-standard-edition-dual-sim-td-lte-v1-id-ph-64gb-rmx1911.json b/data/smartphone/oppo/2019/realme-5-standard-edition-dual-sim-td-lte-v1-id-ph-64gb-rmx1911.json new file mode 100644 index 00000000000..ccd8e2031f1 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-5-standard-edition-dual-sim-td-lte-v1-id-ph-64gb-rmx1911.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-5-standard-edition-dual-sim-td-lte-v1-id-ph-64gb-rmx1911", + "name": "Realme 5 Standard Edition Dual SIM TD-LTE V1 ID PH 64GB RMX1911", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2019-08-27", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Indonesia , Philippines", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/realme-5-standard-edition-dual-sim-td-lte-v1-in-id-ph-th-vn-32gb-rmx1911.json b/data/smartphone/oppo/2019/realme-5-standard-edition-dual-sim-td-lte-v1-in-id-ph-th-vn-32gb-rmx1911.json new file mode 100644 index 00000000000..f26a3300187 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-5-standard-edition-dual-sim-td-lte-v1-in-id-ph-th-vn-32gb-rmx1911.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-5-standard-edition-dual-sim-td-lte-v1-in-id-ph-th-vn-32gb-rmx1911", + "name": "Realme 5 Standard Edition Dual SIM TD-LTE V1 IN ID PH TH VN 32GB RMX1911", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2019-08-27", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Indonesia , Philippines , Thailand , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/realme-5-standard-edition-dual-sim-td-lte-v2-my-32gb-rmx1911.json b/data/smartphone/oppo/2019/realme-5-standard-edition-dual-sim-td-lte-v2-my-32gb-rmx1911.json new file mode 100644 index 00000000000..186a143f14b --- /dev/null +++ b/data/smartphone/oppo/2019/realme-5-standard-edition-dual-sim-td-lte-v2-my-32gb-rmx1911.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-5-standard-edition-dual-sim-td-lte-v2-my-32gb-rmx1911", + "name": "Realme 5 Standard Edition Dual SIM TD-LTE V2 MY 32GB RMX1911", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2019-08-27", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Malaysia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/realme-5-standard-edition-dual-sim-td-lte-v2-ru-64gb-rmx1911.json b/data/smartphone/oppo/2019/realme-5-standard-edition-dual-sim-td-lte-v2-ru-64gb-rmx1911.json new file mode 100644 index 00000000000..973d90c8741 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-5-standard-edition-dual-sim-td-lte-v2-ru-64gb-rmx1911.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-5-standard-edition-dual-sim-td-lte-v2-ru-64gb-rmx1911", + "name": "Realme 5 Standard Edition Dual SIM TD-LTE V2 RU 64GB RMX1911", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2019-11-21", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Russia , Spain", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/oppo/2019/realme-5-standard-edition-dual-sim-td-lte-v2-sg-my-64gb-rmx1911.json b/data/smartphone/oppo/2019/realme-5-standard-edition-dual-sim-td-lte-v2-sg-my-64gb-rmx1911.json new file mode 100644 index 00000000000..6f289ced128 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-5-standard-edition-dual-sim-td-lte-v2-sg-my-64gb-rmx1911.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-5-standard-edition-dual-sim-td-lte-v2-sg-my-64gb-rmx1911", + "name": "Realme 5 Standard Edition Dual SIM TD-LTE V2 SG MY 64GB RMX1911", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2019-08-27", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Malaysia , Singapore", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/realme-5s-dual-sim-td-lte-v1-in-id-th-128gb-rmx1925.json b/data/smartphone/oppo/2019/realme-5s-dual-sim-td-lte-v1-in-id-th-128gb-rmx1925.json new file mode 100644 index 00000000000..1edb11d48aa --- /dev/null +++ b/data/smartphone/oppo/2019/realme-5s-dual-sim-td-lte-v1-in-id-th-128gb-rmx1925.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-5s-dual-sim-td-lte-v1-in-id-th-128gb-rmx1925", + "name": "Realme 5s Dual SIM TD-LTE V1 IN ID TH 128GB RMX1925", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2019-12-12", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Indonesia , Thailand , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/realme-5s-dual-sim-td-lte-v1-in-th-64gb-rmx1925.json b/data/smartphone/oppo/2019/realme-5s-dual-sim-td-lte-v1-in-th-64gb-rmx1925.json new file mode 100644 index 00000000000..d941064c6d5 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-5s-dual-sim-td-lte-v1-in-th-64gb-rmx1925.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-5s-dual-sim-td-lte-v1-in-th-64gb-rmx1925", + "name": "Realme 5s Dual SIM TD-LTE V1 IN TH 64GB RMX1925", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2019-12-12", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/realme-c1-2019-premium-edition-dual-sim-td-lte-in-32gb-rmx1811.json b/data/smartphone/oppo/2019/realme-c1-2019-premium-edition-dual-sim-td-lte-in-32gb-rmx1811.json new file mode 100644 index 00000000000..a44a89f554d --- /dev/null +++ b/data/smartphone/oppo/2019/realme-c1-2019-premium-edition-dual-sim-td-lte-in-32gb-rmx1811.json @@ -0,0 +1,41 @@ +{ + "slug": "realme-c1-2019-premium-edition-dual-sim-td-lte-in-32gb-rmx1811", + "name": "Realme C1 2019 Premium Edition Dual SIM TD-LTE IN 32GB RMX1811", + "brand": "oppo", + "soc": "snapdragon-450", + "release_date": "2019-02-06", + "ram_gb": 3.0, + "battery_mah": 4230, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/realme-c1-2019-standard-edition-dual-sim-td-lte-in-32gb-rmx1811.json b/data/smartphone/oppo/2019/realme-c1-2019-standard-edition-dual-sim-td-lte-in-32gb-rmx1811.json new file mode 100644 index 00000000000..e5db6047208 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-c1-2019-standard-edition-dual-sim-td-lte-in-32gb-rmx1811.json @@ -0,0 +1,41 @@ +{ + "slug": "realme-c1-2019-standard-edition-dual-sim-td-lte-in-32gb-rmx1811", + "name": "Realme C1 2019 Standard Edition Dual SIM TD-LTE IN 32GB RMX1811", + "brand": "oppo", + "soc": "snapdragon-450", + "release_date": "2019-02-06", + "ram_gb": 2.0, + "battery_mah": 4230, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/realme-c2-premium-edition-dual-sim-td-lte-in-32gb-rmx1941.json b/data/smartphone/oppo/2019/realme-c2-premium-edition-dual-sim-td-lte-in-32gb-rmx1941.json new file mode 100644 index 00000000000..66816262efd --- /dev/null +++ b/data/smartphone/oppo/2019/realme-c2-premium-edition-dual-sim-td-lte-in-32gb-rmx1941.json @@ -0,0 +1,41 @@ +{ + "slug": "realme-c2-premium-edition-dual-sim-td-lte-in-32gb-rmx1941", + "name": "Realme C2 Premium Edition Dual SIM TD-LTE IN 32GB RMX1941", + "brand": "oppo", + "soc": "helio-p22", + "release_date": "2019-05-16", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Egypt , India , Indonesia , Malaysia , Philippines , Russia , Singapore , Thailand , Vietnam", + "market_regions": "Africa , Asia , Europe , Middle East" +} diff --git a/data/smartphone/oppo/2019/realme-c2-premium-edition-dual-sim-td-lte-vn-my-32gb-rmx1941.json b/data/smartphone/oppo/2019/realme-c2-premium-edition-dual-sim-td-lte-vn-my-32gb-rmx1941.json new file mode 100644 index 00000000000..f55e7031ade --- /dev/null +++ b/data/smartphone/oppo/2019/realme-c2-premium-edition-dual-sim-td-lte-vn-my-32gb-rmx1941.json @@ -0,0 +1,41 @@ +{ + "slug": "realme-c2-premium-edition-dual-sim-td-lte-vn-my-32gb-rmx1941", + "name": "Realme C2 Premium Edition Dual SIM TD-LTE VN MY 32GB RMX1941", + "brand": "oppo", + "soc": "helio-p22", + "release_date": "2019-05-16", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Malaysia , Vietnam", + "market_regions": "Asia , Middle East , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/realme-c2-standard-edition-dual-sim-td-lte-in-32gb-rmx1941.json b/data/smartphone/oppo/2019/realme-c2-standard-edition-dual-sim-td-lte-in-32gb-rmx1941.json new file mode 100644 index 00000000000..32b3f940c64 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-c2-standard-edition-dual-sim-td-lte-in-32gb-rmx1941.json @@ -0,0 +1,41 @@ +{ + "slug": "realme-c2-standard-edition-dual-sim-td-lte-in-32gb-rmx1941", + "name": "Realme C2 Standard Edition Dual SIM TD-LTE IN 32GB RMX1941", + "brand": "oppo", + "soc": "helio-p22", + "release_date": "2019-05-16", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/realme-c2-standard-edition-dual-sim-td-lte-in-id-16gb-rmx1945.json b/data/smartphone/oppo/2019/realme-c2-standard-edition-dual-sim-td-lte-in-id-16gb-rmx1945.json new file mode 100644 index 00000000000..f6cd8aab948 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-c2-standard-edition-dual-sim-td-lte-in-id-16gb-rmx1945.json @@ -0,0 +1,41 @@ +{ + "slug": "realme-c2-standard-edition-dual-sim-td-lte-in-id-16gb-rmx1945", + "name": "Realme C2 Standard Edition Dual SIM TD-LTE IN ID 16GB RMX1945", + "brand": "oppo", + "soc": "helio-p22", + "release_date": "2019-05-16", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Egypt , India , Indonesia , Malaysia , Philippines , Russia , Singapore , Thailand , Vietnam", + "market_regions": "Africa , Asia , Europe , Middle East" +} diff --git a/data/smartphone/oppo/2019/realme-c2-standard-edition-dual-sim-td-lte-ru-16gb-rmx1945.json b/data/smartphone/oppo/2019/realme-c2-standard-edition-dual-sim-td-lte-ru-16gb-rmx1945.json new file mode 100644 index 00000000000..4d11d5e8f3a --- /dev/null +++ b/data/smartphone/oppo/2019/realme-c2-standard-edition-dual-sim-td-lte-ru-16gb-rmx1945.json @@ -0,0 +1,41 @@ +{ + "slug": "realme-c2-standard-edition-dual-sim-td-lte-ru-16gb-rmx1945", + "name": "Realme C2 Standard Edition Dual SIM TD-LTE RU 16GB RMX1945", + "brand": "oppo", + "soc": "helio-p22", + "release_date": "2019-05-16", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Russia", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/oppo/2019/realme-c2-standard-edition-dual-sim-td-lte-vn-my-16gb-rmx1945.json b/data/smartphone/oppo/2019/realme-c2-standard-edition-dual-sim-td-lte-vn-my-16gb-rmx1945.json new file mode 100644 index 00000000000..416c78fbf5c --- /dev/null +++ b/data/smartphone/oppo/2019/realme-c2-standard-edition-dual-sim-td-lte-vn-my-16gb-rmx1945.json @@ -0,0 +1,41 @@ +{ + "slug": "realme-c2-standard-edition-dual-sim-td-lte-vn-my-16gb-rmx1945", + "name": "Realme C2 Standard Edition Dual SIM TD-LTE VN MY 16GB RMX1945", + "brand": "oppo", + "soc": "helio-p22", + "release_date": "2019-05-16", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Malaysia , Vietnam", + "market_regions": "Asia , Middle East , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/realme-c2-standard-edition-dual-sim-td-lte-vn-my-32gb-rmx1941.json b/data/smartphone/oppo/2019/realme-c2-standard-edition-dual-sim-td-lte-vn-my-32gb-rmx1941.json new file mode 100644 index 00000000000..c9cf1da6b94 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-c2-standard-edition-dual-sim-td-lte-vn-my-32gb-rmx1941.json @@ -0,0 +1,41 @@ +{ + "slug": "realme-c2-standard-edition-dual-sim-td-lte-vn-my-32gb-rmx1941", + "name": "Realme C2 Standard Edition Dual SIM TD-LTE VN MY 32GB RMX1941", + "brand": "oppo", + "soc": "helio-p22", + "release_date": "2019-05-16", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Malaysia , Vietnam", + "market_regions": "Asia , Middle East , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/realme-q-premium-edition-dual-sim-td-lte-cn-128gb-rmx1971.json b/data/smartphone/oppo/2019/realme-q-premium-edition-dual-sim-td-lte-cn-128gb-rmx1971.json new file mode 100644 index 00000000000..44651d3cc07 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-q-premium-edition-dual-sim-td-lte-cn-128gb-rmx1971.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-q-premium-edition-dual-sim-td-lte-cn-128gb-rmx1971", + "name": "Realme Q Premium Edition Dual SIM TD-LTE CN 128GB RMX1971", + "brand": "oppo", + "soc": "snapdragon-712", + "release_date": "2019-09-11", + "ram_gb": 8.0, + "battery_mah": 4035, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/realme-q-premium-edition-dual-sim-td-lte-cn-64gb-rmx1971.json b/data/smartphone/oppo/2019/realme-q-premium-edition-dual-sim-td-lte-cn-64gb-rmx1971.json new file mode 100644 index 00000000000..0f245eb3362 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-q-premium-edition-dual-sim-td-lte-cn-64gb-rmx1971.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-q-premium-edition-dual-sim-td-lte-cn-64gb-rmx1971", + "name": "Realme Q Premium Edition Dual SIM TD-LTE CN 64GB RMX1971", + "brand": "oppo", + "soc": "snapdragon-712", + "release_date": "2019-09-11", + "ram_gb": 6.0, + "battery_mah": 4035, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/realme-q-standard-edition-dual-sim-td-lte-cn-64gb-rmx1971.json b/data/smartphone/oppo/2019/realme-q-standard-edition-dual-sim-td-lte-cn-64gb-rmx1971.json new file mode 100644 index 00000000000..52049f28f4d --- /dev/null +++ b/data/smartphone/oppo/2019/realme-q-standard-edition-dual-sim-td-lte-cn-64gb-rmx1971.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-q-standard-edition-dual-sim-td-lte-cn-64gb-rmx1971", + "name": "Realme Q Standard Edition Dual SIM TD-LTE CN 64GB RMX1971", + "brand": "oppo", + "soc": "snapdragon-712", + "release_date": "2019-09-11", + "ram_gb": 4.0, + "battery_mah": 4035, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/realme-x-lite-premium-edition-dual-sim-td-lte-cn-128gb-rmx1851.json b/data/smartphone/oppo/2019/realme-x-lite-premium-edition-dual-sim-td-lte-cn-128gb-rmx1851.json new file mode 100644 index 00000000000..0eed8653c11 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-x-lite-premium-edition-dual-sim-td-lte-cn-128gb-rmx1851.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-x-lite-premium-edition-dual-sim-td-lte-cn-128gb-rmx1851", + "name": "Realme X Lite Premium Edition Dual SIM TD-LTE CN 128GB RMX1851", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2019-05-01", + "ram_gb": 6.0, + "battery_mah": 4045, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/realme-x-lite-premium-edition-dual-sim-td-lte-cn-64gb-rmx1851.json b/data/smartphone/oppo/2019/realme-x-lite-premium-edition-dual-sim-td-lte-cn-64gb-rmx1851.json new file mode 100644 index 00000000000..7c8c901b65d --- /dev/null +++ b/data/smartphone/oppo/2019/realme-x-lite-premium-edition-dual-sim-td-lte-cn-64gb-rmx1851.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-x-lite-premium-edition-dual-sim-td-lte-cn-64gb-rmx1851", + "name": "Realme X Lite Premium Edition Dual SIM TD-LTE CN 64GB RMX1851", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2019-05-01", + "ram_gb": 6.0, + "battery_mah": 4045, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/realme-x-lite-standard-edition-dual-sim-td-lte-cn-64gb-rmx1851-realme-x-youth-edit.json b/data/smartphone/oppo/2019/realme-x-lite-standard-edition-dual-sim-td-lte-cn-64gb-rmx1851-realme-x-youth-edit.json new file mode 100644 index 00000000000..623af6207a2 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-x-lite-standard-edition-dual-sim-td-lte-cn-64gb-rmx1851-realme-x-youth-edit.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-x-lite-standard-edition-dual-sim-td-lte-cn-64gb-rmx1851-realme-x-youth-edit", + "name": "Realme X Lite Standard Edition Dual SIM TD-LTE CN 64GB RMX1851 / Realme X Youth Edit", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2019-05-01", + "ram_gb": 4.0, + "battery_mah": 4045, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/realme-x-master-edition-dual-sim-td-lte-cn-128gb-rmx1903.json b/data/smartphone/oppo/2019/realme-x-master-edition-dual-sim-td-lte-cn-128gb-rmx1903.json new file mode 100644 index 00000000000..a7c17ec5dfb --- /dev/null +++ b/data/smartphone/oppo/2019/realme-x-master-edition-dual-sim-td-lte-cn-128gb-rmx1903.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-x-master-edition-dual-sim-td-lte-cn-128gb-rmx1903", + "name": "Realme X Master Edition Dual SIM TD-LTE CN 128GB RMX1903", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2019-08-01", + "ram_gb": 8.0, + "battery_mah": 3765, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/realme-x-premium-edition-dual-sim-td-lte-apac-128gb-rmx1903.json b/data/smartphone/oppo/2019/realme-x-premium-edition-dual-sim-td-lte-apac-128gb-rmx1903.json new file mode 100644 index 00000000000..ea7e36d4938 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-x-premium-edition-dual-sim-td-lte-apac-128gb-rmx1903.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-x-premium-edition-dual-sim-td-lte-apac-128gb-rmx1903", + "name": "Realme X Premium Edition Dual SIM TD-LTE APAC 128GB RMX1903", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2019-07-16", + "ram_gb": 8.0, + "battery_mah": 3765, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Indonesia", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/realme-x-premium-edition-dual-sim-td-lte-cn-128gb-rmx1903.json b/data/smartphone/oppo/2019/realme-x-premium-edition-dual-sim-td-lte-cn-128gb-rmx1903.json new file mode 100644 index 00000000000..3f3f6f85a85 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-x-premium-edition-dual-sim-td-lte-cn-128gb-rmx1903.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-x-premium-edition-dual-sim-td-lte-cn-128gb-rmx1903", + "name": "Realme X Premium Edition Dual SIM TD-LTE CN 128GB RMX1903", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2019-07-16", + "ram_gb": 8.0, + "battery_mah": 3765, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/realme-x-premium-edition-dual-sim-td-lte-cn-256gb-rmx1903.json b/data/smartphone/oppo/2019/realme-x-premium-edition-dual-sim-td-lte-cn-256gb-rmx1903.json new file mode 100644 index 00000000000..3586c42f016 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-x-premium-edition-dual-sim-td-lte-cn-256gb-rmx1903.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-x-premium-edition-dual-sim-td-lte-cn-256gb-rmx1903", + "name": "Realme X Premium Edition Dual SIM TD-LTE CN 256GB RMX1903", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2019-08-18", + "ram_gb": 8.0, + "battery_mah": 3765, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/realme-x-premium-edition-dual-sim-td-lte-cn-64gb-rmx1901.json b/data/smartphone/oppo/2019/realme-x-premium-edition-dual-sim-td-lte-cn-64gb-rmx1901.json new file mode 100644 index 00000000000..d0b0e08a846 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-x-premium-edition-dual-sim-td-lte-cn-64gb-rmx1901.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-x-premium-edition-dual-sim-td-lte-cn-64gb-rmx1901", + "name": "Realme X Premium Edition Dual SIM TD-LTE CN 64GB RMX1901", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2019-07-01", + "ram_gb": 6.0, + "battery_mah": 3765, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/realme-x-standard-edition-dual-sim-td-lte-apac-128gb-rmx1901.json b/data/smartphone/oppo/2019/realme-x-standard-edition-dual-sim-td-lte-apac-128gb-rmx1901.json new file mode 100644 index 00000000000..9cd1cdb9104 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-x-standard-edition-dual-sim-td-lte-apac-128gb-rmx1901.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-x-standard-edition-dual-sim-td-lte-apac-128gb-rmx1901", + "name": "Realme X Standard Edition Dual SIM TD-LTE APAC 128GB RMX1901", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2019-07-16", + "ram_gb": 4.0, + "battery_mah": 3765, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/realme-x-standard-edition-dual-sim-td-lte-cn-64gb-rmx1901.json b/data/smartphone/oppo/2019/realme-x-standard-edition-dual-sim-td-lte-cn-64gb-rmx1901.json new file mode 100644 index 00000000000..c44ca601523 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-x-standard-edition-dual-sim-td-lte-cn-64gb-rmx1901.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-x-standard-edition-dual-sim-td-lte-cn-64gb-rmx1901", + "name": "Realme X Standard Edition Dual SIM TD-LTE CN 64GB RMX1901", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2019-07-01", + "ram_gb": 4.0, + "battery_mah": 3765, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/realme-x2-premium-edition-dual-sim-td-lte-cn-128gb-rmx1991.json b/data/smartphone/oppo/2019/realme-x2-premium-edition-dual-sim-td-lte-cn-128gb-rmx1991.json new file mode 100644 index 00000000000..0e744f84a0a --- /dev/null +++ b/data/smartphone/oppo/2019/realme-x2-premium-edition-dual-sim-td-lte-cn-128gb-rmx1991.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-x2-premium-edition-dual-sim-td-lte-cn-128gb-rmx1991", + "name": "Realme X2 Premium Edition Dual SIM TD-LTE CN 128GB RMX1991", + "brand": "oppo", + "soc": "snapdragon-730", + "release_date": "2019-10-29", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/realme-x2-premium-edition-dual-sim-td-lte-cn-256gb-rmx1991.json b/data/smartphone/oppo/2019/realme-x2-premium-edition-dual-sim-td-lte-cn-256gb-rmx1991.json new file mode 100644 index 00000000000..3e55a1c2a0f --- /dev/null +++ b/data/smartphone/oppo/2019/realme-x2-premium-edition-dual-sim-td-lte-cn-256gb-rmx1991.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-x2-premium-edition-dual-sim-td-lte-cn-256gb-rmx1991", + "name": "Realme X2 Premium Edition Dual SIM TD-LTE CN 256GB RMX1991", + "brand": "oppo", + "soc": "snapdragon-730", + "release_date": "2019-11-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/realme-x2-premium-edition-global-dual-sim-td-lte-128gb-rmx1991.json b/data/smartphone/oppo/2019/realme-x2-premium-edition-global-dual-sim-td-lte-128gb-rmx1991.json new file mode 100644 index 00000000000..0a2a536d44d --- /dev/null +++ b/data/smartphone/oppo/2019/realme-x2-premium-edition-global-dual-sim-td-lte-128gb-rmx1991.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-x2-premium-edition-global-dual-sim-td-lte-128gb-rmx1991", + "name": "Realme X2 Premium Edition Global Dual SIM TD-LTE 128GB RMX1991", + "brand": "oppo", + "soc": "snapdragon-730", + "release_date": "2019-10-29", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belgium , France , India , Italy , Netherlands , Poland , Portugal , Spain , UK", + "market_regions": "Asia , Europe , Western Europe" +} diff --git a/data/smartphone/oppo/2019/realme-x2-standard-edition-dual-sim-td-lte-cn-128gb-rmx1991.json b/data/smartphone/oppo/2019/realme-x2-standard-edition-dual-sim-td-lte-cn-128gb-rmx1991.json new file mode 100644 index 00000000000..24910eca938 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-x2-standard-edition-dual-sim-td-lte-cn-128gb-rmx1991.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-x2-standard-edition-dual-sim-td-lte-cn-128gb-rmx1991", + "name": "Realme X2 Standard Edition Dual SIM TD-LTE CN 128GB RMX1991", + "brand": "oppo", + "soc": "snapdragon-730", + "release_date": "2019-10-29", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/realme-x2-standard-edition-dual-sim-td-lte-cn-64gb-rmx1991.json b/data/smartphone/oppo/2019/realme-x2-standard-edition-dual-sim-td-lte-cn-64gb-rmx1991.json new file mode 100644 index 00000000000..6a6c3d16658 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-x2-standard-edition-dual-sim-td-lte-cn-64gb-rmx1991.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-x2-standard-edition-dual-sim-td-lte-cn-64gb-rmx1991", + "name": "Realme X2 Standard Edition Dual SIM TD-LTE CN 64GB RMX1991", + "brand": "oppo", + "soc": "snapdragon-730", + "release_date": "2019-10-29", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/realme-x2-standard-edition-global-dual-sim-td-lte-128gb-rmx1991.json b/data/smartphone/oppo/2019/realme-x2-standard-edition-global-dual-sim-td-lte-128gb-rmx1991.json new file mode 100644 index 00000000000..5540b6f775d --- /dev/null +++ b/data/smartphone/oppo/2019/realme-x2-standard-edition-global-dual-sim-td-lte-128gb-rmx1991.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-x2-standard-edition-global-dual-sim-td-lte-128gb-rmx1991", + "name": "Realme X2 Standard Edition Global Dual SIM TD-LTE 128GB RMX1991", + "brand": "oppo", + "soc": "snapdragon-730", + "release_date": "2019-10-29", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belgium , France , India , Italy , Netherlands , Poland , Portugal , Spain , UK", + "market_regions": "Asia , Europe , Western Europe" +} diff --git a/data/smartphone/oppo/2019/realme-x2-standard-edition-global-dual-sim-td-lte-64gb-rmx1991.json b/data/smartphone/oppo/2019/realme-x2-standard-edition-global-dual-sim-td-lte-64gb-rmx1991.json new file mode 100644 index 00000000000..8e6cabc84f8 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-x2-standard-edition-global-dual-sim-td-lte-64gb-rmx1991.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-x2-standard-edition-global-dual-sim-td-lte-64gb-rmx1991", + "name": "Realme X2 Standard Edition Global Dual SIM TD-LTE 64GB RMX1991", + "brand": "oppo", + "soc": "snapdragon-730", + "release_date": "2019-10-29", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belgium , France , India , Italy , Netherlands , Poland , Portugal , Spain , UK", + "market_regions": "Asia , Europe , Western Europe" +} diff --git a/data/smartphone/oppo/2019/realme-xt-premium-edition-dual-sim-td-lte-v1-in-id-pk-th-vn-ph-128gb-rmx1921.json b/data/smartphone/oppo/2019/realme-xt-premium-edition-dual-sim-td-lte-v1-in-id-pk-th-vn-ph-128gb-rmx1921.json new file mode 100644 index 00000000000..1e18b1b7a00 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-xt-premium-edition-dual-sim-td-lte-v1-in-id-pk-th-vn-ph-128gb-rmx1921.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-xt-premium-edition-dual-sim-td-lte-v1-in-id-pk-th-vn-ph-128gb-rmx1921", + "name": "Realme XT Premium Edition Dual SIM TD-LTE V1 IN ID PK TH VN PH 128GB RMX1921", + "brand": "oppo", + "soc": "snapdragon-712", + "release_date": "2019-10-21", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Indonesia , Pakistan , Philippines , Thailand , Vietnam", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/realme-xt-premium-edition-dual-sim-td-lte-v1-in-vn-64gb-rmx1921.json b/data/smartphone/oppo/2019/realme-xt-premium-edition-dual-sim-td-lte-v1-in-vn-64gb-rmx1921.json new file mode 100644 index 00000000000..116f9091e34 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-xt-premium-edition-dual-sim-td-lte-v1-in-vn-64gb-rmx1921.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-xt-premium-edition-dual-sim-td-lte-v1-in-vn-64gb-rmx1921", + "name": "Realme XT Premium Edition Dual SIM TD-LTE V1 IN VN 64GB RMX1921", + "brand": "oppo", + "soc": "snapdragon-712", + "release_date": "2019-10-21", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/realme-xt-premium-edition-dual-sim-td-lte-v2-ru-128gb-rmx1921.json b/data/smartphone/oppo/2019/realme-xt-premium-edition-dual-sim-td-lte-v2-ru-128gb-rmx1921.json new file mode 100644 index 00000000000..0f4225022c8 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-xt-premium-edition-dual-sim-td-lte-v2-ru-128gb-rmx1921.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-xt-premium-edition-dual-sim-td-lte-v2-ru-128gb-rmx1921", + "name": "Realme XT Premium Edition Dual SIM TD-LTE V2 RU 128GB RMX1921", + "brand": "oppo", + "soc": "snapdragon-712", + "release_date": "2019-10-21", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Russia", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/oppo/2019/realme-xt-premium-edition-global-dual-sim-td-lte-v2-128gb-rmx1921.json b/data/smartphone/oppo/2019/realme-xt-premium-edition-global-dual-sim-td-lte-v2-128gb-rmx1921.json new file mode 100644 index 00000000000..5360c70e327 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-xt-premium-edition-global-dual-sim-td-lte-v2-128gb-rmx1921.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-xt-premium-edition-global-dual-sim-td-lte-v2-128gb-rmx1921", + "name": "Realme XT Premium Edition Global Dual SIM TD-LTE V2 128GB RMX1921", + "brand": "oppo", + "soc": "snapdragon-712", + "release_date": "2019-10-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Egypt , Malaysia , Singapore", + "market_regions": "Africa , Asia , Australia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/realme-xt-standard-edition-dual-sim-td-lte-v1-id-128gb-rmx1921.json b/data/smartphone/oppo/2019/realme-xt-standard-edition-dual-sim-td-lte-v1-id-128gb-rmx1921.json new file mode 100644 index 00000000000..98536b2ad3e --- /dev/null +++ b/data/smartphone/oppo/2019/realme-xt-standard-edition-dual-sim-td-lte-v1-id-128gb-rmx1921.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-xt-standard-edition-dual-sim-td-lte-v1-id-128gb-rmx1921", + "name": "Realme XT Standard Edition Dual SIM TD-LTE V1 ID 128GB RMX1921", + "brand": "oppo", + "soc": "snapdragon-712", + "release_date": "2019-10-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/realme-xt-standard-edition-dual-sim-td-lte-v1-in-vn-64gb-rmx1921.json b/data/smartphone/oppo/2019/realme-xt-standard-edition-dual-sim-td-lte-v1-in-vn-64gb-rmx1921.json new file mode 100644 index 00000000000..10d29b73345 --- /dev/null +++ b/data/smartphone/oppo/2019/realme-xt-standard-edition-dual-sim-td-lte-v1-in-vn-64gb-rmx1921.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-xt-standard-edition-dual-sim-td-lte-v1-in-vn-64gb-rmx1921", + "name": "Realme XT Standard Edition Dual SIM TD-LTE V1 IN VN 64GB RMX1921", + "brand": "oppo", + "soc": "snapdragon-712", + "release_date": "2019-10-21", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/reno-10x-zoom-edition-dual-sim-td-lte-id-my-v3-256gb-cph1919.json b/data/smartphone/oppo/2019/reno-10x-zoom-edition-dual-sim-td-lte-id-my-v3-256gb-cph1919.json new file mode 100644 index 00000000000..8fda9f2d483 --- /dev/null +++ b/data/smartphone/oppo/2019/reno-10x-zoom-edition-dual-sim-td-lte-id-my-v3-256gb-cph1919.json @@ -0,0 +1,41 @@ +{ + "slug": "reno-10x-zoom-edition-dual-sim-td-lte-id-my-v3-256gb-cph1919", + "name": "Reno 10x Zoom Edition Dual SIM TD-LTE ID MY V3 256GB CPH1919", + "brand": "oppo", + "soc": "snapdragon-855", + "release_date": "2019-05-28", + "ram_gb": 8.0, + "battery_mah": 4065, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Indonesia , Malaysia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/reno-10x-zoom-edition-dual-sim-td-lte-tw-v2-256gb-cph1919.json b/data/smartphone/oppo/2019/reno-10x-zoom-edition-dual-sim-td-lte-tw-v2-256gb-cph1919.json new file mode 100644 index 00000000000..f8ba13b9721 --- /dev/null +++ b/data/smartphone/oppo/2019/reno-10x-zoom-edition-dual-sim-td-lte-tw-v2-256gb-cph1919.json @@ -0,0 +1,41 @@ +{ + "slug": "reno-10x-zoom-edition-dual-sim-td-lte-tw-v2-256gb-cph1919", + "name": "Reno 10x Zoom Edition Dual SIM TD-LTE TW V2 256GB CPH1919", + "brand": "oppo", + "soc": "snapdragon-855", + "release_date": "2019-06-01", + "ram_gb": 8.0, + "battery_mah": 4065, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Taiwan", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/reno-10x-zoom-edition-global-dual-sim-td-lte-v1-128gb-cph1919.json b/data/smartphone/oppo/2019/reno-10x-zoom-edition-global-dual-sim-td-lte-v1-128gb-cph1919.json new file mode 100644 index 00000000000..9842755cbdb --- /dev/null +++ b/data/smartphone/oppo/2019/reno-10x-zoom-edition-global-dual-sim-td-lte-v1-128gb-cph1919.json @@ -0,0 +1,41 @@ +{ + "slug": "reno-10x-zoom-edition-global-dual-sim-td-lte-v1-128gb-cph1919", + "name": "Reno 10x Zoom Edition Global Dual SIM TD-LTE V1 128GB CPH1919", + "brand": "oppo", + "soc": "snapdragon-855", + "release_date": "2019-05-01", + "ram_gb": 6.0, + "battery_mah": 4065, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Australia , Bangladesh , France , India , Italy , Japan , Kazakhstan , Kenya , Morocco , Nepal , Netherlands , NZ , Pakistan , Philippines , Poland , Russia , Saudi Arabia , Singapore , Spain , Switzerland , Sri Lanka , Tunisie , Turkey , UAE , UK", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2019/reno-10x-zoom-edition-global-dual-sim-td-lte-v1-256gb-cph1919.json b/data/smartphone/oppo/2019/reno-10x-zoom-edition-global-dual-sim-td-lte-v1-256gb-cph1919.json new file mode 100644 index 00000000000..a0f17eb6deb --- /dev/null +++ b/data/smartphone/oppo/2019/reno-10x-zoom-edition-global-dual-sim-td-lte-v1-256gb-cph1919.json @@ -0,0 +1,41 @@ +{ + "slug": "reno-10x-zoom-edition-global-dual-sim-td-lte-v1-256gb-cph1919", + "name": "Reno 10x Zoom Edition Global Dual SIM TD-LTE V1 256GB CPH1919", + "brand": "oppo", + "soc": "snapdragon-855", + "release_date": "2019-05-01", + "ram_gb": 8.0, + "battery_mah": 4065, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Australia , Bangladesh , France , India , Italy , Japan , Kazakhstan , Kenya , Morocco , Nepal , Netherlands , NZ , Pakistan , Philippines , Poland , Russia , Saudi Arabia , Singapore , Spain , Switzerland , Sri Lanka , Tunisie , Turkey , UAE , UK", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2019/reno-10x-zoom-premium-edition-dual-sim-td-lte-cn-256gb-pccm00.json b/data/smartphone/oppo/2019/reno-10x-zoom-premium-edition-dual-sim-td-lte-cn-256gb-pccm00.json new file mode 100644 index 00000000000..5e0d308b73c --- /dev/null +++ b/data/smartphone/oppo/2019/reno-10x-zoom-premium-edition-dual-sim-td-lte-cn-256gb-pccm00.json @@ -0,0 +1,41 @@ +{ + "slug": "reno-10x-zoom-premium-edition-dual-sim-td-lte-cn-256gb-pccm00", + "name": "Reno 10x Zoom Premium Edition Dual SIM TD-LTE CN 256GB PCCM00", + "brand": "oppo", + "soc": "snapdragon-855", + "release_date": "2019-05-11", + "ram_gb": 8.0, + "battery_mah": 4065, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/reno-10x-zoom-special-edition-dual-sim-td-lte-id-my-v3-256gb.json b/data/smartphone/oppo/2019/reno-10x-zoom-special-edition-dual-sim-td-lte-id-my-v3-256gb.json new file mode 100644 index 00000000000..3dfd89a79fa --- /dev/null +++ b/data/smartphone/oppo/2019/reno-10x-zoom-special-edition-dual-sim-td-lte-id-my-v3-256gb.json @@ -0,0 +1,41 @@ +{ + "slug": "reno-10x-zoom-special-edition-dual-sim-td-lte-id-my-v3-256gb", + "name": "Reno 10x Zoom Special Edition Dual SIM TD-LTE ID MY V3 256GB", + "brand": "oppo", + "soc": "snapdragon-855", + "release_date": "2019-11-29", + "ram_gb": 12.0, + "battery_mah": 4065, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Indonesia , Malaysia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-128gb-pccm00.json b/data/smartphone/oppo/2019/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-128gb-pccm00.json new file mode 100644 index 00000000000..1c5f6083379 --- /dev/null +++ b/data/smartphone/oppo/2019/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-128gb-pccm00.json @@ -0,0 +1,41 @@ +{ + "slug": "reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-128gb-pccm00", + "name": "Reno 10x Zoom Standard Edition Dual SIM TD-LTE CN 128GB PCCM00", + "brand": "oppo", + "soc": "snapdragon-855", + "release_date": "2019-05-11", + "ram_gb": 6.0, + "battery_mah": 4065, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-128gb-pcct00.json b/data/smartphone/oppo/2019/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-128gb-pcct00.json new file mode 100644 index 00000000000..c99a5d1dce5 --- /dev/null +++ b/data/smartphone/oppo/2019/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-128gb-pcct00.json @@ -0,0 +1,41 @@ +{ + "slug": "reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-128gb-pcct00", + "name": "Reno 10x Zoom Standard Edition Dual SIM TD-LTE CN 128GB PCCT00", + "brand": "oppo", + "soc": "snapdragon-855", + "release_date": "2019-05-11", + "ram_gb": 6.0, + "battery_mah": 4065, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-256gb-pccm00.json b/data/smartphone/oppo/2019/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-256gb-pccm00.json new file mode 100644 index 00000000000..39933a07f7b --- /dev/null +++ b/data/smartphone/oppo/2019/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-256gb-pccm00.json @@ -0,0 +1,41 @@ +{ + "slug": "reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-256gb-pccm00", + "name": "Reno 10x Zoom Standard Edition Dual SIM TD-LTE CN 256GB PCCM00", + "brand": "oppo", + "soc": "snapdragon-855", + "release_date": "2019-05-11", + "ram_gb": 6.0, + "battery_mah": 4065, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-256gb-pcct00.json b/data/smartphone/oppo/2019/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-256gb-pcct00.json new file mode 100644 index 00000000000..da962422660 --- /dev/null +++ b/data/smartphone/oppo/2019/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-256gb-pcct00.json @@ -0,0 +1,41 @@ +{ + "slug": "reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-256gb-pcct00", + "name": "Reno 10x Zoom Standard Edition Dual SIM TD-LTE CN 256GB PCCT00", + "brand": "oppo", + "soc": "snapdragon-855", + "release_date": "2019-05-11", + "ram_gb": 8.0, + "battery_mah": 4065, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/reno-5g-global-td-lte-256gb-cph1921.json b/data/smartphone/oppo/2019/reno-5g-global-td-lte-256gb-cph1921.json new file mode 100644 index 00000000000..541db0ff0b7 --- /dev/null +++ b/data/smartphone/oppo/2019/reno-5g-global-td-lte-256gb-cph1921.json @@ -0,0 +1,41 @@ +{ + "slug": "reno-5g-global-td-lte-256gb-cph1921", + "name": "Reno 5G Global TD-LTE 256GB CPH1921", + "brand": "oppo", + "soc": "snapdragon-855", + "release_date": "2019-08-01", + "ram_gb": 8.0, + "battery_mah": 4065, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , France , Italy , Netherlands , Spain , Switzerland , UK", + "market_regions": "Australia , Europe , Western Europe" +} diff --git a/data/smartphone/oppo/2019/reno-a-dual-sim-td-lte-apac-128gb-cph1983.json b/data/smartphone/oppo/2019/reno-a-dual-sim-td-lte-apac-128gb-cph1983.json new file mode 100644 index 00000000000..a7362d88dd3 --- /dev/null +++ b/data/smartphone/oppo/2019/reno-a-dual-sim-td-lte-apac-128gb-cph1983.json @@ -0,0 +1,41 @@ +{ + "slug": "reno-a-dual-sim-td-lte-apac-128gb-cph1983", + "name": "Reno A Dual SIM TD-LTE APAC 128GB CPH1983", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2019-10-18", + "ram_gb": 6.0, + "battery_mah": 3600, + "weight_g": 169.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Indonesia , Japan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/reno-a-dual-sim-td-lte-apac-64gb-cph1983.json b/data/smartphone/oppo/2019/reno-a-dual-sim-td-lte-apac-64gb-cph1983.json new file mode 100644 index 00000000000..003a066ce82 --- /dev/null +++ b/data/smartphone/oppo/2019/reno-a-dual-sim-td-lte-apac-64gb-cph1983.json @@ -0,0 +1,41 @@ +{ + "slug": "reno-a-dual-sim-td-lte-apac-64gb-cph1983", + "name": "Reno A Dual SIM TD-LTE APAC 64GB CPH1983", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2019-10-18", + "ram_gb": 6.0, + "battery_mah": 3600, + "weight_g": 169.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Indonesia , Japan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/reno-ace-premium-edition-dual-sim-td-lte-cn-256gb-pclm10.json b/data/smartphone/oppo/2019/reno-ace-premium-edition-dual-sim-td-lte-cn-256gb-pclm10.json new file mode 100644 index 00000000000..a44319bbfd4 --- /dev/null +++ b/data/smartphone/oppo/2019/reno-ace-premium-edition-dual-sim-td-lte-cn-256gb-pclm10.json @@ -0,0 +1,43 @@ +{ + "slug": "reno-ace-premium-edition-dual-sim-td-lte-cn-256gb-pclm10", + "name": "Reno Ace Premium Edition Dual SIM TD-LTE CN 256GB PCLM10", + "brand": "oppo", + "soc": "snapdragon-855-plus", + "release_date": "2019-10-12", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/reno-ace-standard-edition-dual-sim-td-lte-cn-128gb-pclm10.json b/data/smartphone/oppo/2019/reno-ace-standard-edition-dual-sim-td-lte-cn-128gb-pclm10.json new file mode 100644 index 00000000000..036cc9a0a16 --- /dev/null +++ b/data/smartphone/oppo/2019/reno-ace-standard-edition-dual-sim-td-lte-cn-128gb-pclm10.json @@ -0,0 +1,43 @@ +{ + "slug": "reno-ace-standard-edition-dual-sim-td-lte-cn-128gb-pclm10", + "name": "Reno Ace Standard Edition Dual SIM TD-LTE CN 128GB PCLM10", + "brand": "oppo", + "soc": "snapdragon-855-plus", + "release_date": "2019-10-12", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/reno-ace-standard-edition-dual-sim-td-lte-cn-256gb-pclm10.json b/data/smartphone/oppo/2019/reno-ace-standard-edition-dual-sim-td-lte-cn-256gb-pclm10.json new file mode 100644 index 00000000000..960251e61d7 --- /dev/null +++ b/data/smartphone/oppo/2019/reno-ace-standard-edition-dual-sim-td-lte-cn-256gb-pclm10.json @@ -0,0 +1,43 @@ +{ + "slug": "reno-ace-standard-edition-dual-sim-td-lte-cn-256gb-pclm10", + "name": "Reno Ace Standard Edition Dual SIM TD-LTE CN 256GB PCLM10", + "brand": "oppo", + "soc": "snapdragon-855-plus", + "release_date": "2019-10-12", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/reno-premium-edition-dual-sim-td-lte-cn-256gb-pcam00.json b/data/smartphone/oppo/2019/reno-premium-edition-dual-sim-td-lte-cn-256gb-pcam00.json new file mode 100644 index 00000000000..c5ce3d62c98 --- /dev/null +++ b/data/smartphone/oppo/2019/reno-premium-edition-dual-sim-td-lte-cn-256gb-pcam00.json @@ -0,0 +1,41 @@ +{ + "slug": "reno-premium-edition-dual-sim-td-lte-cn-256gb-pcam00", + "name": "Reno Premium Edition Dual SIM TD-LTE CN 256GB PCAM00", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2019-04-01", + "ram_gb": 8.0, + "battery_mah": 3765, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/reno-premium-edition-dual-sim-td-lte-in-id-th-pk-bd-np-v3-256gb-cph1917.json b/data/smartphone/oppo/2019/reno-premium-edition-dual-sim-td-lte-in-id-th-pk-bd-np-v3-256gb-cph1917.json new file mode 100644 index 00000000000..d07d190f0b1 --- /dev/null +++ b/data/smartphone/oppo/2019/reno-premium-edition-dual-sim-td-lte-in-id-th-pk-bd-np-v3-256gb-cph1917.json @@ -0,0 +1,41 @@ +{ + "slug": "reno-premium-edition-dual-sim-td-lte-in-id-th-pk-bd-np-v3-256gb-cph1917", + "name": "Reno Premium Edition Dual SIM TD-LTE IN ID TH PK BD NP V3 256GB CPH1917", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2019-05-01", + "ram_gb": 8.0, + "battery_mah": 3765, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , India , Indonesia , Myanmar , Nepal , Pakistan , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/reno-premium-edition-dual-sim-td-lte-tw-sg-v4-256gb-cph1917.json b/data/smartphone/oppo/2019/reno-premium-edition-dual-sim-td-lte-tw-sg-v4-256gb-cph1917.json new file mode 100644 index 00000000000..e2a40399999 --- /dev/null +++ b/data/smartphone/oppo/2019/reno-premium-edition-dual-sim-td-lte-tw-sg-v4-256gb-cph1917.json @@ -0,0 +1,41 @@ +{ + "slug": "reno-premium-edition-dual-sim-td-lte-tw-sg-v4-256gb-cph1917", + "name": "Reno Premium Edition Dual SIM TD-LTE TW SG V4 256GB CPH1917", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2019-05-01", + "ram_gb": 8.0, + "battery_mah": 3765, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Singapore , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/reno-premium-edition-dual-sim-td-lte-vn-kh-my-v2-256gb-cph1917.json b/data/smartphone/oppo/2019/reno-premium-edition-dual-sim-td-lte-vn-kh-my-v2-256gb-cph1917.json new file mode 100644 index 00000000000..5a0221a5259 --- /dev/null +++ b/data/smartphone/oppo/2019/reno-premium-edition-dual-sim-td-lte-vn-kh-my-v2-256gb-cph1917.json @@ -0,0 +1,41 @@ +{ + "slug": "reno-premium-edition-dual-sim-td-lte-vn-kh-my-v2-256gb-cph1917", + "name": "Reno Premium Edition Dual SIM TD-LTE VN KH MY V2 256GB CPH1917", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2019-05-01", + "ram_gb": 8.0, + "battery_mah": 3765, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Cambodia , Malaysia , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/reno-premium-edition-global-dual-sim-td-lte-v1-256gb-cph1917.json b/data/smartphone/oppo/2019/reno-premium-edition-global-dual-sim-td-lte-v1-256gb-cph1917.json new file mode 100644 index 00000000000..f2e8fd03b25 --- /dev/null +++ b/data/smartphone/oppo/2019/reno-premium-edition-global-dual-sim-td-lte-v1-256gb-cph1917.json @@ -0,0 +1,41 @@ +{ + "slug": "reno-premium-edition-global-dual-sim-td-lte-v1-256gb-cph1917", + "name": "Reno Premium Edition Global Dual SIM TD-LTE V1 256GB CPH1917", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2019-05-01", + "ram_gb": 8.0, + "battery_mah": 3765, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Egypt , France , Kazakhstan , Morocco , Philippines , Russia , Saudi Arabia , Tunisie , UAE", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2019/reno-standard-edition-dual-sim-td-lte-cn-128gb-pcam00.json b/data/smartphone/oppo/2019/reno-standard-edition-dual-sim-td-lte-cn-128gb-pcam00.json new file mode 100644 index 00000000000..3b6b05e13c5 --- /dev/null +++ b/data/smartphone/oppo/2019/reno-standard-edition-dual-sim-td-lte-cn-128gb-pcam00.json @@ -0,0 +1,41 @@ +{ + "slug": "reno-standard-edition-dual-sim-td-lte-cn-128gb-pcam00", + "name": "Reno Standard Edition Dual SIM TD-LTE CN 128GB PCAM00", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2019-04-01", + "ram_gb": 6.0, + "battery_mah": 3765, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/reno-standard-edition-dual-sim-td-lte-cn-256gb-pcam00.json b/data/smartphone/oppo/2019/reno-standard-edition-dual-sim-td-lte-cn-256gb-pcam00.json new file mode 100644 index 00000000000..360106d99f3 --- /dev/null +++ b/data/smartphone/oppo/2019/reno-standard-edition-dual-sim-td-lte-cn-256gb-pcam00.json @@ -0,0 +1,41 @@ +{ + "slug": "reno-standard-edition-dual-sim-td-lte-cn-256gb-pcam00", + "name": "Reno Standard Edition Dual SIM TD-LTE CN 256GB PCAM00", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2019-04-01", + "ram_gb": 6.0, + "battery_mah": 3765, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/reno-standard-edition-dual-sim-td-lte-cn-256gb-pcat00.json b/data/smartphone/oppo/2019/reno-standard-edition-dual-sim-td-lte-cn-256gb-pcat00.json new file mode 100644 index 00000000000..82486ab5539 --- /dev/null +++ b/data/smartphone/oppo/2019/reno-standard-edition-dual-sim-td-lte-cn-256gb-pcat00.json @@ -0,0 +1,41 @@ +{ + "slug": "reno-standard-edition-dual-sim-td-lte-cn-256gb-pcat00", + "name": "Reno Standard Edition Dual SIM TD-LTE CN 256GB PCAT00", + "brand": "oppo", + "soc": "snapdragon-710", + "release_date": "2019-04-01", + "ram_gb": 6.0, + "battery_mah": 3765, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/reno-z-dual-sim-td-lte-cn-128gb-pcdm10.json b/data/smartphone/oppo/2019/reno-z-dual-sim-td-lte-cn-128gb-pcdm10.json new file mode 100644 index 00000000000..0cf66084e1e --- /dev/null +++ b/data/smartphone/oppo/2019/reno-z-dual-sim-td-lte-cn-128gb-pcdm10.json @@ -0,0 +1,41 @@ +{ + "slug": "reno-z-dual-sim-td-lte-cn-128gb-pcdm10", + "name": "Reno Z Dual SIM TD-LTE CN 128GB PCDM10", + "brand": "oppo", + "soc": "helio-p90", + "release_date": "2019-06-06", + "ram_gb": 8.0, + "battery_mah": 4035, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/reno-z-dual-sim-td-lte-cn-128gb-pcdt10.json b/data/smartphone/oppo/2019/reno-z-dual-sim-td-lte-cn-128gb-pcdt10.json new file mode 100644 index 00000000000..9802aedd8ee --- /dev/null +++ b/data/smartphone/oppo/2019/reno-z-dual-sim-td-lte-cn-128gb-pcdt10.json @@ -0,0 +1,41 @@ +{ + "slug": "reno-z-dual-sim-td-lte-cn-128gb-pcdt10", + "name": "Reno Z Dual SIM TD-LTE CN 128GB PCDT10", + "brand": "oppo", + "soc": "helio-p90", + "release_date": "2019-06-06", + "ram_gb": 8.0, + "battery_mah": 4035, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/reno-z-dual-sim-td-lte-cn-256gb-pcdm10.json b/data/smartphone/oppo/2019/reno-z-dual-sim-td-lte-cn-256gb-pcdm10.json new file mode 100644 index 00000000000..59684220e46 --- /dev/null +++ b/data/smartphone/oppo/2019/reno-z-dual-sim-td-lte-cn-256gb-pcdm10.json @@ -0,0 +1,41 @@ +{ + "slug": "reno-z-dual-sim-td-lte-cn-256gb-pcdm10", + "name": "Reno Z Dual SIM TD-LTE CN 256GB PCDM10", + "brand": "oppo", + "soc": "helio-p90", + "release_date": "2019-06-06", + "ram_gb": 6.0, + "battery_mah": 4035, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/reno-z-dual-sim-td-lte-cn-256gb-pcdt10.json b/data/smartphone/oppo/2019/reno-z-dual-sim-td-lte-cn-256gb-pcdt10.json new file mode 100644 index 00000000000..2fa9ea61730 --- /dev/null +++ b/data/smartphone/oppo/2019/reno-z-dual-sim-td-lte-cn-256gb-pcdt10.json @@ -0,0 +1,41 @@ +{ + "slug": "reno-z-dual-sim-td-lte-cn-256gb-pcdt10", + "name": "Reno Z Dual SIM TD-LTE CN 256GB PCDT10", + "brand": "oppo", + "soc": "helio-p90", + "release_date": "2019-06-06", + "ram_gb": 6.0, + "battery_mah": 4035, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/reno-z-dual-sim-td-lte-tw-128gb-cph1979.json b/data/smartphone/oppo/2019/reno-z-dual-sim-td-lte-tw-128gb-cph1979.json new file mode 100644 index 00000000000..3e57d6e5258 --- /dev/null +++ b/data/smartphone/oppo/2019/reno-z-dual-sim-td-lte-tw-128gb-cph1979.json @@ -0,0 +1,41 @@ +{ + "slug": "reno-z-dual-sim-td-lte-tw-128gb-cph1979", + "name": "Reno Z Dual SIM TD-LTE TW 128GB CPH1979", + "brand": "oppo", + "soc": "helio-p90", + "release_date": "2019-07-01", + "ram_gb": 8.0, + "battery_mah": 4035, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Taiwan", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/reno-z-global-dual-sim-td-lte-128gb-cph1979.json b/data/smartphone/oppo/2019/reno-z-global-dual-sim-td-lte-128gb-cph1979.json new file mode 100644 index 00000000000..d42b20aca20 --- /dev/null +++ b/data/smartphone/oppo/2019/reno-z-global-dual-sim-td-lte-128gb-cph1979.json @@ -0,0 +1,41 @@ +{ + "slug": "reno-z-global-dual-sim-td-lte-128gb-cph1979", + "name": "Reno Z Global Dual SIM TD-LTE 128GB CPH1979", + "brand": "oppo", + "soc": "helio-p90", + "release_date": "2019-07-01", + "ram_gb": 4.0, + "battery_mah": 4035, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "France , Italy , Russia , Saudi Arabia , Singapore , Spain , UAE", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2019/reno2-dual-sim-td-lte-cn-256gb-pckm00.json b/data/smartphone/oppo/2019/reno2-dual-sim-td-lte-cn-256gb-pckm00.json new file mode 100644 index 00000000000..4e4b4b8539d --- /dev/null +++ b/data/smartphone/oppo/2019/reno2-dual-sim-td-lte-cn-256gb-pckm00.json @@ -0,0 +1,42 @@ +{ + "slug": "reno2-dual-sim-td-lte-cn-256gb-pckm00", + "name": "Reno2 Dual SIM TD-LTE CN 256GB PCKM00", + "brand": "oppo", + "soc": "snapdragon-730", + "release_date": "2019-09-09", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.54, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/reno2-dual-sim-td-lte-cn-256gb-pckt00.json b/data/smartphone/oppo/2019/reno2-dual-sim-td-lte-cn-256gb-pckt00.json new file mode 100644 index 00000000000..ae2c4a088ca --- /dev/null +++ b/data/smartphone/oppo/2019/reno2-dual-sim-td-lte-cn-256gb-pckt00.json @@ -0,0 +1,42 @@ +{ + "slug": "reno2-dual-sim-td-lte-cn-256gb-pckt00", + "name": "Reno2 Dual SIM TD-LTE CN 256GB PCKT00", + "brand": "oppo", + "soc": "snapdragon-730", + "release_date": "2019-09-09", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.54, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/reno2-dual-sim-td-lte-id-v3-256gb-cph1907.json b/data/smartphone/oppo/2019/reno2-dual-sim-td-lte-id-v3-256gb-cph1907.json new file mode 100644 index 00000000000..78a142abc0c --- /dev/null +++ b/data/smartphone/oppo/2019/reno2-dual-sim-td-lte-id-v3-256gb-cph1907.json @@ -0,0 +1,42 @@ +{ + "slug": "reno2-dual-sim-td-lte-id-v3-256gb-cph1907", + "name": "Reno2 Dual SIM TD-LTE ID V3 256GB CPH1907", + "brand": "oppo", + "soc": "snapdragon-730", + "release_date": "2019-09-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.54, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/reno2-dual-sim-td-lte-tw-v2-256gb-cph1907.json b/data/smartphone/oppo/2019/reno2-dual-sim-td-lte-tw-v2-256gb-cph1907.json new file mode 100644 index 00000000000..91e3aa9d74f --- /dev/null +++ b/data/smartphone/oppo/2019/reno2-dual-sim-td-lte-tw-v2-256gb-cph1907.json @@ -0,0 +1,42 @@ +{ + "slug": "reno2-dual-sim-td-lte-tw-v2-256gb-cph1907", + "name": "Reno2 Dual SIM TD-LTE TW V2 256GB CPH1907", + "brand": "oppo", + "soc": "snapdragon-730", + "release_date": "2019-09-21", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.54, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Taiwan", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/reno2-f-dual-sim-td-lte-in-id-pk-np-v1-128gb-cph1989.json b/data/smartphone/oppo/2019/reno2-f-dual-sim-td-lte-in-id-pk-np-v1-128gb-cph1989.json new file mode 100644 index 00000000000..28aab2c02fa --- /dev/null +++ b/data/smartphone/oppo/2019/reno2-f-dual-sim-td-lte-in-id-pk-np-v1-128gb-cph1989.json @@ -0,0 +1,42 @@ +{ + "slug": "reno2-f-dual-sim-td-lte-in-id-pk-np-v1-128gb-cph1989", + "name": "Reno2 F Dual SIM TD-LTE IN ID PK NP V1 128GB CPH1989", + "brand": "oppo", + "soc": "helio-p70", + "release_date": "2019-09-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "India , Indonesia , Myanmar , Nepal , Pakistan , Sri Lanka", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/reno2-f-dual-sim-td-lte-vn-th-v2-128gb-cph1989.json b/data/smartphone/oppo/2019/reno2-f-dual-sim-td-lte-vn-th-v2-128gb-cph1989.json new file mode 100644 index 00000000000..f0367e61790 --- /dev/null +++ b/data/smartphone/oppo/2019/reno2-f-dual-sim-td-lte-vn-th-v2-128gb-cph1989.json @@ -0,0 +1,42 @@ +{ + "slug": "reno2-f-dual-sim-td-lte-vn-th-v2-128gb-cph1989", + "name": "Reno2 F Dual SIM TD-LTE VN TH V2 128GB CPH1989", + "brand": "oppo", + "soc": "helio-p70", + "release_date": "2019-09-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Thailand , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2019/reno2-f-global-dual-sim-td-lte-v3-128gb-cph1989.json b/data/smartphone/oppo/2019/reno2-f-global-dual-sim-td-lte-v3-128gb-cph1989.json new file mode 100644 index 00000000000..462d6a9fe53 --- /dev/null +++ b/data/smartphone/oppo/2019/reno2-f-global-dual-sim-td-lte-v3-128gb-cph1989.json @@ -0,0 +1,42 @@ +{ + "slug": "reno2-f-global-dual-sim-td-lte-v3-128gb-cph1989", + "name": "Reno2 F Global Dual SIM TD-LTE V3 128GB CPH1989", + "brand": "oppo", + "soc": "helio-p70", + "release_date": "2019-09-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Kenya , Morocco , Nigeria , Philippines , Saudi Arabia , Tunisie , UAE", + "market_regions": "Africa , Asia , Middle East , Oceania" +} diff --git a/data/smartphone/oppo/2019/reno2-global-dual-sim-td-lte-v1-256gb-cph1907.json b/data/smartphone/oppo/2019/reno2-global-dual-sim-td-lte-v1-256gb-cph1907.json new file mode 100644 index 00000000000..b72ec3df5a2 --- /dev/null +++ b/data/smartphone/oppo/2019/reno2-global-dual-sim-td-lte-v1-256gb-cph1907.json @@ -0,0 +1,42 @@ +{ + "slug": "reno2-global-dual-sim-td-lte-v1-256gb-cph1907", + "name": "Reno2 Global Dual SIM TD-LTE V1 256GB CPH1907", + "brand": "oppo", + "soc": "snapdragon-730", + "release_date": "2019-09-09", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.54, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Bangladesh , France , India , Italy , Kazakhstan , Kenya , Malaysia , Morocco , Myanmar , Netherlands , Pakistan , Philippines , Poland , Saudi Arabia , Singapore , Spain , Sri Lanka , Switzerland , Thailand , Tunisie , Turkey , UAE , UK , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2019/reno2-z-dual-sim-td-lte-cn-128gb-pckm80.json b/data/smartphone/oppo/2019/reno2-z-dual-sim-td-lte-cn-128gb-pckm80.json new file mode 100644 index 00000000000..6bb0d1ce35d --- /dev/null +++ b/data/smartphone/oppo/2019/reno2-z-dual-sim-td-lte-cn-128gb-pckm80.json @@ -0,0 +1,42 @@ +{ + "slug": "reno2-z-dual-sim-td-lte-cn-128gb-pckm80", + "name": "Reno2 Z Dual SIM TD-LTE CN 128GB PCKM80", + "brand": "oppo", + "soc": "helio-p90", + "release_date": "2019-09-06", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/reno2-z-dual-sim-td-lte-in-v1-256gb-cph1945.json b/data/smartphone/oppo/2019/reno2-z-dual-sim-td-lte-in-v1-256gb-cph1945.json new file mode 100644 index 00000000000..03c820acf61 --- /dev/null +++ b/data/smartphone/oppo/2019/reno2-z-dual-sim-td-lte-in-v1-256gb-cph1945.json @@ -0,0 +1,42 @@ +{ + "slug": "reno2-z-dual-sim-td-lte-in-v1-256gb-cph1945", + "name": "Reno2 Z Dual SIM TD-LTE IN V1 256GB CPH1945", + "brand": "oppo", + "soc": "helio-p90", + "release_date": "2019-09-06", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/reno2-z-global-dual-sim-td-lte-v2-128gb-cph1951.json b/data/smartphone/oppo/2019/reno2-z-global-dual-sim-td-lte-v2-128gb-cph1951.json new file mode 100644 index 00000000000..df0a137d09a --- /dev/null +++ b/data/smartphone/oppo/2019/reno2-z-global-dual-sim-td-lte-v2-128gb-cph1951.json @@ -0,0 +1,42 @@ +{ + "slug": "reno2-z-global-dual-sim-td-lte-v2-128gb-cph1951", + "name": "Reno2 Z Global Dual SIM TD-LTE V2 128GB CPH1951", + "brand": "oppo", + "soc": "helio-p90", + "release_date": "2019-09-06", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , France , Italy , Netherlands , NZ , Poland , Russia , Singapore , Spain , Turkey , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2019/reno3-5g-premium-edition-dual-sim-td-lte-cn-128gb-pdcm00.json b/data/smartphone/oppo/2019/reno3-5g-premium-edition-dual-sim-td-lte-cn-128gb-pdcm00.json new file mode 100644 index 00000000000..e06097d7767 --- /dev/null +++ b/data/smartphone/oppo/2019/reno3-5g-premium-edition-dual-sim-td-lte-cn-128gb-pdcm00.json @@ -0,0 +1,43 @@ +{ + "slug": "reno3-5g-premium-edition-dual-sim-td-lte-cn-128gb-pdcm00", + "name": "Reno3 5G Premium Edition Dual SIM TD-LTE CN 128GB PDCM00", + "brand": "oppo", + "soc": "dimensity-1000", + "release_date": "2019-12-31", + "ram_gb": 12.0, + "battery_mah": 4025, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/reno3-5g-premium-edition-dual-sim-td-lte-cn-128gb-pdct00.json b/data/smartphone/oppo/2019/reno3-5g-premium-edition-dual-sim-td-lte-cn-128gb-pdct00.json new file mode 100644 index 00000000000..83aa09d4030 --- /dev/null +++ b/data/smartphone/oppo/2019/reno3-5g-premium-edition-dual-sim-td-lte-cn-128gb-pdct00.json @@ -0,0 +1,43 @@ +{ + "slug": "reno3-5g-premium-edition-dual-sim-td-lte-cn-128gb-pdct00", + "name": "Reno3 5G Premium Edition Dual SIM TD-LTE CN 128GB PDCT00", + "brand": "oppo", + "soc": "dimensity-1000", + "release_date": "2019-12-31", + "ram_gb": 12.0, + "battery_mah": 4025, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/reno3-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdcm00.json b/data/smartphone/oppo/2019/reno3-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdcm00.json new file mode 100644 index 00000000000..3499c7a0d13 --- /dev/null +++ b/data/smartphone/oppo/2019/reno3-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdcm00.json @@ -0,0 +1,43 @@ +{ + "slug": "reno3-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdcm00", + "name": "Reno3 5G Standard Edition Dual SIM TD-LTE CN 128GB PDCM00", + "brand": "oppo", + "soc": "dimensity-1000", + "release_date": "2019-12-31", + "ram_gb": 8.0, + "battery_mah": 4025, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/reno3-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdct00.json b/data/smartphone/oppo/2019/reno3-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdct00.json new file mode 100644 index 00000000000..453579a939d --- /dev/null +++ b/data/smartphone/oppo/2019/reno3-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdct00.json @@ -0,0 +1,43 @@ +{ + "slug": "reno3-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdct00", + "name": "Reno3 5G Standard Edition Dual SIM TD-LTE CN 128GB PDCT00", + "brand": "oppo", + "soc": "dimensity-1000", + "release_date": "2019-12-31", + "ram_gb": 8.0, + "battery_mah": 4025, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-pcrm00.json b/data/smartphone/oppo/2019/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-pcrm00.json new file mode 100644 index 00000000000..a002cdbaaec --- /dev/null +++ b/data/smartphone/oppo/2019/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-pcrm00.json @@ -0,0 +1,43 @@ +{ + "slug": "reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-pcrm00", + "name": "Reno3 Pro 5G Premium Edition Dual SIM TD-LTE CN 128GB PCRM00", + "brand": "oppo", + "soc": "snapdragon-765", + "release_date": "2019-12-31", + "ram_gb": 12.0, + "battery_mah": 4025, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-pcrt00.json b/data/smartphone/oppo/2019/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-pcrt00.json new file mode 100644 index 00000000000..3fb1373cec3 --- /dev/null +++ b/data/smartphone/oppo/2019/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-pcrt00.json @@ -0,0 +1,43 @@ +{ + "slug": "reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-pcrt00", + "name": "Reno3 Pro 5G Premium Edition Dual SIM TD-LTE CN 128GB PCRT00", + "brand": "oppo", + "soc": "snapdragon-765", + "release_date": "2019-12-31", + "ram_gb": 12.0, + "battery_mah": 4025, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pcrt00.json b/data/smartphone/oppo/2019/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pcrt00.json new file mode 100644 index 00000000000..b61b277e243 --- /dev/null +++ b/data/smartphone/oppo/2019/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pcrt00.json @@ -0,0 +1,43 @@ +{ + "slug": "reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pcrt00", + "name": "Reno3 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB PCRT00", + "brand": "oppo", + "soc": "snapdragon-765", + "release_date": "2019-12-31", + "ram_gb": 12.0, + "battery_mah": 4025, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/reno3-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pcrm00.json b/data/smartphone/oppo/2019/reno3-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pcrm00.json new file mode 100644 index 00000000000..188abc1392b --- /dev/null +++ b/data/smartphone/oppo/2019/reno3-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pcrm00.json @@ -0,0 +1,43 @@ +{ + "slug": "reno3-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pcrm00", + "name": "Reno3 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB PCRM00", + "brand": "oppo", + "soc": "snapdragon-765", + "release_date": "2019-12-31", + "ram_gb": 8.0, + "battery_mah": 4025, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2019/reno3-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pcrt00.json b/data/smartphone/oppo/2019/reno3-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pcrt00.json new file mode 100644 index 00000000000..fd39ab456b2 --- /dev/null +++ b/data/smartphone/oppo/2019/reno3-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pcrt00.json @@ -0,0 +1,43 @@ +{ + "slug": "reno3-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pcrt00", + "name": "Reno3 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB PCRT00", + "brand": "oppo", + "soc": "snapdragon-765", + "release_date": "2019-12-31", + "ram_gb": 8.0, + "battery_mah": 4025, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/a11k-2020-dual-sim-td-lte-v1-in-pk-32gb-cph2083-cph2071.json b/data/smartphone/oppo/2020/a11k-2020-dual-sim-td-lte-v1-in-pk-32gb-cph2083-cph2071.json new file mode 100644 index 00000000000..1f5dad05416 --- /dev/null +++ b/data/smartphone/oppo/2020/a11k-2020-dual-sim-td-lte-v1-in-pk-32gb-cph2083-cph2071.json @@ -0,0 +1,41 @@ +{ + "slug": "a11k-2020-dual-sim-td-lte-v1-in-pk-32gb-cph2083-cph2071", + "name": "A11k 2020 Dual SIM TD-LTE V1 IN PK 32GB CPH2083 / CPH2071", + "brand": "oppo", + "soc": "helio-p35", + "release_date": "2020-06-22", + "ram_gb": 2.0, + "battery_mah": 4230, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Myanmar , Pakistan , Sri Lanka", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/a12-2020-dual-sim-td-lte-v1-in-id-pk-bd-32gb-cph2083.json b/data/smartphone/oppo/2020/a12-2020-dual-sim-td-lte-v1-in-id-pk-bd-32gb-cph2083.json new file mode 100644 index 00000000000..f0a614b2775 --- /dev/null +++ b/data/smartphone/oppo/2020/a12-2020-dual-sim-td-lte-v1-in-id-pk-bd-32gb-cph2083.json @@ -0,0 +1,41 @@ +{ + "slug": "a12-2020-dual-sim-td-lte-v1-in-id-pk-bd-32gb-cph2083", + "name": "A12 2020 Dual SIM TD-LTE V1 IN ID PK BD 32GB CPH2083", + "brand": "oppo", + "soc": "helio-p35", + "release_date": "2020-06-09", + "ram_gb": 3.0, + "battery_mah": 4230, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , India , Indonesia , Myanmar , Nepal , Pakistan , Sri Lanka", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/a12-2020-dual-sim-td-lte-v1-in-id-pk-bd-64gb-cph2083.json b/data/smartphone/oppo/2020/a12-2020-dual-sim-td-lte-v1-in-id-pk-bd-64gb-cph2083.json new file mode 100644 index 00000000000..df8db7d589c --- /dev/null +++ b/data/smartphone/oppo/2020/a12-2020-dual-sim-td-lte-v1-in-id-pk-bd-64gb-cph2083.json @@ -0,0 +1,41 @@ +{ + "slug": "a12-2020-dual-sim-td-lte-v1-in-id-pk-bd-64gb-cph2083", + "name": "A12 2020 Dual SIM TD-LTE V1 IN ID PK BD 64GB CPH2083", + "brand": "oppo", + "soc": "helio-p35", + "release_date": "2020-06-09", + "ram_gb": 4.0, + "battery_mah": 4230, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , India , Indonesia , Myanmar , Nepal , Pakistan , Sri Lanka", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/a12-2020-dual-sim-td-lte-v2-th-vn-kh-my-32gb-cph2083.json b/data/smartphone/oppo/2020/a12-2020-dual-sim-td-lte-v2-th-vn-kh-my-32gb-cph2083.json new file mode 100644 index 00000000000..ec46945d670 --- /dev/null +++ b/data/smartphone/oppo/2020/a12-2020-dual-sim-td-lte-v2-th-vn-kh-my-32gb-cph2083.json @@ -0,0 +1,41 @@ +{ + "slug": "a12-2020-dual-sim-td-lte-v2-th-vn-kh-my-32gb-cph2083", + "name": "A12 2020 Dual SIM TD-LTE V2 TH VN KH MY 32GB CPH2083", + "brand": "oppo", + "soc": "helio-p35", + "release_date": "2020-04-01", + "ram_gb": 3.0, + "battery_mah": 4230, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Cambodia , Malaysia , Thailand , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/a12-2020-dual-sim-td-lte-v4-latam-32gb-cph2083.json b/data/smartphone/oppo/2020/a12-2020-dual-sim-td-lte-v4-latam-32gb-cph2083.json new file mode 100644 index 00000000000..8114f3635a3 --- /dev/null +++ b/data/smartphone/oppo/2020/a12-2020-dual-sim-td-lte-v4-latam-32gb-cph2083.json @@ -0,0 +1,41 @@ +{ + "slug": "a12-2020-dual-sim-td-lte-v4-latam-32gb-cph2083", + "name": "A12 2020 Dual SIM TD-LTE V4 LATAM 32GB CPH2083", + "brand": "oppo", + "soc": "helio-p35", + "release_date": "2020-05-01", + "ram_gb": 3.0, + "battery_mah": 4230, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/oppo/2020/a12-2020-global-dual-sim-td-lte-v3-32gb-cph2083.json b/data/smartphone/oppo/2020/a12-2020-global-dual-sim-td-lte-v3-32gb-cph2083.json new file mode 100644 index 00000000000..89ae61dea6b --- /dev/null +++ b/data/smartphone/oppo/2020/a12-2020-global-dual-sim-td-lte-v3-32gb-cph2083.json @@ -0,0 +1,41 @@ +{ + "slug": "a12-2020-global-dual-sim-td-lte-v3-32gb-cph2083", + "name": "A12 2020 Global Dual SIM TD-LTE V3 32GB CPH2083", + "brand": "oppo", + "soc": "helio-p35", + "release_date": "2020-04-01", + "ram_gb": 3.0, + "battery_mah": 4230, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Armenia , Egypt , Jordan , Kazakhstan , Kenya , Mali , Morocco , Nigeria , Philippines , Poland , Romania , Russia , Saudi Arabia , Tunisie , Turkey , UAE , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2020/a15-2020-premium-edition-dual-sim-td-lte-in-id-my-pk-v1-32gb-cph2185.json b/data/smartphone/oppo/2020/a15-2020-premium-edition-dual-sim-td-lte-in-id-my-pk-v1-32gb-cph2185.json new file mode 100644 index 00000000000..1d9933b54d8 --- /dev/null +++ b/data/smartphone/oppo/2020/a15-2020-premium-edition-dual-sim-td-lte-in-id-my-pk-v1-32gb-cph2185.json @@ -0,0 +1,43 @@ +{ + "slug": "a15-2020-premium-edition-dual-sim-td-lte-in-id-my-pk-v1-32gb-cph2185", + "name": "A15 2020 Premium Edition Dual SIM TD-LTE IN ID MY PK V1 32GB CPH2185", + "brand": "oppo", + "soc": "helio-p35", + "release_date": "2020-10-22", + "ram_gb": 3.0, + "battery_mah": 4230, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Malaysia , Pakistan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/a15-2020-premium-edition-dual-sim-td-lte-th-v2-32gb-cph2185.json b/data/smartphone/oppo/2020/a15-2020-premium-edition-dual-sim-td-lte-th-v2-32gb-cph2185.json new file mode 100644 index 00000000000..27996b4fd3f --- /dev/null +++ b/data/smartphone/oppo/2020/a15-2020-premium-edition-dual-sim-td-lte-th-v2-32gb-cph2185.json @@ -0,0 +1,43 @@ +{ + "slug": "a15-2020-premium-edition-dual-sim-td-lte-th-v2-32gb-cph2185", + "name": "A15 2020 Premium Edition Dual SIM TD-LTE TH V2 32GB CPH2185", + "brand": "oppo", + "soc": "helio-p35", + "release_date": "2020-10-22", + "ram_gb": 3.0, + "battery_mah": 4230, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Thailand , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/a15-2020-premium-edition-global-dual-sim-td-lte-v3-32gb-cph2185.json b/data/smartphone/oppo/2020/a15-2020-premium-edition-global-dual-sim-td-lte-v3-32gb-cph2185.json new file mode 100644 index 00000000000..e8253191ab2 --- /dev/null +++ b/data/smartphone/oppo/2020/a15-2020-premium-edition-global-dual-sim-td-lte-v3-32gb-cph2185.json @@ -0,0 +1,43 @@ +{ + "slug": "a15-2020-premium-edition-global-dual-sim-td-lte-v3-32gb-cph2185", + "name": "A15 2020 Premium Edition Global Dual SIM TD-LTE V3 32GB CPH2185", + "brand": "oppo", + "soc": "helio-p35", + "release_date": "2020-10-16", + "ram_gb": 3.0, + "battery_mah": 4230, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Armenia , Egypt , Jordan , Kazakhstan , Kenya , Mali , Morocco , Nigeria , Poland , Romania , Russia , Saudi Arabia , Tunisie , Turkey , UAE , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2020/a15-2020-standard-edition-dual-sim-td-lte-in-v1-32gb-cph2185.json b/data/smartphone/oppo/2020/a15-2020-standard-edition-dual-sim-td-lte-in-v1-32gb-cph2185.json new file mode 100644 index 00000000000..05efaa1a49c --- /dev/null +++ b/data/smartphone/oppo/2020/a15-2020-standard-edition-dual-sim-td-lte-in-v1-32gb-cph2185.json @@ -0,0 +1,43 @@ +{ + "slug": "a15-2020-standard-edition-dual-sim-td-lte-in-v1-32gb-cph2185", + "name": "A15 2020 Standard Edition Dual SIM TD-LTE IN V1 32GB CPH2185", + "brand": "oppo", + "soc": "helio-p35", + "release_date": "2020-10-22", + "ram_gb": 2.0, + "battery_mah": 4230, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/a15-2020-standard-edition-global-dual-sim-td-lte-v3-32gb-cph2185.json b/data/smartphone/oppo/2020/a15-2020-standard-edition-global-dual-sim-td-lte-v3-32gb-cph2185.json new file mode 100644 index 00000000000..c9ef2fe1fd3 --- /dev/null +++ b/data/smartphone/oppo/2020/a15-2020-standard-edition-global-dual-sim-td-lte-v3-32gb-cph2185.json @@ -0,0 +1,43 @@ +{ + "slug": "a15-2020-standard-edition-global-dual-sim-td-lte-v3-32gb-cph2185", + "name": "A15 2020 Standard Edition Global Dual SIM TD-LTE V3 32GB CPH2185", + "brand": "oppo", + "soc": "helio-p35", + "release_date": "2020-10-16", + "ram_gb": 2.0, + "battery_mah": 4230, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Armenia , Egypt , Jordan , Kazakhstan , Kenya , Mali , Morocco , Nigeria , Poland , Romania , Russia , Saudi Arabia , Tunisie , Turkey , UAE , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2020/a15s-2020-dual-sim-td-lte-in-v1-64gb-cph2179.json b/data/smartphone/oppo/2020/a15s-2020-dual-sim-td-lte-in-v1-64gb-cph2179.json new file mode 100644 index 00000000000..871a0ffee42 --- /dev/null +++ b/data/smartphone/oppo/2020/a15s-2020-dual-sim-td-lte-in-v1-64gb-cph2179.json @@ -0,0 +1,43 @@ +{ + "slug": "a15s-2020-dual-sim-td-lte-in-v1-64gb-cph2179", + "name": "A15s 2020 Dual SIM TD-LTE IN V1 64GB CPH2179", + "brand": "oppo", + "soc": "helio-p35", + "release_date": "2020-12-01", + "ram_gb": 4.0, + "battery_mah": 4230, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/a31-2020-premium-edition-dual-sim-td-lte-v1-in-sg-vn-bd-128gb-cph2015-cph2081.json b/data/smartphone/oppo/2020/a31-2020-premium-edition-dual-sim-td-lte-v1-in-sg-vn-bd-128gb-cph2015-cph2081.json new file mode 100644 index 00000000000..dcf97a97d41 --- /dev/null +++ b/data/smartphone/oppo/2020/a31-2020-premium-edition-dual-sim-td-lte-v1-in-sg-vn-bd-128gb-cph2015-cph2081.json @@ -0,0 +1,41 @@ +{ + "slug": "a31-2020-premium-edition-dual-sim-td-lte-v1-in-sg-vn-bd-128gb-cph2015-cph2081", + "name": "A31 2020 Premium Edition Dual SIM TD-LTE V1 IN SG VN BD 128GB CPH2015 / CPH2081", + "brand": "oppo", + "soc": "helio-p35", + "release_date": "2020-02-14", + "ram_gb": 6.0, + "battery_mah": 4230, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , India , Singapore , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/a31-2020-premium-edition-dual-sim-td-lte-v2-th-ph-128gb-cph2015-cph2031.json b/data/smartphone/oppo/2020/a31-2020-premium-edition-dual-sim-td-lte-v2-th-ph-128gb-cph2015-cph2031.json new file mode 100644 index 00000000000..e4b24d2ff87 --- /dev/null +++ b/data/smartphone/oppo/2020/a31-2020-premium-edition-dual-sim-td-lte-v2-th-ph-128gb-cph2015-cph2031.json @@ -0,0 +1,41 @@ +{ + "slug": "a31-2020-premium-edition-dual-sim-td-lte-v2-th-ph-128gb-cph2015-cph2031", + "name": "A31 2020 Premium Edition Dual SIM TD-LTE V2 TH PH 128GB CPH2015 / CPH2031", + "brand": "oppo", + "soc": "helio-p35", + "release_date": "2020-02-14", + "ram_gb": 6.0, + "battery_mah": 4230, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "market_countries": "Philippines , Thailand", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/a31-2020-premium-edition-dual-sim-td-lte-v3-kz-128gb-cph2015.json b/data/smartphone/oppo/2020/a31-2020-premium-edition-dual-sim-td-lte-v3-kz-128gb-cph2015.json new file mode 100644 index 00000000000..7cc5e975ec5 --- /dev/null +++ b/data/smartphone/oppo/2020/a31-2020-premium-edition-dual-sim-td-lte-v3-kz-128gb-cph2015.json @@ -0,0 +1,41 @@ +{ + "slug": "a31-2020-premium-edition-dual-sim-td-lte-v3-kz-128gb-cph2015", + "name": "A31 2020 Premium Edition Dual SIM TD-LTE V3 KZ 128GB CPH2015", + "brand": "oppo", + "soc": "helio-p35", + "release_date": "2020-02-01", + "ram_gb": 6.0, + "battery_mah": 4230, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "market_countries": "Armenia , Kazakhstan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/a31-2020-premium-edition-dual-sim-td-lte-v4-id-128gb-cph2015.json b/data/smartphone/oppo/2020/a31-2020-premium-edition-dual-sim-td-lte-v4-id-128gb-cph2015.json new file mode 100644 index 00000000000..608dac67b2f --- /dev/null +++ b/data/smartphone/oppo/2020/a31-2020-premium-edition-dual-sim-td-lte-v4-id-128gb-cph2015.json @@ -0,0 +1,41 @@ +{ + "slug": "a31-2020-premium-edition-dual-sim-td-lte-v4-id-128gb-cph2015", + "name": "A31 2020 Premium Edition Dual SIM TD-LTE V4 ID 128GB CPH2015", + "brand": "oppo", + "soc": "helio-p35", + "release_date": "2020-02-01", + "ram_gb": 6.0, + "battery_mah": 4230, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "market_countries": "Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/a31-2020-standard-edition-dual-sim-td-lte-v1-in-sg-64gb-cph2015-cph2073.json b/data/smartphone/oppo/2020/a31-2020-standard-edition-dual-sim-td-lte-v1-in-sg-64gb-cph2015-cph2073.json new file mode 100644 index 00000000000..04643de79f2 --- /dev/null +++ b/data/smartphone/oppo/2020/a31-2020-standard-edition-dual-sim-td-lte-v1-in-sg-64gb-cph2015-cph2073.json @@ -0,0 +1,41 @@ +{ + "slug": "a31-2020-standard-edition-dual-sim-td-lte-v1-in-sg-64gb-cph2015-cph2073", + "name": "A31 2020 Standard Edition Dual SIM TD-LTE V1 IN SG 64GB CPH2015 / CPH2073", + "brand": "oppo", + "soc": "helio-p35", + "release_date": "2020-02-14", + "ram_gb": 4.0, + "battery_mah": 4230, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Singapore", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/a31-2020-standard-edition-dual-sim-td-lte-v1-sg-vn-bd-np-128gb-cph2015-cph2073.json b/data/smartphone/oppo/2020/a31-2020-standard-edition-dual-sim-td-lte-v1-sg-vn-bd-np-128gb-cph2015-cph2073.json new file mode 100644 index 00000000000..b18164efe75 --- /dev/null +++ b/data/smartphone/oppo/2020/a31-2020-standard-edition-dual-sim-td-lte-v1-sg-vn-bd-np-128gb-cph2015-cph2073.json @@ -0,0 +1,41 @@ +{ + "slug": "a31-2020-standard-edition-dual-sim-td-lte-v1-sg-vn-bd-np-128gb-cph2015-cph2073", + "name": "A31 2020 Standard Edition Dual SIM TD-LTE V1 SG VN BD NP 128GB CPH2015 / CPH2073", + "brand": "oppo", + "soc": "helio-p35", + "release_date": "2020-02-14", + "ram_gb": 4.0, + "battery_mah": 4230, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , Myanmar , Nepal , Singapore , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/a31-2020-standard-edition-dual-sim-td-lte-v2-th-ph-128gb-cph2015-cph2031.json b/data/smartphone/oppo/2020/a31-2020-standard-edition-dual-sim-td-lte-v2-th-ph-128gb-cph2015-cph2031.json new file mode 100644 index 00000000000..9bc4f5cbda4 --- /dev/null +++ b/data/smartphone/oppo/2020/a31-2020-standard-edition-dual-sim-td-lte-v2-th-ph-128gb-cph2015-cph2031.json @@ -0,0 +1,41 @@ +{ + "slug": "a31-2020-standard-edition-dual-sim-td-lte-v2-th-ph-128gb-cph2015-cph2031", + "name": "A31 2020 Standard Edition Dual SIM TD-LTE V2 TH PH 128GB CPH2015 / CPH2031", + "brand": "oppo", + "soc": "helio-p35", + "release_date": "2020-02-14", + "ram_gb": 4.0, + "battery_mah": 4230, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "market_countries": "Philippines , Thailand", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/a31-2020-standard-edition-dual-sim-td-lte-v2-th-ph-64gb-cph2015-cph2031.json b/data/smartphone/oppo/2020/a31-2020-standard-edition-dual-sim-td-lte-v2-th-ph-64gb-cph2015-cph2031.json new file mode 100644 index 00000000000..ec5cc128480 --- /dev/null +++ b/data/smartphone/oppo/2020/a31-2020-standard-edition-dual-sim-td-lte-v2-th-ph-64gb-cph2015-cph2031.json @@ -0,0 +1,41 @@ +{ + "slug": "a31-2020-standard-edition-dual-sim-td-lte-v2-th-ph-64gb-cph2015-cph2031", + "name": "A31 2020 Standard Edition Dual SIM TD-LTE V2 TH PH 64GB CPH2015 / CPH2031", + "brand": "oppo", + "soc": "helio-p35", + "release_date": "2020-02-14", + "ram_gb": 4.0, + "battery_mah": 4230, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "market_countries": "Philippines , Thailand", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/a31-2020-standard-edition-dual-sim-td-lte-v3-kz-sa-ae-128gb-cph2015.json b/data/smartphone/oppo/2020/a31-2020-standard-edition-dual-sim-td-lte-v3-kz-sa-ae-128gb-cph2015.json new file mode 100644 index 00000000000..288f396d7fd --- /dev/null +++ b/data/smartphone/oppo/2020/a31-2020-standard-edition-dual-sim-td-lte-v3-kz-sa-ae-128gb-cph2015.json @@ -0,0 +1,41 @@ +{ + "slug": "a31-2020-standard-edition-dual-sim-td-lte-v3-kz-sa-ae-128gb-cph2015", + "name": "A31 2020 Standard Edition Dual SIM TD-LTE V3 KZ SA AE 128GB CPH2015", + "brand": "oppo", + "soc": "helio-p35", + "release_date": "2020-02-01", + "ram_gb": 4.0, + "battery_mah": 4230, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "market_countries": "Algeria , Armenia , Kazakhstan , Kenya , Morocco , Nigeria , Saudi Arabia , Tunisie , UAE", + "market_regions": "Africa , Asia , Middle East" +} diff --git a/data/smartphone/oppo/2020/a31-2020-standard-edition-dual-sim-td-lte-v3-ru-pl-kz-tr-64gb-cph2015-cph2029.json b/data/smartphone/oppo/2020/a31-2020-standard-edition-dual-sim-td-lte-v3-ru-pl-kz-tr-64gb-cph2015-cph2029.json new file mode 100644 index 00000000000..e9d39c38701 --- /dev/null +++ b/data/smartphone/oppo/2020/a31-2020-standard-edition-dual-sim-td-lte-v3-ru-pl-kz-tr-64gb-cph2015-cph2029.json @@ -0,0 +1,41 @@ +{ + "slug": "a31-2020-standard-edition-dual-sim-td-lte-v3-ru-pl-kz-tr-64gb-cph2015-cph2029", + "name": "A31 2020 Standard Edition Dual SIM TD-LTE V3 RU PL KZ TR 64GB CPH2015 / CPH2029", + "brand": "oppo", + "soc": "helio-p35", + "release_date": "2020-02-01", + "ram_gb": 4.0, + "battery_mah": 4230, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "market_countries": "Algeria , Armenia , Belarus , Kazakhstan , Kenya , Morocco , Nigeria , Poland , Romania , Russia , Saudi Arabia , Tunisie , Turkey , UAE , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East" +} diff --git a/data/smartphone/oppo/2020/a31-2020-standard-edition-dual-sim-td-lte-v4-id-128gb-cph2015.json b/data/smartphone/oppo/2020/a31-2020-standard-edition-dual-sim-td-lte-v4-id-128gb-cph2015.json new file mode 100644 index 00000000000..6f9588498f0 --- /dev/null +++ b/data/smartphone/oppo/2020/a31-2020-standard-edition-dual-sim-td-lte-v4-id-128gb-cph2015.json @@ -0,0 +1,41 @@ +{ + "slug": "a31-2020-standard-edition-dual-sim-td-lte-v4-id-128gb-cph2015", + "name": "A31 2020 Standard Edition Dual SIM TD-LTE V4 ID 128GB CPH2015", + "brand": "oppo", + "soc": "helio-p35", + "release_date": "2020-02-01", + "ram_gb": 4.0, + "battery_mah": 4230, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "market_countries": "Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/a31-2020-standard-edition-dual-sim-td-lte-v5-mx-128gb-cph2015.json b/data/smartphone/oppo/2020/a31-2020-standard-edition-dual-sim-td-lte-v5-mx-128gb-cph2015.json new file mode 100644 index 00000000000..1b542ab560a --- /dev/null +++ b/data/smartphone/oppo/2020/a31-2020-standard-edition-dual-sim-td-lte-v5-mx-128gb-cph2015.json @@ -0,0 +1,41 @@ +{ + "slug": "a31-2020-standard-edition-dual-sim-td-lte-v5-mx-128gb-cph2015", + "name": "A31 2020 Standard Edition Dual SIM TD-LTE V5 MX 128GB CPH2015", + "brand": "oppo", + "soc": "helio-p35", + "release_date": "2020-02-01", + "ram_gb": 6.0, + "battery_mah": 4230, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "market_countries": "Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/oppo/2020/a32-2020-premium-edition-dual-sim-td-lte-cn-128gb-pdvm00.json b/data/smartphone/oppo/2020/a32-2020-premium-edition-dual-sim-td-lte-cn-128gb-pdvm00.json new file mode 100644 index 00000000000..e6b97e260d5 --- /dev/null +++ b/data/smartphone/oppo/2020/a32-2020-premium-edition-dual-sim-td-lte-cn-128gb-pdvm00.json @@ -0,0 +1,43 @@ +{ + "slug": "a32-2020-premium-edition-dual-sim-td-lte-cn-128gb-pdvm00", + "name": "A32 2020 Premium Edition Dual SIM TD-LTE CN 128GB PDVM00", + "brand": "oppo", + "soc": "snapdragon-460", + "release_date": "2020-09-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/a32-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdvm00.json b/data/smartphone/oppo/2020/a32-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdvm00.json new file mode 100644 index 00000000000..069e9d01032 --- /dev/null +++ b/data/smartphone/oppo/2020/a32-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdvm00.json @@ -0,0 +1,44 @@ +{ + "slug": "a32-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdvm00", + "name": "A32 2020 Standard Edition Dual SIM TD-LTE CN 128GB PDVM00", + "brand": "oppo", + "soc": "snapdragon-460", + "release_date": "2020-09-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1199, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/a33-2020-standard-edition-dual-sim-td-lte-v1-in-32gb-cph2137.json b/data/smartphone/oppo/2020/a33-2020-standard-edition-dual-sim-td-lte-v1-in-32gb-cph2137.json new file mode 100644 index 00000000000..e9d765919c7 --- /dev/null +++ b/data/smartphone/oppo/2020/a33-2020-standard-edition-dual-sim-td-lte-v1-in-32gb-cph2137.json @@ -0,0 +1,43 @@ +{ + "slug": "a33-2020-standard-edition-dual-sim-td-lte-v1-in-32gb-cph2137", + "name": "A33 2020 Standard Edition Dual SIM TD-LTE V1 IN 32GB CPH2137", + "brand": "oppo", + "soc": "snapdragon-460", + "release_date": "2020-10-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/a52-2020-dual-sim-td-lte-cn-128gb-pdam10.json b/data/smartphone/oppo/2020/a52-2020-dual-sim-td-lte-cn-128gb-pdam10.json new file mode 100644 index 00000000000..02ffc25084b --- /dev/null +++ b/data/smartphone/oppo/2020/a52-2020-dual-sim-td-lte-cn-128gb-pdam10.json @@ -0,0 +1,42 @@ +{ + "slug": "a52-2020-dual-sim-td-lte-cn-128gb-pdam10", + "name": "A52 2020 Dual SIM TD-LTE CN 128GB PDAM10", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2020-04-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 12.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/a52-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-128gb-cph2061.json b/data/smartphone/oppo/2020/a52-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-128gb-cph2061.json new file mode 100644 index 00000000000..c2e9e428417 --- /dev/null +++ b/data/smartphone/oppo/2020/a52-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-128gb-cph2061.json @@ -0,0 +1,42 @@ +{ + "slug": "a52-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-128gb-cph2061", + "name": "A52 2020 Premium Edition Dual SIM TD-LTE V1 IN ID PK BD NP 128GB CPH2061", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2020-07-16", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 12.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Algeria , Bangladesh , India , Indonesia , Myanmar , Nepal , Pakistan , Sri Lanka", + "market_regions": "Africa , Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/a52-2020-premium-edition-dual-sim-td-lte-v2-my-vn-th-kh-128gb-cph2061.json b/data/smartphone/oppo/2020/a52-2020-premium-edition-dual-sim-td-lte-v2-my-vn-th-kh-128gb-cph2061.json new file mode 100644 index 00000000000..832a6a1d31c --- /dev/null +++ b/data/smartphone/oppo/2020/a52-2020-premium-edition-dual-sim-td-lte-v2-my-vn-th-kh-128gb-cph2061.json @@ -0,0 +1,42 @@ +{ + "slug": "a52-2020-premium-edition-dual-sim-td-lte-v2-my-vn-th-kh-128gb-cph2061", + "name": "A52 2020 Premium Edition Dual SIM TD-LTE V2 MY VN TH KH 128GB CPH2061", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2020-04-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 12.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Cambodia , Malaysia , Thailand , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/a52-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph2061.json b/data/smartphone/oppo/2020/a52-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph2061.json new file mode 100644 index 00000000000..9936dc280fd --- /dev/null +++ b/data/smartphone/oppo/2020/a52-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph2061.json @@ -0,0 +1,42 @@ +{ + "slug": "a52-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph2061", + "name": "A52 2020 Premium Edition Global Dual SIM TD-LTE V3 128GB CPH2061", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2020-04-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 12.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Egypt , Kenya , Mali , Morocco , Nigeria , Philippines , Saudi Arabia , Tunisie , UAE", + "market_regions": "Africa , Asia , Middle East , Oceania , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/a52-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-128gb-cph2061.json b/data/smartphone/oppo/2020/a52-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-128gb-cph2061.json new file mode 100644 index 00000000000..fc919529431 --- /dev/null +++ b/data/smartphone/oppo/2020/a52-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-128gb-cph2061.json @@ -0,0 +1,42 @@ +{ + "slug": "a52-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-128gb-cph2061", + "name": "A52 2020 Standard Edition Dual SIM TD-LTE V1 IN ID PK BD NP 128GB CPH2061", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2020-07-16", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 12.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Algeria , Bangladesh , India , Indonesia , Myanmar , Nepal , Pakistan , Sri Lanka", + "market_regions": "Africa , Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/a52-2020-standard-edition-global-dual-sim-td-lte-v3-128gb-cph2061.json b/data/smartphone/oppo/2020/a52-2020-standard-edition-global-dual-sim-td-lte-v3-128gb-cph2061.json new file mode 100644 index 00000000000..1fd46773d8b --- /dev/null +++ b/data/smartphone/oppo/2020/a52-2020-standard-edition-global-dual-sim-td-lte-v3-128gb-cph2061.json @@ -0,0 +1,42 @@ +{ + "slug": "a52-2020-standard-edition-global-dual-sim-td-lte-v3-128gb-cph2061", + "name": "A52 2020 Standard Edition Global Dual SIM TD-LTE V3 128GB CPH2061", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2020-04-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 12.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Kenya , Mali , Morocco , Nigeria , Saudi Arabia , Tunisie , UAE", + "market_regions": "Africa , Asia , Middle East , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/a52-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph2069.json b/data/smartphone/oppo/2020/a52-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph2069.json new file mode 100644 index 00000000000..9292279ffab --- /dev/null +++ b/data/smartphone/oppo/2020/a52-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph2069.json @@ -0,0 +1,43 @@ +{ + "slug": "a52-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph2069", + "name": "A52 2020 Standard Edition Global Dual SIM TD-LTE V3 64GB CPH2069", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2020-05-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 12.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 200, + "market_countries": "Armenia , Australia , France , Italy , Kazakhstan , Netherlands , Poland , Russia , Turkey , Ukraine", + "market_regions": "Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/oppo/2020/a53-2020-premium-edition-dual-sim-td-lte-v1-in-id-bd-128gb-cph2127.json b/data/smartphone/oppo/2020/a53-2020-premium-edition-dual-sim-td-lte-v1-in-id-bd-128gb-cph2127.json new file mode 100644 index 00000000000..d2a5740c270 --- /dev/null +++ b/data/smartphone/oppo/2020/a53-2020-premium-edition-dual-sim-td-lte-v1-in-id-bd-128gb-cph2127.json @@ -0,0 +1,43 @@ +{ + "slug": "a53-2020-premium-edition-dual-sim-td-lte-v1-in-id-bd-128gb-cph2127", + "name": "A53 2020 Premium Edition Dual SIM TD-LTE V1 IN ID BD 128GB CPH2127", + "brand": "oppo", + "soc": "snapdragon-460", + "release_date": "2020-08-31", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , India , Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/a53-2020-premium-edition-dual-sim-td-lte-v3-sg-ru-pl-128gb-cph2127.json b/data/smartphone/oppo/2020/a53-2020-premium-edition-dual-sim-td-lte-v3-sg-ru-pl-128gb-cph2127.json new file mode 100644 index 00000000000..4bedb469ccd --- /dev/null +++ b/data/smartphone/oppo/2020/a53-2020-premium-edition-dual-sim-td-lte-v3-sg-ru-pl-128gb-cph2127.json @@ -0,0 +1,43 @@ +{ + "slug": "a53-2020-premium-edition-dual-sim-td-lte-v3-sg-ru-pl-128gb-cph2127", + "name": "A53 2020 Premium Edition Dual SIM TD-LTE V3 SG RU PL 128GB CPH2127", + "brand": "oppo", + "soc": "snapdragon-460", + "release_date": "2020-09-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Poland , Russia , Saudi Arabia , Singapore , UAE", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/a53-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-np-my-64gb-cph2127.json b/data/smartphone/oppo/2020/a53-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-np-my-64gb-cph2127.json new file mode 100644 index 00000000000..2ff2a3d30fc --- /dev/null +++ b/data/smartphone/oppo/2020/a53-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-np-my-64gb-cph2127.json @@ -0,0 +1,43 @@ +{ + "slug": "a53-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-np-my-64gb-cph2127", + "name": "A53 2020 Standard Edition Dual SIM TD-LTE V1 IN ID PK NP MY 64GB CPH2127", + "brand": "oppo", + "soc": "snapdragon-460", + "release_date": "2020-08-31", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Egypt , India , Indonesia , Kenya , Malaysia , Myanmar , Nepal , Nigeria , Pakistan , Philippines , Tunisie , UAE", + "market_regions": "Africa , Asia , Middle East , Oceania , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/a53-2020-standard-edition-dual-sim-td-lte-v2-th-vn-kh-64gb-cph2127.json b/data/smartphone/oppo/2020/a53-2020-standard-edition-dual-sim-td-lte-v2-th-vn-kh-64gb-cph2127.json new file mode 100644 index 00000000000..e9a23f49400 --- /dev/null +++ b/data/smartphone/oppo/2020/a53-2020-standard-edition-dual-sim-td-lte-v2-th-vn-kh-64gb-cph2127.json @@ -0,0 +1,43 @@ +{ + "slug": "a53-2020-standard-edition-dual-sim-td-lte-v2-th-vn-kh-64gb-cph2127", + "name": "A53 2020 Standard Edition Dual SIM TD-LTE V2 TH VN KH 64GB CPH2127", + "brand": "oppo", + "soc": "snapdragon-460", + "release_date": "2020-09-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Cambodia , Thailand , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/a53-2020-standard-edition-dual-sim-td-lte-v3-ru-ua-kz-128gb-cph2127.json b/data/smartphone/oppo/2020/a53-2020-standard-edition-dual-sim-td-lte-v3-ru-ua-kz-128gb-cph2127.json new file mode 100644 index 00000000000..a8cf311f6a8 --- /dev/null +++ b/data/smartphone/oppo/2020/a53-2020-standard-edition-dual-sim-td-lte-v3-ru-ua-kz-128gb-cph2127.json @@ -0,0 +1,43 @@ +{ + "slug": "a53-2020-standard-edition-dual-sim-td-lte-v3-ru-ua-kz-128gb-cph2127", + "name": "A53 2020 Standard Edition Dual SIM TD-LTE V3 RU UA KZ 128GB CPH2127", + "brand": "oppo", + "soc": "snapdragon-460", + "release_date": "2020-08-31", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Kazakhstan , Russia , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/oppo/2020/a53-2020-standard-edition-dual-sim-td-lte-v3-ru-ua-kz-64gb-cph2127.json b/data/smartphone/oppo/2020/a53-2020-standard-edition-dual-sim-td-lte-v3-ru-ua-kz-64gb-cph2127.json new file mode 100644 index 00000000000..dff64682178 --- /dev/null +++ b/data/smartphone/oppo/2020/a53-2020-standard-edition-dual-sim-td-lte-v3-ru-ua-kz-64gb-cph2127.json @@ -0,0 +1,43 @@ +{ + "slug": "a53-2020-standard-edition-dual-sim-td-lte-v3-ru-ua-kz-64gb-cph2127", + "name": "A53 2020 Standard Edition Dual SIM TD-LTE V3 RU UA KZ 64GB CPH2127", + "brand": "oppo", + "soc": "snapdragon-460", + "release_date": "2020-08-31", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Kazakhstan , Russia , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/oppo/2020/a53-2020-standard-edition-dual-sim-td-lte-v5-mx-64gb-cph2127.json b/data/smartphone/oppo/2020/a53-2020-standard-edition-dual-sim-td-lte-v5-mx-64gb-cph2127.json new file mode 100644 index 00000000000..855a99fba47 --- /dev/null +++ b/data/smartphone/oppo/2020/a53-2020-standard-edition-dual-sim-td-lte-v5-mx-64gb-cph2127.json @@ -0,0 +1,43 @@ +{ + "slug": "a53-2020-standard-edition-dual-sim-td-lte-v5-mx-64gb-cph2127", + "name": "A53 2020 Standard Edition Dual SIM TD-LTE V5 MX 64GB CPH2127", + "brand": "oppo", + "soc": "snapdragon-460", + "release_date": "2020-09-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/oppo/2020/a53-2020-standard-edition-global-dual-sim-td-lte-v6-64gb-cph2127.json b/data/smartphone/oppo/2020/a53-2020-standard-edition-global-dual-sim-td-lte-v6-64gb-cph2127.json new file mode 100644 index 00000000000..3268a6e44bc --- /dev/null +++ b/data/smartphone/oppo/2020/a53-2020-standard-edition-global-dual-sim-td-lte-v6-64gb-cph2127.json @@ -0,0 +1,44 @@ +{ + "slug": "a53-2020-standard-edition-global-dual-sim-td-lte-v6-64gb-cph2127", + "name": "A53 2020 Standard Edition Global Dual SIM TD-LTE V6 64GB CPH2127", + "brand": "oppo", + "soc": "snapdragon-460", + "release_date": "2020-08-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 299, + "market_countries": "Australia , France , Germany , Italy , Netherlands , Portugal , Spain", + "market_regions": "Australia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/oppo/2020/a53s-2020-standard-edition-dual-sim-td-lte-v1-my-nz-za-128gb-cph2135.json b/data/smartphone/oppo/2020/a53s-2020-standard-edition-dual-sim-td-lte-v1-my-nz-za-128gb-cph2135.json new file mode 100644 index 00000000000..0d11fa206b2 --- /dev/null +++ b/data/smartphone/oppo/2020/a53s-2020-standard-edition-dual-sim-td-lte-v1-my-nz-za-128gb-cph2135.json @@ -0,0 +1,43 @@ +{ + "slug": "a53s-2020-standard-edition-dual-sim-td-lte-v1-my-nz-za-128gb-cph2135", + "name": "A53s 2020 Standard Edition Dual SIM TD-LTE V1 MY NZ ZA 128GB CPH2135", + "brand": "oppo", + "soc": "snapdragon-460", + "release_date": "2020-10-07", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Egypt , Kenya , Malaysia , Nigeria , NZ , South Africa , Tunisie", + "market_regions": "Africa , Australia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/a53s-2020-standard-edition-global-dual-sim-td-lte-v6-128gb-cph2135.json b/data/smartphone/oppo/2020/a53s-2020-standard-edition-global-dual-sim-td-lte-v6-128gb-cph2135.json new file mode 100644 index 00000000000..bfc9d21a75e --- /dev/null +++ b/data/smartphone/oppo/2020/a53s-2020-standard-edition-global-dual-sim-td-lte-v6-128gb-cph2135.json @@ -0,0 +1,44 @@ +{ + "slug": "a53s-2020-standard-edition-global-dual-sim-td-lte-v6-128gb-cph2135", + "name": "A53s 2020 Standard Edition Global Dual SIM TD-LTE V6 128GB CPH2135", + "brand": "oppo", + "soc": "snapdragon-460", + "release_date": "2020-10-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 189, + "market_countries": "Australia , France , Germany , Italy , Netherlands , Portugal , Spain , UK", + "market_regions": "Australia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/oppo/2020/a72-2020-global-dual-sim-td-lte-128gb-cph2067.json b/data/smartphone/oppo/2020/a72-2020-global-dual-sim-td-lte-128gb-cph2067.json new file mode 100644 index 00000000000..e3ee0f6f5ce --- /dev/null +++ b/data/smartphone/oppo/2020/a72-2020-global-dual-sim-td-lte-128gb-cph2067.json @@ -0,0 +1,42 @@ +{ + "slug": "a72-2020-global-dual-sim-td-lte-128gb-cph2067", + "name": "A72 2020 Global Dual SIM TD-LTE 128GB CPH2067", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2020-05-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "France , Italy , Netherlands , Poland , Russia , Spain , Turkey , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/oppo/2020/a72-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-pdym20.json b/data/smartphone/oppo/2020/a72-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-pdym20.json new file mode 100644 index 00000000000..826c102c153 --- /dev/null +++ b/data/smartphone/oppo/2020/a72-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-pdym20.json @@ -0,0 +1,44 @@ +{ + "slug": "a72-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-pdym20", + "name": "A72 5G 2020 Premium Edition Dual SIM TD-LTE CN 128GB PDYM20", + "brand": "oppo", + "soc": "dimensity-720", + "release_date": "2020-07-01", + "ram_gb": 6.0, + "battery_mah": 4040, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/a72-5g-2020-premium-edition-dual-sim-td-lte-cn-256gb-pdym20.json b/data/smartphone/oppo/2020/a72-5g-2020-premium-edition-dual-sim-td-lte-cn-256gb-pdym20.json new file mode 100644 index 00000000000..68ba0c5c7a0 --- /dev/null +++ b/data/smartphone/oppo/2020/a72-5g-2020-premium-edition-dual-sim-td-lte-cn-256gb-pdym20.json @@ -0,0 +1,43 @@ +{ + "slug": "a72-5g-2020-premium-edition-dual-sim-td-lte-cn-256gb-pdym20", + "name": "A72 5G 2020 Premium Edition Dual SIM TD-LTE CN 256GB PDYM20", + "brand": "oppo", + "soc": "dimensity-720", + "release_date": "2020-07-01", + "ram_gb": 6.0, + "battery_mah": 4040, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/a72-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdym20.json b/data/smartphone/oppo/2020/a72-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdym20.json new file mode 100644 index 00000000000..71ad02a0dab --- /dev/null +++ b/data/smartphone/oppo/2020/a72-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdym20.json @@ -0,0 +1,44 @@ +{ + "slug": "a72-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdym20", + "name": "A72 5G 2020 Standard Edition Dual SIM TD-LTE CN 128GB PDYM20", + "brand": "oppo", + "soc": "dimensity-720", + "release_date": "2020-07-01", + "ram_gb": 4.0, + "battery_mah": 4040, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1399, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/a72-5g-2020-top-edition-dual-sim-td-lte-cn-128gb-pdym20.json b/data/smartphone/oppo/2020/a72-5g-2020-top-edition-dual-sim-td-lte-cn-128gb-pdym20.json new file mode 100644 index 00000000000..523d94257a0 --- /dev/null +++ b/data/smartphone/oppo/2020/a72-5g-2020-top-edition-dual-sim-td-lte-cn-128gb-pdym20.json @@ -0,0 +1,44 @@ +{ + "slug": "a72-5g-2020-top-edition-dual-sim-td-lte-cn-128gb-pdym20", + "name": "A72 5G 2020 Top Edition Dual SIM TD-LTE CN 128GB PDYM20", + "brand": "oppo", + "soc": "dimensity-720", + "release_date": "2020-07-01", + "ram_gb": 8.0, + "battery_mah": 4040, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1899, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/a73-2020-dual-sim-td-lte-v1-my-vn-th-128gb-cph2095.json b/data/smartphone/oppo/2020/a73-2020-dual-sim-td-lte-v1-my-vn-th-128gb-cph2095.json new file mode 100644 index 00000000000..1162bf86038 --- /dev/null +++ b/data/smartphone/oppo/2020/a73-2020-dual-sim-td-lte-v1-my-vn-th-128gb-cph2095.json @@ -0,0 +1,44 @@ +{ + "slug": "a73-2020-dual-sim-td-lte-v1-my-vn-th-128gb-cph2095", + "name": "A73 2020 Dual SIM TD-LTE V1 MY VN TH 128GB CPH2095", + "brand": "oppo", + "soc": "snapdragon-662", + "release_date": "2020-10-01", + "ram_gb": 6.0, + "battery_mah": 4015, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 899, + "market_countries": "Malaysia , Thailand , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/a73-2020-dual-sim-td-lte-v3-jp-64gb-cph2099.json b/data/smartphone/oppo/2020/a73-2020-dual-sim-td-lte-v3-jp-64gb-cph2099.json new file mode 100644 index 00000000000..ccaaed8a60a --- /dev/null +++ b/data/smartphone/oppo/2020/a73-2020-dual-sim-td-lte-v3-jp-64gb-cph2099.json @@ -0,0 +1,43 @@ +{ + "slug": "a73-2020-dual-sim-td-lte-v3-jp-64gb-cph2099", + "name": "A73 2020 Dual SIM TD-LTE V3 JP 64GB CPH2099", + "brand": "oppo", + "soc": "snapdragon-662", + "release_date": "2020-12-02", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/a73-2020-global-dual-sim-td-lte-v2-128gb-cph2095.json b/data/smartphone/oppo/2020/a73-2020-global-dual-sim-td-lte-v2-128gb-cph2095.json new file mode 100644 index 00000000000..0040c7e9eb3 --- /dev/null +++ b/data/smartphone/oppo/2020/a73-2020-global-dual-sim-td-lte-v2-128gb-cph2095.json @@ -0,0 +1,43 @@ +{ + "slug": "a73-2020-global-dual-sim-td-lte-v2-128gb-cph2095", + "name": "A73 2020 Global Dual SIM TD-LTE V2 128GB CPH2095", + "brand": "oppo", + "soc": "snapdragon-662", + "release_date": "2020-10-01", + "ram_gb": 6.0, + "battery_mah": 4015, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Egypt , Kenya , Morocco , Nigeria , Tunisie , Turkey , UAE", + "market_regions": "Africa , Eastern Europe , Europe , Middle East" +} diff --git a/data/smartphone/oppo/2020/a73-5g-2020-dual-sim-td-lte-v3-tw-128gb-cph2161.json b/data/smartphone/oppo/2020/a73-5g-2020-dual-sim-td-lte-v3-tw-128gb-cph2161.json new file mode 100644 index 00000000000..d1b99651838 --- /dev/null +++ b/data/smartphone/oppo/2020/a73-5g-2020-dual-sim-td-lte-v3-tw-128gb-cph2161.json @@ -0,0 +1,43 @@ +{ + "slug": "a73-5g-2020-dual-sim-td-lte-v3-tw-128gb-cph2161", + "name": "A73 5G 2020 Dual SIM TD-LTE V3 TW 128GB CPH2161", + "brand": "oppo", + "soc": "dimensity-720", + "release_date": "2020-11-03", + "ram_gb": 8.0, + "battery_mah": 4040, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Taiwan", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/a73-5g-2020-global-dual-sim-td-lte-v1-128gb-cph2161.json b/data/smartphone/oppo/2020/a73-5g-2020-global-dual-sim-td-lte-v1-128gb-cph2161.json new file mode 100644 index 00000000000..29c736f8cd1 --- /dev/null +++ b/data/smartphone/oppo/2020/a73-5g-2020-global-dual-sim-td-lte-v1-128gb-cph2161.json @@ -0,0 +1,44 @@ +{ + "slug": "a73-5g-2020-global-dual-sim-td-lte-v1-128gb-cph2161", + "name": "A73 5G 2020 Global Dual SIM TD-LTE V1 128GB CPH2161", + "brand": "oppo", + "soc": "dimensity-720", + "release_date": "2020-10-01", + "ram_gb": 8.0, + "battery_mah": 4040, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 299, + "market_countries": "Italy , Poland , Saudi Arabia , Spain , UAE", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/oppo/2020/a92-2020-dual-sim-td-lte-apac.json b/data/smartphone/oppo/2020/a92-2020-dual-sim-td-lte-apac.json new file mode 100644 index 00000000000..7b5a6459a1e --- /dev/null +++ b/data/smartphone/oppo/2020/a92-2020-dual-sim-td-lte-apac.json @@ -0,0 +1,42 @@ +{ + "slug": "a92-2020-dual-sim-td-lte-apac", + "name": "A92 2020 Dual SIM TD-LTE APAC", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2020-05-09", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Malaysia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/a92s-5g-2020-premum-edition-dual-sim-td-lte-cn-128gb-pdkm00.json b/data/smartphone/oppo/2020/a92s-5g-2020-premum-edition-dual-sim-td-lte-cn-128gb-pdkm00.json new file mode 100644 index 00000000000..42cd242ddac --- /dev/null +++ b/data/smartphone/oppo/2020/a92s-5g-2020-premum-edition-dual-sim-td-lte-cn-128gb-pdkm00.json @@ -0,0 +1,44 @@ +{ + "slug": "a92s-5g-2020-premum-edition-dual-sim-td-lte-cn-128gb-pdkm00", + "name": "A92s 5G 2020 Premum Edition Dual SIM TD-LTE CN 128GB PDKM00", + "brand": "oppo", + "soc": "dimensity-800", + "release_date": "2020-04-29", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 2499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/a92s-5g-2020-premum-edition-dual-sim-td-lte-cn-256gb-pdkm00.json b/data/smartphone/oppo/2020/a92s-5g-2020-premum-edition-dual-sim-td-lte-cn-256gb-pdkm00.json new file mode 100644 index 00000000000..0b2ba7a63cc --- /dev/null +++ b/data/smartphone/oppo/2020/a92s-5g-2020-premum-edition-dual-sim-td-lte-cn-256gb-pdkm00.json @@ -0,0 +1,43 @@ +{ + "slug": "a92s-5g-2020-premum-edition-dual-sim-td-lte-cn-256gb-pdkm00", + "name": "A92s 5G 2020 Premum Edition Dual SIM TD-LTE CN 256GB PDKM00", + "brand": "oppo", + "soc": "dimensity-800", + "release_date": "2020-04-29", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/a92s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdkm00.json b/data/smartphone/oppo/2020/a92s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdkm00.json new file mode 100644 index 00000000000..796cbfb6dc5 --- /dev/null +++ b/data/smartphone/oppo/2020/a92s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdkm00.json @@ -0,0 +1,44 @@ +{ + "slug": "a92s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdkm00", + "name": "A92s 5G 2020 Standard Edition Dual SIM TD-LTE CN 128GB PDKM00", + "brand": "oppo", + "soc": "dimensity-800", + "release_date": "2020-04-29", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 2199, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/a92s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdkt00.json b/data/smartphone/oppo/2020/a92s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdkt00.json new file mode 100644 index 00000000000..0c881b55dcd --- /dev/null +++ b/data/smartphone/oppo/2020/a92s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdkt00.json @@ -0,0 +1,44 @@ +{ + "slug": "a92s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdkt00", + "name": "A92s 5G 2020 Standard Edition Dual SIM TD-LTE CN 128GB PDKT00", + "brand": "oppo", + "soc": "dimensity-800", + "release_date": "2020-04-29", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 2199, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/a93-2020-dual-sim-td-lte-v2-my-vn-128gb-cph2125-reno4-f.json b/data/smartphone/oppo/2020/a93-2020-dual-sim-td-lte-v2-my-vn-128gb-cph2125-reno4-f.json new file mode 100644 index 00000000000..b39fe1af4fe --- /dev/null +++ b/data/smartphone/oppo/2020/a93-2020-dual-sim-td-lte-v2-my-vn-128gb-cph2125-reno4-f.json @@ -0,0 +1,44 @@ +{ + "slug": "a93-2020-dual-sim-td-lte-v2-my-vn-128gb-cph2125-reno4-f", + "name": "A93 2020 Dual SIM TD-LTE V2 MY VN 128GB CPH2125 / Reno4 F", + "brand": "oppo", + "soc": "helio-p95", + "release_date": "2020-10-06", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1299, + "market_countries": "Indonesia , Malaysia , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/ace2-2020-eva-limited-edition-dual-sim-td-lte-cn-256gb-pdhm00.json b/data/smartphone/oppo/2020/ace2-2020-eva-limited-edition-dual-sim-td-lte-cn-256gb-pdhm00.json new file mode 100644 index 00000000000..588cafb5e65 --- /dev/null +++ b/data/smartphone/oppo/2020/ace2-2020-eva-limited-edition-dual-sim-td-lte-cn-256gb-pdhm00.json @@ -0,0 +1,43 @@ +{ + "slug": "ace2-2020-eva-limited-edition-dual-sim-td-lte-cn-256gb-pdhm00", + "name": "Ace2 2020 EVA Limited Edition Dual SIM TD-LTE CN 256GB PDHM00", + "brand": "oppo", + "soc": "snapdragon-865", + "release_date": "2020-06-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/ace2-2020-premium-edition-dual-sim-td-lte-cn-256gb-pdhm00.json b/data/smartphone/oppo/2020/ace2-2020-premium-edition-dual-sim-td-lte-cn-256gb-pdhm00.json new file mode 100644 index 00000000000..23b374c77d9 --- /dev/null +++ b/data/smartphone/oppo/2020/ace2-2020-premium-edition-dual-sim-td-lte-cn-256gb-pdhm00.json @@ -0,0 +1,43 @@ +{ + "slug": "ace2-2020-premium-edition-dual-sim-td-lte-cn-256gb-pdhm00", + "name": "Ace2 2020 Premium Edition Dual SIM TD-LTE CN 256GB PDHM00", + "brand": "oppo", + "soc": "snapdragon-865", + "release_date": "2020-04-21", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/ace2-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdhm00.json b/data/smartphone/oppo/2020/ace2-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdhm00.json new file mode 100644 index 00000000000..f7d3f0a55c4 --- /dev/null +++ b/data/smartphone/oppo/2020/ace2-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdhm00.json @@ -0,0 +1,43 @@ +{ + "slug": "ace2-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdhm00", + "name": "Ace2 2020 Standard Edition Dual SIM TD-LTE CN 128GB PDHM00", + "brand": "oppo", + "soc": "snapdragon-865", + "release_date": "2020-04-21", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/ace2-2020-standard-edition-dual-sim-td-lte-cn-256gb-pdhm00.json b/data/smartphone/oppo/2020/ace2-2020-standard-edition-dual-sim-td-lte-cn-256gb-pdhm00.json new file mode 100644 index 00000000000..a2585a8befd --- /dev/null +++ b/data/smartphone/oppo/2020/ace2-2020-standard-edition-dual-sim-td-lte-cn-256gb-pdhm00.json @@ -0,0 +1,43 @@ +{ + "slug": "ace2-2020-standard-edition-dual-sim-td-lte-cn-256gb-pdhm00", + "name": "Ace2 2020 Standard Edition Dual SIM TD-LTE CN 256GB PDHM00", + "brand": "oppo", + "soc": "snapdragon-865", + "release_date": "2020-04-21", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/f15-2020-dual-sim-td-lte-in-128gb-cph2001.json b/data/smartphone/oppo/2020/f15-2020-dual-sim-td-lte-in-128gb-cph2001.json new file mode 100644 index 00000000000..b60354f8309 --- /dev/null +++ b/data/smartphone/oppo/2020/f15-2020-dual-sim-td-lte-in-128gb-cph2001.json @@ -0,0 +1,42 @@ +{ + "slug": "f15-2020-dual-sim-td-lte-in-128gb-cph2001", + "name": "F15 2020 Dual SIM TD-LTE IN 128GB CPH2001", + "brand": "oppo", + "soc": "helio-p70", + "release_date": "2020-01-24", + "ram_gb": 8.0, + "battery_mah": 4025, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/f17-2020-premium-edition-dual-sim-td-lte-v1-in-128gb-cph2095.json b/data/smartphone/oppo/2020/f17-2020-premium-edition-dual-sim-td-lte-v1-in-128gb-cph2095.json new file mode 100644 index 00000000000..f969e939f46 --- /dev/null +++ b/data/smartphone/oppo/2020/f17-2020-premium-edition-dual-sim-td-lte-v1-in-128gb-cph2095.json @@ -0,0 +1,43 @@ +{ + "slug": "f17-2020-premium-edition-dual-sim-td-lte-v1-in-128gb-cph2095", + "name": "F17 2020 Premium Edition Dual SIM TD-LTE V1 IN 128GB CPH2095", + "brand": "oppo", + "soc": "snapdragon-662", + "release_date": "2020-09-09", + "ram_gb": 8.0, + "battery_mah": 4015, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/f17-2020-standard-edition-dual-sim-td-lte-v1-in-128gb-cph2095.json b/data/smartphone/oppo/2020/f17-2020-standard-edition-dual-sim-td-lte-v1-in-128gb-cph2095.json new file mode 100644 index 00000000000..2377a010e88 --- /dev/null +++ b/data/smartphone/oppo/2020/f17-2020-standard-edition-dual-sim-td-lte-v1-in-128gb-cph2095.json @@ -0,0 +1,43 @@ +{ + "slug": "f17-2020-standard-edition-dual-sim-td-lte-v1-in-128gb-cph2095", + "name": "F17 2020 Standard Edition Dual SIM TD-LTE V1 IN 128GB CPH2095", + "brand": "oppo", + "soc": "snapdragon-662", + "release_date": "2020-09-09", + "ram_gb": 6.0, + "battery_mah": 4015, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/f17-pro-2020-dual-sim-td-lte-in-v1-128gb-cph2119.json b/data/smartphone/oppo/2020/f17-pro-2020-dual-sim-td-lte-in-v1-128gb-cph2119.json new file mode 100644 index 00000000000..3e0ec154a48 --- /dev/null +++ b/data/smartphone/oppo/2020/f17-pro-2020-dual-sim-td-lte-in-v1-128gb-cph2119.json @@ -0,0 +1,43 @@ +{ + "slug": "f17-pro-2020-dual-sim-td-lte-in-v1-128gb-cph2119", + "name": "F17 Pro 2020 Dual SIM TD-LTE IN V1 128GB CPH2119", + "brand": "oppo", + "soc": "helio-p95", + "release_date": "2020-12-07", + "ram_gb": 8.0, + "battery_mah": 4015, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/find-x2-5g-ceramic-dual-sim-td-lte-cn-256gb-pdem10.json b/data/smartphone/oppo/2020/find-x2-5g-ceramic-dual-sim-td-lte-cn-256gb-pdem10.json new file mode 100644 index 00000000000..ad6fc43d1e7 --- /dev/null +++ b/data/smartphone/oppo/2020/find-x2-5g-ceramic-dual-sim-td-lte-cn-256gb-pdem10.json @@ -0,0 +1,43 @@ +{ + "slug": "find-x2-5g-ceramic-dual-sim-td-lte-cn-256gb-pdem10", + "name": "Find X2 5G Ceramic Dual SIM TD-LTE CN 256GB PDEM10", + "brand": "oppo", + "soc": "snapdragon-865", + "release_date": "2020-03-13", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 209.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 520 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/find-x2-5g-dual-sim-td-lte-cn-128gb-pdem10.json b/data/smartphone/oppo/2020/find-x2-5g-dual-sim-td-lte-cn-128gb-pdem10.json new file mode 100644 index 00000000000..ce46538a974 --- /dev/null +++ b/data/smartphone/oppo/2020/find-x2-5g-dual-sim-td-lte-cn-128gb-pdem10.json @@ -0,0 +1,43 @@ +{ + "slug": "find-x2-5g-dual-sim-td-lte-cn-128gb-pdem10", + "name": "Find X2 5G Dual SIM TD-LTE CN 128GB PDEM10", + "brand": "oppo", + "soc": "snapdragon-865", + "release_date": "2020-03-13", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 520 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/find-x2-5g-dual-sim-td-lte-cn-128gb-pdet10.json b/data/smartphone/oppo/2020/find-x2-5g-dual-sim-td-lte-cn-128gb-pdet10.json new file mode 100644 index 00000000000..01b4fb572f6 --- /dev/null +++ b/data/smartphone/oppo/2020/find-x2-5g-dual-sim-td-lte-cn-128gb-pdet10.json @@ -0,0 +1,43 @@ +{ + "slug": "find-x2-5g-dual-sim-td-lte-cn-128gb-pdet10", + "name": "Find X2 5G Dual SIM TD-LTE CN 128GB PDET10", + "brand": "oppo", + "soc": "snapdragon-865", + "release_date": "2020-03-13", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 520 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/find-x2-5g-premium-edition-ceramic-global-td-lte-256gb-cph2023.json b/data/smartphone/oppo/2020/find-x2-5g-premium-edition-ceramic-global-td-lte-256gb-cph2023.json new file mode 100644 index 00000000000..77256e71c9a --- /dev/null +++ b/data/smartphone/oppo/2020/find-x2-5g-premium-edition-ceramic-global-td-lte-256gb-cph2023.json @@ -0,0 +1,43 @@ +{ + "slug": "find-x2-5g-premium-edition-ceramic-global-td-lte-256gb-cph2023", + "name": "Find X2 5G Premium Edition Ceramic Global TD-LTE 256GB CPH2023", + "brand": "oppo", + "soc": "snapdragon-865", + "release_date": "2020-04-01", + "ram_gb": 12.0, + "battery_mah": 4200, + "weight_g": 209.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 520 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Cambodia , Czech , Egypt , France , HK , India , Indonesia , Italy , Japan , Kenya , Netherlands , NZ , Poland , Russia , Saudi Arabia , Singapore , Spain , Switzerland , Taiwan , Thailand , Turkey , UAE , UK , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2020/find-x2-lite-5g-global-td-lte-128gb-cph2005.json b/data/smartphone/oppo/2020/find-x2-lite-5g-global-td-lte-128gb-cph2005.json new file mode 100644 index 00000000000..bc6ea5897fe --- /dev/null +++ b/data/smartphone/oppo/2020/find-x2-lite-5g-global-td-lte-128gb-cph2005.json @@ -0,0 +1,43 @@ +{ + "slug": "find-x2-lite-5g-global-td-lte-128gb-cph2005", + "name": "Find X2 Lite 5G Global TD-LTE 128GB CPH2005", + "brand": "oppo", + "soc": "snapdragon-765", + "release_date": "2020-05-01", + "ram_gb": 8.0, + "battery_mah": 4025, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Canada , Czech , Germany , HK , Italy , Japan , NZ , Pakistan , Philippines , Poland , Russia , Saudi Arabia , Singapore , Spain , Taiwan , Turkey , UAE , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , North America , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2020/find-x2-pro-5g-premium-edition-ceramic-dual-sim-td-lte-cn-256gb-pdem30.json b/data/smartphone/oppo/2020/find-x2-pro-5g-premium-edition-ceramic-dual-sim-td-lte-cn-256gb-pdem30.json new file mode 100644 index 00000000000..c04b62e3090 --- /dev/null +++ b/data/smartphone/oppo/2020/find-x2-pro-5g-premium-edition-ceramic-dual-sim-td-lte-cn-256gb-pdem30.json @@ -0,0 +1,43 @@ +{ + "slug": "find-x2-pro-5g-premium-edition-ceramic-dual-sim-td-lte-cn-256gb-pdem30", + "name": "Find X2 Pro 5G Premium Edition Ceramic Dual SIM TD-LTE CN 256GB PDEM30", + "brand": "oppo", + "soc": "snapdragon-865", + "release_date": "2020-03-24", + "ram_gb": 12.0, + "battery_mah": 4260, + "weight_g": 217.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 520 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/find-x2-pro-5g-premium-edition-ceramic-global-td-lte-512gb-cph2025.json b/data/smartphone/oppo/2020/find-x2-pro-5g-premium-edition-ceramic-global-td-lte-512gb-cph2025.json new file mode 100644 index 00000000000..825812d9c47 --- /dev/null +++ b/data/smartphone/oppo/2020/find-x2-pro-5g-premium-edition-ceramic-global-td-lte-512gb-cph2025.json @@ -0,0 +1,43 @@ +{ + "slug": "find-x2-pro-5g-premium-edition-ceramic-global-td-lte-512gb-cph2025", + "name": "Find X2 Pro 5G Premium Edition Ceramic Global TD-LTE 512GB CPH2025", + "brand": "oppo", + "soc": "snapdragon-865", + "release_date": "2020-04-01", + "ram_gb": 12.0, + "battery_mah": 4260, + "weight_g": 207.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 520 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Australia , Bangladesh , Belgium , Cambodia , Czech , Egypt , France , Germany , HK , India , Indonesia , Italy , Japan , Kazakhstan , Kenya , Malaysia , Morocco , Myanmar , Netherlands , NZ , Pakistan , Philippines , Poland , Russia , Romania , Saudi Arabia , Singapore , Spain , Switzerland , Taiwan , Thailand , Tunisie , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2020/find-x2-pro-5g-premium-edition-ceramic-td-lte-jp-512gb-opg01.json b/data/smartphone/oppo/2020/find-x2-pro-5g-premium-edition-ceramic-td-lte-jp-512gb-opg01.json new file mode 100644 index 00000000000..37960aecc5f --- /dev/null +++ b/data/smartphone/oppo/2020/find-x2-pro-5g-premium-edition-ceramic-td-lte-jp-512gb-opg01.json @@ -0,0 +1,43 @@ +{ + "slug": "find-x2-pro-5g-premium-edition-ceramic-td-lte-jp-512gb-opg01", + "name": "Find X2 Pro 5G Premium Edition Ceramic TD-LTE JP 512GB OPG01", + "brand": "oppo", + "soc": "snapdragon-865", + "release_date": "2020-04-01", + "ram_gb": 12.0, + "battery_mah": 4260, + "weight_g": 207.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 520 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/find-x2-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pdem30.json b/data/smartphone/oppo/2020/find-x2-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pdem30.json new file mode 100644 index 00000000000..79d26b23052 --- /dev/null +++ b/data/smartphone/oppo/2020/find-x2-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pdem30.json @@ -0,0 +1,43 @@ +{ + "slug": "find-x2-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pdem30", + "name": "Find X2 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB PDEM30", + "brand": "oppo", + "soc": "snapdragon-865", + "release_date": "2020-03-24", + "ram_gb": 12.0, + "battery_mah": 4260, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 520 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/find-x2-pro-5g-premium-edition-global-td-lte-256gb-cph2025.json b/data/smartphone/oppo/2020/find-x2-pro-5g-premium-edition-global-td-lte-256gb-cph2025.json new file mode 100644 index 00000000000..c7cb63330a1 --- /dev/null +++ b/data/smartphone/oppo/2020/find-x2-pro-5g-premium-edition-global-td-lte-256gb-cph2025.json @@ -0,0 +1,43 @@ +{ + "slug": "find-x2-pro-5g-premium-edition-global-td-lte-256gb-cph2025", + "name": "Find X2 Pro 5G Premium Edition Global TD-LTE 256GB CPH2025", + "brand": "oppo", + "soc": "snapdragon-865", + "release_date": "2020-04-01", + "ram_gb": 12.0, + "battery_mah": 4260, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 520 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Australia , Bangladesh , Belgium , Cambodia , Czech , Egypt , France , Germany , HK , India , Indonesia , Italy , Japan , Kazakhstan , Kenya , Malaysia , Morocco , Myanmar , Netherlands , NZ , Pakistan , Philippines , Poland , Russia , Romania , Saudi Arabia , Singapore , Spain , Switzerland , Taiwan , Thailand , Tunisie , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2020/k7-2020-5g-dual-sim-td-lte-cn-256gb-pcrt01.json b/data/smartphone/oppo/2020/k7-2020-5g-dual-sim-td-lte-cn-256gb-pcrt01.json new file mode 100644 index 00000000000..c260aefdf0b --- /dev/null +++ b/data/smartphone/oppo/2020/k7-2020-5g-dual-sim-td-lte-cn-256gb-pcrt01.json @@ -0,0 +1,44 @@ +{ + "slug": "k7-2020-5g-dual-sim-td-lte-cn-256gb-pcrt01", + "name": "K7 2020 5G Dual SIM TD-LTE CN 256GB PCRT01", + "brand": "oppo", + "soc": "snapdragon-765", + "release_date": "2020-08-11", + "ram_gb": 8.0, + "battery_mah": 4025, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2299, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/k7-2020-dual-sim-td-lte-cn-128gb-pcrt01.json b/data/smartphone/oppo/2020/k7-2020-dual-sim-td-lte-cn-128gb-pcrt01.json new file mode 100644 index 00000000000..b696eeecf17 --- /dev/null +++ b/data/smartphone/oppo/2020/k7-2020-dual-sim-td-lte-cn-128gb-pcrt01.json @@ -0,0 +1,44 @@ +{ + "slug": "k7-2020-dual-sim-td-lte-cn-128gb-pcrt01", + "name": "K7 2020 Dual SIM TD-LTE CN 128GB PCRT01", + "brand": "oppo", + "soc": "snapdragon-765", + "release_date": "2020-08-11", + "ram_gb": 8.0, + "battery_mah": 4025, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/k7x-2020-5g-dual-sim-td-lte-cn-128gb-perm00.json b/data/smartphone/oppo/2020/k7x-2020-5g-dual-sim-td-lte-cn-128gb-perm00.json new file mode 100644 index 00000000000..9843cb2a158 --- /dev/null +++ b/data/smartphone/oppo/2020/k7x-2020-5g-dual-sim-td-lte-cn-128gb-perm00.json @@ -0,0 +1,44 @@ +{ + "slug": "k7x-2020-5g-dual-sim-td-lte-cn-128gb-perm00", + "name": "K7x 2020 5G Dual SIM TD-LTE CN 128GB PERM00", + "brand": "oppo", + "soc": "dimensity-720", + "release_date": "2020-11-11", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-5i-global-dual-sim-td-lte-v3-64gb-rmx2030.json b/data/smartphone/oppo/2020/realme-5i-global-dual-sim-td-lte-v3-64gb-rmx2030.json new file mode 100644 index 00000000000..e0175b60889 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-5i-global-dual-sim-td-lte-v3-64gb-rmx2030.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-5i-global-dual-sim-td-lte-v3-64gb-rmx2030", + "name": "Realme 5i Global Dual SIM TD-LTE V3 64GB RMX2030", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2020-05-04", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Italy , Poland , Russia , Spain , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/oppo/2020/realme-5i-premium-edition-dual-sim-td-lte-v1-id-128gb-rmx2030.json b/data/smartphone/oppo/2020/realme-5i-premium-edition-dual-sim-td-lte-v1-id-128gb-rmx2030.json new file mode 100644 index 00000000000..085fe7ad985 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-5i-premium-edition-dual-sim-td-lte-v1-id-128gb-rmx2030.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-5i-premium-edition-dual-sim-td-lte-v1-id-128gb-rmx2030", + "name": "Realme 5i Premium Edition Dual SIM TD-LTE V1 ID 128GB RMX2030", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2020-01-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-5i-premium-edition-dual-sim-td-lte-v1-in-id-vn-th-sg-tr-64gb-rmx2030.json b/data/smartphone/oppo/2020/realme-5i-premium-edition-dual-sim-td-lte-v1-in-id-vn-th-sg-tr-64gb-rmx2030.json new file mode 100644 index 00000000000..9c7253cd9eb --- /dev/null +++ b/data/smartphone/oppo/2020/realme-5i-premium-edition-dual-sim-td-lte-v1-in-id-vn-th-sg-tr-64gb-rmx2030.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-5i-premium-edition-dual-sim-td-lte-v1-in-id-vn-th-sg-tr-64gb-rmx2030", + "name": "Realme 5i Premium Edition Dual SIM TD-LTE V1 IN ID VN TH SG TR 64GB RMX2030", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2020-01-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Indonesia , Singapore , Thailand , Turkey , Vietnam", + "market_regions": "Asia , Middle East , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-5i-premium-edition-dual-sim-td-lte-v2-my-pk-64gb-rmx2030.json b/data/smartphone/oppo/2020/realme-5i-premium-edition-dual-sim-td-lte-v2-my-pk-64gb-rmx2030.json new file mode 100644 index 00000000000..e20970230bc --- /dev/null +++ b/data/smartphone/oppo/2020/realme-5i-premium-edition-dual-sim-td-lte-v2-my-pk-64gb-rmx2030.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-5i-premium-edition-dual-sim-td-lte-v2-my-pk-64gb-rmx2030", + "name": "Realme 5i Premium Edition Dual SIM TD-LTE V2 MY PK 64GB RMX2030", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2020-01-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Malaysia , Pakistan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-5i-standard-edition-dual-sim-td-lte-v1-id-vn-th-tr-32gb-rmx2030.json b/data/smartphone/oppo/2020/realme-5i-standard-edition-dual-sim-td-lte-v1-id-vn-th-tr-32gb-rmx2030.json new file mode 100644 index 00000000000..a9aeeaddb90 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-5i-standard-edition-dual-sim-td-lte-v1-id-vn-th-tr-32gb-rmx2030.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-5i-standard-edition-dual-sim-td-lte-v1-id-vn-th-tr-32gb-rmx2030", + "name": "Realme 5i Standard Edition Dual SIM TD-LTE V1 ID VN TH TR 32GB RMX2030", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2020-01-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Indonesia , Thailand , Turkey , Vietnam", + "market_regions": "Asia , Middle East , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-5i-standard-edition-dual-sim-td-lte-v2-ph-64gb-rmx2030.json b/data/smartphone/oppo/2020/realme-5i-standard-edition-dual-sim-td-lte-v2-ph-64gb-rmx2030.json new file mode 100644 index 00000000000..2e56daf1b5a --- /dev/null +++ b/data/smartphone/oppo/2020/realme-5i-standard-edition-dual-sim-td-lte-v2-ph-64gb-rmx2030.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-5i-standard-edition-dual-sim-td-lte-v2-ph-64gb-rmx2030", + "name": "Realme 5i Standard Edition Dual SIM TD-LTE V2 PH 64GB RMX2030", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2020-01-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Philippines", + "market_regions": "Asia , Oceania" +} diff --git a/data/smartphone/oppo/2020/realme-6-premium-edition-dual-sim-td-lte-v1-in-id-sg-th-tr-128gb-rmx2001.json b/data/smartphone/oppo/2020/realme-6-premium-edition-dual-sim-td-lte-v1-in-id-sg-th-tr-128gb-rmx2001.json new file mode 100644 index 00000000000..1ee642ce0c8 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-6-premium-edition-dual-sim-td-lte-v1-in-id-sg-th-tr-128gb-rmx2001.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-6-premium-edition-dual-sim-td-lte-v1-in-id-sg-th-tr-128gb-rmx2001", + "name": "Realme 6 Premium Edition Dual SIM TD-LTE V1 IN ID SG TH TR 128GB RMX2001", + "brand": "oppo", + "soc": "helio-g90", + "release_date": "2020-03-11", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Egypt , India , Indonesia , Saudi Arabia , Singapore , Thailand , Turkey , UAE", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-6-premium-edition-dual-sim-td-lte-v1-it-pl-cz-128gb-rmx2001.json b/data/smartphone/oppo/2020/realme-6-premium-edition-dual-sim-td-lte-v1-it-pl-cz-128gb-rmx2001.json new file mode 100644 index 00000000000..56a198d308f --- /dev/null +++ b/data/smartphone/oppo/2020/realme-6-premium-edition-dual-sim-td-lte-v1-it-pl-cz-128gb-rmx2001.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-6-premium-edition-dual-sim-td-lte-v1-it-pl-cz-128gb-rmx2001", + "name": "Realme 6 Premium Edition Dual SIM TD-LTE V1 IT PL CZ 128GB RMX2001", + "brand": "oppo", + "soc": "helio-g90", + "release_date": "2020-03-01", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Czech , Italy , Poland", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/oppo/2020/realme-6-premium-edition-dual-sim-td-lte-v2-my-ph-sg-128gb-rmx2001.json b/data/smartphone/oppo/2020/realme-6-premium-edition-dual-sim-td-lte-v2-my-ph-sg-128gb-rmx2001.json new file mode 100644 index 00000000000..089e5af4bc0 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-6-premium-edition-dual-sim-td-lte-v2-my-ph-sg-128gb-rmx2001.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-6-premium-edition-dual-sim-td-lte-v2-my-ph-sg-128gb-rmx2001", + "name": "Realme 6 Premium Edition Dual SIM TD-LTE V2 MY PH SG 128GB RMX2001", + "brand": "oppo", + "soc": "helio-g90", + "release_date": "2020-03-01", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Malaysia , Philippines , Singapore", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-6-premium-edition-dual-sim-td-lte-v4-ru-128gb-rmx2001.json b/data/smartphone/oppo/2020/realme-6-premium-edition-dual-sim-td-lte-v4-ru-128gb-rmx2001.json new file mode 100644 index 00000000000..ed7ad24f506 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-6-premium-edition-dual-sim-td-lte-v4-ru-128gb-rmx2001.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-6-premium-edition-dual-sim-td-lte-v4-ru-128gb-rmx2001", + "name": "Realme 6 Premium Edition Dual SIM TD-LTE V4 RU 128GB RMX2001", + "brand": "oppo", + "soc": "helio-g90", + "release_date": "2020-03-01", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Russia", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/oppo/2020/realme-6-premium-edition-global-dual-sim-td-lte-v3-128gb-rmx2001.json b/data/smartphone/oppo/2020/realme-6-premium-edition-global-dual-sim-td-lte-v3-128gb-rmx2001.json new file mode 100644 index 00000000000..663064212eb --- /dev/null +++ b/data/smartphone/oppo/2020/realme-6-premium-edition-global-dual-sim-td-lte-v3-128gb-rmx2001.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-6-premium-edition-global-dual-sim-td-lte-v3-128gb-rmx2001", + "name": "Realme 6 Premium Edition Global Dual SIM TD-LTE V3 128GB RMX2001", + "brand": "oppo", + "soc": "helio-g90", + "release_date": "2020-03-11", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Italy , Pakistan , Poland , Spain , UK", + "market_regions": "Asia , Australia , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2020/realme-6-standard-edition-dual-sim-td-lte-v1-in-64gb-rmx2001.json b/data/smartphone/oppo/2020/realme-6-standard-edition-dual-sim-td-lte-v1-in-64gb-rmx2001.json new file mode 100644 index 00000000000..f27db005b23 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-6-standard-edition-dual-sim-td-lte-v1-in-64gb-rmx2001.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-6-standard-edition-dual-sim-td-lte-v1-in-64gb-rmx2001", + "name": "Realme 6 Standard Edition Dual SIM TD-LTE V1 IN 64GB RMX2001", + "brand": "oppo", + "soc": "helio-g90", + "release_date": "2020-03-11", + "ram_gb": 4.0, + "battery_mah": 4300, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-6-standard-edition-dual-sim-td-lte-v1-in-id-sg-th-tr-128gb-rmx2001.json b/data/smartphone/oppo/2020/realme-6-standard-edition-dual-sim-td-lte-v1-in-id-sg-th-tr-128gb-rmx2001.json new file mode 100644 index 00000000000..d4e22d3dd26 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-6-standard-edition-dual-sim-td-lte-v1-in-id-sg-th-tr-128gb-rmx2001.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-6-standard-edition-dual-sim-td-lte-v1-in-id-sg-th-tr-128gb-rmx2001", + "name": "Realme 6 Standard Edition Dual SIM TD-LTE V1 IN ID SG TH TR 128GB RMX2001", + "brand": "oppo", + "soc": "helio-g90", + "release_date": "2020-03-11", + "ram_gb": 6.0, + "battery_mah": 4300, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Egypt , India , Indonesia , Saudi Arabia , Singapore , Thailand , Turkey , UAE", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-6-standard-edition-dual-sim-td-lte-v1-it-pl-cz-128gb-rmx2001.json b/data/smartphone/oppo/2020/realme-6-standard-edition-dual-sim-td-lte-v1-it-pl-cz-128gb-rmx2001.json new file mode 100644 index 00000000000..adf4b449aa2 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-6-standard-edition-dual-sim-td-lte-v1-it-pl-cz-128gb-rmx2001.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-6-standard-edition-dual-sim-td-lte-v1-it-pl-cz-128gb-rmx2001", + "name": "Realme 6 Standard Edition Dual SIM TD-LTE V1 IT PL CZ 128GB RMX2001", + "brand": "oppo", + "soc": "helio-g90", + "release_date": "2020-03-01", + "ram_gb": 4.0, + "battery_mah": 4300, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Czech , Italy , Poland", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/oppo/2020/realme-6-standard-edition-dual-sim-td-lte-v1-it-pl-cz-64gb-rmx2001.json b/data/smartphone/oppo/2020/realme-6-standard-edition-dual-sim-td-lte-v1-it-pl-cz-64gb-rmx2001.json new file mode 100644 index 00000000000..f554e58e159 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-6-standard-edition-dual-sim-td-lte-v1-it-pl-cz-64gb-rmx2001.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-6-standard-edition-dual-sim-td-lte-v1-it-pl-cz-64gb-rmx2001", + "name": "Realme 6 Standard Edition Dual SIM TD-LTE V1 IT PL CZ 64GB RMX2001", + "brand": "oppo", + "soc": "helio-g90", + "release_date": "2020-03-01", + "ram_gb": 4.0, + "battery_mah": 4300, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Czech , Italy , Poland", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/oppo/2020/realme-6-standard-edition-dual-sim-td-lte-v2-my-ph-sg-128gb-rmx2001.json b/data/smartphone/oppo/2020/realme-6-standard-edition-dual-sim-td-lte-v2-my-ph-sg-128gb-rmx2001.json new file mode 100644 index 00000000000..69bf04991f8 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-6-standard-edition-dual-sim-td-lte-v2-my-ph-sg-128gb-rmx2001.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-6-standard-edition-dual-sim-td-lte-v2-my-ph-sg-128gb-rmx2001", + "name": "Realme 6 Standard Edition Dual SIM TD-LTE V2 MY PH SG 128GB RMX2001", + "brand": "oppo", + "soc": "helio-g90", + "release_date": "2020-03-11", + "ram_gb": 6.0, + "battery_mah": 4300, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Malaysia , Philippines", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-6-standard-edition-dual-sim-td-lte-v4-ru-128gb-rmx2001.json b/data/smartphone/oppo/2020/realme-6-standard-edition-dual-sim-td-lte-v4-ru-128gb-rmx2001.json new file mode 100644 index 00000000000..13a927db2e1 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-6-standard-edition-dual-sim-td-lte-v4-ru-128gb-rmx2001.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-6-standard-edition-dual-sim-td-lte-v4-ru-128gb-rmx2001", + "name": "Realme 6 Standard Edition Dual SIM TD-LTE V4 RU 128GB RMX2001", + "brand": "oppo", + "soc": "helio-g90", + "release_date": "2020-03-01", + "ram_gb": 4.0, + "battery_mah": 4300, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Russia", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/oppo/2020/realme-6-standard-edition-global-dual-sim-td-lte-v3-128gb-rmx2001.json b/data/smartphone/oppo/2020/realme-6-standard-edition-global-dual-sim-td-lte-v3-128gb-rmx2001.json new file mode 100644 index 00000000000..6467833c82b --- /dev/null +++ b/data/smartphone/oppo/2020/realme-6-standard-edition-global-dual-sim-td-lte-v3-128gb-rmx2001.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-6-standard-edition-global-dual-sim-td-lte-v3-128gb-rmx2001", + "name": "Realme 6 Standard Edition Global Dual SIM TD-LTE V3 128GB RMX2001", + "brand": "oppo", + "soc": "helio-g90", + "release_date": "2020-03-11", + "ram_gb": 4.0, + "battery_mah": 4300, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Italy , Pakistan , Poland , Spain , UK", + "market_regions": "Asia , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2020/realme-6-standard-edition-global-dual-sim-td-lte-v3-64gb-rmx2001.json b/data/smartphone/oppo/2020/realme-6-standard-edition-global-dual-sim-td-lte-v3-64gb-rmx2001.json new file mode 100644 index 00000000000..55822958c96 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-6-standard-edition-global-dual-sim-td-lte-v3-64gb-rmx2001.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-6-standard-edition-global-dual-sim-td-lte-v3-64gb-rmx2001", + "name": "Realme 6 Standard Edition Global Dual SIM TD-LTE V3 64GB RMX2001", + "brand": "oppo", + "soc": "helio-g90", + "release_date": "2020-03-11", + "ram_gb": 4.0, + "battery_mah": 4300, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Italy , Pakistan , Poland , Spain , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2020/realme-6i-dual-sim-td-lte-v1-pl-128gb-rmx2040.json b/data/smartphone/oppo/2020/realme-6i-dual-sim-td-lte-v1-pl-128gb-rmx2040.json new file mode 100644 index 00000000000..8c27abc055a --- /dev/null +++ b/data/smartphone/oppo/2020/realme-6i-dual-sim-td-lte-v1-pl-128gb-rmx2040.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-6i-dual-sim-td-lte-v1-pl-128gb-rmx2040", + "name": "Realme 6i Dual SIM TD-LTE V1 PL 128GB RMX2040", + "brand": "oppo", + "soc": "helio-g80", + "release_date": "2020-05-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Poland", + "market_regions": "Eastern Europe , Europe" +} diff --git a/data/smartphone/oppo/2020/realme-6i-dual-sim-td-lte-v1-th-pk-tr-128gb-rmx2040.json b/data/smartphone/oppo/2020/realme-6i-dual-sim-td-lte-v1-th-pk-tr-128gb-rmx2040.json new file mode 100644 index 00000000000..099facb96d7 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-6i-dual-sim-td-lte-v1-th-pk-tr-128gb-rmx2040.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-6i-dual-sim-td-lte-v1-th-pk-tr-128gb-rmx2040", + "name": "Realme 6i Dual SIM TD-LTE V1 TH PK TR 128GB RMX2040", + "brand": "oppo", + "soc": "helio-g80", + "release_date": "2020-04-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Egypt , Pakistan , Saudi Arabia , Thailand , Turkey , UAE", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-6i-dual-sim-td-lte-v1-th-pk-tr-64gb-rmx2040.json b/data/smartphone/oppo/2020/realme-6i-dual-sim-td-lte-v1-th-pk-tr-64gb-rmx2040.json new file mode 100644 index 00000000000..89b4bd37c23 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-6i-dual-sim-td-lte-v1-th-pk-tr-64gb-rmx2040.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-6i-dual-sim-td-lte-v1-th-pk-tr-64gb-rmx2040", + "name": "Realme 6i Dual SIM TD-LTE V1 TH PK TR 64GB RMX2040", + "brand": "oppo", + "soc": "helio-g80", + "release_date": "2020-04-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Egypt , Pakistan , Saudi Arabia , Thailand , Turkey , UAE", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-6i-dual-sim-td-lte-v2-ph-my-sg-128gb-rmx2040.json b/data/smartphone/oppo/2020/realme-6i-dual-sim-td-lte-v2-ph-my-sg-128gb-rmx2040.json new file mode 100644 index 00000000000..a7753ce0c05 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-6i-dual-sim-td-lte-v2-ph-my-sg-128gb-rmx2040.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-6i-dual-sim-td-lte-v2-ph-my-sg-128gb-rmx2040", + "name": "Realme 6i Dual SIM TD-LTE V2 PH MY SG 128GB RMX2040", + "brand": "oppo", + "soc": "helio-g80", + "release_date": "2020-04-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Malaysia , Philippines , Singapore", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-6i-dual-sim-td-lte-v2-ph-my-sg-64gb-rmx2040.json b/data/smartphone/oppo/2020/realme-6i-dual-sim-td-lte-v2-ph-my-sg-64gb-rmx2040.json new file mode 100644 index 00000000000..8c8d73339e5 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-6i-dual-sim-td-lte-v2-ph-my-sg-64gb-rmx2040.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-6i-dual-sim-td-lte-v2-ph-my-sg-64gb-rmx2040", + "name": "Realme 6i Dual SIM TD-LTE V2 PH MY SG 64GB RMX2040", + "brand": "oppo", + "soc": "helio-g80", + "release_date": "2020-04-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Malaysia , Philippines , Singapore", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-6i-dual-sim-td-lte-v2-ru-128gb-rmx2040.json b/data/smartphone/oppo/2020/realme-6i-dual-sim-td-lte-v2-ru-128gb-rmx2040.json new file mode 100644 index 00000000000..047189c1a65 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-6i-dual-sim-td-lte-v2-ru-128gb-rmx2040.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-6i-dual-sim-td-lte-v2-ru-128gb-rmx2040", + "name": "Realme 6i Dual SIM TD-LTE V2 RU 128GB RMX2040", + "brand": "oppo", + "soc": "helio-g80", + "release_date": "2020-05-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Russia", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/oppo/2020/realme-6i-global-dual-sim-td-lte-v3-128gb-rmx2040.json b/data/smartphone/oppo/2020/realme-6i-global-dual-sim-td-lte-v3-128gb-rmx2040.json new file mode 100644 index 00000000000..d8d8ac49cd3 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-6i-global-dual-sim-td-lte-v3-128gb-rmx2040.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-6i-global-dual-sim-td-lte-v3-128gb-rmx2040", + "name": "Realme 6i Global Dual SIM TD-LTE V3 128GB RMX2040", + "brand": "oppo", + "soc": "helio-g80", + "release_date": "2020-05-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Czech , Italy , Spain , UK", + "market_regions": "Europe , Western Europe" +} diff --git a/data/smartphone/oppo/2020/realme-6s-global-dual-sim-td-lte-v3-64gb-rmx2002.json b/data/smartphone/oppo/2020/realme-6s-global-dual-sim-td-lte-v3-64gb-rmx2002.json new file mode 100644 index 00000000000..8bd95bee282 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-6s-global-dual-sim-td-lte-v3-64gb-rmx2002.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-6s-global-dual-sim-td-lte-v3-64gb-rmx2002", + "name": "Realme 6s Global Dual SIM TD-LTE V3 64GB RMX2002", + "brand": "oppo", + "soc": "helio-g90", + "release_date": "2020-06-16", + "ram_gb": 4.0, + "battery_mah": 4300, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Italy , Pakistan , Poland , Spain , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2020/realme-7-5g-global-dual-sim-td-lte-128gb-rmx2111.json b/data/smartphone/oppo/2020/realme-7-5g-global-dual-sim-td-lte-128gb-rmx2111.json new file mode 100644 index 00000000000..1d724bed2ed --- /dev/null +++ b/data/smartphone/oppo/2020/realme-7-5g-global-dual-sim-td-lte-128gb-rmx2111.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-7-5g-global-dual-sim-td-lte-128gb-rmx2111", + "name": "Realme 7 5G Global Dual SIM TD-LTE 128GB RMX2111", + "brand": "oppo", + "soc": "dimensity-800", + "release_date": "2020-11-21", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 279, + "market_countries": "Italy , Pakistan , Poland , Spain , Thailand , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2020/realme-7-dual-sim-td-lte-v1-in-64gb-rmx2151.json b/data/smartphone/oppo/2020/realme-7-dual-sim-td-lte-v1-in-64gb-rmx2151.json new file mode 100644 index 00000000000..97e883c5239 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-7-dual-sim-td-lte-v1-in-64gb-rmx2151.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-7-dual-sim-td-lte-v1-in-64gb-rmx2151", + "name": "Realme 7 Dual SIM TD-LTE V1 IN 64GB RMX2151", + "brand": "oppo", + "soc": "helio-g95", + "release_date": "2020-10-12", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 196.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-7-dual-sim-td-lte-v1-in-vn-ph-tr-128gb-rmx2151.json b/data/smartphone/oppo/2020/realme-7-dual-sim-td-lte-v1-in-vn-ph-tr-128gb-rmx2151.json new file mode 100644 index 00000000000..10538238562 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-7-dual-sim-td-lte-v1-in-vn-ph-tr-128gb-rmx2151.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-7-dual-sim-td-lte-v1-in-vn-ph-tr-128gb-rmx2151", + "name": "Realme 7 Dual SIM TD-LTE V1 IN VN PH TR 128GB RMX2151", + "brand": "oppo", + "soc": "helio-g95", + "release_date": "2020-10-12", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 196.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Egypt , India , Philippines , Turkey , Vietnam", + "market_regions": "Africa , Asia , Middle East , Oceania , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-7-dual-sim-td-lte-v2-my-128gb-rmx2151.json b/data/smartphone/oppo/2020/realme-7-dual-sim-td-lte-v2-my-128gb-rmx2151.json new file mode 100644 index 00000000000..26cc795bda1 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-7-dual-sim-td-lte-v2-my-128gb-rmx2151.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-7-dual-sim-td-lte-v2-my-128gb-rmx2151", + "name": "Realme 7 Dual SIM TD-LTE V2 MY 128GB RMX2151", + "brand": "oppo", + "soc": "helio-g95", + "release_date": "2020-10-12", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 196.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "HK , Malaysia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-7-nfc-dual-sim-td-lte-v1-id-128gb-rmx2155.json b/data/smartphone/oppo/2020/realme-7-nfc-dual-sim-td-lte-v1-id-128gb-rmx2155.json new file mode 100644 index 00000000000..c0741c3afc7 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-7-nfc-dual-sim-td-lte-v1-id-128gb-rmx2155.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-7-nfc-dual-sim-td-lte-v1-id-128gb-rmx2155", + "name": "Realme 7 NFC Dual SIM TD-LTE V1 ID 128GB RMX2155", + "brand": "oppo", + "soc": "helio-g95", + "release_date": "2020-09-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 196.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Indonesia", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-7-nfc-dual-sim-td-lte-v2-latam-128gb-rmx2155.json b/data/smartphone/oppo/2020/realme-7-nfc-dual-sim-td-lte-v2-latam-128gb-rmx2155.json new file mode 100644 index 00000000000..749399d4cf1 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-7-nfc-dual-sim-td-lte-v2-latam-128gb-rmx2155.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-7-nfc-dual-sim-td-lte-v2-latam-128gb-rmx2155", + "name": "Realme 7 NFC Dual SIM TD-LTE V2 LATAM 128GB RMX2155", + "brand": "oppo", + "soc": "helio-g95", + "release_date": "2020-10-12", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 196.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 2299, + "market_countries": "Brazil , Colombia", + "market_regions": "South America" +} diff --git a/data/smartphone/oppo/2020/realme-7-nfc-premium-edition-dual-sim-td-lte-v3-eu-64gb-rmx2155.json b/data/smartphone/oppo/2020/realme-7-nfc-premium-edition-dual-sim-td-lte-v3-eu-64gb-rmx2155.json new file mode 100644 index 00000000000..c364fc1ebfb --- /dev/null +++ b/data/smartphone/oppo/2020/realme-7-nfc-premium-edition-dual-sim-td-lte-v3-eu-64gb-rmx2155.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-7-nfc-premium-edition-dual-sim-td-lte-v3-eu-64gb-rmx2155", + "name": "Realme 7 NFC Premium Edition Dual SIM TD-LTE V3 EU 64GB RMX2155", + "brand": "oppo", + "soc": "helio-g95", + "release_date": "2020-10-12", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 196.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 199, + "market_countries": "Belgium , Czech , France , Germany , Italy , Netherlands , Poland , Portugal , Russia , Spain , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/oppo/2020/realme-7-nfc-standard-edition-dual-sim-td-lte-v3-eu-64gb-rmx2155.json b/data/smartphone/oppo/2020/realme-7-nfc-standard-edition-dual-sim-td-lte-v3-eu-64gb-rmx2155.json new file mode 100644 index 00000000000..2cce2027f52 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-7-nfc-standard-edition-dual-sim-td-lte-v3-eu-64gb-rmx2155.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-7-nfc-standard-edition-dual-sim-td-lte-v3-eu-64gb-rmx2155", + "name": "Realme 7 NFC Standard Edition Dual SIM TD-LTE V3 EU 64GB RMX2155", + "brand": "oppo", + "soc": "helio-g95", + "release_date": "2020-10-12", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 196.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 179, + "market_countries": "Belgium , Czech , France , Germany , Italy , Netherlands , Poland , Portugal , Russia , Spain , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/oppo/2020/realme-7i-dual-sim-td-lte-v1-id-128gb-rmx2103.json b/data/smartphone/oppo/2020/realme-7i-dual-sim-td-lte-v1-id-128gb-rmx2103.json new file mode 100644 index 00000000000..3643727cde2 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-7i-dual-sim-td-lte-v1-id-128gb-rmx2103.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-7i-dual-sim-td-lte-v1-id-128gb-rmx2103", + "name": "Realme 7i Dual SIM TD-LTE V1 ID 128GB RMX2103", + "brand": "oppo", + "soc": "snapdragon-662", + "release_date": "2020-10-16", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-7i-dual-sim-td-lte-v1-in-128gb-rmx2103.json b/data/smartphone/oppo/2020/realme-7i-dual-sim-td-lte-v1-in-128gb-rmx2103.json new file mode 100644 index 00000000000..aa4de340e66 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-7i-dual-sim-td-lte-v1-in-128gb-rmx2103.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-7i-dual-sim-td-lte-v1-in-128gb-rmx2103", + "name": "Realme 7i Dual SIM TD-LTE V1 IN 128GB RMX2103", + "brand": "oppo", + "soc": "snapdragon-662", + "release_date": "2020-10-16", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-7i-dual-sim-td-lte-v1-in-64gb-rmx2103.json b/data/smartphone/oppo/2020/realme-7i-dual-sim-td-lte-v1-in-64gb-rmx2103.json new file mode 100644 index 00000000000..a562bdc37be --- /dev/null +++ b/data/smartphone/oppo/2020/realme-7i-dual-sim-td-lte-v1-in-64gb-rmx2103.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-7i-dual-sim-td-lte-v1-in-64gb-rmx2103", + "name": "Realme 7i Dual SIM TD-LTE V1 IN 64GB RMX2103", + "brand": "oppo", + "soc": "snapdragon-662", + "release_date": "2020-10-16", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-c11-2020-dual-sim-td-lte-v2-my-32gb-rmx2185.json b/data/smartphone/oppo/2020/realme-c11-2020-dual-sim-td-lte-v2-my-32gb-rmx2185.json new file mode 100644 index 00000000000..998f2a15e73 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-c11-2020-dual-sim-td-lte-v2-my-32gb-rmx2185.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-c11-2020-dual-sim-td-lte-v2-my-32gb-rmx2185", + "name": "Realme C11 2020 Dual SIM TD-LTE V2 MY 32GB RMX2185", + "brand": "oppo", + "soc": "helio-g35", + "release_date": "2020-07-06", + "ram_gb": 2.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Malaysia", + "market_regions": "Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-c11-2020-premium-edition-dual-sim-td-lte-v1-id-32gb-rmx2185.json b/data/smartphone/oppo/2020/realme-c11-2020-premium-edition-dual-sim-td-lte-v1-id-32gb-rmx2185.json new file mode 100644 index 00000000000..1c88783db14 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-c11-2020-premium-edition-dual-sim-td-lte-v1-id-32gb-rmx2185.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-c11-2020-premium-edition-dual-sim-td-lte-v1-id-32gb-rmx2185", + "name": "Realme C11 2020 Premium Edition Dual SIM TD-LTE V1 ID 32GB RMX2185", + "brand": "oppo", + "soc": "helio-g35", + "release_date": "2020-07-22", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Indonesia", + "market_regions": "Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-c11-2020-standard-edition-dual-sim-td-lte-v1-id-32gb-rmx2185.json b/data/smartphone/oppo/2020/realme-c11-2020-standard-edition-dual-sim-td-lte-v1-id-32gb-rmx2185.json new file mode 100644 index 00000000000..1e2fcc5f609 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-c11-2020-standard-edition-dual-sim-td-lte-v1-id-32gb-rmx2185.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-c11-2020-standard-edition-dual-sim-td-lte-v1-id-32gb-rmx2185", + "name": "Realme C11 2020 Standard Edition Dual SIM TD-LTE V1 ID 32GB RMX2185", + "brand": "oppo", + "soc": "helio-g35", + "release_date": "2020-07-22", + "ram_gb": 2.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Indonesia", + "market_regions": "Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-c12-2020-dual-sim-td-lte-v1-in-id-32gb-rmx2189.json b/data/smartphone/oppo/2020/realme-c12-2020-dual-sim-td-lte-v1-in-id-32gb-rmx2189.json new file mode 100644 index 00000000000..2905da19880 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-c12-2020-dual-sim-td-lte-v1-in-id-32gb-rmx2189.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-c12-2020-dual-sim-td-lte-v1-in-id-32gb-rmx2189", + "name": "Realme C12 2020 Dual SIM TD-LTE V1 IN ID 32GB RMX2189", + "brand": "oppo", + "soc": "helio-g35", + "release_date": "2020-08-18", + "ram_gb": 3.0, + "battery_mah": 6000, + "weight_g": 209.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-c15-2020-premium-edition-dual-sim-td-lte-v1-in-id-128gb-rmx2186.json b/data/smartphone/oppo/2020/realme-c15-2020-premium-edition-dual-sim-td-lte-v1-in-id-128gb-rmx2186.json new file mode 100644 index 00000000000..edc2dc3500e --- /dev/null +++ b/data/smartphone/oppo/2020/realme-c15-2020-premium-edition-dual-sim-td-lte-v1-in-id-128gb-rmx2186.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-c15-2020-premium-edition-dual-sim-td-lte-v1-in-id-128gb-rmx2186", + "name": "Realme C15 2020 Premium Edition Dual SIM TD-LTE V1 IN ID 128GB RMX2186", + "brand": "oppo", + "soc": "helio-g35", + "release_date": "2020-09-01", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 209.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-c15-2020-premium-edition-dual-sim-td-lte-v1-in-id-64gb-rmx2186.json b/data/smartphone/oppo/2020/realme-c15-2020-premium-edition-dual-sim-td-lte-v1-in-id-64gb-rmx2186.json new file mode 100644 index 00000000000..e2516188009 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-c15-2020-premium-edition-dual-sim-td-lte-v1-in-id-64gb-rmx2186.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-c15-2020-premium-edition-dual-sim-td-lte-v1-in-id-64gb-rmx2186", + "name": "Realme C15 2020 Premium Edition Dual SIM TD-LTE V1 IN ID 64GB RMX2186", + "brand": "oppo", + "soc": "helio-g35", + "release_date": "2020-08-18", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 209.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-c15-2020-standard-edition-dual-sim-td-lte-v1-in-id-64gb-rmx2186.json b/data/smartphone/oppo/2020/realme-c15-2020-standard-edition-dual-sim-td-lte-v1-in-id-64gb-rmx2186.json new file mode 100644 index 00000000000..7266f96f6a2 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-c15-2020-standard-edition-dual-sim-td-lte-v1-in-id-64gb-rmx2186.json @@ -0,0 +1,42 @@ +{ + "slug": "realme-c15-2020-standard-edition-dual-sim-td-lte-v1-in-id-64gb-rmx2186", + "name": "Realme C15 2020 Standard Edition Dual SIM TD-LTE V1 IN ID 64GB RMX2186", + "brand": "oppo", + "soc": "helio-g35", + "release_date": "2020-08-18", + "ram_gb": 3.0, + "battery_mah": 6000, + "weight_g": 209.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-c17-2020-dual-sim-td-lte-v1-id-pk-256gb-rmx2101.json b/data/smartphone/oppo/2020/realme-c17-2020-dual-sim-td-lte-v1-id-pk-256gb-rmx2101.json new file mode 100644 index 00000000000..30f60d38b32 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-c17-2020-dual-sim-td-lte-v1-id-pk-256gb-rmx2101.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-c17-2020-dual-sim-td-lte-v1-id-pk-256gb-rmx2101", + "name": "Realme C17 2020 Dual SIM TD-LTE V1 ID PK 256GB RMX2101", + "brand": "oppo", + "soc": "snapdragon-460", + "release_date": "2020-09-22", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Indonesia , Pakistan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-c17-2020-dual-sim-td-lte-v1-vn-bd-eg-128gb-rmx2101.json b/data/smartphone/oppo/2020/realme-c17-2020-dual-sim-td-lte-v1-vn-bd-eg-128gb-rmx2101.json new file mode 100644 index 00000000000..b08e479c7a0 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-c17-2020-dual-sim-td-lte-v1-vn-bd-eg-128gb-rmx2101.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-c17-2020-dual-sim-td-lte-v1-vn-bd-eg-128gb-rmx2101", + "name": "Realme C17 2020 Dual SIM TD-LTE V1 VN BD EG 128GB RMX2101", + "brand": "oppo", + "soc": "snapdragon-460", + "release_date": "2020-09-22", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , Egypt , Vietnam", + "market_regions": "Africa , Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-c17-2020-dual-sim-td-lte-v2-my-256gb-rmx2101.json b/data/smartphone/oppo/2020/realme-c17-2020-dual-sim-td-lte-v2-my-256gb-rmx2101.json new file mode 100644 index 00000000000..3d904be1a93 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-c17-2020-dual-sim-td-lte-v2-my-256gb-rmx2101.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-c17-2020-dual-sim-td-lte-v2-my-256gb-rmx2101", + "name": "Realme C17 2020 Dual SIM TD-LTE V2 MY 256GB RMX2101", + "brand": "oppo", + "soc": "snapdragon-460", + "release_date": "2020-09-22", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 899, + "market_countries": "Malaysia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-c17-2020-dual-sim-td-lte-v2-sg-128gb-rmx2101.json b/data/smartphone/oppo/2020/realme-c17-2020-dual-sim-td-lte-v2-sg-128gb-rmx2101.json new file mode 100644 index 00000000000..6c46f15c8bd --- /dev/null +++ b/data/smartphone/oppo/2020/realme-c17-2020-dual-sim-td-lte-v2-sg-128gb-rmx2101.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-c17-2020-dual-sim-td-lte-v2-sg-128gb-rmx2101", + "name": "Realme C17 2020 Dual SIM TD-LTE V2 SG 128GB RMX2101", + "brand": "oppo", + "soc": "snapdragon-460", + "release_date": "2020-09-22", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 299, + "market_countries": "Singapore", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-c17-2020-dual-sim-td-lte-v2-th-64gb-rmx2101.json b/data/smartphone/oppo/2020/realme-c17-2020-dual-sim-td-lte-v2-th-64gb-rmx2101.json new file mode 100644 index 00000000000..5c7301c4a92 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-c17-2020-dual-sim-td-lte-v2-th-64gb-rmx2101.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-c17-2020-dual-sim-td-lte-v2-th-64gb-rmx2101", + "name": "Realme C17 2020 Dual SIM TD-LTE V2 TH 64GB RMX2101", + "brand": "oppo", + "soc": "snapdragon-460", + "release_date": "2020-10-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 4999, + "market_countries": "Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-c2s-dual-sim-td-lte-th-32gb.json b/data/smartphone/oppo/2020/realme-c2s-dual-sim-td-lte-th-32gb.json new file mode 100644 index 00000000000..f3fe668ef20 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-c2s-dual-sim-td-lte-th-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "realme-c2s-dual-sim-td-lte-th-32gb", + "name": "Realme C2s Dual SIM TD-LTE TH 32GB", + "brand": "oppo", + "soc": "helio-p22", + "release_date": "2020-01-08", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Thailand", + "market_regions": "Asia , Middle East , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-c3-premium-edition-dual-sim-td-lte-id-pk-vn-ph-64gb-rmx2020.json b/data/smartphone/oppo/2020/realme-c3-premium-edition-dual-sim-td-lte-id-pk-vn-ph-64gb-rmx2020.json new file mode 100644 index 00000000000..cf540ae443e --- /dev/null +++ b/data/smartphone/oppo/2020/realme-c3-premium-edition-dual-sim-td-lte-id-pk-vn-ph-64gb-rmx2020.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-c3-premium-edition-dual-sim-td-lte-id-pk-vn-ph-64gb-rmx2020", + "name": "Realme C3 Premium Edition Dual SIM TD-LTE ID PK VN PH 64GB RMX2020", + "brand": "oppo", + "soc": "helio-g70", + "release_date": "2020-02-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Indonesia , Pakistan , Philippines , Vietnam", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-c3-standard-edition-dual-sim-td-lte-id-pk-vn-ph-32gb-rmx2020.json b/data/smartphone/oppo/2020/realme-c3-standard-edition-dual-sim-td-lte-id-pk-vn-ph-32gb-rmx2020.json new file mode 100644 index 00000000000..d0975418a41 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-c3-standard-edition-dual-sim-td-lte-id-pk-vn-ph-32gb-rmx2020.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-c3-standard-edition-dual-sim-td-lte-id-pk-vn-ph-32gb-rmx2020", + "name": "Realme C3 Standard Edition Dual SIM TD-LTE ID PK VN PH 32GB RMX2020", + "brand": "oppo", + "soc": "helio-g70", + "release_date": "2020-02-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Indonesia , Pakistan , Philippines , Vietnam", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-c3-standard-edition-dual-sim-td-lte-in-32gb-rmx2027-c3i.json b/data/smartphone/oppo/2020/realme-c3-standard-edition-dual-sim-td-lte-in-32gb-rmx2027-c3i.json new file mode 100644 index 00000000000..4a91cffb50c --- /dev/null +++ b/data/smartphone/oppo/2020/realme-c3-standard-edition-dual-sim-td-lte-in-32gb-rmx2027-c3i.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-c3-standard-edition-dual-sim-td-lte-in-32gb-rmx2027-c3i", + "name": "Realme C3 Standard Edition Dual SIM TD-LTE IN 32GB RMX2027 / C3i", + "brand": "oppo", + "soc": "helio-g70", + "release_date": "2020-02-14", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-c3-standard-edition-dual-sim-td-lte-in-64gb-rmx2027-c3i.json b/data/smartphone/oppo/2020/realme-c3-standard-edition-dual-sim-td-lte-in-64gb-rmx2027-c3i.json new file mode 100644 index 00000000000..0bace19c29e --- /dev/null +++ b/data/smartphone/oppo/2020/realme-c3-standard-edition-dual-sim-td-lte-in-64gb-rmx2027-c3i.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-c3-standard-edition-dual-sim-td-lte-in-64gb-rmx2027-c3i", + "name": "Realme C3 Standard Edition Dual SIM TD-LTE IN 64GB RMX2027 / C3i", + "brand": "oppo", + "soc": "helio-g70", + "release_date": "2020-02-14", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-c3-standard-edition-dual-sim-td-lte-my-32gb-rmx2020.json b/data/smartphone/oppo/2020/realme-c3-standard-edition-dual-sim-td-lte-my-32gb-rmx2020.json new file mode 100644 index 00000000000..3fc740a84cf --- /dev/null +++ b/data/smartphone/oppo/2020/realme-c3-standard-edition-dual-sim-td-lte-my-32gb-rmx2020.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-c3-standard-edition-dual-sim-td-lte-my-32gb-rmx2020", + "name": "Realme C3 Standard Edition Dual SIM TD-LTE MY 32GB RMX2020", + "brand": "oppo", + "soc": "helio-g70", + "release_date": "2020-02-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Malaysia", + "market_regions": "Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-c3-standard-edition-dual-sim-td-lte-th-32gb-rmx2020.json b/data/smartphone/oppo/2020/realme-c3-standard-edition-dual-sim-td-lte-th-32gb-rmx2020.json new file mode 100644 index 00000000000..5edce53890a --- /dev/null +++ b/data/smartphone/oppo/2020/realme-c3-standard-edition-dual-sim-td-lte-th-32gb-rmx2020.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-c3-standard-edition-dual-sim-td-lte-th-32gb-rmx2020", + "name": "Realme C3 Standard Edition Dual SIM TD-LTE TH 32GB RMX2020", + "brand": "oppo", + "soc": "helio-g70", + "release_date": "2020-02-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Thailand , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-c3i-standard-edition-dual-sim-td-lte-vn-32gb-rmx2027.json b/data/smartphone/oppo/2020/realme-c3i-standard-edition-dual-sim-td-lte-vn-32gb-rmx2027.json new file mode 100644 index 00000000000..ad738ec42fe --- /dev/null +++ b/data/smartphone/oppo/2020/realme-c3i-standard-edition-dual-sim-td-lte-vn-32gb-rmx2027.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-c3i-standard-edition-dual-sim-td-lte-vn-32gb-rmx2027", + "name": "Realme C3i Standard Edition Dual SIM TD-LTE VN 32GB RMX2027", + "brand": "oppo", + "soc": "helio-g70", + "release_date": "2020-06-24", + "ram_gb": 2.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-narzo-10-dual-sim-td-lte-in-128gb-rmx2040.json b/data/smartphone/oppo/2020/realme-narzo-10-dual-sim-td-lte-in-128gb-rmx2040.json new file mode 100644 index 00000000000..c15c1a6559b --- /dev/null +++ b/data/smartphone/oppo/2020/realme-narzo-10-dual-sim-td-lte-in-128gb-rmx2040.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-narzo-10-dual-sim-td-lte-in-128gb-rmx2040", + "name": "Realme Narzo 10 Dual SIM TD-LTE IN 128GB RMX2040", + "brand": "oppo", + "soc": "helio-g80", + "release_date": "2020-05-18", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-narzo-10a-dual-sim-td-lte-in-32-gb-rmx2020.json b/data/smartphone/oppo/2020/realme-narzo-10a-dual-sim-td-lte-in-32-gb-rmx2020.json new file mode 100644 index 00000000000..41f2e46e68a --- /dev/null +++ b/data/smartphone/oppo/2020/realme-narzo-10a-dual-sim-td-lte-in-32-gb-rmx2020.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-narzo-10a-dual-sim-td-lte-in-32-gb-rmx2020", + "name": "Realme Narzo 10A Dual SIM TD-LTE IN 32 GB RMX2020", + "brand": "oppo", + "soc": "helio-g70", + "release_date": "2020-05-22", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-narzo-20-dual-sim-td-lte-in-id-128gb-rmx2193.json b/data/smartphone/oppo/2020/realme-narzo-20-dual-sim-td-lte-in-id-128gb-rmx2193.json new file mode 100644 index 00000000000..095b81a119e --- /dev/null +++ b/data/smartphone/oppo/2020/realme-narzo-20-dual-sim-td-lte-in-id-128gb-rmx2193.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-narzo-20-dual-sim-td-lte-in-id-128gb-rmx2193", + "name": "Realme Narzo 20 Dual SIM TD-LTE IN ID 128GB RMX2193", + "brand": "oppo", + "soc": "helio-g85", + "release_date": "2020-09-28", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-narzo-20-dual-sim-td-lte-in-id-64gb-rmx2193.json b/data/smartphone/oppo/2020/realme-narzo-20-dual-sim-td-lte-in-id-64gb-rmx2193.json new file mode 100644 index 00000000000..0b549964165 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-narzo-20-dual-sim-td-lte-in-id-64gb-rmx2193.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-narzo-20-dual-sim-td-lte-in-id-64gb-rmx2193", + "name": "Realme Narzo 20 Dual SIM TD-LTE IN ID 64GB RMX2193", + "brand": "oppo", + "soc": "helio-g85", + "release_date": "2020-09-28", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-narzo-20-pro-dual-sim-td-lte-v1-in-id-128gb-rmx2161.json b/data/smartphone/oppo/2020/realme-narzo-20-pro-dual-sim-td-lte-v1-in-id-128gb-rmx2161.json new file mode 100644 index 00000000000..0eb8d506c60 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-narzo-20-pro-dual-sim-td-lte-v1-in-id-128gb-rmx2161.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-narzo-20-pro-dual-sim-td-lte-v1-in-id-128gb-rmx2161", + "name": "Realme Narzo 20 Pro Dual SIM TD-LTE V1 IN ID 128GB RMX2161", + "brand": "oppo", + "soc": "helio-g95", + "release_date": "2020-10-12", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-narzo-20-pro-dual-sim-td-lte-v1-in-id-64gb-rmx2161-rmx2163.json b/data/smartphone/oppo/2020/realme-narzo-20-pro-dual-sim-td-lte-v1-in-id-64gb-rmx2161-rmx2163.json new file mode 100644 index 00000000000..44e44a40e22 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-narzo-20-pro-dual-sim-td-lte-v1-in-id-64gb-rmx2161-rmx2163.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-narzo-20-pro-dual-sim-td-lte-v1-in-id-64gb-rmx2161-rmx2163", + "name": "Realme Narzo 20 Pro Dual SIM TD-LTE V1 IN ID 64GB RMX2161 / RMX2163", + "brand": "oppo", + "soc": "helio-g95", + "release_date": "2020-10-12", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-narzo-20a-dual-sim-td-lte-v1-in-32gb-rmx2050.json b/data/smartphone/oppo/2020/realme-narzo-20a-dual-sim-td-lte-v1-in-32gb-rmx2050.json new file mode 100644 index 00000000000..501a0b97e50 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-narzo-20a-dual-sim-td-lte-v1-in-32gb-rmx2050.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-narzo-20a-dual-sim-td-lte-v1-in-32gb-rmx2050", + "name": "Realme Narzo 20A Dual SIM TD-LTE V1 IN 32GB RMX2050", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2020-10-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-narzo-20a-dual-sim-td-lte-v1-in-64gb-rmx2050.json b/data/smartphone/oppo/2020/realme-narzo-20a-dual-sim-td-lte-v1-in-64gb-rmx2050.json new file mode 100644 index 00000000000..0851e65ebf1 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-narzo-20a-dual-sim-td-lte-v1-in-64gb-rmx2050.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-narzo-20a-dual-sim-td-lte-v1-in-64gb-rmx2050", + "name": "Realme Narzo 20A Dual SIM TD-LTE V1 IN 64GB RMX2050", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2020-10-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-narzo-dual-sim-td-lte-v1-id-128gb-rmx2002.json b/data/smartphone/oppo/2020/realme-narzo-dual-sim-td-lte-v1-id-128gb-rmx2002.json new file mode 100644 index 00000000000..3cc156122fa --- /dev/null +++ b/data/smartphone/oppo/2020/realme-narzo-dual-sim-td-lte-v1-id-128gb-rmx2002.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-narzo-dual-sim-td-lte-v1-id-128gb-rmx2002", + "name": "Realme Narzo Dual SIM TD-LTE V1 ID 128GB RMX2002", + "brand": "oppo", + "soc": "helio-g90", + "release_date": "2020-04-01", + "ram_gb": 4.0, + "battery_mah": 4300, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-q2-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2117.json b/data/smartphone/oppo/2020/realme-q2-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2117.json new file mode 100644 index 00000000000..834e49ada7d --- /dev/null +++ b/data/smartphone/oppo/2020/realme-q2-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2117.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-q2-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2117", + "name": "Realme Q2 5G Premium Edition Dual SIM TD-LTE CN 128GB RMX2117", + "brand": "oppo", + "soc": "dimensity-800", + "release_date": "2020-10-18", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1399, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-q2-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2117.json b/data/smartphone/oppo/2020/realme-q2-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2117.json new file mode 100644 index 00000000000..557363f4fe0 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-q2-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2117.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-q2-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2117", + "name": "Realme Q2 5G Standard Edition Dual SIM TD-LTE CN 128GB RMX2117", + "brand": "oppo", + "soc": "dimensity-800", + "release_date": "2020-10-18", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1299, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-q2-pro-5g-dual-sim-td-lte-cn-128gb-rmx2173.json b/data/smartphone/oppo/2020/realme-q2-pro-5g-dual-sim-td-lte-cn-128gb-rmx2173.json new file mode 100644 index 00000000000..2e376162725 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-q2-pro-5g-dual-sim-td-lte-cn-128gb-rmx2173.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-q2-pro-5g-dual-sim-td-lte-cn-128gb-rmx2173", + "name": "Realme Q2 Pro 5G Dual SIM TD-LTE CN 128GB RMX2173", + "brand": "oppo", + "soc": "dimensity-800", + "release_date": "2020-10-01", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1799, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-q2i-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-rmx2201.json b/data/smartphone/oppo/2020/realme-q2i-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-rmx2201.json new file mode 100644 index 00000000000..4102886dd4b --- /dev/null +++ b/data/smartphone/oppo/2020/realme-q2i-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-rmx2201.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-q2i-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-rmx2201", + "name": "Realme Q2i 5G 2020 Standard Edition Dual SIM TD-LTE CN 128GB RMX2201", + "brand": "oppo", + "soc": "dimensity-720", + "release_date": "2020-10-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 189.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1199, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-v3-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-rmx2200.json b/data/smartphone/oppo/2020/realme-v3-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-rmx2200.json new file mode 100644 index 00000000000..a63d9badb47 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-v3-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-rmx2200.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-v3-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-rmx2200", + "name": "Realme V3 5G 2020 Premium Edition Dual SIM TD-LTE CN 128GB RMX2200", + "brand": "oppo", + "soc": "dimensity-720", + "release_date": "2020-09-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 189.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1599, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-v3-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-rmx2200.json b/data/smartphone/oppo/2020/realme-v3-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-rmx2200.json new file mode 100644 index 00000000000..7892e12035c --- /dev/null +++ b/data/smartphone/oppo/2020/realme-v3-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-rmx2200.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-v3-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-rmx2200", + "name": "Realme V3 5G 2020 Standard Edition Dual SIM TD-LTE CN 128GB RMX2200", + "brand": "oppo", + "soc": "dimensity-720", + "release_date": "2020-09-09", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 189.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1399, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-v3-5g-2020-standard-edition-dual-sim-td-lte-cn-64gb-rmx2200.json b/data/smartphone/oppo/2020/realme-v3-5g-2020-standard-edition-dual-sim-td-lte-cn-64gb-rmx2200.json new file mode 100644 index 00000000000..dc8b3b0b929 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-v3-5g-2020-standard-edition-dual-sim-td-lte-cn-64gb-rmx2200.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-v3-5g-2020-standard-edition-dual-sim-td-lte-cn-64gb-rmx2200", + "name": "Realme V3 5G 2020 Standard Edition Dual SIM TD-LTE CN 64GB RMX2200", + "brand": "oppo", + "soc": "dimensity-720", + "release_date": "2020-09-09", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 189.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1099, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-v5-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2111-rmx2112.json b/data/smartphone/oppo/2020/realme-v5-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2111-rmx2112.json new file mode 100644 index 00000000000..07e12a3055c --- /dev/null +++ b/data/smartphone/oppo/2020/realme-v5-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2111-rmx2112.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-v5-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2111-rmx2112", + "name": "Realme V5 5G Premium Edition Dual SIM TD-LTE CN 128GB RMX2111 / RMX2112", + "brand": "oppo", + "soc": "dimensity-720", + "release_date": "2020-08-07", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1899, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-v5-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2111-rmx2112.json b/data/smartphone/oppo/2020/realme-v5-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2111-rmx2112.json new file mode 100644 index 00000000000..20673eb52cb --- /dev/null +++ b/data/smartphone/oppo/2020/realme-v5-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2111-rmx2112.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-v5-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2111-rmx2112", + "name": "Realme V5 5G Standard Edition Dual SIM TD-LTE CN 128GB RMX2111 / RMX2112", + "brand": "oppo", + "soc": "dimensity-720", + "release_date": "2020-08-07", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-x3-premium-edition-dual-sim-td-lte-v2-in-128gb-rmx2081.json b/data/smartphone/oppo/2020/realme-x3-premium-edition-dual-sim-td-lte-v2-in-128gb-rmx2081.json new file mode 100644 index 00000000000..093e804fe1b --- /dev/null +++ b/data/smartphone/oppo/2020/realme-x3-premium-edition-dual-sim-td-lte-v2-in-128gb-rmx2081.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-x3-premium-edition-dual-sim-td-lte-v2-in-128gb-rmx2081", + "name": "Realme X3 Premium Edition Dual SIM TD-LTE V2 IN 128GB RMX2081", + "brand": "oppo", + "soc": "snapdragon-855-plus", + "release_date": "2020-07-12", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 202.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-x3-standard-edition-dual-sim-td-lte-v2-in-128gb-rmx2081.json b/data/smartphone/oppo/2020/realme-x3-standard-edition-dual-sim-td-lte-v2-in-128gb-rmx2081.json new file mode 100644 index 00000000000..8e337a3dd23 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-x3-standard-edition-dual-sim-td-lte-v2-in-128gb-rmx2081.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-x3-standard-edition-dual-sim-td-lte-v2-in-128gb-rmx2081", + "name": "Realme X3 Standard Edition Dual SIM TD-LTE V2 IN 128GB RMX2081", + "brand": "oppo", + "soc": "snapdragon-855-plus", + "release_date": "2020-07-12", + "ram_gb": 6.0, + "battery_mah": 4200, + "weight_g": 202.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-x3-superzoom-dual-sim-td-lte-v2-id-th-pl-128gb-rmx2085.json b/data/smartphone/oppo/2020/realme-x3-superzoom-dual-sim-td-lte-v2-id-th-pl-128gb-rmx2085.json new file mode 100644 index 00000000000..194794d98fd --- /dev/null +++ b/data/smartphone/oppo/2020/realme-x3-superzoom-dual-sim-td-lte-v2-id-th-pl-128gb-rmx2085.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-x3-superzoom-dual-sim-td-lte-v2-id-th-pl-128gb-rmx2085", + "name": "Realme X3 SuperZoom Dual SIM TD-LTE V2 ID TH PL 128GB RMX2085", + "brand": "oppo", + "soc": "snapdragon-855-plus", + "release_date": "2020-06-03", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 202.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Poland , Thailand", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-x3-superzoom-dual-sim-td-lte-v2-id-th-pl-256gb-rmx2085.json b/data/smartphone/oppo/2020/realme-x3-superzoom-dual-sim-td-lte-v2-id-th-pl-256gb-rmx2085.json new file mode 100644 index 00000000000..24f623fc8d7 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-x3-superzoom-dual-sim-td-lte-v2-id-th-pl-256gb-rmx2085.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-x3-superzoom-dual-sim-td-lte-v2-id-th-pl-256gb-rmx2085", + "name": "Realme X3 SuperZoom Dual SIM TD-LTE V2 ID TH PL 256GB RMX2085", + "brand": "oppo", + "soc": "snapdragon-855-plus", + "release_date": "2020-06-03", + "ram_gb": 12.0, + "battery_mah": 4200, + "weight_g": 202.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Poland , Thailand", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/realme-x3-superzoom-global-dual-sim-td-lte-v1-128gb-rmx2086.json b/data/smartphone/oppo/2020/realme-x3-superzoom-global-dual-sim-td-lte-v1-128gb-rmx2086.json new file mode 100644 index 00000000000..2a843905961 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-x3-superzoom-global-dual-sim-td-lte-v1-128gb-rmx2086.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-x3-superzoom-global-dual-sim-td-lte-v1-128gb-rmx2086", + "name": "Realme X3 SuperZoom Global Dual SIM TD-LTE V1 128GB RMX2086", + "brand": "oppo", + "soc": "snapdragon-855-plus", + "release_date": "2020-06-03", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 202.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Czech , Indonesia , Italy , Malaysia , Portugal , Spain , UK", + "market_regions": "Asia , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2020/realme-x3-superzoom-global-dual-sim-td-lte-v1-256gb-rmx2086.json b/data/smartphone/oppo/2020/realme-x3-superzoom-global-dual-sim-td-lte-v1-256gb-rmx2086.json new file mode 100644 index 00000000000..e9afe6446e9 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-x3-superzoom-global-dual-sim-td-lte-v1-256gb-rmx2086.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-x3-superzoom-global-dual-sim-td-lte-v1-256gb-rmx2086", + "name": "Realme X3 SuperZoom Global Dual SIM TD-LTE V1 256GB RMX2086", + "brand": "oppo", + "soc": "snapdragon-855-plus", + "release_date": "2020-06-03", + "ram_gb": 12.0, + "battery_mah": 4200, + "weight_g": 202.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Czech , Indonesia , Italy , Malaysia , Portugal , Spain , UK", + "market_regions": "Asia , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2020/realme-x50-5g-master-edition-dual-sim-td-lte-cn-256gb-rmx2025.json b/data/smartphone/oppo/2020/realme-x50-5g-master-edition-dual-sim-td-lte-cn-256gb-rmx2025.json new file mode 100644 index 00000000000..5cc0d6a548e --- /dev/null +++ b/data/smartphone/oppo/2020/realme-x50-5g-master-edition-dual-sim-td-lte-cn-256gb-rmx2025.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-x50-5g-master-edition-dual-sim-td-lte-cn-256gb-rmx2025", + "name": "Realme X50 5G Master Edition Dual SIM TD-LTE CN 256GB RMX2025", + "brand": "oppo", + "soc": "snapdragon-765", + "release_date": "2020-01-14", + "ram_gb": 12.0, + "battery_mah": 4200, + "weight_g": 202.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-x50-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx2025-rmx2025cn.json b/data/smartphone/oppo/2020/realme-x50-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx2025-rmx2025cn.json new file mode 100644 index 00000000000..616caa63669 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-x50-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx2025-rmx2025cn.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-x50-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx2025-rmx2025cn", + "name": "Realme X50 5G Premium Edition Dual SIM TD-LTE CN 256GB RMX2025 / RMX2025CN", + "brand": "oppo", + "soc": "snapdragon-765", + "release_date": "2020-01-07", + "ram_gb": 12.0, + "battery_mah": 4200, + "weight_g": 202.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-x50-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2025-rmx2051.json b/data/smartphone/oppo/2020/realme-x50-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2025-rmx2051.json new file mode 100644 index 00000000000..ecb3cf487dd --- /dev/null +++ b/data/smartphone/oppo/2020/realme-x50-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2025-rmx2051.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-x50-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2025-rmx2051", + "name": "Realme X50 5G Standard Edition Dual SIM TD-LTE CN 128GB RMX2025 / RMX2051", + "brand": "oppo", + "soc": "snapdragon-765", + "release_date": "2020-01-07", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 202.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-x50-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx2025.json b/data/smartphone/oppo/2020/realme-x50-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx2025.json new file mode 100644 index 00000000000..d1d26678e2f --- /dev/null +++ b/data/smartphone/oppo/2020/realme-x50-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx2025.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-x50-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx2025", + "name": "Realme X50 5G Standard Edition Dual SIM TD-LTE CN 256GB RMX2025", + "brand": "oppo", + "soc": "snapdragon-765", + "release_date": "2020-01-07", + "ram_gb": 6.0, + "battery_mah": 4200, + "weight_g": 202.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-x50-5g-standard-edition-dual-sim-td-lte-cn-64gb-rmx2025.json b/data/smartphone/oppo/2020/realme-x50-5g-standard-edition-dual-sim-td-lte-cn-64gb-rmx2025.json new file mode 100644 index 00000000000..6809cbde7c8 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-x50-5g-standard-edition-dual-sim-td-lte-cn-64gb-rmx2025.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-x50-5g-standard-edition-dual-sim-td-lte-cn-64gb-rmx2025", + "name": "Realme X50 5G Standard Edition Dual SIM TD-LTE CN 64GB RMX2025", + "brand": "oppo", + "soc": "snapdragon-765", + "release_date": "2020-01-07", + "ram_gb": 6.0, + "battery_mah": 4200, + "weight_g": 202.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-x50-pro-5g-player-premium-edition-dual-sim-td-lte-cn-128gb-rmx2072.json b/data/smartphone/oppo/2020/realme-x50-pro-5g-player-premium-edition-dual-sim-td-lte-cn-128gb-rmx2072.json new file mode 100644 index 00000000000..68d2eaf94ba --- /dev/null +++ b/data/smartphone/oppo/2020/realme-x50-pro-5g-player-premium-edition-dual-sim-td-lte-cn-128gb-rmx2072.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-x50-pro-5g-player-premium-edition-dual-sim-td-lte-cn-128gb-rmx2072", + "name": "Realme X50 Pro 5G Player Premium Edition Dual SIM TD-LTE CN 128GB RMX2072", + "brand": "oppo", + "soc": "snapdragon-865", + "release_date": "2020-05-31", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 209.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-x50-pro-5g-player-standard-edition-dual-sim-td-lte-cn-128gb-rmx2072.json b/data/smartphone/oppo/2020/realme-x50-pro-5g-player-standard-edition-dual-sim-td-lte-cn-128gb-rmx2072.json new file mode 100644 index 00000000000..89c666f2ded --- /dev/null +++ b/data/smartphone/oppo/2020/realme-x50-pro-5g-player-standard-edition-dual-sim-td-lte-cn-128gb-rmx2072.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-x50-pro-5g-player-standard-edition-dual-sim-td-lte-cn-128gb-rmx2072", + "name": "Realme X50 Pro 5G Player Standard Edition Dual SIM TD-LTE CN 128GB RMX2072", + "brand": "oppo", + "soc": "snapdragon-865", + "release_date": "2020-05-31", + "ram_gb": 6.0, + "battery_mah": 4200, + "weight_g": 209.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-x50-pro-5g-player-top-edition-dual-sim-td-lte-cn-128gb-rmx2072.json b/data/smartphone/oppo/2020/realme-x50-pro-5g-player-top-edition-dual-sim-td-lte-cn-128gb-rmx2072.json new file mode 100644 index 00000000000..6457982a64f --- /dev/null +++ b/data/smartphone/oppo/2020/realme-x50-pro-5g-player-top-edition-dual-sim-td-lte-cn-128gb-rmx2072.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-x50-pro-5g-player-top-edition-dual-sim-td-lte-cn-128gb-rmx2072", + "name": "Realme X50 Pro 5G Player Top Edition Dual SIM TD-LTE CN 128GB RMX2072", + "brand": "oppo", + "soc": "snapdragon-865", + "release_date": "2020-05-31", + "ram_gb": 12.0, + "battery_mah": 4200, + "weight_g": 209.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-x50-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx2071.json b/data/smartphone/oppo/2020/realme-x50-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx2071.json new file mode 100644 index 00000000000..a6719c3462c --- /dev/null +++ b/data/smartphone/oppo/2020/realme-x50-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx2071.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-x50-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx2071", + "name": "Realme X50 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB RMX2071", + "brand": "oppo", + "soc": "snapdragon-865", + "release_date": "2020-03-12", + "ram_gb": 12.0, + "battery_mah": 4200, + "weight_g": 207.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-x50-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-rmx2076.json b/data/smartphone/oppo/2020/realme-x50-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-rmx2076.json new file mode 100644 index 00000000000..5ec80192bd2 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-x50-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-rmx2076.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-x50-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-rmx2076", + "name": "Realme X50 Pro 5G Premium Edition Dual SIM TD-LTE IN 256GB RMX2076", + "brand": "oppo", + "soc": "snapdragon-865", + "release_date": "2020-03-01", + "ram_gb": 12.0, + "battery_mah": 4200, + "weight_g": 207.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-x50-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-rmx2075.json b/data/smartphone/oppo/2020/realme-x50-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-rmx2075.json new file mode 100644 index 00000000000..054f0208c3b --- /dev/null +++ b/data/smartphone/oppo/2020/realme-x50-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-rmx2075.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-x50-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-rmx2075", + "name": "Realme X50 Pro 5G Premium Edition Global Dual SIM TD-LTE 128GB RMX2075", + "brand": "oppo", + "soc": "snapdragon-865", + "release_date": "2020-05-04", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 207.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Czech , Italy , Poland , Russia , Spain , UK", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/oppo/2020/realme-x50-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-rmx2075.json b/data/smartphone/oppo/2020/realme-x50-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-rmx2075.json new file mode 100644 index 00000000000..60c72aad0c7 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-x50-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-rmx2075.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-x50-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-rmx2075", + "name": "Realme X50 Pro 5G Premium Edition Global Dual SIM TD-LTE 256GB RMX2075", + "brand": "oppo", + "soc": "snapdragon-865", + "release_date": "2020-05-04", + "ram_gb": 12.0, + "battery_mah": 4200, + "weight_g": 207.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Czech , Italy , Poland , Russia , Spain , UK", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/oppo/2020/realme-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2071.json b/data/smartphone/oppo/2020/realme-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2071.json new file mode 100644 index 00000000000..611064ce073 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2071.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2071", + "name": "Realme X50 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB RMX2071", + "brand": "oppo", + "soc": "snapdragon-865", + "release_date": "2020-03-12", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 207.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx2071.json b/data/smartphone/oppo/2020/realme-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx2071.json new file mode 100644 index 00000000000..bdeeb2042fe --- /dev/null +++ b/data/smartphone/oppo/2020/realme-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx2071.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx2071", + "name": "Realme X50 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB RMX2071", + "brand": "oppo", + "soc": "snapdragon-865", + "release_date": "2020-03-12", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 207.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-x50-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-rmx2076.json b/data/smartphone/oppo/2020/realme-x50-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-rmx2076.json new file mode 100644 index 00000000000..4ca11726604 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-x50-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-rmx2076.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-x50-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-rmx2076", + "name": "Realme X50 Pro 5G Standard Edition Dual SIM TD-LTE IN 128GB RMX2076", + "brand": "oppo", + "soc": "snapdragon-865", + "release_date": "2020-03-06", + "ram_gb": 6.0, + "battery_mah": 4200, + "weight_g": 207.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-x50-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-rmx2075.json b/data/smartphone/oppo/2020/realme-x50-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-rmx2075.json new file mode 100644 index 00000000000..0bcc3f5f50d --- /dev/null +++ b/data/smartphone/oppo/2020/realme-x50-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-rmx2075.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-x50-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-rmx2075", + "name": "Realme X50 Pro 5G Standard Edition Global Dual SIM TD-LTE 128GB RMX2075", + "brand": "oppo", + "soc": "snapdragon-865", + "release_date": "2020-04-01", + "ram_gb": 6.0, + "battery_mah": 4200, + "weight_g": 207.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Czech , Italy , Poland , Russia , Spain , UK", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/oppo/2020/realme-x50m-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2142.json b/data/smartphone/oppo/2020/realme-x50m-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2142.json new file mode 100644 index 00000000000..d98ab2b21f2 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-x50m-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2142.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-x50m-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2142", + "name": "Realme X50m 5G Premium Edition Dual SIM TD-LTE CN 128GB RMX2142", + "brand": "oppo", + "soc": "snapdragon-765", + "release_date": "2020-04-29", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-x50m-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2142.json b/data/smartphone/oppo/2020/realme-x50m-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2142.json new file mode 100644 index 00000000000..de0f4251888 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-x50m-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2142.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-x50m-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2142", + "name": "Realme X50m 5G Standard Edition Dual SIM TD-LTE CN 128GB RMX2142", + "brand": "oppo", + "soc": "snapdragon-765", + "release_date": "2020-04-29", + "ram_gb": 6.0, + "battery_mah": 4200, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-x50t-5g-dual-sim-td-lte-cn-128gb-rmx2052-rmx2052cn.json b/data/smartphone/oppo/2020/realme-x50t-5g-dual-sim-td-lte-cn-128gb-rmx2052-rmx2052cn.json new file mode 100644 index 00000000000..ed25dbd8c37 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-x50t-5g-dual-sim-td-lte-cn-128gb-rmx2052-rmx2052cn.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-x50t-5g-dual-sim-td-lte-cn-128gb-rmx2052-rmx2052cn", + "name": "Realme X50t 5G Dual SIM TD-LTE CN 128GB RMX2052 / RMX2052CN", + "brand": "oppo", + "soc": "snapdragon-765", + "release_date": "2020-06-21", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-x7-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2176.json b/data/smartphone/oppo/2020/realme-x7-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2176.json new file mode 100644 index 00000000000..9e95f1f5754 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-x7-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2176.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-x7-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2176", + "name": "Realme X7 5G Premium Edition Dual SIM TD-LTE CN 128GB RMX2176", + "brand": "oppo", + "soc": "dimensity-800", + "release_date": "2020-09-01", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2399, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-x7-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2176.json b/data/smartphone/oppo/2020/realme-x7-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2176.json new file mode 100644 index 00000000000..f4e6c4dcbe7 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-x7-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2176.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-x7-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2176", + "name": "Realme X7 5G Standard Edition Dual SIM TD-LTE CN 128GB RMX2176", + "brand": "oppo", + "soc": "dimensity-800", + "release_date": "2020-09-01", + "ram_gb": 6.0, + "battery_mah": 4300, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1799, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-x7-pro-5g-dual-sim-td-lte-cn-128gb-rmx2121.json b/data/smartphone/oppo/2020/realme-x7-pro-5g-dual-sim-td-lte-cn-128gb-rmx2121.json new file mode 100644 index 00000000000..22b4f16f546 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-x7-pro-5g-dual-sim-td-lte-cn-128gb-rmx2121.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-x7-pro-5g-dual-sim-td-lte-cn-128gb-rmx2121", + "name": "Realme X7 Pro 5G Dual SIM TD-LTE CN 128GB RMX2121", + "brand": "oppo", + "soc": "dimensity-1000-plus", + "release_date": "2020-09-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 2499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/realme-x7-pro-5g-dual-sim-td-lte-cn-256gb-rmx2121.json b/data/smartphone/oppo/2020/realme-x7-pro-5g-dual-sim-td-lte-cn-256gb-rmx2121.json new file mode 100644 index 00000000000..fb0711cd000 --- /dev/null +++ b/data/smartphone/oppo/2020/realme-x7-pro-5g-dual-sim-td-lte-cn-256gb-rmx2121.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-x7-pro-5g-dual-sim-td-lte-cn-256gb-rmx2121", + "name": "Realme X7 Pro 5G Dual SIM TD-LTE CN 256GB RMX2121", + "brand": "oppo", + "soc": "dimensity-1000-plus", + "release_date": "2020-09-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 3199, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/reno3-5g-aura-edition-dual-sim-td-lte-cn-128gb-pclm50.json b/data/smartphone/oppo/2020/reno3-5g-aura-edition-dual-sim-td-lte-cn-128gb-pclm50.json new file mode 100644 index 00000000000..c3ba04d059f --- /dev/null +++ b/data/smartphone/oppo/2020/reno3-5g-aura-edition-dual-sim-td-lte-cn-128gb-pclm50.json @@ -0,0 +1,43 @@ +{ + "slug": "reno3-5g-aura-edition-dual-sim-td-lte-cn-128gb-pclm50", + "name": "Reno3 5G Aura Edition Dual SIM TD-LTE CN 128GB PCLM50", + "brand": "oppo", + "soc": "snapdragon-765", + "release_date": "2020-02-14", + "ram_gb": 8.0, + "battery_mah": 4025, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/reno3-5g-td-lte-jp-a001op.json b/data/smartphone/oppo/2020/reno3-5g-td-lte-jp-a001op.json new file mode 100644 index 00000000000..4d4a582cb49 --- /dev/null +++ b/data/smartphone/oppo/2020/reno3-5g-td-lte-jp-a001op.json @@ -0,0 +1,43 @@ +{ + "slug": "reno3-5g-td-lte-jp-a001op", + "name": "Reno3 5G TD-LTE JP A001OP", + "brand": "oppo", + "soc": "snapdragon-765", + "release_date": "2020-07-01", + "ram_gb": 8.0, + "battery_mah": 4025, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/reno3-a-2020-global-dual-sim-td-lte-128gb-cph2013-a002op.json b/data/smartphone/oppo/2020/reno3-a-2020-global-dual-sim-td-lte-128gb-cph2013-a002op.json new file mode 100644 index 00000000000..b6b298f8b9f --- /dev/null +++ b/data/smartphone/oppo/2020/reno3-a-2020-global-dual-sim-td-lte-128gb-cph2013-a002op.json @@ -0,0 +1,42 @@ +{ + "slug": "reno3-a-2020-global-dual-sim-td-lte-128gb-cph2013-a002op", + "name": "Reno3 A 2020 Global Dual SIM TD-LTE 128GB CPH2013 / A002OP", + "brand": "oppo", + "soc": "snapdragon-665", + "release_date": "2020-08-14", + "ram_gb": 6.0, + "battery_mah": 4025, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/reno3-pro-5g-global-dual-sim-td-lte-256gb-cph2009-find-x2-neo.json b/data/smartphone/oppo/2020/reno3-pro-5g-global-dual-sim-td-lte-256gb-cph2009-find-x2-neo.json new file mode 100644 index 00000000000..e2ba569d88d --- /dev/null +++ b/data/smartphone/oppo/2020/reno3-pro-5g-global-dual-sim-td-lte-256gb-cph2009-find-x2-neo.json @@ -0,0 +1,43 @@ +{ + "slug": "reno3-pro-5g-global-dual-sim-td-lte-256gb-cph2009-find-x2-neo", + "name": "Reno3 Pro 5G Global Dual SIM TD-LTE 256GB CPH2009 / Find X2 Neo", + "brand": "oppo", + "soc": "snapdragon-765", + "release_date": "2020-04-21", + "ram_gb": 12.0, + "battery_mah": 4025, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Czech , Germany , HK , Italy , Japan , Netherlands , Pakistan , Philippines , Poland , Russia , Singapore , Spain , Taiwan , Turkey , UAE , UK", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2020/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pcrm00.json b/data/smartphone/oppo/2020/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pcrm00.json new file mode 100644 index 00000000000..76cde6dafd1 --- /dev/null +++ b/data/smartphone/oppo/2020/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pcrm00.json @@ -0,0 +1,43 @@ +{ + "slug": "reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pcrm00", + "name": "Reno3 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB PCRM00", + "brand": "oppo", + "soc": "snapdragon-765", + "release_date": "2020-01-01", + "ram_gb": 12.0, + "battery_mah": 4025, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/reno3-pro-dual-sim-td-lte-in-128gb-cph2035.json b/data/smartphone/oppo/2020/reno3-pro-dual-sim-td-lte-in-128gb-cph2035.json new file mode 100644 index 00000000000..9d58d231b57 --- /dev/null +++ b/data/smartphone/oppo/2020/reno3-pro-dual-sim-td-lte-in-128gb-cph2035.json @@ -0,0 +1,42 @@ +{ + "slug": "reno3-pro-dual-sim-td-lte-in-128gb-cph2035", + "name": "Reno3 Pro Dual SIM TD-LTE IN 128GB CPH2035", + "brand": "oppo", + "soc": "helio-p95", + "release_date": "2020-03-06", + "ram_gb": 8.0, + "battery_mah": 4025, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 410 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 43.7 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/reno3-pro-dual-sim-td-lte-in-256gb-cph2035.json b/data/smartphone/oppo/2020/reno3-pro-dual-sim-td-lte-in-256gb-cph2035.json new file mode 100644 index 00000000000..34f46422da5 --- /dev/null +++ b/data/smartphone/oppo/2020/reno3-pro-dual-sim-td-lte-in-256gb-cph2035.json @@ -0,0 +1,42 @@ +{ + "slug": "reno3-pro-dual-sim-td-lte-in-256gb-cph2035", + "name": "Reno3 Pro Dual SIM TD-LTE IN 256GB CPH2035", + "brand": "oppo", + "soc": "helio-p95", + "release_date": "2020-03-06", + "ram_gb": 8.0, + "battery_mah": 4025, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 410 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 43.7 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/reno3-td-lte-apac-128gb-cph2043.json b/data/smartphone/oppo/2020/reno3-td-lte-apac-128gb-cph2043.json new file mode 100644 index 00000000000..38972ae672f --- /dev/null +++ b/data/smartphone/oppo/2020/reno3-td-lte-apac-128gb-cph2043.json @@ -0,0 +1,41 @@ +{ + "slug": "reno3-td-lte-apac-128gb-cph2043", + "name": "Reno3 TD-LTE APAC 128GB CPH2043", + "brand": "oppo", + "soc": "helio-p90", + "release_date": "2020-03-01", + "ram_gb": 8.0, + "battery_mah": 4025, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "type": "Yes", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Indonesia , Nepal , Pakistan , Sri Lanka", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2020/reno4-5g-dual-sim-td-lte-cn-128gb-pdpm00.json b/data/smartphone/oppo/2020/reno4-5g-dual-sim-td-lte-cn-128gb-pdpm00.json new file mode 100644 index 00000000000..cea65bf4595 --- /dev/null +++ b/data/smartphone/oppo/2020/reno4-5g-dual-sim-td-lte-cn-128gb-pdpm00.json @@ -0,0 +1,42 @@ +{ + "slug": "reno4-5g-dual-sim-td-lte-cn-128gb-pdpm00", + "name": "Reno4 5G Dual SIM TD-LTE CN 128GB PDPM00", + "brand": "oppo", + "soc": "snapdragon-765", + "release_date": "2020-06-12", + "ram_gb": 8.0, + "battery_mah": 4020, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/reno4-5g-dual-sim-td-lte-cn-128gb-pdpt00.json b/data/smartphone/oppo/2020/reno4-5g-dual-sim-td-lte-cn-128gb-pdpt00.json new file mode 100644 index 00000000000..178de7676d9 --- /dev/null +++ b/data/smartphone/oppo/2020/reno4-5g-dual-sim-td-lte-cn-128gb-pdpt00.json @@ -0,0 +1,42 @@ +{ + "slug": "reno4-5g-dual-sim-td-lte-cn-128gb-pdpt00", + "name": "Reno4 5G Dual SIM TD-LTE CN 128GB PDPT00", + "brand": "oppo", + "soc": "snapdragon-765", + "release_date": "2020-06-12", + "ram_gb": 8.0, + "battery_mah": 4020, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/reno4-5g-dual-sim-td-lte-cn-256gb-pdpm00.json b/data/smartphone/oppo/2020/reno4-5g-dual-sim-td-lte-cn-256gb-pdpm00.json new file mode 100644 index 00000000000..c891361a515 --- /dev/null +++ b/data/smartphone/oppo/2020/reno4-5g-dual-sim-td-lte-cn-256gb-pdpm00.json @@ -0,0 +1,42 @@ +{ + "slug": "reno4-5g-dual-sim-td-lte-cn-256gb-pdpm00", + "name": "Reno4 5G Dual SIM TD-LTE CN 256GB PDPM00", + "brand": "oppo", + "soc": "snapdragon-765", + "release_date": "2020-06-12", + "ram_gb": 8.0, + "battery_mah": 4020, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/reno4-lite-global-dual-sim-td-lte-v4-128gb-cph2125.json b/data/smartphone/oppo/2020/reno4-lite-global-dual-sim-td-lte-v4-128gb-cph2125.json new file mode 100644 index 00000000000..a5fcc731406 --- /dev/null +++ b/data/smartphone/oppo/2020/reno4-lite-global-dual-sim-td-lte-v4-128gb-cph2125.json @@ -0,0 +1,43 @@ +{ + "slug": "reno4-lite-global-dual-sim-td-lte-v4-128gb-cph2125", + "name": "Reno4 Lite Global Dual SIM TD-LTE V4 128GB CPH2125", + "brand": "oppo", + "soc": "helio-p95", + "release_date": "2020-10-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Belarus , France , Italy , Netherlands , NZ , Poland , Romania , Russia , Singapore , Spain , Turkey , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2020/reno4-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pdnm00.json b/data/smartphone/oppo/2020/reno4-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pdnm00.json new file mode 100644 index 00000000000..9a5b1e2cbbf --- /dev/null +++ b/data/smartphone/oppo/2020/reno4-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pdnm00.json @@ -0,0 +1,43 @@ +{ + "slug": "reno4-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pdnm00", + "name": "Reno4 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB PDNM00", + "brand": "oppo", + "soc": "snapdragon-765", + "release_date": "2020-06-12", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.54, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/reno4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdnm00.json b/data/smartphone/oppo/2020/reno4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdnm00.json new file mode 100644 index 00000000000..836d41fdc5a --- /dev/null +++ b/data/smartphone/oppo/2020/reno4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdnm00.json @@ -0,0 +1,43 @@ +{ + "slug": "reno4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdnm00", + "name": "Reno4 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB PDNM00", + "brand": "oppo", + "soc": "snapdragon-765", + "release_date": "2020-06-12", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.54, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/reno4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdnt00.json b/data/smartphone/oppo/2020/reno4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdnt00.json new file mode 100644 index 00000000000..c41acee1ceb --- /dev/null +++ b/data/smartphone/oppo/2020/reno4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdnt00.json @@ -0,0 +1,43 @@ +{ + "slug": "reno4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdnt00", + "name": "Reno4 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB PDNT00", + "brand": "oppo", + "soc": "snapdragon-765", + "release_date": "2020-06-12", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.54, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/reno4-se-5g-dual-sim-td-lte-cn-128gb-peam00.json b/data/smartphone/oppo/2020/reno4-se-5g-dual-sim-td-lte-cn-128gb-peam00.json new file mode 100644 index 00000000000..3561cd8a2e6 --- /dev/null +++ b/data/smartphone/oppo/2020/reno4-se-5g-dual-sim-td-lte-cn-128gb-peam00.json @@ -0,0 +1,44 @@ +{ + "slug": "reno4-se-5g-dual-sim-td-lte-cn-128gb-peam00", + "name": "Reno4 SE 5G Dual SIM TD-LTE CN 128GB PEAM00", + "brand": "oppo", + "soc": "dimensity-720", + "release_date": "2020-09-01", + "ram_gb": 8.0, + "battery_mah": 2150, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/reno4-se-5g-dual-sim-td-lte-cn-128gb-peat00.json b/data/smartphone/oppo/2020/reno4-se-5g-dual-sim-td-lte-cn-128gb-peat00.json new file mode 100644 index 00000000000..fc2be61231d --- /dev/null +++ b/data/smartphone/oppo/2020/reno4-se-5g-dual-sim-td-lte-cn-128gb-peat00.json @@ -0,0 +1,44 @@ +{ + "slug": "reno4-se-5g-dual-sim-td-lte-cn-128gb-peat00", + "name": "Reno4 SE 5G Dual SIM TD-LTE CN 128GB PEAT00", + "brand": "oppo", + "soc": "dimensity-720", + "release_date": "2020-09-26", + "ram_gb": 8.0, + "battery_mah": 2150, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/reno4-se-5g-dual-sim-td-lte-cn-256gb-peam00.json b/data/smartphone/oppo/2020/reno4-se-5g-dual-sim-td-lte-cn-256gb-peam00.json new file mode 100644 index 00000000000..4e09cb96f5b --- /dev/null +++ b/data/smartphone/oppo/2020/reno4-se-5g-dual-sim-td-lte-cn-256gb-peam00.json @@ -0,0 +1,44 @@ +{ + "slug": "reno4-se-5g-dual-sim-td-lte-cn-256gb-peam00", + "name": "Reno4 SE 5G Dual SIM TD-LTE CN 256GB PEAM00", + "brand": "oppo", + "soc": "dimensity-720", + "release_date": "2020-09-26", + "ram_gb": 8.0, + "battery_mah": 2150, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2799, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/reno5-5g-dual-sim-td-lte-cn-128gb-pegm00.json b/data/smartphone/oppo/2020/reno5-5g-dual-sim-td-lte-cn-128gb-pegm00.json new file mode 100644 index 00000000000..4c8ae4f759d --- /dev/null +++ b/data/smartphone/oppo/2020/reno5-5g-dual-sim-td-lte-cn-128gb-pegm00.json @@ -0,0 +1,44 @@ +{ + "slug": "reno5-5g-dual-sim-td-lte-cn-128gb-pegm00", + "name": "Reno5 5G Dual SIM TD-LTE CN 128GB PEGM00", + "brand": "oppo", + "soc": "snapdragon-765", + "release_date": "2020-12-01", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2699, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/reno5-5g-dual-sim-td-lte-cn-128gb-pegt00.json b/data/smartphone/oppo/2020/reno5-5g-dual-sim-td-lte-cn-128gb-pegt00.json new file mode 100644 index 00000000000..50bd4997c20 --- /dev/null +++ b/data/smartphone/oppo/2020/reno5-5g-dual-sim-td-lte-cn-128gb-pegt00.json @@ -0,0 +1,44 @@ +{ + "slug": "reno5-5g-dual-sim-td-lte-cn-128gb-pegt00", + "name": "Reno5 5G Dual SIM TD-LTE CN 128GB PEGT00", + "brand": "oppo", + "soc": "snapdragon-765", + "release_date": "2020-12-01", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2699, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/reno5-5g-dual-sim-td-lte-cn-256gb-pegm00.json b/data/smartphone/oppo/2020/reno5-5g-dual-sim-td-lte-cn-256gb-pegm00.json new file mode 100644 index 00000000000..f6f9c02c9d2 --- /dev/null +++ b/data/smartphone/oppo/2020/reno5-5g-dual-sim-td-lte-cn-256gb-pegm00.json @@ -0,0 +1,44 @@ +{ + "slug": "reno5-5g-dual-sim-td-lte-cn-256gb-pegm00", + "name": "Reno5 5G Dual SIM TD-LTE CN 256GB PEGM00", + "brand": "oppo", + "soc": "snapdragon-765", + "release_date": "2020-12-31", + "ram_gb": 12.0, + "battery_mah": 4300, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdsm00.json b/data/smartphone/oppo/2020/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdsm00.json new file mode 100644 index 00000000000..a911b3aca93 --- /dev/null +++ b/data/smartphone/oppo/2020/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdsm00.json @@ -0,0 +1,44 @@ +{ + "slug": "reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdsm00", + "name": "Reno5 Pro 5G Dual SIM TD-LTE CN 128GB PDSM00", + "brand": "oppo", + "soc": "dimensity-1000-plus", + "release_date": "2020-12-01", + "ram_gb": 8.0, + "battery_mah": 4350, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 3399, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdst00.json b/data/smartphone/oppo/2020/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdst00.json new file mode 100644 index 00000000000..8122029de62 --- /dev/null +++ b/data/smartphone/oppo/2020/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdst00.json @@ -0,0 +1,44 @@ +{ + "slug": "reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdst00", + "name": "Reno5 Pro 5G Dual SIM TD-LTE CN 128GB PDST00", + "brand": "oppo", + "soc": "dimensity-1000-plus", + "release_date": "2020-12-01", + "ram_gb": 8.0, + "battery_mah": 4350, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 3399, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2020/reno5-pro-5g-dual-sim-td-lte-cn-256gb-pdsm00.json b/data/smartphone/oppo/2020/reno5-pro-5g-dual-sim-td-lte-cn-256gb-pdsm00.json new file mode 100644 index 00000000000..203d93789fe --- /dev/null +++ b/data/smartphone/oppo/2020/reno5-pro-5g-dual-sim-td-lte-cn-256gb-pdsm00.json @@ -0,0 +1,44 @@ +{ + "slug": "reno5-pro-5g-dual-sim-td-lte-cn-256gb-pdsm00", + "name": "Reno5 Pro 5G Dual SIM TD-LTE CN 256GB PDSM00", + "brand": "oppo", + "soc": "dimensity-1000-plus", + "release_date": "2020-12-01", + "ram_gb": 12.0, + "battery_mah": 4350, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 3799, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/a16-2021-premium-edition-dual-sim-td-lte-v1-in-id-bd-64gb-cph2269.json b/data/smartphone/oppo/2021/a16-2021-premium-edition-dual-sim-td-lte-v1-in-id-bd-64gb-cph2269.json new file mode 100644 index 00000000000..e6912118abd --- /dev/null +++ b/data/smartphone/oppo/2021/a16-2021-premium-edition-dual-sim-td-lte-v1-in-id-bd-64gb-cph2269.json @@ -0,0 +1,42 @@ +{ + "slug": "a16-2021-premium-edition-dual-sim-td-lte-v1-in-id-bd-64gb-cph2269", + "name": "A16 2021 Premium Edition Dual SIM TD-LTE V1 IN ID BD 64GB CPH2269", + "brand": "oppo", + "soc": "helio-g35", + "release_date": "2021-07-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Indonesia , Myanmar", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2021/a16-2021-premium-edition-dual-sim-td-lte-v2-th-my-sg-vn-ph-kh-64gb-cph2269-cph2275.json b/data/smartphone/oppo/2021/a16-2021-premium-edition-dual-sim-td-lte-v2-th-my-sg-vn-ph-kh-64gb-cph2269-cph2275.json new file mode 100644 index 00000000000..c5a907bf4e9 --- /dev/null +++ b/data/smartphone/oppo/2021/a16-2021-premium-edition-dual-sim-td-lte-v2-th-my-sg-vn-ph-kh-64gb-cph2269-cph2275.json @@ -0,0 +1,43 @@ +{ + "slug": "a16-2021-premium-edition-dual-sim-td-lte-v2-th-my-sg-vn-ph-kh-64gb-cph2269-cph2275", + "name": "A16 2021 Premium Edition Dual SIM TD-LTE V2 TH MY SG VN PH KH 64GB CPH2269 / CPH2275", + "brand": "oppo", + "soc": "helio-g35", + "release_date": "2021-07-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 199, + "market_countries": "Cambodia , Malaysia , Philippines , Singapore , Thailand , Vietnam", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/oppo/2021/a16-2021-standard-edition-dual-sim-td-lte-v1-id-pk-bd-np-32gb-cph2269.json b/data/smartphone/oppo/2021/a16-2021-standard-edition-dual-sim-td-lte-v1-id-pk-bd-np-32gb-cph2269.json new file mode 100644 index 00000000000..404a3045722 --- /dev/null +++ b/data/smartphone/oppo/2021/a16-2021-standard-edition-dual-sim-td-lte-v1-id-pk-bd-np-32gb-cph2269.json @@ -0,0 +1,42 @@ +{ + "slug": "a16-2021-standard-edition-dual-sim-td-lte-v1-id-pk-bd-np-32gb-cph2269", + "name": "A16 2021 Standard Edition Dual SIM TD-LTE V1 ID PK BD NP 32GB CPH2269", + "brand": "oppo", + "soc": "helio-g35", + "release_date": "2021-07-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , Indonesia , Myanmar , Nepal , Pakistan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2021/a16-2021-standard-edition-dual-sim-td-lte-v2-th-my-vn-ph-kh-32gb-cph2269.json b/data/smartphone/oppo/2021/a16-2021-standard-edition-dual-sim-td-lte-v2-th-my-vn-ph-kh-32gb-cph2269.json new file mode 100644 index 00000000000..706fad037ef --- /dev/null +++ b/data/smartphone/oppo/2021/a16-2021-standard-edition-dual-sim-td-lte-v2-th-my-vn-ph-kh-32gb-cph2269.json @@ -0,0 +1,43 @@ +{ + "slug": "a16-2021-standard-edition-dual-sim-td-lte-v2-th-my-vn-ph-kh-32gb-cph2269", + "name": "A16 2021 Standard Edition Dual SIM TD-LTE V2 TH MY VN PH KH 32GB CPH2269", + "brand": "oppo", + "soc": "helio-g35", + "release_date": "2021-07-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 4999, + "market_countries": "Cambodia , Malaysia , Philippines , Thailand", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/oppo/2021/a16s-2021-global-dual-sim-td-lte-64gb-cph2271.json b/data/smartphone/oppo/2021/a16s-2021-global-dual-sim-td-lte-64gb-cph2271.json new file mode 100644 index 00000000000..91ccf92740c --- /dev/null +++ b/data/smartphone/oppo/2021/a16s-2021-global-dual-sim-td-lte-64gb-cph2271.json @@ -0,0 +1,43 @@ +{ + "slug": "a16s-2021-global-dual-sim-td-lte-64gb-cph2271", + "name": "A16s 2021 Global Dual SIM TD-LTE 64GB CPH2271", + "brand": "oppo", + "soc": "helio-g35", + "release_date": "2021-09-27", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 179, + "market_countries": "Australia , Belgium , Czech , France , Germany , Hungary , Ireland , Italy , Netherlands , NZ , Poland , Portugal , Romania , Russia , Slovakia , Spain , Switzerland , Turkey , UK , Ukraine", + "market_regions": "Australia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/oppo/2021/a16s-2021-global-td-lte-64gb-cph2271.json b/data/smartphone/oppo/2021/a16s-2021-global-td-lte-64gb-cph2271.json new file mode 100644 index 00000000000..b4ccaa2f7bd --- /dev/null +++ b/data/smartphone/oppo/2021/a16s-2021-global-td-lte-64gb-cph2271.json @@ -0,0 +1,43 @@ +{ + "slug": "a16s-2021-global-td-lte-64gb-cph2271", + "name": "A16s 2021 Global TD-LTE 64GB CPH2271", + "brand": "oppo", + "soc": "helio-g35", + "release_date": "2021-09-27", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 179, + "market_countries": "Australia , Cyprus , Germany , Greece , Ireland , NZ , South Africa , Turkey , UK", + "market_regions": "Africa , Australia , Europe , Western Europe" +} diff --git a/data/smartphone/oppo/2021/a35-2021-dual-sim-td-lte-cn-128gb-pehm00.json b/data/smartphone/oppo/2021/a35-2021-dual-sim-td-lte-cn-128gb-pehm00.json new file mode 100644 index 00000000000..fc5d56dc448 --- /dev/null +++ b/data/smartphone/oppo/2021/a35-2021-dual-sim-td-lte-cn-128gb-pehm00.json @@ -0,0 +1,43 @@ +{ + "slug": "a35-2021-dual-sim-td-lte-cn-128gb-pehm00", + "name": "A35 2021 Dual SIM TD-LTE CN 128GB PEHM00", + "brand": "oppo", + "soc": "helio-p35", + "release_date": "2021-04-26", + "ram_gb": 4.0, + "battery_mah": 4230, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/a35-2021-dual-sim-td-lte-cn-64gb-pehm00.json b/data/smartphone/oppo/2021/a35-2021-dual-sim-td-lte-cn-64gb-pehm00.json new file mode 100644 index 00000000000..e8d005ddf54 --- /dev/null +++ b/data/smartphone/oppo/2021/a35-2021-dual-sim-td-lte-cn-64gb-pehm00.json @@ -0,0 +1,43 @@ +{ + "slug": "a35-2021-dual-sim-td-lte-cn-64gb-pehm00", + "name": "A35 2021 Dual SIM TD-LTE CN 64GB PEHM00", + "brand": "oppo", + "soc": "helio-p35", + "release_date": "2021-04-26", + "ram_gb": 4.0, + "battery_mah": 4230, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/a53-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-pecm30.json b/data/smartphone/oppo/2021/a53-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-pecm30.json new file mode 100644 index 00000000000..dad811c11d0 --- /dev/null +++ b/data/smartphone/oppo/2021/a53-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-pecm30.json @@ -0,0 +1,43 @@ +{ + "slug": "a53-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-pecm30", + "name": "A53 5G 2020 Premium Edition Dual SIM TD-LTE CN 128GB PECM30", + "brand": "oppo", + "soc": "dimensity-720", + "release_date": "2021-01-01", + "ram_gb": 6.0, + "battery_mah": 4040, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/a53-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pecm30.json b/data/smartphone/oppo/2021/a53-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pecm30.json new file mode 100644 index 00000000000..4be8d07baf6 --- /dev/null +++ b/data/smartphone/oppo/2021/a53-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pecm30.json @@ -0,0 +1,44 @@ +{ + "slug": "a53-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pecm30", + "name": "A53 5G 2020 Standard Edition Dual SIM TD-LTE CN 128GB PECM30", + "brand": "oppo", + "soc": "dimensity-720", + "release_date": "2021-01-01", + "ram_gb": 4.0, + "battery_mah": 4040, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1299, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/a53-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pect30.json b/data/smartphone/oppo/2021/a53-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pect30.json new file mode 100644 index 00000000000..3fee8018fb7 --- /dev/null +++ b/data/smartphone/oppo/2021/a53-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pect30.json @@ -0,0 +1,44 @@ +{ + "slug": "a53-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pect30", + "name": "A53 5G 2020 Standard Edition Dual SIM TD-LTE CN 128GB PECT30", + "brand": "oppo", + "soc": "dimensity-720", + "release_date": "2021-01-01", + "ram_gb": 4.0, + "battery_mah": 4040, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1299, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/a54-2021-5g-dual-sim-td-lte-jp-64gb-cph2303.json b/data/smartphone/oppo/2021/a54-2021-5g-dual-sim-td-lte-jp-64gb-cph2303.json new file mode 100644 index 00000000000..ea0372dd867 --- /dev/null +++ b/data/smartphone/oppo/2021/a54-2021-5g-dual-sim-td-lte-jp-64gb-cph2303.json @@ -0,0 +1,43 @@ +{ + "slug": "a54-2021-5g-dual-sim-td-lte-jp-64gb-cph2303", + "name": "A54 2021 5G Dual SIM TD-LTE JP 64GB CPH2303", + "brand": "oppo", + "soc": "snapdragon-480", + "release_date": "2021-06-24", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/a54-2021-5g-global-dual-sim-td-lte-64gb-cph2195.json b/data/smartphone/oppo/2021/a54-2021-5g-global-dual-sim-td-lte-64gb-cph2195.json new file mode 100644 index 00000000000..bd8ca17b92f --- /dev/null +++ b/data/smartphone/oppo/2021/a54-2021-5g-global-dual-sim-td-lte-64gb-cph2195.json @@ -0,0 +1,44 @@ +{ + "slug": "a54-2021-5g-global-dual-sim-td-lte-64gb-cph2195", + "name": "A54 2021 5G Global Dual SIM TD-LTE 64GB CPH2195", + "brand": "oppo", + "soc": "snapdragon-480", + "release_date": "2021-04-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 270, + "market_countries": "Australia , Belgium , France , Germany , Italy , Netherlands , NZ , Poland , Portugal , Spain , UK", + "market_regions": "Australia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/oppo/2021/a54-2021-5g-global-td-lte-64gb-cph2195.json b/data/smartphone/oppo/2021/a54-2021-5g-global-td-lte-64gb-cph2195.json new file mode 100644 index 00000000000..c350d37b327 --- /dev/null +++ b/data/smartphone/oppo/2021/a54-2021-5g-global-td-lte-64gb-cph2195.json @@ -0,0 +1,44 @@ +{ + "slug": "a54-2021-5g-global-td-lte-64gb-cph2195", + "name": "A54 2021 5G Global TD-LTE 64GB CPH2195", + "brand": "oppo", + "soc": "snapdragon-480", + "release_date": "2021-04-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 399, + "market_countries": "Australia , Belgium , France , Germany , Italy , Netherlands , NZ , Poland , Portugal , Spain , UK", + "market_regions": "Australia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/oppo/2021/a54-2021-5g-td-lte-jp-opg02.json b/data/smartphone/oppo/2021/a54-2021-5g-td-lte-jp-opg02.json new file mode 100644 index 00000000000..03054f848d4 --- /dev/null +++ b/data/smartphone/oppo/2021/a54-2021-5g-td-lte-jp-opg02.json @@ -0,0 +1,43 @@ +{ + "slug": "a54-2021-5g-td-lte-jp-opg02", + "name": "A54 2021 5G TD-LTE JP OPG02", + "brand": "oppo", + "soc": "snapdragon-480", + "release_date": "2021-06-04", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/a54s-2021-global-dual-sim-td-lte-128gb-cph2273.json b/data/smartphone/oppo/2021/a54s-2021-global-dual-sim-td-lte-128gb-cph2273.json new file mode 100644 index 00000000000..70bd3b99aaa --- /dev/null +++ b/data/smartphone/oppo/2021/a54s-2021-global-dual-sim-td-lte-128gb-cph2273.json @@ -0,0 +1,43 @@ +{ + "slug": "a54s-2021-global-dual-sim-td-lte-128gb-cph2273", + "name": "A54s 2021 Global Dual SIM TD-LTE 128GB CPH2273", + "brand": "oppo", + "soc": "helio-g35", + "release_date": "2021-10-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 179, + "market_countries": "Belgium , Czech , France , Germany , Hungary , Ireland , Italy , Netherlands , NZ , Poland , Portugal , Romania , Slovakia , Spain , Switzerland , Turkey , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/oppo/2021/a55-4g-2021-dual-sim-td-lte-v1-in-128gb-cph2325.json b/data/smartphone/oppo/2021/a55-4g-2021-dual-sim-td-lte-v1-in-128gb-cph2325.json new file mode 100644 index 00000000000..4b8df81828e --- /dev/null +++ b/data/smartphone/oppo/2021/a55-4g-2021-dual-sim-td-lte-v1-in-128gb-cph2325.json @@ -0,0 +1,43 @@ +{ + "slug": "a55-4g-2021-dual-sim-td-lte-v1-in-128gb-cph2325", + "name": "A55 4G 2021 Dual SIM TD-LTE V1 IN 128GB CPH2325", + "brand": "oppo", + "soc": "helio-g35", + "release_date": "2021-08-26", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/a55-4g-2021-dual-sim-td-lte-v1-in-64gb-cph2325.json b/data/smartphone/oppo/2021/a55-4g-2021-dual-sim-td-lte-v1-in-64gb-cph2325.json new file mode 100644 index 00000000000..50f6e5da8e0 --- /dev/null +++ b/data/smartphone/oppo/2021/a55-4g-2021-dual-sim-td-lte-v1-in-64gb-cph2325.json @@ -0,0 +1,43 @@ +{ + "slug": "a55-4g-2021-dual-sim-td-lte-v1-in-64gb-cph2325", + "name": "A55 4G 2021 Dual SIM TD-LTE V1 IN 64GB CPH2325", + "brand": "oppo", + "soc": "helio-g35", + "release_date": "2021-10-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/a55-5g-2021-dual-sim-td-lte-cn-pemm00.json b/data/smartphone/oppo/2021/a55-5g-2021-dual-sim-td-lte-cn-pemm00.json new file mode 100644 index 00000000000..e81afc0202b --- /dev/null +++ b/data/smartphone/oppo/2021/a55-5g-2021-dual-sim-td-lte-cn-pemm00.json @@ -0,0 +1,44 @@ +{ + "slug": "a55-5g-2021-dual-sim-td-lte-cn-pemm00", + "name": "A55 5G 2021 Dual SIM TD-LTE CN PEMM00", + "brand": "oppo", + "soc": "dimensity-700", + "release_date": "2021-02-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1599, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/a56-5g-2021-dual-sim-td-lte-cn-pfvm10.json b/data/smartphone/oppo/2021/a56-5g-2021-dual-sim-td-lte-cn-pfvm10.json new file mode 100644 index 00000000000..7b846274028 --- /dev/null +++ b/data/smartphone/oppo/2021/a56-5g-2021-dual-sim-td-lte-cn-pfvm10.json @@ -0,0 +1,44 @@ +{ + "slug": "a56-5g-2021-dual-sim-td-lte-cn-pfvm10", + "name": "A56 5G 2021 Dual SIM TD-LTE CN PFVM10", + "brand": "oppo", + "soc": "dimensity-700", + "release_date": "2021-11-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 189.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1599, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/a74-2021-5g-global-dual-sim-td-lte-128gb-cph2197.json b/data/smartphone/oppo/2021/a74-2021-5g-global-dual-sim-td-lte-128gb-cph2197.json new file mode 100644 index 00000000000..376a08e540d --- /dev/null +++ b/data/smartphone/oppo/2021/a74-2021-5g-global-dual-sim-td-lte-128gb-cph2197.json @@ -0,0 +1,44 @@ +{ + "slug": "a74-2021-5g-global-dual-sim-td-lte-128gb-cph2197", + "name": "A74 2021 5G Global Dual SIM TD-LTE 128GB CPH2197", + "brand": "oppo", + "soc": "snapdragon-480", + "release_date": "2021-04-22", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 319, + "market_countries": "Belgium , France , Germany , Italy , Netherlands , NZ , Singapore , Thailand , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2021/a74-2021-premium-edition-dual-sim-td-lte-v2-au-my-th-128gb-cph2219.json b/data/smartphone/oppo/2021/a74-2021-premium-edition-dual-sim-td-lte-v2-au-my-th-128gb-cph2219.json new file mode 100644 index 00000000000..b8867c36537 --- /dev/null +++ b/data/smartphone/oppo/2021/a74-2021-premium-edition-dual-sim-td-lte-v2-au-my-th-128gb-cph2219.json @@ -0,0 +1,44 @@ +{ + "slug": "a74-2021-premium-edition-dual-sim-td-lte-v2-au-my-th-128gb-cph2219", + "name": "A74 2021 Premium Edition Dual SIM TD-LTE V2 AU MY TH 128GB CPH2219", + "brand": "oppo", + "soc": "snapdragon-662", + "release_date": "2021-04-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 299, + "market_countries": "Algeria , Australia , Cambodia , Egypt , Kenya , Malaysia , Nigeria , Saudi Arabia , Singapore , Thailand , Tunisie , UK", + "market_regions": "Africa , Asia , Australia , Middle East , Southeast Asia" +} diff --git a/data/smartphone/oppo/2021/a74-2021-standard-edition-dual-sim-td-lte-v2-kz-128gb-cph2219.json b/data/smartphone/oppo/2021/a74-2021-standard-edition-dual-sim-td-lte-v2-kz-128gb-cph2219.json new file mode 100644 index 00000000000..8e5cc005e2d --- /dev/null +++ b/data/smartphone/oppo/2021/a74-2021-standard-edition-dual-sim-td-lte-v2-kz-128gb-cph2219.json @@ -0,0 +1,43 @@ +{ + "slug": "a74-2021-standard-edition-dual-sim-td-lte-v2-kz-128gb-cph2219", + "name": "A74 2021 Standard Edition Dual SIM TD-LTE V2 KZ 128GB CPH2219", + "brand": "oppo", + "soc": "snapdragon-662", + "release_date": "2021-04-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Kazakhstan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2021/a74-2021-top-edition-dual-sim-td-lte-v2-vn-128gb-cph2219.json b/data/smartphone/oppo/2021/a74-2021-top-edition-dual-sim-td-lte-v2-vn-128gb-cph2219.json new file mode 100644 index 00000000000..c8c6c410ce4 --- /dev/null +++ b/data/smartphone/oppo/2021/a74-2021-top-edition-dual-sim-td-lte-v2-vn-128gb-cph2219.json @@ -0,0 +1,43 @@ +{ + "slug": "a74-2021-top-edition-dual-sim-td-lte-v2-vn-128gb-cph2219", + "name": "A74 2021 Top Edition Dual SIM TD-LTE V2 VN 128GB CPH2219", + "brand": "oppo", + "soc": "snapdragon-662", + "release_date": "2021-04-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2021/a93-2021-5g-dual-sim-td-lte-cn-128gb-pehm00.json b/data/smartphone/oppo/2021/a93-2021-5g-dual-sim-td-lte-cn-128gb-pehm00.json new file mode 100644 index 00000000000..1fc736d4782 --- /dev/null +++ b/data/smartphone/oppo/2021/a93-2021-5g-dual-sim-td-lte-cn-128gb-pehm00.json @@ -0,0 +1,44 @@ +{ + "slug": "a93-2021-5g-dual-sim-td-lte-cn-128gb-pehm00", + "name": "A93 2021 5G Dual SIM TD-LTE CN 128GB PEHM00", + "brand": "oppo", + "soc": "snapdragon-480", + "release_date": "2021-01-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/a93-2021-5g-dual-sim-td-lte-cn-128gb-peht00.json b/data/smartphone/oppo/2021/a93-2021-5g-dual-sim-td-lte-cn-128gb-peht00.json new file mode 100644 index 00000000000..1b0a8ecc880 --- /dev/null +++ b/data/smartphone/oppo/2021/a93-2021-5g-dual-sim-td-lte-cn-128gb-peht00.json @@ -0,0 +1,44 @@ +{ + "slug": "a93-2021-5g-dual-sim-td-lte-cn-128gb-peht00", + "name": "A93 2021 5G Dual SIM TD-LTE CN 128GB PEHT00", + "brand": "oppo", + "soc": "snapdragon-480", + "release_date": "2021-01-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/a93-2021-5g-dual-sim-td-lte-cn-256gb-pehm00.json b/data/smartphone/oppo/2021/a93-2021-5g-dual-sim-td-lte-cn-256gb-pehm00.json new file mode 100644 index 00000000000..25f5ac16bbd --- /dev/null +++ b/data/smartphone/oppo/2021/a93-2021-5g-dual-sim-td-lte-cn-256gb-pehm00.json @@ -0,0 +1,43 @@ +{ + "slug": "a93-2021-5g-dual-sim-td-lte-cn-256gb-pehm00", + "name": "A93 2021 5G Dual SIM TD-LTE CN 256GB PEHM00", + "brand": "oppo", + "soc": "snapdragon-480", + "release_date": "2021-01-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/a93s-5g-2021-dual-sim-td-lte-cn-128gb-pfgm00.json b/data/smartphone/oppo/2021/a93s-5g-2021-dual-sim-td-lte-cn-128gb-pfgm00.json new file mode 100644 index 00000000000..2942511d16b --- /dev/null +++ b/data/smartphone/oppo/2021/a93s-5g-2021-dual-sim-td-lte-cn-128gb-pfgm00.json @@ -0,0 +1,43 @@ +{ + "slug": "a93s-5g-2021-dual-sim-td-lte-cn-128gb-pfgm00", + "name": "A93s 5G 2021 Dual SIM TD-LTE CN 128GB PFGM00", + "brand": "oppo", + "soc": "dimensity-700", + "release_date": "2021-07-31", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/a93s-5g-2021-dual-sim-td-lte-cn-256gb-pfgm00.json b/data/smartphone/oppo/2021/a93s-5g-2021-dual-sim-td-lte-cn-256gb-pfgm00.json new file mode 100644 index 00000000000..7863b514244 --- /dev/null +++ b/data/smartphone/oppo/2021/a93s-5g-2021-dual-sim-td-lte-cn-256gb-pfgm00.json @@ -0,0 +1,44 @@ +{ + "slug": "a93s-5g-2021-dual-sim-td-lte-cn-256gb-pfgm00", + "name": "A93s 5G 2021 Dual SIM TD-LTE CN 256GB PFGM00", + "brand": "oppo", + "soc": "dimensity-700", + "release_date": "2021-08-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/a94-2021-dual-sim-td-lte-v2-th-ae-128gb-cph2203.json b/data/smartphone/oppo/2021/a94-2021-dual-sim-td-lte-v2-th-ae-128gb-cph2203.json new file mode 100644 index 00000000000..1e78dbc2a03 --- /dev/null +++ b/data/smartphone/oppo/2021/a94-2021-dual-sim-td-lte-v2-th-ae-128gb-cph2203.json @@ -0,0 +1,43 @@ +{ + "slug": "a94-2021-dual-sim-td-lte-v2-th-ae-128gb-cph2203", + "name": "A94 2021 Dual SIM TD-LTE V2 TH AE 128GB CPH2203", + "brand": "oppo", + "soc": "helio-p95", + "release_date": "2021-03-01", + "ram_gb": 8.0, + "battery_mah": 4310, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Algeria , Saudi Arabia , Thailand , Tunisie , UAE", + "market_regions": "Africa , Asia , Middle East , Southeast Asia" +} diff --git a/data/smartphone/oppo/2021/a94-2021-dual-sim-td-lte-v3-ph-sg-eg-128gb-cph2203.json b/data/smartphone/oppo/2021/a94-2021-dual-sim-td-lte-v3-ph-sg-eg-128gb-cph2203.json new file mode 100644 index 00000000000..d76570f4a6b --- /dev/null +++ b/data/smartphone/oppo/2021/a94-2021-dual-sim-td-lte-v3-ph-sg-eg-128gb-cph2203.json @@ -0,0 +1,44 @@ +{ + "slug": "a94-2021-dual-sim-td-lte-v3-ph-sg-eg-128gb-cph2203", + "name": "A94 2021 Dual SIM TD-LTE V3 PH SG EG 128GB CPH2203", + "brand": "oppo", + "soc": "helio-p95", + "release_date": "2021-03-01", + "ram_gb": 8.0, + "battery_mah": 4310, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 399, + "market_countries": "Egypt , Philippines , Singapore", + "market_regions": "Africa , Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/oppo/2021/a95-5g-2021-dual-sim-td-lte-cn-128gb-pelm00.json b/data/smartphone/oppo/2021/a95-5g-2021-dual-sim-td-lte-cn-128gb-pelm00.json new file mode 100644 index 00000000000..3d28ec21f28 --- /dev/null +++ b/data/smartphone/oppo/2021/a95-5g-2021-dual-sim-td-lte-cn-128gb-pelm00.json @@ -0,0 +1,43 @@ +{ + "slug": "a95-5g-2021-dual-sim-td-lte-cn-128gb-pelm00", + "name": "A95 5G 2021 Dual SIM TD-LTE CN 128GB PELM00", + "brand": "oppo", + "soc": "dimensity-800", + "release_date": "2021-05-01", + "ram_gb": 8.0, + "battery_mah": 4310, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/a95-5g-2021-dual-sim-td-lte-cn-256gb-pelm00.json b/data/smartphone/oppo/2021/a95-5g-2021-dual-sim-td-lte-cn-256gb-pelm00.json new file mode 100644 index 00000000000..21837218dcb --- /dev/null +++ b/data/smartphone/oppo/2021/a95-5g-2021-dual-sim-td-lte-cn-256gb-pelm00.json @@ -0,0 +1,43 @@ +{ + "slug": "a95-5g-2021-dual-sim-td-lte-cn-256gb-pelm00", + "name": "A95 5G 2021 Dual SIM TD-LTE CN 256GB PELM00", + "brand": "oppo", + "soc": "dimensity-800", + "release_date": "2021-05-01", + "ram_gb": 8.0, + "battery_mah": 4310, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/f19-2021-dual-sim-td-lte-v1-in-id-128gb-cph2219-a74.json b/data/smartphone/oppo/2021/f19-2021-dual-sim-td-lte-v1-in-id-128gb-cph2219-a74.json new file mode 100644 index 00000000000..b0fdbfe0eee --- /dev/null +++ b/data/smartphone/oppo/2021/f19-2021-dual-sim-td-lte-v1-in-id-128gb-cph2219-a74.json @@ -0,0 +1,43 @@ +{ + "slug": "f19-2021-dual-sim-td-lte-v1-in-id-128gb-cph2219-a74", + "name": "F19 2021 Dual SIM TD-LTE V1 IN ID 128GB CPH2219 / A74", + "brand": "oppo", + "soc": "snapdragon-662", + "release_date": "2021-04-02", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Indonesia , Sri Lanka", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2021/f19-pro-2021-dual-sim-td-lte-in-v1-128gb-cph2285.json b/data/smartphone/oppo/2021/f19-pro-2021-dual-sim-td-lte-in-v1-128gb-cph2285.json new file mode 100644 index 00000000000..5f96f73ad9a --- /dev/null +++ b/data/smartphone/oppo/2021/f19-pro-2021-dual-sim-td-lte-in-v1-128gb-cph2285.json @@ -0,0 +1,43 @@ +{ + "slug": "f19-pro-2021-dual-sim-td-lte-in-v1-128gb-cph2285", + "name": "F19 Pro 2021 Dual SIM TD-LTE IN V1 128GB CPH2285", + "brand": "oppo", + "soc": "helio-p95", + "release_date": "2021-03-01", + "ram_gb": 8.0, + "battery_mah": 4310, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/f19-pro-2021-dual-sim-td-lte-in-v1-256gb-cph2285.json b/data/smartphone/oppo/2021/f19-pro-2021-dual-sim-td-lte-in-v1-256gb-cph2285.json new file mode 100644 index 00000000000..6c0299e9ab1 --- /dev/null +++ b/data/smartphone/oppo/2021/f19-pro-2021-dual-sim-td-lte-in-v1-256gb-cph2285.json @@ -0,0 +1,43 @@ +{ + "slug": "f19-pro-2021-dual-sim-td-lte-in-v1-256gb-cph2285", + "name": "F19 Pro 2021 Dual SIM TD-LTE IN V1 256GB CPH2285", + "brand": "oppo", + "soc": "helio-p95", + "release_date": "2021-03-01", + "ram_gb": 8.0, + "battery_mah": 4310, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/f19-pro-5g-2021-dual-sim-td-lte-in-v1-128gb-cph2213.json b/data/smartphone/oppo/2021/f19-pro-5g-2021-dual-sim-td-lte-in-v1-128gb-cph2213.json new file mode 100644 index 00000000000..7477de23d7c --- /dev/null +++ b/data/smartphone/oppo/2021/f19-pro-5g-2021-dual-sim-td-lte-in-v1-128gb-cph2213.json @@ -0,0 +1,43 @@ +{ + "slug": "f19-pro-5g-2021-dual-sim-td-lte-in-v1-128gb-cph2213", + "name": "F19 Pro+ 5G 2021 Dual SIM TD-LTE IN V1 128GB CPH2213", + "brand": "oppo", + "soc": "dimensity-800", + "release_date": "2021-03-06", + "ram_gb": 8.0, + "battery_mah": 4310, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "charging_wired_w": 50, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/f19s-2021-dual-sim-td-lte-v1-in-128gb-cph2223.json b/data/smartphone/oppo/2021/f19s-2021-dual-sim-td-lte-v1-in-128gb-cph2223.json new file mode 100644 index 00000000000..9193751d68b --- /dev/null +++ b/data/smartphone/oppo/2021/f19s-2021-dual-sim-td-lte-v1-in-128gb-cph2223.json @@ -0,0 +1,43 @@ +{ + "slug": "f19s-2021-dual-sim-td-lte-v1-in-128gb-cph2223", + "name": "F19s 2021 Dual SIM TD-LTE V1 IN 128GB CPH2223", + "brand": "oppo", + "soc": "snapdragon-662", + "release_date": "2021-09-28", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/find-n-2021-5g-premium-edition-dual-sim-td-lte-cn-512gb-peum00.json b/data/smartphone/oppo/2021/find-n-2021-5g-premium-edition-dual-sim-td-lte-cn-512gb-peum00.json new file mode 100644 index 00000000000..98ffa2db670 --- /dev/null +++ b/data/smartphone/oppo/2021/find-n-2021-5g-premium-edition-dual-sim-td-lte-cn-512gb-peum00.json @@ -0,0 +1,43 @@ +{ + "slug": "find-n-2021-5g-premium-edition-dual-sim-td-lte-cn-512gb-peum00", + "name": "Find N 2021 5G Premium Edition Dual SIM TD-LTE CN 512GB PEUM00", + "brand": "oppo", + "soc": "snapdragon-888", + "release_date": "2021-12-16", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 275.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 7.1, + "resolution": "1920x1792", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 370 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/find-n-2021-5g-standard-edition-dual-sim-td-lte-cn-256gb-peum00.json b/data/smartphone/oppo/2021/find-n-2021-5g-standard-edition-dual-sim-td-lte-cn-256gb-peum00.json new file mode 100644 index 00000000000..79d58b09f10 --- /dev/null +++ b/data/smartphone/oppo/2021/find-n-2021-5g-standard-edition-dual-sim-td-lte-cn-256gb-peum00.json @@ -0,0 +1,43 @@ +{ + "slug": "find-n-2021-5g-standard-edition-dual-sim-td-lte-cn-256gb-peum00", + "name": "Find N 2021 5G Standard Edition Dual SIM TD-LTE CN 256GB PEUM00", + "brand": "oppo", + "soc": "snapdragon-888", + "release_date": "2021-12-16", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 275.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 7.1, + "resolution": "1920x1792", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 370 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/find-x3-pro-5g-global-dual-sim-td-lte-256gb-cph2173.json b/data/smartphone/oppo/2021/find-x3-pro-5g-global-dual-sim-td-lte-256gb-cph2173.json new file mode 100644 index 00000000000..9d4e9beedcb --- /dev/null +++ b/data/smartphone/oppo/2021/find-x3-pro-5g-global-dual-sim-td-lte-256gb-cph2173.json @@ -0,0 +1,43 @@ +{ + "slug": "find-x3-pro-5g-global-dual-sim-td-lte-256gb-cph2173", + "name": "Find X3 Pro 5G Global Dual SIM TD-LTE 256GB CPH2173", + "brand": "oppo", + "soc": "snapdragon-888", + "release_date": "2021-03-31", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1440x3216", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Bulgaria , Egypt , France , Germany , HK , India , Italy , Lebanon , Malaysia , Netherlands , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Slovenia , Spain , Sweden , Switzerland , Thailand , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2021/find-x3-pro-5g-global-td-lte-256gb-cph2173.json b/data/smartphone/oppo/2021/find-x3-pro-5g-global-td-lte-256gb-cph2173.json new file mode 100644 index 00000000000..78cdd73142a --- /dev/null +++ b/data/smartphone/oppo/2021/find-x3-pro-5g-global-td-lte-256gb-cph2173.json @@ -0,0 +1,44 @@ +{ + "slug": "find-x3-pro-5g-global-td-lte-256gb-cph2173", + "name": "Find X3 Pro 5G Global TD-LTE 256GB CPH2173", + "brand": "oppo", + "soc": "snapdragon-888", + "release_date": "2021-04-14", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1440x3216", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1038, + "market_countries": "Australia , Austria , Belgium , Bulgaria , France , Germany , Ireland , Italy , Japan , Netherlands , NZ , Poland , Portugal , Romania , Slovakia , Slovenia , Spain , Switzerland , Sweden , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/oppo/2021/find-x3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-peem00.json b/data/smartphone/oppo/2021/find-x3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-peem00.json new file mode 100644 index 00000000000..8c2b7c4cb03 --- /dev/null +++ b/data/smartphone/oppo/2021/find-x3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-peem00.json @@ -0,0 +1,43 @@ +{ + "slug": "find-x3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-peem00", + "name": "Find X3 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB PEEM00", + "brand": "oppo", + "soc": "snapdragon-888", + "release_date": "2021-03-18", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1440x3216", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/find-x3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-peem00.json b/data/smartphone/oppo/2021/find-x3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-peem00.json new file mode 100644 index 00000000000..56749280a94 --- /dev/null +++ b/data/smartphone/oppo/2021/find-x3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-peem00.json @@ -0,0 +1,43 @@ +{ + "slug": "find-x3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-peem00", + "name": "Find X3 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB PEEM00", + "brand": "oppo", + "soc": "snapdragon-888", + "release_date": "2021-03-18", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1440x3216", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/find-x3-pro-5g-td-lte-jp-256gb-opg03.json b/data/smartphone/oppo/2021/find-x3-pro-5g-td-lte-jp-256gb-opg03.json new file mode 100644 index 00000000000..e98168daef8 --- /dev/null +++ b/data/smartphone/oppo/2021/find-x3-pro-5g-td-lte-jp-256gb-opg03.json @@ -0,0 +1,43 @@ +{ + "slug": "find-x3-pro-5g-td-lte-jp-256gb-opg03", + "name": "Find X3 Pro 5G TD-LTE JP 256GB OPG03", + "brand": "oppo", + "soc": "snapdragon-888", + "release_date": "2021-06-29", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1440x3216", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/k9-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-peym00.json b/data/smartphone/oppo/2021/k9-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-peym00.json new file mode 100644 index 00000000000..4c0e8c08a74 --- /dev/null +++ b/data/smartphone/oppo/2021/k9-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-peym00.json @@ -0,0 +1,44 @@ +{ + "slug": "k9-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-peym00", + "name": "K9 Pro 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB PEYM00", + "brand": "oppo", + "soc": "dimensity-1200", + "release_date": "2021-09-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 60, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 2499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/k9-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-peym00.json b/data/smartphone/oppo/2021/k9-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-peym00.json new file mode 100644 index 00000000000..2492c889285 --- /dev/null +++ b/data/smartphone/oppo/2021/k9-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-peym00.json @@ -0,0 +1,44 @@ +{ + "slug": "k9-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-peym00", + "name": "K9 Pro 5G 2021 Standard Edition Dual SIM TD-LTE CN 128GB PEYM00", + "brand": "oppo", + "soc": "dimensity-1200", + "release_date": "2021-09-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 60, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 2199, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/k9x-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-pgcm10.json b/data/smartphone/oppo/2021/k9x-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-pgcm10.json new file mode 100644 index 00000000000..ceca99019a9 --- /dev/null +++ b/data/smartphone/oppo/2021/k9x-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-pgcm10.json @@ -0,0 +1,44 @@ +{ + "slug": "k9x-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-pgcm10", + "name": "K9x 5G 2021 Premium Edition Dual SIM TD-LTE CN 128GB PGCM10", + "brand": "oppo", + "soc": "dimensity-810", + "release_date": "2021-12-28", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.49, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 406 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/k9x-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pgcm10.json b/data/smartphone/oppo/2021/k9x-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pgcm10.json new file mode 100644 index 00000000000..c463c0aa3ab --- /dev/null +++ b/data/smartphone/oppo/2021/k9x-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pgcm10.json @@ -0,0 +1,44 @@ +{ + "slug": "k9x-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pgcm10", + "name": "K9x 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB PGCM10", + "brand": "oppo", + "soc": "dimensity-810", + "release_date": "2021-12-28", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.49, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 406 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1699, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/k9x-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-pgcm10.json b/data/smartphone/oppo/2021/k9x-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-pgcm10.json new file mode 100644 index 00000000000..f18622ea144 --- /dev/null +++ b/data/smartphone/oppo/2021/k9x-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-pgcm10.json @@ -0,0 +1,44 @@ +{ + "slug": "k9x-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-pgcm10", + "name": "K9x 5G 2021 Standard Edition Dual SIM TD-LTE CN 128GB PGCM10", + "brand": "oppo", + "soc": "dimensity-810", + "release_date": "2021-12-28", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.49, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 406 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1399, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/realme-8-5g-2021-dual-sim-td-lte-v1-apac-128gb-rmx3241.json b/data/smartphone/oppo/2021/realme-8-5g-2021-dual-sim-td-lte-v1-apac-128gb-rmx3241.json new file mode 100644 index 00000000000..3904cb27b8e --- /dev/null +++ b/data/smartphone/oppo/2021/realme-8-5g-2021-dual-sim-td-lte-v1-apac-128gb-rmx3241.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-8-5g-2021-dual-sim-td-lte-v1-apac-128gb-rmx3241", + "name": "Realme 8 5G 2021 Dual SIM TD-LTE V1 APAC 128GB RMX3241", + "brand": "oppo", + "soc": "dimensity-700", + "release_date": "2021-04-27", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 399, + "market_countries": "Bangladesh , India , Indonesia , Philippines , Singapore , Vietnam", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/oppo/2021/realme-8-5g-2021-dual-sim-td-lte-v1-apac-64gb-rmx3241.json b/data/smartphone/oppo/2021/realme-8-5g-2021-dual-sim-td-lte-v1-apac-64gb-rmx3241.json new file mode 100644 index 00000000000..ee6192564a1 --- /dev/null +++ b/data/smartphone/oppo/2021/realme-8-5g-2021-dual-sim-td-lte-v1-apac-64gb-rmx3241.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-8-5g-2021-dual-sim-td-lte-v1-apac-64gb-rmx3241", + "name": "Realme 8 5G 2021 Dual SIM TD-LTE V1 APAC 64GB RMX3241", + "brand": "oppo", + "soc": "dimensity-700", + "release_date": "2021-04-27", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Russia", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/oppo/2021/realme-8-5g-2021-global-dual-sim-td-lte-v2-128gb-rmx3241.json b/data/smartphone/oppo/2021/realme-8-5g-2021-global-dual-sim-td-lte-v2-128gb-rmx3241.json new file mode 100644 index 00000000000..fed29066a43 --- /dev/null +++ b/data/smartphone/oppo/2021/realme-8-5g-2021-global-dual-sim-td-lte-v2-128gb-rmx3241.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-8-5g-2021-global-dual-sim-td-lte-v2-128gb-rmx3241", + "name": "Realme 8 5G 2021 Global Dual SIM TD-LTE V2 128GB RMX3241", + "brand": "oppo", + "soc": "dimensity-700", + "release_date": "2021-04-27", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Chile , Czech , France , Italy , Malaysia , Peru , Poland , Russia , Spain , Thailand , UK", + "market_regions": "Asia , Eastern Europe , Europe , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2021/realme-8-5g-2021-global-dual-sim-td-lte-v2-64gb-rmx3241.json b/data/smartphone/oppo/2021/realme-8-5g-2021-global-dual-sim-td-lte-v2-64gb-rmx3241.json new file mode 100644 index 00000000000..4b466d9e4d7 --- /dev/null +++ b/data/smartphone/oppo/2021/realme-8-5g-2021-global-dual-sim-td-lte-v2-64gb-rmx3241.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-8-5g-2021-global-dual-sim-td-lte-v2-64gb-rmx3241", + "name": "Realme 8 5G 2021 Global Dual SIM TD-LTE V2 64GB RMX3241", + "brand": "oppo", + "soc": "dimensity-700", + "release_date": "2021-04-27", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 199, + "market_countries": "Belgium , Chile , Czech , France , Italy , Malaysia , Netherlands , Peru , Poland , Portugal , Romania , Spain , Taiwan , Thailand , UK", + "market_regions": "Asia , Eastern Europe , Europe , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2021/realme-8s-5g-2021-premium-edition-dual-sim-td-lte-in-128gb-rmx3381.json b/data/smartphone/oppo/2021/realme-8s-5g-2021-premium-edition-dual-sim-td-lte-in-128gb-rmx3381.json new file mode 100644 index 00000000000..c16dd328e73 --- /dev/null +++ b/data/smartphone/oppo/2021/realme-8s-5g-2021-premium-edition-dual-sim-td-lte-in-128gb-rmx3381.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-8s-5g-2021-premium-edition-dual-sim-td-lte-in-128gb-rmx3381", + "name": "Realme 8s 5G 2021 Premium Edition Dual SIM TD-LTE IN 128GB RMX3381", + "brand": "oppo", + "soc": "dimensity-810", + "release_date": "2021-09-13", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/realme-8s-5g-2021-standard-edition-dual-sim-td-lte-in-128gb-rmx3381.json b/data/smartphone/oppo/2021/realme-8s-5g-2021-standard-edition-dual-sim-td-lte-in-128gb-rmx3381.json new file mode 100644 index 00000000000..a38e8a3a1eb --- /dev/null +++ b/data/smartphone/oppo/2021/realme-8s-5g-2021-standard-edition-dual-sim-td-lte-in-128gb-rmx3381.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-8s-5g-2021-standard-edition-dual-sim-td-lte-in-128gb-rmx3381", + "name": "Realme 8s 5G 2021 Standard Edition Dual SIM TD-LTE IN 128GB RMX3381", + "brand": "oppo", + "soc": "dimensity-810", + "release_date": "2021-09-13", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/realme-c20-2021-dual-sim-td-lte-v1-in-32gb-rmx3063.json b/data/smartphone/oppo/2021/realme-c20-2021-dual-sim-td-lte-v1-in-32gb-rmx3063.json new file mode 100644 index 00000000000..5519f9ed939 --- /dev/null +++ b/data/smartphone/oppo/2021/realme-c20-2021-dual-sim-td-lte-v1-in-32gb-rmx3063.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-c20-2021-dual-sim-td-lte-v1-in-32gb-rmx3063", + "name": "Realme C20 2021 Dual SIM TD-LTE V1 IN 32GB RMX3063", + "brand": "oppo", + "soc": "helio-g35", + "release_date": "2021-04-09", + "ram_gb": 2.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/realme-c20-2021-dual-sim-td-lte-v2-id-vn-bd-32gb-rmx3061-c20a.json b/data/smartphone/oppo/2021/realme-c20-2021-dual-sim-td-lte-v2-id-vn-bd-32gb-rmx3061-c20a.json new file mode 100644 index 00000000000..6b4592a83ed --- /dev/null +++ b/data/smartphone/oppo/2021/realme-c20-2021-dual-sim-td-lte-v2-id-vn-bd-32gb-rmx3061-c20a.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-c20-2021-dual-sim-td-lte-v2-id-vn-bd-32gb-rmx3061-c20a", + "name": "Realme C20 2021 Dual SIM TD-LTE V2 ID VN BD 32GB RMX3061 / C20A", + "brand": "oppo", + "soc": "helio-g35", + "release_date": "2021-01-23", + "ram_gb": 2.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , Indonesia , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2021/realme-c20-2021-dual-sim-td-lte-v3-latam-32gb-rmx3061-c20a.json b/data/smartphone/oppo/2021/realme-c20-2021-dual-sim-td-lte-v3-latam-32gb-rmx3061-c20a.json new file mode 100644 index 00000000000..c0a8fe0f6ae --- /dev/null +++ b/data/smartphone/oppo/2021/realme-c20-2021-dual-sim-td-lte-v3-latam-32gb-rmx3061-c20a.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-c20-2021-dual-sim-td-lte-v3-latam-32gb-rmx3061-c20a", + "name": "Realme C20 2021 Dual SIM TD-LTE V3 LATAM 32GB RMX3061 / C20A", + "brand": "oppo", + "soc": "helio-g35", + "release_date": "2021-11-01", + "ram_gb": 2.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Bolivia , Colombia , Peru", + "market_regions": "South America" +} diff --git a/data/smartphone/oppo/2021/realme-c21-2021-global-dual-sim-td-lte-v2-32gb-rmx3201.json b/data/smartphone/oppo/2021/realme-c21-2021-global-dual-sim-td-lte-v2-32gb-rmx3201.json new file mode 100644 index 00000000000..1a4cff200c0 --- /dev/null +++ b/data/smartphone/oppo/2021/realme-c21-2021-global-dual-sim-td-lte-v2-32gb-rmx3201.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-c21-2021-global-dual-sim-td-lte-v2-32gb-rmx3201", + "name": "Realme C21 2021 Global Dual SIM TD-LTE V2 32GB RMX3201", + "brand": "oppo", + "soc": "helio-g35", + "release_date": "2021-03-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 479, + "market_countries": "India , Indonesia , Malaysia , Pakistan , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2021/realme-c21-2021-global-dual-sim-td-lte-v2-64gb-rmx3201.json b/data/smartphone/oppo/2021/realme-c21-2021-global-dual-sim-td-lte-v2-64gb-rmx3201.json new file mode 100644 index 00000000000..0fae5ed6f3f --- /dev/null +++ b/data/smartphone/oppo/2021/realme-c21-2021-global-dual-sim-td-lte-v2-64gb-rmx3201.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-c21-2021-global-dual-sim-td-lte-v2-64gb-rmx3201", + "name": "Realme C21 2021 Global Dual SIM TD-LTE V2 64GB RMX3201", + "brand": "oppo", + "soc": "helio-g35", + "release_date": "2021-03-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 139, + "market_countries": "Bangladesh , Czech , France , India , Indonesia , Italy , Malaysia , Nepal , Pakistan , Poland , Russia , Singapore , Spain , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2021/realme-c21-2021-td-lte-latam-v3-64gb-rmx3203.json b/data/smartphone/oppo/2021/realme-c21-2021-td-lte-latam-v3-64gb-rmx3203.json new file mode 100644 index 00000000000..c2a1fcb9399 --- /dev/null +++ b/data/smartphone/oppo/2021/realme-c21-2021-td-lte-latam-v3-64gb-rmx3203.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-c21-2021-td-lte-latam-v3-64gb-rmx3203", + "name": "Realme C21 2021 TD-LTE LATAM V3 64GB RMX3203", + "brand": "oppo", + "soc": "helio-g35", + "release_date": "2021-04-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 3999, + "market_countries": "Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/oppo/2021/realme-c21y-2021-dual-sim-td-lte-v2-apac-32gb-rmx3261.json b/data/smartphone/oppo/2021/realme-c21y-2021-dual-sim-td-lte-v2-apac-32gb-rmx3261.json new file mode 100644 index 00000000000..b2a8eb71d9a --- /dev/null +++ b/data/smartphone/oppo/2021/realme-c21y-2021-dual-sim-td-lte-v2-apac-32gb-rmx3261.json @@ -0,0 +1,41 @@ +{ + "slug": "realme-c21y-2021-dual-sim-td-lte-v2-apac-32gb-rmx3261", + "name": "Realme C21Y 2021 Dual SIM TD-LTE V2 APAC 32GB RMX3261", + "brand": "oppo", + "soc": "tiger-t610", + "release_date": "2021-07-04", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Indonesia , Malaysia , Philippines , Sri Lanka , Vietnam", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/oppo/2021/realme-c21y-2021-dual-sim-td-lte-v2-apac-64gb-rmx3261.json b/data/smartphone/oppo/2021/realme-c21y-2021-dual-sim-td-lte-v2-apac-64gb-rmx3261.json new file mode 100644 index 00000000000..5923b71a355 --- /dev/null +++ b/data/smartphone/oppo/2021/realme-c21y-2021-dual-sim-td-lte-v2-apac-64gb-rmx3261.json @@ -0,0 +1,41 @@ +{ + "slug": "realme-c21y-2021-dual-sim-td-lte-v2-apac-64gb-rmx3261", + "name": "Realme C21Y 2021 Dual SIM TD-LTE V2 APAC 64GB RMX3261", + "brand": "oppo", + "soc": "tiger-t610", + "release_date": "2021-07-04", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Indonesia , Malaysia , Philippines , Vietnam", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/oppo/2021/realme-c25-dual-sim-td-lte-v1-id-pk-th-ph-64gb-rmx31391.json b/data/smartphone/oppo/2021/realme-c25-dual-sim-td-lte-v1-id-pk-th-ph-64gb-rmx31391.json new file mode 100644 index 00000000000..c9318a985cf --- /dev/null +++ b/data/smartphone/oppo/2021/realme-c25-dual-sim-td-lte-v1-id-pk-th-ph-64gb-rmx31391.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-c25-dual-sim-td-lte-v1-id-pk-th-ph-64gb-rmx31391", + "name": "Realme C25 Dual SIM TD-LTE V1 ID PK TH PH 64GB RMX31391", + "brand": "oppo", + "soc": "helio-g70", + "release_date": "2021-03-01", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , Cambodia , Indonesia , Pakistan , Philippines , Thailand", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/oppo/2021/realme-c25-dual-sim-td-lte-v1-id-pk-vn-ph-128gb-rmx31391.json b/data/smartphone/oppo/2021/realme-c25-dual-sim-td-lte-v1-id-pk-vn-ph-128gb-rmx31391.json new file mode 100644 index 00000000000..2971c41e042 --- /dev/null +++ b/data/smartphone/oppo/2021/realme-c25-dual-sim-td-lte-v1-id-pk-vn-ph-128gb-rmx31391.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-c25-dual-sim-td-lte-v1-id-pk-vn-ph-128gb-rmx31391", + "name": "Realme C25 Dual SIM TD-LTE V1 ID PK VN PH 128GB RMX31391", + "brand": "oppo", + "soc": "helio-g70", + "release_date": "2021-03-01", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , Indonesia , Pakistan , Philippines , Vietnam", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/oppo/2021/realme-c25-dual-sim-td-lte-v1-in-128gb-rmx3193.json b/data/smartphone/oppo/2021/realme-c25-dual-sim-td-lte-v1-in-128gb-rmx3193.json new file mode 100644 index 00000000000..6bf9781375d --- /dev/null +++ b/data/smartphone/oppo/2021/realme-c25-dual-sim-td-lte-v1-in-128gb-rmx3193.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-c25-dual-sim-td-lte-v1-in-128gb-rmx3193", + "name": "Realme C25 Dual SIM TD-LTE V1 IN 128GB RMX3193", + "brand": "oppo", + "soc": "helio-g70", + "release_date": "2021-03-01", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/realme-c25-dual-sim-td-lte-v1-in-64gb-rmx3193.json b/data/smartphone/oppo/2021/realme-c25-dual-sim-td-lte-v1-in-64gb-rmx3193.json new file mode 100644 index 00000000000..e85409d66fe --- /dev/null +++ b/data/smartphone/oppo/2021/realme-c25-dual-sim-td-lte-v1-in-64gb-rmx3193.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-c25-dual-sim-td-lte-v1-in-64gb-rmx3193", + "name": "Realme C25 Dual SIM TD-LTE V1 IN 64GB RMX3193", + "brand": "oppo", + "soc": "helio-g70", + "release_date": "2021-03-01", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/realme-c25s-2021-dual-sim-td-lte-v1-in-128gb-rmx3197.json b/data/smartphone/oppo/2021/realme-c25s-2021-dual-sim-td-lte-v1-in-128gb-rmx3197.json new file mode 100644 index 00000000000..80d8d4c4700 --- /dev/null +++ b/data/smartphone/oppo/2021/realme-c25s-2021-dual-sim-td-lte-v1-in-128gb-rmx3197.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-c25s-2021-dual-sim-td-lte-v1-in-128gb-rmx3197", + "name": "Realme C25s 2021 Dual SIM TD-LTE V1 IN 128GB RMX3197", + "brand": "oppo", + "soc": "helio-g85", + "release_date": "2021-06-01", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 209.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/realme-c25s-2021-dual-sim-td-lte-v1-in-64gb-rmx3197.json b/data/smartphone/oppo/2021/realme-c25s-2021-dual-sim-td-lte-v1-in-64gb-rmx3197.json new file mode 100644 index 00000000000..1d5f93e54e9 --- /dev/null +++ b/data/smartphone/oppo/2021/realme-c25s-2021-dual-sim-td-lte-v1-in-64gb-rmx3197.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-c25s-2021-dual-sim-td-lte-v1-in-64gb-rmx3197", + "name": "Realme C25s 2021 Dual SIM TD-LTE V1 IN 64GB RMX3197", + "brand": "oppo", + "soc": "helio-g85", + "release_date": "2021-06-01", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 209.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/realme-c25s-2021-dual-sim-td-lte-v2-apac-128gb-rmx3195.json b/data/smartphone/oppo/2021/realme-c25s-2021-dual-sim-td-lte-v2-apac-128gb-rmx3195.json new file mode 100644 index 00000000000..d8eccbdebda --- /dev/null +++ b/data/smartphone/oppo/2021/realme-c25s-2021-dual-sim-td-lte-v2-apac-128gb-rmx3195.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-c25s-2021-dual-sim-td-lte-v2-apac-128gb-rmx3195", + "name": "Realme C25s 2021 Dual SIM TD-LTE V2 APAC 128GB RMX3195", + "brand": "oppo", + "soc": "helio-g85", + "release_date": "2021-06-01", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 699, + "market_countries": "Bangladesh , Cambodia , Malaysia , Myanmar , Pakistan , Philippines , Vietnam", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/oppo/2021/realme-c25s-2021-dual-sim-td-lte-v2-apac-64gb-rmx3195.json b/data/smartphone/oppo/2021/realme-c25s-2021-dual-sim-td-lte-v2-apac-64gb-rmx3195.json new file mode 100644 index 00000000000..fe316cd2633 --- /dev/null +++ b/data/smartphone/oppo/2021/realme-c25s-2021-dual-sim-td-lte-v2-apac-64gb-rmx3195.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-c25s-2021-dual-sim-td-lte-v2-apac-64gb-rmx3195", + "name": "Realme C25s 2021 Dual SIM TD-LTE V2 APAC 64GB RMX3195", + "brand": "oppo", + "soc": "helio-g85", + "release_date": "2021-06-01", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 229, + "market_countries": "Bangladesh , Cambodia , Singapore", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2021/realme-gt-5g-2021-leather-edition-dual-sim-td-lte-cn-256gb-rmx2202.json b/data/smartphone/oppo/2021/realme-gt-5g-2021-leather-edition-dual-sim-td-lte-cn-256gb-rmx2202.json new file mode 100644 index 00000000000..5dd212e68c6 --- /dev/null +++ b/data/smartphone/oppo/2021/realme-gt-5g-2021-leather-edition-dual-sim-td-lte-cn-256gb-rmx2202.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-gt-5g-2021-leather-edition-dual-sim-td-lte-cn-256gb-rmx2202", + "name": "Realme GT 5G 2021 Leather Edition Dual SIM TD-LTE CN 256GB RMX2202", + "brand": "oppo", + "soc": "snapdragon-888", + "release_date": "2021-03-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 186.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3399, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/realme-gt-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-rmx2202.json b/data/smartphone/oppo/2021/realme-gt-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-rmx2202.json new file mode 100644 index 00000000000..55d658ffef1 --- /dev/null +++ b/data/smartphone/oppo/2021/realme-gt-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-rmx2202.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-gt-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-rmx2202", + "name": "Realme GT 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB RMX2202", + "brand": "oppo", + "soc": "snapdragon-888", + "release_date": "2021-03-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3399, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/realme-gt-5g-2021-premium-edition-global-dual-sim-td-lte-256gb-rmx2202.json b/data/smartphone/oppo/2021/realme-gt-5g-2021-premium-edition-global-dual-sim-td-lte-256gb-rmx2202.json new file mode 100644 index 00000000000..49d85430181 --- /dev/null +++ b/data/smartphone/oppo/2021/realme-gt-5g-2021-premium-edition-global-dual-sim-td-lte-256gb-rmx2202.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-gt-5g-2021-premium-edition-global-dual-sim-td-lte-256gb-rmx2202", + "name": "Realme GT 5G 2021 Premium Edition Global Dual SIM TD-LTE 256GB RMX2202", + "brand": "oppo", + "soc": "snapdragon-888", + "release_date": "2021-06-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 599, + "market_countries": "Czech , Germany , India , Poland , Portugal , Russia , Spain , Turkey , UK", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2021/realme-gt-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-rmx2202.json b/data/smartphone/oppo/2021/realme-gt-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-rmx2202.json new file mode 100644 index 00000000000..a7516ab0761 --- /dev/null +++ b/data/smartphone/oppo/2021/realme-gt-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-rmx2202.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-gt-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-rmx2202", + "name": "Realme GT 5G 2021 Standard Edition Dual SIM TD-LTE CN 256GB RMX2202", + "brand": "oppo", + "soc": "snapdragon-888", + "release_date": "2021-03-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3099, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/realme-gt-5g-2021-standard-edition-global-dual-sim-td-lte-128gb-rmx2202.json b/data/smartphone/oppo/2021/realme-gt-5g-2021-standard-edition-global-dual-sim-td-lte-128gb-rmx2202.json new file mode 100644 index 00000000000..38a15aa1e77 --- /dev/null +++ b/data/smartphone/oppo/2021/realme-gt-5g-2021-standard-edition-global-dual-sim-td-lte-128gb-rmx2202.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-gt-5g-2021-standard-edition-global-dual-sim-td-lte-128gb-rmx2202", + "name": "Realme GT 5G 2021 Standard Edition Global Dual SIM TD-LTE 128GB RMX2202", + "brand": "oppo", + "soc": "snapdragon-888", + "release_date": "2021-06-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 499, + "market_countries": "Czech , Germany , India , Poland , Portugal , Russia , Spain , Turkey , UK", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2021/realme-gt-master-explorer-edition-5g-dual-sim-td-lte-cn-256gb-rmx3366.json b/data/smartphone/oppo/2021/realme-gt-master-explorer-edition-5g-dual-sim-td-lte-cn-256gb-rmx3366.json new file mode 100644 index 00000000000..7b4bed3605f --- /dev/null +++ b/data/smartphone/oppo/2021/realme-gt-master-explorer-edition-5g-dual-sim-td-lte-cn-256gb-rmx3366.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-gt-master-explorer-edition-5g-dual-sim-td-lte-cn-256gb-rmx3366", + "name": "Realme GT Master Explorer Edition 5G Dual SIM TD-LTE CN 256GB RMX3366", + "brand": "oppo", + "soc": "snapdragon-870", + "release_date": "2021-07-01", + "ram_gb": 12.0, + "battery_mah": 4400, + "weight_g": 183.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3199, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/realme-gt-neo-2-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx3370.json b/data/smartphone/oppo/2021/realme-gt-neo-2-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx3370.json new file mode 100644 index 00000000000..baefd01e922 --- /dev/null +++ b/data/smartphone/oppo/2021/realme-gt-neo-2-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx3370.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-gt-neo-2-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx3370", + "name": "Realme GT Neo 2 5G Premium Edition Dual SIM TD-LTE CN 256GB RMX3370", + "brand": "oppo", + "soc": "snapdragon-870", + "release_date": "2021-09-01", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 199.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 2999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/realme-gt-neo-2-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx3370.json b/data/smartphone/oppo/2021/realme-gt-neo-2-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx3370.json new file mode 100644 index 00000000000..a7b41d711f2 --- /dev/null +++ b/data/smartphone/oppo/2021/realme-gt-neo-2-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx3370.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-gt-neo-2-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx3370", + "name": "Realme GT Neo 2 5G Standard Edition Dual SIM TD-LTE CN 128GB RMX3370", + "brand": "oppo", + "soc": "snapdragon-870", + "release_date": "2021-09-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 199.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 2499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/realme-gt-neo-2-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx3370.json b/data/smartphone/oppo/2021/realme-gt-neo-2-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx3370.json new file mode 100644 index 00000000000..79b33060faf --- /dev/null +++ b/data/smartphone/oppo/2021/realme-gt-neo-2-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx3370.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-gt-neo-2-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx3370", + "name": "Realme GT Neo 2 5G Standard Edition Dual SIM TD-LTE CN 256GB RMX3370", + "brand": "oppo", + "soc": "snapdragon-870", + "release_date": "2021-09-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 199.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 2699, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/realme-gt-neo-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-rmx3031.json b/data/smartphone/oppo/2021/realme-gt-neo-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-rmx3031.json new file mode 100644 index 00000000000..334f4f27c40 --- /dev/null +++ b/data/smartphone/oppo/2021/realme-gt-neo-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-rmx3031.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-gt-neo-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-rmx3031", + "name": "Realme GT Neo 5G 2021 Premium Edition Dual SIM TD-LTE CN 128GB RMX3031", + "brand": "oppo", + "soc": "dimensity-1200", + "release_date": "2021-04-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 50, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/realme-gt-neo-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-rmx3031.json b/data/smartphone/oppo/2021/realme-gt-neo-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-rmx3031.json new file mode 100644 index 00000000000..3f1832aa136 --- /dev/null +++ b/data/smartphone/oppo/2021/realme-gt-neo-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-rmx3031.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-gt-neo-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-rmx3031", + "name": "Realme GT Neo 5G 2021 Standard Edition Dual SIM TD-LTE CN 128GB RMX3031", + "brand": "oppo", + "soc": "dimensity-1200", + "release_date": "2021-04-09", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 50, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1799, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/realme-gt-neo-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-rmx3031.json b/data/smartphone/oppo/2021/realme-gt-neo-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-rmx3031.json new file mode 100644 index 00000000000..dc334139452 --- /dev/null +++ b/data/smartphone/oppo/2021/realme-gt-neo-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-rmx3031.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-gt-neo-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-rmx3031", + "name": "Realme GT Neo 5G 2021 Top Edition Dual SIM TD-LTE CN 256GB RMX3031", + "brand": "oppo", + "soc": "dimensity-1200", + "release_date": "2021-04-02", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 50, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2399, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/realme-gt-neo-flash-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-rmx3350.json b/data/smartphone/oppo/2021/realme-gt-neo-flash-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-rmx3350.json new file mode 100644 index 00000000000..ba4818e3ad4 --- /dev/null +++ b/data/smartphone/oppo/2021/realme-gt-neo-flash-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-rmx3350.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-gt-neo-flash-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-rmx3350", + "name": "Realme GT Neo Flash 5G 2021 Premium Edition Dual SIM TD-LTE CN 128GB RMX3350", + "brand": "oppo", + "soc": "dimensity-1200", + "release_date": "2021-06-08", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2099, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/realme-gt-neo-flash-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-rmx3350.json b/data/smartphone/oppo/2021/realme-gt-neo-flash-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-rmx3350.json new file mode 100644 index 00000000000..bb6906e8436 --- /dev/null +++ b/data/smartphone/oppo/2021/realme-gt-neo-flash-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-rmx3350.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-gt-neo-flash-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-rmx3350", + "name": "Realme GT Neo Flash 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB RMX3350", + "brand": "oppo", + "soc": "dimensity-1200", + "release_date": "2021-06-08", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2299, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/realme-gt-neo-flash-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-rmx3350.json b/data/smartphone/oppo/2021/realme-gt-neo-flash-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-rmx3350.json new file mode 100644 index 00000000000..2625df7fe8f --- /dev/null +++ b/data/smartphone/oppo/2021/realme-gt-neo-flash-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-rmx3350.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-gt-neo-flash-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-rmx3350", + "name": "Realme GT Neo Flash 5G 2021 Top Edition Dual SIM TD-LTE CN 256GB RMX3350", + "brand": "oppo", + "soc": "dimensity-1200", + "release_date": "2021-06-08", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 186.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/realme-narzo-30-5g-2021-premium-edition-dual-sim-td-lte-in-128gb-rmx3242.json b/data/smartphone/oppo/2021/realme-narzo-30-5g-2021-premium-edition-dual-sim-td-lte-in-128gb-rmx3242.json new file mode 100644 index 00000000000..88cc6b5519a --- /dev/null +++ b/data/smartphone/oppo/2021/realme-narzo-30-5g-2021-premium-edition-dual-sim-td-lte-in-128gb-rmx3242.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-narzo-30-5g-2021-premium-edition-dual-sim-td-lte-in-128gb-rmx3242", + "name": "Realme Narzo 30 5G 2021 Premium Edition Dual SIM TD-LTE IN 128GB RMX3242", + "brand": "oppo", + "soc": "dimensity-700", + "release_date": "2021-06-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/realme-narzo-30-5g-2021-standard-edition-dual-sim-td-lte-in-64gb-rmx3242.json b/data/smartphone/oppo/2021/realme-narzo-30-5g-2021-standard-edition-dual-sim-td-lte-in-64gb-rmx3242.json new file mode 100644 index 00000000000..03fb8b2e4ba --- /dev/null +++ b/data/smartphone/oppo/2021/realme-narzo-30-5g-2021-standard-edition-dual-sim-td-lte-in-64gb-rmx3242.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-narzo-30-5g-2021-standard-edition-dual-sim-td-lte-in-64gb-rmx3242", + "name": "Realme Narzo 30 5G 2021 Standard Edition Dual SIM TD-LTE IN 64GB RMX3242", + "brand": "oppo", + "soc": "dimensity-700", + "release_date": "2021-06-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/realme-narzo-30-5g-2021-standard-edition-global-dual-sim-td-lte-128gb-rmx3242.json b/data/smartphone/oppo/2021/realme-narzo-30-5g-2021-standard-edition-global-dual-sim-td-lte-128gb-rmx3242.json new file mode 100644 index 00000000000..268e7c040f7 --- /dev/null +++ b/data/smartphone/oppo/2021/realme-narzo-30-5g-2021-standard-edition-global-dual-sim-td-lte-128gb-rmx3242.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-narzo-30-5g-2021-standard-edition-global-dual-sim-td-lte-128gb-rmx3242", + "name": "Realme Narzo 30 5G 2021 Standard Edition Global Dual SIM TD-LTE 128GB RMX3242", + "brand": "oppo", + "soc": "dimensity-700", + "release_date": "2021-06-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 229, + "market_countries": "Bolivia , Colombia , Czech , France , Italy , Peru , Poland , Russia , Spain , Turkey , UK", + "market_regions": "Eastern Europe , Europe , South America , Western Europe" +} diff --git a/data/smartphone/oppo/2021/realme-narzo-50a-dual-sim-td-lte-in-id-128gb-rmx3430.json b/data/smartphone/oppo/2021/realme-narzo-50a-dual-sim-td-lte-in-id-128gb-rmx3430.json new file mode 100644 index 00000000000..99a86127f1f --- /dev/null +++ b/data/smartphone/oppo/2021/realme-narzo-50a-dual-sim-td-lte-in-id-128gb-rmx3430.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-narzo-50a-dual-sim-td-lte-in-id-128gb-rmx3430", + "name": "Realme Narzo 50A Dual SIM TD-LTE IN ID 128GB ‎RMX3430", + "brand": "oppo", + "soc": "helio-g85", + "release_date": "2021-09-24", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 207.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2021/realme-narzo-50a-dual-sim-td-lte-in-id-64gb-rmx3430.json b/data/smartphone/oppo/2021/realme-narzo-50a-dual-sim-td-lte-in-id-64gb-rmx3430.json new file mode 100644 index 00000000000..9f756d0d845 --- /dev/null +++ b/data/smartphone/oppo/2021/realme-narzo-50a-dual-sim-td-lte-in-id-64gb-rmx3430.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-narzo-50a-dual-sim-td-lte-in-id-64gb-rmx3430", + "name": "Realme Narzo 50A Dual SIM TD-LTE IN ID 64GB ‎RMX3430", + "brand": "oppo", + "soc": "helio-g85", + "release_date": "2021-09-24", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 207.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2021/realme-q3i-5g-premium-edition-2021-dual-sim-td-lte-cn-128gb-rmx3042.json b/data/smartphone/oppo/2021/realme-q3i-5g-premium-edition-2021-dual-sim-td-lte-cn-128gb-rmx3042.json new file mode 100644 index 00000000000..a8c1b56cb6e --- /dev/null +++ b/data/smartphone/oppo/2021/realme-q3i-5g-premium-edition-2021-dual-sim-td-lte-cn-128gb-rmx3042.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-q3i-5g-premium-edition-2021-dual-sim-td-lte-cn-128gb-rmx3042", + "name": "Realme Q3i 5G Premium Edition 2021 Dual SIM TD-LTE CN 128GB RMX3042", + "brand": "oppo", + "soc": "dimensity-700", + "release_date": "2021-04-22", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1199, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/realme-q3i-5g-standard-edition-2021-dual-sim-td-lte-cn-128gb-rmx3042.json b/data/smartphone/oppo/2021/realme-q3i-5g-standard-edition-2021-dual-sim-td-lte-cn-128gb-rmx3042.json new file mode 100644 index 00000000000..aaf928f5b92 --- /dev/null +++ b/data/smartphone/oppo/2021/realme-q3i-5g-standard-edition-2021-dual-sim-td-lte-cn-128gb-rmx3042.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-q3i-5g-standard-edition-2021-dual-sim-td-lte-cn-128gb-rmx3042", + "name": "Realme Q3i 5G Standard Edition 2021 Dual SIM TD-LTE CN 128GB RMX3042", + "brand": "oppo", + "soc": "dimensity-700", + "release_date": "2021-04-22", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1099, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/realme-v11-5g-2021-dual-sim-td-lte-cn-128gb-rmx3121.json b/data/smartphone/oppo/2021/realme-v11-5g-2021-dual-sim-td-lte-cn-128gb-rmx3121.json new file mode 100644 index 00000000000..39fb5164118 --- /dev/null +++ b/data/smartphone/oppo/2021/realme-v11-5g-2021-dual-sim-td-lte-cn-128gb-rmx3121.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-v11-5g-2021-dual-sim-td-lte-cn-128gb-rmx3121", + "name": "Realme V11 5G 2021 Dual SIM TD-LTE CN 128GB RMX3121", + "brand": "oppo", + "soc": "dimensity-700", + "release_date": "2021-02-06", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1199, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/realme-v13-5g-2021-dual-sim-td-lte-cn-128gb-rmx3041.json b/data/smartphone/oppo/2021/realme-v13-5g-2021-dual-sim-td-lte-cn-128gb-rmx3041.json new file mode 100644 index 00000000000..070ad6884fa --- /dev/null +++ b/data/smartphone/oppo/2021/realme-v13-5g-2021-dual-sim-td-lte-cn-128gb-rmx3041.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-v13-5g-2021-dual-sim-td-lte-cn-128gb-rmx3041", + "name": "Realme V13 5G 2021 Dual SIM TD-LTE CN 128GB RMX3041", + "brand": "oppo", + "soc": "dimensity-700", + "release_date": "2021-04-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1599, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/realme-v13-5g-2021-dual-sim-td-lte-cn-256gb-rmx3041.json b/data/smartphone/oppo/2021/realme-v13-5g-2021-dual-sim-td-lte-cn-256gb-rmx3041.json new file mode 100644 index 00000000000..cd997127c74 --- /dev/null +++ b/data/smartphone/oppo/2021/realme-v13-5g-2021-dual-sim-td-lte-cn-256gb-rmx3041.json @@ -0,0 +1,44 @@ +{ + "slug": "realme-v13-5g-2021-dual-sim-td-lte-cn-256gb-rmx3041", + "name": "Realme V13 5G 2021 Dual SIM TD-LTE CN 256GB RMX3041", + "brand": "oppo", + "soc": "dimensity-700", + "release_date": "2021-04-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1799, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/realme-v15-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx3092.json b/data/smartphone/oppo/2021/realme-v15-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx3092.json new file mode 100644 index 00000000000..09fce2ae173 --- /dev/null +++ b/data/smartphone/oppo/2021/realme-v15-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx3092.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-v15-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx3092", + "name": "Realme V15 5G Premium Edition Dual SIM TD-LTE CN 128GB RMX3092", + "brand": "oppo", + "soc": "dimensity-800", + "release_date": "2021-01-14", + "ram_gb": 8.0, + "battery_mah": 4230, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 50, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/realme-v15-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx3092.json b/data/smartphone/oppo/2021/realme-v15-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx3092.json new file mode 100644 index 00000000000..a4c615fa3f4 --- /dev/null +++ b/data/smartphone/oppo/2021/realme-v15-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx3092.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-v15-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx3092", + "name": "Realme V15 5G Standard Edition Dual SIM TD-LTE CN 128GB RMX3092", + "brand": "oppo", + "soc": "dimensity-800", + "release_date": "2021-01-14", + "ram_gb": 6.0, + "battery_mah": 4230, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 50, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/realme-x7-max-5g-2021-premium-edition-dual-sim-td-lte-in-128gb.json b/data/smartphone/oppo/2021/realme-x7-max-5g-2021-premium-edition-dual-sim-td-lte-in-128gb.json new file mode 100644 index 00000000000..42fe32859d8 --- /dev/null +++ b/data/smartphone/oppo/2021/realme-x7-max-5g-2021-premium-edition-dual-sim-td-lte-in-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-x7-max-5g-2021-premium-edition-dual-sim-td-lte-in-128gb", + "name": "Realme X7 Max 5G 2021 Premium Edition Dual SIM TD-LTE IN 128GB", + "brand": "oppo", + "soc": "dimensity-1200", + "release_date": "2021-06-02", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/realme-x7-max-5g-2021-top-edition-dual-sim-td-lte-in-256gb-rmx3031.json b/data/smartphone/oppo/2021/realme-x7-max-5g-2021-top-edition-dual-sim-td-lte-in-256gb-rmx3031.json new file mode 100644 index 00000000000..100ff209bdd --- /dev/null +++ b/data/smartphone/oppo/2021/realme-x7-max-5g-2021-top-edition-dual-sim-td-lte-in-256gb-rmx3031.json @@ -0,0 +1,43 @@ +{ + "slug": "realme-x7-max-5g-2021-top-edition-dual-sim-td-lte-in-256gb-rmx3031", + "name": "Realme X7 Max 5G 2021 Top Edition Dual SIM TD-LTE IN 256GB RMX3031", + "brand": "oppo", + "soc": "dimensity-1200", + "release_date": "2021-06-02", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/reno-5f-2021-dual-sim-td-lte-v1-id-128gb-cph2217.json b/data/smartphone/oppo/2021/reno-5f-2021-dual-sim-td-lte-v1-id-128gb-cph2217.json new file mode 100644 index 00000000000..1682c880770 --- /dev/null +++ b/data/smartphone/oppo/2021/reno-5f-2021-dual-sim-td-lte-v1-id-128gb-cph2217.json @@ -0,0 +1,43 @@ +{ + "slug": "reno-5f-2021-dual-sim-td-lte-v1-id-128gb-cph2217", + "name": "Reno 5F 2021 Dual SIM TD-LTE V1 ID 128GB CPH2217", + "brand": "oppo", + "soc": "helio-p95", + "release_date": "2021-03-17", + "ram_gb": 8.0, + "battery_mah": 4310, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Cambodia , Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2021/reno-5f-2021-dual-sim-td-lte-v2-my-ke-128gb-cph2217.json b/data/smartphone/oppo/2021/reno-5f-2021-dual-sim-td-lte-v2-my-ke-128gb-cph2217.json new file mode 100644 index 00000000000..2f7d52dfaa0 --- /dev/null +++ b/data/smartphone/oppo/2021/reno-5f-2021-dual-sim-td-lte-v2-my-ke-128gb-cph2217.json @@ -0,0 +1,44 @@ +{ + "slug": "reno-5f-2021-dual-sim-td-lte-v2-my-ke-128gb-cph2217", + "name": "Reno 5F 2021 Dual SIM TD-LTE V2 MY KE 128GB CPH2217", + "brand": "oppo", + "soc": "helio-p95", + "release_date": "2021-03-17", + "ram_gb": 8.0, + "battery_mah": 4310, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1199, + "market_countries": "Kenya , Malaysia", + "market_regions": "Africa , Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2021/reno-5z-5g-2021-dual-sim-td-lte-eu-v1-128gb-cph2211.json b/data/smartphone/oppo/2021/reno-5z-5g-2021-dual-sim-td-lte-eu-v1-128gb-cph2211.json new file mode 100644 index 00000000000..60df9bad655 --- /dev/null +++ b/data/smartphone/oppo/2021/reno-5z-5g-2021-dual-sim-td-lte-eu-v1-128gb-cph2211.json @@ -0,0 +1,44 @@ +{ + "slug": "reno-5z-5g-2021-dual-sim-td-lte-eu-v1-128gb-cph2211", + "name": "Reno 5Z 5G 2021 Dual SIM TD-LTE EU V1 128GB CPH2211", + "brand": "oppo", + "soc": "dimensity-800", + "release_date": "2021-06-01", + "ram_gb": 8.0, + "battery_mah": 4310, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "charging_wired_w": 50, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1799, + "market_countries": "Czech , Hungary , Poland , Slovakia", + "market_regions": "Eastern Europe , Europe" +} diff --git a/data/smartphone/oppo/2021/reno-5z-5g-2021-global-dual-sim-td-lte-v2-128gb-cph2211-a94-5g.json b/data/smartphone/oppo/2021/reno-5z-5g-2021-global-dual-sim-td-lte-v2-128gb-cph2211-a94-5g.json new file mode 100644 index 00000000000..d9e6c2f3b3f --- /dev/null +++ b/data/smartphone/oppo/2021/reno-5z-5g-2021-global-dual-sim-td-lte-v2-128gb-cph2211-a94-5g.json @@ -0,0 +1,44 @@ +{ + "slug": "reno-5z-5g-2021-global-dual-sim-td-lte-v2-128gb-cph2211-a94-5g", + "name": "Reno 5Z 5G 2021 Global Dual SIM TD-LTE V2 128GB CPH2211 / A94 5G", + "brand": "oppo", + "soc": "dimensity-800", + "release_date": "2021-04-07", + "ram_gb": 8.0, + "battery_mah": 4310, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "charging_wired_w": 50, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 529, + "market_countries": "Belgium , HK , Netherlands , Singapore", + "market_regions": "Asia , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2021/reno-6-5g-2021-dual-sim-td-lte-cn-128gb-peqm00.json b/data/smartphone/oppo/2021/reno-6-5g-2021-dual-sim-td-lte-cn-128gb-peqm00.json new file mode 100644 index 00000000000..b12303ec32a --- /dev/null +++ b/data/smartphone/oppo/2021/reno-6-5g-2021-dual-sim-td-lte-cn-128gb-peqm00.json @@ -0,0 +1,44 @@ +{ + "slug": "reno-6-5g-2021-dual-sim-td-lte-cn-128gb-peqm00", + "name": "Reno 6 5G 2021 Dual SIM TD-LTE CN 128GB PEQM00", + "brand": "oppo", + "soc": "dimensity-900", + "release_date": "2021-06-11", + "ram_gb": 8.0, + "battery_mah": 2150, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 2799, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/reno-6-5g-2021-dual-sim-td-lte-cn-256gb-peqm00.json b/data/smartphone/oppo/2021/reno-6-5g-2021-dual-sim-td-lte-cn-256gb-peqm00.json new file mode 100644 index 00000000000..d548098ae65 --- /dev/null +++ b/data/smartphone/oppo/2021/reno-6-5g-2021-dual-sim-td-lte-cn-256gb-peqm00.json @@ -0,0 +1,44 @@ +{ + "slug": "reno-6-5g-2021-dual-sim-td-lte-cn-256gb-peqm00", + "name": "Reno 6 5G 2021 Dual SIM TD-LTE CN 256GB PEQM00", + "brand": "oppo", + "soc": "dimensity-900", + "release_date": "2021-06-11", + "ram_gb": 12.0, + "battery_mah": 2150, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3199, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/reno-6-5g-2021-global-dual-sim-td-lte-128gb-cph2215.json b/data/smartphone/oppo/2021/reno-6-5g-2021-global-dual-sim-td-lte-128gb-cph2215.json new file mode 100644 index 00000000000..7faa9e21edd --- /dev/null +++ b/data/smartphone/oppo/2021/reno-6-5g-2021-global-dual-sim-td-lte-128gb-cph2215.json @@ -0,0 +1,43 @@ +{ + "slug": "reno-6-5g-2021-global-dual-sim-td-lte-128gb-cph2215", + "name": "Reno 6 5G 2021 Global Dual SIM TD-LTE 128GB CPH2215", + "brand": "oppo", + "soc": "dimensity-900", + "release_date": "2021-06-11", + "ram_gb": 8.0, + "battery_mah": 2150, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 64.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Chile , Czech , France , Germany , HK , India , Indonesia , Italy , Malaysia , Mexico , Netherlands , Portugal , Spain , Taiwan , Thailand , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , North America , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2021/reno-6-pro-5g-2021-dual-sim-td-lte-apac-256gb-cph2249.json b/data/smartphone/oppo/2021/reno-6-pro-5g-2021-dual-sim-td-lte-apac-256gb-cph2249.json new file mode 100644 index 00000000000..37c38711b71 --- /dev/null +++ b/data/smartphone/oppo/2021/reno-6-pro-5g-2021-dual-sim-td-lte-apac-256gb-cph2249.json @@ -0,0 +1,43 @@ +{ + "slug": "reno-6-pro-5g-2021-dual-sim-td-lte-apac-256gb-cph2249", + "name": "Reno 6 Pro 5G 2021 Dual SIM TD-LTE APAC 256GB CPH2249", + "brand": "oppo", + "soc": "dimensity-1200", + "release_date": "2021-06-02", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 64.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "India , Pakistan , Singapore", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2021/reno-6-pro-5g-2021-global-dual-sim-td-lte-256gb-cph2247.json b/data/smartphone/oppo/2021/reno-6-pro-5g-2021-global-dual-sim-td-lte-256gb-cph2247.json new file mode 100644 index 00000000000..673b30a80ba --- /dev/null +++ b/data/smartphone/oppo/2021/reno-6-pro-5g-2021-global-dual-sim-td-lte-256gb-cph2247.json @@ -0,0 +1,44 @@ +{ + "slug": "reno-6-pro-5g-2021-global-dual-sim-td-lte-256gb-cph2247", + "name": "Reno 6 Pro 5G 2021 Global Dual SIM TD-LTE 256GB CPH2247", + "brand": "oppo", + "soc": "snapdragon-870", + "release_date": "2021-09-08", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 800, + "market_countries": "Austria , Belgium , Bulgaria , Czech , France , Germany , HK , Indonesia , Italy , Lebanon , Malaysia , Netherlands , Portugal , Saudi Arabia , Spain , Taiwan , Thailand , UAE , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2021/reno-6-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-penm00.json b/data/smartphone/oppo/2021/reno-6-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-penm00.json new file mode 100644 index 00000000000..3f0ebbef13f --- /dev/null +++ b/data/smartphone/oppo/2021/reno-6-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-penm00.json @@ -0,0 +1,44 @@ +{ + "slug": "reno-6-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-penm00", + "name": "Reno 6 Pro+ 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB PENM00", + "brand": "oppo", + "soc": "snapdragon-870", + "release_date": "2021-05-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 4499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/reno-6-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pepm00.json b/data/smartphone/oppo/2021/reno-6-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pepm00.json new file mode 100644 index 00000000000..b9651a5b1e1 --- /dev/null +++ b/data/smartphone/oppo/2021/reno-6-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pepm00.json @@ -0,0 +1,44 @@ +{ + "slug": "reno-6-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pepm00", + "name": "Reno 6 Pro 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB PEPM00", + "brand": "oppo", + "soc": "dimensity-1200", + "release_date": "2021-05-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 64.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3799, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/reno-6-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-penm00.json b/data/smartphone/oppo/2021/reno-6-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-penm00.json new file mode 100644 index 00000000000..db27b027175 --- /dev/null +++ b/data/smartphone/oppo/2021/reno-6-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-penm00.json @@ -0,0 +1,44 @@ +{ + "slug": "reno-6-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-penm00", + "name": "Reno 6 Pro+ 5G 2021 Standard Edition Dual SIM TD-LTE CN 128GB PENM00", + "brand": "oppo", + "soc": "snapdragon-870", + "release_date": "2021-05-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/reno-6-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-pepm00.json b/data/smartphone/oppo/2021/reno-6-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-pepm00.json new file mode 100644 index 00000000000..066819a6c00 --- /dev/null +++ b/data/smartphone/oppo/2021/reno-6-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-pepm00.json @@ -0,0 +1,44 @@ +{ + "slug": "reno-6-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-pepm00", + "name": "Reno 6 Pro 5G 2021 Standard Edition Dual SIM TD-LTE CN 128GB PEPM00", + "brand": "oppo", + "soc": "dimensity-1200", + "release_date": "2021-05-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 64.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/reno-6z-5g-2021-global-dual-sim-td-lte-v1-128gb-cph2237.json b/data/smartphone/oppo/2021/reno-6z-5g-2021-global-dual-sim-td-lte-v1-128gb-cph2237.json new file mode 100644 index 00000000000..ddbd9f22e78 --- /dev/null +++ b/data/smartphone/oppo/2021/reno-6z-5g-2021-global-dual-sim-td-lte-v1-128gb-cph2237.json @@ -0,0 +1,44 @@ +{ + "slug": "reno-6z-5g-2021-global-dual-sim-td-lte-v1-128gb-cph2237", + "name": "Reno 6Z 5G 2021 Global Dual SIM TD-LTE V1 128GB CPH2237", + "brand": "oppo", + "soc": "dimensity-800", + "release_date": "2021-08-01", + "ram_gb": 8.0, + "battery_mah": 4310, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 413 + }, + "cameras": [ + { + "type": "main", + "mp": 64.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1699, + "market_countries": "Cambodia , Malaysia , Philippines , Saudi Arabia , Taiwan , Thailand , UAE , Vietnam", + "market_regions": "Asia , Middle East , Oceania , Southeast Asia" +} diff --git a/data/smartphone/oppo/2021/reno-7-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pfdm00.json b/data/smartphone/oppo/2021/reno-7-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pfdm00.json new file mode 100644 index 00000000000..f33043e1b29 --- /dev/null +++ b/data/smartphone/oppo/2021/reno-7-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pfdm00.json @@ -0,0 +1,44 @@ +{ + "slug": "reno-7-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pfdm00", + "name": "Reno 7 Pro 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB PFDM00", + "brand": "oppo", + "soc": "dimensity-1200", + "release_date": "2021-11-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/reno-7-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-pfdm00.json b/data/smartphone/oppo/2021/reno-7-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-pfdm00.json new file mode 100644 index 00000000000..5c4d3ba7890 --- /dev/null +++ b/data/smartphone/oppo/2021/reno-7-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-pfdm00.json @@ -0,0 +1,44 @@ +{ + "slug": "reno-7-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-pfdm00", + "name": "Reno 7 Pro 5G 2021 Standard Edition Dual SIM TD-LTE CN 256GB PFDM00", + "brand": "oppo", + "soc": "dimensity-1200", + "release_date": "2021-11-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3699, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/reno-7-se-5g-2021-dual-sim-td-lte-cn-128gb-pfcm00.json b/data/smartphone/oppo/2021/reno-7-se-5g-2021-dual-sim-td-lte-cn-128gb-pfcm00.json new file mode 100644 index 00000000000..197e2b850c0 --- /dev/null +++ b/data/smartphone/oppo/2021/reno-7-se-5g-2021-dual-sim-td-lte-cn-128gb-pfcm00.json @@ -0,0 +1,43 @@ +{ + "slug": "reno-7-se-5g-2021-dual-sim-td-lte-cn-128gb-pfcm00", + "name": "Reno 7 SE 5G 2021 Dual SIM TD-LTE CN 128GB PFCM00", + "brand": "oppo", + "soc": "dimensity-900", + "release_date": "2021-12-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/reno-7-se-5g-2021-dual-sim-td-lte-cn-256gb-pfcm00.json b/data/smartphone/oppo/2021/reno-7-se-5g-2021-dual-sim-td-lte-cn-256gb-pfcm00.json new file mode 100644 index 00000000000..c9438901902 --- /dev/null +++ b/data/smartphone/oppo/2021/reno-7-se-5g-2021-dual-sim-td-lte-cn-256gb-pfcm00.json @@ -0,0 +1,43 @@ +{ + "slug": "reno-7-se-5g-2021-dual-sim-td-lte-cn-256gb-pfcm00", + "name": "Reno 7 SE 5G 2021 Dual SIM TD-LTE CN 256GB PFCM00", + "brand": "oppo", + "soc": "dimensity-900", + "release_date": "2021-12-16", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/reno5-5g-global-dual-sim-td-lte-128gb-cph2145.json b/data/smartphone/oppo/2021/reno5-5g-global-dual-sim-td-lte-128gb-cph2145.json new file mode 100644 index 00000000000..0e561ee6cbb --- /dev/null +++ b/data/smartphone/oppo/2021/reno5-5g-global-dual-sim-td-lte-128gb-cph2145.json @@ -0,0 +1,43 @@ +{ + "slug": "reno5-5g-global-dual-sim-td-lte-128gb-cph2145", + "name": "Reno5 5G Global Dual SIM TD-LTE 128GB CPH2145", + "brand": "oppo", + "soc": "snapdragon-765", + "release_date": "2021-01-16", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Belarus , Bulgaria , France , Italy , Malaysia , NZ , Poland , Romania , Russia , Singapore , Spain , Taiwan , Turkey , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2021/reno5-a-5g-dual-sim-td-lte-jp-cph2199.json b/data/smartphone/oppo/2021/reno5-a-5g-dual-sim-td-lte-jp-cph2199.json new file mode 100644 index 00000000000..3b209464df2 --- /dev/null +++ b/data/smartphone/oppo/2021/reno5-a-5g-dual-sim-td-lte-jp-cph2199.json @@ -0,0 +1,43 @@ +{ + "slug": "reno5-a-5g-dual-sim-td-lte-jp-cph2199", + "name": "Reno5 A 5G Dual SIM TD-LTE JP CPH2199", + "brand": "oppo", + "soc": "snapdragon-765", + "release_date": "2021-06-11", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 64.1 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/reno5-a-5g-td-lte-jp-a101op.json b/data/smartphone/oppo/2021/reno5-a-5g-td-lte-jp-a101op.json new file mode 100644 index 00000000000..97009d6148b --- /dev/null +++ b/data/smartphone/oppo/2021/reno5-a-5g-td-lte-jp-a101op.json @@ -0,0 +1,43 @@ +{ + "slug": "reno5-a-5g-td-lte-jp-a101op", + "name": "Reno5 A 5G TD-LTE JP A101OP", + "brand": "oppo", + "soc": "snapdragon-765", + "release_date": "2021-06-03", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 64.1 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/reno5-pro-5g-artist-limited-edition-dual-sim-td-lte-cn-256gb-pdrm00.json b/data/smartphone/oppo/2021/reno5-pro-5g-artist-limited-edition-dual-sim-td-lte-cn-256gb-pdrm00.json new file mode 100644 index 00000000000..9a7ad457819 --- /dev/null +++ b/data/smartphone/oppo/2021/reno5-pro-5g-artist-limited-edition-dual-sim-td-lte-cn-256gb-pdrm00.json @@ -0,0 +1,43 @@ +{ + "slug": "reno5-pro-5g-artist-limited-edition-dual-sim-td-lte-cn-256gb-pdrm00", + "name": "Reno5 Pro+ 5G Artist Limited Edition Dual SIM TD-LTE CN 256GB PDRM00", + "brand": "oppo", + "soc": "snapdragon-865", + "release_date": "2021-01-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 187.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdrm00.json b/data/smartphone/oppo/2021/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdrm00.json new file mode 100644 index 00000000000..57260da3058 --- /dev/null +++ b/data/smartphone/oppo/2021/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdrm00.json @@ -0,0 +1,44 @@ +{ + "slug": "reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdrm00", + "name": "Reno5 Pro+ 5G Dual SIM TD-LTE CN 128GB PDRM00", + "brand": "oppo", + "soc": "snapdragon-865", + "release_date": "2021-01-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdrt00.json b/data/smartphone/oppo/2021/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdrt00.json new file mode 100644 index 00000000000..cccfbf87e72 --- /dev/null +++ b/data/smartphone/oppo/2021/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdrt00.json @@ -0,0 +1,44 @@ +{ + "slug": "reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdrt00", + "name": "Reno5 Pro+ 5G Dual SIM TD-LTE CN 128GB PDRT00", + "brand": "oppo", + "soc": "snapdragon-865", + "release_date": "2021-01-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/reno5-pro-5g-dual-sim-td-lte-cn-256gb-pdrm00.json b/data/smartphone/oppo/2021/reno5-pro-5g-dual-sim-td-lte-cn-256gb-pdrm00.json new file mode 100644 index 00000000000..0011279b950 --- /dev/null +++ b/data/smartphone/oppo/2021/reno5-pro-5g-dual-sim-td-lte-cn-256gb-pdrm00.json @@ -0,0 +1,43 @@ +{ + "slug": "reno5-pro-5g-dual-sim-td-lte-cn-256gb-pdrm00", + "name": "Reno5 Pro+ 5G Dual SIM TD-LTE CN 256GB PDRM00", + "brand": "oppo", + "soc": "snapdragon-865", + "release_date": "2021-01-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/oppo/2021/reno5-pro-5g-global-dual-sim-td-lte-256gb-cph2201.json b/data/smartphone/oppo/2021/reno5-pro-5g-global-dual-sim-td-lte-256gb-cph2201.json new file mode 100644 index 00000000000..86cf323201b --- /dev/null +++ b/data/smartphone/oppo/2021/reno5-pro-5g-global-dual-sim-td-lte-256gb-cph2201.json @@ -0,0 +1,43 @@ +{ + "slug": "reno5-pro-5g-global-dual-sim-td-lte-256gb-cph2201", + "name": "Reno5 Pro 5G Global Dual SIM TD-LTE 256GB CPH2201", + "brand": "oppo", + "soc": "dimensity-1000-plus", + "release_date": "2021-01-16", + "ram_gb": 12.0, + "battery_mah": 4350, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Belarus , France , India , Italy , Malaysia , Poland , Romania , Russia , Singapore , Spain , Taiwan , Turkey , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/oppo/2022/a76-2022-premium-edition-dual-sim-td-lte-id-in-pk-np-bd-v1-128gb-cph2375.json b/data/smartphone/oppo/2022/a76-2022-premium-edition-dual-sim-td-lte-id-in-pk-np-bd-v1-128gb-cph2375.json new file mode 100644 index 00000000000..3788b2315cd --- /dev/null +++ b/data/smartphone/oppo/2022/a76-2022-premium-edition-dual-sim-td-lte-id-in-pk-np-bd-v1-128gb-cph2375.json @@ -0,0 +1,43 @@ +{ + "slug": "a76-2022-premium-edition-dual-sim-td-lte-id-in-pk-np-bd-v1-128gb-cph2375", + "name": "A76 2022 Premium Edition Dual SIM TD-LTE ID IN PK NP BD V1 128GB CPH2375", + "brand": "oppo", + "soc": "snapdragon-680", + "release_date": "2022-02-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "720x1612", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , India , Indonesia , Nepal , Pakistan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/oppo/2022/a76-2022-premium-edition-global-dual-sim-td-lte-v2-128gb-cph2375.json b/data/smartphone/oppo/2022/a76-2022-premium-edition-global-dual-sim-td-lte-v2-128gb-cph2375.json new file mode 100644 index 00000000000..c1f2e3cffff --- /dev/null +++ b/data/smartphone/oppo/2022/a76-2022-premium-edition-global-dual-sim-td-lte-v2-128gb-cph2375.json @@ -0,0 +1,44 @@ +{ + "slug": "a76-2022-premium-edition-global-dual-sim-td-lte-v2-128gb-cph2375", + "name": "A76 2022 Premium Edition Global Dual SIM TD-LTE V2 128GB CPH2375", + "brand": "oppo", + "soc": "snapdragon-680", + "release_date": "2022-02-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "720x1612", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 899, + "market_countries": "Malaysia , Philippines , Thailand , Vietnam", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/oppo/2022/a76-2022-standard-edition-global-dual-sim-td-lte-v2-128gb-cph2375.json b/data/smartphone/oppo/2022/a76-2022-standard-edition-global-dual-sim-td-lte-v2-128gb-cph2375.json new file mode 100644 index 00000000000..9ed0fb6c35e --- /dev/null +++ b/data/smartphone/oppo/2022/a76-2022-standard-edition-global-dual-sim-td-lte-v2-128gb-cph2375.json @@ -0,0 +1,44 @@ +{ + "slug": "a76-2022-standard-edition-global-dual-sim-td-lte-v2-128gb-cph2375", + "name": "A76 2022 Standard Edition Global Dual SIM TD-LTE V2 128GB CPH2375", + "brand": "oppo", + "soc": "snapdragon-680", + "release_date": "2022-02-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "720x1612", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 249, + "market_countries": "Belgium , France , Germany , Italy , Netherlands , Spain", + "market_regions": "Europe , Western Europe" +} diff --git a/data/smartphone/oppo/2022/a76-2022-standard-edition-global-dual-sim-td-lte-v2-256gb-cph2375.json b/data/smartphone/oppo/2022/a76-2022-standard-edition-global-dual-sim-td-lte-v2-256gb-cph2375.json new file mode 100644 index 00000000000..06fb3f05184 --- /dev/null +++ b/data/smartphone/oppo/2022/a76-2022-standard-edition-global-dual-sim-td-lte-v2-256gb-cph2375.json @@ -0,0 +1,43 @@ +{ + "slug": "a76-2022-standard-edition-global-dual-sim-td-lte-v2-256gb-cph2375", + "name": "A76 2022 Standard Edition Global Dual SIM TD-LTE V2 256GB CPH2375", + "brand": "oppo", + "soc": "snapdragon-680", + "release_date": "2022-03-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "720x1612", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "France , Germany , Italy , Spain", + "market_regions": "Europe , Western Europe" +} diff --git a/data/smartphone/panasonic/2018/eluga-x1-dual-sim-td-lte-in.json b/data/smartphone/panasonic/2018/eluga-x1-dual-sim-td-lte-in.json new file mode 100644 index 00000000000..6dc85a5bf9b --- /dev/null +++ b/data/smartphone/panasonic/2018/eluga-x1-dual-sim-td-lte-in.json @@ -0,0 +1,41 @@ +{ + "slug": "eluga-x1-dual-sim-td-lte-in", + "name": "Eluga X1 Dual SIM TD-LTE IN", + "brand": "panasonic", + "soc": "helio-p60", + "release_date": "2018-10-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.14, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 406 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/panasonic/2018/eluga-x1-pro-dual-sim-td-lte-in.json b/data/smartphone/panasonic/2018/eluga-x1-pro-dual-sim-td-lte-in.json new file mode 100644 index 00000000000..9ef68dcedb2 --- /dev/null +++ b/data/smartphone/panasonic/2018/eluga-x1-pro-dual-sim-td-lte-in.json @@ -0,0 +1,41 @@ +{ + "slug": "eluga-x1-pro-dual-sim-td-lte-in", + "name": "Eluga X1 Pro Dual SIM TD-LTE IN", + "brand": "panasonic", + "soc": "helio-p60", + "release_date": "2018-10-01", + "ram_gb": 6.0, + "battery_mah": 3000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.14, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 406 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/panasonic/2018/eluga-y-pro-dual-sim-td-lte-tw.json b/data/smartphone/panasonic/2018/eluga-y-pro-dual-sim-td-lte-tw.json new file mode 100644 index 00000000000..9ddf3336000 --- /dev/null +++ b/data/smartphone/panasonic/2018/eluga-y-pro-dual-sim-td-lte-tw.json @@ -0,0 +1,41 @@ +{ + "slug": "eluga-y-pro-dual-sim-td-lte-tw", + "name": "Eluga Y Pro Dual SIM TD-LTE TW", + "brand": "panasonic", + "soc": "helio-p23", + "release_date": "2018-08-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.85, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 287 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Taiwan", + "market_regions": "Asia" +} diff --git a/data/smartphone/panasonic/2018/eluga-z1-dual-sim-td-lte-in.json b/data/smartphone/panasonic/2018/eluga-z1-dual-sim-td-lte-in.json new file mode 100644 index 00000000000..431026e08c7 --- /dev/null +++ b/data/smartphone/panasonic/2018/eluga-z1-dual-sim-td-lte-in.json @@ -0,0 +1,41 @@ +{ + "slug": "eluga-z1-dual-sim-td-lte-in", + "name": "Eluga Z1 Dual SIM TD-LTE IN", + "brand": "panasonic", + "soc": "helio-p22", + "release_date": "2018-10-31", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 168.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.19, + "resolution": "720x1500", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/panasonic/2018/eluga-z1-pro-dual-sim-td-lte-in.json b/data/smartphone/panasonic/2018/eluga-z1-pro-dual-sim-td-lte-in.json new file mode 100644 index 00000000000..310d62a90e3 --- /dev/null +++ b/data/smartphone/panasonic/2018/eluga-z1-pro-dual-sim-td-lte-in.json @@ -0,0 +1,41 @@ +{ + "slug": "eluga-z1-pro-dual-sim-td-lte-in", + "name": "Eluga Z1 Pro Dual SIM TD-LTE IN", + "brand": "panasonic", + "soc": "helio-p22", + "release_date": "2018-10-31", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 168.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.19, + "resolution": "720x1500", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/panasonic/2018/p85-nxt-dual-sim-td-lte-in-eb-90s50p8n.json b/data/smartphone/panasonic/2018/p85-nxt-dual-sim-td-lte-in-eb-90s50p8n.json new file mode 100644 index 00000000000..e6f2124b5a3 --- /dev/null +++ b/data/smartphone/panasonic/2018/p85-nxt-dual-sim-td-lte-in-eb-90s50p8n.json @@ -0,0 +1,41 @@ +{ + "slug": "p85-nxt-dual-sim-td-lte-in-eb-90s50p8n", + "name": "P85 NXT Dual SIM TD-LTE IN EB-90S50P8N", + "brand": "panasonic", + "soc": "snapdragon-210", + "release_date": "2018-07-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 173.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/panasonic/2018/p95-dual-sim-td-lte-eb-90s50p95b.json b/data/smartphone/panasonic/2018/p95-dual-sim-td-lte-eb-90s50p95b.json new file mode 100644 index 00000000000..e56a8363c4b --- /dev/null +++ b/data/smartphone/panasonic/2018/p95-dual-sim-td-lte-eb-90s50p95b.json @@ -0,0 +1,41 @@ +{ + "slug": "p95-dual-sim-td-lte-eb-90s50p95b", + "name": "P95 Dual SIM TD-LTE EB-90S50P95B", + "brand": "panasonic", + "soc": "snapdragon-210", + "release_date": "2018-05-01", + "ram_gb": 1.0, + "battery_mah": 2300, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/panasonic/2019/eluga-ray-610-dual-sim-td-lte-in.json b/data/smartphone/panasonic/2019/eluga-ray-610-dual-sim-td-lte-in.json new file mode 100644 index 00000000000..0c0251bbec3 --- /dev/null +++ b/data/smartphone/panasonic/2019/eluga-ray-610-dual-sim-td-lte-in.json @@ -0,0 +1,41 @@ +{ + "slug": "eluga-ray-610-dual-sim-td-lte-in", + "name": "Eluga Ray 610 Dual SIM TD-LTE IN", + "brand": "panasonic", + "soc": "helio-p22", + "release_date": "2019-12-29", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/panasonic/2019/eluga-ray-810-dual-sim-td-lte-in.json b/data/smartphone/panasonic/2019/eluga-ray-810-dual-sim-td-lte-in.json new file mode 100644 index 00000000000..d1e10166d26 --- /dev/null +++ b/data/smartphone/panasonic/2019/eluga-ray-810-dual-sim-td-lte-in.json @@ -0,0 +1,41 @@ +{ + "slug": "eluga-ray-810-dual-sim-td-lte-in", + "name": "Eluga Ray 810 Dual SIM TD-LTE IN", + "brand": "panasonic", + "soc": "helio-p22", + "release_date": "2019-12-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 158.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1500", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/philips/2017/xenium-x596-dual-sim-td-lte-cn.json b/data/smartphone/philips/2017/xenium-x596-dual-sim-td-lte-cn.json new file mode 100644 index 00000000000..a8b3a8f4c37 --- /dev/null +++ b/data/smartphone/philips/2017/xenium-x596-dual-sim-td-lte-cn.json @@ -0,0 +1,41 @@ +{ + "slug": "xenium-x596-dual-sim-td-lte-cn", + "name": "Xenium X596 Dual SIM TD-LTE CN", + "brand": "philips", + "soc": "snapdragon-435", + "release_date": "2017-10-27", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB C reversible" + }, + "market_countries": "China , Russia", + "market_regions": "Asia" +} diff --git a/data/smartphone/razer/2018/phone-2-global-td-lte-rz35-0259.json b/data/smartphone/razer/2018/phone-2-global-td-lte-rz35-0259.json new file mode 100644 index 00000000000..f597a79a6ef --- /dev/null +++ b/data/smartphone/razer/2018/phone-2-global-td-lte-rz35-0259.json @@ -0,0 +1,42 @@ +{ + "slug": "phone-2-global-td-lte-rz35-0259", + "name": "Phone 2 Global TD-LTE RZ35-0259", + "brand": "razer", + "soc": "snapdragon-845", + "release_date": "2018-10-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.72, + "resolution": "1440x2560", + "refresh_hz": 120, + "type": "Color ASV TFT LCD display", + "ppi": 513 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Canada , Denmark , Italy , Japan , Singapore , South Korea , Sweden , Taiwan , UK , USA", + "market_regions": "Australia , Eastern Europe , Europe , North America , Western Europe" +} diff --git a/data/smartphone/realme/2024/c61.json b/data/smartphone/realme/2024/c61.json new file mode 100644 index 00000000000..26ad2804ad4 --- /dev/null +++ b/data/smartphone/realme/2024/c61.json @@ -0,0 +1,32 @@ +{ + "slug": "c61", + "name": "C61", + "brand": "realme", + "soc": "unisoc-t612", + "release_date": "2024-01-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5 + }, + "cameras": [ + { + "type": "main", + "mp": 50.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "msrp_usd": 130 +} diff --git a/data/smartphone/samsung/2016/sm-g930k-galaxy-s7-td-lte.json b/data/smartphone/samsung/2016/sm-g930k-galaxy-s7-td-lte.json new file mode 100644 index 00000000000..cb6b764ffc7 --- /dev/null +++ b/data/smartphone/samsung/2016/sm-g930k-galaxy-s7-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g930k-galaxy-s7-td-lte", + "name": "SM-G930K Galaxy S7 TD-LTE", + "brand": "samsung", + "soc": "exynos-8890", + "release_date": "2016-03-11", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 152.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "6.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.09, + "resolution": "1440x2560", + "type": "AM-OLED display", + "ppi": 577 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2016/sm-g930l-galaxy-s7-td-lte.json b/data/smartphone/samsung/2016/sm-g930l-galaxy-s7-td-lte.json new file mode 100644 index 00000000000..02ae6d4928c --- /dev/null +++ b/data/smartphone/samsung/2016/sm-g930l-galaxy-s7-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g930l-galaxy-s7-td-lte", + "name": "SM-G930L Galaxy S7 TD-LTE", + "brand": "samsung", + "soc": "exynos-8890", + "release_date": "2016-03-11", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 152.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "6.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.09, + "resolution": "1440x2560", + "type": "AM-OLED display", + "ppi": 577 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2016/sm-g935k-galaxy-s7-edge-td-lte-128gb.json b/data/smartphone/samsung/2016/sm-g935k-galaxy-s7-edge-td-lte-128gb.json new file mode 100644 index 00000000000..0bb68ef4b85 --- /dev/null +++ b/data/smartphone/samsung/2016/sm-g935k-galaxy-s7-edge-td-lte-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g935k-galaxy-s7-edge-td-lte-128gb", + "name": "SM-G935K Galaxy S7 Edge TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-8890", + "release_date": "2016-12-01", + "ram_gb": 4.0, + "battery_mah": 3600, + "weight_g": 157.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.49, + "resolution": "1440x2560", + "type": "AM-OLED display", + "ppi": 535 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2016/sm-g935l-galaxy-s7-edge-td-lte-128gb.json b/data/smartphone/samsung/2016/sm-g935l-galaxy-s7-edge-td-lte-128gb.json new file mode 100644 index 00000000000..7aad794fb4c --- /dev/null +++ b/data/smartphone/samsung/2016/sm-g935l-galaxy-s7-edge-td-lte-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g935l-galaxy-s7-edge-td-lte-128gb", + "name": "SM-G935L Galaxy S7 Edge TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-8890", + "release_date": "2016-12-01", + "ram_gb": 4.0, + "battery_mah": 3600, + "weight_g": 157.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.49, + "resolution": "1440x2560", + "type": "AM-OLED display", + "ppi": 535 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2016/sm-g935l-galaxy-s7-edge-td-lte.json b/data/smartphone/samsung/2016/sm-g935l-galaxy-s7-edge-td-lte.json new file mode 100644 index 00000000000..5a6fd7aa66f --- /dev/null +++ b/data/smartphone/samsung/2016/sm-g935l-galaxy-s7-edge-td-lte.json @@ -0,0 +1,40 @@ +{ + "slug": "sm-g935l-galaxy-s7-edge-td-lte", + "name": "SM-G935L Galaxy S7 Edge TD-LTE", + "brand": "samsung", + "soc": "exynos-8890", + "release_date": "2016-03-03", + "ram_gb": 4.0, + "battery_mah": 3600, + "weight_g": 157.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "6.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.49, + "resolution": "1440x2560", + "type": "AM-OLED display", + "ppi": 535 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "South Korea" +} diff --git a/data/smartphone/samsung/2016/sm-g935s-galaxy-s7-edge-td-lte-128gb.json b/data/smartphone/samsung/2016/sm-g935s-galaxy-s7-edge-td-lte-128gb.json new file mode 100644 index 00000000000..65fb3d31cef --- /dev/null +++ b/data/smartphone/samsung/2016/sm-g935s-galaxy-s7-edge-td-lte-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g935s-galaxy-s7-edge-td-lte-128gb", + "name": "SM-G935S Galaxy S7 Edge TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-8890", + "release_date": "2016-12-01", + "ram_gb": 4.0, + "battery_mah": 3600, + "weight_g": 157.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.49, + "resolution": "1440x2560", + "type": "AM-OLED display", + "ppi": 535 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2017/galaxy-c7-pro.json b/data/smartphone/samsung/2017/galaxy-c7-pro.json new file mode 100644 index 00000000000..2f8c16015b3 --- /dev/null +++ b/data/smartphone/samsung/2017/galaxy-c7-pro.json @@ -0,0 +1,32 @@ +{ + "slug": "galaxy-c7-pro", + "name": "Galaxy C7 Pro", + "brand": "samsung", + "soc": "snapdragon-625", + "release_date": "2017-01-01", + "ram_gb": 4.0, + "battery_mah": 3300, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.7 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "msrp_usd": 299 +} diff --git a/data/smartphone/samsung/2018/galaxy-j6.json b/data/smartphone/samsung/2018/galaxy-j6.json new file mode 100644 index 00000000000..388566755f5 --- /dev/null +++ b/data/smartphone/samsung/2018/galaxy-j6.json @@ -0,0 +1,32 @@ +{ + "slug": "galaxy-j6", + "name": "Galaxy J6+", + "brand": "samsung", + "soc": "snapdragon-425", + "release_date": "2018-01-01", + "ram_gb": 4.0, + "battery_mah": 3300, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "msrp_usd": 169 +} diff --git a/data/smartphone/samsung/2018/galaxy-j8.json b/data/smartphone/samsung/2018/galaxy-j8.json new file mode 100644 index 00000000000..5df78cff39d --- /dev/null +++ b/data/smartphone/samsung/2018/galaxy-j8.json @@ -0,0 +1,32 @@ +{ + "slug": "galaxy-j8", + "name": "Galaxy J8", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2018-01-01", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "msrp_usd": 199 +} diff --git a/data/smartphone/samsung/2018/sm-a530d-galaxy-feel-2-lte-jp-sc-02l-sgh-n767.json b/data/smartphone/samsung/2018/sm-a530d-galaxy-feel-2-lte-jp-sc-02l-sgh-n767.json new file mode 100644 index 00000000000..7423925b7db --- /dev/null +++ b/data/smartphone/samsung/2018/sm-a530d-galaxy-feel-2-lte-jp-sc-02l-sgh-n767.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a530d-galaxy-feel-2-lte-jp-sc-02l-sgh-n767", + "name": "SM-A530D Galaxy Feel 2 LTE JP SC-02L / SGH-N767", + "brand": "samsung", + "soc": "exynos-7885", + "release_date": "2018-11-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.59, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 442 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2018/sm-a6050-galaxy-a9-star-lite-2018-duos-td-lte-cn-64gb.json b/data/smartphone/samsung/2018/sm-a6050-galaxy-a9-star-lite-2018-duos-td-lte-cn-64gb.json new file mode 100644 index 00000000000..b8289808808 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-a6050-galaxy-a9-star-lite-2018-duos-td-lte-cn-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a6050-galaxy-a9-star-lite-2018-duos-td-lte-cn-64gb", + "name": "SM-A6050 Galaxy A9 Star Lite 2018 Duos TD-LTE CN 64GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2018-07-01", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2018/sm-a6058-galaxy-a9-star-lite-4g-2018-duos-td-lte-cn-64gb.json b/data/smartphone/samsung/2018/sm-a6058-galaxy-a9-star-lite-4g-2018-duos-td-lte-cn-64gb.json new file mode 100644 index 00000000000..fc7c3f21eb5 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-a6058-galaxy-a9-star-lite-4g-2018-duos-td-lte-cn-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a6058-galaxy-a9-star-lite-4g-2018-duos-td-lte-cn-64gb", + "name": "SM-A6058 Galaxy A9 Star Lite 4G+ 2018 Duos TD-LTE CN 64GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2018-07-01", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2018/sm-a605f-ds-galaxy-a6-2018-duos-global-td-lte-64gb.json b/data/smartphone/samsung/2018/sm-a605f-ds-galaxy-a6-2018-duos-global-td-lte-64gb.json new file mode 100644 index 00000000000..d5dba0853f0 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-a605f-ds-galaxy-a6-2018-duos-global-td-lte-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a605f-ds-galaxy-a6-2018-duos-global-td-lte-64gb", + "name": "SM-A605F/DS Galaxy A6+ 2018 Duos Global TD-LTE 64GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2018-05-01", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Austria , Belgium , Bulgaria , Cyprus , Croatia , Estonia , France , Greece , Germany , Hungary , Ireland , Israel , Italy , Jordan , Latvia , Lithuania , Lebanon , Pakistan , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovenia , Spain , UAE , UK", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/samsung/2018/sm-a605fn-ds-galaxy-a6-2018-duos-global-td-lte-32gb.json b/data/smartphone/samsung/2018/sm-a605fn-ds-galaxy-a6-2018-duos-global-td-lte-32gb.json new file mode 100644 index 00000000000..02d03214f81 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-a605fn-ds-galaxy-a6-2018-duos-global-td-lte-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a605fn-ds-galaxy-a6-2018-duos-global-td-lte-32gb", + "name": "SM-A605FN/DS Galaxy A6+ 2018 Duos Global TD-LTE 32GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2018-05-01", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Austria , Belgium , Bulgaria , Croatia , Estonia , France , Germany , Hungary , Ireland , Italy , Latvia , Lithuania , Norway , Poland , Portugal , Russia , Spain , Sweden , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2018/sm-a605fn-galaxy-a6-2018-global-td-lte-32gb.json b/data/smartphone/samsung/2018/sm-a605fn-galaxy-a6-2018-global-td-lte-32gb.json new file mode 100644 index 00000000000..0e60729da12 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-a605fn-galaxy-a6-2018-global-td-lte-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a605fn-galaxy-a6-2018-global-td-lte-32gb", + "name": "SM-A605FN Galaxy A6+ 2018 Global TD-LTE 32GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2018-05-01", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Bulgaria , Croatia , Czech , France , Germany , Hungary , Ireland , Italy , Poland , Portugal , Spain , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2018/sm-a605g-ds-galaxy-a6-2018-duos-td-lte-apac-64gb.json b/data/smartphone/samsung/2018/sm-a605g-ds-galaxy-a6-2018-duos-td-lte-apac-64gb.json new file mode 100644 index 00000000000..82d42cd3d91 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-a605g-ds-galaxy-a6-2018-duos-td-lte-apac-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a605g-ds-galaxy-a6-2018-duos-td-lte-apac-64gb", + "name": "SM-A605G/DS Galaxy A6+ 2018 Duos TD-LTE APAC 64GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2018-06-01", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Indonesia , Malaysia , Philippines , Taiwan", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/samsung/2018/sm-a605gn-ds-galaxy-a6-2018-duos-td-lte-latam-32gb.json b/data/smartphone/samsung/2018/sm-a605gn-ds-galaxy-a6-2018-duos-td-lte-latam-32gb.json new file mode 100644 index 00000000000..39dea734b57 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-a605gn-ds-galaxy-a6-2018-duos-td-lte-latam-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a605gn-ds-galaxy-a6-2018-duos-td-lte-latam-32gb", + "name": "SM-A605GN/DS Galaxy A6+ 2018 Duos TD-LTE LATAM 32GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2018-06-01", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Colombia , Costa Rica , Guatemala , Honduras", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/samsung/2018/sm-a605gn-galaxy-a6-2018-td-lte-latam-32gb.json b/data/smartphone/samsung/2018/sm-a605gn-galaxy-a6-2018-td-lte-latam-32gb.json new file mode 100644 index 00000000000..3bbb781fb68 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-a605gn-galaxy-a6-2018-td-lte-latam-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a605gn-galaxy-a6-2018-td-lte-latam-32gb", + "name": "SM-A605GN Galaxy A6+ 2018 TD-LTE LATAM 32GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2018-06-01", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2018/sm-a605k-galaxy-jean-td-lte-kr-32gb.json b/data/smartphone/samsung/2018/sm-a605k-galaxy-jean-td-lte-kr-32gb.json new file mode 100644 index 00000000000..e85188f90c5 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-a605k-galaxy-jean-td-lte-kr-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a605k-galaxy-jean-td-lte-kr-32gb", + "name": "SM-A605K Galaxy Jean TD-LTE KR 32GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2018-07-07", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2018/sm-a730f-ds-galaxy-a8-2018-standard-edition-duos-global-td-lte-64gb.json b/data/smartphone/samsung/2018/sm-a730f-ds-galaxy-a8-2018-standard-edition-duos-global-td-lte-64gb.json new file mode 100644 index 00000000000..6ca47123623 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-a730f-ds-galaxy-a8-2018-standard-edition-duos-global-td-lte-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a730f-ds-galaxy-a8-2018-standard-edition-duos-global-td-lte-64gb", + "name": "SM-A730F/DS Galaxy A8+ 2018 Standard Edition Duos Global TD-LTE 64GB", + "brand": "samsung", + "soc": "exynos-7885", + "release_date": "2018-01-06", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , France , Germany , HK , Hungary , Italy , Russia , Spain , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2018/sm-a730f-galaxy-a8-2018-standard-edition-global-td-lte-64gb.json b/data/smartphone/samsung/2018/sm-a730f-galaxy-a8-2018-standard-edition-global-td-lte-64gb.json new file mode 100644 index 00000000000..65c6a7c8540 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-a730f-galaxy-a8-2018-standard-edition-global-td-lte-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a730f-galaxy-a8-2018-standard-edition-global-td-lte-64gb", + "name": "SM-A730F Galaxy A8+ 2018 Standard Edition Global TD-LTE 64GB", + "brand": "samsung", + "soc": "exynos-7885", + "release_date": "2018-01-06", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Chile , Germany , Ireland , Italy , Mexico , Portugal , Spain , UK", + "market_regions": "Eastern Europe , Europe , North America , South America , Western Europe" +} diff --git a/data/smartphone/samsung/2018/sm-a750f-ds-galaxy-a7-2018-duos-global-td-lte-128gb.json b/data/smartphone/samsung/2018/sm-a750f-ds-galaxy-a7-2018-duos-global-td-lte-128gb.json new file mode 100644 index 00000000000..3cad65d42d7 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-a750f-ds-galaxy-a7-2018-duos-global-td-lte-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a750f-ds-galaxy-a7-2018-duos-global-td-lte-128gb", + "name": "SM-A750F/DS Galaxy A7 2018 Duos Global TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-7885", + "release_date": "2018-10-01", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Cyprus , France , Germany , Greece , Hungary , India , Russia , Saudi Arabia , Thailand , UAE , UK", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2018/sm-a750f-ds-galaxy-a7-2018-duos-global-td-lte-64gb.json b/data/smartphone/samsung/2018/sm-a750f-ds-galaxy-a7-2018-duos-global-td-lte-64gb.json new file mode 100644 index 00000000000..f8832fb9d3c --- /dev/null +++ b/data/smartphone/samsung/2018/sm-a750f-ds-galaxy-a7-2018-duos-global-td-lte-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a750f-ds-galaxy-a7-2018-duos-global-td-lte-64gb", + "name": "SM-A750F/DS Galaxy A7 2018 Duos Global TD-LTE 64GB", + "brand": "samsung", + "soc": "exynos-7885", + "release_date": "2018-10-01", + "ram_gb": 4.0, + "battery_mah": 3300, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , Belarus , Belgium , Cyprus , Czech , Estonia , Finland , France , Greece , Germany , Hungary , Indonesia , Israel , Italy , Latvia , Lithuania , NZ , Poland , Portugal , Russia , Romania , Slovakia , Slovenia , Spain , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2018/sm-a750fn-ds-galaxy-a7-2018-duos-global-td-lte-64gb.json b/data/smartphone/samsung/2018/sm-a750fn-ds-galaxy-a7-2018-duos-global-td-lte-64gb.json new file mode 100644 index 00000000000..60136695d76 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-a750fn-ds-galaxy-a7-2018-duos-global-td-lte-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a750fn-ds-galaxy-a7-2018-duos-global-td-lte-64gb", + "name": "SM-A750FN/DS Galaxy A7 2018 Duos Global TD-LTE 64GB", + "brand": "samsung", + "soc": "exynos-7885", + "release_date": "2018-10-24", + "ram_gb": 4.0, + "battery_mah": 3300, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , Belarus , Belgium , Bulgaria , Cyprus , Czech , Estonia , France , Greece , Germany , Hungary , Israel , Italy , Latvia , Lithuania , Norway , NZ , Poland , Portugal , Russia , Romania , Slovakia , Slovenia , Spain , UAE , UK , Ukraine", + "market_regions": "Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/samsung/2018/sm-a750fn-galaxy-a7-2018-td-lte-emea-64gb.json b/data/smartphone/samsung/2018/sm-a750fn-galaxy-a7-2018-td-lte-emea-64gb.json new file mode 100644 index 00000000000..d6262190b01 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-a750fn-galaxy-a7-2018-td-lte-emea-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a750fn-galaxy-a7-2018-td-lte-emea-64gb", + "name": "SM-A750FN Galaxy A7 2018 TD-LTE EMEA 64GB", + "brand": "samsung", + "soc": "exynos-7885", + "release_date": "2018-10-01", + "ram_gb": 4.0, + "battery_mah": 3300, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Austria , Belgium , Czech , Denmark , Finland , France , Germany , Hungary , Ireland , Italy , Netherlands , Norway , Portugal , Russia , Slovakia , Slovenia , Spain , Switzerland , Sweden , UAE , UK", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/samsung/2018/sm-a750g-ds-galaxy-a7-2018-duos-td-lte-latam-64gb.json b/data/smartphone/samsung/2018/sm-a750g-ds-galaxy-a7-2018-duos-td-lte-latam-64gb.json new file mode 100644 index 00000000000..82530011690 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-a750g-ds-galaxy-a7-2018-duos-td-lte-latam-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a750g-ds-galaxy-a7-2018-duos-td-lte-latam-64gb", + "name": "SM-A750G/DS Galaxy A7 2018 Duos TD-LTE LATAM 64GB", + "brand": "samsung", + "soc": "exynos-7885", + "release_date": "2018-11-01", + "ram_gb": 4.0, + "battery_mah": 3300, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Brazil , Costa Rica , Panama , Paraguay , Peru , Puerto Rico", + "market_regions": "Central America , South America" +} diff --git a/data/smartphone/samsung/2018/sm-a750g-galaxy-a7-2018-td-lte-latam-64gb.json b/data/smartphone/samsung/2018/sm-a750g-galaxy-a7-2018-td-lte-latam-64gb.json new file mode 100644 index 00000000000..4615f67e30e --- /dev/null +++ b/data/smartphone/samsung/2018/sm-a750g-galaxy-a7-2018-td-lte-latam-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a750g-galaxy-a7-2018-td-lte-latam-64gb", + "name": "SM-A750G Galaxy A7 2018 TD-LTE LATAM 64GB", + "brand": "samsung", + "soc": "exynos-7885", + "release_date": "2018-11-01", + "ram_gb": 4.0, + "battery_mah": 3300, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2018/sm-a750gn-ds-galaxy-a7-2018-duos-td-lte-apac-128gb.json b/data/smartphone/samsung/2018/sm-a750gn-ds-galaxy-a7-2018-duos-td-lte-apac-128gb.json new file mode 100644 index 00000000000..c51dd1e4172 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-a750gn-ds-galaxy-a7-2018-duos-td-lte-apac-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a750gn-ds-galaxy-a7-2018-duos-td-lte-apac-128gb", + "name": "SM-A750GN/DS Galaxy A7 2018 Duos TD-LTE APAC 128GB", + "brand": "samsung", + "soc": "exynos-7885", + "release_date": "2018-10-24", + "ram_gb": 4.0, + "battery_mah": 3300, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "HK , Japan , Malaysia , Philippines , Singapore , Thailand , Vietnam", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/samsung/2018/sm-a750gn-ds-galaxy-a7-2018-duos-td-lte-apac-64gb.json b/data/smartphone/samsung/2018/sm-a750gn-ds-galaxy-a7-2018-duos-td-lte-apac-64gb.json new file mode 100644 index 00000000000..d6dfc125a17 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-a750gn-ds-galaxy-a7-2018-duos-td-lte-apac-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a750gn-ds-galaxy-a7-2018-duos-td-lte-apac-64gb", + "name": "SM-A750GN/DS Galaxy A7 2018 Duos TD-LTE APAC 64GB", + "brand": "samsung", + "soc": "exynos-7885", + "release_date": "2018-10-24", + "ram_gb": 4.0, + "battery_mah": 3300, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , Malaysia , Myanmar , Nepal , Philippines , Thailand , Vietnam", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/samsung/2018/sm-a750n-galaxy-a7-2018-td-lte-kr.json b/data/smartphone/samsung/2018/sm-a750n-galaxy-a7-2018-td-lte-kr.json new file mode 100644 index 00000000000..21f3efdba79 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-a750n-galaxy-a7-2018-td-lte-kr.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a750n-galaxy-a7-2018-td-lte-kr", + "name": "SM-A750N Galaxy A7 2018 TD-LTE KR", + "brand": "samsung", + "soc": "exynos-7885", + "release_date": "2018-11-01", + "ram_gb": 4.0, + "battery_mah": 3300, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2018/sm-a9200-galaxy-a9s-2018-dual-sim-td-lte-cn-128gb.json b/data/smartphone/samsung/2018/sm-a9200-galaxy-a9s-2018-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..433c58c42de --- /dev/null +++ b/data/smartphone/samsung/2018/sm-a9200-galaxy-a9s-2018-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a9200-galaxy-a9s-2018-dual-sim-td-lte-cn-128gb", + "name": "SM-A9200 Galaxy A9s 2018 Dual SIM TD-LTE CN 128GB", + "brand": "samsung", + "soc": "snapdragon-660", + "release_date": "2018-11-01", + "ram_gb": 6.0, + "battery_mah": 3800, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2018/sm-a9200-galaxy-a9s-2018-dual-sim-td-lte-cn-64gb.json b/data/smartphone/samsung/2018/sm-a9200-galaxy-a9s-2018-dual-sim-td-lte-cn-64gb.json new file mode 100644 index 00000000000..52b1242d653 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-a9200-galaxy-a9s-2018-dual-sim-td-lte-cn-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a9200-galaxy-a9s-2018-dual-sim-td-lte-cn-64gb", + "name": "SM-A9200 Galaxy A9s 2018 Dual SIM TD-LTE CN 64GB", + "brand": "samsung", + "soc": "snapdragon-660", + "release_date": "2018-11-01", + "ram_gb": 6.0, + "battery_mah": 3800, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 392 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2018/sm-a920f-ds-galaxy-a9-2018-duos-global-td-lte.json b/data/smartphone/samsung/2018/sm-a920f-ds-galaxy-a9-2018-duos-global-td-lte.json new file mode 100644 index 00000000000..3a7792e5207 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-a920f-ds-galaxy-a9-2018-duos-global-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a920f-ds-galaxy-a9-2018-duos-global-td-lte", + "name": "SM-A920F/DS Galaxy A9 2018 Duos Global TD-LTE", + "brand": "samsung", + "soc": "snapdragon-660", + "release_date": "2018-11-16", + "ram_gb": 6.0, + "battery_mah": 3800, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , India , Ireland , Israel , Italy , Jordan , Latvia , Lithuania , Netherlands , Norway , Pakistan , Poland , Portugal , Russia , Romania , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2018/sm-a920f-ds-galaxy-a9-2018-premium-edition-duos-global-td-lte.json b/data/smartphone/samsung/2018/sm-a920f-ds-galaxy-a9-2018-premium-edition-duos-global-td-lte.json new file mode 100644 index 00000000000..6b9a27328e9 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-a920f-ds-galaxy-a9-2018-premium-edition-duos-global-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a920f-ds-galaxy-a9-2018-premium-edition-duos-global-td-lte", + "name": "SM-A920F/DS Galaxy A9 2018 Premium Edition Duos Global TD-LTE", + "brand": "samsung", + "soc": "snapdragon-660", + "release_date": "2018-11-28", + "ram_gb": 8.0, + "battery_mah": 3800, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Brazil , Bulgaria , Croatia , Cyprus , Czech , Denmark , Estonia , Finland , France , Germany , Greece , HK , Hungary , India , Ireland , Israel , Italy , Jordan , Latvia , Lithuania , Netherlands , Norway , NZ , Pakistan , Poland , Portugal , Russia , Romania , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2018/sm-a920f-galaxy-a9-2018-global-td-lte.json b/data/smartphone/samsung/2018/sm-a920f-galaxy-a9-2018-global-td-lte.json new file mode 100644 index 00000000000..888b1c8b790 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-a920f-galaxy-a9-2018-global-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a920f-galaxy-a9-2018-global-td-lte", + "name": "SM-A920F Galaxy A9 2018 Global TD-LTE", + "brand": "samsung", + "soc": "snapdragon-660", + "release_date": "2018-11-16", + "ram_gb": 6.0, + "battery_mah": 3800, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , India , Ireland , Israel , Italy , Jordan , Latvia , Lithuania , Mexico , Netherlands , Norway , Pakistan , Poland , Portugal , Russia , Romania , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2018/sm-a920n-galaxy-a9-2018-td-lte-kr.json b/data/smartphone/samsung/2018/sm-a920n-galaxy-a9-2018-td-lte-kr.json new file mode 100644 index 00000000000..7f1eba396a5 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-a920n-galaxy-a9-2018-td-lte-kr.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a920n-galaxy-a9-2018-td-lte-kr", + "name": "SM-A920N Galaxy A9 2018 TD-LTE KR", + "brand": "samsung", + "soc": "snapdragon-660", + "release_date": "2018-12-21", + "ram_gb": 6.0, + "battery_mah": 3800, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2018/sm-g6200-galaxy-a6s-dual-sim-td-lte-cn-128gb.json b/data/smartphone/samsung/2018/sm-g6200-galaxy-a6s-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..322c715d185 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g6200-galaxy-a6s-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g6200-galaxy-a6s-dual-sim-td-lte-cn-128gb", + "name": "SM-G6200 Galaxy A6s Dual SIM TD-LTE CN 128GB", + "brand": "samsung", + "soc": "snapdragon-660", + "release_date": "2018-11-01", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color PLS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2018/sm-g6200-galaxy-a6s-dual-sim-td-lte-cn-64gb-galaxy-p30.json b/data/smartphone/samsung/2018/sm-g6200-galaxy-a6s-dual-sim-td-lte-cn-64gb-galaxy-p30.json new file mode 100644 index 00000000000..466f5ea3064 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g6200-galaxy-a6s-dual-sim-td-lte-cn-64gb-galaxy-p30.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g6200-galaxy-a6s-dual-sim-td-lte-cn-64gb-galaxy-p30", + "name": "SM-G6200 Galaxy A6s Dual SIM TD-LTE CN 64GB / Galaxy P30", + "brand": "samsung", + "soc": "snapdragon-660", + "release_date": "2018-11-01", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color PLS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2018/sm-g8750-galaxy-s-lite-luxury-edition-duos-td-lte-cn.json b/data/smartphone/samsung/2018/sm-g8750-galaxy-s-lite-luxury-edition-duos-td-lte-cn.json new file mode 100644 index 00000000000..92f540582e9 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g8750-galaxy-s-lite-luxury-edition-duos-td-lte-cn.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g8750-galaxy-s-lite-luxury-edition-duos-td-lte-cn", + "name": "SM-G8750 Galaxy S Lite Luxury Edition Duos TD-LTE CN", + "brand": "samsung", + "soc": "snapdragon-660", + "release_date": "2018-06-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.79, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 427 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2018/sm-g8850-galaxy-a9-star-duos-td-lte-cn.json b/data/smartphone/samsung/2018/sm-g8850-galaxy-a9-star-duos-td-lte-cn.json new file mode 100644 index 00000000000..1ed3662db5e --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g8850-galaxy-a9-star-duos-td-lte-cn.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g8850-galaxy-a9-star-duos-td-lte-cn", + "name": "SM-G8850 Galaxy A9 Star Duos TD-LTE CN", + "brand": "samsung", + "soc": "snapdragon-660", + "release_date": "2018-06-14", + "ram_gb": 4.0, + "battery_mah": 3700, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 24.1 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2018/sm-g8858-galaxy-a9-star-4g-duos-td-lte-cn.json b/data/smartphone/samsung/2018/sm-g8858-galaxy-a9-star-4g-duos-td-lte-cn.json new file mode 100644 index 00000000000..45c0b010f43 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g8858-galaxy-a9-star-4g-duos-td-lte-cn.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g8858-galaxy-a9-star-4g-duos-td-lte-cn", + "name": "SM-G8858 Galaxy A9 Star 4G+ Duos TD-LTE CN", + "brand": "samsung", + "soc": "snapdragon-660", + "release_date": "2018-06-14", + "ram_gb": 4.0, + "battery_mah": 3700, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 24.1 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2018/sm-g885f-ds-galaxy-a8-star-duos-global-td-lte.json b/data/smartphone/samsung/2018/sm-g885f-ds-galaxy-a8-star-duos-global-td-lte.json new file mode 100644 index 00000000000..045b8edf1d0 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g885f-ds-galaxy-a8-star-duos-global-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g885f-ds-galaxy-a8-star-duos-global-td-lte", + "name": "SM-G885F/DS Galaxy A8 Star Duos Global TD-LTE", + "brand": "samsung", + "soc": "snapdragon-660", + "release_date": "2018-08-27", + "ram_gb": 4.0, + "battery_mah": 3700, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 24.1 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Croatia , Cyprus , France , Germany , Greece , India , Italy , Malaysia , Slovenia , Spain , Sweden , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2018/sm-g885s-galaxy-a9-star-duos-td-lte-kr.json b/data/smartphone/samsung/2018/sm-g885s-galaxy-a9-star-duos-td-lte-kr.json new file mode 100644 index 00000000000..57451ac709a --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g885s-galaxy-a9-star-duos-td-lte-kr.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g885s-galaxy-a9-star-duos-td-lte-kr", + "name": "SM-G885S Galaxy A9 Star Duos TD-LTE KR", + "brand": "samsung", + "soc": "snapdragon-660", + "release_date": "2018-07-01", + "ram_gb": 4.0, + "battery_mah": 3700, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 24.1 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2018/sm-g885y-ds-galaxy-a8-star-duos-td-lte-apac-galaxy-a9-star.json b/data/smartphone/samsung/2018/sm-g885y-ds-galaxy-a8-star-duos-td-lte-apac-galaxy-a9-star.json new file mode 100644 index 00000000000..ff11abe89a9 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g885y-ds-galaxy-a8-star-duos-td-lte-apac-galaxy-a9-star.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g885y-ds-galaxy-a8-star-duos-td-lte-apac-galaxy-a9-star", + "name": "SM-G885Y/DS Galaxy A8 Star Duos TD-LTE APAC / Galaxy A9 Star", + "brand": "samsung", + "soc": "snapdragon-660", + "release_date": "2018-07-02", + "ram_gb": 4.0, + "battery_mah": 3700, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 24.1 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Indonesia , Taiwan", + "market_regions": "Asia , Australia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2018/sm-g8870-galaxy-a8s-2018-standard-edition-duos-td-lte-cn-128gb.json b/data/smartphone/samsung/2018/sm-g8870-galaxy-a8s-2018-standard-edition-duos-td-lte-cn-128gb.json new file mode 100644 index 00000000000..bc3d09beb54 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g8870-galaxy-a8s-2018-standard-edition-duos-td-lte-cn-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g8870-galaxy-a8s-2018-standard-edition-duos-td-lte-cn-128gb", + "name": "SM-G8870 Galaxy A8s 2018 Standard Edition Duos TD-LTE CN 128GB", + "brand": "samsung", + "soc": "snapdragon-710", + "release_date": "2018-12-29", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "Color PLS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2018/sm-g9600-ds-galaxy-s9-duos-td-lte-cn-128gb.json b/data/smartphone/samsung/2018/sm-g9600-ds-galaxy-s9-duos-td-lte-cn-128gb.json new file mode 100644 index 00000000000..b4f2a298f9f --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g9600-ds-galaxy-s9-duos-td-lte-cn-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g9600-ds-galaxy-s9-duos-td-lte-cn-128gb", + "name": "SM-G9600/DS Galaxy S9 Duos TD-LTE CN 128GB", + "brand": "samsung", + "soc": "snapdragon-845", + "release_date": "2018-03-16", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.77, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 571 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2018/sm-g9600-ds-galaxy-s9-duos-td-lte-cn.json b/data/smartphone/samsung/2018/sm-g9600-ds-galaxy-s9-duos-td-lte-cn.json new file mode 100644 index 00000000000..f54b6693117 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g9600-ds-galaxy-s9-duos-td-lte-cn.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g9600-ds-galaxy-s9-duos-td-lte-cn", + "name": "SM-G9600/DS Galaxy S9 Duos TD-LTE CN", + "brand": "samsung", + "soc": "snapdragon-845", + "release_date": "2018-03-16", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.77, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 571 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2018/sm-g9608-ds-galaxy-s9-duos-4g-td-lte-cn.json b/data/smartphone/samsung/2018/sm-g9608-ds-galaxy-s9-duos-4g-td-lte-cn.json new file mode 100644 index 00000000000..a0213f88267 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g9608-ds-galaxy-s9-duos-4g-td-lte-cn.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g9608-ds-galaxy-s9-duos-4g-td-lte-cn", + "name": "SM-G9608/DS Galaxy S9 Duos 4G+ TD-LTE CN", + "brand": "samsung", + "soc": "snapdragon-845", + "release_date": "2018-03-16", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.77, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 571 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2018/sm-g960d-galaxy-s9-td-lte-jp-sc-02k-sgh-n327.json b/data/smartphone/samsung/2018/sm-g960d-galaxy-s9-td-lte-jp-sc-02k-sgh-n327.json new file mode 100644 index 00000000000..04ce94eaac8 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g960d-galaxy-s9-td-lte-jp-sc-02k-sgh-n327.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g960d-galaxy-s9-td-lte-jp-sc-02k-sgh-n327", + "name": "SM-G960D Galaxy S9 TD-LTE JP SC-02K / SGH-N327", + "brand": "samsung", + "soc": "snapdragon-845", + "release_date": "2018-05-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.77, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 571 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2018/sm-g960f-ds-galaxy-s9-duos-td-lte-128gb.json b/data/smartphone/samsung/2018/sm-g960f-ds-galaxy-s9-duos-td-lte-128gb.json new file mode 100644 index 00000000000..8076b064b4a --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g960f-ds-galaxy-s9-duos-td-lte-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g960f-ds-galaxy-s9-duos-td-lte-128gb", + "name": "SM-G960F/DS Galaxy S9 Duos TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-9810", + "release_date": "2018-05-02", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.77, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 571 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Czech , Finland , France , Germany , Hungary , Ireland , Italy , Japan , Malaysia , Netherlands , Norway , NZ , Poland , Romania , Russia , Slovakia , Slovenia , Spain , Sweden , Taiwan , Thailand , UAE , UK , Vietnam", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2018/sm-g960f-ds-galaxy-s9-duos-td-lte-256gb.json b/data/smartphone/samsung/2018/sm-g960f-ds-galaxy-s9-duos-td-lte-256gb.json new file mode 100644 index 00000000000..263a92f64cc --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g960f-ds-galaxy-s9-duos-td-lte-256gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g960f-ds-galaxy-s9-duos-td-lte-256gb", + "name": "SM-G960F/DS Galaxy S9 Duos TD-LTE 256GB", + "brand": "samsung", + "soc": "exynos-9810", + "release_date": "2018-05-02", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.77, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 571 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Czech , Finland , France , Germany , Hungary , India , Indonesia , Ireland , Italy , Japan , Malaysia , Netherlands , Norway , NZ , Poland , Russia , Romania , Slovakia , Slovenia , Spain , Sweden , Taiwan , Thailand , UAE , UK , Vietnam", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2018/sm-g960f-galaxy-s9-td-lte.json b/data/smartphone/samsung/2018/sm-g960f-galaxy-s9-td-lte.json new file mode 100644 index 00000000000..aa536cc21d4 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g960f-galaxy-s9-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g960f-galaxy-s9-td-lte", + "name": "SM-G960F Galaxy S9 TD-LTE", + "brand": "samsung", + "soc": "exynos-9810", + "release_date": "2018-03-16", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.77, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 571 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Belarus , Belgium , Bulgaria , Chile , Croatia , Cyprus , Czech , Denmark , Estonia , Egypt , Finland , France , Germany , Greece , Hungary , Ireland , Israel , Italy , Japan , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lithuania , Netherlands , Norway , NZ , Poland , Portugal , Romania , Russia , Saudi Arabia , Serbia , Slovakia , Slovenia , South Africa , Spain , Sweden , Switzerland , Turkey , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/samsung/2018/sm-g960j-galaxy-s9-wimax-2-scv38.json b/data/smartphone/samsung/2018/sm-g960j-galaxy-s9-wimax-2-scv38.json new file mode 100644 index 00000000000..f0c2a777090 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g960j-galaxy-s9-wimax-2-scv38.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g960j-galaxy-s9-wimax-2-scv38", + "name": "SM-G960J Galaxy S9 WiMAX 2+ SCV38", + "brand": "samsung", + "soc": "snapdragon-845", + "release_date": "2018-05-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.77, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 571 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2018/sm-g960n-galaxy-s9-td-lte.json b/data/smartphone/samsung/2018/sm-g960n-galaxy-s9-td-lte.json new file mode 100644 index 00000000000..85400cbbd52 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g960n-galaxy-s9-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g960n-galaxy-s9-td-lte", + "name": "SM-G960N Galaxy S9 TD-LTE", + "brand": "samsung", + "soc": "exynos-9810", + "release_date": "2018-03-16", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.77, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 571 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2018/sm-g960u-galaxy-s9-td-lte-us.json b/data/smartphone/samsung/2018/sm-g960u-galaxy-s9-td-lte-us.json new file mode 100644 index 00000000000..e29d6fd2abc --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g960u-galaxy-s9-td-lte-us.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g960u-galaxy-s9-td-lte-us", + "name": "SM-G960U Galaxy S9 TD-LTE US", + "brand": "samsung", + "soc": "snapdragon-845", + "release_date": "2018-03-16", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.77, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 571 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 719, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2018/sm-g960u1-galaxy-s9-td-lte-us-128gb.json b/data/smartphone/samsung/2018/sm-g960u1-galaxy-s9-td-lte-us-128gb.json new file mode 100644 index 00000000000..b1dbb52bf70 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g960u1-galaxy-s9-td-lte-us-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g960u1-galaxy-s9-td-lte-us-128gb", + "name": "SM-G960U1 Galaxy S9 TD-LTE US 128GB", + "brand": "samsung", + "soc": "snapdragon-845", + "release_date": "2018-05-18", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.77, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 571 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 769, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2018/sm-g960u1-galaxy-s9-td-lte-us-256gb.json b/data/smartphone/samsung/2018/sm-g960u1-galaxy-s9-td-lte-us-256gb.json new file mode 100644 index 00000000000..11fd3b3bc69 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g960u1-galaxy-s9-td-lte-us-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g960u1-galaxy-s9-td-lte-us-256gb", + "name": "SM-G960U1 Galaxy S9 TD-LTE US 256GB", + "brand": "samsung", + "soc": "snapdragon-845", + "release_date": "2018-05-18", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.77, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 571 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 839, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2018/sm-g960u1-galaxy-s9-td-lte-us.json b/data/smartphone/samsung/2018/sm-g960u1-galaxy-s9-td-lte-us.json new file mode 100644 index 00000000000..fcb683c1743 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g960u1-galaxy-s9-td-lte-us.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g960u1-galaxy-s9-td-lte-us", + "name": "SM-G960U1 Galaxy S9 TD-LTE US", + "brand": "samsung", + "soc": "snapdragon-845", + "release_date": "2018-03-07", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.77, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 571 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 719, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2018/sm-g960w-galaxy-s9-td-lte.json b/data/smartphone/samsung/2018/sm-g960w-galaxy-s9-td-lte.json new file mode 100644 index 00000000000..daf4bf2ac94 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g960w-galaxy-s9-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g960w-galaxy-s9-td-lte", + "name": "SM-G960W Galaxy S9 TD-LTE", + "brand": "samsung", + "soc": "snapdragon-845", + "release_date": "2018-03-16", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.77, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 571 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2018/sm-g9650-ds-galaxy-s9-duos-td-lte-cn-128gb.json b/data/smartphone/samsung/2018/sm-g9650-ds-galaxy-s9-duos-td-lte-cn-128gb.json new file mode 100644 index 00000000000..59f15811c5e --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g9650-ds-galaxy-s9-duos-td-lte-cn-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g9650-ds-galaxy-s9-duos-td-lte-cn-128gb", + "name": "SM-G9650/DS Galaxy S9+ Duos TD-LTE CN 128GB", + "brand": "samsung", + "soc": "snapdragon-845", + "release_date": "2018-03-01", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.22, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 529 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2018/sm-g9650-ds-galaxy-s9-duos-td-lte-cn-256gb.json b/data/smartphone/samsung/2018/sm-g9650-ds-galaxy-s9-duos-td-lte-cn-256gb.json new file mode 100644 index 00000000000..f9487718bdd --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g9650-ds-galaxy-s9-duos-td-lte-cn-256gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g9650-ds-galaxy-s9-duos-td-lte-cn-256gb", + "name": "SM-G9650/DS Galaxy S9+ Duos TD-LTE CN 256GB", + "brand": "samsung", + "soc": "snapdragon-845", + "release_date": "2018-03-01", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.22, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 529 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2018/sm-g9650-ds-galaxy-s9-duos-td-lte-cn.json b/data/smartphone/samsung/2018/sm-g9650-ds-galaxy-s9-duos-td-lte-cn.json new file mode 100644 index 00000000000..d7d696b329a --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g9650-ds-galaxy-s9-duos-td-lte-cn.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g9650-ds-galaxy-s9-duos-td-lte-cn", + "name": "SM-G9650/DS Galaxy S9+ Duos TD-LTE CN", + "brand": "samsung", + "soc": "snapdragon-845", + "release_date": "2018-03-16", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 529 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2018/sm-g965d-galaxy-s9-td-lte-jp-sc-03k-sgh-n943.json b/data/smartphone/samsung/2018/sm-g965d-galaxy-s9-td-lte-jp-sc-03k-sgh-n943.json new file mode 100644 index 00000000000..fa25f4b2a45 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g965d-galaxy-s9-td-lte-jp-sc-03k-sgh-n943.json @@ -0,0 +1,38 @@ +{ + "slug": "sm-g965d-galaxy-s9-td-lte-jp-sc-03k-sgh-n943", + "name": "SM-G965D Galaxy S9+ TD-LTE JP SC-03K / SGH-N943", + "brand": "samsung", + "soc": "snapdragon-845", + "release_date": "2018-05-18", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "display": { + "size_inch": 6.22, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 529 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2018/sm-g965f-ds-galaxy-s9-duos-td-lte-128gb.json b/data/smartphone/samsung/2018/sm-g965f-ds-galaxy-s9-duos-td-lte-128gb.json new file mode 100644 index 00000000000..0053b75023d --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g965f-ds-galaxy-s9-duos-td-lte-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g965f-ds-galaxy-s9-duos-td-lte-128gb", + "name": "SM-G965F/DS Galaxy S9+ Duos TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-9810", + "release_date": "2018-03-16", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.22, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 529 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Czech , Germany , Hungary , India , Indonesia , Japan , Poland , Russia , Slovakia , Taiwan , Thailand , UAE , UK", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2018/sm-g965f-ds-galaxy-s9-duos-td-lte-256gb.json b/data/smartphone/samsung/2018/sm-g965f-ds-galaxy-s9-duos-td-lte-256gb.json new file mode 100644 index 00000000000..a88fc15643b --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g965f-ds-galaxy-s9-duos-td-lte-256gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g965f-ds-galaxy-s9-duos-td-lte-256gb", + "name": "SM-G965F/DS Galaxy S9+ Duos TD-LTE 256GB", + "brand": "samsung", + "soc": "exynos-9810", + "release_date": "2018-05-02", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.22, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 529 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Finland , France , Germany , Ireland , Italy , Norway , NZ , Poland , Sweden , Taiwan , UAE , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/samsung/2018/sm-g965f-ds-galaxy-s9-duos-td-lte-64gb.json b/data/smartphone/samsung/2018/sm-g965f-ds-galaxy-s9-duos-td-lte-64gb.json new file mode 100644 index 00000000000..ca6f46ed7b3 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g965f-ds-galaxy-s9-duos-td-lte-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g965f-ds-galaxy-s9-duos-td-lte-64gb", + "name": "SM-G965F/DS Galaxy S9+ Duos TD-LTE 64GB", + "brand": "samsung", + "soc": "exynos-9810", + "release_date": "2018-03-16", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 529 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Czech , Germany , Hungary , India , Indonesia , Japan , Poland , Russia , Slovakia , Taiwan , Thailand , UAE , UK", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2018/sm-g965f-galaxy-s9-td-lte-galaxy-s9-plus.json b/data/smartphone/samsung/2018/sm-g965f-galaxy-s9-td-lte-galaxy-s9-plus.json new file mode 100644 index 00000000000..94c1e665b4b --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g965f-galaxy-s9-td-lte-galaxy-s9-plus.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g965f-galaxy-s9-td-lte-galaxy-s9-plus", + "name": "SM-G965F Galaxy S9+ TD-LTE / Galaxy S9 Plus", + "brand": "samsung", + "soc": "exynos-9810", + "release_date": "2018-03-16", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 529 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Belgium , Bulgaria , Chile , Croatia , Cyprus , Czech , Denmark , Egypt , Estonia , Finland , France , Germany , Greece , Hungary , Ireland , Israel , Italy , Japan , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lithuania , Netherlands , Norway , NZ , Poland , Portugal , Romania , Russia , Saudi Arabia , Serbia , Slovakia , Slovenia , South Africa , Spain , Sweden , Switzerland , Turkey , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/samsung/2018/sm-g965j-galaxy-s9-wimax-2-scv39.json b/data/smartphone/samsung/2018/sm-g965j-galaxy-s9-wimax-2-scv39.json new file mode 100644 index 00000000000..8c32f0f7031 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g965j-galaxy-s9-wimax-2-scv39.json @@ -0,0 +1,38 @@ +{ + "slug": "sm-g965j-galaxy-s9-wimax-2-scv39", + "name": "SM-G965J Galaxy S9+ WiMAX 2+ SCV39", + "brand": "samsung", + "soc": "snapdragon-845", + "release_date": "2018-05-18", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "display": { + "size_inch": 6.22, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 529 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2018/sm-g965n-galaxy-s9-td-lte-256gb.json b/data/smartphone/samsung/2018/sm-g965n-galaxy-s9-td-lte-256gb.json new file mode 100644 index 00000000000..2897469bece --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g965n-galaxy-s9-td-lte-256gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g965n-galaxy-s9-td-lte-256gb", + "name": "SM-G965N Galaxy S9+ TD-LTE 256GB", + "brand": "samsung", + "soc": "exynos-9810", + "release_date": "2018-03-16", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.22, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 529 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2018/sm-g965n-galaxy-s9-td-lte-64gb.json b/data/smartphone/samsung/2018/sm-g965n-galaxy-s9-td-lte-64gb.json new file mode 100644 index 00000000000..68e9553fe5c --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g965n-galaxy-s9-td-lte-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g965n-galaxy-s9-td-lte-64gb", + "name": "SM-G965N Galaxy S9+ TD-LTE 64GB", + "brand": "samsung", + "soc": "exynos-9810", + "release_date": "2018-03-16", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 529 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2018/sm-g965u1-galaxy-s9-td-lte-us-128gb.json b/data/smartphone/samsung/2018/sm-g965u1-galaxy-s9-td-lte-us-128gb.json new file mode 100644 index 00000000000..b0e68958841 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g965u1-galaxy-s9-td-lte-us-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g965u1-galaxy-s9-td-lte-us-128gb", + "name": "SM-G965U1 Galaxy S9+ TD-LTE US 128GB", + "brand": "samsung", + "soc": "snapdragon-845", + "release_date": "2018-05-18", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.22, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 529 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2018/sm-g965u1-galaxy-s9-td-lte-us-256gb.json b/data/smartphone/samsung/2018/sm-g965u1-galaxy-s9-td-lte-us-256gb.json new file mode 100644 index 00000000000..82f789b3987 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g965u1-galaxy-s9-td-lte-us-256gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g965u1-galaxy-s9-td-lte-us-256gb", + "name": "SM-G965U1 Galaxy S9+ TD-LTE US 256GB", + "brand": "samsung", + "soc": "snapdragon-845", + "release_date": "2018-05-18", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.22, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 529 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2018/sm-g965u1-galaxy-s9-td-lte-us.json b/data/smartphone/samsung/2018/sm-g965u1-galaxy-s9-td-lte-us.json new file mode 100644 index 00000000000..b32c5e8cf26 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g965u1-galaxy-s9-td-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g965u1-galaxy-s9-td-lte-us", + "name": "SM-G965U1 Galaxy S9+ TD-LTE US", + "brand": "samsung", + "soc": "snapdragon-845", + "release_date": "2018-03-16", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 529 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2018/sm-g965w-galaxy-s9-td-lte.json b/data/smartphone/samsung/2018/sm-g965w-galaxy-s9-td-lte.json new file mode 100644 index 00000000000..5c320c453fa --- /dev/null +++ b/data/smartphone/samsung/2018/sm-g965w-galaxy-s9-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g965w-galaxy-s9-td-lte", + "name": "SM-G965W Galaxy S9+ TD-LTE", + "brand": "samsung", + "soc": "snapdragon-845", + "release_date": "2018-03-16", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 529 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2018/sm-j410f-ds-galaxy-j4-core-duos-td-lte-global.json b/data/smartphone/samsung/2018/sm-j410f-ds-galaxy-j4-core-duos-td-lte-global.json new file mode 100644 index 00000000000..aaa219a6f33 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-j410f-ds-galaxy-j4-core-duos-td-lte-global.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-j410f-ds-galaxy-j4-core-duos-td-lte-global", + "name": "SM-J410F/DS Galaxy J4 Core Duos TD-LTE Global", + "brand": "samsung", + "soc": "snapdragon-425", + "release_date": "2018-11-01", + "ram_gb": 1.0, + "battery_mah": 3300, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color IPS TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Belgium , China , Czech , Egypt , Finland , Germany , Hungary , Italy , Kenya , Malaysia , Netherlands , Pakistan , Portugal , Russia , Slovakia , Slovenia , South Africa , UK", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2018/sm-j410g-ds-galaxy-j4-core-duos-td-lte-latam.json b/data/smartphone/samsung/2018/sm-j410g-ds-galaxy-j4-core-duos-td-lte-latam.json new file mode 100644 index 00000000000..9e485e68a82 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-j410g-ds-galaxy-j4-core-duos-td-lte-latam.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-j410g-ds-galaxy-j4-core-duos-td-lte-latam", + "name": "SM-J410G/DS Galaxy J4 Core Duos TD-LTE LATAM", + "brand": "samsung", + "soc": "snapdragon-425", + "release_date": "2018-11-01", + "ram_gb": 1.0, + "battery_mah": 3300, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color IPS TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Brazil , Costa Rica , Ecuador , Guatemala , Honduras , Panama , Puerto Rico", + "market_regions": "Central America , South America" +} diff --git a/data/smartphone/samsung/2018/sm-j410g-galaxy-j4-core-td-lte-latam.json b/data/smartphone/samsung/2018/sm-j410g-galaxy-j4-core-td-lte-latam.json new file mode 100644 index 00000000000..efa9e9440e0 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-j410g-galaxy-j4-core-td-lte-latam.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-j410g-galaxy-j4-core-td-lte-latam", + "name": "SM-J410G Galaxy J4 Core TD-LTE LATAM", + "brand": "samsung", + "soc": "snapdragon-425", + "release_date": "2018-11-01", + "ram_gb": 1.0, + "battery_mah": 3300, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color IPS TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Canada , Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2018/sm-j415f-ds-galaxy-j4-2018-duos-global-td-lte-16gb.json b/data/smartphone/samsung/2018/sm-j415f-ds-galaxy-j4-2018-duos-global-td-lte-16gb.json new file mode 100644 index 00000000000..b62462fe3c7 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-j415f-ds-galaxy-j4-2018-duos-global-td-lte-16gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-j415f-ds-galaxy-j4-2018-duos-global-td-lte-16gb", + "name": "SM-J415F/DS Galaxy J4+ 2018 Duos Global TD-LTE 16GB", + "brand": "samsung", + "soc": "snapdragon-425", + "release_date": "2018-09-01", + "ram_gb": 2.0, + "battery_mah": 3300, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Bulgaria , Germany , Italy , Kenya , Pakistan , Russia , UK", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2018/sm-j415f-ds-galaxy-j4-2018-duos-global-td-lte-32gb.json b/data/smartphone/samsung/2018/sm-j415f-ds-galaxy-j4-2018-duos-global-td-lte-32gb.json new file mode 100644 index 00000000000..5310812e30e --- /dev/null +++ b/data/smartphone/samsung/2018/sm-j415f-ds-galaxy-j4-2018-duos-global-td-lte-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-j415f-ds-galaxy-j4-2018-duos-global-td-lte-32gb", + "name": "SM-J415F/DS Galaxy J4+ 2018 Duos Global TD-LTE 32GB", + "brand": "samsung", + "soc": "snapdragon-425", + "release_date": "2018-10-01", + "ram_gb": 2.0, + "battery_mah": 3300, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Germany , India , Italy , Malaysia , Russia , Singapore , UAE , UK", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2018/sm-j415f-galaxy-j4-2018-td-lte-emea-32gb.json b/data/smartphone/samsung/2018/sm-j415f-galaxy-j4-2018-td-lte-emea-32gb.json new file mode 100644 index 00000000000..f8d64acf1a0 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-j415f-galaxy-j4-2018-td-lte-emea-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-j415f-galaxy-j4-2018-td-lte-emea-32gb", + "name": "SM-J415F Galaxy J4+ 2018 TD-LTE EMEA 32GB", + "brand": "samsung", + "soc": "snapdragon-425", + "release_date": "2018-09-24", + "ram_gb": 2.0, + "battery_mah": 3300, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Romania , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2018/sm-j415fn-ds-galaxy-j4-2018-duos-td-lte-emea-32gb.json b/data/smartphone/samsung/2018/sm-j415fn-ds-galaxy-j4-2018-duos-td-lte-emea-32gb.json new file mode 100644 index 00000000000..8f2367d2f49 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-j415fn-ds-galaxy-j4-2018-duos-td-lte-emea-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-j415fn-ds-galaxy-j4-2018-duos-td-lte-emea-32gb", + "name": "SM-J415FN/DS Galaxy J4+ 2018 Duos TD-LTE EMEA 32GB", + "brand": "samsung", + "soc": "snapdragon-425", + "release_date": "2018-09-24", + "ram_gb": 2.0, + "battery_mah": 3300, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Austria , Belgium , Czech , Denmark , Estonia , Finland , France , Germany , Hungary , Ireland , Israel , Italy , Latvia , Lithuania , Netherlands , Norway , Pakistan , Poland , Portugal , Russia , Romania , Slovakia , Slovenia , Sweden , UAE , UK", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/samsung/2018/sm-j415fn-galaxy-j4-2018-td-lte-emea-16gb.json b/data/smartphone/samsung/2018/sm-j415fn-galaxy-j4-2018-td-lte-emea-16gb.json new file mode 100644 index 00000000000..ec492477ad1 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-j415fn-galaxy-j4-2018-td-lte-emea-16gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-j415fn-galaxy-j4-2018-td-lte-emea-16gb", + "name": "SM-J415FN Galaxy J4+ 2018 TD-LTE EMEA 16GB", + "brand": "samsung", + "soc": "snapdragon-425", + "release_date": "2018-09-24", + "ram_gb": 2.0, + "battery_mah": 3300, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "UK", + "market_regions": "Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2018/sm-j415fn-galaxy-j4-2018-td-lte-emea-32gb.json b/data/smartphone/samsung/2018/sm-j415fn-galaxy-j4-2018-td-lte-emea-32gb.json new file mode 100644 index 00000000000..2d53d22a916 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-j415fn-galaxy-j4-2018-td-lte-emea-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-j415fn-galaxy-j4-2018-td-lte-emea-32gb", + "name": "SM-J415FN Galaxy J4+ 2018 TD-LTE EMEA 32GB", + "brand": "samsung", + "soc": "snapdragon-425", + "release_date": "2018-09-24", + "ram_gb": 2.0, + "battery_mah": 3300, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Ireland , UK", + "market_regions": "Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2018/sm-j415g-ds-galaxy-j4-2018-duos-td-lte-latam-32gb.json b/data/smartphone/samsung/2018/sm-j415g-ds-galaxy-j4-2018-duos-td-lte-latam-32gb.json new file mode 100644 index 00000000000..33dd5d18571 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-j415g-ds-galaxy-j4-2018-duos-td-lte-latam-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-j415g-ds-galaxy-j4-2018-duos-td-lte-latam-32gb", + "name": "SM-J415G/DS Galaxy J4+ 2018 Duos TD-LTE LATAM 32GB", + "brand": "samsung", + "soc": "snapdragon-425", + "release_date": "2018-10-01", + "ram_gb": 2.0, + "battery_mah": 3300, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Brazil , Chile , Colombia , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/samsung/2018/sm-j415g-galaxy-j4-2018-td-lte-latam-16gb.json b/data/smartphone/samsung/2018/sm-j415g-galaxy-j4-2018-td-lte-latam-16gb.json new file mode 100644 index 00000000000..9ab8cfdf248 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-j415g-galaxy-j4-2018-td-lte-latam-16gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-j415g-galaxy-j4-2018-td-lte-latam-16gb", + "name": "SM-J415G Galaxy J4+ 2018 TD-LTE LATAM 16GB", + "brand": "samsung", + "soc": "snapdragon-425", + "release_date": "2018-09-01", + "ram_gb": 2.0, + "battery_mah": 3300, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Peru", + "market_regions": "South America" +} diff --git a/data/smartphone/samsung/2018/sm-j415g-galaxy-j4-2018-td-lte-latam-32gb.json b/data/smartphone/samsung/2018/sm-j415g-galaxy-j4-2018-td-lte-latam-32gb.json new file mode 100644 index 00000000000..88e23eeaced --- /dev/null +++ b/data/smartphone/samsung/2018/sm-j415g-galaxy-j4-2018-td-lte-latam-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-j415g-galaxy-j4-2018-td-lte-latam-32gb", + "name": "SM-J415G Galaxy J4+ 2018 TD-LTE LATAM 32GB", + "brand": "samsung", + "soc": "snapdragon-425", + "release_date": "2018-09-01", + "ram_gb": 2.0, + "battery_mah": 3300, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Mexico , Paraguay , Puerto Rico", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/samsung/2018/sm-j415gn-ds-galaxy-j4-2018-duos-td-lte-apac-16gb.json b/data/smartphone/samsung/2018/sm-j415gn-ds-galaxy-j4-2018-duos-td-lte-apac-16gb.json new file mode 100644 index 00000000000..d5115596ea1 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-j415gn-ds-galaxy-j4-2018-duos-td-lte-apac-16gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-j415gn-ds-galaxy-j4-2018-duos-td-lte-apac-16gb", + "name": "SM-J415GN/DS Galaxy J4+ 2018 Duos TD-LTE APAC 16GB", + "brand": "samsung", + "soc": "snapdragon-425", + "release_date": "2018-09-24", + "ram_gb": 2.0, + "battery_mah": 3300, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , Philippines", + "market_regions": "Asia , Australia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/samsung/2018/sm-j415gn-ds-galaxy-j4-2018-duos-td-lte-apac-32gb.json b/data/smartphone/samsung/2018/sm-j415gn-ds-galaxy-j4-2018-duos-td-lte-apac-32gb.json new file mode 100644 index 00000000000..69a1c192c01 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-j415gn-ds-galaxy-j4-2018-duos-td-lte-apac-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-j415gn-ds-galaxy-j4-2018-duos-td-lte-apac-32gb", + "name": "SM-J415GN/DS Galaxy J4+ 2018 Duos TD-LTE APAC 32GB", + "brand": "samsung", + "soc": "snapdragon-425", + "release_date": "2018-09-24", + "ram_gb": 2.0, + "battery_mah": 3300, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , HK", + "market_regions": "Asia , Australia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2018/sm-j415gn-galaxy-j4-2018-td-lte-apac-16gb.json b/data/smartphone/samsung/2018/sm-j415gn-galaxy-j4-2018-td-lte-apac-16gb.json new file mode 100644 index 00000000000..836e16a4162 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-j415gn-galaxy-j4-2018-td-lte-apac-16gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-j415gn-galaxy-j4-2018-td-lte-apac-16gb", + "name": "SM-J415GN Galaxy J4+ 2018 TD-LTE APAC 16GB", + "brand": "samsung", + "soc": "snapdragon-425", + "release_date": "2018-09-01", + "ram_gb": 2.0, + "battery_mah": 3300, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , NZ", + "market_regions": "Australia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2018/sm-j415n-galaxy-j4-plus-2018-td-lte-kr-32gb.json b/data/smartphone/samsung/2018/sm-j415n-galaxy-j4-plus-2018-td-lte-kr-32gb.json new file mode 100644 index 00000000000..eaf59ccc486 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-j415n-galaxy-j4-plus-2018-td-lte-kr-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-j415n-galaxy-j4-plus-2018-td-lte-kr-32gb", + "name": "SM-J415N Galaxy J4 Plus 2018 TD-LTE KR 32GB", + "brand": "samsung", + "soc": "snapdragon-425", + "release_date": "2018-11-12", + "ram_gb": 3.0, + "battery_mah": 3300, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2018/sm-j610f-ds-galaxy-j6-2018-duos-td-lte-emea-apac-32gb.json b/data/smartphone/samsung/2018/sm-j610f-ds-galaxy-j6-2018-duos-td-lte-emea-apac-32gb.json new file mode 100644 index 00000000000..5865245c09d --- /dev/null +++ b/data/smartphone/samsung/2018/sm-j610f-ds-galaxy-j6-2018-duos-td-lte-emea-apac-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-j610f-ds-galaxy-j6-2018-duos-td-lte-emea-apac-32gb", + "name": "SM-J610F/DS Galaxy J6+ 2018 Duos TD-LTE EMEA APAC 32GB", + "brand": "samsung", + "soc": "snapdragon-425", + "release_date": "2018-10-06", + "ram_gb": 3.0, + "battery_mah": 3300, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Indonesia , Israel , Kenya , Pakistan , Poland , Russia , South Africa , UAE , UK , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2018/sm-j610f-ds-galaxy-j6-2018-duos-td-lte-emea-apac-64gb.json b/data/smartphone/samsung/2018/sm-j610f-ds-galaxy-j6-2018-duos-td-lte-emea-apac-64gb.json new file mode 100644 index 00000000000..535163a9985 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-j610f-ds-galaxy-j6-2018-duos-td-lte-emea-apac-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-j610f-ds-galaxy-j6-2018-duos-td-lte-emea-apac-64gb", + "name": "SM-J610F/DS Galaxy J6+ 2018 Duos TD-LTE EMEA APAC 64GB", + "brand": "samsung", + "soc": "snapdragon-425", + "release_date": "2018-10-01", + "ram_gb": 4.0, + "battery_mah": 3300, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Germany , Hungary , India , Indonesia , Italy , Malaysia , Romania , Russia , Singapore , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2018/sm-j610fn-ds-galaxy-j6-2018-duos-td-lte-emea-32gb.json b/data/smartphone/samsung/2018/sm-j610fn-ds-galaxy-j6-2018-duos-td-lte-emea-32gb.json new file mode 100644 index 00000000000..522db612104 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-j610fn-ds-galaxy-j6-2018-duos-td-lte-emea-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-j610fn-ds-galaxy-j6-2018-duos-td-lte-emea-32gb", + "name": "SM-J610FN/DS Galaxy J6+ 2018 Duos TD-LTE EMEA 32GB", + "brand": "samsung", + "soc": "snapdragon-425", + "release_date": "2018-09-24", + "ram_gb": 3.0, + "battery_mah": 3300, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Austria , Belgium , Bulgaria , Czech , Estonia , Finland , Germany , Hungary , Israel , Italy , Latvia , Lithuania , Netherlands , Poland , Portugal , Russia , Slovakia , Slovenia , Spain , UAE , UK", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/samsung/2018/sm-j610g-ds-galaxy-j6-2018-duos-td-lte-apac-64gb.json b/data/smartphone/samsung/2018/sm-j610g-ds-galaxy-j6-2018-duos-td-lte-apac-64gb.json new file mode 100644 index 00000000000..41c0355f028 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-j610g-ds-galaxy-j6-2018-duos-td-lte-apac-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-j610g-ds-galaxy-j6-2018-duos-td-lte-apac-64gb", + "name": "SM-J610G/DS Galaxy J6+ 2018 Duos TD-LTE APAC 64GB", + "brand": "samsung", + "soc": "snapdragon-425", + "release_date": "2018-10-06", + "ram_gb": 4.0, + "battery_mah": 3300, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , NZ , Taiwan", + "market_regions": "Asia , Australia" +} diff --git a/data/smartphone/samsung/2018/sm-j610g-ds-galaxy-j6-2018-duos-td-lte-latam-apac-32gb.json b/data/smartphone/samsung/2018/sm-j610g-ds-galaxy-j6-2018-duos-td-lte-latam-apac-32gb.json new file mode 100644 index 00000000000..7653b2a0750 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-j610g-ds-galaxy-j6-2018-duos-td-lte-latam-apac-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-j610g-ds-galaxy-j6-2018-duos-td-lte-latam-apac-32gb", + "name": "SM-J610G/DS Galaxy J6+ 2018 Duos TD-LTE LATAM APAC 32GB", + "brand": "samsung", + "soc": "snapdragon-425", + "release_date": "2018-10-06", + "ram_gb": 3.0, + "battery_mah": 3300, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Brazil , Chile , Honduras , Mexico , Philippines , Puerto Rico", + "market_regions": "Asia , Central America , Oceania , South America , Southeast Asia" +} diff --git a/data/smartphone/samsung/2018/sm-j610g-galaxy-j6-spark-2018-td-lte-latam-au-32gb.json b/data/smartphone/samsung/2018/sm-j610g-galaxy-j6-spark-2018-td-lte-latam-au-32gb.json new file mode 100644 index 00000000000..42e0138eb49 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-j610g-galaxy-j6-spark-2018-td-lte-latam-au-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-j610g-galaxy-j6-spark-2018-td-lte-latam-au-32gb", + "name": "SM-J610G Galaxy J6+ Spark 2018 TD-LTE LATAM AU 32GB", + "brand": "samsung", + "soc": "snapdragon-425", + "release_date": "2018-10-01", + "ram_gb": 3.0, + "battery_mah": 3300, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Argentina , Australia , Colombia , Ecuador , Mexico , NZ , Paraguay", + "market_regions": "Australia , North America , South America" +} diff --git a/data/smartphone/samsung/2018/sm-j810g-ds-galaxy-on8-2018-duos-td-lte-in-64gb-galaxy-j8-2018.json b/data/smartphone/samsung/2018/sm-j810g-ds-galaxy-on8-2018-duos-td-lte-in-64gb-galaxy-j8-2018.json new file mode 100644 index 00000000000..340bcab9293 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-j810g-ds-galaxy-on8-2018-duos-td-lte-in-64gb-galaxy-j8-2018.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-j810g-ds-galaxy-on8-2018-duos-td-lte-in-64gb-galaxy-j8-2018", + "name": "SM-J810G/DS Galaxy On8 2018 Duos TD-LTE IN 64GB / Galaxy J8 2018", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2018-08-06", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.05, + "resolution": "720x1480", + "type": "AM-OLED display", + "ppi": 272 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2018/sm-j810m-ds-galaxy-j8-2018-duos-td-lte-latam-32gb.json b/data/smartphone/samsung/2018/sm-j810m-ds-galaxy-j8-2018-duos-td-lte-latam-32gb.json new file mode 100644 index 00000000000..83d55667c79 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-j810m-ds-galaxy-j8-2018-duos-td-lte-latam-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-j810m-ds-galaxy-j8-2018-duos-td-lte-latam-32gb", + "name": "SM-J810M/DS Galaxy J8 2018 Duos TD-LTE LATAM 32GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2018-08-01", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.05, + "resolution": "720x1480", + "type": "AM-OLED display", + "ppi": 272 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Brazil , Costa Rica , Guatemala , Honduras , Puerto Rico", + "market_regions": "Central America , South America" +} diff --git a/data/smartphone/samsung/2018/sm-j810m-ds-galaxy-j8-2018-duos-td-lte-latam-64gb.json b/data/smartphone/samsung/2018/sm-j810m-ds-galaxy-j8-2018-duos-td-lte-latam-64gb.json new file mode 100644 index 00000000000..f6d25e9c5c7 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-j810m-ds-galaxy-j8-2018-duos-td-lte-latam-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-j810m-ds-galaxy-j8-2018-duos-td-lte-latam-64gb", + "name": "SM-J810M/DS Galaxy J8 2018 Duos TD-LTE LATAM 64GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2018-08-01", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.05, + "resolution": "720x1480", + "type": "AM-OLED display", + "ppi": 272 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Brazil , Honduras , Panama , Peru , Puerto Rico", + "market_regions": "Central America , South America" +} diff --git a/data/smartphone/samsung/2018/sm-j810m-galaxy-j8-2018-td-lte-latam-32gb.json b/data/smartphone/samsung/2018/sm-j810m-galaxy-j8-2018-td-lte-latam-32gb.json new file mode 100644 index 00000000000..d734a9d70f3 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-j810m-galaxy-j8-2018-td-lte-latam-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-j810m-galaxy-j8-2018-td-lte-latam-32gb", + "name": "SM-J810M Galaxy J8 2018 TD-LTE LATAM 32GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2018-08-01", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.05, + "resolution": "720x1480", + "type": "AM-OLED display", + "ppi": 272 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2018/sm-j810m-galaxy-j8-2018-td-lte-latam-64gb.json b/data/smartphone/samsung/2018/sm-j810m-galaxy-j8-2018-td-lte-latam-64gb.json new file mode 100644 index 00000000000..354cc19119f --- /dev/null +++ b/data/smartphone/samsung/2018/sm-j810m-galaxy-j8-2018-td-lte-latam-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-j810m-galaxy-j8-2018-td-lte-latam-64gb", + "name": "SM-J810M Galaxy J8 2018 TD-LTE LATAM 64GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2018-08-01", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.05, + "resolution": "720x1480", + "type": "AM-OLED display", + "ppi": 272 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Argentina , Colombia , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/samsung/2018/sm-n9600-galaxy-note-9-duos-td-lte-cn-128gb.json b/data/smartphone/samsung/2018/sm-n9600-galaxy-note-9-duos-td-lte-cn-128gb.json new file mode 100644 index 00000000000..03b7b631c11 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-n9600-galaxy-note-9-duos-td-lte-cn-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-n9600-galaxy-note-9-duos-td-lte-cn-128gb", + "name": "SM-N9600 Galaxy Note 9 Duos TD-LTE CN 128GB", + "brand": "samsung", + "soc": "snapdragon-845", + "release_date": "2018-08-31", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 201.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 516 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2018/sm-n9600-galaxy-note-9-special-edition-duos-td-lte-cn-512gb.json b/data/smartphone/samsung/2018/sm-n9600-galaxy-note-9-special-edition-duos-td-lte-cn-512gb.json new file mode 100644 index 00000000000..d958b1847ec --- /dev/null +++ b/data/smartphone/samsung/2018/sm-n9600-galaxy-note-9-special-edition-duos-td-lte-cn-512gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-n9600-galaxy-note-9-special-edition-duos-td-lte-cn-512gb", + "name": "SM-N9600 Galaxy Note 9 Special Edition Duos TD-LTE CN 512GB", + "brand": "samsung", + "soc": "snapdragon-845", + "release_date": "2018-08-31", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 201.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 516 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2018/sm-n960d-galaxy-note-9-td-lte-jp-sc-01l-sgh-n058.json b/data/smartphone/samsung/2018/sm-n960d-galaxy-note-9-td-lte-jp-sc-01l-sgh-n058.json new file mode 100644 index 00000000000..b2896820d7b --- /dev/null +++ b/data/smartphone/samsung/2018/sm-n960d-galaxy-note-9-td-lte-jp-sc-01l-sgh-n058.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-n960d-galaxy-note-9-td-lte-jp-sc-01l-sgh-n058", + "name": "SM-N960D Galaxy Note 9 TD-LTE JP SC-01L / SGH-N058", + "brand": "samsung", + "soc": "snapdragon-845", + "release_date": "2018-10-26", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 201.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 516 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2018/sm-n960f-ds-galaxy-note9-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2018/sm-n960f-ds-galaxy-note9-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..41b370a3a9b --- /dev/null +++ b/data/smartphone/samsung/2018/sm-n960f-ds-galaxy-note9-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-n960f-ds-galaxy-note9-global-dual-sim-td-lte-128gb", + "name": "SM-N960F/DS Galaxy Note9 Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-9810", + "release_date": "2018-08-22", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 201.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 516 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Australia , Austria , Belgium , Bulgaria , Croatia , Cyprus , Czech , Denmark , Estonia , Egypt , Finland , France , Greece , Germany , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , NZ , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , Sweden , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/samsung/2018/sm-n960f-ds-galaxy-note9-global-dual-sim-td-lte-512gb.json b/data/smartphone/samsung/2018/sm-n960f-ds-galaxy-note9-global-dual-sim-td-lte-512gb.json new file mode 100644 index 00000000000..70809419e6f --- /dev/null +++ b/data/smartphone/samsung/2018/sm-n960f-ds-galaxy-note9-global-dual-sim-td-lte-512gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-n960f-ds-galaxy-note9-global-dual-sim-td-lte-512gb", + "name": "SM-N960F/DS Galaxy Note9 Global Dual SIM TD-LTE 512GB", + "brand": "samsung", + "soc": "exynos-9810", + "release_date": "2018-08-22", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 201.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 516 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Australia , Austria , Belgium , Bulgaria , Croatia , Cyprus , Czech , Denmark , Estonia , Egypt , Finland , France , Greece , Germany , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , NZ , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , Sweden , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/samsung/2018/sm-n960f-galaxy-note9-global-td-lte-128gb.json b/data/smartphone/samsung/2018/sm-n960f-galaxy-note9-global-td-lte-128gb.json new file mode 100644 index 00000000000..4cc04eea58f --- /dev/null +++ b/data/smartphone/samsung/2018/sm-n960f-galaxy-note9-global-td-lte-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-n960f-galaxy-note9-global-td-lte-128gb", + "name": "SM-N960F Galaxy Note9 Global TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-9810", + "release_date": "2018-08-24", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 201.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 516 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Australia , Austria , Belgium , Bulgaria , Chile , Croatia , Cyprus , Czech , Denmark , Estonia , Egypt , Finland , France , Greece , Germany , Hungary , Ireland , Israel , Italy , Jordan , Latvia , Lithuania , Netherlands , Norway , NZ , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Slovenia , South Africa , Spain , Switzerland , Sweden , Turkey , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , South America , Western Europe" +} diff --git a/data/smartphone/samsung/2018/sm-n960j-galaxy-note-9-wimax-2-scv40.json b/data/smartphone/samsung/2018/sm-n960j-galaxy-note-9-wimax-2-scv40.json new file mode 100644 index 00000000000..89a609d8da3 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-n960j-galaxy-note-9-wimax-2-scv40.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-n960j-galaxy-note-9-wimax-2-scv40", + "name": "SM-N960J Galaxy Note 9 WiMAX 2+ SCV40", + "brand": "samsung", + "soc": "snapdragon-845", + "release_date": "2018-10-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 201.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 514 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2018/sm-n960n-galaxy-note9-special-edition-td-lte-kr-512gb.json b/data/smartphone/samsung/2018/sm-n960n-galaxy-note9-special-edition-td-lte-kr-512gb.json new file mode 100644 index 00000000000..bb0e43b2f0a --- /dev/null +++ b/data/smartphone/samsung/2018/sm-n960n-galaxy-note9-special-edition-td-lte-kr-512gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-n960n-galaxy-note9-special-edition-td-lte-kr-512gb", + "name": "SM-N960N Galaxy Note9 Special Edition TD-LTE KR 512GB", + "brand": "samsung", + "soc": "exynos-9810", + "release_date": "2018-08-24", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 201.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 516 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2018/sm-n960n-galaxy-note9-td-lte-kr-128gb.json b/data/smartphone/samsung/2018/sm-n960n-galaxy-note9-td-lte-kr-128gb.json new file mode 100644 index 00000000000..f10fa21e140 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-n960n-galaxy-note9-td-lte-kr-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-n960n-galaxy-note9-td-lte-kr-128gb", + "name": "SM-N960N Galaxy Note9 TD-LTE KR 128GB", + "brand": "samsung", + "soc": "exynos-9810", + "release_date": "2018-08-24", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 201.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 516 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2018/sm-n960u-galaxy-note-9-td-lte-us-128gb.json b/data/smartphone/samsung/2018/sm-n960u-galaxy-note-9-td-lte-us-128gb.json new file mode 100644 index 00000000000..a1c5428f7ee --- /dev/null +++ b/data/smartphone/samsung/2018/sm-n960u-galaxy-note-9-td-lte-us-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-n960u-galaxy-note-9-td-lte-us-128gb", + "name": "SM-N960U Galaxy Note 9 TD-LTE US 128GB", + "brand": "samsung", + "soc": "snapdragon-845", + "release_date": "2018-08-24", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 201.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 516 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 999, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2018/sm-n960u-galaxy-note-9-td-lte-us-512gb.json b/data/smartphone/samsung/2018/sm-n960u-galaxy-note-9-td-lte-us-512gb.json new file mode 100644 index 00000000000..0dac3420f26 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-n960u-galaxy-note-9-td-lte-us-512gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-n960u-galaxy-note-9-td-lte-us-512gb", + "name": "SM-N960U Galaxy Note 9 TD-LTE US 512GB", + "brand": "samsung", + "soc": "snapdragon-845", + "release_date": "2018-08-24", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 201.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 516 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1249, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2018/sm-n960u1-galaxy-note-9-td-lte-us-128gb.json b/data/smartphone/samsung/2018/sm-n960u1-galaxy-note-9-td-lte-us-128gb.json new file mode 100644 index 00000000000..d544c22ec32 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-n960u1-galaxy-note-9-td-lte-us-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-n960u1-galaxy-note-9-td-lte-us-128gb", + "name": "SM-N960U1 Galaxy Note 9 TD-LTE US 128GB", + "brand": "samsung", + "soc": "snapdragon-845", + "release_date": "2018-08-24", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 201.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 516 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 999, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2018/sm-n960u1-galaxy-note-9-td-lte-us-512gb.json b/data/smartphone/samsung/2018/sm-n960u1-galaxy-note-9-td-lte-us-512gb.json new file mode 100644 index 00000000000..5cfc0ab3e52 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-n960u1-galaxy-note-9-td-lte-us-512gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-n960u1-galaxy-note-9-td-lte-us-512gb", + "name": "SM-N960U1 Galaxy Note 9 TD-LTE US 512GB", + "brand": "samsung", + "soc": "snapdragon-845", + "release_date": "2018-08-24", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 201.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 516 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1249, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2018/sm-n960w-galaxy-note-9-td-lte-ca-128gb.json b/data/smartphone/samsung/2018/sm-n960w-galaxy-note-9-td-lte-ca-128gb.json new file mode 100644 index 00000000000..e29391f2a33 --- /dev/null +++ b/data/smartphone/samsung/2018/sm-n960w-galaxy-note-9-td-lte-ca-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-n960w-galaxy-note-9-td-lte-ca-128gb", + "name": "SM-N960W Galaxy Note 9 TD-LTE CA 128GB", + "brand": "samsung", + "soc": "snapdragon-845", + "release_date": "2018-08-24", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 201.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 516 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-a015f-ds-galaxy-a01-2019-global-dual-sim-td-lte.json b/data/smartphone/samsung/2019/sm-a015f-ds-galaxy-a01-2019-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..79df0e4d6e8 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a015f-ds-galaxy-a01-2019-global-dual-sim-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a015f-ds-galaxy-a01-2019-global-dual-sim-td-lte", + "name": "SM-A015F/DS Galaxy A01 2019 Global Dual SIM TD-LTE", + "brand": "samsung", + "soc": "snapdragon-439", + "release_date": "2019-12-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 149.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color PLS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Algeria , Armenia , Egypt , Kazakhstan , Kenya , Nigeria , Pakistan , Russia , Saudi Arabia , UAE , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia" +} diff --git a/data/smartphone/samsung/2019/sm-a107f-ds-galaxy-a10s-2019-premium-edition-global-dual-sim-td-lte.json b/data/smartphone/samsung/2019/sm-a107f-ds-galaxy-a10s-2019-premium-edition-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..2c4080e75a9 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a107f-ds-galaxy-a10s-2019-premium-edition-global-dual-sim-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a107f-ds-galaxy-a10s-2019-premium-edition-global-dual-sim-td-lte", + "name": "SM-A107F/DS Galaxy A10s 2019 Premium Edition Global Dual SIM TD-LTE", + "brand": "samsung", + "soc": "helio-p22", + "release_date": "2019-09-13", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color PLS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Belarus , Bulgaria , France , Germany , HK , Hungary , India , Italy , Poland , Romania , Russia , Saudi Arabia , Singapore , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-a107f-ds-galaxy-a10s-2019-standard-edition-global-dual-sim-td-lte.json b/data/smartphone/samsung/2019/sm-a107f-ds-galaxy-a10s-2019-standard-edition-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..6e86ccd595b --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a107f-ds-galaxy-a10s-2019-standard-edition-global-dual-sim-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a107f-ds-galaxy-a10s-2019-standard-edition-global-dual-sim-td-lte", + "name": "SM-A107F/DS Galaxy A10s 2019 Standard Edition Global Dual SIM TD-LTE", + "brand": "samsung", + "soc": "helio-p22", + "release_date": "2019-09-13", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color PLS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "HK , Hungary , India , Kenya , Malaysia , Nigeria , Pakistan , Philippines , Poland , Russia , Romania , Saudi Arabia , Singapore , South Africa , Sri Lanka , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-a107f-galaxy-a10s-2019-standard-edition-global-td-lte.json b/data/smartphone/samsung/2019/sm-a107f-galaxy-a10s-2019-standard-edition-global-td-lte.json new file mode 100644 index 00000000000..17e9e5346e7 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a107f-galaxy-a10s-2019-standard-edition-global-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a107f-galaxy-a10s-2019-standard-edition-global-td-lte", + "name": "SM-A107F Galaxy A10s 2019 Standard Edition Global TD-LTE", + "brand": "samsung", + "soc": "helio-p22", + "release_date": "2019-09-13", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color PLS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Israel , South Africa , Turkey , UK", + "market_regions": "Africa , Asia , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-a107m-ds-galaxy-a10s-2019-standard-edition-dual-sim-lte-latam.json b/data/smartphone/samsung/2019/sm-a107m-ds-galaxy-a10s-2019-standard-edition-dual-sim-lte-latam.json new file mode 100644 index 00000000000..f341cd876e0 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a107m-ds-galaxy-a10s-2019-standard-edition-dual-sim-lte-latam.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a107m-ds-galaxy-a10s-2019-standard-edition-dual-sim-lte-latam", + "name": "SM-A107M/DS Galaxy A10s 2019 Standard Edition Dual SIM LTE LATAM", + "brand": "samsung", + "soc": "helio-p22", + "release_date": "2019-10-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color PLS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Brazil , Costa Rica , Peru", + "market_regions": "Central America , South America" +} diff --git a/data/smartphone/samsung/2019/sm-a107m-galaxy-a10s-2019-standard-edition-lte-latam.json b/data/smartphone/samsung/2019/sm-a107m-galaxy-a10s-2019-standard-edition-lte-latam.json new file mode 100644 index 00000000000..4c3d67d7112 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a107m-galaxy-a10s-2019-standard-edition-lte-latam.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a107m-galaxy-a10s-2019-standard-edition-lte-latam", + "name": "SM-A107M Galaxy A10s 2019 Standard Edition LTE LATAM", + "brand": "samsung", + "soc": "helio-p22", + "release_date": "2019-09-13", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color PLS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "msrp_usd": 4139, + "market_countries": "Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205p.json b/data/smartphone/samsung/2019/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205p.json new file mode 100644 index 00000000000..81bfa68ae9f --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205p.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205p", + "name": "SM-A205U Galaxy A20 2019 TD-LTE US / SM-A205P", + "brand": "samsung", + "soc": "exynos-7904", + "release_date": "2019-07-31", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.38, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 250, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205r4.json b/data/smartphone/samsung/2019/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205r4.json new file mode 100644 index 00000000000..bc2056c9799 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205r4.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205r4", + "name": "SM-A205U Galaxy A20 2019 TD-LTE US / SM-A205R4", + "brand": "samsung", + "soc": "exynos-7904", + "release_date": "2019-07-31", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.38, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 250, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205t.json b/data/smartphone/samsung/2019/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205t.json new file mode 100644 index 00000000000..ea700572b0f --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205t.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205t", + "name": "SM-A205U Galaxy A20 2019 TD-LTE US / SM-A205T", + "brand": "samsung", + "soc": "exynos-7904", + "release_date": "2019-07-26", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.38, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 249, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205v.json b/data/smartphone/samsung/2019/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205v.json new file mode 100644 index 00000000000..b4e822a51e0 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205v.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205v", + "name": "SM-A205U Galaxy A20 2019 TD-LTE US / SM-A205V", + "brand": "samsung", + "soc": "exynos-7904", + "release_date": "2019-08-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.38, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 250, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-a205u1-galaxy-a20-2019-td-lte-us.json b/data/smartphone/samsung/2019/sm-a205u1-galaxy-a20-2019-td-lte-us.json new file mode 100644 index 00000000000..e1eaa33da42 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a205u1-galaxy-a20-2019-td-lte-us.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a205u1-galaxy-a20-2019-td-lte-us", + "name": "SM-A205U1 Galaxy A20 2019 TD-LTE US", + "brand": "samsung", + "soc": "exynos-7904", + "release_date": "2019-08-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.38, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 250, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-a2070-galaxy-a20s-2019-dual-sim-td-lte-cn-64gb.json b/data/smartphone/samsung/2019/sm-a2070-galaxy-a20s-2019-dual-sim-td-lte-cn-64gb.json new file mode 100644 index 00000000000..793b8020497 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a2070-galaxy-a20s-2019-dual-sim-td-lte-cn-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a2070-galaxy-a20s-2019-dual-sim-td-lte-cn-64gb", + "name": "SM-A2070 Galaxy A20s 2019 Dual SIM TD-LTE CN 64GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2019-11-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.49, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 265 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-a207f-ds-galaxy-a20s-2019-global-dual-sim-td-lte-32gb.json b/data/smartphone/samsung/2019/sm-a207f-ds-galaxy-a20s-2019-global-dual-sim-td-lte-32gb.json new file mode 100644 index 00000000000..97983456a6e --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a207f-ds-galaxy-a20s-2019-global-dual-sim-td-lte-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a207f-ds-galaxy-a20s-2019-global-dual-sim-td-lte-32gb", + "name": "SM-A207F/DS Galaxy A20s 2019 Global Dual SIM TD-LTE 32GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2019-09-21", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.49, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 265 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Bulgaria , Egypt , Germany , Hungary , India , Indonesia , Jordan , Kenya , Kuwait , Malaysia , Pakistan , Poland , Russia , Romania , Saudi Arabia , South Africa , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-a207f-ds-galaxy-a20s-2019-global-dual-sim-td-lte-64gb.json b/data/smartphone/samsung/2019/sm-a207f-ds-galaxy-a20s-2019-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..bfbf808cd30 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a207f-ds-galaxy-a20s-2019-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a207f-ds-galaxy-a20s-2019-global-dual-sim-td-lte-64gb", + "name": "SM-A207F/DS Galaxy A20s 2019 Global Dual SIM TD-LTE 64GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2019-09-21", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.49, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 265 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Germany , Hungary , India , Pakistan , Poland , Romania , Russia , UK , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-a207f-galaxy-a20s-2019-global-td-lte-32gb.json b/data/smartphone/samsung/2019/sm-a207f-galaxy-a20s-2019-global-td-lte-32gb.json new file mode 100644 index 00000000000..2b794a9f11e --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a207f-galaxy-a20s-2019-global-td-lte-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a207f-galaxy-a20s-2019-global-td-lte-32gb", + "name": "SM-A207F Galaxy A20s 2019 Global TD-LTE 32GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2019-09-23", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.49, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 265 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Egypt , France , Germany , Italy , Kenya , Russia , South Africa , Turkey , UK", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-a207m-ds-galaxy-a20s-2019-dual-sim-td-lte-latam-32gb.json b/data/smartphone/samsung/2019/sm-a207m-ds-galaxy-a20s-2019-dual-sim-td-lte-latam-32gb.json new file mode 100644 index 00000000000..a0f1b48f631 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a207m-ds-galaxy-a20s-2019-dual-sim-td-lte-latam-32gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a207m-ds-galaxy-a20s-2019-dual-sim-td-lte-latam-32gb", + "name": "SM-A207M/DS Galaxy A20s 2019 Dual SIM TD-LTE LATAM 32GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2019-10-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.49, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 265 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 170, + "market_countries": "Brazil , Colombia , Costa Rica , Honduras , Mexico , Panama , Puerto Rico", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/samsung/2019/sm-a207m-galaxy-a20s-2019-td-lte-latam-32gb.json b/data/smartphone/samsung/2019/sm-a207m-galaxy-a20s-2019-td-lte-latam-32gb.json new file mode 100644 index 00000000000..e581e1bd757 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a207m-galaxy-a20s-2019-td-lte-latam-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a207m-galaxy-a20s-2019-td-lte-latam-32gb", + "name": "SM-A207M Galaxy A20s 2019 TD-LTE LATAM 32GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2019-10-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.49, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 265 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Chile , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/samsung/2019/sm-a3050-ds-galaxy-a40s-2019-dual-sim-td-lte-cn.json b/data/smartphone/samsung/2019/sm-a3050-ds-galaxy-a40s-2019-dual-sim-td-lte-cn.json new file mode 100644 index 00000000000..8829ee172d8 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a3050-ds-galaxy-a40s-2019-dual-sim-td-lte-cn.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a3050-ds-galaxy-a40s-2019-dual-sim-td-lte-cn", + "name": "SM-A3050/DS Galaxy A40s 2019 Dual SIM TD-LTE CN", + "brand": "samsung", + "soc": "exynos-7904", + "release_date": "2019-05-04", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 174.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "msrp_usd": 1499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-a3058-ds-galaxy-a40s-4g-2019-dual-sim-td-lte-cn.json b/data/smartphone/samsung/2019/sm-a3058-ds-galaxy-a40s-4g-2019-dual-sim-td-lte-cn.json new file mode 100644 index 00000000000..20a9adbef79 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a3058-ds-galaxy-a40s-4g-2019-dual-sim-td-lte-cn.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a3058-ds-galaxy-a40s-4g-2019-dual-sim-td-lte-cn", + "name": "SM-A3058/DS Galaxy A40s 4G+ 2019 Dual SIM TD-LTE CN", + "brand": "samsung", + "soc": "exynos-7904", + "release_date": "2019-05-04", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 174.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "msrp_usd": 1499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-a305f-ds-galaxy-a30-2019-global-dual-sim-td-lte-64gb.json b/data/smartphone/samsung/2019/sm-a305f-ds-galaxy-a30-2019-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..887d4ab6366 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a305f-ds-galaxy-a30-2019-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a305f-ds-galaxy-a30-2019-global-dual-sim-td-lte-64gb", + "name": "SM-A305F/DS Galaxy A30 2019 Global Dual SIM TD-LTE 64GB", + "brand": "samsung", + "soc": "exynos-7904", + "release_date": "2019-03-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "Egypt , Germany , Hungary , India , Indonesia , Kenya , Malaysia , Pakistan , Poland , Romania , Russia , Saudi Arabia , South Africa , UAE , UK", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-a305fn-galaxy-a30-2019-td-lte-emea-64gb.json b/data/smartphone/samsung/2019/sm-a305fn-galaxy-a30-2019-td-lte-emea-64gb.json new file mode 100644 index 00000000000..8eec2217207 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a305fn-galaxy-a30-2019-td-lte-emea-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a305fn-galaxy-a30-2019-td-lte-emea-64gb", + "name": "SM-A305FN Galaxy A30 2019 TD-LTE EMEA 64GB", + "brand": "samsung", + "soc": "exynos-7904", + "release_date": "2019-03-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "Czech , France , Germany , Ireland , Italy , Slovakia , Spain , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-a305g-ds-galaxy-a30-2019-dual-sim-td-lte-latam-32gb.json b/data/smartphone/samsung/2019/sm-a305g-ds-galaxy-a30-2019-dual-sim-td-lte-latam-32gb.json new file mode 100644 index 00000000000..af165cc95cb --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a305g-ds-galaxy-a30-2019-dual-sim-td-lte-latam-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a305g-ds-galaxy-a30-2019-dual-sim-td-lte-latam-32gb", + "name": "SM-A305G/DS Galaxy A30 2019 Dual SIM TD-LTE LATAM 32GB", + "brand": "samsung", + "soc": "exynos-7904", + "release_date": "2019-04-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Costa Rica , Guatemala , Panama , Peru", + "market_regions": "Central America , South America" +} diff --git a/data/smartphone/samsung/2019/sm-a305g-galaxy-a30-2019-td-lte-latam-32gb.json b/data/smartphone/samsung/2019/sm-a305g-galaxy-a30-2019-td-lte-latam-32gb.json new file mode 100644 index 00000000000..7ce794bec38 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a305g-galaxy-a30-2019-td-lte-latam-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a305g-galaxy-a30-2019-td-lte-latam-32gb", + "name": "SM-A305G Galaxy A30 2019 TD-LTE LATAM 32GB", + "brand": "samsung", + "soc": "exynos-7904", + "release_date": "2019-04-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-a305j-galaxy-a30-2019-td-lte-jp-64gb-scv43-sm-a305jx.json b/data/smartphone/samsung/2019/sm-a305j-galaxy-a30-2019-td-lte-jp-64gb-scv43-sm-a305jx.json new file mode 100644 index 00000000000..377cfe550c7 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a305j-galaxy-a30-2019-td-lte-jp-64gb-scv43-sm-a305jx.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a305j-galaxy-a30-2019-td-lte-jp-64gb-scv43-sm-a305jx", + "name": "SM-A305J Galaxy A30 2019 TD-LTE JP 64GB SCV43 / SM-A305JX", + "brand": "samsung", + "soc": "exynos-7904", + "release_date": "2019-06-06", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-a305n-galaxy-a30-2019-td-lte-kr-32gb.json b/data/smartphone/samsung/2019/sm-a305n-galaxy-a30-2019-td-lte-kr-32gb.json new file mode 100644 index 00000000000..8f04635ddd1 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a305n-galaxy-a30-2019-td-lte-kr-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a305n-galaxy-a30-2019-td-lte-kr-32gb", + "name": "SM-A305N Galaxy A30 2019 TD-LTE KR 32GB", + "brand": "samsung", + "soc": "exynos-7904", + "release_date": "2019-04-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-a307fn-ds-galaxy-a30s-2019-dual-sim-td-lte-emea-in-128gb.json b/data/smartphone/samsung/2019/sm-a307fn-ds-galaxy-a30s-2019-dual-sim-td-lte-emea-in-128gb.json new file mode 100644 index 00000000000..67303b0af0f --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a307fn-ds-galaxy-a30s-2019-dual-sim-td-lte-emea-in-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a307fn-ds-galaxy-a30s-2019-dual-sim-td-lte-emea-in-128gb", + "name": "SM-A307FN/DS Galaxy A30s 2019 Dual SIM TD-LTE EMEA IN 128GB", + "brand": "samsung", + "soc": "exynos-7904", + "release_date": "2019-12-28", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 24.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belarus , Belgium , Bulgaria , Egypt , Germany , Hungary , India , Kenya , Pakistan , Poland , Russia , Romania , Saudi Arabia , South Africa , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-a307fn-ds-galaxy-a30s-2019-dual-sim-td-lte-emea-in-64gb.json b/data/smartphone/samsung/2019/sm-a307fn-ds-galaxy-a30s-2019-dual-sim-td-lte-emea-in-64gb.json new file mode 100644 index 00000000000..bc49063b012 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a307fn-ds-galaxy-a30s-2019-dual-sim-td-lte-emea-in-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a307fn-ds-galaxy-a30s-2019-dual-sim-td-lte-emea-in-64gb", + "name": "SM-A307FN/DS Galaxy A30s 2019 Dual SIM TD-LTE EMEA IN 64GB", + "brand": "samsung", + "soc": "exynos-7904", + "release_date": "2019-08-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 24.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 279, + "market_countries": "Belarus , Belgium , Croatia , Czech , Denmark , Egypt , Germany , Hungary , India , Kenya , Pakistan , Poland , Russia , Romania , Saudi Arabia , South Africa , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-a307g-ds-galaxy-a30s-2019-dual-sim-td-lte-latam.json b/data/smartphone/samsung/2019/sm-a307g-ds-galaxy-a30s-2019-dual-sim-td-lte-latam.json new file mode 100644 index 00000000000..e8b54068a55 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a307g-ds-galaxy-a30s-2019-dual-sim-td-lte-latam.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a307g-ds-galaxy-a30s-2019-dual-sim-td-lte-latam", + "name": "SM-A307G/DS Galaxy A30s 2019 Dual SIM TD-LTE LATAM", + "brand": "samsung", + "soc": "exynos-7904", + "release_date": "2019-10-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 24.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Costa Rica , Honduras , Peru", + "market_regions": "Central America , South America" +} diff --git a/data/smartphone/samsung/2019/sm-a307g-galaxy-a30s-2019-td-lte-latam.json b/data/smartphone/samsung/2019/sm-a307g-galaxy-a30s-2019-td-lte-latam.json new file mode 100644 index 00000000000..77c9ffc9e1b --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a307g-galaxy-a30s-2019-td-lte-latam.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a307g-galaxy-a30s-2019-td-lte-latam", + "name": "SM-A307G Galaxy A30s 2019 TD-LTE LATAM", + "brand": "samsung", + "soc": "exynos-7904", + "release_date": "2019-10-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 24.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Chile , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/samsung/2019/sm-a307gn-ds-galaxy-a30s-2019-dual-sim-td-lte-apac-na-128gb.json b/data/smartphone/samsung/2019/sm-a307gn-ds-galaxy-a30s-2019-dual-sim-td-lte-apac-na-128gb.json new file mode 100644 index 00000000000..45216df76e9 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a307gn-ds-galaxy-a30s-2019-dual-sim-td-lte-apac-na-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a307gn-ds-galaxy-a30s-2019-dual-sim-td-lte-apac-na-128gb", + "name": "SM-A307GN/DS Galaxy A30s 2019 Dual SIM TD-LTE APAC NA 128GB", + "brand": "samsung", + "soc": "exynos-7904", + "release_date": "2019-09-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 24.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada , HK , Indonesia , Malaysia , USA , Vietnam", + "market_regions": "Asia , North America , Southeast Asia" +} diff --git a/data/smartphone/samsung/2019/sm-a307gn-ds-galaxy-a30s-2019-dual-sim-td-lte-apac-na-64gb.json b/data/smartphone/samsung/2019/sm-a307gn-ds-galaxy-a30s-2019-dual-sim-td-lte-apac-na-64gb.json new file mode 100644 index 00000000000..21578364f9a --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a307gn-ds-galaxy-a30s-2019-dual-sim-td-lte-apac-na-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a307gn-ds-galaxy-a30s-2019-dual-sim-td-lte-apac-na-64gb", + "name": "SM-A307GN/DS Galaxy A30s 2019 Dual SIM TD-LTE APAC NA 64GB", + "brand": "samsung", + "soc": "exynos-7904", + "release_date": "2019-08-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 24.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada , HK , Indonesia , Malaysia , Singapore , Thailand , USA , Vietnam", + "market_regions": "Asia , North America , Southeast Asia" +} diff --git a/data/smartphone/samsung/2019/sm-a307gt-ds-galaxy-a30s-dtv-2019-dual-sim-td-lte-br-64gb.json b/data/smartphone/samsung/2019/sm-a307gt-ds-galaxy-a30s-dtv-2019-dual-sim-td-lte-br-64gb.json new file mode 100644 index 00000000000..94049fb1fbf --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a307gt-ds-galaxy-a30s-dtv-2019-dual-sim-td-lte-br-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a307gt-ds-galaxy-a30s-dtv-2019-dual-sim-td-lte-br-64gb", + "name": "SM-A307GT/DS Galaxy A30s DTV 2019 Dual SIM TD-LTE BR 64GB", + "brand": "samsung", + "soc": "exynos-7904", + "release_date": "2019-10-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 24.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil", + "market_regions": "South America" +} diff --git a/data/smartphone/samsung/2019/sm-a405fm-ds-galaxy-a40-2019-global-dual-sim-td-lte-64gb.json b/data/smartphone/samsung/2019/sm-a405fm-ds-galaxy-a40-2019-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..67c306a0a6d --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a405fm-ds-galaxy-a40-2019-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a405fm-ds-galaxy-a40-2019-global-dual-sim-td-lte-64gb", + "name": "SM-A405FM/DS Galaxy A40 2019 Global Dual SIM TD-LTE 64GB", + "brand": "samsung", + "soc": "exynos-7885", + "release_date": "2019-04-01", + "ram_gb": 4.0, + "battery_mah": 3100, + "weight_g": 140.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.87, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Armenia , Belarus , Kazakhstan , Russia , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/samsung/2019/sm-a405fn-ds-galaxy-a40-2019-global-dual-sim-td-lte-64gb.json b/data/smartphone/samsung/2019/sm-a405fn-ds-galaxy-a40-2019-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..dbf86cc86c7 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a405fn-ds-galaxy-a40-2019-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a405fn-ds-galaxy-a40-2019-global-dual-sim-td-lte-64gb", + "name": "SM-A405FN/DS Galaxy A40 2019 Global Dual SIM TD-LTE 64GB", + "brand": "samsung", + "soc": "exynos-7885", + "release_date": "2019-04-09", + "ram_gb": 4.0, + "battery_mah": 3100, + "weight_g": 140.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.87, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 249, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , Cyprus , Czech , Estonia , France , Greece , Germany , Hungary , Ireland , Israel , Italy , Latvia , Lithuania , Netherlands , Norway , NZ , Poland , Portugal , Russia , Romania , Slovakia , Slovenia , Spain , UAE , UK , Ukraine", + "market_regions": "Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-a505f-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2019/sm-a505f-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..ae6004eab52 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a505f-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a505f-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb", + "name": "SM-A505F/DS Galaxy A50 2019 Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-9610", + "release_date": "2019-03-18", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belarus , Cyprus , Estonia , France , Germany , Greece , HK , Hungary , India , Israel , Italy , Latvia , Lithuania , Pakistan , Russia , South Africa , Spain , UAE , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-a505f-galaxy-a50-2019-global-td-lte-128gb.json b/data/smartphone/samsung/2019/sm-a505f-galaxy-a50-2019-global-td-lte-128gb.json new file mode 100644 index 00000000000..42e373f716e --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a505f-galaxy-a50-2019-global-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a505f-galaxy-a50-2019-global-td-lte-128gb", + "name": "SM-A505F Galaxy A50 2019 Global TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-9610", + "release_date": "2019-03-18", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Cyprus , Greece , Hungary , Ireland , Israel , Italy , Kenya , Pakistan , Portugal , Romania , Slovenia , South Africa , Spain , UK", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-a505fm-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2019/sm-a505fm-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..470ec268c76 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a505fm-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a505fm-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb", + "name": "SM-A505FM/DS Galaxy A50 2019 Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-9610", + "release_date": "2019-03-18", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Poland , Russia", + "market_regions": "Eastern Europe , Europe" +} diff --git a/data/smartphone/samsung/2019/sm-a505fm-ds-galaxy-a50-2019-global-dual-sim-td-lte-64gb.json b/data/smartphone/samsung/2019/sm-a505fm-ds-galaxy-a50-2019-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..7718f163909 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a505fm-ds-galaxy-a50-2019-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a505fm-ds-galaxy-a50-2019-global-dual-sim-td-lte-64gb", + "name": "SM-A505FM/DS Galaxy A50 2019 Global Dual SIM TD-LTE 64GB", + "brand": "samsung", + "soc": "exynos-9610", + "release_date": "2019-03-18", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Poland , Russia , UK", + "market_regions": "Eastern Europe , Europe" +} diff --git a/data/smartphone/samsung/2019/sm-a505fn-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2019/sm-a505fn-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..b6d89f7d874 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a505fn-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a505fn-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb", + "name": "SM-A505FN/DS Galaxy A50 2019 Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-9610", + "release_date": "2019-03-18", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 349, + "market_countries": "Czech , Estonia , France , Germany , Hungary , Ireland , Italy , Latvia , Lithuania , Russia , Slovakia , Spain , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-a505g-ds-galaxy-a50-2019-dual-sim-td-lte-latam-64gb.json b/data/smartphone/samsung/2019/sm-a505g-ds-galaxy-a50-2019-dual-sim-td-lte-latam-64gb.json new file mode 100644 index 00000000000..c2bc787a516 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a505g-ds-galaxy-a50-2019-dual-sim-td-lte-latam-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a505g-ds-galaxy-a50-2019-dual-sim-td-lte-latam-64gb", + "name": "SM-A505G/DS Galaxy A50 2019 Dual SIM TD-LTE LATAM 64GB", + "brand": "samsung", + "soc": "exynos-9610", + "release_date": "2019-03-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Chile , Costa Rica , Ecuador , Mexico , Paraguay , Peru , Puerto Rico", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/samsung/2019/sm-a505g-galaxy-a50-2019-td-lte-latam-128gb.json b/data/smartphone/samsung/2019/sm-a505g-galaxy-a50-2019-td-lte-latam-128gb.json new file mode 100644 index 00000000000..bbe318366eb --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a505g-galaxy-a50-2019-td-lte-latam-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a505g-galaxy-a50-2019-td-lte-latam-128gb", + "name": "SM-A505G Galaxy A50 2019 TD-LTE LATAM 128GB", + "brand": "samsung", + "soc": "exynos-9610", + "release_date": "2019-03-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-a505g-galaxy-a50-2019-td-lte-latam-64gb.json b/data/smartphone/samsung/2019/sm-a505g-galaxy-a50-2019-td-lte-latam-64gb.json new file mode 100644 index 00000000000..668c222ee39 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a505g-galaxy-a50-2019-td-lte-latam-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a505g-galaxy-a50-2019-td-lte-latam-64gb", + "name": "SM-A505G Galaxy A50 2019 TD-LTE LATAM 64GB", + "brand": "samsung", + "soc": "exynos-9610", + "release_date": "2019-03-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Chile , Costa Rica , Mexico , Puerto Rico", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/samsung/2019/sm-a505gn-ds-galaxy-a50-2019-dual-sim-td-lte-apac-128gb-sm-a505yn-ds.json b/data/smartphone/samsung/2019/sm-a505gn-ds-galaxy-a50-2019-dual-sim-td-lte-apac-128gb-sm-a505yn-ds.json new file mode 100644 index 00000000000..ccc4eecf469 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a505gn-ds-galaxy-a50-2019-dual-sim-td-lte-apac-128gb-sm-a505yn-ds.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a505gn-ds-galaxy-a50-2019-dual-sim-td-lte-apac-128gb-sm-a505yn-ds", + "name": "SM-A505GN/DS Galaxy A50 2019 Dual SIM TD-LTE APAC 128GB / SM-A505YN/DS", + "brand": "samsung", + "soc": "exynos-9610", + "release_date": "2019-04-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , HK , Malaysia , NZ , Philippines , Taiwan", + "market_regions": "Asia , Australia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/samsung/2019/sm-a505n-galaxy-a50-2019-td-lte-kr-64gb.json b/data/smartphone/samsung/2019/sm-a505n-galaxy-a50-2019-td-lte-kr-64gb.json new file mode 100644 index 00000000000..99720ee7a30 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a505n-galaxy-a50-2019-td-lte-kr-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a505n-galaxy-a50-2019-td-lte-kr-64gb", + "name": "SM-A505N Galaxy A50 2019 TD-LTE KR 64GB", + "brand": "samsung", + "soc": "exynos-9610", + "release_date": "2019-06-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-a505u-galaxy-a50-2019-lte-a-us-64gb-sm-a505v.json b/data/smartphone/samsung/2019/sm-a505u-galaxy-a50-2019-lte-a-us-64gb-sm-a505v.json new file mode 100644 index 00000000000..7d9cd4c1476 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a505u-galaxy-a50-2019-lte-a-us-64gb-sm-a505v.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a505u-galaxy-a50-2019-lte-a-us-64gb-sm-a505v", + "name": "SM-A505U Galaxy A50 2019 LTE-A US 64GB / SM-A505V", + "brand": "samsung", + "soc": "exynos-9610", + "release_date": "2019-06-13", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-a505u-galaxy-a50-2019-td-lte-us-64gb-sm-a505p.json b/data/smartphone/samsung/2019/sm-a505u-galaxy-a50-2019-td-lte-us-64gb-sm-a505p.json new file mode 100644 index 00000000000..de91150e374 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a505u-galaxy-a50-2019-td-lte-us-64gb-sm-a505p.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a505u-galaxy-a50-2019-td-lte-us-64gb-sm-a505p", + "name": "SM-A505U Galaxy A50 2019 TD-LTE US 64GB / SM-A505P", + "brand": "samsung", + "soc": "exynos-9610", + "release_date": "2019-06-13", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 350, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-a505u-galaxy-a50-2019-td-lte-us-64gb-sm-a505r4.json b/data/smartphone/samsung/2019/sm-a505u-galaxy-a50-2019-td-lte-us-64gb-sm-a505r4.json new file mode 100644 index 00000000000..7f4cc1df170 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a505u-galaxy-a50-2019-td-lte-us-64gb-sm-a505r4.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a505u-galaxy-a50-2019-td-lte-us-64gb-sm-a505r4", + "name": "SM-A505U Galaxy A50 2019 TD-LTE US 64GB / SM-A505R4", + "brand": "samsung", + "soc": "exynos-9610", + "release_date": "2019-06-13", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 350, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-a505u1-galaxy-a50-2019-td-lte-us-64gb.json b/data/smartphone/samsung/2019/sm-a505u1-galaxy-a50-2019-td-lte-us-64gb.json new file mode 100644 index 00000000000..d694f2ea554 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a505u1-galaxy-a50-2019-td-lte-us-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a505u1-galaxy-a50-2019-td-lte-us-64gb", + "name": "SM-A505U1 Galaxy A50 2019 TD-LTE US 64GB", + "brand": "samsung", + "soc": "exynos-9610", + "release_date": "2019-08-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-a505w-galaxy-a50-2019-td-lte-ca-64gb.json b/data/smartphone/samsung/2019/sm-a505w-galaxy-a50-2019-td-lte-ca-64gb.json new file mode 100644 index 00000000000..3a507720151 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a505w-galaxy-a50-2019-td-lte-ca-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a505w-galaxy-a50-2019-td-lte-ca-64gb", + "name": "SM-A505W Galaxy A50 2019 TD-LTE CA 64GB", + "brand": "samsung", + "soc": "exynos-9610", + "release_date": "2019-06-07", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-a505yn-galaxy-a50-2019-td-lte-au-64gb-sm-a505gn.json b/data/smartphone/samsung/2019/sm-a505yn-galaxy-a50-2019-td-lte-au-64gb-sm-a505gn.json new file mode 100644 index 00000000000..0e512874578 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a505yn-galaxy-a50-2019-td-lte-au-64gb-sm-a505gn.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a505yn-galaxy-a50-2019-td-lte-au-64gb-sm-a505gn", + "name": "SM-A505YN Galaxy A50 2019 TD-LTE AU 64GB / SM-A505GN", + "brand": "samsung", + "soc": "exynos-9610", + "release_date": "2019-04-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , NZ", + "market_regions": "Australia" +} diff --git a/data/smartphone/samsung/2019/sm-a5070-galaxy-a50s-2019-dual-sim-td-lte-cn-128gb.json b/data/smartphone/samsung/2019/sm-a5070-galaxy-a50s-2019-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..177695a4064 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a5070-galaxy-a50s-2019-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a5070-galaxy-a50s-2019-dual-sim-td-lte-cn-128gb", + "name": "SM-A5070 Galaxy A50s 2019 Dual SIM TD-LTE CN 128GB", + "brand": "samsung", + "soc": "exynos-9610", + "release_date": "2019-10-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-a507fn-ds-galaxy-a50s-2019-premium-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2019/sm-a507fn-ds-galaxy-a50s-2019-premium-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..b8a2ce21c56 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a507fn-ds-galaxy-a50s-2019-premium-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a507fn-ds-galaxy-a50s-2019-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A507FN/DS Galaxy A50s 2019 Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-9610", + "release_date": "2019-09-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belarus , Cyprus , Estonia , France , Greece , Germany , HK , Hungary , India , Israel , Italy , Latvia , Lithuania , Pakistan , Philippines , Russia , South Africa , Spain , UAE , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-a507fn-ds-galaxy-a50s-2019-standard-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2019/sm-a507fn-ds-galaxy-a50s-2019-standard-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..ba5eee8a6cf --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a507fn-ds-galaxy-a50s-2019-standard-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a507fn-ds-galaxy-a50s-2019-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A507FN/DS Galaxy A50s 2019 Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-9610", + "release_date": "2019-09-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belarus , Cyprus , Estonia , France , Germany , Greece , HK , Hungary , India , Israel , Italy , Latvia , Lithuania , Pakistan , Russia , South Africa , Spain , UAE , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-a6060-ds-galaxy-a60-2019-dual-sim-td-lte-cn-128gb.json b/data/smartphone/samsung/2019/sm-a6060-ds-galaxy-a60-2019-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..2252757c8fb --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a6060-ds-galaxy-a60-2019-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a6060-ds-galaxy-a60-2019-dual-sim-td-lte-cn-128gb", + "name": "SM-A6060/DS Galaxy A60 2019 Dual SIM TD-LTE CN 128GB", + "brand": "samsung", + "soc": "snapdragon-675", + "release_date": "2019-05-04", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color PLS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-a6060-ds-galaxy-a60-2019-dual-sim-td-lte-cn-64gb.json b/data/smartphone/samsung/2019/sm-a6060-ds-galaxy-a60-2019-dual-sim-td-lte-cn-64gb.json new file mode 100644 index 00000000000..3f75b6fc73e --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a6060-ds-galaxy-a60-2019-dual-sim-td-lte-cn-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a6060-ds-galaxy-a60-2019-dual-sim-td-lte-cn-64gb", + "name": "SM-A6060/DS Galaxy A60 2019 Dual SIM TD-LTE CN 64GB", + "brand": "samsung", + "soc": "snapdragon-675", + "release_date": "2019-05-04", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color PLS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-a7050-galaxy-a70-2019-premium-edition-dual-sim-td-lte-apac-128gb.json b/data/smartphone/samsung/2019/sm-a7050-galaxy-a70-2019-premium-edition-dual-sim-td-lte-apac-128gb.json new file mode 100644 index 00000000000..752117536e6 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a7050-galaxy-a70-2019-premium-edition-dual-sim-td-lte-apac-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a7050-galaxy-a70-2019-premium-edition-dual-sim-td-lte-apac-128gb", + "name": "SM-A7050 Galaxy A70 2019 Premium Edition Dual SIM TD-LTE APAC 128GB", + "brand": "samsung", + "soc": "snapdragon-675", + "release_date": "2019-05-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , Japan , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2019/sm-a7050-galaxy-a70-2019-standard-edition-dual-sim-td-lte-apac-128gb.json b/data/smartphone/samsung/2019/sm-a7050-galaxy-a70-2019-standard-edition-dual-sim-td-lte-apac-128gb.json new file mode 100644 index 00000000000..15304f28332 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a7050-galaxy-a70-2019-standard-edition-dual-sim-td-lte-apac-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a7050-galaxy-a70-2019-standard-edition-dual-sim-td-lte-apac-128gb", + "name": "SM-A7050 Galaxy A70 2019 Standard Edition Dual SIM TD-LTE APAC 128GB", + "brand": "samsung", + "soc": "snapdragon-675", + "release_date": "2019-05-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , Japan , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2019/sm-a705f-ds-galaxy-a70-2019-standard-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2019/sm-a705f-ds-galaxy-a70-2019-standard-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..6f7479940b4 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a705f-ds-galaxy-a70-2019-standard-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a705f-ds-galaxy-a70-2019-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A705F/DS Galaxy A70 2019 Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "snapdragon-675", + "release_date": "2019-04-26", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Egypt , Hungary , Indonesia , Malaysia , Pakistan , Poland , Russia , Serbia , Slovakia , Thailand , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-a705fn-ds-galaxy-a70-2019-premium-edition-dual-sim-td-lte-emea-128gb.json b/data/smartphone/samsung/2019/sm-a705fn-ds-galaxy-a70-2019-premium-edition-dual-sim-td-lte-emea-128gb.json new file mode 100644 index 00000000000..4f33489ece1 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a705fn-ds-galaxy-a70-2019-premium-edition-dual-sim-td-lte-emea-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a705fn-ds-galaxy-a70-2019-premium-edition-dual-sim-td-lte-emea-128gb", + "name": "SM-A705FN/DS Galaxy A70 2019 Premium Edition Dual SIM TD-LTE EMEA 128GB", + "brand": "samsung", + "soc": "snapdragon-675", + "release_date": "2019-04-26", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Czech , Denmark , Estonia , France , Greece , Germany , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , Spain , Sweden , Switzerland , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-a705fn-ds-galaxy-a70-2019-standard-edition-dual-sim-td-lte-emea-128gb.json b/data/smartphone/samsung/2019/sm-a705fn-ds-galaxy-a70-2019-standard-edition-dual-sim-td-lte-emea-128gb.json new file mode 100644 index 00000000000..f49c4856282 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a705fn-ds-galaxy-a70-2019-standard-edition-dual-sim-td-lte-emea-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a705fn-ds-galaxy-a70-2019-standard-edition-dual-sim-td-lte-emea-128gb", + "name": "SM-A705FN/DS Galaxy A70 2019 Standard Edition Dual SIM TD-LTE EMEA 128GB", + "brand": "samsung", + "soc": "snapdragon-675", + "release_date": "2019-04-11", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Cyprus , Czech , Denmark , Estonia , France , Germany , Greece , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Poland , Portugal , Russia , Romania , Slovakia , Slovenia , South Africa , Spain , Switzerland , Sweden , UK , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-a705fn-galaxy-a70-2019-standard-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2019/sm-a705fn-galaxy-a70-2019-standard-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..cb28d51e50e --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a705fn-galaxy-a70-2019-standard-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a705fn-galaxy-a70-2019-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A705FN Galaxy A70 2019 Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "snapdragon-675", + "release_date": "2019-04-26", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Ireland , South Africa , UK", + "market_regions": "Africa , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-a705gm-ds-galaxy-a70-2019-standard-edition-dual-sim-td-lte-in-128gb.json b/data/smartphone/samsung/2019/sm-a705gm-ds-galaxy-a70-2019-standard-edition-dual-sim-td-lte-in-128gb.json new file mode 100644 index 00000000000..01377888ab2 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a705gm-ds-galaxy-a70-2019-standard-edition-dual-sim-td-lte-in-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a705gm-ds-galaxy-a70-2019-standard-edition-dual-sim-td-lte-in-128gb", + "name": "SM-A705GM/DS Galaxy A70 2019 Standard Edition Dual SIM TD-LTE IN 128GB", + "brand": "samsung", + "soc": "snapdragon-675", + "release_date": "2019-04-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-a705mn-ds-galaxy-a70-2019-dual-sim-td-lte-apac-am-128gb.json b/data/smartphone/samsung/2019/sm-a705mn-ds-galaxy-a70-2019-dual-sim-td-lte-apac-am-128gb.json new file mode 100644 index 00000000000..9ea1bef03f9 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a705mn-ds-galaxy-a70-2019-dual-sim-td-lte-apac-am-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a705mn-ds-galaxy-a70-2019-dual-sim-td-lte-apac-am-128gb", + "name": "SM-A705MN/DS Galaxy A70 2019 Dual SIM TD-LTE APAC AM 128GB", + "brand": "samsung", + "soc": "snapdragon-675", + "release_date": "2019-04-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Costa Rica , Ecuador , HK , Japan , Paraguay , Peru , Puerto Rico , Singapore , Thailand", + "market_regions": "Asia , Central America , South America , Southeast Asia" +} diff --git a/data/smartphone/samsung/2019/sm-a705mn-galaxy-a70-2019-td-lte-am-128gb.json b/data/smartphone/samsung/2019/sm-a705mn-galaxy-a70-2019-td-lte-am-128gb.json new file mode 100644 index 00000000000..99f8d54538c --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a705mn-galaxy-a70-2019-td-lte-am-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a705mn-galaxy-a70-2019-td-lte-am-128gb", + "name": "SM-A705MN Galaxy A70 2019 TD-LTE AM 128GB", + "brand": "samsung", + "soc": "snapdragon-675", + "release_date": "2019-04-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Canada , Mexico , Singapore", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/samsung/2019/sm-a705w-galaxy-a70-2019-td-lte-ca-128gb.json b/data/smartphone/samsung/2019/sm-a705w-galaxy-a70-2019-td-lte-ca-128gb.json new file mode 100644 index 00000000000..5914bbadcfe --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a705w-galaxy-a70-2019-td-lte-ca-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a705w-galaxy-a70-2019-td-lte-ca-128gb", + "name": "SM-A705W Galaxy A70 2019 TD-LTE CA 128GB", + "brand": "samsung", + "soc": "snapdragon-675", + "release_date": "2019-06-07", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-a705yn-galaxy-a70-2019-td-lte-au-128gb.json b/data/smartphone/samsung/2019/sm-a705yn-galaxy-a70-2019-td-lte-au-128gb.json new file mode 100644 index 00000000000..e579c0ffcb6 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a705yn-galaxy-a70-2019-td-lte-au-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a705yn-galaxy-a70-2019-td-lte-au-128gb", + "name": "SM-A705YN Galaxy A70 2019 TD-LTE AU 128GB", + "brand": "samsung", + "soc": "snapdragon-675", + "release_date": "2019-05-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , NZ", + "market_regions": "Australia" +} diff --git a/data/smartphone/samsung/2019/sm-a7070-galaxy-a70s-2019-dual-sim-td-lte-cn.json b/data/smartphone/samsung/2019/sm-a7070-galaxy-a70s-2019-dual-sim-td-lte-cn.json new file mode 100644 index 00000000000..a363b2287e1 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a7070-galaxy-a70s-2019-dual-sim-td-lte-cn.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a7070-galaxy-a70s-2019-dual-sim-td-lte-cn", + "name": "SM-A7070 Galaxy A70s 2019 Dual SIM TD-LTE CN", + "brand": "samsung", + "soc": "snapdragon-675", + "release_date": "2019-11-11", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 187.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-a707f-dsm-galaxy-a70s-2019-premium-edition-global-dual-sim-td-lte.json b/data/smartphone/samsung/2019/sm-a707f-dsm-galaxy-a70s-2019-premium-edition-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..019fd7e06e8 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a707f-dsm-galaxy-a70s-2019-premium-edition-global-dual-sim-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a707f-dsm-galaxy-a70s-2019-premium-edition-global-dual-sim-td-lte", + "name": "SM-A707F/DSM Galaxy A70s 2019 Premium Edition Global Dual SIM TD-LTE", + "brand": "samsung", + "soc": "snapdragon-675", + "release_date": "2019-09-29", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 187.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Cyprus , Czech , Finland , Greece , Germany , Hungary , India , Indonesia , Malaysia , Norway , Pakistan , Poland , Russia , Slovakia , Slovenia , Thailand , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-a707f-dsm-galaxy-a70s-2019-standard-edition-global-dual-sim-td-lte.json b/data/smartphone/samsung/2019/sm-a707f-dsm-galaxy-a70s-2019-standard-edition-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..f4e31386546 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a707f-dsm-galaxy-a70s-2019-standard-edition-global-dual-sim-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a707f-dsm-galaxy-a70s-2019-standard-edition-global-dual-sim-td-lte", + "name": "SM-A707F/DSM Galaxy A70s 2019 Standard Edition Global Dual SIM TD-LTE", + "brand": "samsung", + "soc": "snapdragon-675", + "release_date": "2019-09-29", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 187.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Cyprus , Czech , Finland , Greece , Germany , Hungary , India , Indonesia , Malaysia , Norway , Pakistan , Poland , Russia , Slovakia , Slovenia , Thailand , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-a750c-galaxy-a7-2018-duos-td-lte-jp-64gb.json b/data/smartphone/samsung/2019/sm-a750c-galaxy-a7-2018-duos-td-lte-jp-64gb.json new file mode 100644 index 00000000000..9a5f9240950 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a750c-galaxy-a7-2018-duos-td-lte-jp-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a750c-galaxy-a7-2018-duos-td-lte-jp-64gb", + "name": "SM-A750C Galaxy A7 2018 Duos TD-LTE JP 64GB", + "brand": "samsung", + "soc": "exynos-7885", + "release_date": "2019-09-06", + "ram_gb": 4.0, + "battery_mah": 3300, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-a8050-galaxy-a80-2019-dual-sim-td-lte-cn.json b/data/smartphone/samsung/2019/sm-a8050-galaxy-a80-2019-dual-sim-td-lte-cn.json new file mode 100644 index 00000000000..0f201b7ed01 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a8050-galaxy-a80-2019-dual-sim-td-lte-cn.json @@ -0,0 +1,38 @@ +{ + "slug": "sm-a8050-galaxy-a80-2019-dual-sim-td-lte-cn", + "name": "SM-A8050 Galaxy A80 2019 Dual SIM TD-LTE CN", + "brand": "samsung", + "soc": "snapdragon-730", + "release_date": "2019-07-19", + "ram_gb": 8.0, + "battery_mah": 3700, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-a805f-ds-galaxy-a80-2019-global-dual-sim-td-lte.json b/data/smartphone/samsung/2019/sm-a805f-ds-galaxy-a80-2019-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..4a2c9b32ecc --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a805f-ds-galaxy-a80-2019-global-dual-sim-td-lte.json @@ -0,0 +1,38 @@ +{ + "slug": "sm-a805f-ds-galaxy-a80-2019-global-dual-sim-td-lte", + "name": "SM-A805F/DS Galaxy A80 2019 Global Dual SIM TD-LTE", + "brand": "samsung", + "soc": "snapdragon-730", + "release_date": "2019-05-29", + "ram_gb": 8.0, + "battery_mah": 3700, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belarus , Brazil , Bulgaria , Costa Rica , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Guatemala , Honduras , Hungary , India , Indonesia , Iran , Ireland , Italy , Kuwait , Latvia , Lithuania , Malaysia , Myanmar , Netherlands , Norway , Peru , Puerto Rico , Romania , Russia , Saudi Arabia , Singapore , Slovakia , Slovenia , South Africa , Spain , Switzerland , Sweden , Thailand , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Central America , Eastern Europe , Europe , Middle East , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-a805f-galaxy-a80-2019-global-td-lte.json b/data/smartphone/samsung/2019/sm-a805f-galaxy-a80-2019-global-td-lte.json new file mode 100644 index 00000000000..56bfa9db705 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a805f-galaxy-a80-2019-global-td-lte.json @@ -0,0 +1,39 @@ +{ + "slug": "sm-a805f-galaxy-a80-2019-global-td-lte", + "name": "SM-A805F Galaxy A80 2019 Global TD-LTE", + "brand": "samsung", + "soc": "snapdragon-730", + "release_date": "2019-05-29", + "ram_gb": 8.0, + "battery_mah": 3700, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 649, + "market_countries": "Algeria , Austria , Belarus , Belgium , Cyprus , Croatia , Czech , Denmark , Finland , France , Germany , Greece , Hungary , Ireland , Israel , Italy , Mexico , Netherlands , Norway , Portugal , Russia , Romania , Slovakia , Slovenia , South Africa , Spain , Switzerland , Sweden , UK , Ukraine", + "market_regions": "Africa , Eastern Europe , Europe , Middle East , North America , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-a805n-galaxy-a80-2019-td-lte-kr.json b/data/smartphone/samsung/2019/sm-a805n-galaxy-a80-2019-td-lte-kr.json new file mode 100644 index 00000000000..52f17c0a0a8 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a805n-galaxy-a80-2019-td-lte-kr.json @@ -0,0 +1,38 @@ +{ + "slug": "sm-a805n-galaxy-a80-2019-td-lte-kr", + "name": "SM-A805N Galaxy A80 2019 TD-LTE KR", + "brand": "samsung", + "soc": "snapdragon-730", + "release_date": "2019-08-01", + "ram_gb": 8.0, + "battery_mah": 3700, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-a9080-galaxy-a90-2019-5g-dual-sim-td-lte-cn-128gb.json b/data/smartphone/samsung/2019/sm-a9080-galaxy-a90-2019-5g-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..234f0653424 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a9080-galaxy-a90-2019-5g-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a9080-galaxy-a90-2019-5g-dual-sim-td-lte-cn-128gb", + "name": "SM-A9080 Galaxy A90 2019 5G Dual SIM TD-LTE CN 128GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-11-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-a908b-galaxy-a90-2019-5g-global-td-lte-128gb.json b/data/smartphone/samsung/2019/sm-a908b-galaxy-a90-2019-5g-global-td-lte-128gb.json new file mode 100644 index 00000000000..9eee95f74f3 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a908b-galaxy-a90-2019-5g-global-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a908b-galaxy-a90-2019-5g-global-td-lte-128gb", + "name": "SM-A908B Galaxy A90 2019 5G Global TD-LTE 128GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-10-04", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Finland , France , Germany , Ireland , Italy , Spain , Switzerland , UK", + "market_regions": "Australia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-a908n-galaxy-a90-2019-5g-td-lte-kr-128gb.json b/data/smartphone/samsung/2019/sm-a908n-galaxy-a90-2019-5g-td-lte-kr-128gb.json new file mode 100644 index 00000000000..28b621aa687 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-a908n-galaxy-a90-2019-5g-td-lte-kr-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a908n-galaxy-a90-2019-5g-td-lte-kr-128gb", + "name": "SM-A908N Galaxy A90 2019 5G TD-LTE KR 128GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-09-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-f9000-galaxy-fold-td-lte-cn-512gb.json b/data/smartphone/samsung/2019/sm-f9000-galaxy-fold-td-lte-cn-512gb.json new file mode 100644 index 00000000000..a52d9524410 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-f9000-galaxy-fold-td-lte-cn-512gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-f9000-galaxy-fold-td-lte-cn-512gb", + "name": "SM-F9000 Galaxy Fold TD-LTE CN 512GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-11-01", + "ram_gb": 12.0, + "battery_mah": 4380, + "weight_g": 276.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 4.58, + "resolution": "720x1680", + "type": "AM-OLED display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2019/sm-f900f-galaxy-fold-global-td-lte-512gb.json b/data/smartphone/samsung/2019/sm-f900f-galaxy-fold-global-td-lte-512gb.json new file mode 100644 index 00000000000..fe4d62f8917 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-f900f-galaxy-fold-global-td-lte-512gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-f900f-galaxy-fold-global-td-lte-512gb", + "name": "SM-F900F Galaxy Fold Global TD-LTE 512GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-09-06", + "ram_gb": 12.0, + "battery_mah": 4380, + "weight_g": 276.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 4.58, + "resolution": "720x1680", + "type": "AM-OLED display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Cyprus , Czech , Denmark , Finland , France , Greece , Germany , Hungary , Ireland , Italy , Japan , Kuwait , Mexico , Netherlands , Norway , NZ , Poland , Portugal , Russia , Saudi Arabia , Singapore , Slovakia , Slovenia , South Africa , Spain , Switzerland , Sweden , UAE , UK", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/samsung/2019/sm-f900j-galaxy-fold-wimax-2-512gb-scv44.json b/data/smartphone/samsung/2019/sm-f900j-galaxy-fold-wimax-2-512gb-scv44.json new file mode 100644 index 00000000000..6fad3d365fa --- /dev/null +++ b/data/smartphone/samsung/2019/sm-f900j-galaxy-fold-wimax-2-512gb-scv44.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-f900j-galaxy-fold-wimax-2-512gb-scv44", + "name": "SM-F900J Galaxy Fold WiMAX 2+ 512GB SCV44", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-10-26", + "ram_gb": 12.0, + "battery_mah": 4380, + "weight_g": 276.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 4.58, + "resolution": "720x1680", + "type": "AM-OLED display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-f900u-galaxy-fold-td-lte-us-512gb.json b/data/smartphone/samsung/2019/sm-f900u-galaxy-fold-td-lte-us-512gb.json new file mode 100644 index 00000000000..e41ea5b3e15 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-f900u-galaxy-fold-td-lte-us-512gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-f900u-galaxy-fold-td-lte-us-512gb", + "name": "SM-F900U Galaxy Fold TD-LTE US 512GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-09-27", + "ram_gb": 12.0, + "battery_mah": 4380, + "weight_g": 276.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 4.58, + "resolution": "720x1680", + "type": "AM-OLED display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1980, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-f900u1-galaxy-fold-td-lte-us-512gb.json b/data/smartphone/samsung/2019/sm-f900u1-galaxy-fold-td-lte-us-512gb.json new file mode 100644 index 00000000000..7c785533608 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-f900u1-galaxy-fold-td-lte-us-512gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-f900u1-galaxy-fold-td-lte-us-512gb", + "name": "SM-F900U1 Galaxy Fold TD-LTE US 512GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-12-23", + "ram_gb": 12.0, + "battery_mah": 4380, + "weight_g": 276.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 4.58, + "resolution": "720x1680", + "type": "AM-OLED display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1999, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-f907b-galaxy-fold-5g-global-td-lte-512gb.json b/data/smartphone/samsung/2019/sm-f907b-galaxy-fold-5g-global-td-lte-512gb.json new file mode 100644 index 00000000000..56efb3df59d --- /dev/null +++ b/data/smartphone/samsung/2019/sm-f907b-galaxy-fold-5g-global-td-lte-512gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-f907b-galaxy-fold-5g-global-td-lte-512gb", + "name": "SM-F907B Galaxy Fold 5G Global TD-LTE 512GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-09-18", + "ram_gb": 12.0, + "battery_mah": 4234, + "weight_g": 276.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 4.58, + "resolution": "720x1680", + "type": "AM-OLED display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , France , Germany , Italy , Portugal , Spain , Switzerland , UK", + "market_regions": "Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-f907n-galaxy-fold-5g-td-lte-kr-512gb.json b/data/smartphone/samsung/2019/sm-f907n-galaxy-fold-5g-td-lte-kr-512gb.json new file mode 100644 index 00000000000..1ad8f46e3d1 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-f907n-galaxy-fold-5g-td-lte-kr-512gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-f907n-galaxy-fold-5g-td-lte-kr-512gb", + "name": "SM-F907N Galaxy Fold 5G TD-LTE KR 512GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-09-06", + "ram_gb": 12.0, + "battery_mah": 4234, + "weight_g": 276.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 4.58, + "resolution": "720x1680", + "type": "AM-OLED display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-g398fn-ds-galaxy-xcover-4s-2019-global-dual-sim-td-lte.json b/data/smartphone/samsung/2019/sm-g398fn-ds-galaxy-xcover-4s-2019-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..c7c5a187125 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g398fn-ds-galaxy-xcover-4s-2019-global-dual-sim-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g398fn-ds-galaxy-xcover-4s-2019-global-dual-sim-td-lte", + "name": "SM-G398FN/DS Galaxy Xcover 4s 2019 Global Dual SIM TD-LTE", + "brand": "samsung", + "soc": "exynos-7885", + "release_date": "2019-08-01", + "ram_gb": 3.0, + "battery_mah": 2800, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 4.99, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Yes" + }, + "msrp_usd": 299, + "market_countries": "Czech , Finland , France , Germany , Hungary , Italy , Norway , Romania , Russia , Saudi Arabia , Spain , UAE , UK", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-g398fn-galaxy-xcover-4s-2019-global-td-lte.json b/data/smartphone/samsung/2019/sm-g398fn-galaxy-xcover-4s-2019-global-td-lte.json new file mode 100644 index 00000000000..11d270836bb --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g398fn-galaxy-xcover-4s-2019-global-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g398fn-galaxy-xcover-4s-2019-global-td-lte", + "name": "SM-G398FN Galaxy Xcover 4s 2019 Global TD-LTE", + "brand": "samsung", + "soc": "exynos-7885", + "release_date": "2019-07-01", + "ram_gb": 3.0, + "battery_mah": 2800, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 4.99, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Yes" + }, + "msrp_usd": 299, + "market_countries": "Austria , Belgium , Cyprus , Czech , Denmark , Finland , France , Germany , Greece , Hungary , Italy , Netherlands , Norway , Portugal , Romania , Russia , Spain , Sweden , Switzerland , UK", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-g887f-ds-galaxy-a9-pro-2018-duos-global-td-lte-128gb.json b/data/smartphone/samsung/2019/sm-g887f-ds-galaxy-a9-pro-2018-duos-global-td-lte-128gb.json new file mode 100644 index 00000000000..5f2f9c3f709 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g887f-ds-galaxy-a9-pro-2018-duos-global-td-lte-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g887f-ds-galaxy-a9-pro-2018-duos-global-td-lte-128gb", + "name": "SM-G887F/DS Galaxy A9 Pro 2018 Duos Global TD-LTE 128GB", + "brand": "samsung", + "soc": "snapdragon-710", + "release_date": "2019-01-01", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "Color PLS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Czech , France , Germany , Hungary , Italy , Russia , Taiwan , UAE", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-g887n-galaxy-a9-pro-2018-td-lte-kr-128gb.json b/data/smartphone/samsung/2019/sm-g887n-galaxy-a9-pro-2018-td-lte-kr-128gb.json new file mode 100644 index 00000000000..ac8bb96331f --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g887n-galaxy-a9-pro-2018-td-lte-kr-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g887n-galaxy-a9-pro-2018-td-lte-kr-128gb", + "name": "SM-G887N Galaxy A9 Pro 2018 TD-LTE KR 128GB", + "brand": "samsung", + "soc": "snapdragon-710", + "release_date": "2019-02-28", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "Color PLS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-g9700-ds-galaxy-s10e-dual-sim-td-lte-cn-128gb.json b/data/smartphone/samsung/2019/sm-g9700-ds-galaxy-s10e-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..15b85b5b8ae --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g9700-ds-galaxy-s10e-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g9700-ds-galaxy-s10e-dual-sim-td-lte-cn-128gb", + "name": "SM-G9700/DS Galaxy S10E Dual SIM TD-LTE CN 128GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-03-19", + "ram_gb": 6.0, + "battery_mah": 3100, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.75, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-g9708-ds-galaxy-s10e-4g-dual-sim-td-lte-cn-128gb.json b/data/smartphone/samsung/2019/sm-g9708-ds-galaxy-s10e-4g-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..f9c30ea1a31 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g9708-ds-galaxy-s10e-4g-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g9708-ds-galaxy-s10e-4g-dual-sim-td-lte-cn-128gb", + "name": "SM-G9708/DS Galaxy S10E 4G+ Dual SIM TD-LTE CN 128GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-03-19", + "ram_gb": 6.0, + "battery_mah": 3100, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.75, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-g970f-ds-galaxy-s10e-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2019/sm-g970f-ds-galaxy-s10e-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..6fe876b78f2 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g970f-ds-galaxy-s10e-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g970f-ds-galaxy-s10e-global-dual-sim-td-lte-128gb", + "name": "SM-G970F/DS Galaxy S10E Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-9820", + "release_date": "2019-03-08", + "ram_gb": 6.0, + "battery_mah": 3100, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.75, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Brazil , Czech , Germany , HK , Hungary , India , Indonesia , Italy , Malaysia , NZ , Poland , Romania , Taiwan , Thailand , UAE , Vietnam", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-g970f-ds-galaxy-s10e-global-dual-sim-td-lte-256gb.json b/data/smartphone/samsung/2019/sm-g970f-ds-galaxy-s10e-global-dual-sim-td-lte-256gb.json new file mode 100644 index 00000000000..b708bd17cbe --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g970f-ds-galaxy-s10e-global-dual-sim-td-lte-256gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g970f-ds-galaxy-s10e-global-dual-sim-td-lte-256gb", + "name": "SM-G970F/DS Galaxy S10E Global Dual SIM TD-LTE 256GB", + "brand": "samsung", + "soc": "exynos-9820", + "release_date": "2019-03-08", + "ram_gb": 8.0, + "battery_mah": 3100, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.75, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Brazil , Czech , Germany , HK , Hungary , India , Indonesia , Italy , Malaysia , NZ , Poland , Romania , Taiwan , Thailand , UAE , Vietnam", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-g970f-galaxy-s10e-global-td-lte-128gb.json b/data/smartphone/samsung/2019/sm-g970f-galaxy-s10e-global-td-lte-128gb.json new file mode 100644 index 00000000000..f70144d8d87 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g970f-galaxy-s10e-global-td-lte-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g970f-galaxy-s10e-global-td-lte-128gb", + "name": "SM-G970F Galaxy S10E Global TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-9820", + "release_date": "2019-03-08", + "ram_gb": 6.0, + "battery_mah": 3100, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.75, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Belarus , Belgium , Bulgaria , Chile , Croatia , Cyprus , Czech , Denmark , Estonia , Egypt , Finland , France , Germany , Greece , Hungary , Ireland , Israel , Italy , Japan , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lithuania , Netherlands , Norway , NZ , Poland , Portugal , Romania , Russia , Saudi Arabia , Serbia , Slovakia , Slovenia , South Africa , Spain , Sweden , Switzerland , Turkey , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe , Worldwide" +} diff --git a/data/smartphone/samsung/2019/sm-g970n-galaxy-s10e-td-lte-kr-128gb.json b/data/smartphone/samsung/2019/sm-g970n-galaxy-s10e-td-lte-kr-128gb.json new file mode 100644 index 00000000000..c1772c3fe2c --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g970n-galaxy-s10e-td-lte-kr-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g970n-galaxy-s10e-td-lte-kr-128gb", + "name": "SM-G970N Galaxy S10E TD-LTE KR 128GB", + "brand": "samsung", + "soc": "exynos-9820", + "release_date": "2019-03-19", + "ram_gb": 6.0, + "battery_mah": 3100, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.75, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-g970n-galaxy-s10e-td-lte-kr-256gb.json b/data/smartphone/samsung/2019/sm-g970n-galaxy-s10e-td-lte-kr-256gb.json new file mode 100644 index 00000000000..728fb6fb954 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g970n-galaxy-s10e-td-lte-kr-256gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g970n-galaxy-s10e-td-lte-kr-256gb", + "name": "SM-G970N Galaxy S10E TD-LTE KR 256GB", + "brand": "samsung", + "soc": "exynos-9820", + "release_date": "2019-03-19", + "ram_gb": 8.0, + "battery_mah": 3100, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.75, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-g970u-galaxy-s10e-td-lte-us-128gb.json b/data/smartphone/samsung/2019/sm-g970u-galaxy-s10e-td-lte-us-128gb.json new file mode 100644 index 00000000000..e44725e08e3 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g970u-galaxy-s10e-td-lte-us-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g970u-galaxy-s10e-td-lte-us-128gb", + "name": "SM-G970U Galaxy S10E TD-LTE US 128GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-03-09", + "ram_gb": 6.0, + "battery_mah": 3100, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.75, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 600, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-g970u-galaxy-s10e-td-lte-us-256gb.json b/data/smartphone/samsung/2019/sm-g970u-galaxy-s10e-td-lte-us-256gb.json new file mode 100644 index 00000000000..d1bd441625d --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g970u-galaxy-s10e-td-lte-us-256gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g970u-galaxy-s10e-td-lte-us-256gb", + "name": "SM-G970U Galaxy S10E TD-LTE US 256GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-03-09", + "ram_gb": 8.0, + "battery_mah": 3100, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.75, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-g970u1-galaxy-s10e-td-lte-us-128gb.json b/data/smartphone/samsung/2019/sm-g970u1-galaxy-s10e-td-lte-us-128gb.json new file mode 100644 index 00000000000..0e289412204 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g970u1-galaxy-s10e-td-lte-us-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g970u1-galaxy-s10e-td-lte-us-128gb", + "name": "SM-G970U1 Galaxy S10E TD-LTE US 128GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-03-09", + "ram_gb": 6.0, + "battery_mah": 3100, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.75, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-g970u1-galaxy-s10e-td-lte-us-256gb.json b/data/smartphone/samsung/2019/sm-g970u1-galaxy-s10e-td-lte-us-256gb.json new file mode 100644 index 00000000000..58c2bb08351 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g970u1-galaxy-s10e-td-lte-us-256gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g970u1-galaxy-s10e-td-lte-us-256gb", + "name": "SM-G970U1 Galaxy S10E TD-LTE US 256GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-03-09", + "ram_gb": 8.0, + "battery_mah": 3100, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.75, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-g970w-galaxy-s10e-td-lte-ca-128gb.json b/data/smartphone/samsung/2019/sm-g970w-galaxy-s10e-td-lte-ca-128gb.json new file mode 100644 index 00000000000..37094aa89e8 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g970w-galaxy-s10e-td-lte-ca-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g970w-galaxy-s10e-td-lte-ca-128gb", + "name": "SM-G970W Galaxy S10E TD-LTE CA 128GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-03-09", + "ram_gb": 6.0, + "battery_mah": 3100, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.75, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-g970w-galaxy-s10e-td-lte-ca-256gb.json b/data/smartphone/samsung/2019/sm-g970w-galaxy-s10e-td-lte-ca-256gb.json new file mode 100644 index 00000000000..aabe7915337 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g970w-galaxy-s10e-td-lte-ca-256gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g970w-galaxy-s10e-td-lte-ca-256gb", + "name": "SM-G970W Galaxy S10E TD-LTE CA 256GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-03-09", + "ram_gb": 8.0, + "battery_mah": 3100, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.75, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-g9730-ds-galaxy-s10-dual-sim-td-lte-cn-128gb.json b/data/smartphone/samsung/2019/sm-g9730-ds-galaxy-s10-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..211cce3114a --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g9730-ds-galaxy-s10-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g9730-ds-galaxy-s10-dual-sim-td-lte-cn-128gb", + "name": "SM-G9730/DS Galaxy S10 Dual SIM TD-LTE CN 128GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-03-09", + "ram_gb": 8.0, + "battery_mah": 3400, + "weight_g": 157.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.11, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 551 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-g9730-ds-galaxy-s10-dual-sim-td-lte-cn-512gb.json b/data/smartphone/samsung/2019/sm-g9730-ds-galaxy-s10-dual-sim-td-lte-cn-512gb.json new file mode 100644 index 00000000000..f4273912d7c --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g9730-ds-galaxy-s10-dual-sim-td-lte-cn-512gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g9730-ds-galaxy-s10-dual-sim-td-lte-cn-512gb", + "name": "SM-G9730/DS Galaxy S10 Dual SIM TD-LTE CN 512GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-03-19", + "ram_gb": 8.0, + "battery_mah": 3400, + "weight_g": 157.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.11, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 551 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-g9738-ds-galaxy-s10-4g-dual-sim-td-lte-cn-128gb.json b/data/smartphone/samsung/2019/sm-g9738-ds-galaxy-s10-4g-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..870aefeb31b --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g9738-ds-galaxy-s10-4g-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g9738-ds-galaxy-s10-4g-dual-sim-td-lte-cn-128gb", + "name": "SM-G9738/DS Galaxy S10 4G+ Dual SIM TD-LTE CN 128GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-03-01", + "ram_gb": 8.0, + "battery_mah": 3400, + "weight_g": 157.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.11, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 551 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-g973c-galaxy-s10-td-lte-jp.json b/data/smartphone/samsung/2019/sm-g973c-galaxy-s10-td-lte-jp.json new file mode 100644 index 00000000000..6e0e1a81339 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g973c-galaxy-s10-td-lte-jp.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g973c-galaxy-s10-td-lte-jp", + "name": "SM-G973C Galaxy S10 TD-LTE JP", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-12-09", + "ram_gb": 8.0, + "battery_mah": 3400, + "weight_g": 157.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.11, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 551 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-g973d-galaxy-s10-td-lte-jp-sc-03l-sgh-n794.json b/data/smartphone/samsung/2019/sm-g973d-galaxy-s10-td-lte-jp-sc-03l-sgh-n794.json new file mode 100644 index 00000000000..518cf490360 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g973d-galaxy-s10-td-lte-jp-sc-03l-sgh-n794.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g973d-galaxy-s10-td-lte-jp-sc-03l-sgh-n794", + "name": "SM-G973D Galaxy S10 TD-LTE JP SC-03L / SGH-N794", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-06-02", + "ram_gb": 8.0, + "battery_mah": 3400, + "weight_g": 157.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.11, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 551 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-g973f-ds-galaxy-s10-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2019/sm-g973f-ds-galaxy-s10-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..c4b37e59c71 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g973f-ds-galaxy-s10-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g973f-ds-galaxy-s10-global-dual-sim-td-lte-128gb", + "name": "SM-G973F/DS Galaxy S10 Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-9820", + "release_date": "2019-03-08", + "ram_gb": 8.0, + "battery_mah": 3400, + "weight_g": 157.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.11, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 551 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belarus , Belgium , Brazil , Bulgaria , Cyprus , Czech , Denmark , Finland , France , Greece , Germany , Hungary , India , Indonesia , Israel , Italy , Japan , Malaysia , Norway , NZ , Philippines , Poland , Romania , Russia , Singapore , Sweden , Taiwan , Thailand , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/samsung/2019/sm-g973f-ds-galaxy-s10-global-dual-sim-td-lte-512gb.json b/data/smartphone/samsung/2019/sm-g973f-ds-galaxy-s10-global-dual-sim-td-lte-512gb.json new file mode 100644 index 00000000000..9b5a4b72707 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g973f-ds-galaxy-s10-global-dual-sim-td-lte-512gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g973f-ds-galaxy-s10-global-dual-sim-td-lte-512gb", + "name": "SM-G973F/DS Galaxy S10 Global Dual SIM TD-LTE 512GB", + "brand": "samsung", + "soc": "exynos-9820", + "release_date": "2019-03-08", + "ram_gb": 8.0, + "battery_mah": 3400, + "weight_g": 157.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.11, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 551 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belarus , Belgium , Brazil , Bulgaria , Cyprus , Czech , Denmark , Finland , France , Greece , Germany , Hungary , India , Indonesia , Israel , Italy , Japan , Malaysia , Norway , NZ , Philippines , Poland , Romania , Russia , Singapore , Sweden , Taiwan , Thailand , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/samsung/2019/sm-g973f-galaxy-s10-global-td-lte-128gb.json b/data/smartphone/samsung/2019/sm-g973f-galaxy-s10-global-td-lte-128gb.json new file mode 100644 index 00000000000..c44b9d8cc72 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g973f-galaxy-s10-global-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g973f-galaxy-s10-global-td-lte-128gb", + "name": "SM-G973F Galaxy S10 Global TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-9820", + "release_date": "2019-03-08", + "ram_gb": 8.0, + "battery_mah": 3400, + "weight_g": 157.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.11, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 551 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Belarus , Belgium , Bulgaria , Chile , Croatia , Cyprus , Czech , Denmark , Estonia , Egypt , Finland , France , Germany , Greece , Hungary , Ireland , Israel , Italy , Japan , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lithuania , Netherlands , Norway , NZ , Poland , Portugal , Romania , Russia , Saudi Arabia , Serbia , Slovakia , Slovenia , South Africa , Spain , Sweden , Switzerland , Turkey , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe , Worldwide" +} diff --git a/data/smartphone/samsung/2019/sm-g973j-galaxy-s10-wimax-2-jp-scv41.json b/data/smartphone/samsung/2019/sm-g973j-galaxy-s10-wimax-2-jp-scv41.json new file mode 100644 index 00000000000..b92fb8e3412 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g973j-galaxy-s10-wimax-2-jp-scv41.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g973j-galaxy-s10-wimax-2-jp-scv41", + "name": "SM-G973J Galaxy S10 WiMAX 2+ JP SCV41", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-05-23", + "ram_gb": 8.0, + "battery_mah": 3400, + "weight_g": 158.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.11, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 551 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-g973n-galaxy-s10-td-lte-kr-128gb.json b/data/smartphone/samsung/2019/sm-g973n-galaxy-s10-td-lte-kr-128gb.json new file mode 100644 index 00000000000..e9707b189ea --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g973n-galaxy-s10-td-lte-kr-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g973n-galaxy-s10-td-lte-kr-128gb", + "name": "SM-G973N Galaxy S10 TD-LTE KR 128GB", + "brand": "samsung", + "soc": "exynos-9820", + "release_date": "2019-03-06", + "ram_gb": 8.0, + "battery_mah": 3400, + "weight_g": 157.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.11, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 551 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-g973n-galaxy-s10-td-lte-kr-512gb.json b/data/smartphone/samsung/2019/sm-g973n-galaxy-s10-td-lte-kr-512gb.json new file mode 100644 index 00000000000..037f1b642c6 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g973n-galaxy-s10-td-lte-kr-512gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g973n-galaxy-s10-td-lte-kr-512gb", + "name": "SM-G973N Galaxy S10 TD-LTE KR 512GB", + "brand": "samsung", + "soc": "exynos-9820", + "release_date": "2019-03-06", + "ram_gb": 8.0, + "battery_mah": 3400, + "weight_g": 157.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.11, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 551 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-g973u-galaxy-s10-td-lte-us-128gb.json b/data/smartphone/samsung/2019/sm-g973u-galaxy-s10-td-lte-us-128gb.json new file mode 100644 index 00000000000..690183b3b18 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g973u-galaxy-s10-td-lte-us-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g973u-galaxy-s10-td-lte-us-128gb", + "name": "SM-G973U Galaxy S10 TD-LTE US 128GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-03-09", + "ram_gb": 8.0, + "battery_mah": 3400, + "weight_g": 157.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.11, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 551 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-g973u-galaxy-s10-td-lte-us-512gb.json b/data/smartphone/samsung/2019/sm-g973u-galaxy-s10-td-lte-us-512gb.json new file mode 100644 index 00000000000..40f30de7a57 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g973u-galaxy-s10-td-lte-us-512gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g973u-galaxy-s10-td-lte-us-512gb", + "name": "SM-G973U Galaxy S10 TD-LTE US 512GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-03-09", + "ram_gb": 8.0, + "battery_mah": 3400, + "weight_g": 157.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.11, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 551 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-g973u1-galaxy-s10-td-lte-us-128gb.json b/data/smartphone/samsung/2019/sm-g973u1-galaxy-s10-td-lte-us-128gb.json new file mode 100644 index 00000000000..d24b1cc4856 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g973u1-galaxy-s10-td-lte-us-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g973u1-galaxy-s10-td-lte-us-128gb", + "name": "SM-G973U1 Galaxy S10 TD-LTE US 128GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-03-09", + "ram_gb": 8.0, + "battery_mah": 3400, + "weight_g": 157.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.11, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 551 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-g973u1-galaxy-s10-td-lte-us-512gb.json b/data/smartphone/samsung/2019/sm-g973u1-galaxy-s10-td-lte-us-512gb.json new file mode 100644 index 00000000000..82db480404f --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g973u1-galaxy-s10-td-lte-us-512gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g973u1-galaxy-s10-td-lte-us-512gb", + "name": "SM-G973U1 Galaxy S10 TD-LTE US 512GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-03-09", + "ram_gb": 8.0, + "battery_mah": 3400, + "weight_g": 157.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.11, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 551 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-g973w-galaxy-s10-td-lte-ca-128gb.json b/data/smartphone/samsung/2019/sm-g973w-galaxy-s10-td-lte-ca-128gb.json new file mode 100644 index 00000000000..2fe1ee45070 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g973w-galaxy-s10-td-lte-ca-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g973w-galaxy-s10-td-lte-ca-128gb", + "name": "SM-G973W Galaxy S10 TD-LTE CA 128GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-03-19", + "ram_gb": 8.0, + "battery_mah": 3400, + "weight_g": 157.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.11, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 551 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-g973w-galaxy-s10-td-lte-ca-512gb.json b/data/smartphone/samsung/2019/sm-g973w-galaxy-s10-td-lte-ca-512gb.json new file mode 100644 index 00000000000..afcb21c25d7 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g973w-galaxy-s10-td-lte-ca-512gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g973w-galaxy-s10-td-lte-ca-512gb", + "name": "SM-G973W Galaxy S10 TD-LTE CA 512GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-03-19", + "ram_gb": 8.0, + "battery_mah": 3400, + "weight_g": 157.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.11, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 551 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-g9750-ds-galaxy-s10-dual-sim-td-lte-cn-128gb.json b/data/smartphone/samsung/2019/sm-g9750-ds-galaxy-s10-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..c4e7657dd55 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g9750-ds-galaxy-s10-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g9750-ds-galaxy-s10-dual-sim-td-lte-cn-128gb", + "name": "SM-G9750/DS Galaxy S10+ Dual SIM TD-LTE CN 128GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-03-01", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia , North America" +} diff --git a/data/smartphone/samsung/2019/sm-g9750-ds-galaxy-s10-dual-sim-td-lte-cn-512gb.json b/data/smartphone/samsung/2019/sm-g9750-ds-galaxy-s10-dual-sim-td-lte-cn-512gb.json new file mode 100644 index 00000000000..4416341f8e4 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g9750-ds-galaxy-s10-dual-sim-td-lte-cn-512gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g9750-ds-galaxy-s10-dual-sim-td-lte-cn-512gb", + "name": "SM-G9750/DS Galaxy S10+ Dual SIM TD-LTE CN 512GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-03-01", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia , North America" +} diff --git a/data/smartphone/samsung/2019/sm-g9750-ds-galaxy-s10-performance-edition-ceramic-dual-sim-td-lte-cn-1tb.json b/data/smartphone/samsung/2019/sm-g9750-ds-galaxy-s10-performance-edition-ceramic-dual-sim-td-lte-cn-1tb.json new file mode 100644 index 00000000000..6cce2ba9681 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g9750-ds-galaxy-s10-performance-edition-ceramic-dual-sim-td-lte-cn-1tb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g9750-ds-galaxy-s10-performance-edition-ceramic-dual-sim-td-lte-cn-1tb", + "name": "SM-G9750/DS Galaxy S10+ Performance Edition Ceramic Dual SIM TD-LTE CN 1TB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-03-01", + "ram_gb": 12.0, + "battery_mah": 4100, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 1024 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia , North America" +} diff --git a/data/smartphone/samsung/2019/sm-g9758-ds-galaxy-s10-dual-sim-td-lte-cn-128gb.json b/data/smartphone/samsung/2019/sm-g9758-ds-galaxy-s10-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..8359cb93210 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g9758-ds-galaxy-s10-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g9758-ds-galaxy-s10-dual-sim-td-lte-cn-128gb", + "name": "SM-G9758/DS Galaxy S10+ Dual SIM TD-LTE CN 128GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-03-12", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia , North America" +} diff --git a/data/smartphone/samsung/2019/sm-g975d-galaxy-s10-olympic-games-edition-td-lte-jp-128gb-sc-05l.json b/data/smartphone/samsung/2019/sm-g975d-galaxy-s10-olympic-games-edition-td-lte-jp-128gb-sc-05l.json new file mode 100644 index 00000000000..c642c4ac83c --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g975d-galaxy-s10-olympic-games-edition-td-lte-jp-128gb-sc-05l.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g975d-galaxy-s10-olympic-games-edition-td-lte-jp-128gb-sc-05l", + "name": "SM-G975D Galaxy S10+ Olympic Games Edition TD-LTE JP 128GB SC-05L", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-07-24", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-g975d-galaxy-s10-td-lte-jp-128gb-sc-04l-sgh-n936.json b/data/smartphone/samsung/2019/sm-g975d-galaxy-s10-td-lte-jp-128gb-sc-04l-sgh-n936.json new file mode 100644 index 00000000000..4d11906f609 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g975d-galaxy-s10-td-lte-jp-128gb-sc-04l-sgh-n936.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g975d-galaxy-s10-td-lte-jp-128gb-sc-04l-sgh-n936", + "name": "SM-G975D Galaxy S10+ TD-LTE JP 128GB SC-04L / SGH-N936", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-06-02", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-g975f-ds-galaxy-s10-ceramic-edition-global-dual-sim-td-lte-512gb.json b/data/smartphone/samsung/2019/sm-g975f-ds-galaxy-s10-ceramic-edition-global-dual-sim-td-lte-512gb.json new file mode 100644 index 00000000000..210d72b83ca --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g975f-ds-galaxy-s10-ceramic-edition-global-dual-sim-td-lte-512gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g975f-ds-galaxy-s10-ceramic-edition-global-dual-sim-td-lte-512gb", + "name": "SM-G975F/DS Galaxy S10+ Ceramic Edition Global Dual SIM TD-LTE 512GB", + "brand": "samsung", + "soc": "exynos-9820", + "release_date": "2019-03-01", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belarus , Belgium , Brazil , Bulgaria , Croatia , Cyprus , Czech , Denmark , Egypt , Finland , France , Greece , Germany , HK , Hungary , Ireland , Israel , Italy , Malaysia , Netherlands , Norway , NZ , Pakistan , Philippines , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Sweden , Taiwan , Thailand , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Oceania , South America , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-g975f-ds-galaxy-s10-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2019/sm-g975f-ds-galaxy-s10-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..0c6cd58526b --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g975f-ds-galaxy-s10-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g975f-ds-galaxy-s10-global-dual-sim-td-lte-128gb", + "name": "SM-G975F/DS Galaxy S10+ Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-9820", + "release_date": "2019-03-08", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Belarus , Brazil , Cyprus , Denmark , Finland , France , Greece , Germany , HK , Hungary , Italy , Malaysia , Norway , NZ , Poland , Russia , Romania , Saudi Arabia , Singapore , Sweden , Taiwan , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , South America , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-g975f-ds-galaxy-s10-global-dual-sim-td-lte-512gb.json b/data/smartphone/samsung/2019/sm-g975f-ds-galaxy-s10-global-dual-sim-td-lte-512gb.json new file mode 100644 index 00000000000..6a0615717a8 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g975f-ds-galaxy-s10-global-dual-sim-td-lte-512gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g975f-ds-galaxy-s10-global-dual-sim-td-lte-512gb", + "name": "SM-G975F/DS Galaxy S10+ Global Dual SIM TD-LTE 512GB", + "brand": "samsung", + "soc": "exynos-9820", + "release_date": "2019-03-08", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Belarus , Brazil , Cyprus , Denmark , Finland , France , Greece , Germany , HK , Hungary , Italy , Malaysia , Norway , NZ , Poland , Russia , Romania , Saudi Arabia , Singapore , Sweden , Taiwan , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , South America , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-g975f-ds-galaxy-s10-performance-edition-ceramic-global-dual-sim-td-lte-1tb.json b/data/smartphone/samsung/2019/sm-g975f-ds-galaxy-s10-performance-edition-ceramic-global-dual-sim-td-lte-1tb.json new file mode 100644 index 00000000000..5ca59ec67eb --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g975f-ds-galaxy-s10-performance-edition-ceramic-global-dual-sim-td-lte-1tb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g975f-ds-galaxy-s10-performance-edition-ceramic-global-dual-sim-td-lte-1tb", + "name": "SM-G975F/DS Galaxy S10+ Performance Edition Ceramic Global Dual SIM TD-LTE 1TB", + "brand": "samsung", + "soc": "exynos-9820", + "release_date": "2019-03-01", + "ram_gb": 12.0, + "battery_mah": 4100, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 1024 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belarus , Belgium , Brazil , Bulgaria , Croatia , Cyprus , Czech , Denmark , Egypt , Finland , France , Greece , Germany , HK , Hungary , Ireland , Israel , Italy , Malaysia , Netherlands , Norway , NZ , Pakistan , Philippines , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Sweden , Taiwan , Thailand , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Oceania , South America , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-g975f-galaxy-s10-global-td-lte-128gb.json b/data/smartphone/samsung/2019/sm-g975f-galaxy-s10-global-td-lte-128gb.json new file mode 100644 index 00000000000..cd23a263dfe --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g975f-galaxy-s10-global-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g975f-galaxy-s10-global-td-lte-128gb", + "name": "SM-G975F Galaxy S10+ Global TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-9820", + "release_date": "2019-03-09", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Belarus , Belgium , Bulgaria , Chile , Croatia , Cyprus , Czech , Denmark , Estonia , Egypt , Finland , France , Germany , Greece , Hungary , Ireland , Israel , Italy , Japan , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lithuania , Netherlands , Nigeria , Norway , NZ , Pakistan , Poland , Portugal , Romania , Russia , Saudi Arabia , Serbia , Slovakia , Slovenia , South Africa , Spain , Sweden , Switzerland , Turkey , UK , Ukraine", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe , Worldwide" +} diff --git a/data/smartphone/samsung/2019/sm-g975j-galaxy-s10-wimax-2-jp-scv42.json b/data/smartphone/samsung/2019/sm-g975j-galaxy-s10-wimax-2-jp-scv42.json new file mode 100644 index 00000000000..32ae84b3400 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g975j-galaxy-s10-wimax-2-jp-scv42.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g975j-galaxy-s10-wimax-2-jp-scv42", + "name": "SM-G975J Galaxy S10+ WiMAX 2+ JP SCV42", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-05-23", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-g975n-galaxy-s10-td-lte-kr-128gb.json b/data/smartphone/samsung/2019/sm-g975n-galaxy-s10-td-lte-kr-128gb.json new file mode 100644 index 00000000000..2b1eab4336f --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g975n-galaxy-s10-td-lte-kr-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g975n-galaxy-s10-td-lte-kr-128gb", + "name": "SM-G975N Galaxy S10+ TD-LTE KR 128GB", + "brand": "samsung", + "soc": "exynos-9820", + "release_date": "2019-03-19", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-g975n-galaxy-s10-td-lte-kr-1tb.json b/data/smartphone/samsung/2019/sm-g975n-galaxy-s10-td-lte-kr-1tb.json new file mode 100644 index 00000000000..2f34d422056 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g975n-galaxy-s10-td-lte-kr-1tb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g975n-galaxy-s10-td-lte-kr-1tb", + "name": "SM-G975N Galaxy S10+ TD-LTE KR 1TB", + "brand": "samsung", + "soc": "exynos-9820", + "release_date": "2019-03-19", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 1024 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-g975n-galaxy-s10-td-lte-kr-512gb.json b/data/smartphone/samsung/2019/sm-g975n-galaxy-s10-td-lte-kr-512gb.json new file mode 100644 index 00000000000..54c59546433 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g975n-galaxy-s10-td-lte-kr-512gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g975n-galaxy-s10-td-lte-kr-512gb", + "name": "SM-G975N Galaxy S10+ TD-LTE KR 512GB", + "brand": "samsung", + "soc": "exynos-9820", + "release_date": "2019-03-19", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-g975u-galaxy-s10-performance-edition-ceramic-td-lte-us-1tb.json b/data/smartphone/samsung/2019/sm-g975u-galaxy-s10-performance-edition-ceramic-td-lte-us-1tb.json new file mode 100644 index 00000000000..f607cd68108 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g975u-galaxy-s10-performance-edition-ceramic-td-lte-us-1tb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g975u-galaxy-s10-performance-edition-ceramic-td-lte-us-1tb", + "name": "SM-G975U Galaxy S10+ Performance Edition Ceramic TD-LTE US 1TB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-03-09", + "ram_gb": 12.0, + "battery_mah": 4100, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 1024 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1500, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-g975u-galaxy-s10-td-lte-us-128gb.json b/data/smartphone/samsung/2019/sm-g975u-galaxy-s10-td-lte-us-128gb.json new file mode 100644 index 00000000000..4fb72e39d89 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g975u-galaxy-s10-td-lte-us-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g975u-galaxy-s10-td-lte-us-128gb", + "name": "SM-G975U Galaxy S10+ TD-LTE US 128GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-03-09", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 850, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-g975u-galaxy-s10-td-lte-us-512gb.json b/data/smartphone/samsung/2019/sm-g975u-galaxy-s10-td-lte-us-512gb.json new file mode 100644 index 00000000000..36991ea6577 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g975u-galaxy-s10-td-lte-us-512gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g975u-galaxy-s10-td-lte-us-512gb", + "name": "SM-G975U Galaxy S10+ TD-LTE US 512GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-03-09", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-g975u1-galaxy-s10-performance-edition-ceramic-td-lte-us-1tb.json b/data/smartphone/samsung/2019/sm-g975u1-galaxy-s10-performance-edition-ceramic-td-lte-us-1tb.json new file mode 100644 index 00000000000..2b57733a2ec --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g975u1-galaxy-s10-performance-edition-ceramic-td-lte-us-1tb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g975u1-galaxy-s10-performance-edition-ceramic-td-lte-us-1tb", + "name": "SM-G975U1 Galaxy S10+ Performance Edition Ceramic TD-LTE US 1TB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-03-09", + "ram_gb": 12.0, + "battery_mah": 4100, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 1024 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-g975u1-galaxy-s10-td-lte-us-128gb.json b/data/smartphone/samsung/2019/sm-g975u1-galaxy-s10-td-lte-us-128gb.json new file mode 100644 index 00000000000..ca0956e24e9 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g975u1-galaxy-s10-td-lte-us-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g975u1-galaxy-s10-td-lte-us-128gb", + "name": "SM-G975U1 Galaxy S10+ TD-LTE US 128GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-03-09", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 750, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-g975u1-galaxy-s10-td-lte-us-512gb.json b/data/smartphone/samsung/2019/sm-g975u1-galaxy-s10-td-lte-us-512gb.json new file mode 100644 index 00000000000..ac96bafe0f2 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g975u1-galaxy-s10-td-lte-us-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g975u1-galaxy-s10-td-lte-us-512gb", + "name": "SM-G975U1 Galaxy S10+ TD-LTE US 512GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-03-09", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1000, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-g975w-galaxy-s10-performance-edition-ceramic-td-lte-ca-1tb.json b/data/smartphone/samsung/2019/sm-g975w-galaxy-s10-performance-edition-ceramic-td-lte-ca-1tb.json new file mode 100644 index 00000000000..753cbf3b013 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g975w-galaxy-s10-performance-edition-ceramic-td-lte-ca-1tb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g975w-galaxy-s10-performance-edition-ceramic-td-lte-ca-1tb", + "name": "SM-G975W Galaxy S10+ Performance Edition Ceramic TD-LTE CA 1TB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-03-09", + "ram_gb": 12.0, + "battery_mah": 4100, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 1024 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-g975w-galaxy-s10-td-lte-ca-128gb.json b/data/smartphone/samsung/2019/sm-g975w-galaxy-s10-td-lte-ca-128gb.json new file mode 100644 index 00000000000..aa38852680e --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g975w-galaxy-s10-td-lte-ca-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g975w-galaxy-s10-td-lte-ca-128gb", + "name": "SM-G975W Galaxy S10+ TD-LTE CA 128GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-03-09", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-g975w-galaxy-s10-td-lte-ca-512gb.json b/data/smartphone/samsung/2019/sm-g975w-galaxy-s10-td-lte-ca-512gb.json new file mode 100644 index 00000000000..b2e35bae584 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g975w-galaxy-s10-td-lte-ca-512gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g975w-galaxy-s10-td-lte-ca-512gb", + "name": "SM-G975W Galaxy S10+ TD-LTE CA 512GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-03-09", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-g977b-galaxy-s10-5g-global-td-lte-256gb.json b/data/smartphone/samsung/2019/sm-g977b-galaxy-s10-5g-global-td-lte-256gb.json new file mode 100644 index 00000000000..71425adbc52 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g977b-galaxy-s10-5g-global-td-lte-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g977b-galaxy-s10-5g-global-td-lte-256gb", + "name": "SM-G977B Galaxy S10 5G Global TD-LTE 256GB", + "brand": "samsung", + "soc": "exynos-9820", + "release_date": "2019-06-14", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.66, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 505 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Finland , France , Germany , Italy , Saudi Arabia , Spain , Switzerland , UAE , UK", + "market_regions": "Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-g977n-galaxy-s10-5g-td-lte-kr-256gb.json b/data/smartphone/samsung/2019/sm-g977n-galaxy-s10-5g-td-lte-kr-256gb.json new file mode 100644 index 00000000000..7d69437117c --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g977n-galaxy-s10-5g-td-lte-kr-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g977n-galaxy-s10-5g-td-lte-kr-256gb", + "name": "SM-G977N Galaxy S10 5G TD-LTE KR 256GB", + "brand": "samsung", + "soc": "exynos-9820", + "release_date": "2019-04-06", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 505 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-g977n-galaxy-s10-5g-td-lte-kr-512gb.json b/data/smartphone/samsung/2019/sm-g977n-galaxy-s10-5g-td-lte-kr-512gb.json new file mode 100644 index 00000000000..11693ee1ea6 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g977n-galaxy-s10-5g-td-lte-kr-512gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g977n-galaxy-s10-5g-td-lte-kr-512gb", + "name": "SM-G977N Galaxy S10 5G TD-LTE KR 512GB", + "brand": "samsung", + "soc": "exynos-9820", + "release_date": "2019-04-06", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 505 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-g977p-galaxy-s10-5g-td-lte-us-256gb.json b/data/smartphone/samsung/2019/sm-g977p-galaxy-s10-5g-td-lte-us-256gb.json new file mode 100644 index 00000000000..f6d86105ad5 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g977p-galaxy-s10-5g-td-lte-us-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g977p-galaxy-s10-5g-td-lte-us-256gb", + "name": "SM-G977P Galaxy S10 5G TD-LTE US 256GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-06-21", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.66, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 505 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-g977u-galaxy-s10-5g-td-lte-us-256gb-sm-g977t.json b/data/smartphone/samsung/2019/sm-g977u-galaxy-s10-5g-td-lte-us-256gb-sm-g977t.json new file mode 100644 index 00000000000..41f4e735cb8 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g977u-galaxy-s10-5g-td-lte-us-256gb-sm-g977t.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g977u-galaxy-s10-5g-td-lte-us-256gb-sm-g977t", + "name": "SM-G977U Galaxy S10 5G TD-LTE US 256GB / SM-G977T", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-06-28", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.66, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 505 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-g977u-galaxy-s10-5g-td-lte-us-256gb-sm-g977v.json b/data/smartphone/samsung/2019/sm-g977u-galaxy-s10-5g-td-lte-us-256gb-sm-g977v.json new file mode 100644 index 00000000000..7bbc9f838ec --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g977u-galaxy-s10-5g-td-lte-us-256gb-sm-g977v.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g977u-galaxy-s10-5g-td-lte-us-256gb-sm-g977v", + "name": "SM-G977U Galaxy S10 5G TD-LTE US 256GB / SM-G977V", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-05-16", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.66, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 505 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-g977u-galaxy-s10-5g-td-lte-us-512gb-sm-g977v.json b/data/smartphone/samsung/2019/sm-g977u-galaxy-s10-5g-td-lte-us-512gb-sm-g977v.json new file mode 100644 index 00000000000..4795c32b29e --- /dev/null +++ b/data/smartphone/samsung/2019/sm-g977u-galaxy-s10-5g-td-lte-us-512gb-sm-g977v.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g977u-galaxy-s10-5g-td-lte-us-512gb-sm-g977v", + "name": "SM-G977U Galaxy S10 5G TD-LTE US 512GB / SM-G977V", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-05-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.66, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 505 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-m205f-ds-galaxy-m20-duos-global-td-lte-32gb.json b/data/smartphone/samsung/2019/sm-m205f-ds-galaxy-m20-duos-global-td-lte-32gb.json new file mode 100644 index 00000000000..79b0604ffd7 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-m205f-ds-galaxy-m20-duos-global-td-lte-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-m205f-ds-galaxy-m20-duos-global-td-lte-32gb", + "name": "SM-M205F/DS Galaxy M20 Duos Global TD-LTE 32GB", + "brand": "samsung", + "soc": "exynos-7904", + "release_date": "2019-02-06", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "France , Germany , India , Italy , Norway , Philippines , Poland , Portugal , Russia , Spain , Sweden , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Oceania , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-m205f-ds-galaxy-m20-duos-global-td-lte-64gb.json b/data/smartphone/samsung/2019/sm-m205f-ds-galaxy-m20-duos-global-td-lte-64gb.json new file mode 100644 index 00000000000..3f019e5e616 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-m205f-ds-galaxy-m20-duos-global-td-lte-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-m205f-ds-galaxy-m20-duos-global-td-lte-64gb", + "name": "SM-M205F/DS Galaxy M20 Duos Global TD-LTE 64GB", + "brand": "samsung", + "soc": "exynos-7904", + "release_date": "2019-03-14", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-m205g-ds-galaxy-m20-duos-td-lte-apac-32gb.json b/data/smartphone/samsung/2019/sm-m205g-ds-galaxy-m20-duos-td-lte-apac-32gb.json new file mode 100644 index 00000000000..91b7b8f43f2 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-m205g-ds-galaxy-m20-duos-td-lte-apac-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-m205g-ds-galaxy-m20-duos-td-lte-apac-32gb", + "name": "SM-M205G/DS Galaxy M20 Duos TD-LTE APAC 32GB", + "brand": "samsung", + "soc": "exynos-7904", + "release_date": "2019-02-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Indonesia , Philippines , Thailand , Vietnam", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/samsung/2019/sm-m205g-ds-galaxy-m20-duos-td-lte-apac-64gb.json b/data/smartphone/samsung/2019/sm-m205g-ds-galaxy-m20-duos-td-lte-apac-64gb.json new file mode 100644 index 00000000000..2ffb5bd4b57 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-m205g-ds-galaxy-m20-duos-td-lte-apac-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-m205g-ds-galaxy-m20-duos-td-lte-apac-64gb", + "name": "SM-M205G/DS Galaxy M20 Duos TD-LTE APAC 64GB", + "brand": "samsung", + "soc": "exynos-7904", + "release_date": "2019-02-06", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Malaysia , Thailand , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2019/sm-m205m-ds-galaxy-m20-duos-td-lte-latam-32gb.json b/data/smartphone/samsung/2019/sm-m205m-ds-galaxy-m20-duos-td-lte-latam-32gb.json new file mode 100644 index 00000000000..7fc0db41814 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-m205m-ds-galaxy-m20-duos-td-lte-latam-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-m205m-ds-galaxy-m20-duos-td-lte-latam-32gb", + "name": "SM-M205M/DS Galaxy M20 Duos TD-LTE LATAM 32GB", + "brand": "samsung", + "soc": "exynos-7904", + "release_date": "2019-04-11", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Costa Rica , Guatemala , Mexico , Paraguay , Peru , Puerto Rico", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/samsung/2019/sm-m205m-ds-galaxy-m20-duos-td-lte-latam-64gb.json b/data/smartphone/samsung/2019/sm-m205m-ds-galaxy-m20-duos-td-lte-latam-64gb.json new file mode 100644 index 00000000000..b2e735f4fa4 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-m205m-ds-galaxy-m20-duos-td-lte-latam-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-m205m-ds-galaxy-m20-duos-td-lte-latam-64gb", + "name": "SM-M205M/DS Galaxy M20 Duos TD-LTE LATAM 64GB", + "brand": "samsung", + "soc": "exynos-7904", + "release_date": "2019-04-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil", + "market_regions": "South America" +} diff --git a/data/smartphone/samsung/2019/sm-m205m-galaxy-m20-td-lte-latam-32gb.json b/data/smartphone/samsung/2019/sm-m205m-galaxy-m20-td-lte-latam-32gb.json new file mode 100644 index 00000000000..f44bc690c5a --- /dev/null +++ b/data/smartphone/samsung/2019/sm-m205m-galaxy-m20-td-lte-latam-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-m205m-galaxy-m20-td-lte-latam-32gb", + "name": "SM-M205M Galaxy M20 TD-LTE LATAM 32GB", + "brand": "samsung", + "soc": "exynos-7904", + "release_date": "2019-04-11", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-m305f-ds-galaxy-m30-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2019/sm-m305f-ds-galaxy-m30-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..df78cb12421 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-m305f-ds-galaxy-m30-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-m305f-ds-galaxy-m30-global-dual-sim-td-lte-128gb", + "name": "SM-M305F/DS Galaxy M30 Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-7904", + "release_date": "2019-03-06", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 174.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "India , Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2019/sm-m305f-ds-galaxy-m30-global-dual-sim-td-lte-64gb.json b/data/smartphone/samsung/2019/sm-m305f-ds-galaxy-m30-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..98e19cee249 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-m305f-ds-galaxy-m30-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-m305f-ds-galaxy-m30-global-dual-sim-td-lte-64gb", + "name": "SM-M305F/DS Galaxy M30 Global Dual SIM TD-LTE 64GB", + "brand": "samsung", + "soc": "exynos-7904", + "release_date": "2019-03-06", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 174.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "Czech , Germany , India , Indonesia , Italy , Mexico , Philippines , Poland , Russia , Spain , UK , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , North America , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-m305m-ds-galaxy-m30-dual-sim-td-lte-latam-64gb.json b/data/smartphone/samsung/2019/sm-m305m-ds-galaxy-m30-dual-sim-td-lte-latam-64gb.json new file mode 100644 index 00000000000..1b096faf4f6 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-m305m-ds-galaxy-m30-dual-sim-td-lte-latam-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-m305m-ds-galaxy-m30-dual-sim-td-lte-latam-64gb", + "name": "SM-M305M/DS Galaxy M30 Dual SIM TD-LTE LATAM 64GB", + "brand": "samsung", + "soc": "exynos-7904", + "release_date": "2019-03-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 174.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Chile , Costa Rica , Guatemala , Honduras , Peru , Puerto Rico", + "market_regions": "Central America , South America" +} diff --git a/data/smartphone/samsung/2019/sm-m305m-galaxy-m30-td-lte-latam-64gb.json b/data/smartphone/samsung/2019/sm-m305m-galaxy-m30-td-lte-latam-64gb.json new file mode 100644 index 00000000000..7c14dabb78b --- /dev/null +++ b/data/smartphone/samsung/2019/sm-m305m-galaxy-m30-td-lte-latam-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-m305m-galaxy-m30-td-lte-latam-64gb", + "name": "SM-M305M Galaxy M30 TD-LTE LATAM 64GB", + "brand": "samsung", + "soc": "exynos-7904", + "release_date": "2019-03-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 174.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Chile , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/samsung/2019/sm-m3070-galaxy-m30s-dual-sim-td-lte-cn-128gb.json b/data/smartphone/samsung/2019/sm-m3070-galaxy-m30s-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..ba5fd640ebb --- /dev/null +++ b/data/smartphone/samsung/2019/sm-m3070-galaxy-m30s-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-m3070-galaxy-m30s-dual-sim-td-lte-cn-128gb", + "name": "SM-M3070 Galaxy M30s Dual SIM TD-LTE CN 128GB", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2019-11-01", + "ram_gb": 6.0, + "battery_mah": 6000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-m307f-ds-galaxy-m30s-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2019/sm-m307f-ds-galaxy-m30s-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..ce51f6a9b6a --- /dev/null +++ b/data/smartphone/samsung/2019/sm-m307f-ds-galaxy-m30s-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-m307f-ds-galaxy-m30s-global-dual-sim-td-lte-128gb", + "name": "SM-M307F/DS Galaxy M30s Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2019-10-01", + "ram_gb": 6.0, + "battery_mah": 6000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2019/sm-m307f-ds-galaxy-m30s-global-dual-sim-td-lte-64gb.json b/data/smartphone/samsung/2019/sm-m307f-ds-galaxy-m30s-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..0f42b36f09f --- /dev/null +++ b/data/smartphone/samsung/2019/sm-m307f-ds-galaxy-m30s-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-m307f-ds-galaxy-m30s-global-dual-sim-td-lte-64gb", + "name": "SM-M307F/DS Galaxy M30s Global Dual SIM TD-LTE 64GB", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2019-10-01", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2019/sm-m405f-ds-galaxy-m40-2019-dual-sim-td-lte-in-128gb.json b/data/smartphone/samsung/2019/sm-m405f-ds-galaxy-m40-2019-dual-sim-td-lte-in-128gb.json new file mode 100644 index 00000000000..2dd6d8797a8 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-m405f-ds-galaxy-m40-2019-dual-sim-td-lte-in-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-m405f-ds-galaxy-m40-2019-dual-sim-td-lte-in-128gb", + "name": "SM-M405F/DS Galaxy M40 2019 Dual SIM TD-LTE IN 128GB", + "brand": "samsung", + "soc": "snapdragon-675", + "release_date": "2019-06-18", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-n9700-galaxy-note-10-dual-sim-td-lte-cn-tw-256gb.json b/data/smartphone/samsung/2019/sm-n9700-galaxy-note-10-dual-sim-td-lte-cn-tw-256gb.json new file mode 100644 index 00000000000..0144897a0ad --- /dev/null +++ b/data/smartphone/samsung/2019/sm-n9700-galaxy-note-10-dual-sim-td-lte-cn-tw-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-n9700-galaxy-note-10-dual-sim-td-lte-cn-tw-256gb", + "name": "SM-N9700 Galaxy Note 10 Dual SIM TD-LTE CN TW 256GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-09-12", + "ram_gb": 8.0, + "battery_mah": 3500, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , Taiwan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-n970f-ds-galaxy-note-10-global-dual-sim-td-lte-256gb.json b/data/smartphone/samsung/2019/sm-n970f-ds-galaxy-note-10-global-dual-sim-td-lte-256gb.json new file mode 100644 index 00000000000..e2d183820ba --- /dev/null +++ b/data/smartphone/samsung/2019/sm-n970f-ds-galaxy-note-10-global-dual-sim-td-lte-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-n970f-ds-galaxy-note-10-global-dual-sim-td-lte-256gb", + "name": "SM-N970F/DS Galaxy Note 10 Global Dual SIM TD-LTE 256GB", + "brand": "samsung", + "soc": "exynos-9825", + "release_date": "2019-08-23", + "ram_gb": 8.0, + "battery_mah": 3500, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belarus , Brazil , Cyprus , Czech , Denmark , Finland , France , Greece , Germany , HK , Hungary , Italy , Malaysia , Netherlands , Norway , Poland , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , Sweden , Taiwan , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , South America , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-n970f-galaxy-note-10-global-td-lte-256gb.json b/data/smartphone/samsung/2019/sm-n970f-galaxy-note-10-global-td-lte-256gb.json new file mode 100644 index 00000000000..bf5afe10f6b --- /dev/null +++ b/data/smartphone/samsung/2019/sm-n970f-galaxy-note-10-global-td-lte-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-n970f-galaxy-note-10-global-td-lte-256gb", + "name": "SM-N970F Galaxy Note 10 Global TD-LTE 256GB", + "brand": "samsung", + "soc": "exynos-9825", + "release_date": "2019-08-23", + "ram_gb": 8.0, + "battery_mah": 3500, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Algeria , Argentina , Australia , Belarus , Bulgaria , Chile , Croatia , Cyprus , Czech , Denmark , Estonia , Egypt , Finland , France , Germany , Greece , HK , Hungary , Ireland , Israel , Italy , Jordan , Kenya , Kuwait , Latvia , Lithuania , Netherlands , Norway , NZ , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Slovenia , South Africa , Spain , Sweden , Switzerland , UK , Ukraine", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , South America , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-n970u-galaxy-note-10-td-lte-us-256gb.json b/data/smartphone/samsung/2019/sm-n970u-galaxy-note-10-td-lte-us-256gb.json new file mode 100644 index 00000000000..ee02a624a4b --- /dev/null +++ b/data/smartphone/samsung/2019/sm-n970u-galaxy-note-10-td-lte-us-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-n970u-galaxy-note-10-td-lte-us-256gb", + "name": "SM-N970U Galaxy Note 10 TD-LTE US 256GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-09-13", + "ram_gb": 8.0, + "battery_mah": 3500, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 950, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-n970u1-galaxy-note-10-td-lte-us-256gb.json b/data/smartphone/samsung/2019/sm-n970u1-galaxy-note-10-td-lte-us-256gb.json new file mode 100644 index 00000000000..ef9ca7d3578 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-n970u1-galaxy-note-10-td-lte-us-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-n970u1-galaxy-note-10-td-lte-us-256gb", + "name": "SM-N970U1 Galaxy Note 10 TD-LTE US 256GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-09-01", + "ram_gb": 8.0, + "battery_mah": 3500, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 950, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-n970w-galaxy-note-10-td-lte-ca-256gb.json b/data/smartphone/samsung/2019/sm-n970w-galaxy-note-10-td-lte-ca-256gb.json new file mode 100644 index 00000000000..e5092335a50 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-n970w-galaxy-note-10-td-lte-ca-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-n970w-galaxy-note-10-td-lte-ca-256gb", + "name": "SM-N970W Galaxy Note 10 TD-LTE CA 256GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-09-13", + "ram_gb": 8.0, + "battery_mah": 3500, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-n971n-galaxy-note-10-5g-td-lte-kr-256gb.json b/data/smartphone/samsung/2019/sm-n971n-galaxy-note-10-5g-td-lte-kr-256gb.json new file mode 100644 index 00000000000..092428dae5a --- /dev/null +++ b/data/smartphone/samsung/2019/sm-n971n-galaxy-note-10-5g-td-lte-kr-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-n971n-galaxy-note-10-5g-td-lte-kr-256gb", + "name": "SM-N971N Galaxy Note 10 5G TD-LTE KR 256GB", + "brand": "samsung", + "soc": "exynos-9825", + "release_date": "2019-08-29", + "ram_gb": 12.0, + "battery_mah": 3500, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-n9750-galaxy-note-10-dual-sim-td-lte-cn-256gb.json b/data/smartphone/samsung/2019/sm-n9750-galaxy-note-10-dual-sim-td-lte-cn-256gb.json new file mode 100644 index 00000000000..990cd484c27 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-n9750-galaxy-note-10-dual-sim-td-lte-cn-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-n9750-galaxy-note-10-dual-sim-td-lte-cn-256gb", + "name": "SM-N9750 Galaxy Note 10+ Dual SIM TD-LTE CN 256GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-09-12", + "ram_gb": 12.0, + "battery_mah": 4300, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , Taiwan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-n975c-galaxy-note-10-td-lte-jp-256gb.json b/data/smartphone/samsung/2019/sm-n975c-galaxy-note-10-td-lte-jp-256gb.json new file mode 100644 index 00000000000..d4c979d73a2 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-n975c-galaxy-note-10-td-lte-jp-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-n975c-galaxy-note-10-td-lte-jp-256gb", + "name": "SM-N975C Galaxy Note 10+ TD-LTE JP 256GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-12-09", + "ram_gb": 12.0, + "battery_mah": 4300, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-n975d-galaxy-note-10-star-wars-special-edition-td-lte-jp-256gb-sc-01m.json b/data/smartphone/samsung/2019/sm-n975d-galaxy-note-10-star-wars-special-edition-td-lte-jp-256gb-sc-01m.json new file mode 100644 index 00000000000..0275d5db115 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-n975d-galaxy-note-10-star-wars-special-edition-td-lte-jp-256gb-sc-01m.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-n975d-galaxy-note-10-star-wars-special-edition-td-lte-jp-256gb-sc-01m", + "name": "SM-N975D Galaxy Note 10+ Star Wars Special Edition TD-LTE JP 256GB SC-01M", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-12-16", + "ram_gb": 12.0, + "battery_mah": 4300, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-n975d-galaxy-note-10-td-lte-jp-256gb-sc-01m.json b/data/smartphone/samsung/2019/sm-n975d-galaxy-note-10-td-lte-jp-256gb-sc-01m.json new file mode 100644 index 00000000000..46dc25e58e4 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-n975d-galaxy-note-10-td-lte-jp-256gb-sc-01m.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-n975d-galaxy-note-10-td-lte-jp-256gb-sc-01m", + "name": "SM-N975D Galaxy Note 10+ TD-LTE JP 256GB SC-01M", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-10-18", + "ram_gb": 12.0, + "battery_mah": 4300, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-n975f-ds-galaxy-note-10-global-dual-sim-td-lte-256gb.json b/data/smartphone/samsung/2019/sm-n975f-ds-galaxy-note-10-global-dual-sim-td-lte-256gb.json new file mode 100644 index 00000000000..9edf83050e0 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-n975f-ds-galaxy-note-10-global-dual-sim-td-lte-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-n975f-ds-galaxy-note-10-global-dual-sim-td-lte-256gb", + "name": "SM-N975F/DS Galaxy Note 10+ Global Dual SIM TD-LTE 256GB", + "brand": "samsung", + "soc": "exynos-9825", + "release_date": "2019-08-23", + "ram_gb": 12.0, + "battery_mah": 4300, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Belarus , Brazil , Cyprus , Czech , Denmark , Finland , France , Germany , Greece , HK , Hungary , Italy , Malaysia , Netherlands , Norway , NZ , Poland , Romania , Russia , Saudi Arabia , Singapore , Slovakia , Slovenia , Sweden , Taiwan , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , South America , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-n975f-ds-galaxy-note-10-global-dual-sim-td-lte-512gb.json b/data/smartphone/samsung/2019/sm-n975f-ds-galaxy-note-10-global-dual-sim-td-lte-512gb.json new file mode 100644 index 00000000000..227e6099d51 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-n975f-ds-galaxy-note-10-global-dual-sim-td-lte-512gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-n975f-ds-galaxy-note-10-global-dual-sim-td-lte-512gb", + "name": "SM-N975F/DS Galaxy Note 10+ Global Dual SIM TD-LTE 512GB", + "brand": "samsung", + "soc": "exynos-9825", + "release_date": "2019-08-23", + "ram_gb": 12.0, + "battery_mah": 4300, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Belarus , Brazil , Cyprus , Czech , Denmark , Finland , France , Germany , Greece , HK , Hungary , Italy , Malaysia , Netherlands , Norway , NZ , Poland , Romania , Russia , Saudi Arabia , Singapore , Slovakia , Slovenia , Sweden , Taiwan , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , South America , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-n975f-galaxy-note-10-global-td-lte-512gb.json b/data/smartphone/samsung/2019/sm-n975f-galaxy-note-10-global-td-lte-512gb.json new file mode 100644 index 00000000000..8c8cbeaea33 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-n975f-galaxy-note-10-global-td-lte-512gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-n975f-galaxy-note-10-global-td-lte-512gb", + "name": "SM-N975F Galaxy Note 10+ Global TD-LTE 512GB", + "brand": "samsung", + "soc": "exynos-9825", + "release_date": "2019-08-23", + "ram_gb": 12.0, + "battery_mah": 4300, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Brazil , Bulgaria , Croatia , Cyprus , Czech , Denmark , Estonia , Egypt , Finland , France , Germany , Greece , Hungary , Ireland , Israel , Italy , Jordan , Kuwait , Latvia , Lithuania , Morocco , Netherlands , Norway , Poland , Portugal , Russia , Romania , Singapore , Slovakia , Slovenia , South Africa , Spain , Switzerland , Sweden , Taiwan , Tunisie , Turkey , UK , Ukraine", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , South America , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-n975j-galaxy-note-10-wimax-2-256gb-scv45.json b/data/smartphone/samsung/2019/sm-n975j-galaxy-note-10-wimax-2-256gb-scv45.json new file mode 100644 index 00000000000..a87b04bfcec --- /dev/null +++ b/data/smartphone/samsung/2019/sm-n975j-galaxy-note-10-wimax-2-256gb-scv45.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-n975j-galaxy-note-10-wimax-2-256gb-scv45", + "name": "SM-N975J Galaxy Note 10+ WiMAX 2+ 256GB SCV45", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-10-18", + "ram_gb": 12.0, + "battery_mah": 4300, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-n975u-galaxy-note-10-td-lte-us-512gb.json b/data/smartphone/samsung/2019/sm-n975u-galaxy-note-10-td-lte-us-512gb.json new file mode 100644 index 00000000000..5df49ad7d1b --- /dev/null +++ b/data/smartphone/samsung/2019/sm-n975u-galaxy-note-10-td-lte-us-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-n975u-galaxy-note-10-td-lte-us-512gb", + "name": "SM-N975U Galaxy Note 10+ TD-LTE US 512GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-09-02", + "ram_gb": 12.0, + "battery_mah": 4300, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1199, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-n975u1-galaxy-note-10-star-wars-special-edition-td-lte-us-512gb.json b/data/smartphone/samsung/2019/sm-n975u1-galaxy-note-10-star-wars-special-edition-td-lte-us-512gb.json new file mode 100644 index 00000000000..306ef225fce --- /dev/null +++ b/data/smartphone/samsung/2019/sm-n975u1-galaxy-note-10-star-wars-special-edition-td-lte-us-512gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-n975u1-galaxy-note-10-star-wars-special-edition-td-lte-us-512gb", + "name": "SM-N975U1 Galaxy Note 10+ Star Wars Special Edition TD-LTE US 512GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-12-11", + "ram_gb": 12.0, + "battery_mah": 4300, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-n975u1-galaxy-note-10-td-lte-us-256gb.json b/data/smartphone/samsung/2019/sm-n975u1-galaxy-note-10-td-lte-us-256gb.json new file mode 100644 index 00000000000..39307fdab66 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-n975u1-galaxy-note-10-td-lte-us-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-n975u1-galaxy-note-10-td-lte-us-256gb", + "name": "SM-N975U1 Galaxy Note 10+ TD-LTE US 256GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-08-01", + "ram_gb": 12.0, + "battery_mah": 4300, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1099, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-n975u1-galaxy-note-10-td-lte-us-512gb.json b/data/smartphone/samsung/2019/sm-n975u1-galaxy-note-10-td-lte-us-512gb.json new file mode 100644 index 00000000000..cda2a77d83d --- /dev/null +++ b/data/smartphone/samsung/2019/sm-n975u1-galaxy-note-10-td-lte-us-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-n975u1-galaxy-note-10-td-lte-us-512gb", + "name": "SM-N975U1 Galaxy Note 10+ TD-LTE US 512GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-08-01", + "ram_gb": 12.0, + "battery_mah": 4300, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1199, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-n975w-galaxy-note-10-td-lte-ca-256gb.json b/data/smartphone/samsung/2019/sm-n975w-galaxy-note-10-td-lte-ca-256gb.json new file mode 100644 index 00000000000..97bd868adab --- /dev/null +++ b/data/smartphone/samsung/2019/sm-n975w-galaxy-note-10-td-lte-ca-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-n975w-galaxy-note-10-td-lte-ca-256gb", + "name": "SM-N975W Galaxy Note 10+ TD-LTE CA 256GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-09-01", + "ram_gb": 12.0, + "battery_mah": 4300, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-n9760-galaxy-note-10-5g-dual-sim-td-lte-cn-256gb.json b/data/smartphone/samsung/2019/sm-n9760-galaxy-note-10-5g-dual-sim-td-lte-cn-256gb.json new file mode 100644 index 00000000000..5df79386547 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-n9760-galaxy-note-10-5g-dual-sim-td-lte-cn-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-n9760-galaxy-note-10-5g-dual-sim-td-lte-cn-256gb", + "name": "SM-N9760 Galaxy Note 10+ 5G Dual SIM TD-LTE CN 256GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-09-12", + "ram_gb": 12.0, + "battery_mah": 4300, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-n976b-galaxy-note-10-5g-global-td-lte-256gb.json b/data/smartphone/samsung/2019/sm-n976b-galaxy-note-10-5g-global-td-lte-256gb.json new file mode 100644 index 00000000000..794cfc6e62b --- /dev/null +++ b/data/smartphone/samsung/2019/sm-n976b-galaxy-note-10-5g-global-td-lte-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-n976b-galaxy-note-10-5g-global-td-lte-256gb", + "name": "SM-N976B Galaxy Note 10+ 5G Global TD-LTE 256GB", + "brand": "samsung", + "soc": "exynos-9825", + "release_date": "2019-08-23", + "ram_gb": 12.0, + "battery_mah": 4300, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Cyprus , Finland , France , Germany , Greece , HK , Italy , Netherlands , Norway , Portugal , Singapore , Spain , Sweden , Switzerland , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2019/sm-n976n-galaxy-note-10-5g-td-lte-kr-256gb.json b/data/smartphone/samsung/2019/sm-n976n-galaxy-note-10-5g-td-lte-kr-256gb.json new file mode 100644 index 00000000000..c58004cecec --- /dev/null +++ b/data/smartphone/samsung/2019/sm-n976n-galaxy-note-10-5g-td-lte-kr-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-n976n-galaxy-note-10-5g-td-lte-kr-256gb", + "name": "SM-N976N Galaxy Note 10+ 5G TD-LTE KR 256GB", + "brand": "samsung", + "soc": "exynos-9825", + "release_date": "2019-08-29", + "ram_gb": 12.0, + "battery_mah": 4300, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-n976n-galaxy-note-10-5g-td-lte-kr-512gb.json b/data/smartphone/samsung/2019/sm-n976n-galaxy-note-10-5g-td-lte-kr-512gb.json new file mode 100644 index 00000000000..7edc223ac24 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-n976n-galaxy-note-10-5g-td-lte-kr-512gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-n976n-galaxy-note-10-5g-td-lte-kr-512gb", + "name": "SM-N976N Galaxy Note 10+ 5G TD-LTE KR 512GB", + "brand": "samsung", + "soc": "exynos-9825", + "release_date": "2019-08-29", + "ram_gb": 12.0, + "battery_mah": 4300, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-n976t-galaxy-note-10-5g-td-lte-us-256gb-sm-n976u.json b/data/smartphone/samsung/2019/sm-n976t-galaxy-note-10-5g-td-lte-us-256gb-sm-n976u.json new file mode 100644 index 00000000000..7e2d50227da --- /dev/null +++ b/data/smartphone/samsung/2019/sm-n976t-galaxy-note-10-5g-td-lte-us-256gb-sm-n976u.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-n976t-galaxy-note-10-5g-td-lte-us-256gb-sm-n976u", + "name": "SM-N976T Galaxy Note 10+ 5G TD-LTE US 256GB / SM-N976U", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-12-06", + "ram_gb": 12.0, + "battery_mah": 4300, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1299, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-n976v-galaxy-note-10-5g-td-lte-us-256gb-sm-n976u.json b/data/smartphone/samsung/2019/sm-n976v-galaxy-note-10-5g-td-lte-us-256gb-sm-n976u.json new file mode 100644 index 00000000000..71266360505 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-n976v-galaxy-note-10-5g-td-lte-us-256gb-sm-n976u.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-n976v-galaxy-note-10-5g-td-lte-us-256gb-sm-n976u", + "name": "SM-N976V Galaxy Note 10+ 5G TD-LTE US 256GB / SM-N976U", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-09-01", + "ram_gb": 12.0, + "battery_mah": 4300, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1299, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-n976v-galaxy-note-10-5g-td-lte-us-512gb-sm-n976u.json b/data/smartphone/samsung/2019/sm-n976v-galaxy-note-10-5g-td-lte-us-512gb-sm-n976u.json new file mode 100644 index 00000000000..1bbba4b5487 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-n976v-galaxy-note-10-5g-td-lte-us-512gb-sm-n976u.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-n976v-galaxy-note-10-5g-td-lte-us-512gb-sm-n976u", + "name": "SM-N976V Galaxy Note 10+ 5G TD-LTE US 512GB / SM-N976U", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-09-01", + "ram_gb": 12.0, + "battery_mah": 4300, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2019/sm-w2019-world-flagship-2019-dual-sim-td-lte-cn-128gb.json b/data/smartphone/samsung/2019/sm-w2019-world-flagship-2019-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..71fb0976bba --- /dev/null +++ b/data/smartphone/samsung/2019/sm-w2019-world-flagship-2019-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-w2019-world-flagship-2019-dual-sim-td-lte-cn-128gb", + "name": "SM-W2019 World Flagship 2019 Dual SIM TD-LTE CN 128GB", + "brand": "samsung", + "soc": "snapdragon-845", + "release_date": "2019-01-01", + "ram_gb": 6.0, + "battery_mah": 3070, + "weight_g": 257.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 4.21, + "resolution": "1080x1920", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-w2019-world-flagship-2019-dual-sim-td-lte-cn-256gb.json b/data/smartphone/samsung/2019/sm-w2019-world-flagship-2019-dual-sim-td-lte-cn-256gb.json new file mode 100644 index 00000000000..973816c4907 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-w2019-world-flagship-2019-dual-sim-td-lte-cn-256gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-w2019-world-flagship-2019-dual-sim-td-lte-cn-256gb", + "name": "SM-W2019 World Flagship 2019 Dual SIM TD-LTE CN 256GB", + "brand": "samsung", + "soc": "snapdragon-845", + "release_date": "2019-01-01", + "ram_gb": 6.0, + "battery_mah": 3070, + "weight_g": 257.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 4.21, + "resolution": "1080x1920", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2019/sm-w2020-w20-5g-td-lte-cn-512gb.json b/data/smartphone/samsung/2019/sm-w2020-w20-5g-td-lte-cn-512gb.json new file mode 100644 index 00000000000..e317631c626 --- /dev/null +++ b/data/smartphone/samsung/2019/sm-w2020-w20-5g-td-lte-cn-512gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-w2020-w20-5g-td-lte-cn-512gb", + "name": "SM-W2020 W20 5G TD-LTE CN 512GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2019-11-01", + "ram_gb": 12.0, + "battery_mah": 4235, + "weight_g": 278.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 4.58, + "resolution": "720x1680", + "type": "AM-OLED display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-a015f-galaxy-a01-2019-global-td-lte.json b/data/smartphone/samsung/2020/sm-a015f-galaxy-a01-2019-global-td-lte.json new file mode 100644 index 00000000000..75b303cd405 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a015f-galaxy-a01-2019-global-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a015f-galaxy-a01-2019-global-td-lte", + "name": "SM-A015F Galaxy A01 2019 Global TD-LTE", + "brand": "samsung", + "soc": "snapdragon-439", + "release_date": "2020-02-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 149.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color PLS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Russia , South Africa , UK", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-a015g-ds-galaxy-a01-2019-dual-sim-td-lte-apac.json b/data/smartphone/samsung/2020/sm-a015g-ds-galaxy-a01-2019-dual-sim-td-lte-apac.json new file mode 100644 index 00000000000..b1b9212655f --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a015g-ds-galaxy-a01-2019-dual-sim-td-lte-apac.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a015g-ds-galaxy-a01-2019-dual-sim-td-lte-apac", + "name": "SM-A015G/DS Galaxy A01 2019 Dual SIM TD-LTE APAC", + "brand": "samsung", + "soc": "snapdragon-439", + "release_date": "2020-02-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 149.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color PLS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-a015m-ds-galaxy-a01-2019-dual-sim-lte-latam.json b/data/smartphone/samsung/2020/sm-a015m-ds-galaxy-a01-2019-dual-sim-lte-latam.json new file mode 100644 index 00000000000..b39dbf43599 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a015m-ds-galaxy-a01-2019-dual-sim-lte-latam.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a015m-ds-galaxy-a01-2019-dual-sim-lte-latam", + "name": "SM-A015M/DS Galaxy A01 2019 Dual SIM LTE LATAM", + "brand": "samsung", + "soc": "snapdragon-439", + "release_date": "2020-03-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 149.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color PLS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "msrp_usd": 160, + "market_countries": "Brazil , Costa Rica , Guatemala , Honduras , Peru", + "market_regions": "Central America , South America" +} diff --git a/data/smartphone/samsung/2020/sm-a015m-galaxy-a01-2019-lte-latam.json b/data/smartphone/samsung/2020/sm-a015m-galaxy-a01-2019-lte-latam.json new file mode 100644 index 00000000000..a9528b7a220 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a015m-galaxy-a01-2019-lte-latam.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a015m-galaxy-a01-2019-lte-latam", + "name": "SM-A015M Galaxy A01 2019 LTE LATAM", + "brand": "samsung", + "soc": "snapdragon-439", + "release_date": "2020-03-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 149.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color PLS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "msrp_usd": 2680, + "market_countries": "Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-a015v-galaxy-a01-2019-lte-us.json b/data/smartphone/samsung/2020/sm-a015v-galaxy-a01-2019-lte-us.json new file mode 100644 index 00000000000..1989996bc9c --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a015v-galaxy-a01-2019-lte-us.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a015v-galaxy-a01-2019-lte-us", + "name": "SM-A015V Galaxy A01 2019 LTE US", + "brand": "samsung", + "soc": "snapdragon-439", + "release_date": "2020-03-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 149.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color PLS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-a025f-ds-galaxy-a02s-2020-global-dual-sim-td-lte-32gb.json b/data/smartphone/samsung/2020/sm-a025f-ds-galaxy-a02s-2020-global-dual-sim-td-lte-32gb.json new file mode 100644 index 00000000000..fa844c8acea --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a025f-ds-galaxy-a02s-2020-global-dual-sim-td-lte-32gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a025f-ds-galaxy-a02s-2020-global-dual-sim-td-lte-32gb", + "name": "SM-A025F/DS Galaxy A02s 2020 Global Dual SIM TD-LTE 32GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2020-12-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 149, + "market_countries": "Belarus , Bulgaria , Germany , Iran , Jordan , Kenya , Malaysia , Nigeria , Poland , Russia , Saudi Arabia , Slovakia , South Africa , Thailand , Tunisie , Turkey , UAE , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-a025f-ds-galaxy-a02s-2020-global-dual-sim-td-lte-64gb.json b/data/smartphone/samsung/2020/sm-a025f-ds-galaxy-a02s-2020-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..497f43a9c2a --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a025f-ds-galaxy-a02s-2020-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a025f-ds-galaxy-a02s-2020-global-dual-sim-td-lte-64gb", + "name": "SM-A025F/DS Galaxy A02s 2020 Global Dual SIM TD-LTE 64GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2020-12-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Belarus , Bulgaria , Germany , Iran , Israel , Jordan , Kuwait , Malaysia , Poland , Russia , Saudi Arabia , Slovakia , Thailand , Turkey , UAE , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-a025f-galaxy-a02s-2020-global-td-lte-32gb.json b/data/smartphone/samsung/2020/sm-a025f-galaxy-a02s-2020-global-td-lte-32gb.json new file mode 100644 index 00000000000..fa716fca588 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a025f-galaxy-a02s-2020-global-td-lte-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a025f-galaxy-a02s-2020-global-td-lte-32gb", + "name": "SM-A025F Galaxy A02s 2020 Global TD-LTE 32GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2020-12-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Ireland , South Africa , UK", + "market_regions": "Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-a115f-ds-galaxy-a11-2020-global-dual-sim-td-lte-32gb.json b/data/smartphone/samsung/2020/sm-a115f-ds-galaxy-a11-2020-global-dual-sim-td-lte-32gb.json new file mode 100644 index 00000000000..3b4af8d0dc1 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a115f-ds-galaxy-a11-2020-global-dual-sim-td-lte-32gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a115f-ds-galaxy-a11-2020-global-dual-sim-td-lte-32gb", + "name": "SM-A115F/DS Galaxy A11 2020 Global Dual SIM TD-LTE 32GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2020-04-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 160, + "market_countries": "Belarus , Bulgaria , Hungary , Pakistan , Poland , Romania , Russia , Saudi Arabia , Singapore , South Africa , UAE , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-a115f-dsn-galaxy-a11-2020-global-dual-sim-td-lte-32gb.json b/data/smartphone/samsung/2020/sm-a115f-dsn-galaxy-a11-2020-global-dual-sim-td-lte-32gb.json new file mode 100644 index 00000000000..e439af1d5db --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a115f-dsn-galaxy-a11-2020-global-dual-sim-td-lte-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a115f-dsn-galaxy-a11-2020-global-dual-sim-td-lte-32gb", + "name": "SM-A115F/DSN Galaxy A11 2020 Global Dual SIM TD-LTE 32GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2020-07-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Germany , Italy , Portugal , Spain , UK", + "market_regions": "Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-a115f-galaxy-a11-2020-global-td-lte-32gb.json b/data/smartphone/samsung/2020/sm-a115f-galaxy-a11-2020-global-td-lte-32gb.json new file mode 100644 index 00000000000..6e08f20453b --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a115f-galaxy-a11-2020-global-td-lte-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a115f-galaxy-a11-2020-global-td-lte-32gb", + "name": "SM-A115F Galaxy A11 2020 Global TD-LTE 32GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2020-05-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia , South Africa , UK", + "market_regions": "Africa , Australia , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-a115m-ds-galaxy-a11-2020-dual-sim-lte-apac-latam-32gb.json b/data/smartphone/samsung/2020/sm-a115m-ds-galaxy-a11-2020-dual-sim-lte-apac-latam-32gb.json new file mode 100644 index 00000000000..d33e6020921 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a115m-ds-galaxy-a11-2020-dual-sim-lte-apac-latam-32gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a115m-ds-galaxy-a11-2020-dual-sim-lte-apac-latam-32gb", + "name": "SM-A115M/DS Galaxy A11 2020 Dual SIM LTE APAC LATAM 32GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2020-04-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 160, + "market_countries": "Costa Rica , Ecuador , Honduras , Japan , Puerto Rico , Singapore , Thailand", + "market_regions": "Asia , Central America , South America , Southeast Asia" +} diff --git a/data/smartphone/samsung/2020/sm-a115m-galaxy-a11-2020-lte-latam-32gb.json b/data/smartphone/samsung/2020/sm-a115m-galaxy-a11-2020-lte-latam-32gb.json new file mode 100644 index 00000000000..a2d12eab499 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a115m-galaxy-a11-2020-lte-latam-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a115m-galaxy-a11-2020-lte-latam-32gb", + "name": "SM-A115M Galaxy A11 2020 LTE LATAM 32GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2020-04-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Peru", + "market_regions": "South America" +} diff --git a/data/smartphone/samsung/2020/sm-a115m-galaxy-a11-2020-lte-latam-64gb.json b/data/smartphone/samsung/2020/sm-a115m-galaxy-a11-2020-lte-latam-64gb.json new file mode 100644 index 00000000000..1b952df286b --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a115m-galaxy-a11-2020-lte-latam-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a115m-galaxy-a11-2020-lte-latam-64gb", + "name": "SM-A115M Galaxy A11 2020 LTE LATAM 64GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2020-04-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-a115u-galaxy-a11-2020-lte-us-32gb-sm-a115r4.json b/data/smartphone/samsung/2020/sm-a115u-galaxy-a11-2020-lte-us-32gb-sm-a115r4.json new file mode 100644 index 00000000000..ecdb0bdfd0f --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a115u-galaxy-a11-2020-lte-us-32gb-sm-a115r4.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a115u-galaxy-a11-2020-lte-us-32gb-sm-a115r4", + "name": "SM-A115U Galaxy A11 2020 LTE US 32GB / SM-A115R4", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2020-06-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 180, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-a115u-galaxy-a11-2020-lte-us-32gb-sm-a115v.json b/data/smartphone/samsung/2020/sm-a115u-galaxy-a11-2020-lte-us-32gb-sm-a115v.json new file mode 100644 index 00000000000..f4f65e41a55 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a115u-galaxy-a11-2020-lte-us-32gb-sm-a115v.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a115u-galaxy-a11-2020-lte-us-32gb-sm-a115v", + "name": "SM-A115U Galaxy A11 2020 LTE US 32GB / SM-A115V", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2020-06-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 180, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-a115u-galaxy-a11-2020-td-lte-us-32gb-sm-a115a.json b/data/smartphone/samsung/2020/sm-a115u-galaxy-a11-2020-td-lte-us-32gb-sm-a115a.json new file mode 100644 index 00000000000..f34a118a5f6 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a115u-galaxy-a11-2020-td-lte-us-32gb-sm-a115a.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a115u-galaxy-a11-2020-td-lte-us-32gb-sm-a115a", + "name": "SM-A115U Galaxy A11 2020 TD-LTE US 32GB / SM-A115A", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2020-06-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 180, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-a115u-galaxy-a11-2020-td-lte-us-32gb-sm-a115t.json b/data/smartphone/samsung/2020/sm-a115u-galaxy-a11-2020-td-lte-us-32gb-sm-a115t.json new file mode 100644 index 00000000000..4981fab588d --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a115u-galaxy-a11-2020-td-lte-us-32gb-sm-a115t.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a115u-galaxy-a11-2020-td-lte-us-32gb-sm-a115t", + "name": "SM-A115U Galaxy A11 2020 TD-LTE US 32GB / SM-A115T", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2020-06-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 180, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-a115u1-galaxy-a11-2020-td-lte-us-32gb.json b/data/smartphone/samsung/2020/sm-a115u1-galaxy-a11-2020-td-lte-us-32gb.json new file mode 100644 index 00000000000..8b1f703fdf1 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a115u1-galaxy-a11-2020-td-lte-us-32gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a115u1-galaxy-a11-2020-td-lte-us-32gb", + "name": "SM-A115U1 Galaxy A11 2020 TD-LTE US 32GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2020-06-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 180, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-a115w-galaxy-a11-2020-td-lte-ca-32gb.json b/data/smartphone/samsung/2020/sm-a115w-galaxy-a11-2020-td-lte-ca-32gb.json new file mode 100644 index 00000000000..9a061627110 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a115w-galaxy-a11-2020-td-lte-ca-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a115w-galaxy-a11-2020-td-lte-ca-32gb", + "name": "SM-A115W Galaxy A11 2020 TD-LTE CA 32GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2020-04-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215p.json b/data/smartphone/samsung/2020/sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215p.json new file mode 100644 index 00000000000..0a900f24cb7 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215p.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215p", + "name": "SM-A215U Galaxy A21 2020 TD-LTE US / SM-A215P", + "brand": "samsung", + "soc": "helio-p35", + "release_date": "2020-06-26", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215r4.json b/data/smartphone/samsung/2020/sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215r4.json new file mode 100644 index 00000000000..281dabb4491 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215r4.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215r4", + "name": "SM-A215U Galaxy A21 2020 TD-LTE US / SM-A215R4", + "brand": "samsung", + "soc": "helio-p35", + "release_date": "2020-07-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 250, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215t.json b/data/smartphone/samsung/2020/sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215t.json new file mode 100644 index 00000000000..fd30b98bc69 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215t.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215t", + "name": "SM-A215U Galaxy A21 2020 TD-LTE US / SM-A215T", + "brand": "samsung", + "soc": "helio-p35", + "release_date": "2020-06-19", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-a215u1-galaxy-a21-2020-td-lte-us.json b/data/smartphone/samsung/2020/sm-a215u1-galaxy-a21-2020-td-lte-us.json new file mode 100644 index 00000000000..633da8ebd5e --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a215u1-galaxy-a21-2020-td-lte-us.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a215u1-galaxy-a21-2020-td-lte-us", + "name": "SM-A215U1 Galaxy A21 2020 TD-LTE US", + "brand": "samsung", + "soc": "helio-p35", + "release_date": "2020-07-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-a215w-galaxy-a21-2020-td-lte-ca.json b/data/smartphone/samsung/2020/sm-a215w-galaxy-a21-2020-td-lte-ca.json new file mode 100644 index 00000000000..c2d28c289b7 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a215w-galaxy-a21-2020-td-lte-ca.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a215w-galaxy-a21-2020-td-lte-ca", + "name": "SM-A215W Galaxy A21 2020 TD-LTE CA", + "brand": "samsung", + "soc": "helio-p35", + "release_date": "2020-07-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-a217f-ds-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-a217f-ds-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..dc120166129 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a217f-ds-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a217f-ds-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A217F/DS Galaxy A21s 2020 Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-850", + "release_date": "2020-06-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Indonesia , Malaysia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2020/sm-a217f-ds-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-64gb.json b/data/smartphone/samsung/2020/sm-a217f-ds-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..70d37cbe6d8 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a217f-ds-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a217f-ds-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-64gb", + "name": "SM-A217F/DS Galaxy A21s 2020 Premium Edition Global Dual SIM TD-LTE 64GB", + "brand": "samsung", + "soc": "exynos-850", + "release_date": "2020-06-02", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Indonesia , Malaysia , Thailand , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2020/sm-a217f-ds-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-32gb.json b/data/smartphone/samsung/2020/sm-a217f-ds-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-32gb.json new file mode 100644 index 00000000000..de2d4b7bbe8 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a217f-ds-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a217f-ds-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-32gb", + "name": "SM-A217F/DS Galaxy A21s 2020 Standard Edition Global Dual SIM TD-LTE 32GB", + "brand": "samsung", + "soc": "exynos-850", + "release_date": "2020-06-02", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Indonesia , South Africa , Thailand , Vietnam", + "market_regions": "Africa , Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2020/sm-a217f-ds-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-64gb.json b/data/smartphone/samsung/2020/sm-a217f-ds-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..29dac876ae7 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a217f-ds-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a217f-ds-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-64gb", + "name": "SM-A217F/DS Galaxy A21s 2020 Standard Edition Global Dual SIM TD-LTE 64GB", + "brand": "samsung", + "soc": "exynos-850", + "release_date": "2020-06-02", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Saudi Arabia , South Africa , UAE", + "market_regions": "Africa , Asia , Middle East" +} diff --git a/data/smartphone/samsung/2020/sm-a217f-dsn-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-64gb.json b/data/smartphone/samsung/2020/sm-a217f-dsn-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..6f68949e291 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a217f-dsn-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a217f-dsn-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-64gb", + "name": "SM-A217F/DSN Galaxy A21s 2020 Premium Edition Global Dual SIM TD-LTE 64GB", + "brand": "samsung", + "soc": "exynos-850", + "release_date": "2020-06-02", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belarus , France , Germany , HK , Italy , Poland , Romania , Russia , Singapore", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-a217f-dsn-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-32gb.json b/data/smartphone/samsung/2020/sm-a217f-dsn-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-32gb.json new file mode 100644 index 00000000000..fb1dd3f6070 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a217f-dsn-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a217f-dsn-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-32gb", + "name": "SM-A217F/DSN Galaxy A21s 2020 Standard Edition Global Dual SIM TD-LTE 32GB", + "brand": "samsung", + "soc": "exynos-850", + "release_date": "2020-06-02", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , India , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , Spain , Switzerland , Sweden , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-a217f-galaxy-a21s-2020-premium-edition-global-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-a217f-galaxy-a21s-2020-premium-edition-global-td-lte-128gb.json new file mode 100644 index 00000000000..a12453b551b --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a217f-galaxy-a21s-2020-premium-edition-global-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a217f-galaxy-a21s-2020-premium-edition-global-td-lte-128gb", + "name": "SM-A217F Galaxy A21s 2020 Premium Edition Global TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-850", + "release_date": "2020-06-02", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 349, + "market_countries": "Australia , NZ", + "market_regions": "Australia" +} diff --git a/data/smartphone/samsung/2020/sm-a217f-galaxy-a21s-2020-standard-edition-global-td-lte-32gb.json b/data/smartphone/samsung/2020/sm-a217f-galaxy-a21s-2020-standard-edition-global-td-lte-32gb.json new file mode 100644 index 00000000000..4b017f4ef33 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a217f-galaxy-a21s-2020-standard-edition-global-td-lte-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a217f-galaxy-a21s-2020-standard-edition-global-td-lte-32gb", + "name": "SM-A217F Galaxy A21s 2020 Standard Edition Global TD-LTE 32GB", + "brand": "samsung", + "soc": "exynos-850", + "release_date": "2020-06-02", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Russia , South Africa", + "market_regions": "Africa , Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/samsung/2020/sm-a217m-ds-galaxy-a21s-2020-standard-edition-dual-sim-td-lte-latam-64gb.json b/data/smartphone/samsung/2020/sm-a217m-ds-galaxy-a21s-2020-standard-edition-dual-sim-td-lte-latam-64gb.json new file mode 100644 index 00000000000..6e6d9f3ee11 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a217m-ds-galaxy-a21s-2020-standard-edition-dual-sim-td-lte-latam-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a217m-ds-galaxy-a21s-2020-standard-edition-dual-sim-td-lte-latam-64gb", + "name": "SM-A217M/DS Galaxy A21s 2020 Standard Edition Dual SIM TD-LTE LATAM 64GB", + "brand": "samsung", + "soc": "exynos-850", + "release_date": "2020-06-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Costa Rica , Ecuador , Peru , Puerto Rico", + "market_regions": "Central America , South America" +} diff --git a/data/smartphone/samsung/2020/sm-a217m-galaxy-a21s-2020-standard-edition-td-lte-latam-64gb.json b/data/smartphone/samsung/2020/sm-a217m-galaxy-a21s-2020-standard-edition-td-lte-latam-64gb.json new file mode 100644 index 00000000000..8838e3a6fb2 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a217m-galaxy-a21s-2020-standard-edition-td-lte-latam-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a217m-galaxy-a21s-2020-standard-edition-td-lte-latam-64gb", + "name": "SM-A217M Galaxy A21s 2020 Standard Edition TD-LTE LATAM 64GB", + "brand": "samsung", + "soc": "exynos-850", + "release_date": "2020-06-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Chile , Mexico , Peru", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/samsung/2020/sm-a217n-galaxy-a21s-2020-standard-edition-td-lte-kr-32gb.json b/data/smartphone/samsung/2020/sm-a217n-galaxy-a21s-2020-standard-edition-td-lte-kr-32gb.json new file mode 100644 index 00000000000..e7ebf106f54 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a217n-galaxy-a21s-2020-standard-edition-td-lte-kr-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a217n-galaxy-a21s-2020-standard-edition-td-lte-kr-32gb", + "name": "SM-A217N Galaxy A21s 2020 Standard Edition TD-LTE KR 32GB", + "brand": "samsung", + "soc": "exynos-850", + "release_date": "2020-07-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-a315f-ds-galaxy-a31-2020-premium-edition-dual-sim-td-lte-in-128gb.json b/data/smartphone/samsung/2020/sm-a315f-ds-galaxy-a31-2020-premium-edition-dual-sim-td-lte-in-128gb.json new file mode 100644 index 00000000000..306f89ecd8f --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a315f-ds-galaxy-a31-2020-premium-edition-dual-sim-td-lte-in-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a315f-ds-galaxy-a31-2020-premium-edition-dual-sim-td-lte-in-128gb", + "name": "SM-A315F/DS Galaxy A31 2020 Premium Edition Dual SIM TD-LTE IN 128GB", + "brand": "samsung", + "soc": "helio-p65", + "release_date": "2020-06-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-a315f-ds-galaxy-a31-2020-standard-edition-dual-sim-td-lte-emea-128gb.json b/data/smartphone/samsung/2020/sm-a315f-ds-galaxy-a31-2020-standard-edition-dual-sim-td-lte-emea-128gb.json new file mode 100644 index 00000000000..d9dd2e7b212 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a315f-ds-galaxy-a31-2020-standard-edition-dual-sim-td-lte-emea-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a315f-ds-galaxy-a31-2020-standard-edition-dual-sim-td-lte-emea-128gb", + "name": "SM-A315F/DS Galaxy A31 2020 Standard Edition Dual SIM TD-LTE EMEA 128GB", + "brand": "samsung", + "soc": "helio-p65", + "release_date": "2020-05-04", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "Israel , Jordan , Kuwait , Lebanon , Saudi Arabia , South Africa , Tunisie , Turkey , UAE", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East" +} diff --git a/data/smartphone/samsung/2020/sm-a315f-galaxy-a31-2020-standard-edition-td-lte-emea-128gb.json b/data/smartphone/samsung/2020/sm-a315f-galaxy-a31-2020-standard-edition-td-lte-emea-128gb.json new file mode 100644 index 00000000000..3d728cf8045 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a315f-galaxy-a31-2020-standard-edition-td-lte-emea-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a315f-galaxy-a31-2020-standard-edition-td-lte-emea-128gb", + "name": "SM-A315F Galaxy A31 2020 Standard Edition TD-LTE EMEA 128GB", + "brand": "samsung", + "soc": "helio-p65", + "release_date": "2020-05-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "Israel , South Africa , Tunisie , Turkey", + "market_regions": "Africa , Asia , Middle East" +} diff --git a/data/smartphone/samsung/2020/sm-a315g-ds-galaxy-a31-2020-premium-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-a315g-ds-galaxy-a31-2020-premium-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..71df5e908a2 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a315g-ds-galaxy-a31-2020-premium-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a315g-ds-galaxy-a31-2020-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A315G/DS Galaxy A31 2020 Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "helio-p65", + "release_date": "2020-04-27", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "HK , Malaysia , Singapore , Thailand , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2020/sm-a315g-ds-galaxy-a31-2020-standard-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-a315g-ds-galaxy-a31-2020-standard-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..3766fa57946 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a315g-ds-galaxy-a31-2020-standard-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a315g-ds-galaxy-a31-2020-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A315G/DS Galaxy A31 2020 Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "helio-p65", + "release_date": "2020-04-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , India , Ireland , Italy , Latvia , Lithuania , Malaysia , Netherlands , Norway , NZ , Pakistan , Philippines , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , Spain , Switzerland , Sweden , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-a315g-ds-galaxy-a31-2020-standard-edition-global-dual-sim-td-lte-64gb.json b/data/smartphone/samsung/2020/sm-a315g-ds-galaxy-a31-2020-standard-edition-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..d4aa60a39d9 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a315g-ds-galaxy-a31-2020-standard-edition-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a315g-ds-galaxy-a31-2020-standard-edition-global-dual-sim-td-lte-64gb", + "name": "SM-A315G/DS Galaxy A31 2020 Standard Edition Global Dual SIM TD-LTE 64GB", + "brand": "samsung", + "soc": "helio-p65", + "release_date": "2020-04-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "msrp_usd": 299, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , Croatia , Cyprus , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , India , Ireland , Italy , Latvia , Lithuania , Malaysia , Netherlands , Norway , NZ , Pakistan , Poland , Portugal , Russia , Romania , Slovakia , Singapore , Slovenia , Spain , Sweden , Switzerland , Thailand , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-a315g-dsl-galaxy-a31-2020-standard-edition-dual-sim-td-lte-latam-128gb.json b/data/smartphone/samsung/2020/sm-a315g-dsl-galaxy-a31-2020-standard-edition-dual-sim-td-lte-latam-128gb.json new file mode 100644 index 00000000000..6770fdd42e8 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a315g-dsl-galaxy-a31-2020-standard-edition-dual-sim-td-lte-latam-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a315g-dsl-galaxy-a31-2020-standard-edition-dual-sim-td-lte-latam-128gb", + "name": "SM-A315G/DSL Galaxy A31 2020 Standard Edition Dual SIM TD-LTE LATAM 128GB", + "brand": "samsung", + "soc": "helio-p65", + "release_date": "2020-05-04", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "msrp_usd": 1999, + "market_countries": "Argentina , Brazil , Chile , Costa Rica , Ecuador , Mexico , Paraguay , Puerto Rico", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/samsung/2020/sm-a315g-dsl-galaxy-a31-2020-standard-edition-dual-sim-td-lte-latam-64gb.json b/data/smartphone/samsung/2020/sm-a315g-dsl-galaxy-a31-2020-standard-edition-dual-sim-td-lte-latam-64gb.json new file mode 100644 index 00000000000..90890e55748 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a315g-dsl-galaxy-a31-2020-standard-edition-dual-sim-td-lte-latam-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a315g-dsl-galaxy-a31-2020-standard-edition-dual-sim-td-lte-latam-64gb", + "name": "SM-A315G/DSL Galaxy A31 2020 Standard Edition Dual SIM TD-LTE LATAM 64GB", + "brand": "samsung", + "soc": "helio-p65", + "release_date": "2020-05-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "Canada , Chile , Costa Rica , Ecuador , Mexico , Paraguay , Puerto Rico", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/samsung/2020/sm-a315g-galaxy-a31-2020-standard-edition-global-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-a315g-galaxy-a31-2020-standard-edition-global-td-lte-128gb.json new file mode 100644 index 00000000000..1c5864b8462 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a315g-galaxy-a31-2020-standard-edition-global-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a315g-galaxy-a31-2020-standard-edition-global-td-lte-128gb", + "name": "SM-A315G Galaxy A31 2020 Standard Edition Global TD-LTE 128GB", + "brand": "samsung", + "soc": "helio-p65", + "release_date": "2020-05-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Mexico , NZ", + "market_regions": "Australia , North America" +} diff --git a/data/smartphone/samsung/2020/sm-a315g-l-galaxy-a31-2020-standard-edition-td-lte-latam-128gb.json b/data/smartphone/samsung/2020/sm-a315g-l-galaxy-a31-2020-standard-edition-td-lte-latam-128gb.json new file mode 100644 index 00000000000..71e25b20c43 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a315g-l-galaxy-a31-2020-standard-edition-td-lte-latam-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a315g-l-galaxy-a31-2020-standard-edition-td-lte-latam-128gb", + "name": "SM-A315G/L Galaxy A31 2020 Standard Edition TD-LTE LATAM 128GB", + "brand": "samsung", + "soc": "helio-p65", + "release_date": "2020-05-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Chile , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/samsung/2020/sm-a315g-l-galaxy-a31-2020-standard-edition-td-lte-latam-64gb.json b/data/smartphone/samsung/2020/sm-a315g-l-galaxy-a31-2020-standard-edition-td-lte-latam-64gb.json new file mode 100644 index 00000000000..7d2b25d1cad --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a315g-l-galaxy-a31-2020-standard-edition-td-lte-latam-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a315g-l-galaxy-a31-2020-standard-edition-td-lte-latam-64gb", + "name": "SM-A315G/L Galaxy A31 2020 Standard Edition TD-LTE LATAM 64GB", + "brand": "samsung", + "soc": "helio-p65", + "release_date": "2020-05-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Chile , Colombia , Costa Rica , Ecuador , Puerto Rico", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/samsung/2020/sm-a315n-galaxy-a31-2020-standard-edition-td-lte-kr-64gb.json b/data/smartphone/samsung/2020/sm-a315n-galaxy-a31-2020-standard-edition-td-lte-kr-64gb.json new file mode 100644 index 00000000000..6e4275b3aed --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a315n-galaxy-a31-2020-standard-edition-td-lte-kr-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a315n-galaxy-a31-2020-standard-edition-td-lte-kr-64gb", + "name": "SM-A315N Galaxy A31 2020 Standard Edition TD-LTE KR 64GB", + "brand": "samsung", + "soc": "helio-p65", + "release_date": "2020-04-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-a415f-dsn-galaxy-a41-2020-global-dual-sim-td-lte-sm-a415f-ds.json b/data/smartphone/samsung/2020/sm-a415f-dsn-galaxy-a41-2020-global-dual-sim-td-lte-sm-a415f-ds.json new file mode 100644 index 00000000000..d76fd0da66f --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a415f-dsn-galaxy-a41-2020-global-dual-sim-td-lte-sm-a415f-ds.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a415f-dsn-galaxy-a41-2020-global-dual-sim-td-lte-sm-a415f-ds", + "name": "SM-A415F/DSN Galaxy A41 2020 Global Dual SIM TD-LTE / SM-A415F/DS", + "brand": "samsung", + "soc": "helio-p65", + "release_date": "2020-05-16", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 152.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 431 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 299, + "market_countries": "Armenia , Australia , Austria , Belarus , Belgium , Brazil , Bulgaria , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , HK , Hungary , India , Ireland , Israel , Italy , Kazakhstan , Latvia , Lithuania , Netherlands , Pakistan , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Singapore , Slovenia , Spain , Sweden , Switzerland , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-a515f-ds-galaxy-a51-2019-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-a515f-ds-galaxy-a51-2019-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..f16574d8a42 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a515f-ds-galaxy-a51-2019-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a515f-ds-galaxy-a51-2019-global-dual-sim-td-lte-128gb", + "name": "SM-A515F/DS Galaxy A51 2019 Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2020-01-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Armenia , Australia , Austria , Belarus , Belgium , Brazil , Bulgaria , Canada , Chile , Costa Rica , Croatia , Czech , Denmark , Ecuador , Estonia , Finland , France , Germany , Guatemala , HK , Honduras , Hungary , India , Ireland , Israel , Italy , Kazakhstan , Latvia , Lebanon , Lithuania , Mexico , Netherlands , Nicaragua , Panama , Pakistan , Paraguay , Peru , Poland , Portugal , Puerto Rico , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Sweden , Switzerland , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-a515f-dsm-galaxy-a51-2019-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-a515f-dsm-galaxy-a51-2019-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..3e20533b6c6 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a515f-dsm-galaxy-a51-2019-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a515f-dsm-galaxy-a51-2019-global-dual-sim-td-lte-128gb", + "name": "SM-A515F/DSM Galaxy A51 2019 Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2020-01-16", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Belarus , Bulgaria , France , Germany , Hungary , Kazakhstan , Netherlands , Poland , Romania , Russia , South Africa , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-a515f-dsm-galaxy-a51-2019-global-dual-sim-td-lte-64gb.json b/data/smartphone/samsung/2020/sm-a515f-dsm-galaxy-a51-2019-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..89477dd3e2a --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a515f-dsm-galaxy-a51-2019-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a515f-dsm-galaxy-a51-2019-global-dual-sim-td-lte-64gb", + "name": "SM-A515F/DSM Galaxy A51 2019 Global Dual SIM TD-LTE 64GB", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2020-01-16", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 284, + "market_countries": "Armenia , Belarus , Bulgaria , France , Germany , Kazakhstan , Netherlands , Poland , Romania , Russia , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-a515f-dsn-galaxy-a51-2019-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-a515f-dsn-galaxy-a51-2019-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..de24d937614 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a515f-dsn-galaxy-a51-2019-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a515f-dsn-galaxy-a51-2019-global-dual-sim-td-lte-128gb", + "name": "SM-A515F/DSN Galaxy A51 2019 Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2020-01-29", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Malaysia , Pakistan , Saudi Arabia , Thailand , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2020/sm-a515f-dst-galaxy-a51-2019-dual-sim-td-lte-latam-128gb.json b/data/smartphone/samsung/2020/sm-a515f-dst-galaxy-a51-2019-dual-sim-td-lte-latam-128gb.json new file mode 100644 index 00000000000..f7acdb27e00 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a515f-dst-galaxy-a51-2019-dual-sim-td-lte-latam-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a515f-dst-galaxy-a51-2019-dual-sim-td-lte-latam-128gb", + "name": "SM-A515F/DST Galaxy A51 2019 Dual SIM TD-LTE LATAM 128GB", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2020-01-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil", + "market_regions": "South America" +} diff --git a/data/smartphone/samsung/2020/sm-a515f-galaxy-a51-2019-global-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-a515f-galaxy-a51-2019-global-td-lte-128gb.json new file mode 100644 index 00000000000..85ce0611cf9 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a515f-galaxy-a51-2019-global-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a515f-galaxy-a51-2019-global-td-lte-128gb", + "name": "SM-A515F Galaxy A51 2019 Global TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2020-01-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Mexico", + "market_regions": "South America" +} diff --git a/data/smartphone/samsung/2020/sm-a515f-n-galaxy-a51-2019-global-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-a515f-n-galaxy-a51-2019-global-td-lte-128gb.json new file mode 100644 index 00000000000..3dc860e33d3 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a515f-n-galaxy-a51-2019-global-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a515f-n-galaxy-a51-2019-global-td-lte-128gb", + "name": "SM-A515F/N Galaxy A51 2019 Global TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2020-01-29", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belgium , Ireland , Israel , Netherlands , South Africa , UK", + "market_regions": "Africa , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-a515u-galaxy-a51-2019-lte-a-us-128gb-sm-a515v.json b/data/smartphone/samsung/2020/sm-a515u-galaxy-a51-2019-lte-a-us-128gb-sm-a515v.json new file mode 100644 index 00000000000..5e71f4210ed --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a515u-galaxy-a51-2019-lte-a-us-128gb-sm-a515v.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a515u-galaxy-a51-2019-lte-a-us-128gb-sm-a515v", + "name": "SM-A515U Galaxy A51 2019 LTE-A US 128GB / SM-A515V", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2020-04-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 399, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-a515u-galaxy-a51-2019-td-lte-us-128gb-sm-a515a.json b/data/smartphone/samsung/2020/sm-a515u-galaxy-a51-2019-td-lte-us-128gb-sm-a515a.json new file mode 100644 index 00000000000..541d97dcf9f --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a515u-galaxy-a51-2019-td-lte-us-128gb-sm-a515a.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a515u-galaxy-a51-2019-td-lte-us-128gb-sm-a515a", + "name": "SM-A515U Galaxy A51 2019 TD-LTE US 128GB / SM-A515A", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2020-05-02", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 399, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-a515u-galaxy-a51-2019-td-lte-us-128gb-sm-a515p.json b/data/smartphone/samsung/2020/sm-a515u-galaxy-a51-2019-td-lte-us-128gb-sm-a515p.json new file mode 100644 index 00000000000..4a5d50f8898 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a515u-galaxy-a51-2019-td-lte-us-128gb-sm-a515p.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a515u-galaxy-a51-2019-td-lte-us-128gb-sm-a515p", + "name": "SM-A515U Galaxy A51 2019 TD-LTE US 128GB / SM-A515P", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2020-04-11", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 399, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-a515u1-galaxy-a51-2019-td-lte-us-128gb.json b/data/smartphone/samsung/2020/sm-a515u1-galaxy-a51-2019-td-lte-us-128gb.json new file mode 100644 index 00000000000..3acb3fb145a --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a515u1-galaxy-a51-2019-td-lte-us-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a515u1-galaxy-a51-2019-td-lte-us-128gb", + "name": "SM-A515U1 Galaxy A51 2019 TD-LTE US 128GB", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2020-05-06", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 399, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-a515w-galaxy-a51-2019-td-lte-ca-64gb.json b/data/smartphone/samsung/2020/sm-a515w-galaxy-a51-2019-td-lte-ca-64gb.json new file mode 100644 index 00000000000..0fac2349169 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a515w-galaxy-a51-2019-td-lte-ca-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a515w-galaxy-a51-2019-td-lte-ca-64gb", + "name": "SM-A515W Galaxy A51 2019 TD-LTE CA 64GB", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2020-04-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-a5160-galaxy-a51-5g-dual-sim-td-lte-cn.json b/data/smartphone/samsung/2020/sm-a5160-galaxy-a51-5g-dual-sim-td-lte-cn.json new file mode 100644 index 00000000000..6eb95197ed2 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a5160-galaxy-a51-5g-dual-sim-td-lte-cn.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a5160-galaxy-a51-5g-dual-sim-td-lte-cn", + "name": "SM-A5160 Galaxy A51 5G Dual SIM TD-LTE CN", + "brand": "samsung", + "soc": "exynos-980", + "release_date": "2020-06-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 187.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-a516b-ds-galaxy-a51-5g-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-a516b-ds-galaxy-a51-5g-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..3677e1fcb95 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a516b-ds-galaxy-a51-5g-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a516b-ds-galaxy-a51-5g-global-dual-sim-td-lte-128gb", + "name": "SM-A516B/DS Galaxy A51 5G Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-980", + "release_date": "2020-06-18", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 187.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Cyprus , Czech , Denmark , Finland , France , Greece , Germany , HK , Hungary , Ireland , Israel , Italy , Netherlands , Norway , Poland , Singapore , Slovakia , South Africa , Spain , Sweden , Switzerland , Taiwan , UK", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-a516b-galaxy-a51-5g-global-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-a516b-galaxy-a51-5g-global-td-lte-128gb.json new file mode 100644 index 00000000000..537ecc3285d --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a516b-galaxy-a51-5g-global-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a516b-galaxy-a51-5g-global-td-lte-128gb", + "name": "SM-A516B Galaxy A51 5G Global TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-980", + "release_date": "2020-06-18", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 187.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Cyprus , Czech , Denmark , Finland , France , Germany , Greece , Hungary , Ireland , Israel , Italy , Netherlands , Norway , Poland , Slovakia , South Africa , Spain , Switzerland , Sweden , UK", + "market_regions": "Africa , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-a516d-galaxy-a51-5g-td-lte-jp-sc-54a.json b/data/smartphone/samsung/2020/sm-a516d-galaxy-a51-5g-td-lte-jp-sc-54a.json new file mode 100644 index 00000000000..ff7470678db --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a516d-galaxy-a51-5g-td-lte-jp-sc-54a.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a516d-galaxy-a51-5g-td-lte-jp-sc-54a", + "name": "SM-A516D Galaxy A51 5G TD-LTE JP SC-54A", + "brand": "samsung", + "soc": "snapdragon-765", + "release_date": "2020-11-06", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-a516j-galaxy-a51-5g-td-lte-jp-scg07.json b/data/smartphone/samsung/2020/sm-a516j-galaxy-a51-5g-td-lte-jp-scg07.json new file mode 100644 index 00000000000..e78f443fb7a --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a516j-galaxy-a51-5g-td-lte-jp-scg07.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a516j-galaxy-a51-5g-td-lte-jp-scg07", + "name": "SM-A516J Galaxy A51 5G TD-LTE JP SCG07", + "brand": "samsung", + "soc": "snapdragon-765", + "release_date": "2020-11-07", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-a516n-galaxy-a51-5g-td-lte-kr.json b/data/smartphone/samsung/2020/sm-a516n-galaxy-a51-5g-td-lte-kr.json new file mode 100644 index 00000000000..a96458b47b2 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a516n-galaxy-a51-5g-td-lte-kr.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a516n-galaxy-a51-5g-td-lte-kr", + "name": "SM-A516N Galaxy A51 5G TD-LTE KR", + "brand": "samsung", + "soc": "exynos-980", + "release_date": "2020-05-07", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 187.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516a.json b/data/smartphone/samsung/2020/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516a.json new file mode 100644 index 00000000000..3694e29993b --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516a.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516a", + "name": "SM-A516U Galaxy A51 5G TD-LTE US / SM-A516A", + "brand": "samsung", + "soc": "exynos-980", + "release_date": "2020-08-21", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 499, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516p.json b/data/smartphone/samsung/2020/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516p.json new file mode 100644 index 00000000000..fa57e6a93b4 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516p.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516p", + "name": "SM-A516U Galaxy A51 5G TD-LTE US / SM-A516P", + "brand": "samsung", + "soc": "exynos-980", + "release_date": "2020-08-21", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 500, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516r4.json b/data/smartphone/samsung/2020/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516r4.json new file mode 100644 index 00000000000..0424fa8e3b5 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516r4.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516r4", + "name": "SM-A516U Galaxy A51 5G TD-LTE US / SM-A516R4", + "brand": "samsung", + "soc": "exynos-980", + "release_date": "2020-08-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 500, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516t.json b/data/smartphone/samsung/2020/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516t.json new file mode 100644 index 00000000000..6ed3132d7a6 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516t.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516t", + "name": "SM-A516U Galaxy A51 5G TD-LTE US / SM-A516T", + "brand": "samsung", + "soc": "exynos-980", + "release_date": "2020-08-21", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 499, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-a516u-galaxy-a51-uw-5g-td-lte-us-sm-a516v.json b/data/smartphone/samsung/2020/sm-a516u-galaxy-a51-uw-5g-td-lte-us-sm-a516v.json new file mode 100644 index 00000000000..6312d605295 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a516u-galaxy-a51-uw-5g-td-lte-us-sm-a516v.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-a516u-galaxy-a51-uw-5g-td-lte-us-sm-a516v", + "name": "SM-A516U Galaxy A51 UW 5G TD-LTE US / SM-A516V", + "brand": "samsung", + "soc": "snapdragon-765", + "release_date": "2020-08-14", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 187.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 550, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-a715f-ds-galaxy-a71-2019-standard-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-a715f-ds-galaxy-a71-2019-standard-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..b23c9d635ea --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a715f-ds-galaxy-a71-2019-standard-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a715f-ds-galaxy-a71-2019-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A715F/DS Galaxy A71 2019 Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "snapdragon-730", + "release_date": "2020-01-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 390, + "market_countries": "Australia , Brazil , Bulgaria , Czech , France , Germany , Guatemala , Hungary , Lebanon , Netherlands , Paraguay , Peru , Poland , Puerto Rico , Romania , Slovakia , Slovenia , South Africa , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Central America , Eastern Europe , Europe , Middle East , South America , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-a715f-dsm-galaxy-a71-2019-premium-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-a715f-dsm-galaxy-a71-2019-premium-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..62ed11e16cb --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a715f-dsm-galaxy-a71-2019-premium-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a715f-dsm-galaxy-a71-2019-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A715F/DSM Galaxy A71 2019 Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "snapdragon-730", + "release_date": "2020-02-24", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Russia , Saudi Arabia , South Africa , UAE , UK", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-a715f-dsm-galaxy-a71-2019-standard-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-a715f-dsm-galaxy-a71-2019-standard-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..6b9bdff12c1 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a715f-dsm-galaxy-a71-2019-standard-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a715f-dsm-galaxy-a71-2019-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A715F/DSM Galaxy A71 2019 Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "snapdragon-730", + "release_date": "2020-01-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 385, + "market_countries": "Armenia , Belarus , Brazil , Bulgaria , France , Germany , Kazakhstan , Mexico , Netherlands , Poland , Romania , Russia , Saudi Arabia , South Africa , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , South America , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-a715f-galaxy-a71-2019-premium-edition-global-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-a715f-galaxy-a71-2019-premium-edition-global-td-lte-128gb.json new file mode 100644 index 00000000000..bb08f2a587b --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a715f-galaxy-a71-2019-premium-edition-global-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a715f-galaxy-a71-2019-premium-edition-global-td-lte-128gb", + "name": "SM-A715F Galaxy A71 2019 Premium Edition Global TD-LTE 128GB", + "brand": "samsung", + "soc": "snapdragon-730", + "release_date": "2020-02-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 390, + "market_countries": "Mexico , South Africa", + "market_regions": "Africa , North America" +} diff --git a/data/smartphone/samsung/2020/sm-a715w-galaxy-a71-2019-td-lte-ca-128gb.json b/data/smartphone/samsung/2020/sm-a715w-galaxy-a71-2019-td-lte-ca-128gb.json new file mode 100644 index 00000000000..5a616cb8b13 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a715w-galaxy-a71-2019-td-lte-ca-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a715w-galaxy-a71-2019-td-lte-ca-128gb", + "name": "SM-A715W Galaxy A71 2019 TD-LTE CA 128GB", + "brand": "samsung", + "soc": "snapdragon-730", + "release_date": "2020-02-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-a7160-galaxy-a71-5g-dual-sim-td-lte-cn.json b/data/smartphone/samsung/2020/sm-a7160-galaxy-a71-5g-dual-sim-td-lte-cn.json new file mode 100644 index 00000000000..f788968d4d6 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a7160-galaxy-a71-5g-dual-sim-td-lte-cn.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a7160-galaxy-a71-5g-dual-sim-td-lte-cn", + "name": "SM-A7160 Galaxy A71 5G Dual SIM TD-LTE CN", + "brand": "samsung", + "soc": "exynos-980", + "release_date": "2020-07-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-a716b-ds-galaxy-a71-5g-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-a716b-ds-galaxy-a71-5g-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..f6dca92dc68 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a716b-ds-galaxy-a71-5g-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a716b-ds-galaxy-a71-5g-global-dual-sim-td-lte-128gb", + "name": "SM-A716B/DS Galaxy A71 5G Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-980", + "release_date": "2020-05-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Saudi Arabia , Singapore , Taiwan , Thailand , UAE", + "market_regions": "Asia , Middle East , Southeast Asia" +} diff --git a/data/smartphone/samsung/2020/sm-a716b-galaxy-a71-5g-global-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-a716b-galaxy-a71-5g-global-td-lte-128gb.json new file mode 100644 index 00000000000..827a4e74a8d --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a716b-galaxy-a71-5g-global-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a716b-galaxy-a71-5g-global-td-lte-128gb", + "name": "SM-A716B Galaxy A71 5G Global TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-980", + "release_date": "2020-05-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Belgium , Finland , France , Germany , Ireland , Italy , Netherlands , NZ , Spain , Sweden , Switzerland , UK", + "market_regions": "Australia , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716a.json b/data/smartphone/samsung/2020/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716a.json new file mode 100644 index 00000000000..0e9f1b09edf --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716a.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716a", + "name": "SM-A716U Galaxy A71 5G TD-LTE US / SM-A716A", + "brand": "samsung", + "soc": "snapdragon-765", + "release_date": "2020-06-27", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 549, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716p.json b/data/smartphone/samsung/2020/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716p.json new file mode 100644 index 00000000000..a5ab1d60a2f --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716p.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716p", + "name": "SM-A716U Galaxy A71 5G TD-LTE US / SM-A716P", + "brand": "samsung", + "soc": "snapdragon-765", + "release_date": "2020-06-19", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 549, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716r4.json b/data/smartphone/samsung/2020/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716r4.json new file mode 100644 index 00000000000..16111042c28 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716r4.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716r4", + "name": "SM-A716U Galaxy A71 5G TD-LTE US / SM-A716R4", + "brand": "samsung", + "soc": "snapdragon-765", + "release_date": "2020-06-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 599, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716t.json b/data/smartphone/samsung/2020/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716t.json new file mode 100644 index 00000000000..1d33b9d1ca6 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716t.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716t", + "name": "SM-A716U Galaxy A71 5G TD-LTE US / SM-A716T", + "brand": "samsung", + "soc": "snapdragon-765", + "release_date": "2020-06-19", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 549, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-a716u-galaxy-a71-uw-5g-lte-a-us-sm-a716v.json b/data/smartphone/samsung/2020/sm-a716u-galaxy-a71-uw-5g-lte-a-us-sm-a716v.json new file mode 100644 index 00000000000..313d8c465ef --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a716u-galaxy-a71-uw-5g-lte-a-us-sm-a716v.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a716u-galaxy-a71-uw-5g-lte-a-us-sm-a716v", + "name": "SM-A716U Galaxy A71 UW 5G LTE-A US / SM-A716V", + "brand": "samsung", + "soc": "snapdragon-765", + "release_date": "2020-07-16", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 599, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-a716u1-galaxy-a71-5g-td-lte-us.json b/data/smartphone/samsung/2020/sm-a716u1-galaxy-a71-5g-td-lte-us.json new file mode 100644 index 00000000000..b34b8f57e53 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-a716u1-galaxy-a71-5g-td-lte-us.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a716u1-galaxy-a71-5g-td-lte-us", + "name": "SM-A716U1 Galaxy A71 5G TD-LTE US", + "brand": "samsung", + "soc": "snapdragon-765", + "release_date": "2020-06-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 600, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-f415f-ds-galaxy-f41-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-f415f-ds-galaxy-f41-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..10f81df3af1 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-f415f-ds-galaxy-f41-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-f415f-ds-galaxy-f41-global-dual-sim-td-lte-128gb", + "name": "SM-F415F/DS Galaxy F41 Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2020-10-16", + "ram_gb": 6.0, + "battery_mah": 6000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-f415f-ds-galaxy-f41-global-dual-sim-td-lte-64gb.json b/data/smartphone/samsung/2020/sm-f415f-ds-galaxy-f41-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..1ddc1f4551f --- /dev/null +++ b/data/smartphone/samsung/2020/sm-f415f-ds-galaxy-f41-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-f415f-ds-galaxy-f41-global-dual-sim-td-lte-64gb", + "name": "SM-F415F/DS Galaxy F41 Global Dual SIM TD-LTE 64GB", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2020-10-16", + "ram_gb": 6.0, + "battery_mah": 6000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-f415f-ds-galaxy-m21s-2020-global-dual-sim-td-lte-64gb.json b/data/smartphone/samsung/2020/sm-f415f-ds-galaxy-m21s-2020-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..8af8db1dc6a --- /dev/null +++ b/data/smartphone/samsung/2020/sm-f415f-ds-galaxy-m21s-2020-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-f415f-ds-galaxy-m21s-2020-global-dual-sim-td-lte-64gb", + "name": "SM-F415F/DS Galaxy M21s 2020 Global Dual SIM TD-LTE 64GB", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2020-11-13", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1899, + "market_countries": "Brazil", + "market_regions": "South America" +} diff --git a/data/smartphone/samsung/2020/sm-f7000-galaxy-z-flip-td-lte-cn-256gb.json b/data/smartphone/samsung/2020/sm-f7000-galaxy-z-flip-td-lte-cn-256gb.json new file mode 100644 index 00000000000..4edc2efca5e --- /dev/null +++ b/data/smartphone/samsung/2020/sm-f7000-galaxy-z-flip-td-lte-cn-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-f7000-galaxy-z-flip-td-lte-cn-256gb", + "name": "SM-F7000 Galaxy Z Flip TD-LTE CN 256GB", + "brand": "samsung", + "soc": "snapdragon-855-plus", + "release_date": "2020-03-01", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2636", + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-f7000-galaxy-z-flip-thom-browne-edition-td-lte-cn-256gb.json b/data/smartphone/samsung/2020/sm-f7000-galaxy-z-flip-thom-browne-edition-td-lte-cn-256gb.json new file mode 100644 index 00000000000..4c7dd5f5727 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-f7000-galaxy-z-flip-thom-browne-edition-td-lte-cn-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-f7000-galaxy-z-flip-thom-browne-edition-td-lte-cn-256gb", + "name": "SM-F7000 Galaxy Z Flip Thom Browne Edition TD-LTE CN 256GB", + "brand": "samsung", + "soc": "snapdragon-855-plus", + "release_date": "2020-04-01", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2636", + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-f700f-ds-galaxy-z-flip-global-td-lte-256gb-sm-f700f.json b/data/smartphone/samsung/2020/sm-f700f-ds-galaxy-z-flip-global-td-lte-256gb-sm-f700f.json new file mode 100644 index 00000000000..e3478be874c --- /dev/null +++ b/data/smartphone/samsung/2020/sm-f700f-ds-galaxy-z-flip-global-td-lte-256gb-sm-f700f.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-f700f-ds-galaxy-z-flip-global-td-lte-256gb-sm-f700f", + "name": "SM-F700F/DS Galaxy Z Flip Global TD-LTE 256GB / SM-F700F", + "brand": "samsung", + "soc": "snapdragon-855-plus", + "release_date": "2020-02-14", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2636", + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Armenia , Australia , Austria , Belgium , Brazil , Bulgaria , Chile , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Greece , HK , Hungary , Ireland , Israel , Italy , Japan , Kazakhstan , Kuwait , Latvia , Lithuania , Malaysia , Mexico , Netherlands , Norway , NZ , Philippines , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Singapore , Slovenia , South Africa , South Korea , Spain , Sweden , Switzerland , Taiwan , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/samsung/2020/sm-f700j-ds-galaxy-z-flip-td-lte-jp-scv47-sm-f700j.json b/data/smartphone/samsung/2020/sm-f700j-ds-galaxy-z-flip-td-lte-jp-scv47-sm-f700j.json new file mode 100644 index 00000000000..a55f77cf728 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-f700j-ds-galaxy-z-flip-td-lte-jp-scv47-sm-f700j.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-f700j-ds-galaxy-z-flip-td-lte-jp-scv47-sm-f700j", + "name": "SM-F700J/DS Galaxy Z Flip TD-LTE JP SCV47 / SM-F700J", + "brand": "samsung", + "soc": "snapdragon-855-plus", + "release_date": "2020-02-28", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2636", + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-f700n-galaxy-z-flip-td-lte-kr-256gb.json b/data/smartphone/samsung/2020/sm-f700n-galaxy-z-flip-td-lte-kr-256gb.json new file mode 100644 index 00000000000..6774cb4d6a8 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-f700n-galaxy-z-flip-td-lte-kr-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-f700n-galaxy-z-flip-td-lte-kr-256gb", + "name": "SM-F700N Galaxy Z Flip TD-LTE KR 256GB", + "brand": "samsung", + "soc": "snapdragon-855-plus", + "release_date": "2020-02-14", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2636", + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-f700u-ds-galaxy-z-flip-td-lte-us-256gb-sm-f700u.json b/data/smartphone/samsung/2020/sm-f700u-ds-galaxy-z-flip-td-lte-us-256gb-sm-f700u.json new file mode 100644 index 00000000000..067a95e5d8f --- /dev/null +++ b/data/smartphone/samsung/2020/sm-f700u-ds-galaxy-z-flip-td-lte-us-256gb-sm-f700u.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-f700u-ds-galaxy-z-flip-td-lte-us-256gb-sm-f700u", + "name": "SM-F700U/DS Galaxy Z Flip TD-LTE US 256GB / SM-F700U", + "brand": "samsung", + "soc": "snapdragon-855-plus", + "release_date": "2020-02-14", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2636", + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1380, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-f700u-ds-galaxy-z-flip-thom-browne-edition-td-lte-us-256gb-sm-f700u.json b/data/smartphone/samsung/2020/sm-f700u-ds-galaxy-z-flip-thom-browne-edition-td-lte-us-256gb-sm-f700u.json new file mode 100644 index 00000000000..1e1d220e03f --- /dev/null +++ b/data/smartphone/samsung/2020/sm-f700u-ds-galaxy-z-flip-thom-browne-edition-td-lte-us-256gb-sm-f700u.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-f700u-ds-galaxy-z-flip-thom-browne-edition-td-lte-us-256gb-sm-f700u", + "name": "SM-F700U/DS Galaxy Z Flip Thom Browne Edition TD-LTE US 256GB / SM-F700U", + "brand": "samsung", + "soc": "snapdragon-855-plus", + "release_date": "2020-03-01", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2636", + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 2480, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-f700w-ds-galaxy-z-flip-td-lte-ca-256gb.json b/data/smartphone/samsung/2020/sm-f700w-ds-galaxy-z-flip-td-lte-ca-256gb.json new file mode 100644 index 00000000000..3195d9f08f4 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-f700w-ds-galaxy-z-flip-td-lte-ca-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-f700w-ds-galaxy-z-flip-td-lte-ca-256gb", + "name": "SM-F700W/DS Galaxy Z Flip TD-LTE CA 256GB", + "brand": "samsung", + "soc": "snapdragon-855-plus", + "release_date": "2020-02-01", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2636", + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-f7070-galaxy-z-flip-5g-td-lte-cn-256gb.json b/data/smartphone/samsung/2020/sm-f7070-galaxy-z-flip-5g-td-lte-cn-256gb.json new file mode 100644 index 00000000000..9bea960b58c --- /dev/null +++ b/data/smartphone/samsung/2020/sm-f7070-galaxy-z-flip-5g-td-lte-cn-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-f7070-galaxy-z-flip-5g-td-lte-cn-256gb", + "name": "SM-F7070 Galaxy Z Flip 5G TD-LTE CN 256GB", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-08-01", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2636", + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2020/sm-f707b-galaxy-z-flip-5g-global-dual-sim-td-lte-256gb.json b/data/smartphone/samsung/2020/sm-f707b-galaxy-z-flip-5g-global-dual-sim-td-lte-256gb.json new file mode 100644 index 00000000000..30cdfa4a294 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-f707b-galaxy-z-flip-5g-global-dual-sim-td-lte-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-f707b-galaxy-z-flip-5g-global-dual-sim-td-lte-256gb", + "name": "SM-F707B Galaxy Z Flip 5G Global Dual SIM TD-LTE 256GB", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-08-09", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2636", + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1399, + "market_countries": "Belgium , Czech , Denmark , Finland , France , Germany , Hungary , Ireland , Italy , Netherlands , Norway , Poland , Portugal , Russia , Saudi Arabia , Singapore , Slovakia , Spain , Switzerland , Taiwan , UAE , UK", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-f707j-galaxy-z-flip-5g-td-lte-jp-scg04.json b/data/smartphone/samsung/2020/sm-f707j-galaxy-z-flip-5g-td-lte-jp-scg04.json new file mode 100644 index 00000000000..b20e7f6adbf --- /dev/null +++ b/data/smartphone/samsung/2020/sm-f707j-galaxy-z-flip-5g-td-lte-jp-scg04.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-f707j-galaxy-z-flip-5g-td-lte-jp-scg04", + "name": "SM-F707J Galaxy Z Flip 5G TD-LTE JP SCG04", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-09-01", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2636", + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-f707n-galaxy-z-flip-5g-td-lte-kr-256gb.json b/data/smartphone/samsung/2020/sm-f707n-galaxy-z-flip-5g-td-lte-kr-256gb.json new file mode 100644 index 00000000000..add3e686404 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-f707n-galaxy-z-flip-5g-td-lte-kr-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-f707n-galaxy-z-flip-5g-td-lte-kr-256gb", + "name": "SM-F707N Galaxy Z Flip 5G TD-LTE KR 256GB", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-08-01", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2636", + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-f707w-galaxy-z-flip-5g-td-lte-ca-256gb.json b/data/smartphone/samsung/2020/sm-f707w-galaxy-z-flip-5g-td-lte-ca-256gb.json new file mode 100644 index 00000000000..03943e47787 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-f707w-galaxy-z-flip-5g-td-lte-ca-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-f707w-galaxy-z-flip-5g-td-lte-ca-256gb", + "name": "SM-F707W Galaxy Z Flip 5G TD-LTE CA 256GB", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-07-01", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2636", + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1580, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-f9160-galaxy-z-fold2-5g-td-lte-cn-hk-512gb.json b/data/smartphone/samsung/2020/sm-f9160-galaxy-z-fold2-5g-td-lte-cn-hk-512gb.json new file mode 100644 index 00000000000..0afab202a64 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-f9160-galaxy-z-fold2-5g-td-lte-cn-hk-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-f9160-galaxy-z-fold2-5g-td-lte-cn-hk-512gb", + "name": "SM-F9160 Galaxy Z Fold2 5G TD-LTE CN HK 512GB", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-09-18", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 282.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.22, + "resolution": "816x2260", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2020/sm-f9160-galaxy-z-fold2-5g-thom-browne-edition-td-lte-cn-hk-512gb.json b/data/smartphone/samsung/2020/sm-f9160-galaxy-z-fold2-5g-thom-browne-edition-td-lte-cn-hk-512gb.json new file mode 100644 index 00000000000..3f3fd7ce8c0 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-f9160-galaxy-z-fold2-5g-thom-browne-edition-td-lte-cn-hk-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-f9160-galaxy-z-fold2-5g-thom-browne-edition-td-lte-cn-hk-512gb", + "name": "SM-F9160 Galaxy Z Fold2 5G Thom Browne Edition TD-LTE CN HK 512GB", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-10-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 282.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.22, + "resolution": "816x2260", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2020/sm-f916b-galaxy-z-fold2-5g-global-dual-sim-td-lte-256gb.json b/data/smartphone/samsung/2020/sm-f916b-galaxy-z-fold2-5g-global-dual-sim-td-lte-256gb.json new file mode 100644 index 00000000000..6af4379ed34 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-f916b-galaxy-z-fold2-5g-global-dual-sim-td-lte-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f916b-galaxy-z-fold2-5g-global-dual-sim-td-lte-256gb", + "name": "SM-F916B Galaxy Z Fold2 5G Global Dual SIM TD-LTE 256GB", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-09-18", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 282.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.22, + "resolution": "816x2260", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1799, + "market_countries": "Australia , Belarus , Belgium , Bulgaria , Croatia , Czech , Denmark , Finland , France , Germany , HK , Hungary , Ireland , Israel , Italy , Japan , Jordan , Netherlands , Norway , NZ , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Spain , Switzerland , Taiwan , Thailand , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-f916b-galaxy-z-fold2-5g-thom-browne-edition-global-dual-sim-td-lte-256gb.json b/data/smartphone/samsung/2020/sm-f916b-galaxy-z-fold2-5g-thom-browne-edition-global-dual-sim-td-lte-256gb.json new file mode 100644 index 00000000000..9f6c399a974 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-f916b-galaxy-z-fold2-5g-thom-browne-edition-global-dual-sim-td-lte-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-f916b-galaxy-z-fold2-5g-thom-browne-edition-global-dual-sim-td-lte-256gb", + "name": "SM-F916B Galaxy Z Fold2 5G Thom Browne Edition Global Dual SIM TD-LTE 256GB", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-10-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 282.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.22, + "resolution": "816x2260", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Belgium , Croatia , Czech , Denmark , Finland , France , Germany , HK , Hungary , Ireland , Israel , Italy , Japan , Jordan , Netherlands , Norway , NZ , Portugal , Russia , Romania , Saudi Arabia , Singapore , Spain , Switzerland , Taiwan , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-f916j-galaxy-z-fold2-uw-5g-td-lte-jp-256gb-scg05-sm-f916q.json b/data/smartphone/samsung/2020/sm-f916j-galaxy-z-fold2-uw-5g-td-lte-jp-256gb-scg05-sm-f916q.json new file mode 100644 index 00000000000..55a3cc71158 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-f916j-galaxy-z-fold2-uw-5g-td-lte-jp-256gb-scg05-sm-f916q.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-f916j-galaxy-z-fold2-uw-5g-td-lte-jp-256gb-scg05-sm-f916q", + "name": "SM-F916J Galaxy Z Fold2 UW 5G TD-LTE JP 256GB SCG05 / SM-F916Q", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-11-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 282.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.22, + "resolution": "816x2260", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-f916n-galaxy-z-fold2-uw-5g-td-lte-kr-256gb.json b/data/smartphone/samsung/2020/sm-f916n-galaxy-z-fold2-uw-5g-td-lte-kr-256gb.json new file mode 100644 index 00000000000..6294a530379 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-f916n-galaxy-z-fold2-uw-5g-td-lte-kr-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-f916n-galaxy-z-fold2-uw-5g-td-lte-kr-256gb", + "name": "SM-F916N Galaxy Z Fold2 UW 5G TD-LTE KR 256GB", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-09-18", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 282.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.22, + "resolution": "816x2260", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916a.json b/data/smartphone/samsung/2020/sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916a.json new file mode 100644 index 00000000000..dd57ecc5b1d --- /dev/null +++ b/data/smartphone/samsung/2020/sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916a.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916a", + "name": "SM-F916U Galaxy Z Fold2 5G TD-LTE US 256GB / SM-F916A", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-09-18", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 282.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.22, + "resolution": "816x2260", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 2000, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916p.json b/data/smartphone/samsung/2020/sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916p.json new file mode 100644 index 00000000000..846d87b152c --- /dev/null +++ b/data/smartphone/samsung/2020/sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916p.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916p", + "name": "SM-F916U Galaxy Z Fold2 5G TD-LTE US 256GB / SM-F916P", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-09-18", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 282.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.22, + "resolution": "816x2260", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 2000, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916r4.json b/data/smartphone/samsung/2020/sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916r4.json new file mode 100644 index 00000000000..d4e5437057b --- /dev/null +++ b/data/smartphone/samsung/2020/sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916r4.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916r4", + "name": "SM-F916U Galaxy Z Fold2 5G TD-LTE US 256GB / SM-F916R4", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-09-18", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 282.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.22, + "resolution": "816x2260", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 2000, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-f916u-galaxy-z-fold2-5g-uw-td-lte-us-256gb-sm-f916t.json b/data/smartphone/samsung/2020/sm-f916u-galaxy-z-fold2-5g-uw-td-lte-us-256gb-sm-f916t.json new file mode 100644 index 00000000000..b683167dacf --- /dev/null +++ b/data/smartphone/samsung/2020/sm-f916u-galaxy-z-fold2-5g-uw-td-lte-us-256gb-sm-f916t.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f916u-galaxy-z-fold2-5g-uw-td-lte-us-256gb-sm-f916t", + "name": "SM-F916U Galaxy Z Fold2 5G UW TD-LTE US 256GB / SM-F916T", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-09-17", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 282.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.22, + "resolution": "816x2260", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 2000, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-f916u-galaxy-z-fold2-uw-5g-td-lte-us-256gb-sm-f916v.json b/data/smartphone/samsung/2020/sm-f916u-galaxy-z-fold2-uw-5g-td-lte-us-256gb-sm-f916v.json new file mode 100644 index 00000000000..470b80d8cd7 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-f916u-galaxy-z-fold2-uw-5g-td-lte-us-256gb-sm-f916v.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f916u-galaxy-z-fold2-uw-5g-td-lte-us-256gb-sm-f916v", + "name": "SM-F916U Galaxy Z Fold2 UW 5G TD-LTE US 256GB / SM-F916V", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-09-18", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 282.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.22, + "resolution": "816x2260", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 2000, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-f916u1-galaxy-z-fold2-uw-5g-td-lte-us-256gb.json b/data/smartphone/samsung/2020/sm-f916u1-galaxy-z-fold2-uw-5g-td-lte-us-256gb.json new file mode 100644 index 00000000000..50026fe8149 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-f916u1-galaxy-z-fold2-uw-5g-td-lte-us-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f916u1-galaxy-z-fold2-uw-5g-td-lte-us-256gb", + "name": "SM-F916U1 Galaxy Z Fold2 UW 5G TD-LTE US 256GB", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-09-18", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 282.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.22, + "resolution": "816x2260", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 2000, + "market_countries": "Costa Rica , Puerto Rico , USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/samsung/2020/sm-f916u1-galaxy-z-fold2-uw-5g-thom-browne-edition-td-lte-us-256gb.json b/data/smartphone/samsung/2020/sm-f916u1-galaxy-z-fold2-uw-5g-thom-browne-edition-td-lte-us-256gb.json new file mode 100644 index 00000000000..fb562394a3c --- /dev/null +++ b/data/smartphone/samsung/2020/sm-f916u1-galaxy-z-fold2-uw-5g-thom-browne-edition-td-lte-us-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f916u1-galaxy-z-fold2-uw-5g-thom-browne-edition-td-lte-us-256gb", + "name": "SM-F916U1 Galaxy Z Fold2 UW 5G Thom Browne Edition TD-LTE US 256GB", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-09-26", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 282.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.22, + "resolution": "816x2260", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 3299, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-f916w-galaxy-z-fold2-5g-td-lte-ca-256gb.json b/data/smartphone/samsung/2020/sm-f916w-galaxy-z-fold2-5g-td-lte-ca-256gb.json new file mode 100644 index 00000000000..b323e31e9bd --- /dev/null +++ b/data/smartphone/samsung/2020/sm-f916w-galaxy-z-fold2-5g-td-lte-ca-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f916w-galaxy-z-fold2-5g-td-lte-ca-256gb", + "name": "SM-F916W Galaxy Z Fold2 5G TD-LTE CA 256GB", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-10-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 282.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.22, + "resolution": "816x2260", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 2320, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g715fn-ds-galaxy-xcover-pro-2020-global-dual-sim-td-lte.json b/data/smartphone/samsung/2020/sm-g715fn-ds-galaxy-xcover-pro-2020-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..e330049f391 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g715fn-ds-galaxy-xcover-pro-2020-global-dual-sim-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g715fn-ds-galaxy-xcover-pro-2020-global-dual-sim-td-lte", + "name": "SM-G715FN/DS Galaxy XCover Pro 2020 Global Dual SIM TD-LTE", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2020-03-01", + "ram_gb": 4.0, + "battery_mah": 4050, + "weight_g": 218.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Canada , Croatia , Czech , Denmark , Ecuador , Estonia , Finland , France , Germany , Guatemala , Honduras , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Panama , Poland , Portugal , Russia , Romania , Slovakia , Slovenia , Spain , Sweden , Switzerland , UK , Ukraine", + "market_regions": "Asia , Central America , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-g715fn-galaxy-xcover-pro-2020-global-td-lte.json b/data/smartphone/samsung/2020/sm-g715fn-galaxy-xcover-pro-2020-global-td-lte.json new file mode 100644 index 00000000000..48bdd51ea9e --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g715fn-galaxy-xcover-pro-2020-global-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g715fn-galaxy-xcover-pro-2020-global-td-lte", + "name": "SM-G715FN Galaxy XCover Pro 2020 Global TD-LTE", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2020-03-01", + "ram_gb": 4.0, + "battery_mah": 4050, + "weight_g": 218.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , NZ", + "market_regions": "Australia" +} diff --git a/data/smartphone/samsung/2020/sm-g715u-galaxy-xcover-pro-2020-dual-sim-td-lte-us-sm-g715a.json b/data/smartphone/samsung/2020/sm-g715u-galaxy-xcover-pro-2020-dual-sim-td-lte-us-sm-g715a.json new file mode 100644 index 00000000000..3d3943cc7d6 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g715u-galaxy-xcover-pro-2020-dual-sim-td-lte-us-sm-g715a.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g715u-galaxy-xcover-pro-2020-dual-sim-td-lte-us-sm-g715a", + "name": "SM-G715U Galaxy XCover Pro 2020 Dual SIM TD-LTE US / SM-G715A", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2020-04-21", + "ram_gb": 4.0, + "battery_mah": 4050, + "weight_g": 218.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 510, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g715u-galaxy-xcover-pro-2020-dual-sim-td-lte-us-sm-g715v.json b/data/smartphone/samsung/2020/sm-g715u-galaxy-xcover-pro-2020-dual-sim-td-lte-us-sm-g715v.json new file mode 100644 index 00000000000..2eabb55412f --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g715u-galaxy-xcover-pro-2020-dual-sim-td-lte-us-sm-g715v.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g715u-galaxy-xcover-pro-2020-dual-sim-td-lte-us-sm-g715v", + "name": "SM-G715U Galaxy XCover Pro 2020 Dual SIM TD-LTE US / SM-G715V", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2020-04-21", + "ram_gb": 4.0, + "battery_mah": 4050, + "weight_g": 218.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 500, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g715u1-galaxy-xcover-pro-2020-dual-sim-td-lte-us.json b/data/smartphone/samsung/2020/sm-g715u1-galaxy-xcover-pro-2020-dual-sim-td-lte-us.json new file mode 100644 index 00000000000..0d2d33d27c2 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g715u1-galaxy-xcover-pro-2020-dual-sim-td-lte-us.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g715u1-galaxy-xcover-pro-2020-dual-sim-td-lte-us", + "name": "SM-G715U1 Galaxy XCover Pro 2020 Dual SIM TD-LTE US", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2020-04-01", + "ram_gb": 4.0, + "battery_mah": 4050, + "weight_g": 218.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 499, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g715w-galaxy-xcover-pro-2020-dual-sim-td-lte-ca.json b/data/smartphone/samsung/2020/sm-g715w-galaxy-xcover-pro-2020-dual-sim-td-lte-ca.json new file mode 100644 index 00000000000..1127ad0f59e --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g715w-galaxy-xcover-pro-2020-dual-sim-td-lte-ca.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g715w-galaxy-xcover-pro-2020-dual-sim-td-lte-ca", + "name": "SM-G715W Galaxy XCover Pro 2020 Dual SIM TD-LTE CA", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2020-04-01", + "ram_gb": 4.0, + "battery_mah": 4050, + "weight_g": 218.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 700, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g770f-ds-galaxy-s10-lite-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-g770f-ds-galaxy-s10-lite-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..633914f0c13 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g770f-ds-galaxy-s10-lite-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g770f-ds-galaxy-s10-lite-global-dual-sim-td-lte-128gb", + "name": "SM-G770F/DS Galaxy S10 Lite Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2020-02-02", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belarus , Belgium , Brazil , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Ireland , Israel , Italy , Latvia , Lithuania , Malaysia , Netherlands , Norway , NZ , Pakistan , Paraguay , Peru , Philippines , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Singapore , Slovenia , Spain , Sweden , Switzerland , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Oceania , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-g770f-dsm-galaxy-s10-lite-dual-sim-td-lte-in-128gb.json b/data/smartphone/samsung/2020/sm-g770f-dsm-galaxy-s10-lite-dual-sim-td-lte-in-128gb.json new file mode 100644 index 00000000000..1339932c4a3 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g770f-dsm-galaxy-s10-lite-dual-sim-td-lte-in-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g770f-dsm-galaxy-s10-lite-dual-sim-td-lte-in-128gb", + "name": "SM-G770F/DSM Galaxy S10 Lite Dual SIM TD-LTE IN 128GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2020-02-02", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-g770f-dsm-galaxy-s10-lite-dual-sim-td-lte-in-512gb.json b/data/smartphone/samsung/2020/sm-g770f-dsm-galaxy-s10-lite-dual-sim-td-lte-in-512gb.json new file mode 100644 index 00000000000..e40c65f6d48 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g770f-dsm-galaxy-s10-lite-dual-sim-td-lte-in-512gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g770f-dsm-galaxy-s10-lite-dual-sim-td-lte-in-512gb", + "name": "SM-G770F/DSM Galaxy S10 Lite Dual SIM TD-LTE IN 512GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2020-03-02", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-g770f-galaxy-s10-lite-global-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-g770f-galaxy-s10-lite-global-td-lte-128gb.json new file mode 100644 index 00000000000..21afb60c2a7 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g770f-galaxy-s10-lite-global-td-lte-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g770f-galaxy-s10-lite-global-td-lte-128gb", + "name": "SM-G770F Galaxy S10 Lite Global TD-LTE 128GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2020-01-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , NZ , Poland , Portugal , Romania , Russia , Serbia , Slovakia , Slovenia , South Africa , Spain , Switzerland , Sweden , Turkey , UK , Ukraine", + "market_regions": "Africa , Australia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-g770u1-galaxy-s10-lite-td-lte-us-128gb.json b/data/smartphone/samsung/2020/sm-g770u1-galaxy-s10-lite-td-lte-us-128gb.json new file mode 100644 index 00000000000..e3b94bc0a67 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g770u1-galaxy-s10-lite-td-lte-us-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g770u1-galaxy-s10-lite-td-lte-us-128gb", + "name": "SM-G770U1 Galaxy S10 Lite TD-LTE US 128GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2020-04-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 650, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g780f-ds-galaxy-s20-fe-premium-edition-dual-sim-td-lte-256gb-s20-fan-edition.json b/data/smartphone/samsung/2020/sm-g780f-ds-galaxy-s20-fe-premium-edition-dual-sim-td-lte-256gb-s20-fan-edition.json new file mode 100644 index 00000000000..50dddd896e1 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g780f-ds-galaxy-s20-fe-premium-edition-dual-sim-td-lte-256gb-s20-fan-edition.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g780f-ds-galaxy-s20-fe-premium-edition-dual-sim-td-lte-256gb-s20-fan-edition", + "name": "SM-G780F/DS Galaxy S20 FE Premium Edition Dual SIM TD-LTE 256GB / S20 Fan Edition", + "brand": "samsung", + "soc": "exynos-990", + "release_date": "2020-10-02", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 701, + "market_countries": "Algeria , Argentina , Armenia , Austria , Belarus , Belgium , Brazil , Bulgaria , Canada , Chile , Costa Rica , Cyprus , Croatia , Czech , Denmark , Ecuador , Egypt , Finland , France , Greece , Germany , HK , Hungary , India , Indonesia , Ireland , Israel , Italy , Jordan , Kazakhstan , Kenya , Kuwait , Malaysia , Netherlands , Norway , Panama , Pakistan , Peru , Philippines , Poland , Portugal , Romania , Russia , Saudi Arabia , Serbia , Slovakia , Singapore , South Africa , Spain , Sweden , Sri Lanka , Switzerland , Taiwan , Thailand , Tunisie , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/samsung/2020/sm-g780f-ds-galaxy-s20-fe-standard-edition-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-g780f-ds-galaxy-s20-fe-standard-edition-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..c1294fd5ebc --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g780f-ds-galaxy-s20-fe-standard-edition-dual-sim-td-lte-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g780f-ds-galaxy-s20-fe-standard-edition-dual-sim-td-lte-128gb", + "name": "SM-G780F/DS Galaxy S20 FE Standard Edition Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-990", + "release_date": "2020-10-02", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 633, + "market_countries": "Algeria , Argentina , Armenia , Austria , Belarus , Belgium , Brazil , Bulgaria , Canada , Chile , Colombia , Costa Rica , Cyprus , Croatia , Czech , Denmark , Ecuador , Egypt , Finland , France , Germany , Greece , HK , Hungary , India , Indonesia , Ireland , Israel , Italy , Jordan , Kazakhstan , Kenya , Kuwait , Malaysia , Mexico , Nepal , Netherlands , Norway , Panama , Pakistan , Peru , Philippines , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Singapore , South Africa , Spain , Switzerland , Sweden , Sri Lanka , Taiwan , Thailand , Tunisie , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/samsung/2020/sm-g7810-galaxy-s20-fe-5g-standard-dual-sim-td-lte-cn-128gb.json b/data/smartphone/samsung/2020/sm-g7810-galaxy-s20-fe-5g-standard-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..a46dfd79780 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g7810-galaxy-s20-fe-5g-standard-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g7810-galaxy-s20-fe-5g-standard-dual-sim-td-lte-cn-128gb", + "name": "SM-G7810 Galaxy S20 FE 5G Standard Dual SIM TD-LTE CN 128GB", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-10-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2020/sm-g781b-ds-galaxy-s20-fe-5g-standard-global-dual-sim-td-lte-128gb-s20-fan-edition.json b/data/smartphone/samsung/2020/sm-g781b-ds-galaxy-s20-fe-5g-standard-global-dual-sim-td-lte-128gb-s20-fan-edition.json new file mode 100644 index 00000000000..286129145c2 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g781b-ds-galaxy-s20-fe-5g-standard-global-dual-sim-td-lte-128gb-s20-fan-edition.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g781b-ds-galaxy-s20-fe-5g-standard-global-dual-sim-td-lte-128gb-s20-fan-edition", + "name": "SM-G781B/DS Galaxy S20 FE 5G Standard Global Dual SIM TD-LTE 128GB / S20 Fan Edition", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-10-02", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 699, + "market_countries": "Algeria , Argentina , Australia , Austria , Belarus , Belgium , Bolivia , Brazil , Bulgaria , Chile , Colombia , Costa Rica , Cyprus , Croatia , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , Guatemala , HK , Honduras , Hungary , India , Ireland , Israel , Italy , Latvia , Lebanon , Lithuania , Malaysia , Mexico , Morocco , Netherlands , Norway , Panama , Paraguay , Peru , Philippines , Poland , Portugal , Russia , Saudi Arabia , Serbia , Singapore , Slovakia , South Africa , Spain , Switzerland , Sri Lanka , Sweden , Taiwan , Tunisie , Thailand , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/samsung/2020/sm-g781n-galaxy-s20-fe-5g-standard-td-lte-kr-128gb.json b/data/smartphone/samsung/2020/sm-g781n-galaxy-s20-fe-5g-standard-td-lte-kr-128gb.json new file mode 100644 index 00000000000..7ab9a2e0f4a --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g781n-galaxy-s20-fe-5g-standard-td-lte-kr-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g781n-galaxy-s20-fe-5g-standard-td-lte-kr-128gb", + "name": "SM-G781N Galaxy S20 FE 5G Standard TD-LTE KR 128GB", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-10-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-g781u-galaxy-s20-fe-5g-standard-td-lte-us-256gb-sm-g781t.json b/data/smartphone/samsung/2020/sm-g781u-galaxy-s20-fe-5g-standard-td-lte-us-256gb-sm-g781t.json new file mode 100644 index 00000000000..f458ceee22e --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g781u-galaxy-s20-fe-5g-standard-td-lte-us-256gb-sm-g781t.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g781u-galaxy-s20-fe-5g-standard-td-lte-us-256gb-sm-g781t", + "name": "SM-G781U Galaxy S20 FE 5G Standard TD-LTE US 256GB / SM-G781T", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-10-06", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 700, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g781u1-galaxy-s20-fe-5g-uw-standard-td-lte-us-128gb.json b/data/smartphone/samsung/2020/sm-g781u1-galaxy-s20-fe-5g-uw-standard-td-lte-us-128gb.json new file mode 100644 index 00000000000..7ed29f63488 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g781u1-galaxy-s20-fe-5g-uw-standard-td-lte-us-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g781u1-galaxy-s20-fe-5g-uw-standard-td-lte-us-128gb", + "name": "SM-G781U1 Galaxy S20 FE 5G UW Standard TD-LTE US 128GB", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-10-06", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 700, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g781w-galaxy-s20-fe-5g-standard-td-lte-ca-128gb.json b/data/smartphone/samsung/2020/sm-g781w-galaxy-s20-fe-5g-standard-td-lte-ca-128gb.json new file mode 100644 index 00000000000..5781a9dc064 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g781w-galaxy-s20-fe-5g-standard-td-lte-ca-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g781w-galaxy-s20-fe-5g-standard-td-lte-ca-128gb", + "name": "SM-G781W Galaxy S20 FE 5G Standard TD-LTE CA 128GB", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-10-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g889f-galaxy-xcover-fieldpro-global-dual-sim-td-lte.json b/data/smartphone/samsung/2020/sm-g889f-galaxy-xcover-fieldpro-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..ca6728803a4 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g889f-galaxy-xcover-fieldpro-global-dual-sim-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-g889f-galaxy-xcover-fieldpro-global-dual-sim-td-lte", + "name": "SM-G889F Galaxy Xcover FieldPro Global Dual SIM TD-LTE", + "brand": "samsung", + "soc": "exynos-9810", + "release_date": "2020-01-01", + "ram_gb": 4.0, + "battery_mah": 4500, + "weight_g": 256.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.08, + "resolution": "1440x2560", + "type": "Color IPS TFT LCD display", + "ppi": 578 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Czech , Finland , France , Germany , Hungary , Italy , Norway , Romania , Russia , Saudi Arabia , Spain , UAE , UK", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-g977d-galaxy-s10-5g-td-lte-jp-256gb.json b/data/smartphone/samsung/2020/sm-g977d-galaxy-s10-5g-td-lte-jp-256gb.json new file mode 100644 index 00000000000..648539e710f --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g977d-galaxy-s10-5g-td-lte-jp-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g977d-galaxy-s10-5g-td-lte-jp-256gb", + "name": "SM-G977D Galaxy S10 5G TD-LTE JP 256GB", + "brand": "samsung", + "soc": "snapdragon-855", + "release_date": "2020-01-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.66, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 505 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-g980f-ds-galaxy-s20-global-dual-sim-td-lte-128gb-galaxy-s11.json b/data/smartphone/samsung/2020/sm-g980f-ds-galaxy-s20-global-dual-sim-td-lte-128gb-galaxy-s11.json new file mode 100644 index 00000000000..be6d1e9b81e --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g980f-ds-galaxy-s20-global-dual-sim-td-lte-128gb-galaxy-s11.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g980f-ds-galaxy-s20-global-dual-sim-td-lte-128gb-galaxy-s11", + "name": "SM-G980F/DS Galaxy S20 Global Dual SIM TD-LTE 128GB / Galaxy S11", + "brand": "samsung", + "soc": "exynos-990", + "release_date": "2020-03-06", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.23, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 563 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Bolivia , Brazil , Bulgaria , Chile , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , Guatemala , HK , Honduras , Hungary , India , Indonesia , Iran , Ireland , Israel , Italy , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lithuania , Malaysia , Mongolia , Morocco , Myanmar , Nepal , Netherlands , Nigeria , Norway , NZ , Pakistan , Peru , Philippines , Poland , Portugal , Puerto Rico , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , Spain , Sweden , Sri Lanka , Switzerland , Taiwan , Tanzania , Tunisie , Thailand , Turkey , UAE , UK , Ukraine , Uzbekistan , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , Oceania , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-g980f-galaxy-s20-global-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-g980f-galaxy-s20-global-td-lte-128gb.json new file mode 100644 index 00000000000..70c4fd961c5 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g980f-galaxy-s20-global-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g980f-galaxy-s20-global-td-lte-128gb", + "name": "SM-G980F Galaxy S20 Global TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-990", + "release_date": "2020-03-06", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.23, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 563 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Ireland , Mexico , NZ , Switzerland , Turkey , UK", + "market_regions": "Australia , Europe , Middle East , North America , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-g9810-galaxy-s20-5g-dual-sim-td-lte-cn-hk-128gb.json b/data/smartphone/samsung/2020/sm-g9810-galaxy-s20-5g-dual-sim-td-lte-cn-hk-128gb.json new file mode 100644 index 00000000000..3a9b7bd3c67 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g9810-galaxy-s20-5g-dual-sim-td-lte-cn-hk-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g9810-galaxy-s20-5g-dual-sim-td-lte-cn-hk-128gb", + "name": "SM-G9810 Galaxy S20 5G Dual SIM TD-LTE CN HK 128GB", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-03-06", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.23, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 563 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2020/sm-g981b-ds-galaxy-s20-5g-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-g981b-ds-galaxy-s20-5g-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..abba68352ab --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g981b-ds-galaxy-s20-5g-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g981b-ds-galaxy-s20-5g-global-dual-sim-td-lte-128gb", + "name": "SM-G981B/DS Galaxy S20 5G Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-990", + "release_date": "2020-03-06", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.23, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 563 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Czech , Finland , France , Germany , Hungary , Ireland , Italy , Norway , Saudi Arabia , Slovakia , Sweden , Switzerland , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-g981b-galaxy-s20-5g-global-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-g981b-galaxy-s20-5g-global-td-lte-128gb.json new file mode 100644 index 00000000000..50bd9a45a21 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g981b-galaxy-s20-5g-global-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g981b-galaxy-s20-5g-global-td-lte-128gb", + "name": "SM-G981B Galaxy S20 5G Global TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-990", + "release_date": "2020-03-06", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.23, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 563 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Ireland , UK", + "market_regions": "Australia , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-g981d-galaxy-s20-5g-td-lte-jp-128gb-sc-51a-sgh-n410.json b/data/smartphone/samsung/2020/sm-g981d-galaxy-s20-5g-td-lte-jp-128gb-sc-51a-sgh-n410.json new file mode 100644 index 00000000000..42b0d6adbbb --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g981d-galaxy-s20-5g-td-lte-jp-128gb-sc-51a-sgh-n410.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g981d-galaxy-s20-5g-td-lte-jp-128gb-sc-51a-sgh-n410", + "name": "SM-G981D Galaxy S20 5G TD-LTE JP 128GB SC-51A / SGH-N410", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-03-26", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.23, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 563 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-g981j-galaxy-s20-5g-td-lte-jp-128gb-scg01.json b/data/smartphone/samsung/2020/sm-g981j-galaxy-s20-5g-td-lte-jp-128gb-scg01.json new file mode 100644 index 00000000000..7487e03d3b0 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g981j-galaxy-s20-5g-td-lte-jp-128gb-scg01.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g981j-galaxy-s20-5g-td-lte-jp-128gb-scg01", + "name": "SM-G981J Galaxy S20 5G TD-LTE JP 128GB SCG01", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-03-16", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.23, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 563 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-g981n-galaxy-s20-5g-td-lte-kr-128gb.json b/data/smartphone/samsung/2020/sm-g981n-galaxy-s20-5g-td-lte-kr-128gb.json new file mode 100644 index 00000000000..a7c85da4de6 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g981n-galaxy-s20-5g-td-lte-kr-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g981n-galaxy-s20-5g-td-lte-kr-128gb", + "name": "SM-G981N Galaxy S20 5G TD-LTE KR 128GB", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-02-28", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.23, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 563 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981a.json b/data/smartphone/samsung/2020/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981a.json new file mode 100644 index 00000000000..8a0135a183c --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981a.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981a", + "name": "SM-G981U Galaxy S20 5G TD-LTE US 128GB / SM-G981A", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-02-28", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.23, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 563 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981p.json b/data/smartphone/samsung/2020/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981p.json new file mode 100644 index 00000000000..29d083156b0 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981p.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981p", + "name": "SM-G981U Galaxy S20 5G TD-LTE US 128GB / SM-G981P", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-02-28", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.23, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 563 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981r4.json b/data/smartphone/samsung/2020/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981r4.json new file mode 100644 index 00000000000..74722b18e2d --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981r4.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981r4", + "name": "SM-G981U Galaxy S20 5G TD-LTE US 128GB / SM-G981R4", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-02-28", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.23, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 563 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981t.json b/data/smartphone/samsung/2020/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981t.json new file mode 100644 index 00000000000..88157b4bcaa --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981t.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981t", + "name": "SM-G981U Galaxy S20 5G TD-LTE US 128GB / SM-G981T", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-02-28", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.23, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 563 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g981u-galaxy-s20-5g-uw-td-lte-us-128gb-sm-g981v.json b/data/smartphone/samsung/2020/sm-g981u-galaxy-s20-5g-uw-td-lte-us-128gb-sm-g981v.json new file mode 100644 index 00000000000..67ba8899633 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g981u-galaxy-s20-5g-uw-td-lte-us-128gb-sm-g981v.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g981u-galaxy-s20-5g-uw-td-lte-us-128gb-sm-g981v", + "name": "SM-G981U Galaxy S20 5G UW TD-LTE US 128GB / SM-G981V", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-06-04", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.23, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 563 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g981u1-galaxy-s20-5g-td-lte-us-128gb.json b/data/smartphone/samsung/2020/sm-g981u1-galaxy-s20-5g-td-lte-us-128gb.json new file mode 100644 index 00000000000..e290bdc4012 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g981u1-galaxy-s20-5g-td-lte-us-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g981u1-galaxy-s20-5g-td-lte-us-128gb", + "name": "SM-G981U1 Galaxy S20 5G TD-LTE US 128GB", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-02-28", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.23, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 563 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g981w-galaxy-s20-5g-td-lte-ca-128gb.json b/data/smartphone/samsung/2020/sm-g981w-galaxy-s20-5g-td-lte-ca-128gb.json new file mode 100644 index 00000000000..8e49d12de95 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g981w-galaxy-s20-5g-td-lte-ca-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g981w-galaxy-s20-5g-td-lte-ca-128gb", + "name": "SM-G981W Galaxy S20 5G TD-LTE CA 128GB", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-02-28", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.23, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 563 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g985f-ds-galaxy-s20-bts-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-g985f-ds-galaxy-s20-bts-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..e6720e3a9da --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g985f-ds-galaxy-s20-bts-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g985f-ds-galaxy-s20-bts-edition-global-dual-sim-td-lte-128gb", + "name": "SM-G985F/DS Galaxy S20+ BTS Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-990", + "release_date": "2020-07-09", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Armenia , Australia , Austria , Belarus , Belgium , Bolivia , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Indonesia , Iran , Ireland , Israel , Italy , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lithuania , Malaysia , Morocco , Myanmar , Nepal , Netherlands , Norway , NZ , Panama , Pakistan , Philippines , Poland , Portugal , Puerto Rico , Russia , Romania , Serbia , Slovakia , Singapore , Slovenia , South Africa , Spain , Sweden , Switzerland , Taiwan , Tanzania , Tunisie , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , Oceania , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-g985f-ds-galaxy-s20-global-dual-sim-td-lte-128gb-galaxy-s11.json b/data/smartphone/samsung/2020/sm-g985f-ds-galaxy-s20-global-dual-sim-td-lte-128gb-galaxy-s11.json new file mode 100644 index 00000000000..3dbcd623d8f --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g985f-ds-galaxy-s20-global-dual-sim-td-lte-128gb-galaxy-s11.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g985f-ds-galaxy-s20-global-dual-sim-td-lte-128gb-galaxy-s11", + "name": "SM-G985F/DS Galaxy S20+ Global Dual SIM TD-LTE 128GB / Galaxy S11+", + "brand": "samsung", + "soc": "exynos-990", + "release_date": "2020-03-06", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Bolivia , Brazil , Bulgaria , Cambodia , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , HK , Hungary , India , Indonesia , Iran , Ireland , Israel , Italy , Japan , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lithuania , Malaysia , Morocco , Myanmar , Nepal , Netherlands , Nigeria , Norway , NZ , Panama , Pakistan , Philippines , Poland , Portugal , Puerto Rico , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Singapore , Slovenia , South Africa , Spain , Sweden , Switzerland , Sri Lanka , Taiwan , Tanzania , Thailand , Tunisie , Turkey , UAE , Uganda , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , Oceania , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-g985f-galaxy-s20-global-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-g985f-galaxy-s20-global-td-lte-128gb.json new file mode 100644 index 00000000000..064ed6e0f39 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g985f-galaxy-s20-global-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g985f-galaxy-s20-global-td-lte-128gb", + "name": "SM-G985F Galaxy S20+ Global TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-990", + "release_date": "2020-03-06", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Ireland , Mexico , NZ , Switzerland , Turkey , UK", + "market_regions": "Australia , Europe , North America , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-g9860-galaxy-s20-5g-dual-sim-td-lte-cn-hk-128gb.json b/data/smartphone/samsung/2020/sm-g9860-galaxy-s20-5g-dual-sim-td-lte-cn-hk-128gb.json new file mode 100644 index 00000000000..c89a997a5e7 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g9860-galaxy-s20-5g-dual-sim-td-lte-cn-hk-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g9860-galaxy-s20-5g-dual-sim-td-lte-cn-hk-128gb", + "name": "SM-G9860 Galaxy S20+ 5G Dual SIM TD-LTE CN HK 128GB", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-03-06", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2020/sm-g986b-ds-bts-edition-galaxy-s20-5g-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-g986b-ds-bts-edition-galaxy-s20-5g-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..ec071e673dd --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g986b-ds-bts-edition-galaxy-s20-5g-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g986b-ds-bts-edition-galaxy-s20-5g-global-dual-sim-td-lte-128gb", + "name": "SM-G986B/DS BTS Edition Galaxy S20+ 5G Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-990", + "release_date": "2020-07-09", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belgium , Finland , France , Germany , Ireland , Italy , Norway , Sweden , Switzerland , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-g986b-ds-galaxy-s20-5g-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-g986b-ds-galaxy-s20-5g-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..0ecbb00bcd7 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g986b-ds-galaxy-s20-5g-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g986b-ds-galaxy-s20-5g-global-dual-sim-td-lte-128gb", + "name": "SM-G986B/DS Galaxy S20+ 5G Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-990", + "release_date": "2020-03-06", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Czech , Finland , France , Germany , Hungary , Ireland , Italy , Norway , Saudi Arabia , Slovakia , Sweden , Switzerland , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-g986b-galaxy-s20-5g-global-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-g986b-galaxy-s20-5g-global-td-lte-128gb.json new file mode 100644 index 00000000000..e77527dede1 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g986b-galaxy-s20-5g-global-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g986b-galaxy-s20-5g-global-td-lte-128gb", + "name": "SM-G986B Galaxy S20+ 5G Global TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-990", + "release_date": "2020-03-06", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Ireland , NZ , UK", + "market_regions": "Australia , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-g986ds-galaxy-s20-5g-uw-olympic-games-edition-td-lte-jp-128gb-sc-52a.json b/data/smartphone/samsung/2020/sm-g986ds-galaxy-s20-5g-uw-olympic-games-edition-td-lte-jp-128gb-sc-52a.json new file mode 100644 index 00000000000..226fb2e1b9f --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g986ds-galaxy-s20-5g-uw-olympic-games-edition-td-lte-jp-128gb-sc-52a.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g986ds-galaxy-s20-5g-uw-olympic-games-edition-td-lte-jp-128gb-sc-52a", + "name": "SM-G986DS Galaxy S20+ 5G UW Olympic Games Edition TD-LTE JP 128GB SC-52A", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-06-18", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-g986ds-galaxy-s20-5g-uw-td-lte-jp-128gb-sc-52a-sgh-n805.json b/data/smartphone/samsung/2020/sm-g986ds-galaxy-s20-5g-uw-td-lte-jp-128gb-sc-52a-sgh-n805.json new file mode 100644 index 00000000000..e33ab3c25f2 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g986ds-galaxy-s20-5g-uw-td-lte-jp-128gb-sc-52a-sgh-n805.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g986ds-galaxy-s20-5g-uw-td-lte-jp-128gb-sc-52a-sgh-n805", + "name": "SM-G986DS Galaxy S20+ 5G UW TD-LTE JP 128GB SC-52A / SGH-N805", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-06-18", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-g986j-galaxy-s20-5g-bts-edition-td-lte-jp-128gb-scg02.json b/data/smartphone/samsung/2020/sm-g986j-galaxy-s20-5g-bts-edition-td-lte-jp-128gb-scg02.json new file mode 100644 index 00000000000..2eb1687cc33 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g986j-galaxy-s20-5g-bts-edition-td-lte-jp-128gb-scg02.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g986j-galaxy-s20-5g-bts-edition-td-lte-jp-128gb-scg02", + "name": "SM-G986J Galaxy S20+ 5G BTS Edition TD-LTE JP 128GB SCG02", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-09-11", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-g986j-galaxy-s20-5g-td-lte-jp-128gb-scg02.json b/data/smartphone/samsung/2020/sm-g986j-galaxy-s20-5g-td-lte-jp-128gb-scg02.json new file mode 100644 index 00000000000..24fba4316bf --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g986j-galaxy-s20-5g-td-lte-jp-128gb-scg02.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g986j-galaxy-s20-5g-td-lte-jp-128gb-scg02", + "name": "SM-G986J Galaxy S20+ 5G TD-LTE JP 128GB SCG02", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-06-04", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-g986n-galaxy-s20-5g-bts-edition-td-lte-kr-256gb.json b/data/smartphone/samsung/2020/sm-g986n-galaxy-s20-5g-bts-edition-td-lte-kr-256gb.json new file mode 100644 index 00000000000..1a699b90120 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g986n-galaxy-s20-5g-bts-edition-td-lte-kr-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g986n-galaxy-s20-5g-bts-edition-td-lte-kr-256gb", + "name": "SM-G986N Galaxy S20+ 5G BTS Edition TD-LTE KR 256GB", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-07-09", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-g986n-galaxy-s20-5g-td-lte-kr-256gb.json b/data/smartphone/samsung/2020/sm-g986n-galaxy-s20-5g-td-lte-kr-256gb.json new file mode 100644 index 00000000000..703c82b964f --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g986n-galaxy-s20-5g-td-lte-kr-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g986n-galaxy-s20-5g-td-lte-kr-256gb", + "name": "SM-G986N Galaxy S20+ 5G TD-LTE KR 256GB", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-03-06", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986a.json b/data/smartphone/samsung/2020/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986a.json new file mode 100644 index 00000000000..e836258a50a --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986a.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986a", + "name": "SM-G986U Galaxy S20+ 5G TD-LTE US 128GB / SM-G986A", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-03-06", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986p.json b/data/smartphone/samsung/2020/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986p.json new file mode 100644 index 00000000000..7c688d9c5be --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986p.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986p", + "name": "SM-G986U Galaxy S20+ 5G TD-LTE US 128GB / SM-G986P", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-03-06", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986r4.json b/data/smartphone/samsung/2020/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986r4.json new file mode 100644 index 00000000000..22b2e2d6b20 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986r4.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986r4", + "name": "SM-G986U Galaxy S20+ 5G TD-LTE US 128GB / SM-G986R4", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-03-06", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986t.json b/data/smartphone/samsung/2020/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986t.json new file mode 100644 index 00000000000..4a1e2331130 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986t.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986t", + "name": "SM-G986U Galaxy S20+ 5G TD-LTE US 128GB / SM-G986T", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-03-06", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986a.json b/data/smartphone/samsung/2020/sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986a.json new file mode 100644 index 00000000000..d0f2800a521 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986a.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986a", + "name": "SM-G986U Galaxy S20+ 5G TD-LTE US 512GB / SM-G986A", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-03-06", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986r4.json b/data/smartphone/samsung/2020/sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986r4.json new file mode 100644 index 00000000000..33d0e0e69d7 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986r4.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986r4", + "name": "SM-G986U Galaxy S20+ 5G TD-LTE US 512GB / SM-G986R4", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-03-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986t.json b/data/smartphone/samsung/2020/sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986t.json new file mode 100644 index 00000000000..d992016f865 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986t.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986t", + "name": "SM-G986U Galaxy S20+ 5G TD-LTE US 512GB / SM-G986T", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-03-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g986u-galaxy-s20-uw-5g-td-lte-us-128gb-sm-g986v.json b/data/smartphone/samsung/2020/sm-g986u-galaxy-s20-uw-5g-td-lte-us-128gb-sm-g986v.json new file mode 100644 index 00000000000..1646a886501 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g986u-galaxy-s20-uw-5g-td-lte-us-128gb-sm-g986v.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g986u-galaxy-s20-uw-5g-td-lte-us-128gb-sm-g986v", + "name": "SM-G986U Galaxy S20+ UW 5G TD-LTE US 128GB / SM-G986V", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-05-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g986u-galaxy-s20-uw-5g-td-lte-us-512gb-sm-g986v.json b/data/smartphone/samsung/2020/sm-g986u-galaxy-s20-uw-5g-td-lte-us-512gb-sm-g986v.json new file mode 100644 index 00000000000..59419cf05a9 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g986u-galaxy-s20-uw-5g-td-lte-us-512gb-sm-g986v.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g986u-galaxy-s20-uw-5g-td-lte-us-512gb-sm-g986v", + "name": "SM-G986U Galaxy S20+ UW 5G TD-LTE US 512GB / SM-G986V", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-06-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g986u1-galaxy-s20-5g-bts-edition-td-lte-us-128gb.json b/data/smartphone/samsung/2020/sm-g986u1-galaxy-s20-5g-bts-edition-td-lte-us-128gb.json new file mode 100644 index 00000000000..8474c74dd98 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g986u1-galaxy-s20-5g-bts-edition-td-lte-us-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g986u1-galaxy-s20-5g-bts-edition-td-lte-us-128gb", + "name": "SM-G986U1 Galaxy S20+ 5G BTS Edition TD-LTE US 128GB", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-07-16", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1250, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g986u1-galaxy-s20-5g-td-lte-us-128gb.json b/data/smartphone/samsung/2020/sm-g986u1-galaxy-s20-5g-td-lte-us-128gb.json new file mode 100644 index 00000000000..1a0b95c29c4 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g986u1-galaxy-s20-5g-td-lte-us-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g986u1-galaxy-s20-5g-td-lte-us-128gb", + "name": "SM-G986U1 Galaxy S20+ 5G TD-LTE US 128GB", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-03-06", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g986u1-galaxy-s20-5g-td-lte-us-512gb.json b/data/smartphone/samsung/2020/sm-g986u1-galaxy-s20-5g-td-lte-us-512gb.json new file mode 100644 index 00000000000..46c733ba004 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g986u1-galaxy-s20-5g-td-lte-us-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g986u1-galaxy-s20-5g-td-lte-us-512gb", + "name": "SM-G986U1 Galaxy S20+ 5G TD-LTE US 512GB", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-03-06", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g986w-galaxy-s20-5g-td-lte-ca-128gb.json b/data/smartphone/samsung/2020/sm-g986w-galaxy-s20-5g-td-lte-ca-128gb.json new file mode 100644 index 00000000000..13614f155e6 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g986w-galaxy-s20-5g-td-lte-ca-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g986w-galaxy-s20-5g-td-lte-ca-128gb", + "name": "SM-G986W Galaxy S20+ 5G TD-LTE CA 128GB", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-03-06", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g9880-galaxy-s20-ultra-5g-dual-sim-td-lte-cn-hk-256gb.json b/data/smartphone/samsung/2020/sm-g9880-galaxy-s20-ultra-5g-dual-sim-td-lte-cn-hk-256gb.json new file mode 100644 index 00000000000..09b84f6137a --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g9880-galaxy-s20-ultra-5g-dual-sim-td-lte-cn-hk-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g9880-galaxy-s20-ultra-5g-dual-sim-td-lte-cn-hk-256gb", + "name": "SM-G9880 Galaxy S20 Ultra 5G Dual SIM TD-LTE CN HK 256GB", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-03-06", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 222.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2020/sm-g9880-galaxy-s20-ultra-5g-dual-sim-td-lte-cn-hk-512gb.json b/data/smartphone/samsung/2020/sm-g9880-galaxy-s20-ultra-5g-dual-sim-td-lte-cn-hk-512gb.json new file mode 100644 index 00000000000..237147bfca9 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g9880-galaxy-s20-ultra-5g-dual-sim-td-lte-cn-hk-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g9880-galaxy-s20-ultra-5g-dual-sim-td-lte-cn-hk-512gb", + "name": "SM-G9880 Galaxy S20 Ultra 5G Dual SIM TD-LTE CN HK 512GB", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-03-01", + "ram_gb": 16.0, + "battery_mah": 5000, + "weight_g": 222.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2020/sm-g988b-ds-galaxy-s20-ultra-5g-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-g988b-ds-galaxy-s20-ultra-5g-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..9ba250e8e82 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g988b-ds-galaxy-s20-ultra-5g-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g988b-ds-galaxy-s20-ultra-5g-global-dual-sim-td-lte-128gb", + "name": "SM-G988B/DS Galaxy S20 Ultra 5G Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-990", + "release_date": "2020-03-06", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 222.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Algeria , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Bulgaria , Croatia , Cyprus , Czech , Denmark , Egypt , Estonia , Finland , France , Germany , Greece , HK , Hungary , India , Indonesia , Iran , Ireland , Israel , Italy , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lithuania , Malaysia , Morocco , Myanmar , Nepal , Netherlands , Norway , NZ , Pakistan , Philippines , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , South Africa , Spain , Sri Lanka , Sweden , Switzerland , Taiwan , Thailand , Tunisie , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Oceania , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-g988b-ds-galaxy-s20-ultra-5g-global-dual-sim-td-lte-512gb.json b/data/smartphone/samsung/2020/sm-g988b-ds-galaxy-s20-ultra-5g-global-dual-sim-td-lte-512gb.json new file mode 100644 index 00000000000..e061d27ddc2 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g988b-ds-galaxy-s20-ultra-5g-global-dual-sim-td-lte-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g988b-ds-galaxy-s20-ultra-5g-global-dual-sim-td-lte-512gb", + "name": "SM-G988B/DS Galaxy S20 Ultra 5G Global Dual SIM TD-LTE 512GB", + "brand": "samsung", + "soc": "exynos-990", + "release_date": "2020-03-06", + "ram_gb": 16.0, + "battery_mah": 5000, + "weight_g": 222.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Cyprus , Czech , Denmark , Finland , France , Greece , Germany , HK , Ireland , Israel , Italy , Jordan , Kuwait , Netherlands , Norway , Poland , Portugal , Russia , Saudi Arabia , Singapore , Spain , Switzerland , Sweden , Taiwan , Thailand , UAE , UK , Vietnam", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Oceania , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-g988n-galaxy-s20-ultra-5g-td-lte-kr-256gb.json b/data/smartphone/samsung/2020/sm-g988n-galaxy-s20-ultra-5g-td-lte-kr-256gb.json new file mode 100644 index 00000000000..9c4463acea1 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g988n-galaxy-s20-ultra-5g-td-lte-kr-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g988n-galaxy-s20-ultra-5g-td-lte-kr-256gb", + "name": "SM-G988N Galaxy S20 Ultra 5G TD-LTE KR 256GB", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-03-06", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 222.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-g988n-galaxy-s20-ultra-5g-td-lte-kr-512gb.json b/data/smartphone/samsung/2020/sm-g988n-galaxy-s20-ultra-5g-td-lte-kr-512gb.json new file mode 100644 index 00000000000..be179291f67 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g988n-galaxy-s20-ultra-5g-td-lte-kr-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g988n-galaxy-s20-ultra-5g-td-lte-kr-512gb", + "name": "SM-G988N Galaxy S20 Ultra 5G TD-LTE KR 512GB", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-03-06", + "ram_gb": 16.0, + "battery_mah": 5000, + "weight_g": 222.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-g988q-galaxy-s20-ultra-5g-td-lte-jp-128gb-scg03.json b/data/smartphone/samsung/2020/sm-g988q-galaxy-s20-ultra-5g-td-lte-jp-128gb-scg03.json new file mode 100644 index 00000000000..844359eacf8 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g988q-galaxy-s20-ultra-5g-td-lte-jp-128gb-scg03.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g988q-galaxy-s20-ultra-5g-td-lte-jp-128gb-scg03", + "name": "SM-G988Q Galaxy S20 Ultra 5G TD-LTE JP 128GB SCG03", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-07-03", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 222.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988a.json b/data/smartphone/samsung/2020/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988a.json new file mode 100644 index 00000000000..6ad15d8cddc --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988a.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988a", + "name": "SM-G988U Galaxy S20 Ultra 5G TD-LTE US 128GB / SM-G988A", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-03-06", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 222.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988p.json b/data/smartphone/samsung/2020/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988p.json new file mode 100644 index 00000000000..b85c4e8ad8e --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988p.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988p", + "name": "SM-G988U Galaxy S20 Ultra 5G TD-LTE US 128GB / SM-G988P", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-03-06", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 222.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988r4.json b/data/smartphone/samsung/2020/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988r4.json new file mode 100644 index 00000000000..fe77fedc425 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988r4.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988r4", + "name": "SM-G988U Galaxy S20 Ultra 5G TD-LTE US 128GB / SM-G988R4", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-03-06", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 222.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988a.json b/data/smartphone/samsung/2020/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988a.json new file mode 100644 index 00000000000..59c370d3dc5 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988a.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988a", + "name": "SM-G988U Galaxy S20 Ultra 5G TD-LTE US 512GB / SM-G988A", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-03-06", + "ram_gb": 16.0, + "battery_mah": 5000, + "weight_g": 222.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988p.json b/data/smartphone/samsung/2020/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988p.json new file mode 100644 index 00000000000..332d8daf264 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988p.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988p", + "name": "SM-G988U Galaxy S20 Ultra 5G TD-LTE US 512GB / SM-G988P", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-03-01", + "ram_gb": 16.0, + "battery_mah": 5000, + "weight_g": 222.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988r4.json b/data/smartphone/samsung/2020/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988r4.json new file mode 100644 index 00000000000..8bb02c1e4d3 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988r4.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988r4", + "name": "SM-G988U Galaxy S20 Ultra 5G TD-LTE US 512GB / SM-G988R4", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-03-01", + "ram_gb": 16.0, + "battery_mah": 5000, + "weight_g": 222.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-128gb-sm-g988t.json b/data/smartphone/samsung/2020/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-128gb-sm-g988t.json new file mode 100644 index 00000000000..455c352b64c --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-128gb-sm-g988t.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-128gb-sm-g988t", + "name": "SM-G988U Galaxy S20 Ultra 5G UW TD-LTE US 128GB / SM-G988T", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-03-06", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 222.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-128gb-sm-g988v.json b/data/smartphone/samsung/2020/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-128gb-sm-g988v.json new file mode 100644 index 00000000000..0728fc89549 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-128gb-sm-g988v.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-128gb-sm-g988v", + "name": "SM-G988U Galaxy S20 Ultra 5G UW TD-LTE US 128GB / SM-G988V", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-03-06", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 222.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-512gb-sm-g988t.json b/data/smartphone/samsung/2020/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-512gb-sm-g988t.json new file mode 100644 index 00000000000..9b3f118699a --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-512gb-sm-g988t.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-512gb-sm-g988t", + "name": "SM-G988U Galaxy S20 Ultra 5G UW TD-LTE US 512GB / SM-G988T", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-03-01", + "ram_gb": 16.0, + "battery_mah": 5000, + "weight_g": 222.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-512gb-sm-g988v.json b/data/smartphone/samsung/2020/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-512gb-sm-g988v.json new file mode 100644 index 00000000000..65903d1bd59 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-512gb-sm-g988v.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-512gb-sm-g988v", + "name": "SM-G988U Galaxy S20 Ultra 5G UW TD-LTE US 512GB / SM-G988V", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-03-01", + "ram_gb": 16.0, + "battery_mah": 5000, + "weight_g": 222.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g988u1-galaxy-s20-ultra-5g-td-lte-us-128gb.json b/data/smartphone/samsung/2020/sm-g988u1-galaxy-s20-ultra-5g-td-lte-us-128gb.json new file mode 100644 index 00000000000..a7d863cfe22 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g988u1-galaxy-s20-ultra-5g-td-lte-us-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g988u1-galaxy-s20-ultra-5g-td-lte-us-128gb", + "name": "SM-G988U1 Galaxy S20 Ultra 5G TD-LTE US 128GB", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-03-06", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 222.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g988u1-galaxy-s20-ultra-5g-td-lte-us-512gb.json b/data/smartphone/samsung/2020/sm-g988u1-galaxy-s20-ultra-5g-td-lte-us-512gb.json new file mode 100644 index 00000000000..8142263a03a --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g988u1-galaxy-s20-ultra-5g-td-lte-us-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g988u1-galaxy-s20-ultra-5g-td-lte-us-512gb", + "name": "SM-G988U1 Galaxy S20 Ultra 5G TD-LTE US 512GB", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-03-01", + "ram_gb": 16.0, + "battery_mah": 5000, + "weight_g": 222.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g988w-galaxy-s20-ultra-5g-td-lte-ca-128gb.json b/data/smartphone/samsung/2020/sm-g988w-galaxy-s20-ultra-5g-td-lte-ca-128gb.json new file mode 100644 index 00000000000..cd2d6a058f8 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g988w-galaxy-s20-ultra-5g-td-lte-ca-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g988w-galaxy-s20-ultra-5g-td-lte-ca-128gb", + "name": "SM-G988W Galaxy S20 Ultra 5G TD-LTE CA 128GB", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-03-06", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 222.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-g988w-galaxy-s20-ultra-5g-td-lte-ca-512gb.json b/data/smartphone/samsung/2020/sm-g988w-galaxy-s20-ultra-5g-td-lte-ca-512gb.json new file mode 100644 index 00000000000..80577a631a0 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-g988w-galaxy-s20-ultra-5g-td-lte-ca-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g988w-galaxy-s20-ultra-5g-td-lte-ca-512gb", + "name": "SM-G988W Galaxy S20 Ultra 5G TD-LTE CA 512GB", + "brand": "samsung", + "soc": "snapdragon-865", + "release_date": "2020-03-01", + "ram_gb": 16.0, + "battery_mah": 5000, + "weight_g": 222.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-m015f-ds-galaxy-m01-2020-global-dual-sim-td-lte-32gb.json b/data/smartphone/samsung/2020/sm-m015f-ds-galaxy-m01-2020-global-dual-sim-td-lte-32gb.json new file mode 100644 index 00000000000..3a47dda070e --- /dev/null +++ b/data/smartphone/samsung/2020/sm-m015f-ds-galaxy-m01-2020-global-dual-sim-td-lte-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-m015f-ds-galaxy-m01-2020-global-dual-sim-td-lte-32gb", + "name": "SM-M015F/DS Galaxy M01 2020 Global Dual SIM TD-LTE 32GB", + "brand": "samsung", + "soc": "snapdragon-439", + "release_date": "2020-07-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1520", + "type": "Color PLS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Armenia , Kazakhstan , Russia , Saudi Arabia , UAE , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East" +} diff --git a/data/smartphone/samsung/2020/sm-m015g-ds-galaxy-m01-2020-dual-sim-td-lte-apac-32gb.json b/data/smartphone/samsung/2020/sm-m015g-ds-galaxy-m01-2020-dual-sim-td-lte-apac-32gb.json new file mode 100644 index 00000000000..261f4d2782e --- /dev/null +++ b/data/smartphone/samsung/2020/sm-m015g-ds-galaxy-m01-2020-dual-sim-td-lte-apac-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-m015g-ds-galaxy-m01-2020-dual-sim-td-lte-apac-32gb", + "name": "SM-M015G/DS Galaxy M01 2020 Dual SIM TD-LTE APAC 32GB", + "brand": "samsung", + "soc": "snapdragon-439", + "release_date": "2020-06-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1520", + "type": "Color PLS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Nepal , Sri Lanka , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2020/sm-m017f-ds-galaxy-m01s-2020-global-dual-sim-td-lte.json b/data/smartphone/samsung/2020/sm-m017f-ds-galaxy-m01s-2020-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..0feab6a4bb6 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-m017f-ds-galaxy-m01s-2020-global-dual-sim-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-m017f-ds-galaxy-m01s-2020-global-dual-sim-td-lte", + "name": "SM-M017F/DS Galaxy M01s 2020 Global Dual SIM TD-LTE", + "brand": "samsung", + "soc": "helio-p22", + "release_date": "2020-07-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color PLS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Malaysia , Pakistan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2020/sm-m115f-ds-galaxy-m11-2020-global-dual-sim-td-lte-32gb.json b/data/smartphone/samsung/2020/sm-m115f-ds-galaxy-m11-2020-global-dual-sim-td-lte-32gb.json new file mode 100644 index 00000000000..173e3c9d048 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-m115f-ds-galaxy-m11-2020-global-dual-sim-td-lte-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-m115f-ds-galaxy-m11-2020-global-dual-sim-td-lte-32gb", + "name": "SM-M115F/DS Galaxy M11 2020 Global Dual SIM TD-LTE 32GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2020-06-02", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Egypt , India , Pakistan , Russia , Saudi Arabia , South Africa , UAE", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East" +} diff --git a/data/smartphone/samsung/2020/sm-m115f-ds-galaxy-m11-2020-global-dual-sim-td-lte-64gb.json b/data/smartphone/samsung/2020/sm-m115f-ds-galaxy-m11-2020-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..593f5738204 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-m115f-ds-galaxy-m11-2020-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-m115f-ds-galaxy-m11-2020-global-dual-sim-td-lte-64gb", + "name": "SM-M115F/DS Galaxy M11 2020 Global Dual SIM TD-LTE 64GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2020-06-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-m115f-dsn-galaxy-m11-2020-global-dual-sim-td-lte-32gb.json b/data/smartphone/samsung/2020/sm-m115f-dsn-galaxy-m11-2020-global-dual-sim-td-lte-32gb.json new file mode 100644 index 00000000000..33a987ce3b1 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-m115f-dsn-galaxy-m11-2020-global-dual-sim-td-lte-32gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-m115f-dsn-galaxy-m11-2020-global-dual-sim-td-lte-32gb", + "name": "SM-M115F/DSN Galaxy M11 2020 Global Dual SIM TD-LTE 32GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2020-09-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 159, + "market_countries": "Armenia , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Ireland , Italy , Kazakhstan , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Singapore , Slovakia , Slovenia , Spain , Switzerland , Taiwan , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-m115m-ds-galaxy-m11-2020-dual-sim-td-lte-latam-32gb.json b/data/smartphone/samsung/2020/sm-m115m-ds-galaxy-m11-2020-dual-sim-td-lte-latam-32gb.json new file mode 100644 index 00000000000..a211cb6a2c9 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-m115m-ds-galaxy-m11-2020-dual-sim-td-lte-latam-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-m115m-ds-galaxy-m11-2020-dual-sim-td-lte-latam-32gb", + "name": "SM-M115M/DS Galaxy M11 2020 Dual SIM TD-LTE LATAM 32GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2020-06-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Chile , Costa Rica , Guatemala , Honduras , Mexico , Panama , Peru , Puerto Rico", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/samsung/2020/sm-m215f-ds-galaxy-m21-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-m215f-ds-galaxy-m21-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..beb59823bb7 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-m215f-ds-galaxy-m21-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-m215f-ds-galaxy-m21-global-dual-sim-td-lte-128gb", + "name": "SM-M215F/DS Galaxy M21 Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2020-03-23", + "ram_gb": 6.0, + "battery_mah": 6000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "India , Indonesia , Malaysia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2020/sm-m215f-ds-galaxy-m21-global-dual-sim-td-lte-64gb.json b/data/smartphone/samsung/2020/sm-m215f-ds-galaxy-m21-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..d4ed615968f --- /dev/null +++ b/data/smartphone/samsung/2020/sm-m215f-ds-galaxy-m21-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-m215f-ds-galaxy-m21-global-dual-sim-td-lte-64gb", + "name": "SM-M215F/DS Galaxy M21 Global Dual SIM TD-LTE 64GB", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2020-03-23", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "India , Indonesia , Malaysia , Singapore , Thailand , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2020/sm-m215f-dsn-galaxy-m21-global-dual-sim-td-lte-64gb.json b/data/smartphone/samsung/2020/sm-m215f-dsn-galaxy-m21-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..1b6366aed3a --- /dev/null +++ b/data/smartphone/samsung/2020/sm-m215f-dsn-galaxy-m21-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-m215f-dsn-galaxy-m21-global-dual-sim-td-lte-64gb", + "name": "SM-M215F/DSN Galaxy M21 Global Dual SIM TD-LTE 64GB", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2020-05-13", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Costa Rica , Czech , Finland , France , Germany , Hungary , Italy , Netherlands , Panama , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , Spain , Sweden , Switzerland , UK , Ukraine", + "market_regions": "Central America , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-m315f-ds-galaxy-m31-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-m315f-ds-galaxy-m31-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..402fd34ac86 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-m315f-ds-galaxy-m31-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-m315f-ds-galaxy-m31-global-dual-sim-td-lte-128gb", + "name": "SM-M315F/DS Galaxy M31 Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2020-03-01", + "ram_gb": 6.0, + "battery_mah": 6000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , India , Indonesia , Malaysia , Mexico", + "market_regions": "Asia , North America , South America , Southeast Asia" +} diff --git a/data/smartphone/samsung/2020/sm-m315f-ds-galaxy-m31-global-dual-sim-td-lte-64gb.json b/data/smartphone/samsung/2020/sm-m315f-ds-galaxy-m31-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..cf8adc8eb45 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-m315f-ds-galaxy-m31-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-m315f-ds-galaxy-m31-global-dual-sim-td-lte-64gb", + "name": "SM-M315F/DS Galaxy M31 Global Dual SIM TD-LTE 64GB", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2020-03-01", + "ram_gb": 6.0, + "battery_mah": 6000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Germany , India , Indonesia , Ireland , Lebanon , Malaysia , Poland , Russia , UK", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-m315f-ds-galaxy-m31-prime-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-m315f-ds-galaxy-m31-prime-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..5681cb6bc44 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-m315f-ds-galaxy-m31-prime-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-m315f-ds-galaxy-m31-prime-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M315F/DS Galaxy M31 Prime Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2020-10-01", + "ram_gb": 6.0, + "battery_mah": 6000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-m315f-dsn-galaxy-m31-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-m315f-dsn-galaxy-m31-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..830f5dce726 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-m315f-dsn-galaxy-m31-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-m315f-dsn-galaxy-m31-global-dual-sim-td-lte-128gb", + "name": "SM-M315F/DSN Galaxy M31 Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2020-04-01", + "ram_gb": 6.0, + "battery_mah": 6000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Germany , Poland , Russia , Saudi Arabia , Turkey , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-m315f-dsn-galaxy-m31-global-dual-sim-td-lte-64gb.json b/data/smartphone/samsung/2020/sm-m315f-dsn-galaxy-m31-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..7a53052bed5 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-m315f-dsn-galaxy-m31-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-m315f-dsn-galaxy-m31-global-dual-sim-td-lte-64gb", + "name": "SM-M315F/DSN Galaxy M31 Global Dual SIM TD-LTE 64GB", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2020-04-01", + "ram_gb": 6.0, + "battery_mah": 6000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Germany , Poland , Russia , Saudi Arabia , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-m317f-ds-galaxy-m31s-premium-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-m317f-ds-galaxy-m31s-premium-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..8479791f9ee --- /dev/null +++ b/data/smartphone/samsung/2020/sm-m317f-ds-galaxy-m31s-premium-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-m317f-ds-galaxy-m31s-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M317F/DS Galaxy M31s Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2020-08-06", + "ram_gb": 8.0, + "battery_mah": 6000, + "weight_g": 203.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-m317f-ds-galaxy-m31s-standard-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-m317f-ds-galaxy-m31s-standard-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..3d39a32fdd5 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-m317f-ds-galaxy-m31s-standard-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-m317f-ds-galaxy-m31s-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M317F/DS Galaxy M31s Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2020-08-06", + "ram_gb": 6.0, + "battery_mah": 6000, + "weight_g": 203.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-m317f-dsn-galaxy-m31s-standard-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-m317f-dsn-galaxy-m31s-standard-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..d33a56a2611 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-m317f-dsn-galaxy-m31s-standard-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-m317f-dsn-galaxy-m31s-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M317F/DSN Galaxy M31s Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2020-08-01", + "ram_gb": 6.0, + "battery_mah": 6000, + "weight_g": 203.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Cyprus , Croatia , Czech , Denmark , Finland , France , Greece , Germany , HK , Hungary , Israel , Italy , Kuwait , Netherlands , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , Spain , Switzerland , Sweden , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-m515f-dsn-galaxy-m51-premium-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-m515f-dsn-galaxy-m51-premium-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..52f5c3fe0df --- /dev/null +++ b/data/smartphone/samsung/2020/sm-m515f-dsn-galaxy-m51-premium-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-m515f-dsn-galaxy-m51-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M515F/DSN Galaxy M51 Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "snapdragon-730", + "release_date": "2020-09-08", + "ram_gb": 8.0, + "battery_mah": 7000, + "weight_g": 213.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "HK , India , Italy , Netherlands , Portugal , Russia , Singapore , Spain , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-m515f-dsn-galaxy-m51-standard-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-m515f-dsn-galaxy-m51-standard-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..03bbd8dbc59 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-m515f-dsn-galaxy-m51-standard-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-m515f-dsn-galaxy-m51-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M515F/DSN Galaxy M51 Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "snapdragon-730", + "release_date": "2020-09-08", + "ram_gb": 6.0, + "battery_mah": 7000, + "weight_g": 213.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 369, + "market_countries": "Belgium , Brazil , Costa Rica , Czech , France , Germany , HK , Honduras , India , Indonesia , Italy , Mexico , Netherlands , Paraguay , Peru , Poland , Puerto Rico , Russia , Spain , Sweden , Switzerland , UK", + "market_regions": "Asia , Central America , Eastern Europe , Europe , North America , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-n770f-ds-galaxy-note-10-lite-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-n770f-ds-galaxy-note-10-lite-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..cdfab3074ab --- /dev/null +++ b/data/smartphone/samsung/2020/sm-n770f-ds-galaxy-note-10-lite-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-n770f-ds-galaxy-note-10-lite-global-dual-sim-td-lte-128gb", + "name": "SM-N770F/DS Galaxy Note 10 Lite Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-9810", + "release_date": "2020-01-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 599, + "market_countries": "Argentina , Australia , Austria , Belgium , Bulgaria , Croatia , Cyprus , Czech , Denmark , Estonia , Egypt , Finland , France , Greece , Germany , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , NZ , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , Sweden , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-n770f-dsm-galaxy-note-10-lite-premium-edition-dual-sim-td-lte-apac.json b/data/smartphone/samsung/2020/sm-n770f-dsm-galaxy-note-10-lite-premium-edition-dual-sim-td-lte-apac.json new file mode 100644 index 00000000000..e22f5042dcd --- /dev/null +++ b/data/smartphone/samsung/2020/sm-n770f-dsm-galaxy-note-10-lite-premium-edition-dual-sim-td-lte-apac.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-n770f-dsm-galaxy-note-10-lite-premium-edition-dual-sim-td-lte-apac", + "name": "SM-N770F/DSM Galaxy Note 10 Lite Premium Edition Dual SIM TD-LTE APAC", + "brand": "samsung", + "soc": "exynos-9810", + "release_date": "2020-02-03", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2020/sm-n770f-dsm-galaxy-note-10-lite-standard-edition-dual-sim-td-lte-apac.json b/data/smartphone/samsung/2020/sm-n770f-dsm-galaxy-note-10-lite-standard-edition-dual-sim-td-lte-apac.json new file mode 100644 index 00000000000..716ef1fa514 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-n770f-dsm-galaxy-note-10-lite-standard-edition-dual-sim-td-lte-apac.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-n770f-dsm-galaxy-note-10-lite-standard-edition-dual-sim-td-lte-apac", + "name": "SM-N770F/DSM Galaxy Note 10 Lite Standard Edition Dual SIM TD-LTE APAC", + "brand": "samsung", + "soc": "exynos-9810", + "release_date": "2020-02-03", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-n980f-ds-galaxy-note-20-global-dual-sim-td-lte-256gb.json b/data/smartphone/samsung/2020/sm-n980f-ds-galaxy-note-20-global-dual-sim-td-lte-256gb.json new file mode 100644 index 00000000000..31791c9979b --- /dev/null +++ b/data/smartphone/samsung/2020/sm-n980f-ds-galaxy-note-20-global-dual-sim-td-lte-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-n980f-ds-galaxy-note-20-global-dual-sim-td-lte-256gb", + "name": "SM-N980F/DS Galaxy Note 20 Global Dual SIM TD-LTE 256GB", + "brand": "samsung", + "soc": "exynos-990", + "release_date": "2020-08-21", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 849, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Bolivia , Brazil , Bulgaria , Cambodia , Canada , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Estonia , Egypt , Finland , France , Greece , Germany , Guatemala , HK , Honduras , Hungary , India , Indonesia , Iran , Ireland , Israel , Italy , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lithuania , Lebanon , Malaysia , Mali , Mexico , Mongolia , Morocco , Myanmar , Nepal , Netherlands , Nicaragua , Nigeria , Norway , NZ , Panama , Pakistan , Paraguay , Peru , Philippines , Poland , Portugal , Puerto Rico , Romania , Russia , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , Spain , Sri Lanka , Switzerland , Sweden , Taiwan , Tanzania , Thailand , Tunisie , Turkey , UAE , Uganda , UK , Ukraine , Uzbekistan , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/samsung/2020/sm-n9810-galaxy-note-20-5g-dual-sim-td-lte-cn-256gb.json b/data/smartphone/samsung/2020/sm-n9810-galaxy-note-20-5g-dual-sim-td-lte-cn-256gb.json new file mode 100644 index 00000000000..9975bb58700 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-n9810-galaxy-note-20-5g-dual-sim-td-lte-cn-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-n9810-galaxy-note-20-5g-dual-sim-td-lte-cn-256gb", + "name": "SM-N9810 Galaxy Note 20 5G Dual SIM TD-LTE CN 256GB", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-08-21", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2020/sm-n981b-ds-galaxy-note-20-5g-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-n981b-ds-galaxy-note-20-5g-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..603267021a6 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-n981b-ds-galaxy-note-20-5g-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-n981b-ds-galaxy-note-20-5g-global-dual-sim-td-lte-128gb", + "name": "SM-N981B/DS Galaxy Note 20 5G Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-990", + "release_date": "2020-08-21", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Croatia , Cyprus , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Ireland , Israel , Italy , Kenya , Latvia , Lithuania , Netherlands , Norway , NZ , Pakistan , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , South Africa , Spain , Switzerland , Sweden , Taiwan , UK", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-n981n-galaxy-note-20-5g-td-lte-kr-256gb.json b/data/smartphone/samsung/2020/sm-n981n-galaxy-note-20-5g-td-lte-kr-256gb.json new file mode 100644 index 00000000000..2e04367d5fe --- /dev/null +++ b/data/smartphone/samsung/2020/sm-n981n-galaxy-note-20-5g-td-lte-kr-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-n981n-galaxy-note-20-5g-td-lte-kr-256gb", + "name": "SM-N981N Galaxy Note 20 5G TD-LTE KR 256GB", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-08-21", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981a.json b/data/smartphone/samsung/2020/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981a.json new file mode 100644 index 00000000000..49baeaf11d2 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981a.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981a", + "name": "SM-N981U Galaxy Note 20 5G TD-LTE US 128GB / SM-N981A", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-08-21", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1000, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981p.json b/data/smartphone/samsung/2020/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981p.json new file mode 100644 index 00000000000..3ed3d3f4be8 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981p.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981p", + "name": "SM-N981U Galaxy Note 20 5G TD-LTE US 128GB / SM-N981P", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-08-21", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1000, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981r4.json b/data/smartphone/samsung/2020/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981r4.json new file mode 100644 index 00000000000..7d30830bf3f --- /dev/null +++ b/data/smartphone/samsung/2020/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981r4.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981r4", + "name": "SM-N981U Galaxy Note 20 5G TD-LTE US 128GB / SM-N981R4", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-08-21", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1000, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981t.json b/data/smartphone/samsung/2020/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981t.json new file mode 100644 index 00000000000..5903fd212af --- /dev/null +++ b/data/smartphone/samsung/2020/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981t.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981t", + "name": "SM-N981U Galaxy Note 20 5G TD-LTE US 128GB / SM-N981T", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-08-21", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1000, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-n981u-galaxy-note-20-uw-5g-td-lte-us-128gb-sm-n981v.json b/data/smartphone/samsung/2020/sm-n981u-galaxy-note-20-uw-5g-td-lte-us-128gb-sm-n981v.json new file mode 100644 index 00000000000..24a483f0a6a --- /dev/null +++ b/data/smartphone/samsung/2020/sm-n981u-galaxy-note-20-uw-5g-td-lte-us-128gb-sm-n981v.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-n981u-galaxy-note-20-uw-5g-td-lte-us-128gb-sm-n981v", + "name": "SM-N981U Galaxy Note 20 UW 5G TD-LTE US 128GB / SM-N981V", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-08-21", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1000, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-n981u1-galaxy-note-20-5g-td-lte-us-128gb.json b/data/smartphone/samsung/2020/sm-n981u1-galaxy-note-20-5g-td-lte-us-128gb.json new file mode 100644 index 00000000000..e6bbc9d7e1e --- /dev/null +++ b/data/smartphone/samsung/2020/sm-n981u1-galaxy-note-20-5g-td-lte-us-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-n981u1-galaxy-note-20-5g-td-lte-us-128gb", + "name": "SM-N981U1 Galaxy Note 20 5G TD-LTE US 128GB", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-08-21", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1000, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-n981w-galaxy-note-20-5g-td-lte-ca-128gb.json b/data/smartphone/samsung/2020/sm-n981w-galaxy-note-20-5g-td-lte-ca-128gb.json new file mode 100644 index 00000000000..5f3826f7cbf --- /dev/null +++ b/data/smartphone/samsung/2020/sm-n981w-galaxy-note-20-5g-td-lte-ca-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-n981w-galaxy-note-20-5g-td-lte-ca-128gb", + "name": "SM-N981W Galaxy Note 20 5G TD-LTE CA 128GB", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-08-21", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1400, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-n985f-ds-galaxy-note-20-ultra-global-dual-sim-td-lte-256gb.json b/data/smartphone/samsung/2020/sm-n985f-ds-galaxy-note-20-ultra-global-dual-sim-td-lte-256gb.json new file mode 100644 index 00000000000..630795d2efe --- /dev/null +++ b/data/smartphone/samsung/2020/sm-n985f-ds-galaxy-note-20-ultra-global-dual-sim-td-lte-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-n985f-ds-galaxy-note-20-ultra-global-dual-sim-td-lte-256gb", + "name": "SM-N985F/DS Galaxy Note 20 Ultra Global Dual SIM TD-LTE 256GB", + "brand": "samsung", + "soc": "exynos-990", + "release_date": "2020-08-21", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 496 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 925, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Bolivia , Brazil , Bulgaria , Cambodia , Canada , Chile , Colombia , Costa Rica , Cyprus , Croatia , Czech , Denmark , Egypt , Estonia , Finland , France , Greece , Germany , Guatemala , HK , Honduras , Hungary , India , Iran , Ireland , Israel , Italy , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lithuania , Lebanon , Malaysia , Mali , Mexico , Mongolia , Morocco , Myanmar , Nepal , Netherlands , Nicaragua , Nigeria , Norway , NZ , Pakistan , Paraguay , Peru , Philippines , Poland , Portugal , Puerto Rico , Romania , Russia , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , Spain , Sri Lanka , Switzerland , Sweden , Taiwan , Tanzania , Thailand , Tunisie , Turkey , UAE , Uganda , UK , Ukraine , Uzbekistan , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/samsung/2020/sm-n9860-galaxy-note-20-ultra-5g-dual-sim-td-lte-cn-256gb.json b/data/smartphone/samsung/2020/sm-n9860-galaxy-note-20-ultra-5g-dual-sim-td-lte-cn-256gb.json new file mode 100644 index 00000000000..aac28707a61 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-n9860-galaxy-note-20-ultra-5g-dual-sim-td-lte-cn-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-n9860-galaxy-note-20-ultra-5g-dual-sim-td-lte-cn-256gb", + "name": "SM-N9860 Galaxy Note 20 Ultra 5G Dual SIM TD-LTE CN 256GB", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-08-21", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 496 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2020/sm-n9860-galaxy-note-20-ultra-5g-dual-sim-td-lte-cn-512gb.json b/data/smartphone/samsung/2020/sm-n9860-galaxy-note-20-ultra-5g-dual-sim-td-lte-cn-512gb.json new file mode 100644 index 00000000000..43802a088c5 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-n9860-galaxy-note-20-ultra-5g-dual-sim-td-lte-cn-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-n9860-galaxy-note-20-ultra-5g-dual-sim-td-lte-cn-512gb", + "name": "SM-N9860 Galaxy Note 20 Ultra 5G Dual SIM TD-LTE CN 512GB", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-08-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 496 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2020/sm-n986b-ds-galaxy-note-20-ultra-5g-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2020/sm-n986b-ds-galaxy-note-20-ultra-5g-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..86e35543308 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-n986b-ds-galaxy-note-20-ultra-5g-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-n986b-ds-galaxy-note-20-ultra-5g-global-dual-sim-td-lte-128gb", + "name": "SM-N986B/DS Galaxy Note 20 Ultra 5G Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-990", + "release_date": "2020-08-21", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 496 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Croatia , Cyprus , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , India , Iran , Ireland , Israel , Italy , Kenya , Latvia , Lithuania , Netherlands , Norway , NZ , Pakistan , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , South Africa , Spain , Sweden , Switzerland , Taiwan , UK", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2020/sm-n986c-galaxy-note-20-ultra-5g-td-lte-jp-256gb-sgh-n219.json b/data/smartphone/samsung/2020/sm-n986c-galaxy-note-20-ultra-5g-td-lte-jp-256gb-sgh-n219.json new file mode 100644 index 00000000000..c4a2e0f1d2e --- /dev/null +++ b/data/smartphone/samsung/2020/sm-n986c-galaxy-note-20-ultra-5g-td-lte-jp-256gb-sgh-n219.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-n986c-galaxy-note-20-ultra-5g-td-lte-jp-256gb-sgh-n219", + "name": "SM-N986C Galaxy Note 20 Ultra 5G TD-LTE JP 256GB / SGH-N219", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-11-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 496 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-n986d-galaxy-note-20-ultra-uw-5g-td-lte-jp-256gb-sc-53a-sgh-n323.json b/data/smartphone/samsung/2020/sm-n986d-galaxy-note-20-ultra-uw-5g-td-lte-jp-256gb-sc-53a-sgh-n323.json new file mode 100644 index 00000000000..f6cc1ef1a43 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-n986d-galaxy-note-20-ultra-uw-5g-td-lte-jp-256gb-sc-53a-sgh-n323.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-n986d-galaxy-note-20-ultra-uw-5g-td-lte-jp-256gb-sc-53a-sgh-n323", + "name": "SM-N986D Galaxy Note 20 Ultra UW 5G TD-LTE JP 256GB SC-53A / SGH-N323", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-11-06", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 496 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-n986j-galaxy-note-20-ultra-uw-5g-td-lte-jp-256gb-scg06.json b/data/smartphone/samsung/2020/sm-n986j-galaxy-note-20-ultra-uw-5g-td-lte-jp-256gb-scg06.json new file mode 100644 index 00000000000..76599b5c565 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-n986j-galaxy-note-20-ultra-uw-5g-td-lte-jp-256gb-scg06.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-n986j-galaxy-note-20-ultra-uw-5g-td-lte-jp-256gb-scg06", + "name": "SM-N986J Galaxy Note 20 Ultra UW 5G TD-LTE JP 256GB SCG06", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-10-16", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 496 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-n986n-galaxy-note-20-ultra-uw-5g-td-lte-kr-256gb.json b/data/smartphone/samsung/2020/sm-n986n-galaxy-note-20-ultra-uw-5g-td-lte-kr-256gb.json new file mode 100644 index 00000000000..908f313db5b --- /dev/null +++ b/data/smartphone/samsung/2020/sm-n986n-galaxy-note-20-ultra-uw-5g-td-lte-kr-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-n986n-galaxy-note-20-ultra-uw-5g-td-lte-kr-256gb", + "name": "SM-N986N Galaxy Note 20 Ultra UW 5G TD-LTE KR 256GB", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-08-21", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 496 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2020/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986a.json b/data/smartphone/samsung/2020/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986a.json new file mode 100644 index 00000000000..7edd4acecb2 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986a.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986a", + "name": "SM-N986U Galaxy Note 20 Ultra 5G TD-LTE US 128GB / SM-N986A", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-08-21", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 496 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1300, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986p.json b/data/smartphone/samsung/2020/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986p.json new file mode 100644 index 00000000000..9b97e21051a --- /dev/null +++ b/data/smartphone/samsung/2020/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986p.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986p", + "name": "SM-N986U Galaxy Note 20 Ultra 5G TD-LTE US 128GB / SM-N986P", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-08-21", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 496 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1300, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986r4.json b/data/smartphone/samsung/2020/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986r4.json new file mode 100644 index 00000000000..e1e372d2b5c --- /dev/null +++ b/data/smartphone/samsung/2020/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986r4.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986r4", + "name": "SM-N986U Galaxy Note 20 Ultra 5G TD-LTE US 128GB / SM-N986R4", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-08-21", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 496 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1300, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986t.json b/data/smartphone/samsung/2020/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986t.json new file mode 100644 index 00000000000..4580ab4ee40 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986t.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986t", + "name": "SM-N986U Galaxy Note 20 Ultra 5G TD-LTE US 128GB / SM-N986T", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-08-21", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 496 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1300, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-n986u-galaxy-note-20-ultra-uw-5g-td-lte-us-128gb-sm-n986v.json b/data/smartphone/samsung/2020/sm-n986u-galaxy-note-20-ultra-uw-5g-td-lte-us-128gb-sm-n986v.json new file mode 100644 index 00000000000..a409bff5dbd --- /dev/null +++ b/data/smartphone/samsung/2020/sm-n986u-galaxy-note-20-ultra-uw-5g-td-lte-us-128gb-sm-n986v.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-n986u-galaxy-note-20-ultra-uw-5g-td-lte-us-128gb-sm-n986v", + "name": "SM-N986U Galaxy Note 20 Ultra UW 5G TD-LTE US 128GB / SM-N986V", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-08-21", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 496 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1300, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-n986u-galaxy-note-20-ultra-uw-5g-td-lte-us-512gb-sm-n986v.json b/data/smartphone/samsung/2020/sm-n986u-galaxy-note-20-ultra-uw-5g-td-lte-us-512gb-sm-n986v.json new file mode 100644 index 00000000000..43a16b82d51 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-n986u-galaxy-note-20-ultra-uw-5g-td-lte-us-512gb-sm-n986v.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-n986u-galaxy-note-20-ultra-uw-5g-td-lte-us-512gb-sm-n986v", + "name": "SM-N986U Galaxy Note 20 Ultra UW 5G TD-LTE US 512GB / SM-N986V", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-08-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 496 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1450, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-n986u1-galaxy-note-20-ultra-5g-td-lte-us-128gb.json b/data/smartphone/samsung/2020/sm-n986u1-galaxy-note-20-ultra-5g-td-lte-us-128gb.json new file mode 100644 index 00000000000..f9b975f41b2 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-n986u1-galaxy-note-20-ultra-5g-td-lte-us-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-n986u1-galaxy-note-20-ultra-5g-td-lte-us-128gb", + "name": "SM-N986U1 Galaxy Note 20 Ultra 5G TD-LTE US 128GB", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-08-21", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 496 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1300, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-n986w-galaxy-note-20-ultra-5g-td-lte-ca-128gb.json b/data/smartphone/samsung/2020/sm-n986w-galaxy-note-20-ultra-5g-td-lte-ca-128gb.json new file mode 100644 index 00000000000..c5bb93cb31f --- /dev/null +++ b/data/smartphone/samsung/2020/sm-n986w-galaxy-note-20-ultra-5g-td-lte-ca-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-n986w-galaxy-note-20-ultra-5g-td-lte-ca-128gb", + "name": "SM-N986W Galaxy Note 20 Ultra 5G TD-LTE CA 128GB", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-08-21", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 496 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1820, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-n986w-galaxy-note-20-ultra-5g-td-lte-ca-512gb.json b/data/smartphone/samsung/2020/sm-n986w-galaxy-note-20-ultra-5g-td-lte-ca-512gb.json new file mode 100644 index 00000000000..1eff022a3a7 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-n986w-galaxy-note-20-ultra-5g-td-lte-ca-512gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-n986w-galaxy-note-20-ultra-5g-td-lte-ca-512gb", + "name": "SM-N986W Galaxy Note 20 Ultra 5G TD-LTE CA 512GB", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-08-21", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 496 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 2030, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2020/sm-w2021-w21-5g-dual-sim-td-lte-cn-512gb.json b/data/smartphone/samsung/2020/sm-w2021-w21-5g-dual-sim-td-lte-cn-512gb.json new file mode 100644 index 00000000000..8cd71f53be0 --- /dev/null +++ b/data/smartphone/samsung/2020/sm-w2021-w21-5g-dual-sim-td-lte-cn-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-w2021-w21-5g-dual-sim-td-lte-cn-512gb", + "name": "SM-W2021 W21 5G Dual SIM TD-LTE CN 512GB", + "brand": "samsung", + "soc": "snapdragon-865-plus", + "release_date": "2020-11-21", + "ram_gb": 12.0, + "battery_mah": 4390, + "weight_g": 282.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.22, + "resolution": "816x2260", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-a025g-dsn-galaxy-a02s-2020-global-dual-sim-td-lte-32gb.json b/data/smartphone/samsung/2021/sm-a025g-dsn-galaxy-a02s-2020-global-dual-sim-td-lte-32gb.json new file mode 100644 index 00000000000..52f01c4b934 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a025g-dsn-galaxy-a02s-2020-global-dual-sim-td-lte-32gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a025g-dsn-galaxy-a02s-2020-global-dual-sim-td-lte-32gb", + "name": "SM-A025G/DSN Galaxy A02s 2020 Global Dual SIM TD-LTE 32GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2021-01-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 139, + "market_countries": "Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Slovenia , Spain , Switzerland , Sweden , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2021/sm-a025m-ds-galaxy-a02s-2020-dual-sim-lte-a-latam-32gb.json b/data/smartphone/samsung/2021/sm-a025m-ds-galaxy-a02s-2020-dual-sim-lte-a-latam-32gb.json new file mode 100644 index 00000000000..300214c619d --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a025m-ds-galaxy-a02s-2020-dual-sim-lte-a-latam-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a025m-ds-galaxy-a02s-2020-dual-sim-lte-a-latam-32gb", + "name": "SM-A025M/DS Galaxy A02s 2020 Dual SIM LTE-A LATAM 32GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2021-02-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Canada , Costa Rica , Ecuador , Guatemala , Honduras , Panama , Peru , Puerto Rico", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/samsung/2021/sm-a025m-ds-galaxy-a02s-2020-dual-sim-lte-a-latam-64gb.json b/data/smartphone/samsung/2021/sm-a025m-ds-galaxy-a02s-2020-dual-sim-lte-a-latam-64gb.json new file mode 100644 index 00000000000..e514dd8a856 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a025m-ds-galaxy-a02s-2020-dual-sim-lte-a-latam-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a025m-ds-galaxy-a02s-2020-dual-sim-lte-a-latam-64gb", + "name": "SM-A025M/DS Galaxy A02s 2020 Dual SIM LTE-A LATAM 64GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2021-02-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Costa Rica , Ecuador , Guatemala , Honduras , Mexico , Panama , Peru", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/samsung/2021/sm-a025m-galaxy-a02s-2020-lte-a-latam-64gb.json b/data/smartphone/samsung/2021/sm-a025m-galaxy-a02s-2020-lte-a-latam-64gb.json new file mode 100644 index 00000000000..557fec8301f --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a025m-galaxy-a02s-2020-lte-a-latam-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a025m-galaxy-a02s-2020-lte-a-latam-64gb", + "name": "SM-A025M Galaxy A02s 2020 LTE-A LATAM 64GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2021-02-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 4139, + "market_countries": "Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-a025u-galaxy-a02s-2020-td-lte-us-32gb-sm-a025r4.json b/data/smartphone/samsung/2021/sm-a025u-galaxy-a02s-2020-td-lte-us-32gb-sm-a025r4.json new file mode 100644 index 00000000000..6ac60375d92 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a025u-galaxy-a02s-2020-td-lte-us-32gb-sm-a025r4.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-a025u-galaxy-a02s-2020-td-lte-us-32gb-sm-a025r4", + "name": "SM-A025U Galaxy A02s 2020 TD-LTE US 32GB / SM-A025R4", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2021-06-24", + "ram_gb": 2.0, + "battery_mah": 5000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color PLS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 160, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-a025u-galaxy-a02s-2020-td-lte-us-32gb-sm-a025t.json b/data/smartphone/samsung/2021/sm-a025u-galaxy-a02s-2020-td-lte-us-32gb-sm-a025t.json new file mode 100644 index 00000000000..edc8cc454a4 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a025u-galaxy-a02s-2020-td-lte-us-32gb-sm-a025t.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-a025u-galaxy-a02s-2020-td-lte-us-32gb-sm-a025t", + "name": "SM-A025U Galaxy A02s 2020 TD-LTE US 32GB / SM-A025T", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2021-06-24", + "ram_gb": 2.0, + "battery_mah": 5000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color PLS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 160, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-a025u1-ds-galaxy-a02s-2020-dual-sim-td-lte-us-32gb.json b/data/smartphone/samsung/2021/sm-a025u1-ds-galaxy-a02s-2020-dual-sim-td-lte-us-32gb.json new file mode 100644 index 00000000000..d228acdcd95 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a025u1-ds-galaxy-a02s-2020-dual-sim-td-lte-us-32gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a025u1-ds-galaxy-a02s-2020-dual-sim-td-lte-us-32gb", + "name": "SM-A025U1/DS Galaxy A02s 2020 Dual SIM TD-LTE US 32GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2021-03-01", + "ram_gb": 2.0, + "battery_mah": 5000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 110, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-a025v-galaxy-a02s-2020-lte-a-us-32gb-sm-a025u.json b/data/smartphone/samsung/2021/sm-a025v-galaxy-a02s-2020-lte-a-us-32gb-sm-a025u.json new file mode 100644 index 00000000000..b743ce05a94 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a025v-galaxy-a02s-2020-lte-a-us-32gb-sm-a025u.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-a025v-galaxy-a02s-2020-lte-a-us-32gb-sm-a025u", + "name": "SM-A025V Galaxy A02s 2020 LTE-A US 32GB / SM-A025U", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2021-04-29", + "ram_gb": 2.0, + "battery_mah": 5000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color PLS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 150, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-a037f-ds-galaxy-a03s-2021-premium-edition-global-dual-sim-td-lte-64gb.json b/data/smartphone/samsung/2021/sm-a037f-ds-galaxy-a03s-2021-premium-edition-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..96f0dc04dc2 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a037f-ds-galaxy-a03s-2021-premium-edition-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a037f-ds-galaxy-a03s-2021-premium-edition-global-dual-sim-td-lte-64gb", + "name": "SM-A037F/DS Galaxy A03s 2021 Premium Edition Global Dual SIM TD-LTE 64GB", + "brand": "samsung", + "soc": "helio-p35", + "release_date": "2021-08-17", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Cyprus , Czech , Estonia , France , Greece , Germany , HK , Hungary , India , Ireland , Israel , Italy , Latvia , Lithuania , Malaysia , Netherlands , Pakistan , Poland , Romania , Russia , Saudi Arabia , Serbia , Slovakia , Slovenia , South Africa , Spain , Tunisie , Turkey , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2021/sm-a037f-ds-galaxy-a03s-2021-standard-edition-global-dual-sim-td-lte-32gb.json b/data/smartphone/samsung/2021/sm-a037f-ds-galaxy-a03s-2021-standard-edition-global-dual-sim-td-lte-32gb.json new file mode 100644 index 00000000000..2aa89e91693 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a037f-ds-galaxy-a03s-2021-standard-edition-global-dual-sim-td-lte-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a037f-ds-galaxy-a03s-2021-standard-edition-global-dual-sim-td-lte-32gb", + "name": "SM-A037F/DS Galaxy A03s 2021 Standard Edition Global Dual SIM TD-LTE 32GB", + "brand": "samsung", + "soc": "helio-p35", + "release_date": "2021-08-17", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belarus , Belgium , Cyprus , Czech , Estonia , France , Greece , Germany , HK , Hungary , India , Ireland , Israel , Italy , Latvia , Lithuania , Malaysia , Netherlands , Pakistan , Poland , Romania , Russia , Saudi Arabia , Serbia , Slovakia , Slovenia , South Africa , Spain , Thailand , Tunisie , Turkey , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2021/sm-a037g-dsn-galaxy-a03s-2021-standard-edition-global-dual-sim-td-lte-32gb.json b/data/smartphone/samsung/2021/sm-a037g-dsn-galaxy-a03s-2021-standard-edition-global-dual-sim-td-lte-32gb.json new file mode 100644 index 00000000000..3c160a23603 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a037g-dsn-galaxy-a03s-2021-standard-edition-global-dual-sim-td-lte-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a037g-dsn-galaxy-a03s-2021-standard-edition-global-dual-sim-td-lte-32gb", + "name": "SM-A037G/DSN Galaxy A03s 2021 Standard Edition Global Dual SIM TD-LTE 32GB", + "brand": "samsung", + "soc": "helio-p35", + "release_date": "2021-08-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 139, + "market_countries": "Belgium , Bulgaria , Cyprus , Czech , Estonia , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Poland , Portugal , Russia , Romania , Serbia , Slovakia , Slovenia , South Africa , Spain , Switzerland , Sweden , UK , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2021/sm-a037m-ds-galaxy-a03s-2021-premium-edition-dual-sim-lte-latam-64gb.json b/data/smartphone/samsung/2021/sm-a037m-ds-galaxy-a03s-2021-premium-edition-dual-sim-lte-latam-64gb.json new file mode 100644 index 00000000000..dbbdbe89400 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a037m-ds-galaxy-a03s-2021-premium-edition-dual-sim-lte-latam-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a037m-ds-galaxy-a03s-2021-premium-edition-dual-sim-lte-latam-64gb", + "name": "SM-A037M/DS Galaxy A03s 2021 Premium Edition Dual SIM LTE LATAM 64GB", + "brand": "samsung", + "soc": "helio-p35", + "release_date": "2021-08-26", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1299, + "market_countries": "Argentina , Brazil , Chile , Costa Rica , Puerto Rico , USA", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/samsung/2021/sm-a037m-ds-galaxy-a03s-2021-standard-edition-dual-sim-lte-latam-32gb.json b/data/smartphone/samsung/2021/sm-a037m-ds-galaxy-a03s-2021-standard-edition-dual-sim-lte-latam-32gb.json new file mode 100644 index 00000000000..1fe889176b8 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a037m-ds-galaxy-a03s-2021-standard-edition-dual-sim-lte-latam-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a037m-ds-galaxy-a03s-2021-standard-edition-dual-sim-lte-latam-32gb", + "name": "SM-A037M/DS Galaxy A03s 2021 Standard Edition Dual SIM LTE LATAM 32GB", + "brand": "samsung", + "soc": "helio-p35", + "release_date": "2021-08-26", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Costa Rica , Guatemala , Peru , Puerto Rico , USA", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/samsung/2021/sm-a037m-galaxy-a03s-2021-premium-edition-lte-latam-64gb.json b/data/smartphone/samsung/2021/sm-a037m-galaxy-a03s-2021-premium-edition-lte-latam-64gb.json new file mode 100644 index 00000000000..e8e2816cf3a --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a037m-galaxy-a03s-2021-premium-edition-lte-latam-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a037m-galaxy-a03s-2021-premium-edition-lte-latam-64gb", + "name": "SM-A037M Galaxy A03s 2021 Premium Edition LTE LATAM 64GB", + "brand": "samsung", + "soc": "helio-p35", + "release_date": "2021-08-26", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 4200, + "market_countries": "Chile , Honduras , Mexico", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/samsung/2021/sm-a125f-ds-galaxy-a12-2020-premium-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2021/sm-a125f-ds-galaxy-a12-2020-premium-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..cea4a3dcb0c --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a125f-ds-galaxy-a12-2020-premium-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a125f-ds-galaxy-a12-2020-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A125F/DS Galaxy A12 2020 Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "helio-g35", + "release_date": "2021-01-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "HK , Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2021/sm-a125f-ds-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2021/sm-a125f-ds-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..f4f194bc523 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a125f-ds-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a125f-ds-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A125F/DS Galaxy A12 2020 Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "helio-g35", + "release_date": "2021-01-19", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Germany , Hungary , Indonesia , Israel , Malaysia , Romania , Russia , Saudi Arabia , Spain , Turkey , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2021/sm-a125f-ds-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-64gb.json b/data/smartphone/samsung/2021/sm-a125f-ds-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..214b392d568 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a125f-ds-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a125f-ds-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-64gb", + "name": "SM-A125F/DS Galaxy A12 2020 Standard Edition Global Dual SIM TD-LTE 64GB", + "brand": "samsung", + "soc": "helio-g35", + "release_date": "2021-01-19", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 179, + "market_countries": "Belarus , Czech , Estonia , France , Germany , HK , Hungary , Israel , Italy , Latvia , Lithuania , Malaysia , Pakistan , Poland , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , South Africa , Spain , Tunisie , Turkey , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2021/sm-a125f-dsn-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-64gb.json b/data/smartphone/samsung/2021/sm-a125f-dsn-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..03d5a0a779d --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a125f-dsn-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a125f-dsn-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-64gb", + "name": "SM-A125F/DSN Galaxy A12 2020 Standard Edition Global Dual SIM TD-LTE 64GB", + "brand": "samsung", + "soc": "helio-g35", + "release_date": "2021-01-19", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 169, + "market_countries": "Belarus , Belgium , Croatia , Czech , Denmark , France , Germany , HK , Hungary , Ireland , Italy , Netherlands , Portugal , Singapore , Slovakia , Slovenia , Spain , UK", + "market_regions": "Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2021/sm-a125f-galaxy-a12-2020-standard-edition-global-td-lte-128gb.json b/data/smartphone/samsung/2021/sm-a125f-galaxy-a12-2020-standard-edition-global-td-lte-128gb.json new file mode 100644 index 00000000000..f940c57bfe2 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a125f-galaxy-a12-2020-standard-edition-global-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a125f-galaxy-a12-2020-standard-edition-global-td-lte-128gb", + "name": "SM-A125F Galaxy A12 2020 Standard Edition Global TD-LTE 128GB", + "brand": "samsung", + "soc": "helio-g35", + "release_date": "2021-01-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 299, + "market_countries": "Australia , NZ" +} diff --git a/data/smartphone/samsung/2021/sm-a125m-ds-galaxy-a12-2020-standard-edition-dual-sim-td-lte-latam-32gb.json b/data/smartphone/samsung/2021/sm-a125m-ds-galaxy-a12-2020-standard-edition-dual-sim-td-lte-latam-32gb.json new file mode 100644 index 00000000000..41139f3bc3b --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a125m-ds-galaxy-a12-2020-standard-edition-dual-sim-td-lte-latam-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a125m-ds-galaxy-a12-2020-standard-edition-dual-sim-td-lte-latam-32gb", + "name": "SM-A125M/DS Galaxy A12 2020 Standard Edition Dual SIM TD-LTE LATAM 32GB", + "brand": "samsung", + "soc": "helio-g35", + "release_date": "2021-02-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Costa Rica , Mexico", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/samsung/2021/sm-a125m-ds-galaxy-a12-2020-standard-edition-dual-sim-td-lte-latam-64gb.json b/data/smartphone/samsung/2021/sm-a125m-ds-galaxy-a12-2020-standard-edition-dual-sim-td-lte-latam-64gb.json new file mode 100644 index 00000000000..030e1299332 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a125m-ds-galaxy-a12-2020-standard-edition-dual-sim-td-lte-latam-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a125m-ds-galaxy-a12-2020-standard-edition-dual-sim-td-lte-latam-64gb", + "name": "SM-A125M/DS Galaxy A12 2020 Standard Edition Dual SIM TD-LTE LATAM 64GB", + "brand": "samsung", + "soc": "helio-g35", + "release_date": "2021-02-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 180, + "market_countries": "Brazil , Canada , Guatemala , Mexico , Panama", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/samsung/2021/sm-a125m-galaxy-a12-2020-standard-edition-td-lte-latam-64gb.json b/data/smartphone/samsung/2021/sm-a125m-galaxy-a12-2020-standard-edition-td-lte-latam-64gb.json new file mode 100644 index 00000000000..acea9b38bc4 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a125m-galaxy-a12-2020-standard-edition-td-lte-latam-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a125m-galaxy-a12-2020-standard-edition-td-lte-latam-64gb", + "name": "SM-A125M Galaxy A12 2020 Standard Edition TD-LTE LATAM 64GB", + "brand": "samsung", + "soc": "helio-g35", + "release_date": "2021-02-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 4889, + "market_countries": "Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-a125n-galaxy-a12-2020-td-lte-kr-32gb.json b/data/smartphone/samsung/2021/sm-a125n-galaxy-a12-2020-td-lte-kr-32gb.json new file mode 100644 index 00000000000..3f391d74047 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a125n-galaxy-a12-2020-td-lte-kr-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a125n-galaxy-a12-2020-td-lte-kr-32gb", + "name": "SM-A125N Galaxy A12 2020 TD-LTE KR 32GB", + "brand": "samsung", + "soc": "helio-g35", + "release_date": "2021-01-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-a125u-galaxy-a12-2020-lte-a-us-32gb-sm-a125v.json b/data/smartphone/samsung/2021/sm-a125u-galaxy-a12-2020-lte-a-us-32gb-sm-a125v.json new file mode 100644 index 00000000000..d7f557a506c --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a125u-galaxy-a12-2020-lte-a-us-32gb-sm-a125v.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-a125u-galaxy-a12-2020-lte-a-us-32gb-sm-a125v", + "name": "SM-A125U Galaxy A12 2020 LTE-A US 32GB / SM-A125V", + "brand": "samsung", + "soc": "helio-g35", + "release_date": "2021-04-08", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 180, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125a.json b/data/smartphone/samsung/2021/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125a.json new file mode 100644 index 00000000000..326e5c331f7 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125a.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125a", + "name": "SM-A125U Galaxy A12 2020 TD-LTE US 32GB / SM-A125A", + "brand": "samsung", + "soc": "helio-g35", + "release_date": "2021-04-06", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 180, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125az.json b/data/smartphone/samsung/2021/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125az.json new file mode 100644 index 00000000000..8e4e92769df --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125az.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125az", + "name": "SM-A125U Galaxy A12 2020 TD-LTE US 32GB / SM-A125AZ", + "brand": "samsung", + "soc": "helio-g35", + "release_date": "2021-04-13", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 180, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125r4.json b/data/smartphone/samsung/2021/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125r4.json new file mode 100644 index 00000000000..35ba62f1de7 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125r4.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125r4", + "name": "SM-A125U Galaxy A12 2020 TD-LTE US 32GB / SM-A125R4", + "brand": "samsung", + "soc": "helio-g35", + "release_date": "2021-04-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 180, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125t-sm-a125p.json b/data/smartphone/samsung/2021/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125t-sm-a125p.json new file mode 100644 index 00000000000..caa3565d5ce --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125t-sm-a125p.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125t-sm-a125p", + "name": "SM-A125U Galaxy A12 2020 TD-LTE US 32GB / SM-A125T / SM-A125P", + "brand": "samsung", + "soc": "helio-g35", + "release_date": "2021-04-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 180, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-s127dl.json b/data/smartphone/samsung/2021/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-s127dl.json new file mode 100644 index 00000000000..0baf916641e --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-s127dl.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-s127dl", + "name": "SM-A125U Galaxy A12 2020 TD-LTE US 32GB / SM-S127DL", + "brand": "samsung", + "soc": "helio-g35", + "release_date": "2021-04-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-a125u1-ds-galaxy-a12-2020-dual-sim-td-lte-us.json b/data/smartphone/samsung/2021/sm-a125u1-ds-galaxy-a12-2020-dual-sim-td-lte-us.json new file mode 100644 index 00000000000..d4b073dfd61 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a125u1-ds-galaxy-a12-2020-dual-sim-td-lte-us.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a125u1-ds-galaxy-a12-2020-dual-sim-td-lte-us", + "name": "SM-A125U1/DS Galaxy A12 2020 Dual SIM TD-LTE US", + "brand": "samsung", + "soc": "helio-g35", + "release_date": "2021-01-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 180, + "market_countries": "Costa Rica , Puerto Rico , USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/samsung/2021/sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2021/sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..b78310de27b --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-128gb", + "name": "SM-A127F/DSN Galaxy A12 Nacho 2021 Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-850", + "release_date": "2021-08-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , France , Greece , Germany , Hungary , Italy , Poland , Portugal , Romania , Russia , Slovakia , Spain , Thailand , UK , Ukraine", + "market_regions": "Asia , Central America , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2021/sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-32gb.json b/data/smartphone/samsung/2021/sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-32gb.json new file mode 100644 index 00000000000..c62aa05fc54 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-32gb", + "name": "SM-A127F/DSN Galaxy A12 Nacho 2021 Global Dual SIM TD-LTE 32GB", + "brand": "samsung", + "soc": "exynos-850", + "release_date": "2021-08-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , France , Greece , Germany , Hungary , Italy , Poland , Portugal , Romania , Russia , Slovakia , Spain , Thailand , UK , Ukraine", + "market_regions": "Asia , Central America , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2021/sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-64gb.json b/data/smartphone/samsung/2021/sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..af8a69d7c06 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-64gb", + "name": "SM-A127F/DSN Galaxy A12 Nacho 2021 Global Dual SIM TD-LTE 64GB", + "brand": "samsung", + "soc": "exynos-850", + "release_date": "2021-08-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , France , Greece , Germany , Hungary , Italy , Poland , Portugal , Romania , Russia , Slovakia , Spain , Thailand , UK , Ukraine", + "market_regions": "Asia , Central America , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2021/sm-a127m-ds-galaxy-a12-nacho-2021-dual-sim-td-lte-latam-64gb.json b/data/smartphone/samsung/2021/sm-a127m-ds-galaxy-a12-nacho-2021-dual-sim-td-lte-latam-64gb.json new file mode 100644 index 00000000000..9c4065d997b --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a127m-ds-galaxy-a12-nacho-2021-dual-sim-td-lte-latam-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a127m-ds-galaxy-a12-nacho-2021-dual-sim-td-lte-latam-64gb", + "name": "SM-A127M/DS Galaxy A12 Nacho 2021 Dual SIM TD-LTE LATAM 64GB", + "brand": "samsung", + "soc": "exynos-850", + "release_date": "2021-09-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Costa Rica , Guatemala , Honduras , Peru", + "market_regions": "Central America , South America" +} diff --git a/data/smartphone/samsung/2021/sm-a136u-galaxy-a13-5g-2021-td-lte-us-64gb-sm-a136a.json b/data/smartphone/samsung/2021/sm-a136u-galaxy-a13-5g-2021-td-lte-us-64gb-sm-a136a.json new file mode 100644 index 00000000000..96dfce64df7 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a136u-galaxy-a13-5g-2021-td-lte-us-64gb-sm-a136a.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-a136u-galaxy-a13-5g-2021-td-lte-us-64gb-sm-a136a", + "name": "SM-A136U Galaxy A13 5G 2021 TD-LTE US 64GB / SM-A136A", + "brand": "samsung", + "soc": "dimensity-700", + "release_date": "2021-12-04", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 250, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-a223d-galaxy-a22-5g-2021-td-lte-jp-64gb-sc-56b.json b/data/smartphone/samsung/2021/sm-a223d-galaxy-a22-5g-2021-td-lte-jp-64gb-sc-56b.json new file mode 100644 index 00000000000..f6438ef242d --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a223d-galaxy-a22-5g-2021-td-lte-jp-64gb-sc-56b.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a223d-galaxy-a22-5g-2021-td-lte-jp-64gb-sc-56b", + "name": "SM-A223D Galaxy A22 5G 2021 TD-LTE JP 64GB SC-56B", + "brand": "samsung", + "soc": "dimensity-700", + "release_date": "2021-12-02", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.8, + "resolution": "720x1560", + "refresh_hz": 60, + "type": "Color PLS TFT LCD display", + "ppi": 296 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-a225f-ds-galaxy-a22-4g-2021-premium-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2021/sm-a225f-ds-galaxy-a22-4g-2021-premium-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..052cbf85aa9 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a225f-ds-galaxy-a22-4g-2021-premium-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a225f-ds-galaxy-a22-4g-2021-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A225F/DS Galaxy A22 4G 2021 Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "helio-g80", + "release_date": "2021-07-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 275 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-a225f-dsn-galaxy-a22-4g-2021-standard-edition-global-dual-sim-td-lte-64gb.json b/data/smartphone/samsung/2021/sm-a225f-dsn-galaxy-a22-4g-2021-standard-edition-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..f5f604bfc94 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a225f-dsn-galaxy-a22-4g-2021-standard-edition-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a225f-dsn-galaxy-a22-4g-2021-standard-edition-global-dual-sim-td-lte-64gb", + "name": "SM-A225F/DSN Galaxy A22 4G 2021 Standard Edition Global Dual SIM TD-LTE 64GB", + "brand": "samsung", + "soc": "helio-g80", + "release_date": "2021-06-27", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 275 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , India , Ireland , Israel , Italy , Jordan , Latvia , Lebanon , Lithuania , Netherlands , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , Thailand , UAE , UK , Ukraine", + "market_regions": "Asia , Central America , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2021/sm-a225m-dsn-galaxy-a22-4g-2021-standard-edition-dual-sim-td-lte-latam-128gb.json b/data/smartphone/samsung/2021/sm-a225m-dsn-galaxy-a22-4g-2021-standard-edition-dual-sim-td-lte-latam-128gb.json new file mode 100644 index 00000000000..851a68d3dcb --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a225m-dsn-galaxy-a22-4g-2021-standard-edition-dual-sim-td-lte-latam-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a225m-dsn-galaxy-a22-4g-2021-standard-edition-dual-sim-td-lte-latam-128gb", + "name": "SM-A225M/DSN Galaxy A22 4G 2021 Standard Edition Dual SIM TD-LTE LATAM 128GB", + "brand": "samsung", + "soc": "helio-g80", + "release_date": "2021-07-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 275 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Costa Rica , Guatemala , Paraguay , Puerto Rico", + "market_regions": "Central America , South America" +} diff --git a/data/smartphone/samsung/2021/sm-a225m-n-galaxy-a22-4g-2021-standard-edition-td-lte-latam-128gb.json b/data/smartphone/samsung/2021/sm-a225m-n-galaxy-a22-4g-2021-standard-edition-td-lte-latam-128gb.json new file mode 100644 index 00000000000..1f7237e445a --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a225m-n-galaxy-a22-4g-2021-standard-edition-td-lte-latam-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a225m-n-galaxy-a22-4g-2021-standard-edition-td-lte-latam-128gb", + "name": "SM-A225M/N Galaxy A22 4G 2021 Standard Edition TD-LTE LATAM 128GB", + "brand": "samsung", + "soc": "helio-g80", + "release_date": "2021-06-28", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 275 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Chile , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/samsung/2021/sm-a225m-n-galaxy-a22-4g-2021-standard-edition-td-lte-latam-64gb.json b/data/smartphone/samsung/2021/sm-a225m-n-galaxy-a22-4g-2021-standard-edition-td-lte-latam-64gb.json new file mode 100644 index 00000000000..c51c228379c --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a225m-n-galaxy-a22-4g-2021-standard-edition-td-lte-latam-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a225m-n-galaxy-a22-4g-2021-standard-edition-td-lte-latam-64gb", + "name": "SM-A225M/N Galaxy A22 4G 2021 Standard Edition TD-LTE LATAM 64GB", + "brand": "samsung", + "soc": "helio-g80", + "release_date": "2021-06-28", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 275 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Chile , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/samsung/2021/sm-a226b-ds-galaxy-a22-5g-2021-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2021/sm-a226b-ds-galaxy-a22-5g-2021-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..e9059d35bf4 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a226b-ds-galaxy-a22-5g-2021-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a226b-ds-galaxy-a22-5g-2021-global-dual-sim-td-lte-128gb", + "name": "SM-A226B/DS Galaxy A22 5G 2021 Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "dimensity-700", + "release_date": "2021-07-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 203.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Taiwan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-a226b-ds-galaxy-a22-5g-2021-global-dual-sim-td-lte-64gb.json b/data/smartphone/samsung/2021/sm-a226b-ds-galaxy-a22-5g-2021-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..14656cfd43f --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a226b-ds-galaxy-a22-5g-2021-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a226b-ds-galaxy-a22-5g-2021-global-dual-sim-td-lte-64gb", + "name": "SM-A226B/DS Galaxy A22 5G 2021 Global Dual SIM TD-LTE 64GB", + "brand": "samsung", + "soc": "dimensity-700", + "release_date": "2021-06-26", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 203.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , India , Indonesia , Malaysia , NZ , Philippines , Singapore , Taiwan , Thailand", + "market_regions": "Asia , Australia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/samsung/2021/sm-a226b-dsn-galaxy-a22-5g-2021-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2021/sm-a226b-dsn-galaxy-a22-5g-2021-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..d1ec9966790 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a226b-dsn-galaxy-a22-5g-2021-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a226b-dsn-galaxy-a22-5g-2021-global-dual-sim-td-lte-128gb", + "name": "SM-A226B/DSN Galaxy A22 5G 2021 Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "dimensity-700", + "release_date": "2021-07-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 203.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Finland , France , Greece , Germany , Hungary , Israel , Italy , Jordan , Kuwait , Lebanon , Netherlands , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Slovenia , Spain , Sweden , Switzerland , Turkey , UAE , UK", + "market_regions": "Africa , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/samsung/2021/sm-a226b-dsn-galaxy-a22-5g-2021-global-dual-sim-td-lte-64gb-galaxy-a22s.json b/data/smartphone/samsung/2021/sm-a226b-dsn-galaxy-a22-5g-2021-global-dual-sim-td-lte-64gb-galaxy-a22s.json new file mode 100644 index 00000000000..c0ea1262d70 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a226b-dsn-galaxy-a22-5g-2021-global-dual-sim-td-lte-64gb-galaxy-a22s.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-a226b-dsn-galaxy-a22-5g-2021-global-dual-sim-td-lte-64gb-galaxy-a22s", + "name": "SM-A226B/DSN Galaxy A22 5G 2021 Global Dual SIM TD-LTE 64GB / Galaxy A22s", + "brand": "samsung", + "soc": "dimensity-700", + "release_date": "2021-06-26", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 203.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 229, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , South Africa , Spain , Switzerland , Sweden , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2021/sm-a226l-galaxy-buddy-5g-2021-td-lte-kr-128gb.json b/data/smartphone/samsung/2021/sm-a226l-galaxy-buddy-5g-2021-td-lte-kr-128gb.json new file mode 100644 index 00000000000..63cce206c03 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a226l-galaxy-buddy-5g-2021-td-lte-kr-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a226l-galaxy-buddy-5g-2021-td-lte-kr-128gb", + "name": "SM-A226L Galaxy Buddy 5G 2021 TD-LTE KR 128GB", + "brand": "samsung", + "soc": "dimensity-700", + "release_date": "2021-09-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-a325f-ds-galaxy-a32-4g-2021-premium-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2021/sm-a325f-ds-galaxy-a32-4g-2021-premium-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..dd5fbb7a3c7 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a325f-ds-galaxy-a32-4g-2021-premium-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a325f-ds-galaxy-a32-4g-2021-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A325F/DS Galaxy A32 4G 2021 Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "helio-g80", + "release_date": "2021-03-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 57.9 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Cyprus , Czech , Denmark , Estonia , Egypt , Finland , France , Germany , Greece , India , Israel , Italy , Jordan , Kenya , Kuwait , Latvia , Lithuania , Lebanon , Netherlands , Nigeria , NZ , Portugal , Romania , Saudi Arabia , Spain , Sweden , Switzerland , Turkey , UAE , UK", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/samsung/2021/sm-a325f-ds-galaxy-a32-4g-2021-standard-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2021/sm-a325f-ds-galaxy-a32-4g-2021-standard-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..dc0c9a6166d --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a325f-ds-galaxy-a32-4g-2021-standard-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a325f-ds-galaxy-a32-4g-2021-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A325F/DS Galaxy A32 4G 2021 Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "helio-g80", + "release_date": "2021-03-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 57.9 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Ireland , Israel , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Serbia , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , Thailand , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2021/sm-a325m-ds-galaxy-a32-4g-2021-standard-edition-dual-sim-td-lte-latam-128gb.json b/data/smartphone/samsung/2021/sm-a325m-ds-galaxy-a32-4g-2021-standard-edition-dual-sim-td-lte-latam-128gb.json new file mode 100644 index 00000000000..4eb10cf96fb --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a325m-ds-galaxy-a32-4g-2021-standard-edition-dual-sim-td-lte-latam-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-a325m-ds-galaxy-a32-4g-2021-standard-edition-dual-sim-td-lte-latam-128gb", + "name": "SM-A325M/DS Galaxy A32 4G 2021 Standard Edition Dual SIM TD-LTE LATAM 128GB", + "brand": "samsung", + "soc": "helio-g80", + "release_date": "2021-03-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 57.9 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 289, + "market_countries": "Brazil , Canada , Guatemala , Honduras , Mexico , Peru , USA", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/samsung/2021/sm-a325n-galaxy-a32-4g-2021-standard-edition-td-lte-kr-64gb.json b/data/smartphone/samsung/2021/sm-a325n-galaxy-a32-4g-2021-standard-edition-td-lte-kr-64gb.json new file mode 100644 index 00000000000..f7d15c59670 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a325n-galaxy-a32-4g-2021-standard-edition-td-lte-kr-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a325n-galaxy-a32-4g-2021-standard-edition-td-lte-kr-64gb", + "name": "SM-A325N Galaxy A32 4G 2021 Standard Edition TD-LTE KR 64GB", + "brand": "samsung", + "soc": "helio-g80", + "release_date": "2021-03-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 57.9 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-a326b-ds-galaxy-a32-5g-2021-premium-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2021/sm-a326b-ds-galaxy-a32-5g-2021-premium-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..1ed9d6b4f72 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a326b-ds-galaxy-a32-5g-2021-premium-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a326b-ds-galaxy-a32-5g-2021-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A326B/DS Galaxy A32 5G 2021 Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "dimensity-720", + "release_date": "2021-02-19", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , Ireland , Israel , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , South Africa , Spain , Switzerland , Sweden , Taiwan , Thailand , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Central America , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2021/sm-a326b-ds-galaxy-a32-5g-2021-standard-edition-global-dual-sim-td-lte-64gb.json b/data/smartphone/samsung/2021/sm-a326b-ds-galaxy-a32-5g-2021-standard-edition-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..2ef4aea3c7f --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a326b-ds-galaxy-a32-5g-2021-standard-edition-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a326b-ds-galaxy-a32-5g-2021-standard-edition-global-dual-sim-td-lte-64gb", + "name": "SM-A326B/DS Galaxy A32 5G 2021 Standard Edition Global Dual SIM TD-LTE 64GB", + "brand": "samsung", + "soc": "dimensity-720", + "release_date": "2021-02-19", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 249, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , Ireland , Israel , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , South Africa , Spain , Switzerland , Sweden , Taiwan , Thailand , UAE , UK , Ukraine", + "market_regions": "Central America , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2021/sm-a326j-galaxy-a32-5g-2021-td-lte-jp-scg08.json b/data/smartphone/samsung/2021/sm-a326j-galaxy-a32-5g-2021-td-lte-jp-scg08.json new file mode 100644 index 00000000000..92f8c970c23 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a326j-galaxy-a32-5g-2021-td-lte-jp-scg08.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a326j-galaxy-a32-5g-2021-td-lte-jp-scg08", + "name": "SM-A326J Galaxy A32 5G 2021 TD-LTE JP SCG08", + "brand": "samsung", + "soc": "dimensity-720", + "release_date": "2021-02-26", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 209.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-a326k-galaxy-jump-5g-2021-td-lte-kr-128gb.json b/data/smartphone/samsung/2021/sm-a326k-galaxy-jump-5g-2021-td-lte-kr-128gb.json new file mode 100644 index 00000000000..5117c28edbc --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a326k-galaxy-jump-5g-2021-td-lte-kr-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-a326k-galaxy-jump-5g-2021-td-lte-kr-128gb", + "name": "SM-A326K Galaxy Jump 5G 2021 TD-LTE KR 128GB", + "brand": "samsung", + "soc": "dimensity-720", + "release_date": "2021-05-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 209.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326a.json b/data/smartphone/samsung/2021/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326a.json new file mode 100644 index 00000000000..4c3fcd51cf7 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326a.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326a", + "name": "SM-A326U Galaxy A32 5G 2021 TD-LTE US 64GB / SM-A326A", + "brand": "samsung", + "soc": "dimensity-720", + "release_date": "2021-05-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 280, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326r4.json b/data/smartphone/samsung/2021/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326r4.json new file mode 100644 index 00000000000..3a2fb910d4e --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326r4.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326r4", + "name": "SM-A326U Galaxy A32 5G 2021 TD-LTE US 64GB / SM-A326R4", + "brand": "samsung", + "soc": "dimensity-720", + "release_date": "2021-04-09", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 280, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326t-sm-a326p.json b/data/smartphone/samsung/2021/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326t-sm-a326p.json new file mode 100644 index 00000000000..cd411dd5cb4 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326t-sm-a326p.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326t-sm-a326p", + "name": "SM-A326U Galaxy A32 5G 2021 TD-LTE US 64GB / SM-A326T / SM-A326P", + "brand": "samsung", + "soc": "dimensity-720", + "release_date": "2021-04-08", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 280, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-s326dl.json b/data/smartphone/samsung/2021/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-s326dl.json new file mode 100644 index 00000000000..dcb4e4f3e34 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-s326dl.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-s326dl", + "name": "SM-A326U Galaxy A32 5G 2021 TD-LTE US 64GB / SM-S326DL", + "brand": "samsung", + "soc": "dimensity-720", + "release_date": "2021-05-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 320, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-a326u1-galaxy-a32-5g-2021-td-lte-us-64gb.json b/data/smartphone/samsung/2021/sm-a326u1-galaxy-a32-5g-2021-td-lte-us-64gb.json new file mode 100644 index 00000000000..f00b6720b7a --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a326u1-galaxy-a32-5g-2021-td-lte-us-64gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-a326u1-galaxy-a32-5g-2021-td-lte-us-64gb", + "name": "SM-A326U1 Galaxy A32 5G 2021 TD-LTE US 64GB", + "brand": "samsung", + "soc": "dimensity-720", + "release_date": "2021-04-08", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 280, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-a326w-galaxy-a32-5g-2021-td-lte-ca-64gb.json b/data/smartphone/samsung/2021/sm-a326w-galaxy-a32-5g-2021-td-lte-ca-64gb.json new file mode 100644 index 00000000000..65504145a82 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a326w-galaxy-a32-5g-2021-td-lte-ca-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a326w-galaxy-a32-5g-2021-td-lte-ca-64gb", + "name": "SM-A326W Galaxy A32 5G 2021 TD-LTE CA 64GB", + "brand": "samsung", + "soc": "dimensity-720", + "release_date": "2021-02-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 370, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-a826s-galaxy-quantum-2-5g-td-lte-kr-128gb.json b/data/smartphone/samsung/2021/sm-a826s-galaxy-quantum-2-5g-td-lte-kr-128gb.json new file mode 100644 index 00000000000..0ab94ff5ac6 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-a826s-galaxy-quantum-2-5g-td-lte-kr-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a826s-galaxy-quantum-2-5g-td-lte-kr-128gb", + "name": "SM-A826S Galaxy Quantum 2 5G TD-LTE KR 128GB", + "brand": "samsung", + "soc": "snapdragon-855-plus", + "release_date": "2021-04-22", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-e025f-ds-galaxy-f02s-2021-global-dual-sim-td-lte-32gb.json b/data/smartphone/samsung/2021/sm-e025f-ds-galaxy-f02s-2021-global-dual-sim-td-lte-32gb.json new file mode 100644 index 00000000000..5d17f3f06e5 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-e025f-ds-galaxy-f02s-2021-global-dual-sim-td-lte-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-e025f-ds-galaxy-f02s-2021-global-dual-sim-td-lte-32gb", + "name": "SM-E025F/DS Galaxy F02s 2021 Global Dual SIM TD-LTE 32GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2021-03-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-e025f-ds-galaxy-f02s-2021-global-dual-sim-td-lte-64gb.json b/data/smartphone/samsung/2021/sm-e025f-ds-galaxy-f02s-2021-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..e561f270ee6 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-e025f-ds-galaxy-f02s-2021-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-e025f-ds-galaxy-f02s-2021-global-dual-sim-td-lte-64gb", + "name": "SM-E025F/DS Galaxy F02s 2021 Global Dual SIM TD-LTE 64GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2021-03-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-e225f-ds-galaxy-f22-4g-2021-premium-edition-dual-sim-td-lte-in-128gb.json b/data/smartphone/samsung/2021/sm-e225f-ds-galaxy-f22-4g-2021-premium-edition-dual-sim-td-lte-in-128gb.json new file mode 100644 index 00000000000..1723cbc4d79 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-e225f-ds-galaxy-f22-4g-2021-premium-edition-dual-sim-td-lte-in-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-e225f-ds-galaxy-f22-4g-2021-premium-edition-dual-sim-td-lte-in-128gb", + "name": "SM-E225F/DS Galaxy F22 4G 2021 Premium Edition Dual SIM TD-LTE IN 128GB", + "brand": "samsung", + "soc": "helio-g80", + "release_date": "2021-07-06", + "ram_gb": 6.0, + "battery_mah": 6000, + "weight_g": 203.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 275 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-e225f-ds-galaxy-f22-4g-2021-standard-edition-dual-sim-td-lte-in-64gb.json b/data/smartphone/samsung/2021/sm-e225f-ds-galaxy-f22-4g-2021-standard-edition-dual-sim-td-lte-in-64gb.json new file mode 100644 index 00000000000..7c22f818909 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-e225f-ds-galaxy-f22-4g-2021-standard-edition-dual-sim-td-lte-in-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-e225f-ds-galaxy-f22-4g-2021-standard-edition-dual-sim-td-lte-in-64gb", + "name": "SM-E225F/DS Galaxy F22 4G 2021 Standard Edition Dual SIM TD-LTE IN 64GB", + "brand": "samsung", + "soc": "helio-g80", + "release_date": "2021-07-06", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 203.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 275 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-e426b-ds-galaxy-f42-5g-2021-premium-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2021/sm-e426b-ds-galaxy-f42-5g-2021-premium-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..f6f7a77c999 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-e426b-ds-galaxy-f42-5g-2021-premium-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-e426b-ds-galaxy-f42-5g-2021-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-E426B/DS Galaxy F42 5G 2021 Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "dimensity-700", + "release_date": "2021-10-02", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 203.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belarus , Bulgaria , Czech , France , Germany , Hungary , India , Italy , Romania , Russia , Slovakia , Spain , UK , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2021/sm-e426b-ds-galaxy-f42-5g-2021-standard-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2021/sm-e426b-ds-galaxy-f42-5g-2021-standard-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..2558a1a5fcc --- /dev/null +++ b/data/smartphone/samsung/2021/sm-e426b-ds-galaxy-f42-5g-2021-standard-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-e426b-ds-galaxy-f42-5g-2021-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-E426B/DS Galaxy F42 5G 2021 Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "dimensity-700", + "release_date": "2021-10-02", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 203.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belarus , Bulgaria , Czech , France , Germany , Hungary , India , Italy , Romania , Russia , Slovakia , Spain , UK , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2021/sm-e426s-galaxy-wide5-5g-2021-td-lte-kr-64gb.json b/data/smartphone/samsung/2021/sm-e426s-galaxy-wide5-5g-2021-td-lte-kr-64gb.json new file mode 100644 index 00000000000..ac4914d84b6 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-e426s-galaxy-wide5-5g-2021-td-lte-kr-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-e426s-galaxy-wide5-5g-2021-td-lte-kr-64gb", + "name": "SM-E426S Galaxy Wide5 5G 2021 TD-LTE KR 64GB", + "brand": "samsung", + "soc": "dimensity-700", + "release_date": "2021-10-03", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 207.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color PLS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-e625f-ds-galaxy-f62-2021-premium-edition-global-dual-sim-td-lte.json b/data/smartphone/samsung/2021/sm-e625f-ds-galaxy-f62-2021-premium-edition-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..02fa7aeba8e --- /dev/null +++ b/data/smartphone/samsung/2021/sm-e625f-ds-galaxy-f62-2021-premium-edition-global-dual-sim-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-e625f-ds-galaxy-f62-2021-premium-edition-global-dual-sim-td-lte", + "name": "SM-E625F/DS Galaxy F62 2021 Premium Edition Global Dual SIM TD-LTE", + "brand": "samsung", + "soc": "exynos-9825", + "release_date": "2021-02-24", + "ram_gb": 6.0, + "battery_mah": 7000, + "weight_g": 218.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-e625f-ds-galaxy-f62-2021-standard-edition-global-dual-sim-td-lte.json b/data/smartphone/samsung/2021/sm-e625f-ds-galaxy-f62-2021-standard-edition-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..126180cc4c1 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-e625f-ds-galaxy-f62-2021-standard-edition-global-dual-sim-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-e625f-ds-galaxy-f62-2021-standard-edition-global-dual-sim-td-lte", + "name": "SM-E625F/DS Galaxy F62 2021 Standard Edition Global Dual SIM TD-LTE", + "brand": "samsung", + "soc": "exynos-9825", + "release_date": "2021-02-24", + "ram_gb": 6.0, + "battery_mah": 7000, + "weight_g": 218.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-f7110-galaxy-z-flip-3-5g-td-lte-cn-hk-tw-128gb.json b/data/smartphone/samsung/2021/sm-f7110-galaxy-z-flip-3-5g-td-lte-cn-hk-tw-128gb.json new file mode 100644 index 00000000000..8839c81bf62 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f7110-galaxy-z-flip-3-5g-td-lte-cn-hk-tw-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-f7110-galaxy-z-flip-3-5g-td-lte-cn-hk-tw-128gb", + "name": "SM-F7110 Galaxy Z Flip 3 5G TD-LTE CN HK TW 128GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2021/sm-f7110-galaxy-z-flip-3-5g-td-lte-cn-hk-tw-256gb.json b/data/smartphone/samsung/2021/sm-f7110-galaxy-z-flip-3-5g-td-lte-cn-hk-tw-256gb.json new file mode 100644 index 00000000000..db58d1188bb --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f7110-galaxy-z-flip-3-5g-td-lte-cn-hk-tw-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-f7110-galaxy-z-flip-3-5g-td-lte-cn-hk-tw-256gb", + "name": "SM-F7110 Galaxy Z Flip 3 5G TD-LTE CN HK TW 256GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2021/sm-f711b-galaxy-z-flip-3-5g-global-td-lte-128gb.json b/data/smartphone/samsung/2021/sm-f711b-galaxy-z-flip-3-5g-global-td-lte-128gb.json new file mode 100644 index 00000000000..6e932df3b72 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f711b-galaxy-z-flip-3-5g-global-td-lte-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f711b-galaxy-z-flip-3-5g-global-td-lte-128gb", + "name": "SM-F711B Galaxy Z Flip 3 5G Global TD-LTE 128GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 109, + "market_countries": "Argentina , Armenia , Australia , Austria , Belarus , Belgium , Brazil , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Greece , HK , Hungary , India , Indonesia , Ireland , Israel , Italy , Kazakhstan , Kyrgyzstan , Latvia , Lithuania , Lebanon , Malaysia , Mexico , Netherlands , Norway , Peru , Philippines , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Singapore , Slovenia , South Africa , Spain , Switzerland , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , North America , South America , Western Europe" +} diff --git a/data/smartphone/samsung/2021/sm-f711b-galaxy-z-flip-3-5g-global-td-lte-256gb.json b/data/smartphone/samsung/2021/sm-f711b-galaxy-z-flip-3-5g-global-td-lte-256gb.json new file mode 100644 index 00000000000..6aabc3cee4e --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f711b-galaxy-z-flip-3-5g-global-td-lte-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f711b-galaxy-z-flip-3-5g-global-td-lte-256gb", + "name": "SM-F711B Galaxy Z Flip 3 5G Global TD-LTE 256GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1099, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Ireland , Italy , Latvia , Lithuania , Lebanon , Malaysia , Mexico , Netherlands , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Spain , Switzerland , Thailand , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , North America , Western Europe" +} diff --git a/data/smartphone/samsung/2021/sm-f711b-galaxy-z-flip-3-5g-thom-browne-edition-global-td-lte-256gb.json b/data/smartphone/samsung/2021/sm-f711b-galaxy-z-flip-3-5g-thom-browne-edition-global-td-lte-256gb.json new file mode 100644 index 00000000000..b3dc9bdbcc6 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f711b-galaxy-z-flip-3-5g-thom-browne-edition-global-td-lte-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-f711b-galaxy-z-flip-3-5g-thom-browne-edition-global-td-lte-256gb", + "name": "SM-F711B Galaxy Z Flip 3 5G Thom Browne Edition Global TD-LTE 256GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "HK , Lebanon , Russia , Saudi Arabia , Singapore , Slovakia , UAE , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , North America , Western Europe" +} diff --git a/data/smartphone/samsung/2021/sm-f711d-galaxy-z-flip-3-5g-td-lte-jp-128gb-sc-54b.json b/data/smartphone/samsung/2021/sm-f711d-galaxy-z-flip-3-5g-td-lte-jp-128gb-sc-54b.json new file mode 100644 index 00000000000..4f2931b4690 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f711d-galaxy-z-flip-3-5g-td-lte-jp-128gb-sc-54b.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-f711d-galaxy-z-flip-3-5g-td-lte-jp-128gb-sc-54b", + "name": "SM-F711D Galaxy Z Flip 3 5G TD-LTE JP 128GB SC-54B", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-10-06", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-f711j-galaxy-z-flip-3-5g-td-lte-jp-128gb-scg12.json b/data/smartphone/samsung/2021/sm-f711j-galaxy-z-flip-3-5g-td-lte-jp-128gb-scg12.json new file mode 100644 index 00000000000..b95b50e6f19 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f711j-galaxy-z-flip-3-5g-td-lte-jp-128gb-scg12.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-f711j-galaxy-z-flip-3-5g-td-lte-jp-128gb-scg12", + "name": "SM-F711J Galaxy Z Flip 3 5G TD-LTE JP 128GB SCG12", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-10-06", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-f711n-galaxy-z-flip-3-5g-td-lte-kr-256gb.json b/data/smartphone/samsung/2021/sm-f711n-galaxy-z-flip-3-5g-td-lte-kr-256gb.json new file mode 100644 index 00000000000..2dd48fde7cc --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f711n-galaxy-z-flip-3-5g-td-lte-kr-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-f711n-galaxy-z-flip-3-5g-td-lte-kr-256gb", + "name": "SM-F711N Galaxy Z Flip 3 5G TD-LTE KR 256GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711a.json b/data/smartphone/samsung/2021/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711a.json new file mode 100644 index 00000000000..667cea1739d --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711a.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711a", + "name": "SM-F711U Galaxy Z Flip 3 5G UW TD-LTE US 128GB / SM-F711A", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1000, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711r4.json b/data/smartphone/samsung/2021/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711r4.json new file mode 100644 index 00000000000..d66908537ff --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711r4.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711r4", + "name": "SM-F711U Galaxy Z Flip 3 5G UW TD-LTE US 128GB / SM-F711R4", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1000, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711t.json b/data/smartphone/samsung/2021/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711t.json new file mode 100644 index 00000000000..d9770f74dde --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711t.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711t", + "name": "SM-F711U Galaxy Z Flip 3 5G UW TD-LTE US 128GB / SM-F711T", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1000, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711v.json b/data/smartphone/samsung/2021/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711v.json new file mode 100644 index 00000000000..12c653336ea --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711v.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711v", + "name": "SM-F711U Galaxy Z Flip 3 5G UW TD-LTE US 128GB / SM-F711V", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1000, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711a.json b/data/smartphone/samsung/2021/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711a.json new file mode 100644 index 00000000000..5cf3b6e1aa5 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711a.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711a", + "name": "SM-F711U Galaxy Z Flip 3 5G UW TD-LTE US 256GB / SM-F711A", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1050, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711r4.json b/data/smartphone/samsung/2021/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711r4.json new file mode 100644 index 00000000000..be3f0f3367c --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711r4.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711r4", + "name": "SM-F711U Galaxy Z Flip 3 5G UW TD-LTE US 256GB / SM-F711R4", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1050, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711t.json b/data/smartphone/samsung/2021/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711t.json new file mode 100644 index 00000000000..ad006757e24 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711t.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711t", + "name": "SM-F711U Galaxy Z Flip 3 5G UW TD-LTE US 256GB / SM-F711T", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1050, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711v.json b/data/smartphone/samsung/2021/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711v.json new file mode 100644 index 00000000000..454dbab9a5f --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711v.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711v", + "name": "SM-F711U Galaxy Z Flip 3 5G UW TD-LTE US 256GB / SM-F711V", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1050, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-f711u1-galaxy-z-flip-3-5g-uw-bespoke-edition-td-lte-us-256gb.json b/data/smartphone/samsung/2021/sm-f711u1-galaxy-z-flip-3-5g-uw-bespoke-edition-td-lte-us-256gb.json new file mode 100644 index 00000000000..b8335566f0b --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f711u1-galaxy-z-flip-3-5g-uw-bespoke-edition-td-lte-us-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f711u1-galaxy-z-flip-3-5g-uw-bespoke-edition-td-lte-us-256gb", + "name": "SM-F711U1 Galaxy Z Flip 3 5G UW Bespoke Edition TD-LTE US 256GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-10-21", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1100, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-f711u1-galaxy-z-flip-3-5g-uw-td-lte-us-128gb.json b/data/smartphone/samsung/2021/sm-f711u1-galaxy-z-flip-3-5g-uw-td-lte-us-128gb.json new file mode 100644 index 00000000000..035a33d48c7 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f711u1-galaxy-z-flip-3-5g-uw-td-lte-us-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f711u1-galaxy-z-flip-3-5g-uw-td-lte-us-128gb", + "name": "SM-F711U1 Galaxy Z Flip 3 5G UW TD-LTE US 128GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1000, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-f711u1-galaxy-z-flip-3-5g-uw-td-lte-us-256gb.json b/data/smartphone/samsung/2021/sm-f711u1-galaxy-z-flip-3-5g-uw-td-lte-us-256gb.json new file mode 100644 index 00000000000..94aeae89fab --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f711u1-galaxy-z-flip-3-5g-uw-td-lte-us-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f711u1-galaxy-z-flip-3-5g-uw-td-lte-us-256gb", + "name": "SM-F711U1 Galaxy Z Flip 3 5G UW TD-LTE US 256GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1050, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-f711w-galaxy-z-flip-3-5g-bespoke-edition-td-lte-ca-256gb.json b/data/smartphone/samsung/2021/sm-f711w-galaxy-z-flip-3-5g-bespoke-edition-td-lte-ca-256gb.json new file mode 100644 index 00000000000..09355ceeba4 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f711w-galaxy-z-flip-3-5g-bespoke-edition-td-lte-ca-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f711w-galaxy-z-flip-3-5g-bespoke-edition-td-lte-ca-256gb", + "name": "SM-F711W Galaxy Z Flip 3 5G Bespoke Edition TD-LTE CA 256GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-10-21", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1400, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-f711w-galaxy-z-flip-3-5g-td-lte-ca-128gb.json b/data/smartphone/samsung/2021/sm-f711w-galaxy-z-flip-3-5g-td-lte-ca-128gb.json new file mode 100644 index 00000000000..6083f434775 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f711w-galaxy-z-flip-3-5g-td-lte-ca-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f711w-galaxy-z-flip-3-5g-td-lte-ca-128gb", + "name": "SM-F711W Galaxy Z Flip 3 5G TD-LTE CA 128GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1260, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-f711w-galaxy-z-flip-3-5g-td-lte-ca-256gb.json b/data/smartphone/samsung/2021/sm-f711w-galaxy-z-flip-3-5g-td-lte-ca-256gb.json new file mode 100644 index 00000000000..b1ec4b946a8 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f711w-galaxy-z-flip-3-5g-td-lte-ca-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f711w-galaxy-z-flip-3-5g-td-lte-ca-256gb", + "name": "SM-F711W Galaxy Z Flip 3 5G TD-LTE CA 256GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1330, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-f9260-galaxy-z-fold3-5g-dual-sim-td-lte-cn-hk-tw-512gb.json b/data/smartphone/samsung/2021/sm-f9260-galaxy-z-fold3-5g-dual-sim-td-lte-cn-hk-tw-512gb.json new file mode 100644 index 00000000000..86a0342a540 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f9260-galaxy-z-fold3-5g-dual-sim-td-lte-cn-hk-tw-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-f9260-galaxy-z-fold3-5g-dual-sim-td-lte-cn-hk-tw-512gb", + "name": "SM-F9260 Galaxy Z Fold3 5G Dual SIM TD-LTE CN HK TW 512GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-28", + "ram_gb": 12.0, + "battery_mah": 4335, + "weight_g": 271.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2021/sm-f9260-galaxy-z-fold3-5g-thom-browne-edition-dual-sim-td-lte-cn-hk-tw-512gb.json b/data/smartphone/samsung/2021/sm-f9260-galaxy-z-fold3-5g-thom-browne-edition-dual-sim-td-lte-cn-hk-tw-512gb.json new file mode 100644 index 00000000000..c4f328a6346 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f9260-galaxy-z-fold3-5g-thom-browne-edition-dual-sim-td-lte-cn-hk-tw-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-f9260-galaxy-z-fold3-5g-thom-browne-edition-dual-sim-td-lte-cn-hk-tw-512gb", + "name": "SM-F9260 Galaxy Z Fold3 5G Thom Browne Edition Dual SIM TD-LTE CN HK TW 512GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-09-09", + "ram_gb": 12.0, + "battery_mah": 4335, + "weight_g": 271.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2021/sm-f926b-ds-galaxy-z-fold3-5g-global-dual-sim-td-lte-256gb.json b/data/smartphone/samsung/2021/sm-f926b-ds-galaxy-z-fold3-5g-global-dual-sim-td-lte-256gb.json new file mode 100644 index 00000000000..ecaf17e7198 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f926b-ds-galaxy-z-fold3-5g-global-dual-sim-td-lte-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f926b-ds-galaxy-z-fold3-5g-global-dual-sim-td-lte-256gb", + "name": "SM-F926B/DS Galaxy Z Fold3 5G Global Dual SIM TD-LTE 256GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 12.0, + "battery_mah": 4335, + "weight_g": 271.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1599, + "market_countries": "Argentina , Armenia , Australia , Austria , Belarus , Belgium , Brazil , Bulgaria , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Finland , France , Greece , Germany , Guatemala , Hungary , India , Indonesia , Ireland , Israel , Italy , Japan , Jordan , Kazakhstan , Kuwait , Kyrgyzstan , Lebanon , Malaysia , Mexico , Netherlands , Norway , NZ , Panama , Pakistan , Peru , Philippines , Poland , Portugal , Puerto Rico , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , Spain , Switzerland , Sweden , Tunisie , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/samsung/2021/sm-f926b-ds-galaxy-z-fold3-5g-global-dual-sim-td-lte-512gb.json b/data/smartphone/samsung/2021/sm-f926b-ds-galaxy-z-fold3-5g-global-dual-sim-td-lte-512gb.json new file mode 100644 index 00000000000..1408bf130d0 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f926b-ds-galaxy-z-fold3-5g-global-dual-sim-td-lte-512gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f926b-ds-galaxy-z-fold3-5g-global-dual-sim-td-lte-512gb", + "name": "SM-F926B/DS Galaxy Z Fold3 5G Global Dual SIM TD-LTE 512GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 12.0, + "battery_mah": 4335, + "weight_g": 271.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1899, + "market_countries": "Argentina , Armenia , Australia , Austria , Belarus , Belgium , Brazil , Bulgaria , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Finland , France , Greece , Germany , Guatemala , Hungary , India , Indonesia , Ireland , Israel , Italy , Japan , Jordan , Kazakhstan , Kuwait , Kyrgyzstan , Lebanon , Malaysia , Mexico , Netherlands , Norway , NZ , Panama , Pakistan , Peru , Philippines , Poland , Portugal , Puerto Rico , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , Spain , Switzerland , Sweden , Tunisie , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/samsung/2021/sm-f926b-galaxy-z-fold3-5g-global-td-lte-256gb.json b/data/smartphone/samsung/2021/sm-f926b-galaxy-z-fold3-5g-global-td-lte-256gb.json new file mode 100644 index 00000000000..96cd7d96b27 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f926b-galaxy-z-fold3-5g-global-td-lte-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f926b-galaxy-z-fold3-5g-global-td-lte-256gb", + "name": "SM-F926B Galaxy Z Fold3 5G Global TD-LTE 256GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 12.0, + "battery_mah": 4335, + "weight_g": 272.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 2499, + "market_countries": "Australia , NZ", + "market_regions": "Australia" +} diff --git a/data/smartphone/samsung/2021/sm-f926b-galaxy-z-fold3-5g-global-td-lte-512gb.json b/data/smartphone/samsung/2021/sm-f926b-galaxy-z-fold3-5g-global-td-lte-512gb.json new file mode 100644 index 00000000000..b0b2afa49c8 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f926b-galaxy-z-fold3-5g-global-td-lte-512gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f926b-galaxy-z-fold3-5g-global-td-lte-512gb", + "name": "SM-F926B Galaxy Z Fold3 5G Global TD-LTE 512GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 12.0, + "battery_mah": 4335, + "weight_g": 272.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 2649, + "market_countries": "Australia , NZ", + "market_regions": "Australia" +} diff --git a/data/smartphone/samsung/2021/sm-f926b-galaxy-z-fold3-5g-thom-browne-edition-global-td-lte-512gb.json b/data/smartphone/samsung/2021/sm-f926b-galaxy-z-fold3-5g-thom-browne-edition-global-td-lte-512gb.json new file mode 100644 index 00000000000..85a066ead34 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f926b-galaxy-z-fold3-5g-thom-browne-edition-global-td-lte-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-f926b-galaxy-z-fold3-5g-thom-browne-edition-global-td-lte-512gb", + "name": "SM-F926B Galaxy Z Fold3 5G Thom Browne Edition Global TD-LTE 512GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 12.0, + "battery_mah": 4335, + "weight_g": 272.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia , NZ", + "market_regions": "Australia" +} diff --git a/data/smartphone/samsung/2021/sm-f926d-galaxy-z-fold3-5g-uw-td-lte-jp-256gb-sc-55b.json b/data/smartphone/samsung/2021/sm-f926d-galaxy-z-fold3-5g-uw-td-lte-jp-256gb-sc-55b.json new file mode 100644 index 00000000000..bdda84279af --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f926d-galaxy-z-fold3-5g-uw-td-lte-jp-256gb-sc-55b.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-f926d-galaxy-z-fold3-5g-uw-td-lte-jp-256gb-sc-55b", + "name": "SM-F926D Galaxy Z Fold3 5G UW TD-LTE JP 256GB SC-55B", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-10-06", + "ram_gb": 12.0, + "battery_mah": 4335, + "weight_g": 272.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-f926j-galaxy-z-fold3-5g-uw-td-lte-jp-256gb-scg11.json b/data/smartphone/samsung/2021/sm-f926j-galaxy-z-fold3-5g-uw-td-lte-jp-256gb-scg11.json new file mode 100644 index 00000000000..69453a3b412 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f926j-galaxy-z-fold3-5g-uw-td-lte-jp-256gb-scg11.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-f926j-galaxy-z-fold3-5g-uw-td-lte-jp-256gb-scg11", + "name": "SM-F926J Galaxy Z Fold3 5G UW TD-LTE JP 256GB SCG11", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-10-06", + "ram_gb": 12.0, + "battery_mah": 4335, + "weight_g": 272.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-f926n-galaxy-z-fold3-5g-uw-td-lte-kr-256gb.json b/data/smartphone/samsung/2021/sm-f926n-galaxy-z-fold3-5g-uw-td-lte-kr-256gb.json new file mode 100644 index 00000000000..9d455d89f48 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f926n-galaxy-z-fold3-5g-uw-td-lte-kr-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-f926n-galaxy-z-fold3-5g-uw-td-lte-kr-256gb", + "name": "SM-F926N Galaxy Z Fold3 5G UW TD-LTE KR 256GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 12.0, + "battery_mah": 4335, + "weight_g": 271.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-f926n-galaxy-z-fold3-5g-uw-td-lte-kr-512gb.json b/data/smartphone/samsung/2021/sm-f926n-galaxy-z-fold3-5g-uw-td-lte-kr-512gb.json new file mode 100644 index 00000000000..7cc3616d2d7 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f926n-galaxy-z-fold3-5g-uw-td-lte-kr-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-f926n-galaxy-z-fold3-5g-uw-td-lte-kr-512gb", + "name": "SM-F926N Galaxy Z Fold3 5G UW TD-LTE KR 512GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 12.0, + "battery_mah": 4335, + "weight_g": 271.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926a.json b/data/smartphone/samsung/2021/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926a.json new file mode 100644 index 00000000000..799d2c5d290 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926a.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926a", + "name": "SM-F926U Galaxy Z Fold3 5G UW TD-LTE US 256GB / SM-F926A", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 12.0, + "battery_mah": 4335, + "weight_g": 271.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1800, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926r4.json b/data/smartphone/samsung/2021/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926r4.json new file mode 100644 index 00000000000..e86fb373150 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926r4.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926r4", + "name": "SM-F926U Galaxy Z Fold3 5G UW TD-LTE US 256GB / SM-F926R4", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 12.0, + "battery_mah": 4335, + "weight_g": 271.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1800, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926t.json b/data/smartphone/samsung/2021/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926t.json new file mode 100644 index 00000000000..2b0b3618827 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926t.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926t", + "name": "SM-F926U Galaxy Z Fold3 5G UW TD-LTE US 256GB / SM-F926T", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 12.0, + "battery_mah": 4335, + "weight_g": 271.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1800, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926v.json b/data/smartphone/samsung/2021/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926v.json new file mode 100644 index 00000000000..a815d1fea03 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926v.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926v", + "name": "SM-F926U Galaxy Z Fold3 5G UW TD-LTE US 256GB / SM-F926V", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 12.0, + "battery_mah": 4335, + "weight_g": 271.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1800, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926a.json b/data/smartphone/samsung/2021/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926a.json new file mode 100644 index 00000000000..4724250485f --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926a.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926a", + "name": "SM-F926U Galaxy Z Fold3 5G UW TD-LTE US 512GB / SM-F926A", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 12.0, + "battery_mah": 4335, + "weight_g": 271.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1900, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926r4.json b/data/smartphone/samsung/2021/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926r4.json new file mode 100644 index 00000000000..224aea1756d --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926r4.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926r4", + "name": "SM-F926U Galaxy Z Fold3 5G UW TD-LTE US 512GB / SM-F926R4", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 12.0, + "battery_mah": 4335, + "weight_g": 271.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1900, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926t.json b/data/smartphone/samsung/2021/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926t.json new file mode 100644 index 00000000000..f6a880f48a0 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926t.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926t", + "name": "SM-F926U Galaxy Z Fold3 5G UW TD-LTE US 512GB / SM-F926T", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 12.0, + "battery_mah": 4335, + "weight_g": 271.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1900, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926v.json b/data/smartphone/samsung/2021/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926v.json new file mode 100644 index 00000000000..52e20c9f149 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926v.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926v", + "name": "SM-F926U Galaxy Z Fold3 5G UW TD-LTE US 512GB / SM-F926V", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 12.0, + "battery_mah": 4335, + "weight_g": 271.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1900, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-f926u1-galaxy-z-fold3-5g-uw-td-lte-us-256gb.json b/data/smartphone/samsung/2021/sm-f926u1-galaxy-z-fold3-5g-uw-td-lte-us-256gb.json new file mode 100644 index 00000000000..df5a02f258e --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f926u1-galaxy-z-fold3-5g-uw-td-lte-us-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f926u1-galaxy-z-fold3-5g-uw-td-lte-us-256gb", + "name": "SM-F926U1 Galaxy Z Fold3 5G UW TD-LTE US 256GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 12.0, + "battery_mah": 4335, + "weight_g": 271.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1800, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-f926u1-galaxy-z-fold3-5g-uw-td-lte-us-512gb.json b/data/smartphone/samsung/2021/sm-f926u1-galaxy-z-fold3-5g-uw-td-lte-us-512gb.json new file mode 100644 index 00000000000..0217482210c --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f926u1-galaxy-z-fold3-5g-uw-td-lte-us-512gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f926u1-galaxy-z-fold3-5g-uw-td-lte-us-512gb", + "name": "SM-F926U1 Galaxy Z Fold3 5G UW TD-LTE US 512GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 12.0, + "battery_mah": 4335, + "weight_g": 271.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1900, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-f926u1-galaxy-z-fold3-5g-uw-thom-browne-edition-td-lte-us-512gb.json b/data/smartphone/samsung/2021/sm-f926u1-galaxy-z-fold3-5g-uw-thom-browne-edition-td-lte-us-512gb.json new file mode 100644 index 00000000000..74fe36afe9d --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f926u1-galaxy-z-fold3-5g-uw-thom-browne-edition-td-lte-us-512gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f926u1-galaxy-z-fold3-5g-uw-thom-browne-edition-td-lte-us-512gb", + "name": "SM-F926U1 Galaxy Z Fold3 5G UW Thom Browne Edition TD-LTE US 512GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-09-01", + "ram_gb": 12.0, + "battery_mah": 4335, + "weight_g": 271.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3499, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-f926w-galaxy-z-fold3-5g-td-lte-ca-256gb.json b/data/smartphone/samsung/2021/sm-f926w-galaxy-z-fold3-5g-td-lte-ca-256gb.json new file mode 100644 index 00000000000..ac473606f32 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f926w-galaxy-z-fold3-5g-td-lte-ca-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f926w-galaxy-z-fold3-5g-td-lte-ca-256gb", + "name": "SM-F926W Galaxy Z Fold3 5G TD-LTE CA 256GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 12.0, + "battery_mah": 4335, + "weight_g": 271.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 2270, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-f926w-galaxy-z-fold3-5g-td-lte-ca-512gb.json b/data/smartphone/samsung/2021/sm-f926w-galaxy-z-fold3-5g-td-lte-ca-512gb.json new file mode 100644 index 00000000000..5789de10082 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-f926w-galaxy-z-fold3-5g-td-lte-ca-512gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-f926w-galaxy-z-fold3-5g-td-lte-ca-512gb", + "name": "SM-F926W Galaxy Z Fold3 5G TD-LTE CA 512GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-08-27", + "ram_gb": 12.0, + "battery_mah": 4335, + "weight_g": 271.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 2410, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g525f-ds-galaxy-xcover-5-2021-global-dual-sim-td-lte.json b/data/smartphone/samsung/2021/sm-g525f-ds-galaxy-xcover-5-2021-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..b180366fec1 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g525f-ds-galaxy-xcover-5-2021-global-dual-sim-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g525f-ds-galaxy-xcover-5-2021-global-dual-sim-td-lte", + "name": "SM-G525F/DS Galaxy XCover 5 2021 Global Dual SIM TD-LTE", + "brand": "samsung", + "soc": "exynos-850", + "release_date": "2021-03-14", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.3, + "resolution": "720x1440", + "type": "Color PLS TFT LCD display", + "ppi": 304 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , India , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Russia , Romania , Serbia , Slovakia , Slovenia , Spain , Switzerland , Sweden , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2021/sm-g525f-galaxy-xcover-5-2021-global-td-lte.json b/data/smartphone/samsung/2021/sm-g525f-galaxy-xcover-5-2021-global-td-lte.json new file mode 100644 index 00000000000..f04c782eacc --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g525f-galaxy-xcover-5-2021-global-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g525f-galaxy-xcover-5-2021-global-td-lte", + "name": "SM-G525F Galaxy XCover 5 2021 Global TD-LTE", + "brand": "samsung", + "soc": "exynos-850", + "release_date": "2021-03-14", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.3, + "resolution": "720x1440", + "type": "Color PLS TFT LCD display", + "ppi": 304 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , NZ", + "market_regions": "Australia" +} diff --git a/data/smartphone/samsung/2021/sm-g9910-galaxy-s21-5g-dual-sim-td-lte-cn-hk-128gb.json b/data/smartphone/samsung/2021/sm-g9910-galaxy-s21-5g-dual-sim-td-lte-cn-hk-128gb.json new file mode 100644 index 00000000000..bdacc7b9410 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g9910-galaxy-s21-5g-dual-sim-td-lte-cn-hk-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g9910-galaxy-s21-5g-dual-sim-td-lte-cn-hk-128gb", + "name": "SM-G9910 Galaxy S21 5G Dual SIM TD-LTE CN HK 128GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 4999, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2021/sm-g9910-galaxy-s21-5g-dual-sim-td-lte-cn-hk-256gb.json b/data/smartphone/samsung/2021/sm-g9910-galaxy-s21-5g-dual-sim-td-lte-cn-hk-256gb.json new file mode 100644 index 00000000000..1f82404b542 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g9910-galaxy-s21-5g-dual-sim-td-lte-cn-hk-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g9910-galaxy-s21-5g-dual-sim-td-lte-cn-hk-256gb", + "name": "SM-G9910 Galaxy S21 5G Dual SIM TD-LTE CN HK 256GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2021/sm-g991b-ds-galaxy-s21-5g-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2021/sm-g991b-ds-galaxy-s21-5g-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..d7b9534228f --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g991b-ds-galaxy-s21-5g-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g991b-ds-galaxy-s21-5g-global-dual-sim-td-lte-128gb", + "name": "SM-G991B/DS Galaxy S21 5G Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-2100", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 849, + "market_countries": "Algeria , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Bulgaria , Croatia , Cyprus , Czech , Denmark , Egypt , Estonia , Finland , France , Germany , Greece , HK , Hungary , India , Indonesia , Iran , Ireland , Israel , Italy , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lithuania , Malaysia , Morocco , Myanmar , Nepal , Netherlands , Norway , NZ , Pakistan , Philippines , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , South Africa , Spain , Sri Lanka , Sweden , Switzerland , Taiwan , Thailand , Tunisie , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Oceania , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2021/sm-g991b-ds-galaxy-s21-5g-global-dual-sim-td-lte-256gb.json b/data/smartphone/samsung/2021/sm-g991b-ds-galaxy-s21-5g-global-dual-sim-td-lte-256gb.json new file mode 100644 index 00000000000..b282ee55701 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g991b-ds-galaxy-s21-5g-global-dual-sim-td-lte-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g991b-ds-galaxy-s21-5g-global-dual-sim-td-lte-256gb", + "name": "SM-G991B/DS Galaxy S21 5G Global Dual SIM TD-LTE 256GB", + "brand": "samsung", + "soc": "exynos-2100", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 899, + "market_countries": "Algeria , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Bulgaria , Croatia , Cyprus , Czech , Denmark , Egypt , Estonia , Finland , France , Germany , Greece , HK , Hungary , India , Indonesia , Iran , Ireland , Israel , Italy , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lithuania , Malaysia , Morocco , Myanmar , Nepal , Netherlands , Norway , NZ , Pakistan , Philippines , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , South Africa , Spain , Sri Lanka , Sweden , Switzerland , Taiwan , Thailand , Tunisie , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Oceania , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2021/sm-g991d-galaxy-s21-5g-uw-olympic-games-edition-td-lte-jp-256gb-sc-51b.json b/data/smartphone/samsung/2021/sm-g991d-galaxy-s21-5g-uw-olympic-games-edition-td-lte-jp-256gb-sc-51b.json new file mode 100644 index 00000000000..7732f503c32 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g991d-galaxy-s21-5g-uw-olympic-games-edition-td-lte-jp-256gb-sc-51b.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g991d-galaxy-s21-5g-uw-olympic-games-edition-td-lte-jp-256gb-sc-51b", + "name": "SM-G991D Galaxy S21 5G UW Olympic Games Edition TD-LTE JP 256GB SC-51B", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-04-22", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-g991d-galaxy-s21-5g-uw-td-lte-jp-256gb-sc-51b-sgh-n649.json b/data/smartphone/samsung/2021/sm-g991d-galaxy-s21-5g-uw-td-lte-jp-256gb-sc-51b-sgh-n649.json new file mode 100644 index 00000000000..08a1e8d4c73 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g991d-galaxy-s21-5g-uw-td-lte-jp-256gb-sc-51b-sgh-n649.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g991d-galaxy-s21-5g-uw-td-lte-jp-256gb-sc-51b-sgh-n649", + "name": "SM-G991D Galaxy S21 5G UW TD-LTE JP 256GB SC-51B / SGH-N649", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-04-22", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-g991j-galaxy-s21-5g-uw-td-lte-jp-256gb-scg09.json b/data/smartphone/samsung/2021/sm-g991j-galaxy-s21-5g-uw-td-lte-jp-256gb-scg09.json new file mode 100644 index 00000000000..1521176ea0c --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g991j-galaxy-s21-5g-uw-td-lte-jp-256gb-scg09.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g991j-galaxy-s21-5g-uw-td-lte-jp-256gb-scg09", + "name": "SM-G991J Galaxy S21 5G UW TD-LTE JP 256GB SCG09", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-04-22", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-g991n-galaxy-s21-5g-td-lte-kr-256gb.json b/data/smartphone/samsung/2021/sm-g991n-galaxy-s21-5g-td-lte-kr-256gb.json new file mode 100644 index 00000000000..19020eb93cf --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g991n-galaxy-s21-5g-td-lte-kr-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g991n-galaxy-s21-5g-td-lte-kr-256gb", + "name": "SM-G991N Galaxy S21 5G TD-LTE KR 256GB", + "brand": "samsung", + "soc": "exynos-2100", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991a.json b/data/smartphone/samsung/2021/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991a.json new file mode 100644 index 00000000000..843367c625b --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991a.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991a", + "name": "SM-G991U Galaxy S21 5G UW Dual SIM TD-LTE US 128GB / SM-G991A", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 800, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991p.json b/data/smartphone/samsung/2021/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991p.json new file mode 100644 index 00000000000..8e8a3c77188 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991p.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991p", + "name": "SM-G991U Galaxy S21 5G UW Dual SIM TD-LTE US 128GB / SM-G991P", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 800, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991r4.json b/data/smartphone/samsung/2021/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991r4.json new file mode 100644 index 00000000000..eeee62a01e0 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991r4.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991r4", + "name": "SM-G991U Galaxy S21 5G UW Dual SIM TD-LTE US 128GB / SM-G991R4", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 800, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991t.json b/data/smartphone/samsung/2021/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991t.json new file mode 100644 index 00000000000..aa551f0da5b --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991t.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991t", + "name": "SM-G991U Galaxy S21 5G UW Dual SIM TD-LTE US 128GB / SM-G991T", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 800, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991v.json b/data/smartphone/samsung/2021/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991v.json new file mode 100644 index 00000000000..f3da1765705 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991v.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991v", + "name": "SM-G991U Galaxy S21 5G UW Dual SIM TD-LTE US 128GB / SM-G991V", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 799, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991a.json b/data/smartphone/samsung/2021/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991a.json new file mode 100644 index 00000000000..2b6d0c9a41c --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991a.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991a", + "name": "SM-G991U Galaxy S21 5G UW Dual SIM TD-LTE US 256GB / SM-G991A", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 850, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991p.json b/data/smartphone/samsung/2021/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991p.json new file mode 100644 index 00000000000..954b1b38460 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991p.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991p", + "name": "SM-G991U Galaxy S21 5G UW Dual SIM TD-LTE US 256GB / SM-G991P", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 850, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991r4.json b/data/smartphone/samsung/2021/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991r4.json new file mode 100644 index 00000000000..08982ad597f --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991r4.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991r4", + "name": "SM-G991U Galaxy S21 5G UW Dual SIM TD-LTE US 256GB / SM-G991R4", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 850, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991t.json b/data/smartphone/samsung/2021/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991t.json new file mode 100644 index 00000000000..63bdf603075 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991t.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991t", + "name": "SM-G991U Galaxy S21 5G UW Dual SIM TD-LTE US 256GB / SM-G991T", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 850, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991v.json b/data/smartphone/samsung/2021/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991v.json new file mode 100644 index 00000000000..0b4713f7c05 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991v.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991v", + "name": "SM-G991U Galaxy S21 5G UW Dual SIM TD-LTE US 256GB / SM-G991V", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 850, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g991u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb.json b/data/smartphone/samsung/2021/sm-g991u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb.json new file mode 100644 index 00000000000..7577b74a114 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g991u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g991u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb", + "name": "SM-G991U1 Galaxy S21 5G UW Dual SIM TD-LTE US 128GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 799, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g991u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb.json b/data/smartphone/samsung/2021/sm-g991u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb.json new file mode 100644 index 00000000000..10a3f7c33ba --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g991u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g991u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb", + "name": "SM-G991U1 Galaxy S21 5G UW Dual SIM TD-LTE US 256GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 850, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g991w-galaxy-s21-5g-dual-sim-td-lte-ca-128gb.json b/data/smartphone/samsung/2021/sm-g991w-galaxy-s21-5g-dual-sim-td-lte-ca-128gb.json new file mode 100644 index 00000000000..2d7a9813529 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g991w-galaxy-s21-5g-dual-sim-td-lte-ca-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g991w-galaxy-s21-5g-dual-sim-td-lte-ca-128gb", + "name": "SM-G991W Galaxy S21 5G Dual SIM TD-LTE CA 128GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1130, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g991w-galaxy-s21-5g-dual-sim-td-lte-ca-256gb.json b/data/smartphone/samsung/2021/sm-g991w-galaxy-s21-5g-dual-sim-td-lte-ca-256gb.json new file mode 100644 index 00000000000..e8e1b0427f5 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g991w-galaxy-s21-5g-dual-sim-td-lte-ca-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g991w-galaxy-s21-5g-dual-sim-td-lte-ca-256gb", + "name": "SM-G991W Galaxy S21 5G Dual SIM TD-LTE CA 256GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1200, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g9960-galaxy-s21-5g-dual-sim-td-lte-cn-hk-128gb.json b/data/smartphone/samsung/2021/sm-g9960-galaxy-s21-5g-dual-sim-td-lte-cn-hk-128gb.json new file mode 100644 index 00000000000..82191d0b24c --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g9960-galaxy-s21-5g-dual-sim-td-lte-cn-hk-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g9960-galaxy-s21-5g-dual-sim-td-lte-cn-hk-128gb", + "name": "SM-G9960 Galaxy S21+ 5G Dual SIM TD-LTE CN HK 128GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4800, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2021/sm-g9960-galaxy-s21-5g-dual-sim-td-lte-cn-hk-256gb.json b/data/smartphone/samsung/2021/sm-g9960-galaxy-s21-5g-dual-sim-td-lte-cn-hk-256gb.json new file mode 100644 index 00000000000..c97b4b87c3b --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g9960-galaxy-s21-5g-dual-sim-td-lte-cn-hk-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g9960-galaxy-s21-5g-dual-sim-td-lte-cn-hk-256gb", + "name": "SM-G9960 Galaxy S21+ 5G Dual SIM TD-LTE CN HK 256GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4800, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2021/sm-g996b-ds-galaxy-s21-5g-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2021/sm-g996b-ds-galaxy-s21-5g-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..ceb082208b1 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g996b-ds-galaxy-s21-5g-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g996b-ds-galaxy-s21-5g-global-dual-sim-td-lte-128gb", + "name": "SM-G996B/DS Galaxy S21+ 5G Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-2100", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4800, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 949, + "market_countries": "Algeria , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Bulgaria , Croatia , Cyprus , Czech , Denmark , Egypt , Estonia , Finland , France , Germany , Greece , HK , Hungary , India , Indonesia , Iran , Ireland , Israel , Italy , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lithuania , Malaysia , Morocco , Myanmar , Nepal , Netherlands , Norway , NZ , Pakistan , Philippines , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , South Africa , Spain , Sri Lanka , Sweden , Switzerland , Taiwan , Thailand , Tunisie , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Oceania , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2021/sm-g996b-ds-galaxy-s21-5g-global-dual-sim-td-lte-256gb.json b/data/smartphone/samsung/2021/sm-g996b-ds-galaxy-s21-5g-global-dual-sim-td-lte-256gb.json new file mode 100644 index 00000000000..6b411c8df89 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g996b-ds-galaxy-s21-5g-global-dual-sim-td-lte-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g996b-ds-galaxy-s21-5g-global-dual-sim-td-lte-256gb", + "name": "SM-G996B/DS Galaxy S21+ 5G Global Dual SIM TD-LTE 256GB", + "brand": "samsung", + "soc": "exynos-2100", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4800, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 999, + "market_countries": "Algeria , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Bulgaria , Croatia , Cyprus , Czech , Denmark , Egypt , Estonia , Finland , France , Germany , Greece , HK , Hungary , India , Indonesia , Iran , Ireland , Israel , Italy , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lithuania , Malaysia , Morocco , Myanmar , Nepal , Netherlands , Norway , NZ , Pakistan , Philippines , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , South Africa , Spain , Sri Lanka , Sweden , Switzerland , Taiwan , Thailand , Tunisie , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Oceania , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2021/sm-g996j-galaxy-s21-5g-td-lte-jp-256gb-scg10.json b/data/smartphone/samsung/2021/sm-g996j-galaxy-s21-5g-td-lte-jp-256gb-scg10.json new file mode 100644 index 00000000000..6143e026eb1 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g996j-galaxy-s21-5g-td-lte-jp-256gb-scg10.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g996j-galaxy-s21-5g-td-lte-jp-256gb-scg10", + "name": "SM-G996J Galaxy S21+ 5G TD-LTE JP 256GB SCG10", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-04-22", + "ram_gb": 8.0, + "battery_mah": 4800, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-g996n-galaxy-s21-5g-uw-td-lte-kr-256gb.json b/data/smartphone/samsung/2021/sm-g996n-galaxy-s21-5g-uw-td-lte-kr-256gb.json new file mode 100644 index 00000000000..d6595491f86 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g996n-galaxy-s21-5g-uw-td-lte-kr-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g996n-galaxy-s21-5g-uw-td-lte-kr-256gb", + "name": "SM-G996N Galaxy S21+ 5G UW TD-LTE KR 256GB", + "brand": "samsung", + "soc": "exynos-2100", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4800, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 237 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996a.json b/data/smartphone/samsung/2021/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996a.json new file mode 100644 index 00000000000..4a66429f509 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996a.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996a", + "name": "SM-G996U Galaxy S21+ 5G UW Dual SIM TD-LTE US 128GB / SM-G996A", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4800, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1000, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996p.json b/data/smartphone/samsung/2021/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996p.json new file mode 100644 index 00000000000..764bc33a34c --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996p.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996p", + "name": "SM-G996U Galaxy S21+ 5G UW Dual SIM TD-LTE US 128GB / SM-G996P", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4800, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1000, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996r4.json b/data/smartphone/samsung/2021/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996r4.json new file mode 100644 index 00000000000..f33df498a32 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996r4.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996r4", + "name": "SM-G996U Galaxy S21+ 5G UW Dual SIM TD-LTE US 128GB / SM-G996R4", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4800, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1000, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996t.json b/data/smartphone/samsung/2021/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996t.json new file mode 100644 index 00000000000..07f057435cc --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996t.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996t", + "name": "SM-G996U Galaxy S21+ 5G UW Dual SIM TD-LTE US 128GB / SM-G996T", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4800, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1000, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996v.json b/data/smartphone/samsung/2021/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996v.json new file mode 100644 index 00000000000..80a549ee71f --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996v.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996v", + "name": "SM-G996U Galaxy S21+ 5G UW Dual SIM TD-LTE US 128GB / SM-G996V", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4800, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1000, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996a.json b/data/smartphone/samsung/2021/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996a.json new file mode 100644 index 00000000000..7d9f92d61a1 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996a.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996a", + "name": "SM-G996U Galaxy S21+ 5G UW Dual SIM TD-LTE US 256GB / SM-G996A", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4800, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1050, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996p.json b/data/smartphone/samsung/2021/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996p.json new file mode 100644 index 00000000000..b32ab930dde --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996p.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996p", + "name": "SM-G996U Galaxy S21+ 5G UW Dual SIM TD-LTE US 256GB / SM-G996P", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4800, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1050, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996r4.json b/data/smartphone/samsung/2021/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996r4.json new file mode 100644 index 00000000000..48db2d6f984 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996r4.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996r4", + "name": "SM-G996U Galaxy S21+ 5G UW Dual SIM TD-LTE US 256GB / SM-G996R4", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4800, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1050, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996t.json b/data/smartphone/samsung/2021/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996t.json new file mode 100644 index 00000000000..dab6de70f66 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996t.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996t", + "name": "SM-G996U Galaxy S21+ 5G UW Dual SIM TD-LTE US 256GB / SM-G996T", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4800, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1050, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996v.json b/data/smartphone/samsung/2021/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996v.json new file mode 100644 index 00000000000..5a5e1ff3332 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996v.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996v", + "name": "SM-G996U Galaxy S21+ 5G UW Dual SIM TD-LTE US 256GB / SM-G996V", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4800, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1050, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g996u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb.json b/data/smartphone/samsung/2021/sm-g996u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb.json new file mode 100644 index 00000000000..7177f88e188 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g996u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g996u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb", + "name": "SM-G996U1 Galaxy S21+ 5G UW Dual SIM TD-LTE US 128GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4800, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1000, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g996u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb.json b/data/smartphone/samsung/2021/sm-g996u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb.json new file mode 100644 index 00000000000..5caad8ed1cf --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g996u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g996u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb", + "name": "SM-G996U1 Galaxy S21+ 5G UW Dual SIM TD-LTE US 256GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4800, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1050, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g996w-galaxy-s21-5g-dual-sim-td-lte-ca-128gb.json b/data/smartphone/samsung/2021/sm-g996w-galaxy-s21-5g-dual-sim-td-lte-ca-128gb.json new file mode 100644 index 00000000000..db7f42c269f --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g996w-galaxy-s21-5g-dual-sim-td-lte-ca-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g996w-galaxy-s21-5g-dual-sim-td-lte-ca-128gb", + "name": "SM-G996W Galaxy S21+ 5G Dual SIM TD-LTE CA 128GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4800, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1400, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g996w-galaxy-s21-5g-dual-sim-td-lte-ca-256gb.json b/data/smartphone/samsung/2021/sm-g996w-galaxy-s21-5g-dual-sim-td-lte-ca-256gb.json new file mode 100644 index 00000000000..cde76586229 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g996w-galaxy-s21-5g-dual-sim-td-lte-ca-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g996w-galaxy-s21-5g-dual-sim-td-lte-ca-256gb", + "name": "SM-G996W Galaxy S21+ 5G Dual SIM TD-LTE CA 256GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 8.0, + "battery_mah": 4800, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1470, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g9980-galaxy-s21-ultra-5g-dual-sim-td-lte-cn-hk-256gb.json b/data/smartphone/samsung/2021/sm-g9980-galaxy-s21-ultra-5g-dual-sim-td-lte-cn-hk-256gb.json new file mode 100644 index 00000000000..27847aec445 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g9980-galaxy-s21-ultra-5g-dual-sim-td-lte-cn-hk-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g9980-galaxy-s21-ultra-5g-dual-sim-td-lte-cn-hk-256gb", + "name": "SM-G9980 Galaxy S21 Ultra 5G Dual SIM TD-LTE CN HK 256GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 227.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2021/sm-g9980-galaxy-s21-ultra-5g-dual-sim-td-lte-cn-hk-512gb.json b/data/smartphone/samsung/2021/sm-g9980-galaxy-s21-ultra-5g-dual-sim-td-lte-cn-hk-512gb.json new file mode 100644 index 00000000000..b488dcec2ce --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g9980-galaxy-s21-ultra-5g-dual-sim-td-lte-cn-hk-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g9980-galaxy-s21-ultra-5g-dual-sim-td-lte-cn-hk-512gb", + "name": "SM-G9980 Galaxy S21 Ultra 5G Dual SIM TD-LTE CN HK 512GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 16.0, + "battery_mah": 5000, + "weight_g": 227.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2021/sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2021/sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..6d4b7dfc1d2 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-128gb", + "name": "SM-G998B/DS Galaxy S21 Ultra 5G Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-2100", + "release_date": "2021-01-29", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 227.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1149, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Brazil , Bulgaria , Colombia , Croatia , Cyprus , Czech , Denmark , Estonia , Egypt , Finland , France , Greece , Germany , HK , Hungary , India , Indonesia , Iran , Ireland , Israel , Italy , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lithuania , Malaysia , Morocco , Myanmar , Nepal , Netherlands , Norway , NZ , Pakistan , Philippines , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , South Africa , Spain , Switzerland , Sweden , Sri Lanka , Taiwan , Thailand , Tunisie , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Oceania , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2021/sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-256gb.json b/data/smartphone/samsung/2021/sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-256gb.json new file mode 100644 index 00000000000..88b8f07ff6e --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-256gb", + "name": "SM-G998B/DS Galaxy S21 Ultra 5G Global Dual SIM TD-LTE 256GB", + "brand": "samsung", + "soc": "exynos-2100", + "release_date": "2021-01-29", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 227.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1199, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Brazil , Bulgaria , Colombia , Croatia , Cyprus , Czech , Denmark , Estonia , Egypt , Finland , France , Greece , Germany , HK , Hungary , India , Indonesia , Iran , Ireland , Israel , Italy , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lithuania , Malaysia , Morocco , Myanmar , Nepal , Netherlands , Norway , NZ , Pakistan , Philippines , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , South Africa , Spain , Switzerland , Sweden , Sri Lanka , Taiwan , Thailand , Tunisie , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Oceania , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2021/sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-512gb.json b/data/smartphone/samsung/2021/sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-512gb.json new file mode 100644 index 00000000000..1198cfa92f2 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-512gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-512gb", + "name": "SM-G998B/DS Galaxy S21 Ultra 5G Global Dual SIM TD-LTE 512GB", + "brand": "samsung", + "soc": "exynos-2100", + "release_date": "2021-01-29", + "ram_gb": 16.0, + "battery_mah": 5000, + "weight_g": 227.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1349, + "market_countries": "Argentina , Australia , Austria , Belarus , Belgium , Brazil , Bulgaria , Cyprus , Croatia , Czech , Denmark , Egypt , Estonia , Finland , France , Germany , Greece , HK , Hungary , India , Indonesia , Ireland , Israel , Italy , Jordan , Kenya , Kuwait , Latvia , Lithuania , Malaysia , Myanmar , Nepal , Netherlands , Norway , NZ , Pakistan , Philippines , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Singapore , Slovenia , South Africa , Spain , Switzerland , Sweden , Taiwan , Tunisie , Thailand , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Oceania , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2021/sm-g998d-galaxy-s21-ultra-5g-uw-td-lte-jp-256gb-sc-52b-sgh-n748.json b/data/smartphone/samsung/2021/sm-g998d-galaxy-s21-ultra-5g-uw-td-lte-jp-256gb-sc-52b-sgh-n748.json new file mode 100644 index 00000000000..d61b66a87ed --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g998d-galaxy-s21-ultra-5g-uw-td-lte-jp-256gb-sc-52b-sgh-n748.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g998d-galaxy-s21-ultra-5g-uw-td-lte-jp-256gb-sc-52b-sgh-n748", + "name": "SM-G998D Galaxy S21 Ultra 5G UW TD-LTE JP 256GB SC-52B / SGH-N748", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-04-22", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 227.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-g998n-galaxy-s21-ultra-5g-uw-td-lte-kr-256gb.json b/data/smartphone/samsung/2021/sm-g998n-galaxy-s21-ultra-5g-uw-td-lte-kr-256gb.json new file mode 100644 index 00000000000..e69acbc28ef --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g998n-galaxy-s21-ultra-5g-uw-td-lte-kr-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g998n-galaxy-s21-ultra-5g-uw-td-lte-kr-256gb", + "name": "SM-G998N Galaxy S21 Ultra 5G UW TD-LTE KR 256GB", + "brand": "samsung", + "soc": "exynos-2100", + "release_date": "2021-01-29", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 227.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-g998n-galaxy-s21-ultra-5g-uw-td-lte-kr-512gb.json b/data/smartphone/samsung/2021/sm-g998n-galaxy-s21-ultra-5g-uw-td-lte-kr-512gb.json new file mode 100644 index 00000000000..314b95a4606 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g998n-galaxy-s21-ultra-5g-uw-td-lte-kr-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g998n-galaxy-s21-ultra-5g-uw-td-lte-kr-512gb", + "name": "SM-G998N Galaxy S21 Ultra 5G UW TD-LTE KR 512GB", + "brand": "samsung", + "soc": "exynos-2100", + "release_date": "2021-01-29", + "ram_gb": 16.0, + "battery_mah": 5000, + "weight_g": 227.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998a.json b/data/smartphone/samsung/2021/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998a.json new file mode 100644 index 00000000000..9bb59d5cb30 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998a.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998a", + "name": "SM-G998U Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 128GB / SM-G998A", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 227.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1200, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998p.json b/data/smartphone/samsung/2021/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998p.json new file mode 100644 index 00000000000..72a92c8a64d --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998p.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998p", + "name": "SM-G998U Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 128GB / SM-G998P", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 227.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1200, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998r4.json b/data/smartphone/samsung/2021/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998r4.json new file mode 100644 index 00000000000..d5f7ee552a0 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998r4.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998r4", + "name": "SM-G998U Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 128GB / SM-G998R4", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 227.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1200, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998t.json b/data/smartphone/samsung/2021/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998t.json new file mode 100644 index 00000000000..eb83b46ab9c --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998t.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998t", + "name": "SM-G998U Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 128GB / SM-G998T", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 227.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1200, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998v.json b/data/smartphone/samsung/2021/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998v.json new file mode 100644 index 00000000000..1ca2c50e879 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998v.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998v", + "name": "SM-G998U Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 128GB / SM-G998V", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 227.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1200, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998a.json b/data/smartphone/samsung/2021/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998a.json new file mode 100644 index 00000000000..5efde21dfd7 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998a.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998a", + "name": "SM-G998U Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 256GB / SM-G998A", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 227.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1250, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998p.json b/data/smartphone/samsung/2021/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998p.json new file mode 100644 index 00000000000..59988168da3 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998p.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998p", + "name": "SM-G998U Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 256GB / SM-G998P", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 227.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1250, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998r4.json b/data/smartphone/samsung/2021/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998r4.json new file mode 100644 index 00000000000..79530bb04fe --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998r4.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998r4", + "name": "SM-G998U Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 256GB / SM-G998R4", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 227.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1250, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998t.json b/data/smartphone/samsung/2021/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998t.json new file mode 100644 index 00000000000..75225840df9 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998t.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998t", + "name": "SM-G998U Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 256GB / SM-G998T", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 227.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1250, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998v.json b/data/smartphone/samsung/2021/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998v.json new file mode 100644 index 00000000000..ea9b1d4be50 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998v.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998v", + "name": "SM-G998U Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 256GB / SM-G998V", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 227.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1250, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-g998v.json b/data/smartphone/samsung/2021/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-g998v.json new file mode 100644 index 00000000000..3ee6acf1c57 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-g998v.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-g998v", + "name": "SM-G998U Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 512GB / SM-G998V", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 16.0, + "battery_mah": 5000, + "weight_g": 227.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1380, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb.json b/data/smartphone/samsung/2021/sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb.json new file mode 100644 index 00000000000..f83a145d099 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb", + "name": "SM-G998U1 Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 128GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 227.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1200, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb.json b/data/smartphone/samsung/2021/sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb.json new file mode 100644 index 00000000000..4975af1f51a --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb", + "name": "SM-G998U1 Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 256GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 227.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1250, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-512gb.json b/data/smartphone/samsung/2021/sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-512gb.json new file mode 100644 index 00000000000..a71377c9300 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-512gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-512gb", + "name": "SM-G998U1 Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 512GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 16.0, + "battery_mah": 5000, + "weight_g": 227.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1380, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-128gb.json b/data/smartphone/samsung/2021/sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-128gb.json new file mode 100644 index 00000000000..d860d7836fb --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-128gb", + "name": "SM-G998W Galaxy S21 Ultra 5G Dual SIM TD-LTE CA 128GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 227.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1650, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-256gb.json b/data/smartphone/samsung/2021/sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-256gb.json new file mode 100644 index 00000000000..a107a767763 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-256gb", + "name": "SM-G998W Galaxy S21 Ultra 5G Dual SIM TD-LTE CA 256GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 227.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1720, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-512gb.json b/data/smartphone/samsung/2021/sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-512gb.json new file mode 100644 index 00000000000..a2e352bca99 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-512gb", + "name": "SM-G998W Galaxy S21 Ultra 5G Dual SIM TD-LTE CA 512GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-01-29", + "ram_gb": 16.0, + "battery_mah": 5000, + "weight_g": 227.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2021/sm-m025f-ds-galaxy-m02s-2021-global-dual-sim-td-lte-32gb.json b/data/smartphone/samsung/2021/sm-m025f-ds-galaxy-m02s-2021-global-dual-sim-td-lte-32gb.json new file mode 100644 index 00000000000..c2f301e9d72 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-m025f-ds-galaxy-m02s-2021-global-dual-sim-td-lte-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-m025f-ds-galaxy-m02s-2021-global-dual-sim-td-lte-32gb", + "name": "SM-M025F/DS Galaxy M02s 2021 Global Dual SIM TD-LTE 32GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2021-01-18", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-m025f-ds-galaxy-m02s-2021-global-dual-sim-td-lte-64gb.json b/data/smartphone/samsung/2021/sm-m025f-ds-galaxy-m02s-2021-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..7d2cf97d0d1 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-m025f-ds-galaxy-m02s-2021-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-m025f-ds-galaxy-m02s-2021-global-dual-sim-td-lte-64gb", + "name": "SM-M025F/DS Galaxy M02s 2021 Global Dual SIM TD-LTE 64GB", + "brand": "samsung", + "soc": "snapdragon-450", + "release_date": "2021-01-18", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2021/sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..d5178a97972 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M127F/DS Galaxy M12 2021 Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-850", + "release_date": "2021-02-26", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 214.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 4990, + "market_countries": "HK , Malaysia , Singapore , Taiwan , Thailand , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2021/sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-32gb.json b/data/smartphone/samsung/2021/sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-32gb.json new file mode 100644 index 00000000000..1e8f1ebb3d3 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-32gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-32gb", + "name": "SM-M127F/DS Galaxy M12 2021 Standard Edition Global Dual SIM TD-LTE 32GB", + "brand": "samsung", + "soc": "exynos-850", + "release_date": "2021-02-26", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 221.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 3499, + "market_countries": "Costa Rica , Mexico , Puerto Rico", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/samsung/2021/sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-64gb.json b/data/smartphone/samsung/2021/sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..ff3c3200234 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-64gb", + "name": "SM-M127F/DS Galaxy M12 2021 Standard Edition Global Dual SIM TD-LTE 64GB", + "brand": "samsung", + "soc": "exynos-850", + "release_date": "2021-02-26", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 214.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belarus , Malaysia , Russia , Saudi Arabia , Thailand , UAE , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia" +} diff --git a/data/smartphone/samsung/2021/sm-m127f-dsn-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-64gb.json b/data/smartphone/samsung/2021/sm-m127f-dsn-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..2425b52523a --- /dev/null +++ b/data/smartphone/samsung/2021/sm-m127f-dsn-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-m127f-dsn-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-64gb", + "name": "SM-M127F/DSN Galaxy M12 2021 Standard Edition Global Dual SIM TD-LTE 64GB", + "brand": "samsung", + "soc": "exynos-850", + "release_date": "2021-04-18", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 214.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 159, + "market_countries": "Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Finland , France , Greece , Germany , Hungary , Italy , Netherlands , Poland , Portugal , Russia , Romania , Slovakia , Spain , Switzerland , Sweden , Thailand , UK , Ukraine", + "market_regions": "Asia , Central America , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2021/sm-m127g-ds-galaxy-m12-2021-premium-edition-dual-sim-td-lte-in-128gb.json b/data/smartphone/samsung/2021/sm-m127g-ds-galaxy-m12-2021-premium-edition-dual-sim-td-lte-in-128gb.json new file mode 100644 index 00000000000..2c4f8827baf --- /dev/null +++ b/data/smartphone/samsung/2021/sm-m127g-ds-galaxy-m12-2021-premium-edition-dual-sim-td-lte-in-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-m127g-ds-galaxy-m12-2021-premium-edition-dual-sim-td-lte-in-128gb", + "name": "SM-M127G/DS Galaxy M12 2021 Premium Edition Dual SIM TD-LTE IN 128GB", + "brand": "samsung", + "soc": "exynos-850", + "release_date": "2021-03-14", + "ram_gb": 6.0, + "battery_mah": 6000, + "weight_g": 221.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-m127g-ds-galaxy-m12-2021-standard-edition-dual-sim-td-lte-in-64gb.json b/data/smartphone/samsung/2021/sm-m127g-ds-galaxy-m12-2021-standard-edition-dual-sim-td-lte-in-64gb.json new file mode 100644 index 00000000000..6ef3ec17110 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-m127g-ds-galaxy-m12-2021-standard-edition-dual-sim-td-lte-in-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-m127g-ds-galaxy-m12-2021-standard-edition-dual-sim-td-lte-in-64gb", + "name": "SM-M127G/DS Galaxy M12 2021 Standard Edition Dual SIM TD-LTE IN 64GB", + "brand": "samsung", + "soc": "exynos-850", + "release_date": "2021-03-14", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 221.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-m127n-galaxy-m12-2021-standard-edition-td-lte-kr-32gb.json b/data/smartphone/samsung/2021/sm-m127n-galaxy-m12-2021-standard-edition-td-lte-kr-32gb.json new file mode 100644 index 00000000000..ffaf339f1b6 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-m127n-galaxy-m12-2021-standard-edition-td-lte-kr-32gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-m127n-galaxy-m12-2021-standard-edition-td-lte-kr-32gb", + "name": "SM-M127N Galaxy M12 2021 Standard Edition TD-LTE KR 32GB", + "brand": "samsung", + "soc": "exynos-850", + "release_date": "2021-04-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 214.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-m215g-ds-galaxy-m21-2021-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2021/sm-m215g-ds-galaxy-m21-2021-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..8cd02259a18 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-m215g-ds-galaxy-m21-2021-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-m215g-ds-galaxy-m21-2021-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M215G/DS Galaxy M21 2021 Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2021-07-22", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2021/sm-m215g-ds-galaxy-m21-2021-edition-global-dual-sim-td-lte-64gb.json b/data/smartphone/samsung/2021/sm-m215g-ds-galaxy-m21-2021-edition-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..6ec931fcec5 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-m215g-ds-galaxy-m21-2021-edition-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-m215g-ds-galaxy-m21-2021-edition-global-dual-sim-td-lte-64gb", + "name": "SM-M215G/DS Galaxy M21 2021 Edition Global Dual SIM TD-LTE 64GB", + "brand": "samsung", + "soc": "exynos-9611", + "release_date": "2021-07-22", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-m225fv-ds-galaxy-m22-4g-2021-premium-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2021/sm-m225fv-ds-galaxy-m22-4g-2021-premium-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..389418ef99a --- /dev/null +++ b/data/smartphone/samsung/2021/sm-m225fv-ds-galaxy-m22-4g-2021-premium-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-m225fv-ds-galaxy-m22-4g-2021-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M225FV/DS Galaxy M22 4G 2021 Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "helio-g80", + "release_date": "2021-10-12", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 275 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , India , Iran , Ireland , Israel , Italy , Jordan , Latvia , Lebanon , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , Thailand , Turkey , UAE , UK , Ukraine", + "market_regions": "Asia , Central America , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2021/sm-m225fv-ds-galaxy-m22-4g-2021-standard-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2021/sm-m225fv-ds-galaxy-m22-4g-2021-standard-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..5f1c027c8b4 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-m225fv-ds-galaxy-m22-4g-2021-standard-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-m225fv-ds-galaxy-m22-4g-2021-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M225FV/DS Galaxy M22 4G 2021 Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "helio-g80", + "release_date": "2021-10-12", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 275 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , India , Ireland , Israel , Italy , Jordan , Latvia , Lebanon , Lithuania , Netherlands , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , Thailand , Turkey , UAE , UK , Ukraine", + "market_regions": "Asia , Central America , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2021/sm-m325f-ds-galaxy-m32-4g-2021-premium-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2021/sm-m325f-ds-galaxy-m32-4g-2021-premium-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..eb7b6df9134 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-m325f-ds-galaxy-m32-4g-2021-premium-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-m325f-ds-galaxy-m32-4g-2021-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M325F/DS Galaxy M32 4G 2021 Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "helio-g80", + "release_date": "2021-06-28", + "ram_gb": 6.0, + "battery_mah": 6000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 57.9 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-m325f-ds-galaxy-m32-4g-2021-standard-edition-global-dual-sim-td-lte-64gb.json b/data/smartphone/samsung/2021/sm-m325f-ds-galaxy-m32-4g-2021-standard-edition-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..a55cd3fe1e8 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-m325f-ds-galaxy-m32-4g-2021-standard-edition-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-m325f-ds-galaxy-m32-4g-2021-standard-edition-global-dual-sim-td-lte-64gb", + "name": "SM-M325F/DS Galaxy M32 4G 2021 Standard Edition Global Dual SIM TD-LTE 64GB", + "brand": "samsung", + "soc": "helio-g80", + "release_date": "2021-06-28", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 57.9 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2021/sm-m325fv-ds-galaxy-m32-4g-2021-standard-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2021/sm-m325fv-ds-galaxy-m32-4g-2021-standard-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..1fc7636652b --- /dev/null +++ b/data/smartphone/samsung/2021/sm-m325fv-ds-galaxy-m32-4g-2021-standard-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-m325fv-ds-galaxy-m32-4g-2021-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M325FV/DS Galaxy M32 4G 2021 Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "helio-g80", + "release_date": "2021-06-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 57.9 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 269, + "market_countries": "Austria , France , Germany , Hungary , Israel , Italy , Lebanon , Mexico , Poland , Portugal , Romania , Russia , Saudi Arabia , Spain , UAE , UK", + "market_regions": "Eastern Europe , Europe , Middle East , North America , Western Europe" +} diff --git a/data/smartphone/samsung/2021/sm-m625f-ds-galaxy-m62-2021-global-dual-sim-td-lte.json b/data/smartphone/samsung/2021/sm-m625f-ds-galaxy-m62-2021-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..dfc5b2bf68e --- /dev/null +++ b/data/smartphone/samsung/2021/sm-m625f-ds-galaxy-m62-2021-global-dual-sim-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-m625f-ds-galaxy-m62-2021-global-dual-sim-td-lte", + "name": "SM-M625F/DS Galaxy M62 2021 Global Dual SIM TD-LTE", + "brand": "samsung", + "soc": "exynos-9825", + "release_date": "2021-02-27", + "ram_gb": 8.0, + "battery_mah": 7000, + "weight_g": 218.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Jordan , Lebanon , Malaysia , Saudi Arabia , Thailand , Turkey , UAE", + "market_regions": "Asia , Middle East , Southeast Asia" +} diff --git a/data/smartphone/samsung/2021/sm-w2022-w22-5g-dual-sim-td-lte-cn-512gb.json b/data/smartphone/samsung/2021/sm-w2022-w22-5g-dual-sim-td-lte-cn-512gb.json new file mode 100644 index 00000000000..cf46a1fa170 --- /dev/null +++ b/data/smartphone/samsung/2021/sm-w2022-w22-5g-dual-sim-td-lte-cn-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-w2022-w22-5g-dual-sim-td-lte-cn-512gb", + "name": "SM-W2022 W22 5G Dual SIM TD-LTE CN 512GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2021-10-01", + "ram_gb": 16.0, + "battery_mah": 4335, + "weight_g": 288.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2022/sm-a035g-dsn-galaxy-a03-2021-premium-edition-global-dual-sim-td-lte-64gb.json b/data/smartphone/samsung/2022/sm-a035g-dsn-galaxy-a03-2021-premium-edition-global-dual-sim-td-lte-64gb.json new file mode 100644 index 00000000000..6138b140f7e --- /dev/null +++ b/data/smartphone/samsung/2022/sm-a035g-dsn-galaxy-a03-2021-premium-edition-global-dual-sim-td-lte-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "sm-a035g-dsn-galaxy-a03-2021-premium-edition-global-dual-sim-td-lte-64gb", + "name": "SM-A035G/DSN Galaxy A03 2021 Premium Edition Global Dual SIM TD-LTE 64GB", + "brand": "samsung", + "soc": "unisoc-t606", + "release_date": "2022-01-09", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , Croatia , Cyprus , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Ireland , Israel , Italy , Latvia , Lithuania , Netherlands , Norway , NZ , Poland , Portugal , Romania , Russia , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Sweden , Switzerland , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2022/sm-a037u-galaxy-a03s-2021-standard-edition-td-lte-us-32gb-sm-a037t.json b/data/smartphone/samsung/2022/sm-a037u-galaxy-a03s-2021-standard-edition-td-lte-us-32gb-sm-a037t.json new file mode 100644 index 00000000000..5440a449be5 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-a037u-galaxy-a03s-2021-standard-edition-td-lte-us-32gb-sm-a037t.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a037u-galaxy-a03s-2021-standard-edition-td-lte-us-32gb-sm-a037t", + "name": "SM-A037U Galaxy A03s 2021 Standard Edition TD-LTE US 32GB / SM-A037T", + "brand": "samsung", + "soc": "helio-p35", + "release_date": "2022-01-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 8, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-a136u-galaxy-a13-5g-2021-td-lte-us-64gb-sm-s136dl.json b/data/smartphone/samsung/2022/sm-a136u-galaxy-a13-5g-2021-td-lte-us-64gb-sm-s136dl.json new file mode 100644 index 00000000000..fe1e436e9d2 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-a136u-galaxy-a13-5g-2021-td-lte-us-64gb-sm-s136dl.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a136u-galaxy-a13-5g-2021-td-lte-us-64gb-sm-s136dl", + "name": "SM-A136U Galaxy A13 5G 2021 TD-LTE US 64GB / SM-S136DL", + "brand": "samsung", + "soc": "dimensity-700", + "release_date": "2022-02-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-a136u1-galaxy-a13-5g-2021-td-lte-us-64gb.json b/data/smartphone/samsung/2022/sm-a136u1-galaxy-a13-5g-2021-td-lte-us-64gb.json new file mode 100644 index 00000000000..7c356d5e625 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-a136u1-galaxy-a13-5g-2021-td-lte-us-64gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-a136u1-galaxy-a13-5g-2021-td-lte-us-64gb", + "name": "SM-A136U1 Galaxy A13 5G 2021 TD-LTE US 64GB", + "brand": "samsung", + "soc": "dimensity-700", + "release_date": "2022-01-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 250, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-a136w-galaxy-a13-5g-2021-td-lte-ca-64gb.json b/data/smartphone/samsung/2022/sm-a136w-galaxy-a13-5g-2021-td-lte-ca-64gb.json new file mode 100644 index 00000000000..acbdfab9245 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-a136w-galaxy-a13-5g-2021-td-lte-ca-64gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-a136w-galaxy-a13-5g-2021-td-lte-ca-64gb", + "name": "SM-A136W Galaxy A13 5G 2021 TD-LTE CA 64GB", + "brand": "samsung", + "soc": "dimensity-700", + "release_date": "2022-01-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 330, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-a3360-galaxy-a33-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-128gb.json b/data/smartphone/samsung/2022/sm-a3360-galaxy-a33-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-128gb.json new file mode 100644 index 00000000000..11d258d4b42 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-a3360-galaxy-a33-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a3360-galaxy-a33-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-128gb", + "name": "SM-A3360 Galaxy A33 5G 2022 Premium Edition Dual SIM TD-LTE CN HK 128GB", + "brand": "samsung", + "soc": "exynos-1280", + "release_date": "2022-04-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2022/sm-a336b-dsn-galaxy-a33-5g-2022-standard-edition-dual-sim-td-lte-eu-latam-128gb.json b/data/smartphone/samsung/2022/sm-a336b-dsn-galaxy-a33-5g-2022-standard-edition-dual-sim-td-lte-eu-latam-128gb.json new file mode 100644 index 00000000000..970b9be10e1 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-a336b-dsn-galaxy-a33-5g-2022-standard-edition-dual-sim-td-lte-eu-latam-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a336b-dsn-galaxy-a33-5g-2022-standard-edition-dual-sim-td-lte-eu-latam-128gb", + "name": "SM-A336B/DSN Galaxy A33 5G 2022 Standard Edition Dual SIM TD-LTE EU LATAM 128GB", + "brand": "samsung", + "soc": "exynos-1280", + "release_date": "2022-04-22", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Austria , Belarus , Belgium , Brazil , Bulgaria , Chile , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Guatemala , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , Peru , Poland , Portugal , Puerto Rico , Russia , Romania , Serbia , Slovakia , Slovenia , South Africa , Spain , Sweden , Switzerland , UK , Ukraine", + "market_regions": "Central America , Eastern Europe , Europe , South America , Western Europe" +} diff --git a/data/smartphone/samsung/2022/sm-a336e-ds-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2022/sm-a336e-ds-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..8fcd3fb73cd --- /dev/null +++ b/data/smartphone/samsung/2022/sm-a336e-ds-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a336e-ds-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A336E/DS Galaxy A33 5G 2022 Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-1280", + "release_date": "2022-04-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , India , Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2022/sm-a336e-ds-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-256gb.json b/data/smartphone/samsung/2022/sm-a336e-ds-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-256gb.json new file mode 100644 index 00000000000..a51846e966b --- /dev/null +++ b/data/smartphone/samsung/2022/sm-a336e-ds-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a336e-ds-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-256gb", + "name": "SM-A336E/DS Galaxy A33 5G 2022 Premium Edition Global Dual SIM TD-LTE 256GB", + "brand": "samsung", + "soc": "exynos-1280", + "release_date": "2022-04-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2022/sm-a336e-ds-galaxy-a33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2022/sm-a336e-ds-galaxy-a33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..f349abf6b64 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-a336e-ds-galaxy-a33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a336e-ds-galaxy-a33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A336E/DS Galaxy A33 5G 2022 Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-1280", + "release_date": "2022-04-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , India , Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2022/sm-a336e-dsn-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2022/sm-a336e-dsn-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..78d2ea56976 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-a336e-dsn-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-a336e-dsn-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A336E/DSN Galaxy A33 5G 2022 Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-1280", + "release_date": "2022-04-14", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1499, + "market_countries": "Australia , Egypt , Israel , Jordan , Kuwait , Lebanon , Malaysia , NZ , Philippines , Saudi Arabia , Singapore , South Africa , Taiwan , Thailand , UAE", + "market_regions": "Africa , Asia , Australia , Middle East , Oceania , Southeast Asia" +} diff --git a/data/smartphone/samsung/2022/sm-a336e-dsn-galaxy-a33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2022/sm-a336e-dsn-galaxy-a33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..eab847fdded --- /dev/null +++ b/data/smartphone/samsung/2022/sm-a336e-dsn-galaxy-a33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a336e-dsn-galaxy-a33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A336E/DSN Galaxy A33 5G 2022 Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-1280", + "release_date": "2022-04-22", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Egypt , Israel , Jordan , Kuwait , Lebanon , Malaysia , NZ , Philippines , Saudi Arabia , Singapore , South Africa , Taiwan , Thailand , UAE", + "market_regions": "Africa , Asia , Australia , Middle East , Oceania , Southeast Asia" +} diff --git a/data/smartphone/samsung/2022/sm-a336e-galaxy-a33-5g-2022-standard-edition-global-td-lte-128gb.json b/data/smartphone/samsung/2022/sm-a336e-galaxy-a33-5g-2022-standard-edition-global-td-lte-128gb.json new file mode 100644 index 00000000000..7225c18381e --- /dev/null +++ b/data/smartphone/samsung/2022/sm-a336e-galaxy-a33-5g-2022-standard-edition-global-td-lte-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-a336e-galaxy-a33-5g-2022-standard-edition-global-td-lte-128gb", + "name": "SM-A336E Galaxy A33 5G 2022 Standard Edition Global TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-1280", + "release_date": "2022-04-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 599, + "market_countries": "Australia , NZ", + "market_regions": "Australia" +} diff --git a/data/smartphone/samsung/2022/sm-a5360-galaxy-a53-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-tw-128gb.json b/data/smartphone/samsung/2022/sm-a5360-galaxy-a53-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-tw-128gb.json new file mode 100644 index 00000000000..dbb6f6264f9 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-a5360-galaxy-a53-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-tw-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a5360-galaxy-a53-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-tw-128gb", + "name": "SM-A5360 Galaxy A53 5G 2022 Premium Edition Dual SIM TD-LTE CN HK TW 128GB", + "brand": "samsung", + "soc": "exynos-1280", + "release_date": "2022-03-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2022/sm-a5360-galaxy-a53-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-tw-256gb.json b/data/smartphone/samsung/2022/sm-a5360-galaxy-a53-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-tw-256gb.json new file mode 100644 index 00000000000..ed61adb9165 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-a5360-galaxy-a53-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-tw-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a5360-galaxy-a53-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-tw-256gb", + "name": "SM-A5360 Galaxy A53 5G 2022 Premium Edition Dual SIM TD-LTE CN HK TW 256GB", + "brand": "samsung", + "soc": "exynos-1280", + "release_date": "2022-03-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2022/sm-a536b-ds-galaxy-a53-5g-2022-standard-edition-dual-sim-td-lte-eu-128gb.json b/data/smartphone/samsung/2022/sm-a536b-ds-galaxy-a53-5g-2022-standard-edition-dual-sim-td-lte-eu-128gb.json new file mode 100644 index 00000000000..3be7b799051 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-a536b-ds-galaxy-a53-5g-2022-standard-edition-dual-sim-td-lte-eu-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-a536b-ds-galaxy-a53-5g-2022-standard-edition-dual-sim-td-lte-eu-128gb", + "name": "SM-A536B/DS Galaxy A53 5G 2022 Standard Edition Dual SIM TD-LTE EU 128GB", + "brand": "samsung", + "soc": "exynos-1280", + "release_date": "2022-04-02", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 399, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Serbia , Slovakia , Slovenia , Spain , Sweden , Switzerland , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2022/sm-a536d-galaxy-a53-5g-2022-standard-edition-td-lte-jp-128gb-sc-53c.json b/data/smartphone/samsung/2022/sm-a536d-galaxy-a53-5g-2022-standard-edition-td-lte-jp-128gb-sc-53c.json new file mode 100644 index 00000000000..d89f6841d9a --- /dev/null +++ b/data/smartphone/samsung/2022/sm-a536d-galaxy-a53-5g-2022-standard-edition-td-lte-jp-128gb-sc-53c.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a536d-galaxy-a53-5g-2022-standard-edition-td-lte-jp-128gb-sc-53c", + "name": "SM-A536D Galaxy A53 5G 2022 Standard Edition TD-LTE JP 128GB SC-53C", + "brand": "samsung", + "soc": "exynos-1280", + "release_date": "2022-05-27", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2022/sm-a536e-ds-galaxy-a53-5g-2022-premium-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2022/sm-a536e-ds-galaxy-a53-5g-2022-premium-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..a699f58b4d1 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-a536e-ds-galaxy-a53-5g-2022-premium-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a536e-ds-galaxy-a53-5g-2022-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A536E/DS Galaxy A53 5G 2022 Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-1280", + "release_date": "2022-04-02", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Armenia , Australia , Bangladesh , Brazil , Cambodia , Canada , Chile , Colombia , Costa Rica , Ecuador , Egypt , Guatemala , India , Indonesia , Iran , Israel , Jordan , Kazakhstan , Kenya , Kuwait , Kyrgyzstan , Lebanon , Malaysia , Mexico , Mongolia , Morocco , Myanmar , Nepal , Nicaragua , Nigeria , NZ , Panama , Pakistan , Paraguay , Peru , Philippines , Russia , Saudi Arabia , Singapore , South Africa , Tunisie , Thailand , Turkey , UAE , Uganda , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia" +} diff --git a/data/smartphone/samsung/2022/sm-a536e-ds-galaxy-a53-5g-2022-premium-edition-global-dual-sim-td-lte-256gb.json b/data/smartphone/samsung/2022/sm-a536e-ds-galaxy-a53-5g-2022-premium-edition-global-dual-sim-td-lte-256gb.json new file mode 100644 index 00000000000..320f083ee56 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-a536e-ds-galaxy-a53-5g-2022-premium-edition-global-dual-sim-td-lte-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a536e-ds-galaxy-a53-5g-2022-premium-edition-global-dual-sim-td-lte-256gb", + "name": "SM-A536E/DS Galaxy A53 5G 2022 Premium Edition Global Dual SIM TD-LTE 256GB", + "brand": "samsung", + "soc": "exynos-1280", + "release_date": "2022-04-02", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Australia , Bangladesh , Brazil , Canada , Chile , Colombia , Costa Rica , Ecuador , Egypt , Guatemala , India , Indonesia , Iran , Israel , Jordan , Kuwait , Lebanon , Malaysia , Nepal , NZ , Panama , Pakistan , Peru , Philippines , Saudi Arabia , Singapore , Thailand , Tunisie , Turkey , UAE , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Middle East , North America , Oceania , South America , Southeast Asia" +} diff --git a/data/smartphone/samsung/2022/sm-a536e-ds-galaxy-a53-5g-2022-standard-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2022/sm-a536e-ds-galaxy-a53-5g-2022-standard-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..f534d04bdfb --- /dev/null +++ b/data/smartphone/samsung/2022/sm-a536e-ds-galaxy-a53-5g-2022-standard-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-a536e-ds-galaxy-a53-5g-2022-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A536E/DS Galaxy A53 5G 2022 Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-1280", + "release_date": "2022-04-02", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 598, + "market_countries": "Argentina , Armenia , Australia , Bangladesh , Brazil , Cambodia , Canada , Chile , Colombia , Costa Rica , Ecuador , Egypt , Guatemala , India , Indonesia , Iran , Israel , Jordan , Kazakhstan , Kenya , Kuwait , Kyrgyzstan , Lebanon , Malaysia , Mexico , Morocco , Myanmar , Nepal , Nicaragua , Nigeria , NZ , Panama , Pakistan , Paraguay , Peru , Philippines , Russia , Saudi Arabia , Singapore , South Africa , Tunisie , Thailand , Turkey , UAE , Uganda , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia" +} diff --git a/data/smartphone/samsung/2022/sm-a536e-galaxy-a53-5g-2022-standard-edition-global-td-lte-128gb.json b/data/smartphone/samsung/2022/sm-a536e-galaxy-a53-5g-2022-standard-edition-global-td-lte-128gb.json new file mode 100644 index 00000000000..18769debf8a --- /dev/null +++ b/data/smartphone/samsung/2022/sm-a536e-galaxy-a53-5g-2022-standard-edition-global-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a536e-galaxy-a53-5g-2022-standard-edition-global-td-lte-128gb", + "name": "SM-A536E Galaxy A53 5G 2022 Standard Edition Global TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-1280", + "release_date": "2022-04-02", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Chile , Mexico , Peru", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/samsung/2022/sm-a536j-galaxy-a53-5g-2022-standard-edition-td-lte-jp-128gb-scg15.json b/data/smartphone/samsung/2022/sm-a536j-galaxy-a53-5g-2022-standard-edition-td-lte-jp-128gb-scg15.json new file mode 100644 index 00000000000..10d70df4401 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-a536j-galaxy-a53-5g-2022-standard-edition-td-lte-jp-128gb-scg15.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a536j-galaxy-a53-5g-2022-standard-edition-td-lte-jp-128gb-scg15", + "name": "SM-A536J Galaxy A53 5G 2022 Standard Edition TD-LTE JP 128GB SCG15", + "brand": "samsung", + "soc": "exynos-1280", + "release_date": "2022-05-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2022/sm-a536n-galaxy-a53-5g-2022-standard-edition-td-lte-kr-128gb.json b/data/smartphone/samsung/2022/sm-a536n-galaxy-a53-5g-2022-standard-edition-td-lte-kr-128gb.json new file mode 100644 index 00000000000..93725cce10b --- /dev/null +++ b/data/smartphone/samsung/2022/sm-a536n-galaxy-a53-5g-2022-standard-edition-td-lte-kr-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-a536n-galaxy-a53-5g-2022-standard-edition-td-lte-kr-128gb", + "name": "SM-A536N Galaxy A53 5G 2022 Standard Edition TD-LTE KR 128GB", + "brand": "samsung", + "soc": "exynos-1280", + "release_date": "2022-03-29", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2022/sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536a.json b/data/smartphone/samsung/2022/sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536a.json new file mode 100644 index 00000000000..f4b62196387 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536a.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536a", + "name": "SM-A536U Galaxy A53 5G 2022 Standard Edition TD-LTE US 128GB / SM-A536A", + "brand": "samsung", + "soc": "exynos-1280", + "release_date": "2022-03-29", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 450, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536r4.json b/data/smartphone/samsung/2022/sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536r4.json new file mode 100644 index 00000000000..1354c916d98 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536r4.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536r4", + "name": "SM-A536U Galaxy A53 5G 2022 Standard Edition TD-LTE US 128GB / SM-A536R4", + "brand": "samsung", + "soc": "exynos-1280", + "release_date": "2022-03-29", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 450, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536t.json b/data/smartphone/samsung/2022/sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536t.json new file mode 100644 index 00000000000..96ea0354302 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536t.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536t", + "name": "SM-A536U Galaxy A53 5G 2022 Standard Edition TD-LTE US 128GB / SM-A536T", + "brand": "samsung", + "soc": "exynos-1280", + "release_date": "2022-03-29", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 450, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-a536u-galaxy-a53-5g-uw-2022-standard-edition-td-lte-us-128gb-sm-a536v.json b/data/smartphone/samsung/2022/sm-a536u-galaxy-a53-5g-uw-2022-standard-edition-td-lte-us-128gb-sm-a536v.json new file mode 100644 index 00000000000..023cb7a56e4 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-a536u-galaxy-a53-5g-uw-2022-standard-edition-td-lte-us-128gb-sm-a536v.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-a536u-galaxy-a53-5g-uw-2022-standard-edition-td-lte-us-128gb-sm-a536v", + "name": "SM-A536U Galaxy A53 5G UW 2022 Standard Edition TD-LTE US 128GB / SM-A536V", + "brand": "samsung", + "soc": "exynos-1280", + "release_date": "2022-03-29", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 500, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-a536u1-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb.json b/data/smartphone/samsung/2022/sm-a536u1-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb.json new file mode 100644 index 00000000000..a4045e83b6f --- /dev/null +++ b/data/smartphone/samsung/2022/sm-a536u1-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-a536u1-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb", + "name": "SM-A536U1 Galaxy A53 5G 2022 Standard Edition TD-LTE US 128GB", + "brand": "samsung", + "soc": "exynos-1280", + "release_date": "2022-03-29", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 450, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-f7110-galaxy-z-flip-3-5g-olympic-games-edition-td-lte-cn-256gb.json b/data/smartphone/samsung/2022/sm-f7110-galaxy-z-flip-3-5g-olympic-games-edition-td-lte-cn-256gb.json new file mode 100644 index 00000000000..c4d7a33dad5 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-f7110-galaxy-z-flip-3-5g-olympic-games-edition-td-lte-cn-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-f7110-galaxy-z-flip-3-5g-olympic-games-edition-td-lte-cn-256gb", + "name": "SM-F7110 Galaxy Z Flip 3 5G Olympic Games Edition TD-LTE CN 256GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2022-01-14", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2022/sm-f7110-galaxy-z-flip-3-5g-thom-browne-limited-edition-td-lte-cn-hk-tw-256gb.json b/data/smartphone/samsung/2022/sm-f7110-galaxy-z-flip-3-5g-thom-browne-limited-edition-td-lte-cn-hk-tw-256gb.json new file mode 100644 index 00000000000..a0c85955a31 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-f7110-galaxy-z-flip-3-5g-thom-browne-limited-edition-td-lte-cn-hk-tw-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-f7110-galaxy-z-flip-3-5g-thom-browne-limited-edition-td-lte-cn-hk-tw-256gb", + "name": "SM-F7110 Galaxy Z Flip 3 5G Thom Browne Limited Edition TD-LTE CN HK TW 256GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2022-09-01", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 183.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2022/sm-g525n-galaxy-xcover-5-2021-td-lte-kr.json b/data/smartphone/samsung/2022/sm-g525n-galaxy-xcover-5-2021-td-lte-kr.json new file mode 100644 index 00000000000..f374e2dd7bf --- /dev/null +++ b/data/smartphone/samsung/2022/sm-g525n-galaxy-xcover-5-2021-td-lte-kr.json @@ -0,0 +1,42 @@ +{ + "slug": "sm-g525n-galaxy-xcover-5-2021-td-lte-kr", + "name": "SM-G525N Galaxy XCover 5 2021 TD-LTE KR", + "brand": "samsung", + "soc": "exynos-850", + "release_date": "2022-01-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.3, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 304 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2022/sm-g9900-galaxy-s21-fe-5g-dual-sim-td-lte-cn-tw-hk-128gb.json b/data/smartphone/samsung/2022/sm-g9900-galaxy-s21-fe-5g-dual-sim-td-lte-cn-tw-hk-128gb.json new file mode 100644 index 00000000000..459e13f1841 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-g9900-galaxy-s21-fe-5g-dual-sim-td-lte-cn-tw-hk-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g9900-galaxy-s21-fe-5g-dual-sim-td-lte-cn-tw-hk-128gb", + "name": "SM-G9900 Galaxy S21 FE 5G Dual SIM TD-LTE CN TW HK 128GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2022-01-04", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 4599, + "market_countries": "China , HK , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2022/sm-g9900-galaxy-s21-fe-5g-dual-sim-td-lte-cn-tw-hk-256gb.json b/data/smartphone/samsung/2022/sm-g9900-galaxy-s21-fe-5g-dual-sim-td-lte-cn-tw-hk-256gb.json new file mode 100644 index 00000000000..dad9a93be09 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-g9900-galaxy-s21-fe-5g-dual-sim-td-lte-cn-tw-hk-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g9900-galaxy-s21-fe-5g-dual-sim-td-lte-cn-tw-hk-256gb", + "name": "SM-G9900 Galaxy S21 FE 5G Dual SIM TD-LTE CN TW HK 256GB", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2022-01-04", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 4999, + "market_countries": "China , HK , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2022/sm-g990b-ds-galaxy-s21-fe-5g-global-dual-sim-td-lte-128gb-sm-g990b2-ds.json b/data/smartphone/samsung/2022/sm-g990b-ds-galaxy-s21-fe-5g-global-dual-sim-td-lte-128gb-sm-g990b2-ds.json new file mode 100644 index 00000000000..f170689b706 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-g990b-ds-galaxy-s21-fe-5g-global-dual-sim-td-lte-128gb-sm-g990b2-ds.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g990b-ds-galaxy-s21-fe-5g-global-dual-sim-td-lte-128gb-sm-g990b2-ds", + "name": "SM-G990B/DS Galaxy S21 FE 5G Global Dual SIM TD-LTE 128GB / SM-G990B2/DS", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2022-01-11", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 699, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Russia , Romania , Slovakia , Slovenia , Spain , Switzerland , Sweden , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Oceania , Western Europe" +} diff --git a/data/smartphone/samsung/2022/sm-g990b-ds-galaxy-s21-fe-5g-global-dual-sim-td-lte-256gb-sm-g990b2-ds.json b/data/smartphone/samsung/2022/sm-g990b-ds-galaxy-s21-fe-5g-global-dual-sim-td-lte-256gb-sm-g990b2-ds.json new file mode 100644 index 00000000000..b0480ce6a36 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-g990b-ds-galaxy-s21-fe-5g-global-dual-sim-td-lte-256gb-sm-g990b2-ds.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g990b-ds-galaxy-s21-fe-5g-global-dual-sim-td-lte-256gb-sm-g990b2-ds", + "name": "SM-G990B/DS Galaxy S21 FE 5G Global Dual SIM TD-LTE 256GB / SM-G990B2/DS", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2022-01-11", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 749, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Russia , Romania , Slovakia , Slovenia , Spain , Switzerland , Sweden , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Oceania , Western Europe" +} diff --git a/data/smartphone/samsung/2022/sm-g990e-ds-galaxy-s21-fe-5g-dual-sim-td-lte-apac-mea-128gb.json b/data/smartphone/samsung/2022/sm-g990e-ds-galaxy-s21-fe-5g-dual-sim-td-lte-apac-mea-128gb.json new file mode 100644 index 00000000000..c72206b9962 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-g990e-ds-galaxy-s21-fe-5g-dual-sim-td-lte-apac-mea-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g990e-ds-galaxy-s21-fe-5g-dual-sim-td-lte-apac-mea-128gb", + "name": "SM-G990E/DS Galaxy S21 FE 5G Dual SIM TD-LTE APAC MEA 128GB", + "brand": "samsung", + "soc": "exynos-2100", + "release_date": "2022-01-04", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Bangladesh , Chile , Colombia , Costa Rica , Egypt , Guatemala , India , Indonesia , Israel , Jordan , Kenya , Kuwait , Lebanon , Malaysia , Mexico , Nepal , NZ , Panama , Philippines , Puerto Rico , Saudi Arabia , Singapore , South Africa , Thailand , Turkey , UAE , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Middle East , North America , Oceania , South America , Southeast Asia" +} diff --git a/data/smartphone/samsung/2022/sm-g990e-ds-galaxy-s21-fe-5g-dual-sim-td-lte-apac-mea-256gb.json b/data/smartphone/samsung/2022/sm-g990e-ds-galaxy-s21-fe-5g-dual-sim-td-lte-apac-mea-256gb.json new file mode 100644 index 00000000000..0695b1d20ff --- /dev/null +++ b/data/smartphone/samsung/2022/sm-g990e-ds-galaxy-s21-fe-5g-dual-sim-td-lte-apac-mea-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g990e-ds-galaxy-s21-fe-5g-dual-sim-td-lte-apac-mea-256gb", + "name": "SM-G990E/DS Galaxy S21 FE 5G Dual SIM TD-LTE APAC MEA 256GB", + "brand": "samsung", + "soc": "exynos-2100", + "release_date": "2022-01-11", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Bangladesh , Chile , Colombia , Costa Rica , Egypt , Guatemala , India , Indonesia , Israel , Jordan , Kenya , Kuwait , Lebanon , Malaysia , Mexico , Nepal , NZ , Panama , Philippines , Puerto Rico , Saudi Arabia , Singapore , South Africa , Thailand , Turkey , UAE , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Middle East , North America , Oceania , South America , Southeast Asia" +} diff --git a/data/smartphone/samsung/2022/sm-g990e-galaxy-s21-fe-5g-td-lte-apac-mea-128gb.json b/data/smartphone/samsung/2022/sm-g990e-galaxy-s21-fe-5g-td-lte-apac-mea-128gb.json new file mode 100644 index 00000000000..2c85ee273e5 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-g990e-galaxy-s21-fe-5g-td-lte-apac-mea-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g990e-galaxy-s21-fe-5g-td-lte-apac-mea-128gb", + "name": "SM-G990E Galaxy S21 FE 5G TD-LTE APAC MEA 128GB", + "brand": "samsung", + "soc": "exynos-2100", + "release_date": "2022-01-04", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Australia , Chile , Ecuador , Nicaragua , Peru , Turkey", + "market_regions": "Africa , Asia , Australia , Middle East , Oceania , South America , Southeast Asia" +} diff --git a/data/smartphone/samsung/2022/sm-g990n-galaxy-s21-fe-5g-uw-td-lte-kr-128gb.json b/data/smartphone/samsung/2022/sm-g990n-galaxy-s21-fe-5g-uw-td-lte-kr-128gb.json new file mode 100644 index 00000000000..5b0d92bf482 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-g990n-galaxy-s21-fe-5g-uw-td-lte-kr-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-g990n-galaxy-s21-fe-5g-uw-td-lte-kr-128gb", + "name": "SM-G990N Galaxy S21 FE 5G UW TD-LTE KR 128GB", + "brand": "samsung", + "soc": "exynos-2100", + "release_date": "2022-02-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2022/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990a-sm-g990u2.json b/data/smartphone/samsung/2022/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990a-sm-g990u2.json new file mode 100644 index 00000000000..b6212710f34 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990a-sm-g990u2.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990a-sm-g990u2", + "name": "SM-G990U Galaxy S21 FE 5G UW TD-LTE US 128GB / SM-G990A / SM-G990U2", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2022-01-04", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 699, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990r4-sm-g990u2.json b/data/smartphone/samsung/2022/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990r4-sm-g990u2.json new file mode 100644 index 00000000000..7594df4ff84 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990r4-sm-g990u2.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990r4-sm-g990u2", + "name": "SM-G990U Galaxy S21 FE 5G UW TD-LTE US 128GB / SM-G990R4 / SM-G990U2", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2022-01-04", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 700, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990t-sm-g990u2.json b/data/smartphone/samsung/2022/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990t-sm-g990u2.json new file mode 100644 index 00000000000..fcf68bca530 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990t-sm-g990u2.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990t-sm-g990u2", + "name": "SM-G990U Galaxy S21 FE 5G UW TD-LTE US 128GB / SM-G990T / SM-G990U2", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2022-01-04", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 700, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990v-sm-g990u2.json b/data/smartphone/samsung/2022/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990v-sm-g990u2.json new file mode 100644 index 00000000000..fb466b8adf6 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990v-sm-g990u2.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990v-sm-g990u2", + "name": "SM-G990U Galaxy S21 FE 5G UW TD-LTE US 128GB / SM-G990V / SM-G990U2", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2022-01-04", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 700, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990a-sm-g990u2.json b/data/smartphone/samsung/2022/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990a-sm-g990u2.json new file mode 100644 index 00000000000..bfaa5e23321 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990a-sm-g990u2.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990a-sm-g990u2", + "name": "SM-G990U Galaxy S21 FE 5G UW TD-LTE US 256GB / SM-G990A / SM-G990U2", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2022-01-04", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 770, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990r4-sm-g990u2.json b/data/smartphone/samsung/2022/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990r4-sm-g990u2.json new file mode 100644 index 00000000000..ce57cc4f9f3 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990r4-sm-g990u2.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990r4-sm-g990u2", + "name": "SM-G990U Galaxy S21 FE 5G UW TD-LTE US 256GB / SM-G990R4 / SM-G990U2", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2022-01-04", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 770, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990t-sm-g990u2.json b/data/smartphone/samsung/2022/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990t-sm-g990u2.json new file mode 100644 index 00000000000..44c29b76cf6 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990t-sm-g990u2.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990t-sm-g990u2", + "name": "SM-G990U Galaxy S21 FE 5G UW TD-LTE US 256GB / SM-G990T / SM-G990U2", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2022-01-04", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 770, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990v-sm-g990u2.json b/data/smartphone/samsung/2022/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990v-sm-g990u2.json new file mode 100644 index 00000000000..092114ff548 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990v-sm-g990u2.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990v-sm-g990u2", + "name": "SM-G990U Galaxy S21 FE 5G UW TD-LTE US 256GB / SM-G990V / SM-G990U2", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2022-01-04", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 770, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-g990u1-galaxy-s21-fe-5g-uw-dual-sim-td-lte-us-128gb-sm-g990u3-ds.json b/data/smartphone/samsung/2022/sm-g990u1-galaxy-s21-fe-5g-uw-dual-sim-td-lte-us-128gb-sm-g990u3-ds.json new file mode 100644 index 00000000000..9bbbc15e028 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-g990u1-galaxy-s21-fe-5g-uw-dual-sim-td-lte-us-128gb-sm-g990u3-ds.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g990u1-galaxy-s21-fe-5g-uw-dual-sim-td-lte-us-128gb-sm-g990u3-ds", + "name": "SM-G990U1 Galaxy S21 FE 5G UW Dual SIM TD-LTE US 128GB / SM-G990U3/DS", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2022-01-04", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 700, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-g990u1-galaxy-s21-fe-5g-uw-dual-sim-td-lte-us-256gb-sm-g990u3-ds.json b/data/smartphone/samsung/2022/sm-g990u1-galaxy-s21-fe-5g-uw-dual-sim-td-lte-us-256gb-sm-g990u3-ds.json new file mode 100644 index 00000000000..0363d416f0a --- /dev/null +++ b/data/smartphone/samsung/2022/sm-g990u1-galaxy-s21-fe-5g-uw-dual-sim-td-lte-us-256gb-sm-g990u3-ds.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g990u1-galaxy-s21-fe-5g-uw-dual-sim-td-lte-us-256gb-sm-g990u3-ds", + "name": "SM-G990U1 Galaxy S21 FE 5G UW Dual SIM TD-LTE US 256GB / SM-G990U3/DS", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2022-01-04", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 770, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-g990w-galaxy-s21-fe-5g-td-lte-ca-128gb-sm-g990w2.json b/data/smartphone/samsung/2022/sm-g990w-galaxy-s21-fe-5g-td-lte-ca-128gb-sm-g990w2.json new file mode 100644 index 00000000000..bbf62e1cd25 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-g990w-galaxy-s21-fe-5g-td-lte-ca-128gb-sm-g990w2.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g990w-galaxy-s21-fe-5g-td-lte-ca-128gb-sm-g990w2", + "name": "SM-G990W Galaxy S21 FE 5G TD-LTE CA 128GB / SM-G990W2", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2022-01-04", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 950, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-g990w-galaxy-s21-fe-5g-td-lte-ca-256gb-sm-g990w2.json b/data/smartphone/samsung/2022/sm-g990w-galaxy-s21-fe-5g-td-lte-ca-256gb-sm-g990w2.json new file mode 100644 index 00000000000..f5efba25551 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-g990w-galaxy-s21-fe-5g-td-lte-ca-256gb-sm-g990w2.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-g990w-galaxy-s21-fe-5g-td-lte-ca-256gb-sm-g990w2", + "name": "SM-G990W Galaxy S21 FE 5G TD-LTE CA 256GB / SM-G990W2", + "brand": "samsung", + "soc": "snapdragon-888", + "release_date": "2022-01-04", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1040, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-m336b-ds-galaxy-m33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2022/sm-m336b-ds-galaxy-m33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..7408e3dbe56 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-m336b-ds-galaxy-m33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-m336b-ds-galaxy-m33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M336B/DS Galaxy M33 5G 2022 Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-1280", + "release_date": "2022-04-07", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 299, + "market_countries": "Austria , Bangladesh , Belarus , Belgium , Bolivia , Brazil , Bulgaria , Cambodia , Chile , Colombia , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , Guatemala , HK , Hungary , Indonesia , Ireland , Israel , Italy , Kenya , Kuwait , Latvia , Lebanon , Lithuania , Malaysia , Morocco , Myanmar , Netherlands , Norway , Panama , Pakistan , Paraguay , Peru , Philippines , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , Spain , Sweden , Switzerland , Taiwan , Tunisie , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Central America , Eastern Europe , Europe , Middle East , Oceania , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/samsung/2022/sm-m336b-galaxy-m33-5g-2022-standard-edition-global-td-lte-128gb.json b/data/smartphone/samsung/2022/sm-m336b-galaxy-m33-5g-2022-standard-edition-global-td-lte-128gb.json new file mode 100644 index 00000000000..9274357cfe4 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-m336b-galaxy-m33-5g-2022-standard-edition-global-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-m336b-galaxy-m33-5g-2022-standard-edition-global-td-lte-128gb", + "name": "SM-M336B Galaxy M33 5G 2022 Standard Edition Global TD-LTE 128GB", + "brand": "samsung", + "soc": "exynos-1280", + "release_date": "2022-04-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Chile , Mexico , NZ , Turkey", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , North America , South America" +} diff --git a/data/smartphone/samsung/2022/sm-m336bu-ds-galaxy-m33-5g-2022-premium-edition-dual-sim-td-lte-in-128gb.json b/data/smartphone/samsung/2022/sm-m336bu-ds-galaxy-m33-5g-2022-premium-edition-dual-sim-td-lte-in-128gb.json new file mode 100644 index 00000000000..cb2bc8e899b --- /dev/null +++ b/data/smartphone/samsung/2022/sm-m336bu-ds-galaxy-m33-5g-2022-premium-edition-dual-sim-td-lte-in-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-m336bu-ds-galaxy-m33-5g-2022-premium-edition-dual-sim-td-lte-in-128gb", + "name": "SM-M336BU/DS Galaxy M33 5G 2022 Premium Edition Dual SIM TD-LTE IN 128GB", + "brand": "samsung", + "soc": "exynos-1280", + "release_date": "2022-04-02", + "ram_gb": 8.0, + "battery_mah": 6000, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2022/sm-m336bu-ds-galaxy-m33-5g-2022-standard-edition-dual-sim-td-lte-in-128gb.json b/data/smartphone/samsung/2022/sm-m336bu-ds-galaxy-m33-5g-2022-standard-edition-dual-sim-td-lte-in-128gb.json new file mode 100644 index 00000000000..4a5a4e9d23d --- /dev/null +++ b/data/smartphone/samsung/2022/sm-m336bu-ds-galaxy-m33-5g-2022-standard-edition-dual-sim-td-lte-in-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-m336bu-ds-galaxy-m33-5g-2022-standard-edition-dual-sim-td-lte-in-128gb", + "name": "SM-M336BU/DS Galaxy M33 5G 2022 Standard Edition Dual SIM TD-LTE IN 128GB", + "brand": "samsung", + "soc": "exynos-1280", + "release_date": "2022-04-02", + "ram_gb": 6.0, + "battery_mah": 6000, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2022/sm-s9010-galaxy-s22-5g-dual-sim-td-lte-cn-hk-tw-128gb.json b/data/smartphone/samsung/2022/sm-s9010-galaxy-s22-5g-dual-sim-td-lte-cn-hk-tw-128gb.json new file mode 100644 index 00000000000..3d31c287a9a --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s9010-galaxy-s22-5g-dual-sim-td-lte-cn-hk-tw-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s9010-galaxy-s22-5g-dual-sim-td-lte-cn-hk-tw-128gb", + "name": "SM-S9010 Galaxy S22 5G Dual SIM TD-LTE CN HK TW 128GB", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 3700, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 4999, + "market_countries": "China , HK , Taiwan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2022/sm-s9010-galaxy-s22-5g-dual-sim-td-lte-cn-hk-tw-256gb.json b/data/smartphone/samsung/2022/sm-s9010-galaxy-s22-5g-dual-sim-td-lte-cn-hk-tw-256gb.json new file mode 100644 index 00000000000..2a2d1fd69b4 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s9010-galaxy-s22-5g-dual-sim-td-lte-cn-hk-tw-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-s9010-galaxy-s22-5g-dual-sim-td-lte-cn-hk-tw-256gb", + "name": "SM-S9010 Galaxy S22 5G Dual SIM TD-LTE CN HK TW 256GB", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 3700, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2022/sm-s901b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-128gb.json b/data/smartphone/samsung/2022/sm-s901b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-128gb.json new file mode 100644 index 00000000000..e18a8e7e1e1 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s901b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s901b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-128gb", + "name": "SM-S901B/DS Galaxy S22 5G Dual SIM TD-LTE EU 128GB", + "brand": "samsung", + "soc": "exynos-2200", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 3700, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 849, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Russia , Romania , Serbia , Slovakia , Slovenia , Spain , Switzerland , Sweden , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2022/sm-s901b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-256gb.json b/data/smartphone/samsung/2022/sm-s901b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-256gb.json new file mode 100644 index 00000000000..ec1df97d772 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s901b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s901b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-256gb", + "name": "SM-S901B/DS Galaxy S22 5G Dual SIM TD-LTE EU 256GB", + "brand": "samsung", + "soc": "exynos-2200", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 3700, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 899, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Serbia , Slovakia , Slovenia , Spain , Switzerland , Sweden , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2022/sm-s901d-galaxy-s22-5g-uw-td-lte-jp-256gb-sc-51c.json b/data/smartphone/samsung/2022/sm-s901d-galaxy-s22-5g-uw-td-lte-jp-256gb-sc-51c.json new file mode 100644 index 00000000000..daf480c731c --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s901d-galaxy-s22-5g-uw-td-lte-jp-256gb-sc-51c.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-s901d-galaxy-s22-5g-uw-td-lte-jp-256gb-sc-51c", + "name": "SM-S901D Galaxy S22 5G UW TD-LTE JP 256GB SC-51C", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-04-21", + "ram_gb": 8.0, + "battery_mah": 3700, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2022/sm-s901e-ds-galaxy-s22-5g-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2022/sm-s901e-ds-galaxy-s22-5g-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..543743ebcd7 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s901e-ds-galaxy-s22-5g-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-s901e-ds-galaxy-s22-5g-global-dual-sim-td-lte-128gb", + "name": "SM-S901E/DS Galaxy S22 5G Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 3700, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Algeria , Argentina , Armenia , Brazil , Chile , Colombia , Egypt , HK , India , Indonesia , Israel , Kazakhstan , Kenya , Kyrgyzstan , Lebanon , Malaysia , Pakistan , Paraguay , Peru , Philippines , Saudi Arabia , Singapore , South Africa , Thailand , Tunisie , Turkey , UAE , Vietnam", + "market_regions": "Africa , Asia , Middle East , Oceania , South America , Southeast Asia" +} diff --git a/data/smartphone/samsung/2022/sm-s901e-ds-galaxy-s22-5g-global-dual-sim-td-lte-256gb.json b/data/smartphone/samsung/2022/sm-s901e-ds-galaxy-s22-5g-global-dual-sim-td-lte-256gb.json new file mode 100644 index 00000000000..d28b44f9287 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s901e-ds-galaxy-s22-5g-global-dual-sim-td-lte-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-s901e-ds-galaxy-s22-5g-global-dual-sim-td-lte-256gb", + "name": "SM-S901E/DS Galaxy S22 5G Global Dual SIM TD-LTE 256GB", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 3700, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Algeria , Argentina , Armenia , Brazil , Chile , Colombia , Ecuador , Egypt , HK , India , Indonesia , Israel , Kazakhstan , Kenya , Kyrgyzstan , Lebanon , Malaysia , Pakistan , Paraguay , Philippines , Saudi Arabia , Singapore , South Africa , Thailand , Tunisie , Turkey , UAE , Vietnam", + "market_regions": "Africa , Asia , Middle East , Oceania , South America , Southeast Asia" +} diff --git a/data/smartphone/samsung/2022/sm-s901j-galaxy-s22-5g-uw-td-lte-jp-128gb-scg13.json b/data/smartphone/samsung/2022/sm-s901j-galaxy-s22-5g-uw-td-lte-jp-128gb-scg13.json new file mode 100644 index 00000000000..9e224007a0e --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s901j-galaxy-s22-5g-uw-td-lte-jp-128gb-scg13.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-s901j-galaxy-s22-5g-uw-td-lte-jp-128gb-scg13", + "name": "SM-S901J Galaxy S22 5G UW TD-LTE JP 128GB SCG13", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-04-21", + "ram_gb": 8.0, + "battery_mah": 3700, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2022/sm-s901n-galaxy-s22-5g-td-lte-kr-256gb.json b/data/smartphone/samsung/2022/sm-s901n-galaxy-s22-5g-td-lte-kr-256gb.json new file mode 100644 index 00000000000..1a5de6a5540 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s901n-galaxy-s22-5g-td-lte-kr-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-s901n-galaxy-s22-5g-td-lte-kr-256gb", + "name": "SM-S901N Galaxy S22 5G TD-LTE KR 256GB", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-14", + "ram_gb": 8.0, + "battery_mah": 3700, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2022/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901a.json b/data/smartphone/samsung/2022/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901a.json new file mode 100644 index 00000000000..eae05c7a6a6 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901a.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901a", + "name": "SM-S901U Galaxy S22 5G UW Dual SIM TD-LTE US 128GB / SM-S901A", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 3700, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 800, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901r4.json b/data/smartphone/samsung/2022/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901r4.json new file mode 100644 index 00000000000..53f1799c314 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901r4.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901r4", + "name": "SM-S901U Galaxy S22 5G UW Dual SIM TD-LTE US 128GB / SM-S901R4", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 3700, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 800, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901t.json b/data/smartphone/samsung/2022/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901t.json new file mode 100644 index 00000000000..55c6970de75 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901t.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901t", + "name": "SM-S901U Galaxy S22 5G UW Dual SIM TD-LTE US 128GB / SM-S901T", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 3700, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 800, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901v.json b/data/smartphone/samsung/2022/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901v.json new file mode 100644 index 00000000000..c102ab6a4ab --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901v.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901v", + "name": "SM-S901U Galaxy S22 5G UW Dual SIM TD-LTE US 128GB / SM-S901V", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 3700, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 800, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901a.json b/data/smartphone/samsung/2022/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901a.json new file mode 100644 index 00000000000..b8c0cd6d5eb --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901a.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901a", + "name": "SM-S901U Galaxy S22 5G UW Dual SIM TD-LTE US 256GB / SM-S901A", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 3700, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 850, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901r4.json b/data/smartphone/samsung/2022/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901r4.json new file mode 100644 index 00000000000..3169dd39862 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901r4.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901r4", + "name": "SM-S901U Galaxy S22 5G UW Dual SIM TD-LTE US 256GB / SM-S901R4", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 3700, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 850, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901t.json b/data/smartphone/samsung/2022/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901t.json new file mode 100644 index 00000000000..6260b5ee478 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901t.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901t", + "name": "SM-S901U Galaxy S22 5G UW Dual SIM TD-LTE US 256GB / SM-S901T", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 3700, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 850, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901v.json b/data/smartphone/samsung/2022/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901v.json new file mode 100644 index 00000000000..3c46e83325f --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901v.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901v", + "name": "SM-S901U Galaxy S22 5G UW Dual SIM TD-LTE US 256GB / SM-S901V", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 3700, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 850, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s901u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb.json b/data/smartphone/samsung/2022/sm-s901u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb.json new file mode 100644 index 00000000000..72919550c87 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s901u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s901u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb", + "name": "SM-S901U1 Galaxy S22 5G UW Dual SIM TD-LTE US 128GB", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 3700, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 800, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s901u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb.json b/data/smartphone/samsung/2022/sm-s901u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb.json new file mode 100644 index 00000000000..50ac2a55680 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s901u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s901u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb", + "name": "SM-S901U1 Galaxy S22 5G UW Dual SIM TD-LTE US 256GB", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 3700, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 850, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s901w-galaxy-s22-5g-dual-sim-td-lte-ca-128gb.json b/data/smartphone/samsung/2022/sm-s901w-galaxy-s22-5g-dual-sim-td-lte-ca-128gb.json new file mode 100644 index 00000000000..884db06909d --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s901w-galaxy-s22-5g-dual-sim-td-lte-ca-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s901w-galaxy-s22-5g-dual-sim-td-lte-ca-128gb", + "name": "SM-S901W Galaxy S22 5G Dual SIM TD-LTE CA 128GB", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 3700, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1100, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s901w-galaxy-s22-5g-dual-sim-td-lte-ca-256gb.json b/data/smartphone/samsung/2022/sm-s901w-galaxy-s22-5g-dual-sim-td-lte-ca-256gb.json new file mode 100644 index 00000000000..fc2e3afc417 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s901w-galaxy-s22-5g-dual-sim-td-lte-ca-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s901w-galaxy-s22-5g-dual-sim-td-lte-ca-256gb", + "name": "SM-S901W Galaxy S22 5G Dual SIM TD-LTE CA 256GB", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 3700, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 25, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1170, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s9060-galaxy-s22-5g-uw-dual-sim-td-lte-cn-hk-tw-128gb.json b/data/smartphone/samsung/2022/sm-s9060-galaxy-s22-5g-uw-dual-sim-td-lte-cn-hk-tw-128gb.json new file mode 100644 index 00000000000..c603a606e30 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s9060-galaxy-s22-5g-uw-dual-sim-td-lte-cn-hk-tw-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-s9060-galaxy-s22-5g-uw-dual-sim-td-lte-cn-hk-tw-128gb", + "name": "SM-S9060 Galaxy S22+ 5G UW Dual SIM TD-LTE CN HK TW 128GB", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2022/sm-s9060-galaxy-s22-5g-uw-dual-sim-td-lte-cn-hk-tw-256gb.json b/data/smartphone/samsung/2022/sm-s9060-galaxy-s22-5g-uw-dual-sim-td-lte-cn-hk-tw-256gb.json new file mode 100644 index 00000000000..e3957d0fb84 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s9060-galaxy-s22-5g-uw-dual-sim-td-lte-cn-hk-tw-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-s9060-galaxy-s22-5g-uw-dual-sim-td-lte-cn-hk-tw-256gb", + "name": "SM-S9060 Galaxy S22+ 5G UW Dual SIM TD-LTE CN HK TW 256GB", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2022/sm-s906b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-128gb.json b/data/smartphone/samsung/2022/sm-s906b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-128gb.json new file mode 100644 index 00000000000..cfdde924b8b --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s906b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s906b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-128gb", + "name": "SM-S906B/DS Galaxy S22+ 5G Dual SIM TD-LTE EU 128GB", + "brand": "samsung", + "soc": "exynos-2200", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1059, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Switzerland , Sweden , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2022/sm-s906b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-256gb.json b/data/smartphone/samsung/2022/sm-s906b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-256gb.json new file mode 100644 index 00000000000..8c44f65f929 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s906b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s906b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-256gb", + "name": "SM-S906B/DS Galaxy S22+ 5G Dual SIM TD-LTE EU 256GB", + "brand": "samsung", + "soc": "exynos-2200", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1099, + "market_countries": "Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Russia , Romania , Serbia , Slovakia , Slovenia , Spain , Switzerland , Sweden , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/samsung/2022/sm-s906e-ds-galaxy-s22-5g-global-dual-sim-td-lte-128gb.json b/data/smartphone/samsung/2022/sm-s906e-ds-galaxy-s22-5g-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..a3af1d6e3ed --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s906e-ds-galaxy-s22-5g-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-s906e-ds-galaxy-s22-5g-global-dual-sim-td-lte-128gb", + "name": "SM-S906E/DS Galaxy S22+ 5G Global Dual SIM TD-LTE 128GB", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Algeria , Argentina , Armenia , Bangladesh , Bolivia , Brazil , Cambodia , Chile , Colombia , Ecuador , Egypt , HK , India , Indonesia , Israel , Jordan , Kazakhstan , Kenya , Kuwait , Kyrgyzstan , Lebanon , Malaysia , Nepal , Pakistan , Paraguay , Philippines , Saudi Arabia , Serbia , Singapore , Thailand , Tunisie , Turkey , UAE , Vietnam", + "market_regions": "Africa , Asia , Middle East , Oceania , South America , Southeast Asia" +} diff --git a/data/smartphone/samsung/2022/sm-s906e-ds-galaxy-s22-5g-global-dual-sim-td-lte-256gb.json b/data/smartphone/samsung/2022/sm-s906e-ds-galaxy-s22-5g-global-dual-sim-td-lte-256gb.json new file mode 100644 index 00000000000..01bf5c4171f --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s906e-ds-galaxy-s22-5g-global-dual-sim-td-lte-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-s906e-ds-galaxy-s22-5g-global-dual-sim-td-lte-256gb", + "name": "SM-S906E/DS Galaxy S22+ 5G Global Dual SIM TD-LTE 256GB", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Algeria , Argentina , Armenia , Bangladesh , Bolivia , Brazil , Cambodia , Chile , Colombia , Ecuador , Egypt , HK , India , Indonesia , Israel , Jordan , Kazakhstan , Kenya , Kuwait , Kyrgyzstan , Lebanon , Malaysia , Nepal , Pakistan , Paraguay , Philippines , Saudi Arabia , Serbia , Singapore , Thailand , Tunisie , Turkey , UAE , Vietnam", + "market_regions": "Africa , Asia , Middle East , Oceania , South America , Southeast Asia" +} diff --git a/data/smartphone/samsung/2022/sm-s906n-galaxy-s22-5g-uw-td-lte-kr-256gb.json b/data/smartphone/samsung/2022/sm-s906n-galaxy-s22-5g-uw-td-lte-kr-256gb.json new file mode 100644 index 00000000000..5e4feb4da80 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s906n-galaxy-s22-5g-uw-td-lte-kr-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-s906n-galaxy-s22-5g-uw-td-lte-kr-256gb", + "name": "SM-S906N Galaxy S22+ 5G UW TD-LTE KR 256GB", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-14", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2022/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906a.json b/data/smartphone/samsung/2022/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906a.json new file mode 100644 index 00000000000..463a372aef6 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906a.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906a", + "name": "SM-S906U Galaxy S22+ 5G UW Dual SIM TD-LTE US 128GB / SM-S906A", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1000, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906r4.json b/data/smartphone/samsung/2022/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906r4.json new file mode 100644 index 00000000000..71df898f4fc --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906r4.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906r4", + "name": "SM-S906U Galaxy S22+ 5G UW Dual SIM TD-LTE US 128GB / SM-S906R4", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1000, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906t.json b/data/smartphone/samsung/2022/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906t.json new file mode 100644 index 00000000000..7e1a6f8aab4 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906t.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906t", + "name": "SM-S906U Galaxy S22+ 5G UW Dual SIM TD-LTE US 128GB / SM-S906T", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1000, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906v.json b/data/smartphone/samsung/2022/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906v.json new file mode 100644 index 00000000000..b44bdc2c03e --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906v.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906v", + "name": "SM-S906U Galaxy S22+ 5G UW Dual SIM TD-LTE US 128GB / SM-S906V", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1000, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906a.json b/data/smartphone/samsung/2022/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906a.json new file mode 100644 index 00000000000..b2f6bb3e92d --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906a.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906a", + "name": "SM-S906U Galaxy S22+ 5G UW Dual SIM TD-LTE US 256GB / SM-S906A", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1050, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906r4.json b/data/smartphone/samsung/2022/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906r4.json new file mode 100644 index 00000000000..5f4b66e6c35 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906r4.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906r4", + "name": "SM-S906U Galaxy S22+ 5G UW Dual SIM TD-LTE US 256GB / SM-S906R4", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1050, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906t.json b/data/smartphone/samsung/2022/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906t.json new file mode 100644 index 00000000000..61debe38da2 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906t.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906t", + "name": "SM-S906U Galaxy S22+ 5G UW Dual SIM TD-LTE US 256GB / SM-S906T", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1050, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906v.json b/data/smartphone/samsung/2022/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906v.json new file mode 100644 index 00000000000..f67af5c7571 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906v.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906v", + "name": "SM-S906U Galaxy S22+ 5G UW Dual SIM TD-LTE US 256GB / SM-S906V", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1050, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s906u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb.json b/data/smartphone/samsung/2022/sm-s906u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb.json new file mode 100644 index 00000000000..223fd20f9b0 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s906u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s906u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb", + "name": "SM-S906U1 Galaxy S22+ 5G UW Dual SIM TD-LTE US 128GB", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1000, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s906u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb.json b/data/smartphone/samsung/2022/sm-s906u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb.json new file mode 100644 index 00000000000..bd081c8d106 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s906u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s906u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb", + "name": "SM-S906U1 Galaxy S22+ 5G UW Dual SIM TD-LTE US 256GB", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1050, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s906w-galaxy-s22-5g-dual-sim-td-lte-ca-128gb.json b/data/smartphone/samsung/2022/sm-s906w-galaxy-s22-5g-dual-sim-td-lte-ca-128gb.json new file mode 100644 index 00000000000..89261aebc82 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s906w-galaxy-s22-5g-dual-sim-td-lte-ca-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s906w-galaxy-s22-5g-dual-sim-td-lte-ca-128gb", + "name": "SM-S906W Galaxy S22+ 5G Dual SIM TD-LTE CA 128GB", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1400, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s906w-galaxy-s22-5g-dual-sim-td-lte-ca-256gb.json b/data/smartphone/samsung/2022/sm-s906w-galaxy-s22-5g-dual-sim-td-lte-ca-256gb.json new file mode 100644 index 00000000000..a8b1488025a --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s906w-galaxy-s22-5g-dual-sim-td-lte-ca-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s906w-galaxy-s22-5g-dual-sim-td-lte-ca-256gb", + "name": "SM-S906W Galaxy S22+ 5G Dual SIM TD-LTE CA 256GB", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1470, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-1tb.json b/data/smartphone/samsung/2022/sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-1tb.json new file mode 100644 index 00000000000..41229ecad75 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-1tb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-1tb", + "name": "SM-S9080 Galaxy S22 Ultra 5G UW Dual SIM TD-LTE CN HK TW 1TB", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-24", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 228.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2022/sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-256gb.json b/data/smartphone/samsung/2022/sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-256gb.json new file mode 100644 index 00000000000..1f85d9dad4a --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-256gb", + "name": "SM-S9080 Galaxy S22 Ultra 5G UW Dual SIM TD-LTE CN HK TW 256GB", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-24", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 228.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2022/sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-512gb.json b/data/smartphone/samsung/2022/sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-512gb.json new file mode 100644 index 00000000000..e0acc80d9b9 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-512gb", + "name": "SM-S9080 Galaxy S22 Ultra 5G UW Dual SIM TD-LTE CN HK TW 512GB", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-24", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 228.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/samsung/2022/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-128gb.json b/data/smartphone/samsung/2022/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-128gb.json new file mode 100644 index 00000000000..bfe361bdd3e --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-128gb", + "name": "SM-S908B/DS Galaxy S22 Ultra 5G Dual SIM TD-LTE EU 128GB", + "brand": "samsung", + "soc": "exynos-2200", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 228.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1259, + "market_countries": "Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Netherlands , Norway , Poland , Portugal , Romania , Russia , Serbia , Slovakia , Slovenia , Spain , Sweden , Switzerland , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2022/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-1tb.json b/data/smartphone/samsung/2022/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-1tb.json new file mode 100644 index 00000000000..7fb059a1a4c --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-1tb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-1tb", + "name": "SM-S908B/DS Galaxy S22 Ultra 5G Dual SIM TD-LTE EU 1TB", + "brand": "samsung", + "soc": "exynos-2200", + "release_date": "2022-02-26", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 228.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1659, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Serbia , Slovakia , Slovenia , Spain , Switzerland , Sweden , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2022/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-256gb.json b/data/smartphone/samsung/2022/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-256gb.json new file mode 100644 index 00000000000..080fd217cdb --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-256gb", + "name": "SM-S908B/DS Galaxy S22 Ultra 5G Dual SIM TD-LTE EU 256GB", + "brand": "samsung", + "soc": "exynos-2200", + "release_date": "2022-02-26", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 228.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1359, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Serbia , Slovakia , Slovenia , Spain , Switzerland , Sweden , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2022/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-512gb.json b/data/smartphone/samsung/2022/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-512gb.json new file mode 100644 index 00000000000..b06c6358b34 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-512gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-512gb", + "name": "SM-S908B/DS Galaxy S22 Ultra 5G Dual SIM TD-LTE EU 512GB", + "brand": "samsung", + "soc": "exynos-2200", + "release_date": "2022-02-26", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 228.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1459, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Serbia , Slovakia , Slovenia , Spain , Switzerland , Sweden , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/samsung/2022/sm-s908d-galaxy-s22-ultra-5g-uw-td-lte-jp-256gb-sc-52c.json b/data/smartphone/samsung/2022/sm-s908d-galaxy-s22-ultra-5g-uw-td-lte-jp-256gb-sc-52c.json new file mode 100644 index 00000000000..c754424875a --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s908d-galaxy-s22-ultra-5g-uw-td-lte-jp-256gb-sc-52c.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-s908d-galaxy-s22-ultra-5g-uw-td-lte-jp-256gb-sc-52c", + "name": "SM-S908D Galaxy S22 Ultra 5G UW TD-LTE JP 256GB SC-52C", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-04-21", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 229.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2022/sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-1tb.json b/data/smartphone/samsung/2022/sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-1tb.json new file mode 100644 index 00000000000..37699b6ff8f --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-1tb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-1tb", + "name": "SM-S908E/DS Galaxy S22 Ultra 5G Global Dual SIM TD-LTE 1TB", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 228.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Algeria , Argentina , Brazil , Chile , Egypt , HK , India , Israel , Jordan , Kazakhstan , Kuwait , Lebanon , Pakistan , Paraguay , Philippines , Singapore , South Africa , Tunisie , Thailand , Turkey , UAE , Vietnam", + "market_regions": "Africa , Asia , Middle East , Oceania , South America , Southeast Asia" +} diff --git a/data/smartphone/samsung/2022/sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-256gb.json b/data/smartphone/samsung/2022/sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-256gb.json new file mode 100644 index 00000000000..61ee46b3505 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-256gb", + "name": "SM-S908E/DS Galaxy S22 Ultra 5G Global Dual SIM TD-LTE 256GB", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 228.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Algeria , Argentina , Armenia , Brazil , Cambodia , Chile , Colombia , Ecuador , Egypt , HK , India , Indonesia , Israel , Jordan , Kazakhstan , Kenya , Kuwait , Kyrgyzstan , Lebanon , Malaysia , Pakistan , Paraguay , Philippines , Saudi Arabia , Singapore , South Africa , Thailand , Tunisie , Turkey , UAE , Vietnam", + "market_regions": "Africa , Asia , Middle East , Oceania , South America , Southeast Asia" +} diff --git a/data/smartphone/samsung/2022/sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-512gb.json b/data/smartphone/samsung/2022/sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-512gb.json new file mode 100644 index 00000000000..5205c902e2a --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-512gb", + "name": "SM-S908E/DS Galaxy S22 Ultra 5G Global Dual SIM TD-LTE 512GB", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 228.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Algeria , Argentina , Armenia , Brazil , Chile , Colombia , Ecuador , Egypt , HK , India , Indonesia , Israel , Jordan , Kazakhstan , Kenya , Kuwait , Kyrgyzstan , Lebanon , Malaysia , Pakistan , Paraguay , Philippines , Saudi Arabia , Singapore , South Africa , Thailand , Tunisie , Turkey , UAE , Vietnam", + "market_regions": "Africa , Asia , Middle East , Oceania , South America , Southeast Asia" +} diff --git a/data/smartphone/samsung/2022/sm-s908j-galaxy-s22-ultra-5g-uw-td-lte-jp-256gb-scg14.json b/data/smartphone/samsung/2022/sm-s908j-galaxy-s22-ultra-5g-uw-td-lte-jp-256gb-scg14.json new file mode 100644 index 00000000000..f5547b87a41 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s908j-galaxy-s22-ultra-5g-uw-td-lte-jp-256gb-scg14.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-s908j-galaxy-s22-ultra-5g-uw-td-lte-jp-256gb-scg14", + "name": "SM-S908J Galaxy S22 Ultra 5G UW TD-LTE JP 256GB SCG14", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-04-21", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 229.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2022/sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-1tb.json b/data/smartphone/samsung/2022/sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-1tb.json new file mode 100644 index 00000000000..aa3449bc5e2 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-1tb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-1tb", + "name": "SM-S908N Galaxy S22 Ultra 5G UW TD-LTE KR 1TB", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-14", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 228.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2022/sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-256gb.json b/data/smartphone/samsung/2022/sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-256gb.json new file mode 100644 index 00000000000..00315e4d692 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-256gb", + "name": "SM-S908N Galaxy S22 Ultra 5G UW TD-LTE KR 256GB", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-14", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 228.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2022/sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-512gb.json b/data/smartphone/samsung/2022/sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-512gb.json new file mode 100644 index 00000000000..bb888af0206 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-512gb", + "name": "SM-S908N Galaxy S22 Ultra 5G UW TD-LTE KR 512GB", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-14", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 228.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908a.json b/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908a.json new file mode 100644 index 00000000000..41021ac4369 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908a.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908a", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 128GB / SM-S908A", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 229.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1200, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908r4.json b/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908r4.json new file mode 100644 index 00000000000..be781c9ad41 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908r4.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908r4", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 128GB / SM-S908R4", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 229.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1200, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908t.json b/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908t.json new file mode 100644 index 00000000000..8418e280439 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908t.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908t", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 128GB / SM-S908T", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 229.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1200, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908v.json b/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908v.json new file mode 100644 index 00000000000..0b65f41c265 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908v.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908v", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 128GB / SM-S908V", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 229.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1200, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908a.json b/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908a.json new file mode 100644 index 00000000000..68411f2a7ed --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908a.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908a", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 256GB / SM-S908A", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 229.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1300, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908r4.json b/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908r4.json new file mode 100644 index 00000000000..e13fa62743e --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908r4.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908r4", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 256GB / SM-S908R4", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 229.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1300, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908t.json b/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908t.json new file mode 100644 index 00000000000..dc817d075ec --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908t.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908t", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 256GB / SM-S908T", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 229.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1300, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908v.json b/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908v.json new file mode 100644 index 00000000000..7b14281dd80 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908v.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908v", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 256GB / SM-S908V", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 229.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1300, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908a.json b/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908a.json new file mode 100644 index 00000000000..a62d38314d1 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908a.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908a", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 512GB / SM-S908A", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 229.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1400, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908r4.json b/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908r4.json new file mode 100644 index 00000000000..c682f0a22aa --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908r4.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908r4", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 512GB / SM-S908R4", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 229.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1400, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908t.json b/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908t.json new file mode 100644 index 00000000000..b4195c93e7d --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908t.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908t", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 512GB / SM-S908T", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 229.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1400, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908v.json b/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908v.json new file mode 100644 index 00000000000..346427e84ab --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908v.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908v", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 512GB / SM-S908V", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 229.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1400, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb.json b/data/smartphone/samsung/2022/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb.json new file mode 100644 index 00000000000..b3321a9c8f6 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb", + "name": "SM-S908U1 Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 128GB", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 229.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1200, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-1tb.json b/data/smartphone/samsung/2022/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-1tb.json new file mode 100644 index 00000000000..6aa10d59120 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-1tb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-1tb", + "name": "SM-S908U1 Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 1TB", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 229.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1600, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb.json b/data/smartphone/samsung/2022/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb.json new file mode 100644 index 00000000000..e0cdf2a4e7e --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb", + "name": "SM-S908U1 Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 256GB", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 229.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1300, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb.json b/data/smartphone/samsung/2022/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb.json new file mode 100644 index 00000000000..32f1577d22c --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb", + "name": "SM-S908U1 Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 512GB", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 229.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1400, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-128gb.json b/data/smartphone/samsung/2022/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-128gb.json new file mode 100644 index 00000000000..8a0f4cb9672 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-128gb", + "name": "SM-S908W Galaxy S22 Ultra 5G Dual SIM TD-LTE CA 128GB", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 228.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1650, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-1tb.json b/data/smartphone/samsung/2022/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-1tb.json new file mode 100644 index 00000000000..94eda3e249f --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-1tb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-1tb", + "name": "SM-S908W Galaxy S22 Ultra 5G Dual SIM TD-LTE CA 1TB", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 228.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 2210, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-256gb.json b/data/smartphone/samsung/2022/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-256gb.json new file mode 100644 index 00000000000..4a64dc22fa6 --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-256gb", + "name": "SM-S908W Galaxy S22 Ultra 5G Dual SIM TD-LTE CA 256GB", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 228.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1790, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/samsung/2022/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-512gb.json b/data/smartphone/samsung/2022/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-512gb.json new file mode 100644 index 00000000000..5df8233160e --- /dev/null +++ b/data/smartphone/samsung/2022/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-512gb.json @@ -0,0 +1,44 @@ +{ + "slug": "sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-512gb", + "name": "SM-S908W Galaxy S22 Ultra 5G Dual SIM TD-LTE CA 512GB", + "brand": "samsung", + "soc": "snapdragon-8-gen-1", + "release_date": "2022-02-26", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 228.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "12", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1930, + "market_countries": "Canada", + "market_regions": "North America" +} diff --git a/data/smartphone/sharp/2018/android-one-s5-td-lte-jp-s5-sh.json b/data/smartphone/sharp/2018/android-one-s5-td-lte-jp-s5-sh.json new file mode 100644 index 00000000000..08b8ba19a15 --- /dev/null +++ b/data/smartphone/sharp/2018/android-one-s5-td-lte-jp-s5-sh.json @@ -0,0 +1,41 @@ +{ + "slug": "android-one-s5-td-lte-jp-s5-sh", + "name": "Android One S5 TD-LTE JP S5-SH", + "brand": "sharp", + "soc": "snapdragon-450", + "release_date": "2018-12-02", + "ram_gb": 3.0, + "battery_mah": 2700, + "weight_g": 149.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color ASV TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2018/android-one-x4-td-lte-jp-x4-sh.json b/data/smartphone/sharp/2018/android-one-x4-td-lte-jp-x4-sh.json new file mode 100644 index 00000000000..6bcfbce1694 --- /dev/null +++ b/data/smartphone/sharp/2018/android-one-x4-td-lte-jp-x4-sh.json @@ -0,0 +1,41 @@ +{ + "slug": "android-one-x4-td-lte-jp-x4-sh", + "name": "Android One X4 TD-LTE JP X4-SH", + "brand": "sharp", + "soc": "snapdragon-630", + "release_date": "2018-06-01", + "ram_gb": 3.0, + "battery_mah": 3100, + "weight_g": 157.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color ASV TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2018/aquos-c10-dual-sim-lte-eu-fs8032.json b/data/smartphone/sharp/2018/aquos-c10-dual-sim-lte-eu-fs8032.json new file mode 100644 index 00000000000..bc0bf6433d6 --- /dev/null +++ b/data/smartphone/sharp/2018/aquos-c10-dual-sim-lte-eu-fs8032.json @@ -0,0 +1,41 @@ +{ + "slug": "aquos-c10-dual-sim-lte-eu-fs8032", + "name": "Aquos C10 Dual SIM LTE EU FS8032", + "brand": "sharp", + "soc": "snapdragon-630", + "release_date": "2018-07-23", + "ram_gb": 4.0, + "battery_mah": 2700, + "weight_g": 140.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2040", + "type": "Color IPS TFT LCD display", + "ppi": 420 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , France , Germany , Ireland , Italy , Poland , Portugal , Russia , Spain , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/sharp/2018/aquos-d10-dual-sim-lte-eu.json b/data/smartphone/sharp/2018/aquos-d10-dual-sim-lte-eu.json new file mode 100644 index 00000000000..4d51b9ec218 --- /dev/null +++ b/data/smartphone/sharp/2018/aquos-d10-dual-sim-lte-eu.json @@ -0,0 +1,41 @@ +{ + "slug": "aquos-d10-dual-sim-lte-eu", + "name": "Aquos D10 Dual SIM LTE EU", + "brand": "sharp", + "soc": "snapdragon-630", + "release_date": "2018-09-01", + "ram_gb": 4.0, + "battery_mah": 2900, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.87, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , France , Germany , Ireland , Italy , Poland , Portugal , Russia , Spain , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/sharp/2018/aquos-r2-td-lte-jp-706sh.json b/data/smartphone/sharp/2018/aquos-r2-td-lte-jp-706sh.json new file mode 100644 index 00000000000..c3041002e8d --- /dev/null +++ b/data/smartphone/sharp/2018/aquos-r2-td-lte-jp-706sh.json @@ -0,0 +1,41 @@ +{ + "slug": "aquos-r2-td-lte-jp-706sh", + "name": "AQUOS R2 TD-LTE JP 706SH", + "brand": "sharp", + "soc": "snapdragon-845", + "release_date": "2018-06-16", + "ram_gb": 4.0, + "battery_mah": 3130, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1440x3040", + "type": "Color ASV TFT LCD display", + "ppi": 561 + }, + "cameras": [ + { + "type": "main", + "mp": 22.5 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2018/aquos-r2-td-lte-jp-sh-03k.json b/data/smartphone/sharp/2018/aquos-r2-td-lte-jp-sh-03k.json new file mode 100644 index 00000000000..847337a2628 --- /dev/null +++ b/data/smartphone/sharp/2018/aquos-r2-td-lte-jp-sh-03k.json @@ -0,0 +1,41 @@ +{ + "slug": "aquos-r2-td-lte-jp-sh-03k", + "name": "Aquos R2 TD-LTE JP SH-03K", + "brand": "sharp", + "soc": "snapdragon-845", + "release_date": "2018-06-08", + "ram_gb": 4.0, + "battery_mah": 3130, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1440x3040", + "type": "Color ASV TFT LCD display", + "ppi": 561 + }, + "cameras": [ + { + "type": "main", + "mp": 22.5 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2018/aquos-r2-wimax-2-shv42.json b/data/smartphone/sharp/2018/aquos-r2-wimax-2-shv42.json new file mode 100644 index 00000000000..12d35443aab --- /dev/null +++ b/data/smartphone/sharp/2018/aquos-r2-wimax-2-shv42.json @@ -0,0 +1,41 @@ +{ + "slug": "aquos-r2-wimax-2-shv42", + "name": "AQUOS R2 WiMAX 2+ SHV42", + "brand": "sharp", + "soc": "snapdragon-845", + "release_date": "2018-06-08", + "ram_gb": 4.0, + "battery_mah": 3130, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1440x3040", + "type": "Color ASV TFT LCD display", + "ppi": 561 + }, + "cameras": [ + { + "type": "main", + "mp": 22.5 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2018/aquos-s3-dual-sim-td-lte-128gb-fs8015.json b/data/smartphone/sharp/2018/aquos-s3-dual-sim-td-lte-128gb-fs8015.json new file mode 100644 index 00000000000..d870d3b740a --- /dev/null +++ b/data/smartphone/sharp/2018/aquos-s3-dual-sim-td-lte-128gb-fs8015.json @@ -0,0 +1,41 @@ +{ + "slug": "aquos-s3-dual-sim-td-lte-128gb-fs8015", + "name": "AQUOS S3 Dual SIM TD-LTE 128GB FS8015", + "brand": "sharp", + "soc": "snapdragon-660", + "release_date": "2018-06-01", + "ram_gb": 6.0, + "battery_mah": 3200, + "weight_g": 167.4, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color ASV TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , Taiwan , Vietnam", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2018/aquos-sense-2-td-lte-jp-sh-01l.json b/data/smartphone/sharp/2018/aquos-sense-2-td-lte-jp-sh-01l.json new file mode 100644 index 00000000000..febd2a4ea08 --- /dev/null +++ b/data/smartphone/sharp/2018/aquos-sense-2-td-lte-jp-sh-01l.json @@ -0,0 +1,41 @@ +{ + "slug": "aquos-sense-2-td-lte-jp-sh-01l", + "name": "Aquos Sense 2 TD-LTE JP SH-01L", + "brand": "sharp", + "soc": "snapdragon-450", + "release_date": "2018-12-14", + "ram_gb": 3.0, + "battery_mah": 2700, + "weight_g": 155.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color ASV TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2018/aquos-sense-2-td-lte-jp-sh-m08.json b/data/smartphone/sharp/2018/aquos-sense-2-td-lte-jp-sh-m08.json new file mode 100644 index 00000000000..d38a67e0f1c --- /dev/null +++ b/data/smartphone/sharp/2018/aquos-sense-2-td-lte-jp-sh-m08.json @@ -0,0 +1,41 @@ +{ + "slug": "aquos-sense-2-td-lte-jp-sh-m08", + "name": "Aquos Sense 2 TD-LTE JP SH-M08", + "brand": "sharp", + "soc": "snapdragon-450", + "release_date": "2018-12-27", + "ram_gb": 3.0, + "battery_mah": 2700, + "weight_g": 149.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color ASV TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2018/aquos-sense-2-wimax-2-td-lte-jp-shv43.json b/data/smartphone/sharp/2018/aquos-sense-2-wimax-2-td-lte-jp-shv43.json new file mode 100644 index 00000000000..83c23c4b725 --- /dev/null +++ b/data/smartphone/sharp/2018/aquos-sense-2-wimax-2-td-lte-jp-shv43.json @@ -0,0 +1,41 @@ +{ + "slug": "aquos-sense-2-wimax-2-td-lte-jp-shv43", + "name": "Aquos Sense 2 WiMAX 2+ TD-LTE JP SHV43", + "brand": "sharp", + "soc": "snapdragon-450", + "release_date": "2018-11-09", + "ram_gb": 3.0, + "battery_mah": 2700, + "weight_g": 155.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color ASV TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2018/aquos-sense-plus-td-lte-jp-sh-m07.json b/data/smartphone/sharp/2018/aquos-sense-plus-td-lte-jp-sh-m07.json new file mode 100644 index 00000000000..3a25a51ad41 --- /dev/null +++ b/data/smartphone/sharp/2018/aquos-sense-plus-td-lte-jp-sh-m07.json @@ -0,0 +1,41 @@ +{ + "slug": "aquos-sense-plus-td-lte-jp-sh-m07", + "name": "Aquos Sense Plus TD-LTE JP SH-M07", + "brand": "sharp", + "soc": "snapdragon-630", + "release_date": "2018-06-22", + "ram_gb": 3.0, + "battery_mah": 3100, + "weight_g": 157.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color ASV TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2018/aquos-zero-td-lte-801sh.json b/data/smartphone/sharp/2018/aquos-zero-td-lte-801sh.json new file mode 100644 index 00000000000..6ce71eeee6a --- /dev/null +++ b/data/smartphone/sharp/2018/aquos-zero-td-lte-801sh.json @@ -0,0 +1,41 @@ +{ + "slug": "aquos-zero-td-lte-801sh", + "name": "AQUOS zero TD-LTE 801SH", + "brand": "sharp", + "soc": "snapdragon-845", + "release_date": "2018-12-01", + "ram_gb": 6.0, + "battery_mah": 3130, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1440x2992", + "type": "AM-OLED display", + "ppi": 536 + }, + "cameras": [ + { + "type": "main", + "mp": 22.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2018/simple-sumaho-4-td-lte.json b/data/smartphone/sharp/2018/simple-sumaho-4-td-lte.json new file mode 100644 index 00000000000..04cd951bc25 --- /dev/null +++ b/data/smartphone/sharp/2018/simple-sumaho-4-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "simple-sumaho-4-td-lte", + "name": "simple sumaho 4 TD-LTE", + "brand": "sharp", + "soc": "snapdragon-430", + "release_date": "2018-07-01", + "ram_gb": 3.0, + "battery_mah": 2800, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color ASV TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Japan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/sharp/2019/android-one-s7-td-lte-jp-s7-sh.json b/data/smartphone/sharp/2019/android-one-s7-td-lte-jp-s7-sh.json new file mode 100644 index 00000000000..59e2a8173cc --- /dev/null +++ b/data/smartphone/sharp/2019/android-one-s7-td-lte-jp-s7-sh.json @@ -0,0 +1,41 @@ +{ + "slug": "android-one-s7-td-lte-jp-s7-sh", + "name": "Android One S7 TD-LTE JP S7-SH", + "brand": "sharp", + "soc": "snapdragon-630", + "release_date": "2019-12-19", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.49, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 459 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2019/aquos-phone-td-lte-jp-sh-02l.json b/data/smartphone/sharp/2019/aquos-phone-td-lte-jp-sh-02l.json new file mode 100644 index 00000000000..6789a05de57 --- /dev/null +++ b/data/smartphone/sharp/2019/aquos-phone-td-lte-jp-sh-02l.json @@ -0,0 +1,36 @@ +{ + "slug": "aquos-phone-td-lte-jp-sh-02l", + "name": "Aquos phone TD-LTE JP SH-02L", + "brand": "sharp", + "soc": "snapdragon-210", + "release_date": "2019-02-08", + "ram_gb": 1.0, + "battery_mah": 1680, + "weight_g": 120.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 3.4, + "resolution": "540x960", + "type": "Color ASV TFT LCD display", + "ppi": 324 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2019/aquos-r2-compact-td-lte-jp-803sh.json b/data/smartphone/sharp/2019/aquos-r2-compact-td-lte-jp-803sh.json new file mode 100644 index 00000000000..5ef8c508a27 --- /dev/null +++ b/data/smartphone/sharp/2019/aquos-r2-compact-td-lte-jp-803sh.json @@ -0,0 +1,42 @@ +{ + "slug": "aquos-r2-compact-td-lte-jp-803sh", + "name": "AQUOS R2 Compact TD-LTE JP 803SH", + "brand": "sharp", + "soc": "snapdragon-845", + "release_date": "2019-01-11", + "ram_gb": 4.0, + "battery_mah": 2500, + "weight_g": 135.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.2, + "resolution": "1080x2280", + "refresh_hz": 120, + "type": "Color ASV TFT LCD display", + "ppi": 485 + }, + "cameras": [ + { + "type": "main", + "mp": 22.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2019/aquos-r2-compact-td-lte-jp-sh-m09.json b/data/smartphone/sharp/2019/aquos-r2-compact-td-lte-jp-sh-m09.json new file mode 100644 index 00000000000..1b319071094 --- /dev/null +++ b/data/smartphone/sharp/2019/aquos-r2-compact-td-lte-jp-sh-m09.json @@ -0,0 +1,42 @@ +{ + "slug": "aquos-r2-compact-td-lte-jp-sh-m09", + "name": "AQUOS R2 Compact TD-LTE JP SH-M09", + "brand": "sharp", + "soc": "snapdragon-845", + "release_date": "2019-02-21", + "ram_gb": 4.0, + "battery_mah": 2500, + "weight_g": 135.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.2, + "resolution": "1080x2280", + "refresh_hz": 120, + "type": "Color ASV TFT LCD display", + "ppi": 485 + }, + "cameras": [ + { + "type": "main", + "mp": 22.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2019/aquos-r3-dual-sim-td-lte-tw-sh-r10.json b/data/smartphone/sharp/2019/aquos-r3-dual-sim-td-lte-tw-sh-r10.json new file mode 100644 index 00000000000..b48a8938c7d --- /dev/null +++ b/data/smartphone/sharp/2019/aquos-r3-dual-sim-td-lte-tw-sh-r10.json @@ -0,0 +1,42 @@ +{ + "slug": "aquos-r3-dual-sim-td-lte-tw-sh-r10", + "name": "Aquos R3 Dual SIM TD-LTE TW SH-R10", + "brand": "sharp", + "soc": "snapdragon-855", + "release_date": "2019-08-21", + "ram_gb": 6.0, + "battery_mah": 3200, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1440x3120", + "refresh_hz": 120, + "type": "Color ASV TFT LCD display", + "ppi": 554 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Taiwan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2019/aquos-r3-global-dual-sim-lte-sh-r10.json b/data/smartphone/sharp/2019/aquos-r3-global-dual-sim-lte-sh-r10.json new file mode 100644 index 00000000000..8e755e0adb2 --- /dev/null +++ b/data/smartphone/sharp/2019/aquos-r3-global-dual-sim-lte-sh-r10.json @@ -0,0 +1,42 @@ +{ + "slug": "aquos-r3-global-dual-sim-lte-sh-r10", + "name": "Aquos R3 Global Dual SIM LTE SH-R10", + "brand": "sharp", + "soc": "snapdragon-855", + "release_date": "2019-09-01", + "ram_gb": 6.0, + "battery_mah": 3200, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1440x3120", + "refresh_hz": 120, + "type": "Color ASV TFT LCD display", + "ppi": 554 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Poland , Russia", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/sharp/2019/aquos-r3-td-lte-jp-808sh.json b/data/smartphone/sharp/2019/aquos-r3-td-lte-jp-808sh.json new file mode 100644 index 00000000000..bd6f1a04880 --- /dev/null +++ b/data/smartphone/sharp/2019/aquos-r3-td-lte-jp-808sh.json @@ -0,0 +1,42 @@ +{ + "slug": "aquos-r3-td-lte-jp-808sh", + "name": "Aquos R3 TD-LTE JP 808SH", + "brand": "sharp", + "soc": "snapdragon-855", + "release_date": "2019-05-24", + "ram_gb": 6.0, + "battery_mah": 3200, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1440x3120", + "refresh_hz": 120, + "type": "Color ASV TFT LCD display", + "ppi": 554 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2019/aquos-r3-td-lte-jp-sh-04l.json b/data/smartphone/sharp/2019/aquos-r3-td-lte-jp-sh-04l.json new file mode 100644 index 00000000000..43c68a97305 --- /dev/null +++ b/data/smartphone/sharp/2019/aquos-r3-td-lte-jp-sh-04l.json @@ -0,0 +1,42 @@ +{ + "slug": "aquos-r3-td-lte-jp-sh-04l", + "name": "Aquos R3 TD-LTE JP SH-04L", + "brand": "sharp", + "soc": "snapdragon-855", + "release_date": "2019-06-02", + "ram_gb": 6.0, + "battery_mah": 3200, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1440x3120", + "refresh_hz": 120, + "type": "Color ASV TFT LCD display", + "ppi": 554 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2019/aquos-r3-wimax-2-shv44.json b/data/smartphone/sharp/2019/aquos-r3-wimax-2-shv44.json new file mode 100644 index 00000000000..464c14d6142 --- /dev/null +++ b/data/smartphone/sharp/2019/aquos-r3-wimax-2-shv44.json @@ -0,0 +1,42 @@ +{ + "slug": "aquos-r3-wimax-2-shv44", + "name": "Aquos R3 WiMAX 2+ SHV44", + "brand": "sharp", + "soc": "snapdragon-855", + "release_date": "2019-05-26", + "ram_gb": 6.0, + "battery_mah": 3200, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1440x3120", + "refresh_hz": 120, + "type": "Color ASV TFT LCD display", + "ppi": 554 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2019/aquos-sense-3-lite-td-lte-jp-sh-rm12.json b/data/smartphone/sharp/2019/aquos-sense-3-lite-td-lte-jp-sh-rm12.json new file mode 100644 index 00000000000..6a5fbd9df45 --- /dev/null +++ b/data/smartphone/sharp/2019/aquos-sense-3-lite-td-lte-jp-sh-rm12.json @@ -0,0 +1,41 @@ +{ + "slug": "aquos-sense-3-lite-td-lte-jp-sh-rm12", + "name": "Aquos Sense 3 Lite TD-LTE JP SH-RM12", + "brand": "sharp", + "soc": "snapdragon-630", + "release_date": "2019-12-09", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color ASV TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2019/aquos-sense-3-plus-td-lte-jp-901sh.json b/data/smartphone/sharp/2019/aquos-sense-3-plus-td-lte-jp-901sh.json new file mode 100644 index 00000000000..e3eb24f9351 --- /dev/null +++ b/data/smartphone/sharp/2019/aquos-sense-3-plus-td-lte-jp-901sh.json @@ -0,0 +1,41 @@ +{ + "slug": "aquos-sense-3-plus-td-lte-jp-901sh", + "name": "Aquos Sense 3 Plus TD-LTE JP 901SH", + "brand": "sharp", + "soc": "snapdragon-636", + "release_date": "2019-12-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2220", + "type": "Color ASV TFT LCD display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2019/aquos-sense-3-plus-td-lte-jp-sh-rm11.json b/data/smartphone/sharp/2019/aquos-sense-3-plus-td-lte-jp-sh-rm11.json new file mode 100644 index 00000000000..1efc53109b1 --- /dev/null +++ b/data/smartphone/sharp/2019/aquos-sense-3-plus-td-lte-jp-sh-rm11.json @@ -0,0 +1,41 @@ +{ + "slug": "aquos-sense-3-plus-td-lte-jp-sh-rm11", + "name": "Aquos Sense 3 Plus TD-LTE JP SH-RM11", + "brand": "sharp", + "soc": "snapdragon-636", + "release_date": "2019-12-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2220", + "type": "Color ASV TFT LCD display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2019/aquos-sense-3-plus-wimax-2-shv46.json b/data/smartphone/sharp/2019/aquos-sense-3-plus-wimax-2-shv46.json new file mode 100644 index 00000000000..9d5dee31870 --- /dev/null +++ b/data/smartphone/sharp/2019/aquos-sense-3-plus-wimax-2-shv46.json @@ -0,0 +1,41 @@ +{ + "slug": "aquos-sense-3-plus-wimax-2-shv46", + "name": "Aquos Sense 3 Plus WiMAX 2+ SHV46", + "brand": "sharp", + "soc": "snapdragon-630", + "release_date": "2019-12-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2220", + "type": "Color ASV TFT LCD display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2019/aquos-sense-3-td-lte-jp-sh-02m.json b/data/smartphone/sharp/2019/aquos-sense-3-td-lte-jp-sh-02m.json new file mode 100644 index 00000000000..b11ea9bca41 --- /dev/null +++ b/data/smartphone/sharp/2019/aquos-sense-3-td-lte-jp-sh-02m.json @@ -0,0 +1,41 @@ +{ + "slug": "aquos-sense-3-td-lte-jp-sh-02m", + "name": "Aquos Sense 3 TD-LTE JP SH-02M", + "brand": "sharp", + "soc": "snapdragon-630", + "release_date": "2019-11-02", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color ASV TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2019/aquos-sense-3-wimax-2-shv45-shv45-u.json b/data/smartphone/sharp/2019/aquos-sense-3-wimax-2-shv45-shv45-u.json new file mode 100644 index 00000000000..2a14f52b792 --- /dev/null +++ b/data/smartphone/sharp/2019/aquos-sense-3-wimax-2-shv45-shv45-u.json @@ -0,0 +1,41 @@ +{ + "slug": "aquos-sense-3-wimax-2-shv45-shv45-u", + "name": "Aquos Sense 3 WiMAX 2+ SHV45 / SHV45-u", + "brand": "sharp", + "soc": "snapdragon-630", + "release_date": "2019-11-02", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color ASV TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2019/aquos-sense3-basic-td-lte-jp-907sh.json b/data/smartphone/sharp/2019/aquos-sense3-basic-td-lte-jp-907sh.json new file mode 100644 index 00000000000..9427d311cb6 --- /dev/null +++ b/data/smartphone/sharp/2019/aquos-sense3-basic-td-lte-jp-907sh.json @@ -0,0 +1,41 @@ +{ + "slug": "aquos-sense3-basic-td-lte-jp-907sh", + "name": "Aquos Sense3 basic TD-LTE JP 907SH", + "brand": "sharp", + "soc": "snapdragon-630", + "release_date": "2019-11-16", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color ASV TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2019/aquos-sense3-dual-sim-td-lte-jp-sh-m12.json b/data/smartphone/sharp/2019/aquos-sense3-dual-sim-td-lte-jp-sh-m12.json new file mode 100644 index 00000000000..39da1160db7 --- /dev/null +++ b/data/smartphone/sharp/2019/aquos-sense3-dual-sim-td-lte-jp-sh-m12.json @@ -0,0 +1,41 @@ +{ + "slug": "aquos-sense3-dual-sim-td-lte-jp-sh-m12", + "name": "Aquos Sense3 Dual SIM TD-LTE JP SH-M12", + "brand": "sharp", + "soc": "snapdragon-630", + "release_date": "2019-11-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color ASV TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2019/aquos-v-global-dual-sim-lte-sh-c02.json b/data/smartphone/sharp/2019/aquos-v-global-dual-sim-lte-sh-c02.json new file mode 100644 index 00000000000..50c905c0a5a --- /dev/null +++ b/data/smartphone/sharp/2019/aquos-v-global-dual-sim-lte-sh-c02.json @@ -0,0 +1,41 @@ +{ + "slug": "aquos-v-global-dual-sim-lte-sh-c02", + "name": "AQUOS V Global Dual SIM LTE SH-C02", + "brand": "sharp", + "soc": "snapdragon-835", + "release_date": "2019-12-07", + "ram_gb": 4.0, + "battery_mah": 3090, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.91, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 7.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Indonesia , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/sharp/2019/aquos-zero-td-lte-apac-sh-z10.json b/data/smartphone/sharp/2019/aquos-zero-td-lte-apac-sh-z10.json new file mode 100644 index 00000000000..380a64426a6 --- /dev/null +++ b/data/smartphone/sharp/2019/aquos-zero-td-lte-apac-sh-z10.json @@ -0,0 +1,41 @@ +{ + "slug": "aquos-zero-td-lte-apac-sh-z10", + "name": "AQUOS zero TD-LTE APAC SH-Z10", + "brand": "sharp", + "soc": "snapdragon-845", + "release_date": "2019-01-16", + "ram_gb": 6.0, + "battery_mah": 3130, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1440x2992", + "type": "AM-OLED display", + "ppi": 536 + }, + "cameras": [ + { + "type": "main", + "mp": 22.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan , Taiwan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2019/aquos-zero-td-lte-jp-sh-m10.json b/data/smartphone/sharp/2019/aquos-zero-td-lte-jp-sh-m10.json new file mode 100644 index 00000000000..731d522e84a --- /dev/null +++ b/data/smartphone/sharp/2019/aquos-zero-td-lte-jp-sh-m10.json @@ -0,0 +1,41 @@ +{ + "slug": "aquos-zero-td-lte-jp-sh-m10", + "name": "AQUOS zero TD-LTE JP SH-M10", + "brand": "sharp", + "soc": "snapdragon-845", + "release_date": "2019-04-09", + "ram_gb": 6.0, + "battery_mah": 3130, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1440x2992", + "type": "AM-OLED display", + "ppi": 536 + }, + "cameras": [ + { + "type": "main", + "mp": 22.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2020/aquos-r5g-5g-td-lte-jp-908sh.json b/data/smartphone/sharp/2020/aquos-r5g-5g-td-lte-jp-908sh.json new file mode 100644 index 00000000000..fc4b71a4d2b --- /dev/null +++ b/data/smartphone/sharp/2020/aquos-r5g-5g-td-lte-jp-908sh.json @@ -0,0 +1,42 @@ +{ + "slug": "aquos-r5g-5g-td-lte-jp-908sh", + "name": "Aquos R5G 5G TD-LTE JP 908SH", + "brand": "sharp", + "soc": "snapdragon-865", + "release_date": "2020-03-27", + "ram_gb": 12.0, + "battery_mah": 3730, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "Color ASV TFT LCD display", + "ppi": 535 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2020/aquos-r5g-5g-td-lte-jp-sh-51a.json b/data/smartphone/sharp/2020/aquos-r5g-5g-td-lte-jp-sh-51a.json new file mode 100644 index 00000000000..da2b8f5c997 --- /dev/null +++ b/data/smartphone/sharp/2020/aquos-r5g-5g-td-lte-jp-sh-51a.json @@ -0,0 +1,42 @@ +{ + "slug": "aquos-r5g-5g-td-lte-jp-sh-51a", + "name": "Aquos R5G 5G TD-LTE JP SH-51A", + "brand": "sharp", + "soc": "snapdragon-865", + "release_date": "2020-03-26", + "ram_gb": 12.0, + "battery_mah": 3730, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "Color ASV TFT LCD display", + "ppi": 535 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2020/aquos-r5g-5g-td-lte-jp-sh-rm14.json b/data/smartphone/sharp/2020/aquos-r5g-5g-td-lte-jp-sh-rm14.json new file mode 100644 index 00000000000..e6c56ca4a3e --- /dev/null +++ b/data/smartphone/sharp/2020/aquos-r5g-5g-td-lte-jp-sh-rm14.json @@ -0,0 +1,42 @@ +{ + "slug": "aquos-r5g-5g-td-lte-jp-sh-rm14", + "name": "Aquos R5G 5G TD-LTE JP SH-RM14", + "brand": "sharp", + "soc": "snapdragon-865", + "release_date": "2020-06-19", + "ram_gb": 12.0, + "battery_mah": 3730, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "Color ASV TFT LCD display", + "ppi": 535 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2020/aquos-r5g-5g-td-lte-jp-shg01.json b/data/smartphone/sharp/2020/aquos-r5g-5g-td-lte-jp-shg01.json new file mode 100644 index 00000000000..c76304689f7 --- /dev/null +++ b/data/smartphone/sharp/2020/aquos-r5g-5g-td-lte-jp-shg01.json @@ -0,0 +1,42 @@ +{ + "slug": "aquos-r5g-5g-td-lte-jp-shg01", + "name": "Aquos R5G 5G TD-LTE JP SHG01", + "brand": "sharp", + "soc": "snapdragon-865", + "release_date": "2020-04-01", + "ram_gb": 12.0, + "battery_mah": 3730, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "Color ASV TFT LCD display", + "ppi": 535 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2020/aquos-r5g-global-td-lte-sh-r50.json b/data/smartphone/sharp/2020/aquos-r5g-global-td-lte-sh-r50.json new file mode 100644 index 00000000000..3735a7e0375 --- /dev/null +++ b/data/smartphone/sharp/2020/aquos-r5g-global-td-lte-sh-r50.json @@ -0,0 +1,42 @@ +{ + "slug": "aquos-r5g-global-td-lte-sh-r50", + "name": "Aquos R5G Global TD-LTE SH-R50", + "brand": "sharp", + "soc": "snapdragon-865", + "release_date": "2020-07-06", + "ram_gb": 12.0, + "battery_mah": 3730, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "Color ASV TFT LCD display", + "ppi": 535 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Taiwan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2020/aquos-sense3-basic-wimax-2-shv48.json b/data/smartphone/sharp/2020/aquos-sense3-basic-wimax-2-shv48.json new file mode 100644 index 00000000000..54161508b80 --- /dev/null +++ b/data/smartphone/sharp/2020/aquos-sense3-basic-wimax-2-shv48.json @@ -0,0 +1,41 @@ +{ + "slug": "aquos-sense3-basic-wimax-2-shv48", + "name": "Aquos Sense3 basic WiMAX 2+ SHV48", + "brand": "sharp", + "soc": "snapdragon-630", + "release_date": "2020-06-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color ASV TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2020/aquos-zero2-global-dual-sim-td-lte-sh-m13.json b/data/smartphone/sharp/2020/aquos-zero2-global-dual-sim-td-lte-sh-m13.json new file mode 100644 index 00000000000..ba22a45acc0 --- /dev/null +++ b/data/smartphone/sharp/2020/aquos-zero2-global-dual-sim-td-lte-sh-m13.json @@ -0,0 +1,42 @@ +{ + "slug": "aquos-zero2-global-dual-sim-td-lte-sh-m13", + "name": "AQUOS zero2 Global Dual SIM TD-LTE SH-M13", + "brand": "sharp", + "soc": "snapdragon-855", + "release_date": "2020-03-13", + "ram_gb": 8.0, + "battery_mah": 3130, + "weight_g": 141.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan , Singapore , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/sharp/2020/aquos-zero2-td-lte-jp-sh-01m.json b/data/smartphone/sharp/2020/aquos-zero2-td-lte-jp-sh-01m.json new file mode 100644 index 00000000000..4105a55161a --- /dev/null +++ b/data/smartphone/sharp/2020/aquos-zero2-td-lte-jp-sh-01m.json @@ -0,0 +1,42 @@ +{ + "slug": "aquos-zero2-td-lte-jp-sh-01m", + "name": "AQUOS zero2 TD-LTE JP SH-01M", + "brand": "sharp", + "soc": "snapdragon-855", + "release_date": "2020-01-01", + "ram_gb": 8.0, + "battery_mah": 3130, + "weight_g": 143.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2020/aquos-zero2-td-lte-jp-softbank.json b/data/smartphone/sharp/2020/aquos-zero2-td-lte-jp-softbank.json new file mode 100644 index 00000000000..a72656a32a4 --- /dev/null +++ b/data/smartphone/sharp/2020/aquos-zero2-td-lte-jp-softbank.json @@ -0,0 +1,42 @@ +{ + "slug": "aquos-zero2-td-lte-jp-softbank", + "name": "AQUOS zero2 TD-LTE JP SoftBank", + "brand": "sharp", + "soc": "snapdragon-855", + "release_date": "2020-01-01", + "ram_gb": 8.0, + "battery_mah": 3130, + "weight_g": 143.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2020/aquos-zero2-wimax-2-shv47.json b/data/smartphone/sharp/2020/aquos-zero2-wimax-2-shv47.json new file mode 100644 index 00000000000..589e4fa34fd --- /dev/null +++ b/data/smartphone/sharp/2020/aquos-zero2-wimax-2-shv47.json @@ -0,0 +1,42 @@ +{ + "slug": "aquos-zero2-wimax-2-shv47", + "name": "AQUOS zero2 WiMAX 2+ SHV47", + "brand": "sharp", + "soc": "snapdragon-855", + "release_date": "2020-01-01", + "ram_gb": 8.0, + "battery_mah": 3130, + "weight_g": 143.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2020/aquos-zero5g-basic-dx-td-lte-jp-128gb-shg02.json b/data/smartphone/sharp/2020/aquos-zero5g-basic-dx-td-lte-jp-128gb-shg02.json new file mode 100644 index 00000000000..ab702cf2d7e --- /dev/null +++ b/data/smartphone/sharp/2020/aquos-zero5g-basic-dx-td-lte-jp-128gb-shg02.json @@ -0,0 +1,42 @@ +{ + "slug": "aquos-zero5g-basic-dx-td-lte-jp-128gb-shg02", + "name": "Aquos Zero5G basic DX TD-LTE JP 128GB SHG02", + "brand": "sharp", + "soc": "snapdragon-765", + "release_date": "2020-09-19", + "ram_gb": 8.0, + "battery_mah": 3730, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "refresh_hz": 240, + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2020/aquos-zero5g-basic-td-lte-jp-64gb-a002sh.json b/data/smartphone/sharp/2020/aquos-zero5g-basic-td-lte-jp-64gb-a002sh.json new file mode 100644 index 00000000000..c0adf77316a --- /dev/null +++ b/data/smartphone/sharp/2020/aquos-zero5g-basic-td-lte-jp-64gb-a002sh.json @@ -0,0 +1,42 @@ +{ + "slug": "aquos-zero5g-basic-td-lte-jp-64gb-a002sh", + "name": "Aquos Zero5G basic TD-LTE JP 64GB A002SH", + "brand": "sharp", + "soc": "snapdragon-765", + "release_date": "2020-10-09", + "ram_gb": 6.0, + "battery_mah": 3730, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "refresh_hz": 240, + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2021/aquos-r6-5g-td-lte-jp-a101sh.json b/data/smartphone/sharp/2021/aquos-r6-5g-td-lte-jp-a101sh.json new file mode 100644 index 00000000000..d00b7a094bb --- /dev/null +++ b/data/smartphone/sharp/2021/aquos-r6-5g-td-lte-jp-a101sh.json @@ -0,0 +1,42 @@ +{ + "slug": "aquos-r6-5g-td-lte-jp-a101sh", + "name": "Aquos R6 5G TD-LTE JP A101SH", + "brand": "sharp", + "soc": "snapdragon-888", + "release_date": "2021-06-24", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 207.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1260x2730", + "refresh_hz": 240, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 20.1 + }, + { + "type": "selfie", + "mp": 12.6 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2021/aquos-r6-5g-td-lte-jp-sh-m22.json b/data/smartphone/sharp/2021/aquos-r6-5g-td-lte-jp-sh-m22.json new file mode 100644 index 00000000000..6c8140fc232 --- /dev/null +++ b/data/smartphone/sharp/2021/aquos-r6-5g-td-lte-jp-sh-m22.json @@ -0,0 +1,42 @@ +{ + "slug": "aquos-r6-5g-td-lte-jp-sh-m22", + "name": "Aquos R6 5G TD-LTE JP SH-M22", + "brand": "sharp", + "soc": "snapdragon-888", + "release_date": "2021-09-24", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 207.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1260x2730", + "refresh_hz": 240, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 20.1 + }, + { + "type": "selfie", + "mp": 12.6 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2021/aquos-r6-5g-uw-td-lte-jp-sh-51b.json b/data/smartphone/sharp/2021/aquos-r6-5g-uw-td-lte-jp-sh-51b.json new file mode 100644 index 00000000000..07f4cf16fac --- /dev/null +++ b/data/smartphone/sharp/2021/aquos-r6-5g-uw-td-lte-jp-sh-51b.json @@ -0,0 +1,42 @@ +{ + "slug": "aquos-r6-5g-uw-td-lte-jp-sh-51b", + "name": "Aquos R6 5G UW TD-LTE JP SH-51B", + "brand": "sharp", + "soc": "snapdragon-888", + "release_date": "2021-06-24", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 207.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1260x2730", + "refresh_hz": 240, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 20.1 + }, + { + "type": "selfie", + "mp": 12.6 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2021/aquos-sense-6-5g-td-lte-jp-128gb-sh-m19.json b/data/smartphone/sharp/2021/aquos-sense-6-5g-td-lte-jp-128gb-sh-m19.json new file mode 100644 index 00000000000..377c005cd59 --- /dev/null +++ b/data/smartphone/sharp/2021/aquos-sense-6-5g-td-lte-jp-128gb-sh-m19.json @@ -0,0 +1,42 @@ +{ + "slug": "aquos-sense-6-5g-td-lte-jp-128gb-sh-m19", + "name": "Aquos Sense 6 5G TD-LTE JP 128GB SH-M19", + "brand": "sharp", + "soc": "snapdragon-690", + "release_date": "2021-11-26", + "ram_gb": 6.0, + "battery_mah": 4570, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2432", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 436 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2021/aquos-sense-6-5g-td-lte-jp-64gb-sh-54b.json b/data/smartphone/sharp/2021/aquos-sense-6-5g-td-lte-jp-64gb-sh-54b.json new file mode 100644 index 00000000000..240655ebc5f --- /dev/null +++ b/data/smartphone/sharp/2021/aquos-sense-6-5g-td-lte-jp-64gb-sh-54b.json @@ -0,0 +1,42 @@ +{ + "slug": "aquos-sense-6-5g-td-lte-jp-64gb-sh-54b", + "name": "Aquos Sense 6 5G TD-LTE JP 64GB SH-54B", + "brand": "sharp", + "soc": "snapdragon-690", + "release_date": "2021-11-04", + "ram_gb": 4.0, + "battery_mah": 4570, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2432", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 436 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2021/aquos-sense-6-5g-td-lte-jp-64gb-sh-m19.json b/data/smartphone/sharp/2021/aquos-sense-6-5g-td-lte-jp-64gb-sh-m19.json new file mode 100644 index 00000000000..70ca9b591c8 --- /dev/null +++ b/data/smartphone/sharp/2021/aquos-sense-6-5g-td-lte-jp-64gb-sh-m19.json @@ -0,0 +1,42 @@ +{ + "slug": "aquos-sense-6-5g-td-lte-jp-64gb-sh-m19", + "name": "Aquos Sense 6 5G TD-LTE JP 64GB SH-M19", + "brand": "sharp", + "soc": "snapdragon-690", + "release_date": "2021-11-26", + "ram_gb": 4.0, + "battery_mah": 4570, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2432", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 436 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2021/aquos-sense-6-5g-td-lte-jp-64gb-sh-rm19.json b/data/smartphone/sharp/2021/aquos-sense-6-5g-td-lte-jp-64gb-sh-rm19.json new file mode 100644 index 00000000000..d98c834d438 --- /dev/null +++ b/data/smartphone/sharp/2021/aquos-sense-6-5g-td-lte-jp-64gb-sh-rm19.json @@ -0,0 +1,42 @@ +{ + "slug": "aquos-sense-6-5g-td-lte-jp-64gb-sh-rm19", + "name": "Aquos Sense 6 5G TD-LTE JP 64GB SH-RM19", + "brand": "sharp", + "soc": "snapdragon-690", + "release_date": "2021-11-04", + "ram_gb": 4.0, + "battery_mah": 4570, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2432", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 436 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2021/aquos-sense-6-5g-td-lte-jp-64gb-shg05.json b/data/smartphone/sharp/2021/aquos-sense-6-5g-td-lte-jp-64gb-shg05.json new file mode 100644 index 00000000000..572c3789621 --- /dev/null +++ b/data/smartphone/sharp/2021/aquos-sense-6-5g-td-lte-jp-64gb-shg05.json @@ -0,0 +1,42 @@ +{ + "slug": "aquos-sense-6-5g-td-lte-jp-64gb-shg05", + "name": "Aquos Sense 6 5G TD-LTE JP 64GB SHG05", + "brand": "sharp", + "soc": "snapdragon-690", + "release_date": "2021-11-04", + "ram_gb": 4.0, + "battery_mah": 4570, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2432", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 436 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sharp/2021/leica-leitz-phone-1-5g-td-lte-jp-lp-01.json b/data/smartphone/sharp/2021/leica-leitz-phone-1-5g-td-lte-jp-lp-01.json new file mode 100644 index 00000000000..4f76bb9440a --- /dev/null +++ b/data/smartphone/sharp/2021/leica-leitz-phone-1-5g-td-lte-jp-lp-01.json @@ -0,0 +1,42 @@ +{ + "slug": "leica-leitz-phone-1-5g-td-lte-jp-lp-01", + "name": "Leica Leitz Phone 1 5G TD-LTE JP LP-01", + "brand": "sharp", + "soc": "snapdragon-888", + "release_date": "2021-07-14", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 212.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.57, + "resolution": "1260x2730", + "refresh_hz": 240, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 20.1 + }, + { + "type": "selfie", + "mp": 12.6 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/smartisan/2018/jianguo-3-dual-sim-td-lte-cn-128gb.json b/data/smartphone/smartisan/2018/jianguo-3-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..e9dda75ddd5 --- /dev/null +++ b/data/smartphone/smartisan/2018/jianguo-3-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "jianguo-3-dual-sim-td-lte-cn-128gb", + "name": "JianGuo 3 Dual SIM TD-LTE CN 128GB", + "brand": "smartisan", + "soc": "snapdragon-625", + "release_date": "2018-04-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 154.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/smartisan/2018/jianguo-pro-2-premium-edition-dual-sim-td-lte-cn-256gb.json b/data/smartphone/smartisan/2018/jianguo-pro-2-premium-edition-dual-sim-td-lte-cn-256gb.json new file mode 100644 index 00000000000..fcf27e58f2c --- /dev/null +++ b/data/smartphone/smartisan/2018/jianguo-pro-2-premium-edition-dual-sim-td-lte-cn-256gb.json @@ -0,0 +1,41 @@ +{ + "slug": "jianguo-pro-2-premium-edition-dual-sim-td-lte-cn-256gb", + "name": "JianGuo Pro 2 Premium Edition Dual SIM TD-LTE CN 256GB", + "brand": "smartisan", + "soc": "snapdragon-660", + "release_date": "2018-10-01", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/smartisan/2018/jianguo-pro-2-standard-edition-dual-sim-td-lte-cn-64gb.json b/data/smartphone/smartisan/2018/jianguo-pro-2-standard-edition-dual-sim-td-lte-cn-64gb.json new file mode 100644 index 00000000000..96f76b4fdd9 --- /dev/null +++ b/data/smartphone/smartisan/2018/jianguo-pro-2-standard-edition-dual-sim-td-lte-cn-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "jianguo-pro-2-standard-edition-dual-sim-td-lte-cn-64gb", + "name": "JianGuo Pro 2 Standard Edition Dual SIM TD-LTE CN 64GB", + "brand": "smartisan", + "soc": "snapdragon-660", + "release_date": "2018-10-01", + "ram_gb": 4.0, + "battery_mah": 3500, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/smartisan/2018/jianguo-pro-2s-premium-edition-dual-sim-td-lte-cn-64gb.json b/data/smartphone/smartisan/2018/jianguo-pro-2s-premium-edition-dual-sim-td-lte-cn-64gb.json new file mode 100644 index 00000000000..e489efc901d --- /dev/null +++ b/data/smartphone/smartisan/2018/jianguo-pro-2s-premium-edition-dual-sim-td-lte-cn-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "jianguo-pro-2s-premium-edition-dual-sim-td-lte-cn-64gb", + "name": "JianGuo Pro 2s Premium Edition Dual SIM TD-LTE CN 64GB", + "brand": "smartisan", + "soc": "snapdragon-710", + "release_date": "2018-10-01", + "ram_gb": 6.0, + "battery_mah": 3600, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.01, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/smartisan/2018/jianguo-pro-2s-standard-edition-dual-sim-td-lte-cn-64gb.json b/data/smartphone/smartisan/2018/jianguo-pro-2s-standard-edition-dual-sim-td-lte-cn-64gb.json new file mode 100644 index 00000000000..f0c01cc9397 --- /dev/null +++ b/data/smartphone/smartisan/2018/jianguo-pro-2s-standard-edition-dual-sim-td-lte-cn-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "jianguo-pro-2s-standard-edition-dual-sim-td-lte-cn-64gb", + "name": "JianGuo Pro 2s Standard Edition Dual SIM TD-LTE CN 64GB", + "brand": "smartisan", + "soc": "snapdragon-710", + "release_date": "2018-10-01", + "ram_gb": 4.0, + "battery_mah": 3600, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.01, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/smartisan/2018/jianguo-r1-premium-edition-dual-sim-td-lte-cn-128gb.json b/data/smartphone/smartisan/2018/jianguo-r1-premium-edition-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..bf28d06d800 --- /dev/null +++ b/data/smartphone/smartisan/2018/jianguo-r1-premium-edition-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "jianguo-r1-premium-edition-dual-sim-td-lte-cn-128gb", + "name": "JianGuo R1 Premium Edition Dual SIM TD-LTE CN 128GB", + "brand": "smartisan", + "soc": "snapdragon-845", + "release_date": "2018-05-01", + "ram_gb": 8.0, + "battery_mah": 3600, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.17, + "resolution": "1080x2242", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/smartisan/2018/jianguo-r1-premium-edition-dual-sim-td-lte-cn-1tb.json b/data/smartphone/smartisan/2018/jianguo-r1-premium-edition-dual-sim-td-lte-cn-1tb.json new file mode 100644 index 00000000000..5640e486d75 --- /dev/null +++ b/data/smartphone/smartisan/2018/jianguo-r1-premium-edition-dual-sim-td-lte-cn-1tb.json @@ -0,0 +1,41 @@ +{ + "slug": "jianguo-r1-premium-edition-dual-sim-td-lte-cn-1tb", + "name": "JianGuo R1 Premium Edition Dual SIM TD-LTE CN 1TB", + "brand": "smartisan", + "soc": "snapdragon-845", + "release_date": "2018-05-01", + "ram_gb": 8.0, + "battery_mah": 3600, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.17, + "resolution": "1080x2242", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/smartisan/2018/jianguo-r1-premium-edition-dual-sim-td-lte-cn-512gb.json b/data/smartphone/smartisan/2018/jianguo-r1-premium-edition-dual-sim-td-lte-cn-512gb.json new file mode 100644 index 00000000000..5cf508dc64b --- /dev/null +++ b/data/smartphone/smartisan/2018/jianguo-r1-premium-edition-dual-sim-td-lte-cn-512gb.json @@ -0,0 +1,41 @@ +{ + "slug": "jianguo-r1-premium-edition-dual-sim-td-lte-cn-512gb", + "name": "JianGuo R1 Premium Edition Dual SIM TD-LTE CN 512GB", + "brand": "smartisan", + "soc": "snapdragon-845", + "release_date": "2018-05-01", + "ram_gb": 8.0, + "battery_mah": 3600, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.17, + "resolution": "1080x2242", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/smartisan/2018/jianguo-r1-standard-edition-dual-sim-td-lte-cn-128gb.json b/data/smartphone/smartisan/2018/jianguo-r1-standard-edition-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..588cd0bbb82 --- /dev/null +++ b/data/smartphone/smartisan/2018/jianguo-r1-standard-edition-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "jianguo-r1-standard-edition-dual-sim-td-lte-cn-128gb", + "name": "JianGuo R1 Standard Edition Dual SIM TD-LTE CN 128GB", + "brand": "smartisan", + "soc": "snapdragon-845", + "release_date": "2018-05-01", + "ram_gb": 6.0, + "battery_mah": 3600, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.17, + "resolution": "1080x2242", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/smartisan/2018/jianguo-r1-standard-edition-dual-sim-td-lte-cn-64gb.json b/data/smartphone/smartisan/2018/jianguo-r1-standard-edition-dual-sim-td-lte-cn-64gb.json new file mode 100644 index 00000000000..3c80eae8e45 --- /dev/null +++ b/data/smartphone/smartisan/2018/jianguo-r1-standard-edition-dual-sim-td-lte-cn-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "jianguo-r1-standard-edition-dual-sim-td-lte-cn-64gb", + "name": "JianGuo R1 Standard Edition Dual SIM TD-LTE CN 64GB", + "brand": "smartisan", + "soc": "snapdragon-845", + "release_date": "2018-05-01", + "ram_gb": 6.0, + "battery_mah": 3600, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.17, + "resolution": "1080x2242", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/smartisan/2020/jianguo-pro-3-standard-edition-dual-sim-td-lte-cn-128gb.json b/data/smartphone/smartisan/2020/jianguo-pro-3-standard-edition-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..168ddee8517 --- /dev/null +++ b/data/smartphone/smartisan/2020/jianguo-pro-3-standard-edition-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "jianguo-pro-3-standard-edition-dual-sim-td-lte-cn-128gb", + "name": "JianGuo Pro 3 Standard Edition Dual SIM TD-LTE CN 128GB", + "brand": "smartisan", + "soc": "snapdragon-855-plus", + "release_date": "2020-01-28", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/smartisan/2020/jianguo-pro-3-standard-edition-dual-sim-td-lte-cn-256gb.json b/data/smartphone/smartisan/2020/jianguo-pro-3-standard-edition-dual-sim-td-lte-cn-256gb.json new file mode 100644 index 00000000000..724711c338d --- /dev/null +++ b/data/smartphone/smartisan/2020/jianguo-pro-3-standard-edition-dual-sim-td-lte-cn-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "jianguo-pro-3-standard-edition-dual-sim-td-lte-cn-256gb", + "name": "JianGuo Pro 3 Standard Edition Dual SIM TD-LTE CN 256GB", + "brand": "smartisan", + "soc": "snapdragon-855-plus", + "release_date": "2020-01-28", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/smartisan/2020/jianguo-pro-3-standard-edition-dual-sim-td-lte-cn.json b/data/smartphone/smartisan/2020/jianguo-pro-3-standard-edition-dual-sim-td-lte-cn.json new file mode 100644 index 00000000000..e99fb5d6efb --- /dev/null +++ b/data/smartphone/smartisan/2020/jianguo-pro-3-standard-edition-dual-sim-td-lte-cn.json @@ -0,0 +1,42 @@ +{ + "slug": "jianguo-pro-3-standard-edition-dual-sim-td-lte-cn", + "name": "JianGuo Pro 3 Standard Edition Dual SIM TD-LTE CN", + "brand": "smartisan", + "soc": "snapdragon-855-plus", + "release_date": "2020-01-28", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/smartisan/2020/jianguo-r2-premium-edition-dual-sim-td-lte-cn-256gb.json b/data/smartphone/smartisan/2020/jianguo-r2-premium-edition-dual-sim-td-lte-cn-256gb.json new file mode 100644 index 00000000000..2ff0c5fb189 --- /dev/null +++ b/data/smartphone/smartisan/2020/jianguo-r2-premium-edition-dual-sim-td-lte-cn-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "jianguo-r2-premium-edition-dual-sim-td-lte-cn-256gb", + "name": "JianGuo R2 Premium Edition Dual SIM TD-LTE CN 256GB", + "brand": "smartisan", + "soc": "snapdragon-865", + "release_date": "2020-10-01", + "ram_gb": 12.0, + "battery_mah": 4510, + "weight_g": 216.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/smartisan/2020/jianguo-r2-standard-edition-dual-sim-td-lte-cn-128gb.json b/data/smartphone/smartisan/2020/jianguo-r2-standard-edition-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..9ba06b4fa76 --- /dev/null +++ b/data/smartphone/smartisan/2020/jianguo-r2-standard-edition-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,44 @@ +{ + "slug": "jianguo-r2-standard-edition-dual-sim-td-lte-cn-128gb", + "name": "JianGuo R2 Standard Edition Dual SIM TD-LTE CN 128GB", + "brand": "smartisan", + "soc": "snapdragon-865", + "release_date": "2020-10-01", + "ram_gb": 8.0, + "battery_mah": 4510, + "weight_g": 216.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 4499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/smartisan/2020/jianguo-r2-standard-edition-dual-sim-td-lte-cn-256gb.json b/data/smartphone/smartisan/2020/jianguo-r2-standard-edition-dual-sim-td-lte-cn-256gb.json new file mode 100644 index 00000000000..42c5596c357 --- /dev/null +++ b/data/smartphone/smartisan/2020/jianguo-r2-standard-edition-dual-sim-td-lte-cn-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "jianguo-r2-standard-edition-dual-sim-td-lte-cn-256gb", + "name": "JianGuo R2 Standard Edition Dual SIM TD-LTE CN 256GB", + "brand": "smartisan", + "soc": "snapdragon-865", + "release_date": "2020-10-01", + "ram_gb": 8.0, + "battery_mah": 4510, + "weight_g": 216.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 4799, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/smartisan/2020/jianguo-r2-top-edition-dual-sim-td-lte-cn-512gb.json b/data/smartphone/smartisan/2020/jianguo-r2-top-edition-dual-sim-td-lte-cn-512gb.json new file mode 100644 index 00000000000..6553d21edd2 --- /dev/null +++ b/data/smartphone/smartisan/2020/jianguo-r2-top-edition-dual-sim-td-lte-cn-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "jianguo-r2-top-edition-dual-sim-td-lte-cn-512gb", + "name": "JianGuo R2 Top Edition Dual SIM TD-LTE CN 512GB", + "brand": "smartisan", + "soc": "snapdragon-865", + "release_date": "2020-10-01", + "ram_gb": 16.0, + "battery_mah": 4510, + "weight_g": 216.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2018/xperia-xa2-dual-sim-td-lte-emea-h4113.json b/data/smartphone/sony/2018/xperia-xa2-dual-sim-td-lte-emea-h4113.json new file mode 100644 index 00000000000..61ba95f271e --- /dev/null +++ b/data/smartphone/sony/2018/xperia-xa2-dual-sim-td-lte-emea-h4113.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-xa2-dual-sim-td-lte-emea-h4113", + "name": "Xperia XA2 Dual SIM TD-LTE EMEA H4113", + "brand": "sony", + "soc": "snapdragon-630", + "release_date": "2018-02-01", + "ram_gb": 3.0, + "battery_mah": 3300, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.2, + "resolution": "1080x1920", + "type": "Color TN-TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 22.9 + }, + { + "type": "selfie", + "mp": 7.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bulgaria , Czech , Germany , Hungary , Italy , Poland , Russia , Slovakia , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/sony/2018/xperia-xa2-dual-sim-td-lte-h4133.json b/data/smartphone/sony/2018/xperia-xa2-dual-sim-td-lte-h4133.json new file mode 100644 index 00000000000..45d1f7212cf --- /dev/null +++ b/data/smartphone/sony/2018/xperia-xa2-dual-sim-td-lte-h4133.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-xa2-dual-sim-td-lte-h4133", + "name": "Xperia XA2 Dual SIM TD-LTE H4133", + "brand": "sony", + "soc": "snapdragon-630", + "release_date": "2018-04-01", + "ram_gb": 3.0, + "battery_mah": 3300, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.2, + "resolution": "1080x1920", + "type": "Color TN-TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 22.9 + }, + { + "type": "selfie", + "mp": 7.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil", + "market_regions": "South America" +} diff --git a/data/smartphone/sony/2018/xperia-xa2-lte-a-na-h3123.json b/data/smartphone/sony/2018/xperia-xa2-lte-a-na-h3123.json new file mode 100644 index 00000000000..d220610626d --- /dev/null +++ b/data/smartphone/sony/2018/xperia-xa2-lte-a-na-h3123.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-xa2-lte-a-na-h3123", + "name": "Xperia XA2 LTE-A NA H3123", + "brand": "sony", + "soc": "snapdragon-630", + "release_date": "2018-02-01", + "ram_gb": 3.0, + "battery_mah": 3300, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.2, + "resolution": "1080x1920", + "type": "Color TN-TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 22.9 + }, + { + "type": "selfie", + "mp": 7.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/sony/2018/xperia-xa2-plus-dual-sim-td-lte-64gb-apac-h4493.json b/data/smartphone/sony/2018/xperia-xa2-plus-dual-sim-td-lte-64gb-apac-h4493.json new file mode 100644 index 00000000000..d162e3c8798 --- /dev/null +++ b/data/smartphone/sony/2018/xperia-xa2-plus-dual-sim-td-lte-64gb-apac-h4493.json @@ -0,0 +1,42 @@ +{ + "slug": "xperia-xa2-plus-dual-sim-td-lte-64gb-apac-h4493", + "name": "Xperia XA2 Plus Dual SIM TD-LTE 64GB APAC H4493", + "brand": "sony", + "soc": "snapdragon-630", + "release_date": "2018-08-22", + "ram_gb": 6.0, + "battery_mah": 3580, + "weight_g": 204.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 22.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , Japan , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/sony/2018/xperia-xa2-plus-global-dual-sim-td-lte-32gb-h4413.json b/data/smartphone/sony/2018/xperia-xa2-plus-global-dual-sim-td-lte-32gb-h4413.json new file mode 100644 index 00000000000..ff49ebb6357 --- /dev/null +++ b/data/smartphone/sony/2018/xperia-xa2-plus-global-dual-sim-td-lte-32gb-h4413.json @@ -0,0 +1,42 @@ +{ + "slug": "xperia-xa2-plus-global-dual-sim-td-lte-32gb-h4413", + "name": "Xperia XA2 Plus Global Dual SIM TD-LTE 32GB H4413", + "brand": "sony", + "soc": "snapdragon-630", + "release_date": "2018-08-01", + "ram_gb": 4.0, + "battery_mah": 3580, + "weight_g": 204.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 22.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belgium , Cyprus , Germany , Greece , Hungary , Italy , Malaysia , Netherlands , Philippines , Poland , Portugal , Romania , Russia , Spain , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/sony/2018/xperia-xa2-plus-global-td-lte-32gb-h3413.json b/data/smartphone/sony/2018/xperia-xa2-plus-global-td-lte-32gb-h3413.json new file mode 100644 index 00000000000..ee07dfe5656 --- /dev/null +++ b/data/smartphone/sony/2018/xperia-xa2-plus-global-td-lte-32gb-h3413.json @@ -0,0 +1,43 @@ +{ + "slug": "xperia-xa2-plus-global-td-lte-32gb-h3413", + "name": "Xperia XA2 Plus Global TD-LTE 32GB H3413", + "brand": "sony", + "soc": "snapdragon-630", + "release_date": "2018-08-22", + "ram_gb": 4.0, + "battery_mah": 3580, + "weight_g": 204.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 22.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 239, + "market_countries": "Belgium , Cyprus , France , Germany , Greece , Hungary , Italy , Netherlands , Portugal , Romania , Spain , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/sony/2018/xperia-xa2-td-lte-h3133.json b/data/smartphone/sony/2018/xperia-xa2-td-lte-h3133.json new file mode 100644 index 00000000000..d3945447fec --- /dev/null +++ b/data/smartphone/sony/2018/xperia-xa2-td-lte-h3133.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-xa2-td-lte-h3133", + "name": "Xperia XA2 TD-LTE H3133", + "brand": "sony", + "soc": "snapdragon-630", + "release_date": "2018-03-01", + "ram_gb": 3.0, + "battery_mah": 3300, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.2, + "resolution": "1080x1920", + "type": "Color TN-TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 22.9 + }, + { + "type": "selfie", + "mp": 7.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Australia , Chile , Mexico", + "market_regions": "Asia , Australia , North America , South America , Southeast Asia" +} diff --git a/data/smartphone/sony/2018/xperia-xa2-ultra-lte-a-am-h3223.json b/data/smartphone/sony/2018/xperia-xa2-ultra-lte-a-am-h3223.json new file mode 100644 index 00000000000..783fb8265cf --- /dev/null +++ b/data/smartphone/sony/2018/xperia-xa2-ultra-lte-a-am-h3223.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-xa2-ultra-lte-a-am-h3223", + "name": "Xperia XA2 Ultra LTE-A AM H3223", + "brand": "sony", + "soc": "snapdragon-630", + "release_date": "2018-02-01", + "ram_gb": 4.0, + "battery_mah": 3580, + "weight_g": 221.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x1920", + "type": "Color TN-TFT LCD display", + "ppi": 367 + }, + "cameras": [ + { + "type": "main", + "mp": 22.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , USA", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/sony/2018/xperia-xa2-ultra-td-lte-emea-h3213-sm22.json b/data/smartphone/sony/2018/xperia-xa2-ultra-td-lte-emea-h3213-sm22.json new file mode 100644 index 00000000000..29b6e53c204 --- /dev/null +++ b/data/smartphone/sony/2018/xperia-xa2-ultra-td-lte-emea-h3213-sm22.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-xa2-ultra-td-lte-emea-h3213-sm22", + "name": "Xperia XA2 Ultra TD-LTE EMEA H3213 / SM22", + "brand": "sony", + "soc": "snapdragon-630", + "release_date": "2018-02-01", + "ram_gb": 4.0, + "battery_mah": 3580, + "weight_g": 221.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x1920", + "type": "Color TN-TFT LCD display", + "ppi": 367 + }, + "cameras": [ + { + "type": "main", + "mp": 22.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Czech , Denmark , Finland , France , Germany , Hungary , Ireland , Italy , Portugal , Spain , Sweden , UAE , UK", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/sony/2018/xperia-xz2-compact-global-dual-sim-td-lte-h8324.json b/data/smartphone/sony/2018/xperia-xz2-compact-global-dual-sim-td-lte-h8324.json new file mode 100644 index 00000000000..a04da6a0deb --- /dev/null +++ b/data/smartphone/sony/2018/xperia-xz2-compact-global-dual-sim-td-lte-h8324.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-xz2-compact-global-dual-sim-td-lte-h8324", + "name": "Xperia XZ2 Compact Global Dual SIM TD-LTE H8324", + "brand": "sony", + "soc": "snapdragon-845", + "release_date": "2018-04-01", + "ram_gb": 4.0, + "battery_mah": 2870, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.96, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 487 + }, + "cameras": [ + { + "type": "main", + "mp": 19.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "HK , Japan , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/sony/2018/xperia-xz2-compact-global-td-lte-h8314-pf32.json b/data/smartphone/sony/2018/xperia-xz2-compact-global-td-lte-h8314-pf32.json new file mode 100644 index 00000000000..66648d10afb --- /dev/null +++ b/data/smartphone/sony/2018/xperia-xz2-compact-global-td-lte-h8314-pf32.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-xz2-compact-global-td-lte-h8314-pf32", + "name": "Xperia XZ2 Compact Global TD-LTE H8314 / PF32", + "brand": "sony", + "soc": "snapdragon-845", + "release_date": "2018-04-06", + "ram_gb": 4.0, + "battery_mah": 2870, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.96, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 487 + }, + "cameras": [ + { + "type": "main", + "mp": 19.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Cyprus , Czech , Denmark , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Netherlands , Norway , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , South Korea , Spain , Switzerland , Sweden , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/sony/2018/xperia-xz2-compact-global-td-lte-so-05k.json b/data/smartphone/sony/2018/xperia-xz2-compact-global-td-lte-so-05k.json new file mode 100644 index 00000000000..50e8d930dd3 --- /dev/null +++ b/data/smartphone/sony/2018/xperia-xz2-compact-global-td-lte-so-05k.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-xz2-compact-global-td-lte-so-05k", + "name": "Xperia XZ2 Compact Global TD-LTE SO-05K", + "brand": "sony", + "soc": "snapdragon-845", + "release_date": "2018-06-14", + "ram_gb": 4.0, + "battery_mah": 2760, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.96, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 487 + }, + "cameras": [ + { + "type": "main", + "mp": 19.2 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2018/xperia-xz2-dual-sim-td-lte-h8296.json b/data/smartphone/sony/2018/xperia-xz2-dual-sim-td-lte-h8296.json new file mode 100644 index 00000000000..f8e48b98363 --- /dev/null +++ b/data/smartphone/sony/2018/xperia-xz2-dual-sim-td-lte-h8296.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-xz2-dual-sim-td-lte-h8296", + "name": "Xperia XZ2 Dual SIM TD-LTE H8296", + "brand": "sony", + "soc": "snapdragon-845", + "release_date": "2018-03-21", + "ram_gb": 6.0, + "battery_mah": 3180, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 19.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , Taiwan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2018/xperia-xz2-premium-dual-sim-td-lte-h8166.json b/data/smartphone/sony/2018/xperia-xz2-premium-dual-sim-td-lte-h8166.json new file mode 100644 index 00000000000..f23fcffd187 --- /dev/null +++ b/data/smartphone/sony/2018/xperia-xz2-premium-dual-sim-td-lte-h8166.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-xz2-premium-dual-sim-td-lte-h8166", + "name": "Xperia XZ2 Premium Dual SIM TD-LTE H8166", + "brand": "sony", + "soc": "snapdragon-845", + "release_date": "2018-06-01", + "ram_gb": 6.0, + "battery_mah": 3540, + "weight_g": 236.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.79, + "resolution": "2160x3840", + "type": "Color IPS TFT LCD display", + "ppi": 761 + }, + "cameras": [ + { + "type": "main", + "mp": 19.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , Taiwan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2018/xperia-xz2-premium-td-lte-h8116-pf12.json b/data/smartphone/sony/2018/xperia-xz2-premium-td-lte-h8116-pf12.json new file mode 100644 index 00000000000..c4b953aa5d3 --- /dev/null +++ b/data/smartphone/sony/2018/xperia-xz2-premium-td-lte-h8116-pf12.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-xz2-premium-td-lte-h8116-pf12", + "name": "Xperia XZ2 Premium TD-LTE H8116 / PF12", + "brand": "sony", + "soc": "snapdragon-845", + "release_date": "2018-06-01", + "ram_gb": 6.0, + "battery_mah": 3540, + "weight_g": 236.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.79, + "resolution": "2160x3840", + "type": "Color IPS TFT LCD display", + "ppi": 761 + }, + "cameras": [ + { + "type": "main", + "mp": 19.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Bulgaria , Cyprus , France , Germany , Greece , Ireland , Italy , Netherlands , Portugal , Russia , Spain , Switzerland , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/sony/2018/xperia-xz2-premium-wimax-2-sov38.json b/data/smartphone/sony/2018/xperia-xz2-premium-wimax-2-sov38.json new file mode 100644 index 00000000000..9a30197983c --- /dev/null +++ b/data/smartphone/sony/2018/xperia-xz2-premium-wimax-2-sov38.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-xz2-premium-wimax-2-sov38", + "name": "Xperia XZ2 Premium WiMAX 2+ SOV38", + "brand": "sony", + "soc": "snapdragon-845", + "release_date": "2018-08-01", + "ram_gb": 6.0, + "battery_mah": 3540, + "weight_g": 236.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.79, + "resolution": "2160x3840", + "type": "Color IPS TFT LCD display", + "ppi": 761 + }, + "cameras": [ + { + "type": "main", + "mp": 19.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2018/xperia-xz2-td-lte-h8216-pf22.json b/data/smartphone/sony/2018/xperia-xz2-td-lte-h8216-pf22.json new file mode 100644 index 00000000000..65c7703d749 --- /dev/null +++ b/data/smartphone/sony/2018/xperia-xz2-td-lte-h8216-pf22.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-xz2-td-lte-h8216-pf22", + "name": "Xperia XZ2 TD-LTE H8216 / PF22", + "brand": "sony", + "soc": "snapdragon-845", + "release_date": "2018-04-06", + "ram_gb": 4.0, + "battery_mah": 3180, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 19.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Austria , Belgium , Bulgaria , Canada , Chile , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , India , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , South Korea , Spain , Sweden , Switzerland , UK", + "market_regions": "Asia , Eastern Europe , Europe , North America , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/sony/2018/xperia-xz2-td-lte-jp-702so.json b/data/smartphone/sony/2018/xperia-xz2-td-lte-jp-702so.json new file mode 100644 index 00000000000..5de0994ea9f --- /dev/null +++ b/data/smartphone/sony/2018/xperia-xz2-td-lte-jp-702so.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-xz2-td-lte-jp-702so", + "name": "Xperia XZ2 TD-LTE JP 702SO", + "brand": "sony", + "soc": "snapdragon-845", + "release_date": "2018-05-29", + "ram_gb": 4.0, + "battery_mah": 3060, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 19.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2018/xperia-xz2-td-lte-jp-so-03k.json b/data/smartphone/sony/2018/xperia-xz2-td-lte-jp-so-03k.json new file mode 100644 index 00000000000..286fb5efe99 --- /dev/null +++ b/data/smartphone/sony/2018/xperia-xz2-td-lte-jp-so-03k.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-xz2-td-lte-jp-so-03k", + "name": "Xperia XZ2 TD-LTE JP SO-03K", + "brand": "sony", + "soc": "snapdragon-845", + "release_date": "2018-05-31", + "ram_gb": 4.0, + "battery_mah": 3060, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 19.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2018/xperia-xz2-wimax-2-sov37.json b/data/smartphone/sony/2018/xperia-xz2-wimax-2-sov37.json new file mode 100644 index 00000000000..9ff6a2671c5 --- /dev/null +++ b/data/smartphone/sony/2018/xperia-xz2-wimax-2-sov37.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-xz2-wimax-2-sov37", + "name": "Xperia XZ2 WiMAX 2+ SOV37", + "brand": "sony", + "soc": "snapdragon-845", + "release_date": "2018-05-31", + "ram_gb": 4.0, + "battery_mah": 3060, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 19.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2018/xperia-xz3-dual-sim-td-lte-apac-h9493.json b/data/smartphone/sony/2018/xperia-xz3-dual-sim-td-lte-apac-h9493.json new file mode 100644 index 00000000000..015627c55e4 --- /dev/null +++ b/data/smartphone/sony/2018/xperia-xz3-dual-sim-td-lte-apac-h9493.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-xz3-dual-sim-td-lte-apac-h9493", + "name": "Xperia XZ3 Dual SIM TD-LTE APAC H9493", + "brand": "sony", + "soc": "snapdragon-845", + "release_date": "2018-10-04", + "ram_gb": 6.0, + "battery_mah": 3330, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.98, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 19.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/sony/2018/xperia-xz3-dual-sim-td-lte-emea-h9436.json b/data/smartphone/sony/2018/xperia-xz3-dual-sim-td-lte-emea-h9436.json new file mode 100644 index 00000000000..be7840c058b --- /dev/null +++ b/data/smartphone/sony/2018/xperia-xz3-dual-sim-td-lte-emea-h9436.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-xz3-dual-sim-td-lte-emea-h9436", + "name": "Xperia XZ3 Dual SIM TD-LTE EMEA H9436", + "brand": "sony", + "soc": "snapdragon-845", + "release_date": "2018-10-04", + "ram_gb": 4.0, + "battery_mah": 3330, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.98, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 19.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Cyprus , Finland , France , Greece , Norway , Poland , Russia , Slovakia , Slovenia , Sweden , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/sony/2018/xperia-xz3-global-td-lte-h8416-pf42.json b/data/smartphone/sony/2018/xperia-xz3-global-td-lte-h8416-pf42.json new file mode 100644 index 00000000000..1520ee35d29 --- /dev/null +++ b/data/smartphone/sony/2018/xperia-xz3-global-td-lte-h8416-pf42.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-xz3-global-td-lte-h8416-pf42", + "name": "Xperia XZ3 Global TD-LTE H8416 / PF42", + "brand": "sony", + "soc": "snapdragon-845", + "release_date": "2018-10-04", + "ram_gb": 4.0, + "battery_mah": 3330, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.98, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 19.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Austria , Belgium , Bulgaria , Canada , Chile , Cyprus , Croatia , Czech , Denmark , Estonia , France , Germany , Greece , Hungary , India , Ireland , Italy , Latvia , Lithuania , Netherlands , Portugal , Romania , Slovakia , South Korea , Spain , Switzerland , UK", + "market_regions": "Asia , Eastern Europe , Europe , North America , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/sony/2018/xperia-xz3-td-lte-jp-801so.json b/data/smartphone/sony/2018/xperia-xz3-td-lte-jp-801so.json new file mode 100644 index 00000000000..342f51459da --- /dev/null +++ b/data/smartphone/sony/2018/xperia-xz3-td-lte-jp-801so.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-xz3-td-lte-jp-801so", + "name": "Xperia XZ3 TD-LTE JP 801SO", + "brand": "sony", + "soc": "snapdragon-845", + "release_date": "2018-11-09", + "ram_gb": 4.0, + "battery_mah": 3330, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.98, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 19.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2018/xperia-xz3-td-lte-jp-so-01l.json b/data/smartphone/sony/2018/xperia-xz3-td-lte-jp-so-01l.json new file mode 100644 index 00000000000..7d9e84cf753 --- /dev/null +++ b/data/smartphone/sony/2018/xperia-xz3-td-lte-jp-so-01l.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-xz3-td-lte-jp-so-01l", + "name": "Xperia XZ3 TD-LTE JP SO-01L", + "brand": "sony", + "soc": "snapdragon-845", + "release_date": "2018-11-01", + "ram_gb": 4.0, + "battery_mah": 3330, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.98, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 19.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2018/xperia-xz3-wimax-2-jp-sov39.json b/data/smartphone/sony/2018/xperia-xz3-wimax-2-jp-sov39.json new file mode 100644 index 00000000000..12579029d17 --- /dev/null +++ b/data/smartphone/sony/2018/xperia-xz3-wimax-2-jp-sov39.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-xz3-wimax-2-jp-sov39", + "name": "Xperia XZ3 WiMAX 2+ JP SOV39", + "brand": "sony", + "soc": "snapdragon-845", + "release_date": "2018-11-09", + "ram_gb": 4.0, + "battery_mah": 3330, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.98, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 19.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2019/xperia-1-global-dual-sim-td-lte-j9110.json b/data/smartphone/sony/2019/xperia-1-global-dual-sim-td-lte-j9110.json new file mode 100644 index 00000000000..c4e91a9ba4d --- /dev/null +++ b/data/smartphone/sony/2019/xperia-1-global-dual-sim-td-lte-j9110.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-1-global-dual-sim-td-lte-j9110", + "name": "Xperia 1 Global Dual SIM TD-LTE J9110", + "brand": "sony", + "soc": "snapdragon-855", + "release_date": "2019-06-01", + "ram_gb": 6.0, + "battery_mah": 3330, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Bulgaria , Canada , China , Cyprus , Czech , Estonia , Finland , France , Greece , Germany , HK , Hungary , Ireland , Italy , Kuwait , Latvia , Lithuania , Malaysia , Norway , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Singapore , Slovenia , Spain , Sweden , Taiwan , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/sony/2019/xperia-1-global-td-lte-j8110-pf13.json b/data/smartphone/sony/2019/xperia-1-global-td-lte-j8110-pf13.json new file mode 100644 index 00000000000..53925b80a37 --- /dev/null +++ b/data/smartphone/sony/2019/xperia-1-global-td-lte-j8110-pf13.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-1-global-td-lte-j8110-pf13", + "name": "Xperia 1 Global TD-LTE J8110 / PF13", + "brand": "sony", + "soc": "snapdragon-855", + "release_date": "2019-06-01", + "ram_gb": 6.0, + "battery_mah": 3330, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Austria , Belgium , Bulgaria , Canada , Chile , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , South Korea , Spain , Switzerland , Sweden , Turkey , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , North America , South America , Western Europe" +} diff --git a/data/smartphone/sony/2019/xperia-1-global-td-lte-j8170.json b/data/smartphone/sony/2019/xperia-1-global-td-lte-j8170.json new file mode 100644 index 00000000000..4a6891f7e50 --- /dev/null +++ b/data/smartphone/sony/2019/xperia-1-global-td-lte-j8170.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-1-global-td-lte-j8170", + "name": "Xperia 1 Global TD-LTE J8170", + "brand": "sony", + "soc": "snapdragon-855", + "release_date": "2019-07-01", + "ram_gb": 6.0, + "battery_mah": 3330, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Austria , Belgium , Bulgaria , Canada , Chile , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , South Korea , Spain , Switzerland , Sweden , Turkey , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , North America , South America , Western Europe" +} diff --git a/data/smartphone/sony/2019/xperia-1-professional-edition-global-dual-sim-td-lte-j9150.json b/data/smartphone/sony/2019/xperia-1-professional-edition-global-dual-sim-td-lte-j9150.json new file mode 100644 index 00000000000..afc8e73a5a4 --- /dev/null +++ b/data/smartphone/sony/2019/xperia-1-professional-edition-global-dual-sim-td-lte-j9150.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-1-professional-edition-global-dual-sim-td-lte-j9150", + "name": "Xperia 1 Professional Edition Global Dual SIM TD-LTE J9150", + "brand": "sony", + "soc": "snapdragon-855", + "release_date": "2019-10-26", + "ram_gb": 6.0, + "battery_mah": 3330, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2019/xperia-1-td-lte-jp-802so.json b/data/smartphone/sony/2019/xperia-1-td-lte-jp-802so.json new file mode 100644 index 00000000000..1d99c9efd72 --- /dev/null +++ b/data/smartphone/sony/2019/xperia-1-td-lte-jp-802so.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-1-td-lte-jp-802so", + "name": "Xperia 1 TD-LTE JP 802SO", + "brand": "sony", + "soc": "snapdragon-855", + "release_date": "2019-06-14", + "ram_gb": 6.0, + "battery_mah": 3200, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2019/xperia-1-td-lte-jp-so-03l.json b/data/smartphone/sony/2019/xperia-1-td-lte-jp-so-03l.json new file mode 100644 index 00000000000..6f0f4be19d0 --- /dev/null +++ b/data/smartphone/sony/2019/xperia-1-td-lte-jp-so-03l.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-1-td-lte-jp-so-03l", + "name": "Xperia 1 TD-LTE JP SO-03L", + "brand": "sony", + "soc": "snapdragon-855", + "release_date": "2019-06-14", + "ram_gb": 6.0, + "battery_mah": 3200, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2019/xperia-1-wimax-2-jp-sov40.json b/data/smartphone/sony/2019/xperia-1-wimax-2-jp-sov40.json new file mode 100644 index 00000000000..dc69c7af188 --- /dev/null +++ b/data/smartphone/sony/2019/xperia-1-wimax-2-jp-sov40.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-1-wimax-2-jp-sov40", + "name": "Xperia 1 WiMAX 2+ JP SOV40", + "brand": "sony", + "soc": "snapdragon-855", + "release_date": "2019-06-14", + "ram_gb": 6.0, + "battery_mah": 3200, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2019/xperia-10-global-dual-sim-td-lte-i4113.json b/data/smartphone/sony/2019/xperia-10-global-dual-sim-td-lte-i4113.json new file mode 100644 index 00000000000..4d2ce95127f --- /dev/null +++ b/data/smartphone/sony/2019/xperia-10-global-dual-sim-td-lte-i4113.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-10-global-dual-sim-td-lte-i4113", + "name": "Xperia 10 Global Dual SIM TD-LTE I4113", + "brand": "sony", + "soc": "snapdragon-630", + "release_date": "2019-02-26", + "ram_gb": 3.0, + "battery_mah": 2870, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Canada , Cyprus , Czech , Estonia , France , Greece , Germany , Hungary , India , Ireland , Italy , Kuwait , Latvia , Lithuania , Netherlands , Poland , Portugal , Romania , Russia , Saudi Arabia , Serbia , Slovakia , Slovenia , South Korea , Spain , Switzerland , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/sony/2019/xperia-10-global-td-lte-i3113.json b/data/smartphone/sony/2019/xperia-10-global-td-lte-i3113.json new file mode 100644 index 00000000000..259c32004a4 --- /dev/null +++ b/data/smartphone/sony/2019/xperia-10-global-td-lte-i3113.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-10-global-td-lte-i3113", + "name": "Xperia 10 Global TD-LTE I3113", + "brand": "sony", + "soc": "snapdragon-630", + "release_date": "2019-02-26", + "ram_gb": 3.0, + "battery_mah": 2870, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Austria , Belgium , Bulgaria , Canada , Chile , Cyprus , Croatia , Czech , Denmark , Estonia , France , Germany , Greece , Hungary , India , Ireland , Italy , Latvia , Lithuania , Netherlands , Portugal , Romania , Slovakia , South Korea , Spain , Switzerland , UK", + "market_regions": "Asia , Eastern Europe , Europe , North America , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/sony/2019/xperia-10-lte-a-na-i3123.json b/data/smartphone/sony/2019/xperia-10-lte-a-na-i3123.json new file mode 100644 index 00000000000..86805dbfb6c --- /dev/null +++ b/data/smartphone/sony/2019/xperia-10-lte-a-na-i3123.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-10-lte-a-na-i3123", + "name": "Xperia 10 LTE-A NA I3123", + "brand": "sony", + "soc": "snapdragon-630", + "release_date": "2019-02-26", + "ram_gb": 3.0, + "battery_mah": 2870, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/sony/2019/xperia-10-plus-global-dual-sim-td-lte-i4213.json b/data/smartphone/sony/2019/xperia-10-plus-global-dual-sim-td-lte-i4213.json new file mode 100644 index 00000000000..2d64f26487a --- /dev/null +++ b/data/smartphone/sony/2019/xperia-10-plus-global-dual-sim-td-lte-i4213.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-10-plus-global-dual-sim-td-lte-i4213", + "name": "Xperia 10 Plus Global Dual SIM TD-LTE I4213", + "brand": "sony", + "soc": "snapdragon-636", + "release_date": "2019-02-28", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Serbia , Slovakia , Slovenia , South Korea , Spain , Switzerland , Sweden , Turkey , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/sony/2019/xperia-10-plus-global-td-lte-i3213.json b/data/smartphone/sony/2019/xperia-10-plus-global-td-lte-i3213.json new file mode 100644 index 00000000000..4220c69171f --- /dev/null +++ b/data/smartphone/sony/2019/xperia-10-plus-global-td-lte-i3213.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-10-plus-global-td-lte-i3213", + "name": "Xperia 10 Plus Global TD-LTE I3213", + "brand": "sony", + "soc": "snapdragon-636", + "release_date": "2019-02-28", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Austria , Belgium , Bulgaria , Canada , Chile , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , South Korea , Spain , Switzerland , Sweden , Turkey , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , North America , South America , Western Europe" +} diff --git a/data/smartphone/sony/2019/xperia-10-plus-lte-a-na-i3223.json b/data/smartphone/sony/2019/xperia-10-plus-lte-a-na-i3223.json new file mode 100644 index 00000000000..54cc1e26a71 --- /dev/null +++ b/data/smartphone/sony/2019/xperia-10-plus-lte-a-na-i3223.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-10-plus-lte-a-na-i3223", + "name": "Xperia 10 Plus LTE-A NA I3223", + "brand": "sony", + "soc": "snapdragon-636", + "release_date": "2019-02-28", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/sony/2019/xperia-10-plus-premium-edition-global-dual-sim-td-lte-i4293.json b/data/smartphone/sony/2019/xperia-10-plus-premium-edition-global-dual-sim-td-lte-i4293.json new file mode 100644 index 00000000000..e2062c30dcc --- /dev/null +++ b/data/smartphone/sony/2019/xperia-10-plus-premium-edition-global-dual-sim-td-lte-i4293.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-10-plus-premium-edition-global-dual-sim-td-lte-i4293", + "name": "Xperia 10 Plus Premium Edition Global Dual SIM TD-LTE I4293", + "brand": "sony", + "soc": "snapdragon-636", + "release_date": "2019-02-28", + "ram_gb": 6.0, + "battery_mah": 3000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Bulgaria , Cyprus , Croatia , Czech , Finland , France , Greece , Germany , HK , Hungary , Ireland , Italy , Norway , NZ , Poland , Portugal , Russia , Romania , Serbia , Singapore , Slovakia , South Korea , Spain , Sweden , Taiwan , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/sony/2019/xperia-10-premium-edition-global-dual-sim-td-lte-i4193.json b/data/smartphone/sony/2019/xperia-10-premium-edition-global-dual-sim-td-lte-i4193.json new file mode 100644 index 00000000000..e4e664f9700 --- /dev/null +++ b/data/smartphone/sony/2019/xperia-10-premium-edition-global-dual-sim-td-lte-i4193.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-10-premium-edition-global-dual-sim-td-lte-i4193", + "name": "Xperia 10 Premium Edition Global Dual SIM TD-LTE I4193", + "brand": "sony", + "soc": "snapdragon-630", + "release_date": "2019-02-27", + "ram_gb": 4.0, + "battery_mah": 2870, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belarus , Belgium , China , Cyprus , Czech , Denmark , France , Greece , Germany , HK , Hungary , Italy , Netherlands , NZ , Poland , Portugal , Russia , Romania , Serbia , Singapore , Slovakia , Slovenia , South Korea , Spain , Taiwan , UAE , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/sony/2019/xperia-5-global-dual-sim-td-lte-j9210.json b/data/smartphone/sony/2019/xperia-5-global-dual-sim-td-lte-j9210.json new file mode 100644 index 00000000000..aedc04068d5 --- /dev/null +++ b/data/smartphone/sony/2019/xperia-5-global-dual-sim-td-lte-j9210.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-5-global-dual-sim-td-lte-j9210", + "name": "Xperia 5 Global Dual SIM TD-LTE J9210", + "brand": "sony", + "soc": "snapdragon-855", + "release_date": "2019-10-01", + "ram_gb": 6.0, + "battery_mah": 3140, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Austria , Belgium , Bulgaria , Canada , Chile , China , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Latvia , Lithuania , Malaysia , Netherlands , Norway , Poland , Romania , Russia , Singapore , Slovakia , Slovenia , South Korea , Switzerland , Sweden , Taiwan , Turkey , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , North America , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/sony/2019/xperia-5-global-td-lte-j8210.json b/data/smartphone/sony/2019/xperia-5-global-td-lte-j8210.json new file mode 100644 index 00000000000..5f4b56d33b9 --- /dev/null +++ b/data/smartphone/sony/2019/xperia-5-global-td-lte-j8210.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-5-global-td-lte-j8210", + "name": "Xperia 5 Global TD-LTE J8210", + "brand": "sony", + "soc": "snapdragon-855", + "release_date": "2019-10-01", + "ram_gb": 6.0, + "battery_mah": 3140, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Cyprus , Croatia , Czech , Denmark , Finland , France , Greece , Hungary , Ireland , Italy , Netherlands , Norway , Poland , Portugal , Slovakia , Slovenia , Spain , Switzerland , Sweden , Turkey , UK", + "market_regions": "Asia , Eastern Europe , Europe , North America , Western Europe" +} diff --git a/data/smartphone/sony/2019/xperia-5-global-td-lte-j8270.json b/data/smartphone/sony/2019/xperia-5-global-td-lte-j8270.json new file mode 100644 index 00000000000..61d311e468b --- /dev/null +++ b/data/smartphone/sony/2019/xperia-5-global-td-lte-j8270.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-5-global-td-lte-j8270", + "name": "Xperia 5 Global TD-LTE J8270", + "brand": "sony", + "soc": "snapdragon-855", + "release_date": "2019-10-28", + "ram_gb": 6.0, + "battery_mah": 3140, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Austria , Belgium , Bulgaria , Canada , Chile , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Russia , Slovakia , Slovenia , South Korea , Spain , Switzerland , Sweden , Turkey , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , North America , South America , Western Europe" +} diff --git a/data/smartphone/sony/2019/xperia-5-td-lte-jp-901so.json b/data/smartphone/sony/2019/xperia-5-td-lte-jp-901so.json new file mode 100644 index 00000000000..f32ac8fb0a1 --- /dev/null +++ b/data/smartphone/sony/2019/xperia-5-td-lte-jp-901so.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-5-td-lte-jp-901so", + "name": "Xperia 5 TD-LTE JP 901SO", + "brand": "sony", + "soc": "snapdragon-855", + "release_date": "2019-10-26", + "ram_gb": 6.0, + "battery_mah": 3140, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2019/xperia-5-td-lte-jp-so-01m.json b/data/smartphone/sony/2019/xperia-5-td-lte-jp-so-01m.json new file mode 100644 index 00000000000..72b7399ca8b --- /dev/null +++ b/data/smartphone/sony/2019/xperia-5-td-lte-jp-so-01m.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-5-td-lte-jp-so-01m", + "name": "Xperia 5 TD-LTE JP SO-01M", + "brand": "sony", + "soc": "snapdragon-855", + "release_date": "2019-11-02", + "ram_gb": 6.0, + "battery_mah": 3140, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2019/xperia-5-wimax-2-sov41.json b/data/smartphone/sony/2019/xperia-5-wimax-2-sov41.json new file mode 100644 index 00000000000..62a95e5f489 --- /dev/null +++ b/data/smartphone/sony/2019/xperia-5-wimax-2-sov41.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-5-wimax-2-sov41", + "name": "Xperia 5 WiMAX 2+ SOV41", + "brand": "sony", + "soc": "snapdragon-855", + "release_date": "2019-10-26", + "ram_gb": 6.0, + "battery_mah": 3140, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2019/xperia-8-td-lte-jp-902so.json b/data/smartphone/sony/2019/xperia-8-td-lte-jp-902so.json new file mode 100644 index 00000000000..f2a2f0a029e --- /dev/null +++ b/data/smartphone/sony/2019/xperia-8-td-lte-jp-902so.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-8-td-lte-jp-902so", + "name": "Xperia 8 TD-LTE JP 902SO", + "brand": "sony", + "soc": "snapdragon-630", + "release_date": "2019-10-26", + "ram_gb": 4.0, + "battery_mah": 2760, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2019/xperia-8-wimax-2-sov42-xperia-8-lite-sov42-u.json b/data/smartphone/sony/2019/xperia-8-wimax-2-sov42-xperia-8-lite-sov42-u.json new file mode 100644 index 00000000000..cffdbf18653 --- /dev/null +++ b/data/smartphone/sony/2019/xperia-8-wimax-2-sov42-xperia-8-lite-sov42-u.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-8-wimax-2-sov42-xperia-8-lite-sov42-u", + "name": "Xperia 8 WiMAX 2+ SOV42 / Xperia 8 Lite SOV42-u", + "brand": "sony", + "soc": "snapdragon-630", + "release_date": "2019-10-26", + "ram_gb": 4.0, + "battery_mah": 2760, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2019/xperia-ace-lte-a-jp-so-02l.json b/data/smartphone/sony/2019/xperia-ace-lte-a-jp-so-02l.json new file mode 100644 index 00000000000..87369b70dc7 --- /dev/null +++ b/data/smartphone/sony/2019/xperia-ace-lte-a-jp-so-02l.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-ace-lte-a-jp-so-02l", + "name": "Xperia Ace LTE-A JP SO-02L", + "brand": "sony", + "soc": "snapdragon-630", + "release_date": "2019-06-02", + "ram_gb": 4.0, + "battery_mah": 2700, + "weight_g": 155.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 483 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2019/xperia-ace-td-lte-jp-j3173-j3137.json b/data/smartphone/sony/2019/xperia-ace-td-lte-jp-j3173-j3137.json new file mode 100644 index 00000000000..14b76159e05 --- /dev/null +++ b/data/smartphone/sony/2019/xperia-ace-td-lte-jp-j3173-j3137.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-ace-td-lte-jp-j3173-j3137", + "name": "Xperia Ace TD-LTE JP J3173 / J3137", + "brand": "sony", + "soc": "snapdragon-630", + "release_date": "2019-09-06", + "ram_gb": 4.0, + "battery_mah": 2700, + "weight_g": 155.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 483 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2019/xperia-l3-dual-sim-td-lte-apac-i4332.json b/data/smartphone/sony/2019/xperia-l3-dual-sim-td-lte-apac-i4332.json new file mode 100644 index 00000000000..f42502e454a --- /dev/null +++ b/data/smartphone/sony/2019/xperia-l3-dual-sim-td-lte-apac-i4332.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-l3-dual-sim-td-lte-apac-i4332", + "name": "Xperia L3 Dual SIM TD-LTE APAC I4332", + "brand": "sony", + "soc": "helio-p22", + "release_date": "2019-03-01", + "ram_gb": 3.0, + "battery_mah": 3300, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 7.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , HK , Singapore , Taiwan , Vietnam", + "market_regions": "Asia , Australia , Southeast Asia" +} diff --git a/data/smartphone/sony/2019/xperia-l3-dual-sim-td-lte-emea-i4312.json b/data/smartphone/sony/2019/xperia-l3-dual-sim-td-lte-emea-i4312.json new file mode 100644 index 00000000000..c4271ef7aad --- /dev/null +++ b/data/smartphone/sony/2019/xperia-l3-dual-sim-td-lte-emea-i4312.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-l3-dual-sim-td-lte-emea-i4312", + "name": "Xperia L3 Dual SIM TD-LTE EMEA I4312", + "brand": "sony", + "soc": "helio-p22", + "release_date": "2019-03-01", + "ram_gb": 3.0, + "battery_mah": 3300, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 7.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belarus , Belgium , Bulgaria , Czech , Denmark , Estonia , Finland , France , Germany , Hungary , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Romania , Russia , Serbia , Slovakia , Sweden , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/sony/2019/xperia-l3-lte-a-am-i3322.json b/data/smartphone/sony/2019/xperia-l3-lte-a-am-i3322.json new file mode 100644 index 00000000000..206b340b7b6 --- /dev/null +++ b/data/smartphone/sony/2019/xperia-l3-lte-a-am-i3322.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-l3-lte-a-am-i3322", + "name": "Xperia L3 LTE-A AM I3322", + "brand": "sony", + "soc": "helio-p22", + "release_date": "2019-05-01", + "ram_gb": 3.0, + "battery_mah": 3300, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 7.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Canada , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/sony/2019/xperia-l3-td-lte-emea-i3312.json b/data/smartphone/sony/2019/xperia-l3-td-lte-emea-i3312.json new file mode 100644 index 00000000000..a632dca6bb7 --- /dev/null +++ b/data/smartphone/sony/2019/xperia-l3-td-lte-emea-i3312.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-l3-td-lte-emea-i3312", + "name": "Xperia L3 TD-LTE EMEA I3312", + "brand": "sony", + "soc": "helio-p22", + "release_date": "2019-03-01", + "ram_gb": 3.0, + "battery_mah": 3300, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 7.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , France , Greece , Germany , Hungary , Ireland , Italy , Netherlands , Poland , Russia , Slovakia , Spain , Sweden , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/sony/2020/xperia-1-ii-5g-dual-sim-td-lte-cn-xq-at72.json b/data/smartphone/sony/2020/xperia-1-ii-5g-dual-sim-td-lte-cn-xq-at72.json new file mode 100644 index 00000000000..195b46de2d6 --- /dev/null +++ b/data/smartphone/sony/2020/xperia-1-ii-5g-dual-sim-td-lte-cn-xq-at72.json @@ -0,0 +1,42 @@ +{ + "slug": "xperia-1-ii-5g-dual-sim-td-lte-cn-xq-at72", + "name": "Xperia 1 II 5G Dual SIM TD-LTE CN XQ-AT72", + "brand": "sony", + "soc": "snapdragon-865", + "release_date": "2020-10-21", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 21, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2020/xperia-1-ii-5g-dual-sim-td-lte-jp-xq-at42.json b/data/smartphone/sony/2020/xperia-1-ii-5g-dual-sim-td-lte-jp-xq-at42.json new file mode 100644 index 00000000000..96c7c3de184 --- /dev/null +++ b/data/smartphone/sony/2020/xperia-1-ii-5g-dual-sim-td-lte-jp-xq-at42.json @@ -0,0 +1,42 @@ +{ + "slug": "xperia-1-ii-5g-dual-sim-td-lte-jp-xq-at42", + "name": "Xperia 1 II 5G Dual SIM TD-LTE JP XQ-AT42", + "brand": "sony", + "soc": "snapdragon-865", + "release_date": "2020-10-29", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 21, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2020/xperia-1-ii-5g-global-dual-sim-td-lte-xq-at52.json b/data/smartphone/sony/2020/xperia-1-ii-5g-global-dual-sim-td-lte-xq-at52.json new file mode 100644 index 00000000000..679a8769860 --- /dev/null +++ b/data/smartphone/sony/2020/xperia-1-ii-5g-global-dual-sim-td-lte-xq-at52.json @@ -0,0 +1,42 @@ +{ + "slug": "xperia-1-ii-5g-global-dual-sim-td-lte-xq-at52", + "name": "Xperia 1 II 5G Global Dual SIM TD-LTE XQ-AT52", + "brand": "sony", + "soc": "snapdragon-865", + "release_date": "2020-05-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 21, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Austria , Belgium , Bulgaria , Canada , Chile , Croatia , Cyprus , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Ireland , Italy , Latvia , Lithuania , Malaysia , Netherlands , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , South Korea , Spain , Switzerland , Sweden , Taiwan , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/sony/2020/xperia-1-ii-5g-global-td-lte-xq-at51.json b/data/smartphone/sony/2020/xperia-1-ii-5g-global-td-lte-xq-at51.json new file mode 100644 index 00000000000..77cf47f1019 --- /dev/null +++ b/data/smartphone/sony/2020/xperia-1-ii-5g-global-td-lte-xq-at51.json @@ -0,0 +1,42 @@ +{ + "slug": "xperia-1-ii-5g-global-td-lte-xq-at51", + "name": "Xperia 1 II 5G Global TD-LTE XQ-AT51", + "brand": "sony", + "soc": "snapdragon-865", + "release_date": "2020-05-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 21, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Chile , China , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Ireland , Italy , Latvia , Lithuania , Malaysia , Netherlands , Norway , Poland , Portugal , Russia , Romania , Slovakia , Slovenia , South Korea , Spain , Sweden , Switzerland , Turkey , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/sony/2020/xperia-1-ii-5g-green-edition-global-dual-sim-td-lte-xq-at52-g.json b/data/smartphone/sony/2020/xperia-1-ii-5g-green-edition-global-dual-sim-td-lte-xq-at52-g.json new file mode 100644 index 00000000000..49a8fcb8c46 --- /dev/null +++ b/data/smartphone/sony/2020/xperia-1-ii-5g-green-edition-global-dual-sim-td-lte-xq-at52-g.json @@ -0,0 +1,42 @@ +{ + "slug": "xperia-1-ii-5g-green-edition-global-dual-sim-td-lte-xq-at52-g", + "name": "Xperia 1 II 5G Green Edition Global Dual SIM TD-LTE XQ-AT52/G", + "brand": "sony", + "soc": "snapdragon-865", + "release_date": "2020-11-01", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 21, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Canada , Chile , Cyprus , Czech , Denmark , Finland , France , Greece , Germany , HK , Hungary , Ireland , Italy , Malaysia , Netherlands , Norway , Poland , Romania , Russia , Slovakia , Singapore , South Korea , Sweden , Switzerland , Taiwan , Thailand , UK , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , North America , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/sony/2020/xperia-1-ii-5g-td-lte-jp-so-51a.json b/data/smartphone/sony/2020/xperia-1-ii-5g-td-lte-jp-so-51a.json new file mode 100644 index 00000000000..972f727b737 --- /dev/null +++ b/data/smartphone/sony/2020/xperia-1-ii-5g-td-lte-jp-so-51a.json @@ -0,0 +1,42 @@ +{ + "slug": "xperia-1-ii-5g-td-lte-jp-so-51a", + "name": "Xperia 1 II 5G TD-LTE JP SO-51A", + "brand": "sony", + "soc": "snapdragon-865", + "release_date": "2020-06-18", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 21, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2020/xperia-1-ii-5g-td-lte-jp-sog01.json b/data/smartphone/sony/2020/xperia-1-ii-5g-td-lte-jp-sog01.json new file mode 100644 index 00000000000..bc80fbf0a5c --- /dev/null +++ b/data/smartphone/sony/2020/xperia-1-ii-5g-td-lte-jp-sog01.json @@ -0,0 +1,42 @@ +{ + "slug": "xperia-1-ii-5g-td-lte-jp-sog01", + "name": "Xperia 1 II 5G TD-LTE JP SOG01", + "brand": "sony", + "soc": "snapdragon-865", + "release_date": "2020-05-22", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 21, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2020/xperia-10-ii-dual-sim-td-lte-jp-xq-au42.json b/data/smartphone/sony/2020/xperia-10-ii-dual-sim-td-lte-jp-xq-au42.json new file mode 100644 index 00000000000..48ed438dbde --- /dev/null +++ b/data/smartphone/sony/2020/xperia-10-ii-dual-sim-td-lte-jp-xq-au42.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-10-ii-dual-sim-td-lte-jp-xq-au42", + "name": "Xperia 10 II Dual SIM TD-LTE JP XQ-AU42", + "brand": "sony", + "soc": "snapdragon-665", + "release_date": "2020-10-01", + "ram_gb": 4.0, + "battery_mah": 3600, + "weight_g": 151.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2020/xperia-10-ii-global-dual-sim-td-lte-sony-xq-au52-xperia-10-mk-2.json b/data/smartphone/sony/2020/xperia-10-ii-global-dual-sim-td-lte-sony-xq-au52-xperia-10-mk-2.json new file mode 100644 index 00000000000..bfbaa7e08cd --- /dev/null +++ b/data/smartphone/sony/2020/xperia-10-ii-global-dual-sim-td-lte-sony-xq-au52-xperia-10-mk-2.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-10-ii-global-dual-sim-td-lte-sony-xq-au52-xperia-10-mk-2", + "name": "Xperia 10 II Global Dual SIM TD-LTE Sony XQ-AU52 / Xperia 10 Mk. 2", + "brand": "sony", + "soc": "snapdragon-665", + "release_date": "2020-05-14", + "ram_gb": 4.0, + "battery_mah": 3600, + "weight_g": 151.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Finland , France , Greece , Germany , HK , Hungary , Ireland , Italy , Malaysia , Netherlands , Norway , NZ , Poland , Portugal , Romania , Russia , Saudi Arabia , Serbia , Slovakia , Singapore , Slovenia , South Korea , Spain , Switzerland , Sweden , Taiwan , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/sony/2020/xperia-10-ii-global-td-lte-xq-au51-xperia-10-mk-2.json b/data/smartphone/sony/2020/xperia-10-ii-global-td-lte-xq-au51-xperia-10-mk-2.json new file mode 100644 index 00000000000..ca807d13f1f --- /dev/null +++ b/data/smartphone/sony/2020/xperia-10-ii-global-td-lte-xq-au51-xperia-10-mk-2.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-10-ii-global-td-lte-xq-au51-xperia-10-mk-2", + "name": "Xperia 10 II Global TD-LTE XQ-AU51 / Xperia 10 Mk. 2", + "brand": "sony", + "soc": "snapdragon-665", + "release_date": "2020-05-04", + "ram_gb": 4.0, + "battery_mah": 3600, + "weight_g": 151.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Finland , France , Greece , Germany , Hungary , Ireland , Italy , Netherlands , Norway , NZ , Poland , Portugal , Romania , Russia , Saudi Arabia , Serbia , Slovakia , Slovenia , South Korea , Spain , Sweden , Switzerland , UAE , UK , Ukraine", + "market_regions": "Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/sony/2020/xperia-10-ii-td-lte-jp-a001so.json b/data/smartphone/sony/2020/xperia-10-ii-td-lte-jp-a001so.json new file mode 100644 index 00000000000..9ec510e09ae --- /dev/null +++ b/data/smartphone/sony/2020/xperia-10-ii-td-lte-jp-a001so.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-10-ii-td-lte-jp-a001so", + "name": "Xperia 10 II TD-LTE JP A001SO", + "brand": "sony", + "soc": "snapdragon-665", + "release_date": "2020-05-01", + "ram_gb": 4.0, + "battery_mah": 3600, + "weight_g": 151.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2020/xperia-10-ii-td-lte-jp-so-41a.json b/data/smartphone/sony/2020/xperia-10-ii-td-lte-jp-so-41a.json new file mode 100644 index 00000000000..af311242249 --- /dev/null +++ b/data/smartphone/sony/2020/xperia-10-ii-td-lte-jp-so-41a.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-10-ii-td-lte-jp-so-41a", + "name": "Xperia 10 II TD-LTE JP SO-41A", + "brand": "sony", + "soc": "snapdragon-665", + "release_date": "2020-05-01", + "ram_gb": 4.0, + "battery_mah": 3600, + "weight_g": 151.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2020/xperia-10-ii-wimax-2-sov43.json b/data/smartphone/sony/2020/xperia-10-ii-wimax-2-sov43.json new file mode 100644 index 00000000000..073fdf6976a --- /dev/null +++ b/data/smartphone/sony/2020/xperia-10-ii-wimax-2-sov43.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-10-ii-wimax-2-sov43", + "name": "Xperia 10 II WiMAX 2 + SOV43", + "brand": "sony", + "soc": "snapdragon-665", + "release_date": "2020-06-04", + "ram_gb": 4.0, + "battery_mah": 3600, + "weight_g": 151.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2020/xperia-5-ii-5g-dual-sim-td-lte-apac-256gb-xq-as72.json b/data/smartphone/sony/2020/xperia-5-ii-5g-dual-sim-td-lte-apac-256gb-xq-as72.json new file mode 100644 index 00000000000..55009718a34 --- /dev/null +++ b/data/smartphone/sony/2020/xperia-5-ii-5g-dual-sim-td-lte-apac-256gb-xq-as72.json @@ -0,0 +1,43 @@ +{ + "slug": "xperia-5-ii-5g-dual-sim-td-lte-apac-256gb-xq-as72", + "name": "Xperia 5 II 5G Dual SIM TD-LTE APAC 256GB XQ-AS72", + "brand": "sony", + "soc": "snapdragon-865", + "release_date": "2020-10-07", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 21, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , Singapore , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/sony/2020/xperia-5-ii-5g-global-dual-sim-td-lte-xq-as52.json b/data/smartphone/sony/2020/xperia-5-ii-5g-global-dual-sim-td-lte-xq-as52.json new file mode 100644 index 00000000000..469b68ff97b --- /dev/null +++ b/data/smartphone/sony/2020/xperia-5-ii-5g-global-dual-sim-td-lte-xq-as52.json @@ -0,0 +1,43 @@ +{ + "slug": "xperia-5-ii-5g-global-dual-sim-td-lte-xq-as52", + "name": "Xperia 5 II 5G Global Dual SIM TD-LTE XQ-AS52", + "brand": "sony", + "soc": "snapdragon-865", + "release_date": "2020-10-19", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 21, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Austria , Belgium , Bulgaria , Canada , Chile , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Russia , Romania , Singapore , Slovakia , Slovenia , South Korea , Switzerland , Sweden , Turkey , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , North America , South America , Western Europe" +} diff --git a/data/smartphone/sony/2020/xperia-5-ii-5g-td-lte-jp-a002so.json b/data/smartphone/sony/2020/xperia-5-ii-5g-td-lte-jp-a002so.json new file mode 100644 index 00000000000..644e705f388 --- /dev/null +++ b/data/smartphone/sony/2020/xperia-5-ii-5g-td-lte-jp-a002so.json @@ -0,0 +1,43 @@ +{ + "slug": "xperia-5-ii-5g-td-lte-jp-a002so", + "name": "Xperia 5 II 5G TD-LTE JP A002SO", + "brand": "sony", + "soc": "snapdragon-865", + "release_date": "2020-10-17", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 21, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2020/xperia-5-ii-5g-td-lte-jp-so-52a.json b/data/smartphone/sony/2020/xperia-5-ii-5g-td-lte-jp-so-52a.json new file mode 100644 index 00000000000..3414a0a354e --- /dev/null +++ b/data/smartphone/sony/2020/xperia-5-ii-5g-td-lte-jp-so-52a.json @@ -0,0 +1,43 @@ +{ + "slug": "xperia-5-ii-5g-td-lte-jp-so-52a", + "name": "Xperia 5 II 5G TD-LTE JP SO-52A", + "brand": "sony", + "soc": "snapdragon-865", + "release_date": "2020-11-12", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 21, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2020/xperia-5-ii-5g-td-lte-jp-sog02.json b/data/smartphone/sony/2020/xperia-5-ii-5g-td-lte-jp-sog02.json new file mode 100644 index 00000000000..3615c45099b --- /dev/null +++ b/data/smartphone/sony/2020/xperia-5-ii-5g-td-lte-jp-sog02.json @@ -0,0 +1,43 @@ +{ + "slug": "xperia-5-ii-5g-td-lte-jp-sog02", + "name": "Xperia 5 II 5G TD-LTE JP SOG02", + "brand": "sony", + "soc": "snapdragon-865", + "release_date": "2020-10-17", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 21, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2020/xperia-8-lite-td-lte-jp-j3273.json b/data/smartphone/sony/2020/xperia-8-lite-td-lte-jp-j3273.json new file mode 100644 index 00000000000..b93f4f58c26 --- /dev/null +++ b/data/smartphone/sony/2020/xperia-8-lite-td-lte-jp-j3273.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-8-lite-td-lte-jp-j3273", + "name": "Xperia 8 Lite TD-LTE JP J3273", + "brand": "sony", + "soc": "snapdragon-630", + "release_date": "2020-09-02", + "ram_gb": 4.0, + "battery_mah": 2870, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2020/xperia-l4-dual-sim-td-lte-emea-xq-ad52.json b/data/smartphone/sony/2020/xperia-l4-dual-sim-td-lte-emea-xq-ad52.json new file mode 100644 index 00000000000..36453862314 --- /dev/null +++ b/data/smartphone/sony/2020/xperia-l4-dual-sim-td-lte-emea-xq-ad52.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-l4-dual-sim-td-lte-emea-xq-ad52", + "name": "Xperia L4 Dual SIM TD-LTE EMEA XQ-AD52", + "brand": "sony", + "soc": "helio-p22", + "release_date": "2020-04-27", + "ram_gb": 3.0, + "battery_mah": 3580, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1680", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belarus , Belgium , Bulgaria , Cyprus , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Romania , Russia , Saudi Arabia , Serbia , Slovakia , Spain , Sweden , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/sony/2020/xperia-l4-td-lte-emea-xq-ad51.json b/data/smartphone/sony/2020/xperia-l4-td-lte-emea-xq-ad51.json new file mode 100644 index 00000000000..55ba9ad7a83 --- /dev/null +++ b/data/smartphone/sony/2020/xperia-l4-td-lte-emea-xq-ad51.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-l4-td-lte-emea-xq-ad51", + "name": "Xperia L4 TD-LTE EMEA XQ-AD51", + "brand": "sony", + "soc": "helio-p22", + "release_date": "2020-04-27", + "ram_gb": 3.0, + "battery_mah": 3580, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1680", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Cyprus , Czech , Denmark , Estonia , Finland , France , Germany , Greece , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Russia , Slovakia , Spain , Sweden , Turkey , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/sony/2021/xperia-1-iii-5g-dual-sim-td-lte-apac-256gb-xq-bc72.json b/data/smartphone/sony/2021/xperia-1-iii-5g-dual-sim-td-lte-apac-256gb-xq-bc72.json new file mode 100644 index 00000000000..c51d753faf1 --- /dev/null +++ b/data/smartphone/sony/2021/xperia-1-iii-5g-dual-sim-td-lte-apac-256gb-xq-bc72.json @@ -0,0 +1,43 @@ +{ + "slug": "xperia-1-iii-5g-dual-sim-td-lte-apac-256gb-xq-bc72", + "name": "Xperia 1 III 5G Dual SIM TD-LTE APAC 256GB XQ-BC72", + "brand": "sony", + "soc": "snapdragon-888", + "release_date": "2021-05-29", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 187.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , Japan , Malaysia , Russia , Singapore , Taiwan , Thailand , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia" +} diff --git a/data/smartphone/sony/2021/xperia-1-iii-5g-dual-sim-td-lte-apac-512gb-xq-bc72.json b/data/smartphone/sony/2021/xperia-1-iii-5g-dual-sim-td-lte-apac-512gb-xq-bc72.json new file mode 100644 index 00000000000..cfe79b5ba58 --- /dev/null +++ b/data/smartphone/sony/2021/xperia-1-iii-5g-dual-sim-td-lte-apac-512gb-xq-bc72.json @@ -0,0 +1,43 @@ +{ + "slug": "xperia-1-iii-5g-dual-sim-td-lte-apac-512gb-xq-bc72", + "name": "Xperia 1 III 5G Dual SIM TD-LTE APAC 512GB XQ-BC72", + "brand": "sony", + "soc": "snapdragon-888", + "release_date": "2021-05-29", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 187.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , Singapore , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/sony/2021/xperia-1-iii-5g-dual-sim-td-lte-emea-xq-bc52-xq-ac52.json b/data/smartphone/sony/2021/xperia-1-iii-5g-dual-sim-td-lte-emea-xq-bc52-xq-ac52.json new file mode 100644 index 00000000000..7162ebbfa63 --- /dev/null +++ b/data/smartphone/sony/2021/xperia-1-iii-5g-dual-sim-td-lte-emea-xq-bc52-xq-ac52.json @@ -0,0 +1,44 @@ +{ + "slug": "xperia-1-iii-5g-dual-sim-td-lte-emea-xq-bc52-xq-ac52", + "name": "Xperia 1 III 5G Dual SIM TD-LTE EMEA XQ-BC52 / XQ-AC52", + "brand": "sony", + "soc": "snapdragon-888", + "release_date": "2021-06-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 187.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1299, + "market_countries": "Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Romania , Russia , Saudi Arabia , Slovakia , Slovenia , South Korea , Spain , Sweden , Switzerland , Turkey , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/sony/2021/xperia-1-iii-5g-dual-sim-td-lte-jp-512gb-xq-bc42.json b/data/smartphone/sony/2021/xperia-1-iii-5g-dual-sim-td-lte-jp-512gb-xq-bc42.json new file mode 100644 index 00000000000..ac166656fbd --- /dev/null +++ b/data/smartphone/sony/2021/xperia-1-iii-5g-dual-sim-td-lte-jp-512gb-xq-bc42.json @@ -0,0 +1,43 @@ +{ + "slug": "xperia-1-iii-5g-dual-sim-td-lte-jp-512gb-xq-bc42", + "name": "Xperia 1 III 5G Dual SIM TD-LTE JP 512GB XQ-BC42", + "brand": "sony", + "soc": "snapdragon-888", + "release_date": "2021-11-19", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 187.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2021/xperia-1-iii-5g-dual-sim-td-lte-na-256gb-xq-bc62.json b/data/smartphone/sony/2021/xperia-1-iii-5g-dual-sim-td-lte-na-256gb-xq-bc62.json new file mode 100644 index 00000000000..77db783e825 --- /dev/null +++ b/data/smartphone/sony/2021/xperia-1-iii-5g-dual-sim-td-lte-na-256gb-xq-bc62.json @@ -0,0 +1,43 @@ +{ + "slug": "xperia-1-iii-5g-dual-sim-td-lte-na-256gb-xq-bc62", + "name": "Xperia 1 III 5G Dual SIM TD-LTE NA 256GB XQ-BC62", + "brand": "sony", + "soc": "snapdragon-888", + "release_date": "2021-07-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 187.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/sony/2021/xperia-1-iii-5g-uw-td-lte-jp-a101so.json b/data/smartphone/sony/2021/xperia-1-iii-5g-uw-td-lte-jp-a101so.json new file mode 100644 index 00000000000..78e5296e2f6 --- /dev/null +++ b/data/smartphone/sony/2021/xperia-1-iii-5g-uw-td-lte-jp-a101so.json @@ -0,0 +1,43 @@ +{ + "slug": "xperia-1-iii-5g-uw-td-lte-jp-a101so", + "name": "Xperia 1 III 5G UW TD-LTE JP A101SO", + "brand": "sony", + "soc": "snapdragon-888", + "release_date": "2021-07-09", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2021/xperia-1-iii-5g-uw-td-lte-jp-so-51b.json b/data/smartphone/sony/2021/xperia-1-iii-5g-uw-td-lte-jp-so-51b.json new file mode 100644 index 00000000000..4cdb379ffda --- /dev/null +++ b/data/smartphone/sony/2021/xperia-1-iii-5g-uw-td-lte-jp-so-51b.json @@ -0,0 +1,43 @@ +{ + "slug": "xperia-1-iii-5g-uw-td-lte-jp-so-51b", + "name": "Xperia 1 III 5G UW TD-LTE JP SO-51B", + "brand": "sony", + "soc": "snapdragon-888", + "release_date": "2021-07-09", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2021/xperia-1-iii-5g-uw-td-lte-jp-sog03.json b/data/smartphone/sony/2021/xperia-1-iii-5g-uw-td-lte-jp-sog03.json new file mode 100644 index 00000000000..75f1b2485ad --- /dev/null +++ b/data/smartphone/sony/2021/xperia-1-iii-5g-uw-td-lte-jp-sog03.json @@ -0,0 +1,43 @@ +{ + "slug": "xperia-1-iii-5g-uw-td-lte-jp-sog03", + "name": "Xperia 1 III 5G UW TD-LTE JP SOG03", + "brand": "sony", + "soc": "snapdragon-888", + "release_date": "2021-06-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2021/xperia-10-iii-5g-global-dual-sim-td-lte-128gb-xq-bt52.json b/data/smartphone/sony/2021/xperia-10-iii-5g-global-dual-sim-td-lte-128gb-xq-bt52.json new file mode 100644 index 00000000000..f98789bc770 --- /dev/null +++ b/data/smartphone/sony/2021/xperia-10-iii-5g-global-dual-sim-td-lte-128gb-xq-bt52.json @@ -0,0 +1,44 @@ +{ + "slug": "xperia-10-iii-5g-global-dual-sim-td-lte-128gb-xq-bt52", + "name": "Xperia 10 III 5G Global Dual SIM TD-LTE 128GB XQ-BT52", + "brand": "sony", + "soc": "snapdragon-690", + "release_date": "2021-05-29", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 429, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Czech , Denmark , Finland , France , Greece , Germany , HK , Hungary , Ireland , Italy , Netherlands , Norway , NZ , Poland , Portugal , Romania , Saudi Arabia , Serbia , Slovakia , Slovenia , South Korea , Spain , Switzerland , Sweden , Taiwan , UAE , UK", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/sony/2021/xperia-10-iii-5g-td-lte-jp-128gb-a102so.json b/data/smartphone/sony/2021/xperia-10-iii-5g-td-lte-jp-128gb-a102so.json new file mode 100644 index 00000000000..d1619c89439 --- /dev/null +++ b/data/smartphone/sony/2021/xperia-10-iii-5g-td-lte-jp-128gb-a102so.json @@ -0,0 +1,43 @@ +{ + "slug": "xperia-10-iii-5g-td-lte-jp-128gb-a102so", + "name": "Xperia 10 III 5G TD-LTE JP 128GB A102SO", + "brand": "sony", + "soc": "snapdragon-690", + "release_date": "2021-07-02", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2021/xperia-10-iii-5g-td-lte-jp-128gb-so-52b.json b/data/smartphone/sony/2021/xperia-10-iii-5g-td-lte-jp-128gb-so-52b.json new file mode 100644 index 00000000000..995ee2f6a7f --- /dev/null +++ b/data/smartphone/sony/2021/xperia-10-iii-5g-td-lte-jp-128gb-so-52b.json @@ -0,0 +1,43 @@ +{ + "slug": "xperia-10-iii-5g-td-lte-jp-128gb-so-52b", + "name": "Xperia 10 III 5G TD-LTE JP 128GB SO-52B", + "brand": "sony", + "soc": "snapdragon-690", + "release_date": "2021-06-18", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2021/xperia-10-iii-5g-td-lte-jp-128gb-sog04.json b/data/smartphone/sony/2021/xperia-10-iii-5g-td-lte-jp-128gb-sog04.json new file mode 100644 index 00000000000..3b8c773830d --- /dev/null +++ b/data/smartphone/sony/2021/xperia-10-iii-5g-td-lte-jp-128gb-sog04.json @@ -0,0 +1,43 @@ +{ + "slug": "xperia-10-iii-5g-td-lte-jp-128gb-sog04", + "name": "Xperia 10 III 5G TD-LTE JP 128GB SOG04", + "brand": "sony", + "soc": "snapdragon-690", + "release_date": "2021-06-18", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2021/xperia-10-iii-lite-5g-dual-sim-td-lte-jp-64gb-xq-bt44.json b/data/smartphone/sony/2021/xperia-10-iii-lite-5g-dual-sim-td-lte-jp-64gb-xq-bt44.json new file mode 100644 index 00000000000..150698b8805 --- /dev/null +++ b/data/smartphone/sony/2021/xperia-10-iii-lite-5g-dual-sim-td-lte-jp-64gb-xq-bt44.json @@ -0,0 +1,43 @@ +{ + "slug": "xperia-10-iii-lite-5g-dual-sim-td-lte-jp-64gb-xq-bt44", + "name": "Xperia 10 III Lite 5G Dual SIM TD-LTE JP 64GB XQ-BT44", + "brand": "sony", + "soc": "snapdragon-690", + "release_date": "2021-08-27", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2021/xperia-5-ii-5g-dual-sim-td-lte-jp-256gb-xq-as42.json b/data/smartphone/sony/2021/xperia-5-ii-5g-dual-sim-td-lte-jp-256gb-xq-as42.json new file mode 100644 index 00000000000..cbde598176e --- /dev/null +++ b/data/smartphone/sony/2021/xperia-5-ii-5g-dual-sim-td-lte-jp-256gb-xq-as42.json @@ -0,0 +1,43 @@ +{ + "slug": "xperia-5-ii-5g-dual-sim-td-lte-jp-256gb-xq-as42", + "name": "Xperia 5 II 5G Dual SIM TD-LTE JP 256GB XQ-AS42", + "brand": "sony", + "soc": "snapdragon-865", + "release_date": "2021-05-28", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 163.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 21, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2021/xperia-5-iii-5g-dual-sim-td-lte-apac-256gb-xq-bq72.json b/data/smartphone/sony/2021/xperia-5-iii-5g-dual-sim-td-lte-apac-256gb-xq-bq72.json new file mode 100644 index 00000000000..ad5b02fb4e8 --- /dev/null +++ b/data/smartphone/sony/2021/xperia-5-iii-5g-dual-sim-td-lte-apac-256gb-xq-bq72.json @@ -0,0 +1,42 @@ +{ + "slug": "xperia-5-iii-5g-dual-sim-td-lte-apac-256gb-xq-bq72", + "name": "Xperia 5 III 5G Dual SIM TD-LTE APAC 256GB XQ-BQ72", + "brand": "sony", + "soc": "snapdragon-888", + "release_date": "2021-05-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , Japan , Malaysia , Russia , Singapore , Taiwan , Thailand , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia" +} diff --git a/data/smartphone/sony/2021/xperia-5-iii-5g-dual-sim-td-lte-na-xq-bq62.json b/data/smartphone/sony/2021/xperia-5-iii-5g-dual-sim-td-lte-na-xq-bq62.json new file mode 100644 index 00000000000..7c56df28412 --- /dev/null +++ b/data/smartphone/sony/2021/xperia-5-iii-5g-dual-sim-td-lte-na-xq-bq62.json @@ -0,0 +1,42 @@ +{ + "slug": "xperia-5-iii-5g-dual-sim-td-lte-na-xq-bq62", + "name": "Xperia 5 III 5G Dual SIM TD-LTE NA XQ-BQ62", + "brand": "sony", + "soc": "snapdragon-888", + "release_date": "2021-08-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/sony/2021/xperia-5-iii-5g-global-dual-sim-td-lte-xq-bq52.json b/data/smartphone/sony/2021/xperia-5-iii-5g-global-dual-sim-td-lte-xq-bq52.json new file mode 100644 index 00000000000..6c760320c3d --- /dev/null +++ b/data/smartphone/sony/2021/xperia-5-iii-5g-global-dual-sim-td-lte-xq-bq52.json @@ -0,0 +1,43 @@ +{ + "slug": "xperia-5-iii-5g-global-dual-sim-td-lte-xq-bq52", + "name": "Xperia 5 III 5G Global Dual SIM TD-LTE XQ-BQ52", + "brand": "sony", + "soc": "snapdragon-888", + "release_date": "2021-07-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 999, + "market_countries": "Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Switzerland , Sweden , Turkey , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/sony/2021/xperia-5-iii-5g-td-lte-jp-128gb-a103so.json b/data/smartphone/sony/2021/xperia-5-iii-5g-td-lte-jp-128gb-a103so.json new file mode 100644 index 00000000000..ff67650eeae --- /dev/null +++ b/data/smartphone/sony/2021/xperia-5-iii-5g-td-lte-jp-128gb-a103so.json @@ -0,0 +1,42 @@ +{ + "slug": "xperia-5-iii-5g-td-lte-jp-128gb-a103so", + "name": "Xperia 5 III 5G TD-LTE JP 128GB A103SO", + "brand": "sony", + "soc": "snapdragon-888", + "release_date": "2021-11-12", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2021/xperia-5-iii-5g-td-lte-jp-128gb-so-53b.json b/data/smartphone/sony/2021/xperia-5-iii-5g-td-lte-jp-128gb-so-53b.json new file mode 100644 index 00000000000..1dfd4739cc9 --- /dev/null +++ b/data/smartphone/sony/2021/xperia-5-iii-5g-td-lte-jp-128gb-so-53b.json @@ -0,0 +1,42 @@ +{ + "slug": "xperia-5-iii-5g-td-lte-jp-128gb-so-53b", + "name": "Xperia 5 III 5G TD-LTE JP 128GB SO-53B", + "brand": "sony", + "soc": "snapdragon-888", + "release_date": "2021-11-12", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2021/xperia-5-iii-5g-td-lte-jp-128gb-sog05.json b/data/smartphone/sony/2021/xperia-5-iii-5g-td-lte-jp-128gb-sog05.json new file mode 100644 index 00000000000..9441583a173 --- /dev/null +++ b/data/smartphone/sony/2021/xperia-5-iii-5g-td-lte-jp-128gb-sog05.json @@ -0,0 +1,42 @@ +{ + "slug": "xperia-5-iii-5g-td-lte-jp-128gb-sog05", + "name": "Xperia 5 III 5G TD-LTE JP 128GB SOG05", + "brand": "sony", + "soc": "snapdragon-888", + "release_date": "2021-11-12", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2021/xperia-ace-ii-lte-a-jp-so-41b.json b/data/smartphone/sony/2021/xperia-ace-ii-lte-a-jp-so-41b.json new file mode 100644 index 00000000000..905df87bf91 --- /dev/null +++ b/data/smartphone/sony/2021/xperia-ace-ii-lte-a-jp-so-41b.json @@ -0,0 +1,41 @@ +{ + "slug": "xperia-ace-ii-lte-a-jp-so-41b", + "name": "Xperia Ace II LTE-A JP SO-41B", + "brand": "sony", + "soc": "helio-p35", + "release_date": "2021-05-28", + "ram_gb": 4.0, + "battery_mah": 4500, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1496", + "type": "Color IPS TFT LCD display", + "ppi": 302 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2021/xperia-pro-5g-2021-global-dual-sim-td-lte-512gb.json b/data/smartphone/sony/2021/xperia-pro-5g-2021-global-dual-sim-td-lte-512gb.json new file mode 100644 index 00000000000..f09a9f89506 --- /dev/null +++ b/data/smartphone/sony/2021/xperia-pro-5g-2021-global-dual-sim-td-lte-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "xperia-pro-5g-2021-global-dual-sim-td-lte-512gb", + "name": "Xperia Pro 5G 2021 Global Dual SIM TD-LTE 512GB", + "brand": "sony", + "soc": "snapdragon-865", + "release_date": "2021-05-11", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 225.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 21, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2499, + "market_countries": "Denmark , Finland , France , Germany , Italy , Norway , Portugal , Spain , Sweden", + "market_regions": "Europe , Western Europe" +} diff --git a/data/smartphone/sony/2021/xperia-pro-5g-uw-2021-dual-sim-td-lte-jp-512gb-xq-aq52.json b/data/smartphone/sony/2021/xperia-pro-5g-uw-2021-dual-sim-td-lte-jp-512gb-xq-aq52.json new file mode 100644 index 00000000000..1b0ba237f0e --- /dev/null +++ b/data/smartphone/sony/2021/xperia-pro-5g-uw-2021-dual-sim-td-lte-jp-512gb-xq-aq52.json @@ -0,0 +1,42 @@ +{ + "slug": "xperia-pro-5g-uw-2021-dual-sim-td-lte-jp-512gb-xq-aq52", + "name": "Xperia Pro 5G UW 2021 Dual SIM TD-LTE JP 512GB XQ-AQ52", + "brand": "sony", + "soc": "snapdragon-865", + "release_date": "2021-02-09", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 225.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 21, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2021/xperia-pro-5g-uw-2021-dual-sim-td-lte-us-512gb-xq-aq62.json b/data/smartphone/sony/2021/xperia-pro-5g-uw-2021-dual-sim-td-lte-us-512gb-xq-aq62.json new file mode 100644 index 00000000000..c69641de03a --- /dev/null +++ b/data/smartphone/sony/2021/xperia-pro-5g-uw-2021-dual-sim-td-lte-us-512gb-xq-aq62.json @@ -0,0 +1,43 @@ +{ + "slug": "xperia-pro-5g-uw-2021-dual-sim-td-lte-us-512gb-xq-aq62", + "name": "Xperia Pro 5G UW 2021 Dual SIM TD-LTE US 512GB XQ-AQ62", + "brand": "sony", + "soc": "snapdragon-865", + "release_date": "2021-02-24", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 225.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 21, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2498, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/sony/2021/xperia-pro-i-2021-5g-dual-sim-td-lte-apac-xq-be72.json b/data/smartphone/sony/2021/xperia-pro-i-2021-5g-dual-sim-td-lte-apac-xq-be72.json new file mode 100644 index 00000000000..383287393c7 --- /dev/null +++ b/data/smartphone/sony/2021/xperia-pro-i-2021-5g-dual-sim-td-lte-apac-xq-be72.json @@ -0,0 +1,43 @@ +{ + "slug": "xperia-pro-i-2021-5g-dual-sim-td-lte-apac-xq-be72", + "name": "Xperia Pro-I 2021 5G Dual SIM TD-LTE APAC XQ-BE72", + "brand": "sony", + "soc": "snapdragon-888", + "release_date": "2021-12-17", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 211.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , Japan , Malaysia , Russia , Singapore , Taiwan , Thailand", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia" +} diff --git a/data/smartphone/sony/2021/xperia-pro-i-2021-5g-dual-sim-td-lte-emea-xq-be52.json b/data/smartphone/sony/2021/xperia-pro-i-2021-5g-dual-sim-td-lte-emea-xq-be52.json new file mode 100644 index 00000000000..f164dfe4679 --- /dev/null +++ b/data/smartphone/sony/2021/xperia-pro-i-2021-5g-dual-sim-td-lte-emea-xq-be52.json @@ -0,0 +1,44 @@ +{ + "slug": "xperia-pro-i-2021-5g-dual-sim-td-lte-emea-xq-be52", + "name": "Xperia Pro-I 2021 5G Dual SIM TD-LTE EMEA XQ-BE52", + "brand": "sony", + "soc": "snapdragon-888", + "release_date": "2021-12-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 211.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1800, + "market_countries": "Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Norway , Poland , Romania , Russia , Saudi Arabia , Slovakia , Slovenia , South Korea , Spain , Sweden , Switzerland , Turkey , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/sony/2021/xperia-pro-i-2021-5g-dual-sim-td-lte-jp-xq-be42.json b/data/smartphone/sony/2021/xperia-pro-i-2021-5g-dual-sim-td-lte-jp-xq-be42.json new file mode 100644 index 00000000000..c5a07265e78 --- /dev/null +++ b/data/smartphone/sony/2021/xperia-pro-i-2021-5g-dual-sim-td-lte-jp-xq-be42.json @@ -0,0 +1,43 @@ +{ + "slug": "xperia-pro-i-2021-5g-dual-sim-td-lte-jp-xq-be42", + "name": "Xperia Pro-I 2021 5G Dual SIM TD-LTE JP XQ-BE42", + "brand": "sony", + "soc": "snapdragon-888", + "release_date": "2021-12-14", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 211.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/sony/2021/xperia-pro-i-2021-5g-dual-sim-td-lte-na-xq-be62.json b/data/smartphone/sony/2021/xperia-pro-i-2021-5g-dual-sim-td-lte-na-xq-be62.json new file mode 100644 index 00000000000..fd62d1403db --- /dev/null +++ b/data/smartphone/sony/2021/xperia-pro-i-2021-5g-dual-sim-td-lte-na-xq-be62.json @@ -0,0 +1,44 @@ +{ + "slug": "xperia-pro-i-2021-5g-dual-sim-td-lte-na-xq-be62", + "name": "Xperia Pro-I 2021 5G Dual SIM TD-LTE NA XQ-BE62", + "brand": "sony", + "soc": "snapdragon-888", + "release_date": "2021-12-11", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 211.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1800, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/sony/2022/xperia-5-iii-5g-dual-sim-td-lte-jp-256gb-xq-bq42.json b/data/smartphone/sony/2022/xperia-5-iii-5g-dual-sim-td-lte-jp-256gb-xq-bq42.json new file mode 100644 index 00000000000..55862d1a8c4 --- /dev/null +++ b/data/smartphone/sony/2022/xperia-5-iii-5g-dual-sim-td-lte-jp-256gb-xq-bq42.json @@ -0,0 +1,42 @@ +{ + "slug": "xperia-5-iii-5g-dual-sim-td-lte-jp-256gb-xq-bq42", + "name": "Xperia 5 III 5G Dual SIM TD-LTE JP 256GB XQ-BQ42", + "brand": "sony", + "soc": "snapdragon-888", + "release_date": "2022-04-22", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/tcl/2017/optus-x-smart-4g-td-lte-au-5056i.json b/data/smartphone/tcl/2017/optus-x-smart-4g-td-lte-au-5056i.json new file mode 100644 index 00000000000..140d81fbc1c --- /dev/null +++ b/data/smartphone/tcl/2017/optus-x-smart-4g-td-lte-au-5056i.json @@ -0,0 +1,41 @@ +{ + "slug": "optus-x-smart-4g-td-lte-au-5056i", + "name": "Optus X Smart 4G TD-LTE AU 5056I", + "brand": "tcl", + "soc": "snapdragon-210", + "release_date": "2017-03-02", + "ram_gb": 2, + "battery_mah": 2500, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "6.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Australia", + "market_regions": "Australia" +} diff --git a/data/smartphone/tcl/2018/palm-phone-2018-global-lte-pvg100e-pvg100eu.json b/data/smartphone/tcl/2018/palm-phone-2018-global-lte-pvg100e-pvg100eu.json new file mode 100644 index 00000000000..3dc4be76e2c --- /dev/null +++ b/data/smartphone/tcl/2018/palm-phone-2018-global-lte-pvg100e-pvg100eu.json @@ -0,0 +1,41 @@ +{ + "slug": "palm-phone-2018-global-lte-pvg100e-pvg100eu", + "name": "Palm Phone 2018 Global LTE PVG100E / PVG100EU", + "brand": "tcl", + "soc": "snapdragon-435", + "release_date": "2018-12-07", + "ram_gb": 3.0, + "battery_mah": 800, + "weight_g": 62.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 3.3, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 445 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Germany , HK , Spain , Taiwan , UK", + "market_regions": "Asia , Australia , Europe , Western Europe" +} diff --git a/data/smartphone/tcl/2018/palm-phone-2018-lte-us-pvg100.json b/data/smartphone/tcl/2018/palm-phone-2018-lte-us-pvg100.json new file mode 100644 index 00000000000..ef2ce3639ef --- /dev/null +++ b/data/smartphone/tcl/2018/palm-phone-2018-lte-us-pvg100.json @@ -0,0 +1,41 @@ +{ + "slug": "palm-phone-2018-lte-us-pvg100", + "name": "Palm Phone 2018 LTE US PVG100", + "brand": "tcl", + "soc": "snapdragon-435", + "release_date": "2018-11-01", + "ram_gb": 3.0, + "battery_mah": 800, + "weight_g": 62.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 3.3, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 445 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/tcl/2019/plex-global-dual-sim-td-lte-t780h.json b/data/smartphone/tcl/2019/plex-global-dual-sim-td-lte-t780h.json new file mode 100644 index 00000000000..93b498506bc --- /dev/null +++ b/data/smartphone/tcl/2019/plex-global-dual-sim-td-lte-t780h.json @@ -0,0 +1,41 @@ +{ + "slug": "plex-global-dual-sim-td-lte-t780h", + "name": "Plex Global Dual SIM TD-LTE T780H", + "brand": "tcl", + "soc": "snapdragon-675", + "release_date": "2019-10-01", + "ram_gb": 6.0, + "battery_mah": 3820, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Germany , Japan , Malaysia , Portugal , Romania , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/tcl/2020/10-5g-global-td-lte-128gb-t790y.json b/data/smartphone/tcl/2020/10-5g-global-td-lte-128gb-t790y.json new file mode 100644 index 00000000000..158e0100890 --- /dev/null +++ b/data/smartphone/tcl/2020/10-5g-global-td-lte-128gb-t790y.json @@ -0,0 +1,43 @@ +{ + "slug": "10-5g-global-td-lte-128gb-t790y", + "name": "10 5G Global TD-LTE 128GB T790Y", + "brand": "tcl", + "soc": "snapdragon-765", + "release_date": "2020-05-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Croatia , Denmark , Finland , France , Germany , HK , Italy , Norway , Portugal , Spain , Sweden , UK , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/tcl/2020/10-5g-td-lte-jp-128gb-t790h.json b/data/smartphone/tcl/2020/10-5g-td-lte-jp-128gb-t790h.json new file mode 100644 index 00000000000..44efc31efd9 --- /dev/null +++ b/data/smartphone/tcl/2020/10-5g-td-lte-jp-128gb-t790h.json @@ -0,0 +1,43 @@ +{ + "slug": "10-5g-td-lte-jp-128gb-t790h", + "name": "10 5G TD-LTE JP 128GB T790H", + "brand": "tcl", + "soc": "snapdragon-765", + "release_date": "2020-06-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/tcl/2020/10-5g-uw-td-lte-us-128gb-t790s.json b/data/smartphone/tcl/2020/10-5g-uw-td-lte-us-128gb-t790s.json new file mode 100644 index 00000000000..e47a9ce7410 --- /dev/null +++ b/data/smartphone/tcl/2020/10-5g-uw-td-lte-us-128gb-t790s.json @@ -0,0 +1,44 @@ +{ + "slug": "10-5g-uw-td-lte-us-128gb-t790s", + "name": "10 5G UW TD-LTE US 128GB T790S", + "brand": "tcl", + "soc": "snapdragon-765", + "release_date": "2020-10-29", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 400, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/tcl/2020/10-plus-premium-edition-global-dual-sim-td-lte-256gb-t782h.json b/data/smartphone/tcl/2020/10-plus-premium-edition-global-dual-sim-td-lte-256gb-t782h.json new file mode 100644 index 00000000000..d977187fc08 --- /dev/null +++ b/data/smartphone/tcl/2020/10-plus-premium-edition-global-dual-sim-td-lte-256gb-t782h.json @@ -0,0 +1,41 @@ +{ + "slug": "10-plus-premium-edition-global-dual-sim-td-lte-256gb-t782h", + "name": "10 Plus Premium Edition Global Dual SIM TD-LTE 256GB T782H", + "brand": "tcl", + "soc": "snapdragon-665", + "release_date": "2020-08-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Cyprus , Croatia , Czech , Egypt , France , Greece , Germany , Italy , Lebanon , Netherlands , Poland , Portugal , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Turkey , UAE", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/tcl/2020/10-plus-standard-edition-global-dual-sim-td-lte-128gb-t782h.json b/data/smartphone/tcl/2020/10-plus-standard-edition-global-dual-sim-td-lte-128gb-t782h.json new file mode 100644 index 00000000000..06efd9bc737 --- /dev/null +++ b/data/smartphone/tcl/2020/10-plus-standard-edition-global-dual-sim-td-lte-128gb-t782h.json @@ -0,0 +1,41 @@ +{ + "slug": "10-plus-standard-edition-global-dual-sim-td-lte-128gb-t782h", + "name": "10 Plus Standard Edition Global Dual SIM TD-LTE 128GB T782H", + "brand": "tcl", + "soc": "snapdragon-665", + "release_date": "2020-08-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bulgaria , Cyprus , Croatia , Czech , Denmark , France , Germany , Greece , Italy , Netherlands , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Slovenia , Spain , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/tcl/2020/10-plus-standard-edition-global-dual-sim-td-lte-256gb-t782h.json b/data/smartphone/tcl/2020/10-plus-standard-edition-global-dual-sim-td-lte-256gb-t782h.json new file mode 100644 index 00000000000..166b2f54798 --- /dev/null +++ b/data/smartphone/tcl/2020/10-plus-standard-edition-global-dual-sim-td-lte-256gb-t782h.json @@ -0,0 +1,42 @@ +{ + "slug": "10-plus-standard-edition-global-dual-sim-td-lte-256gb-t782h", + "name": "10 Plus Standard Edition Global Dual SIM TD-LTE 256GB T782H", + "brand": "tcl", + "soc": "snapdragon-665", + "release_date": "2020-08-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 269, + "market_countries": "Bulgaria , Cyprus , Croatia , Czech , Denmark , Greece , Germany , Italy , Lebanon , Netherlands , Poland , Portugal , Russia , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Turkey , UAE , UK", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/tcl/2020/10-plus-standard-edition-global-dual-sim-td-lte-64gb-t782h.json b/data/smartphone/tcl/2020/10-plus-standard-edition-global-dual-sim-td-lte-64gb-t782h.json new file mode 100644 index 00000000000..0904b49fcc8 --- /dev/null +++ b/data/smartphone/tcl/2020/10-plus-standard-edition-global-dual-sim-td-lte-64gb-t782h.json @@ -0,0 +1,41 @@ +{ + "slug": "10-plus-standard-edition-global-dual-sim-td-lte-64gb-t782h", + "name": "10 Plus Standard Edition Global Dual SIM TD-LTE 64GB T782H", + "brand": "tcl", + "soc": "snapdragon-665", + "release_date": "2020-08-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bulgaria , Cyprus , Croatia , Czech , France , Greece , Germany , Italy , Lebanon , Netherlands , Poland , Portugal , Romania , Russia , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Turkey , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/tcl/2020/10-pro-dual-sim-td-lte-am-128gb-t799b.json b/data/smartphone/tcl/2020/10-pro-dual-sim-td-lte-am-128gb-t799b.json new file mode 100644 index 00000000000..7505dbfa354 --- /dev/null +++ b/data/smartphone/tcl/2020/10-pro-dual-sim-td-lte-am-128gb-t799b.json @@ -0,0 +1,43 @@ +{ + "slug": "10-pro-dual-sim-td-lte-am-128gb-t799b", + "name": "10 Pro Dual SIM TD-LTE AM 128GB T799B", + "brand": "tcl", + "soc": "snapdragon-675", + "release_date": "2020-05-19", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bolivia , Canada , Ecuador , Guatemala , Honduras , Mexico , Nicaragua , Panama , USA", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/tcl/2020/10-pro-global-dual-sim-td-lte-128gb-t799h.json b/data/smartphone/tcl/2020/10-pro-global-dual-sim-td-lte-128gb-t799h.json new file mode 100644 index 00000000000..cd3e35705c1 --- /dev/null +++ b/data/smartphone/tcl/2020/10-pro-global-dual-sim-td-lte-128gb-t799h.json @@ -0,0 +1,43 @@ +{ + "slug": "10-pro-global-dual-sim-td-lte-128gb-t799h", + "name": "10 Pro Global Dual SIM TD-LTE 128GB T799H", + "brand": "tcl", + "soc": "snapdragon-675", + "release_date": "2020-04-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Cambodia , Croatia , Denmark , Finland , France , Germany , HK , India , Italy , Japan , Kazakhstan , Malaysia , Norway , Philippines , Poland , Portugal , Russia , Romania , Saudi Arabia , Spain , Sweden , Thailand , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/tcl/2020/10-se-global-dual-sim-td-lte-128gb-t766u.json b/data/smartphone/tcl/2020/10-se-global-dual-sim-td-lte-128gb-t766u.json new file mode 100644 index 00000000000..bd1d0f53979 --- /dev/null +++ b/data/smartphone/tcl/2020/10-se-global-dual-sim-td-lte-128gb-t766u.json @@ -0,0 +1,42 @@ +{ + "slug": "10-se-global-dual-sim-td-lte-128gb-t766u", + "name": "10 SE Global Dual SIM TD-LTE 128GB T766U", + "brand": "tcl", + "soc": "helio-p22", + "release_date": "2020-08-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Algeria , Armenia , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Egypt , France , Greece , Germany , Italy , Kazakhstan , Latvia , Lithuania , Netherlands , Poland , Portugal , Romania , Russia , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Turkey , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/tcl/2020/10-se-global-dual-sim-td-lte-64gb-t766h.json b/data/smartphone/tcl/2020/10-se-global-dual-sim-td-lte-64gb-t766h.json new file mode 100644 index 00000000000..ef1b216b74c --- /dev/null +++ b/data/smartphone/tcl/2020/10-se-global-dual-sim-td-lte-64gb-t766h.json @@ -0,0 +1,42 @@ +{ + "slug": "10-se-global-dual-sim-td-lte-64gb-t766h", + "name": "10 SE Global Dual SIM TD-LTE 64GB T766H", + "brand": "tcl", + "soc": "helio-p22", + "release_date": "2020-08-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Algeria , Armenia , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Egypt , France , Greece , Germany , Italy , Kazakhstan , Latvia , Lithuania , Netherlands , Poland , Portugal , Romania , Russia , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Turkey , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/tcl/2020/10-se-lte-latam-128gb-t766j.json b/data/smartphone/tcl/2020/10-se-lte-latam-128gb-t766j.json new file mode 100644 index 00000000000..da5d197fe38 --- /dev/null +++ b/data/smartphone/tcl/2020/10-se-lte-latam-128gb-t766j.json @@ -0,0 +1,42 @@ +{ + "slug": "10-se-lte-latam-128gb-t766j", + "name": "10 SE LTE LATAM 128GB T766J", + "brand": "tcl", + "soc": "helio-p22", + "release_date": "2020-08-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Colombia , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/tcl/2020/10-se-lte-latam-64gb-t766a.json b/data/smartphone/tcl/2020/10-se-lte-latam-64gb-t766a.json new file mode 100644 index 00000000000..cddef00a415 --- /dev/null +++ b/data/smartphone/tcl/2020/10-se-lte-latam-64gb-t766a.json @@ -0,0 +1,43 @@ +{ + "slug": "10-se-lte-latam-64gb-t766a", + "name": "10 SE LTE LATAM 64GB T766A", + "brand": "tcl", + "soc": "helio-p22", + "release_date": "2020-07-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 4889, + "market_countries": "Argentina , Colombia , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/tcl/2020/10l-dual-sim-td-lte-am-128gb-t770b.json b/data/smartphone/tcl/2020/10l-dual-sim-td-lte-am-128gb-t770b.json new file mode 100644 index 00000000000..b56000d9aa8 --- /dev/null +++ b/data/smartphone/tcl/2020/10l-dual-sim-td-lte-am-128gb-t770b.json @@ -0,0 +1,42 @@ +{ + "slug": "10l-dual-sim-td-lte-am-128gb-t770b", + "name": "10L Dual SIM TD-LTE AM 128GB T770B", + "brand": "tcl", + "soc": "snapdragon-665", + "release_date": "2020-05-19", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada , Ecuador , Guatemala , Honduras , Mexico , Panama , USA", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/tcl/2020/10l-dual-sim-td-lte-am-64gb-t770b.json b/data/smartphone/tcl/2020/10l-dual-sim-td-lte-am-64gb-t770b.json new file mode 100644 index 00000000000..380121559f9 --- /dev/null +++ b/data/smartphone/tcl/2020/10l-dual-sim-td-lte-am-64gb-t770b.json @@ -0,0 +1,42 @@ +{ + "slug": "10l-dual-sim-td-lte-am-64gb-t770b", + "name": "10L Dual SIM TD-LTE AM 64GB T770B", + "brand": "tcl", + "soc": "snapdragon-665", + "release_date": "2020-05-19", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada , Ecuador , Guatemala , Honduras , Mexico , Panama , USA", + "market_regions": "Central America , North America , South America" +} diff --git a/data/smartphone/tcl/2020/10l-global-dual-sim-td-lte-128gb-t770h.json b/data/smartphone/tcl/2020/10l-global-dual-sim-td-lte-128gb-t770h.json new file mode 100644 index 00000000000..85dc45719cc --- /dev/null +++ b/data/smartphone/tcl/2020/10l-global-dual-sim-td-lte-128gb-t770h.json @@ -0,0 +1,42 @@ +{ + "slug": "10l-global-dual-sim-td-lte-128gb-t770h", + "name": "10L Global Dual SIM TD-LTE 128GB T770H", + "brand": "tcl", + "soc": "snapdragon-665", + "release_date": "2020-04-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Cambodia , Croatia , Denmark , Finland , France , Germany , HK , India , Italy , Japan , Kazakhstan , Malaysia , Norway , Philippines , Poland , Portugal , Russia , Romania , Saudi Arabia , Spain , Sweden , Thailand , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/tcl/2020/10l-global-dual-sim-td-lte-64gb-t770h.json b/data/smartphone/tcl/2020/10l-global-dual-sim-td-lte-64gb-t770h.json new file mode 100644 index 00000000000..798839b7706 --- /dev/null +++ b/data/smartphone/tcl/2020/10l-global-dual-sim-td-lte-64gb-t770h.json @@ -0,0 +1,42 @@ +{ + "slug": "10l-global-dual-sim-td-lte-64gb-t770h", + "name": "10L Global Dual SIM TD-LTE 64GB T770H", + "brand": "tcl", + "soc": "snapdragon-665", + "release_date": "2020-04-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Cambodia , Croatia , Denmark , Finland , France , Germany , HK , India , Italy , Japan , Kazakhstan , Malaysia , Norway , Philippines , Poland , Portugal , Russia , Romania , Saudi Arabia , Spain , Sweden , Thailand , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/tcl/2020/a1-alpha-20-dual-sim-lte-emea-5029y.json b/data/smartphone/tcl/2020/a1-alpha-20-dual-sim-lte-emea-5029y.json new file mode 100644 index 00000000000..bb6d81d63a4 --- /dev/null +++ b/data/smartphone/tcl/2020/a1-alpha-20-dual-sim-lte-emea-5029y.json @@ -0,0 +1,41 @@ +{ + "slug": "a1-alpha-20-dual-sim-lte-emea-5029y", + "name": "A1 Alpha 20 Dual SIM LTE EMEA 5029Y", + "brand": "tcl", + "soc": "helio-p22", + "release_date": "2020-05-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Austria , Belarus , Bulgaria , Croatia , Slovenia", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/tcl/2020/optus-x-go-td-lte-au-5007u.json b/data/smartphone/tcl/2020/optus-x-go-td-lte-au-5007u.json new file mode 100644 index 00000000000..87916bece12 --- /dev/null +++ b/data/smartphone/tcl/2020/optus-x-go-td-lte-au-5007u.json @@ -0,0 +1,42 @@ +{ + "slug": "optus-x-go-td-lte-au-5007u", + "name": "Optus X Go TD-LTE AU 5007U", + "brand": "tcl", + "soc": "helio-a25", + "release_date": "2020-10-07", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Yes" + }, + "msrp_usd": 129, + "market_countries": "Australia", + "market_regions": "Australia" +} diff --git a/data/smartphone/tcl/2020/optus-x-sight-td-lte-au-5002i.json b/data/smartphone/tcl/2020/optus-x-sight-td-lte-au-5002i.json new file mode 100644 index 00000000000..76abf497555 --- /dev/null +++ b/data/smartphone/tcl/2020/optus-x-sight-td-lte-au-5002i.json @@ -0,0 +1,41 @@ +{ + "slug": "optus-x-sight-td-lte-au-5002i", + "name": "Optus X Sight TD-LTE AU 5002I", + "brand": "tcl", + "soc": "snapdragon-215", + "release_date": "2020-05-17", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 293 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Australia", + "market_regions": "Australia" +} diff --git a/data/smartphone/tcl/2021/10-plus-standard-edition-dual-sim-td-lte-apac-64gb-t782p.json b/data/smartphone/tcl/2021/10-plus-standard-edition-dual-sim-td-lte-apac-64gb-t782p.json new file mode 100644 index 00000000000..bbd6de2317f --- /dev/null +++ b/data/smartphone/tcl/2021/10-plus-standard-edition-dual-sim-td-lte-apac-64gb-t782p.json @@ -0,0 +1,41 @@ +{ + "slug": "10-plus-standard-edition-dual-sim-td-lte-apac-64gb-t782p", + "name": "10 Plus Standard Edition Dual SIM TD-LTE APAC 64GB T782P", + "brand": "tcl", + "soc": "snapdragon-665", + "release_date": "2021-01-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan , Philippines , Taiwan", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/tcl/2021/20-5g-global-dual-sim-td-lte-128gb-t781h.json b/data/smartphone/tcl/2021/20-5g-global-dual-sim-td-lte-128gb-t781h.json new file mode 100644 index 00000000000..03c2ee7058a --- /dev/null +++ b/data/smartphone/tcl/2021/20-5g-global-dual-sim-td-lte-128gb-t781h.json @@ -0,0 +1,43 @@ +{ + "slug": "20-5g-global-dual-sim-td-lte-128gb-t781h", + "name": "20 5G Global Dual SIM TD-LTE 128GB T781H", + "brand": "tcl", + "soc": "snapdragon-690", + "release_date": "2021-01-12", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 299, + "market_countries": "Armenia , Cambodia , Croatia , Denmark , Finland , France , Germany , HK , India , Italy , Japan , Kazakhstan , Malaysia , Norway , Philippines , Poland , Portugal , Russia , Romania , Saudi Arabia , Spain , Sweden , Thailand , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/tcl/2021/20-5g-global-dual-sim-td-lte-256gb-t781k.json b/data/smartphone/tcl/2021/20-5g-global-dual-sim-td-lte-256gb-t781k.json new file mode 100644 index 00000000000..7106c4750bd --- /dev/null +++ b/data/smartphone/tcl/2021/20-5g-global-dual-sim-td-lte-256gb-t781k.json @@ -0,0 +1,42 @@ +{ + "slug": "20-5g-global-dual-sim-td-lte-256gb-t781k", + "name": "20 5G Global Dual SIM TD-LTE 256GB T781K", + "brand": "tcl", + "soc": "snapdragon-690", + "release_date": "2021-01-12", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Cambodia , Croatia , Denmark , Finland , France , Germany , HK , India , Italy , Japan , Kazakhstan , Malaysia , Norway , Philippines , Poland , Portugal , Russia , Romania , Saudi Arabia , Spain , Sweden , Thailand , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/tcl/2021/20-5g-uw-td-lte-us-128gb-t781s-t781spp.json b/data/smartphone/tcl/2021/20-5g-uw-td-lte-us-128gb-t781s-t781spp.json new file mode 100644 index 00000000000..57bb95e9808 --- /dev/null +++ b/data/smartphone/tcl/2021/20-5g-uw-td-lte-us-128gb-t781s-t781spp.json @@ -0,0 +1,42 @@ +{ + "slug": "20-5g-uw-td-lte-us-128gb-t781s-t781spp", + "name": "20 5G UW TD-LTE US 128GB T781S / T781SPP", + "brand": "tcl", + "soc": "snapdragon-690", + "release_date": "2021-11-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/tcl/2021/20-r-5g-global-dual-sim-td-lte-64gb-t767h.json b/data/smartphone/tcl/2021/20-r-5g-global-dual-sim-td-lte-64gb-t767h.json new file mode 100644 index 00000000000..62777beec49 --- /dev/null +++ b/data/smartphone/tcl/2021/20-r-5g-global-dual-sim-td-lte-64gb-t767h.json @@ -0,0 +1,44 @@ +{ + "slug": "20-r-5g-global-dual-sim-td-lte-64gb-t767h", + "name": "20 R 5G Global Dual SIM TD-LTE 64GB T767H", + "brand": "tcl", + "soc": "dimensity-700", + "release_date": "2021-09-22", + "ram_gb": 4.0, + "battery_mah": 4500, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 249, + "market_countries": "Australia , Austria , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Finland , France , Germany , Greece , Hungary , Italy , Netherlands , Norway , Poland , Portugal , Romania , Russia , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Switzerland , Sweden , Turkey , UAE , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/tcl/2021/20-r-5g-global-td-lte-64gb-t767h.json b/data/smartphone/tcl/2021/20-r-5g-global-td-lte-64gb-t767h.json new file mode 100644 index 00000000000..f15ef8b187d --- /dev/null +++ b/data/smartphone/tcl/2021/20-r-5g-global-td-lte-64gb-t767h.json @@ -0,0 +1,44 @@ +{ + "slug": "20-r-5g-global-td-lte-64gb-t767h", + "name": "20 R 5G Global TD-LTE 64GB T767H", + "brand": "tcl", + "soc": "dimensity-700", + "release_date": "2021-09-22", + "ram_gb": 4.0, + "battery_mah": 4500, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 299, + "market_countries": "Australia , France , Ireland , NZ , Portugal , Spain , Turkey , UK", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/tcl/2021/20-se-dual-sim-lte-latam-128gb-t671e.json b/data/smartphone/tcl/2021/20-se-dual-sim-lte-latam-128gb-t671e.json new file mode 100644 index 00000000000..357f0b5a09d --- /dev/null +++ b/data/smartphone/tcl/2021/20-se-dual-sim-lte-latam-128gb-t671e.json @@ -0,0 +1,42 @@ +{ + "slug": "20-se-dual-sim-lte-latam-128gb-t671e", + "name": "20 SE Dual SIM LTE LATAM 128GB T671E", + "brand": "tcl", + "soc": "snapdragon-460", + "release_date": "2021-01-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.82, + "resolution": "720x1640", + "type": "Color IPS TFT LCD display", + "ppi": 263 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Ecuador , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/tcl/2021/20-se-global-dual-sim-td-lte-128gb-t671f.json b/data/smartphone/tcl/2021/20-se-global-dual-sim-td-lte-128gb-t671f.json new file mode 100644 index 00000000000..04f941e1e80 --- /dev/null +++ b/data/smartphone/tcl/2021/20-se-global-dual-sim-td-lte-128gb-t671f.json @@ -0,0 +1,43 @@ +{ + "slug": "20-se-global-dual-sim-td-lte-128gb-t671f", + "name": "20 SE Global Dual SIM TD-LTE 128GB T671F", + "brand": "tcl", + "soc": "snapdragon-460", + "release_date": "2021-01-18", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.82, + "resolution": "720x1640", + "type": "Color IPS TFT LCD display", + "ppi": 263 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 299, + "market_countries": "Australia , Belarus , Jordan , Philippines , Russia , Saudi Arabia , UAE", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia" +} diff --git a/data/smartphone/tcl/2021/20-se-global-dual-sim-td-lte-64gb-t671h.json b/data/smartphone/tcl/2021/20-se-global-dual-sim-td-lte-64gb-t671h.json new file mode 100644 index 00000000000..740df49bff3 --- /dev/null +++ b/data/smartphone/tcl/2021/20-se-global-dual-sim-td-lte-64gb-t671h.json @@ -0,0 +1,43 @@ +{ + "slug": "20-se-global-dual-sim-td-lte-64gb-t671h", + "name": "20 SE Global Dual SIM TD-LTE 64GB T671H", + "brand": "tcl", + "soc": "snapdragon-460", + "release_date": "2021-01-18", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.82, + "resolution": "720x1640", + "type": "Color IPS TFT LCD display", + "ppi": 263 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 149, + "market_countries": "Austria , Belarus , Bulgaria , Croatia , Cyprus , Czech , France , Germany , Greece , Hungary , Poland , Portugal , Slovakia , Slovenia , Spain", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/tcl/2021/20-se-lte-latam-128gb-t671o.json b/data/smartphone/tcl/2021/20-se-lte-latam-128gb-t671o.json new file mode 100644 index 00000000000..64253f2179f --- /dev/null +++ b/data/smartphone/tcl/2021/20-se-lte-latam-128gb-t671o.json @@ -0,0 +1,43 @@ +{ + "slug": "20-se-lte-latam-128gb-t671o", + "name": "20 SE LTE LATAM 128GB T671O", + "brand": "tcl", + "soc": "snapdragon-460", + "release_date": "2021-05-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.82, + "resolution": "720x1640", + "type": "Color IPS TFT LCD display", + "ppi": 263 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 269, + "market_countries": "Mexico , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/tcl/2021/20e-2021-lte-latam-128gb-6125f1.json b/data/smartphone/tcl/2021/20e-2021-lte-latam-128gb-6125f1.json new file mode 100644 index 00000000000..8727f089f1a --- /dev/null +++ b/data/smartphone/tcl/2021/20e-2021-lte-latam-128gb-6125f1.json @@ -0,0 +1,44 @@ +{ + "slug": "20e-2021-lte-latam-128gb-6125f1", + "name": "20E 2021 LTE LATAM 128GB 6125F1", + "brand": "tcl", + "soc": "helio-a25", + "release_date": "2021-04-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 4799, + "market_countries": "Argentina , Colombia , Ecuador , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/tcl/2021/20e-2021-lte-latam-64gb-6125a.json b/data/smartphone/tcl/2021/20e-2021-lte-latam-64gb-6125a.json new file mode 100644 index 00000000000..9f84d4b5931 --- /dev/null +++ b/data/smartphone/tcl/2021/20e-2021-lte-latam-64gb-6125a.json @@ -0,0 +1,43 @@ +{ + "slug": "20e-2021-lte-latam-64gb-6125a", + "name": "20E 2021 LTE LATAM 64GB 6125A", + "brand": "tcl", + "soc": "helio-a25", + "release_date": "2021-04-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Argentina , Peru", + "market_regions": "South America" +} diff --git a/data/smartphone/tcl/2021/20e-2021-lte-latam-64gb-6125f.json b/data/smartphone/tcl/2021/20e-2021-lte-latam-64gb-6125f.json new file mode 100644 index 00000000000..94c94d5d53d --- /dev/null +++ b/data/smartphone/tcl/2021/20e-2021-lte-latam-64gb-6125f.json @@ -0,0 +1,44 @@ +{ + "slug": "20e-2021-lte-latam-64gb-6125f", + "name": "20E 2021 LTE LATAM 64GB 6125F", + "brand": "tcl", + "soc": "helio-a25", + "release_date": "2021-04-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 3999, + "market_countries": "Argentina , Colombia , Ecuador , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/tcl/2021/20l-premium-edition-dual-sim-td-lte-latam-128gb-t774b.json b/data/smartphone/tcl/2021/20l-premium-edition-dual-sim-td-lte-latam-128gb-t774b.json new file mode 100644 index 00000000000..cc393dca1eb --- /dev/null +++ b/data/smartphone/tcl/2021/20l-premium-edition-dual-sim-td-lte-latam-128gb-t774b.json @@ -0,0 +1,43 @@ +{ + "slug": "20l-premium-edition-dual-sim-td-lte-latam-128gb-t774b", + "name": "20L Premium Edition Dual SIM TD-LTE LATAM 128GB T774B", + "brand": "tcl", + "soc": "snapdragon-662", + "release_date": "2021-04-14", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bolivia , Canada , Colombia , USA", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/tcl/2021/20l-premium-edition-dual-sim-td-lte-latam-256gb-t775b.json b/data/smartphone/tcl/2021/20l-premium-edition-dual-sim-td-lte-latam-256gb-t775b.json new file mode 100644 index 00000000000..5643bdad538 --- /dev/null +++ b/data/smartphone/tcl/2021/20l-premium-edition-dual-sim-td-lte-latam-256gb-t775b.json @@ -0,0 +1,42 @@ +{ + "slug": "20l-premium-edition-dual-sim-td-lte-latam-256gb-t775b", + "name": "20L+ Premium Edition Dual SIM TD-LTE LATAM 256GB T775B", + "brand": "tcl", + "soc": "snapdragon-662", + "release_date": "2021-04-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada , Colombia , USA" +} diff --git a/data/smartphone/tcl/2021/20l-premium-edition-global-dual-sim-td-lte-256gb-t775h.json b/data/smartphone/tcl/2021/20l-premium-edition-global-dual-sim-td-lte-256gb-t775h.json new file mode 100644 index 00000000000..bbc8a6a7c26 --- /dev/null +++ b/data/smartphone/tcl/2021/20l-premium-edition-global-dual-sim-td-lte-256gb-t775h.json @@ -0,0 +1,44 @@ +{ + "slug": "20l-premium-edition-global-dual-sim-td-lte-256gb-t775h", + "name": "20L+ Premium Edition Global Dual SIM TD-LTE 256GB T775H", + "brand": "tcl", + "soc": "snapdragon-662", + "release_date": "2021-04-14", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 400, + "market_countries": "Armenia , Australia , Belgium , Cambodia , Croatia , Czech , Denmark , Finland , France , Germany , HK , Hungary , India , Italy , Japan , Kazakhstan , Malaysia , Netherlands , Norway , Philippines , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Spain , Sweden , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/tcl/2021/20l-premium-edition-global-dual-sim-td-lte-64gb-t774h.json b/data/smartphone/tcl/2021/20l-premium-edition-global-dual-sim-td-lte-64gb-t774h.json new file mode 100644 index 00000000000..a80ef751531 --- /dev/null +++ b/data/smartphone/tcl/2021/20l-premium-edition-global-dual-sim-td-lte-64gb-t774h.json @@ -0,0 +1,44 @@ +{ + "slug": "20l-premium-edition-global-dual-sim-td-lte-64gb-t774h", + "name": "20L Premium Edition Global Dual SIM TD-LTE 64GB T774H", + "brand": "tcl", + "soc": "snapdragon-662", + "release_date": "2021-04-14", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 199, + "market_countries": "Armenia , Australia , Belgium , Cambodia , Croatia , Czech , Denmark , Finland , France , Germany , HK , Hungary , India , Italy , Japan , Kazakhstan , Malaysia , Netherlands , Norway , Philippines , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Spain , Sweden , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/tcl/2021/20l-premium-edition-td-lte-latam-128gb-t774b.json b/data/smartphone/tcl/2021/20l-premium-edition-td-lte-latam-128gb-t774b.json new file mode 100644 index 00000000000..6e21b236865 --- /dev/null +++ b/data/smartphone/tcl/2021/20l-premium-edition-td-lte-latam-128gb-t774b.json @@ -0,0 +1,43 @@ +{ + "slug": "20l-premium-edition-td-lte-latam-128gb-t774b", + "name": "20L Premium Edition TD-LTE LATAM 128GB T774B", + "brand": "tcl", + "soc": "snapdragon-662", + "release_date": "2021-04-14", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Chile , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/tcl/2021/20l-premium-edition-td-lte-latam-256gb-t775b.json b/data/smartphone/tcl/2021/20l-premium-edition-td-lte-latam-256gb-t775b.json new file mode 100644 index 00000000000..f60485fa98a --- /dev/null +++ b/data/smartphone/tcl/2021/20l-premium-edition-td-lte-latam-256gb-t775b.json @@ -0,0 +1,43 @@ +{ + "slug": "20l-premium-edition-td-lte-latam-256gb-t775b", + "name": "20L+ Premium Edition TD-LTE LATAM 256GB T775B", + "brand": "tcl", + "soc": "snapdragon-662", + "release_date": "2021-04-28", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada , Chile , Mexico , USA", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/tcl/2021/20l-standard-edition-global-dual-sim-td-lte-128gb-t774h.json b/data/smartphone/tcl/2021/20l-standard-edition-global-dual-sim-td-lte-128gb-t774h.json new file mode 100644 index 00000000000..ca03fcc0e00 --- /dev/null +++ b/data/smartphone/tcl/2021/20l-standard-edition-global-dual-sim-td-lte-128gb-t774h.json @@ -0,0 +1,44 @@ +{ + "slug": "20l-standard-edition-global-dual-sim-td-lte-128gb-t774h", + "name": "20L Standard Edition Global Dual SIM TD-LTE 128GB T774H", + "brand": "tcl", + "soc": "snapdragon-662", + "release_date": "2021-04-14", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 229, + "market_countries": "Australia , Belgium , Cambodia , Croatia , Czech , Denmark , Finland , France , Germany , Hungary , India , Italy , Japan , Malaysia , Netherlands , Norway , Philippines , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Spain , Sweden , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/tcl/2021/20s-td-lte-na-128gb-t773o.json b/data/smartphone/tcl/2021/20s-td-lte-na-128gb-t773o.json new file mode 100644 index 00000000000..bd4201931db --- /dev/null +++ b/data/smartphone/tcl/2021/20s-td-lte-na-128gb-t773o.json @@ -0,0 +1,44 @@ +{ + "slug": "20s-td-lte-na-128gb-t773o", + "name": "20S TD-LTE NA 128GB T773O", + "brand": "tcl", + "soc": "snapdragon-665", + "release_date": "2021-04-24", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 460, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/tcl/2021/20y-2021-dual-sim-lte-eu-64gb-6156h.json b/data/smartphone/tcl/2021/20y-2021-dual-sim-lte-eu-64gb-6156h.json new file mode 100644 index 00000000000..8011f8b5df6 --- /dev/null +++ b/data/smartphone/tcl/2021/20y-2021-dual-sim-lte-eu-64gb-6156h.json @@ -0,0 +1,43 @@ +{ + "slug": "20y-2021-dual-sim-lte-eu-64gb-6156h", + "name": "20Y 2021 Dual SIM LTE EU 64GB 6156H", + "brand": "tcl", + "soc": "helio-a25", + "release_date": "2021-04-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Belarus , Russia , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/tcl/2021/20y-2021-global-dual-sim-td-lte-128gb-6156d1.json b/data/smartphone/tcl/2021/20y-2021-global-dual-sim-td-lte-128gb-6156d1.json new file mode 100644 index 00000000000..d3e9cc438b4 --- /dev/null +++ b/data/smartphone/tcl/2021/20y-2021-global-dual-sim-td-lte-128gb-6156d1.json @@ -0,0 +1,44 @@ +{ + "slug": "20y-2021-global-dual-sim-td-lte-128gb-6156d1", + "name": "20Y 2021 Global Dual SIM TD-LTE 128GB 6156D1", + "brand": "tcl", + "soc": "helio-a25", + "release_date": "2021-04-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 179, + "market_countries": "Australia , Cyprus , Czech , Egypt , Germany , Greece , Italy , Kenya , Malaysia , Poland , Saudi Arabia , Spain , Sri Lanka , UAE", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/tcl/2021/20y-2021-global-dual-sim-td-lte-64gb-6156d.json b/data/smartphone/tcl/2021/20y-2021-global-dual-sim-td-lte-64gb-6156d.json new file mode 100644 index 00000000000..aaa5308d9dd --- /dev/null +++ b/data/smartphone/tcl/2021/20y-2021-global-dual-sim-td-lte-64gb-6156d.json @@ -0,0 +1,44 @@ +{ + "slug": "20y-2021-global-dual-sim-td-lte-64gb-6156d", + "name": "20Y 2021 Global Dual SIM TD-LTE 64GB 6156D", + "brand": "tcl", + "soc": "helio-a25", + "release_date": "2021-04-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 229, + "market_countries": "Australia , Cyprus , Czech , Germany , Greece , Italy , Kenya , Malaysia , Nigeria , Poland , Saudi Arabia , Spain , Sri Lanka , UAE", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/tcl/2021/20y-2021-lte-latam-128gb-6156a1.json b/data/smartphone/tcl/2021/20y-2021-lte-latam-128gb-6156a1.json new file mode 100644 index 00000000000..049b1266970 --- /dev/null +++ b/data/smartphone/tcl/2021/20y-2021-lte-latam-128gb-6156a1.json @@ -0,0 +1,43 @@ +{ + "slug": "20y-2021-lte-latam-128gb-6156a1", + "name": "20Y 2021 LTE LATAM 128GB 6156A1", + "brand": "tcl", + "soc": "helio-a25", + "release_date": "2021-04-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Argentina , Colombia , Peru", + "market_regions": "South America" +} diff --git a/data/smartphone/tcl/2021/20y-2021-lte-latam-64gb-6156a.json b/data/smartphone/tcl/2021/20y-2021-lte-latam-64gb-6156a.json new file mode 100644 index 00000000000..69ae38e666a --- /dev/null +++ b/data/smartphone/tcl/2021/20y-2021-lte-latam-64gb-6156a.json @@ -0,0 +1,43 @@ +{ + "slug": "20y-2021-lte-latam-64gb-6156a", + "name": "20Y 2021 LTE LATAM 64GB 6156A", + "brand": "tcl", + "soc": "helio-a25", + "release_date": "2021-04-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Argentina , Peru", + "market_regions": "South America" +} diff --git a/data/smartphone/tcl/2021/a30-lte-latam-5102o.json b/data/smartphone/tcl/2021/a30-lte-latam-5102o.json new file mode 100644 index 00000000000..b7a99661c6e --- /dev/null +++ b/data/smartphone/tcl/2021/a30-lte-latam-5102o.json @@ -0,0 +1,42 @@ +{ + "slug": "a30-lte-latam-5102o", + "name": "A30 LTE LATAM 5102O", + "brand": "tcl", + "soc": "helio-p22", + "release_date": "2021-10-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 170.95, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 293 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "msrp_usd": 120, + "market_countries": "Argentina , Colombia , Mexico , USA", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/tecno/2017/camon-x-td-lte-dual-sim-16gb.json b/data/smartphone/tecno/2017/camon-x-td-lte-dual-sim-16gb.json new file mode 100644 index 00000000000..27bda9fabac --- /dev/null +++ b/data/smartphone/tecno/2017/camon-x-td-lte-dual-sim-16gb.json @@ -0,0 +1,41 @@ +{ + "slug": "camon-x-td-lte-dual-sim-16gb", + "name": "Camon X TD-LTE Dual SIM 16GB", + "brand": "tecno", + "soc": "helio-p23", + "release_date": "2017-04-09", + "ram_gb": 3.0, + "battery_mah": 3750, + "weight_g": 148.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.98, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Egypt , Kenya , Mali , Nigeria , Tanzania , Uganda", + "market_regions": "Africa" +} diff --git a/data/smartphone/tecno/2019/phantom-9-dual-sim-td-lte-128gb-ab7.json b/data/smartphone/tecno/2019/phantom-9-dual-sim-td-lte-128gb-ab7.json new file mode 100644 index 00000000000..ca1e9b621f4 --- /dev/null +++ b/data/smartphone/tecno/2019/phantom-9-dual-sim-td-lte-128gb-ab7.json @@ -0,0 +1,41 @@ +{ + "slug": "phantom-9-dual-sim-td-lte-128gb-ab7", + "name": "Phantom 9 Dual SIM TD-LTE 128GB AB7", + "brand": "tecno", + "soc": "helio-p35", + "release_date": "2019-07-08", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Egypt , Kenya , Mali , Nigeria , Tanzania , UAE , Uganda", + "market_regions": "Africa , Middle East" +} diff --git a/data/smartphone/tecno/2020/camon-15-air-dual-sim-td-lte-cc6-cd6.json b/data/smartphone/tecno/2020/camon-15-air-dual-sim-td-lte-cc6-cd6.json new file mode 100644 index 00000000000..1a8c4a75f76 --- /dev/null +++ b/data/smartphone/tecno/2020/camon-15-air-dual-sim-td-lte-cc6-cd6.json @@ -0,0 +1,41 @@ +{ + "slug": "camon-15-air-dual-sim-td-lte-cc6-cd6", + "name": "Camon 15 Air Dual SIM TD-LTE CC6 / CD6", + "brand": "tecno", + "soc": "helio-p22", + "release_date": "2020-04-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "market_countries": "Egypt , India , Kenya , Mali , Nigeria , Pakistan , Tanzania , Uganda", + "market_regions": "Africa , Asia , Southeast Asia" +} diff --git a/data/smartphone/tecno/2020/camon-15-dual-sim-td-lte-cc7-cd7.json b/data/smartphone/tecno/2020/camon-15-dual-sim-td-lte-cc7-cd7.json new file mode 100644 index 00000000000..1ae72e3525e --- /dev/null +++ b/data/smartphone/tecno/2020/camon-15-dual-sim-td-lte-cc7-cd7.json @@ -0,0 +1,41 @@ +{ + "slug": "camon-15-dual-sim-td-lte-cc7-cd7", + "name": "Camon 15 Dual SIM TD-LTE CC7 / CD7", + "brand": "tecno", + "soc": "helio-p22", + "release_date": "2020-02-26", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "market_countries": "Egypt , India , Kenya , Mali , Nigeria , Pakistan , Tanzania , Uganda", + "market_regions": "Africa , Asia , Southeast Asia" +} diff --git a/data/smartphone/tecno/2020/camon-15-premier-dual-sim-td-lte-128gb-cc8j-cd8j.json b/data/smartphone/tecno/2020/camon-15-premier-dual-sim-td-lte-128gb-cc8j-cd8j.json new file mode 100644 index 00000000000..9f9f362cb31 --- /dev/null +++ b/data/smartphone/tecno/2020/camon-15-premier-dual-sim-td-lte-128gb-cc8j-cd8j.json @@ -0,0 +1,41 @@ +{ + "slug": "camon-15-premier-dual-sim-td-lte-128gb-cc8j-cd8j", + "name": "Camon 15 Premier Dual SIM TD-LTE 128GB CC8j / CD8j", + "brand": "tecno", + "soc": "helio-p35", + "release_date": "2020-02-26", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 203.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.54, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Egypt , India , Kenya , Mali , Nigeria , Pakistan , Tanzania , UAE , Uganda", + "market_regions": "Africa , Asia , Middle East , Southeast Asia" +} diff --git a/data/smartphone/tecno/2020/camon-15-pro-dual-sim-td-lte-128gb-cc8-cd8.json b/data/smartphone/tecno/2020/camon-15-pro-dual-sim-td-lte-128gb-cc8-cd8.json new file mode 100644 index 00000000000..3329d87c5db --- /dev/null +++ b/data/smartphone/tecno/2020/camon-15-pro-dual-sim-td-lte-128gb-cc8-cd8.json @@ -0,0 +1,41 @@ +{ + "slug": "camon-15-pro-dual-sim-td-lte-128gb-cc8-cd8", + "name": "Camon 15 Pro Dual SIM TD-LTE 128GB CC8 / CD8", + "brand": "tecno", + "soc": "helio-p35", + "release_date": "2020-02-26", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 203.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.54, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Egypt , India , Kenya , Mali , Nigeria , Pakistan , Tanzania , UAE , Uganda", + "market_regions": "Africa , Asia , Middle East , Southeast Asia" +} diff --git a/data/smartphone/tecno/2020/pouvoir-4-pro-dual-sim-td-lte-128gb.json b/data/smartphone/tecno/2020/pouvoir-4-pro-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..04b8841acf8 --- /dev/null +++ b/data/smartphone/tecno/2020/pouvoir-4-pro-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "pouvoir-4-pro-dual-sim-td-lte-128gb", + "name": "Pouvoir 4 Pro Dual SIM TD-LTE 128GB", + "brand": "tecno", + "soc": "helio-p22", + "release_date": "2020-07-01", + "ram_gb": 6.0, + "battery_mah": 6000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 7.0, + "resolution": "720x1640", + "type": "Color IPS TFT LCD display", + "ppi": 256 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "market_countries": "Egypt , India , Kenya , Mali , Nigeria , Pakistan , Tanzania , Uganda", + "market_regions": "Africa , Asia , Southeast Asia" +} diff --git a/data/smartphone/tecno/2020/spark-5-dual-sim-td-lte.json b/data/smartphone/tecno/2020/spark-5-dual-sim-td-lte.json new file mode 100644 index 00000000000..1bf533b3f65 --- /dev/null +++ b/data/smartphone/tecno/2020/spark-5-dual-sim-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "spark-5-dual-sim-td-lte", + "name": "Spark 5 Dual SIM TD-LTE", + "brand": "tecno", + "soc": "helio-p22", + "release_date": "2020-05-01", + "ram_gb": 2.0, + "battery_mah": 5000, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "msrp_usd": 124, + "market_countries": "Egypt , Kenya , Mali , Nigeria , Pakistan , Tanzania , Uganda", + "market_regions": "Africa , Asia" +} diff --git a/data/smartphone/tecno/2020/spark-5-pro-dual-sim-td-lte.json b/data/smartphone/tecno/2020/spark-5-pro-dual-sim-td-lte.json new file mode 100644 index 00000000000..5ad6cd6460c --- /dev/null +++ b/data/smartphone/tecno/2020/spark-5-pro-dual-sim-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "spark-5-pro-dual-sim-td-lte", + "name": "Spark 5 Pro Dual SIM TD-LTE", + "brand": "tecno", + "soc": "helio-p22", + "release_date": "2020-07-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "market_countries": "Egypt , Kenya , Mali , Nigeria , Tanzania , Uganda", + "market_regions": "Africa" +} diff --git a/data/smartphone/tecno/2020/spark-power-2-dual-sim-td-lte-lc8.json b/data/smartphone/tecno/2020/spark-power-2-dual-sim-td-lte-lc8.json new file mode 100644 index 00000000000..dfd011f9526 --- /dev/null +++ b/data/smartphone/tecno/2020/spark-power-2-dual-sim-td-lte-lc8.json @@ -0,0 +1,42 @@ +{ + "slug": "spark-power-2-dual-sim-td-lte-lc8", + "name": "Spark Power 2 Dual SIM TD-LTE LC8", + "brand": "tecno", + "soc": "helio-p22", + "release_date": "2020-06-23", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 7.0, + "resolution": "720x1640", + "type": "Color IPS TFT LCD display", + "ppi": 256 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Egypt , India , Kenya , Mali , Nigeria , Tanzania , UAE , Uganda", + "market_regions": "Africa , Asia , Middle East , Southeast Asia" +} diff --git a/data/smartphone/tecno/2024/spark-go-1s.json b/data/smartphone/tecno/2024/spark-go-1s.json new file mode 100644 index 00000000000..0bbdd9f3575 --- /dev/null +++ b/data/smartphone/tecno/2024/spark-go-1s.json @@ -0,0 +1,32 @@ +{ + "slug": "spark-go-1s", + "name": "Spark Go 1S", + "brand": "tecno", + "soc": "helio-a22", + "release_date": "2024-01-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.6 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "msrp_usd": 129 +} diff --git a/data/smartphone/ulefone/2018/armor-3-global-dual-sim-td-lte.json b/data/smartphone/ulefone/2018/armor-3-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..0be96ca917b --- /dev/null +++ b/data/smartphone/ulefone/2018/armor-3-global-dual-sim-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "armor-3-global-dual-sim-td-lte", + "name": "Armor 3 Global Dual SIM TD-LTE", + "brand": "ulefone", + "soc": "helio-p23", + "release_date": "2018-10-01", + "ram_gb": 4.0, + "battery_mah": 10300, + "weight_g": 364.9, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 21.5 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Canada , Cyprus , France , Greece , Germany , India , Italy , Japan , Malaysia , Nigeria , Pakistan , Russia , South Africa , South Korea , Spain , Switzerland , UK , USA", + "market_regions": "Africa , Asia , Europe , North America , Western Europe , Worldwide" +} diff --git a/data/smartphone/ulefone/2018/armor-3t-global-dual-sim-td-lte.json b/data/smartphone/ulefone/2018/armor-3t-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..657ca7c1b40 --- /dev/null +++ b/data/smartphone/ulefone/2018/armor-3t-global-dual-sim-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "armor-3t-global-dual-sim-td-lte", + "name": "Armor 3T Global Dual SIM TD-LTE", + "brand": "ulefone", + "soc": "helio-p23", + "release_date": "2018-10-01", + "ram_gb": 4.0, + "battery_mah": 10300, + "weight_g": 373.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 21.5 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Canada , Cyprus , France , Greece , Germany , India , Italy , Japan , Malaysia , Nigeria , Pakistan , Russia , South Africa , South Korea , Spain , Switzerland , UK , USA", + "market_regions": "Africa , Asia , Europe , North America , Western Europe , Worldwide" +} diff --git a/data/smartphone/ulefone/2018/armor-5-dual-sim-lte.json b/data/smartphone/ulefone/2018/armor-5-dual-sim-lte.json new file mode 100644 index 00000000000..800129f3cd7 --- /dev/null +++ b/data/smartphone/ulefone/2018/armor-5-dual-sim-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "armor-5-dual-sim-lte", + "name": "Armor 5 Dual SIM LTE", + "brand": "ulefone", + "soc": "helio-p23", + "release_date": "2018-07-27", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 228.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.85, + "resolution": "720x1512", + "type": "Color IPS TFT LCD display", + "ppi": 286 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Canada , Cyprus , France , Greece , Germany , India , Italy , Japan , Malaysia , Nigeria , Pakistan , Russia , South Africa , South Korea , Spain , Switzerland , UK , USA", + "market_regions": "Africa , Asia , Europe , North America , Western Europe , Worldwide" +} diff --git a/data/smartphone/ulefone/2018/power-3-dual-sim-lte.json b/data/smartphone/ulefone/2018/power-3-dual-sim-lte.json new file mode 100644 index 00000000000..3bf7e53fa38 --- /dev/null +++ b/data/smartphone/ulefone/2018/power-3-dual-sim-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "power-3-dual-sim-lte", + "name": "Power 3 Dual SIM LTE", + "brand": "ulefone", + "soc": "helio-p23", + "release_date": "2018-01-22", + "ram_gb": 6.0, + "battery_mah": 6080, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB C reversible" + }, + "market_countries": "Germany , Russia , Spain , UAE", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/ulefone/2018/power-3s-dual-sim-lte.json b/data/smartphone/ulefone/2018/power-3s-dual-sim-lte.json new file mode 100644 index 00000000000..5e6e08b83d5 --- /dev/null +++ b/data/smartphone/ulefone/2018/power-3s-dual-sim-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "power-3s-dual-sim-lte", + "name": "Power 3s Dual SIM LTE", + "brand": "ulefone", + "soc": "helio-p23", + "release_date": "2018-02-02", + "ram_gb": 4.0, + "battery_mah": 6350, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB C reversible" + }, + "market_countries": "Germany , Portugal , Spain , UAE", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/ulefone/2018/x-dual-sim-lte.json b/data/smartphone/ulefone/2018/x-dual-sim-lte.json new file mode 100644 index 00000000000..cc570d5670e --- /dev/null +++ b/data/smartphone/ulefone/2018/x-dual-sim-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "x-dual-sim-lte", + "name": "X Dual SIM LTE", + "brand": "ulefone", + "soc": "helio-p23", + "release_date": "2018-06-14", + "ram_gb": 4.0, + "battery_mah": 3300, + "weight_g": 217.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.85, + "resolution": "720x1512", + "type": "Color IPS TFT LCD display", + "ppi": 286 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 8, + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "Yes" + }, + "market_countries": "Cyprus , France , Greece , Germany , India , Italy , Japan , Malaysia , Nigeria , Pakistan , Russia , South Africa , South Korea , Spain , Switzerland , UK , USA", + "market_regions": "Africa , Asia , Europe , North America , Western Europe , Worldwide" +} diff --git a/data/smartphone/ulefone/2019/armor-3w-global-dual-sim-td-lte.json b/data/smartphone/ulefone/2019/armor-3w-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..8958f0aa5f1 --- /dev/null +++ b/data/smartphone/ulefone/2019/armor-3w-global-dual-sim-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "armor-3w-global-dual-sim-td-lte", + "name": "Armor 3W Global Dual SIM TD-LTE", + "brand": "ulefone", + "soc": "helio-p70", + "release_date": "2019-09-01", + "ram_gb": 6.0, + "battery_mah": 10300, + "weight_g": 364.9, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 21.5 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Canada , Cyprus , France , Greece , Germany , India , Italy , Japan , Malaysia , Nigeria , Pakistan , Russia , South Africa , South Korea , Spain , Switzerland , UK , USA", + "market_regions": "Africa , Asia , Europe , North America , Western Europe , Worldwide" +} diff --git a/data/smartphone/ulefone/2019/armor-5s-global-dual-sim-lte.json b/data/smartphone/ulefone/2019/armor-5s-global-dual-sim-lte.json new file mode 100644 index 00000000000..4bcc90aabed --- /dev/null +++ b/data/smartphone/ulefone/2019/armor-5s-global-dual-sim-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "armor-5s-global-dual-sim-lte", + "name": "Armor 5S Global Dual SIM LTE", + "brand": "ulefone", + "soc": "helio-p70", + "release_date": "2019-08-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 228.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.89, + "resolution": "720x1512", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Canada , Cyprus , France , Greece , Germany , India , Italy , Japan , Malaysia , Nigeria , Pakistan , Russia , South Africa , South Korea , Spain , Switzerland , UK , USA", + "market_regions": "Africa , Asia , Europe , North America , Western Europe , Worldwide" +} diff --git a/data/smartphone/ulefone/2019/armor-6-global-dual-sim-td-lte.json b/data/smartphone/ulefone/2019/armor-6-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..caec596209c --- /dev/null +++ b/data/smartphone/ulefone/2019/armor-6-global-dual-sim-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "armor-6-global-dual-sim-td-lte", + "name": "Armor 6 Global Dual SIM TD-LTE", + "brand": "ulefone", + "soc": "helio-p60", + "release_date": "2019-01-14", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 267.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Canada , Cyprus , France , Greece , Germany , India , Italy , Japan , Malaysia , Nigeria , Pakistan , Russia , South Africa , South Korea , Spain , Switzerland , UK , USA", + "market_regions": "Africa , Asia , Europe , North America , Western Europe , Worldwide" +} diff --git a/data/smartphone/ulefone/2019/armor-6e-global-dual-sim-td-lte.json b/data/smartphone/ulefone/2019/armor-6e-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..0d12df09882 --- /dev/null +++ b/data/smartphone/ulefone/2019/armor-6e-global-dual-sim-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "armor-6e-global-dual-sim-td-lte", + "name": "Armor 6E Global Dual SIM TD-LTE", + "brand": "ulefone", + "soc": "helio-p70", + "release_date": "2019-05-12", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 267.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Canada , Cyprus , France , Greece , Germany , India , Italy , Japan , Malaysia , Nigeria , Pakistan , Russia , South Africa , South Korea , Spain , Switzerland , UK , USA", + "market_regions": "Africa , Asia , Europe , North America , Western Europe , Worldwide" +} diff --git a/data/smartphone/ulefone/2019/armor-7-global-dual-sim-td-lte.json b/data/smartphone/ulefone/2019/armor-7-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..11ea6c37a9e --- /dev/null +++ b/data/smartphone/ulefone/2019/armor-7-global-dual-sim-td-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "armor-7-global-dual-sim-td-lte", + "name": "Armor 7 Global Dual SIM TD-LTE", + "brand": "ulefone", + "soc": "helio-p90", + "release_date": "2019-10-26", + "ram_gb": 8.0, + "battery_mah": 5500, + "weight_g": 290.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Austria , Belarus , Belgium , Bulgaria , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , Hungary , Israel , Italy , Japan , Jordan , Kazakhstan , Kuwait , Latvia , Lithuania , Netherlands , Norway , NZ , Pakistan , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Singapore , Slovenia , Spain , Sweden , Switzerland , Turkey , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/ulefone/2019/armor-x5-global-dual-sim-lte.json b/data/smartphone/ulefone/2019/armor-x5-global-dual-sim-lte.json new file mode 100644 index 00000000000..de5b789b4ac --- /dev/null +++ b/data/smartphone/ulefone/2019/armor-x5-global-dual-sim-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "armor-x5-global-dual-sim-lte", + "name": "Armor X5 Global Dual SIM LTE", + "brand": "ulefone", + "soc": "helio-p23", + "release_date": "2019-10-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 235.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 293 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Cyprus , France , Germany , Greece , Hungary , Russia , Spain , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/ulefone/2019/note-7p-dual-sim-lte.json b/data/smartphone/ulefone/2019/note-7p-dual-sim-lte.json new file mode 100644 index 00000000000..f88e701b3dc --- /dev/null +++ b/data/smartphone/ulefone/2019/note-7p-dual-sim-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "note-7p-dual-sim-lte", + "name": "Note 7P Dual SIM LTE", + "brand": "ulefone", + "soc": "helio-a22", + "release_date": "2019-06-28", + "ram_gb": 3.0, + "battery_mah": 3500, + "weight_g": 178.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "600x1280", + "type": "Color IPS TFT LCD display", + "ppi": 232 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Cyprus , Croatia , Czech , Germany , Greece , Israel , Poland , Romania , Russia , Thailand , UAE", + "market_regions": "Africa , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/ulefone/2019/power-6-dual-sim-td-lte.json b/data/smartphone/ulefone/2019/power-6-dual-sim-td-lte.json new file mode 100644 index 00000000000..7f4ebfe00d5 --- /dev/null +++ b/data/smartphone/ulefone/2019/power-6-dual-sim-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "power-6-dual-sim-td-lte", + "name": "Power 6 Dual SIM TD-LTE", + "brand": "ulefone", + "soc": "helio-p35", + "release_date": "2019-06-01", + "ram_gb": 4.0, + "battery_mah": 6350, + "weight_g": 207.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Canada , Cyprus , France , Greece , Germany , India , Italy , Japan , Malaysia , Nigeria , Pakistan , Russia , South Africa , South Korea , Spain , Switzerland , UK , USA", + "market_regions": "Africa , Asia , Europe , North America , Western Europe , Worldwide" +} diff --git a/data/smartphone/ulefone/2019/t2-global-dual-sim-lte.json b/data/smartphone/ulefone/2019/t2-global-dual-sim-lte.json new file mode 100644 index 00000000000..a7ae55eb3e5 --- /dev/null +++ b/data/smartphone/ulefone/2019/t2-global-dual-sim-lte.json @@ -0,0 +1,42 @@ +{ + "slug": "t2-global-dual-sim-lte", + "name": "T2 Global Dual SIM LTE", + "brand": "ulefone", + "soc": "helio-p70", + "release_date": "2019-08-27", + "ram_gb": 6.0, + "battery_mah": 4200, + "weight_g": 197.2, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 377 + }, + "cameras": [ + { + "type": "main", + "mp": 16.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Canada , Cyprus , France , Greece , Germany , India , Italy , Japan , Malaysia , Nigeria , Pakistan , Russia , South Africa , South Korea , Spain , Switzerland , UK , USA", + "market_regions": "Africa , Asia , Europe , North America , Western Europe , Worldwide" +} diff --git a/data/smartphone/unihertz/2018/atom-global-dual-sim-td-lte.json b/data/smartphone/unihertz/2018/atom-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..43cc0b9176e --- /dev/null +++ b/data/smartphone/unihertz/2018/atom-global-dual-sim-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "atom-global-dual-sim-td-lte", + "name": "Atom Global Dual SIM TD-LTE", + "brand": "unihertz", + "soc": "helio-p23", + "release_date": "2018-06-08", + "ram_gb": 4.0, + "battery_mah": 2000, + "weight_g": 108.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 2.45, + "resolution": "240x432", + "type": "Color IPS TFT LCD display", + "ppi": 202 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB C reversible" + }, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Brazil , Bulgaria , Canada , Chile , China , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , HK , Honduras , Hungary , India , Indonesia , Ireland , Israel , Italy , Japan , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lithuania , Malaysia , Mexico , Nepal , Netherlands , Norway , NZ , Panama , Pakistan , Paraguay , Peru , Philippines , Poland , Portugal , Puerto Rico , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Sweden , Sri Lanka , Switzerland , Taiwan , Thailand , Turkey , UK , Ukraine , USA , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/unihertz/2020/titan-global-dual-sim-td-lte.json b/data/smartphone/unihertz/2020/titan-global-dual-sim-td-lte.json new file mode 100644 index 00000000000..8d343117686 --- /dev/null +++ b/data/smartphone/unihertz/2020/titan-global-dual-sim-td-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "titan-global-dual-sim-td-lte", + "name": "Titan Global Dual SIM TD-LTE", + "brand": "unihertz", + "soc": "helio-p60", + "release_date": "2020-01-01", + "ram_gb": 6.0, + "battery_mah": 6000, + "weight_g": 303.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 4.6, + "resolution": "1430x1438", + "type": "Color IPS TFT LCD display", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB C reversible" + }, + "market_countries": "Algeria , Argentina , Armenia , Australia , Austria , Bangladesh , Belarus , Belgium , Brazil , Bulgaria , Canada , Chile , China , Colombia , Costa Rica , Croatia , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , HK , Honduras , Hungary , India , Indonesia , Ireland , Israel , Italy , Japan , Jordan , Kazakhstan , Kenya , Kuwait , Latvia , Lithuania , Malaysia , Mexico , Nepal , Netherlands , Norway , NZ , Panama , Pakistan , Paraguay , Peru , Philippines , Poland , Portugal , Puerto Rico , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Sweden , Sri Lanka , Switzerland , Taiwan , Thailand , Turkey , UK , Ukraine , USA , Vietnam", + "market_regions": "Africa , Asia , Australia , Central America , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/vivo/2017/v5-plus.json b/data/smartphone/vivo/2017/v5-plus.json new file mode 100644 index 00000000000..d6698e67bd2 --- /dev/null +++ b/data/smartphone/vivo/2017/v5-plus.json @@ -0,0 +1,32 @@ +{ + "slug": "v5-plus", + "name": "V5 Plus", + "brand": "vivo", + "soc": "snapdragon-625", + "release_date": "2017-01-01", + "ram_gb": 4.0, + "battery_mah": 3055, + "weight_g": 158.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.5 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "msrp_usd": 249 +} diff --git a/data/smartphone/vivo/2017/vivo-y65-dual-sim-lte-my-vn-1719.json b/data/smartphone/vivo/2017/vivo-y65-dual-sim-lte-my-vn-1719.json new file mode 100644 index 00000000000..a5f2482ed9e --- /dev/null +++ b/data/smartphone/vivo/2017/vivo-y65-dual-sim-lte-my-vn-1719.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y65-dual-sim-lte-my-vn-1719", + "name": "Vivo Y65 Dual SIM LTE MY VN 1719", + "brand": "vivo", + "soc": "snapdragon-425", + "release_date": "2017-10-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 157.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Malaysia , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2017/vivo-y65-dual-sim-td-lte-kh-1719.json b/data/smartphone/vivo/2017/vivo-y65-dual-sim-td-lte-kh-1719.json new file mode 100644 index 00000000000..abb9ccd9a92 --- /dev/null +++ b/data/smartphone/vivo/2017/vivo-y65-dual-sim-td-lte-kh-1719.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y65-dual-sim-td-lte-kh-1719", + "name": "Vivo Y65 Dual SIM TD-LTE KH 1719", + "brand": "vivo", + "soc": "snapdragon-425", + "release_date": "2017-10-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 157.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Cambodia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2017/vivo-y66-dual-sim-td-lte-cn.json b/data/smartphone/vivo/2017/vivo-y66-dual-sim-td-lte-cn.json new file mode 100644 index 00000000000..d38708ef42f --- /dev/null +++ b/data/smartphone/vivo/2017/vivo-y66-dual-sim-td-lte-cn.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y66-dual-sim-td-lte-cn", + "name": "Vivo Y66 Dual SIM TD-LTE CN", + "brand": "vivo", + "soc": "snapdragon-430", + "release_date": "2017-01-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 157.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "6.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2017/vivo-y66i-a-dual-sim-td-lte-cn.json b/data/smartphone/vivo/2017/vivo-y66i-a-dual-sim-td-lte-cn.json new file mode 100644 index 00000000000..cf6599ccccf --- /dev/null +++ b/data/smartphone/vivo/2017/vivo-y66i-a-dual-sim-td-lte-cn.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y66i-a-dual-sim-td-lte-cn", + "name": "Vivo Y66i A Dual SIM TD-LTE CN", + "brand": "vivo", + "soc": "snapdragon-425", + "release_date": "2017-12-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 157.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2017/vivo-y66i-dual-sim-td-lte-cn.json b/data/smartphone/vivo/2017/vivo-y66i-dual-sim-td-lte-cn.json new file mode 100644 index 00000000000..ee9a18ee4e2 --- /dev/null +++ b/data/smartphone/vivo/2017/vivo-y66i-dual-sim-td-lte-cn.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y66i-dual-sim-td-lte-cn", + "name": "Vivo Y66i Dual SIM TD-LTE CN", + "brand": "vivo", + "soc": "snapdragon-425", + "release_date": "2017-12-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 157.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2017/vivo-y75-premium-edition-dual-sim-lte-cn-32gb.json b/data/smartphone/vivo/2017/vivo-y75-premium-edition-dual-sim-lte-cn-32gb.json new file mode 100644 index 00000000000..e8ee3a0da35 --- /dev/null +++ b/data/smartphone/vivo/2017/vivo-y75-premium-edition-dual-sim-lte-cn-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y75-premium-edition-dual-sim-lte-cn-32gb", + "name": "Vivo Y75 Premium Edition Dual SIM LTE CN 32GB", + "brand": "vivo", + "soc": "helio-p23", + "release_date": "2017-12-19", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 139.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2017/vivo-y75-premium-edition-dual-sim-lte-cn-64gb.json b/data/smartphone/vivo/2017/vivo-y75-premium-edition-dual-sim-lte-cn-64gb.json new file mode 100644 index 00000000000..9b763b0faf5 --- /dev/null +++ b/data/smartphone/vivo/2017/vivo-y75-premium-edition-dual-sim-lte-cn-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y75-premium-edition-dual-sim-lte-cn-64gb", + "name": "Vivo Y75 Premium Edition Dual SIM LTE CN 64GB", + "brand": "vivo", + "soc": "helio-p23", + "release_date": "2017-12-19", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 139.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2017/vivo-y75-standard-edition-dual-sim-lte-cn-32gb.json b/data/smartphone/vivo/2017/vivo-y75-standard-edition-dual-sim-lte-cn-32gb.json new file mode 100644 index 00000000000..f3e75d0132d --- /dev/null +++ b/data/smartphone/vivo/2017/vivo-y75-standard-edition-dual-sim-lte-cn-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y75-standard-edition-dual-sim-lte-cn-32gb", + "name": "Vivo Y75 Standard Edition Dual SIM LTE CN 32GB", + "brand": "vivo", + "soc": "helio-p23", + "release_date": "2017-12-19", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 139.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2017/vivo-y75a-premium-edition-dual-sim-lte-cn-64gb.json b/data/smartphone/vivo/2017/vivo-y75a-premium-edition-dual-sim-lte-cn-64gb.json new file mode 100644 index 00000000000..7157ff2e3cf --- /dev/null +++ b/data/smartphone/vivo/2017/vivo-y75a-premium-edition-dual-sim-lte-cn-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y75a-premium-edition-dual-sim-lte-cn-64gb", + "name": "Vivo Y75A Premium Edition Dual SIM LTE CN 64GB", + "brand": "vivo", + "soc": "helio-p23", + "release_date": "2017-12-19", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 139.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2017/vivo-y75a-standard-edition-dual-sim-lte-cn-32gb.json b/data/smartphone/vivo/2017/vivo-y75a-standard-edition-dual-sim-lte-cn-32gb.json new file mode 100644 index 00000000000..eabf880160d --- /dev/null +++ b/data/smartphone/vivo/2017/vivo-y75a-standard-edition-dual-sim-lte-cn-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y75a-standard-edition-dual-sim-lte-cn-32gb", + "name": "Vivo Y75A Standard Edition Dual SIM LTE CN 32GB", + "brand": "vivo", + "soc": "helio-p23", + "release_date": "2017-12-19", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 139.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2017/vivo-z10-dual-sim-td-lte-in-1716.json b/data/smartphone/vivo/2017/vivo-z10-dual-sim-td-lte-in-1716.json new file mode 100644 index 00000000000..8c05b09b0cf --- /dev/null +++ b/data/smartphone/vivo/2017/vivo-z10-dual-sim-td-lte-in-1716.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-z10-dual-sim-td-lte-in-1716", + "name": "Vivo Z10 Dual SIM TD-LTE IN 1716", + "brand": "vivo", + "soc": "snapdragon-450", + "release_date": "2017-07-04", + "ram_gb": 4.0, + "battery_mah": 3225, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 16.4 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2017/y66.json b/data/smartphone/vivo/2017/y66.json new file mode 100644 index 00000000000..e4f19b64c0b --- /dev/null +++ b/data/smartphone/vivo/2017/y66.json @@ -0,0 +1,32 @@ +{ + "slug": "y66", + "name": "Y66", + "brand": "vivo", + "soc": "snapdragon-430", + "release_date": "2017-01-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 155.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "msrp_usd": 179 +} diff --git a/data/smartphone/vivo/2018/vivo-nex-a-dual-sim-td-lte-cn-128gb.json b/data/smartphone/vivo/2018/vivo-nex-a-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..43ba5aaff03 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-nex-a-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-nex-a-dual-sim-td-lte-cn-128gb", + "name": "Vivo Nex A Dual SIM TD-LTE CN 128GB", + "brand": "vivo", + "soc": "snapdragon-710", + "release_date": "2018-06-23", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2316", + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-nex-dual-display-edition-dual-sim-td-lte-cn-128gb-v1821a.json b/data/smartphone/vivo/2018/vivo-nex-dual-display-edition-dual-sim-td-lte-cn-128gb-v1821a.json new file mode 100644 index 00000000000..41845ebf174 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-nex-dual-display-edition-dual-sim-td-lte-cn-128gb-v1821a.json @@ -0,0 +1,37 @@ +{ + "slug": "vivo-nex-dual-display-edition-dual-sim-td-lte-cn-128gb-v1821a", + "name": "Vivo Nex Dual Display Edition Dual SIM TD-LTE CN 128GB V1821A", + "brand": "vivo", + "soc": "snapdragon-845", + "release_date": "2018-12-29", + "ram_gb": 10.0, + "battery_mah": 3500, + "weight_g": 199.2, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Australia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-nex-dual-display-edition-dual-sim-td-lte-cn-128gb-v1821t.json b/data/smartphone/vivo/2018/vivo-nex-dual-display-edition-dual-sim-td-lte-cn-128gb-v1821t.json new file mode 100644 index 00000000000..891e883005d --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-nex-dual-display-edition-dual-sim-td-lte-cn-128gb-v1821t.json @@ -0,0 +1,37 @@ +{ + "slug": "vivo-nex-dual-display-edition-dual-sim-td-lte-cn-128gb-v1821t", + "name": "Vivo Nex Dual Display Edition Dual SIM TD-LTE CN 128GB V1821T", + "brand": "vivo", + "soc": "snapdragon-845", + "release_date": "2018-12-29", + "ram_gb": 10.0, + "battery_mah": 3500, + "weight_g": 199.2, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Australia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-nex-dual-sim-td-lte-cn-128gb.json b/data/smartphone/vivo/2018/vivo-nex-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..504dc501f36 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-nex-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-nex-dual-sim-td-lte-cn-128gb", + "name": "Vivo Nex Dual SIM TD-LTE CN 128GB", + "brand": "vivo", + "soc": "snapdragon-710", + "release_date": "2018-06-23", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2316", + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-nex-global-dual-sim-td-lte-128gb-1805.json b/data/smartphone/vivo/2018/vivo-nex-global-dual-sim-td-lte-128gb-1805.json new file mode 100644 index 00000000000..4762c9109f6 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-nex-global-dual-sim-td-lte-128gb-1805.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-nex-global-dual-sim-td-lte-128gb-1805", + "name": "Vivo Nex Global Dual SIM TD-LTE 128GB 1805", + "brand": "vivo", + "soc": "snapdragon-845", + "release_date": "2018-07-27", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2316", + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "HK , India , Malaysia , Russia , Taiwan", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-nex-s-dual-sim-td-lte-cn-128gb.json b/data/smartphone/vivo/2018/vivo-nex-s-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..609fb48296c --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-nex-s-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-nex-s-dual-sim-td-lte-cn-128gb", + "name": "Vivo Nex S Dual SIM TD-LTE CN 128GB", + "brand": "vivo", + "soc": "snapdragon-845", + "release_date": "2018-06-24", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2316", + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Australia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-nex-s-dual-sim-td-lte-cn-256gb-nex-ultimate.json b/data/smartphone/vivo/2018/vivo-nex-s-dual-sim-td-lte-cn-256gb-nex-ultimate.json new file mode 100644 index 00000000000..784236f24f2 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-nex-s-dual-sim-td-lte-cn-256gb-nex-ultimate.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-nex-s-dual-sim-td-lte-cn-256gb-nex-ultimate", + "name": "Vivo Nex S Dual SIM TD-LTE CN 256GB / NEX Ultimate", + "brand": "vivo", + "soc": "snapdragon-845", + "release_date": "2018-06-23", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2316", + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Australia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-v11-dual-sim-td-lte-in-id-64gb-1806.json b/data/smartphone/vivo/2018/vivo-v11-dual-sim-td-lte-in-id-64gb-1806.json new file mode 100644 index 00000000000..bbcb9445c49 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-v11-dual-sim-td-lte-in-id-64gb-1806.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-v11-dual-sim-td-lte-in-id-64gb-1806", + "name": "Vivo V11 Dual SIM TD-LTE IN ID 64GB 1806", + "brand": "vivo", + "soc": "helio-p60", + "release_date": "2018-09-12", + "ram_gb": 6.0, + "battery_mah": 3315, + "weight_g": 163.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "India , Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-v11-dual-sim-td-lte-my-vn-bd-128gb-1806-v11i.json b/data/smartphone/vivo/2018/vivo-v11-dual-sim-td-lte-my-vn-bd-128gb-1806-v11i.json new file mode 100644 index 00000000000..53a3e6e2678 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-v11-dual-sim-td-lte-my-vn-bd-128gb-1806-v11i.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-v11-dual-sim-td-lte-my-vn-bd-128gb-1806-v11i", + "name": "Vivo V11 Dual SIM TD-LTE MY VN BD 128GB 1806 / V11i", + "brand": "vivo", + "soc": "helio-p60", + "release_date": "2018-11-01", + "ram_gb": 4.0, + "battery_mah": 3315, + "weight_g": 163.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , Malaysia , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-v11-dual-sim-td-lte-my-vn-hk-bd-128gb-1804-v11-pro.json b/data/smartphone/vivo/2018/vivo-v11-dual-sim-td-lte-my-vn-hk-bd-128gb-1804-v11-pro.json new file mode 100644 index 00000000000..8696293d728 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-v11-dual-sim-td-lte-my-vn-hk-bd-128gb-1804-v11-pro.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-v11-dual-sim-td-lte-my-vn-hk-bd-128gb-1804-v11-pro", + "name": "Vivo V11 Dual SIM TD-LTE MY VN HK BD 128GB 1804 / V11 Pro", + "brand": "vivo", + "soc": "snapdragon-660", + "release_date": "2018-09-12", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Bangladesh , HK , Malaysia , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-v11-dual-sim-td-lte-ph-64gb-1804.json b/data/smartphone/vivo/2018/vivo-v11-dual-sim-td-lte-ph-64gb-1804.json new file mode 100644 index 00000000000..7da1f9f56f7 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-v11-dual-sim-td-lte-ph-64gb-1804.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-v11-dual-sim-td-lte-ph-64gb-1804", + "name": "Vivo V11 Dual SIM TD-LTE PH 64GB 1804", + "brand": "vivo", + "soc": "snapdragon-660", + "release_date": "2018-09-11", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Philippines", + "market_regions": "Oceania" +} diff --git a/data/smartphone/vivo/2018/vivo-v11-dual-sim-td-lte-ru-128gb-1804.json b/data/smartphone/vivo/2018/vivo-v11-dual-sim-td-lte-ru-128gb-1804.json new file mode 100644 index 00000000000..8dd6b67b9c0 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-v11-dual-sim-td-lte-ru-128gb-1804.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-v11-dual-sim-td-lte-ru-128gb-1804", + "name": "Vivo V11 Dual SIM TD-LTE RU 128GB 1804", + "brand": "vivo", + "soc": "snapdragon-660", + "release_date": "2018-09-01", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Russia", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/vivo/2018/vivo-v11-dual-sim-td-lte-sg-128gb-1804.json b/data/smartphone/vivo/2018/vivo-v11-dual-sim-td-lte-sg-128gb-1804.json new file mode 100644 index 00000000000..579bbfd03a3 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-v11-dual-sim-td-lte-sg-128gb-1804.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-v11-dual-sim-td-lte-sg-128gb-1804", + "name": "Vivo V11 Dual SIM TD-LTE SG 128GB 1804", + "brand": "vivo", + "soc": "snapdragon-660", + "release_date": "2018-09-01", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Singapore", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-v11-dual-sim-td-lte-th-pk-np-128gb-1806-v11i.json b/data/smartphone/vivo/2018/vivo-v11-dual-sim-td-lte-th-pk-np-128gb-1806-v11i.json new file mode 100644 index 00000000000..acc6b8b1708 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-v11-dual-sim-td-lte-th-pk-np-128gb-1806-v11i.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-v11-dual-sim-td-lte-th-pk-np-128gb-1806-v11i", + "name": "Vivo V11 Dual SIM TD-LTE TH PK NP 128GB 1806 / V11i", + "brand": "vivo", + "soc": "helio-p60", + "release_date": "2018-09-12", + "ram_gb": 4.0, + "battery_mah": 3315, + "weight_g": 163.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Nepal , Pakistan , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-v11-dual-sim-td-lte-tw-128gb-1806.json b/data/smartphone/vivo/2018/vivo-v11-dual-sim-td-lte-tw-128gb-1806.json new file mode 100644 index 00000000000..60ad250aaf1 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-v11-dual-sim-td-lte-tw-128gb-1806.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-v11-dual-sim-td-lte-tw-128gb-1806", + "name": "Vivo V11 Dual SIM TD-LTE TW 128GB 1806", + "brand": "vivo", + "soc": "helio-p60", + "release_date": "2018-11-01", + "ram_gb": 6.0, + "battery_mah": 3315, + "weight_g": 163.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Taiwan", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-v11-pro-dual-sim-td-lte-id-64gb-1804.json b/data/smartphone/vivo/2018/vivo-v11-pro-dual-sim-td-lte-id-64gb-1804.json new file mode 100644 index 00000000000..8d05522bc7d --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-v11-pro-dual-sim-td-lte-id-64gb-1804.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-v11-pro-dual-sim-td-lte-id-64gb-1804", + "name": "Vivo V11 Pro Dual SIM TD-LTE ID 64GB 1804", + "brand": "vivo", + "soc": "snapdragon-660", + "release_date": "2018-09-11", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-v11-pro-dual-sim-td-lte-in-64gb-1804.json b/data/smartphone/vivo/2018/vivo-v11-pro-dual-sim-td-lte-in-64gb-1804.json new file mode 100644 index 00000000000..f1a96efbc78 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-v11-pro-dual-sim-td-lte-in-64gb-1804.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-v11-pro-dual-sim-td-lte-in-64gb-1804", + "name": "Vivo V11 Pro Dual SIM TD-LTE IN 64GB 1804", + "brand": "vivo", + "soc": "snapdragon-660", + "release_date": "2018-09-12", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-v11-pro-dual-sim-td-lte-th-pk-np-128gb-1804-v11-v11pro.json b/data/smartphone/vivo/2018/vivo-v11-pro-dual-sim-td-lte-th-pk-np-128gb-1804-v11-v11pro.json new file mode 100644 index 00000000000..e31a27f16e0 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-v11-pro-dual-sim-td-lte-th-pk-np-128gb-1804-v11-v11pro.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-v11-pro-dual-sim-td-lte-th-pk-np-128gb-1804-v11-v11pro", + "name": "Vivo V11 Pro Dual SIM TD-LTE TH PK NP 128GB 1804 / V11 / V11Pro", + "brand": "vivo", + "soc": "snapdragon-660", + "release_date": "2018-09-01", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Nepal , Pakistan , Thailand", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-v11i-dual-sim-td-lte-ru-128gb-1806.json b/data/smartphone/vivo/2018/vivo-v11i-dual-sim-td-lte-ru-128gb-1806.json new file mode 100644 index 00000000000..20798c47ed5 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-v11i-dual-sim-td-lte-ru-128gb-1806.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-v11i-dual-sim-td-lte-ru-128gb-1806", + "name": "Vivo V11i Dual SIM TD-LTE RU 128GB 1806", + "brand": "vivo", + "soc": "helio-p60", + "release_date": "2018-09-12", + "ram_gb": 4.0, + "battery_mah": 3315, + "weight_g": 163.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Russia", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/vivo/2018/vivo-v11i-dual-sim-td-lte-tw-ph-128gb-1806.json b/data/smartphone/vivo/2018/vivo-v11i-dual-sim-td-lte-tw-ph-128gb-1806.json new file mode 100644 index 00000000000..717e702d083 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-v11i-dual-sim-td-lte-tw-ph-128gb-1806.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-v11i-dual-sim-td-lte-tw-ph-128gb-1806", + "name": "Vivo V11i Dual SIM TD-LTE TW PH 128GB 1806", + "brand": "vivo", + "soc": "helio-p60", + "release_date": "2018-11-01", + "ram_gb": 4.0, + "battery_mah": 3315, + "weight_g": 163.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Philippines , Taiwan", + "market_regions": "Asia , Oceania" +} diff --git a/data/smartphone/vivo/2018/vivo-v9-6gb-dual-sim-td-lte-id-v9-pro.json b/data/smartphone/vivo/2018/vivo-v9-6gb-dual-sim-td-lte-id-v9-pro.json new file mode 100644 index 00000000000..22e8059d25f --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-v9-6gb-dual-sim-td-lte-id-v9-pro.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-v9-6gb-dual-sim-td-lte-id-v9-pro", + "name": "Vivo V9 6GB Dual SIM TD-LTE ID / V9 Pro", + "brand": "vivo", + "soc": "snapdragon-660", + "release_date": "2018-07-04", + "ram_gb": 6.0, + "battery_mah": 3260, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-v9-pro-6gb-dual-sim-td-lte-in-1851.json b/data/smartphone/vivo/2018/vivo-v9-pro-6gb-dual-sim-td-lte-in-1851.json new file mode 100644 index 00000000000..fbc2dfa8db1 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-v9-pro-6gb-dual-sim-td-lte-in-1851.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-v9-pro-6gb-dual-sim-td-lte-in-1851", + "name": "Vivo V9 Pro 6GB Dual SIM TD-LTE IN 1851", + "brand": "vivo", + "soc": "snapdragon-660", + "release_date": "2018-09-01", + "ram_gb": 6.0, + "battery_mah": 3260, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-v9-pro-dual-sim-td-lte-in-1851.json b/data/smartphone/vivo/2018/vivo-v9-pro-dual-sim-td-lte-in-1851.json new file mode 100644 index 00000000000..5da1272e013 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-v9-pro-dual-sim-td-lte-in-1851.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-v9-pro-dual-sim-td-lte-in-1851", + "name": "Vivo V9 Pro Dual SIM TD-LTE IN 1851", + "brand": "vivo", + "soc": "snapdragon-660", + "release_date": "2018-09-01", + "ram_gb": 4.0, + "battery_mah": 3260, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-v9-youth-edition-dual-sim-td-lte-in-pk-np-1727.json b/data/smartphone/vivo/2018/vivo-v9-youth-edition-dual-sim-td-lte-in-pk-np-1727.json new file mode 100644 index 00000000000..7d57ca9a1a9 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-v9-youth-edition-dual-sim-td-lte-in-pk-np-1727.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-v9-youth-edition-dual-sim-td-lte-in-pk-np-1727", + "name": "Vivo V9 Youth Edition Dual SIM TD-LTE IN PK NP 1727", + "brand": "vivo", + "soc": "snapdragon-450", + "release_date": "2018-04-27", + "ram_gb": 4.0, + "battery_mah": 3260, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Nepal , Pakistan", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-v9-youth-edition-dual-sim-td-lte-ru-1727.json b/data/smartphone/vivo/2018/vivo-v9-youth-edition-dual-sim-td-lte-ru-1727.json new file mode 100644 index 00000000000..13d58dbb618 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-v9-youth-edition-dual-sim-td-lte-ru-1727.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-v9-youth-edition-dual-sim-td-lte-ru-1727", + "name": "Vivo V9 Youth Edition Dual SIM TD-LTE RU 1727", + "brand": "vivo", + "soc": "snapdragon-450", + "release_date": "2018-05-01", + "ram_gb": 4.0, + "battery_mah": 3260, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Russia", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/vivo/2018/vivo-v9-youth-edition-dual-sim-td-lte-tw-1727.json b/data/smartphone/vivo/2018/vivo-v9-youth-edition-dual-sim-td-lte-tw-1727.json new file mode 100644 index 00000000000..22dab50bd6f --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-v9-youth-edition-dual-sim-td-lte-tw-1727.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-v9-youth-edition-dual-sim-td-lte-tw-1727", + "name": "Vivo V9 Youth Edition Dual SIM TD-LTE TW 1727", + "brand": "vivo", + "soc": "snapdragon-450", + "release_date": "2018-05-01", + "ram_gb": 4.0, + "battery_mah": 3260, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Taiwan", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-v9-youth-edition-dual-sim-td-lte-vn-bd-1727.json b/data/smartphone/vivo/2018/vivo-v9-youth-edition-dual-sim-td-lte-vn-bd-1727.json new file mode 100644 index 00000000000..fc60c5d0997 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-v9-youth-edition-dual-sim-td-lte-vn-bd-1727.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-v9-youth-edition-dual-sim-td-lte-vn-bd-1727", + "name": "Vivo V9 Youth Edition Dual SIM TD-LTE VN BD 1727", + "brand": "vivo", + "soc": "snapdragon-450", + "release_date": "2018-05-01", + "ram_gb": 4.0, + "battery_mah": 3260, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , Vietnam", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-x21-dual-sim-td-lte-cn-128gb-x21a.json b/data/smartphone/vivo/2018/vivo-x21-dual-sim-td-lte-cn-128gb-x21a.json new file mode 100644 index 00000000000..a90231fcf4a --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-x21-dual-sim-td-lte-cn-128gb-x21a.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-x21-dual-sim-td-lte-cn-128gb-x21a", + "name": "Vivo X21 Dual SIM TD-LTE CN 128GB X21A", + "brand": "vivo", + "soc": "snapdragon-660", + "release_date": "2018-03-28", + "ram_gb": 6.0, + "battery_mah": 3200, + "weight_g": 156.2, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-x21-dual-sim-td-lte-cn-64gb.json b/data/smartphone/vivo/2018/vivo-x21-dual-sim-td-lte-cn-64gb.json new file mode 100644 index 00000000000..8ca3e940ed5 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-x21-dual-sim-td-lte-cn-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-x21-dual-sim-td-lte-cn-64gb", + "name": "Vivo X21 Dual SIM TD-LTE CN 64GB", + "brand": "vivo", + "soc": "snapdragon-660", + "release_date": "2018-03-28", + "ram_gb": 6.0, + "battery_mah": 3200, + "weight_g": 156.2, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-x21-dual-sim-td-lte-tw-hk-sg-128gb.json b/data/smartphone/vivo/2018/vivo-x21-dual-sim-td-lte-tw-hk-sg-128gb.json new file mode 100644 index 00000000000..58cbc7b9fda --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-x21-dual-sim-td-lte-tw-hk-sg-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-x21-dual-sim-td-lte-tw-hk-sg-128gb", + "name": "Vivo X21 Dual SIM TD-LTE TW HK SG 128GB", + "brand": "vivo", + "soc": "snapdragon-660", + "release_date": "2018-05-06", + "ram_gb": 6.0, + "battery_mah": 3200, + "weight_g": 156.2, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "HK , Singapore , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-x21-ud-dual-sim-td-lte-cn-128gb-x21ud-a.json b/data/smartphone/vivo/2018/vivo-x21-ud-dual-sim-td-lte-cn-128gb-x21ud-a.json new file mode 100644 index 00000000000..1857fcd0da5 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-x21-ud-dual-sim-td-lte-cn-128gb-x21ud-a.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-x21-ud-dual-sim-td-lte-cn-128gb-x21ud-a", + "name": "Vivo X21 UD Dual SIM TD-LTE CN 128GB X21UD A", + "brand": "vivo", + "soc": "snapdragon-660", + "release_date": "2018-03-28", + "ram_gb": 6.0, + "battery_mah": 3200, + "weight_g": 156.2, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-x21-ud-dual-sim-td-lte-hk-sg-tw-my-1725.json b/data/smartphone/vivo/2018/vivo-x21-ud-dual-sim-td-lte-hk-sg-tw-my-1725.json new file mode 100644 index 00000000000..77e758b9a31 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-x21-ud-dual-sim-td-lte-hk-sg-tw-my-1725.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-x21-ud-dual-sim-td-lte-hk-sg-tw-my-1725", + "name": "Vivo X21 UD Dual SIM TD-LTE HK SG TW MY 1725", + "brand": "vivo", + "soc": "snapdragon-660", + "release_date": "2018-05-06", + "ram_gb": 6.0, + "battery_mah": 3200, + "weight_g": 156.2, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "HK , Malaysia , Philippines , Singapore , Taiwan", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-x21-ud-dual-sim-td-lte-in-1728-x21.json b/data/smartphone/vivo/2018/vivo-x21-ud-dual-sim-td-lte-in-1728-x21.json new file mode 100644 index 00000000000..57a9163dd29 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-x21-ud-dual-sim-td-lte-in-1728-x21.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-x21-ud-dual-sim-td-lte-in-1728-x21", + "name": "Vivo X21 UD Dual SIM TD-LTE IN 1728 / X21", + "brand": "vivo", + "soc": "snapdragon-660", + "release_date": "2018-05-31", + "ram_gb": 6.0, + "battery_mah": 3200, + "weight_g": 156.2, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-x21i-dual-sim-td-lte-cn-128gb.json b/data/smartphone/vivo/2018/vivo-x21i-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..2082bea6833 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-x21i-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-x21i-dual-sim-td-lte-cn-128gb", + "name": "Vivo X21i Dual SIM TD-LTE CN 128GB", + "brand": "vivo", + "soc": "helio-p60", + "release_date": "2018-05-19", + "ram_gb": 4.0, + "battery_mah": 3245, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-x21i-dual-sim-td-lte-cn-64gb.json b/data/smartphone/vivo/2018/vivo-x21i-dual-sim-td-lte-cn-64gb.json new file mode 100644 index 00000000000..a9bcc5610e6 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-x21i-dual-sim-td-lte-cn-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-x21i-dual-sim-td-lte-cn-64gb", + "name": "Vivo X21i Dual SIM TD-LTE CN 64GB", + "brand": "vivo", + "soc": "helio-p60", + "release_date": "2018-05-19", + "ram_gb": 6.0, + "battery_mah": 3245, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-x21ia-dual-sim-td-lte-cn-128gb.json b/data/smartphone/vivo/2018/vivo-x21ia-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..b103322d294 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-x21ia-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-x21ia-dual-sim-td-lte-cn-128gb", + "name": "Vivo X21iA Dual SIM TD-LTE CN 128GB", + "brand": "vivo", + "soc": "helio-p60", + "release_date": "2018-05-19", + "ram_gb": 4.0, + "battery_mah": 3245, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-x21ia-dual-sim-td-lte-cn-64gb.json b/data/smartphone/vivo/2018/vivo-x21ia-dual-sim-td-lte-cn-64gb.json new file mode 100644 index 00000000000..bc74049c994 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-x21ia-dual-sim-td-lte-cn-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-x21ia-dual-sim-td-lte-cn-64gb", + "name": "Vivo X21iA Dual SIM TD-LTE CN 64GB", + "brand": "vivo", + "soc": "helio-p60", + "release_date": "2018-05-19", + "ram_gb": 6.0, + "battery_mah": 3245, + "weight_g": 159.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-x23-dual-sim-td-lte-cn-v1809a.json b/data/smartphone/vivo/2018/vivo-x23-dual-sim-td-lte-cn-v1809a.json new file mode 100644 index 00000000000..600bf1a7629 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-x23-dual-sim-td-lte-cn-v1809a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-x23-dual-sim-td-lte-cn-v1809a", + "name": "Vivo X23 Dual SIM TD-LTE CN V1809A", + "brand": "vivo", + "soc": "snapdragon-670", + "release_date": "2018-09-14", + "ram_gb": 8.0, + "battery_mah": 3400, + "weight_g": 160.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-x23-dual-sim-td-lte-cn-v1809t.json b/data/smartphone/vivo/2018/vivo-x23-dual-sim-td-lte-cn-v1809t.json new file mode 100644 index 00000000000..f0972647b6e --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-x23-dual-sim-td-lte-cn-v1809t.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-x23-dual-sim-td-lte-cn-v1809t", + "name": "Vivo X23 Dual SIM TD-LTE CN V1809T", + "brand": "vivo", + "soc": "snapdragon-670", + "release_date": "2018-09-14", + "ram_gb": 8.0, + "battery_mah": 3400, + "weight_g": 160.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-x23-symphony-edition-dual-sim-td-lte-cn-v1816a.json b/data/smartphone/vivo/2018/vivo-x23-symphony-edition-dual-sim-td-lte-cn-v1816a.json new file mode 100644 index 00000000000..29886ea79ca --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-x23-symphony-edition-dual-sim-td-lte-cn-v1816a.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-x23-symphony-edition-dual-sim-td-lte-cn-v1816a", + "name": "Vivo X23 Symphony Edition Dual SIM TD-LTE CN V1816A", + "brand": "vivo", + "soc": "snapdragon-660", + "release_date": "2018-11-01", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 160.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-x23-symphony-edition-dual-sim-td-lte-cn-v1816t.json b/data/smartphone/vivo/2018/vivo-x23-symphony-edition-dual-sim-td-lte-cn-v1816t.json new file mode 100644 index 00000000000..b7fb6d05725 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-x23-symphony-edition-dual-sim-td-lte-cn-v1816t.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-x23-symphony-edition-dual-sim-td-lte-cn-v1816t", + "name": "Vivo X23 Symphony Edition Dual SIM TD-LTE CN V1816T", + "brand": "vivo", + "soc": "snapdragon-660", + "release_date": "2018-11-01", + "ram_gb": 6.0, + "battery_mah": 3500, + "weight_g": 160.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y71-dual-sim-td-lte-bd-np-1801-y71i.json b/data/smartphone/vivo/2018/vivo-y71-dual-sim-td-lte-bd-np-1801-y71i.json new file mode 100644 index 00000000000..7917dd2b791 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y71-dual-sim-td-lte-bd-np-1801-y71i.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y71-dual-sim-td-lte-bd-np-1801-y71i", + "name": "Vivo Y71 Dual SIM TD-LTE BD NP 1801 / Y71i", + "brand": "vivo", + "soc": "snapdragon-425", + "release_date": "2018-05-01", + "ram_gb": 2.0, + "battery_mah": 3360, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , Nepal", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y71-dual-sim-td-lte-in-16gb-1724.json b/data/smartphone/vivo/2018/vivo-y71-dual-sim-td-lte-in-16gb-1724.json new file mode 100644 index 00000000000..74d2ee0301d --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y71-dual-sim-td-lte-in-16gb-1724.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y71-dual-sim-td-lte-in-16gb-1724", + "name": "Vivo Y71 Dual SIM TD-LTE IN 16GB 1724", + "brand": "vivo", + "soc": "snapdragon-425", + "release_date": "2018-04-12", + "ram_gb": 3.0, + "battery_mah": 3360, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y71-dual-sim-td-lte-in-32gb-1724.json b/data/smartphone/vivo/2018/vivo-y71-dual-sim-td-lte-in-32gb-1724.json new file mode 100644 index 00000000000..a0623e5996e --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y71-dual-sim-td-lte-in-32gb-1724.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y71-dual-sim-td-lte-in-32gb-1724", + "name": "Vivo Y71 Dual SIM TD-LTE IN 32GB 1724", + "brand": "vivo", + "soc": "snapdragon-425", + "release_date": "2018-04-12", + "ram_gb": 4.0, + "battery_mah": 3360, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y71-dual-sim-td-lte-ru-16gb-1801.json b/data/smartphone/vivo/2018/vivo-y71-dual-sim-td-lte-ru-16gb-1801.json new file mode 100644 index 00000000000..0449dfa4db2 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y71-dual-sim-td-lte-ru-16gb-1801.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y71-dual-sim-td-lte-ru-16gb-1801", + "name": "Vivo Y71 Dual SIM TD-LTE RU 16GB 1801", + "brand": "vivo", + "soc": "snapdragon-425", + "release_date": "2018-05-01", + "ram_gb": 3.0, + "battery_mah": 3360, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Russia", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/vivo/2018/vivo-y71-dual-sim-td-lte-vn-16gb-1724.json b/data/smartphone/vivo/2018/vivo-y71-dual-sim-td-lte-vn-16gb-1724.json new file mode 100644 index 00000000000..605fe4223a5 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y71-dual-sim-td-lte-vn-16gb-1724.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y71-dual-sim-td-lte-vn-16gb-1724", + "name": "Vivo Y71 Dual SIM TD-LTE VN 16GB 1724", + "brand": "vivo", + "soc": "snapdragon-425", + "release_date": "2018-04-01", + "ram_gb": 3.0, + "battery_mah": 3360, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Vietnam", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y71i-dual-sim-td-lte-in-1801.json b/data/smartphone/vivo/2018/vivo-y71i-dual-sim-td-lte-in-1801.json new file mode 100644 index 00000000000..f9b329a417c --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y71i-dual-sim-td-lte-in-1801.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y71i-dual-sim-td-lte-in-1801", + "name": "Vivo Y71i Dual SIM TD-LTE IN 1801", + "brand": "vivo", + "soc": "snapdragon-425", + "release_date": "2018-05-01", + "ram_gb": 2.0, + "battery_mah": 3360, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y73-premium-edition-dual-sim-td-lte-cn-64gb-v1731ca.json b/data/smartphone/vivo/2018/vivo-y73-premium-edition-dual-sim-td-lte-cn-64gb-v1731ca.json new file mode 100644 index 00000000000..a67d26af754 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y73-premium-edition-dual-sim-td-lte-cn-64gb-v1731ca.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y73-premium-edition-dual-sim-td-lte-cn-64gb-v1731ca", + "name": "Vivo Y73 Premium Edition Dual SIM TD-LTE CN 64GB V1731CA", + "brand": "vivo", + "soc": "snapdragon-439", + "release_date": "2018-11-01", + "ram_gb": 4.0, + "battery_mah": 3360, + "weight_g": 149.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y73-standard-edition-dual-sim-td-lte-cn-32gb-v1731ca.json b/data/smartphone/vivo/2018/vivo-y73-standard-edition-dual-sim-td-lte-cn-32gb-v1731ca.json new file mode 100644 index 00000000000..6d166449882 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y73-standard-edition-dual-sim-td-lte-cn-32gb-v1731ca.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y73-standard-edition-dual-sim-td-lte-cn-32gb-v1731ca", + "name": "Vivo Y73 Standard Edition Dual SIM TD-LTE CN 32GB V1731CA", + "brand": "vivo", + "soc": "snapdragon-439", + "release_date": "2018-11-01", + "ram_gb": 3.0, + "battery_mah": 3360, + "weight_g": 149.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y73-standard-edition-dual-sim-td-lte-cn-64gb-v1731ca.json b/data/smartphone/vivo/2018/vivo-y73-standard-edition-dual-sim-td-lte-cn-64gb-v1731ca.json new file mode 100644 index 00000000000..0cde19936ae --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y73-standard-edition-dual-sim-td-lte-cn-64gb-v1731ca.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y73-standard-edition-dual-sim-td-lte-cn-64gb-v1731ca", + "name": "Vivo Y73 Standard Edition Dual SIM TD-LTE CN 64GB V1731CA", + "brand": "vivo", + "soc": "snapdragon-439", + "release_date": "2018-11-01", + "ram_gb": 3.0, + "battery_mah": 3360, + "weight_g": 149.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y75s-dual-sim-lte-cn-32gb.json b/data/smartphone/vivo/2018/vivo-y75s-dual-sim-lte-cn-32gb.json new file mode 100644 index 00000000000..11c56842651 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y75s-dual-sim-lte-cn-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y75s-dual-sim-lte-cn-32gb", + "name": "Vivo Y75s Dual SIM LTE CN 32GB", + "brand": "vivo", + "soc": "snapdragon-450", + "release_date": "2018-05-01", + "ram_gb": 4.0, + "battery_mah": 3225, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y75s-dual-sim-lte-cn-64gb.json b/data/smartphone/vivo/2018/vivo-y75s-dual-sim-lte-cn-64gb.json new file mode 100644 index 00000000000..41acd700333 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y75s-dual-sim-lte-cn-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y75s-dual-sim-lte-cn-64gb", + "name": "Vivo Y75s Dual SIM LTE CN 64GB", + "brand": "vivo", + "soc": "snapdragon-450", + "release_date": "2018-05-01", + "ram_gb": 4.0, + "battery_mah": 3225, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y81-dual-sim-td-lte-in-id-pk-th-1808.json b/data/smartphone/vivo/2018/vivo-y81-dual-sim-td-lte-in-id-pk-th-1808.json new file mode 100644 index 00000000000..203629416aa --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y81-dual-sim-td-lte-in-id-pk-th-1808.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y81-dual-sim-td-lte-in-id-pk-th-1808", + "name": "Vivo Y81 Dual SIM TD-LTE IN ID PK TH 1808", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2018-08-14", + "ram_gb": 3.0, + "battery_mah": 3260, + "weight_g": 146.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "India , Indonesia , Pakistan , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y81-dual-sim-td-lte-ru-1808.json b/data/smartphone/vivo/2018/vivo-y81-dual-sim-td-lte-ru-1808.json new file mode 100644 index 00000000000..fa6aaed4e96 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y81-dual-sim-td-lte-ru-1808.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y81-dual-sim-td-lte-ru-1808", + "name": "Vivo Y81 Dual SIM TD-LTE RU 1808", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2018-09-01", + "ram_gb": 3.0, + "battery_mah": 3260, + "weight_g": 146.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Russia", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/vivo/2018/vivo-y81-dual-sim-td-lte-sg-hk-1808.json b/data/smartphone/vivo/2018/vivo-y81-dual-sim-td-lte-sg-hk-1808.json new file mode 100644 index 00000000000..190df3cb2c3 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y81-dual-sim-td-lte-sg-hk-1808.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y81-dual-sim-td-lte-sg-hk-1808", + "name": "Vivo Y81 Dual SIM TD-LTE SG HK 1808", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2018-08-14", + "ram_gb": 3.0, + "battery_mah": 3260, + "weight_g": 146.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "HK , Singapore", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y81-dual-sim-td-lte-tw-my-vn-ph-1808.json b/data/smartphone/vivo/2018/vivo-y81-dual-sim-td-lte-tw-my-vn-ph-1808.json new file mode 100644 index 00000000000..7d577817923 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y81-dual-sim-td-lte-tw-my-vn-ph-1808.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y81-dual-sim-td-lte-tw-my-vn-ph-1808", + "name": "Vivo Y81 Dual SIM TD-LTE TW MY VN PH 1808", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2018-06-01", + "ram_gb": 3.0, + "battery_mah": 3260, + "weight_g": 146.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Malaysia , Philippines , Taiwan , Vietnam", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y81-premium-edition-dual-sim-td-lte-cn-64gb-v1732a-y81s.json b/data/smartphone/vivo/2018/vivo-y81-premium-edition-dual-sim-td-lte-cn-64gb-v1732a-y81s.json new file mode 100644 index 00000000000..a4334e4d052 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y81-premium-edition-dual-sim-td-lte-cn-64gb-v1732a-y81s.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y81-premium-edition-dual-sim-td-lte-cn-64gb-v1732a-y81s", + "name": "Vivo Y81 Premium Edition Dual SIM TD-LTE CN 64GB V1732A / Y81s", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2018-08-01", + "ram_gb": 4.0, + "battery_mah": 3260, + "weight_g": 146.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y81-standard-edition-dual-sim-td-lte-cn-32gb-v1732a-y81s.json b/data/smartphone/vivo/2018/vivo-y81-standard-edition-dual-sim-td-lte-cn-32gb-v1732a-y81s.json new file mode 100644 index 00000000000..76100e7ee20 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y81-standard-edition-dual-sim-td-lte-cn-32gb-v1732a-y81s.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y81-standard-edition-dual-sim-td-lte-cn-32gb-v1732a-y81s", + "name": "Vivo Y81 Standard Edition Dual SIM TD-LTE CN 32GB V1732A / Y81s", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2018-08-01", + "ram_gb": 3.0, + "battery_mah": 3260, + "weight_g": 146.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y81-standard-edition-dual-sim-td-lte-cn-32gb-v1732t-y81s.json b/data/smartphone/vivo/2018/vivo-y81-standard-edition-dual-sim-td-lte-cn-32gb-v1732t-y81s.json new file mode 100644 index 00000000000..7e44362ecef --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y81-standard-edition-dual-sim-td-lte-cn-32gb-v1732t-y81s.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y81-standard-edition-dual-sim-td-lte-cn-32gb-v1732t-y81s", + "name": "Vivo Y81 Standard Edition Dual SIM TD-LTE CN 32GB V1732T / Y81s", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2018-08-01", + "ram_gb": 3.0, + "battery_mah": 3260, + "weight_g": 146.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y81-standard-edition-dual-sim-td-lte-cn-64gb-v1732a-y81s.json b/data/smartphone/vivo/2018/vivo-y81-standard-edition-dual-sim-td-lte-cn-64gb-v1732a-y81s.json new file mode 100644 index 00000000000..c8df7766a1c --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y81-standard-edition-dual-sim-td-lte-cn-64gb-v1732a-y81s.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y81-standard-edition-dual-sim-td-lte-cn-64gb-v1732a-y81s", + "name": "Vivo Y81 Standard Edition Dual SIM TD-LTE CN 64GB V1732A / Y81s", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2018-08-01", + "ram_gb": 3.0, + "battery_mah": 3260, + "weight_g": 146.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y81i-dual-sim-td-lte-in-pk-th-id-y81.json b/data/smartphone/vivo/2018/vivo-y81i-dual-sim-td-lte-in-pk-th-id-y81.json new file mode 100644 index 00000000000..45e24dc6f67 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y81i-dual-sim-td-lte-in-pk-th-id-y81.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y81i-dual-sim-td-lte-in-pk-th-id-y81", + "name": "Vivo Y81i Dual SIM TD-LTE IN PK TH ID / Y81", + "brand": "vivo", + "soc": "helio-a22", + "release_date": "2018-12-07", + "ram_gb": 2.0, + "battery_mah": 3260, + "weight_g": 143.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "India , Indonesia , Pakistan , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y81i-dual-sim-td-lte-my-bd.json b/data/smartphone/vivo/2018/vivo-y81i-dual-sim-td-lte-my-bd.json new file mode 100644 index 00000000000..96fc5ea990c --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y81i-dual-sim-td-lte-my-bd.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y81i-dual-sim-td-lte-my-bd", + "name": "Vivo Y81i Dual SIM TD-LTE MY BD", + "brand": "vivo", + "soc": "helio-a22", + "release_date": "2018-11-01", + "ram_gb": 2.0, + "battery_mah": 3260, + "weight_g": 143.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Bangladesh , Malaysia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y83-dual-sim-td-lte-cn.json b/data/smartphone/vivo/2018/vivo-y83-dual-sim-td-lte-cn.json new file mode 100644 index 00000000000..8832688e853 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y83-dual-sim-td-lte-cn.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y83-dual-sim-td-lte-cn", + "name": "Vivo Y83 Dual SIM TD-LTE CN", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2018-05-01", + "ram_gb": 4.0, + "battery_mah": 3260, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y83-dual-sim-td-lte-in-id-1802.json b/data/smartphone/vivo/2018/vivo-y83-dual-sim-td-lte-in-id-1802.json new file mode 100644 index 00000000000..2857dd20001 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y83-dual-sim-td-lte-in-id-1802.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y83-dual-sim-td-lte-in-id-1802", + "name": "Vivo Y83 Dual SIM TD-LTE IN ID 1802", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2018-05-01", + "ram_gb": 4.0, + "battery_mah": 3260, + "weight_g": 151.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "India , Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y83-pro-dual-sim-td-lte-in-1803.json b/data/smartphone/vivo/2018/vivo-y83-pro-dual-sim-td-lte-in-1803.json new file mode 100644 index 00000000000..0feeb475b33 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y83-pro-dual-sim-td-lte-in-1803.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y83-pro-dual-sim-td-lte-in-1803", + "name": "Vivo Y83 Pro Dual SIM TD-LTE IN 1803", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2018-05-01", + "ram_gb": 4.0, + "battery_mah": 3260, + "weight_g": 151.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "India", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y83a-dual-sim-td-lte-cn.json b/data/smartphone/vivo/2018/vivo-y83a-dual-sim-td-lte-cn.json new file mode 100644 index 00000000000..562bc08ffeb --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y83a-dual-sim-td-lte-cn.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y83a-dual-sim-td-lte-cn", + "name": "Vivo Y83A Dual SIM TD-LTE CN", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2018-05-01", + "ram_gb": 4.0, + "battery_mah": 3260, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y85-dual-sim-td-lte-cn-64gb.json b/data/smartphone/vivo/2018/vivo-y85-dual-sim-td-lte-cn-64gb.json new file mode 100644 index 00000000000..99473ea5649 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y85-dual-sim-td-lte-cn-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y85-dual-sim-td-lte-cn-64gb", + "name": "Vivo Y85 Dual SIM TD-LTE CN 64GB", + "brand": "vivo", + "soc": "snapdragon-450", + "release_date": "2018-03-01", + "ram_gb": 4.0, + "battery_mah": 3260, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y85-dual-sim-td-lte-ru-64gb-1726.json b/data/smartphone/vivo/2018/vivo-y85-dual-sim-td-lte-ru-64gb-1726.json new file mode 100644 index 00000000000..215f183038b --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y85-dual-sim-td-lte-ru-64gb-1726.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y85-dual-sim-td-lte-ru-64gb-1726", + "name": "Vivo Y85 Dual SIM TD-LTE RU 64GB 1726", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2018-07-01", + "ram_gb": 4.0, + "battery_mah": 3260, + "weight_g": 152.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Russia", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/vivo/2018/vivo-y85-dual-sim-td-lte-th-1726.json b/data/smartphone/vivo/2018/vivo-y85-dual-sim-td-lte-th-1726.json new file mode 100644 index 00000000000..3beeccf48cb --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y85-dual-sim-td-lte-th-1726.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y85-dual-sim-td-lte-th-1726", + "name": "Vivo Y85 Dual SIM TD-LTE TH 1726", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2018-06-01", + "ram_gb": 4.0, + "battery_mah": 3260, + "weight_g": 152.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y85-dual-sim-td-lte-vn-sg-hk-bd-1726.json b/data/smartphone/vivo/2018/vivo-y85-dual-sim-td-lte-vn-sg-hk-bd-1726.json new file mode 100644 index 00000000000..be80c95e34e --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y85-dual-sim-td-lte-vn-sg-hk-bd-1726.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y85-dual-sim-td-lte-vn-sg-hk-bd-1726", + "name": "Vivo Y85 Dual SIM TD-LTE VN SG HK BD 1726", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2018-06-01", + "ram_gb": 4.0, + "battery_mah": 3260, + "weight_g": 152.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , HK , Singapore , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y85a-dual-sim-td-lte-cn-32gb.json b/data/smartphone/vivo/2018/vivo-y85a-dual-sim-td-lte-cn-32gb.json new file mode 100644 index 00000000000..642c9bc367a --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y85a-dual-sim-td-lte-cn-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y85a-dual-sim-td-lte-cn-32gb", + "name": "Vivo Y85A Dual SIM TD-LTE CN 32GB", + "brand": "vivo", + "soc": "snapdragon-450", + "release_date": "2018-03-01", + "ram_gb": 4.0, + "battery_mah": 3260, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y91-dual-sim-td-lte-cn-v1818ca.json b/data/smartphone/vivo/2018/vivo-y91-dual-sim-td-lte-cn-v1818ca.json new file mode 100644 index 00000000000..4452ccfb2f8 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y91-dual-sim-td-lte-cn-v1818ca.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y91-dual-sim-td-lte-cn-v1818ca", + "name": "Vivo Y91 Dual SIM TD-LTE CN V1818CA", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2018-12-01", + "ram_gb": 3.0, + "battery_mah": 4030, + "weight_g": 163.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y91-dual-sim-td-lte-cn-v1818ct.json b/data/smartphone/vivo/2018/vivo-y91-dual-sim-td-lte-cn-v1818ct.json new file mode 100644 index 00000000000..2ae36d41efc --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y91-dual-sim-td-lte-cn-v1818ct.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y91-dual-sim-td-lte-cn-v1818ct", + "name": "Vivo Y91 Dual SIM TD-LTE CN V1818CT", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2018-12-01", + "ram_gb": 3.0, + "battery_mah": 4030, + "weight_g": 163.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y91-dual-sim-td-lte-ph-1817.json b/data/smartphone/vivo/2018/vivo-y91-dual-sim-td-lte-ph-1817.json new file mode 100644 index 00000000000..72926a33481 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y91-dual-sim-td-lte-ph-1817.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y91-dual-sim-td-lte-ph-1817", + "name": "Vivo Y91 Dual SIM TD-LTE PH 1817", + "brand": "vivo", + "soc": "snapdragon-439", + "release_date": "2018-11-01", + "ram_gb": 3.0, + "battery_mah": 4030, + "weight_g": 163.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Philippines", + "market_regions": "Oceania" +} diff --git a/data/smartphone/vivo/2018/vivo-y91-dual-sim-td-lte-pk-1814.json b/data/smartphone/vivo/2018/vivo-y91-dual-sim-td-lte-pk-1814.json new file mode 100644 index 00000000000..e8c008c99e6 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y91-dual-sim-td-lte-pk-1814.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y91-dual-sim-td-lte-pk-1814", + "name": "Vivo Y91 Dual SIM TD-LTE PK 1814", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2018-12-01", + "ram_gb": 3.0, + "battery_mah": 4030, + "weight_g": 163.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Pakistan", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y91i-dual-sim-td-lte-my-1816.json b/data/smartphone/vivo/2018/vivo-y91i-dual-sim-td-lte-my-1816.json new file mode 100644 index 00000000000..cfcffb2f29c --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y91i-dual-sim-td-lte-my-1816.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y91i-dual-sim-td-lte-my-1816", + "name": "Vivo Y91i Dual SIM TD-LTE MY 1816", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2018-12-01", + "ram_gb": 2.0, + "battery_mah": 4030, + "weight_g": 163.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Malaysia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y91i-dual-sim-td-lte-ph-id-1817.json b/data/smartphone/vivo/2018/vivo-y91i-dual-sim-td-lte-ph-id-1817.json new file mode 100644 index 00000000000..d5bc1aecc96 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y91i-dual-sim-td-lte-ph-id-1817.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y91i-dual-sim-td-lte-ph-id-1817", + "name": "Vivo Y91i Dual SIM TD-LTE PH ID 1817", + "brand": "vivo", + "soc": "snapdragon-439", + "release_date": "2018-11-01", + "ram_gb": 2.0, + "battery_mah": 4030, + "weight_g": 163.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Indonesia , Philippines", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y91i-dual-sim-td-lte-th-1816.json b/data/smartphone/vivo/2018/vivo-y91i-dual-sim-td-lte-th-1816.json new file mode 100644 index 00000000000..1394b3af2b6 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y91i-dual-sim-td-lte-th-1816.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y91i-dual-sim-td-lte-th-1816", + "name": "Vivo Y91i Dual SIM TD-LTE TH 1816", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2018-12-01", + "ram_gb": 2.0, + "battery_mah": 4030, + "weight_g": 163.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y93-dual-sim-td-lte-in-1815.json b/data/smartphone/vivo/2018/vivo-y93-dual-sim-td-lte-in-1815.json new file mode 100644 index 00000000000..24145063f48 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y93-dual-sim-td-lte-in-1815.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y93-dual-sim-td-lte-in-1815", + "name": "Vivo Y93 Dual SIM TD-LTE IN 1815", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2018-12-01", + "ram_gb": 4.0, + "battery_mah": 4030, + "weight_g": 163.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y93-premium-edition-dual-sim-td-lte-cn-v1818a.json b/data/smartphone/vivo/2018/vivo-y93-premium-edition-dual-sim-td-lte-cn-v1818a.json new file mode 100644 index 00000000000..d8144cdadc6 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y93-premium-edition-dual-sim-td-lte-cn-v1818a.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y93-premium-edition-dual-sim-td-lte-cn-v1818a", + "name": "Vivo Y93 Premium Edition Dual SIM TD-LTE CN V1818A", + "brand": "vivo", + "soc": "snapdragon-439", + "release_date": "2018-11-01", + "ram_gb": 4.0, + "battery_mah": 4030, + "weight_g": 163.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y93-premium-edition-dual-sim-td-lte-cn-v1818t.json b/data/smartphone/vivo/2018/vivo-y93-premium-edition-dual-sim-td-lte-cn-v1818t.json new file mode 100644 index 00000000000..999eb9a236b --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y93-premium-edition-dual-sim-td-lte-cn-v1818t.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y93-premium-edition-dual-sim-td-lte-cn-v1818t", + "name": "Vivo Y93 Premium Edition Dual SIM TD-LTE CN V1818T", + "brand": "vivo", + "soc": "snapdragon-439", + "release_date": "2018-11-01", + "ram_gb": 4.0, + "battery_mah": 4030, + "weight_g": 163.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y93-standard-edition-dual-sim-td-lte-cn-v1818a.json b/data/smartphone/vivo/2018/vivo-y93-standard-edition-dual-sim-td-lte-cn-v1818a.json new file mode 100644 index 00000000000..85138ee248c --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y93-standard-edition-dual-sim-td-lte-cn-v1818a.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y93-standard-edition-dual-sim-td-lte-cn-v1818a", + "name": "Vivo Y93 Standard Edition Dual SIM TD-LTE CN V1818A", + "brand": "vivo", + "soc": "snapdragon-439", + "release_date": "2018-11-01", + "ram_gb": 3.0, + "battery_mah": 4030, + "weight_g": 163.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y93-standard-edition-dual-sim-td-lte-cn-v1818t.json b/data/smartphone/vivo/2018/vivo-y93-standard-edition-dual-sim-td-lte-cn-v1818t.json new file mode 100644 index 00000000000..ff6eb849084 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y93-standard-edition-dual-sim-td-lte-cn-v1818t.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y93-standard-edition-dual-sim-td-lte-cn-v1818t", + "name": "Vivo Y93 Standard Edition Dual SIM TD-LTE CN V1818T", + "brand": "vivo", + "soc": "snapdragon-439", + "release_date": "2018-11-01", + "ram_gb": 3.0, + "battery_mah": 4030, + "weight_g": 163.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y93s-dual-sim-td-lte-cn-v1818ca.json b/data/smartphone/vivo/2018/vivo-y93s-dual-sim-td-lte-cn-v1818ca.json new file mode 100644 index 00000000000..aa4773e5695 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y93s-dual-sim-td-lte-cn-v1818ca.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y93s-dual-sim-td-lte-cn-v1818ca", + "name": "Vivo Y93s Dual SIM TD-LTE CN V1818CA", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2018-12-01", + "ram_gb": 4.0, + "battery_mah": 4030, + "weight_g": 163.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y93s-dual-sim-td-lte-cn-v1818ct.json b/data/smartphone/vivo/2018/vivo-y93s-dual-sim-td-lte-cn-v1818ct.json new file mode 100644 index 00000000000..14bb4396744 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y93s-dual-sim-td-lte-cn-v1818ct.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y93s-dual-sim-td-lte-cn-v1818ct", + "name": "Vivo Y93s Dual SIM TD-LTE CN V1818CT", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2018-12-01", + "ram_gb": 4.0, + "battery_mah": 4030, + "weight_g": 163.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y93st-standard-edition-dual-sim-td-lte-cn-v1818ca.json b/data/smartphone/vivo/2018/vivo-y93st-standard-edition-dual-sim-td-lte-cn-v1818ca.json new file mode 100644 index 00000000000..57a0b906b80 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y93st-standard-edition-dual-sim-td-lte-cn-v1818ca.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y93st-standard-edition-dual-sim-td-lte-cn-v1818ca", + "name": "Vivo Y93st Standard Edition Dual SIM TD-LTE CN V1818CA", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2018-12-01", + "ram_gb": 3.0, + "battery_mah": 4030, + "weight_g": 163.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y93st-standard-edition-dual-sim-td-lte-cn-v1818ct.json b/data/smartphone/vivo/2018/vivo-y93st-standard-edition-dual-sim-td-lte-cn-v1818ct.json new file mode 100644 index 00000000000..7e60e84c99f --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y93st-standard-edition-dual-sim-td-lte-cn-v1818ct.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y93st-standard-edition-dual-sim-td-lte-cn-v1818ct", + "name": "Vivo Y93st Standard Edition Dual SIM TD-LTE CN V1818CT", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2018-12-01", + "ram_gb": 3.0, + "battery_mah": 4030, + "weight_g": 163.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y95-dual-sim-td-lte-in-1807.json b/data/smartphone/vivo/2018/vivo-y95-dual-sim-td-lte-in-1807.json new file mode 100644 index 00000000000..23097f6b3a7 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y95-dual-sim-td-lte-in-1807.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y95-dual-sim-td-lte-in-1807", + "name": "Vivo Y95 Dual SIM TD-LTE IN 1807", + "brand": "vivo", + "soc": "snapdragon-439", + "release_date": "2018-11-27", + "ram_gb": 4.0, + "battery_mah": 4030, + "weight_g": 163.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y95-dual-sim-td-lte-ru-1807.json b/data/smartphone/vivo/2018/vivo-y95-dual-sim-td-lte-ru-1807.json new file mode 100644 index 00000000000..489994dccf8 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y95-dual-sim-td-lte-ru-1807.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y95-dual-sim-td-lte-ru-1807", + "name": "Vivo Y95 Dual SIM TD-LTE RU 1807", + "brand": "vivo", + "soc": "snapdragon-439", + "release_date": "2018-12-01", + "ram_gb": 4.0, + "battery_mah": 4030, + "weight_g": 163.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Russia", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/vivo/2018/vivo-y95-dual-sim-td-lte-tw-ph-1807.json b/data/smartphone/vivo/2018/vivo-y95-dual-sim-td-lte-tw-ph-1807.json new file mode 100644 index 00000000000..d6312ee5387 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y95-dual-sim-td-lte-tw-ph-1807.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y95-dual-sim-td-lte-tw-ph-1807", + "name": "Vivo Y95 Dual SIM TD-LTE TW PH 1807", + "brand": "vivo", + "soc": "snapdragon-439", + "release_date": "2018-11-27", + "ram_gb": 4.0, + "battery_mah": 4030, + "weight_g": 163.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Philippines , Taiwan", + "market_regions": "Asia , Oceania" +} diff --git a/data/smartphone/vivo/2018/vivo-y97-dual-sim-td-lte-cn-v1813a.json b/data/smartphone/vivo/2018/vivo-y97-dual-sim-td-lte-cn-v1813a.json new file mode 100644 index 00000000000..ede086bc3d3 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y97-dual-sim-td-lte-cn-v1813a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y97-dual-sim-td-lte-cn-v1813a", + "name": "Vivo Y97 Dual SIM TD-LTE CN V1813A", + "brand": "vivo", + "soc": "helio-p60", + "release_date": "2018-09-01", + "ram_gb": 4.0, + "battery_mah": 3315, + "weight_g": 162.4, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-y97-dual-sim-td-lte-cn-v1813t.json b/data/smartphone/vivo/2018/vivo-y97-dual-sim-td-lte-cn-v1813t.json new file mode 100644 index 00000000000..5ff64a78c91 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-y97-dual-sim-td-lte-cn-v1813t.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y97-dual-sim-td-lte-cn-v1813t", + "name": "Vivo Y97 Dual SIM TD-LTE CN V1813T", + "brand": "vivo", + "soc": "helio-p60", + "release_date": "2018-09-01", + "ram_gb": 4.0, + "battery_mah": 3315, + "weight_g": 162.4, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-z1-standard-edition-dual-sim-td-lte-cn-128gb-v1801a0.json b/data/smartphone/vivo/2018/vivo-z1-standard-edition-dual-sim-td-lte-cn-128gb-v1801a0.json new file mode 100644 index 00000000000..f5c8253927c --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-z1-standard-edition-dual-sim-td-lte-cn-128gb-v1801a0.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-z1-standard-edition-dual-sim-td-lte-cn-128gb-v1801a0", + "name": "Vivo Z1 Standard Edition Dual SIM TD-LTE CN 128GB V1801A0", + "brand": "vivo", + "soc": "snapdragon-660", + "release_date": "2018-06-01", + "ram_gb": 6.0, + "battery_mah": 3260, + "weight_g": 149.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-z1-standard-edition-dual-sim-td-lte-cn-64gb-v1801a0.json b/data/smartphone/vivo/2018/vivo-z1-standard-edition-dual-sim-td-lte-cn-64gb-v1801a0.json new file mode 100644 index 00000000000..43b89f4a8d4 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-z1-standard-edition-dual-sim-td-lte-cn-64gb-v1801a0.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-z1-standard-edition-dual-sim-td-lte-cn-64gb-v1801a0", + "name": "Vivo Z1 Standard Edition Dual SIM TD-LTE CN 64GB V1801A0", + "brand": "vivo", + "soc": "snapdragon-660", + "release_date": "2018-06-01", + "ram_gb": 4.0, + "battery_mah": 3260, + "weight_g": 149.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-z1i-dual-sim-td-lte-cn-v1730da.json b/data/smartphone/vivo/2018/vivo-z1i-dual-sim-td-lte-cn-v1730da.json new file mode 100644 index 00000000000..544ad66fd64 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-z1i-dual-sim-td-lte-cn-v1730da.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-z1i-dual-sim-td-lte-cn-v1730da", + "name": "Vivo Z1i Dual SIM TD-LTE CN V1730DA", + "brand": "vivo", + "soc": "snapdragon-636", + "release_date": "2018-07-07", + "ram_gb": 4.0, + "battery_mah": 3260, + "weight_g": 149.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-z1i-dual-sim-td-lte-cn-v1730dt.json b/data/smartphone/vivo/2018/vivo-z1i-dual-sim-td-lte-cn-v1730dt.json new file mode 100644 index 00000000000..b5942447d58 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-z1i-dual-sim-td-lte-cn-v1730dt.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-z1i-dual-sim-td-lte-cn-v1730dt", + "name": "Vivo Z1i Dual SIM TD-LTE CN V1730DT", + "brand": "vivo", + "soc": "snapdragon-636", + "release_date": "2018-07-07", + "ram_gb": 4.0, + "battery_mah": 3260, + "weight_g": 149.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-z3-dual-sim-td-lte-cn-128gb-v1813da-v1813bt.json b/data/smartphone/vivo/2018/vivo-z3-dual-sim-td-lte-cn-128gb-v1813da-v1813bt.json new file mode 100644 index 00000000000..2498094c0c0 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-z3-dual-sim-td-lte-cn-128gb-v1813da-v1813bt.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-z3-dual-sim-td-lte-cn-128gb-v1813da-v1813bt", + "name": "Vivo Z3 Dual SIM TD-LTE CN 128GB V1813DA / V1813BT", + "brand": "vivo", + "soc": "snapdragon-710", + "release_date": "2018-11-02", + "ram_gb": 6.0, + "battery_mah": 3315, + "weight_g": 163.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-z3-dual-sim-td-lte-cn-64gb-v1813ba.json b/data/smartphone/vivo/2018/vivo-z3-dual-sim-td-lte-cn-64gb-v1813ba.json new file mode 100644 index 00000000000..f132f03ec88 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-z3-dual-sim-td-lte-cn-64gb-v1813ba.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-z3-dual-sim-td-lte-cn-64gb-v1813ba", + "name": "Vivo Z3 Dual SIM TD-LTE CN 64GB V1813BA", + "brand": "vivo", + "soc": "snapdragon-670", + "release_date": "2018-11-02", + "ram_gb": 4.0, + "battery_mah": 3315, + "weight_g": 163.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-z3-dual-sim-td-lte-cn-64gb-v1813da.json b/data/smartphone/vivo/2018/vivo-z3-dual-sim-td-lte-cn-64gb-v1813da.json new file mode 100644 index 00000000000..9a1914e3ad6 --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-z3-dual-sim-td-lte-cn-64gb-v1813da.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-z3-dual-sim-td-lte-cn-64gb-v1813da", + "name": "Vivo Z3 Dual SIM TD-LTE CN 64GB V1813DA", + "brand": "vivo", + "soc": "snapdragon-710", + "release_date": "2018-11-02", + "ram_gb": 6.0, + "battery_mah": 3315, + "weight_g": 163.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-z3i-dual-sim-td-lte-cn-128gb-v1813a-z3is-standard-edition.json b/data/smartphone/vivo/2018/vivo-z3i-dual-sim-td-lte-cn-128gb-v1813a-z3is-standard-edition.json new file mode 100644 index 00000000000..7f5288b76ba --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-z3i-dual-sim-td-lte-cn-128gb-v1813a-z3is-standard-edition.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-z3i-dual-sim-td-lte-cn-128gb-v1813a-z3is-standard-edition", + "name": "Vivo Z3i Dual SIM TD-LTE CN 128GB V1813A / Z3is Standard Edition", + "brand": "vivo", + "soc": "helio-p60", + "release_date": "2018-10-01", + "ram_gb": 6.0, + "battery_mah": 3315, + "weight_g": 163.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/vivo-z3i-dual-sim-td-lte-cn-128gb-v1813t-z3is-standard-edition.json b/data/smartphone/vivo/2018/vivo-z3i-dual-sim-td-lte-cn-128gb-v1813t-z3is-standard-edition.json new file mode 100644 index 00000000000..2306f981c1a --- /dev/null +++ b/data/smartphone/vivo/2018/vivo-z3i-dual-sim-td-lte-cn-128gb-v1813t-z3is-standard-edition.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-z3i-dual-sim-td-lte-cn-128gb-v1813t-z3is-standard-edition", + "name": "Vivo Z3i Dual SIM TD-LTE CN 128GB V1813T / Z3is Standard Edition", + "brand": "vivo", + "soc": "helio-p60", + "release_date": "2018-10-01", + "ram_gb": 6.0, + "battery_mah": 3315, + "weight_g": 163.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/x21s-dual-sim-td-lte-cn-v1814a.json b/data/smartphone/vivo/2018/x21s-dual-sim-td-lte-cn-v1814a.json new file mode 100644 index 00000000000..b382e0008c7 --- /dev/null +++ b/data/smartphone/vivo/2018/x21s-dual-sim-td-lte-cn-v1814a.json @@ -0,0 +1,41 @@ +{ + "slug": "x21s-dual-sim-td-lte-cn-v1814a", + "name": "X21s Dual SIM TD-LTE CN V1814A", + "brand": "vivo", + "soc": "snapdragon-660", + "release_date": "2018-11-04", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/x21s-dual-sim-td-lte-cn-v1814t.json b/data/smartphone/vivo/2018/x21s-dual-sim-td-lte-cn-v1814t.json new file mode 100644 index 00000000000..d137d0fc4cf --- /dev/null +++ b/data/smartphone/vivo/2018/x21s-dual-sim-td-lte-cn-v1814t.json @@ -0,0 +1,41 @@ +{ + "slug": "x21s-dual-sim-td-lte-cn-v1814t", + "name": "X21s Dual SIM TD-LTE CN V1814T", + "brand": "vivo", + "soc": "snapdragon-660", + "release_date": "2018-11-04", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 156.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2018/y81.json b/data/smartphone/vivo/2018/y81.json new file mode 100644 index 00000000000..6c5ceda0b8a --- /dev/null +++ b/data/smartphone/vivo/2018/y81.json @@ -0,0 +1,32 @@ +{ + "slug": "y81", + "name": "Y81", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2018-01-01", + "ram_gb": 3.0, + "battery_mah": 3260, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "msrp_usd": 149 +} diff --git a/data/smartphone/vivo/2019/iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-128gb-v1936a.json b/data/smartphone/vivo/2019/iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-128gb-v1936a.json new file mode 100644 index 00000000000..44923fdae1e --- /dev/null +++ b/data/smartphone/vivo/2019/iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-128gb-v1936a.json @@ -0,0 +1,42 @@ +{ + "slug": "iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-128gb-v1936a", + "name": "iQOO Neo 855 Premium Edition Dual SIM TD-LTE CN 128GB V1936A", + "brand": "vivo", + "soc": "snapdragon-855", + "release_date": "2019-10-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 198.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-256gb-v1936a.json b/data/smartphone/vivo/2019/iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-256gb-v1936a.json new file mode 100644 index 00000000000..079b6b8731c --- /dev/null +++ b/data/smartphone/vivo/2019/iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-256gb-v1936a.json @@ -0,0 +1,42 @@ +{ + "slug": "iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-256gb-v1936a", + "name": "iQOO Neo 855 Premium Edition Dual SIM TD-LTE CN 256GB V1936A", + "brand": "vivo", + "soc": "snapdragon-855", + "release_date": "2019-10-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 198.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-256gb-v1936t.json b/data/smartphone/vivo/2019/iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-256gb-v1936t.json new file mode 100644 index 00000000000..3c246450e21 --- /dev/null +++ b/data/smartphone/vivo/2019/iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-256gb-v1936t.json @@ -0,0 +1,42 @@ +{ + "slug": "iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-256gb-v1936t", + "name": "iQOO Neo 855 Premium Edition Dual SIM TD-LTE CN 256GB V1936T", + "brand": "vivo", + "soc": "snapdragon-855", + "release_date": "2019-10-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 198.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-128gb-v1936a.json b/data/smartphone/vivo/2019/iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-128gb-v1936a.json new file mode 100644 index 00000000000..79b7cdfcd53 --- /dev/null +++ b/data/smartphone/vivo/2019/iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-128gb-v1936a.json @@ -0,0 +1,42 @@ +{ + "slug": "iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-128gb-v1936a", + "name": "iQOO Neo 855 Standard Edition Dual SIM TD-LTE CN 128GB V1936A", + "brand": "vivo", + "soc": "snapdragon-855", + "release_date": "2019-10-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 198.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-128gb-v1936t.json b/data/smartphone/vivo/2019/iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-128gb-v1936t.json new file mode 100644 index 00000000000..c0c375d6737 --- /dev/null +++ b/data/smartphone/vivo/2019/iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-128gb-v1936t.json @@ -0,0 +1,42 @@ +{ + "slug": "iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-128gb-v1936t", + "name": "iQOO Neo 855 Standard Edition Dual SIM TD-LTE CN 128GB V1936T", + "brand": "vivo", + "soc": "snapdragon-855", + "release_date": "2019-10-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 198.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-64gb-v1936a.json b/data/smartphone/vivo/2019/iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-64gb-v1936a.json new file mode 100644 index 00000000000..6b676bf1cb5 --- /dev/null +++ b/data/smartphone/vivo/2019/iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-64gb-v1936a.json @@ -0,0 +1,42 @@ +{ + "slug": "iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-64gb-v1936a", + "name": "iQOO Neo 855 Standard Edition Dual SIM TD-LTE CN 64GB V1936A", + "brand": "vivo", + "soc": "snapdragon-855", + "release_date": "2019-10-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 198.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/iqoo-neo-855s-racing-premium-edition-dual-sim-td-lte-cn-128gb-v1936al.json b/data/smartphone/vivo/2019/iqoo-neo-855s-racing-premium-edition-dual-sim-td-lte-cn-128gb-v1936al.json new file mode 100644 index 00000000000..9637a9c57a9 --- /dev/null +++ b/data/smartphone/vivo/2019/iqoo-neo-855s-racing-premium-edition-dual-sim-td-lte-cn-128gb-v1936al.json @@ -0,0 +1,42 @@ +{ + "slug": "iqoo-neo-855s-racing-premium-edition-dual-sim-td-lte-cn-128gb-v1936al", + "name": "iQOO Neo 855S Racing Premium Edition Dual SIM TD-LTE CN 128GB V1936AL", + "brand": "vivo", + "soc": "snapdragon-855-plus", + "release_date": "2019-12-12", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 198.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/iqoo-neo-855s-racing-premium-edition-dual-sim-td-lte-cn-128gb-v1936tl.json b/data/smartphone/vivo/2019/iqoo-neo-855s-racing-premium-edition-dual-sim-td-lte-cn-128gb-v1936tl.json new file mode 100644 index 00000000000..99a26bd8ef8 --- /dev/null +++ b/data/smartphone/vivo/2019/iqoo-neo-855s-racing-premium-edition-dual-sim-td-lte-cn-128gb-v1936tl.json @@ -0,0 +1,42 @@ +{ + "slug": "iqoo-neo-855s-racing-premium-edition-dual-sim-td-lte-cn-128gb-v1936tl", + "name": "iQOO Neo 855S Racing Premium Edition Dual SIM TD-LTE CN 128GB V1936TL", + "brand": "vivo", + "soc": "snapdragon-855-plus", + "release_date": "2019-12-13", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 198.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/iqoo-neo-855s-racing-standard-edition-dual-sim-td-lte-cn-128gb-v1936al.json b/data/smartphone/vivo/2019/iqoo-neo-855s-racing-standard-edition-dual-sim-td-lte-cn-128gb-v1936al.json new file mode 100644 index 00000000000..9ea8750c8bd --- /dev/null +++ b/data/smartphone/vivo/2019/iqoo-neo-855s-racing-standard-edition-dual-sim-td-lte-cn-128gb-v1936al.json @@ -0,0 +1,42 @@ +{ + "slug": "iqoo-neo-855s-racing-standard-edition-dual-sim-td-lte-cn-128gb-v1936al", + "name": "iQOO Neo 855S Racing Standard Edition Dual SIM TD-LTE CN 128GB V1936AL", + "brand": "vivo", + "soc": "snapdragon-855-plus", + "release_date": "2019-12-12", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 198.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/iqoo-neo-855s-racing-standard-edition-dual-sim-td-lte-cn-128gb-v1936tl.json b/data/smartphone/vivo/2019/iqoo-neo-855s-racing-standard-edition-dual-sim-td-lte-cn-128gb-v1936tl.json new file mode 100644 index 00000000000..5aa1319cb8d --- /dev/null +++ b/data/smartphone/vivo/2019/iqoo-neo-855s-racing-standard-edition-dual-sim-td-lte-cn-128gb-v1936tl.json @@ -0,0 +1,42 @@ +{ + "slug": "iqoo-neo-855s-racing-standard-edition-dual-sim-td-lte-cn-128gb-v1936tl", + "name": "iQOO Neo 855S Racing Standard Edition Dual SIM TD-LTE CN 128GB V1936TL", + "brand": "vivo", + "soc": "snapdragon-855-plus", + "release_date": "2019-12-12", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 198.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/iqoo-neo-premium-edition-dual-sim-td-lte-cn-128gb-v1914a.json b/data/smartphone/vivo/2019/iqoo-neo-premium-edition-dual-sim-td-lte-cn-128gb-v1914a.json new file mode 100644 index 00000000000..eded806b396 --- /dev/null +++ b/data/smartphone/vivo/2019/iqoo-neo-premium-edition-dual-sim-td-lte-cn-128gb-v1914a.json @@ -0,0 +1,42 @@ +{ + "slug": "iqoo-neo-premium-edition-dual-sim-td-lte-cn-128gb-v1914a", + "name": "iQOO Neo Premium Edition Dual SIM TD-LTE CN 128GB V1914A", + "brand": "vivo", + "soc": "snapdragon-845", + "release_date": "2019-07-08", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 198.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/iqoo-neo-premium-edition-dual-sim-td-lte-cn-128gb-v1914t.json b/data/smartphone/vivo/2019/iqoo-neo-premium-edition-dual-sim-td-lte-cn-128gb-v1914t.json new file mode 100644 index 00000000000..6a2aa72bb9c --- /dev/null +++ b/data/smartphone/vivo/2019/iqoo-neo-premium-edition-dual-sim-td-lte-cn-128gb-v1914t.json @@ -0,0 +1,42 @@ +{ + "slug": "iqoo-neo-premium-edition-dual-sim-td-lte-cn-128gb-v1914t", + "name": "iQOO Neo Premium Edition Dual SIM TD-LTE CN 128GB V1914T", + "brand": "vivo", + "soc": "snapdragon-845", + "release_date": "2019-07-08", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 198.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/iqoo-neo-premium-edition-dual-sim-td-lte-cn-64gb-v1914a.json b/data/smartphone/vivo/2019/iqoo-neo-premium-edition-dual-sim-td-lte-cn-64gb-v1914a.json new file mode 100644 index 00000000000..e67dd002b32 --- /dev/null +++ b/data/smartphone/vivo/2019/iqoo-neo-premium-edition-dual-sim-td-lte-cn-64gb-v1914a.json @@ -0,0 +1,42 @@ +{ + "slug": "iqoo-neo-premium-edition-dual-sim-td-lte-cn-64gb-v1914a", + "name": "iQOO Neo Premium Edition Dual SIM TD-LTE CN 64GB V1914A", + "brand": "vivo", + "soc": "snapdragon-845", + "release_date": "2019-07-08", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 198.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/iqoo-neo-standard-edition-dual-sim-td-lte-cn-128gb-v1914a.json b/data/smartphone/vivo/2019/iqoo-neo-standard-edition-dual-sim-td-lte-cn-128gb-v1914a.json new file mode 100644 index 00000000000..b430528abb1 --- /dev/null +++ b/data/smartphone/vivo/2019/iqoo-neo-standard-edition-dual-sim-td-lte-cn-128gb-v1914a.json @@ -0,0 +1,42 @@ +{ + "slug": "iqoo-neo-standard-edition-dual-sim-td-lte-cn-128gb-v1914a", + "name": "iQOO Neo Standard Edition Dual SIM TD-LTE CN 128GB V1914A", + "brand": "vivo", + "soc": "snapdragon-845", + "release_date": "2019-07-08", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 198.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/iqoo-neo-standard-edition-dual-sim-td-lte-cn-64gb-v1914a.json b/data/smartphone/vivo/2019/iqoo-neo-standard-edition-dual-sim-td-lte-cn-64gb-v1914a.json new file mode 100644 index 00000000000..fb2fee6d781 --- /dev/null +++ b/data/smartphone/vivo/2019/iqoo-neo-standard-edition-dual-sim-td-lte-cn-64gb-v1914a.json @@ -0,0 +1,42 @@ +{ + "slug": "iqoo-neo-standard-edition-dual-sim-td-lte-cn-64gb-v1914a", + "name": "iQOO Neo Standard Edition Dual SIM TD-LTE CN 64GB V1914A", + "brand": "vivo", + "soc": "snapdragon-845", + "release_date": "2019-07-08", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 198.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-iqoo-monster-edition-dual-sim-td-lte-cn-128gb-v1824a.json b/data/smartphone/vivo/2019/vivo-iqoo-monster-edition-dual-sim-td-lte-cn-128gb-v1824a.json new file mode 100644 index 00000000000..b5b7471c001 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-iqoo-monster-edition-dual-sim-td-lte-cn-128gb-v1824a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-iqoo-monster-edition-dual-sim-td-lte-cn-128gb-v1824a", + "name": "Vivo iQOO Monster Edition Dual SIM TD-LTE CN 128GB V1824A", + "brand": "vivo", + "soc": "snapdragon-855", + "release_date": "2019-04-14", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-iqoo-monster-edition-dual-sim-td-lte-cn-256gb-v1824a.json b/data/smartphone/vivo/2019/vivo-iqoo-monster-edition-dual-sim-td-lte-cn-256gb-v1824a.json new file mode 100644 index 00000000000..c4ef42a84e0 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-iqoo-monster-edition-dual-sim-td-lte-cn-256gb-v1824a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-iqoo-monster-edition-dual-sim-td-lte-cn-256gb-v1824a", + "name": "Vivo iQOO Monster Edition Dual SIM TD-LTE CN 256GB V1824A", + "brand": "vivo", + "soc": "snapdragon-855", + "release_date": "2019-03-01", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-iqoo-premium-edition-dual-sim-td-lte-cn-128gb-v1824a.json b/data/smartphone/vivo/2019/vivo-iqoo-premium-edition-dual-sim-td-lte-cn-128gb-v1824a.json new file mode 100644 index 00000000000..90c4dc3974b --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-iqoo-premium-edition-dual-sim-td-lte-cn-128gb-v1824a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-iqoo-premium-edition-dual-sim-td-lte-cn-128gb-v1824a", + "name": "Vivo iQOO Premium Edition Dual SIM TD-LTE CN 128GB V1824A", + "brand": "vivo", + "soc": "snapdragon-855", + "release_date": "2019-03-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-iqoo-premium-edition-dual-sim-td-lte-cn-256gb-v1824a.json b/data/smartphone/vivo/2019/vivo-iqoo-premium-edition-dual-sim-td-lte-cn-256gb-v1824a.json new file mode 100644 index 00000000000..6b0ecf3c643 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-iqoo-premium-edition-dual-sim-td-lte-cn-256gb-v1824a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-iqoo-premium-edition-dual-sim-td-lte-cn-256gb-v1824a", + "name": "Vivo iQOO Premium Edition Dual SIM TD-LTE CN 256GB V1824A", + "brand": "vivo", + "soc": "snapdragon-855", + "release_date": "2019-03-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-iqoo-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1916a.json b/data/smartphone/vivo/2019/vivo-iqoo-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1916a.json new file mode 100644 index 00000000000..cbf2937c1f2 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-iqoo-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1916a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-iqoo-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1916a", + "name": "Vivo iQOO Pro 5G Premium Edition Dual SIM TD-LTE CN 128GB V1916A", + "brand": "vivo", + "soc": "snapdragon-855-plus", + "release_date": "2019-08-31", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-iqoo-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1916a.json b/data/smartphone/vivo/2019/vivo-iqoo-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1916a.json new file mode 100644 index 00000000000..8aafa499ed3 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-iqoo-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1916a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-iqoo-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1916a", + "name": "Vivo iQOO Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB V1916A", + "brand": "vivo", + "soc": "snapdragon-855-plus", + "release_date": "2019-08-31", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1916a.json b/data/smartphone/vivo/2019/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1916a.json new file mode 100644 index 00000000000..d5162a8e904 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1916a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1916a", + "name": "Vivo iQOO Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB V1916A", + "brand": "vivo", + "soc": "snapdragon-855-plus", + "release_date": "2019-08-31", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1916t.json b/data/smartphone/vivo/2019/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1916t.json new file mode 100644 index 00000000000..88c9d13cfea --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1916t.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1916t", + "name": "Vivo iQOO Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB V1916T", + "brand": "vivo", + "soc": "snapdragon-855-plus", + "release_date": "2019-08-31", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1916a.json b/data/smartphone/vivo/2019/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1916a.json new file mode 100644 index 00000000000..c9b96e28919 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1916a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1916a", + "name": "Vivo iQOO Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB V1916A", + "brand": "vivo", + "soc": "snapdragon-855-plus", + "release_date": "2019-08-31", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1916t.json b/data/smartphone/vivo/2019/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1916t.json new file mode 100644 index 00000000000..b5dd65f2d75 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1916t.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1916t", + "name": "Vivo iQOO Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB V1916T", + "brand": "vivo", + "soc": "snapdragon-855-plus", + "release_date": "2019-08-31", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-iqoo-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1922a.json b/data/smartphone/vivo/2019/vivo-iqoo-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1922a.json new file mode 100644 index 00000000000..0e0661b252b --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-iqoo-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1922a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-iqoo-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1922a", + "name": "Vivo iQOO Pro Premium Edition Dual SIM TD-LTE CN 128GB V1922A", + "brand": "vivo", + "soc": "snapdragon-855-plus", + "release_date": "2019-08-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-iqoo-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1922t.json b/data/smartphone/vivo/2019/vivo-iqoo-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1922t.json new file mode 100644 index 00000000000..c2bc31d30aa --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-iqoo-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1922t.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-iqoo-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1922t", + "name": "Vivo iQOO Pro Premium Edition Dual SIM TD-LTE CN 128GB V1922T", + "brand": "vivo", + "soc": "snapdragon-855-plus", + "release_date": "2019-08-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-iqoo-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1922a.json b/data/smartphone/vivo/2019/vivo-iqoo-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1922a.json new file mode 100644 index 00000000000..9349fc2fe75 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-iqoo-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1922a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-iqoo-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1922a", + "name": "Vivo iQOO Pro Standard Edition Dual SIM TD-LTE CN 128GB V1922A", + "brand": "vivo", + "soc": "snapdragon-855-plus", + "release_date": "2019-08-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-iqoo-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1922t.json b/data/smartphone/vivo/2019/vivo-iqoo-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1922t.json new file mode 100644 index 00000000000..e9a657a1d06 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-iqoo-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1922t.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-iqoo-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1922t", + "name": "Vivo iQOO Pro Standard Edition Dual SIM TD-LTE CN 128GB V1922T", + "brand": "vivo", + "soc": "snapdragon-855-plus", + "release_date": "2019-08-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-iqoo-standard-edition-dual-sim-td-lte-cn-128gb-v1824ba.json b/data/smartphone/vivo/2019/vivo-iqoo-standard-edition-dual-sim-td-lte-cn-128gb-v1824ba.json new file mode 100644 index 00000000000..11ebd52ff6c --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-iqoo-standard-edition-dual-sim-td-lte-cn-128gb-v1824ba.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-iqoo-standard-edition-dual-sim-td-lte-cn-128gb-v1824ba", + "name": "Vivo iQOO Standard Edition Dual SIM TD-LTE CN 128GB V1824BA", + "brand": "vivo", + "soc": "snapdragon-855", + "release_date": "2019-03-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-nex-3-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1924a.json b/data/smartphone/vivo/2019/vivo-nex-3-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1924a.json new file mode 100644 index 00000000000..5454191447f --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-nex-3-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1924a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-nex-3-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1924a", + "name": "Vivo Nex 3 5G Premium Edition Dual SIM TD-LTE CN 256GB V1924A", + "brand": "vivo", + "soc": "snapdragon-855-plus", + "release_date": "2019-09-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 218.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.89, + "resolution": "1080x2256", + "type": "AM-OLED display", + "ppi": 363 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-nex-3-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1924a.json b/data/smartphone/vivo/2019/vivo-nex-3-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1924a.json new file mode 100644 index 00000000000..637b6a00d88 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-nex-3-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1924a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-nex-3-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1924a", + "name": "Vivo Nex 3 5G Standard Edition Dual SIM TD-LTE CN 256GB V1924A", + "brand": "vivo", + "soc": "snapdragon-855-plus", + "release_date": "2019-09-16", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 218.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.89, + "resolution": "1080x2256", + "type": "AM-OLED display", + "ppi": 363 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-nex-3-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1924t.json b/data/smartphone/vivo/2019/vivo-nex-3-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1924t.json new file mode 100644 index 00000000000..38646493ff1 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-nex-3-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1924t.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-nex-3-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1924t", + "name": "Vivo Nex 3 5G Standard Edition Dual SIM TD-LTE CN 256GB V1924T", + "brand": "vivo", + "soc": "snapdragon-855-plus", + "release_date": "2019-09-16", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 218.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.89, + "resolution": "1080x2256", + "type": "AM-OLED display", + "ppi": 363 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-nex-3-5g-standard-edition-global-dual-sim-td-lte-256gb-1913.json b/data/smartphone/vivo/2019/vivo-nex-3-5g-standard-edition-global-dual-sim-td-lte-256gb-1913.json new file mode 100644 index 00000000000..c45420299a8 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-nex-3-5g-standard-edition-global-dual-sim-td-lte-256gb-1913.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-nex-3-5g-standard-edition-global-dual-sim-td-lte-256gb-1913", + "name": "Vivo Nex 3 5G Standard Edition Global Dual SIM TD-LTE 256GB 1913", + "brand": "vivo", + "soc": "snapdragon-855-plus", + "release_date": "2019-10-29", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 218.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.89, + "resolution": "1080x2256", + "type": "AM-OLED display", + "ppi": 363 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Malaysia , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-nex-3-dual-sim-td-lte-cn-128gb-v1923a.json b/data/smartphone/vivo/2019/vivo-nex-3-dual-sim-td-lte-cn-128gb-v1923a.json new file mode 100644 index 00000000000..76de89db9e0 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-nex-3-dual-sim-td-lte-cn-128gb-v1923a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-nex-3-dual-sim-td-lte-cn-128gb-v1923a", + "name": "Vivo Nex 3 Dual SIM TD-LTE CN 128GB V1923A", + "brand": "vivo", + "soc": "snapdragon-855-plus", + "release_date": "2019-09-16", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 217.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.89, + "resolution": "1080x2256", + "type": "AM-OLED display", + "ppi": 363 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-nex-3-dual-sim-td-lte-cn-128gb-v1923t.json b/data/smartphone/vivo/2019/vivo-nex-3-dual-sim-td-lte-cn-128gb-v1923t.json new file mode 100644 index 00000000000..508dfbbc0be --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-nex-3-dual-sim-td-lte-cn-128gb-v1923t.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-nex-3-dual-sim-td-lte-cn-128gb-v1923t", + "name": "Vivo Nex 3 Dual SIM TD-LTE CN 128GB V1923T", + "brand": "vivo", + "soc": "snapdragon-855-plus", + "release_date": "2019-09-16", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 217.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.89, + "resolution": "1080x2256", + "type": "AM-OLED display", + "ppi": 363 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-nex-3-global-dual-sim-td-lte-128gb-1912.json b/data/smartphone/vivo/2019/vivo-nex-3-global-dual-sim-td-lte-128gb-1912.json new file mode 100644 index 00000000000..a1c8ad14d46 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-nex-3-global-dual-sim-td-lte-128gb-1912.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-nex-3-global-dual-sim-td-lte-128gb-1912", + "name": "Vivo Nex 3 Global Dual SIM TD-LTE 128GB 1912", + "brand": "vivo", + "soc": "snapdragon-855-plus", + "release_date": "2019-09-16", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 217.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.89, + "resolution": "1080x2256", + "type": "AM-OLED display", + "ppi": 363 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , HK , Kazakhstan , Malaysia , Philippines , Russia , Saudi Arabia , Singapore , Thailand , UAE , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-nex-3-global-dual-sim-td-lte-256gb-1912.json b/data/smartphone/vivo/2019/vivo-nex-3-global-dual-sim-td-lte-256gb-1912.json new file mode 100644 index 00000000000..f7dd8a3ce2d --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-nex-3-global-dual-sim-td-lte-256gb-1912.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-nex-3-global-dual-sim-td-lte-256gb-1912", + "name": "Vivo Nex 3 Global Dual SIM TD-LTE 256GB 1912", + "brand": "vivo", + "soc": "snapdragon-855-plus", + "release_date": "2019-09-16", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 217.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.89, + "resolution": "1080x2256", + "type": "AM-OLED display", + "ppi": 363 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "HK , Malaysia , Philippines , Singapore", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-nex-dual-display-edition-dual-sim-td-lte-tw-hk-my-128gb-1813.json b/data/smartphone/vivo/2019/vivo-nex-dual-display-edition-dual-sim-td-lte-tw-hk-my-128gb-1813.json new file mode 100644 index 00000000000..bf3f446c10d --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-nex-dual-display-edition-dual-sim-td-lte-tw-hk-my-128gb-1813.json @@ -0,0 +1,37 @@ +{ + "slug": "vivo-nex-dual-display-edition-dual-sim-td-lte-tw-hk-my-128gb-1813", + "name": "Vivo Nex Dual Display Edition Dual SIM TD-LTE TW HK MY 128GB 1813", + "brand": "vivo", + "soc": "snapdragon-845", + "release_date": "2019-01-16", + "ram_gb": 10.0, + "battery_mah": 3500, + "weight_g": 199.2, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "HK , Malaysia , Taiwan", + "market_regions": "Asia , Australia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-s1-dual-sim-td-lte-au-ph-sg-128gb-1907.json b/data/smartphone/vivo/2019/vivo-s1-dual-sim-td-lte-au-ph-sg-128gb-1907.json new file mode 100644 index 00000000000..e06ca131df6 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-s1-dual-sim-td-lte-au-ph-sg-128gb-1907.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-s1-dual-sim-td-lte-au-ph-sg-128gb-1907", + "name": "Vivo S1 Dual SIM TD-LTE AU PH SG 128GB 1907", + "brand": "vivo", + "soc": "helio-p65", + "release_date": "2019-08-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , NZ , Philippines , Singapore", + "market_regions": "Asia , Australia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-s1-dual-sim-td-lte-cn-128gb-v1831a-vivo-z5.json b/data/smartphone/vivo/2019/vivo-s1-dual-sim-td-lte-cn-128gb-v1831a-vivo-z5.json new file mode 100644 index 00000000000..2c1d43f533f --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-s1-dual-sim-td-lte-cn-128gb-v1831a-vivo-z5.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-s1-dual-sim-td-lte-cn-128gb-v1831a-vivo-z5", + "name": "Vivo S1 Dual SIM TD-LTE CN 128GB V1831A / Vivo Z5", + "brand": "vivo", + "soc": "helio-p70", + "release_date": "2019-04-02", + "ram_gb": 6.0, + "battery_mah": 3940, + "weight_g": 189.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-s1-dual-sim-td-lte-cn-128gb-v1831t.json b/data/smartphone/vivo/2019/vivo-s1-dual-sim-td-lte-cn-128gb-v1831t.json new file mode 100644 index 00000000000..e6c3bca194f --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-s1-dual-sim-td-lte-cn-128gb-v1831t.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-s1-dual-sim-td-lte-cn-128gb-v1831t", + "name": "Vivo S1 Dual SIM TD-LTE CN 128GB V1831T", + "brand": "vivo", + "soc": "helio-p70", + "release_date": "2019-04-02", + "ram_gb": 6.0, + "battery_mah": 3940, + "weight_g": 189.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-s1-dual-sim-td-lte-hk-128gb-1907.json b/data/smartphone/vivo/2019/vivo-s1-dual-sim-td-lte-hk-128gb-1907.json new file mode 100644 index 00000000000..8c4a8d9ab08 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-s1-dual-sim-td-lte-hk-128gb-1907.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-s1-dual-sim-td-lte-hk-128gb-1907", + "name": "Vivo S1 Dual SIM TD-LTE HK 128GB 1907", + "brand": "vivo", + "soc": "helio-p65", + "release_date": "2019-07-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-s1-dual-sim-td-lte-id-128gb-1907.json b/data/smartphone/vivo/2019/vivo-s1-dual-sim-td-lte-id-128gb-1907.json new file mode 100644 index 00000000000..20ab580be7d --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-s1-dual-sim-td-lte-id-128gb-1907.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-s1-dual-sim-td-lte-id-128gb-1907", + "name": "Vivo S1 Dual SIM TD-LTE ID 128GB 1907", + "brand": "vivo", + "soc": "helio-p65", + "release_date": "2019-08-01", + "ram_gb": 4.0, + "battery_mah": 4500, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-s1-dual-sim-td-lte-in-128gb-1907.json b/data/smartphone/vivo/2019/vivo-s1-dual-sim-td-lte-in-128gb-1907.json new file mode 100644 index 00000000000..85a4e356334 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-s1-dual-sim-td-lte-in-128gb-1907.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-s1-dual-sim-td-lte-in-128gb-1907", + "name": "Vivo S1 Dual SIM TD-LTE IN 128GB 1907", + "brand": "vivo", + "soc": "helio-p65", + "release_date": "2019-08-14", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Sri Lanka", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-s1-dual-sim-td-lte-in-64gb-1907.json b/data/smartphone/vivo/2019/vivo-s1-dual-sim-td-lte-in-64gb-1907.json new file mode 100644 index 00000000000..3569ef77ad1 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-s1-dual-sim-td-lte-in-64gb-1907.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-s1-dual-sim-td-lte-in-64gb-1907", + "name": "Vivo S1 Dual SIM TD-LTE IN 64GB 1907", + "brand": "vivo", + "soc": "helio-p65", + "release_date": "2019-08-14", + "ram_gb": 4.0, + "battery_mah": 4500, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Sri Lanka", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-s1-dual-sim-td-lte-th-vn-my-128gb-1907.json b/data/smartphone/vivo/2019/vivo-s1-dual-sim-td-lte-th-vn-my-128gb-1907.json new file mode 100644 index 00000000000..5ff5d7e0f49 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-s1-dual-sim-td-lte-th-vn-my-128gb-1907.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-s1-dual-sim-td-lte-th-vn-my-128gb-1907", + "name": "Vivo S1 Dual SIM TD-LTE TH VN MY 128GB 1907", + "brand": "vivo", + "soc": "helio-p65", + "release_date": "2019-08-02", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Cambodia , Malaysia , Thailand , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-s1-pro-dual-sim-td-lte-id-bd-np-128gb-1920.json b/data/smartphone/vivo/2019/vivo-s1-pro-dual-sim-td-lte-id-bd-np-128gb-1920.json new file mode 100644 index 00000000000..a99ede55a07 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-s1-pro-dual-sim-td-lte-id-bd-np-128gb-1920.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-s1-pro-dual-sim-td-lte-id-bd-np-128gb-1920", + "name": "Vivo S1 Pro Dual SIM TD-LTE ID BD NP 128GB 1920", + "brand": "vivo", + "soc": "snapdragon-665", + "release_date": "2019-11-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 186.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , Indonesia , Nepal", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-s1-pro-dual-sim-td-lte-my-vn-in-128gb-1920.json b/data/smartphone/vivo/2019/vivo-s1-pro-dual-sim-td-lte-my-vn-in-128gb-1920.json new file mode 100644 index 00000000000..efd049d943d --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-s1-pro-dual-sim-td-lte-my-vn-in-128gb-1920.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-s1-pro-dual-sim-td-lte-my-vn-in-128gb-1920", + "name": "Vivo S1 Pro Dual SIM TD-LTE MY VN IN 128GB 1920", + "brand": "vivo", + "soc": "snapdragon-665", + "release_date": "2019-11-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 186.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Malaysia , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-s1-pro-dual-sim-td-lte-th-ph-128gb-1920.json b/data/smartphone/vivo/2019/vivo-s1-pro-dual-sim-td-lte-th-ph-128gb-1920.json new file mode 100644 index 00000000000..1432a59d832 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-s1-pro-dual-sim-td-lte-th-ph-128gb-1920.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-s1-pro-dual-sim-td-lte-th-ph-128gb-1920", + "name": "Vivo S1 Pro Dual SIM TD-LTE TH PH 128GB 1920", + "brand": "vivo", + "soc": "snapdragon-665", + "release_date": "2019-11-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 186.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Philippines , Thailand", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-s1-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1832a.json b/data/smartphone/vivo/2019/vivo-s1-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1832a.json new file mode 100644 index 00000000000..afa0baa6df0 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-s1-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1832a.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-s1-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1832a", + "name": "Vivo S1 Pro Premium Edition Dual SIM TD-LTE CN 128GB V1832A", + "brand": "vivo", + "soc": "snapdragon-675", + "release_date": "2019-05-09", + "ram_gb": 8.0, + "battery_mah": 3700, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1832a.json b/data/smartphone/vivo/2019/vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1832a.json new file mode 100644 index 00000000000..ae148949a26 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1832a.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1832a", + "name": "Vivo S1 Pro Standard Edition Dual SIM TD-LTE CN 128GB V1832A", + "brand": "vivo", + "soc": "snapdragon-675", + "release_date": "2019-05-01", + "ram_gb": 6.0, + "battery_mah": 3700, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1832t.json b/data/smartphone/vivo/2019/vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1832t.json new file mode 100644 index 00000000000..cc87a82180d --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1832t.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1832t", + "name": "Vivo S1 Pro Standard Edition Dual SIM TD-LTE CN 128GB V1832T", + "brand": "vivo", + "soc": "snapdragon-675", + "release_date": "2019-05-09", + "ram_gb": 6.0, + "battery_mah": 3700, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-256gb-v1832a.json b/data/smartphone/vivo/2019/vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-256gb-v1832a.json new file mode 100644 index 00000000000..4c806f071ba --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-256gb-v1832a.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-256gb-v1832a", + "name": "Vivo S1 Pro Standard Edition Dual SIM TD-LTE CN 256GB V1832A", + "brand": "vivo", + "soc": "snapdragon-675", + "release_date": "2019-05-09", + "ram_gb": 6.0, + "battery_mah": 3700, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-s5-dual-sim-td-lte-cn-128gb-v1932a.json b/data/smartphone/vivo/2019/vivo-s5-dual-sim-td-lte-cn-128gb-v1932a.json new file mode 100644 index 00000000000..8a9e65aeb0b --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-s5-dual-sim-td-lte-cn-128gb-v1932a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-s5-dual-sim-td-lte-cn-128gb-v1932a", + "name": "Vivo S5 Dual SIM TD-LTE CN 128GB V1932A", + "brand": "vivo", + "soc": "snapdragon-712", + "release_date": "2019-11-22", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-s5-dual-sim-td-lte-cn-128gb-v1932t.json b/data/smartphone/vivo/2019/vivo-s5-dual-sim-td-lte-cn-128gb-v1932t.json new file mode 100644 index 00000000000..697848f871c --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-s5-dual-sim-td-lte-cn-128gb-v1932t.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-s5-dual-sim-td-lte-cn-128gb-v1932t", + "name": "Vivo S5 Dual SIM TD-LTE CN 128GB V1932T", + "brand": "vivo", + "soc": "snapdragon-712", + "release_date": "2019-11-22", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-u1-premium-edition-dual-sim-td-lte-cn-64gb-v1818a.json b/data/smartphone/vivo/2019/vivo-u1-premium-edition-dual-sim-td-lte-cn-64gb-v1818a.json new file mode 100644 index 00000000000..fb4240a3536 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-u1-premium-edition-dual-sim-td-lte-cn-64gb-v1818a.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-u1-premium-edition-dual-sim-td-lte-cn-64gb-v1818a", + "name": "Vivo U1 Premium Edition Dual SIM TD-LTE CN 64GB V1818A", + "brand": "vivo", + "soc": "snapdragon-439", + "release_date": "2019-02-26", + "ram_gb": 4.0, + "battery_mah": 4030, + "weight_g": 163.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-u1-standard-edition-dual-sim-td-lte-cn-32gb-v1818a.json b/data/smartphone/vivo/2019/vivo-u1-standard-edition-dual-sim-td-lte-cn-32gb-v1818a.json new file mode 100644 index 00000000000..8a7b27b9215 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-u1-standard-edition-dual-sim-td-lte-cn-32gb-v1818a.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-u1-standard-edition-dual-sim-td-lte-cn-32gb-v1818a", + "name": "Vivo U1 Standard Edition Dual SIM TD-LTE CN 32GB V1818A", + "brand": "vivo", + "soc": "snapdragon-439", + "release_date": "2019-02-26", + "ram_gb": 3.0, + "battery_mah": 4030, + "weight_g": 163.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-u1-standard-edition-dual-sim-td-lte-cn-64gb-v1818a.json b/data/smartphone/vivo/2019/vivo-u1-standard-edition-dual-sim-td-lte-cn-64gb-v1818a.json new file mode 100644 index 00000000000..c9905399b54 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-u1-standard-edition-dual-sim-td-lte-cn-64gb-v1818a.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-u1-standard-edition-dual-sim-td-lte-cn-64gb-v1818a", + "name": "Vivo U1 Standard Edition Dual SIM TD-LTE CN 64GB V1818A", + "brand": "vivo", + "soc": "snapdragon-439", + "release_date": "2019-02-26", + "ram_gb": 3.0, + "battery_mah": 4030, + "weight_g": 163.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-u10-premium-edition-dual-sim-td-lte-in-64gb-1916.json b/data/smartphone/vivo/2019/vivo-u10-premium-edition-dual-sim-td-lte-in-64gb-1916.json new file mode 100644 index 00000000000..e24b1cb5782 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-u10-premium-edition-dual-sim-td-lte-in-64gb-1916.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-u10-premium-edition-dual-sim-td-lte-in-64gb-1916", + "name": "Vivo U10 Premium Edition Dual SIM TD-LTE IN 64GB 1916", + "brand": "vivo", + "soc": "snapdragon-665", + "release_date": "2019-09-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-u10-premium-edition-dual-sim-td-lte-vn-64gb-1916.json b/data/smartphone/vivo/2019/vivo-u10-premium-edition-dual-sim-td-lte-vn-64gb-1916.json new file mode 100644 index 00000000000..e29b75c6e02 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-u10-premium-edition-dual-sim-td-lte-vn-64gb-1916.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-u10-premium-edition-dual-sim-td-lte-vn-64gb-1916", + "name": "Vivo U10 Premium Edition Dual SIM TD-LTE VN 64GB 1916", + "brand": "vivo", + "soc": "snapdragon-665", + "release_date": "2019-10-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-u10-standard-edition-dual-sim-td-lte-in-32gb-1916.json b/data/smartphone/vivo/2019/vivo-u10-standard-edition-dual-sim-td-lte-in-32gb-1916.json new file mode 100644 index 00000000000..55810a917fb --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-u10-standard-edition-dual-sim-td-lte-in-32gb-1916.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-u10-standard-edition-dual-sim-td-lte-in-32gb-1916", + "name": "Vivo U10 Standard Edition Dual SIM TD-LTE IN 32GB 1916", + "brand": "vivo", + "soc": "snapdragon-665", + "release_date": "2019-09-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 190.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-u10-standard-edition-dual-sim-td-lte-in-64gb-1916.json b/data/smartphone/vivo/2019/vivo-u10-standard-edition-dual-sim-td-lte-in-64gb-1916.json new file mode 100644 index 00000000000..74fbbeec15f --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-u10-standard-edition-dual-sim-td-lte-in-64gb-1916.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-u10-standard-edition-dual-sim-td-lte-in-64gb-1916", + "name": "Vivo U10 Standard Edition Dual SIM TD-LTE IN 64GB 1916", + "brand": "vivo", + "soc": "snapdragon-665", + "release_date": "2019-09-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 190.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-u20-standard-edition-dual-sim-td-lte-in-64gb-1921.json b/data/smartphone/vivo/2019/vivo-u20-standard-edition-dual-sim-td-lte-in-64gb-1921.json new file mode 100644 index 00000000000..80595c0d7b0 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-u20-standard-edition-dual-sim-td-lte-in-64gb-1921.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-u20-standard-edition-dual-sim-td-lte-in-64gb-1921", + "name": "Vivo U20 Standard Edition Dual SIM TD-LTE IN 64GB 1921", + "brand": "vivo", + "soc": "snapdragon-675", + "release_date": "2019-12-04", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-u3-premium-edition-dual-sim-td-lte-cn-64gb-v1941a.json b/data/smartphone/vivo/2019/vivo-u3-premium-edition-dual-sim-td-lte-cn-64gb-v1941a.json new file mode 100644 index 00000000000..c1d8c8f42cb --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-u3-premium-edition-dual-sim-td-lte-cn-64gb-v1941a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-u3-premium-edition-dual-sim-td-lte-cn-64gb-v1941a", + "name": "Vivo U3 Premium Edition Dual SIM TD-LTE CN 64GB V1941A", + "brand": "vivo", + "soc": "snapdragon-675", + "release_date": "2019-10-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-u3-premium-edition-dual-sim-td-lte-cn-64gb-v1941t.json b/data/smartphone/vivo/2019/vivo-u3-premium-edition-dual-sim-td-lte-cn-64gb-v1941t.json new file mode 100644 index 00000000000..c67059a00ea --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-u3-premium-edition-dual-sim-td-lte-cn-64gb-v1941t.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-u3-premium-edition-dual-sim-td-lte-cn-64gb-v1941t", + "name": "Vivo U3 Premium Edition Dual SIM TD-LTE CN 64GB V1941T", + "brand": "vivo", + "soc": "snapdragon-675", + "release_date": "2019-10-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-u3-standard-edition-dual-sim-td-lte-cn-64gb-v1941a.json b/data/smartphone/vivo/2019/vivo-u3-standard-edition-dual-sim-td-lte-cn-64gb-v1941a.json new file mode 100644 index 00000000000..a2a26c4b279 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-u3-standard-edition-dual-sim-td-lte-cn-64gb-v1941a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-u3-standard-edition-dual-sim-td-lte-cn-64gb-v1941a", + "name": "Vivo U3 Standard Edition Dual SIM TD-LTE CN 64GB V1941A", + "brand": "vivo", + "soc": "snapdragon-675", + "release_date": "2019-10-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-u3-standard-edition-dual-sim-td-lte-cn-64gb-v1941t.json b/data/smartphone/vivo/2019/vivo-u3-standard-edition-dual-sim-td-lte-cn-64gb-v1941t.json new file mode 100644 index 00000000000..c67f667c81b --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-u3-standard-edition-dual-sim-td-lte-cn-64gb-v1941t.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-u3-standard-edition-dual-sim-td-lte-cn-64gb-v1941t", + "name": "Vivo U3 Standard Edition Dual SIM TD-LTE CN 64GB V1941T", + "brand": "vivo", + "soc": "snapdragon-675", + "release_date": "2019-10-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-u3x-premium-edition-dual-sim-td-lte-cn-64gb-v1928a.json b/data/smartphone/vivo/2019/vivo-u3x-premium-edition-dual-sim-td-lte-cn-64gb-v1928a.json new file mode 100644 index 00000000000..c8f94f747e3 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-u3x-premium-edition-dual-sim-td-lte-cn-64gb-v1928a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-u3x-premium-edition-dual-sim-td-lte-cn-64gb-v1928a", + "name": "Vivo U3x Premium Edition Dual SIM TD-LTE CN 64GB V1928A", + "brand": "vivo", + "soc": "snapdragon-665", + "release_date": "2019-09-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 191.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-u3x-premium-edition-dual-sim-td-lte-cn-64gb-v1928t.json b/data/smartphone/vivo/2019/vivo-u3x-premium-edition-dual-sim-td-lte-cn-64gb-v1928t.json new file mode 100644 index 00000000000..b5bee8eba98 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-u3x-premium-edition-dual-sim-td-lte-cn-64gb-v1928t.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-u3x-premium-edition-dual-sim-td-lte-cn-64gb-v1928t", + "name": "Vivo U3x Premium Edition Dual SIM TD-LTE CN 64GB V1928T", + "brand": "vivo", + "soc": "snapdragon-665", + "release_date": "2019-09-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 191.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-u3x-standard-edition-dual-sim-td-lte-cn-32gb-v1928a.json b/data/smartphone/vivo/2019/vivo-u3x-standard-edition-dual-sim-td-lte-cn-32gb-v1928a.json new file mode 100644 index 00000000000..609b250920c --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-u3x-standard-edition-dual-sim-td-lte-cn-32gb-v1928a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-u3x-standard-edition-dual-sim-td-lte-cn-32gb-v1928a", + "name": "Vivo U3x Standard Edition Dual SIM TD-LTE CN 32GB V1928A", + "brand": "vivo", + "soc": "snapdragon-665", + "release_date": "2019-09-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 191.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-u3x-standard-edition-dual-sim-td-lte-cn-32gb-v1928t.json b/data/smartphone/vivo/2019/vivo-u3x-standard-edition-dual-sim-td-lte-cn-32gb-v1928t.json new file mode 100644 index 00000000000..3c7d482b448 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-u3x-standard-edition-dual-sim-td-lte-cn-32gb-v1928t.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-u3x-standard-edition-dual-sim-td-lte-cn-32gb-v1928t", + "name": "Vivo U3x Standard Edition Dual SIM TD-LTE CN 32GB V1928T", + "brand": "vivo", + "soc": "snapdragon-665", + "release_date": "2019-09-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 191.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-u3x-standard-edition-dual-sim-td-lte-cn-64gb-v1928a.json b/data/smartphone/vivo/2019/vivo-u3x-standard-edition-dual-sim-td-lte-cn-64gb-v1928a.json new file mode 100644 index 00000000000..d0681850081 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-u3x-standard-edition-dual-sim-td-lte-cn-64gb-v1928a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-u3x-standard-edition-dual-sim-td-lte-cn-64gb-v1928a", + "name": "Vivo U3x Standard Edition Dual SIM TD-LTE CN 64GB V1928A", + "brand": "vivo", + "soc": "snapdragon-665", + "release_date": "2019-09-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 191.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-u3x-standard-edition-dual-sim-td-lte-cn-64gb-v1928t.json b/data/smartphone/vivo/2019/vivo-u3x-standard-edition-dual-sim-td-lte-cn-64gb-v1928t.json new file mode 100644 index 00000000000..e53a31fd069 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-u3x-standard-edition-dual-sim-td-lte-cn-64gb-v1928t.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-u3x-standard-edition-dual-sim-td-lte-cn-64gb-v1928t", + "name": "Vivo U3x Standard Edition Dual SIM TD-LTE CN 64GB V1928T", + "brand": "vivo", + "soc": "snapdragon-665", + "release_date": "2019-09-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 191.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-v15-dual-sim-td-lte-in-id-th-np-128gb.json b/data/smartphone/vivo/2019/vivo-v15-dual-sim-td-lte-in-id-th-np-128gb.json new file mode 100644 index 00000000000..a41c439385f --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-v15-dual-sim-td-lte-in-id-th-np-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-v15-dual-sim-td-lte-in-id-th-np-128gb", + "name": "Vivo V15 Dual SIM TD-LTE IN ID TH NP 128GB", + "brand": "vivo", + "soc": "helio-p70", + "release_date": "2019-03-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 189.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Indonesia , Nepal , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-v15-dual-sim-td-lte-my-ph-128gb.json b/data/smartphone/vivo/2019/vivo-v15-dual-sim-td-lte-my-ph-128gb.json new file mode 100644 index 00000000000..dede2a54276 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-v15-dual-sim-td-lte-my-ph-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-v15-dual-sim-td-lte-my-ph-128gb", + "name": "Vivo V15 Dual SIM TD-LTE MY PH 128GB", + "brand": "vivo", + "soc": "helio-p70", + "release_date": "2019-03-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 189.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Cambodia , Malaysia , Philippines", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-v15-pro-premium-edition-dual-sim-td-lte-ph-128gb.json b/data/smartphone/vivo/2019/vivo-v15-pro-premium-edition-dual-sim-td-lte-ph-128gb.json new file mode 100644 index 00000000000..97c50bcd800 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-v15-pro-premium-edition-dual-sim-td-lte-ph-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-v15-pro-premium-edition-dual-sim-td-lte-ph-128gb", + "name": "Vivo V15 Pro Premium Edition Dual SIM TD-LTE PH 128GB", + "brand": "vivo", + "soc": "snapdragon-675", + "release_date": "2019-03-01", + "ram_gb": 8.0, + "battery_mah": 3700, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Philippines", + "market_regions": "Asia , Oceania" +} diff --git a/data/smartphone/vivo/2019/vivo-v15-pro-standard-edition-dual-sim-td-lte-in-id-np-th-128gb-1818.json b/data/smartphone/vivo/2019/vivo-v15-pro-standard-edition-dual-sim-td-lte-in-id-np-th-128gb-1818.json new file mode 100644 index 00000000000..c90628eca1d --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-v15-pro-standard-edition-dual-sim-td-lte-in-id-np-th-128gb-1818.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-v15-pro-standard-edition-dual-sim-td-lte-in-id-np-th-128gb-1818", + "name": "Vivo V15 Pro Standard Edition Dual SIM TD-LTE IN ID NP TH 128GB 1818", + "brand": "vivo", + "soc": "snapdragon-675", + "release_date": "2019-03-06", + "ram_gb": 6.0, + "battery_mah": 3700, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Indonesia , Nepal , Thailand", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-v15-pro-standard-edition-dual-sim-td-lte-my-hk-128gb.json b/data/smartphone/vivo/2019/vivo-v15-pro-standard-edition-dual-sim-td-lte-my-hk-128gb.json new file mode 100644 index 00000000000..d55c652f4eb --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-v15-pro-standard-edition-dual-sim-td-lte-my-hk-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-v15-pro-standard-edition-dual-sim-td-lte-my-hk-128gb", + "name": "Vivo V15 Pro Standard Edition Dual SIM TD-LTE MY HK 128GB", + "brand": "vivo", + "soc": "snapdragon-675", + "release_date": "2019-03-01", + "ram_gb": 6.0, + "battery_mah": 3700, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "HK , Malaysia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-v17-dual-sim-td-lte-in-128gb-1919.json b/data/smartphone/vivo/2019/vivo-v17-dual-sim-td-lte-in-128gb-1919.json new file mode 100644 index 00000000000..8240e381389 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-v17-dual-sim-td-lte-in-128gb-1919.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-v17-dual-sim-td-lte-in-128gb-1919", + "name": "Vivo V17 Dual SIM TD-LTE IN 128GB 1919", + "brand": "vivo", + "soc": "snapdragon-675", + "release_date": "2019-12-16", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-v17-dual-sim-td-lte-my-ph-128gb-1919-vivo-v19-neo.json b/data/smartphone/vivo/2019/vivo-v17-dual-sim-td-lte-my-ph-128gb-1919-vivo-v19-neo.json new file mode 100644 index 00000000000..3c5d174fad3 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-v17-dual-sim-td-lte-my-ph-128gb-1919-vivo-v19-neo.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-v17-dual-sim-td-lte-my-ph-128gb-1919-vivo-v19-neo", + "name": "Vivo V17 Dual SIM TD-LTE MY PH 128GB 1919 / Vivo V19 Neo", + "brand": "vivo", + "soc": "snapdragon-675", + "release_date": "2019-12-16", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Malaysia , Philippines", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-v17-dual-sim-td-lte-my-ph-256gb-1919-vivo-v19-neo.json b/data/smartphone/vivo/2019/vivo-v17-dual-sim-td-lte-my-ph-256gb-1919-vivo-v19-neo.json new file mode 100644 index 00000000000..2261ba4e2d7 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-v17-dual-sim-td-lte-my-ph-256gb-1919-vivo-v19-neo.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-v17-dual-sim-td-lte-my-ph-256gb-1919-vivo-v19-neo", + "name": "Vivo V17 Dual SIM TD-LTE MY PH 256GB 1919 / Vivo V19 Neo", + "brand": "vivo", + "soc": "snapdragon-675", + "release_date": "2019-12-16", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Malaysia , Philippines", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-v17-dual-sim-td-lte-pk-id-256gb-1919-v19.json b/data/smartphone/vivo/2019/vivo-v17-dual-sim-td-lte-pk-id-256gb-1919-v19.json new file mode 100644 index 00000000000..83da0fb6cdd --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-v17-dual-sim-td-lte-pk-id-256gb-1919-v19.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-v17-dual-sim-td-lte-pk-id-256gb-1919-v19", + "name": "Vivo V17 Dual SIM TD-LTE PK ID 256GB 1919 / V19", + "brand": "vivo", + "soc": "snapdragon-675", + "release_date": "2019-12-16", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Indonesia , Pakistan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-v17-dual-sim-td-lte-ru-128gb-1920.json b/data/smartphone/vivo/2019/vivo-v17-dual-sim-td-lte-ru-128gb-1920.json new file mode 100644 index 00000000000..8a165bc14ed --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-v17-dual-sim-td-lte-ru-128gb-1920.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-v17-dual-sim-td-lte-ru-128gb-1920", + "name": "Vivo V17 Dual SIM TD-LTE RU 128GB 1920", + "brand": "vivo", + "soc": "snapdragon-665", + "release_date": "2019-12-06", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 186.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Russia , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/vivo/2019/vivo-v17-neo-dual-sim-td-lte-ru-np-pk-bd-128gb-1907-s1.json b/data/smartphone/vivo/2019/vivo-v17-neo-dual-sim-td-lte-ru-np-pk-bd-128gb-1907-s1.json new file mode 100644 index 00000000000..149bfa8fc6e --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-v17-neo-dual-sim-td-lte-ru-np-pk-bd-128gb-1907-s1.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-v17-neo-dual-sim-td-lte-ru-np-pk-bd-128gb-1907-s1", + "name": "Vivo V17 Neo Dual SIM TD-LTE RU NP PK BD 128GB 1907 / S1", + "brand": "vivo", + "soc": "helio-p65", + "release_date": "2019-08-02", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , Nepal , Pakistan , Russia", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/vivo/2019/vivo-v17-pro-dual-sim-td-lte-hk-128gb-1910.json b/data/smartphone/vivo/2019/vivo-v17-pro-dual-sim-td-lte-hk-128gb-1910.json new file mode 100644 index 00000000000..5a9b8bed7a4 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-v17-pro-dual-sim-td-lte-hk-128gb-1910.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-v17-pro-dual-sim-td-lte-hk-128gb-1910", + "name": "Vivo V17 Pro Dual SIM TD-LTE HK 128GB 1910", + "brand": "vivo", + "soc": "snapdragon-675", + "release_date": "2019-10-01", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 201.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-v17-pro-dual-sim-td-lte-in-pk-np-bd-mn-128gb-1909.json b/data/smartphone/vivo/2019/vivo-v17-pro-dual-sim-td-lte-in-pk-np-bd-mn-128gb-1909.json new file mode 100644 index 00000000000..f1f8f93eaf1 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-v17-pro-dual-sim-td-lte-in-pk-np-bd-mn-128gb-1909.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-v17-pro-dual-sim-td-lte-in-pk-np-bd-mn-128gb-1909", + "name": "Vivo V17 Pro Dual SIM TD-LTE IN PK NP BD MN 128GB 1909", + "brand": "vivo", + "soc": "snapdragon-675", + "release_date": "2019-10-01", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 201.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , India , Myanmar , Nepal , Pakistan , Sri Lanka", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-v17-pro-dual-sim-td-lte-my-vn-128gb-1910.json b/data/smartphone/vivo/2019/vivo-v17-pro-dual-sim-td-lte-my-vn-128gb-1910.json new file mode 100644 index 00000000000..a8b4d7d3329 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-v17-pro-dual-sim-td-lte-my-vn-128gb-1910.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-v17-pro-dual-sim-td-lte-my-vn-128gb-1910", + "name": "Vivo V17 Pro Dual SIM TD-LTE MY VN 128GB 1910", + "brand": "vivo", + "soc": "snapdragon-675", + "release_date": "2019-10-01", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 201.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Cambodia , Malaysia , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-v17-pro-dual-sim-td-lte-th-id-128gb-1910.json b/data/smartphone/vivo/2019/vivo-v17-pro-dual-sim-td-lte-th-id-128gb-1910.json new file mode 100644 index 00000000000..3f127a0d28e --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-v17-pro-dual-sim-td-lte-th-id-128gb-1910.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-v17-pro-dual-sim-td-lte-th-id-128gb-1910", + "name": "Vivo V17 Pro Dual SIM TD-LTE TH ID 128GB 1910", + "brand": "vivo", + "soc": "snapdragon-675", + "release_date": "2019-10-01", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 201.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Indonesia , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-v17-pro-dual-sim-td-lte-tw-sg-128gb-1910.json b/data/smartphone/vivo/2019/vivo-v17-pro-dual-sim-td-lte-tw-sg-128gb-1910.json new file mode 100644 index 00000000000..c13a74035e4 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-v17-pro-dual-sim-td-lte-tw-sg-128gb-1910.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-v17-pro-dual-sim-td-lte-tw-sg-128gb-1910", + "name": "Vivo V17 Pro Dual SIM TD-LTE TW SG 128GB 1910", + "brand": "vivo", + "soc": "snapdragon-675", + "release_date": "2019-10-01", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 201.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Singapore , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-v17-pro-global-dual-sim-td-lte-128gb-1910.json b/data/smartphone/vivo/2019/vivo-v17-pro-global-dual-sim-td-lte-128gb-1910.json new file mode 100644 index 00000000000..cf859e4115c --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-v17-pro-global-dual-sim-td-lte-128gb-1910.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-v17-pro-global-dual-sim-td-lte-128gb-1910", + "name": "Vivo V17 Pro Global Dual SIM TD-LTE 128GB 1910", + "brand": "vivo", + "soc": "snapdragon-675", + "release_date": "2019-10-01", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 201.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Kazakhstan , Russia , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/vivo/2019/vivo-x27-premium-edition-dual-sim-td-lte-cn-128gb-v1829a.json b/data/smartphone/vivo/2019/vivo-x27-premium-edition-dual-sim-td-lte-cn-128gb-v1829a.json new file mode 100644 index 00000000000..262c800bb4e --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-x27-premium-edition-dual-sim-td-lte-cn-128gb-v1829a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-x27-premium-edition-dual-sim-td-lte-cn-128gb-v1829a", + "name": "Vivo X27 Premium Edition Dual SIM TD-LTE CN 128GB V1829A", + "brand": "vivo", + "soc": "snapdragon-710", + "release_date": "2019-03-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 188.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-x27-premium-edition-dual-sim-td-lte-cn-128gb-v1829t.json b/data/smartphone/vivo/2019/vivo-x27-premium-edition-dual-sim-td-lte-cn-128gb-v1829t.json new file mode 100644 index 00000000000..9336e9b33e5 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-x27-premium-edition-dual-sim-td-lte-cn-128gb-v1829t.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-x27-premium-edition-dual-sim-td-lte-cn-128gb-v1829t", + "name": "Vivo X27 Premium Edition Dual SIM TD-LTE CN 128GB V1829T", + "brand": "vivo", + "soc": "snapdragon-710", + "release_date": "2019-03-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 188.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-x27-premium-edition-dual-sim-td-lte-cn-256gb-v1829a.json b/data/smartphone/vivo/2019/vivo-x27-premium-edition-dual-sim-td-lte-cn-256gb-v1829a.json new file mode 100644 index 00000000000..4509b8c3ad1 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-x27-premium-edition-dual-sim-td-lte-cn-256gb-v1829a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-x27-premium-edition-dual-sim-td-lte-cn-256gb-v1829a", + "name": "Vivo X27 Premium Edition Dual SIM TD-LTE CN 256GB V1829A", + "brand": "vivo", + "soc": "snapdragon-710", + "release_date": "2019-03-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 188.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-x27-premium-edition-dual-sim-td-lte-cn-256gb-v1829t.json b/data/smartphone/vivo/2019/vivo-x27-premium-edition-dual-sim-td-lte-cn-256gb-v1829t.json new file mode 100644 index 00000000000..12f85b7f52e --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-x27-premium-edition-dual-sim-td-lte-cn-256gb-v1829t.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-x27-premium-edition-dual-sim-td-lte-cn-256gb-v1829t", + "name": "Vivo X27 Premium Edition Dual SIM TD-LTE CN 256GB V1829T", + "brand": "vivo", + "soc": "snapdragon-710", + "release_date": "2019-03-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 188.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-x27-pro-dual-sim-td-lte-cn-256gb-v1836a.json b/data/smartphone/vivo/2019/vivo-x27-pro-dual-sim-td-lte-cn-256gb-v1836a.json new file mode 100644 index 00000000000..267b97f8b13 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-x27-pro-dual-sim-td-lte-cn-256gb-v1836a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-x27-pro-dual-sim-td-lte-cn-256gb-v1836a", + "name": "Vivo X27 Pro Dual SIM TD-LTE CN 256GB V1836A", + "brand": "vivo", + "soc": "snapdragon-710", + "release_date": "2019-04-18", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-x27-pro-dual-sim-td-lte-cn-256gb-v1836t.json b/data/smartphone/vivo/2019/vivo-x27-pro-dual-sim-td-lte-cn-256gb-v1836t.json new file mode 100644 index 00000000000..13901daabc5 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-x27-pro-dual-sim-td-lte-cn-256gb-v1836t.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-x27-pro-dual-sim-td-lte-cn-256gb-v1836t", + "name": "Vivo X27 Pro Dual SIM TD-LTE CN 256GB V1836T", + "brand": "vivo", + "soc": "snapdragon-710", + "release_date": "2019-04-18", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-x27-standard-edition-dual-sim-td-lte-cn-128gb-v1838a.json b/data/smartphone/vivo/2019/vivo-x27-standard-edition-dual-sim-td-lte-cn-128gb-v1838a.json new file mode 100644 index 00000000000..1bbf3aebd8b --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-x27-standard-edition-dual-sim-td-lte-cn-128gb-v1838a.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-x27-standard-edition-dual-sim-td-lte-cn-128gb-v1838a", + "name": "Vivo X27 Standard Edition Dual SIM TD-LTE CN 128GB V1838A", + "brand": "vivo", + "soc": "snapdragon-675", + "release_date": "2019-03-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 188.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-x27-standard-edition-dual-sim-td-lte-cn-128gb-v1838t.json b/data/smartphone/vivo/2019/vivo-x27-standard-edition-dual-sim-td-lte-cn-128gb-v1838t.json new file mode 100644 index 00000000000..8082567805c --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-x27-standard-edition-dual-sim-td-lte-cn-128gb-v1838t.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-x27-standard-edition-dual-sim-td-lte-cn-128gb-v1838t", + "name": "Vivo X27 Standard Edition Dual SIM TD-LTE CN 128GB V1838T", + "brand": "vivo", + "soc": "snapdragon-675", + "release_date": "2019-03-31", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 188.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-x30-5g-dual-sim-td-lte-cn-128gb-v1938ca.json b/data/smartphone/vivo/2019/vivo-x30-5g-dual-sim-td-lte-cn-128gb-v1938ca.json new file mode 100644 index 00000000000..da4e6f36573 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-x30-5g-dual-sim-td-lte-cn-128gb-v1938ca.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-x30-5g-dual-sim-td-lte-cn-128gb-v1938ca", + "name": "Vivo X30 5G Dual SIM TD-LTE CN 128GB V1938CA", + "brand": "vivo", + "soc": "exynos-980", + "release_date": "2019-12-24", + "ram_gb": 8.0, + "battery_mah": 4350, + "weight_g": 196.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-x30-5g-dual-sim-td-lte-cn-128gb-v1938ct.json b/data/smartphone/vivo/2019/vivo-x30-5g-dual-sim-td-lte-cn-128gb-v1938ct.json new file mode 100644 index 00000000000..ab23889a879 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-x30-5g-dual-sim-td-lte-cn-128gb-v1938ct.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-x30-5g-dual-sim-td-lte-cn-128gb-v1938ct", + "name": "Vivo X30 5G Dual SIM TD-LTE CN 128GB V1938CT", + "brand": "vivo", + "soc": "exynos-980", + "release_date": "2019-12-24", + "ram_gb": 8.0, + "battery_mah": 4350, + "weight_g": 196.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-x30-5g-dual-sim-td-lte-cn-256gb-v1938ca.json b/data/smartphone/vivo/2019/vivo-x30-5g-dual-sim-td-lte-cn-256gb-v1938ca.json new file mode 100644 index 00000000000..eabc73c1361 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-x30-5g-dual-sim-td-lte-cn-256gb-v1938ca.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-x30-5g-dual-sim-td-lte-cn-256gb-v1938ca", + "name": "Vivo X30 5G Dual SIM TD-LTE CN 256GB V1938CA", + "brand": "vivo", + "soc": "exynos-980", + "release_date": "2019-12-24", + "ram_gb": 8.0, + "battery_mah": 4350, + "weight_g": 196.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-x30-5g-dual-sim-td-lte-cn-256gb-v1938ct.json b/data/smartphone/vivo/2019/vivo-x30-5g-dual-sim-td-lte-cn-256gb-v1938ct.json new file mode 100644 index 00000000000..92c39cae9ab --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-x30-5g-dual-sim-td-lte-cn-256gb-v1938ct.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-x30-5g-dual-sim-td-lte-cn-256gb-v1938ct", + "name": "Vivo X30 5G Dual SIM TD-LTE CN 256GB V1938CT", + "brand": "vivo", + "soc": "exynos-980", + "release_date": "2019-12-24", + "ram_gb": 8.0, + "battery_mah": 4350, + "weight_g": 196.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-x30-pro-5g-dual-sim-td-lte-cn-128gb-v1938a.json b/data/smartphone/vivo/2019/vivo-x30-pro-5g-dual-sim-td-lte-cn-128gb-v1938a.json new file mode 100644 index 00000000000..bd8478315d6 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-x30-pro-5g-dual-sim-td-lte-cn-128gb-v1938a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-x30-pro-5g-dual-sim-td-lte-cn-128gb-v1938a", + "name": "Vivo X30 Pro 5G Dual SIM TD-LTE CN 128GB V1938A", + "brand": "vivo", + "soc": "exynos-980", + "release_date": "2019-12-24", + "ram_gb": 8.0, + "battery_mah": 4350, + "weight_g": 198.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-x30-pro-5g-dual-sim-td-lte-cn-128gb-v1938t.json b/data/smartphone/vivo/2019/vivo-x30-pro-5g-dual-sim-td-lte-cn-128gb-v1938t.json new file mode 100644 index 00000000000..4b7e85dae93 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-x30-pro-5g-dual-sim-td-lte-cn-128gb-v1938t.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-x30-pro-5g-dual-sim-td-lte-cn-128gb-v1938t", + "name": "Vivo X30 Pro 5G Dual SIM TD-LTE CN 128GB V1938T", + "brand": "vivo", + "soc": "exynos-980", + "release_date": "2019-12-24", + "ram_gb": 8.0, + "battery_mah": 4350, + "weight_g": 198.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-x30-pro-5g-dual-sim-td-lte-cn-256gb-v1938a.json b/data/smartphone/vivo/2019/vivo-x30-pro-5g-dual-sim-td-lte-cn-256gb-v1938a.json new file mode 100644 index 00000000000..7ebd6bd0665 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-x30-pro-5g-dual-sim-td-lte-cn-256gb-v1938a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-x30-pro-5g-dual-sim-td-lte-cn-256gb-v1938a", + "name": "Vivo X30 Pro 5G Dual SIM TD-LTE CN 256GB V1938A", + "brand": "vivo", + "soc": "exynos-980", + "release_date": "2019-12-24", + "ram_gb": 8.0, + "battery_mah": 4350, + "weight_g": 198.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-x30-pro-5g-dual-sim-td-lte-cn-256gb-v1938t.json b/data/smartphone/vivo/2019/vivo-x30-pro-5g-dual-sim-td-lte-cn-256gb-v1938t.json new file mode 100644 index 00000000000..c50eff8b69a --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-x30-pro-5g-dual-sim-td-lte-cn-256gb-v1938t.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-x30-pro-5g-dual-sim-td-lte-cn-256gb-v1938t", + "name": "Vivo X30 Pro 5G Dual SIM TD-LTE CN 256GB V1938T", + "brand": "vivo", + "soc": "exynos-980", + "release_date": "2019-12-24", + "ram_gb": 8.0, + "battery_mah": 4350, + "weight_g": 198.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y11-2019-dual-sim-td-lte-my-bd.json b/data/smartphone/vivo/2019/vivo-y11-2019-dual-sim-td-lte-my-bd.json new file mode 100644 index 00000000000..5cccda22959 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y11-2019-dual-sim-td-lte-my-bd.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y11-2019-dual-sim-td-lte-my-bd", + "name": "Vivo Y11 2019 Dual SIM TD-LTE MY BD", + "brand": "vivo", + "soc": "snapdragon-439", + "release_date": "2019-11-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 191.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.35, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , Malaysia , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y11-2019-dual-sim-td-lte-ph.json b/data/smartphone/vivo/2019/vivo-y11-2019-dual-sim-td-lte-ph.json new file mode 100644 index 00000000000..44e833e23e3 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y11-2019-dual-sim-td-lte-ph.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y11-2019-dual-sim-td-lte-ph", + "name": "Vivo Y11 2019 Dual SIM TD-LTE PH", + "brand": "vivo", + "soc": "snapdragon-439", + "release_date": "2019-11-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 191.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.35, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Philippines", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y11-2019-dual-sim-td-lte-pk-th-np.json b/data/smartphone/vivo/2019/vivo-y11-2019-dual-sim-td-lte-pk-th-np.json new file mode 100644 index 00000000000..5d44a5adf78 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y11-2019-dual-sim-td-lte-pk-th-np.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y11-2019-dual-sim-td-lte-pk-th-np", + "name": "Vivo Y11 2019 Dual SIM TD-LTE PK TH NP", + "brand": "vivo", + "soc": "snapdragon-439", + "release_date": "2019-11-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 191.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.35, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Nepal , Pakistan , Sri Lanka , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y11-2019-dual-sim-td-lte-ru.json b/data/smartphone/vivo/2019/vivo-y11-2019-dual-sim-td-lte-ru.json new file mode 100644 index 00000000000..e385f90c7ec --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y11-2019-dual-sim-td-lte-ru.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y11-2019-dual-sim-td-lte-ru", + "name": "Vivo Y11 2019 Dual SIM TD-LTE RU", + "brand": "vivo", + "soc": "snapdragon-439", + "release_date": "2019-10-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 191.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.35, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Russia", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/vivo/2019/vivo-y12-2019-premium-edition-dual-sim-td-lte-in-32gb-1904.json b/data/smartphone/vivo/2019/vivo-y12-2019-premium-edition-dual-sim-td-lte-in-32gb-1904.json new file mode 100644 index 00000000000..290d007dc1f --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y12-2019-premium-edition-dual-sim-td-lte-in-32gb-1904.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y12-2019-premium-edition-dual-sim-td-lte-in-32gb-1904", + "name": "Vivo Y12 2019 Premium Edition Dual SIM TD-LTE IN 32GB 1904", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2019-05-28", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y12-2019-standard-edition-dual-sim-td-lte-id-32gb-1904.json b/data/smartphone/vivo/2019/vivo-y12-2019-standard-edition-dual-sim-td-lte-id-32gb-1904.json new file mode 100644 index 00000000000..3e93f6cf1f0 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y12-2019-standard-edition-dual-sim-td-lte-id-32gb-1904.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y12-2019-standard-edition-dual-sim-td-lte-id-32gb-1904", + "name": "Vivo Y12 2019 Standard Edition Dual SIM TD-LTE ID 32GB 1904", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2019-06-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 190.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y12-2019-standard-edition-dual-sim-td-lte-id-pk-np-64gb-1904.json b/data/smartphone/vivo/2019/vivo-y12-2019-standard-edition-dual-sim-td-lte-id-pk-np-64gb-1904.json new file mode 100644 index 00000000000..3ba6019cec6 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y12-2019-standard-edition-dual-sim-td-lte-id-pk-np-64gb-1904.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y12-2019-standard-edition-dual-sim-td-lte-id-pk-np-64gb-1904", + "name": "Vivo Y12 2019 Standard Edition Dual SIM TD-LTE ID PK NP 64GB 1904", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2019-06-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 190.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Indonesia , Nepal , Pakistan , Sri Lanka", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y12-2019-standard-edition-dual-sim-td-lte-in-ph-64gb-1904.json b/data/smartphone/vivo/2019/vivo-y12-2019-standard-edition-dual-sim-td-lte-in-ph-64gb-1904.json new file mode 100644 index 00000000000..c10a109592b --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y12-2019-standard-edition-dual-sim-td-lte-in-ph-64gb-1904.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y12-2019-standard-edition-dual-sim-td-lte-in-ph-64gb-1904", + "name": "Vivo Y12 2019 Standard Edition Dual SIM TD-LTE IN PH 64GB 1904", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2019-05-28", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 190.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Philippines", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y12-2019-standard-edition-dual-sim-td-lte-my-th-32gb-1904.json b/data/smartphone/vivo/2019/vivo-y12-2019-standard-edition-dual-sim-td-lte-my-th-32gb-1904.json new file mode 100644 index 00000000000..5db4fd91208 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y12-2019-standard-edition-dual-sim-td-lte-my-th-32gb-1904.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y12-2019-standard-edition-dual-sim-td-lte-my-th-32gb-1904", + "name": "Vivo Y12 2019 Standard Edition Dual SIM TD-LTE MY TH 32GB 1904", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2019-06-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 190.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Malaysia , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y12-2019-standard-edition-dual-sim-td-lte-my-th-vn-sg-hk-64gb-1904.json b/data/smartphone/vivo/2019/vivo-y12-2019-standard-edition-dual-sim-td-lte-my-th-vn-sg-hk-64gb-1904.json new file mode 100644 index 00000000000..b2da21f80a6 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y12-2019-standard-edition-dual-sim-td-lte-my-th-vn-sg-hk-64gb-1904.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y12-2019-standard-edition-dual-sim-td-lte-my-th-vn-sg-hk-64gb-1904", + "name": "Vivo Y12 2019 Standard Edition Dual SIM TD-LTE MY TH VN SG HK 64GB 1904", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2019-06-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 190.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "HK , Malaysia , Singapore , Thailand , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y12-2019-standard-edition-dual-sim-td-lte-tw-au-64gb-1904.json b/data/smartphone/vivo/2019/vivo-y12-2019-standard-edition-dual-sim-td-lte-tw-au-64gb-1904.json new file mode 100644 index 00000000000..55e80a1c2c4 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y12-2019-standard-edition-dual-sim-td-lte-tw-au-64gb-1904.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y12-2019-standard-edition-dual-sim-td-lte-tw-au-64gb-1904", + "name": "Vivo Y12 2019 Standard Edition Dual SIM TD-LTE TW AU 64GB 1904", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2019-07-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 190.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , Taiwan", + "market_regions": "Asia , Australia" +} diff --git a/data/smartphone/vivo/2019/vivo-y12-2019-standard-edition-global-dual-sim-td-lte-64gb-1904.json b/data/smartphone/vivo/2019/vivo-y12-2019-standard-edition-global-dual-sim-td-lte-64gb-1904.json new file mode 100644 index 00000000000..8e8c62275b1 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y12-2019-standard-edition-global-dual-sim-td-lte-64gb-1904.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y12-2019-standard-edition-global-dual-sim-td-lte-64gb-1904", + "name": "Vivo Y12 2019 Standard Edition Global Dual SIM TD-LTE 64GB 1904", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2019-07-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 190.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , Egypt , Kenya , Nigeria , Taiwan , UAE", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y15-2019-dual-sim-td-lte-id-pk-np-mn-64gb-1901.json b/data/smartphone/vivo/2019/vivo-y15-2019-dual-sim-td-lte-id-pk-np-mn-64gb-1901.json new file mode 100644 index 00000000000..a5b7af21110 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y15-2019-dual-sim-td-lte-id-pk-np-mn-64gb-1901.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y15-2019-dual-sim-td-lte-id-pk-np-mn-64gb-1901", + "name": "Vivo Y15 2019 Dual SIM TD-LTE ID PK NP MN 64GB 1901", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2019-06-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Indonesia , Myanmar , Nepal , Pakistan , Sri Lanka", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y15-2019-dual-sim-td-lte-in-ph-64gb-1901.json b/data/smartphone/vivo/2019/vivo-y15-2019-dual-sim-td-lte-in-ph-64gb-1901.json new file mode 100644 index 00000000000..2468ee01199 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y15-2019-dual-sim-td-lte-in-ph-64gb-1901.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y15-2019-dual-sim-td-lte-in-ph-64gb-1901", + "name": "Vivo Y15 2019 Dual SIM TD-LTE IN PH 64GB 1901", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2019-05-28", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Philippines", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y15-2019-dual-sim-td-lte-vn-64gb-1901.json b/data/smartphone/vivo/2019/vivo-y15-2019-dual-sim-td-lte-vn-64gb-1901.json new file mode 100644 index 00000000000..1fcae2176be --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y15-2019-dual-sim-td-lte-vn-64gb-1901.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y15-2019-dual-sim-td-lte-vn-64gb-1901", + "name": "Vivo Y15 2019 Dual SIM TD-LTE VN 64GB 1901", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2019-06-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y15-2019-global-dual-sim-td-lte-64gb-1901.json b/data/smartphone/vivo/2019/vivo-y15-2019-global-dual-sim-td-lte-64gb-1901.json new file mode 100644 index 00000000000..c945f04e580 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y15-2019-global-dual-sim-td-lte-64gb-1901.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y15-2019-global-dual-sim-td-lte-64gb-1901", + "name": "Vivo Y15 2019 Global Dual SIM TD-LTE 64GB 1901", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2019-11-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , Egypt , Jordan , Kenya , Saudi Arabia , UAE , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y15-2020-dual-sim-td-lte-hk-128gb-1901.json b/data/smartphone/vivo/2019/vivo-y15-2020-dual-sim-td-lte-hk-128gb-1901.json new file mode 100644 index 00000000000..68d1ccfeeff --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y15-2020-dual-sim-td-lte-hk-128gb-1901.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y15-2020-dual-sim-td-lte-hk-128gb-1901", + "name": "Vivo Y15 2020 Dual SIM TD-LTE HK 128GB 1901", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2019-12-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y15-2020-dual-sim-td-lte-th-my-vn-64gb-1901.json b/data/smartphone/vivo/2019/vivo-y15-2020-dual-sim-td-lte-th-my-vn-64gb-1901.json new file mode 100644 index 00000000000..a9c7473fedc --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y15-2020-dual-sim-td-lte-th-my-vn-64gb-1901.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y15-2020-dual-sim-td-lte-th-my-vn-64gb-1901", + "name": "Vivo Y15 2020 Dual SIM TD-LTE TH MY VN 64GB 1901", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2019-12-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Malaysia , Thailand , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y17-2019-dual-sim-td-lte-au-hk-ph-128gb-1902.json b/data/smartphone/vivo/2019/vivo-y17-2019-dual-sim-td-lte-au-hk-ph-128gb-1902.json new file mode 100644 index 00000000000..f800f0d8b53 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y17-2019-dual-sim-td-lte-au-hk-ph-128gb-1902.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y17-2019-dual-sim-td-lte-au-hk-ph-128gb-1902", + "name": "Vivo Y17 2019 Dual SIM TD-LTE AU HK PH 128GB 1902", + "brand": "vivo", + "soc": "helio-p35", + "release_date": "2019-05-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , Bangladesh , HK , Philippines", + "market_regions": "Asia , Australia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y17-2019-dual-sim-td-lte-in-id-np-pk-128gb-1902.json b/data/smartphone/vivo/2019/vivo-y17-2019-dual-sim-td-lte-in-id-np-pk-128gb-1902.json new file mode 100644 index 00000000000..bdde2a4ee28 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y17-2019-dual-sim-td-lte-in-id-np-pk-128gb-1902.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y17-2019-dual-sim-td-lte-in-id-np-pk-128gb-1902", + "name": "Vivo Y17 2019 Dual SIM TD-LTE IN ID NP PK 128GB 1902", + "brand": "vivo", + "soc": "helio-p35", + "release_date": "2019-05-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Indonesia , Myanmar , Nepal , Pakistan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y17-2019-dual-sim-td-lte-ru-kz-64gb-1902.json b/data/smartphone/vivo/2019/vivo-y17-2019-dual-sim-td-lte-ru-kz-64gb-1902.json new file mode 100644 index 00000000000..314f0d5ec4a --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y17-2019-dual-sim-td-lte-ru-kz-64gb-1902.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y17-2019-dual-sim-td-lte-ru-kz-64gb-1902", + "name": "Vivo Y17 2019 Dual SIM TD-LTE RU KZ 64GB 1902", + "brand": "vivo", + "soc": "helio-p35", + "release_date": "2019-05-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Armenia , Kazakhstan , Russia", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/vivo/2019/vivo-y17-2019-dual-sim-td-lte-sg-vn-my-th-128gb-1902.json b/data/smartphone/vivo/2019/vivo-y17-2019-dual-sim-td-lte-sg-vn-my-th-128gb-1902.json new file mode 100644 index 00000000000..0356c6c2443 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y17-2019-dual-sim-td-lte-sg-vn-my-th-128gb-1902.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y17-2019-dual-sim-td-lte-sg-vn-my-th-128gb-1902", + "name": "Vivo Y17 2019 Dual SIM TD-LTE SG VN MY TH 128GB 1902", + "brand": "vivo", + "soc": "helio-p35", + "release_date": "2019-05-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Malaysia , Singapore , Thailand , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y17-2019-dual-sim-td-lte-sg-vn-my-th-64gb-1902.json b/data/smartphone/vivo/2019/vivo-y17-2019-dual-sim-td-lte-sg-vn-my-th-64gb-1902.json new file mode 100644 index 00000000000..e59c8a14aaa --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y17-2019-dual-sim-td-lte-sg-vn-my-th-64gb-1902.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y17-2019-dual-sim-td-lte-sg-vn-my-th-64gb-1902", + "name": "Vivo Y17 2019 Dual SIM TD-LTE SG VN MY TH 64GB 1902", + "brand": "vivo", + "soc": "helio-p35", + "release_date": "2019-05-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Malaysia , Singapore , Thailand , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y19-2019-dual-sim-td-lte-id-128gb-1915.json b/data/smartphone/vivo/2019/vivo-y19-2019-dual-sim-td-lte-id-128gb-1915.json new file mode 100644 index 00000000000..296f4b64a37 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y19-2019-dual-sim-td-lte-id-128gb-1915.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y19-2019-dual-sim-td-lte-id-128gb-1915", + "name": "Vivo Y19 2019 Dual SIM TD-LTE ID 128GB 1915", + "brand": "vivo", + "soc": "helio-p65", + "release_date": "2019-11-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y19-2019-dual-sim-td-lte-in-pk-128gb-1915.json b/data/smartphone/vivo/2019/vivo-y19-2019-dual-sim-td-lte-in-pk-128gb-1915.json new file mode 100644 index 00000000000..730226881e4 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y19-2019-dual-sim-td-lte-in-pk-128gb-1915.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y19-2019-dual-sim-td-lte-in-pk-128gb-1915", + "name": "Vivo Y19 2019 Dual SIM TD-LTE IN PK 128GB 1915", + "brand": "vivo", + "soc": "helio-p65", + "release_date": "2019-11-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Pakistan , Sri Lanka", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y19-2019-dual-sim-td-lte-km-128gb-1915.json b/data/smartphone/vivo/2019/vivo-y19-2019-dual-sim-td-lte-km-128gb-1915.json new file mode 100644 index 00000000000..46494312fd5 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y19-2019-dual-sim-td-lte-km-128gb-1915.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y19-2019-dual-sim-td-lte-km-128gb-1915", + "name": "Vivo Y19 2019 Dual SIM TD-LTE KM 128GB 1915", + "brand": "vivo", + "soc": "helio-p65", + "release_date": "2019-11-06", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Cambodia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y19-2019-dual-sim-td-lte-my-np-bd-128gb-1915.json b/data/smartphone/vivo/2019/vivo-y19-2019-dual-sim-td-lte-my-np-bd-128gb-1915.json new file mode 100644 index 00000000000..d36443aef55 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y19-2019-dual-sim-td-lte-my-np-bd-128gb-1915.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y19-2019-dual-sim-td-lte-my-np-bd-128gb-1915", + "name": "Vivo Y19 2019 Dual SIM TD-LTE MY NP BD 128GB 1915", + "brand": "vivo", + "soc": "helio-p65", + "release_date": "2019-11-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , Malaysia , Nepal", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y19-2019-dual-sim-td-lte-th-ph-128gb-1915.json b/data/smartphone/vivo/2019/vivo-y19-2019-dual-sim-td-lte-th-ph-128gb-1915.json new file mode 100644 index 00000000000..d658e51b5e2 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y19-2019-dual-sim-td-lte-th-ph-128gb-1915.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y19-2019-dual-sim-td-lte-th-ph-128gb-1915", + "name": "Vivo Y19 2019 Dual SIM TD-LTE TH PH 128GB 1915", + "brand": "vivo", + "soc": "helio-p65", + "release_date": "2019-11-06", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Philippines , Thailand", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y19-2019-dual-sim-td-lte-tw-sg-128gb-1915.json b/data/smartphone/vivo/2019/vivo-y19-2019-dual-sim-td-lte-tw-sg-128gb-1915.json new file mode 100644 index 00000000000..69c54907439 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y19-2019-dual-sim-td-lte-tw-sg-128gb-1915.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y19-2019-dual-sim-td-lte-tw-sg-128gb-1915", + "name": "Vivo Y19 2019 Dual SIM TD-LTE TW SG 128GB 1915", + "brand": "vivo", + "soc": "helio-p65", + "release_date": "2019-11-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Singapore , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y19-2019-dual-sim-td-lte-vn-128gb-1915.json b/data/smartphone/vivo/2019/vivo-y19-2019-dual-sim-td-lte-vn-128gb-1915.json new file mode 100644 index 00000000000..ab07ab64377 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y19-2019-dual-sim-td-lte-vn-128gb-1915.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y19-2019-dual-sim-td-lte-vn-128gb-1915", + "name": "Vivo Y19 2019 Dual SIM TD-LTE VN 128GB 1915", + "brand": "vivo", + "soc": "helio-p65", + "release_date": "2019-11-06", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y19-2019-global-dual-sim-td-lte-128gb-1915.json b/data/smartphone/vivo/2019/vivo-y19-2019-global-dual-sim-td-lte-128gb-1915.json new file mode 100644 index 00000000000..90a849b328d --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y19-2019-global-dual-sim-td-lte-128gb-1915.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y19-2019-global-dual-sim-td-lte-128gb-1915", + "name": "Vivo Y19 2019 Global Dual SIM TD-LTE 128GB 1915", + "brand": "vivo", + "soc": "helio-p65", + "release_date": "2019-11-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Armenia , Egypt , Kazakhstan , Morocco , Russia , Tunisie , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/vivo/2019/vivo-y3-2019-dual-sim-td-lte-cn-128gb-v1901a.json b/data/smartphone/vivo/2019/vivo-y3-2019-dual-sim-td-lte-cn-128gb-v1901a.json new file mode 100644 index 00000000000..a56f090402f --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y3-2019-dual-sim-td-lte-cn-128gb-v1901a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y3-2019-dual-sim-td-lte-cn-128gb-v1901a", + "name": "Vivo Y3 2019 Dual SIM TD-LTE CN 128GB V1901A", + "brand": "vivo", + "soc": "helio-p35", + "release_date": "2019-05-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y3-2019-dual-sim-td-lte-cn-128gb-v1901t.json b/data/smartphone/vivo/2019/vivo-y3-2019-dual-sim-td-lte-cn-128gb-v1901t.json new file mode 100644 index 00000000000..200a872cab6 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y3-2019-dual-sim-td-lte-cn-128gb-v1901t.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y3-2019-dual-sim-td-lte-cn-128gb-v1901t", + "name": "Vivo Y3 2019 Dual SIM TD-LTE CN 128GB V1901T", + "brand": "vivo", + "soc": "helio-p35", + "release_date": "2019-05-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y3n-2019-standard-edition-dual-sim-td-lte-cn-64gb-v1930a.json b/data/smartphone/vivo/2019/vivo-y3n-2019-standard-edition-dual-sim-td-lte-cn-64gb-v1930a.json new file mode 100644 index 00000000000..3153016aec2 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y3n-2019-standard-edition-dual-sim-td-lte-cn-64gb-v1930a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y3n-2019-standard-edition-dual-sim-td-lte-cn-64gb-v1930a", + "name": "Vivo Y3N 2019 Standard Edition Dual SIM TD-LTE CN 64GB V1930A", + "brand": "vivo", + "soc": "snapdragon-439", + "release_date": "2019-10-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 191.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.35, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y3n-2019-standard-edition-dual-sim-td-lte-cn-64gb-v1930t.json b/data/smartphone/vivo/2019/vivo-y3n-2019-standard-edition-dual-sim-td-lte-cn-64gb-v1930t.json new file mode 100644 index 00000000000..c5bab90a739 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y3n-2019-standard-edition-dual-sim-td-lte-cn-64gb-v1930t.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y3n-2019-standard-edition-dual-sim-td-lte-cn-64gb-v1930t", + "name": "Vivo Y3N 2019 Standard Edition Dual SIM TD-LTE CN 64GB V1930T", + "brand": "vivo", + "soc": "snapdragon-439", + "release_date": "2019-10-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 191.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.35, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y5s-2019-premium-edition-dual-sim-td-lte-cn-128gb-v1934a.json b/data/smartphone/vivo/2019/vivo-y5s-2019-premium-edition-dual-sim-td-lte-cn-128gb-v1934a.json new file mode 100644 index 00000000000..d0ec302ba7c --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y5s-2019-premium-edition-dual-sim-td-lte-cn-128gb-v1934a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y5s-2019-premium-edition-dual-sim-td-lte-cn-128gb-v1934a", + "name": "Vivo Y5s 2019 Premium Edition Dual SIM TD-LTE CN 128GB V1934A", + "brand": "vivo", + "soc": "helio-p65", + "release_date": "2019-11-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y5s-2019-premium-edition-dual-sim-td-lte-cn-128gb-v1934t.json b/data/smartphone/vivo/2019/vivo-y5s-2019-premium-edition-dual-sim-td-lte-cn-128gb-v1934t.json new file mode 100644 index 00000000000..89c72d0e733 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y5s-2019-premium-edition-dual-sim-td-lte-cn-128gb-v1934t.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y5s-2019-premium-edition-dual-sim-td-lte-cn-128gb-v1934t", + "name": "Vivo Y5s 2019 Premium Edition Dual SIM TD-LTE CN 128GB V1934T", + "brand": "vivo", + "soc": "helio-p65", + "release_date": "2019-11-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y5s-2019-standard-edition-dual-sim-td-lte-cn-128gb-v1934a.json b/data/smartphone/vivo/2019/vivo-y5s-2019-standard-edition-dual-sim-td-lte-cn-128gb-v1934a.json new file mode 100644 index 00000000000..87a64754a0f --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y5s-2019-standard-edition-dual-sim-td-lte-cn-128gb-v1934a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y5s-2019-standard-edition-dual-sim-td-lte-cn-128gb-v1934a", + "name": "Vivo Y5s 2019 Standard Edition Dual SIM TD-LTE CN 128GB V1934A", + "brand": "vivo", + "soc": "helio-p65", + "release_date": "2019-11-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y5s-2019-standard-edition-dual-sim-td-lte-cn-128gb-v1934t.json b/data/smartphone/vivo/2019/vivo-y5s-2019-standard-edition-dual-sim-td-lte-cn-128gb-v1934t.json new file mode 100644 index 00000000000..190d5f43ce8 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y5s-2019-standard-edition-dual-sim-td-lte-cn-128gb-v1934t.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y5s-2019-standard-edition-dual-sim-td-lte-cn-128gb-v1934t", + "name": "Vivo Y5s 2019 Standard Edition Dual SIM TD-LTE CN 128GB V1934T", + "brand": "vivo", + "soc": "helio-p65", + "release_date": "2019-11-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y7s-2019-dual-sim-td-lte-cn-128gb-v1913a.json b/data/smartphone/vivo/2019/vivo-y7s-2019-dual-sim-td-lte-cn-128gb-v1913a.json new file mode 100644 index 00000000000..cd265c49bc4 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y7s-2019-dual-sim-td-lte-cn-128gb-v1913a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y7s-2019-dual-sim-td-lte-cn-128gb-v1913a", + "name": "Vivo Y7s 2019 Dual SIM TD-LTE CN 128GB V1913A", + "brand": "vivo", + "soc": "helio-p65", + "release_date": "2019-07-18", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y7s-2019-dual-sim-td-lte-cn-128gb-v1913t.json b/data/smartphone/vivo/2019/vivo-y7s-2019-dual-sim-td-lte-cn-128gb-v1913t.json new file mode 100644 index 00000000000..7acda005339 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y7s-2019-dual-sim-td-lte-cn-128gb-v1913t.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y7s-2019-dual-sim-td-lte-cn-128gb-v1913t", + "name": "Vivo Y7s 2019 Dual SIM TD-LTE CN 128GB V1913T", + "brand": "vivo", + "soc": "helio-p65", + "release_date": "2019-07-18", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y90-dual-sim-td-lte-bd-eg-ke-32gb-1908.json b/data/smartphone/vivo/2019/vivo-y90-dual-sim-td-lte-bd-eg-ke-32gb-1908.json new file mode 100644 index 00000000000..0b287abda90 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y90-dual-sim-td-lte-bd-eg-ke-32gb-1908.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y90-dual-sim-td-lte-bd-eg-ke-32gb-1908", + "name": "Vivo Y90 Dual SIM TD-LTE BD EG KE 32GB 1908", + "brand": "vivo", + "soc": "helio-a22", + "release_date": "2019-08-27", + "ram_gb": 2.0, + "battery_mah": 4030, + "weight_g": 163.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , Egypt , Kenya , Nigeria", + "market_regions": "Africa , Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y90-dual-sim-td-lte-in-16gb-1908.json b/data/smartphone/vivo/2019/vivo-y90-dual-sim-td-lte-in-16gb-1908.json new file mode 100644 index 00000000000..4cbf8e58c08 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y90-dual-sim-td-lte-in-16gb-1908.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y90-dual-sim-td-lte-in-16gb-1908", + "name": "Vivo Y90 Dual SIM TD-LTE IN 16GB 1908", + "brand": "vivo", + "soc": "helio-a22", + "release_date": "2019-07-27", + "ram_gb": 2.0, + "battery_mah": 4030, + "weight_g": 163.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y90-dual-sim-td-lte-pk-np-mn-32gb-1908.json b/data/smartphone/vivo/2019/vivo-y90-dual-sim-td-lte-pk-np-mn-32gb-1908.json new file mode 100644 index 00000000000..a1a46d2c45d --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y90-dual-sim-td-lte-pk-np-mn-32gb-1908.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y90-dual-sim-td-lte-pk-np-mn-32gb-1908", + "name": "Vivo Y90 Dual SIM TD-LTE PK NP MN 32GB 1908", + "brand": "vivo", + "soc": "helio-a22", + "release_date": "2019-08-01", + "ram_gb": 2.0, + "battery_mah": 4030, + "weight_g": 163.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Myanmar , Nepal , Pakistan , Sri Lanka", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y91-2019-dual-sim-td-lte-id-th-y91i-32gb.json b/data/smartphone/vivo/2019/vivo-y91-2019-dual-sim-td-lte-id-th-y91i-32gb.json new file mode 100644 index 00000000000..07b72d108a2 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y91-2019-dual-sim-td-lte-id-th-y91i-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y91-2019-dual-sim-td-lte-id-th-y91i-32gb", + "name": "Vivo Y91 2019 Dual SIM TD-LTE ID TH / Y91i 32GB", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2019-01-01", + "ram_gb": 2.0, + "battery_mah": 4030, + "weight_g": 163.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Indonesia , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y91c-dual-sim-td-lte-v1-pk-th-bd-1820-y91c-2020.json b/data/smartphone/vivo/2019/vivo-y91c-dual-sim-td-lte-v1-pk-th-bd-1820-y91c-2020.json new file mode 100644 index 00000000000..f2aeb88ae4b --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y91c-dual-sim-td-lte-v1-pk-th-bd-1820-y91c-2020.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y91c-dual-sim-td-lte-v1-pk-th-bd-1820-y91c-2020", + "name": "Vivo Y91c Dual SIM TD-LTE V1 PK TH BD 1820 / Y91c 2020", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2019-03-01", + "ram_gb": 2.0, + "battery_mah": 4030, + "weight_g": 163.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , Cambodia , Nigeria , Pakistan , Tanzania , Thailand", + "market_regions": "Africa , Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y91c-dual-sim-td-lte-v2-vn-ph-my-1820.json b/data/smartphone/vivo/2019/vivo-y91c-dual-sim-td-lte-v2-vn-ph-my-1820.json new file mode 100644 index 00000000000..27203ff0185 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y91c-dual-sim-td-lte-v2-vn-ph-my-1820.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y91c-dual-sim-td-lte-v2-vn-ph-my-1820", + "name": "Vivo Y91c Dual SIM TD-LTE V2 VN PH MY 1820", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2019-03-01", + "ram_gb": 2.0, + "battery_mah": 4030, + "weight_g": 163.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Malaysia , Philippines , Vietnam", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y91c-dual-sim-td-lte-v3-eg-1820.json b/data/smartphone/vivo/2019/vivo-y91c-dual-sim-td-lte-v3-eg-1820.json new file mode 100644 index 00000000000..76a66365c15 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y91c-dual-sim-td-lte-v3-eg-1820.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y91c-dual-sim-td-lte-v3-eg-1820", + "name": "Vivo Y91c Dual SIM TD-LTE V3 EG 1820", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2019-03-01", + "ram_gb": 2.0, + "battery_mah": 4030, + "weight_g": 163.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Egypt", + "market_regions": "Africa , Middle East" +} diff --git a/data/smartphone/vivo/2019/vivo-y91c-global-dual-sim-td-lte-v4-1820.json b/data/smartphone/vivo/2019/vivo-y91c-global-dual-sim-td-lte-v4-1820.json new file mode 100644 index 00000000000..80ad7212613 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y91c-global-dual-sim-td-lte-v4-1820.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y91c-global-dual-sim-td-lte-v4-1820", + "name": "Vivo Y91c Global Dual SIM TD-LTE V4 1820", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2019-03-01", + "ram_gb": 2.0, + "battery_mah": 4030, + "weight_g": 163.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Lebanon , Morocco , Russia , Saudi Arabia , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East" +} diff --git a/data/smartphone/vivo/2019/vivo-y91i-dual-sim-td-lte-my-32gb.json b/data/smartphone/vivo/2019/vivo-y91i-dual-sim-td-lte-my-32gb.json new file mode 100644 index 00000000000..efb2ce37cd8 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y91i-dual-sim-td-lte-my-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y91i-dual-sim-td-lte-my-32gb", + "name": "Vivo Y91i Dual SIM TD-LTE MY 32GB", + "brand": "vivo", + "soc": "helio-p22", + "release_date": "2019-01-01", + "ram_gb": 2.0, + "battery_mah": 4030, + "weight_g": 163.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Malaysia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y93-lite-dual-sim-td-lte-ru-1817.json b/data/smartphone/vivo/2019/vivo-y93-lite-dual-sim-td-lte-ru-1817.json new file mode 100644 index 00000000000..e21d3ac2d41 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y93-lite-dual-sim-td-lte-ru-1817.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y93-lite-dual-sim-td-lte-ru-1817", + "name": "Vivo Y93 Lite Dual SIM TD-LTE RU 1817", + "brand": "vivo", + "soc": "snapdragon-439", + "release_date": "2019-04-01", + "ram_gb": 3.0, + "battery_mah": 4030, + "weight_g": 163.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Russia", + "market_regions": "Asia , Eastern Europe" +} diff --git a/data/smartphone/vivo/2019/vivo-y9s-2019-dual-sim-td-lte-cn-128gb-v1945a.json b/data/smartphone/vivo/2019/vivo-y9s-2019-dual-sim-td-lte-cn-128gb-v1945a.json new file mode 100644 index 00000000000..a58c8df4c01 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y9s-2019-dual-sim-td-lte-cn-128gb-v1945a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y9s-2019-dual-sim-td-lte-cn-128gb-v1945a", + "name": "Vivo Y9s 2019 Dual SIM TD-LTE CN 128GB V1945A", + "brand": "vivo", + "soc": "snapdragon-665", + "release_date": "2019-12-04", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 186.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-y9s-2019-dual-sim-td-lte-cn-128gb-v1945t.json b/data/smartphone/vivo/2019/vivo-y9s-2019-dual-sim-td-lte-cn-128gb-v1945t.json new file mode 100644 index 00000000000..7871141617c --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-y9s-2019-dual-sim-td-lte-cn-128gb-v1945t.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y9s-2019-dual-sim-td-lte-cn-128gb-v1945t", + "name": "Vivo Y9s 2019 Dual SIM TD-LTE CN 128GB V1945T", + "brand": "vivo", + "soc": "snapdragon-665", + "release_date": "2019-12-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 186.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-z1-pro-premium-edition-dual-sim-td-lte-in-128gb-1951.json b/data/smartphone/vivo/2019/vivo-z1-pro-premium-edition-dual-sim-td-lte-in-128gb-1951.json new file mode 100644 index 00000000000..53cd656774d --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-z1-pro-premium-edition-dual-sim-td-lte-in-128gb-1951.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-z1-pro-premium-edition-dual-sim-td-lte-in-128gb-1951", + "name": "Vivo Z1 Pro Premium Edition Dual SIM TD-LTE IN 128GB 1951", + "brand": "vivo", + "soc": "snapdragon-712", + "release_date": "2019-07-11", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 201.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-z1-pro-premium-edition-dual-sim-td-lte-in-64gb-1951.json b/data/smartphone/vivo/2019/vivo-z1-pro-premium-edition-dual-sim-td-lte-in-64gb-1951.json new file mode 100644 index 00000000000..2025df7b49b --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-z1-pro-premium-edition-dual-sim-td-lte-in-64gb-1951.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-z1-pro-premium-edition-dual-sim-td-lte-in-64gb-1951", + "name": "Vivo Z1 Pro Premium Edition Dual SIM TD-LTE IN 64GB 1951", + "brand": "vivo", + "soc": "snapdragon-712", + "release_date": "2019-07-11", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 201.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-z1-pro-standard-edition-dual-sim-td-lte-in-64gb-1951.json b/data/smartphone/vivo/2019/vivo-z1-pro-standard-edition-dual-sim-td-lte-in-64gb-1951.json new file mode 100644 index 00000000000..4eb009b5bf8 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-z1-pro-standard-edition-dual-sim-td-lte-in-64gb-1951.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-z1-pro-standard-edition-dual-sim-td-lte-in-64gb-1951", + "name": "Vivo Z1 Pro Standard Edition Dual SIM TD-LTE IN 64GB 1951", + "brand": "vivo", + "soc": "snapdragon-712", + "release_date": "2019-07-11", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 201.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-z1x-dual-sim-td-lte-in-128gb-1917.json b/data/smartphone/vivo/2019/vivo-z1x-dual-sim-td-lte-in-128gb-1917.json new file mode 100644 index 00000000000..7a94f41e7c4 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-z1x-dual-sim-td-lte-in-128gb-1917.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-z1x-dual-sim-td-lte-in-128gb-1917", + "name": "Vivo Z1x Dual SIM TD-LTE IN 128GB 1917", + "brand": "vivo", + "soc": "snapdragon-712", + "release_date": "2019-09-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 189.6, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-z1x-dual-sim-td-lte-in-64gb-1917.json b/data/smartphone/vivo/2019/vivo-z1x-dual-sim-td-lte-in-64gb-1917.json new file mode 100644 index 00000000000..de5c58e4edd --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-z1x-dual-sim-td-lte-in-64gb-1917.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-z1x-dual-sim-td-lte-in-64gb-1917", + "name": "Vivo Z1x Dual SIM TD-LTE IN 64GB 1917", + "brand": "vivo", + "soc": "snapdragon-712", + "release_date": "2019-09-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 189.6, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-z5-premium-edition-dual-sim-td-lte-cn-128gb-v1921a.json b/data/smartphone/vivo/2019/vivo-z5-premium-edition-dual-sim-td-lte-cn-128gb-v1921a.json new file mode 100644 index 00000000000..4c0fcc9348d --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-z5-premium-edition-dual-sim-td-lte-cn-128gb-v1921a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-z5-premium-edition-dual-sim-td-lte-cn-128gb-v1921a", + "name": "Vivo Z5 Premium Edition Dual SIM TD-LTE CN 128GB V1921A", + "brand": "vivo", + "soc": "snapdragon-712", + "release_date": "2019-08-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 187.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-z5-standard-edition-dual-sim-td-lte-cn-128gb-v1921a.json b/data/smartphone/vivo/2019/vivo-z5-standard-edition-dual-sim-td-lte-cn-128gb-v1921a.json new file mode 100644 index 00000000000..814e3e4932b --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-z5-standard-edition-dual-sim-td-lte-cn-128gb-v1921a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-z5-standard-edition-dual-sim-td-lte-cn-128gb-v1921a", + "name": "Vivo Z5 Standard Edition Dual SIM TD-LTE CN 128GB V1921A", + "brand": "vivo", + "soc": "snapdragon-712", + "release_date": "2019-08-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 187.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-z5-standard-edition-dual-sim-td-lte-cn-128gb-v1921t.json b/data/smartphone/vivo/2019/vivo-z5-standard-edition-dual-sim-td-lte-cn-128gb-v1921t.json new file mode 100644 index 00000000000..6fa91964fe7 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-z5-standard-edition-dual-sim-td-lte-cn-128gb-v1921t.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-z5-standard-edition-dual-sim-td-lte-cn-128gb-v1921t", + "name": "Vivo Z5 Standard Edition Dual SIM TD-LTE CN 128GB V1921T", + "brand": "vivo", + "soc": "snapdragon-712", + "release_date": "2019-08-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 187.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-z5-standard-edition-dual-sim-td-lte-cn-256gb-v1921a.json b/data/smartphone/vivo/2019/vivo-z5-standard-edition-dual-sim-td-lte-cn-256gb-v1921a.json new file mode 100644 index 00000000000..fbec1773c96 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-z5-standard-edition-dual-sim-td-lte-cn-256gb-v1921a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-z5-standard-edition-dual-sim-td-lte-cn-256gb-v1921a", + "name": "Vivo Z5 Standard Edition Dual SIM TD-LTE CN 256GB V1921A", + "brand": "vivo", + "soc": "snapdragon-712", + "release_date": "2019-08-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 187.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-z5-standard-edition-dual-sim-td-lte-cn-256gb-v1921t.json b/data/smartphone/vivo/2019/vivo-z5-standard-edition-dual-sim-td-lte-cn-256gb-v1921t.json new file mode 100644 index 00000000000..03da15ac630 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-z5-standard-edition-dual-sim-td-lte-cn-256gb-v1921t.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-z5-standard-edition-dual-sim-td-lte-cn-256gb-v1921t", + "name": "Vivo Z5 Standard Edition Dual SIM TD-LTE CN 256GB V1921T", + "brand": "vivo", + "soc": "snapdragon-712", + "release_date": "2019-08-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 187.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-z5-standard-edition-dual-sim-td-lte-cn-64gb-v1921a.json b/data/smartphone/vivo/2019/vivo-z5-standard-edition-dual-sim-td-lte-cn-64gb-v1921a.json new file mode 100644 index 00000000000..939fcaddad9 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-z5-standard-edition-dual-sim-td-lte-cn-64gb-v1921a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-z5-standard-edition-dual-sim-td-lte-cn-64gb-v1921a", + "name": "Vivo Z5 Standard Edition Dual SIM TD-LTE CN 64GB V1921A", + "brand": "vivo", + "soc": "snapdragon-712", + "release_date": "2019-08-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 187.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-z5x-premium-edition-dual-sim-td-lte-cn-128gb-v1911a.json b/data/smartphone/vivo/2019/vivo-z5x-premium-edition-dual-sim-td-lte-cn-128gb-v1911a.json new file mode 100644 index 00000000000..c1863b1c010 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-z5x-premium-edition-dual-sim-td-lte-cn-128gb-v1911a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-z5x-premium-edition-dual-sim-td-lte-cn-128gb-v1911a", + "name": "Vivo Z5x Premium Edition Dual SIM TD-LTE CN 128GB V1911A", + "brand": "vivo", + "soc": "snapdragon-710", + "release_date": "2019-06-02", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 204.1, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-z5x-premium-edition-dual-sim-td-lte-cn-64gb-v1911a.json b/data/smartphone/vivo/2019/vivo-z5x-premium-edition-dual-sim-td-lte-cn-64gb-v1911a.json new file mode 100644 index 00000000000..33ee7698bad --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-z5x-premium-edition-dual-sim-td-lte-cn-64gb-v1911a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-z5x-premium-edition-dual-sim-td-lte-cn-64gb-v1911a", + "name": "Vivo Z5x Premium Edition Dual SIM TD-LTE CN 64GB V1911A", + "brand": "vivo", + "soc": "snapdragon-710", + "release_date": "2019-06-02", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 204.1, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-z5x-standard-edition-dual-sim-td-lte-cn-64gb-v1911a.json b/data/smartphone/vivo/2019/vivo-z5x-standard-edition-dual-sim-td-lte-cn-64gb-v1911a.json new file mode 100644 index 00000000000..2c84738abbd --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-z5x-standard-edition-dual-sim-td-lte-cn-64gb-v1911a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-z5x-standard-edition-dual-sim-td-lte-cn-64gb-v1911a", + "name": "Vivo Z5x Standard Edition Dual SIM TD-LTE CN 64GB V1911A", + "brand": "vivo", + "soc": "snapdragon-710", + "release_date": "2019-06-02", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 204.1, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2019/vivo-z5x-top-edition-dual-sim-td-lte-cn-128gb-v1919a.json b/data/smartphone/vivo/2019/vivo-z5x-top-edition-dual-sim-td-lte-cn-128gb-v1919a.json new file mode 100644 index 00000000000..1e94fd37b78 --- /dev/null +++ b/data/smartphone/vivo/2019/vivo-z5x-top-edition-dual-sim-td-lte-cn-128gb-v1919a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-z5x-top-edition-dual-sim-td-lte-cn-128gb-v1919a", + "name": "Vivo Z5x Top Edition Dual SIM TD-LTE CN 128GB V1919A", + "brand": "vivo", + "soc": "snapdragon-710", + "release_date": "2019-06-02", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 204.1, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-g1-5g-dual-sim-td-lte-cn-128gb-v1962ba.json b/data/smartphone/vivo/2020/vivo-g1-5g-dual-sim-td-lte-cn-128gb-v1962ba.json new file mode 100644 index 00000000000..fd14ce9d5b0 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-g1-5g-dual-sim-td-lte-cn-128gb-v1962ba.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-g1-5g-dual-sim-td-lte-cn-128gb-v1962ba", + "name": "Vivo G1 5G Dual SIM TD-LTE CN 128GB V1962BA", + "brand": "vivo", + "soc": "exynos-980", + "release_date": "2020-05-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-iqoo-3-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1955a.json b/data/smartphone/vivo/2020/vivo-iqoo-3-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1955a.json new file mode 100644 index 00000000000..8492d18901e --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-iqoo-3-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1955a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-iqoo-3-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1955a", + "name": "Vivo iQOO 3 5G Premium Edition Dual SIM TD-LTE CN 128GB V1955A", + "brand": "vivo", + "soc": "snapdragon-865", + "release_date": "2020-02-01", + "ram_gb": 8.0, + "battery_mah": 4440, + "weight_g": 214.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-iqoo-3-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1955a.json b/data/smartphone/vivo/2020/vivo-iqoo-3-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1955a.json new file mode 100644 index 00000000000..9126e670da2 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-iqoo-3-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1955a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-iqoo-3-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1955a", + "name": "Vivo iQOO 3 5G Standard Edition Dual SIM TD-LTE CN 128GB V1955A", + "brand": "vivo", + "soc": "snapdragon-865", + "release_date": "2020-02-01", + "ram_gb": 6.0, + "battery_mah": 4440, + "weight_g": 214.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-iqoo-3-5g-top-edition-dual-sim-td-lte-cn-128gb-v1955a.json b/data/smartphone/vivo/2020/vivo-iqoo-3-5g-top-edition-dual-sim-td-lte-cn-128gb-v1955a.json new file mode 100644 index 00000000000..4378e3c1baf --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-iqoo-3-5g-top-edition-dual-sim-td-lte-cn-128gb-v1955a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-iqoo-3-5g-top-edition-dual-sim-td-lte-cn-128gb-v1955a", + "name": "Vivo iQOO 3 5G Top Edition Dual SIM TD-LTE CN 128GB V1955A", + "brand": "vivo", + "soc": "snapdragon-865", + "release_date": "2020-02-01", + "ram_gb": 12.0, + "battery_mah": 4440, + "weight_g": 214.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-iqoo-3-5g-top-edition-dual-sim-td-lte-cn-256gb-v1955a.json b/data/smartphone/vivo/2020/vivo-iqoo-3-5g-top-edition-dual-sim-td-lte-cn-256gb-v1955a.json new file mode 100644 index 00000000000..0fede731ef5 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-iqoo-3-5g-top-edition-dual-sim-td-lte-cn-256gb-v1955a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-iqoo-3-5g-top-edition-dual-sim-td-lte-cn-256gb-v1955a", + "name": "Vivo iQOO 3 5G Top Edition Dual SIM TD-LTE CN 256GB V1955A", + "brand": "vivo", + "soc": "snapdragon-865", + "release_date": "2020-02-01", + "ram_gb": 12.0, + "battery_mah": 4440, + "weight_g": 214.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-iqoo-3-5g-top-edition-global-dual-sim-td-lte-256gb-i1928.json b/data/smartphone/vivo/2020/vivo-iqoo-3-5g-top-edition-global-dual-sim-td-lte-256gb-i1928.json new file mode 100644 index 00000000000..caea461b614 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-iqoo-3-5g-top-edition-global-dual-sim-td-lte-256gb-i1928.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-iqoo-3-5g-top-edition-global-dual-sim-td-lte-256gb-i1928", + "name": "Vivo iQOO 3 5G Top Edition Global Dual SIM TD-LTE 256GB I1928", + "brand": "vivo", + "soc": "snapdragon-865", + "release_date": "2020-03-04", + "ram_gb": 12.0, + "battery_mah": 4440, + "weight_g": 214.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-iqoo-3-5g-transformers-limited-edition-dual-sim-td-lte-cn-256gb-v1955a.json b/data/smartphone/vivo/2020/vivo-iqoo-3-5g-transformers-limited-edition-dual-sim-td-lte-cn-256gb-v1955a.json new file mode 100644 index 00000000000..99164caedda --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-iqoo-3-5g-transformers-limited-edition-dual-sim-td-lte-cn-256gb-v1955a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-iqoo-3-5g-transformers-limited-edition-dual-sim-td-lte-cn-256gb-v1955a", + "name": "Vivo iQOO 3 5G Transformers Limited Edition Dual SIM TD-LTE CN 256GB V1955A", + "brand": "vivo", + "soc": "snapdragon-865", + "release_date": "2020-06-01", + "ram_gb": 12.0, + "battery_mah": 4440, + "weight_g": 214.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-iqoo-3-premium-edition-global-dual-sim-td-lte-128gb-i1927.json b/data/smartphone/vivo/2020/vivo-iqoo-3-premium-edition-global-dual-sim-td-lte-128gb-i1927.json new file mode 100644 index 00000000000..75665d5b7ab --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-iqoo-3-premium-edition-global-dual-sim-td-lte-128gb-i1927.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-iqoo-3-premium-edition-global-dual-sim-td-lte-128gb-i1927", + "name": "Vivo iQOO 3 Premium Edition Global Dual SIM TD-LTE 128GB I1927", + "brand": "vivo", + "soc": "snapdragon-865", + "release_date": "2020-03-04", + "ram_gb": 8.0, + "battery_mah": 4440, + "weight_g": 214.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-iqoo-3-premium-edition-global-dual-sim-td-lte-256gb-i1927.json b/data/smartphone/vivo/2020/vivo-iqoo-3-premium-edition-global-dual-sim-td-lte-256gb-i1927.json new file mode 100644 index 00000000000..f71cc85f063 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-iqoo-3-premium-edition-global-dual-sim-td-lte-256gb-i1927.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-iqoo-3-premium-edition-global-dual-sim-td-lte-256gb-i1927", + "name": "Vivo iQOO 3 Premium Edition Global Dual SIM TD-LTE 256GB I1927", + "brand": "vivo", + "soc": "snapdragon-865", + "release_date": "2020-03-04", + "ram_gb": 8.0, + "battery_mah": 4440, + "weight_g": 214.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-iqoo-5-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2024a.json b/data/smartphone/vivo/2020/vivo-iqoo-5-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2024a.json new file mode 100644 index 00000000000..bc518f6c2f3 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-iqoo-5-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2024a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-iqoo-5-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2024a", + "name": "Vivo iQOO 5 5G Premium Edition Dual SIM TD-LTE CN 128GB V2024A", + "brand": "vivo", + "soc": "snapdragon-865", + "release_date": "2020-08-24", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 4298, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-iqoo-5-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2024a.json b/data/smartphone/vivo/2020/vivo-iqoo-5-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2024a.json new file mode 100644 index 00000000000..18a6734d12e --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-iqoo-5-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2024a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-iqoo-5-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2024a", + "name": "Vivo iQOO 5 5G Premium Edition Dual SIM TD-LTE CN 256GB V2024A", + "brand": "vivo", + "soc": "snapdragon-865", + "release_date": "2020-08-24", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 4598, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-iqoo-5-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2024a.json b/data/smartphone/vivo/2020/vivo-iqoo-5-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2024a.json new file mode 100644 index 00000000000..b35feb22610 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-iqoo-5-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2024a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-iqoo-5-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2024a", + "name": "Vivo iQOO 5 5G Standard Edition Dual SIM TD-LTE CN 128GB V2024A", + "brand": "vivo", + "soc": "snapdragon-865", + "release_date": "2020-08-24", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 3998, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-iqoo-5-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2025a.json b/data/smartphone/vivo/2020/vivo-iqoo-5-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2025a.json new file mode 100644 index 00000000000..f255a03c941 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-iqoo-5-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2025a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-iqoo-5-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2025a", + "name": "Vivo iQOO 5 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB V2025A", + "brand": "vivo", + "soc": "snapdragon-865", + "release_date": "2020-09-01", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-iqoo-5-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2025a.json b/data/smartphone/vivo/2020/vivo-iqoo-5-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2025a.json new file mode 100644 index 00000000000..db7b4e6854b --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-iqoo-5-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2025a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-iqoo-5-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2025a", + "name": "Vivo iQOO 5 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB V2025A", + "brand": "vivo", + "soc": "snapdragon-865", + "release_date": "2020-09-09", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 196.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 4998, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-iqoo-u1x-premium-edition-dual-sim-td-lte-cn-128gb-v2065a.json b/data/smartphone/vivo/2020/vivo-iqoo-u1x-premium-edition-dual-sim-td-lte-cn-128gb-v2065a.json new file mode 100644 index 00000000000..0f49f063b64 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-iqoo-u1x-premium-edition-dual-sim-td-lte-cn-128gb-v2065a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-iqoo-u1x-premium-edition-dual-sim-td-lte-cn-128gb-v2065a", + "name": "Vivo iQOO U1x Premium Edition Dual SIM TD-LTE CN 128GB V2065A", + "brand": "vivo", + "soc": "snapdragon-662", + "release_date": "2020-11-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 1199, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-iqoo-u1x-premium-edition-dual-sim-td-lte-cn-64gb-v2065a.json b/data/smartphone/vivo/2020/vivo-iqoo-u1x-premium-edition-dual-sim-td-lte-cn-64gb-v2065a.json new file mode 100644 index 00000000000..711a6cc2412 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-iqoo-u1x-premium-edition-dual-sim-td-lte-cn-64gb-v2065a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-iqoo-u1x-premium-edition-dual-sim-td-lte-cn-64gb-v2065a", + "name": "Vivo iQOO U1x Premium Edition Dual SIM TD-LTE CN 64GB V2065A", + "brand": "vivo", + "soc": "snapdragon-662", + "release_date": "2020-11-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-iqoo-u1x-standard-edition-dual-sim-td-lte-cn-64gb-v2065a.json b/data/smartphone/vivo/2020/vivo-iqoo-u1x-standard-edition-dual-sim-td-lte-cn-64gb-v2065a.json new file mode 100644 index 00000000000..2e6f01239fc --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-iqoo-u1x-standard-edition-dual-sim-td-lte-cn-64gb-v2065a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-iqoo-u1x-standard-edition-dual-sim-td-lte-cn-64gb-v2065a", + "name": "Vivo iQOO U1x Standard Edition Dual SIM TD-LTE CN 64GB V2065A", + "brand": "vivo", + "soc": "snapdragon-662", + "release_date": "2020-11-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 899, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-iqoo-u3-5g-premium-edition-dual-sim-td-lte-cn-v2061a.json b/data/smartphone/vivo/2020/vivo-iqoo-u3-5g-premium-edition-dual-sim-td-lte-cn-v2061a.json new file mode 100644 index 00000000000..55ee1f50aaf --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-iqoo-u3-5g-premium-edition-dual-sim-td-lte-cn-v2061a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-iqoo-u3-5g-premium-edition-dual-sim-td-lte-cn-v2061a", + "name": "Vivo iQOO U3 5G Premium Edition Dual SIM TD-LTE CN V2061A", + "brand": "vivo", + "soc": "dimensity-800", + "release_date": "2020-12-18", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 185.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1998, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-iqoo-u3-5g-standard-edition-dual-sim-td-lte-cn-v2061a.json b/data/smartphone/vivo/2020/vivo-iqoo-u3-5g-standard-edition-dual-sim-td-lte-cn-v2061a.json new file mode 100644 index 00000000000..3fe3b28c9e7 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-iqoo-u3-5g-standard-edition-dual-sim-td-lte-cn-v2061a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-iqoo-u3-5g-standard-edition-dual-sim-td-lte-cn-v2061a", + "name": "Vivo iQOO U3 5G Standard Edition Dual SIM TD-LTE CN V2061A", + "brand": "vivo", + "soc": "dimensity-800", + "release_date": "2020-12-18", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 185.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1698, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-iqoo-z1-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1986a.json b/data/smartphone/vivo/2020/vivo-iqoo-z1-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1986a.json new file mode 100644 index 00000000000..5e558bd8fa3 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-iqoo-z1-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1986a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-iqoo-z1-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1986a", + "name": "Vivo iQOO Z1 5G Premium Edition Dual SIM TD-LTE CN 128GB V1986A", + "brand": "vivo", + "soc": "dimensity-1000-plus", + "release_date": "2020-06-02", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 194.78, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2408", + "refresh_hz": 144, + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-iqoo-z1-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1986a.json b/data/smartphone/vivo/2020/vivo-iqoo-z1-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1986a.json new file mode 100644 index 00000000000..1baaa297468 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-iqoo-z1-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1986a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-iqoo-z1-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1986a", + "name": "Vivo iQOO Z1 5G Premium Edition Dual SIM TD-LTE CN 256GB V1986A", + "brand": "vivo", + "soc": "dimensity-1000-plus", + "release_date": "2020-06-02", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 194.78, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2408", + "refresh_hz": 144, + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-iqoo-z1-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1986a.json b/data/smartphone/vivo/2020/vivo-iqoo-z1-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1986a.json new file mode 100644 index 00000000000..5cffed2eee6 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-iqoo-z1-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1986a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-iqoo-z1-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1986a", + "name": "Vivo iQOO Z1 5G Standard Edition Dual SIM TD-LTE CN 128GB V1986A", + "brand": "vivo", + "soc": "dimensity-1000-plus", + "release_date": "2020-06-02", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 194.78, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2408", + "refresh_hz": 144, + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-iqoo-z1x-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2012a.json b/data/smartphone/vivo/2020/vivo-iqoo-z1x-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2012a.json new file mode 100644 index 00000000000..7885110689d --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-iqoo-z1x-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2012a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-iqoo-z1x-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2012a", + "name": "Vivo iQOO Z1x 5G Premium Edition Dual SIM TD-LTE CN 128GB V2012A", + "brand": "vivo", + "soc": "snapdragon-765", + "release_date": "2020-07-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 199.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2408", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-iqoo-z1x-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2012a.json b/data/smartphone/vivo/2020/vivo-iqoo-z1x-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2012a.json new file mode 100644 index 00000000000..a346d7fe91d --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-iqoo-z1x-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2012a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-iqoo-z1x-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2012a", + "name": "Vivo iQOO Z1x 5G Premium Edition Dual SIM TD-LTE CN 256GB V2012A", + "brand": "vivo", + "soc": "snapdragon-765", + "release_date": "2020-07-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 199.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2408", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-iqoo-z1x-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2012a.json b/data/smartphone/vivo/2020/vivo-iqoo-z1x-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2012a.json new file mode 100644 index 00000000000..36d0fa7dd69 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-iqoo-z1x-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2012a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-iqoo-z1x-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2012a", + "name": "Vivo iQOO Z1x 5G Standard Edition Dual SIM TD-LTE CN 128GB V2012A", + "brand": "vivo", + "soc": "snapdragon-765", + "release_date": "2020-07-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 199.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2408", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-nex-3s-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1950a.json b/data/smartphone/vivo/2020/vivo-nex-3s-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1950a.json new file mode 100644 index 00000000000..f0f1e691f80 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-nex-3s-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1950a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-nex-3s-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1950a", + "name": "Vivo Nex 3S 5G Premium Edition Dual SIM TD-LTE CN 256GB V1950A", + "brand": "vivo", + "soc": "snapdragon-865", + "release_date": "2020-03-14", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 219.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.89, + "resolution": "1080x2256", + "type": "AM-OLED display", + "ppi": 363 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-nex-3s-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1950a.json b/data/smartphone/vivo/2020/vivo-nex-3s-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1950a.json new file mode 100644 index 00000000000..c53e64c490d --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-nex-3s-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1950a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-nex-3s-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1950a", + "name": "Vivo Nex 3S 5G Standard Edition Dual SIM TD-LTE CN 256GB V1950A", + "brand": "vivo", + "soc": "snapdragon-865", + "release_date": "2020-03-14", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 219.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.89, + "resolution": "1080x2256", + "type": "AM-OLED display", + "ppi": 363 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-s1-prime-dual-sim-td-lte-apac-128gb-v1937.json b/data/smartphone/vivo/2020/vivo-s1-prime-dual-sim-td-lte-apac-128gb-v1937.json new file mode 100644 index 00000000000..bbdfe578127 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-s1-prime-dual-sim-td-lte-apac-128gb-v1937.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-s1-prime-dual-sim-td-lte-apac-128gb-v1937", + "name": "Vivo S1 Prime Dual SIM TD-LTE APAC 128GB V1937", + "brand": "vivo", + "soc": "snapdragon-665", + "release_date": "2020-08-13", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 190.2, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , Myanmar", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-s6-5g-dual-sim-td-lte-cn-128gb-v1962a.json b/data/smartphone/vivo/2020/vivo-s6-5g-dual-sim-td-lte-cn-128gb-v1962a.json new file mode 100644 index 00000000000..ea37e4dd60f --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-s6-5g-dual-sim-td-lte-cn-128gb-v1962a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-s6-5g-dual-sim-td-lte-cn-128gb-v1962a", + "name": "Vivo S6 5G Dual SIM TD-LTE CN 128GB V1962A", + "brand": "vivo", + "soc": "exynos-980", + "release_date": "2020-04-03", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-s6-5g-dual-sim-td-lte-cn-256gb-v1962a.json b/data/smartphone/vivo/2020/vivo-s6-5g-dual-sim-td-lte-cn-256gb-v1962a.json new file mode 100644 index 00000000000..76ac9db5b65 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-s6-5g-dual-sim-td-lte-cn-256gb-v1962a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-s6-5g-dual-sim-td-lte-cn-256gb-v1962a", + "name": "Vivo S6 5G Dual SIM TD-LTE CN 256GB V1962A", + "brand": "vivo", + "soc": "exynos-980", + "release_date": "2020-04-03", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-s7-5g-dual-sim-td-lte-cn-128gb-v2020a-v2020ca.json b/data/smartphone/vivo/2020/vivo-s7-5g-dual-sim-td-lte-cn-128gb-v2020a-v2020ca.json new file mode 100644 index 00000000000..07ef1230217 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-s7-5g-dual-sim-td-lte-cn-128gb-v2020a-v2020ca.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-s7-5g-dual-sim-td-lte-cn-128gb-v2020a-v2020ca", + "name": "Vivo S7 5G Dual SIM TD-LTE CN 128GB V2020A / V2020CA", + "brand": "vivo", + "soc": "snapdragon-765", + "release_date": "2020-08-08", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2798, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-s7-5g-dual-sim-td-lte-cn-256gb-v2020a.json b/data/smartphone/vivo/2020/vivo-s7-5g-dual-sim-td-lte-cn-256gb-v2020a.json new file mode 100644 index 00000000000..6414a6c6032 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-s7-5g-dual-sim-td-lte-cn-256gb-v2020a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-s7-5g-dual-sim-td-lte-cn-256gb-v2020a", + "name": "Vivo S7 5G Dual SIM TD-LTE CN 256GB V2020A", + "brand": "vivo", + "soc": "snapdragon-765", + "release_date": "2020-08-08", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 3098, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-s7e-5g-2020-dual-sim-td-lte-cn-128gb-v2031ea.json b/data/smartphone/vivo/2020/vivo-s7e-5g-2020-dual-sim-td-lte-cn-128gb-v2031ea.json new file mode 100644 index 00000000000..4ebd74d6113 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-s7e-5g-2020-dual-sim-td-lte-cn-128gb-v2031ea.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-s7e-5g-2020-dual-sim-td-lte-cn-128gb-v2031ea", + "name": "Vivo S7e 5G 2020 Dual SIM TD-LTE CN 128GB V2031EA", + "brand": "vivo", + "soc": "dimensity-720", + "release_date": "2020-11-01", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 171.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-v17-dual-sim-td-lte-pk-id-128gb-1919-v19.json b/data/smartphone/vivo/2020/vivo-v17-dual-sim-td-lte-pk-id-128gb-1919-v19.json new file mode 100644 index 00000000000..053c9dbe974 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-v17-dual-sim-td-lte-pk-id-128gb-1919-v19.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-v17-dual-sim-td-lte-pk-id-128gb-1919-v19", + "name": "Vivo V17 Dual SIM TD-LTE PK ID 128GB 1919 / V19", + "brand": "vivo", + "soc": "snapdragon-675", + "release_date": "2020-03-26", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Indonesia , Pakistan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-v19-dual-sim-td-lte-v1-in-128gb-1933.json b/data/smartphone/vivo/2020/vivo-v19-dual-sim-td-lte-v1-in-128gb-1933.json new file mode 100644 index 00000000000..8d289ae9bdf --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-v19-dual-sim-td-lte-v1-in-128gb-1933.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-v19-dual-sim-td-lte-v1-in-128gb-1933", + "name": "Vivo V19 Dual SIM TD-LTE V1 IN 128GB 1933", + "brand": "vivo", + "soc": "snapdragon-712", + "release_date": "2020-05-09", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 186.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-v19-dual-sim-td-lte-v1-in-256gb-1933.json b/data/smartphone/vivo/2020/vivo-v19-dual-sim-td-lte-v1-in-256gb-1933.json new file mode 100644 index 00000000000..836db593c8e --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-v19-dual-sim-td-lte-v1-in-256gb-1933.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-v19-dual-sim-td-lte-v1-in-256gb-1933", + "name": "Vivo V19 Dual SIM TD-LTE V1 IN 256GB 1933", + "brand": "vivo", + "soc": "snapdragon-712", + "release_date": "2020-05-12", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 186.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-v19-global-dual-sim-td-lte-v4-128gb-1933.json b/data/smartphone/vivo/2020/vivo-v19-global-dual-sim-td-lte-v4-128gb-1933.json new file mode 100644 index 00000000000..b9a43ed2f9c --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-v19-global-dual-sim-td-lte-v4-128gb-1933.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-v19-global-dual-sim-td-lte-v4-128gb-1933", + "name": "Vivo V19 Global Dual SIM TD-LTE V4 128GB 1933", + "brand": "vivo", + "soc": "snapdragon-712", + "release_date": "2020-05-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 186.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Lebanon , Pakistan , Russia , Saudi Arabia , UAE , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/vivo/2020/vivo-v20-pro-5g-global-dual-sim-td-lte-128gb-2018.json b/data/smartphone/vivo/2020/vivo-v20-pro-5g-global-dual-sim-td-lte-128gb-2018.json new file mode 100644 index 00000000000..ca39d067377 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-v20-pro-5g-global-dual-sim-td-lte-128gb-2018.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-v20-pro-5g-global-dual-sim-td-lte-128gb-2018", + "name": "Vivo V20 Pro 5G Global Dual SIM TD-LTE 128GB 2018", + "brand": "vivo", + "soc": "snapdragon-765", + "release_date": "2020-10-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Indonesia , Malaysia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-v20-se-dual-sim-td-lte-v1-my-128gb-2022.json b/data/smartphone/vivo/2020/vivo-v20-se-dual-sim-td-lte-v1-my-128gb-2022.json new file mode 100644 index 00000000000..8a0c451a34e --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-v20-se-dual-sim-td-lte-v1-my-128gb-2022.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-v20-se-dual-sim-td-lte-v1-my-128gb-2022", + "name": "Vivo V20 SE Dual SIM TD-LTE V1 MY 128GB 2022", + "brand": "vivo", + "soc": "snapdragon-665", + "release_date": "2020-10-01", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1199, + "market_countries": "Malaysia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-v20-se-dual-sim-td-lte-v2-id-128gb-2022.json b/data/smartphone/vivo/2020/vivo-v20-se-dual-sim-td-lte-v2-id-128gb-2022.json new file mode 100644 index 00000000000..b4bc1f5fdde --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-v20-se-dual-sim-td-lte-v2-id-128gb-2022.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-v20-se-dual-sim-td-lte-v2-id-128gb-2022", + "name": "Vivo V20 SE Dual SIM TD-LTE V2 ID 128GB 2022", + "brand": "vivo", + "soc": "snapdragon-665", + "release_date": "2020-10-01", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 3999, + "market_countries": "Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-x50-4g-dual-sim-td-lte-v1-in-128gb-2004.json b/data/smartphone/vivo/2020/vivo-x50-4g-dual-sim-td-lte-v1-in-128gb-2004.json new file mode 100644 index 00000000000..3cb03ba9337 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-x50-4g-dual-sim-td-lte-v1-in-128gb-2004.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-x50-4g-dual-sim-td-lte-v1-in-128gb-2004", + "name": "Vivo X50 4G Dual SIM TD-LTE V1 IN 128GB 2004", + "brand": "vivo", + "soc": "snapdragon-730", + "release_date": "2020-07-16", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 171.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-x50-4g-dual-sim-td-lte-v1-in-256gb-2004.json b/data/smartphone/vivo/2020/vivo-x50-4g-dual-sim-td-lte-v1-in-256gb-2004.json new file mode 100644 index 00000000000..55109c95606 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-x50-4g-dual-sim-td-lte-v1-in-256gb-2004.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-x50-4g-dual-sim-td-lte-v1-in-256gb-2004", + "name": "Vivo X50 4G Dual SIM TD-LTE V1 IN 256GB 2004", + "brand": "vivo", + "soc": "snapdragon-730", + "release_date": "2020-07-17", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 171.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-x50-4g-dual-sim-td-lte-v2-id-128gb-2004.json b/data/smartphone/vivo/2020/vivo-x50-4g-dual-sim-td-lte-v2-id-128gb-2004.json new file mode 100644 index 00000000000..35bf4d1dcd0 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-x50-4g-dual-sim-td-lte-v2-id-128gb-2004.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-x50-4g-dual-sim-td-lte-v2-id-128gb-2004", + "name": "Vivo X50 4G Dual SIM TD-LTE V2 ID 128GB 2004", + "brand": "vivo", + "soc": "snapdragon-730", + "release_date": "2020-07-16", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-x50-4g-dual-sim-td-lte-v3-ru-128gb-2004.json b/data/smartphone/vivo/2020/vivo-x50-4g-dual-sim-td-lte-v3-ru-128gb-2004.json new file mode 100644 index 00000000000..c6ac304bec4 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-x50-4g-dual-sim-td-lte-v3-ru-128gb-2004.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-x50-4g-dual-sim-td-lte-v3-ru-128gb-2004", + "name": "Vivo X50 4G Dual SIM TD-LTE V3 RU 128GB 2004", + "brand": "vivo", + "soc": "snapdragon-730", + "release_date": "2020-07-01", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 171.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Russia", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-x50-4g-dual-sim-td-lte-v3-vn-kh-128gb-2004.json b/data/smartphone/vivo/2020/vivo-x50-4g-dual-sim-td-lte-v3-vn-kh-128gb-2004.json new file mode 100644 index 00000000000..c3a4251484c --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-x50-4g-dual-sim-td-lte-v3-vn-kh-128gb-2004.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-x50-4g-dual-sim-td-lte-v3-vn-kh-128gb-2004", + "name": "Vivo X50 4G Dual SIM TD-LTE V3 VN KH 128GB 2004", + "brand": "vivo", + "soc": "snapdragon-730", + "release_date": "2020-07-16", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 171.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Cambodia , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-x50-5g-dual-sim-td-lte-cn-128gb-v2001a.json b/data/smartphone/vivo/2020/vivo-x50-5g-dual-sim-td-lte-cn-128gb-v2001a.json new file mode 100644 index 00000000000..c91e82228c6 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-x50-5g-dual-sim-td-lte-cn-128gb-v2001a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-x50-5g-dual-sim-td-lte-cn-128gb-v2001a", + "name": "Vivo X50 5G Dual SIM TD-LTE CN 128GB V2001A", + "brand": "vivo", + "soc": "snapdragon-765", + "release_date": "2020-05-01", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-x50-5g-dual-sim-td-lte-cn-256gb-v2001a.json b/data/smartphone/vivo/2020/vivo-x50-5g-dual-sim-td-lte-cn-256gb-v2001a.json new file mode 100644 index 00000000000..7f70e742483 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-x50-5g-dual-sim-td-lte-cn-256gb-v2001a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-x50-5g-dual-sim-td-lte-cn-256gb-v2001a", + "name": "Vivo X50 5G Dual SIM TD-LTE CN 256GB V2001A", + "brand": "vivo", + "soc": "snapdragon-765", + "release_date": "2020-05-01", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-x50-5g-dual-sim-td-lte-my-hk-128gb-v2001a.json b/data/smartphone/vivo/2020/vivo-x50-5g-dual-sim-td-lte-my-hk-128gb-v2001a.json new file mode 100644 index 00000000000..eea46d5024d --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-x50-5g-dual-sim-td-lte-my-hk-128gb-v2001a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-x50-5g-dual-sim-td-lte-my-hk-128gb-v2001a", + "name": "Vivo X50 5G Dual SIM TD-LTE MY HK 128GB V2001A", + "brand": "vivo", + "soc": "snapdragon-765", + "release_date": "2020-05-01", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 174.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "HK , Malaysia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-x50-lite-dual-sim-td-lte-au-128gb-v1937.json b/data/smartphone/vivo/2020/vivo-x50-lite-dual-sim-td-lte-au-128gb-v1937.json new file mode 100644 index 00000000000..902b51895f7 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-x50-lite-dual-sim-td-lte-au-128gb-v1937.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-x50-lite-dual-sim-td-lte-au-128gb-v1937", + "name": "Vivo X50 Lite Dual SIM TD-LTE AU 128GB V1937", + "brand": "vivo", + "soc": "snapdragon-665", + "release_date": "2020-05-14", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 190.2, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia", + "market_regions": "Australia" +} diff --git a/data/smartphone/vivo/2020/vivo-x50-pro-5g-dual-sim-td-lte-au-256gb-2006.json b/data/smartphone/vivo/2020/vivo-x50-pro-5g-dual-sim-td-lte-au-256gb-2006.json new file mode 100644 index 00000000000..262a05413bb --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-x50-pro-5g-dual-sim-td-lte-au-256gb-2006.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-x50-pro-5g-dual-sim-td-lte-au-256gb-2006", + "name": "Vivo X50 Pro 5G Dual SIM TD-LTE AU 256GB 2006", + "brand": "vivo", + "soc": "snapdragon-765", + "release_date": "2020-08-01", + "ram_gb": 8.0, + "battery_mah": 4315, + "weight_g": 181.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 999, + "market_countries": "Australia , UAE", + "market_regions": "Australia , Middle East" +} diff --git a/data/smartphone/vivo/2020/vivo-x50-pro-5g-dual-sim-td-lte-cn-128gb-v2005a.json b/data/smartphone/vivo/2020/vivo-x50-pro-5g-dual-sim-td-lte-cn-128gb-v2005a.json new file mode 100644 index 00000000000..446e4eea2a0 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-x50-pro-5g-dual-sim-td-lte-cn-128gb-v2005a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-x50-pro-5g-dual-sim-td-lte-cn-128gb-v2005a", + "name": "Vivo X50 Pro 5G Dual SIM TD-LTE CN 128GB V2005A", + "brand": "vivo", + "soc": "snapdragon-765", + "release_date": "2020-06-12", + "ram_gb": 8.0, + "battery_mah": 4315, + "weight_g": 181.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-x50-pro-5g-dual-sim-td-lte-cn-256gb-v2005a.json b/data/smartphone/vivo/2020/vivo-x50-pro-5g-dual-sim-td-lte-cn-256gb-v2005a.json new file mode 100644 index 00000000000..0b5df47e683 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-x50-pro-5g-dual-sim-td-lte-cn-256gb-v2005a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-x50-pro-5g-dual-sim-td-lte-cn-256gb-v2005a", + "name": "Vivo X50 Pro 5G Dual SIM TD-LTE CN 256GB V2005A", + "brand": "vivo", + "soc": "snapdragon-765", + "release_date": "2020-06-12", + "ram_gb": 8.0, + "battery_mah": 4315, + "weight_g": 181.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-x50-pro-5g-global-dual-sim-td-lte-256gb-2006.json b/data/smartphone/vivo/2020/vivo-x50-pro-5g-global-dual-sim-td-lte-256gb-2006.json new file mode 100644 index 00000000000..6edb49956f1 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-x50-pro-5g-global-dual-sim-td-lte-256gb-2006.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-x50-pro-5g-global-dual-sim-td-lte-256gb-2006", + "name": "Vivo X50 Pro 5G Global Dual SIM TD-LTE 256GB 2006", + "brand": "vivo", + "soc": "snapdragon-765", + "release_date": "2020-06-12", + "ram_gb": 8.0, + "battery_mah": 4315, + "weight_g": 181.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Cambodia , India , Indonesia , Kazakhstan , Malaysia , Russia , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-x50-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2011a.json b/data/smartphone/vivo/2020/vivo-x50-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2011a.json new file mode 100644 index 00000000000..d6d3bdb1ee7 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-x50-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2011a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-x50-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2011a", + "name": "Vivo X50 Pro+ 5G Premium Edition Dual SIM TD-LTE CN 256GB V2011A", + "brand": "vivo", + "soc": "snapdragon-865", + "release_date": "2020-07-11", + "ram_gb": 12.0, + "battery_mah": 4350, + "weight_g": 191.1, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2011a.json b/data/smartphone/vivo/2020/vivo-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2011a.json new file mode 100644 index 00000000000..e750eb76f31 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2011a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2011a", + "name": "Vivo X50 Pro+ 5G Standard Edition Dual SIM TD-LTE CN 128GB V2011A", + "brand": "vivo", + "soc": "snapdragon-865", + "release_date": "2020-07-11", + "ram_gb": 8.0, + "battery_mah": 4350, + "weight_g": 192.2, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2011a.json b/data/smartphone/vivo/2020/vivo-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2011a.json new file mode 100644 index 00000000000..8b11310ec12 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2011a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2011a", + "name": "Vivo X50 Pro+ 5G Standard Edition Dual SIM TD-LTE CN 256GB V2011A", + "brand": "vivo", + "soc": "snapdragon-865", + "release_date": "2020-07-11", + "ram_gb": 8.0, + "battery_mah": 4350, + "weight_g": 192.2, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-x51-5g-global-dual-sim-td-lte-256gb.json b/data/smartphone/vivo/2020/vivo-x51-5g-global-dual-sim-td-lte-256gb.json new file mode 100644 index 00000000000..0fa9b64ae1e --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-x51-5g-global-dual-sim-td-lte-256gb.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-x51-5g-global-dual-sim-td-lte-256gb", + "name": "Vivo X51 5G Global Dual SIM TD-LTE 256GB", + "brand": "vivo", + "soc": "snapdragon-765", + "release_date": "2020-11-01", + "ram_gb": 8.0, + "battery_mah": 4315, + "weight_g": 181.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 799, + "market_countries": "France , Germany , Italy , Poland , Spain , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/vivo/2020/vivo-y11s-2020-global-dual-sim-td-lte-32gb.json b/data/smartphone/vivo/2020/vivo-y11s-2020-global-dual-sim-td-lte-32gb.json new file mode 100644 index 00000000000..1e2e20bdaf9 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y11s-2020-global-dual-sim-td-lte-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y11s-2020-global-dual-sim-td-lte-32gb", + "name": "Vivo Y11s 2020 Global Dual SIM TD-LTE 32GB", + "brand": "vivo", + "soc": "snapdragon-460", + "release_date": "2020-11-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , France , Germany , Italy , Poland , Spain , UK", + "market_regions": "Australia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/vivo/2020/vivo-y12i-dual-sim-td-lte-v1-id-2007.json b/data/smartphone/vivo/2020/vivo-y12i-dual-sim-td-lte-v1-id-2007.json new file mode 100644 index 00000000000..bd66aba7342 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y12i-dual-sim-td-lte-v1-id-2007.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y12i-dual-sim-td-lte-v1-id-2007", + "name": "Vivo Y12i Dual SIM TD-LTE V1 ID 2007", + "brand": "vivo", + "soc": "snapdragon-439", + "release_date": "2020-09-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 190.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.35, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-y12s-dual-sim-td-lte-v1-np-bd-mn-pk-32gb-v2026.json b/data/smartphone/vivo/2020/vivo-y12s-dual-sim-td-lte-v1-np-bd-mn-pk-32gb-v2026.json new file mode 100644 index 00000000000..c30ea070203 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y12s-dual-sim-td-lte-v1-np-bd-mn-pk-32gb-v2026.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y12s-dual-sim-td-lte-v1-np-bd-mn-pk-32gb-v2026", + "name": "Vivo Y12s Dual SIM TD-LTE V1 NP BD MN PK 32GB V2026", + "brand": "vivo", + "soc": "helio-p35", + "release_date": "2020-11-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , Myanmar , Nepal , Pakistan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-y12s-dual-sim-td-lte-v2-th-kz-ph-32gb-v2026.json b/data/smartphone/vivo/2020/vivo-y12s-dual-sim-td-lte-v2-th-kz-ph-32gb-v2026.json new file mode 100644 index 00000000000..f771784ba11 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y12s-dual-sim-td-lte-v2-th-kz-ph-32gb-v2026.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-y12s-dual-sim-td-lte-v2-th-kz-ph-32gb-v2026", + "name": "Vivo Y12s Dual SIM TD-LTE V2 TH KZ PH 32GB V2026", + "brand": "vivo", + "soc": "helio-p35", + "release_date": "2020-11-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "msrp_usd": 4799, + "market_countries": "Armenia , Kazakhstan , Kyrgyzstan , Philippines , Thailand", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-y12s-dual-sim-td-lte-v3-my-vn-sg-128gb-v2026.json b/data/smartphone/vivo/2020/vivo-y12s-dual-sim-td-lte-v3-my-vn-sg-128gb-v2026.json new file mode 100644 index 00000000000..24a702b1392 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y12s-dual-sim-td-lte-v3-my-vn-sg-128gb-v2026.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-y12s-dual-sim-td-lte-v3-my-vn-sg-128gb-v2026", + "name": "Vivo Y12s Dual SIM TD-LTE V3 MY VN SG 128GB V2026", + "brand": "vivo", + "soc": "helio-p35", + "release_date": "2020-12-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "msrp_usd": 699, + "market_countries": "Malaysia , Singapore , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-y12s-dual-sim-td-lte-v3-my-vn-sg-32gb-v2026-v2042.json b/data/smartphone/vivo/2020/vivo-y12s-dual-sim-td-lte-v3-my-vn-sg-32gb-v2026-v2042.json new file mode 100644 index 00000000000..d5c5629d9ce --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y12s-dual-sim-td-lte-v3-my-vn-sg-32gb-v2026-v2042.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y12s-dual-sim-td-lte-v3-my-vn-sg-32gb-v2026-v2042", + "name": "Vivo Y12s Dual SIM TD-LTE V3 MY VN SG 32GB V2026 / V2042", + "brand": "vivo", + "soc": "helio-p35", + "release_date": "2020-12-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Cambodia , Malaysia , Singapore , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-y12s-dual-sim-td-lte-v4-cn-hk-32gb-v2026.json b/data/smartphone/vivo/2020/vivo-y12s-dual-sim-td-lte-v4-cn-hk-32gb-v2026.json new file mode 100644 index 00000000000..b8e7f068656 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y12s-dual-sim-td-lte-v4-cn-hk-32gb-v2026.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y12s-dual-sim-td-lte-v4-cn-hk-32gb-v2026", + "name": "Vivo Y12s Dual SIM TD-LTE V4 CN HK 32GB V2026", + "brand": "vivo", + "soc": "helio-p35", + "release_date": "2020-09-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-y1s-2020-premium-edition-global-dual-sim-td-lte-v3-32gb.json b/data/smartphone/vivo/2020/vivo-y1s-2020-premium-edition-global-dual-sim-td-lte-v3-32gb.json new file mode 100644 index 00000000000..44370fd0ece --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y1s-2020-premium-edition-global-dual-sim-td-lte-v3-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y1s-2020-premium-edition-global-dual-sim-td-lte-v3-32gb", + "name": "Vivo Y1s 2020 Premium Edition Global Dual SIM TD-LTE V3 32GB", + "brand": "vivo", + "soc": "helio-p35", + "release_date": "2020-08-01", + "ram_gb": 2.0, + "battery_mah": 4030, + "weight_g": 161.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 276 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Kenya , Morocco", + "market_regions": "Africa" +} diff --git a/data/smartphone/vivo/2020/vivo-y1s-2020-standard-edition-dual-sim-td-lte-v1-kh-32gb.json b/data/smartphone/vivo/2020/vivo-y1s-2020-standard-edition-dual-sim-td-lte-v1-kh-32gb.json new file mode 100644 index 00000000000..dbf46e2b0c0 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y1s-2020-standard-edition-dual-sim-td-lte-v1-kh-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y1s-2020-standard-edition-dual-sim-td-lte-v1-kh-32gb", + "name": "Vivo Y1s 2020 Standard Edition Dual SIM TD-LTE V1 KH 32GB", + "brand": "vivo", + "soc": "helio-p35", + "release_date": "2020-08-01", + "ram_gb": 2.0, + "battery_mah": 4030, + "weight_g": 161.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 276 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Armenia , India , Kazakhstan , Pakistan", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-y1s-2020-standard-edition-dual-sim-td-lte-v2-vn-32gb.json b/data/smartphone/vivo/2020/vivo-y1s-2020-standard-edition-dual-sim-td-lte-v2-vn-32gb.json new file mode 100644 index 00000000000..d8eddb40e12 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y1s-2020-standard-edition-dual-sim-td-lte-v2-vn-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y1s-2020-standard-edition-dual-sim-td-lte-v2-vn-32gb", + "name": "Vivo Y1s 2020 Standard Edition Dual SIM TD-LTE V2 VN 32GB", + "brand": "vivo", + "soc": "helio-p35", + "release_date": "2020-08-01", + "ram_gb": 2.0, + "battery_mah": 4030, + "weight_g": 161.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 276 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-y20a-dual-sim-td-lte-v1-in-v2052-v2034.json b/data/smartphone/vivo/2020/vivo-y20a-dual-sim-td-lte-v1-in-v2052-v2034.json new file mode 100644 index 00000000000..485775adda2 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y20a-dual-sim-td-lte-v1-in-v2052-v2034.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y20a-dual-sim-td-lte-v1-in-v2052-v2034", + "name": "Vivo Y20A Dual SIM TD-LTE V1 IN V2052 / V2034", + "brand": "vivo", + "soc": "snapdragon-439", + "release_date": "2020-12-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-y20g-dual-sim-td-lte-in-128gb-v2037.json b/data/smartphone/vivo/2020/vivo-y20g-dual-sim-td-lte-in-128gb-v2037.json new file mode 100644 index 00000000000..0fde74d3923 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y20g-dual-sim-td-lte-in-128gb-v2037.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y20g-dual-sim-td-lte-in-128gb-v2037", + "name": "Vivo Y20G Dual SIM TD-LTE IN 128GB V2037", + "brand": "vivo", + "soc": "helio-g80", + "release_date": "2020-12-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 192.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-y20g-dual-sim-td-lte-in-64gb-v2037.json b/data/smartphone/vivo/2020/vivo-y20g-dual-sim-td-lte-in-64gb-v2037.json new file mode 100644 index 00000000000..b1464eaa18d --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y20g-dual-sim-td-lte-in-64gb-v2037.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y20g-dual-sim-td-lte-in-64gb-v2037", + "name": "Vivo Y20G Dual SIM TD-LTE IN 64GB V2037", + "brand": "vivo", + "soc": "helio-g80", + "release_date": "2020-12-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 192.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-y20i-2020-dual-sim-td-lte-v1-in-64gb-v2027.json b/data/smartphone/vivo/2020/vivo-y20i-2020-dual-sim-td-lte-v1-in-64gb-v2027.json new file mode 100644 index 00000000000..592f6633382 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y20i-2020-dual-sim-td-lte-v1-in-64gb-v2027.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y20i-2020-dual-sim-td-lte-v1-in-64gb-v2027", + "name": "Vivo Y20i 2020 Dual SIM TD-LTE V1 IN 64GB V2027", + "brand": "vivo", + "soc": "snapdragon-460", + "release_date": "2020-11-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 192.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-y20i-2020-dual-sim-td-lte-v2-ph-64gb.json b/data/smartphone/vivo/2020/vivo-y20i-2020-dual-sim-td-lte-v2-ph-64gb.json new file mode 100644 index 00000000000..0ab18d46b8c --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y20i-2020-dual-sim-td-lte-v2-ph-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-y20i-2020-dual-sim-td-lte-v2-ph-64gb", + "name": "Vivo Y20i 2020 Dual SIM TD-LTE V2 PH 64GB", + "brand": "vivo", + "soc": "snapdragon-460", + "release_date": "2020-10-09", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 192.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 154, + "market_countries": "Pakistan , Philippines", + "market_regions": "Asia , Oceania" +} diff --git a/data/smartphone/vivo/2020/vivo-y20s-2020-global-dual-sim-td-lte-128gb.json b/data/smartphone/vivo/2020/vivo-y20s-2020-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..f8edd5a0fc7 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y20s-2020-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y20s-2020-global-dual-sim-td-lte-128gb", + "name": "Vivo Y20s 2020 Global Dual SIM TD-LTE 128GB", + "brand": "vivo", + "soc": "snapdragon-460", + "release_date": "2020-11-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 192.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia , France , Germany , Italy , Poland , Spain , UK", + "market_regions": "Australia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/vivo/2020/vivo-y30-2020-dual-sim-td-lte-v1-in-id-pk-mn-128gb-1938.json b/data/smartphone/vivo/2020/vivo-y30-2020-dual-sim-td-lte-v1-in-id-pk-mn-128gb-1938.json new file mode 100644 index 00000000000..2089829566e --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y30-2020-dual-sim-td-lte-v1-in-id-pk-mn-128gb-1938.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y30-2020-dual-sim-td-lte-v1-in-id-pk-mn-128gb-1938", + "name": "Vivo Y30 2020 Dual SIM TD-LTE V1 IN ID PK MN 128GB 1938", + "brand": "vivo", + "soc": "helio-p35", + "release_date": "2020-05-07", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Indonesia , Myanmar , Pakistan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-y30-2020-dual-sim-td-lte-v1-in-id-pk-mn-64gb-1938.json b/data/smartphone/vivo/2020/vivo-y30-2020-dual-sim-td-lte-v1-in-id-pk-mn-64gb-1938.json new file mode 100644 index 00000000000..4640cd081af --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y30-2020-dual-sim-td-lte-v1-in-id-pk-mn-64gb-1938.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y30-2020-dual-sim-td-lte-v1-in-id-pk-mn-64gb-1938", + "name": "Vivo Y30 2020 Dual SIM TD-LTE V1 IN ID PK MN 64GB 1938", + "brand": "vivo", + "soc": "helio-p35", + "release_date": "2020-05-07", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.47, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Indonesia , Myanmar , Pakistan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-y30-2020-dual-sim-td-lte-v2-my-sg-vn-np-bd-128gb-1938.json b/data/smartphone/vivo/2020/vivo-y30-2020-dual-sim-td-lte-v2-my-sg-vn-np-bd-128gb-1938.json new file mode 100644 index 00000000000..9609494bd21 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y30-2020-dual-sim-td-lte-v2-my-sg-vn-np-bd-128gb-1938.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y30-2020-dual-sim-td-lte-v2-my-sg-vn-np-bd-128gb-1938", + "name": "Vivo Y30 2020 Dual SIM TD-LTE V2 MY SG VN NP BD 128GB 1938", + "brand": "vivo", + "soc": "helio-p35", + "release_date": "2020-05-09", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , Malaysia , Nepal , Singapore , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-y30-2020-dual-sim-td-lte-v2-my-sg-vn-np-bd-64gb-1938.json b/data/smartphone/vivo/2020/vivo-y30-2020-dual-sim-td-lte-v2-my-sg-vn-np-bd-64gb-1938.json new file mode 100644 index 00000000000..aa37e53965a --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y30-2020-dual-sim-td-lte-v2-my-sg-vn-np-bd-64gb-1938.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y30-2020-dual-sim-td-lte-v2-my-sg-vn-np-bd-64gb-1938", + "name": "Vivo Y30 2020 Dual SIM TD-LTE V2 MY SG VN NP BD 64GB 1938", + "brand": "vivo", + "soc": "helio-p35", + "release_date": "2020-05-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.47, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , Malaysia , Nepal , Singapore , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-y30-2020-dual-sim-td-lte-v3-th-128gb-1938.json b/data/smartphone/vivo/2020/vivo-y30-2020-dual-sim-td-lte-v3-th-128gb-1938.json new file mode 100644 index 00000000000..c64bcafb58e --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y30-2020-dual-sim-td-lte-v3-th-128gb-1938.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y30-2020-dual-sim-td-lte-v3-th-128gb-1938", + "name": "Vivo Y30 2020 Dual SIM TD-LTE V3 TH 128GB 1938", + "brand": "vivo", + "soc": "helio-p35", + "release_date": "2020-05-07", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-y30-2020-global-dual-sim-td-lte-v4-128gb-1938.json b/data/smartphone/vivo/2020/vivo-y30-2020-global-dual-sim-td-lte-v4-128gb-1938.json new file mode 100644 index 00000000000..28694fba7f7 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y30-2020-global-dual-sim-td-lte-v4-128gb-1938.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y30-2020-global-dual-sim-td-lte-v4-128gb-1938", + "name": "Vivo Y30 2020 Global Dual SIM TD-LTE V4 128GB 1938", + "brand": "vivo", + "soc": "helio-p35", + "release_date": "2020-05-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Egypt , Lebanon , Saudi Arabia", + "market_regions": "Africa , Australia , Middle East" +} diff --git a/data/smartphone/vivo/2020/vivo-y30-2021-premium-edition-dual-sim-td-lte-cn-128gb-v2099a.json b/data/smartphone/vivo/2020/vivo-y30-2021-premium-edition-dual-sim-td-lte-cn-128gb-v2099a.json new file mode 100644 index 00000000000..5a20557539a --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y30-2021-premium-edition-dual-sim-td-lte-cn-128gb-v2099a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-y30-2021-premium-edition-dual-sim-td-lte-cn-128gb-v2099a", + "name": "Vivo Y30 2021 Premium Edition Dual SIM TD-LTE CN 128GB V2099A", + "brand": "vivo", + "soc": "snapdragon-662", + "release_date": "2020-12-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 1498, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-y30-standard-2020-dual-sim-td-lte-cn-v2036a.json b/data/smartphone/vivo/2020/vivo-y30-standard-2020-dual-sim-td-lte-cn-v2036a.json new file mode 100644 index 00000000000..0b020bd74e0 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y30-standard-2020-dual-sim-td-lte-cn-v2036a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-y30-standard-2020-dual-sim-td-lte-cn-v2036a", + "name": "Vivo Y30 Standard 2020 Dual SIM TD-LTE CN V2036A", + "brand": "vivo", + "soc": "helio-p35", + "release_date": "2020-12-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 191.4, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 1398, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-y30i-2020-dual-sim-td-lte-v1-id-64gb-2019.json b/data/smartphone/vivo/2020/vivo-y30i-2020-dual-sim-td-lte-v1-id-64gb-2019.json new file mode 100644 index 00000000000..fee17503207 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y30i-2020-dual-sim-td-lte-v1-id-64gb-2019.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y30i-2020-dual-sim-td-lte-v1-id-64gb-2019", + "name": "Vivo Y30i 2020 Dual SIM TD-LTE V1 ID 64GB 2019", + "brand": "vivo", + "soc": "helio-p35", + "release_date": "2020-08-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.47, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-y3s-2019-dual-sim-td-lte-cn-128gb-v1901a.json b/data/smartphone/vivo/2020/vivo-y3s-2019-dual-sim-td-lte-cn-128gb-v1901a.json new file mode 100644 index 00000000000..750cdd6bfa2 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y3s-2019-dual-sim-td-lte-cn-128gb-v1901a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-y3s-2019-dual-sim-td-lte-cn-128gb-v1901a", + "name": "Vivo Y3s 2019 Dual SIM TD-LTE CN 128GB V1901A", + "brand": "vivo", + "soc": "helio-p35", + "release_date": "2020-10-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 1198, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-y3s-2019-dual-sim-td-lte-cn-128gb-v1901t.json b/data/smartphone/vivo/2020/vivo-y3s-2019-dual-sim-td-lte-cn-128gb-v1901t.json new file mode 100644 index 00000000000..0eb617836a0 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y3s-2019-dual-sim-td-lte-cn-128gb-v1901t.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-y3s-2019-dual-sim-td-lte-cn-128gb-v1901t", + "name": "Vivo Y3s 2019 Dual SIM TD-LTE CN 128GB V1901T", + "brand": "vivo", + "soc": "helio-p35", + "release_date": "2020-10-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 1198, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-y3s-2019-dual-sim-td-lte-cn-64gb-v1901a.json b/data/smartphone/vivo/2020/vivo-y3s-2019-dual-sim-td-lte-cn-64gb-v1901a.json new file mode 100644 index 00000000000..0b215e1d4e2 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y3s-2019-dual-sim-td-lte-cn-64gb-v1901a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-y3s-2019-dual-sim-td-lte-cn-64gb-v1901a", + "name": "Vivo Y3s 2019 Dual SIM TD-LTE CN 64GB V1901A", + "brand": "vivo", + "soc": "helio-p35", + "release_date": "2020-10-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 1098, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-y3s-2019-dual-sim-td-lte-cn-64gb-v1901t.json b/data/smartphone/vivo/2020/vivo-y3s-2019-dual-sim-td-lte-cn-64gb-v1901t.json new file mode 100644 index 00000000000..a67ee5b7f4e --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y3s-2019-dual-sim-td-lte-cn-64gb-v1901t.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-y3s-2019-dual-sim-td-lte-cn-64gb-v1901t", + "name": "Vivo Y3s 2019 Dual SIM TD-LTE CN 64GB V1901T", + "brand": "vivo", + "soc": "helio-p35", + "release_date": "2020-10-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 1098, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-y50-2020-dual-sim-td-lte-v1-in-id-128gb-1935.json b/data/smartphone/vivo/2020/vivo-y50-2020-dual-sim-td-lte-v1-in-id-128gb-1935.json new file mode 100644 index 00000000000..69fbd62d8f6 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y50-2020-dual-sim-td-lte-v1-in-id-128gb-1935.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y50-2020-dual-sim-td-lte-v1-in-id-128gb-1935", + "name": "Vivo Y50 2020 Dual SIM TD-LTE V1 IN ID 128GB 1935", + "brand": "vivo", + "soc": "snapdragon-665", + "release_date": "2020-06-09", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India , Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-y50-2020-dual-sim-td-lte-v2-my-vn-bd-128gb-1935.json b/data/smartphone/vivo/2020/vivo-y50-2020-dual-sim-td-lte-v2-my-vn-bd-128gb-1935.json new file mode 100644 index 00000000000..28755c95176 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y50-2020-dual-sim-td-lte-v2-my-vn-bd-128gb-1935.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y50-2020-dual-sim-td-lte-v2-my-vn-bd-128gb-1935", + "name": "Vivo Y50 2020 Dual SIM TD-LTE V2 MY VN BD 128GB 1935", + "brand": "vivo", + "soc": "snapdragon-665", + "release_date": "2020-04-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , Cambodia , Malaysia , Sri Lanka , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-y50-2020-dual-sim-td-lte-v4-cn-hk-128gb-1935.json b/data/smartphone/vivo/2020/vivo-y50-2020-dual-sim-td-lte-v4-cn-hk-128gb-1935.json new file mode 100644 index 00000000000..5d6ed21212d --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y50-2020-dual-sim-td-lte-v4-cn-hk-128gb-1935.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y50-2020-dual-sim-td-lte-v4-cn-hk-128gb-1935", + "name": "Vivo Y50 2020 Dual SIM TD-LTE V4 CN HK 128GB 1935", + "brand": "vivo", + "soc": "snapdragon-665", + "release_date": "2020-04-07", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-y50-2020-premium-edition-dual-sim-td-lte-v3-th-sg-128gb-1935.json b/data/smartphone/vivo/2020/vivo-y50-2020-premium-edition-dual-sim-td-lte-v3-th-sg-128gb-1935.json new file mode 100644 index 00000000000..c6c75d3ccb1 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y50-2020-premium-edition-dual-sim-td-lte-v3-th-sg-128gb-1935.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y50-2020-premium-edition-dual-sim-td-lte-v3-th-sg-128gb-1935", + "name": "Vivo Y50 2020 Premium Edition Dual SIM TD-LTE V3 TH SG 128GB 1935", + "brand": "vivo", + "soc": "snapdragon-665", + "release_date": "2020-04-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Singapore , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-y50-2020-standard-edition-dual-sim-td-lte-v3-th-sg-128gb-1935.json b/data/smartphone/vivo/2020/vivo-y50-2020-standard-edition-dual-sim-td-lte-v3-th-sg-128gb-1935.json new file mode 100644 index 00000000000..5a5c58492ae --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y50-2020-standard-edition-dual-sim-td-lte-v3-th-sg-128gb-1935.json @@ -0,0 +1,41 @@ +{ + "slug": "vivo-y50-2020-standard-edition-dual-sim-td-lte-v3-th-sg-128gb-1935", + "name": "Vivo Y50 2020 Standard Edition Dual SIM TD-LTE V3 TH SG 128GB 1935", + "brand": "vivo", + "soc": "snapdragon-665", + "release_date": "2020-04-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 197.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Singapore , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-y51s-5g-dual-sim-td-lte-cn-128gb-v2002a.json b/data/smartphone/vivo/2020/vivo-y51s-5g-dual-sim-td-lte-cn-128gb-v2002a.json new file mode 100644 index 00000000000..e1c0b4b4e3b --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y51s-5g-dual-sim-td-lte-cn-128gb-v2002a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-y51s-5g-dual-sim-td-lte-cn-128gb-v2002a", + "name": "Vivo Y51s 5G Dual SIM TD-LTE CN 128GB V2002A", + "brand": "vivo", + "soc": "exynos-880", + "release_date": "2020-07-29", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB Micro-AB" + }, + "msrp_usd": 1798, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-y52s-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-v2057a.json b/data/smartphone/vivo/2020/vivo-y52s-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-v2057a.json new file mode 100644 index 00000000000..a0078d232da --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y52s-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-v2057a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-y52s-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-v2057a", + "name": "Vivo Y52s 5G 2020 Premium Edition Dual SIM TD-LTE CN 128GB V2057A", + "brand": "vivo", + "soc": "dimensity-720", + "release_date": "2020-12-18", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 185.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1898, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-y52s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-v2057a.json b/data/smartphone/vivo/2020/vivo-y52s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-v2057a.json new file mode 100644 index 00000000000..58cd89b3adc --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y52s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-v2057a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-y52s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-v2057a", + "name": "Vivo Y52s 5G 2020 Standard Edition Dual SIM TD-LTE CN 128GB V2057A", + "brand": "vivo", + "soc": "dimensity-720", + "release_date": "2020-12-18", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 185.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1698, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-y70-2020-global-dual-sim-td-lte-v4-128gb.json b/data/smartphone/vivo/2020/vivo-y70-2020-global-dual-sim-td-lte-v4-128gb.json new file mode 100644 index 00000000000..27b08f8b2bf --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y70-2020-global-dual-sim-td-lte-v4-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y70-2020-global-dual-sim-td-lte-v4-128gb", + "name": "Vivo Y70 2020 Global Dual SIM TD-LTE V4 128GB", + "brand": "vivo", + "soc": "snapdragon-665", + "release_date": "2020-11-01", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 171.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , France , Germany , Italy , Poland , Spain , UK", + "market_regions": "Australia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/vivo/2020/vivo-y70s-premium-edition-5g-dual-sim-td-lte-cn-128gb-v2002a.json b/data/smartphone/vivo/2020/vivo-y70s-premium-edition-5g-dual-sim-td-lte-cn-128gb-v2002a.json new file mode 100644 index 00000000000..963ec805a49 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y70s-premium-edition-5g-dual-sim-td-lte-cn-128gb-v2002a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-y70s-premium-edition-5g-dual-sim-td-lte-cn-128gb-v2002a", + "name": "Vivo Y70S Premium Edition 5G Dual SIM TD-LTE CN 128GB V2002A", + "brand": "vivo", + "soc": "exynos-880", + "release_date": "2020-05-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB Micro-AB" + }, + "msrp_usd": 2198, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-y70s-premium-edition-5g-dual-sim-td-lte-cn-256gb-v2002a.json b/data/smartphone/vivo/2020/vivo-y70s-premium-edition-5g-dual-sim-td-lte-cn-256gb-v2002a.json new file mode 100644 index 00000000000..c420da780a9 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y70s-premium-edition-5g-dual-sim-td-lte-cn-256gb-v2002a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-y70s-premium-edition-5g-dual-sim-td-lte-cn-256gb-v2002a", + "name": "Vivo Y70S Premium Edition 5G Dual SIM TD-LTE CN 256GB V2002A", + "brand": "vivo", + "soc": "exynos-880", + "release_date": "2020-05-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB Micro-AB" + }, + "msrp_usd": 2498, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-y70s-standard-edition-5g-dual-sim-td-lte-cn-128gb-v2002a.json b/data/smartphone/vivo/2020/vivo-y70s-standard-edition-5g-dual-sim-td-lte-cn-128gb-v2002a.json new file mode 100644 index 00000000000..fbc3b9ecd40 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y70s-standard-edition-5g-dual-sim-td-lte-cn-128gb-v2002a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-y70s-standard-edition-5g-dual-sim-td-lte-cn-128gb-v2002a", + "name": "Vivo Y70S Standard Edition 5G Dual SIM TD-LTE CN 128GB V2002A", + "brand": "vivo", + "soc": "exynos-880", + "release_date": "2020-05-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB Micro-AB" + }, + "msrp_usd": 1998, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-y73s-5g-2020-dual-sim-td-lte-cn-128gb-v2031a.json b/data/smartphone/vivo/2020/vivo-y73s-5g-2020-dual-sim-td-lte-cn-128gb-v2031a.json new file mode 100644 index 00000000000..94b85b5eb31 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-y73s-5g-2020-dual-sim-td-lte-cn-128gb-v2031a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-y73s-5g-2020-dual-sim-td-lte-cn-128gb-v2031a", + "name": "Vivo Y73s 5G 2020 Dual SIM TD-LTE CN 128GB V2031A", + "brand": "vivo", + "soc": "dimensity-720", + "release_date": "2020-10-01", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 171.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 1998, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-z5x-2020-premium-edition-dual-sim-td-lte-cn-128gb-v1990a.json b/data/smartphone/vivo/2020/vivo-z5x-2020-premium-edition-dual-sim-td-lte-cn-128gb-v1990a.json new file mode 100644 index 00000000000..78584db3278 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-z5x-2020-premium-edition-dual-sim-td-lte-cn-128gb-v1990a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-z5x-2020-premium-edition-dual-sim-td-lte-cn-128gb-v1990a", + "name": "Vivo Z5x 2020 Premium Edition Dual SIM TD-LTE CN 128GB V1990A", + "brand": "vivo", + "soc": "snapdragon-712", + "release_date": "2020-04-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 204.1, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 1599, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-z5x-2020-standard-edition-dual-sim-td-lte-cn-128gb-v1990a.json b/data/smartphone/vivo/2020/vivo-z5x-2020-standard-edition-dual-sim-td-lte-cn-128gb-v1990a.json new file mode 100644 index 00000000000..2fd12047f46 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-z5x-2020-standard-edition-dual-sim-td-lte-cn-128gb-v1990a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-z5x-2020-standard-edition-dual-sim-td-lte-cn-128gb-v1990a", + "name": "Vivo Z5x 2020 Standard Edition Dual SIM TD-LTE CN 128GB V1990A", + "brand": "vivo", + "soc": "snapdragon-712", + "release_date": "2020-04-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 204.1, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 1399, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-z6-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1963a.json b/data/smartphone/vivo/2020/vivo-z6-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1963a.json new file mode 100644 index 00000000000..dd8c8ecb1f3 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-z6-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1963a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-z6-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1963a", + "name": "Vivo Z6 5G Premium Edition Dual SIM TD-LTE CN 128GB V1963A", + "brand": "vivo", + "soc": "snapdragon-765", + "release_date": "2020-03-08", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 201.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2020/vivo-z6-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1963a.json b/data/smartphone/vivo/2020/vivo-z6-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1963a.json new file mode 100644 index 00000000000..4201cc76eb4 --- /dev/null +++ b/data/smartphone/vivo/2020/vivo-z6-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1963a.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-z6-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1963a", + "name": "Vivo Z6 5G Standard Edition Dual SIM TD-LTE CN 128GB V1963A", + "brand": "vivo", + "soc": "snapdragon-765", + "release_date": "2020-03-08", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 201.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-iqoo-7-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2049a.json b/data/smartphone/vivo/2021/vivo-iqoo-7-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2049a.json new file mode 100644 index 00000000000..c487e374395 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-iqoo-7-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2049a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-iqoo-7-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2049a", + "name": "Vivo iQOO 7 5G Premium Edition Dual SIM TD-LTE CN 256GB V2049A", + "brand": "vivo", + "soc": "snapdragon-888", + "release_date": "2021-01-01", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 209.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 4198, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-iqoo-7-5g-premium-edition-dual-sim-td-lte-in-256gb-i2012.json b/data/smartphone/vivo/2021/vivo-iqoo-7-5g-premium-edition-dual-sim-td-lte-in-256gb-i2012.json new file mode 100644 index 00000000000..7800420d23b --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-iqoo-7-5g-premium-edition-dual-sim-td-lte-in-256gb-i2012.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-iqoo-7-5g-premium-edition-dual-sim-td-lte-in-256gb-i2012", + "name": "Vivo iQOO 7 5G Premium Edition Dual SIM TD-LTE IN 256GB I2012", + "brand": "vivo", + "soc": "snapdragon-870", + "release_date": "2021-04-27", + "ram_gb": 12.0, + "battery_mah": 4400, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2049a.json b/data/smartphone/vivo/2021/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2049a.json new file mode 100644 index 00000000000..3826ff7baeb --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2049a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2049a", + "name": "Vivo iQOO 7 5G Standard Edition Dual SIM TD-LTE CN 128GB V2049A", + "brand": "vivo", + "soc": "snapdragon-888", + "release_date": "2021-01-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 209.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3798, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2049a.json b/data/smartphone/vivo/2021/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2049a.json new file mode 100644 index 00000000000..3ad7331213c --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2049a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2049a", + "name": "Vivo iQOO 7 5G Standard Edition Dual SIM TD-LTE CN 256GB V2049A", + "brand": "vivo", + "soc": "snapdragon-888", + "release_date": "2021-01-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 209.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3998, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-in-128gb-i2012.json b/data/smartphone/vivo/2021/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-in-128gb-i2012.json new file mode 100644 index 00000000000..ec605d77ca9 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-in-128gb-i2012.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-in-128gb-i2012", + "name": "Vivo iQOO 7 5G Standard Edition Dual SIM TD-LTE IN 128GB I2012", + "brand": "vivo", + "soc": "snapdragon-870", + "release_date": "2021-04-27", + "ram_gb": 8.0, + "battery_mah": 4400, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-in-256gb-i2012.json b/data/smartphone/vivo/2021/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-in-256gb-i2012.json new file mode 100644 index 00000000000..a7811a2ca30 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-in-256gb-i2012.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-in-256gb-i2012", + "name": "Vivo iQOO 7 5G Standard Edition Dual SIM TD-LTE IN 256GB I2012", + "brand": "vivo", + "soc": "snapdragon-870", + "release_date": "2021-04-27", + "ram_gb": 8.0, + "battery_mah": 4400, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-iqoo-7-legend-5g-premium-edition-dual-sim-td-lte-in-256gb-i2009.json b/data/smartphone/vivo/2021/vivo-iqoo-7-legend-5g-premium-edition-dual-sim-td-lte-in-256gb-i2009.json new file mode 100644 index 00000000000..213241beb6f --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-iqoo-7-legend-5g-premium-edition-dual-sim-td-lte-in-256gb-i2009.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-iqoo-7-legend-5g-premium-edition-dual-sim-td-lte-in-256gb-i2009", + "name": "Vivo iQOO 7 Legend 5G Premium Edition Dual SIM TD-LTE IN 256GB I2009", + "brand": "vivo", + "soc": "snapdragon-888", + "release_date": "2021-05-02", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 209.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-iqoo-7-legend-5g-standard-edition-dual-sim-td-lte-in-128gb-i2009.json b/data/smartphone/vivo/2021/vivo-iqoo-7-legend-5g-standard-edition-dual-sim-td-lte-in-128gb-i2009.json new file mode 100644 index 00000000000..3fb246c6d32 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-iqoo-7-legend-5g-standard-edition-dual-sim-td-lte-in-128gb-i2009.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-iqoo-7-legend-5g-standard-edition-dual-sim-td-lte-in-128gb-i2009", + "name": "Vivo iQOO 7 Legend 5G Standard Edition Dual SIM TD-LTE IN 128GB I2009", + "brand": "vivo", + "soc": "snapdragon-888", + "release_date": "2021-05-02", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 209.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-iqoo-8-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2136a.json b/data/smartphone/vivo/2021/vivo-iqoo-8-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2136a.json new file mode 100644 index 00000000000..99d99f0a895 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-iqoo-8-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2136a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-iqoo-8-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2136a", + "name": "vivo iQOO 8 5G Premium Edition Dual SIM TD-LTE CN 256GB V2136A", + "brand": "vivo", + "soc": "snapdragon-888", + "release_date": "2021-08-01", + "ram_gb": 12.0, + "battery_mah": 4350, + "weight_g": 199.9, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3899, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-iqoo-8-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2136a.json b/data/smartphone/vivo/2021/vivo-iqoo-8-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2136a.json new file mode 100644 index 00000000000..8717dd24f98 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-iqoo-8-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2136a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-iqoo-8-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2136a", + "name": "vivo iQOO 8 5G Standard Edition Dual SIM TD-LTE CN 128GB V2136A", + "brand": "vivo", + "soc": "snapdragon-888", + "release_date": "2021-08-01", + "ram_gb": 8.0, + "battery_mah": 4350, + "weight_g": 199.9, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-iqoo-8-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2141a.json b/data/smartphone/vivo/2021/vivo-iqoo-8-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2141a.json new file mode 100644 index 00000000000..1384c4dcc73 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-iqoo-8-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2141a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-iqoo-8-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2141a", + "name": "vivo iQOO 8 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB V2141A", + "brand": "vivo", + "soc": "snapdragon-888-plus", + "release_date": "2021-08-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 203.9, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 518 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-iqoo-8-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2141a.json b/data/smartphone/vivo/2021/vivo-iqoo-8-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2141a.json new file mode 100644 index 00000000000..c2c598dbe72 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-iqoo-8-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2141a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-iqoo-8-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2141a", + "name": "vivo iQOO 8 Pro 5G Premium Edition Dual SIM TD-LTE CN 512GB V2141A", + "brand": "vivo", + "soc": "snapdragon-888-plus", + "release_date": "2021-08-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 203.9, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.78, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 518 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-iqoo-8-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2141a.json b/data/smartphone/vivo/2021/vivo-iqoo-8-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2141a.json new file mode 100644 index 00000000000..b38c531784c --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-iqoo-8-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2141a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-iqoo-8-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2141a", + "name": "vivo iQOO 8 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB V2141A", + "brand": "vivo", + "soc": "snapdragon-888-plus", + "release_date": "2021-08-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 203.9, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 518 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 4999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-iqoo-neo5-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2055a.json b/data/smartphone/vivo/2021/vivo-iqoo-neo5-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2055a.json new file mode 100644 index 00000000000..bf61b4d8141 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-iqoo-neo5-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2055a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-iqoo-neo5-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2055a", + "name": "Vivo iQOO Neo5 5G Premium Edition Dual SIM TD-LTE CN 256GB V2055A", + "brand": "vivo", + "soc": "snapdragon-870", + "release_date": "2021-03-23", + "ram_gb": 12.0, + "battery_mah": 4400, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-iqoo-neo5-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2055a.json b/data/smartphone/vivo/2021/vivo-iqoo-neo5-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2055a.json new file mode 100644 index 00000000000..e7d3dbe242f --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-iqoo-neo5-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2055a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-iqoo-neo5-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2055a", + "name": "Vivo iQOO Neo5 5G Standard Edition Dual SIM TD-LTE CN 128GB V2055A", + "brand": "vivo", + "soc": "snapdragon-870", + "release_date": "2021-03-23", + "ram_gb": 8.0, + "battery_mah": 4400, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-iqoo-neo5-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2055a.json b/data/smartphone/vivo/2021/vivo-iqoo-neo5-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2055a.json new file mode 100644 index 00000000000..21d3e4a3231 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-iqoo-neo5-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2055a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-iqoo-neo5-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2055a", + "name": "Vivo iQOO Neo5 5G Standard Edition Dual SIM TD-LTE CN 256GB V2055A", + "brand": "vivo", + "soc": "snapdragon-870", + "release_date": "2021-03-23", + "ram_gb": 8.0, + "battery_mah": 4400, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2699, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-iqoo-u3x-5g-premium-edition-dual-sim-td-lte-cn-64gb-v2106a.json b/data/smartphone/vivo/2021/vivo-iqoo-u3x-5g-premium-edition-dual-sim-td-lte-cn-64gb-v2106a.json new file mode 100644 index 00000000000..e0939f226f8 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-iqoo-u3x-5g-premium-edition-dual-sim-td-lte-cn-64gb-v2106a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-iqoo-u3x-5g-premium-edition-dual-sim-td-lte-cn-64gb-v2106a", + "name": "Vivo iQOO U3x 5G Premium Edition Dual SIM TD-LTE CN 64GB V2106A", + "brand": "vivo", + "soc": "snapdragon-480", + "release_date": "2021-04-02", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 185.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1199, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-iqoo-u3x-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2106a.json b/data/smartphone/vivo/2021/vivo-iqoo-u3x-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2106a.json new file mode 100644 index 00000000000..103a3a09115 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-iqoo-u3x-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2106a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-iqoo-u3x-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2106a", + "name": "Vivo iQOO U3x 5G Standard Edition Dual SIM TD-LTE CN 128GB V2106A", + "brand": "vivo", + "soc": "snapdragon-480", + "release_date": "2021-04-02", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 185.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1199, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-iqoo-u3x-5g-top-edition-dual-sim-td-lte-cn-128gb-v2106a.json b/data/smartphone/vivo/2021/vivo-iqoo-u3x-5g-top-edition-dual-sim-td-lte-cn-128gb-v2106a.json new file mode 100644 index 00000000000..f1d2907e9cc --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-iqoo-u3x-5g-top-edition-dual-sim-td-lte-cn-128gb-v2106a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-iqoo-u3x-5g-top-edition-dual-sim-td-lte-cn-128gb-v2106a", + "name": "Vivo iQOO U3x 5G Top Edition Dual SIM TD-LTE CN 128GB V2106A", + "brand": "vivo", + "soc": "snapdragon-480", + "release_date": "2021-04-02", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 185.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-iqoo-u3x-normal-2021-premium-edition-dual-sim-td-lte-cn-v2143a.json b/data/smartphone/vivo/2021/vivo-iqoo-u3x-normal-2021-premium-edition-dual-sim-td-lte-cn-v2143a.json new file mode 100644 index 00000000000..e59589c8dc8 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-iqoo-u3x-normal-2021-premium-edition-dual-sim-td-lte-cn-v2143a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-iqoo-u3x-normal-2021-premium-edition-dual-sim-td-lte-cn-v2143a", + "name": "Vivo iQOO U3x Normal 2021 Premium Edition Dual SIM TD-LTE CN V2143A", + "brand": "vivo", + "soc": "helio-g80", + "release_date": "2021-06-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 191.4, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 1099, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-iqoo-u3x-normal-2021-standard-edition-dual-sim-td-lte-cn-v2143a.json b/data/smartphone/vivo/2021/vivo-iqoo-u3x-normal-2021-standard-edition-dual-sim-td-lte-cn-v2143a.json new file mode 100644 index 00000000000..b214acbded0 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-iqoo-u3x-normal-2021-standard-edition-dual-sim-td-lte-cn-v2143a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-iqoo-u3x-normal-2021-standard-edition-dual-sim-td-lte-cn-v2143a", + "name": "Vivo iQOO U3x Normal 2021 Standard Edition Dual SIM TD-LTE CN V2143A", + "brand": "vivo", + "soc": "helio-g80", + "release_date": "2021-06-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 191.4, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 899, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-s10-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2121a.json b/data/smartphone/vivo/2021/vivo-s10-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2121a.json new file mode 100644 index 00000000000..e1b1826221b --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-s10-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2121a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-s10-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2121a", + "name": "Vivo S10 5G 2021 Standard Edition Dual SIM TD-LTE CN 128GB V2121A", + "brand": "vivo", + "soc": "dimensity-1100", + "release_date": "2021-07-01", + "ram_gb": 8.0, + "battery_mah": 4050, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 2799, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-s10-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-v2121a.json b/data/smartphone/vivo/2021/vivo-s10-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-v2121a.json new file mode 100644 index 00000000000..0057473c9eb --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-s10-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-v2121a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-s10-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-v2121a", + "name": "Vivo S10 5G 2021 Standard Edition Dual SIM TD-LTE CN 256GB V2121A", + "brand": "vivo", + "soc": "dimensity-1100", + "release_date": "2021-07-01", + "ram_gb": 8.0, + "battery_mah": 4050, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 2999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-s10-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-v2121a.json b/data/smartphone/vivo/2021/vivo-s10-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-v2121a.json new file mode 100644 index 00000000000..b673c6279ed --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-s10-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-v2121a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-s10-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-v2121a", + "name": "Vivo S10 Pro 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB V2121A", + "brand": "vivo", + "soc": "dimensity-1100", + "release_date": "2021-07-22", + "ram_gb": 12.0, + "battery_mah": 4050, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3399, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-s10-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2121a.json b/data/smartphone/vivo/2021/vivo-s10-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2121a.json new file mode 100644 index 00000000000..a888d73dd67 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-s10-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2121a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-s10-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2121a", + "name": "Vivo S10 Pro 5G 2021 Standard Edition Dual SIM TD-LTE CN 128GB V2121A", + "brand": "vivo", + "soc": "dimensity-1100", + "release_date": "2021-08-01", + "ram_gb": 8.0, + "battery_mah": 4050, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 2999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-s9-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-v2072a.json b/data/smartphone/vivo/2021/vivo-s9-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-v2072a.json new file mode 100644 index 00000000000..90e1215cb5c --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-s9-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-v2072a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-s9-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-v2072a", + "name": "Vivo S9 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB V2072A", + "brand": "vivo", + "soc": "dimensity-1100", + "release_date": "2021-03-13", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3299, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-s9-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2072a.json b/data/smartphone/vivo/2021/vivo-s9-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2072a.json new file mode 100644 index 00000000000..cb47513200e --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-s9-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2072a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-s9-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2072a", + "name": "Vivo S9 5G 2021 Standard Edition Dual SIM TD-LTE CN 128GB V2072A", + "brand": "vivo", + "soc": "dimensity-1100", + "release_date": "2021-03-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 2999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-s9e-5g-2020-dual-sim-td-lte-cn-128gb-v2048a.json b/data/smartphone/vivo/2021/vivo-s9e-5g-2020-dual-sim-td-lte-cn-128gb-v2048a.json new file mode 100644 index 00000000000..a7153136f55 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-s9e-5g-2020-dual-sim-td-lte-cn-128gb-v2048a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-s9e-5g-2020-dual-sim-td-lte-cn-128gb-v2048a", + "name": "Vivo S9e 5G 2020 Dual SIM TD-LTE CN 128GB V2048A", + "brand": "vivo", + "soc": "dimensity-820", + "release_date": "2021-03-29", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 168.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2404", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2399, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-s9e-5g-2020-dual-sim-td-lte-cn-256gb-v2048a.json b/data/smartphone/vivo/2021/vivo-s9e-5g-2020-dual-sim-td-lte-cn-256gb-v2048a.json new file mode 100644 index 00000000000..f90eb2dad83 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-s9e-5g-2020-dual-sim-td-lte-cn-256gb-v2048a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-s9e-5g-2020-dual-sim-td-lte-cn-256gb-v2048a", + "name": "Vivo S9e 5G 2020 Dual SIM TD-LTE CN 256GB V2048A", + "brand": "vivo", + "soc": "dimensity-820", + "release_date": "2021-03-29", + "ram_gb": 8.0, + "battery_mah": 4100, + "weight_g": 168.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2404", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2699, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-v21e-5g-dual-sim-td-lte-v1-in-128gb-v2055.json b/data/smartphone/vivo/2021/vivo-v21e-5g-dual-sim-td-lte-v1-in-128gb-v2055.json new file mode 100644 index 00000000000..137fa9c9bf2 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-v21e-5g-dual-sim-td-lte-v1-in-128gb-v2055.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-v21e-5g-dual-sim-td-lte-v1-in-128gb-v2055", + "name": "Vivo V21e 5G Dual SIM TD-LTE V1 IN 128GB V2055", + "brand": "vivo", + "soc": "dimensity-700", + "release_date": "2021-06-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 167.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-x60-5g-premium-edition-dual-sim-td-lte-apac-v3-256gb-v2045.json b/data/smartphone/vivo/2021/vivo-x60-5g-premium-edition-dual-sim-td-lte-apac-v3-256gb-v2045.json new file mode 100644 index 00000000000..f975d317b85 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-x60-5g-premium-edition-dual-sim-td-lte-apac-v3-256gb-v2045.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-x60-5g-premium-edition-dual-sim-td-lte-apac-v3-256gb-v2045", + "name": "Vivo X60 5G Premium Edition Dual SIM TD-LTE APAC V3 256GB V2045", + "brand": "vivo", + "soc": "snapdragon-870", + "release_date": "2021-03-01", + "ram_gb": 12.0, + "battery_mah": 4300, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2699, + "market_countries": "Malaysia , Philippines , Singapore", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-x60-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2046a.json b/data/smartphone/vivo/2021/vivo-x60-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2046a.json new file mode 100644 index 00000000000..c7232a41f81 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-x60-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2046a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-x60-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2046a", + "name": "Vivo X60 5G Premium Edition Dual SIM TD-LTE CN 256GB V2046A", + "brand": "vivo", + "soc": "exynos-1080", + "release_date": "2021-01-08", + "ram_gb": 12.0, + "battery_mah": 4300, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 3998, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-x60-5g-premium-edition-dual-sim-td-lte-in-v1-256gb-v2045.json b/data/smartphone/vivo/2021/vivo-x60-5g-premium-edition-dual-sim-td-lte-in-v1-256gb-v2045.json new file mode 100644 index 00000000000..dad7bda1c2c --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-x60-5g-premium-edition-dual-sim-td-lte-in-v1-256gb-v2045.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-x60-5g-premium-edition-dual-sim-td-lte-in-v1-256gb-v2045", + "name": "Vivo X60 5G Premium Edition Dual SIM TD-LTE IN V1 256GB V2045", + "brand": "vivo", + "soc": "snapdragon-870", + "release_date": "2021-03-01", + "ram_gb": 12.0, + "battery_mah": 4300, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-x60-5g-standard-edition-dual-sim-td-lte-apac-v3-128gb-v2045.json b/data/smartphone/vivo/2021/vivo-x60-5g-standard-edition-dual-sim-td-lte-apac-v3-128gb-v2045.json new file mode 100644 index 00000000000..5fbec41a0a4 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-x60-5g-standard-edition-dual-sim-td-lte-apac-v3-128gb-v2045.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-x60-5g-standard-edition-dual-sim-td-lte-apac-v3-128gb-v2045", + "name": "Vivo X60 5G Standard Edition Dual SIM TD-LTE APAC V3 128GB V2045", + "brand": "vivo", + "soc": "snapdragon-870", + "release_date": "2021-03-01", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "HK , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-x60-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2046a.json b/data/smartphone/vivo/2021/vivo-x60-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2046a.json new file mode 100644 index 00000000000..9df593df2b5 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-x60-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2046a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-x60-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2046a", + "name": "Vivo X60 5G Standard Edition Dual SIM TD-LTE CN 128GB V2046A", + "brand": "vivo", + "soc": "exynos-1080", + "release_date": "2021-01-08", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 3498, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-x60-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2046a.json b/data/smartphone/vivo/2021/vivo-x60-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2046a.json new file mode 100644 index 00000000000..cfb4a3edfa7 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-x60-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2046a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-x60-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2046a", + "name": "Vivo X60 5G Standard Edition Dual SIM TD-LTE CN 256GB V2046A", + "brand": "vivo", + "soc": "exynos-1080", + "release_date": "2021-01-08", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 3798, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-x60-5g-standard-edition-dual-sim-td-lte-id-v2-128gb-v2045.json b/data/smartphone/vivo/2021/vivo-x60-5g-standard-edition-dual-sim-td-lte-id-v2-128gb-v2045.json new file mode 100644 index 00000000000..4f48c663f6e --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-x60-5g-standard-edition-dual-sim-td-lte-id-v2-128gb-v2045.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-x60-5g-standard-edition-dual-sim-td-lte-id-v2-128gb-v2045", + "name": "Vivo X60 5G Standard Edition Dual SIM TD-LTE ID V2 128GB V2045", + "brand": "vivo", + "soc": "snapdragon-870", + "release_date": "2021-03-26", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-x60-5g-standard-edition-dual-sim-td-lte-in-v1-128gb-v2045.json b/data/smartphone/vivo/2021/vivo-x60-5g-standard-edition-dual-sim-td-lte-in-v1-128gb-v2045.json new file mode 100644 index 00000000000..686b8fcb943 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-x60-5g-standard-edition-dual-sim-td-lte-in-v1-128gb-v2045.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-x60-5g-standard-edition-dual-sim-td-lte-in-v1-128gb-v2045", + "name": "Vivo X60 5G Standard Edition Dual SIM TD-LTE IN V1 128GB V2045", + "brand": "vivo", + "soc": "snapdragon-870", + "release_date": "2021-03-26", + "ram_gb": 8.0, + "battery_mah": 4300, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-x60-curved-screen-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2059a.json b/data/smartphone/vivo/2021/vivo-x60-curved-screen-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2059a.json new file mode 100644 index 00000000000..3d2da53480d --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-x60-curved-screen-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2059a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-x60-curved-screen-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2059a", + "name": "Vivo X60 Curved Screen 5G Premium Edition Dual SIM TD-LTE CN 256GB V2059A", + "brand": "vivo", + "soc": "exynos-1080", + "release_date": "2021-03-01", + "ram_gb": 12.0, + "battery_mah": 4200, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 3999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-x60-curved-screen-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2059a.json b/data/smartphone/vivo/2021/vivo-x60-curved-screen-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2059a.json new file mode 100644 index 00000000000..0c9b5d24c6e --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-x60-curved-screen-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2059a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-x60-curved-screen-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2059a", + "name": "Vivo X60 Curved Screen 5G Standard Edition Dual SIM TD-LTE CN 128GB V2059A", + "brand": "vivo", + "soc": "exynos-1080", + "release_date": "2021-03-01", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 3499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-x60-curved-screen-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2059a.json b/data/smartphone/vivo/2021/vivo-x60-curved-screen-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2059a.json new file mode 100644 index 00000000000..8b76e20acd3 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-x60-curved-screen-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2059a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-x60-curved-screen-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2059a", + "name": "Vivo X60 Curved Screen 5G Standard Edition Dual SIM TD-LTE CN 256GB V2059A", + "brand": "vivo", + "soc": "exynos-1080", + "release_date": "2021-03-01", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 176.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 3799, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-x60-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2047a.json b/data/smartphone/vivo/2021/vivo-x60-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2047a.json new file mode 100644 index 00000000000..6c221fa49e3 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-x60-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2047a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-x60-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2047a", + "name": "Vivo X60 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB V2047A", + "brand": "vivo", + "soc": "exynos-1080", + "release_date": "2021-01-08", + "ram_gb": 12.0, + "battery_mah": 4200, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 4498, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-x60-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2056a.json b/data/smartphone/vivo/2021/vivo-x60-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2056a.json new file mode 100644 index 00000000000..9cbb39c5cb1 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-x60-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2056a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-x60-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2056a", + "name": "Vivo X60 Pro+ 5G Premium Edition Dual SIM TD-LTE CN 256GB V2056A", + "brand": "vivo", + "soc": "snapdragon-888", + "release_date": "2021-01-31", + "ram_gb": 12.0, + "battery_mah": 4200, + "weight_g": 190.6, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-x60-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2056a.json b/data/smartphone/vivo/2021/vivo-x60-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2056a.json new file mode 100644 index 00000000000..be6c538b190 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-x60-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2056a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-x60-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2056a", + "name": "Vivo X60 Pro+ 5G Standard Edition Dual SIM TD-LTE CN 128GB V2056A", + "brand": "vivo", + "soc": "snapdragon-888", + "release_date": "2021-01-31", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 190.6, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 4998, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-x60t-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2056a.json b/data/smartphone/vivo/2021/vivo-x60t-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2056a.json new file mode 100644 index 00000000000..6035ebe3f06 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-x60t-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2056a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-x60t-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2056a", + "name": "Vivo X60t Pro+ 5G Premium Edition Dual SIM TD-LTE CN 256GB V2056A", + "brand": "vivo", + "soc": "snapdragon-888", + "release_date": "2021-06-01", + "ram_gb": 12.0, + "battery_mah": 4200, + "weight_g": 190.6, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-x60t-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2056a.json b/data/smartphone/vivo/2021/vivo-x60t-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2056a.json new file mode 100644 index 00000000000..9b124e25c10 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-x60t-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2056a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-x60t-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2056a", + "name": "Vivo X60t Pro+ 5G Standard Edition Dual SIM TD-LTE CN 128GB V2056A", + "brand": "vivo", + "soc": "snapdragon-888", + "release_date": "2021-06-01", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 190.6, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 4999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-x70-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2133a.json b/data/smartphone/vivo/2021/vivo-x70-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2133a.json new file mode 100644 index 00000000000..cb70dfe347c --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-x70-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2133a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-x70-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2133a", + "name": "Vivo X70 5G Premium Edition Dual SIM TD-LTE CN 256GB V2133A", + "brand": "vivo", + "soc": "dimensity-1200", + "release_date": "2021-09-01", + "ram_gb": 12.0, + "battery_mah": 4400, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 40.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 4299, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-x70-5g-premium-edition-global-dual-sim-td-lte-v2-128gb-v2104.json b/data/smartphone/vivo/2021/vivo-x70-5g-premium-edition-global-dual-sim-td-lte-v2-128gb-v2104.json new file mode 100644 index 00000000000..651360dd65a --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-x70-5g-premium-edition-global-dual-sim-td-lte-v2-128gb-v2104.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-x70-5g-premium-edition-global-dual-sim-td-lte-v2-128gb-v2104", + "name": "Vivo X70 5G Premium Edition Global Dual SIM TD-LTE V2 128GB V2104", + "brand": "vivo", + "soc": "dimensity-1200", + "release_date": "2021-09-24", + "ram_gb": 8.0, + "battery_mah": 4400, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 40.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 2499, + "market_countries": "Indonesia , Malaysia , Singapore", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-x70-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2133a.json b/data/smartphone/vivo/2021/vivo-x70-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2133a.json new file mode 100644 index 00000000000..17da0f5b077 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-x70-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2133a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-x70-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2133a", + "name": "Vivo X70 5G Standard Edition Dual SIM TD-LTE CN 128GB V2133A", + "brand": "vivo", + "soc": "dimensity-1200", + "release_date": "2021-09-01", + "ram_gb": 8.0, + "battery_mah": 4400, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 40.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3699, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-x70-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2133a.json b/data/smartphone/vivo/2021/vivo-x70-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2133a.json new file mode 100644 index 00000000000..aa9bf9e6716 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-x70-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2133a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-x70-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2133a", + "name": "Vivo X70 5G Standard Edition Dual SIM TD-LTE CN 256GB V2133A", + "brand": "vivo", + "soc": "dimensity-1200", + "release_date": "2021-09-01", + "ram_gb": 8.0, + "battery_mah": 4400, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 40.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2134a.json b/data/smartphone/vivo/2021/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2134a.json new file mode 100644 index 00000000000..18ff6c2dd38 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2134a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2134a", + "name": "Vivo X70 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB V2134A", + "brand": "vivo", + "soc": "exynos-1080", + "release_date": "2021-09-16", + "ram_gb": 12.0, + "battery_mah": 4450, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 4799, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2145a.json b/data/smartphone/vivo/2021/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2145a.json new file mode 100644 index 00000000000..413c262cd66 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2145a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2145a", + "name": "Vivo X70 Pro+ 5G Premium Edition Dual SIM TD-LTE CN 256GB V2145A", + "brand": "vivo", + "soc": "snapdragon-888-plus", + "release_date": "2021-09-17", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 213.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 518 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2134a.json b/data/smartphone/vivo/2021/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2134a.json new file mode 100644 index 00000000000..5889469d98b --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2134a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2134a", + "name": "Vivo X70 Pro 5G Premium Edition Dual SIM TD-LTE CN 512GB V2134A", + "brand": "vivo", + "soc": "exynos-1080", + "release_date": "2021-09-16", + "ram_gb": 12.0, + "battery_mah": 4450, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2145a.json b/data/smartphone/vivo/2021/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2145a.json new file mode 100644 index 00000000000..b63a3add606 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2145a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2145a", + "name": "Vivo X70 Pro+ 5G Premium Edition Dual SIM TD-LTE CN 512GB V2145A", + "brand": "vivo", + "soc": "snapdragon-888-plus", + "release_date": "2021-09-17", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 213.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 518 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-v1-in-256gb-v2105.json b/data/smartphone/vivo/2021/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-v1-in-256gb-v2105.json new file mode 100644 index 00000000000..90af765a8d9 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-v1-in-256gb-v2105.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-v1-in-256gb-v2105", + "name": "Vivo X70 Pro 5G Premium Edition Dual SIM TD-LTE V1 IN 256GB V2105", + "brand": "vivo", + "soc": "dimensity-1200", + "release_date": "2021-09-24", + "ram_gb": 12.0, + "battery_mah": 4450, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-x70-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-v2114.json b/data/smartphone/vivo/2021/vivo-x70-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-v2114.json new file mode 100644 index 00000000000..7edd35f0219 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-x70-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-v2114.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-x70-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-v2114", + "name": "Vivo X70 Pro+ 5G Premium Edition Global Dual SIM TD-LTE 256GB V2114", + "brand": "vivo", + "soc": "snapdragon-888-plus", + "release_date": "2021-09-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 213.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 518 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-x70-pro-5g-premium-edition-global-dual-sim-td-lte-v2-256gb-v2105.json b/data/smartphone/vivo/2021/vivo-x70-pro-5g-premium-edition-global-dual-sim-td-lte-v2-256gb-v2105.json new file mode 100644 index 00000000000..18f581c077e --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-x70-pro-5g-premium-edition-global-dual-sim-td-lte-v2-256gb-v2105.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-x70-pro-5g-premium-edition-global-dual-sim-td-lte-v2-256gb-v2105", + "name": "Vivo X70 Pro 5G Premium Edition Global Dual SIM TD-LTE V2 256GB V2105", + "brand": "vivo", + "soc": "dimensity-1200", + "release_date": "2021-09-24", + "ram_gb": 12.0, + "battery_mah": 4450, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3299, + "market_countries": "Indonesia , Malaysia , Singapore", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2134a.json b/data/smartphone/vivo/2021/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2134a.json new file mode 100644 index 00000000000..d45aacdc8c4 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2134a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2134a", + "name": "Vivo X70 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB V2134A", + "brand": "vivo", + "soc": "exynos-1080", + "release_date": "2021-09-16", + "ram_gb": 8.0, + "battery_mah": 4450, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 4299, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2134a.json b/data/smartphone/vivo/2021/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2134a.json new file mode 100644 index 00000000000..45c34b1b2dc --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2134a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2134a", + "name": "Vivo X70 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB V2134A", + "brand": "vivo", + "soc": "exynos-1080", + "release_date": "2021-09-16", + "ram_gb": 8.0, + "battery_mah": 4450, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 4599, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2145a.json b/data/smartphone/vivo/2021/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2145a.json new file mode 100644 index 00000000000..3ebf0cf2357 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2145a.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2145a", + "name": "Vivo X70 Pro+ 5G Standard Edition Dual SIM TD-LTE CN 256GB V2145A", + "brand": "vivo", + "soc": "snapdragon-888-plus", + "release_date": "2021-09-17", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 213.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 518 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-v1-in-128gb-v2105.json b/data/smartphone/vivo/2021/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-v1-in-128gb-v2105.json new file mode 100644 index 00000000000..c4e2e1706a6 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-v1-in-128gb-v2105.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-v1-in-128gb-v2105", + "name": "Vivo X70 Pro 5G Standard Edition Dual SIM TD-LTE V1 IN 128GB V2105", + "brand": "vivo", + "soc": "dimensity-1200", + "release_date": "2021-09-24", + "ram_gb": 8.0, + "battery_mah": 4450, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-v1-in-256gb-v2105.json b/data/smartphone/vivo/2021/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-v1-in-256gb-v2105.json new file mode 100644 index 00000000000..4e82f8af3bb --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-v1-in-256gb-v2105.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-v1-in-256gb-v2105", + "name": "Vivo X70 Pro 5G Standard Edition Dual SIM TD-LTE V1 IN 256GB V2105", + "brand": "vivo", + "soc": "dimensity-1200", + "release_date": "2021-09-24", + "ram_gb": 8.0, + "battery_mah": 4450, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 44, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-y12a-2021-dual-sim-td-lte-v1-my-bd-v2102.json b/data/smartphone/vivo/2021/vivo-y12a-2021-dual-sim-td-lte-v1-my-bd-v2102.json new file mode 100644 index 00000000000..ce3d225bc05 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-y12a-2021-dual-sim-td-lte-v1-my-bd-v2102.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-y12a-2021-dual-sim-td-lte-v1-my-bd-v2102", + "name": "Vivo Y12a 2021 Dual SIM TD-LTE V1 MY BD V2102", + "brand": "vivo", + "soc": "snapdragon-439", + "release_date": "2021-06-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "msrp_usd": 529, + "market_countries": "Bangladesh , Myanmar", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-y12a-2021-dual-sim-td-lte-v2-th-ph-v2102.json b/data/smartphone/vivo/2021/vivo-y12a-2021-dual-sim-td-lte-v2-th-ph-v2102.json new file mode 100644 index 00000000000..2035c12a6a5 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-y12a-2021-dual-sim-td-lte-v2-th-ph-v2102.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-y12a-2021-dual-sim-td-lte-v2-th-ph-v2102", + "name": "Vivo Y12a 2021 Dual SIM TD-LTE V2 TH PH V2102", + "brand": "vivo", + "soc": "snapdragon-439", + "release_date": "2021-06-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "msrp_usd": 4799, + "market_countries": "Philippines , Thailand", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-y12g-2021-dual-sim-td-lte-v1-in-64gb-v2068.json b/data/smartphone/vivo/2021/vivo-y12g-2021-dual-sim-td-lte-v1-in-64gb-v2068.json new file mode 100644 index 00000000000..71b08f245c2 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-y12g-2021-dual-sim-td-lte-v1-in-64gb-v2068.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y12g-2021-dual-sim-td-lte-v1-in-64gb-v2068", + "name": "Vivo Y12G 2021 Dual SIM TD-LTE V1 IN 64GB V2068", + "brand": "vivo", + "soc": "snapdragon-439", + "release_date": "2021-08-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-y12g-2021-dual-sim-td-lte-v1-in-id-32gb-v2068.json b/data/smartphone/vivo/2021/vivo-y12g-2021-dual-sim-td-lte-v1-in-id-32gb-v2068.json new file mode 100644 index 00000000000..b719af4ee19 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-y12g-2021-dual-sim-td-lte-v1-in-id-32gb-v2068.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y12g-2021-dual-sim-td-lte-v1-in-id-32gb-v2068", + "name": "Vivo Y12G 2021 Dual SIM TD-LTE V1 IN ID 32GB V2068", + "brand": "vivo", + "soc": "snapdragon-439", + "release_date": "2021-08-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-y12s-2021-dual-sim-td-lte-v1-in-32gb-v2033-v2069.json b/data/smartphone/vivo/2021/vivo-y12s-2021-dual-sim-td-lte-v1-in-32gb-v2033-v2069.json new file mode 100644 index 00000000000..4e957654b0d --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-y12s-2021-dual-sim-td-lte-v1-in-32gb-v2033-v2069.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y12s-2021-dual-sim-td-lte-v1-in-32gb-v2033-v2069", + "name": "Vivo Y12s 2021 Dual SIM TD-LTE V1 IN 32GB V2033 / V2069", + "brand": "vivo", + "soc": "snapdragon-439", + "release_date": "2021-03-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-y20-2021-dual-sim-td-lte-v2-my-bd-64gb.json b/data/smartphone/vivo/2021/vivo-y20-2021-dual-sim-td-lte-v2-my-bd-64gb.json new file mode 100644 index 00000000000..b61173f1893 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-y20-2021-dual-sim-td-lte-v2-my-bd-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-y20-2021-dual-sim-td-lte-v2-my-bd-64gb", + "name": "Vivo Y20 2021 Dual SIM TD-LTE V2 MY BD 64GB", + "brand": "vivo", + "soc": "helio-p35", + "release_date": "2021-01-04", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "msrp_usd": 599, + "market_countries": "Bangladesh , Malaysia , Pakistan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-y20g-2021-dual-sim-td-lte-in-64gb-v2065.json b/data/smartphone/vivo/2021/vivo-y20g-2021-dual-sim-td-lte-in-64gb-v2065.json new file mode 100644 index 00000000000..24eafe1cd01 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-y20g-2021-dual-sim-td-lte-in-64gb-v2065.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y20g-2021-dual-sim-td-lte-in-64gb-v2065", + "name": "Vivo Y20G 2021 Dual SIM TD-LTE IN 64GB V2065", + "brand": "vivo", + "soc": "helio-p35", + "release_date": "2021-03-21", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 192.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-y21-2021-dual-sim-td-lte-in-128gb-v2111.json b/data/smartphone/vivo/2021/vivo-y21-2021-dual-sim-td-lte-in-128gb-v2111.json new file mode 100644 index 00000000000..663434c3287 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-y21-2021-dual-sim-td-lte-in-128gb-v2111.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y21-2021-dual-sim-td-lte-in-128gb-v2111", + "name": "Vivo Y21 2021 Dual SIM TD-LTE IN 128GB V2111", + "brand": "vivo", + "soc": "helio-p35", + "release_date": "2021-09-04", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-y21-2021-dual-sim-td-lte-in-64gb-v2111.json b/data/smartphone/vivo/2021/vivo-y21-2021-dual-sim-td-lte-in-64gb-v2111.json new file mode 100644 index 00000000000..d774695b3c7 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-y21-2021-dual-sim-td-lte-in-64gb-v2111.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y21-2021-dual-sim-td-lte-in-64gb-v2111", + "name": "Vivo Y21 2021 Dual SIM TD-LTE IN 64GB V2111", + "brand": "vivo", + "soc": "helio-p35", + "release_date": "2021-09-04", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-y21s-2021-premium-edition-dual-sim-td-lte-vn-v3-v2110.json b/data/smartphone/vivo/2021/vivo-y21s-2021-premium-edition-dual-sim-td-lte-vn-v3-v2110.json new file mode 100644 index 00000000000..d5c93066a5c --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-y21s-2021-premium-edition-dual-sim-td-lte-vn-v3-v2110.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-y21s-2021-premium-edition-dual-sim-td-lte-vn-v3-v2110", + "name": "Vivo Y21s 2021 Premium Edition Dual SIM TD-LTE VN V3 V2110", + "brand": "vivo", + "soc": "helio-g80", + "release_date": "2021-10-12", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-y21s-2021-standard-edition-dual-sim-td-lte-au-v4-v2110.json b/data/smartphone/vivo/2021/vivo-y21s-2021-standard-edition-dual-sim-td-lte-au-v4-v2110.json new file mode 100644 index 00000000000..97fd4861c17 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-y21s-2021-standard-edition-dual-sim-td-lte-au-v4-v2110.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-y21s-2021-standard-edition-dual-sim-td-lte-au-v4-v2110", + "name": "Vivo Y21s 2021 Standard Edition Dual SIM TD-LTE AU V4 V2110", + "brand": "vivo", + "soc": "helio-g80", + "release_date": "2021-10-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 199, + "market_countries": "Australia", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-y21s-2021-standard-edition-dual-sim-td-lte-id-v1-v2110.json b/data/smartphone/vivo/2021/vivo-y21s-2021-standard-edition-dual-sim-td-lte-id-v1-v2110.json new file mode 100644 index 00000000000..ba0f307aecf --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-y21s-2021-standard-edition-dual-sim-td-lte-id-v1-v2110.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-y21s-2021-standard-edition-dual-sim-td-lte-id-v1-v2110", + "name": "Vivo Y21s 2021 Standard Edition Dual SIM TD-LTE ID V1 V2110", + "brand": "vivo", + "soc": "helio-g80", + "release_date": "2021-10-12", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-y21s-2021-standard-edition-dual-sim-td-lte-vn-sg-v3-v2110.json b/data/smartphone/vivo/2021/vivo-y21s-2021-standard-edition-dual-sim-td-lte-vn-sg-v3-v2110.json new file mode 100644 index 00000000000..320a963c6f3 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-y21s-2021-standard-edition-dual-sim-td-lte-vn-sg-v3-v2110.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-y21s-2021-standard-edition-dual-sim-td-lte-vn-sg-v3-v2110", + "name": "Vivo Y21s 2021 Standard Edition Dual SIM TD-LTE VN SG V3 V2110", + "brand": "vivo", + "soc": "helio-g80", + "release_date": "2021-10-12", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Cambodia , Singapore , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-y31s-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2054a.json b/data/smartphone/vivo/2021/vivo-y31s-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2054a.json new file mode 100644 index 00000000000..067b33e03b8 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-y31s-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2054a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-y31s-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2054a", + "name": "vivo Y31s 5G Premium Edition Dual SIM TD-LTE CN 128GB V2054A", + "brand": "vivo", + "soc": "snapdragon-480", + "release_date": "2021-01-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 185.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1698, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-y31s-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2054a.json b/data/smartphone/vivo/2021/vivo-y31s-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2054a.json new file mode 100644 index 00000000000..f087f2c19dc --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-y31s-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2054a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-y31s-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2054a", + "name": "vivo Y31s 5G Standard Edition Dual SIM TD-LTE CN 128GB V2054A", + "brand": "vivo", + "soc": "snapdragon-480", + "release_date": "2021-01-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 185.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1498, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-y31s-standard-version-5g-dual-sim-td-lte-cn-128gb-v2068a-y31s-t2.json b/data/smartphone/vivo/2021/vivo-y31s-standard-version-5g-dual-sim-td-lte-cn-128gb-v2068a-y31s-t2.json new file mode 100644 index 00000000000..b24a7b00eea --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-y31s-standard-version-5g-dual-sim-td-lte-cn-128gb-v2068a-y31s-t2.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-y31s-standard-version-5g-dual-sim-td-lte-cn-128gb-v2068a-y31s-t2", + "name": "Vivo Y31s standard version 5G Dual SIM TD-LTE CN 128GB V2068A / Y31s t2", + "brand": "vivo", + "soc": "dimensity-700", + "release_date": "2021-06-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 189.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1599, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-y31s-t1-version-5g-dual-sim-td-lte-cn-64gb-v2068a.json b/data/smartphone/vivo/2021/vivo-y31s-t1-version-5g-dual-sim-td-lte-cn-64gb-v2068a.json new file mode 100644 index 00000000000..695a0ef7f38 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-y31s-t1-version-5g-dual-sim-td-lte-cn-64gb-v2068a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-y31s-t1-version-5g-dual-sim-td-lte-cn-64gb-v2068a", + "name": "Vivo Y31s t1 version 5G Dual SIM TD-LTE CN 64GB V2068A", + "brand": "vivo", + "soc": "dimensity-700", + "release_date": "2021-06-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 189.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1399, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-y33s-2021-premium-edition-dual-sim-td-lte-in-v2-v2109.json b/data/smartphone/vivo/2021/vivo-y33s-2021-premium-edition-dual-sim-td-lte-in-v2-v2109.json new file mode 100644 index 00000000000..a07d8e329e7 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-y33s-2021-premium-edition-dual-sim-td-lte-in-v2-v2109.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-y33s-2021-premium-edition-dual-sim-td-lte-in-v2-v2109", + "name": "Vivo Y33s 2021 Premium Edition Dual SIM TD-LTE IN V2 V2109", + "brand": "vivo", + "soc": "helio-g80", + "release_date": "2021-10-12", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-y52-5g-dual-sim-td-lte-v1-th-128gb-v2053.json b/data/smartphone/vivo/2021/vivo-y52-5g-dual-sim-td-lte-v1-th-128gb-v2053.json new file mode 100644 index 00000000000..79fa53cafdb --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-y52-5g-dual-sim-td-lte-v1-th-128gb-v2053.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y52-5g-dual-sim-td-lte-v1-th-128gb-v2053", + "name": "Vivo Y52 5G Dual SIM TD-LTE V1 TH 128GB V2053", + "brand": "vivo", + "soc": "dimensity-700", + "release_date": "2021-06-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-y52-5g-dual-sim-td-lte-v2-tw-128gb-v2053.json b/data/smartphone/vivo/2021/vivo-y52-5g-dual-sim-td-lte-v2-tw-128gb-v2053.json new file mode 100644 index 00000000000..98e6c3e643f --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-y52-5g-dual-sim-td-lte-v2-tw-128gb-v2053.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y52-5g-dual-sim-td-lte-v2-tw-128gb-v2053", + "name": "Vivo Y52 5G Dual SIM TD-LTE V2 TW 128GB V2053", + "brand": "vivo", + "soc": "dimensity-700", + "release_date": "2021-06-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Taiwan", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-y52-5g-global-dual-sim-td-lte-v3-128gb-v2053.json b/data/smartphone/vivo/2021/vivo-y52-5g-global-dual-sim-td-lte-v3-128gb-v2053.json new file mode 100644 index 00000000000..929b0139c00 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-y52-5g-global-dual-sim-td-lte-v3-128gb-v2053.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y52-5g-global-dual-sim-td-lte-v3-128gb-v2053", + "name": "Vivo Y52 5G Global Dual SIM TD-LTE V3 128GB V2053", + "brand": "vivo", + "soc": "dimensity-700", + "release_date": "2021-06-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Australia , South Africa", + "market_regions": "Africa , Australia" +} diff --git a/data/smartphone/vivo/2021/vivo-y52s-5g-2020-premium-edition-dual-sim-td-lte-cn-256gb-v2057a.json b/data/smartphone/vivo/2021/vivo-y52s-5g-2020-premium-edition-dual-sim-td-lte-cn-256gb-v2057a.json new file mode 100644 index 00000000000..c62c6a7f692 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-y52s-5g-2020-premium-edition-dual-sim-td-lte-cn-256gb-v2057a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-y52s-5g-2020-premium-edition-dual-sim-td-lte-cn-256gb-v2057a", + "name": "Vivo Y52s 5G 2020 Premium Edition Dual SIM TD-LTE CN 256GB V2057A", + "brand": "vivo", + "soc": "dimensity-720", + "release_date": "2021-04-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 185.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-y52s-t1-version-5g-dual-sim-td-lte-cn-128gb-v2054a.json b/data/smartphone/vivo/2021/vivo-y52s-t1-version-5g-dual-sim-td-lte-cn-128gb-v2054a.json new file mode 100644 index 00000000000..afac57a2d9f --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-y52s-t1-version-5g-dual-sim-td-lte-cn-128gb-v2054a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-y52s-t1-version-5g-dual-sim-td-lte-cn-128gb-v2054a", + "name": "vivo Y52s t1 version 5G Dual SIM TD-LTE CN 128GB V2054A", + "brand": "vivo", + "soc": "snapdragon-480", + "release_date": "2021-03-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 185.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1899, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-y52s-t1-version-5g-dual-sim-td-lte-cn-256gb-v2054a.json b/data/smartphone/vivo/2021/vivo-y52s-t1-version-5g-dual-sim-td-lte-cn-256gb-v2054a.json new file mode 100644 index 00000000000..23c66cbf8ed --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-y52s-t1-version-5g-dual-sim-td-lte-cn-256gb-v2054a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-y52s-t1-version-5g-dual-sim-td-lte-cn-256gb-v2054a", + "name": "vivo Y52s t1 version 5G Dual SIM TD-LTE CN 256GB V2054A", + "brand": "vivo", + "soc": "snapdragon-480", + "release_date": "2021-04-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 185.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2099, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-y53s-4g-dual-sim-td-lte-in-v2058.json b/data/smartphone/vivo/2021/vivo-y53s-4g-dual-sim-td-lte-in-v2058.json new file mode 100644 index 00000000000..023f0414ac6 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-y53s-4g-dual-sim-td-lte-in-v2058.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y53s-4g-dual-sim-td-lte-in-v2058", + "name": "Vivo Y53s 4G Dual SIM TD-LTE IN V2058", + "brand": "vivo", + "soc": "helio-g80", + "release_date": "2021-06-12", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-y53s-5g-dual-sim-td-lte-cn-128gb-v2111a.json b/data/smartphone/vivo/2021/vivo-y53s-5g-dual-sim-td-lte-cn-128gb-v2111a.json new file mode 100644 index 00000000000..5637c816092 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-y53s-5g-dual-sim-td-lte-cn-128gb-v2111a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-y53s-5g-dual-sim-td-lte-cn-128gb-v2111a", + "name": "vivo Y53s 5G Dual SIM TD-LTE CN 128GB V2111A", + "brand": "vivo", + "soc": "snapdragon-480", + "release_date": "2021-06-12", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 185.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1799, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-y53s-5g-dual-sim-td-lte-cn-256gb-v2111a.json b/data/smartphone/vivo/2021/vivo-y53s-5g-dual-sim-td-lte-cn-256gb-v2111a.json new file mode 100644 index 00000000000..14209e2b1d5 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-y53s-5g-dual-sim-td-lte-cn-256gb-v2111a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-y53s-5g-dual-sim-td-lte-cn-256gb-v2111a", + "name": "vivo Y53s 5G Dual SIM TD-LTE CN 256GB V2111A", + "brand": "vivo", + "soc": "snapdragon-480", + "release_date": "2021-06-12", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 185.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-y70t-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2002a.json b/data/smartphone/vivo/2021/vivo-y70t-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2002a.json new file mode 100644 index 00000000000..b91c79d1985 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-y70t-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2002a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-y70t-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2002a", + "name": "Vivo Y70t 5G Premium Edition Dual SIM TD-LTE CN 128GB V2002A", + "brand": "vivo", + "soc": "exynos-880", + "release_date": "2021-06-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB Micro-AB" + }, + "msrp_usd": 1699, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-y70t-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2002a.json b/data/smartphone/vivo/2021/vivo-y70t-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2002a.json new file mode 100644 index 00000000000..fcdce7ac235 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-y70t-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2002a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-y70t-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2002a", + "name": "Vivo Y70t 5G Premium Edition Dual SIM TD-LTE CN 256GB V2002A", + "brand": "vivo", + "soc": "exynos-880", + "release_date": "2021-06-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB Micro-AB" + }, + "msrp_usd": 1999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-y70t-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2002a.json b/data/smartphone/vivo/2021/vivo-y70t-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2002a.json new file mode 100644 index 00000000000..fe0089ff2fe --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-y70t-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2002a.json @@ -0,0 +1,44 @@ +{ + "slug": "vivo-y70t-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2002a", + "name": "Vivo Y70t 5G Standard Edition Dual SIM TD-LTE CN 128GB V2002A", + "brand": "vivo", + "soc": "exynos-880", + "release_date": "2021-06-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB Micro-AB" + }, + "msrp_usd": 1499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-y72-5g-premium-edition-dual-sim-td-lte-in-128gb-v2060.json b/data/smartphone/vivo/2021/vivo-y72-5g-premium-edition-dual-sim-td-lte-in-128gb-v2060.json new file mode 100644 index 00000000000..886ec1f1272 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-y72-5g-premium-edition-dual-sim-td-lte-in-128gb-v2060.json @@ -0,0 +1,43 @@ +{ + "slug": "vivo-y72-5g-premium-edition-dual-sim-td-lte-in-128gb-v2060", + "name": "Vivo Y72 5G Premium Edition Dual SIM TD-LTE IN 128GB V2060", + "brand": "vivo", + "soc": "snapdragon-480", + "release_date": "2021-07-16", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 185.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-y72-5g-premium-edition-dual-sim-td-lte-v1-th-vn-128gb-v2041.json b/data/smartphone/vivo/2021/vivo-y72-5g-premium-edition-dual-sim-td-lte-v1-th-vn-128gb-v2041.json new file mode 100644 index 00000000000..5b346c73045 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-y72-5g-premium-edition-dual-sim-td-lte-v1-th-vn-128gb-v2041.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y72-5g-premium-edition-dual-sim-td-lte-v1-th-vn-128gb-v2041", + "name": "Vivo Y72 5G Premium Edition Dual SIM TD-LTE V1 TH VN 128GB V2041", + "brand": "vivo", + "soc": "dimensity-700", + "release_date": "2021-03-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Thailand , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-y72-5g-premium-edition-dual-sim-td-lte-v2-tw-128gb-v2041.json b/data/smartphone/vivo/2021/vivo-y72-5g-premium-edition-dual-sim-td-lte-v2-tw-128gb-v2041.json new file mode 100644 index 00000000000..cb59c75b196 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-y72-5g-premium-edition-dual-sim-td-lte-v2-tw-128gb-v2041.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y72-5g-premium-edition-dual-sim-td-lte-v2-tw-128gb-v2041", + "name": "Vivo Y72 5G Premium Edition Dual SIM TD-LTE V2 TW 128GB V2041", + "brand": "vivo", + "soc": "dimensity-700", + "release_date": "2021-03-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Taiwan", + "market_regions": "Asia" +} diff --git a/data/smartphone/vivo/2021/vivo-y72-5g-premium-edition-global-dual-sim-td-lte-v3-128gb-v2041.json b/data/smartphone/vivo/2021/vivo-y72-5g-premium-edition-global-dual-sim-td-lte-v3-128gb-v2041.json new file mode 100644 index 00000000000..4c795e2d909 --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-y72-5g-premium-edition-global-dual-sim-td-lte-v3-128gb-v2041.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y72-5g-premium-edition-global-dual-sim-td-lte-v3-128gb-v2041", + "name": "Vivo Y72 5G Premium Edition Global Dual SIM TD-LTE V3 128GB V2041", + "brand": "vivo", + "soc": "dimensity-700", + "release_date": "2021-03-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Bulgaria , Cyprus , Czech , France , Germany , Greece , HK , Italy , Poland , Romania , Saudi Arabia , Singapore , Spain , UAE , UK", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/vivo/2021/vivo-y72-5g-standard-edition-dual-sim-td-lte-v1-th-vn-128gb-v2041.json b/data/smartphone/vivo/2021/vivo-y72-5g-standard-edition-dual-sim-td-lte-v1-th-vn-128gb-v2041.json new file mode 100644 index 00000000000..d678c063c5d --- /dev/null +++ b/data/smartphone/vivo/2021/vivo-y72-5g-standard-edition-dual-sim-td-lte-v1-th-vn-128gb-v2041.json @@ -0,0 +1,42 @@ +{ + "slug": "vivo-y72-5g-standard-edition-dual-sim-td-lte-v1-th-vn-128gb-v2041", + "name": "Vivo Y72 5G Standard Edition Dual SIM TD-LTE V1 TH VN 128GB V2041", + "brand": "vivo", + "soc": "dimensity-700", + "release_date": "2021-03-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Thailand , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/wiko/2016/tommy-lte-apac-m1563.json b/data/smartphone/wiko/2016/tommy-lte-apac-m1563.json new file mode 100644 index 00000000000..994fd1470a4 --- /dev/null +++ b/data/smartphone/wiko/2016/tommy-lte-apac-m1563.json @@ -0,0 +1,41 @@ +{ + "slug": "tommy-lte-apac-m1563", + "name": "Tommy LTE APAC M1563", + "brand": "wiko", + "soc": "snapdragon-212", + "release_date": "2016-03-01", + "ram_gb": 1.0, + "battery_mah": 2500, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "6.0", + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Indonesia , Japan , Malaysia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/wiko/2017/robby-2-dual-sim-m1853.json b/data/smartphone/wiko/2017/robby-2-dual-sim-m1853.json new file mode 100644 index 00000000000..9fb5067c516 --- /dev/null +++ b/data/smartphone/wiko/2017/robby-2-dual-sim-m1853.json @@ -0,0 +1,41 @@ +{ + "slug": "robby-2-dual-sim-m1853", + "name": "Robby 2 Dual SIM M1853", + "brand": "wiko", + "soc": "snapdragon-210", + "release_date": "2017-11-12", + "ram_gb": 2.0, + "battery_mah": 2800, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Algeria , Cyprus , Czech , Egypt , France , Greece , Germany , Ireland , Italy , Netherlands , Nigeria , Poland , Romania , Saudi Arabia , Serbia , Slovenia , Spain , Switzerland , UAE , UK", + "market_regions": "Africa , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/wiko/2017/view-dual-sim-lte-16gb-m1825.json b/data/smartphone/wiko/2017/view-dual-sim-lte-16gb-m1825.json new file mode 100644 index 00000000000..bdf43722a13 --- /dev/null +++ b/data/smartphone/wiko/2017/view-dual-sim-lte-16gb-m1825.json @@ -0,0 +1,41 @@ +{ + "slug": "view-dual-sim-lte-16gb-m1825", + "name": "View Dual SIM LTE 16GB M1825", + "brand": "wiko", + "soc": "snapdragon-425", + "release_date": "2017-09-01", + "ram_gb": 3.0, + "battery_mah": 2900, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Algeria , Austria , Belgium , Cyprus , Croatia , Egypt , France , Germany , Greece , Ireland , Italy , Kenya , Netherlands , Nigeria , Poland , Portugal , Saudi Arabia , Serbia , Slovenia , Spain , Switzerland , UAE , UK", + "market_regions": "Africa , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/wiko/2018/g08-dual-sim-lte-apac-m2165.json b/data/smartphone/wiko/2018/g08-dual-sim-lte-apac-m2165.json new file mode 100644 index 00000000000..a28b04849a5 --- /dev/null +++ b/data/smartphone/wiko/2018/g08-dual-sim-lte-apac-m2165.json @@ -0,0 +1,41 @@ +{ + "slug": "g08-dual-sim-lte-apac-m2165", + "name": "G08 Dual SIM LTE APAC M2165", + "brand": "wiko", + "soc": "snapdragon-430", + "release_date": "2018-02-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 162.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/wiko/2018/view-2-dual-sim-lte-a-m2124.json b/data/smartphone/wiko/2018/view-2-dual-sim-lte-a-m2124.json new file mode 100644 index 00000000000..7ec4c60f4ae --- /dev/null +++ b/data/smartphone/wiko/2018/view-2-dual-sim-lte-a-m2124.json @@ -0,0 +1,41 @@ +{ + "slug": "view-2-dual-sim-lte-a-m2124", + "name": "View 2 Dual SIM LTE-A M2124", + "brand": "wiko", + "soc": "snapdragon-435", + "release_date": "2018-03-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 153.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.0, + "resolution": "720x1528", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Algeria , Austria , Belgium , Cyprus , Croatia , Egypt , France , Germany , Greece , Ireland , Italy , Kenya , Netherlands , Nigeria , Poland , Romania , Saudi Arabia , Serbia , Slovenia , Spain , Switzerland , UK", + "market_regions": "Africa , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/wiko/2018/view-2-go-dual-sim-lte-a-m2354.json b/data/smartphone/wiko/2018/view-2-go-dual-sim-lte-a-m2354.json new file mode 100644 index 00000000000..1c97586e45e --- /dev/null +++ b/data/smartphone/wiko/2018/view-2-go-dual-sim-lte-a-m2354.json @@ -0,0 +1,41 @@ +{ + "slug": "view-2-go-dual-sim-lte-a-m2354", + "name": "View 2 GO Dual SIM LTE-A M2354", + "brand": "wiko", + "soc": "snapdragon-430", + "release_date": "2018-08-31", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 160.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.93, + "resolution": "720x1512", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Algeria , Austria , Belgium , Cyprus , Croatia , Egypt , France , Germany , Greece , Ireland , Italy , Kenya , Netherlands , Nigeria , Poland , Romania , Saudi Arabia , Serbia , Slovenia , Spain , Switzerland , UK", + "market_regions": "Africa , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/wiko/2018/view-2-plus-dual-sim-td-lte-m2356.json b/data/smartphone/wiko/2018/view-2-plus-dual-sim-td-lte-m2356.json new file mode 100644 index 00000000000..dfbf0ad0ac1 --- /dev/null +++ b/data/smartphone/wiko/2018/view-2-plus-dual-sim-td-lte-m2356.json @@ -0,0 +1,41 @@ +{ + "slug": "view-2-plus-dual-sim-td-lte-m2356", + "name": "View 2 Plus Dual SIM TD-LTE M2356", + "brand": "wiko", + "soc": "snapdragon-450", + "release_date": "2018-09-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.93, + "resolution": "720x1512", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Algeria , Austria , Belgium , Cyprus , Croatia , Egypt , France , Germany , Greece , Ireland , Italy , Kenya , Netherlands , Nigeria , Poland , Romania , Saudi Arabia , Serbia , Slovenia , Spain , Switzerland , UK", + "market_regions": "Africa , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/wiko/2018/view-2-pro-dual-sim-lte-a-m2123.json b/data/smartphone/wiko/2018/view-2-pro-dual-sim-lte-a-m2123.json new file mode 100644 index 00000000000..138875f662b --- /dev/null +++ b/data/smartphone/wiko/2018/view-2-pro-dual-sim-lte-a-m2123.json @@ -0,0 +1,41 @@ +{ + "slug": "view-2-pro-dual-sim-lte-a-m2123", + "name": "View 2 Pro Dual SIM LTE-A M2123", + "brand": "wiko", + "soc": "snapdragon-450", + "release_date": "2018-03-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "720x1528", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Algeria , Belgium , Cyprus , Croatia , Egypt , France , Germany , Greece , Ireland , Italy , Kenya , Netherlands , Nigeria , Poland , Romania , Saudi Arabia , Serbia , Slovenia , Spain , Switzerland , UK", + "market_regions": "Africa , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/wiko/2019/view-3-dual-sim-td-lte-m2684.json b/data/smartphone/wiko/2019/view-3-dual-sim-td-lte-m2684.json new file mode 100644 index 00000000000..a3c763379d0 --- /dev/null +++ b/data/smartphone/wiko/2019/view-3-dual-sim-td-lte-m2684.json @@ -0,0 +1,41 @@ +{ + "slug": "view-3-dual-sim-td-lte-m2684", + "name": "View 3 Dual SIM TD-LTE M2684", + "brand": "wiko", + "soc": "helio-p22", + "release_date": "2019-04-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Algeria , Austria , Belgium , Cyprus , Croatia , Egypt , France , Germany , Greece , Ireland , Italy , Kenya , Netherlands , Nigeria , Poland , Romania , Saudi Arabia , Serbia , Slovenia , Spain , Switzerland , UK", + "market_regions": "Africa , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/wiko/2019/view-3-pro-dual-sim-td-lte-128gb-m2766.json b/data/smartphone/wiko/2019/view-3-pro-dual-sim-td-lte-128gb-m2766.json new file mode 100644 index 00000000000..6bdfdac048e --- /dev/null +++ b/data/smartphone/wiko/2019/view-3-pro-dual-sim-td-lte-128gb-m2766.json @@ -0,0 +1,41 @@ +{ + "slug": "view-3-pro-dual-sim-td-lte-128gb-m2766", + "name": "View 3 Pro Dual SIM TD-LTE 128GB M2766", + "brand": "wiko", + "soc": "helio-p60", + "release_date": "2019-04-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Algeria , Austria , Belgium , Cyprus , Croatia , Egypt , France , Germany , Greece , Ireland , Italy , Kenya , Netherlands , Nigeria , Poland , Romania , Saudi Arabia , Serbia , Slovenia , Spain , Switzerland , UK", + "market_regions": "Africa , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/wiko/2019/view-3-pro-dual-sim-td-lte-64gb-m2766.json b/data/smartphone/wiko/2019/view-3-pro-dual-sim-td-lte-64gb-m2766.json new file mode 100644 index 00000000000..4596cef5844 --- /dev/null +++ b/data/smartphone/wiko/2019/view-3-pro-dual-sim-td-lte-64gb-m2766.json @@ -0,0 +1,41 @@ +{ + "slug": "view-3-pro-dual-sim-td-lte-64gb-m2766", + "name": "View 3 Pro Dual SIM TD-LTE 64GB M2766", + "brand": "wiko", + "soc": "helio-p60", + "release_date": "2019-04-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Algeria , Austria , Belgium , Cyprus , Croatia , Czech , Egypt , France , Germany , Greece , Ireland , Italy , Netherlands , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , UK", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/wiko/2020/cricket-ovation-lte-a-us-u705ac.json b/data/smartphone/wiko/2020/cricket-ovation-lte-a-us-u705ac.json new file mode 100644 index 00000000000..56d44482e6d --- /dev/null +++ b/data/smartphone/wiko/2020/cricket-ovation-lte-a-us-u705ac.json @@ -0,0 +1,43 @@ +{ + "slug": "cricket-ovation-lte-a-us-u705ac", + "name": "Cricket Ovation LTE-A US U705AC", + "brand": "wiko", + "soc": "helio-p22", + "release_date": "2020-07-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 264 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 80, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/wiko/2020/radiant-max-lte-a-us-u705aa.json b/data/smartphone/wiko/2020/radiant-max-lte-a-us-u705aa.json new file mode 100644 index 00000000000..5d946716b54 --- /dev/null +++ b/data/smartphone/wiko/2020/radiant-max-lte-a-us-u705aa.json @@ -0,0 +1,43 @@ +{ + "slug": "radiant-max-lte-a-us-u705aa", + "name": "Radiant Max LTE-A US U705AA", + "brand": "wiko", + "soc": "helio-p22", + "release_date": "2020-08-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 264 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 130, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/wiko/2020/rakuten-mini-final-edition-td-lte-jp-c330.json b/data/smartphone/wiko/2020/rakuten-mini-final-edition-td-lte-jp-c330.json new file mode 100644 index 00000000000..8d997c39915 --- /dev/null +++ b/data/smartphone/wiko/2020/rakuten-mini-final-edition-td-lte-jp-c330.json @@ -0,0 +1,41 @@ +{ + "slug": "rakuten-mini-final-edition-td-lte-jp-c330", + "name": "Rakuten Mini Final Edition TD-LTE JP C330", + "brand": "wiko", + "soc": "snapdragon-439", + "release_date": "2020-05-01", + "ram_gb": 3.0, + "battery_mah": 1250, + "weight_g": 79.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 3.58, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 410 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/wiko/2020/rakuten-mini-initial-edition-td-lte-jp-c330.json b/data/smartphone/wiko/2020/rakuten-mini-initial-edition-td-lte-jp-c330.json new file mode 100644 index 00000000000..ccaa0eefdba --- /dev/null +++ b/data/smartphone/wiko/2020/rakuten-mini-initial-edition-td-lte-jp-c330.json @@ -0,0 +1,41 @@ +{ + "slug": "rakuten-mini-initial-edition-td-lte-jp-c330", + "name": "Rakuten Mini Initial Edition TD-LTE JP C330", + "brand": "wiko", + "soc": "snapdragon-439", + "release_date": "2020-01-23", + "ram_gb": 3.0, + "battery_mah": 1250, + "weight_g": 79.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 3.58, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 410 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/wiko/2020/view-4-lite-global-dual-sim-td-lte-m2902-m2937.json b/data/smartphone/wiko/2020/view-4-lite-global-dual-sim-td-lte-m2902-m2937.json new file mode 100644 index 00000000000..ad4ebc4d7f4 --- /dev/null +++ b/data/smartphone/wiko/2020/view-4-lite-global-dual-sim-td-lte-m2902-m2937.json @@ -0,0 +1,42 @@ +{ + "slug": "view-4-lite-global-dual-sim-td-lte-m2902-m2937", + "name": "View 4 Lite Global Dual SIM TD-LTE M2902 / M2937", + "brand": "wiko", + "soc": "helio-a25", + "release_date": "2020-02-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 174.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "msrp_usd": 399, + "market_countries": "Algeria , Austria , Belgium , Cyprus , Egypt , France , Germany , Greece , Italy , Malaysia , Netherlands , Nigeria , Poland , Romania , Saudi Arabia , Serbia , Slovenia , Spain , UAE , UK", + "market_regions": "Africa , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/wiko/2020/view-5-dual-sim-td-lte-64gb-m2976.json b/data/smartphone/wiko/2020/view-5-dual-sim-td-lte-64gb-m2976.json new file mode 100644 index 00000000000..a02a5e15fcd --- /dev/null +++ b/data/smartphone/wiko/2020/view-5-dual-sim-td-lte-64gb-m2976.json @@ -0,0 +1,41 @@ +{ + "slug": "view-5-dual-sim-td-lte-64gb-m2976", + "name": "View 5 Dual SIM TD-LTE 64GB M2976", + "brand": "wiko", + "soc": "helio-a25", + "release_date": "2020-09-09", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 201.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Algeria , Austria , Belgium , Cyprus , Croatia , Czech , Egypt , France , Germany , Greece , Ireland , Italy , Netherlands , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , UK", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/wiko/2020/view-5-plus-dual-sim-td-lte-128gb-m2907.json b/data/smartphone/wiko/2020/view-5-plus-dual-sim-td-lte-128gb-m2907.json new file mode 100644 index 00000000000..384a0fa9dd5 --- /dev/null +++ b/data/smartphone/wiko/2020/view-5-plus-dual-sim-td-lte-128gb-m2907.json @@ -0,0 +1,41 @@ +{ + "slug": "view-5-plus-dual-sim-td-lte-128gb-m2907", + "name": "View 5 Plus Dual SIM TD-LTE 128GB M2907", + "brand": "wiko", + "soc": "helio-p35", + "release_date": "2020-09-09", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 201.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Algeria , Austria , Belgium , Cyprus , Croatia , Czech , Egypt , France , Germany , Greece , Ireland , Italy , Netherlands , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , UK", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/wiko/2022/rakuten-hand-5g-dual-sim-td-lte-jp-p780.json b/data/smartphone/wiko/2022/rakuten-hand-5g-dual-sim-td-lte-jp-p780.json new file mode 100644 index 00000000000..5bfc4a2e743 --- /dev/null +++ b/data/smartphone/wiko/2022/rakuten-hand-5g-dual-sim-td-lte-jp-p780.json @@ -0,0 +1,41 @@ +{ + "slug": "rakuten-hand-5g-dual-sim-td-lte-jp-p780", + "name": "Rakuten Hand 5G Dual SIM TD-LTE JP P780", + "brand": "wiko", + "soc": "snapdragon-480", + "release_date": "2022-02-14", + "ram_gb": 4.0, + "battery_mah": 2630, + "weight_g": 134.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.1, + "resolution": "720x1520", + "type": "AM-OLED display", + "ppi": 330 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2018/black-shark-dual-sim-td-lte-cn-128gb-skr-a0.json b/data/smartphone/xiaomi/2018/black-shark-dual-sim-td-lte-cn-128gb-skr-a0.json new file mode 100644 index 00000000000..440919ea3c4 --- /dev/null +++ b/data/smartphone/xiaomi/2018/black-shark-dual-sim-td-lte-cn-128gb-skr-a0.json @@ -0,0 +1,41 @@ +{ + "slug": "black-shark-dual-sim-td-lte-cn-128gb-skr-a0", + "name": "Black Shark Dual SIM TD-LTE CN 128GB SKR-A0", + "brand": "xiaomi", + "soc": "snapdragon-845", + "release_date": "2018-04-22", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 20.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2018/black-shark-dual-sim-td-lte-cn-256gb-skr-a0.json b/data/smartphone/xiaomi/2018/black-shark-dual-sim-td-lte-cn-256gb-skr-a0.json new file mode 100644 index 00000000000..a2f5fef4ebb --- /dev/null +++ b/data/smartphone/xiaomi/2018/black-shark-dual-sim-td-lte-cn-256gb-skr-a0.json @@ -0,0 +1,41 @@ +{ + "slug": "black-shark-dual-sim-td-lte-cn-256gb-skr-a0", + "name": "Black Shark Dual SIM TD-LTE CN 256GB SKR-A0", + "brand": "xiaomi", + "soc": "snapdragon-845", + "release_date": "2018-06-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 20.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2018/black-shark-dual-sim-td-lte-cn-64gb-skr-a0.json b/data/smartphone/xiaomi/2018/black-shark-dual-sim-td-lte-cn-64gb-skr-a0.json new file mode 100644 index 00000000000..fd437c45a08 --- /dev/null +++ b/data/smartphone/xiaomi/2018/black-shark-dual-sim-td-lte-cn-64gb-skr-a0.json @@ -0,0 +1,41 @@ +{ + "slug": "black-shark-dual-sim-td-lte-cn-64gb-skr-a0", + "name": "Black Shark Dual SIM TD-LTE CN 64GB SKR-A0", + "brand": "xiaomi", + "soc": "snapdragon-845", + "release_date": "2018-04-21", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 20.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2018/black-shark-helo-premium-edition-dual-sim-td-lte-256gb-awm-a0.json b/data/smartphone/xiaomi/2018/black-shark-helo-premium-edition-dual-sim-td-lte-256gb-awm-a0.json new file mode 100644 index 00000000000..be07ca19194 --- /dev/null +++ b/data/smartphone/xiaomi/2018/black-shark-helo-premium-edition-dual-sim-td-lte-256gb-awm-a0.json @@ -0,0 +1,41 @@ +{ + "slug": "black-shark-helo-premium-edition-dual-sim-td-lte-256gb-awm-a0", + "name": "Black Shark Helo Premium Edition Dual SIM TD-LTE 256GB AWM-A0", + "brand": "xiaomi", + "soc": "snapdragon-845", + "release_date": "2018-11-11", + "ram_gb": 10.0, + "battery_mah": 4000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/black-shark-helo-premium-edition-global-dual-sim-td-lte-128gb-awm-a0.json b/data/smartphone/xiaomi/2018/black-shark-helo-premium-edition-global-dual-sim-td-lte-128gb-awm-a0.json new file mode 100644 index 00000000000..e4e817ee0ad --- /dev/null +++ b/data/smartphone/xiaomi/2018/black-shark-helo-premium-edition-global-dual-sim-td-lte-128gb-awm-a0.json @@ -0,0 +1,41 @@ +{ + "slug": "black-shark-helo-premium-edition-global-dual-sim-td-lte-128gb-awm-a0", + "name": "Black Shark Helo Premium Edition Global Dual SIM TD-LTE 128GB AWM-A0", + "brand": "xiaomi", + "soc": "snapdragon-845", + "release_date": "2018-10-29", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , China , Cyprus , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Ireland , Italy , Latvia , Lithuania , Netherlands , Poland , Portugal , Romania , Slovakia , Slovenia , Spain , Sweden", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2018/black-shark-helo-standard-edition-global-dual-sim-td-lte-128gb-awm-a0.json b/data/smartphone/xiaomi/2018/black-shark-helo-standard-edition-global-dual-sim-td-lte-128gb-awm-a0.json new file mode 100644 index 00000000000..a743882d1bf --- /dev/null +++ b/data/smartphone/xiaomi/2018/black-shark-helo-standard-edition-global-dual-sim-td-lte-128gb-awm-a0.json @@ -0,0 +1,41 @@ +{ + "slug": "black-shark-helo-standard-edition-global-dual-sim-td-lte-128gb-awm-a0", + "name": "Black Shark Helo Standard Edition Global Dual SIM TD-LTE 128GB AWM-A0", + "brand": "xiaomi", + "soc": "snapdragon-845", + "release_date": "2018-10-29", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , China , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Ireland , Italy , Latvia , Lithuania , Poland , Portugal , Romania , Slovakia , Slovenia , Spain , Sweden , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2018/black-shark-helo-standard-edition-global-dual-sim-td-lte-64gb-awm-a0.json b/data/smartphone/xiaomi/2018/black-shark-helo-standard-edition-global-dual-sim-td-lte-64gb-awm-a0.json new file mode 100644 index 00000000000..fa9a9ff54a9 --- /dev/null +++ b/data/smartphone/xiaomi/2018/black-shark-helo-standard-edition-global-dual-sim-td-lte-64gb-awm-a0.json @@ -0,0 +1,41 @@ +{ + "slug": "black-shark-helo-standard-edition-global-dual-sim-td-lte-64gb-awm-a0", + "name": "Black Shark Helo Standard Edition Global Dual SIM TD-LTE 64GB AWM-A0", + "brand": "xiaomi", + "soc": "snapdragon-845", + "release_date": "2018-11-16", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , China , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Ireland , Italy , Latvia , Lithuania , Poland , Portugal , Romania , Slovakia , Slovenia , Spain , Sweden , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2018/mi-6x-dual-sim-td-lte-cn-128gb-m1804d2se-m1804d2sc.json b/data/smartphone/xiaomi/2018/mi-6x-dual-sim-td-lte-cn-128gb-m1804d2se-m1804d2sc.json new file mode 100644 index 00000000000..3e51b6f3082 --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-6x-dual-sim-td-lte-cn-128gb-m1804d2se-m1804d2sc.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-6x-dual-sim-td-lte-cn-128gb-m1804d2se-m1804d2sc", + "name": "Mi 6X Dual SIM TD-LTE CN 128GB M1804D2SE / M1804D2SC", + "brand": "xiaomi", + "soc": "snapdragon-660", + "release_date": "2018-05-01", + "ram_gb": 6.0, + "battery_mah": 3100, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 20.0 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/mi-6x-dual-sim-td-lte-cn-128gb-m1804d2st.json b/data/smartphone/xiaomi/2018/mi-6x-dual-sim-td-lte-cn-128gb-m1804d2st.json new file mode 100644 index 00000000000..eac46898552 --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-6x-dual-sim-td-lte-cn-128gb-m1804d2st.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-6x-dual-sim-td-lte-cn-128gb-m1804d2st", + "name": "Mi 6X Dual SIM TD-LTE CN 128GB M1804D2ST", + "brand": "xiaomi", + "soc": "snapdragon-660", + "release_date": "2018-05-01", + "ram_gb": 6.0, + "battery_mah": 3100, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 20.0 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/mi-6x-dual-sim-td-lte-cn-32gb-m1804d2se-m1804d2sc.json b/data/smartphone/xiaomi/2018/mi-6x-dual-sim-td-lte-cn-32gb-m1804d2se-m1804d2sc.json new file mode 100644 index 00000000000..98c2496003f --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-6x-dual-sim-td-lte-cn-32gb-m1804d2se-m1804d2sc.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-6x-dual-sim-td-lte-cn-32gb-m1804d2se-m1804d2sc", + "name": "Mi 6X Dual SIM TD-LTE CN 32GB M1804D2SE / M1804D2SC", + "brand": "xiaomi", + "soc": "snapdragon-660", + "release_date": "2018-06-02", + "ram_gb": 4.0, + "battery_mah": 3100, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 20.0 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/mi-6x-dual-sim-td-lte-cn-64gb-m1804d2se-m1804d2sc.json b/data/smartphone/xiaomi/2018/mi-6x-dual-sim-td-lte-cn-64gb-m1804d2se-m1804d2sc.json new file mode 100644 index 00000000000..f88278a4b86 --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-6x-dual-sim-td-lte-cn-64gb-m1804d2se-m1804d2sc.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-6x-dual-sim-td-lte-cn-64gb-m1804d2se-m1804d2sc", + "name": "Mi 6X Dual SIM TD-LTE CN 64GB M1804D2SE / M1804D2SC", + "brand": "xiaomi", + "soc": "snapdragon-660", + "release_date": "2018-05-01", + "ram_gb": 4.0, + "battery_mah": 3100, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 20.0 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/mi-6x-dual-sim-td-lte-cn-64gb-m1804d2st.json b/data/smartphone/xiaomi/2018/mi-6x-dual-sim-td-lte-cn-64gb-m1804d2st.json new file mode 100644 index 00000000000..bf282ce68e4 --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-6x-dual-sim-td-lte-cn-64gb-m1804d2st.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-6x-dual-sim-td-lte-cn-64gb-m1804d2st", + "name": "Mi 6X Dual SIM TD-LTE CN 64GB M1804D2ST", + "brand": "xiaomi", + "soc": "snapdragon-660", + "release_date": "2018-05-01", + "ram_gb": 4.0, + "battery_mah": 3100, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 20.0 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/mi-8-dual-sim-td-lte-cn-128gb-m1803e1a.json b/data/smartphone/xiaomi/2018/mi-8-dual-sim-td-lte-cn-128gb-m1803e1a.json new file mode 100644 index 00000000000..599ac1cee18 --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-8-dual-sim-td-lte-cn-128gb-m1803e1a.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-8-dual-sim-td-lte-cn-128gb-m1803e1a", + "name": "Mi 8 Dual SIM TD-LTE CN 128GB M1803E1A", + "brand": "xiaomi", + "soc": "snapdragon-845", + "release_date": "2018-06-06", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2248", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , Russia", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/mi-8-dual-sim-td-lte-cn-128gb-m1803e1c.json b/data/smartphone/xiaomi/2018/mi-8-dual-sim-td-lte-cn-128gb-m1803e1c.json new file mode 100644 index 00000000000..e103f24c337 --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-8-dual-sim-td-lte-cn-128gb-m1803e1c.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-8-dual-sim-td-lte-cn-128gb-m1803e1c", + "name": "Mi 8 Dual SIM TD-LTE CN 128GB M1803E1C", + "brand": "xiaomi", + "soc": "snapdragon-845", + "release_date": "2018-06-06", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2248", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/mi-8-dual-sim-td-lte-cn-128gb-m1803e1t.json b/data/smartphone/xiaomi/2018/mi-8-dual-sim-td-lte-cn-128gb-m1803e1t.json new file mode 100644 index 00000000000..45d97865f09 --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-8-dual-sim-td-lte-cn-128gb-m1803e1t.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-8-dual-sim-td-lte-cn-128gb-m1803e1t", + "name": "Mi 8 Dual SIM TD-LTE CN 128GB M1803E1T", + "brand": "xiaomi", + "soc": "snapdragon-845", + "release_date": "2018-06-06", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2248", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/mi-8-dual-sim-td-lte-cn-256gb-m1803e1a.json b/data/smartphone/xiaomi/2018/mi-8-dual-sim-td-lte-cn-256gb-m1803e1a.json new file mode 100644 index 00000000000..2b8f17053fa --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-8-dual-sim-td-lte-cn-256gb-m1803e1a.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-8-dual-sim-td-lte-cn-256gb-m1803e1a", + "name": "Mi 8 Dual SIM TD-LTE CN 256GB M1803E1A", + "brand": "xiaomi", + "soc": "snapdragon-845", + "release_date": "2018-06-01", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2248", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/mi-8-dual-sim-td-lte-cn-64gb-m1803e1a.json b/data/smartphone/xiaomi/2018/mi-8-dual-sim-td-lte-cn-64gb-m1803e1a.json new file mode 100644 index 00000000000..0331b8a0465 --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-8-dual-sim-td-lte-cn-64gb-m1803e1a.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-8-dual-sim-td-lte-cn-64gb-m1803e1a", + "name": "Mi 8 Dual SIM TD-LTE CN 64GB M1803E1A", + "brand": "xiaomi", + "soc": "snapdragon-845", + "release_date": "2018-06-06", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2248", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , Russia , Taiwan", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/mi-8-explorer-edition-dual-sim-td-lte-m1807e8s-mi-8-ud.json b/data/smartphone/xiaomi/2018/mi-8-explorer-edition-dual-sim-td-lte-m1807e8s-mi-8-ud.json new file mode 100644 index 00000000000..fc660e795bf --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-8-explorer-edition-dual-sim-td-lte-m1807e8s-mi-8-ud.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-8-explorer-edition-dual-sim-td-lte-m1807e8s-mi-8-ud", + "name": "Mi 8 Explorer Edition Dual SIM TD-LTE M1807E8S / Mi 8 UD", + "brand": "xiaomi", + "soc": "snapdragon-845", + "release_date": "2018-07-29", + "ram_gb": 8.0, + "battery_mah": 3000, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2248", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/mi-8-lite-global-dual-sim-td-lte-128gb-m1808d2tg.json b/data/smartphone/xiaomi/2018/mi-8-lite-global-dual-sim-td-lte-128gb-m1808d2tg.json new file mode 100644 index 00000000000..3fa899549a5 --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-8-lite-global-dual-sim-td-lte-128gb-m1808d2tg.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-8-lite-global-dual-sim-td-lte-128gb-m1808d2tg", + "name": "Mi 8 Lite Global Dual SIM TD-LTE 128GB M1808D2TG", + "brand": "xiaomi", + "soc": "snapdragon-660", + "release_date": "2018-11-01", + "ram_gb": 6.0, + "battery_mah": 3350, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "France , Germany , Russia , Spain , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/xiaomi/2018/mi-8-lite-global-dual-sim-td-lte-64gb-m1808d2tg.json b/data/smartphone/xiaomi/2018/mi-8-lite-global-dual-sim-td-lte-64gb-m1808d2tg.json new file mode 100644 index 00000000000..e8d6f59127b --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-8-lite-global-dual-sim-td-lte-64gb-m1808d2tg.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-8-lite-global-dual-sim-td-lte-64gb-m1808d2tg", + "name": "Mi 8 Lite Global Dual SIM TD-LTE 64GB M1808D2TG", + "brand": "xiaomi", + "soc": "snapdragon-660", + "release_date": "2018-11-01", + "ram_gb": 4.0, + "battery_mah": 3350, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "France , Germany , Russia , Spain , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/xiaomi/2018/mi-8-premium-edition-dual-sim-td-lte-cn-128gb-m1803e1a.json b/data/smartphone/xiaomi/2018/mi-8-premium-edition-dual-sim-td-lte-cn-128gb-m1803e1a.json new file mode 100644 index 00000000000..271abf0a579 --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-8-premium-edition-dual-sim-td-lte-cn-128gb-m1803e1a.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-8-premium-edition-dual-sim-td-lte-cn-128gb-m1803e1a", + "name": "Mi 8 Premium Edition Dual SIM TD-LTE CN 128GB M1803E1A", + "brand": "xiaomi", + "soc": "snapdragon-845", + "release_date": "2018-08-14", + "ram_gb": 8.0, + "battery_mah": 3400, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2248", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/mi-8-pro-global-dual-sim-td-lte-m1807e8a.json b/data/smartphone/xiaomi/2018/mi-8-pro-global-dual-sim-td-lte-m1807e8a.json new file mode 100644 index 00000000000..23d6c9b7bb4 --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-8-pro-global-dual-sim-td-lte-m1807e8a.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-8-pro-global-dual-sim-td-lte-m1807e8a", + "name": "Mi 8 Pro Global Dual SIM TD-LTE M1807E8A", + "brand": "xiaomi", + "soc": "snapdragon-845", + "release_date": "2018-10-23", + "ram_gb": 8.0, + "battery_mah": 3000, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2248", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Singapore , Taiwan , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2018/mi-8-se-premium-dual-sim-td-lte-cn-m1805e2a.json b/data/smartphone/xiaomi/2018/mi-8-se-premium-dual-sim-td-lte-cn-m1805e2a.json new file mode 100644 index 00000000000..0ca3cbab744 --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-8-se-premium-dual-sim-td-lte-cn-m1805e2a.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-8-se-premium-dual-sim-td-lte-cn-m1805e2a", + "name": "Mi 8 SE Premium Dual SIM TD-LTE CN M1805E2A", + "brand": "xiaomi", + "soc": "snapdragon-710", + "release_date": "2018-06-07", + "ram_gb": 6.0, + "battery_mah": 3120, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.88, + "resolution": "1080x2244", + "type": "AM-OLED display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/mi-8-se-standard-dual-sim-td-lte-cn-m1805e2a.json b/data/smartphone/xiaomi/2018/mi-8-se-standard-dual-sim-td-lte-cn-m1805e2a.json new file mode 100644 index 00000000000..655d8d3c023 --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-8-se-standard-dual-sim-td-lte-cn-m1805e2a.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-8-se-standard-dual-sim-td-lte-cn-m1805e2a", + "name": "Mi 8 SE Standard Dual SIM TD-LTE CN M1805E2A", + "brand": "xiaomi", + "soc": "snapdragon-710", + "release_date": "2018-06-07", + "ram_gb": 4.0, + "battery_mah": 3120, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.88, + "resolution": "1080x2244", + "type": "AM-OLED display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/mi-8-ud-dual-sim-td-lte-m1807e8s.json b/data/smartphone/xiaomi/2018/mi-8-ud-dual-sim-td-lte-m1807e8s.json new file mode 100644 index 00000000000..671ce955b46 --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-8-ud-dual-sim-td-lte-m1807e8s.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-8-ud-dual-sim-td-lte-m1807e8s", + "name": "Mi 8 UD Dual SIM TD-LTE M1807E8S", + "brand": "xiaomi", + "soc": "snapdragon-845", + "release_date": "2018-07-29", + "ram_gb": 6.0, + "battery_mah": 3000, + "weight_g": 177.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2248", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/mi-8-youth-premium-edition-dual-sim-td-lte-cn-128gb-m1808d2te-m1808d2tc.json b/data/smartphone/xiaomi/2018/mi-8-youth-premium-edition-dual-sim-td-lte-cn-128gb-m1808d2te-m1808d2tc.json new file mode 100644 index 00000000000..a4473803d33 --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-8-youth-premium-edition-dual-sim-td-lte-cn-128gb-m1808d2te-m1808d2tc.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-8-youth-premium-edition-dual-sim-td-lte-cn-128gb-m1808d2te-m1808d2tc", + "name": "Mi 8 Youth Premium Edition Dual SIM TD-LTE CN 128GB M1808D2TE / M1808D2TC", + "brand": "xiaomi", + "soc": "snapdragon-660", + "release_date": "2018-09-01", + "ram_gb": 6.0, + "battery_mah": 3350, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2018/mi-8-youth-premium-edition-dual-sim-td-lte-cn-128gb-m1808d2tt.json b/data/smartphone/xiaomi/2018/mi-8-youth-premium-edition-dual-sim-td-lte-cn-128gb-m1808d2tt.json new file mode 100644 index 00000000000..3cffca061ad --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-8-youth-premium-edition-dual-sim-td-lte-cn-128gb-m1808d2tt.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-8-youth-premium-edition-dual-sim-td-lte-cn-128gb-m1808d2tt", + "name": "Mi 8 Youth Premium Edition Dual SIM TD-LTE CN 128GB M1808D2TT", + "brand": "xiaomi", + "soc": "snapdragon-660", + "release_date": "2018-09-01", + "ram_gb": 6.0, + "battery_mah": 3350, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/mi-8-youth-standard-edition-dual-sim-td-lte-cn-128gb-m1808d2te-m1808d2tc.json b/data/smartphone/xiaomi/2018/mi-8-youth-standard-edition-dual-sim-td-lte-cn-128gb-m1808d2te-m1808d2tc.json new file mode 100644 index 00000000000..bf60cc886c2 --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-8-youth-standard-edition-dual-sim-td-lte-cn-128gb-m1808d2te-m1808d2tc.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-8-youth-standard-edition-dual-sim-td-lte-cn-128gb-m1808d2te-m1808d2tc", + "name": "Mi 8 Youth Standard Edition Dual SIM TD-LTE CN 128GB M1808D2TE / M1808D2TC", + "brand": "xiaomi", + "soc": "snapdragon-660", + "release_date": "2018-11-16", + "ram_gb": 4.0, + "battery_mah": 3350, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2018/mi-8-youth-standard-edition-dual-sim-td-lte-cn-64gb-m1808d2te-m1808d2tc.json b/data/smartphone/xiaomi/2018/mi-8-youth-standard-edition-dual-sim-td-lte-cn-64gb-m1808d2te-m1808d2tc.json new file mode 100644 index 00000000000..c6b7c7e4c4e --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-8-youth-standard-edition-dual-sim-td-lte-cn-64gb-m1808d2te-m1808d2tc.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-8-youth-standard-edition-dual-sim-td-lte-cn-64gb-m1808d2te-m1808d2tc", + "name": "Mi 8 Youth Standard Edition Dual SIM TD-LTE CN 64GB M1808D2TE / M1808D2TC", + "brand": "xiaomi", + "soc": "snapdragon-660", + "release_date": "2018-09-01", + "ram_gb": 4.0, + "battery_mah": 3350, + "weight_g": 169.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2018/mi-a2-dual-sim-global-td-lte-128gb-m1804d2sg.json b/data/smartphone/xiaomi/2018/mi-a2-dual-sim-global-td-lte-128gb-m1804d2sg.json new file mode 100644 index 00000000000..eaa57d21562 --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-a2-dual-sim-global-td-lte-128gb-m1804d2sg.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-a2-dual-sim-global-td-lte-128gb-m1804d2sg", + "name": "Mi A2 Dual SIM Global TD-LTE 128GB M1804D2SG", + "brand": "xiaomi", + "soc": "snapdragon-660", + "release_date": "2018-07-27", + "ram_gb": 6.0, + "battery_mah": 3010, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 20.0 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Bangladesh , Bulgaria , Colombia , Cyprus , Czech , Egypt , France , Germany , Greece , HK , Hungary , India , Indonesia , Israel , Italy , Kazakhstan , Kuwait , Malaysia , Mexico , Myanmar , Nepal , Pakistan , Philippines , Poland , Russia , Romania , Saudi Arabia , Slovakia , Singapore , Spain , Sri Lanka , Thailand , Turkey , UAE , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2018/mi-a2-dual-sim-global-td-lte-32gb-m1804d2sg.json b/data/smartphone/xiaomi/2018/mi-a2-dual-sim-global-td-lte-32gb-m1804d2sg.json new file mode 100644 index 00000000000..d57bd940f1e --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-a2-dual-sim-global-td-lte-32gb-m1804d2sg.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-a2-dual-sim-global-td-lte-32gb-m1804d2sg", + "name": "Mi A2 Dual SIM Global TD-LTE 32GB M1804D2SG", + "brand": "xiaomi", + "soc": "snapdragon-660", + "release_date": "2018-07-27", + "ram_gb": 4.0, + "battery_mah": 3010, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 20.0 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Bangladesh , Bulgaria , Colombia , Cyprus , Czech , Egypt , France , Germany , Greece , HK , Hungary , India , Indonesia , Israel , Italy , Kazakhstan , Kuwait , Malaysia , Mexico , Myanmar , Nepal , Pakistan , Philippines , Poland , Russia , Romania , Saudi Arabia , Slovakia , Singapore , Spain , Sri Lanka , Thailand , Turkey , UAE , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2018/mi-a2-dual-sim-global-td-lte-64gb-m1804d2sg.json b/data/smartphone/xiaomi/2018/mi-a2-dual-sim-global-td-lte-64gb-m1804d2sg.json new file mode 100644 index 00000000000..f2f744cd242 --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-a2-dual-sim-global-td-lte-64gb-m1804d2sg.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-a2-dual-sim-global-td-lte-64gb-m1804d2sg", + "name": "Mi A2 Dual SIM Global TD-LTE 64GB M1804D2SG", + "brand": "xiaomi", + "soc": "snapdragon-660", + "release_date": "2018-07-27", + "ram_gb": 4.0, + "battery_mah": 3010, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 20.0 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Bangladesh , Bulgaria , Colombia , Cyprus , Czech , Egypt , France , Germany , Greece , HK , Hungary , India , Indonesia , Israel , Italy , Kazakhstan , Kuwait , Malaysia , Mexico , Myanmar , Nepal , Pakistan , Philippines , Poland , Russia , Romania , Saudi Arabia , Slovakia , Singapore , Spain , Sri Lanka , Taiwan , Thailand , Turkey , UAE , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2018/mi-a2-lite-premium-edition-global-dual-sim-td-lte-32gb-m1805d1sg.json b/data/smartphone/xiaomi/2018/mi-a2-lite-premium-edition-global-dual-sim-td-lte-32gb-m1805d1sg.json new file mode 100644 index 00000000000..2655b067b44 --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-a2-lite-premium-edition-global-dual-sim-td-lte-32gb-m1805d1sg.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-a2-lite-premium-edition-global-dual-sim-td-lte-32gb-m1805d1sg", + "name": "Mi A2 Lite Premium Edition Global Dual SIM TD-LTE 32GB M1805D1SG", + "brand": "xiaomi", + "soc": "snapdragon-625", + "release_date": "2018-07-27", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Egypt , France , Germany , Italy , Malaysia , Poland , Singapore , Spain , Thailand , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2018/mi-a2-lite-premium-edition-global-dual-sim-td-lte-64gb-m1805d1sg.json b/data/smartphone/xiaomi/2018/mi-a2-lite-premium-edition-global-dual-sim-td-lte-64gb-m1805d1sg.json new file mode 100644 index 00000000000..9c9050c6efd --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-a2-lite-premium-edition-global-dual-sim-td-lte-64gb-m1805d1sg.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-a2-lite-premium-edition-global-dual-sim-td-lte-64gb-m1805d1sg", + "name": "Mi A2 Lite Premium Edition Global Dual SIM TD-LTE 64GB M1805D1SG", + "brand": "xiaomi", + "soc": "snapdragon-625", + "release_date": "2018-07-27", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Egypt , France , Germany , Hungary , Italy , Malaysia , Poland , Singapore , Slovenia , Spain , Thailand , UAE , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2018/mi-a2-lite-standard-edition-global-dual-sim-td-lte-32gb-m1805d1sg.json b/data/smartphone/xiaomi/2018/mi-a2-lite-standard-edition-global-dual-sim-td-lte-32gb-m1805d1sg.json new file mode 100644 index 00000000000..f47d8f15354 --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-a2-lite-standard-edition-global-dual-sim-td-lte-32gb-m1805d1sg.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-a2-lite-standard-edition-global-dual-sim-td-lte-32gb-m1805d1sg", + "name": "Mi A2 Lite Standard Edition Global Dual SIM TD-LTE 32GB M1805D1SG", + "brand": "xiaomi", + "soc": "snapdragon-625", + "release_date": "2018-07-27", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Egypt , France , Germany , Hungary , Italy , Malaysia , Poland , Singapore , Spain , Thailand , UAE , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2018/mi-max-3-dual-sim-td-lte-128gb-m1804e4a-m1804e4c.json b/data/smartphone/xiaomi/2018/mi-max-3-dual-sim-td-lte-128gb-m1804e4a-m1804e4c.json new file mode 100644 index 00000000000..4bfe1cc6ec1 --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-max-3-dual-sim-td-lte-128gb-m1804e4a-m1804e4c.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-max-3-dual-sim-td-lte-128gb-m1804e4a-m1804e4c", + "name": "Mi Max 3 Dual SIM TD-LTE 128GB M1804E4A / M1804E4C", + "brand": "xiaomi", + "soc": "snapdragon-636", + "release_date": "2018-08-01", + "ram_gb": 6.0, + "battery_mah": 5500, + "weight_g": 221.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.9, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 350 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2018/mi-max-3-dual-sim-td-lte-64gb-m1804e4a-m1804e4c.json b/data/smartphone/xiaomi/2018/mi-max-3-dual-sim-td-lte-64gb-m1804e4a-m1804e4c.json new file mode 100644 index 00000000000..74cedebbb73 --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-max-3-dual-sim-td-lte-64gb-m1804e4a-m1804e4c.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-max-3-dual-sim-td-lte-64gb-m1804e4a-m1804e4c", + "name": "Mi Max 3 Dual SIM TD-LTE 64GB M1804E4A / M1804E4C", + "brand": "xiaomi", + "soc": "snapdragon-636", + "release_date": "2018-08-01", + "ram_gb": 4.0, + "battery_mah": 5500, + "weight_g": 221.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.9, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 350 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2018/mi-max-3-dual-sim-td-lte-64gb-m1804e4t.json b/data/smartphone/xiaomi/2018/mi-max-3-dual-sim-td-lte-64gb-m1804e4t.json new file mode 100644 index 00000000000..d52deb2b17a --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-max-3-dual-sim-td-lte-64gb-m1804e4t.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-max-3-dual-sim-td-lte-64gb-m1804e4t", + "name": "Mi Max 3 Dual SIM TD-LTE 64GB M1804E4T", + "brand": "xiaomi", + "soc": "snapdragon-636", + "release_date": "2018-08-01", + "ram_gb": 4.0, + "battery_mah": 5500, + "weight_g": 221.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.9, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 350 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2018/mi-mix-2s-premium-edition-global-dual-sim-td-lte-256gb-m1803d5xa.json b/data/smartphone/xiaomi/2018/mi-mix-2s-premium-edition-global-dual-sim-td-lte-256gb-m1803d5xa.json new file mode 100644 index 00000000000..97fac7eaa8a --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-mix-2s-premium-edition-global-dual-sim-td-lte-256gb-m1803d5xa.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-mix-2s-premium-edition-global-dual-sim-td-lte-256gb-m1803d5xa", + "name": "Mi Mix 2S Premium Edition Global Dual SIM TD-LTE 256GB M1803D5XA", + "brand": "xiaomi", + "soc": "snapdragon-845", + "release_date": "2018-04-03", + "ram_gb": 8.0, + "battery_mah": 3400, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2018/mi-mix-2s-standard-edition-dual-sim-td-lte-cn-128gb-m1803d5xe-m1803d5xc.json b/data/smartphone/xiaomi/2018/mi-mix-2s-standard-edition-dual-sim-td-lte-cn-128gb-m1803d5xe-m1803d5xc.json new file mode 100644 index 00000000000..7fe1c957d4b --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-mix-2s-standard-edition-dual-sim-td-lte-cn-128gb-m1803d5xe-m1803d5xc.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-mix-2s-standard-edition-dual-sim-td-lte-cn-128gb-m1803d5xe-m1803d5xc", + "name": "Mi Mix 2S Standard Edition Dual SIM TD-LTE CN 128GB M1803D5XE / M1803D5XC", + "brand": "xiaomi", + "soc": "snapdragon-845", + "release_date": "2018-04-03", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/mi-mix-2s-standard-edition-dual-sim-td-lte-cn-64gb-m1803d5xe-m1803d5xc.json b/data/smartphone/xiaomi/2018/mi-mix-2s-standard-edition-dual-sim-td-lte-cn-64gb-m1803d5xe-m1803d5xc.json new file mode 100644 index 00000000000..5df51ca575f --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-mix-2s-standard-edition-dual-sim-td-lte-cn-64gb-m1803d5xe-m1803d5xc.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-mix-2s-standard-edition-dual-sim-td-lte-cn-64gb-m1803d5xe-m1803d5xc", + "name": "Mi Mix 2S Standard Edition Dual SIM TD-LTE CN 64GB M1803D5XE / M1803D5XC", + "brand": "xiaomi", + "soc": "snapdragon-845", + "release_date": "2018-04-03", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2018/mi-mix-2s-standard-edition-dual-sim-td-lte-cn-64gb-m1803d5xt.json b/data/smartphone/xiaomi/2018/mi-mix-2s-standard-edition-dual-sim-td-lte-cn-64gb-m1803d5xt.json new file mode 100644 index 00000000000..2811a2913b7 --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-mix-2s-standard-edition-dual-sim-td-lte-cn-64gb-m1803d5xt.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-mix-2s-standard-edition-dual-sim-td-lte-cn-64gb-m1803d5xt", + "name": "Mi Mix 2S Standard Edition Dual SIM TD-LTE CN 64GB M1803D5XT", + "brand": "xiaomi", + "soc": "snapdragon-845", + "release_date": "2018-04-03", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2018/mi-mix-2s-standard-edition-global-dual-sim-td-lte-128gb-m1803d5xa.json b/data/smartphone/xiaomi/2018/mi-mix-2s-standard-edition-global-dual-sim-td-lte-128gb-m1803d5xa.json new file mode 100644 index 00000000000..a138866aad0 --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-mix-2s-standard-edition-global-dual-sim-td-lte-128gb-m1803d5xa.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-mix-2s-standard-edition-global-dual-sim-td-lte-128gb-m1803d5xa", + "name": "Mi Mix 2S Standard Edition Global Dual SIM TD-LTE 128GB M1803D5XA", + "brand": "xiaomi", + "soc": "snapdragon-845", + "release_date": "2018-05-08", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "HK , India , Italy , Singapore , Spain , Taiwan , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2018/mi-mix-2s-standard-edition-global-dual-sim-td-lte-64gb-m1803d5xa.json b/data/smartphone/xiaomi/2018/mi-mix-2s-standard-edition-global-dual-sim-td-lte-64gb-m1803d5xa.json new file mode 100644 index 00000000000..4c10f36c18b --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-mix-2s-standard-edition-global-dual-sim-td-lte-64gb-m1803d5xa.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-mix-2s-standard-edition-global-dual-sim-td-lte-64gb-m1803d5xa", + "name": "Mi Mix 2S Standard Edition Global Dual SIM TD-LTE 64GB M1803D5XA", + "brand": "xiaomi", + "soc": "snapdragon-845", + "release_date": "2018-05-08", + "ram_gb": 6.0, + "battery_mah": 3400, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "HK , Italy , Singapore , Spain , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2018/mi-mix-3-forbidden-city-special-edition-dual-sim-td-lte-cn-256gb-m1810e5ec.json b/data/smartphone/xiaomi/2018/mi-mix-3-forbidden-city-special-edition-dual-sim-td-lte-cn-256gb-m1810e5ec.json new file mode 100644 index 00000000000..c3877252387 --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-mix-3-forbidden-city-special-edition-dual-sim-td-lte-cn-256gb-m1810e5ec.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-mix-3-forbidden-city-special-edition-dual-sim-td-lte-cn-256gb-m1810e5ec", + "name": "Mi Mix 3 Forbidden City Special Edition Dual SIM TD-LTE CN 256GB M1810E5EC", + "brand": "xiaomi", + "soc": "snapdragon-845", + "release_date": "2018-11-01", + "ram_gb": 10.0, + "battery_mah": 3200, + "weight_g": 218.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 23.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2018/mi-mix-3-premium-edition-dual-sim-td-lte-cn-128gb-m1810e5e-m1810e5c.json b/data/smartphone/xiaomi/2018/mi-mix-3-premium-edition-dual-sim-td-lte-cn-128gb-m1810e5e-m1810e5c.json new file mode 100644 index 00000000000..4d0efdff7f7 --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-mix-3-premium-edition-dual-sim-td-lte-cn-128gb-m1810e5e-m1810e5c.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-mix-3-premium-edition-dual-sim-td-lte-cn-128gb-m1810e5e-m1810e5c", + "name": "Mi Mix 3 Premium Edition Dual SIM TD-LTE CN 128GB M1810E5E / M1810E5C", + "brand": "xiaomi", + "soc": "snapdragon-845", + "release_date": "2018-11-11", + "ram_gb": 8.0, + "battery_mah": 3200, + "weight_g": 218.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 23.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2018/mi-mix-3-premium-edition-dual-sim-td-lte-cn-256gb-m1810e5e-m1810e5c.json b/data/smartphone/xiaomi/2018/mi-mix-3-premium-edition-dual-sim-td-lte-cn-256gb-m1810e5e-m1810e5c.json new file mode 100644 index 00000000000..c1cbc206bd9 --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-mix-3-premium-edition-dual-sim-td-lte-cn-256gb-m1810e5e-m1810e5c.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-mix-3-premium-edition-dual-sim-td-lte-cn-256gb-m1810e5e-m1810e5c", + "name": "Mi Mix 3 Premium Edition Dual SIM TD-LTE CN 256GB M1810E5E / M1810E5C", + "brand": "xiaomi", + "soc": "snapdragon-845", + "release_date": "2018-11-11", + "ram_gb": 8.0, + "battery_mah": 3200, + "weight_g": 218.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 23.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2018/mi-mix-3-standard-edition-dual-sim-td-lte-cn-128gb-m1810e5e-m1810e5c.json b/data/smartphone/xiaomi/2018/mi-mix-3-standard-edition-dual-sim-td-lte-cn-128gb-m1810e5e-m1810e5c.json new file mode 100644 index 00000000000..cff90f1afe0 --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-mix-3-standard-edition-dual-sim-td-lte-cn-128gb-m1810e5e-m1810e5c.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-mix-3-standard-edition-dual-sim-td-lte-cn-128gb-m1810e5e-m1810e5c", + "name": "Mi Mix 3 Standard Edition Dual SIM TD-LTE CN 128GB M1810E5E / M1810E5C", + "brand": "xiaomi", + "soc": "snapdragon-845", + "release_date": "2018-11-11", + "ram_gb": 6.0, + "battery_mah": 3200, + "weight_g": 218.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 23.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2018/mi-mix-3-standard-edition-dual-sim-td-lte-cn-128gb-m1810e5t.json b/data/smartphone/xiaomi/2018/mi-mix-3-standard-edition-dual-sim-td-lte-cn-128gb-m1810e5t.json new file mode 100644 index 00000000000..697784ea15e --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-mix-3-standard-edition-dual-sim-td-lte-cn-128gb-m1810e5t.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-mix-3-standard-edition-dual-sim-td-lte-cn-128gb-m1810e5t", + "name": "Mi Mix 3 Standard Edition Dual SIM TD-LTE CN 128GB M1810E5T", + "brand": "xiaomi", + "soc": "snapdragon-845", + "release_date": "2018-11-11", + "ram_gb": 6.0, + "battery_mah": 3200, + "weight_g": 218.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 23.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2018/mi-mix-3-standard-edition-global-dual-sim-td-lte-128gb-m1810e5a.json b/data/smartphone/xiaomi/2018/mi-mix-3-standard-edition-global-dual-sim-td-lte-128gb-m1810e5a.json new file mode 100644 index 00000000000..cc4527f5dd5 --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-mix-3-standard-edition-global-dual-sim-td-lte-128gb-m1810e5a.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-mix-3-standard-edition-global-dual-sim-td-lte-128gb-m1810e5a", + "name": "Mi Mix 3 Standard Edition Global Dual SIM TD-LTE 128GB M1810E5A", + "brand": "xiaomi", + "soc": "snapdragon-845", + "release_date": "2018-12-18", + "ram_gb": 6.0, + "battery_mah": 3200, + "weight_g": 218.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 23.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "HK , Italy , Spain , Taiwan , UK , USA", + "market_regions": "Asia , Eastern Europe , Europe , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2018/mi-play-standard-edition-dual-sim-td-lte-cn-64gb-m1901f9e.json b/data/smartphone/xiaomi/2018/mi-play-standard-edition-dual-sim-td-lte-cn-64gb-m1901f9e.json new file mode 100644 index 00000000000..29be49463be --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-play-standard-edition-dual-sim-td-lte-cn-64gb-m1901f9e.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-play-standard-edition-dual-sim-td-lte-cn-64gb-m1901f9e", + "name": "Mi Play Standard Edition Dual SIM TD-LTE CN 64GB M1901F9E", + "brand": "xiaomi", + "soc": "helio-p35", + "release_date": "2018-12-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2018/mi-play-standard-edition-dual-sim-td-lte-cn-64gb-m1901f9t.json b/data/smartphone/xiaomi/2018/mi-play-standard-edition-dual-sim-td-lte-cn-64gb-m1901f9t.json new file mode 100644 index 00000000000..aa60779e223 --- /dev/null +++ b/data/smartphone/xiaomi/2018/mi-play-standard-edition-dual-sim-td-lte-cn-64gb-m1901f9t.json @@ -0,0 +1,41 @@ +{ + "slug": "mi-play-standard-edition-dual-sim-td-lte-cn-64gb-m1901f9t", + "name": "Mi Play Standard Edition Dual SIM TD-LTE CN 64GB M1901F9T", + "brand": "xiaomi", + "soc": "helio-p35", + "release_date": "2018-12-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2018/pocophone-poco-f1-armoured-edition-global-dual-sim-td-lte-128gb-m1805e10a.json b/data/smartphone/xiaomi/2018/pocophone-poco-f1-armoured-edition-global-dual-sim-td-lte-128gb-m1805e10a.json new file mode 100644 index 00000000000..7f9510296d4 --- /dev/null +++ b/data/smartphone/xiaomi/2018/pocophone-poco-f1-armoured-edition-global-dual-sim-td-lte-128gb-m1805e10a.json @@ -0,0 +1,41 @@ +{ + "slug": "pocophone-poco-f1-armoured-edition-global-dual-sim-td-lte-128gb-m1805e10a", + "name": "Pocophone Poco F1 Armoured Edition Global Dual SIM TD-LTE 128GB M1805E10A", + "brand": "xiaomi", + "soc": "snapdragon-845", + "release_date": "2018-12-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 187.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "HK , India , Indonesia , Russia", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/pocophone-poco-f1-armoured-edition-global-dual-sim-td-lte-256gb-m1805e10a.json b/data/smartphone/xiaomi/2018/pocophone-poco-f1-armoured-edition-global-dual-sim-td-lte-256gb-m1805e10a.json new file mode 100644 index 00000000000..ba89bb6e892 --- /dev/null +++ b/data/smartphone/xiaomi/2018/pocophone-poco-f1-armoured-edition-global-dual-sim-td-lte-256gb-m1805e10a.json @@ -0,0 +1,41 @@ +{ + "slug": "pocophone-poco-f1-armoured-edition-global-dual-sim-td-lte-256gb-m1805e10a", + "name": "Pocophone Poco F1 Armoured Edition Global Dual SIM TD-LTE 256GB M1805E10A", + "brand": "xiaomi", + "soc": "snapdragon-845", + "release_date": "2018-08-27", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 187.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "HK , India , Indonesia , Russia", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/pocophone-poco-f1-dual-sim-td-lte-256gb-m1805e10a.json b/data/smartphone/xiaomi/2018/pocophone-poco-f1-dual-sim-td-lte-256gb-m1805e10a.json new file mode 100644 index 00000000000..1307a34e175 --- /dev/null +++ b/data/smartphone/xiaomi/2018/pocophone-poco-f1-dual-sim-td-lte-256gb-m1805e10a.json @@ -0,0 +1,41 @@ +{ + "slug": "pocophone-poco-f1-dual-sim-td-lte-256gb-m1805e10a", + "name": "Pocophone Poco F1 Dual SIM TD-LTE 256GB M1805E10A", + "brand": "xiaomi", + "soc": "snapdragon-845", + "release_date": "2018-08-27", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "HK , India , Indonesia , Russia", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/pocophone-poco-f1-global-dual-sim-td-lte-128gb-m1805e10a.json b/data/smartphone/xiaomi/2018/pocophone-poco-f1-global-dual-sim-td-lte-128gb-m1805e10a.json new file mode 100644 index 00000000000..849588fd319 --- /dev/null +++ b/data/smartphone/xiaomi/2018/pocophone-poco-f1-global-dual-sim-td-lte-128gb-m1805e10a.json @@ -0,0 +1,41 @@ +{ + "slug": "pocophone-poco-f1-global-dual-sim-td-lte-128gb-m1805e10a", + "name": "Pocophone Poco F1 Global Dual SIM TD-LTE 128GB M1805E10A", + "brand": "xiaomi", + "soc": "snapdragon-845", + "release_date": "2018-08-27", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "France , Germany , HK , India , Indonesia , Russia , South Korea , UAE", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2018/pocophone-poco-f1-global-dual-sim-td-lte-64gb-m1805e10a.json b/data/smartphone/xiaomi/2018/pocophone-poco-f1-global-dual-sim-td-lte-64gb-m1805e10a.json new file mode 100644 index 00000000000..e27f93e2a3c --- /dev/null +++ b/data/smartphone/xiaomi/2018/pocophone-poco-f1-global-dual-sim-td-lte-64gb-m1805e10a.json @@ -0,0 +1,41 @@ +{ + "slug": "pocophone-poco-f1-global-dual-sim-td-lte-64gb-m1805e10a", + "name": "Pocophone Poco F1 Global Dual SIM TD-LTE 64GB M1805E10A", + "brand": "xiaomi", + "soc": "snapdragon-845", + "release_date": "2018-08-27", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Bulgaria , France , Germany , HK , India , Indonesia , Russia , Slovenia , South Korea , UAE", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2018/redmi-6-dual-sim-global-td-lte-32gb-m1804c3dg.json b/data/smartphone/xiaomi/2018/redmi-6-dual-sim-global-td-lte-32gb-m1804c3dg.json new file mode 100644 index 00000000000..48074994dba --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-6-dual-sim-global-td-lte-32gb-m1804c3dg.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-6-dual-sim-global-td-lte-32gb-m1804c3dg", + "name": "Redmi 6 Dual SIM Global TD-LTE 32GB M1804C3DG", + "brand": "xiaomi", + "soc": "helio-p22", + "release_date": "2018-08-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "France , Germany , Italy , Poland , Spain , UAE", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/xiaomi/2018/redmi-6-dual-sim-global-td-lte-64gb-m1804c3dg.json b/data/smartphone/xiaomi/2018/redmi-6-dual-sim-global-td-lte-64gb-m1804c3dg.json new file mode 100644 index 00000000000..2fd9c4058dd --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-6-dual-sim-global-td-lte-64gb-m1804c3dg.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-6-dual-sim-global-td-lte-64gb-m1804c3dg", + "name": "Redmi 6 Dual SIM Global TD-LTE 64GB M1804C3DG", + "brand": "xiaomi", + "soc": "helio-p22", + "release_date": "2018-08-01", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "France , Germany , Italy , Poland , Spain , UAE", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/xiaomi/2018/redmi-6-dual-sim-td-lte-apac-32gb-m1804c3dh.json b/data/smartphone/xiaomi/2018/redmi-6-dual-sim-td-lte-apac-32gb-m1804c3dh.json new file mode 100644 index 00000000000..038d5449f0d --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-6-dual-sim-td-lte-apac-32gb-m1804c3dh.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-6-dual-sim-td-lte-apac-32gb-m1804c3dh", + "name": "Redmi 6 Dual SIM TD-LTE APAC 32GB M1804C3DH", + "brand": "xiaomi", + "soc": "helio-p22", + "release_date": "2018-08-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "HK , India , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/redmi-6-dual-sim-td-lte-cn-32gb-m1804c3dc-m1804c3de.json b/data/smartphone/xiaomi/2018/redmi-6-dual-sim-td-lte-cn-32gb-m1804c3dc-m1804c3de.json new file mode 100644 index 00000000000..46d710430c2 --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-6-dual-sim-td-lte-cn-32gb-m1804c3dc-m1804c3de.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-6-dual-sim-td-lte-cn-32gb-m1804c3dc-m1804c3de", + "name": "Redmi 6 Dual SIM TD-LTE CN 32GB M1804C3DC / M1804C3DE", + "brand": "xiaomi", + "soc": "helio-p22", + "release_date": "2018-06-27", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/redmi-6-dual-sim-td-lte-cn-32gb-m1804c3dt.json b/data/smartphone/xiaomi/2018/redmi-6-dual-sim-td-lte-cn-32gb-m1804c3dt.json new file mode 100644 index 00000000000..9af46bd608c --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-6-dual-sim-td-lte-cn-32gb-m1804c3dt.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-6-dual-sim-td-lte-cn-32gb-m1804c3dt", + "name": "Redmi 6 Dual SIM TD-LTE CN 32GB M1804C3DT", + "brand": "xiaomi", + "soc": "helio-p22", + "release_date": "2018-06-27", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/redmi-6-dual-sim-td-lte-cn-64gb-m1804c3dc-m1804c3de.json b/data/smartphone/xiaomi/2018/redmi-6-dual-sim-td-lte-cn-64gb-m1804c3dc-m1804c3de.json new file mode 100644 index 00000000000..141e346fafc --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-6-dual-sim-td-lte-cn-64gb-m1804c3dc-m1804c3de.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-6-dual-sim-td-lte-cn-64gb-m1804c3dc-m1804c3de", + "name": "Redmi 6 Dual SIM TD-LTE CN 64GB M1804C3DC / M1804C3DE", + "brand": "xiaomi", + "soc": "helio-p22", + "release_date": "2018-06-27", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/redmi-6-dual-sim-td-lte-cn-64gb-m1804c3dt.json b/data/smartphone/xiaomi/2018/redmi-6-dual-sim-td-lte-cn-64gb-m1804c3dt.json new file mode 100644 index 00000000000..852a6bd6057 --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-6-dual-sim-td-lte-cn-64gb-m1804c3dt.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-6-dual-sim-td-lte-cn-64gb-m1804c3dt", + "name": "Redmi 6 Dual SIM TD-LTE CN 64GB M1804C3DT", + "brand": "xiaomi", + "soc": "helio-p22", + "release_date": "2018-06-27", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 146.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/redmi-6-pro-dual-sim-td-lte-in-32gb-m1805d1sh.json b/data/smartphone/xiaomi/2018/redmi-6-pro-dual-sim-td-lte-in-32gb-m1805d1sh.json new file mode 100644 index 00000000000..459c74ebc69 --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-6-pro-dual-sim-td-lte-in-32gb-m1805d1sh.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-6-pro-dual-sim-td-lte-in-32gb-m1805d1sh", + "name": "Redmi 6 Pro Dual SIM TD-LTE IN 32GB M1805D1SH", + "brand": "xiaomi", + "soc": "snapdragon-625", + "release_date": "2018-10-02", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2018/redmi-6-pro-dual-sim-td-lte-in-64gb-m1805d1sh.json b/data/smartphone/xiaomi/2018/redmi-6-pro-dual-sim-td-lte-in-64gb-m1805d1sh.json new file mode 100644 index 00000000000..6338d38754b --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-6-pro-dual-sim-td-lte-in-64gb-m1805d1sh.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-6-pro-dual-sim-td-lte-in-64gb-m1805d1sh", + "name": "Redmi 6 Pro Dual SIM TD-LTE IN 64GB M1805D1SH", + "brand": "xiaomi", + "soc": "snapdragon-625", + "release_date": "2018-10-02", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2018/redmi-6-pro-pemium-edition-dual-sim-td-lte-64gb-cn-m1805d1se-m1805d1sc.json b/data/smartphone/xiaomi/2018/redmi-6-pro-pemium-edition-dual-sim-td-lte-64gb-cn-m1805d1se-m1805d1sc.json new file mode 100644 index 00000000000..2fb21e5574a --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-6-pro-pemium-edition-dual-sim-td-lte-64gb-cn-m1805d1se-m1805d1sc.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-6-pro-pemium-edition-dual-sim-td-lte-64gb-cn-m1805d1se-m1805d1sc", + "name": "Redmi 6 Pro Pemium Edition Dual SIM TD-LTE 64GB CN M1805D1SE / M1805D1SC", + "brand": "xiaomi", + "soc": "snapdragon-625", + "release_date": "2018-06-27", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/redmi-6-pro-premium-edition-dual-sim-td-lte-32gb-cn-m1805d1se-m1805d1sc.json b/data/smartphone/xiaomi/2018/redmi-6-pro-premium-edition-dual-sim-td-lte-32gb-cn-m1805d1se-m1805d1sc.json new file mode 100644 index 00000000000..1f0c56b207f --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-6-pro-premium-edition-dual-sim-td-lte-32gb-cn-m1805d1se-m1805d1sc.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-6-pro-premium-edition-dual-sim-td-lte-32gb-cn-m1805d1se-m1805d1sc", + "name": "Redmi 6 Pro Premium Edition Dual SIM TD-LTE 32GB CN M1805D1SE / M1805D1SC", + "brand": "xiaomi", + "soc": "snapdragon-625", + "release_date": "2018-06-28", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/redmi-6-pro-premium-edition-dual-sim-td-lte-64gb-cn-m1805d1st.json b/data/smartphone/xiaomi/2018/redmi-6-pro-premium-edition-dual-sim-td-lte-64gb-cn-m1805d1st.json new file mode 100644 index 00000000000..7fe92af50a5 --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-6-pro-premium-edition-dual-sim-td-lte-64gb-cn-m1805d1st.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-6-pro-premium-edition-dual-sim-td-lte-64gb-cn-m1805d1st", + "name": "Redmi 6 Pro Premium Edition Dual SIM TD-LTE 64GB CN M1805D1ST", + "brand": "xiaomi", + "soc": "snapdragon-625", + "release_date": "2018-06-29", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/redmi-6-pro-standard-edition-dual-sim-td-lte-32gb-cn-m1805d1se-m1805d1sc.json b/data/smartphone/xiaomi/2018/redmi-6-pro-standard-edition-dual-sim-td-lte-32gb-cn-m1805d1se-m1805d1sc.json new file mode 100644 index 00000000000..d88de49178d --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-6-pro-standard-edition-dual-sim-td-lte-32gb-cn-m1805d1se-m1805d1sc.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-6-pro-standard-edition-dual-sim-td-lte-32gb-cn-m1805d1se-m1805d1sc", + "name": "Redmi 6 Pro Standard Edition Dual SIM TD-LTE 32GB CN M1805D1SE / M1805D1SC", + "brand": "xiaomi", + "soc": "snapdragon-625", + "release_date": "2018-06-28", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/redmi-6-pro-stardard-edition-dual-sim-td-lte-32gb-cn-m1805d1st.json b/data/smartphone/xiaomi/2018/redmi-6-pro-stardard-edition-dual-sim-td-lte-32gb-cn-m1805d1st.json new file mode 100644 index 00000000000..500ef72b78e --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-6-pro-stardard-edition-dual-sim-td-lte-32gb-cn-m1805d1st.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-6-pro-stardard-edition-dual-sim-td-lte-32gb-cn-m1805d1st", + "name": "Redmi 6 Pro Stardard Edition Dual SIM TD-LTE 32GB CN M1805D1ST", + "brand": "xiaomi", + "soc": "snapdragon-625", + "release_date": "2018-06-27", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/redmi-6a-dual-sim-global-td-lte-16gb-m1804c3cg.json b/data/smartphone/xiaomi/2018/redmi-6a-dual-sim-global-td-lte-16gb-m1804c3cg.json new file mode 100644 index 00000000000..72ce3c7e89e --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-6a-dual-sim-global-td-lte-16gb-m1804c3cg.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-6a-dual-sim-global-td-lte-16gb-m1804c3cg", + "name": "Redmi 6A Dual SIM Global TD-LTE 16GB M1804C3CG", + "brand": "xiaomi", + "soc": "helio-a22", + "release_date": "2018-08-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "France , Germany , Italy , Poland , Spain , UAE", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/xiaomi/2018/redmi-6a-dual-sim-td-lte-apac-16gb-m1804c3ch.json b/data/smartphone/xiaomi/2018/redmi-6a-dual-sim-td-lte-apac-16gb-m1804c3ch.json new file mode 100644 index 00000000000..246f4bbb496 --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-6a-dual-sim-td-lte-apac-16gb-m1804c3ch.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-6a-dual-sim-td-lte-apac-16gb-m1804c3ch", + "name": "Redmi 6A Dual SIM TD-LTE APAC 16GB M1804C3CH", + "brand": "xiaomi", + "soc": "helio-a22", + "release_date": "2018-08-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "HK , India , Taiwan", + "market_regions": "Asia , Middle East , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/redmi-6a-dual-sim-td-lte-cn-16gb-m1804c3cc-m1804c3ce.json b/data/smartphone/xiaomi/2018/redmi-6a-dual-sim-td-lte-cn-16gb-m1804c3cc-m1804c3ce.json new file mode 100644 index 00000000000..c26a1ff0865 --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-6a-dual-sim-td-lte-cn-16gb-m1804c3cc-m1804c3ce.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-6a-dual-sim-td-lte-cn-16gb-m1804c3cc-m1804c3ce", + "name": "Redmi 6A Dual SIM TD-LTE CN 16GB M1804C3CC / M1804C3CE", + "brand": "xiaomi", + "soc": "helio-a22", + "release_date": "2018-06-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2018/redmi-6a-dual-sim-td-lte-cn-16gb-m1804c3ct.json b/data/smartphone/xiaomi/2018/redmi-6a-dual-sim-td-lte-cn-16gb-m1804c3ct.json new file mode 100644 index 00000000000..2c6e1bfcd1b --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-6a-dual-sim-td-lte-cn-16gb-m1804c3ct.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-6a-dual-sim-td-lte-cn-16gb-m1804c3ct", + "name": "Redmi 6A Dual SIM TD-LTE CN 16GB M1804C3CT", + "brand": "xiaomi", + "soc": "helio-a22", + "release_date": "2018-06-01", + "ram_gb": 2.0, + "battery_mah": 3000, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/redmi-6a-dual-sim-td-lte-cn-32gb-m1804c3cc-m1804c3ce.json b/data/smartphone/xiaomi/2018/redmi-6a-dual-sim-td-lte-cn-32gb-m1804c3cc-m1804c3ce.json new file mode 100644 index 00000000000..9b521145dd4 --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-6a-dual-sim-td-lte-cn-32gb-m1804c3cc-m1804c3ce.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-6a-dual-sim-td-lte-cn-32gb-m1804c3cc-m1804c3ce", + "name": "Redmi 6A Dual SIM TD-LTE CN 32GB M1804C3CC / M1804C3CE", + "brand": "xiaomi", + "soc": "helio-a22", + "release_date": "2018-07-09", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/redmi-6a-dual-sim-td-lte-cn-32gb-m1804c3ct.json b/data/smartphone/xiaomi/2018/redmi-6a-dual-sim-td-lte-cn-32gb-m1804c3ct.json new file mode 100644 index 00000000000..250bdf54f11 --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-6a-dual-sim-td-lte-cn-32gb-m1804c3ct.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-6a-dual-sim-td-lte-cn-32gb-m1804c3ct", + "name": "Redmi 6A Dual SIM TD-LTE CN 32GB M1804C3CT", + "brand": "xiaomi", + "soc": "helio-a22", + "release_date": "2018-07-09", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 145.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/redmi-note-5-premium-edition-dual-sim-td-lte-cn-64gb-mec7s-m1803e7sc.json b/data/smartphone/xiaomi/2018/redmi-note-5-premium-edition-dual-sim-td-lte-cn-64gb-mec7s-m1803e7sc.json new file mode 100644 index 00000000000..588d98654ab --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-note-5-premium-edition-dual-sim-td-lte-cn-64gb-mec7s-m1803e7sc.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-note-5-premium-edition-dual-sim-td-lte-cn-64gb-mec7s-m1803e7sc", + "name": "Redmi Note 5 Premium Edition Dual SIM TD-LTE CN 64GB MEC7S / M1803E7SC", + "brand": "xiaomi", + "soc": "snapdragon-636", + "release_date": "2018-03-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2018/redmi-note-5-premium-edition-global-dual-sim-td-lte-64gb-meg7s-m1803e7sg.json b/data/smartphone/xiaomi/2018/redmi-note-5-premium-edition-global-dual-sim-td-lte-64gb-meg7s-m1803e7sg.json new file mode 100644 index 00000000000..2d64980f204 --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-note-5-premium-edition-global-dual-sim-td-lte-64gb-meg7s-m1803e7sg.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-note-5-premium-edition-global-dual-sim-td-lte-64gb-meg7s-m1803e7sg", + "name": "Redmi Note 5 Premium Edition Global Dual SIM TD-LTE 64GB MEG7S / M1803E7SG", + "brand": "xiaomi", + "soc": "snapdragon-636", + "release_date": "2018-05-09", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "HK , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/redmi-note-5-pro-standard-edition-dual-sim-td-lte-in-mzb6079in-m1803e7sh.json b/data/smartphone/xiaomi/2018/redmi-note-5-pro-standard-edition-dual-sim-td-lte-in-mzb6079in-m1803e7sh.json new file mode 100644 index 00000000000..9c4e57a1004 --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-note-5-pro-standard-edition-dual-sim-td-lte-in-mzb6079in-m1803e7sh.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-note-5-pro-standard-edition-dual-sim-td-lte-in-mzb6079in-m1803e7sh", + "name": "Redmi Note 5 Pro Standard Edition Dual SIM TD-LTE IN MZB6079IN / M1803E7SH", + "brand": "xiaomi", + "soc": "snapdragon-636", + "release_date": "2018-03-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2018/redmi-note-5-standard-edition-dual-sim-td-lte-cn-32gb-mee7s.json b/data/smartphone/xiaomi/2018/redmi-note-5-standard-edition-dual-sim-td-lte-cn-32gb-mee7s.json new file mode 100644 index 00000000000..696d3e258c8 --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-note-5-standard-edition-dual-sim-td-lte-cn-32gb-mee7s.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-note-5-standard-edition-dual-sim-td-lte-cn-32gb-mee7s", + "name": "Redmi Note 5 Standard Edition Dual SIM TD-LTE CN 32GB MEE7S", + "brand": "xiaomi", + "soc": "snapdragon-636", + "release_date": "2018-03-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2018/redmi-note-5-standard-edition-dual-sim-td-lte-cn-64gb-mee7s-m1803e7se.json b/data/smartphone/xiaomi/2018/redmi-note-5-standard-edition-dual-sim-td-lte-cn-64gb-mee7s-m1803e7se.json new file mode 100644 index 00000000000..3fd51a502ba --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-note-5-standard-edition-dual-sim-td-lte-cn-64gb-mee7s-m1803e7se.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-note-5-standard-edition-dual-sim-td-lte-cn-64gb-mee7s-m1803e7se", + "name": "Redmi Note 5 Standard Edition Dual SIM TD-LTE CN 64GB MEE7S / M1803E7SE", + "brand": "xiaomi", + "soc": "snapdragon-636", + "release_date": "2018-03-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2018/redmi-note-5-standard-edition-global-dual-sim-td-lte-32gb-meg7s-m1803e7sg.json b/data/smartphone/xiaomi/2018/redmi-note-5-standard-edition-global-dual-sim-td-lte-32gb-meg7s-m1803e7sg.json new file mode 100644 index 00000000000..1a9907a0590 --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-note-5-standard-edition-global-dual-sim-td-lte-32gb-meg7s-m1803e7sg.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-note-5-standard-edition-global-dual-sim-td-lte-32gb-meg7s-m1803e7sg", + "name": "Redmi Note 5 Standard Edition Global Dual SIM TD-LTE 32GB MEG7S / M1803E7SG", + "brand": "xiaomi", + "soc": "snapdragon-636", + "release_date": "2018-05-09", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Indonesia , Malaysia , Thailand , Vietnam", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/redmi-note-5-standard-edition-global-dual-sim-td-lte-64gb-meg7s-m1803e7sg.json b/data/smartphone/xiaomi/2018/redmi-note-5-standard-edition-global-dual-sim-td-lte-64gb-meg7s-m1803e7sg.json new file mode 100644 index 00000000000..7a283a881b8 --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-note-5-standard-edition-global-dual-sim-td-lte-64gb-meg7s-m1803e7sg.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-note-5-standard-edition-global-dual-sim-td-lte-64gb-meg7s-m1803e7sg", + "name": "Redmi Note 5 Standard Edition Global Dual SIM TD-LTE 64GB MEG7S / M1803E7SG", + "brand": "xiaomi", + "soc": "snapdragon-636", + "release_date": "2018-05-09", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Indonesia , Malaysia , South Korea , Taiwan , Thailand , UAE , Vietnam", + "market_regions": "Asia , Middle East , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/redmi-note-6-pro-dual-sim-td-lte-apac-32gb-m1806e7th.json b/data/smartphone/xiaomi/2018/redmi-note-6-pro-dual-sim-td-lte-apac-32gb-m1806e7th.json new file mode 100644 index 00000000000..72097a6390f --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-note-6-pro-dual-sim-td-lte-apac-32gb-m1806e7th.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-note-6-pro-dual-sim-td-lte-apac-32gb-m1806e7th", + "name": "Redmi Note 6 Pro Dual SIM TD-LTE APAC 32GB M1806E7TH", + "brand": "xiaomi", + "soc": "snapdragon-636", + "release_date": "2018-10-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Indonesia , Philippines , Russia , Singapore , Taiwan , Thailand", + "market_regions": "Asia , Eastern Europe , Oceania , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/redmi-note-6-pro-dual-sim-td-lte-apac-64gb-m1806e7th.json b/data/smartphone/xiaomi/2018/redmi-note-6-pro-dual-sim-td-lte-apac-64gb-m1806e7th.json new file mode 100644 index 00000000000..099eafaa302 --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-note-6-pro-dual-sim-td-lte-apac-64gb-m1806e7th.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-note-6-pro-dual-sim-td-lte-apac-64gb-m1806e7th", + "name": "Redmi Note 6 Pro Dual SIM TD-LTE APAC 64GB M1806E7TH", + "brand": "xiaomi", + "soc": "snapdragon-636", + "release_date": "2018-10-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Indonesia , Philippines , Russia , Singapore , Taiwan , Thailand", + "market_regions": "Asia , Eastern Europe , Oceania , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/redmi-note-6-pro-dual-sim-td-lte-in-my-mzb6876in-mzb6877in-mzb6878in-mzb6882in.json b/data/smartphone/xiaomi/2018/redmi-note-6-pro-dual-sim-td-lte-in-my-mzb6876in-mzb6877in-mzb6878in-mzb6882in.json new file mode 100644 index 00000000000..c365fe44c19 --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-note-6-pro-dual-sim-td-lte-in-my-mzb6876in-mzb6877in-mzb6878in-mzb6882in.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-note-6-pro-dual-sim-td-lte-in-my-mzb6876in-mzb6877in-mzb6878in-mzb6882in", + "name": "Redmi Note 6 Pro Dual SIM TD-LTE IN MY MZB6876IN / MZB6877IN / MZB6878IN / MZB6882IN", + "brand": "xiaomi", + "soc": "snapdragon-636", + "release_date": "2018-11-28", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Malaysia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/redmi-note-6-pro-dual-sim-td-lte-in-my-mzb6879in-mzb6880in-mzb6881in-mzb6883in.json b/data/smartphone/xiaomi/2018/redmi-note-6-pro-dual-sim-td-lte-in-my-mzb6879in-mzb6880in-mzb6881in-mzb6883in.json new file mode 100644 index 00000000000..d41dd818403 --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-note-6-pro-dual-sim-td-lte-in-my-mzb6879in-mzb6880in-mzb6881in-mzb6883in.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-note-6-pro-dual-sim-td-lte-in-my-mzb6879in-mzb6880in-mzb6881in-mzb6883in", + "name": "Redmi Note 6 Pro Dual SIM TD-LTE IN MY MZB6879IN / MZB6880IN / MZB6881IN / MZB6883IN", + "brand": "xiaomi", + "soc": "snapdragon-636", + "release_date": "2018-11-28", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India , Malaysia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/redmi-note-6-pro-global-dual-sim-td-lte-32gb-m1806e7tg.json b/data/smartphone/xiaomi/2018/redmi-note-6-pro-global-dual-sim-td-lte-32gb-m1806e7tg.json new file mode 100644 index 00000000000..5371c7d80c7 --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-note-6-pro-global-dual-sim-td-lte-32gb-m1806e7tg.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-note-6-pro-global-dual-sim-td-lte-32gb-m1806e7tg", + "name": "Redmi Note 6 Pro Global Dual SIM TD-LTE 32GB M1806E7TG", + "brand": "xiaomi", + "soc": "snapdragon-636", + "release_date": "2018-09-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "France , HK , Italy , Poland , Russia , Spain , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2018/redmi-note-6-pro-global-dual-sim-td-lte-64gb-m1806e7tg.json b/data/smartphone/xiaomi/2018/redmi-note-6-pro-global-dual-sim-td-lte-64gb-m1806e7tg.json new file mode 100644 index 00000000000..3234a6cf3d5 --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-note-6-pro-global-dual-sim-td-lte-64gb-m1806e7tg.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-note-6-pro-global-dual-sim-td-lte-64gb-m1806e7tg", + "name": "Redmi Note 6 Pro Global Dual SIM TD-LTE 64GB M1806E7TG", + "brand": "xiaomi", + "soc": "snapdragon-636", + "release_date": "2018-09-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "France , HK , Italy , Poland , Russia , Spain , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2018/redmi-s2-dual-sim-global-td-lte-32gb-m1803e6g.json b/data/smartphone/xiaomi/2018/redmi-s2-dual-sim-global-td-lte-32gb-m1803e6g.json new file mode 100644 index 00000000000..cfe653b7002 --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-s2-dual-sim-global-td-lte-32gb-m1803e6g.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-s2-dual-sim-global-td-lte-32gb-m1803e6g", + "name": "Redmi S2 Dual SIM Global TD-LTE 32GB M1803E6G", + "brand": "xiaomi", + "soc": "snapdragon-625", + "release_date": "2018-06-01", + "ram_gb": 3.0, + "battery_mah": 3080, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Indonesia , Malaysia , Poland , Russia , Singapore , Spain , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2018/redmi-s2-dual-sim-global-td-lte-64gb-m1803e6g.json b/data/smartphone/xiaomi/2018/redmi-s2-dual-sim-global-td-lte-64gb-m1803e6g.json new file mode 100644 index 00000000000..af3afd9b3e8 --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-s2-dual-sim-global-td-lte-64gb-m1803e6g.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-s2-dual-sim-global-td-lte-64gb-m1803e6g", + "name": "Redmi S2 Dual SIM Global TD-LTE 64GB M1803E6G", + "brand": "xiaomi", + "soc": "snapdragon-625", + "release_date": "2018-07-01", + "ram_gb": 4.0, + "battery_mah": 3080, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Indonesia , Malaysia , Poland , Russia , Singapore , Spain , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2018/redmi-s2-dual-sim-td-lte-cn-32gb-m1803e6e-m1803e6c.json b/data/smartphone/xiaomi/2018/redmi-s2-dual-sim-td-lte-cn-32gb-m1803e6e-m1803e6c.json new file mode 100644 index 00000000000..3123c0b98a1 --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-s2-dual-sim-td-lte-cn-32gb-m1803e6e-m1803e6c.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-s2-dual-sim-td-lte-cn-32gb-m1803e6e-m1803e6c", + "name": "Redmi S2 Dual SIM TD-LTE CN 32GB M1803E6E / M1803E6C", + "brand": "xiaomi", + "soc": "snapdragon-625", + "release_date": "2018-05-01", + "ram_gb": 3.0, + "battery_mah": 3080, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/redmi-s2-dual-sim-td-lte-cn-32gb-m1803e6t.json b/data/smartphone/xiaomi/2018/redmi-s2-dual-sim-td-lte-cn-32gb-m1803e6t.json new file mode 100644 index 00000000000..1c2e03413ad --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-s2-dual-sim-td-lte-cn-32gb-m1803e6t.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-s2-dual-sim-td-lte-cn-32gb-m1803e6t", + "name": "Redmi S2 Dual SIM TD-LTE CN 32GB M1803E6T", + "brand": "xiaomi", + "soc": "snapdragon-625", + "release_date": "2018-05-01", + "ram_gb": 3.0, + "battery_mah": 3080, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/redmi-s2-dual-sim-td-lte-cn-64gb-m1803e6e-m1803e6c.json b/data/smartphone/xiaomi/2018/redmi-s2-dual-sim-td-lte-cn-64gb-m1803e6e-m1803e6c.json new file mode 100644 index 00000000000..95416a96e81 --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-s2-dual-sim-td-lte-cn-64gb-m1803e6e-m1803e6c.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-s2-dual-sim-td-lte-cn-64gb-m1803e6e-m1803e6c", + "name": "Redmi S2 Dual SIM TD-LTE CN 64GB M1803E6E / M1803E6C", + "brand": "xiaomi", + "soc": "snapdragon-625", + "release_date": "2018-05-01", + "ram_gb": 4.0, + "battery_mah": 3080, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/redmi-s2-dual-sim-td-lte-cn-64gb-m1803e6t.json b/data/smartphone/xiaomi/2018/redmi-s2-dual-sim-td-lte-cn-64gb-m1803e6t.json new file mode 100644 index 00000000000..31c4ccbff43 --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-s2-dual-sim-td-lte-cn-64gb-m1803e6t.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-s2-dual-sim-td-lte-cn-64gb-m1803e6t", + "name": "Redmi S2 Dual SIM TD-LTE CN 64GB M1803E6T", + "brand": "xiaomi", + "soc": "snapdragon-625", + "release_date": "2018-05-01", + "ram_gb": 4.0, + "battery_mah": 3080, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/redmi-s2-dual-sim-td-lte-eg-bd-mx-32gb-m1803e6h.json b/data/smartphone/xiaomi/2018/redmi-s2-dual-sim-td-lte-eg-bd-mx-32gb-m1803e6h.json new file mode 100644 index 00000000000..c4a4dcdf6f8 --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-s2-dual-sim-td-lte-eg-bd-mx-32gb-m1803e6h.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-s2-dual-sim-td-lte-eg-bd-mx-32gb-m1803e6h", + "name": "Redmi S2 Dual SIM TD-LTE EG BD MX 32GB M1803E6H", + "brand": "xiaomi", + "soc": "snapdragon-625", + "release_date": "2018-06-01", + "ram_gb": 3.0, + "battery_mah": 3000, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Bangladesh , Egypt , Mexico", + "market_regions": "Africa , Asia , North America , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/redmi-s2-dual-sim-td-lte-eg-bd-mx-64gb-m1803e6h.json b/data/smartphone/xiaomi/2018/redmi-s2-dual-sim-td-lte-eg-bd-mx-64gb-m1803e6h.json new file mode 100644 index 00000000000..5dcaca2a476 --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-s2-dual-sim-td-lte-eg-bd-mx-64gb-m1803e6h.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-s2-dual-sim-td-lte-eg-bd-mx-64gb-m1803e6h", + "name": "Redmi S2 Dual SIM TD-LTE EG BD MX 64GB M1803E6H", + "brand": "xiaomi", + "soc": "snapdragon-625", + "release_date": "2018-06-24", + "ram_gb": 4.0, + "battery_mah": 3000, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Bangladesh , Egypt , Mexico", + "market_regions": "Africa , Asia , North America , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/redmi-y2-dual-sim-td-lte-in-32gb-mzb6144in-mzb6145in-mzb6783in-mzb6784in.json b/data/smartphone/xiaomi/2018/redmi-y2-dual-sim-td-lte-in-32gb-mzb6144in-mzb6145in-mzb6783in-mzb6784in.json new file mode 100644 index 00000000000..a0886c7ee31 --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-y2-dual-sim-td-lte-in-32gb-mzb6144in-mzb6145in-mzb6783in-mzb6784in.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-y2-dual-sim-td-lte-in-32gb-mzb6144in-mzb6145in-mzb6783in-mzb6784in", + "name": "Redmi Y2 Dual SIM TD-LTE IN 32GB MZB6144IN / MZB6145IN / MZB6783IN / MZB6784IN", + "brand": "xiaomi", + "soc": "snapdragon-625", + "release_date": "2018-06-19", + "ram_gb": 3.0, + "battery_mah": 3080, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2018/redmi-y2-dual-sim-td-lte-in-64gb-mzb6305in-mzb6306in-mzb6307in.json b/data/smartphone/xiaomi/2018/redmi-y2-dual-sim-td-lte-in-64gb-mzb6305in-mzb6306in-mzb6307in.json new file mode 100644 index 00000000000..604020a6ed9 --- /dev/null +++ b/data/smartphone/xiaomi/2018/redmi-y2-dual-sim-td-lte-in-64gb-mzb6305in-mzb6306in-mzb6307in.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-y2-dual-sim-td-lte-in-64gb-mzb6305in-mzb6306in-mzb6307in", + "name": "Redmi Y2 Dual SIM TD-LTE IN 64GB MZB6305IN / MZB6306IN / MZB6307IN", + "brand": "xiaomi", + "soc": "snapdragon-625", + "release_date": "2018-06-19", + "ram_gb": 4.0, + "battery_mah": 3080, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2019/black-shark-2-dual-sim-td-lte-cn-128gb-skw-a0.json b/data/smartphone/xiaomi/2019/black-shark-2-dual-sim-td-lte-cn-128gb-skw-a0.json new file mode 100644 index 00000000000..df2d95b0929 --- /dev/null +++ b/data/smartphone/xiaomi/2019/black-shark-2-dual-sim-td-lte-cn-128gb-skw-a0.json @@ -0,0 +1,42 @@ +{ + "slug": "black-shark-2-dual-sim-td-lte-cn-128gb-skw-a0", + "name": "Black Shark 2 Dual SIM TD-LTE CN 128GB SKW-A0", + "brand": "xiaomi", + "soc": "snapdragon-855", + "release_date": "2019-03-19", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/black-shark-2-dual-sim-td-lte-cn-256gb-skw-a0.json b/data/smartphone/xiaomi/2019/black-shark-2-dual-sim-td-lte-cn-256gb-skw-a0.json new file mode 100644 index 00000000000..376df2011af --- /dev/null +++ b/data/smartphone/xiaomi/2019/black-shark-2-dual-sim-td-lte-cn-256gb-skw-a0.json @@ -0,0 +1,42 @@ +{ + "slug": "black-shark-2-dual-sim-td-lte-cn-256gb-skw-a0", + "name": "Black Shark 2 Dual SIM TD-LTE CN 256GB SKW-A0", + "brand": "xiaomi", + "soc": "snapdragon-855", + "release_date": "2019-04-01", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/black-shark-2-global-dual-sim-td-lte-128gb-skw-h0.json b/data/smartphone/xiaomi/2019/black-shark-2-global-dual-sim-td-lte-128gb-skw-h0.json new file mode 100644 index 00000000000..f18509deb9f --- /dev/null +++ b/data/smartphone/xiaomi/2019/black-shark-2-global-dual-sim-td-lte-128gb-skw-h0.json @@ -0,0 +1,42 @@ +{ + "slug": "black-shark-2-global-dual-sim-td-lte-128gb-skw-h0", + "name": "Black Shark 2 Global Dual SIM TD-LTE 128GB SKW-H0", + "brand": "xiaomi", + "soc": "snapdragon-855", + "release_date": "2019-03-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Belgium , Germany , HK , Italy , Malaysia , Netherlands , Portugal , South Korea , Spain , UK", + "market_regions": "Asia , Australia , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/black-shark-2-global-dual-sim-td-lte-256gb-skw-h0.json b/data/smartphone/xiaomi/2019/black-shark-2-global-dual-sim-td-lte-256gb-skw-h0.json new file mode 100644 index 00000000000..992e70c5d1b --- /dev/null +++ b/data/smartphone/xiaomi/2019/black-shark-2-global-dual-sim-td-lte-256gb-skw-h0.json @@ -0,0 +1,42 @@ +{ + "slug": "black-shark-2-global-dual-sim-td-lte-256gb-skw-h0", + "name": "Black Shark 2 Global Dual SIM TD-LTE 256GB SKW-H0", + "brand": "xiaomi", + "soc": "snapdragon-855", + "release_date": "2019-03-01", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Belgium , Germany , HK , Italy , Malaysia , Netherlands , Portugal , South Korea , Spain , UK", + "market_regions": "Asia , Australia , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/black-shark-2-pro-dual-sim-td-lte-cn-128gb-dlt-a0.json b/data/smartphone/xiaomi/2019/black-shark-2-pro-dual-sim-td-lte-cn-128gb-dlt-a0.json new file mode 100644 index 00000000000..ba94c31ace6 --- /dev/null +++ b/data/smartphone/xiaomi/2019/black-shark-2-pro-dual-sim-td-lte-cn-128gb-dlt-a0.json @@ -0,0 +1,42 @@ +{ + "slug": "black-shark-2-pro-dual-sim-td-lte-cn-128gb-dlt-a0", + "name": "Black Shark 2 Pro Dual SIM TD-LTE CN 128GB DLT-A0", + "brand": "xiaomi", + "soc": "snapdragon-855-plus", + "release_date": "2019-08-01", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2019/black-shark-2-pro-dual-sim-td-lte-cn-256gb-dlt-a0.json b/data/smartphone/xiaomi/2019/black-shark-2-pro-dual-sim-td-lte-cn-256gb-dlt-a0.json new file mode 100644 index 00000000000..3e7ae4c332d --- /dev/null +++ b/data/smartphone/xiaomi/2019/black-shark-2-pro-dual-sim-td-lte-cn-256gb-dlt-a0.json @@ -0,0 +1,42 @@ +{ + "slug": "black-shark-2-pro-dual-sim-td-lte-cn-256gb-dlt-a0", + "name": "Black Shark 2 Pro Dual SIM TD-LTE CN 256GB DLT-A0", + "brand": "xiaomi", + "soc": "snapdragon-855-plus", + "release_date": "2019-08-01", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2019/black-shark-2-pro-global-dual-sim-td-lte-128gb-dlt-h0.json b/data/smartphone/xiaomi/2019/black-shark-2-pro-global-dual-sim-td-lte-128gb-dlt-h0.json new file mode 100644 index 00000000000..c2d2c0f0cee --- /dev/null +++ b/data/smartphone/xiaomi/2019/black-shark-2-pro-global-dual-sim-td-lte-128gb-dlt-h0.json @@ -0,0 +1,42 @@ +{ + "slug": "black-shark-2-pro-global-dual-sim-td-lte-128gb-dlt-h0", + "name": "Black Shark 2 Pro Global Dual SIM TD-LTE 128GB DLT-H0", + "brand": "xiaomi", + "soc": "snapdragon-855-plus", + "release_date": "2019-09-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Belgium , France , Germany , Indonesia , Italy , Japan , Malaysia , Netherlands , Portugal , Russia , Saudi Arabia , Spain , Taiwan , UAE , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/black-shark-2-pro-global-dual-sim-td-lte-256gb-dlt-h0.json b/data/smartphone/xiaomi/2019/black-shark-2-pro-global-dual-sim-td-lte-256gb-dlt-h0.json new file mode 100644 index 00000000000..ea94d1247e1 --- /dev/null +++ b/data/smartphone/xiaomi/2019/black-shark-2-pro-global-dual-sim-td-lte-256gb-dlt-h0.json @@ -0,0 +1,42 @@ +{ + "slug": "black-shark-2-pro-global-dual-sim-td-lte-256gb-dlt-h0", + "name": "Black Shark 2 Pro Global Dual SIM TD-LTE 256GB DLT-H0", + "brand": "xiaomi", + "soc": "snapdragon-855-plus", + "release_date": "2019-09-01", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Belgium , France , Germany , Indonesia , Italy , Japan , Malaysia , Netherlands , Portugal , Russia , Saudi Arabia , Spain , Taiwan , UAE , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/black-shark-global-dual-sim-td-lte-128gb-skr-h0.json b/data/smartphone/xiaomi/2019/black-shark-global-dual-sim-td-lte-128gb-skr-h0.json new file mode 100644 index 00000000000..2e0feb4355b --- /dev/null +++ b/data/smartphone/xiaomi/2019/black-shark-global-dual-sim-td-lte-128gb-skr-h0.json @@ -0,0 +1,41 @@ +{ + "slug": "black-shark-global-dual-sim-td-lte-128gb-skr-h0", + "name": "Black Shark Global Dual SIM TD-LTE 128GB SKR-H0", + "brand": "xiaomi", + "soc": "snapdragon-845", + "release_date": "2019-01-22", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 20.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Germany , HK , South Korea , Spain , UK", + "market_regions": "Asia , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/black-shark-global-dual-sim-td-lte-64gb-skr-h0.json b/data/smartphone/xiaomi/2019/black-shark-global-dual-sim-td-lte-64gb-skr-h0.json new file mode 100644 index 00000000000..c7874658cba --- /dev/null +++ b/data/smartphone/xiaomi/2019/black-shark-global-dual-sim-td-lte-64gb-skr-h0.json @@ -0,0 +1,41 @@ +{ + "slug": "black-shark-global-dual-sim-td-lte-64gb-skr-h0", + "name": "Black Shark Global Dual SIM TD-LTE 64GB SKR-H0", + "brand": "xiaomi", + "soc": "snapdragon-845", + "release_date": "2019-01-21", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 20.2 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Germany , HK , South Korea , Spain , UK", + "market_regions": "Asia , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/mi-9-global-dual-sim-td-lte-128gb-m1902f1g.json b/data/smartphone/xiaomi/2019/mi-9-global-dual-sim-td-lte-128gb-m1902f1g.json new file mode 100644 index 00000000000..75eea00703e --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-9-global-dual-sim-td-lte-128gb-m1902f1g.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-9-global-dual-sim-td-lte-128gb-m1902f1g", + "name": "Mi 9 Global Dual SIM TD-LTE 128GB M1902F1G", + "brand": "xiaomi", + "soc": "snapdragon-855", + "release_date": "2019-03-01", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Cyprus , Egypt , France , Greece , Germany , HK , Hungary , Italy , Malaysia , Mexico , Netherlands , Philippines , Poland , Russia , Singapore , Spain , Taiwan , Thailand , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , North America , Oceania , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2019/mi-9-global-dual-sim-td-lte-64gb-m1902f1g.json b/data/smartphone/xiaomi/2019/mi-9-global-dual-sim-td-lte-64gb-m1902f1g.json new file mode 100644 index 00000000000..2d25fd3121f --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-9-global-dual-sim-td-lte-64gb-m1902f1g.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-9-global-dual-sim-td-lte-64gb-m1902f1g", + "name": "Mi 9 Global Dual SIM TD-LTE 64GB M1902F1G", + "brand": "xiaomi", + "soc": "snapdragon-855", + "release_date": "2019-03-01", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Cyprus , Egypt , France , Greece , Germany , HK , Hungary , Italy , Malaysia , Mexico , Netherlands , Philippines , Poland , Russia , Singapore , Spain , Taiwan , Thailand , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , North America , Oceania , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2019/mi-9-lite-global-dual-sim-td-lte-128gb-m1904f3bg.json b/data/smartphone/xiaomi/2019/mi-9-lite-global-dual-sim-td-lte-128gb-m1904f3bg.json new file mode 100644 index 00000000000..487c46fc10f --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-9-lite-global-dual-sim-td-lte-128gb-m1904f3bg.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-9-lite-global-dual-sim-td-lte-128gb-m1904f3bg", + "name": "Mi 9 Lite Global Dual SIM TD-LTE 128GB M1904F3BG", + "brand": "xiaomi", + "soc": "snapdragon-710", + "release_date": "2019-09-26", + "ram_gb": 6.0, + "battery_mah": 4030, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "France , Germany , HK , Hungary , Indonesia , Italy , Malaysia , Poland , Russia , Singapore , Spain , Taiwan , Thailand , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/mi-9-lite-global-dual-sim-td-lte-64gb-m1904f3bg.json b/data/smartphone/xiaomi/2019/mi-9-lite-global-dual-sim-td-lte-64gb-m1904f3bg.json new file mode 100644 index 00000000000..6d3a2fbe8a4 --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-9-lite-global-dual-sim-td-lte-64gb-m1904f3bg.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-9-lite-global-dual-sim-td-lte-64gb-m1904f3bg", + "name": "Mi 9 Lite Global Dual SIM TD-LTE 64GB M1904F3BG", + "brand": "xiaomi", + "soc": "snapdragon-710", + "release_date": "2019-09-26", + "ram_gb": 6.0, + "battery_mah": 4030, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "France , Germany , HK , Hungary , Indonesia , Italy , Malaysia , Poland , Russia , Singapore , Spain , Taiwan , Thailand , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/mi-9-premium-edition-dual-sim-td-lte-cn-256gb-m1902f1a-m1902f1c.json b/data/smartphone/xiaomi/2019/mi-9-premium-edition-dual-sim-td-lte-cn-256gb-m1902f1a-m1902f1c.json new file mode 100644 index 00000000000..61b310cfe35 --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-9-premium-edition-dual-sim-td-lte-cn-256gb-m1902f1a-m1902f1c.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-9-premium-edition-dual-sim-td-lte-cn-256gb-m1902f1a-m1902f1c", + "name": "Mi 9 Premium Edition Dual SIM TD-LTE CN 256GB M1902F1A / M1902F1C", + "brand": "xiaomi", + "soc": "snapdragon-855", + "release_date": "2019-08-14", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/mi-9-premium-edition-dual-sim-td-lte-cn-m1902f1a-m1902f1c.json b/data/smartphone/xiaomi/2019/mi-9-premium-edition-dual-sim-td-lte-cn-m1902f1a-m1902f1c.json new file mode 100644 index 00000000000..2aa8b39e5d5 --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-9-premium-edition-dual-sim-td-lte-cn-m1902f1a-m1902f1c.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-9-premium-edition-dual-sim-td-lte-cn-m1902f1a-m1902f1c", + "name": "Mi 9 Premium Edition Dual SIM TD-LTE CN M1902F1A / M1902F1C", + "brand": "xiaomi", + "soc": "snapdragon-855", + "release_date": "2019-02-01", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/mi-9-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m1908f1xe.json b/data/smartphone/xiaomi/2019/mi-9-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m1908f1xe.json new file mode 100644 index 00000000000..0530ec5e138 --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-9-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m1908f1xe.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-9-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m1908f1xe", + "name": "Mi 9 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB M1908F1XE", + "brand": "xiaomi", + "soc": "snapdragon-855-plus", + "release_date": "2019-10-01", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/mi-9-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-m1908f1xe.json b/data/smartphone/xiaomi/2019/mi-9-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-m1908f1xe.json new file mode 100644 index 00000000000..b992e149ea7 --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-9-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-m1908f1xe.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-9-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-m1908f1xe", + "name": "Mi 9 Pro 5G Premium Edition Dual SIM TD-LTE CN 512GB M1908F1XE", + "brand": "xiaomi", + "soc": "snapdragon-855-plus", + "release_date": "2019-10-01", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/mi-9-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m1908f1xe.json b/data/smartphone/xiaomi/2019/mi-9-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m1908f1xe.json new file mode 100644 index 00000000000..f0bc9b66b03 --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-9-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m1908f1xe.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-9-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m1908f1xe", + "name": "Mi 9 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB M1908F1XE", + "brand": "xiaomi", + "soc": "snapdragon-855-plus", + "release_date": "2019-10-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/mi-9-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m1908f1xe.json b/data/smartphone/xiaomi/2019/mi-9-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m1908f1xe.json new file mode 100644 index 00000000000..a8762703924 --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-9-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m1908f1xe.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-9-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m1908f1xe", + "name": "Mi 9 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB M1908F1XE", + "brand": "xiaomi", + "soc": "snapdragon-855-plus", + "release_date": "2019-10-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 45, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/mi-9-se-dual-sim-td-lte-cn-m1903f2a-128gb.json b/data/smartphone/xiaomi/2019/mi-9-se-dual-sim-td-lte-cn-m1903f2a-128gb.json new file mode 100644 index 00000000000..9c066e56661 --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-9-se-dual-sim-td-lte-cn-m1903f2a-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-9-se-dual-sim-td-lte-cn-m1903f2a-128gb", + "name": "Mi 9 SE Dual SIM TD-LTE CN M1903F2A 128GB", + "brand": "xiaomi", + "soc": "snapdragon-712", + "release_date": "2019-03-02", + "ram_gb": 6.0, + "battery_mah": 3070, + "weight_g": 155.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.97, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/mi-9-se-dual-sim-td-lte-cn-m1903f2a-64gb.json b/data/smartphone/xiaomi/2019/mi-9-se-dual-sim-td-lte-cn-m1903f2a-64gb.json new file mode 100644 index 00000000000..9846e9ab11c --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-9-se-dual-sim-td-lte-cn-m1903f2a-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-9-se-dual-sim-td-lte-cn-m1903f2a-64gb", + "name": "Mi 9 SE Dual SIM TD-LTE CN M1903F2A 64GB", + "brand": "xiaomi", + "soc": "snapdragon-712", + "release_date": "2019-03-02", + "ram_gb": 6.0, + "battery_mah": 3070, + "weight_g": 155.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.97, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/mi-9-se-global-dual-sim-td-lte-m1903f2g-128gb-mi-9-lite.json b/data/smartphone/xiaomi/2019/mi-9-se-global-dual-sim-td-lte-m1903f2g-128gb-mi-9-lite.json new file mode 100644 index 00000000000..590994addaf --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-9-se-global-dual-sim-td-lte-m1903f2g-128gb-mi-9-lite.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-9-se-global-dual-sim-td-lte-m1903f2g-128gb-mi-9-lite", + "name": "Mi 9 SE Global Dual SIM TD-LTE M1903F2G 128GB / Mi 9 Lite", + "brand": "xiaomi", + "soc": "snapdragon-712", + "release_date": "2019-04-16", + "ram_gb": 6.0, + "battery_mah": 3070, + "weight_g": 155.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.97, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "France , Germany , Hungary , Netherlands , Russia , Spain , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/mi-9-se-global-dual-sim-td-lte-m1903f2g-64gb.json b/data/smartphone/xiaomi/2019/mi-9-se-global-dual-sim-td-lte-m1903f2g-64gb.json new file mode 100644 index 00000000000..7dfc3522128 --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-9-se-global-dual-sim-td-lte-m1903f2g-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-9-se-global-dual-sim-td-lte-m1903f2g-64gb", + "name": "Mi 9 SE Global Dual SIM TD-LTE M1903F2G 64GB", + "brand": "xiaomi", + "soc": "snapdragon-712", + "release_date": "2019-04-18", + "ram_gb": 6.0, + "battery_mah": 3070, + "weight_g": 155.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.97, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "France , Germany , Netherlands , Russia , Spain , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/mi-9-standard-edition-dual-sim-td-lte-cn-m1902f1a-m1902f1c.json b/data/smartphone/xiaomi/2019/mi-9-standard-edition-dual-sim-td-lte-cn-m1902f1a-m1902f1c.json new file mode 100644 index 00000000000..64d9de8acfb --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-9-standard-edition-dual-sim-td-lte-cn-m1902f1a-m1902f1c.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-9-standard-edition-dual-sim-td-lte-cn-m1902f1a-m1902f1c", + "name": "Mi 9 Standard Edition Dual SIM TD-LTE CN M1902F1A / M1902F1C", + "brand": "xiaomi", + "soc": "snapdragon-855", + "release_date": "2019-02-01", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/mi-9-standard-edition-dual-sim-td-lte-cn-m1902f1t.json b/data/smartphone/xiaomi/2019/mi-9-standard-edition-dual-sim-td-lte-cn-m1902f1t.json new file mode 100644 index 00000000000..9f00a264920 --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-9-standard-edition-dual-sim-td-lte-cn-m1902f1t.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-9-standard-edition-dual-sim-td-lte-cn-m1902f1t", + "name": "Mi 9 Standard Edition Dual SIM TD-LTE CN M1902F1T", + "brand": "xiaomi", + "soc": "snapdragon-855", + "release_date": "2019-02-28", + "ram_gb": 6.0, + "battery_mah": 3300, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/mi-9-transparent-premium-edition-dual-sim-td-lte-cn-256gb-m1902f1a.json b/data/smartphone/xiaomi/2019/mi-9-transparent-premium-edition-dual-sim-td-lte-cn-256gb-m1902f1a.json new file mode 100644 index 00000000000..983e9ab5abf --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-9-transparent-premium-edition-dual-sim-td-lte-cn-256gb-m1902f1a.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-9-transparent-premium-edition-dual-sim-td-lte-cn-256gb-m1902f1a", + "name": "Mi 9 Transparent Premium Edition Dual SIM TD-LTE CN 256GB M1902F1A", + "brand": "xiaomi", + "soc": "snapdragon-855", + "release_date": "2019-03-01", + "ram_gb": 12.0, + "battery_mah": 3300, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/mi-9-transparent-standard-edition-dual-sim-td-lte-cn-256gb-m1902f1a.json b/data/smartphone/xiaomi/2019/mi-9-transparent-standard-edition-dual-sim-td-lte-cn-256gb-m1902f1a.json new file mode 100644 index 00000000000..d61c88aae0b --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-9-transparent-standard-edition-dual-sim-td-lte-cn-256gb-m1902f1a.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-9-transparent-standard-edition-dual-sim-td-lte-cn-256gb-m1902f1a", + "name": "Mi 9 Transparent Standard Edition Dual SIM TD-LTE CN 256GB M1902F1A", + "brand": "xiaomi", + "soc": "snapdragon-855", + "release_date": "2019-03-22", + "ram_gb": 8.0, + "battery_mah": 3300, + "weight_g": 173.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/mi-9t-global-dual-sim-td-lte-128gb-m1903f10g.json b/data/smartphone/xiaomi/2019/mi-9t-global-dual-sim-td-lte-128gb-m1903f10g.json new file mode 100644 index 00000000000..9a18b63f56c --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-9t-global-dual-sim-td-lte-128gb-m1903f10g.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-9t-global-dual-sim-td-lte-128gb-m1903f10g", + "name": "Mi 9T Global Dual SIM TD-LTE 128GB M1903F10G", + "brand": "xiaomi", + "soc": "snapdragon-730", + "release_date": "2019-07-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "France , HK , Italy , Philippines , Poland , Russia , Singapore , Spain , Taiwan , Thailand , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/mi-9t-global-dual-sim-td-lte-64gb-m1903f10g.json b/data/smartphone/xiaomi/2019/mi-9t-global-dual-sim-td-lte-64gb-m1903f10g.json new file mode 100644 index 00000000000..88a832741fc --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-9t-global-dual-sim-td-lte-64gb-m1903f10g.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-9t-global-dual-sim-td-lte-64gb-m1903f10g", + "name": "Mi 9T Global Dual SIM TD-LTE 64GB M1903F10G", + "brand": "xiaomi", + "soc": "snapdragon-730", + "release_date": "2019-07-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "France , Germany , HK , Italy , Philippines , Poland , Russia , Singapore , Spain , Taiwan , Thailand , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/mi-9t-pro-global-dual-sim-td-lte-128gb-m1903f11g.json b/data/smartphone/xiaomi/2019/mi-9t-pro-global-dual-sim-td-lte-128gb-m1903f11g.json new file mode 100644 index 00000000000..c25d47ba780 --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-9t-pro-global-dual-sim-td-lte-128gb-m1903f11g.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-9t-pro-global-dual-sim-td-lte-128gb-m1903f11g", + "name": "Mi 9T Pro Global Dual SIM TD-LTE 128GB M1903F11G", + "brand": "xiaomi", + "soc": "snapdragon-855", + "release_date": "2019-09-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "France , Germany , HK , Italy , Philippines , Poland , Russia , Singapore , Spain , Taiwan , Thailand , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/mi-9t-pro-global-dual-sim-td-lte-64gb-m1903f11g.json b/data/smartphone/xiaomi/2019/mi-9t-pro-global-dual-sim-td-lte-64gb-m1903f11g.json new file mode 100644 index 00000000000..d747e74ef8c --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-9t-pro-global-dual-sim-td-lte-64gb-m1903f11g.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-9t-pro-global-dual-sim-td-lte-64gb-m1903f11g", + "name": "Mi 9T Pro Global Dual SIM TD-LTE 64GB M1903F11G", + "brand": "xiaomi", + "soc": "snapdragon-855", + "release_date": "2019-09-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "France , Germany , HK , Italy , Philippines , Poland , Russia , Singapore , Spain , Taiwan , Thailand , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/mi-a3-dual-sim-td-lte-in-128gb-m1906f9si.json b/data/smartphone/xiaomi/2019/mi-a3-dual-sim-td-lte-in-128gb-m1906f9si.json new file mode 100644 index 00000000000..bac3b615884 --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-a3-dual-sim-td-lte-in-128gb-m1906f9si.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-a3-dual-sim-td-lte-in-128gb-m1906f9si", + "name": "Mi A3 Dual SIM TD-LTE IN 128GB M1906F9SI", + "brand": "xiaomi", + "soc": "snapdragon-665", + "release_date": "2019-08-23", + "ram_gb": 6.0, + "battery_mah": 4030, + "weight_g": 173.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/mi-a3-dual-sim-td-lte-in-64gb-m1906f9si.json b/data/smartphone/xiaomi/2019/mi-a3-dual-sim-td-lte-in-64gb-m1906f9si.json new file mode 100644 index 00000000000..a2508910720 --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-a3-dual-sim-td-lte-in-64gb-m1906f9si.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-a3-dual-sim-td-lte-in-64gb-m1906f9si", + "name": "Mi A3 Dual SIM TD-LTE IN 64GB M1906F9SI", + "brand": "xiaomi", + "soc": "snapdragon-665", + "release_date": "2019-08-23", + "ram_gb": 4.0, + "battery_mah": 4030, + "weight_g": 173.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/mi-a3-global-dual-sim-td-lte-128gb-m1906f9sh.json b/data/smartphone/xiaomi/2019/mi-a3-global-dual-sim-td-lte-128gb-m1906f9sh.json new file mode 100644 index 00000000000..142597b22cb --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-a3-global-dual-sim-td-lte-128gb-m1906f9sh.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-a3-global-dual-sim-td-lte-128gb-m1906f9sh", + "name": "Mi A3 Global Dual SIM TD-LTE 128GB M1906F9SH", + "brand": "xiaomi", + "soc": "snapdragon-665", + "release_date": "2019-07-24", + "ram_gb": 4.0, + "battery_mah": 4030, + "weight_g": 173.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "France , HK , Italy , Malaysia , Poland , Russia , Spain , Taiwan , Thailand , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/mi-a3-global-dual-sim-td-lte-64gb-m1906f9sh.json b/data/smartphone/xiaomi/2019/mi-a3-global-dual-sim-td-lte-64gb-m1906f9sh.json new file mode 100644 index 00000000000..366ea7afedc --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-a3-global-dual-sim-td-lte-64gb-m1906f9sh.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-a3-global-dual-sim-td-lte-64gb-m1906f9sh", + "name": "Mi A3 Global Dual SIM TD-LTE 64GB M1906F9SH", + "brand": "xiaomi", + "soc": "snapdragon-665", + "release_date": "2019-07-24", + "ram_gb": 4.0, + "battery_mah": 4030, + "weight_g": 173.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "France , HK , Italy , Malaysia , Poland , Russia , Spain , Taiwan , Thailand , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/mi-cc9-dual-sim-td-lte-cn-m1904f3bc-128gb.json b/data/smartphone/xiaomi/2019/mi-cc9-dual-sim-td-lte-cn-m1904f3bc-128gb.json new file mode 100644 index 00000000000..e70fb288f9b --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-cc9-dual-sim-td-lte-cn-m1904f3bc-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-cc9-dual-sim-td-lte-cn-m1904f3bc-128gb", + "name": "Mi CC9 Dual SIM TD-LTE CN M1904F3BC 128GB", + "brand": "xiaomi", + "soc": "snapdragon-710", + "release_date": "2019-07-01", + "ram_gb": 6.0, + "battery_mah": 4030, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/mi-cc9-dual-sim-td-lte-cn-m1904f3bc-64gb.json b/data/smartphone/xiaomi/2019/mi-cc9-dual-sim-td-lte-cn-m1904f3bc-64gb.json new file mode 100644 index 00000000000..d8883d6278e --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-cc9-dual-sim-td-lte-cn-m1904f3bc-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-cc9-dual-sim-td-lte-cn-m1904f3bc-64gb", + "name": "Mi CC9 Dual SIM TD-LTE CN M1904F3BC 64GB", + "brand": "xiaomi", + "soc": "snapdragon-710", + "release_date": "2019-07-01", + "ram_gb": 6.0, + "battery_mah": 4030, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/mi-cc9-dual-sim-td-lte-cn-m1904f3bt-128gb.json b/data/smartphone/xiaomi/2019/mi-cc9-dual-sim-td-lte-cn-m1904f3bt-128gb.json new file mode 100644 index 00000000000..461a19754e6 --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-cc9-dual-sim-td-lte-cn-m1904f3bt-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-cc9-dual-sim-td-lte-cn-m1904f3bt-128gb", + "name": "Mi CC9 Dual SIM TD-LTE CN M1904F3BT 128GB", + "brand": "xiaomi", + "soc": "snapdragon-710", + "release_date": "2019-07-01", + "ram_gb": 6.0, + "battery_mah": 4030, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/mi-cc9-dual-sim-td-lte-cn-m1904f3bt-64gb.json b/data/smartphone/xiaomi/2019/mi-cc9-dual-sim-td-lte-cn-m1904f3bt-64gb.json new file mode 100644 index 00000000000..8fba5cca052 --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-cc9-dual-sim-td-lte-cn-m1904f3bt-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-cc9-dual-sim-td-lte-cn-m1904f3bt-64gb", + "name": "Mi CC9 Dual SIM TD-LTE CN M1904F3BT 64GB", + "brand": "xiaomi", + "soc": "snapdragon-710", + "release_date": "2019-07-01", + "ram_gb": 6.0, + "battery_mah": 4030, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/mi-cc9-meitu-edition-dual-sim-td-lte-cn-m1904f3bc-256gb.json b/data/smartphone/xiaomi/2019/mi-cc9-meitu-edition-dual-sim-td-lte-cn-m1904f3bc-256gb.json new file mode 100644 index 00000000000..b10f6c4639c --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-cc9-meitu-edition-dual-sim-td-lte-cn-m1904f3bc-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-cc9-meitu-edition-dual-sim-td-lte-cn-m1904f3bc-256gb", + "name": "Mi CC9 Meitu Edition Dual SIM TD-LTE CN M1904F3BC 256GB", + "brand": "xiaomi", + "soc": "snapdragon-710", + "release_date": "2019-07-01", + "ram_gb": 8.0, + "battery_mah": 4030, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/mi-cc9-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1910f4e.json b/data/smartphone/xiaomi/2019/mi-cc9-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1910f4e.json new file mode 100644 index 00000000000..ad504cf3add --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-cc9-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1910f4e.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-cc9-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1910f4e", + "name": "Mi CC9 Pro Premium Edition Dual SIM TD-LTE CN 128GB M1910F4E", + "brand": "xiaomi", + "soc": "snapdragon-730", + "release_date": "2019-11-01", + "ram_gb": 8.0, + "battery_mah": 5260, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/mi-cc9-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1910f4e.json b/data/smartphone/xiaomi/2019/mi-cc9-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1910f4e.json new file mode 100644 index 00000000000..759d3469830 --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-cc9-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1910f4e.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-cc9-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1910f4e", + "name": "Mi CC9 Pro Premium Edition Dual SIM TD-LTE CN 256GB M1910F4E", + "brand": "xiaomi", + "soc": "snapdragon-730", + "release_date": "2019-11-01", + "ram_gb": 8.0, + "battery_mah": 5260, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/mi-cc9-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1910f4e.json b/data/smartphone/xiaomi/2019/mi-cc9-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1910f4e.json new file mode 100644 index 00000000000..519d3a9f347 --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-cc9-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1910f4e.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-cc9-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1910f4e", + "name": "Mi CC9 Pro Standard Edition Dual SIM TD-LTE CN 128GB M1910F4E", + "brand": "xiaomi", + "soc": "snapdragon-730", + "release_date": "2019-11-01", + "ram_gb": 6.0, + "battery_mah": 5260, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/mi-cc9e-premium-edition-dual-sim-td-lte-cn-m1906f9sc-128gb.json b/data/smartphone/xiaomi/2019/mi-cc9e-premium-edition-dual-sim-td-lte-cn-m1906f9sc-128gb.json new file mode 100644 index 00000000000..2c04aba3c7f --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-cc9e-premium-edition-dual-sim-td-lte-cn-m1906f9sc-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-cc9e-premium-edition-dual-sim-td-lte-cn-m1906f9sc-128gb", + "name": "Mi CC9e Premium Edition Dual SIM TD-LTE CN M1906F9SC 128GB", + "brand": "xiaomi", + "soc": "snapdragon-665", + "release_date": "2019-07-01", + "ram_gb": 6.0, + "battery_mah": 4030, + "weight_g": 173.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/mi-cc9e-premium-edition-dual-sim-td-lte-cn-m1906f9sc-64gb.json b/data/smartphone/xiaomi/2019/mi-cc9e-premium-edition-dual-sim-td-lte-cn-m1906f9sc-64gb.json new file mode 100644 index 00000000000..18ff61381f5 --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-cc9e-premium-edition-dual-sim-td-lte-cn-m1906f9sc-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-cc9e-premium-edition-dual-sim-td-lte-cn-m1906f9sc-64gb", + "name": "Mi CC9e Premium Edition Dual SIM TD-LTE CN M1906F9SC 64GB", + "brand": "xiaomi", + "soc": "snapdragon-665", + "release_date": "2019-07-01", + "ram_gb": 6.0, + "battery_mah": 4030, + "weight_g": 173.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/mi-cc9e-standard-edition-dual-sim-td-lte-cn-m1906f9sc-64gb.json b/data/smartphone/xiaomi/2019/mi-cc9e-standard-edition-dual-sim-td-lte-cn-m1906f9sc-64gb.json new file mode 100644 index 00000000000..8158d977980 --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-cc9e-standard-edition-dual-sim-td-lte-cn-m1906f9sc-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-cc9e-standard-edition-dual-sim-td-lte-cn-m1906f9sc-64gb", + "name": "Mi CC9e Standard Edition Dual SIM TD-LTE CN M1906F9SC 64GB", + "brand": "xiaomi", + "soc": "snapdragon-665", + "release_date": "2019-07-01", + "ram_gb": 4.0, + "battery_mah": 4030, + "weight_g": 173.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/mi-mix-3-5g-global-td-lte-128gb-m1810e5gg.json b/data/smartphone/xiaomi/2019/mi-mix-3-5g-global-td-lte-128gb-m1810e5gg.json new file mode 100644 index 00000000000..602dbeea123 --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-mix-3-5g-global-td-lte-128gb-m1810e5gg.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-mix-3-5g-global-td-lte-128gb-m1810e5gg", + "name": "Mi Mix 3 5G Global TD-LTE 128GB M1810E5GG", + "brand": "xiaomi", + "soc": "snapdragon-855", + "release_date": "2019-05-02", + "ram_gb": 6.0, + "battery_mah": 3800, + "weight_g": 225.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 23.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , Italy , Spain , Taiwan , UK , USA", + "market_regions": "Asia , Eastern Europe , Europe , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/mi-mix-3-5g-global-td-lte-64gb-m1810e5gg.json b/data/smartphone/xiaomi/2019/mi-mix-3-5g-global-td-lte-64gb-m1810e5gg.json new file mode 100644 index 00000000000..3b5ddd6ff06 --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-mix-3-5g-global-td-lte-64gb-m1810e5gg.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-mix-3-5g-global-td-lte-64gb-m1810e5gg", + "name": "Mi Mix 3 5G Global TD-LTE 64GB M1810E5GG", + "brand": "xiaomi", + "soc": "snapdragon-855", + "release_date": "2019-05-02", + "ram_gb": 6.0, + "battery_mah": 3800, + "weight_g": 225.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 23.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK , Italy , Spain , Taiwan , UK , USA", + "market_regions": "Asia , Eastern Europe , Europe , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/mi-note-10-global-dual-sim-td-lte-128gb-m1910f4g.json b/data/smartphone/xiaomi/2019/mi-note-10-global-dual-sim-td-lte-128gb-m1910f4g.json new file mode 100644 index 00000000000..2c0ccea4ba6 --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-note-10-global-dual-sim-td-lte-128gb-m1910f4g.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-note-10-global-dual-sim-td-lte-128gb-m1910f4g", + "name": "Mi Note 10 Global Dual SIM TD-LTE 128GB M1910F4G", + "brand": "xiaomi", + "soc": "snapdragon-730", + "release_date": "2019-11-01", + "ram_gb": 6.0, + "battery_mah": 5260, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "France , Germany , HK , Italy , Japan , Poland , Russia , Singapore , Spain , Taiwan , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/mi-note-10-pro-global-dual-sim-td-lte-128gb-m1910f4s.json b/data/smartphone/xiaomi/2019/mi-note-10-pro-global-dual-sim-td-lte-128gb-m1910f4s.json new file mode 100644 index 00000000000..7660ba708e0 --- /dev/null +++ b/data/smartphone/xiaomi/2019/mi-note-10-pro-global-dual-sim-td-lte-128gb-m1910f4s.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-note-10-pro-global-dual-sim-td-lte-128gb-m1910f4s", + "name": "Mi Note 10 Pro Global Dual SIM TD-LTE 128GB M1910F4S", + "brand": "xiaomi", + "soc": "snapdragon-730", + "release_date": "2019-12-04", + "ram_gb": 8.0, + "battery_mah": 5260, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "France , Germany , HK , Italy , Japan , Poland , Russia , Singapore , Spain , Taiwan , Thailand , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/redmi-7-dual-sim-td-lte-apac-64gb-m1810f6lh.json b/data/smartphone/xiaomi/2019/redmi-7-dual-sim-td-lte-apac-64gb-m1810f6lh.json new file mode 100644 index 00000000000..dbaaba488a4 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-7-dual-sim-td-lte-apac-64gb-m1810f6lh.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-7-dual-sim-td-lte-apac-64gb-m1810f6lh", + "name": "Redmi 7 Dual SIM TD-LTE APAC 64GB M1810F6LH", + "brand": "xiaomi", + "soc": "snapdragon-632", + "release_date": "2019-03-26", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "1520x720", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "HK , Philippines", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-7-dual-sim-td-lte-cn-16gb-m1810f6le.json b/data/smartphone/xiaomi/2019/redmi-7-dual-sim-td-lte-cn-16gb-m1810f6le.json new file mode 100644 index 00000000000..8762ad75ff3 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-7-dual-sim-td-lte-cn-16gb-m1810f6le.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-7-dual-sim-td-lte-cn-16gb-m1810f6le", + "name": "Redmi 7 Dual SIM TD-LTE CN 16GB M1810F6LE", + "brand": "xiaomi", + "soc": "snapdragon-632", + "release_date": "2019-03-26", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.26, + "resolution": "1520x720", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-7-dual-sim-td-lte-cn-32gb-m1810f6le.json b/data/smartphone/xiaomi/2019/redmi-7-dual-sim-td-lte-cn-32gb-m1810f6le.json new file mode 100644 index 00000000000..47d995e8108 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-7-dual-sim-td-lte-cn-32gb-m1810f6le.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-7-dual-sim-td-lte-cn-32gb-m1810f6le", + "name": "Redmi 7 Dual SIM TD-LTE CN 32GB M1810F6LE", + "brand": "xiaomi", + "soc": "snapdragon-632", + "release_date": "2019-03-26", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "1520x720", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-7-dual-sim-td-lte-cn-64gb-m1810f6le.json b/data/smartphone/xiaomi/2019/redmi-7-dual-sim-td-lte-cn-64gb-m1810f6le.json new file mode 100644 index 00000000000..76aed5c0161 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-7-dual-sim-td-lte-cn-64gb-m1810f6le.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-7-dual-sim-td-lte-cn-64gb-m1810f6le", + "name": "Redmi 7 Dual SIM TD-LTE CN 64GB M1810F6LE", + "brand": "xiaomi", + "soc": "snapdragon-632", + "release_date": "2019-03-26", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "1520x720", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-7-global-dual-sim-td-lte-16gb-m1810f6lg.json b/data/smartphone/xiaomi/2019/redmi-7-global-dual-sim-td-lte-16gb-m1810f6lg.json new file mode 100644 index 00000000000..7650f1903e1 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-7-global-dual-sim-td-lte-16gb-m1810f6lg.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-7-global-dual-sim-td-lte-16gb-m1810f6lg", + "name": "Redmi 7 Global Dual SIM TD-LTE 16GB M1810F6LG", + "brand": "xiaomi", + "soc": "snapdragon-632", + "release_date": "2019-03-26", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.26, + "resolution": "1520x720", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Chile , France , Germany , Hungary , Indonesia , Italy , Malaysia , Poland , Russia , Spain , Thailand , UAE , UK , Ukraine , Vietnam", + "market_regions": "Eastern Europe , Europe , Middle East , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/redmi-7-global-dual-sim-td-lte-32gb-m1810f6lg.json b/data/smartphone/xiaomi/2019/redmi-7-global-dual-sim-td-lte-32gb-m1810f6lg.json new file mode 100644 index 00000000000..a2d0e7a43c9 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-7-global-dual-sim-td-lte-32gb-m1810f6lg.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-7-global-dual-sim-td-lte-32gb-m1810f6lg", + "name": "Redmi 7 Global Dual SIM TD-LTE 32GB M1810F6LG", + "brand": "xiaomi", + "soc": "snapdragon-632", + "release_date": "2019-03-26", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "1520x720", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Bangladesh , Chile , Egypt , France , Germany , Hungary , Indonesia , Italy , Malaysia , Poland , Russia , Singapore , Spain , Taiwan , Thailand , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/redmi-7-global-dual-sim-td-lte-64gb-m1810f6lg.json b/data/smartphone/xiaomi/2019/redmi-7-global-dual-sim-td-lte-64gb-m1810f6lg.json new file mode 100644 index 00000000000..1627742f391 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-7-global-dual-sim-td-lte-64gb-m1810f6lg.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-7-global-dual-sim-td-lte-64gb-m1810f6lg", + "name": "Redmi 7 Global Dual SIM TD-LTE 64GB M1810F6LG", + "brand": "xiaomi", + "soc": "snapdragon-632", + "release_date": "2019-03-26", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "1520x720", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Chile , France , Germany , Hungary , Italy , Poland , Russia , Spain , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , South America , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/redmi-7-premium-edition-dual-sim-td-lte-in-32gb-m1810f6li.json b/data/smartphone/xiaomi/2019/redmi-7-premium-edition-dual-sim-td-lte-in-32gb-m1810f6li.json new file mode 100644 index 00000000000..63b0bb91c22 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-7-premium-edition-dual-sim-td-lte-in-32gb-m1810f6li.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-7-premium-edition-dual-sim-td-lte-in-32gb-m1810f6li", + "name": "Redmi 7 Premium Edition Dual SIM TD-LTE IN 32GB M1810F6LI", + "brand": "xiaomi", + "soc": "snapdragon-632", + "release_date": "2019-04-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "1520x720", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-7-standard-edition-dual-sim-td-lte-in-32gb-m1810f6li.json b/data/smartphone/xiaomi/2019/redmi-7-standard-edition-dual-sim-td-lte-in-32gb-m1810f6li.json new file mode 100644 index 00000000000..de1a437c8f0 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-7-standard-edition-dual-sim-td-lte-in-32gb-m1810f6li.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-7-standard-edition-dual-sim-td-lte-in-32gb-m1810f6li", + "name": "Redmi 7 Standard Edition Dual SIM TD-LTE IN 32GB M1810F6LI", + "brand": "xiaomi", + "soc": "snapdragon-632", + "release_date": "2019-04-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "1520x720", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-7a-dual-sim-td-lte-apac-16gb-m1903c3eh.json b/data/smartphone/xiaomi/2019/redmi-7a-dual-sim-td-lte-apac-16gb-m1903c3eh.json new file mode 100644 index 00000000000..94f66722387 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-7a-dual-sim-td-lte-apac-16gb-m1903c3eh.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-7a-dual-sim-td-lte-apac-16gb-m1903c3eh", + "name": "Redmi 7A Dual SIM TD-LTE APAC 16GB M1903C3EH", + "brand": "xiaomi", + "soc": "snapdragon-439", + "release_date": "2019-07-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "HK , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-7a-dual-sim-td-lte-apac-32gb-m1903c3eh.json b/data/smartphone/xiaomi/2019/redmi-7a-dual-sim-td-lte-apac-32gb-m1903c3eh.json new file mode 100644 index 00000000000..0aeedcef810 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-7a-dual-sim-td-lte-apac-32gb-m1903c3eh.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-7a-dual-sim-td-lte-apac-32gb-m1903c3eh", + "name": "Redmi 7A Dual SIM TD-LTE APAC 32GB M1903C3EH", + "brand": "xiaomi", + "soc": "snapdragon-439", + "release_date": "2019-07-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "HK , Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-7a-dual-sim-td-lte-in-16gb-m1903c3ei-mzb7995in-mzb7798in-mzb7799in.json b/data/smartphone/xiaomi/2019/redmi-7a-dual-sim-td-lte-in-16gb-m1903c3ei-mzb7995in-mzb7798in-mzb7799in.json new file mode 100644 index 00000000000..791b8179736 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-7a-dual-sim-td-lte-in-16gb-m1903c3ei-mzb7995in-mzb7798in-mzb7799in.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-7a-dual-sim-td-lte-in-16gb-m1903c3ei-mzb7995in-mzb7798in-mzb7799in", + "name": "Redmi 7A Dual SIM TD-LTE IN 16GB M1903C3EI / MZB7995IN / MZB7798IN / MZB7799IN", + "brand": "xiaomi", + "soc": "snapdragon-439", + "release_date": "2019-07-11", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-7a-dual-sim-td-lte-in-32gb-m1903c3ei-mzb7989in-mzb7800in-mzb8008in.json b/data/smartphone/xiaomi/2019/redmi-7a-dual-sim-td-lte-in-32gb-m1903c3ei-mzb7989in-mzb7800in-mzb8008in.json new file mode 100644 index 00000000000..67ebbec7954 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-7a-dual-sim-td-lte-in-32gb-m1903c3ei-mzb7989in-mzb7800in-mzb8008in.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-7a-dual-sim-td-lte-in-32gb-m1903c3ei-mzb7989in-mzb7800in-mzb8008in", + "name": "Redmi 7A Dual SIM TD-LTE IN 32GB M1903C3EI / MZB7989IN / MZB7800IN / MZB8008IN", + "brand": "xiaomi", + "soc": "snapdragon-439", + "release_date": "2019-07-11", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-7a-global-dual-sim-td-lte-16gb-m1903c3eg.json b/data/smartphone/xiaomi/2019/redmi-7a-global-dual-sim-td-lte-16gb-m1903c3eg.json new file mode 100644 index 00000000000..2f7ac220e8e --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-7a-global-dual-sim-td-lte-16gb-m1903c3eg.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-7a-global-dual-sim-td-lte-16gb-m1903c3eg", + "name": "Redmi 7A Global Dual SIM TD-LTE 16GB M1903C3EG", + "brand": "xiaomi", + "soc": "snapdragon-439", + "release_date": "2019-07-18", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Germany , Hungary , Indonesia , Italy , Malaysia , Poland , Russia , Singapore , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/redmi-7a-global-dual-sim-td-lte-32gb-m1903c3eg.json b/data/smartphone/xiaomi/2019/redmi-7a-global-dual-sim-td-lte-32gb-m1903c3eg.json new file mode 100644 index 00000000000..0960d44a290 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-7a-global-dual-sim-td-lte-32gb-m1903c3eg.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-7a-global-dual-sim-td-lte-32gb-m1903c3eg", + "name": "Redmi 7A Global Dual SIM TD-LTE 32GB M1903C3EG", + "brand": "xiaomi", + "soc": "snapdragon-439", + "release_date": "2019-07-18", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Germany , Italy , Malaysia , Poland , Russia , Singapore , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/redmi-7a-premium-edition-dual-sim-td-lte-32gb-cn-m1903c3ee-m1903c3ec.json b/data/smartphone/xiaomi/2019/redmi-7a-premium-edition-dual-sim-td-lte-32gb-cn-m1903c3ee-m1903c3ec.json new file mode 100644 index 00000000000..36ee7b17d3d --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-7a-premium-edition-dual-sim-td-lte-32gb-cn-m1903c3ee-m1903c3ec.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-7a-premium-edition-dual-sim-td-lte-32gb-cn-m1903c3ee-m1903c3ec", + "name": "Redmi 7A Premium Edition Dual SIM TD-LTE 32GB CN M1903C3EE / M1903C3EC", + "brand": "xiaomi", + "soc": "snapdragon-439", + "release_date": "2019-06-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-7a-premium-edition-dual-sim-td-lte-32gb-cn-m1903c3et.json b/data/smartphone/xiaomi/2019/redmi-7a-premium-edition-dual-sim-td-lte-32gb-cn-m1903c3et.json new file mode 100644 index 00000000000..2d86e135581 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-7a-premium-edition-dual-sim-td-lte-32gb-cn-m1903c3et.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-7a-premium-edition-dual-sim-td-lte-32gb-cn-m1903c3et", + "name": "Redmi 7A Premium Edition Dual SIM TD-LTE 32GB CN M1903C3ET", + "brand": "xiaomi", + "soc": "snapdragon-439", + "release_date": "2019-06-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-7a-standard-edition-dual-sim-td-lte-16gb-cn-m1903c3ee-m1903c3ec.json b/data/smartphone/xiaomi/2019/redmi-7a-standard-edition-dual-sim-td-lte-16gb-cn-m1903c3ee-m1903c3ec.json new file mode 100644 index 00000000000..d5337b7ca8f --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-7a-standard-edition-dual-sim-td-lte-16gb-cn-m1903c3ee-m1903c3ec.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-7a-standard-edition-dual-sim-td-lte-16gb-cn-m1903c3ee-m1903c3ec", + "name": "Redmi 7A Standard Edition Dual SIM TD-LTE 16GB CN M1903C3EE / M1903C3EC", + "brand": "xiaomi", + "soc": "snapdragon-439", + "release_date": "2019-06-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-7a-standard-edition-dual-sim-td-lte-32gb-cn-m1903c3ee-m1903c3ec.json b/data/smartphone/xiaomi/2019/redmi-7a-standard-edition-dual-sim-td-lte-32gb-cn-m1903c3ee-m1903c3ec.json new file mode 100644 index 00000000000..caf0c904d00 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-7a-standard-edition-dual-sim-td-lte-32gb-cn-m1903c3ee-m1903c3ec.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-7a-standard-edition-dual-sim-td-lte-32gb-cn-m1903c3ee-m1903c3ec", + "name": "Redmi 7A Standard Edition Dual SIM TD-LTE 32GB CN M1903C3EE / M1903C3EC", + "brand": "xiaomi", + "soc": "snapdragon-439", + "release_date": "2019-06-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-8-dual-sim-td-lte-apac-64gb-m1908c3ih.json b/data/smartphone/xiaomi/2019/redmi-8-dual-sim-td-lte-apac-64gb-m1908c3ih.json new file mode 100644 index 00000000000..d7c3c5d27a7 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-8-dual-sim-td-lte-apac-64gb-m1908c3ih.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-8-dual-sim-td-lte-apac-64gb-m1908c3ih", + "name": "Redmi 8 Dual SIM TD-LTE APAC 64GB M1908C3IH", + "brand": "xiaomi", + "soc": "snapdragon-439", + "release_date": "2019-11-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "HK , Philippines , Thailand", + "market_regions": "Asia , Oceania , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-8-dual-sim-td-lte-cn-32gb-m1908c3ie-m1908c3ic.json b/data/smartphone/xiaomi/2019/redmi-8-dual-sim-td-lte-cn-32gb-m1908c3ie-m1908c3ic.json new file mode 100644 index 00000000000..f58ef9505af --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-8-dual-sim-td-lte-cn-32gb-m1908c3ie-m1908c3ic.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-8-dual-sim-td-lte-cn-32gb-m1908c3ie-m1908c3ic", + "name": "Redmi 8 Dual SIM TD-LTE CN 32GB M1908C3IE / M1908C3IC", + "brand": "xiaomi", + "soc": "snapdragon-439", + "release_date": "2019-10-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-8-dual-sim-td-lte-cn-64gb-m1908c3ie-m1908c3ic.json b/data/smartphone/xiaomi/2019/redmi-8-dual-sim-td-lte-cn-64gb-m1908c3ie-m1908c3ic.json new file mode 100644 index 00000000000..0f399f7a52d --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-8-dual-sim-td-lte-cn-64gb-m1908c3ie-m1908c3ic.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-8-dual-sim-td-lte-cn-64gb-m1908c3ie-m1908c3ic", + "name": "Redmi 8 Dual SIM TD-LTE CN 64GB M1908C3IE / M1908C3IC", + "brand": "xiaomi", + "soc": "snapdragon-439", + "release_date": "2019-10-14", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-8-dual-sim-td-lte-in-64gb-mzb8254in-mzb8255in-mzb8256in-mzb8257in.json b/data/smartphone/xiaomi/2019/redmi-8-dual-sim-td-lte-in-64gb-mzb8254in-mzb8255in-mzb8256in-mzb8257in.json new file mode 100644 index 00000000000..5d962ae1fd5 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-8-dual-sim-td-lte-in-64gb-mzb8254in-mzb8255in-mzb8256in-mzb8257in.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-8-dual-sim-td-lte-in-64gb-mzb8254in-mzb8255in-mzb8256in-mzb8257in", + "name": "Redmi 8 Dual SIM TD-LTE IN 64GB MZB8254IN / MZB8255IN / MZB8256IN / MZB8257IN", + "brand": "xiaomi", + "soc": "snapdragon-439", + "release_date": "2019-10-12", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-8-global-dual-sim-td-lte-32gb-m1908c3ig.json b/data/smartphone/xiaomi/2019/redmi-8-global-dual-sim-td-lte-32gb-m1908c3ig.json new file mode 100644 index 00000000000..088718a1002 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-8-global-dual-sim-td-lte-32gb-m1908c3ig.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-8-global-dual-sim-td-lte-32gb-m1908c3ig", + "name": "Redmi 8 Global Dual SIM TD-LTE 32GB M1908C3IG", + "brand": "xiaomi", + "soc": "snapdragon-439", + "release_date": "2019-10-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Germany , HK , Italy , Malaysia , Poland , Russia , Singapore , Spain , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/redmi-8a-premium-edition-dual-sim-td-lte-cn-32gb-m1908c3ke-m1908c3kc.json b/data/smartphone/xiaomi/2019/redmi-8a-premium-edition-dual-sim-td-lte-cn-32gb-m1908c3ke-m1908c3kc.json new file mode 100644 index 00000000000..2c242df0413 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-8a-premium-edition-dual-sim-td-lte-cn-32gb-m1908c3ke-m1908c3kc.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-8a-premium-edition-dual-sim-td-lte-cn-32gb-m1908c3ke-m1908c3kc", + "name": "Redmi 8A Premium Edition Dual SIM TD-LTE CN 32GB M1908C3KE / M1908C3KC", + "brand": "xiaomi", + "soc": "snapdragon-439", + "release_date": "2019-10-14", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-8a-premium-edition-dual-sim-td-lte-cn-64gb-m1908c3ke-m1908c3kc.json b/data/smartphone/xiaomi/2019/redmi-8a-premium-edition-dual-sim-td-lte-cn-64gb-m1908c3ke-m1908c3kc.json new file mode 100644 index 00000000000..6e85b24fac7 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-8a-premium-edition-dual-sim-td-lte-cn-64gb-m1908c3ke-m1908c3kc.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-8a-premium-edition-dual-sim-td-lte-cn-64gb-m1908c3ke-m1908c3kc", + "name": "Redmi 8A Premium Edition Dual SIM TD-LTE CN 64GB M1908C3KE / M1908C3KC", + "brand": "xiaomi", + "soc": "snapdragon-439", + "release_date": "2019-10-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-8a-premium-edition-dual-sim-td-lte-in-32gb-m1908c3ki.json b/data/smartphone/xiaomi/2019/redmi-8a-premium-edition-dual-sim-td-lte-in-32gb-m1908c3ki.json new file mode 100644 index 00000000000..5f63dcf031c --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-8a-premium-edition-dual-sim-td-lte-in-32gb-m1908c3ki.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-8a-premium-edition-dual-sim-td-lte-in-32gb-m1908c3ki", + "name": "Redmi 8A Premium Edition Dual SIM TD-LTE IN 32GB M1908C3KI", + "brand": "xiaomi", + "soc": "snapdragon-439", + "release_date": "2019-10-12", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-8a-standard-edition-dual-sim-td-lte-in-32gb-m1908c3ki.json b/data/smartphone/xiaomi/2019/redmi-8a-standard-edition-dual-sim-td-lte-in-32gb-m1908c3ki.json new file mode 100644 index 00000000000..b39172c1106 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-8a-standard-edition-dual-sim-td-lte-in-32gb-m1908c3ki.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-8a-standard-edition-dual-sim-td-lte-in-32gb-m1908c3ki", + "name": "Redmi 8A Standard Edition Dual SIM TD-LTE IN 32GB M1908C3KI", + "brand": "xiaomi", + "soc": "snapdragon-439", + "release_date": "2019-10-12", + "ram_gb": 2.0, + "battery_mah": 5000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-8a-standard-edition-global-dual-sim-td-lte-32gb-m1908c3kg.json b/data/smartphone/xiaomi/2019/redmi-8a-standard-edition-global-dual-sim-td-lte-32gb-m1908c3kg.json new file mode 100644 index 00000000000..efdcf805b29 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-8a-standard-edition-global-dual-sim-td-lte-32gb-m1908c3kg.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-8a-standard-edition-global-dual-sim-td-lte-32gb-m1908c3kg", + "name": "Redmi 8A Standard Edition Global Dual SIM TD-LTE 32GB M1908C3KG", + "brand": "xiaomi", + "soc": "snapdragon-439", + "release_date": "2019-11-01", + "ram_gb": 2.0, + "battery_mah": 5000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Germany , HK , Italy , Malaysia , Poland , Russia , Singapore , Spain , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/redmi-go-dual-sim-td-lte-apac-latam-m1903c3gh.json b/data/smartphone/xiaomi/2019/redmi-go-dual-sim-td-lte-apac-latam-m1903c3gh.json new file mode 100644 index 00000000000..28814978df7 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-go-dual-sim-td-lte-apac-latam-m1903c3gh.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-go-dual-sim-td-lte-apac-latam-m1903c3gh", + "name": "Redmi Go Dual SIM TD-LTE APAC LATAM M1903C3GH", + "brand": "xiaomi", + "soc": "snapdragon-425", + "release_date": "2019-03-22", + "ram_gb": 1.0, + "battery_mah": 3000, + "weight_g": 137.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Bangladesh , Chile , India , Mexico , Thailand", + "market_regions": "Asia , North America , South America , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-go-global-dual-sim-td-lte-m1903c3gg.json b/data/smartphone/xiaomi/2019/redmi-go-global-dual-sim-td-lte-m1903c3gg.json new file mode 100644 index 00000000000..b0779795943 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-go-global-dual-sim-td-lte-m1903c3gg.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-go-global-dual-sim-td-lte-m1903c3gg", + "name": "Redmi Go Global Dual SIM TD-LTE M1903C3GG", + "brand": "xiaomi", + "soc": "snapdragon-425", + "release_date": "2019-02-01", + "ram_gb": 1.0, + "battery_mah": 3000, + "weight_g": 137.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Cyprus , France , Germany , Greece , Hungary , Indonesia , Italy , Poland , Spain , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/redmi-k20-dual-sim-td-lte-in-128gb-mzb7757in-mzb7758in-mzb7759in.json b/data/smartphone/xiaomi/2019/redmi-k20-dual-sim-td-lte-in-128gb-mzb7757in-mzb7758in-mzb7759in.json new file mode 100644 index 00000000000..9a4f54542ea --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-k20-dual-sim-td-lte-in-128gb-mzb7757in-mzb7758in-mzb7759in.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-k20-dual-sim-td-lte-in-128gb-mzb7757in-mzb7758in-mzb7759in", + "name": "Redmi K20 Dual SIM TD-LTE IN 128GB MZB7757IN / MZB7758IN / MZB7759IN", + "brand": "xiaomi", + "soc": "snapdragon-730", + "release_date": "2019-07-22", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-k20-dual-sim-td-lte-in-64gb-mzb7754in-mzb7755in-mzb7756in.json b/data/smartphone/xiaomi/2019/redmi-k20-dual-sim-td-lte-in-64gb-mzb7754in-mzb7755in-mzb7756in.json new file mode 100644 index 00000000000..cdb076cf8fe --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-k20-dual-sim-td-lte-in-64gb-mzb7754in-mzb7755in-mzb7756in.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-k20-dual-sim-td-lte-in-64gb-mzb7754in-mzb7755in-mzb7756in", + "name": "Redmi K20 Dual SIM TD-LTE IN 64GB MZB7754IN / MZB7755IN / MZB7756IN", + "brand": "xiaomi", + "soc": "snapdragon-730", + "release_date": "2019-07-22", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-k20-premium-edition-dual-sim-td-lte-cn-256gb-m1903f10a-m1903f10c.json b/data/smartphone/xiaomi/2019/redmi-k20-premium-edition-dual-sim-td-lte-cn-256gb-m1903f10a-m1903f10c.json new file mode 100644 index 00000000000..3fcfe539fa1 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-k20-premium-edition-dual-sim-td-lte-cn-256gb-m1903f10a-m1903f10c.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-k20-premium-edition-dual-sim-td-lte-cn-256gb-m1903f10a-m1903f10c", + "name": "Redmi K20 Premium Edition Dual SIM TD-LTE CN 256GB M1903F10A / M1903F10C", + "brand": "xiaomi", + "soc": "snapdragon-730", + "release_date": "2019-06-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-k20-pro-dual-sim-td-lte-in-128gb-mzb7748in-mzb7749in-mzb7750in.json b/data/smartphone/xiaomi/2019/redmi-k20-pro-dual-sim-td-lte-in-128gb-mzb7748in-mzb7749in-mzb7750in.json new file mode 100644 index 00000000000..e022dc369c2 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-k20-pro-dual-sim-td-lte-in-128gb-mzb7748in-mzb7749in-mzb7750in.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-k20-pro-dual-sim-td-lte-in-128gb-mzb7748in-mzb7749in-mzb7750in", + "name": "Redmi K20 Pro Dual SIM TD-LTE IN 128GB MZB7748IN / MZB7749IN / MZB7750IN", + "brand": "xiaomi", + "soc": "snapdragon-855", + "release_date": "2019-07-22", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-k20-pro-dual-sim-td-lte-in-256gb-mzb7751in-mzb7752in-mzb7753in.json b/data/smartphone/xiaomi/2019/redmi-k20-pro-dual-sim-td-lte-in-256gb-mzb7751in-mzb7752in-mzb7753in.json new file mode 100644 index 00000000000..bfc7fced5e0 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-k20-pro-dual-sim-td-lte-in-256gb-mzb7751in-mzb7752in-mzb7753in.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-k20-pro-dual-sim-td-lte-in-256gb-mzb7751in-mzb7752in-mzb7753in", + "name": "Redmi K20 Pro Dual SIM TD-LTE IN 256GB MZB7751IN / MZB7752IN / MZB7753IN", + "brand": "xiaomi", + "soc": "snapdragon-855", + "release_date": "2019-07-22", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1903f11a-m1903f11c.json b/data/smartphone/xiaomi/2019/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1903f11a-m1903f11c.json new file mode 100644 index 00000000000..aa53acd7cfc --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1903f11a-m1903f11c.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1903f11a-m1903f11c", + "name": "Redmi K20 Pro Premium Edition Dual SIM TD-LTE CN 128GB M1903F11A / M1903F11C", + "brand": "xiaomi", + "soc": "snapdragon-855", + "release_date": "2019-06-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1903f11t.json b/data/smartphone/xiaomi/2019/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1903f11t.json new file mode 100644 index 00000000000..23fc45597d3 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1903f11t.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1903f11t", + "name": "Redmi K20 Pro Premium Edition Dual SIM TD-LTE CN 128GB M1903F11T", + "brand": "xiaomi", + "soc": "snapdragon-855", + "release_date": "2019-06-02", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1903f11a-m1903f11c.json b/data/smartphone/xiaomi/2019/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1903f11a-m1903f11c.json new file mode 100644 index 00000000000..0d566c72cb6 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1903f11a-m1903f11c.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1903f11a-m1903f11c", + "name": "Redmi K20 Pro Premium Edition Dual SIM TD-LTE CN 256GB M1903F11A / M1903F11C", + "brand": "xiaomi", + "soc": "snapdragon-855", + "release_date": "2019-06-02", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1903f11t.json b/data/smartphone/xiaomi/2019/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1903f11t.json new file mode 100644 index 00000000000..07ce4cfccfc --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1903f11t.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1903f11t", + "name": "Redmi K20 Pro Premium Edition Dual SIM TD-LTE CN 256GB M1903F11T", + "brand": "xiaomi", + "soc": "snapdragon-855", + "release_date": "2019-06-02", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-k20-pro-prime-premium-edition-dual-sim-td-lte-cn-512gb-m1903f11a.json b/data/smartphone/xiaomi/2019/redmi-k20-pro-prime-premium-edition-dual-sim-td-lte-cn-512gb-m1903f11a.json new file mode 100644 index 00000000000..fe0b5a4ac6d --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-k20-pro-prime-premium-edition-dual-sim-td-lte-cn-512gb-m1903f11a.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-k20-pro-prime-premium-edition-dual-sim-td-lte-cn-512gb-m1903f11a", + "name": "Redmi K20 Pro Prime Premium Edition Dual SIM TD-LTE CN 512GB M1903F11A", + "brand": "xiaomi", + "soc": "snapdragon-855-plus", + "release_date": "2019-09-01", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-k20-pro-prime-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11a.json b/data/smartphone/xiaomi/2019/redmi-k20-pro-prime-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11a.json new file mode 100644 index 00000000000..97b26a615bb --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-k20-pro-prime-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11a.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-k20-pro-prime-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11a", + "name": "Redmi K20 Pro Prime Standard Edition Dual SIM TD-LTE CN 128GB M1903F11A", + "brand": "xiaomi", + "soc": "snapdragon-855-plus", + "release_date": "2019-09-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-k20-pro-prime-standard-edition-dual-sim-td-lte-cn-512gb-m1903f11a.json b/data/smartphone/xiaomi/2019/redmi-k20-pro-prime-standard-edition-dual-sim-td-lte-cn-512gb-m1903f11a.json new file mode 100644 index 00000000000..f42e61c1e65 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-k20-pro-prime-standard-edition-dual-sim-td-lte-cn-512gb-m1903f11a.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-k20-pro-prime-standard-edition-dual-sim-td-lte-cn-512gb-m1903f11a", + "name": "Redmi K20 Pro Prime Standard Edition Dual SIM TD-LTE CN 512GB M1903F11A", + "brand": "xiaomi", + "soc": "snapdragon-855-plus", + "release_date": "2019-09-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11a-m1903f11c.json b/data/smartphone/xiaomi/2019/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11a-m1903f11c.json new file mode 100644 index 00000000000..8a3cbf6ebd1 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11a-m1903f11c.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11a-m1903f11c", + "name": "Redmi K20 Pro Standard Edition Dual SIM TD-LTE CN 128GB M1903F11A / M1903F11C", + "brand": "xiaomi", + "soc": "snapdragon-855", + "release_date": "2019-06-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11t.json b/data/smartphone/xiaomi/2019/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11t.json new file mode 100644 index 00000000000..cb960bfbef2 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11t.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11t", + "name": "Redmi K20 Pro Standard Edition Dual SIM TD-LTE CN 128GB M1903F11T", + "brand": "xiaomi", + "soc": "snapdragon-855", + "release_date": "2019-06-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1903f11a-m1903f11c.json b/data/smartphone/xiaomi/2019/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1903f11a-m1903f11c.json new file mode 100644 index 00000000000..829b42ac2e1 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1903f11a-m1903f11c.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1903f11a-m1903f11c", + "name": "Redmi K20 Pro Standard Edition Dual SIM TD-LTE CN 64GB M1903F11A / M1903F11C", + "brand": "xiaomi", + "soc": "snapdragon-855", + "release_date": "2019-06-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1903f11t.json b/data/smartphone/xiaomi/2019/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1903f11t.json new file mode 100644 index 00000000000..78eb06a9fa4 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1903f11t.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1903f11t", + "name": "Redmi K20 Pro Standard Edition Dual SIM TD-LTE CN 64GB M1903F11T", + "brand": "xiaomi", + "soc": "snapdragon-855", + "release_date": "2019-06-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-k20-standard-edition-dual-sim-td-lte-cn-128gb-m1903f10a-m1903f10c.json b/data/smartphone/xiaomi/2019/redmi-k20-standard-edition-dual-sim-td-lte-cn-128gb-m1903f10a-m1903f10c.json new file mode 100644 index 00000000000..e439f196eea --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-k20-standard-edition-dual-sim-td-lte-cn-128gb-m1903f10a-m1903f10c.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-k20-standard-edition-dual-sim-td-lte-cn-128gb-m1903f10a-m1903f10c", + "name": "Redmi K20 Standard Edition Dual SIM TD-LTE CN 128GB M1903F10A / M1903F10C", + "brand": "xiaomi", + "soc": "snapdragon-730", + "release_date": "2019-06-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-k20-standard-edition-dual-sim-td-lte-cn-128gb-m1903f10t.json b/data/smartphone/xiaomi/2019/redmi-k20-standard-edition-dual-sim-td-lte-cn-128gb-m1903f10t.json new file mode 100644 index 00000000000..053ed454312 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-k20-standard-edition-dual-sim-td-lte-cn-128gb-m1903f10t.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-k20-standard-edition-dual-sim-td-lte-cn-128gb-m1903f10t", + "name": "Redmi K20 Standard Edition Dual SIM TD-LTE CN 128GB M1903F10T", + "brand": "xiaomi", + "soc": "snapdragon-730", + "release_date": "2019-06-02", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-k20-standard-edition-dual-sim-td-lte-cn-256gb-m1903f10t.json b/data/smartphone/xiaomi/2019/redmi-k20-standard-edition-dual-sim-td-lte-cn-256gb-m1903f10t.json new file mode 100644 index 00000000000..701330c4c3e --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-k20-standard-edition-dual-sim-td-lte-cn-256gb-m1903f10t.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-k20-standard-edition-dual-sim-td-lte-cn-256gb-m1903f10t", + "name": "Redmi K20 Standard Edition Dual SIM TD-LTE CN 256GB M1903F10T", + "brand": "xiaomi", + "soc": "snapdragon-730", + "release_date": "2019-06-02", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-k20-standard-edition-dual-sim-td-lte-cn-64gb-m1903f10a-m1903f10c.json b/data/smartphone/xiaomi/2019/redmi-k20-standard-edition-dual-sim-td-lte-cn-64gb-m1903f10a-m1903f10c.json new file mode 100644 index 00000000000..47382ac3b5f --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-k20-standard-edition-dual-sim-td-lte-cn-64gb-m1903f10a-m1903f10c.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-k20-standard-edition-dual-sim-td-lte-cn-64gb-m1903f10a-m1903f10c", + "name": "Redmi K20 Standard Edition Dual SIM TD-LTE CN 64GB M1903F10A / M1903F10C", + "brand": "xiaomi", + "soc": "snapdragon-730", + "release_date": "2019-06-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-k20-standard-edition-dual-sim-td-lte-cn-64gb-m1903f10t.json b/data/smartphone/xiaomi/2019/redmi-k20-standard-edition-dual-sim-td-lte-cn-64gb-m1903f10t.json new file mode 100644 index 00000000000..343d0c7da3f --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-k20-standard-edition-dual-sim-td-lte-cn-64gb-m1903f10t.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-k20-standard-edition-dual-sim-td-lte-cn-64gb-m1903f10t", + "name": "Redmi K20 Standard Edition Dual SIM TD-LTE CN 64GB M1903F10T", + "brand": "xiaomi", + "soc": "snapdragon-730", + "release_date": "2019-06-02", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 191.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-k30-premium-edition-dual-sim-td-lte-cn-128gb-m1912g7be-m1912g7bc.json b/data/smartphone/xiaomi/2019/redmi-k30-premium-edition-dual-sim-td-lte-cn-128gb-m1912g7be-m1912g7bc.json new file mode 100644 index 00000000000..6b90bc1ccc7 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-k30-premium-edition-dual-sim-td-lte-cn-128gb-m1912g7be-m1912g7bc.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-k30-premium-edition-dual-sim-td-lte-cn-128gb-m1912g7be-m1912g7bc", + "name": "Redmi K30 Premium Edition Dual SIM TD-LTE CN 128GB M1912G7BE / M1912G7BC", + "brand": "xiaomi", + "soc": "snapdragon-730", + "release_date": "2019-12-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-k30-premium-edition-dual-sim-td-lte-cn-256gb-m1912g7be-m1912g7bc.json b/data/smartphone/xiaomi/2019/redmi-k30-premium-edition-dual-sim-td-lte-cn-256gb-m1912g7be-m1912g7bc.json new file mode 100644 index 00000000000..9283d582901 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-k30-premium-edition-dual-sim-td-lte-cn-256gb-m1912g7be-m1912g7bc.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-k30-premium-edition-dual-sim-td-lte-cn-256gb-m1912g7be-m1912g7bc", + "name": "Redmi K30 Premium Edition Dual SIM TD-LTE CN 256GB M1912G7BE / M1912G7BC", + "brand": "xiaomi", + "soc": "snapdragon-730", + "release_date": "2019-12-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-k30-standard-edition-dual-sim-td-lte-cn-128gb-m1912g7be-m1912g7bc.json b/data/smartphone/xiaomi/2019/redmi-k30-standard-edition-dual-sim-td-lte-cn-128gb-m1912g7be-m1912g7bc.json new file mode 100644 index 00000000000..3f79142a425 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-k30-standard-edition-dual-sim-td-lte-cn-128gb-m1912g7be-m1912g7bc.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-k30-standard-edition-dual-sim-td-lte-cn-128gb-m1912g7be-m1912g7bc", + "name": "Redmi K30 Standard Edition Dual SIM TD-LTE CN 128GB M1912G7BE / M1912G7BC", + "brand": "xiaomi", + "soc": "snapdragon-730", + "release_date": "2019-12-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-k30-standard-edition-dual-sim-td-lte-cn-64gb-m1912g7be-m1912g7bc.json b/data/smartphone/xiaomi/2019/redmi-k30-standard-edition-dual-sim-td-lte-cn-64gb-m1912g7be-m1912g7bc.json new file mode 100644 index 00000000000..5fe25731c59 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-k30-standard-edition-dual-sim-td-lte-cn-64gb-m1912g7be-m1912g7bc.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-k30-standard-edition-dual-sim-td-lte-cn-64gb-m1912g7be-m1912g7bc", + "name": "Redmi K30 Standard Edition Dual SIM TD-LTE CN 64GB M1912G7BE / M1912G7BC", + "brand": "xiaomi", + "soc": "snapdragon-730", + "release_date": "2019-12-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-6-pro-dual-sim-td-lte-cn-32gb-m1806e7te-m1806e7tc.json b/data/smartphone/xiaomi/2019/redmi-note-6-pro-dual-sim-td-lte-cn-32gb-m1806e7te-m1806e7tc.json new file mode 100644 index 00000000000..1ab1025ca0a --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-6-pro-dual-sim-td-lte-cn-32gb-m1806e7te-m1806e7tc.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-note-6-pro-dual-sim-td-lte-cn-32gb-m1806e7te-m1806e7tc", + "name": "Redmi Note 6 Pro Dual SIM TD-LTE CN 32GB M1806E7TE / M1806E7TC", + "brand": "xiaomi", + "soc": "snapdragon-636", + "release_date": "2019-02-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 182.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-7-dual-sim-td-lte-apac-latam-128gb-m1901f7h.json b/data/smartphone/xiaomi/2019/redmi-note-7-dual-sim-td-lte-apac-latam-128gb-m1901f7h.json new file mode 100644 index 00000000000..c09894f5b77 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-7-dual-sim-td-lte-apac-latam-128gb-m1901f7h.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-note-7-dual-sim-td-lte-apac-latam-128gb-m1901f7h", + "name": "Redmi Note 7 Dual SIM TD-LTE APAC LATAM 128GB M1901F7H", + "brand": "xiaomi", + "soc": "snapdragon-660", + "release_date": "2019-04-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , Indonesia , Malaysia , Mexico , Singapore , South Korea , Taiwan , Vietnam", + "market_regions": "Asia , South America , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-7-dual-sim-td-lte-apac-latam-32gb-m1901f7h.json b/data/smartphone/xiaomi/2019/redmi-note-7-dual-sim-td-lte-apac-latam-32gb-m1901f7h.json new file mode 100644 index 00000000000..b114e1ed573 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-7-dual-sim-td-lte-apac-latam-32gb-m1901f7h.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-note-7-dual-sim-td-lte-apac-latam-32gb-m1901f7h", + "name": "Redmi Note 7 Dual SIM TD-LTE APAC LATAM 32GB M1901F7H", + "brand": "xiaomi", + "soc": "snapdragon-660", + "release_date": "2019-04-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , Indonesia , Malaysia , Mexico , South Korea , Vietnam", + "market_regions": "Asia , South America , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-7-dual-sim-td-lte-apac-latam-64gb-m1901f7h.json b/data/smartphone/xiaomi/2019/redmi-note-7-dual-sim-td-lte-apac-latam-64gb-m1901f7h.json new file mode 100644 index 00000000000..539f60b6d12 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-7-dual-sim-td-lte-apac-latam-64gb-m1901f7h.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-note-7-dual-sim-td-lte-apac-latam-64gb-m1901f7h", + "name": "Redmi Note 7 Dual SIM TD-LTE APAC LATAM 64GB M1901F7H", + "brand": "xiaomi", + "soc": "snapdragon-660", + "release_date": "2019-04-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , Indonesia , Malaysia , Mexico , Singapore , Taiwan , Vietnam", + "market_regions": "Asia , South America , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-7-dual-sim-td-lte-in-32gb-m1901f7i-mzb7411in-mzb7263in-mzb7264in.json b/data/smartphone/xiaomi/2019/redmi-note-7-dual-sim-td-lte-in-32gb-m1901f7i-mzb7411in-mzb7263in-mzb7264in.json new file mode 100644 index 00000000000..1bfcade8509 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-7-dual-sim-td-lte-in-32gb-m1901f7i-mzb7411in-mzb7263in-mzb7264in.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-note-7-dual-sim-td-lte-in-32gb-m1901f7i-mzb7411in-mzb7263in-mzb7264in", + "name": "Redmi Note 7 Dual SIM TD-LTE IN 32GB M1901F7I / MZB7411IN / MZB7263IN / MZB7264IN", + "brand": "xiaomi", + "soc": "snapdragon-660", + "release_date": "2019-02-28", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-7-dual-sim-td-lte-in-64gb-m1901f7i-mzb7412in-mzb7265in-mzb7266in.json b/data/smartphone/xiaomi/2019/redmi-note-7-dual-sim-td-lte-in-64gb-m1901f7i-mzb7412in-mzb7265in-mzb7266in.json new file mode 100644 index 00000000000..c5c95411177 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-7-dual-sim-td-lte-in-64gb-m1901f7i-mzb7412in-mzb7265in-mzb7266in.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-note-7-dual-sim-td-lte-in-64gb-m1901f7i-mzb7412in-mzb7265in-mzb7266in", + "name": "Redmi Note 7 Dual SIM TD-LTE IN 64GB M1901F7I / MZB7412IN / MZB7265IN / MZB7266IN", + "brand": "xiaomi", + "soc": "snapdragon-660", + "release_date": "2019-02-28", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-7-dual-sim-td-lte-th-64gb-m1901f7i.json b/data/smartphone/xiaomi/2019/redmi-note-7-dual-sim-td-lte-th-64gb-m1901f7i.json new file mode 100644 index 00000000000..d632dbcef48 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-7-dual-sim-td-lte-th-64gb-m1901f7i.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-note-7-dual-sim-td-lte-th-64gb-m1901f7i", + "name": "Redmi Note 7 Dual SIM TD-LTE TH 64GB M1901F7I", + "brand": "xiaomi", + "soc": "snapdragon-660", + "release_date": "2019-04-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Thailand", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-7-global-dual-sim-td-lte-128gb-m1901f7g-redmi-note-seven.json b/data/smartphone/xiaomi/2019/redmi-note-7-global-dual-sim-td-lte-128gb-m1901f7g-redmi-note-seven.json new file mode 100644 index 00000000000..320b28f1520 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-7-global-dual-sim-td-lte-128gb-m1901f7g-redmi-note-seven.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-note-7-global-dual-sim-td-lte-128gb-m1901f7g-redmi-note-seven", + "name": "Redmi Note 7 Global Dual SIM TD-LTE 128GB M1901F7G / Redmi Note Seven", + "brand": "xiaomi", + "soc": "snapdragon-660", + "release_date": "2019-03-12", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "France , HK , Italy , Philippines , Poland , Russia , Spain , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-7-global-dual-sim-td-lte-32gb-m1901f7g.json b/data/smartphone/xiaomi/2019/redmi-note-7-global-dual-sim-td-lte-32gb-m1901f7g.json new file mode 100644 index 00000000000..e6a7d9682b6 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-7-global-dual-sim-td-lte-32gb-m1901f7g.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-note-7-global-dual-sim-td-lte-32gb-m1901f7g", + "name": "Redmi Note 7 Global Dual SIM TD-LTE 32GB M1901F7G", + "brand": "xiaomi", + "soc": "snapdragon-660", + "release_date": "2019-03-12", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "France , Italy , Poland , Russia , Spain , UAE , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-7-global-dual-sim-td-lte-64gb-m1901f7g-redmi-note-seven.json b/data/smartphone/xiaomi/2019/redmi-note-7-global-dual-sim-td-lte-64gb-m1901f7g-redmi-note-seven.json new file mode 100644 index 00000000000..558f4722f33 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-7-global-dual-sim-td-lte-64gb-m1901f7g-redmi-note-seven.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-note-7-global-dual-sim-td-lte-64gb-m1901f7g-redmi-note-seven", + "name": "Redmi Note 7 Global Dual SIM TD-LTE 64GB M1901F7G / Redmi Note Seven", + "brand": "xiaomi", + "soc": "snapdragon-660", + "release_date": "2019-03-14", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "France , HK , Italy , Poland , Russia , Spain , UAE , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-7-premium-edition-dual-sim-td-lte-cn-64gb-m1901f7e-m1901f7c.json b/data/smartphone/xiaomi/2019/redmi-note-7-premium-edition-dual-sim-td-lte-cn-64gb-m1901f7e-m1901f7c.json new file mode 100644 index 00000000000..dc71daef523 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-7-premium-edition-dual-sim-td-lte-cn-64gb-m1901f7e-m1901f7c.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-note-7-premium-edition-dual-sim-td-lte-cn-64gb-m1901f7e-m1901f7c", + "name": "Redmi Note 7 Premium Edition Dual SIM TD-LTE CN 64GB M1901F7E / M1901F7C", + "brand": "xiaomi", + "soc": "snapdragon-660", + "release_date": "2019-01-17", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-7-pro-dual-sim-td-lte-cn-128gb-m1901f7be.json b/data/smartphone/xiaomi/2019/redmi-note-7-pro-dual-sim-td-lte-cn-128gb-m1901f7be.json new file mode 100644 index 00000000000..ee2d9085bff --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-7-pro-dual-sim-td-lte-cn-128gb-m1901f7be.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-note-7-pro-dual-sim-td-lte-cn-128gb-m1901f7be", + "name": "Redmi Note 7 Pro Dual SIM TD-LTE CN 128GB M1901F7BE", + "brand": "xiaomi", + "soc": "snapdragon-675", + "release_date": "2019-03-17", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-7-pro-dual-sim-td-lte-in-128gb-m1901f7s.json b/data/smartphone/xiaomi/2019/redmi-note-7-pro-dual-sim-td-lte-in-128gb-m1901f7s.json new file mode 100644 index 00000000000..0bfa6471300 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-7-pro-dual-sim-td-lte-in-128gb-m1901f7s.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-note-7-pro-dual-sim-td-lte-in-128gb-m1901f7s", + "name": "Redmi Note 7 Pro Dual SIM TD-LTE IN 128GB M1901F7S", + "brand": "xiaomi", + "soc": "snapdragon-675", + "release_date": "2019-04-02", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-7-pro-dual-sim-td-lte-in-64gb-m1901f7s-mzb7462in-mzb7464in.json b/data/smartphone/xiaomi/2019/redmi-note-7-pro-dual-sim-td-lte-in-64gb-m1901f7s-mzb7462in-mzb7464in.json new file mode 100644 index 00000000000..95679f4d39f --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-7-pro-dual-sim-td-lte-in-64gb-m1901f7s-mzb7462in-mzb7464in.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-note-7-pro-dual-sim-td-lte-in-64gb-m1901f7s-mzb7462in-mzb7464in", + "name": "Redmi Note 7 Pro Dual SIM TD-LTE IN 64GB M1901F7S / MZB7462IN / MZB7464IN", + "brand": "xiaomi", + "soc": "snapdragon-675", + "release_date": "2019-03-21", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-7-standard-edition-dual-sim-td-lte-cn-32gb-m1901f7e-m1901f7c.json b/data/smartphone/xiaomi/2019/redmi-note-7-standard-edition-dual-sim-td-lte-cn-32gb-m1901f7e-m1901f7c.json new file mode 100644 index 00000000000..e12c4c6fb65 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-7-standard-edition-dual-sim-td-lte-cn-32gb-m1901f7e-m1901f7c.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-note-7-standard-edition-dual-sim-td-lte-cn-32gb-m1901f7e-m1901f7c", + "name": "Redmi Note 7 Standard Edition Dual SIM TD-LTE CN 32GB M1901F7E / M1901F7C", + "brand": "xiaomi", + "soc": "snapdragon-660", + "release_date": "2019-01-16", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-7-standard-edition-dual-sim-td-lte-cn-64gb-m1901f7e-m1901f7c.json b/data/smartphone/xiaomi/2019/redmi-note-7-standard-edition-dual-sim-td-lte-cn-64gb-m1901f7e-m1901f7c.json new file mode 100644 index 00000000000..d00cc56f982 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-7-standard-edition-dual-sim-td-lte-cn-64gb-m1901f7e-m1901f7c.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-note-7-standard-edition-dual-sim-td-lte-cn-64gb-m1901f7e-m1901f7c", + "name": "Redmi Note 7 Standard Edition Dual SIM TD-LTE CN 64GB M1901F7E / M1901F7C", + "brand": "xiaomi", + "soc": "snapdragon-660", + "release_date": "2019-01-16", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-7s-dual-sim-td-lte-in-32gb-mzb7744in-mzb7745in-mzb7746in.json b/data/smartphone/xiaomi/2019/redmi-note-7s-dual-sim-td-lte-in-32gb-mzb7744in-mzb7745in-mzb7746in.json new file mode 100644 index 00000000000..1fc37768342 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-7s-dual-sim-td-lte-in-32gb-mzb7744in-mzb7745in-mzb7746in.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-note-7s-dual-sim-td-lte-in-32gb-mzb7744in-mzb7745in-mzb7746in", + "name": "Redmi Note 7S Dual SIM TD-LTE IN 32GB MZB7744IN / MZB7745IN / MZB7746IN", + "brand": "xiaomi", + "soc": "snapdragon-660", + "release_date": "2019-05-23", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-7s-dual-sim-td-lte-in-64gb-mzb7741in-mzb7742in-mzb7743in.json b/data/smartphone/xiaomi/2019/redmi-note-7s-dual-sim-td-lte-in-64gb-mzb7741in-mzb7742in-mzb7743in.json new file mode 100644 index 00000000000..14f811d7c86 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-7s-dual-sim-td-lte-in-64gb-mzb7741in-mzb7742in-mzb7743in.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-note-7s-dual-sim-td-lte-in-64gb-mzb7741in-mzb7742in-mzb7743in", + "name": "Redmi Note 7S Dual SIM TD-LTE IN 64GB MZB7741IN / MZB7742IN / MZB7743IN", + "brand": "xiaomi", + "soc": "snapdragon-660", + "release_date": "2019-05-23", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-8-dual-sim-td-lte-apac-64gb-m1908c3jh.json b/data/smartphone/xiaomi/2019/redmi-note-8-dual-sim-td-lte-apac-64gb-m1908c3jh.json new file mode 100644 index 00000000000..22221c863e3 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-8-dual-sim-td-lte-apac-64gb-m1908c3jh.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-note-8-dual-sim-td-lte-apac-64gb-m1908c3jh", + "name": "Redmi Note 8 Dual SIM TD-LTE APAC 64GB M1908C3JH", + "brand": "xiaomi", + "soc": "snapdragon-665", + "release_date": "2019-10-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "HK , Malaysia , Singapore , Taiwan", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-8-global-dual-sim-td-lte-64gb-m1908c3jg.json b/data/smartphone/xiaomi/2019/redmi-note-8-global-dual-sim-td-lte-64gb-m1908c3jg.json new file mode 100644 index 00000000000..6ff7b7cb5d1 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-8-global-dual-sim-td-lte-64gb-m1908c3jg.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-note-8-global-dual-sim-td-lte-64gb-m1908c3jg", + "name": "Redmi Note 8 Global Dual SIM TD-LTE 64GB M1908C3JG", + "brand": "xiaomi", + "soc": "snapdragon-665", + "release_date": "2019-09-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "France , Italy , Poland , Russia , Spain , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-8-premium-edition-dual-sim-td-lte-cn-128gb-m1908c3je.json b/data/smartphone/xiaomi/2019/redmi-note-8-premium-edition-dual-sim-td-lte-cn-128gb-m1908c3je.json new file mode 100644 index 00000000000..17c8b72a9fb --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-8-premium-edition-dual-sim-td-lte-cn-128gb-m1908c3je.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-note-8-premium-edition-dual-sim-td-lte-cn-128gb-m1908c3je", + "name": "Redmi Note 8 Premium Edition Dual SIM TD-LTE CN 128GB M1908C3JE", + "brand": "xiaomi", + "soc": "snapdragon-665", + "release_date": "2019-08-29", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-8-premium-edition-dual-sim-td-lte-cn-64gb-m1908c3je.json b/data/smartphone/xiaomi/2019/redmi-note-8-premium-edition-dual-sim-td-lte-cn-64gb-m1908c3je.json new file mode 100644 index 00000000000..4b03d674e80 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-8-premium-edition-dual-sim-td-lte-cn-64gb-m1908c3je.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-note-8-premium-edition-dual-sim-td-lte-cn-64gb-m1908c3je", + "name": "Redmi Note 8 Premium Edition Dual SIM TD-LTE CN 64GB M1908C3JE", + "brand": "xiaomi", + "soc": "snapdragon-665", + "release_date": "2019-08-29", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-8-pro-global-dual-sim-td-lte-128gb-m1906g7g.json b/data/smartphone/xiaomi/2019/redmi-note-8-pro-global-dual-sim-td-lte-128gb-m1906g7g.json new file mode 100644 index 00000000000..05453dc79af --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-8-pro-global-dual-sim-td-lte-128gb-m1906g7g.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-8-pro-global-dual-sim-td-lte-128gb-m1906g7g", + "name": "Redmi Note 8 Pro Global Dual SIM TD-LTE 128GB M1906G7G", + "brand": "xiaomi", + "soc": "helio-g90", + "release_date": "2019-09-26", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 199.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "France , Germany , HK , Italy , Poland , Russia , Singapore , Spain , Taiwan , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-8-pro-global-dual-sim-td-lte-64gb-m1906g7g.json b/data/smartphone/xiaomi/2019/redmi-note-8-pro-global-dual-sim-td-lte-64gb-m1906g7g.json new file mode 100644 index 00000000000..f5e914d63e8 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-8-pro-global-dual-sim-td-lte-64gb-m1906g7g.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-8-pro-global-dual-sim-td-lte-64gb-m1906g7g", + "name": "Redmi Note 8 Pro Global Dual SIM TD-LTE 64GB M1906G7G", + "brand": "xiaomi", + "soc": "helio-g90", + "release_date": "2019-09-26", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 199.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "France , Germany , HK , Italy , Poland , Russia , Singapore , Spain , Taiwan , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-8-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1906g7e.json b/data/smartphone/xiaomi/2019/redmi-note-8-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1906g7e.json new file mode 100644 index 00000000000..ca29a85dca3 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-8-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1906g7e.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-8-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1906g7e", + "name": "Redmi Note 8 Pro Premium Edition Dual SIM TD-LTE CN 128GB M1906G7E", + "brand": "xiaomi", + "soc": "helio-g90", + "release_date": "2019-08-29", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 199.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-8-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1906g7t.json b/data/smartphone/xiaomi/2019/redmi-note-8-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1906g7t.json new file mode 100644 index 00000000000..8d34e45b1c1 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-8-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1906g7t.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-8-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1906g7t", + "name": "Redmi Note 8 Pro Premium Edition Dual SIM TD-LTE CN 128GB M1906G7T", + "brand": "xiaomi", + "soc": "helio-g90", + "release_date": "2019-08-29", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 199.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-8-pro-premium-edition-dual-sim-td-lte-in-128gb-m1906g7i.json b/data/smartphone/xiaomi/2019/redmi-note-8-pro-premium-edition-dual-sim-td-lte-in-128gb-m1906g7i.json new file mode 100644 index 00000000000..b21ddb93750 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-8-pro-premium-edition-dual-sim-td-lte-in-128gb-m1906g7i.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-8-pro-premium-edition-dual-sim-td-lte-in-128gb-m1906g7i", + "name": "Redmi Note 8 Pro Premium Edition Dual SIM TD-LTE IN 128GB M1906G7I", + "brand": "xiaomi", + "soc": "helio-g90", + "release_date": "2019-11-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 199.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1906g7e.json b/data/smartphone/xiaomi/2019/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1906g7e.json new file mode 100644 index 00000000000..1d7ba297460 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1906g7e.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1906g7e", + "name": "Redmi Note 8 Pro Standard Edition Dual SIM TD-LTE CN 128GB M1906G7E", + "brand": "xiaomi", + "soc": "helio-g90", + "release_date": "2019-08-29", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 199.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1906g7t.json b/data/smartphone/xiaomi/2019/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1906g7t.json new file mode 100644 index 00000000000..966a2722ba9 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1906g7t.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1906g7t", + "name": "Redmi Note 8 Pro Standard Edition Dual SIM TD-LTE CN 128GB M1906G7T", + "brand": "xiaomi", + "soc": "helio-g90", + "release_date": "2019-08-29", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 199.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1906g7e.json b/data/smartphone/xiaomi/2019/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1906g7e.json new file mode 100644 index 00000000000..cb6e49d6a07 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1906g7e.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1906g7e", + "name": "Redmi Note 8 Pro Standard Edition Dual SIM TD-LTE CN 64GB M1906G7E", + "brand": "xiaomi", + "soc": "helio-g90", + "release_date": "2019-08-29", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 199.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1906g7t.json b/data/smartphone/xiaomi/2019/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1906g7t.json new file mode 100644 index 00000000000..61336f53b34 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1906g7t.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1906g7t", + "name": "Redmi Note 8 Pro Standard Edition Dual SIM TD-LTE CN 64GB M1906G7T", + "brand": "xiaomi", + "soc": "helio-g90", + "release_date": "2019-08-29", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 199.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-8-pro-standard-edition-dual-sim-td-lte-in-128gb-m1906g7i.json b/data/smartphone/xiaomi/2019/redmi-note-8-pro-standard-edition-dual-sim-td-lte-in-128gb-m1906g7i.json new file mode 100644 index 00000000000..7be33aeccb6 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-8-pro-standard-edition-dual-sim-td-lte-in-128gb-m1906g7i.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-8-pro-standard-edition-dual-sim-td-lte-in-128gb-m1906g7i", + "name": "Redmi Note 8 Pro Standard Edition Dual SIM TD-LTE IN 128GB M1906G7I", + "brand": "xiaomi", + "soc": "helio-g90", + "release_date": "2019-11-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 199.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-8-pro-standard-edition-dual-sim-td-lte-in-64gb-m1906g7i.json b/data/smartphone/xiaomi/2019/redmi-note-8-pro-standard-edition-dual-sim-td-lte-in-64gb-m1906g7i.json new file mode 100644 index 00000000000..7e6e9d45d5b --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-8-pro-standard-edition-dual-sim-td-lte-in-64gb-m1906g7i.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-8-pro-standard-edition-dual-sim-td-lte-in-64gb-m1906g7i", + "name": "Redmi Note 8 Pro Standard Edition Dual SIM TD-LTE IN 64GB M1906G7I", + "brand": "xiaomi", + "soc": "helio-g90", + "release_date": "2019-11-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 199.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-8-standard-edition-dual-sim-td-lte-cn-64gb-m1908c3je.json b/data/smartphone/xiaomi/2019/redmi-note-8-standard-edition-dual-sim-td-lte-cn-64gb-m1908c3je.json new file mode 100644 index 00000000000..031aa5b11b5 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-8-standard-edition-dual-sim-td-lte-cn-64gb-m1908c3je.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-note-8-standard-edition-dual-sim-td-lte-cn-64gb-m1908c3je", + "name": "Redmi Note 8 Standard Edition Dual SIM TD-LTE CN 64GB M1908C3JE", + "brand": "xiaomi", + "soc": "snapdragon-665", + "release_date": "2019-08-29", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-8t-premium-edition-global-dual-sim-td-lte-128gb-m1908c3xg.json b/data/smartphone/xiaomi/2019/redmi-note-8t-premium-edition-global-dual-sim-td-lte-128gb-m1908c3xg.json new file mode 100644 index 00000000000..7f7f1cf1838 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-8t-premium-edition-global-dual-sim-td-lte-128gb-m1908c3xg.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-note-8t-premium-edition-global-dual-sim-td-lte-128gb-m1908c3xg", + "name": "Redmi Note 8T Premium Edition Global Dual SIM TD-LTE 128GB M1908C3XG", + "brand": "xiaomi", + "soc": "snapdragon-665", + "release_date": "2019-11-13", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 199.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "France , Italy , Poland , Portugal , Russia , Spain , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-8t-premium-edition-global-dual-sim-td-lte-64gb-m1908c3xg.json b/data/smartphone/xiaomi/2019/redmi-note-8t-premium-edition-global-dual-sim-td-lte-64gb-m1908c3xg.json new file mode 100644 index 00000000000..c58bbb99c04 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-8t-premium-edition-global-dual-sim-td-lte-64gb-m1908c3xg.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-note-8t-premium-edition-global-dual-sim-td-lte-64gb-m1908c3xg", + "name": "Redmi Note 8T Premium Edition Global Dual SIM TD-LTE 64GB M1908C3XG", + "brand": "xiaomi", + "soc": "snapdragon-665", + "release_date": "2019-11-11", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 199.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "France , Italy , Poland , Portugal , Russia , Spain , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/redmi-note-8t-standard-edition-global-dual-sim-td-lte-32gb-m1908c3xg.json b/data/smartphone/xiaomi/2019/redmi-note-8t-standard-edition-global-dual-sim-td-lte-32gb-m1908c3xg.json new file mode 100644 index 00000000000..f244db030f1 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-note-8t-standard-edition-global-dual-sim-td-lte-32gb-m1908c3xg.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-note-8t-standard-edition-global-dual-sim-td-lte-32gb-m1908c3xg", + "name": "Redmi Note 8T Standard Edition Global Dual SIM TD-LTE 32GB M1908C3XG", + "brand": "xiaomi", + "soc": "snapdragon-665", + "release_date": "2019-11-11", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 199.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "France , Italy , Poland , Portugal , Russia , Spain , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/redmi-y3-global-dual-sim-td-lte-32gb-m1810f6g.json b/data/smartphone/xiaomi/2019/redmi-y3-global-dual-sim-td-lte-32gb-m1810f6g.json new file mode 100644 index 00000000000..c05f72809d0 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-y3-global-dual-sim-td-lte-32gb-m1810f6g.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-y3-global-dual-sim-td-lte-32gb-m1810f6g", + "name": "Redmi Y3 Global Dual SIM TD-LTE 32GB M1810F6G", + "brand": "xiaomi", + "soc": "snapdragon-632", + "release_date": "2019-05-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "1520x720", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "France , Italy , Russia , Spain , Turkey , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/xiaomi/2019/redmi-y3-premium-edition-dual-sim-td-lte-in-32gb-m1810f6i.json b/data/smartphone/xiaomi/2019/redmi-y3-premium-edition-dual-sim-td-lte-in-32gb-m1810f6i.json new file mode 100644 index 00000000000..54532eef6cc --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-y3-premium-edition-dual-sim-td-lte-in-32gb-m1810f6i.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-y3-premium-edition-dual-sim-td-lte-in-32gb-m1810f6i", + "name": "Redmi Y3 Premium Edition Dual SIM TD-LTE IN 32GB M1810F6I", + "brand": "xiaomi", + "soc": "snapdragon-632", + "release_date": "2019-04-29", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "1520x720", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2019/redmi-y3-standard-edition-dual-sim-td-lte-in-32gb-m1810f6i.json b/data/smartphone/xiaomi/2019/redmi-y3-standard-edition-dual-sim-td-lte-in-32gb-m1810f6i.json new file mode 100644 index 00000000000..19742886a18 --- /dev/null +++ b/data/smartphone/xiaomi/2019/redmi-y3-standard-edition-dual-sim-td-lte-in-32gb-m1810f6i.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-y3-standard-edition-dual-sim-td-lte-in-32gb-m1810f6i", + "name": "Redmi Y3 Standard Edition Dual SIM TD-LTE IN 32GB M1810F6I", + "brand": "xiaomi", + "soc": "snapdragon-632", + "release_date": "2019-04-29", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "1520x720", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/black-shark-3-5g-premium-edition-dual-sim-td-lte-cn-128gb-kle-a0.json b/data/smartphone/xiaomi/2020/black-shark-3-5g-premium-edition-dual-sim-td-lte-cn-128gb-kle-a0.json new file mode 100644 index 00000000000..7da7f965c15 --- /dev/null +++ b/data/smartphone/xiaomi/2020/black-shark-3-5g-premium-edition-dual-sim-td-lte-cn-128gb-kle-a0.json @@ -0,0 +1,43 @@ +{ + "slug": "black-shark-3-5g-premium-edition-dual-sim-td-lte-cn-128gb-kle-a0", + "name": "Black Shark 3 5G Premium Edition Dual SIM TD-LTE CN 128GB KLE-A0", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-03-06", + "ram_gb": 12.0, + "battery_mah": 4720, + "weight_g": 222.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2020/black-shark-3-5g-premium-edition-dual-sim-td-lte-cn-256gb-kle-a0.json b/data/smartphone/xiaomi/2020/black-shark-3-5g-premium-edition-dual-sim-td-lte-cn-256gb-kle-a0.json new file mode 100644 index 00000000000..26106c3b1d2 --- /dev/null +++ b/data/smartphone/xiaomi/2020/black-shark-3-5g-premium-edition-dual-sim-td-lte-cn-256gb-kle-a0.json @@ -0,0 +1,43 @@ +{ + "slug": "black-shark-3-5g-premium-edition-dual-sim-td-lte-cn-256gb-kle-a0", + "name": "Black Shark 3 5G Premium Edition Dual SIM TD-LTE CN 256GB KLE-A0", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-03-06", + "ram_gb": 12.0, + "battery_mah": 4720, + "weight_g": 222.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2020/black-shark-3-5g-premium-edition-global-dual-sim-td-lte-128gb-kle-h0.json b/data/smartphone/xiaomi/2020/black-shark-3-5g-premium-edition-global-dual-sim-td-lte-128gb-kle-h0.json new file mode 100644 index 00000000000..79b64d166fd --- /dev/null +++ b/data/smartphone/xiaomi/2020/black-shark-3-5g-premium-edition-global-dual-sim-td-lte-128gb-kle-h0.json @@ -0,0 +1,44 @@ +{ + "slug": "black-shark-3-5g-premium-edition-global-dual-sim-td-lte-128gb-kle-h0", + "name": "Black Shark 3 5G Premium Edition Global Dual SIM TD-LTE 128GB KLE-H0", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-05-01", + "ram_gb": 12.0, + "battery_mah": 4720, + "weight_g": 222.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 659, + "market_countries": "Austria , Belgium , Germany , HK , Italy , Japan , Malaysia , Netherlands , Portugal , Russia , South Korea , Spain , Taiwan , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2020/black-shark-3-5g-premium-edition-global-dual-sim-td-lte-256gb-kle-h0.json b/data/smartphone/xiaomi/2020/black-shark-3-5g-premium-edition-global-dual-sim-td-lte-256gb-kle-h0.json new file mode 100644 index 00000000000..b7492dfe8df --- /dev/null +++ b/data/smartphone/xiaomi/2020/black-shark-3-5g-premium-edition-global-dual-sim-td-lte-256gb-kle-h0.json @@ -0,0 +1,44 @@ +{ + "slug": "black-shark-3-5g-premium-edition-global-dual-sim-td-lte-256gb-kle-h0", + "name": "Black Shark 3 5G Premium Edition Global Dual SIM TD-LTE 256GB KLE-H0", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-05-01", + "ram_gb": 12.0, + "battery_mah": 4720, + "weight_g": 222.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 729, + "market_countries": "Austria , Belgium , Germany , HK , Italy , Japan , Malaysia , Netherlands , Portugal , Russia , South Korea , Spain , Taiwan , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2020/black-shark-3-5g-standard-edition-dual-sim-td-lte-cn-128gb-kle-a0.json b/data/smartphone/xiaomi/2020/black-shark-3-5g-standard-edition-dual-sim-td-lte-cn-128gb-kle-a0.json new file mode 100644 index 00000000000..04d5984b8d6 --- /dev/null +++ b/data/smartphone/xiaomi/2020/black-shark-3-5g-standard-edition-dual-sim-td-lte-cn-128gb-kle-a0.json @@ -0,0 +1,43 @@ +{ + "slug": "black-shark-3-5g-standard-edition-dual-sim-td-lte-cn-128gb-kle-a0", + "name": "Black Shark 3 5G Standard Edition Dual SIM TD-LTE CN 128GB KLE-A0", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-03-06", + "ram_gb": 8.0, + "battery_mah": 4720, + "weight_g": 222.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2020/black-shark-3-5g-standard-edition-global-dual-sim-td-lte-128gb-kle-h0.json b/data/smartphone/xiaomi/2020/black-shark-3-5g-standard-edition-global-dual-sim-td-lte-128gb-kle-h0.json new file mode 100644 index 00000000000..8d2e05b26f9 --- /dev/null +++ b/data/smartphone/xiaomi/2020/black-shark-3-5g-standard-edition-global-dual-sim-td-lte-128gb-kle-h0.json @@ -0,0 +1,44 @@ +{ + "slug": "black-shark-3-5g-standard-edition-global-dual-sim-td-lte-128gb-kle-h0", + "name": "Black Shark 3 5G Standard Edition Global Dual SIM TD-LTE 128GB KLE-H0", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-05-01", + "ram_gb": 8.0, + "battery_mah": 4720, + "weight_g": 222.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 599, + "market_countries": "Austria , Belgium , Germany , HK , Italy , Japan , Malaysia , Netherlands , Portugal , Russia , South Korea , Spain , Taiwan , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2020/black-shark-3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-mbu-a0.json b/data/smartphone/xiaomi/2020/black-shark-3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-mbu-a0.json new file mode 100644 index 00000000000..ae08052b0ac --- /dev/null +++ b/data/smartphone/xiaomi/2020/black-shark-3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-mbu-a0.json @@ -0,0 +1,43 @@ +{ + "slug": "black-shark-3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-mbu-a0", + "name": "Black Shark 3 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB MBU-A0", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-03-17", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 253.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 7.09, + "resolution": "1440x3120", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 485 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/black-shark-3-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-mbu-h0.json b/data/smartphone/xiaomi/2020/black-shark-3-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-mbu-h0.json new file mode 100644 index 00000000000..ccfdeba5146 --- /dev/null +++ b/data/smartphone/xiaomi/2020/black-shark-3-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-mbu-h0.json @@ -0,0 +1,44 @@ +{ + "slug": "black-shark-3-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-mbu-h0", + "name": "Black Shark 3 Pro 5G Premium Edition Global Dual SIM TD-LTE 256GB MBU-H0", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-05-01", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 253.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 7.09, + "resolution": "1440x3120", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 485 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 899, + "market_countries": "Australia , Belgium , France , Germany , HK , Indonesia , Italy , Japan , Malaysia , Netherlands , Saudi Arabia , Singapore , Spain , Taiwan , UAE , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2020/black-shark-3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-mbu-a0.json b/data/smartphone/xiaomi/2020/black-shark-3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-mbu-a0.json new file mode 100644 index 00000000000..85ed5a2e23b --- /dev/null +++ b/data/smartphone/xiaomi/2020/black-shark-3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-mbu-a0.json @@ -0,0 +1,43 @@ +{ + "slug": "black-shark-3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-mbu-a0", + "name": "Black Shark 3 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB MBU-A0", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-03-17", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 253.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 7.09, + "resolution": "1440x3120", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 485 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/black-shark-3-pro-5g-standard-edition-global-dual-sim-td-lte-256gb-mbu-h0.json b/data/smartphone/xiaomi/2020/black-shark-3-pro-5g-standard-edition-global-dual-sim-td-lte-256gb-mbu-h0.json new file mode 100644 index 00000000000..ada6112d58b --- /dev/null +++ b/data/smartphone/xiaomi/2020/black-shark-3-pro-5g-standard-edition-global-dual-sim-td-lte-256gb-mbu-h0.json @@ -0,0 +1,43 @@ +{ + "slug": "black-shark-3-pro-5g-standard-edition-global-dual-sim-td-lte-256gb-mbu-h0", + "name": "Black Shark 3 Pro 5G Standard Edition Global Dual SIM TD-LTE 256GB MBU-H0", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-05-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 253.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 7.09, + "resolution": "1440x3120", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 485 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Belgium , France , Germany , HK , Indonesia , Italy , Japan , Malaysia , Netherlands , Saudi Arabia , Singapore , Spain , Taiwan , UAE , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2020/black-shark-3s-5g-dual-sim-td-lte-cn-128gb-kpro.json b/data/smartphone/xiaomi/2020/black-shark-3s-5g-dual-sim-td-lte-cn-128gb-kpro.json new file mode 100644 index 00000000000..2330aafd2f4 --- /dev/null +++ b/data/smartphone/xiaomi/2020/black-shark-3s-5g-dual-sim-td-lte-cn-128gb-kpro.json @@ -0,0 +1,44 @@ +{ + "slug": "black-shark-3s-5g-dual-sim-td-lte-cn-128gb-kpro", + "name": "Black Shark 3S 5G Dual SIM TD-LTE CN 128GB KPRO", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-08-04", + "ram_gb": 12.0, + "battery_mah": 4720, + "weight_g": 222.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 3999, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2020/black-shark-3s-5g-dual-sim-td-lte-cn-256gb-kpro.json b/data/smartphone/xiaomi/2020/black-shark-3s-5g-dual-sim-td-lte-cn-256gb-kpro.json new file mode 100644 index 00000000000..9611db0f316 --- /dev/null +++ b/data/smartphone/xiaomi/2020/black-shark-3s-5g-dual-sim-td-lte-cn-256gb-kpro.json @@ -0,0 +1,44 @@ +{ + "slug": "black-shark-3s-5g-dual-sim-td-lte-cn-256gb-kpro", + "name": "Black Shark 3S 5G Dual SIM TD-LTE CN 256GB KPRO", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-08-04", + "ram_gb": 12.0, + "battery_mah": 4720, + "weight_g": 222.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 4299, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2020/mi-10-5g-dual-sim-td-lte-in-128gb-m2001j2i.json b/data/smartphone/xiaomi/2020/mi-10-5g-dual-sim-td-lte-in-128gb-m2001j2i.json new file mode 100644 index 00000000000..637cb5bc98d --- /dev/null +++ b/data/smartphone/xiaomi/2020/mi-10-5g-dual-sim-td-lte-in-128gb-m2001j2i.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-10-5g-dual-sim-td-lte-in-128gb-m2001j2i", + "name": "Mi 10 5G Dual SIM TD-LTE IN 128GB M2001J2I", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-04-01", + "ram_gb": 8.0, + "battery_mah": 4780, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2020/mi-10-5g-dual-sim-td-lte-in-256gb-m2001j2i.json b/data/smartphone/xiaomi/2020/mi-10-5g-dual-sim-td-lte-in-256gb-m2001j2i.json new file mode 100644 index 00000000000..2835386103d --- /dev/null +++ b/data/smartphone/xiaomi/2020/mi-10-5g-dual-sim-td-lte-in-256gb-m2001j2i.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-10-5g-dual-sim-td-lte-in-256gb-m2001j2i", + "name": "Mi 10 5G Dual SIM TD-LTE IN 256GB M2001J2I", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-04-01", + "ram_gb": 8.0, + "battery_mah": 4780, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2020/mi-10-5g-global-td-lte-128gb-m2001j2g.json b/data/smartphone/xiaomi/2020/mi-10-5g-global-td-lte-128gb-m2001j2g.json new file mode 100644 index 00000000000..dc3e8f81ca9 --- /dev/null +++ b/data/smartphone/xiaomi/2020/mi-10-5g-global-td-lte-128gb-m2001j2g.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-10-5g-global-td-lte-128gb-m2001j2g", + "name": "Mi 10 5G Global TD-LTE 128GB M2001J2G", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-04-01", + "ram_gb": 8.0, + "battery_mah": 4780, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Belgium , China , Cyprus , Egypt , France , Greece , Germany , HK , Hungary , Malaysia , Mexico , Netherlands , Philippines , Poland , Russia , Singapore , Spain , Taiwan , Thailand , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , North America , Oceania , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2020/mi-10-5g-global-td-lte-256gb-m2001j2g.json b/data/smartphone/xiaomi/2020/mi-10-5g-global-td-lte-256gb-m2001j2g.json new file mode 100644 index 00000000000..ba0149c699d --- /dev/null +++ b/data/smartphone/xiaomi/2020/mi-10-5g-global-td-lte-256gb-m2001j2g.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-10-5g-global-td-lte-256gb-m2001j2g", + "name": "Mi 10 5G Global TD-LTE 256GB M2001J2G", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-04-01", + "ram_gb": 8.0, + "battery_mah": 4780, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Belgium , Cyprus , Egypt , France , Greece , Germany , HK , Hungary , Malaysia , Mexico , Netherlands , Philippines , Poland , Russia , Singapore , Spain , Taiwan , Thailand , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , North America , Oceania , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2020/mi-10-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001j2e-m2001j2c.json b/data/smartphone/xiaomi/2020/mi-10-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001j2e-m2001j2c.json new file mode 100644 index 00000000000..5ee27099381 --- /dev/null +++ b/data/smartphone/xiaomi/2020/mi-10-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001j2e-m2001j2c.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-10-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001j2e-m2001j2c", + "name": "Mi 10 5G Premium Edition Dual SIM TD-LTE CN 256GB M2001J2E / M2001J2C", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-02-14", + "ram_gb": 12.0, + "battery_mah": 4780, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/mi-10-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2001j2e-m2001j2c.json b/data/smartphone/xiaomi/2020/mi-10-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2001j2e-m2001j2c.json new file mode 100644 index 00000000000..2c0de810d71 --- /dev/null +++ b/data/smartphone/xiaomi/2020/mi-10-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2001j2e-m2001j2c.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-10-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2001j2e-m2001j2c", + "name": "Mi 10 5G Standard Edition Dual SIM TD-LTE CN 128GB M2001J2E / M2001J2C", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-02-14", + "ram_gb": 8.0, + "battery_mah": 4780, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/mi-10-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2001j2e-m2001j2c.json b/data/smartphone/xiaomi/2020/mi-10-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2001j2e-m2001j2c.json new file mode 100644 index 00000000000..13663523f3f --- /dev/null +++ b/data/smartphone/xiaomi/2020/mi-10-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2001j2e-m2001j2c.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-10-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2001j2e-m2001j2c", + "name": "Mi 10 5G Standard Edition Dual SIM TD-LTE CN 256GB M2001J2E / M2001J2C", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-02-14", + "ram_gb": 8.0, + "battery_mah": 4780, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/mi-10-lite-5g-premium-edition-global-dual-sim-td-lte-256gb-m2002j9g.json b/data/smartphone/xiaomi/2020/mi-10-lite-5g-premium-edition-global-dual-sim-td-lte-256gb-m2002j9g.json new file mode 100644 index 00000000000..3d0a15e2cdc --- /dev/null +++ b/data/smartphone/xiaomi/2020/mi-10-lite-5g-premium-edition-global-dual-sim-td-lte-256gb-m2002j9g.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-10-lite-5g-premium-edition-global-dual-sim-td-lte-256gb-m2002j9g", + "name": "Mi 10 Lite 5G Premium Edition Global Dual SIM TD-LTE 256GB M2002J9G", + "brand": "xiaomi", + "soc": "snapdragon-765", + "release_date": "2020-06-01", + "ram_gb": 8.0, + "battery_mah": 4160, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "HK , Jordan , Kuwait , Malaysia , Philippines , Poland , Russia , Saudi Arabia , Singapore , Taiwan , Thailand , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2020/mi-10-lite-5g-standard-edition-global-dual-sim-td-lte-128gb-m2002j9g.json b/data/smartphone/xiaomi/2020/mi-10-lite-5g-standard-edition-global-dual-sim-td-lte-128gb-m2002j9g.json new file mode 100644 index 00000000000..faea6fa7085 --- /dev/null +++ b/data/smartphone/xiaomi/2020/mi-10-lite-5g-standard-edition-global-dual-sim-td-lte-128gb-m2002j9g.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-10-lite-5g-standard-edition-global-dual-sim-td-lte-128gb-m2002j9g", + "name": "Mi 10 Lite 5G Standard Edition Global Dual SIM TD-LTE 128GB M2002J9G", + "brand": "xiaomi", + "soc": "snapdragon-765", + "release_date": "2020-05-01", + "ram_gb": 6.0, + "battery_mah": 4160, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 399, + "market_countries": "Belgium , Cyprus , Egypt , France , Germany , Greece , HK , Hungary , Italy , Malaysia , Mexico , Netherlands , Philippines , Poland , Russia , Singapore , Spain , Taiwan , Thailand , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , North America , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2020/mi-10-lite-5g-standard-edition-global-dual-sim-td-lte-64gb-m2002j9g.json b/data/smartphone/xiaomi/2020/mi-10-lite-5g-standard-edition-global-dual-sim-td-lte-64gb-m2002j9g.json new file mode 100644 index 00000000000..c5f33630bd2 --- /dev/null +++ b/data/smartphone/xiaomi/2020/mi-10-lite-5g-standard-edition-global-dual-sim-td-lte-64gb-m2002j9g.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-10-lite-5g-standard-edition-global-dual-sim-td-lte-64gb-m2002j9g", + "name": "Mi 10 Lite 5G Standard Edition Global Dual SIM TD-LTE 64GB M2002J9G", + "brand": "xiaomi", + "soc": "snapdragon-765", + "release_date": "2020-05-01", + "ram_gb": 6.0, + "battery_mah": 4160, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 349, + "market_countries": "Belgium , Cyprus , France , Germany , Greece , HK , Hungary , Italy , Malaysia , Mexico , Netherlands , Philippines , Poland , Russia , Singapore , Spain , Taiwan , Thailand , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , North America , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2020/mi-10-lite-5g-td-lte-kr-128gb-m2002j9s.json b/data/smartphone/xiaomi/2020/mi-10-lite-5g-td-lte-kr-128gb-m2002j9s.json new file mode 100644 index 00000000000..d979e4d043a --- /dev/null +++ b/data/smartphone/xiaomi/2020/mi-10-lite-5g-td-lte-kr-128gb-m2002j9s.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-10-lite-5g-td-lte-kr-128gb-m2002j9s", + "name": "Mi 10 Lite 5G TD-LTE KR 128GB M2002J9S", + "brand": "xiaomi", + "soc": "snapdragon-765", + "release_date": "2020-07-16", + "ram_gb": 6.0, + "battery_mah": 4160, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "South Korea", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/mi-10-lite-5g-xig01-td-lte-jp-128gb-m2002j9r.json b/data/smartphone/xiaomi/2020/mi-10-lite-5g-xig01-td-lte-jp-128gb-m2002j9r.json new file mode 100644 index 00000000000..2ea9589dac5 --- /dev/null +++ b/data/smartphone/xiaomi/2020/mi-10-lite-5g-xig01-td-lte-jp-128gb-m2002j9r.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-10-lite-5g-xig01-td-lte-jp-128gb-m2002j9r", + "name": "Mi 10 Lite 5G XIG01 TD-LTE JP 128GB M2002J9R", + "brand": "xiaomi", + "soc": "snapdragon-765", + "release_date": "2020-07-01", + "ram_gb": 6.0, + "battery_mah": 4160, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/mi-10-lite-zoom-5g-dual-sim-td-lte-cn-64gb-m2002j9c.json b/data/smartphone/xiaomi/2020/mi-10-lite-zoom-5g-dual-sim-td-lte-cn-64gb-m2002j9c.json new file mode 100644 index 00000000000..7b9e3ca1bde --- /dev/null +++ b/data/smartphone/xiaomi/2020/mi-10-lite-zoom-5g-dual-sim-td-lte-cn-64gb-m2002j9c.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-10-lite-zoom-5g-dual-sim-td-lte-cn-64gb-m2002j9c", + "name": "Mi 10 Lite Zoom 5G Dual SIM TD-LTE CN 64GB M2002J9C", + "brand": "xiaomi", + "soc": "snapdragon-765", + "release_date": "2020-05-04", + "ram_gb": 6.0, + "battery_mah": 4160, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 20, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2099, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/mi-10-pro-5g-global-td-lte-256gb-m2001j1g.json b/data/smartphone/xiaomi/2020/mi-10-pro-5g-global-td-lte-256gb-m2001j1g.json new file mode 100644 index 00000000000..39eef07b77b --- /dev/null +++ b/data/smartphone/xiaomi/2020/mi-10-pro-5g-global-td-lte-256gb-m2001j1g.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-10-pro-5g-global-td-lte-256gb-m2001j1g", + "name": "Mi 10 Pro 5G Global TD-LTE 256GB M2001J1G", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-04-01", + "ram_gb": 8.0, + "battery_mah": 2250, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Cyprus , Egypt , France , Greece , Germany , HK , Hungary , Italy , Malaysia , Mexico , Netherlands , Philippines , Poland , Russia , Singapore , Spain , Taiwan , Thailand , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , North America , Oceania , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2020/mi-10-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001j1e-m2001j1c.json b/data/smartphone/xiaomi/2020/mi-10-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001j1e-m2001j1c.json new file mode 100644 index 00000000000..e39e0169a28 --- /dev/null +++ b/data/smartphone/xiaomi/2020/mi-10-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001j1e-m2001j1c.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-10-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001j1e-m2001j1c", + "name": "Mi 10 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB M2001J1E / M2001J1C", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-02-18", + "ram_gb": 12.0, + "battery_mah": 2250, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/mi-10-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2001j1e-m2001j1c.json b/data/smartphone/xiaomi/2020/mi-10-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2001j1e-m2001j1c.json new file mode 100644 index 00000000000..0d74a0dff10 --- /dev/null +++ b/data/smartphone/xiaomi/2020/mi-10-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2001j1e-m2001j1c.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-10-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2001j1e-m2001j1c", + "name": "Mi 10 Pro 5G Premium Edition Dual SIM TD-LTE CN 512GB M2001J1E / M2001J1C", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-02-18", + "ram_gb": 12.0, + "battery_mah": 2250, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/mi-10-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2001j1e-m2001j1c.json b/data/smartphone/xiaomi/2020/mi-10-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2001j1e-m2001j1c.json new file mode 100644 index 00000000000..e4548ee196a --- /dev/null +++ b/data/smartphone/xiaomi/2020/mi-10-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2001j1e-m2001j1c.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-10-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2001j1e-m2001j1c", + "name": "Mi 10 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB M2001J1E / M2001J1C", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-02-18", + "ram_gb": 8.0, + "battery_mah": 2250, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/mi-10-ultra-premium-edition-dual-sim-td-lte-cn-256gb-m2007j1sc.json b/data/smartphone/xiaomi/2020/mi-10-ultra-premium-edition-dual-sim-td-lte-cn-256gb-m2007j1sc.json new file mode 100644 index 00000000000..b4b04fc641c --- /dev/null +++ b/data/smartphone/xiaomi/2020/mi-10-ultra-premium-edition-dual-sim-td-lte-cn-256gb-m2007j1sc.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-10-ultra-premium-edition-dual-sim-td-lte-cn-256gb-m2007j1sc", + "name": "Mi 10 Ultra Premium Edition Dual SIM TD-LTE CN 256GB M2007J1SC", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-08-16", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 221.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/mi-10-ultra-standard-edition-dual-sim-td-lte-cn-128gb-m2007j1sc.json b/data/smartphone/xiaomi/2020/mi-10-ultra-standard-edition-dual-sim-td-lte-cn-128gb-m2007j1sc.json new file mode 100644 index 00000000000..6f19087024b --- /dev/null +++ b/data/smartphone/xiaomi/2020/mi-10-ultra-standard-edition-dual-sim-td-lte-cn-128gb-m2007j1sc.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-10-ultra-standard-edition-dual-sim-td-lte-cn-128gb-m2007j1sc", + "name": "Mi 10 Ultra Standard Edition Dual SIM TD-LTE CN 128GB M2007J1SC", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-08-16", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 221.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/mi-10-ultra-standard-edition-dual-sim-td-lte-cn-256gb-m2007j1sc.json b/data/smartphone/xiaomi/2020/mi-10-ultra-standard-edition-dual-sim-td-lte-cn-256gb-m2007j1sc.json new file mode 100644 index 00000000000..b481444944e --- /dev/null +++ b/data/smartphone/xiaomi/2020/mi-10-ultra-standard-edition-dual-sim-td-lte-cn-256gb-m2007j1sc.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-10-ultra-standard-edition-dual-sim-td-lte-cn-256gb-m2007j1sc", + "name": "Mi 10 Ultra Standard Edition Dual SIM TD-LTE CN 256GB M2007J1SC", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-08-16", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 221.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/mi-10-youth-premium-edition-5g-dual-sim-td-lte-cn-128gb-m2002j9e.json b/data/smartphone/xiaomi/2020/mi-10-youth-premium-edition-5g-dual-sim-td-lte-cn-128gb-m2002j9e.json new file mode 100644 index 00000000000..c8f336b294a --- /dev/null +++ b/data/smartphone/xiaomi/2020/mi-10-youth-premium-edition-5g-dual-sim-td-lte-cn-128gb-m2002j9e.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-10-youth-premium-edition-5g-dual-sim-td-lte-cn-128gb-m2002j9e", + "name": "Mi 10 Youth Premium Edition 5G Dual SIM TD-LTE CN 128GB M2002J9E", + "brand": "xiaomi", + "soc": "snapdragon-765", + "release_date": "2020-05-04", + "ram_gb": 8.0, + "battery_mah": 4160, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/mi-10-youth-premium-edition-5g-dual-sim-td-lte-cn-256gb-m2002j9e-mi-10-lite.json b/data/smartphone/xiaomi/2020/mi-10-youth-premium-edition-5g-dual-sim-td-lte-cn-256gb-m2002j9e-mi-10-lite.json new file mode 100644 index 00000000000..e8910f1e3a9 --- /dev/null +++ b/data/smartphone/xiaomi/2020/mi-10-youth-premium-edition-5g-dual-sim-td-lte-cn-256gb-m2002j9e-mi-10-lite.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-10-youth-premium-edition-5g-dual-sim-td-lte-cn-256gb-m2002j9e-mi-10-lite", + "name": "Mi 10 Youth Premium Edition 5G Dual SIM TD-LTE CN 256GB M2002J9E / Mi 10 Lite", + "brand": "xiaomi", + "soc": "snapdragon-765", + "release_date": "2020-05-04", + "ram_gb": 8.0, + "battery_mah": 4160, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/mi-10-youth-standard-edition-5g-dual-sim-td-lte-cn-128gb-m2002j9e.json b/data/smartphone/xiaomi/2020/mi-10-youth-standard-edition-5g-dual-sim-td-lte-cn-128gb-m2002j9e.json new file mode 100644 index 00000000000..d4df4b96ad3 --- /dev/null +++ b/data/smartphone/xiaomi/2020/mi-10-youth-standard-edition-5g-dual-sim-td-lte-cn-128gb-m2002j9e.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-10-youth-standard-edition-5g-dual-sim-td-lte-cn-128gb-m2002j9e", + "name": "Mi 10 Youth Standard Edition 5G Dual SIM TD-LTE CN 128GB M2002J9E", + "brand": "xiaomi", + "soc": "snapdragon-765", + "release_date": "2020-05-04", + "ram_gb": 6.0, + "battery_mah": 4160, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/mi-10-youth-standard-edition-5g-dual-sim-td-lte-cn-64gb-m2002j9e.json b/data/smartphone/xiaomi/2020/mi-10-youth-standard-edition-5g-dual-sim-td-lte-cn-64gb-m2002j9e.json new file mode 100644 index 00000000000..6c602bafd23 --- /dev/null +++ b/data/smartphone/xiaomi/2020/mi-10-youth-standard-edition-5g-dual-sim-td-lte-cn-64gb-m2002j9e.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-10-youth-standard-edition-5g-dual-sim-td-lte-cn-64gb-m2002j9e", + "name": "Mi 10 Youth Standard Edition 5G Dual SIM TD-LTE CN 64GB M2002J9E", + "brand": "xiaomi", + "soc": "snapdragon-765", + "release_date": "2020-05-04", + "ram_gb": 6.0, + "battery_mah": 4160, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/mi-10t-5g-premium-edition-dual-sim-td-lte-in-128gb-m2007j3sp.json b/data/smartphone/xiaomi/2020/mi-10t-5g-premium-edition-dual-sim-td-lte-in-128gb-m2007j3sp.json new file mode 100644 index 00000000000..b48016623b1 --- /dev/null +++ b/data/smartphone/xiaomi/2020/mi-10t-5g-premium-edition-dual-sim-td-lte-in-128gb-m2007j3sp.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-10t-5g-premium-edition-dual-sim-td-lte-in-128gb-m2007j3sp", + "name": "Mi 10T 5G Premium Edition Dual SIM TD-LTE IN 128GB M2007J3SP", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-10-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 216.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , India , Nepal", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2020/mi-10t-5g-premium-edition-global-dual-sim-td-lte-128gb-m2007j3sy.json b/data/smartphone/xiaomi/2020/mi-10t-5g-premium-edition-global-dual-sim-td-lte-128gb-m2007j3sy.json new file mode 100644 index 00000000000..6e22c3ace15 --- /dev/null +++ b/data/smartphone/xiaomi/2020/mi-10t-5g-premium-edition-global-dual-sim-td-lte-128gb-m2007j3sy.json @@ -0,0 +1,44 @@ +{ + "slug": "mi-10t-5g-premium-edition-global-dual-sim-td-lte-128gb-m2007j3sy", + "name": "Mi 10T 5G Premium Edition Global Dual SIM TD-LTE 128GB M2007J3SY", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-10-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 216.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 549, + "market_countries": "Belgium , Cyprus , Czech , Egypt , Finland , France , Greece , Germany , HK , Hungary , Italy , Malaysia , Netherlands , Norway , Philippines , Poland , Russia , Romania , Slovakia , Singapore , Spain , Sweden , Taiwan , Thailand , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Oceania , Western Europe" +} diff --git a/data/smartphone/xiaomi/2020/mi-10t-5g-standard-edition-dual-sim-td-lte-in-128gb-m2007j3sp.json b/data/smartphone/xiaomi/2020/mi-10t-5g-standard-edition-dual-sim-td-lte-in-128gb-m2007j3sp.json new file mode 100644 index 00000000000..25ebbf6f0a9 --- /dev/null +++ b/data/smartphone/xiaomi/2020/mi-10t-5g-standard-edition-dual-sim-td-lte-in-128gb-m2007j3sp.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-10t-5g-standard-edition-dual-sim-td-lte-in-128gb-m2007j3sp", + "name": "Mi 10T 5G Standard Edition Dual SIM TD-LTE IN 128GB M2007J3SP", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-10-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 216.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , India , Nepal", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2020/mi-10t-5g-standard-edition-global-dual-sim-td-lte-128gb-m2007j3sy.json b/data/smartphone/xiaomi/2020/mi-10t-5g-standard-edition-global-dual-sim-td-lte-128gb-m2007j3sy.json new file mode 100644 index 00000000000..f2dbf257e71 --- /dev/null +++ b/data/smartphone/xiaomi/2020/mi-10t-5g-standard-edition-global-dual-sim-td-lte-128gb-m2007j3sy.json @@ -0,0 +1,44 @@ +{ + "slug": "mi-10t-5g-standard-edition-global-dual-sim-td-lte-128gb-m2007j3sy", + "name": "Mi 10T 5G Standard Edition Global Dual SIM TD-LTE 128GB M2007J3SY", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-10-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 216.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 499, + "market_countries": "Belgium , Cyprus , Czech , Finland , France , Germany , Greece , HK , Hungary , Italy , Malaysia , Netherlands , Norway , Poland , Russia , Romania , Slovakia , Singapore , Spain , Sweden , Taiwan , Thailand , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/xiaomi/2020/mi-10t-pro-5g-dual-sim-td-lte-in-128gb-m2007j3si.json b/data/smartphone/xiaomi/2020/mi-10t-pro-5g-dual-sim-td-lte-in-128gb-m2007j3si.json new file mode 100644 index 00000000000..15ccf7df6ce --- /dev/null +++ b/data/smartphone/xiaomi/2020/mi-10t-pro-5g-dual-sim-td-lte-in-128gb-m2007j3si.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-10t-pro-5g-dual-sim-td-lte-in-128gb-m2007j3si", + "name": "Mi 10T Pro 5G Dual SIM TD-LTE IN 128GB M2007J3SI", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-10-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 218.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , India , Nepal", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2020/mi-10t-pro-5g-global-dual-sim-td-lte-128gb-m2007j3sg.json b/data/smartphone/xiaomi/2020/mi-10t-pro-5g-global-dual-sim-td-lte-128gb-m2007j3sg.json new file mode 100644 index 00000000000..b29e636119d --- /dev/null +++ b/data/smartphone/xiaomi/2020/mi-10t-pro-5g-global-dual-sim-td-lte-128gb-m2007j3sg.json @@ -0,0 +1,44 @@ +{ + "slug": "mi-10t-pro-5g-global-dual-sim-td-lte-128gb-m2007j3sg", + "name": "Mi 10T Pro 5G Global Dual SIM TD-LTE 128GB M2007J3SG", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-10-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 218.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 599, + "market_countries": "Belgium , Cyprus , Czech , Egypt , Finland , France , Greece , Germany , HK , Hungary , Italy , Malaysia , Netherlands , Norway , Philippines , Poland , Russia , Romania , Slovakia , Singapore , Spain , Sweden , Taiwan , Thailand , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Oceania , Western Europe" +} diff --git a/data/smartphone/xiaomi/2020/mi-10t-pro-5g-global-dual-sim-td-lte-256gb-m2007j3sg.json b/data/smartphone/xiaomi/2020/mi-10t-pro-5g-global-dual-sim-td-lte-256gb-m2007j3sg.json new file mode 100644 index 00000000000..13b2aefc1a2 --- /dev/null +++ b/data/smartphone/xiaomi/2020/mi-10t-pro-5g-global-dual-sim-td-lte-256gb-m2007j3sg.json @@ -0,0 +1,44 @@ +{ + "slug": "mi-10t-pro-5g-global-dual-sim-td-lte-256gb-m2007j3sg", + "name": "Mi 10T Pro 5G Global Dual SIM TD-LTE 256GB M2007J3SG", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-10-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 218.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 649, + "market_countries": "Belgium , Cyprus , Czech , Egypt , Finland , France , Greece , Germany , HK , Hungary , Italy , Malaysia , Netherlands , Norway , Philippines , Poland , Russia , Romania , Slovakia , Singapore , Spain , Sweden , Taiwan , Thailand , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Oceania , Western Europe" +} diff --git a/data/smartphone/xiaomi/2020/mi-mix-alpha-5g-dual-sim-td-lte-cn-512gb.json b/data/smartphone/xiaomi/2020/mi-mix-alpha-5g-dual-sim-td-lte-cn-512gb.json new file mode 100644 index 00000000000..8f6e86a6edf --- /dev/null +++ b/data/smartphone/xiaomi/2020/mi-mix-alpha-5g-dual-sim-td-lte-cn-512gb.json @@ -0,0 +1,38 @@ +{ + "slug": "mi-mix-alpha-5g-dual-sim-td-lte-cn-512gb", + "name": "Mi Mix Alpha 5G Dual SIM TD-LTE CN 512GB", + "brand": "xiaomi", + "soc": "snapdragon-855-plus", + "release_date": "2020-02-01", + "ram_gb": 12.0, + "battery_mah": 4050, + "weight_g": 241.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 7.92, + "resolution": "2088x2250", + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + } + ], + "charging_wired_w": 40, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/mi-note-10-lite-global-dual-sim-td-lte-128gb-m2002f4lg.json b/data/smartphone/xiaomi/2020/mi-note-10-lite-global-dual-sim-td-lte-128gb-m2002f4lg.json new file mode 100644 index 00000000000..865484b6eaa --- /dev/null +++ b/data/smartphone/xiaomi/2020/mi-note-10-lite-global-dual-sim-td-lte-128gb-m2002f4lg.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-note-10-lite-global-dual-sim-td-lte-128gb-m2002f4lg", + "name": "Mi Note 10 Lite Global Dual SIM TD-LTE 128GB M2002F4LG", + "brand": "xiaomi", + "soc": "snapdragon-730", + "release_date": "2020-05-14", + "ram_gb": 8.0, + "battery_mah": 5260, + "weight_g": 204.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Czech , France , Germany , HK , Hungary , Italy , Japan , Malaysia , Pakistan , Poland , Portugal , Romania , Russia , Singapore , Spain , Sweden , Taiwan , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2020/mi-note-10-lite-global-dual-sim-td-lte-64gb-m2002f4lg.json b/data/smartphone/xiaomi/2020/mi-note-10-lite-global-dual-sim-td-lte-64gb-m2002f4lg.json new file mode 100644 index 00000000000..10d15b73d96 --- /dev/null +++ b/data/smartphone/xiaomi/2020/mi-note-10-lite-global-dual-sim-td-lte-64gb-m2002f4lg.json @@ -0,0 +1,42 @@ +{ + "slug": "mi-note-10-lite-global-dual-sim-td-lte-64gb-m2002f4lg", + "name": "Mi Note 10 Lite Global Dual SIM TD-LTE 64GB M2002F4LG", + "brand": "xiaomi", + "soc": "snapdragon-730", + "release_date": "2020-05-14", + "ram_gb": 6.0, + "battery_mah": 5260, + "weight_g": 204.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Czech , France , Germany , HK , Hungary , Italy , Japan , Malaysia , Pakistan , Poland , Portugal , Romania , Russia , Singapore , Spain , Sweden , Taiwan , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2020/mi10-ultra-silver-edition-dual-sim-td-lte-cn-512gb-m2007j1sc-extreme-commemorative.json b/data/smartphone/xiaomi/2020/mi10-ultra-silver-edition-dual-sim-td-lte-cn-512gb-m2007j1sc-extreme-commemorative.json new file mode 100644 index 00000000000..37450f1051b --- /dev/null +++ b/data/smartphone/xiaomi/2020/mi10-ultra-silver-edition-dual-sim-td-lte-cn-512gb-m2007j1sc-extreme-commemorative.json @@ -0,0 +1,43 @@ +{ + "slug": "mi10-ultra-silver-edition-dual-sim-td-lte-cn-512gb-m2007j1sc-extreme-commemorative", + "name": "Mi10 Ultra Silver Edition Dual SIM TD-LTE CN 512GB M2007J1SC / Extreme Commemorative", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-08-16", + "ram_gb": 16.0, + "battery_mah": 4500, + "weight_g": 221.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/poco-m2-premium-edition-dual-sim-td-lte-in-128gb-m2004j19pi.json b/data/smartphone/xiaomi/2020/poco-m2-premium-edition-dual-sim-td-lte-in-128gb-m2004j19pi.json new file mode 100644 index 00000000000..67249711fb9 --- /dev/null +++ b/data/smartphone/xiaomi/2020/poco-m2-premium-edition-dual-sim-td-lte-in-128gb-m2004j19pi.json @@ -0,0 +1,42 @@ +{ + "slug": "poco-m2-premium-edition-dual-sim-td-lte-in-128gb-m2004j19pi", + "name": "Poco M2 Premium Edition Dual SIM TD-LTE IN 128GB M2004J19PI", + "brand": "xiaomi", + "soc": "helio-g80", + "release_date": "2020-09-08", + "ram_gb": 6.0, + "battery_mah": 5020, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/poco-m2-premium-edition-dual-sim-td-lte-in-64gb-m2004j19pi.json b/data/smartphone/xiaomi/2020/poco-m2-premium-edition-dual-sim-td-lte-in-64gb-m2004j19pi.json new file mode 100644 index 00000000000..84c18bc6173 --- /dev/null +++ b/data/smartphone/xiaomi/2020/poco-m2-premium-edition-dual-sim-td-lte-in-64gb-m2004j19pi.json @@ -0,0 +1,42 @@ +{ + "slug": "poco-m2-premium-edition-dual-sim-td-lte-in-64gb-m2004j19pi", + "name": "Poco M2 Premium Edition Dual SIM TD-LTE IN 64GB M2004J19PI", + "brand": "xiaomi", + "soc": "helio-g80", + "release_date": "2020-09-08", + "ram_gb": 6.0, + "battery_mah": 5020, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/poco-m2-standard-edition-dual-sim-td-lte-in-64gb-m2004j19pi.json b/data/smartphone/xiaomi/2020/poco-m2-standard-edition-dual-sim-td-lte-in-64gb-m2004j19pi.json new file mode 100644 index 00000000000..dd110752e38 --- /dev/null +++ b/data/smartphone/xiaomi/2020/poco-m2-standard-edition-dual-sim-td-lte-in-64gb-m2004j19pi.json @@ -0,0 +1,42 @@ +{ + "slug": "poco-m2-standard-edition-dual-sim-td-lte-in-64gb-m2004j19pi", + "name": "Poco M2 Standard Edition Dual SIM TD-LTE IN 64GB M2004J19PI", + "brand": "xiaomi", + "soc": "helio-g80", + "release_date": "2020-09-07", + "ram_gb": 4.0, + "battery_mah": 5020, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/poco-m3-premium-edition-dual-sim-td-lte-in-128gb-m2010j19ci.json b/data/smartphone/xiaomi/2020/poco-m3-premium-edition-dual-sim-td-lte-in-128gb-m2010j19ci.json new file mode 100644 index 00000000000..c4385062cee --- /dev/null +++ b/data/smartphone/xiaomi/2020/poco-m3-premium-edition-dual-sim-td-lte-in-128gb-m2010j19ci.json @@ -0,0 +1,43 @@ +{ + "slug": "poco-m3-premium-edition-dual-sim-td-lte-in-128gb-m2010j19ci", + "name": "Poco M3 Premium Edition Dual SIM TD-LTE IN 128GB M2010J19CI", + "brand": "xiaomi", + "soc": "snapdragon-662", + "release_date": "2020-02-01", + "ram_gb": 6.0, + "battery_mah": 6000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/poco-m3-premium-edition-dual-sim-td-lte-in-64gb-m2010j19ci.json b/data/smartphone/xiaomi/2020/poco-m3-premium-edition-dual-sim-td-lte-in-64gb-m2010j19ci.json new file mode 100644 index 00000000000..14c002d2e4e --- /dev/null +++ b/data/smartphone/xiaomi/2020/poco-m3-premium-edition-dual-sim-td-lte-in-64gb-m2010j19ci.json @@ -0,0 +1,43 @@ +{ + "slug": "poco-m3-premium-edition-dual-sim-td-lte-in-64gb-m2010j19ci", + "name": "Poco M3 Premium Edition Dual SIM TD-LTE IN 64GB M2010J19CI", + "brand": "xiaomi", + "soc": "snapdragon-662", + "release_date": "2020-02-01", + "ram_gb": 6.0, + "battery_mah": 6000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/poco-m3-standard-edition-dual-sim-td-lte-in-64gb-m2010j19ci.json b/data/smartphone/xiaomi/2020/poco-m3-standard-edition-dual-sim-td-lte-in-64gb-m2010j19ci.json new file mode 100644 index 00000000000..362438854bb --- /dev/null +++ b/data/smartphone/xiaomi/2020/poco-m3-standard-edition-dual-sim-td-lte-in-64gb-m2010j19ci.json @@ -0,0 +1,42 @@ +{ + "slug": "poco-m3-standard-edition-dual-sim-td-lte-in-64gb-m2010j19ci", + "name": "Poco M3 Standard Edition Dual SIM TD-LTE IN 64GB M2010J19CI", + "brand": "xiaomi", + "soc": "snapdragon-662", + "release_date": "2020-02-01", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/poco-m3-standard-edition-global-dual-sim-td-lte-128gb-m2010j19cg.json b/data/smartphone/xiaomi/2020/poco-m3-standard-edition-global-dual-sim-td-lte-128gb-m2010j19cg.json new file mode 100644 index 00000000000..a2eff05dbdf --- /dev/null +++ b/data/smartphone/xiaomi/2020/poco-m3-standard-edition-global-dual-sim-td-lte-128gb-m2010j19cg.json @@ -0,0 +1,43 @@ +{ + "slug": "poco-m3-standard-edition-global-dual-sim-td-lte-128gb-m2010j19cg", + "name": "Poco M3 Standard Edition Global Dual SIM TD-LTE 128GB M2010J19CG", + "brand": "xiaomi", + "soc": "snapdragon-662", + "release_date": "2020-11-27", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 149, + "market_countries": "Algeria , Argentina , Australia , Austria , Belarus , Belgium , Brazil , Canada , Chile , Cyprus , Croatia , Czech , Denmark , Egypt , Estonia , France , Germany , Greece , HK , Indonesia , Ireland , Italy , Latvia , Lithuania , Malaysia , Netherlands , Norway , Pakistan , Philippines , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Singapore , Slovenia , Spain , Sweden , Thailand , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2020/poco-m3-standard-edition-global-dual-sim-td-lte-64gb-m2010j19cg.json b/data/smartphone/xiaomi/2020/poco-m3-standard-edition-global-dual-sim-td-lte-64gb-m2010j19cg.json new file mode 100644 index 00000000000..5df5ba91ac1 --- /dev/null +++ b/data/smartphone/xiaomi/2020/poco-m3-standard-edition-global-dual-sim-td-lte-64gb-m2010j19cg.json @@ -0,0 +1,43 @@ +{ + "slug": "poco-m3-standard-edition-global-dual-sim-td-lte-64gb-m2010j19cg", + "name": "Poco M3 Standard Edition Global Dual SIM TD-LTE 64GB M2010J19CG", + "brand": "xiaomi", + "soc": "snapdragon-662", + "release_date": "2020-11-27", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 129, + "market_countries": "Algeria , Argentina , Australia , Austria , Belarus , Belgium , Brazil , Canada , Chile , Cyprus , Croatia , Czech , Denmark , Egypt , Estonia , France , Germany , Greece , HK , Indonesia , Ireland , Italy , Latvia , Lithuania , Malaysia , Netherlands , Norway , Pakistan , Philippines , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Singapore , Slovenia , Spain , Sweden , Thailand , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2020/pocophone-poco-c3-dual-sim-td-lte-in-32gb-m2006c3mi.json b/data/smartphone/xiaomi/2020/pocophone-poco-c3-dual-sim-td-lte-in-32gb-m2006c3mi.json new file mode 100644 index 00000000000..8dbe7ebd624 --- /dev/null +++ b/data/smartphone/xiaomi/2020/pocophone-poco-c3-dual-sim-td-lte-in-32gb-m2006c3mi.json @@ -0,0 +1,41 @@ +{ + "slug": "pocophone-poco-c3-dual-sim-td-lte-in-32gb-m2006c3mi", + "name": "Pocophone Poco C3 Dual SIM TD-LTE IN 32GB M2006C3MI", + "brand": "xiaomi", + "soc": "helio-g35", + "release_date": "2020-10-11", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/pocophone-poco-c3-dual-sim-td-lte-in-64gb-m2006c3mi.json b/data/smartphone/xiaomi/2020/pocophone-poco-c3-dual-sim-td-lte-in-64gb-m2006c3mi.json new file mode 100644 index 00000000000..b4c1ecb796a --- /dev/null +++ b/data/smartphone/xiaomi/2020/pocophone-poco-c3-dual-sim-td-lte-in-64gb-m2006c3mi.json @@ -0,0 +1,41 @@ +{ + "slug": "pocophone-poco-c3-dual-sim-td-lte-in-64gb-m2006c3mi", + "name": "Pocophone Poco C3 Dual SIM TD-LTE IN 64GB M2006C3MI", + "brand": "xiaomi", + "soc": "helio-g35", + "release_date": "2020-10-11", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/pocophone-poco-f2-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-m2004j11g.json b/data/smartphone/xiaomi/2020/pocophone-poco-f2-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-m2004j11g.json new file mode 100644 index 00000000000..3dadbca0057 --- /dev/null +++ b/data/smartphone/xiaomi/2020/pocophone-poco-f2-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-m2004j11g.json @@ -0,0 +1,43 @@ +{ + "slug": "pocophone-poco-f2-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-m2004j11g", + "name": "Pocophone Poco F2 Pro 5G Premium Edition Global Dual SIM TD-LTE 256GB M2004J11G", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-05-19", + "ram_gb": 8.0, + "battery_mah": 4700, + "weight_g": 219.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Algeria , Argentina , Australia , Austria , Bangladesh , Belarus , Belgium , Brazil , Bulgaria , Canada , Chile , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , India , Indonesia , Ireland , Israel , Italy , Japan , Kenya , Kuwait , Latvia , Lithuania , Malaysia , Mexico , Nepal , Netherlands , Norway , Pakistan , Philippines , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Singapore , Slovenia , South Africa , Spain , Switzerland , Sweden , Taiwan , Thailand , Turkey , UAE , UK , Ukraine , USA , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/xiaomi/2020/pocophone-poco-f2-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-m2004j11g.json b/data/smartphone/xiaomi/2020/pocophone-poco-f2-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-m2004j11g.json new file mode 100644 index 00000000000..cdc00606283 --- /dev/null +++ b/data/smartphone/xiaomi/2020/pocophone-poco-f2-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-m2004j11g.json @@ -0,0 +1,43 @@ +{ + "slug": "pocophone-poco-f2-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-m2004j11g", + "name": "Pocophone Poco F2 Pro 5G Standard Edition Global Dual SIM TD-LTE 128GB M2004J11G", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-05-19", + "ram_gb": 6.0, + "battery_mah": 4700, + "weight_g": 219.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Algeria , Argentina , Australia , Austria , Bangladesh , Belarus , Belgium , Brazil , Bulgaria , Canada , Chile , Cyprus , Czech , Denmark , Ecuador , Egypt , Estonia , Finland , France , Greece , Germany , India , Indonesia , Ireland , Israel , Italy , Japan , Kenya , Kuwait , Latvia , Lithuania , Malaysia , Mexico , Myanmar , Nepal , Netherlands , Norway , Pakistan , Philippines , Poland , Portugal , Romania , Russia , Saudi Arabia , Serbia , Slovakia , Singapore , Slovenia , South Africa , Spain , Sweden , Switzerland , Taiwan , Tanzania , Thailand , Turkey , UAE , UK , Ukraine , USA , Vietnam", + "market_regions": "Africa , Asia , Australia , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe , Worldwide" +} diff --git a/data/smartphone/xiaomi/2020/pocophone-poco-x2-premium-edition-dual-sim-td-lte-in-256gb-m1912g7bi.json b/data/smartphone/xiaomi/2020/pocophone-poco-x2-premium-edition-dual-sim-td-lte-in-256gb-m1912g7bi.json new file mode 100644 index 00000000000..433f3226939 --- /dev/null +++ b/data/smartphone/xiaomi/2020/pocophone-poco-x2-premium-edition-dual-sim-td-lte-in-256gb-m1912g7bi.json @@ -0,0 +1,43 @@ +{ + "slug": "pocophone-poco-x2-premium-edition-dual-sim-td-lte-in-256gb-m1912g7bi", + "name": "Pocophone Poco X2 Premium Edition Dual SIM TD-LTE IN 256GB M1912G7BI", + "brand": "xiaomi", + "soc": "snapdragon-730", + "release_date": "2020-02-11", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/pocophone-poco-x2-standard-edition-dual-sim-td-lte-in-128gb-m1912g7bi.json b/data/smartphone/xiaomi/2020/pocophone-poco-x2-standard-edition-dual-sim-td-lte-in-128gb-m1912g7bi.json new file mode 100644 index 00000000000..9d20a04efcc --- /dev/null +++ b/data/smartphone/xiaomi/2020/pocophone-poco-x2-standard-edition-dual-sim-td-lte-in-128gb-m1912g7bi.json @@ -0,0 +1,43 @@ +{ + "slug": "pocophone-poco-x2-standard-edition-dual-sim-td-lte-in-128gb-m1912g7bi", + "name": "Pocophone Poco X2 Standard Edition Dual SIM TD-LTE IN 128GB M1912G7BI", + "brand": "xiaomi", + "soc": "snapdragon-730", + "release_date": "2020-02-11", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/pocophone-poco-x2-standard-edition-dual-sim-td-lte-in-64gb.json b/data/smartphone/xiaomi/2020/pocophone-poco-x2-standard-edition-dual-sim-td-lte-in-64gb.json new file mode 100644 index 00000000000..d80812352d7 --- /dev/null +++ b/data/smartphone/xiaomi/2020/pocophone-poco-x2-standard-edition-dual-sim-td-lte-in-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "pocophone-poco-x2-standard-edition-dual-sim-td-lte-in-64gb", + "name": "Pocophone Poco X2 Standard Edition Dual SIM TD-LTE IN 64GB", + "brand": "xiaomi", + "soc": "snapdragon-730", + "release_date": "2020-02-11", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-10x-4g-premium-edition-dual-sim-td-lte-cn-128gb-m2003j15sc.json b/data/smartphone/xiaomi/2020/redmi-10x-4g-premium-edition-dual-sim-td-lte-cn-128gb-m2003j15sc.json new file mode 100644 index 00000000000..8e0495038c0 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-10x-4g-premium-edition-dual-sim-td-lte-cn-128gb-m2003j15sc.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-10x-4g-premium-edition-dual-sim-td-lte-cn-128gb-m2003j15sc", + "name": "Redmi 10X 4G Premium Edition Dual SIM TD-LTE CN 128GB M2003J15SC", + "brand": "xiaomi", + "soc": "helio-g85", + "release_date": "2020-05-27", + "ram_gb": 6.0, + "battery_mah": 5020, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-10x-4g-standard-edition-dual-sim-td-lte-cn-128gb-m2003j15sc.json b/data/smartphone/xiaomi/2020/redmi-10x-4g-standard-edition-dual-sim-td-lte-cn-128gb-m2003j15sc.json new file mode 100644 index 00000000000..adaa2fc4b34 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-10x-4g-standard-edition-dual-sim-td-lte-cn-128gb-m2003j15sc.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-10x-4g-standard-edition-dual-sim-td-lte-cn-128gb-m2003j15sc", + "name": "Redmi 10X 4G Standard Edition Dual SIM TD-LTE CN 128GB M2003J15SC", + "brand": "xiaomi", + "soc": "helio-g85", + "release_date": "2020-05-27", + "ram_gb": 4.0, + "battery_mah": 5020, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-10x-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2004j7ac.json b/data/smartphone/xiaomi/2020/redmi-10x-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2004j7ac.json new file mode 100644 index 00000000000..d244e43fe35 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-10x-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2004j7ac.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-10x-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2004j7ac", + "name": "Redmi 10X 5G Premium Edition Dual SIM TD-LTE CN 128GB M2004J7AC", + "brand": "xiaomi", + "soc": "dimensity-820", + "release_date": "2020-06-02", + "ram_gb": 8.0, + "battery_mah": 4520, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-10x-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2004j7ac.json b/data/smartphone/xiaomi/2020/redmi-10x-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2004j7ac.json new file mode 100644 index 00000000000..e325fe56898 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-10x-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2004j7ac.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-10x-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2004j7ac", + "name": "Redmi 10X 5G Standard Edition Dual SIM TD-LTE CN 128GB M2004J7AC", + "brand": "xiaomi", + "soc": "dimensity-820", + "release_date": "2020-06-02", + "ram_gb": 6.0, + "battery_mah": 4520, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 22, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-10x-pro-5g-dual-sim-td-lte-cn-128gb-m2004j7bc.json b/data/smartphone/xiaomi/2020/redmi-10x-pro-5g-dual-sim-td-lte-cn-128gb-m2004j7bc.json new file mode 100644 index 00000000000..366f2e9d567 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-10x-pro-5g-dual-sim-td-lte-cn-128gb-m2004j7bc.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-10x-pro-5g-dual-sim-td-lte-cn-128gb-m2004j7bc", + "name": "Redmi 10X Pro 5G Dual SIM TD-LTE CN 128GB M2004J7BC", + "brand": "xiaomi", + "soc": "dimensity-820", + "release_date": "2020-06-01", + "ram_gb": 8.0, + "battery_mah": 4520, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-10x-pro-5g-dual-sim-td-lte-cn-256gb-m2004j7bc.json b/data/smartphone/xiaomi/2020/redmi-10x-pro-5g-dual-sim-td-lte-cn-256gb-m2004j7bc.json new file mode 100644 index 00000000000..c28e623ee55 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-10x-pro-5g-dual-sim-td-lte-cn-256gb-m2004j7bc.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-10x-pro-5g-dual-sim-td-lte-cn-256gb-m2004j7bc", + "name": "Redmi 10X Pro 5G Dual SIM TD-LTE CN 256GB M2004J7BC", + "brand": "xiaomi", + "soc": "dimensity-820", + "release_date": "2020-06-01", + "ram_gb": 8.0, + "battery_mah": 4520, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-8a-dual-premium-edition-dual-sim-td-lte-in-32gb-m2001c3k3i-redmi-8a-pro.json b/data/smartphone/xiaomi/2020/redmi-8a-dual-premium-edition-dual-sim-td-lte-in-32gb-m2001c3k3i-redmi-8a-pro.json new file mode 100644 index 00000000000..83ff5bbf37a --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-8a-dual-premium-edition-dual-sim-td-lte-in-32gb-m2001c3k3i-redmi-8a-pro.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-8a-dual-premium-edition-dual-sim-td-lte-in-32gb-m2001c3k3i-redmi-8a-pro", + "name": "Redmi 8A Dual Premium Edition Dual SIM TD-LTE IN 32GB M2001C3K3I / Redmi 8A Pro", + "brand": "xiaomi", + "soc": "snapdragon-439", + "release_date": "2020-02-18", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "India , Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-8a-dual-standard-edition-dual-sim-td-lte-in-32gb-m2001c3k3i-redmi-8a-pro.json b/data/smartphone/xiaomi/2020/redmi-8a-dual-standard-edition-dual-sim-td-lte-in-32gb-m2001c3k3i-redmi-8a-pro.json new file mode 100644 index 00000000000..5810dde1dd1 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-8a-dual-standard-edition-dual-sim-td-lte-in-32gb-m2001c3k3i-redmi-8a-pro.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-8a-dual-standard-edition-dual-sim-td-lte-in-32gb-m2001c3k3i-redmi-8a-pro", + "name": "Redmi 8A Dual Standard Edition Dual SIM TD-LTE IN 32GB M2001C3K3I / Redmi 8A Pro", + "brand": "xiaomi", + "soc": "snapdragon-439", + "release_date": "2020-02-18", + "ram_gb": 2.0, + "battery_mah": 5000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "India , Indonesia", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-9-dual-sim-td-lte-in-128gb-m2006c3mii-redmi-9c.json b/data/smartphone/xiaomi/2020/redmi-9-dual-sim-td-lte-in-128gb-m2006c3mii-redmi-9c.json new file mode 100644 index 00000000000..750252e6da4 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-9-dual-sim-td-lte-in-128gb-m2006c3mii-redmi-9c.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-9-dual-sim-td-lte-in-128gb-m2006c3mii-redmi-9c", + "name": "Redmi 9 Dual SIM TD-LTE IN 128GB M2006C3MII / Redmi 9C", + "brand": "xiaomi", + "soc": "helio-g35", + "release_date": "2020-10-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-9-dual-sim-td-lte-in-64gb-m2006c3mii-redmi-9c.json b/data/smartphone/xiaomi/2020/redmi-9-dual-sim-td-lte-in-64gb-m2006c3mii-redmi-9c.json new file mode 100644 index 00000000000..5031a519496 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-9-dual-sim-td-lte-in-64gb-m2006c3mii-redmi-9c.json @@ -0,0 +1,41 @@ +{ + "slug": "redmi-9-dual-sim-td-lte-in-64gb-m2006c3mii-redmi-9c", + "name": "Redmi 9 Dual SIM TD-LTE IN 64GB M2006C3MII / Redmi 9C", + "brand": "xiaomi", + "soc": "helio-g35", + "release_date": "2020-10-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-9-global-dual-sim-td-lte-32gb-m2004j19g.json b/data/smartphone/xiaomi/2020/redmi-9-global-dual-sim-td-lte-32gb-m2004j19g.json new file mode 100644 index 00000000000..9870d9566f9 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-9-global-dual-sim-td-lte-32gb-m2004j19g.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-9-global-dual-sim-td-lte-32gb-m2004j19g", + "name": "Redmi 9 Global Dual SIM TD-LTE 32GB M2004J19G", + "brand": "xiaomi", + "soc": "helio-g80", + "release_date": "2020-06-18", + "ram_gb": 3.0, + "battery_mah": 5020, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Brazil , France , Germany , HK , Italy , Malaysia , Mexico , Poland , Russia , Singapore , Spain , Taiwan , Thailand , Turkey , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2020/redmi-9-global-dual-sim-td-lte-64gb-m2004j19g.json b/data/smartphone/xiaomi/2020/redmi-9-global-dual-sim-td-lte-64gb-m2004j19g.json new file mode 100644 index 00000000000..ae2f2b09d30 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-9-global-dual-sim-td-lte-64gb-m2004j19g.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-9-global-dual-sim-td-lte-64gb-m2004j19g", + "name": "Redmi 9 Global Dual SIM TD-LTE 64GB M2004J19G", + "brand": "xiaomi", + "soc": "helio-g80", + "release_date": "2020-06-18", + "ram_gb": 4.0, + "battery_mah": 5020, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Argentina , Brazil , France , Germany , HK , Italy , Malaysia , Mexico , Poland , Russia , Singapore , Spain , Taiwan , Thailand , Turkey , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2020/redmi-9-power-4g-premium-edition-dual-sim-td-lte-in-128gb-m2010j19si.json b/data/smartphone/xiaomi/2020/redmi-9-power-4g-premium-edition-dual-sim-td-lte-in-128gb-m2010j19si.json new file mode 100644 index 00000000000..2e62be08524 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-9-power-4g-premium-edition-dual-sim-td-lte-in-128gb-m2010j19si.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-9-power-4g-premium-edition-dual-sim-td-lte-in-128gb-m2010j19si", + "name": "Redmi 9 Power 4G Premium Edition Dual SIM TD-LTE IN 128GB M2010J19SI", + "brand": "xiaomi", + "soc": "snapdragon-662", + "release_date": "2020-12-01", + "ram_gb": 6.0, + "battery_mah": 6000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-9-power-4g-standard-edition-dual-sim-td-lte-in-128gb-m2010j19si.json b/data/smartphone/xiaomi/2020/redmi-9-power-4g-standard-edition-dual-sim-td-lte-in-128gb-m2010j19si.json new file mode 100644 index 00000000000..c86848fd556 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-9-power-4g-standard-edition-dual-sim-td-lte-in-128gb-m2010j19si.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-9-power-4g-standard-edition-dual-sim-td-lte-in-128gb-m2010j19si", + "name": "Redmi 9 Power 4G Standard Edition Dual SIM TD-LTE IN 128GB M2010J19SI", + "brand": "xiaomi", + "soc": "snapdragon-662", + "release_date": "2020-12-22", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-9-power-4g-standard-edition-dual-sim-td-lte-in-64gb-m2010j19si.json b/data/smartphone/xiaomi/2020/redmi-9-power-4g-standard-edition-dual-sim-td-lte-in-64gb-m2010j19si.json new file mode 100644 index 00000000000..4535292e08b --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-9-power-4g-standard-edition-dual-sim-td-lte-in-64gb-m2010j19si.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-9-power-4g-standard-edition-dual-sim-td-lte-in-64gb-m2010j19si", + "name": "Redmi 9 Power 4G Standard Edition Dual SIM TD-LTE IN 64GB M2010J19SI", + "brand": "xiaomi", + "soc": "snapdragon-662", + "release_date": "2020-12-22", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-9-premium-edition-dual-sim-td-lte-cn-128gb-m2004j19c.json b/data/smartphone/xiaomi/2020/redmi-9-premium-edition-dual-sim-td-lte-cn-128gb-m2004j19c.json new file mode 100644 index 00000000000..29c3f7d50fd --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-9-premium-edition-dual-sim-td-lte-cn-128gb-m2004j19c.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-9-premium-edition-dual-sim-td-lte-cn-128gb-m2004j19c", + "name": "Redmi 9 Premium Edition Dual SIM TD-LTE CN 128GB M2004J19C", + "brand": "xiaomi", + "soc": "helio-g80", + "release_date": "2020-06-29", + "ram_gb": 6.0, + "battery_mah": 5020, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-9-prime-dual-sim-td-lte-in-128gb-m2004j19i.json b/data/smartphone/xiaomi/2020/redmi-9-prime-dual-sim-td-lte-in-128gb-m2004j19i.json new file mode 100644 index 00000000000..fcaaa2e5b0c --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-9-prime-dual-sim-td-lte-in-128gb-m2004j19i.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-9-prime-dual-sim-td-lte-in-128gb-m2004j19i", + "name": "Redmi 9 Prime Dual SIM TD-LTE IN 128GB M2004J19I", + "brand": "xiaomi", + "soc": "helio-g80", + "release_date": "2020-06-18", + "ram_gb": 4.0, + "battery_mah": 5020, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-9-prime-dual-sim-td-lte-in-64gb-m2004j19i.json b/data/smartphone/xiaomi/2020/redmi-9-prime-dual-sim-td-lte-in-64gb-m2004j19i.json new file mode 100644 index 00000000000..9c59bb5cf92 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-9-prime-dual-sim-td-lte-in-64gb-m2004j19i.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-9-prime-dual-sim-td-lte-in-64gb-m2004j19i", + "name": "Redmi 9 Prime Dual SIM TD-LTE IN 64GB M2004J19I", + "brand": "xiaomi", + "soc": "helio-g80", + "release_date": "2020-06-18", + "ram_gb": 4.0, + "battery_mah": 5020, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , India , Nepal", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-9-standard-edition-dual-sim-td-lte-cn-128gb-m2004j19c.json b/data/smartphone/xiaomi/2020/redmi-9-standard-edition-dual-sim-td-lte-cn-128gb-m2004j19c.json new file mode 100644 index 00000000000..7db88dea035 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-9-standard-edition-dual-sim-td-lte-cn-128gb-m2004j19c.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-9-standard-edition-dual-sim-td-lte-cn-128gb-m2004j19c", + "name": "Redmi 9 Standard Edition Dual SIM TD-LTE CN 128GB M2004J19C", + "brand": "xiaomi", + "soc": "helio-g80", + "release_date": "2020-06-29", + "ram_gb": 4.0, + "battery_mah": 5020, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-9-standard-edition-dual-sim-td-lte-cn-64gb-m2004j19c.json b/data/smartphone/xiaomi/2020/redmi-9-standard-edition-dual-sim-td-lte-cn-64gb-m2004j19c.json new file mode 100644 index 00000000000..663c663f63f --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-9-standard-edition-dual-sim-td-lte-cn-64gb-m2004j19c.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-9-standard-edition-dual-sim-td-lte-cn-64gb-m2004j19c", + "name": "Redmi 9 Standard Edition Dual SIM TD-LTE CN 64GB M2004J19C", + "brand": "xiaomi", + "soc": "helio-g80", + "release_date": "2020-06-29", + "ram_gb": 4.0, + "battery_mah": 5020, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-9a-dual-sim-td-lte-cn-32gb-m2006c3lc.json b/data/smartphone/xiaomi/2020/redmi-9a-dual-sim-td-lte-cn-32gb-m2006c3lc.json new file mode 100644 index 00000000000..94f2c439bc8 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-9a-dual-sim-td-lte-cn-32gb-m2006c3lc.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-9a-dual-sim-td-lte-cn-32gb-m2006c3lc", + "name": "Redmi 9A Dual SIM TD-LTE CN 32GB M2006C3LC", + "brand": "xiaomi", + "soc": "helio-g25", + "release_date": "2020-08-01", + "ram_gb": 2.0, + "battery_mah": 5000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-9a-global-dual-sim-td-lte-32gb-m2006c3lg.json b/data/smartphone/xiaomi/2020/redmi-9a-global-dual-sim-td-lte-32gb-m2006c3lg.json new file mode 100644 index 00000000000..8f1f4da9714 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-9a-global-dual-sim-td-lte-32gb-m2006c3lg.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-9a-global-dual-sim-td-lte-32gb-m2006c3lg", + "name": "Redmi 9A Global Dual SIM TD-LTE 32GB M2006C3LG", + "brand": "xiaomi", + "soc": "helio-g25", + "release_date": "2020-07-07", + "ram_gb": 2.0, + "battery_mah": 5000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Argentina , Brazil , Bulgaria , Egypt , France , Germany , HK , Indonesia , Italy , Malaysia , Mexico , Poland , Russia , Singapore , Spain , Taiwan , Thailand , Turkey , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , North America , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2020/redmi-9a-premium-edition-dual-sim-td-lte-in-32gb-m2006c3li.json b/data/smartphone/xiaomi/2020/redmi-9a-premium-edition-dual-sim-td-lte-in-32gb-m2006c3li.json new file mode 100644 index 00000000000..d8dba78a56b --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-9a-premium-edition-dual-sim-td-lte-in-32gb-m2006c3li.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-9a-premium-edition-dual-sim-td-lte-in-32gb-m2006c3li", + "name": "Redmi 9A Premium Edition Dual SIM TD-LTE IN 32GB M2006C3LI", + "brand": "xiaomi", + "soc": "helio-g25", + "release_date": "2020-09-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-9a-standard-edition-dual-sim-td-lte-in-32gb-m2006c3li.json b/data/smartphone/xiaomi/2020/redmi-9a-standard-edition-dual-sim-td-lte-in-32gb-m2006c3li.json new file mode 100644 index 00000000000..edf77075977 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-9a-standard-edition-dual-sim-td-lte-in-32gb-m2006c3li.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-9a-standard-edition-dual-sim-td-lte-in-32gb-m2006c3li", + "name": "Redmi 9A Standard Edition Dual SIM TD-LTE IN 32GB M2006C3LI", + "brand": "xiaomi", + "soc": "helio-g25", + "release_date": "2020-09-01", + "ram_gb": 2.0, + "battery_mah": 5000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-9at-standard-edition-global-dual-sim-td-lte-32gb-m2006c3lvg.json b/data/smartphone/xiaomi/2020/redmi-9at-standard-edition-global-dual-sim-td-lte-32gb-m2006c3lvg.json new file mode 100644 index 00000000000..aff4e9d1837 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-9at-standard-edition-global-dual-sim-td-lte-32gb-m2006c3lvg.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-9at-standard-edition-global-dual-sim-td-lte-32gb-m2006c3lvg", + "name": "Redmi 9AT Standard Edition Global Dual SIM TD-LTE 32GB M2006C3LVG", + "brand": "xiaomi", + "soc": "helio-g25", + "release_date": "2020-07-01", + "ram_gb": 2.0, + "battery_mah": 5000, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Argentina , Brazil , France , Germany , HK , Hungary , Indonesia , Italy , Malaysia , Mexico , Poland , Russia , Singapore , Spain , Taiwan , Thailand , Turkey , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2020/redmi-9c-global-dual-sim-td-lte-32gb-m2006c3mg.json b/data/smartphone/xiaomi/2020/redmi-9c-global-dual-sim-td-lte-32gb-m2006c3mg.json new file mode 100644 index 00000000000..ecfce37cf51 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-9c-global-dual-sim-td-lte-32gb-m2006c3mg.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-9c-global-dual-sim-td-lte-32gb-m2006c3mg", + "name": "Redmi 9C Global Dual SIM TD-LTE 32GB M2006C3MG", + "brand": "xiaomi", + "soc": "helio-g35", + "release_date": "2020-08-07", + "ram_gb": 2.0, + "battery_mah": 5000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Argentina , Brazil , France , Germany , HK , Hungary , Indonesia , Italy , Malaysia , Mexico , Poland , Russia , Singapore , Spain , Taiwan , Thailand , Turkey , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2020/redmi-9c-global-dual-sim-td-lte-64gb-m2006c3mg.json b/data/smartphone/xiaomi/2020/redmi-9c-global-dual-sim-td-lte-64gb-m2006c3mg.json new file mode 100644 index 00000000000..596a9c3119a --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-9c-global-dual-sim-td-lte-64gb-m2006c3mg.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-9c-global-dual-sim-td-lte-64gb-m2006c3mg", + "name": "Redmi 9C Global Dual SIM TD-LTE 64GB M2006C3MG", + "brand": "xiaomi", + "soc": "helio-g35", + "release_date": "2020-08-07", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Argentina , Brazil , France , Germany , HK , Hungary , Indonesia , Italy , Malaysia , Mexico , Poland , Russia , Singapore , Spain , Taiwan , Thailand , Turkey , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2020/redmi-9c-nfc-global-dual-sim-td-lte-32gb-m2006c3mng.json b/data/smartphone/xiaomi/2020/redmi-9c-nfc-global-dual-sim-td-lte-32gb-m2006c3mng.json new file mode 100644 index 00000000000..7e0f5b8aee6 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-9c-nfc-global-dual-sim-td-lte-32gb-m2006c3mng.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-9c-nfc-global-dual-sim-td-lte-32gb-m2006c3mng", + "name": "Redmi 9C NFC Global Dual SIM TD-LTE 32GB M2006C3MNG", + "brand": "xiaomi", + "soc": "helio-g35", + "release_date": "2020-08-01", + "ram_gb": 2.0, + "battery_mah": 5000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "France , Germany , HK , Hungary , Indonesia , Italy , Malaysia , Mexico , Poland , Russia , Singapore , Spain , Taiwan , Thailand , Turkey , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2020/redmi-9c-nfc-global-dual-sim-td-lte-64gb-m2006c3mng.json b/data/smartphone/xiaomi/2020/redmi-9c-nfc-global-dual-sim-td-lte-64gb-m2006c3mng.json new file mode 100644 index 00000000000..62de236fca4 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-9c-nfc-global-dual-sim-td-lte-64gb-m2006c3mng.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-9c-nfc-global-dual-sim-td-lte-64gb-m2006c3mng", + "name": "Redmi 9C NFC Global Dual SIM TD-LTE 64GB M2006C3MNG", + "brand": "xiaomi", + "soc": "helio-g35", + "release_date": "2020-08-01", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "Argentina , Brazil , France , Germany , HK , Hungary , Indonesia , Italy , Malaysia , Mexico , Poland , Russia , Singapore , Spain , Taiwan , Thailand , Turkey , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2020/redmi-9i-dual-sim-td-lte-in-128gb-m2006c3lii.json b/data/smartphone/xiaomi/2020/redmi-9i-dual-sim-td-lte-in-128gb-m2006c3lii.json new file mode 100644 index 00000000000..5969818b13a --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-9i-dual-sim-td-lte-in-128gb-m2006c3lii.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-9i-dual-sim-td-lte-in-128gb-m2006c3lii", + "name": "Redmi 9i Dual SIM TD-LTE IN 128GB M2006C3LII", + "brand": "xiaomi", + "soc": "helio-g25", + "release_date": "2020-09-16", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-9i-dual-sim-td-lte-in-64gb-m2006c3lii.json b/data/smartphone/xiaomi/2020/redmi-9i-dual-sim-td-lte-in-64gb-m2006c3lii.json new file mode 100644 index 00000000000..ab91917faac --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-9i-dual-sim-td-lte-in-64gb-m2006c3lii.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-9i-dual-sim-td-lte-in-64gb-m2006c3lii", + "name": "Redmi 9i Dual SIM TD-LTE IN 64GB M2006C3LII", + "brand": "xiaomi", + "soc": "helio-g25", + "release_date": "2020-09-16", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-k30-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2001g7ae-m2001g7ac.json b/data/smartphone/xiaomi/2020/redmi-k30-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2001g7ae-m2001g7ac.json new file mode 100644 index 00000000000..26e6a1fbed1 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-k30-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2001g7ae-m2001g7ac.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-k30-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2001g7ae-m2001g7ac", + "name": "Redmi K30 5G Premium Edition Dual SIM TD-LTE CN 128GB M2001G7AE / M2001G7AC", + "brand": "xiaomi", + "soc": "snapdragon-765", + "release_date": "2020-01-07", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-k30-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001g7ae-m2001g7ac.json b/data/smartphone/xiaomi/2020/redmi-k30-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001g7ae-m2001g7ac.json new file mode 100644 index 00000000000..42dcdede8da --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-k30-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001g7ae-m2001g7ac.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-k30-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001g7ae-m2001g7ac", + "name": "Redmi K30 5G Premium Edition Dual SIM TD-LTE CN 256GB M2001G7AE / M2001G7AC", + "brand": "xiaomi", + "soc": "snapdragon-765", + "release_date": "2020-01-07", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-k30-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2001g7ae-m2001g7ac.json b/data/smartphone/xiaomi/2020/redmi-k30-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2001g7ae-m2001g7ac.json new file mode 100644 index 00000000000..f7fbc208d6a --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-k30-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2001g7ae-m2001g7ac.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-k30-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2001g7ae-m2001g7ac", + "name": "Redmi K30 5G Standard Edition Dual SIM TD-LTE CN 128GB M2001G7AE / M2001G7AC", + "brand": "xiaomi", + "soc": "snapdragon-765", + "release_date": "2020-01-07", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-k30-5g-standard-edition-dual-sim-td-lte-cn-64gb-m2001g7ae-m2001g7ac.json b/data/smartphone/xiaomi/2020/redmi-k30-5g-standard-edition-dual-sim-td-lte-cn-64gb-m2001g7ae-m2001g7ac.json new file mode 100644 index 00000000000..40366f6a60f --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-k30-5g-standard-edition-dual-sim-td-lte-cn-64gb-m2001g7ae-m2001g7ac.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-k30-5g-standard-edition-dual-sim-td-lte-cn-64gb-m2001g7ae-m2001g7ac", + "name": "Redmi K30 5G Standard Edition Dual SIM TD-LTE CN 64GB M2001G7AE / M2001G7AC", + "brand": "xiaomi", + "soc": "snapdragon-765", + "release_date": "2020-01-07", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-k30-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2006j10c.json b/data/smartphone/xiaomi/2020/redmi-k30-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2006j10c.json new file mode 100644 index 00000000000..317ff2c4680 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-k30-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2006j10c.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-k30-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2006j10c", + "name": "Redmi K30 Pro 5G Premium Edition Dual SIM TD-LTE CN 128GB M2006J10C", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-04-04", + "ram_gb": 8.0, + "battery_mah": 4700, + "weight_g": 218.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-k30-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2006j10c.json b/data/smartphone/xiaomi/2020/redmi-k30-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2006j10c.json new file mode 100644 index 00000000000..3484c042499 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-k30-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2006j10c.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-k30-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2006j10c", + "name": "Redmi K30 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB M2006J10C", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-04-04", + "ram_gb": 8.0, + "battery_mah": 4700, + "weight_g": 218.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-k30-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2006j10c.json b/data/smartphone/xiaomi/2020/redmi-k30-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2006j10c.json new file mode 100644 index 00000000000..2a4b664128d --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-k30-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2006j10c.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-k30-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2006j10c", + "name": "Redmi K30 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB M2006J10C", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-04-04", + "ram_gb": 6.0, + "battery_mah": 4700, + "weight_g": 218.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-128gb-m2001j11e-m2001j11c.json b/data/smartphone/xiaomi/2020/redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-128gb-m2001j11e-m2001j11c.json new file mode 100644 index 00000000000..41ffd5d2b75 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-128gb-m2001j11e-m2001j11c.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-128gb-m2001j11e-m2001j11c", + "name": "Redmi K30 Pro Zoom 5G Dual SIM TD-LTE CN 128GB M2001J11E / M2001J11C", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-04-04", + "ram_gb": 8.0, + "battery_mah": 4700, + "weight_g": 218.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-256gb-m2001j11e-m2001j11c.json b/data/smartphone/xiaomi/2020/redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-256gb-m2001j11e-m2001j11c.json new file mode 100644 index 00000000000..dadc062bbf6 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-256gb-m2001j11e-m2001j11c.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-256gb-m2001j11e-m2001j11c", + "name": "Redmi K30 Pro Zoom 5G Dual SIM TD-LTE CN 256GB M2001J11E / M2001J11C", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-04-04", + "ram_gb": 8.0, + "battery_mah": 4700, + "weight_g": 218.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-512gb-m2001j11e-m2001j11c.json b/data/smartphone/xiaomi/2020/redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-512gb-m2001j11e-m2001j11c.json new file mode 100644 index 00000000000..06b8d90e875 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-512gb-m2001j11e-m2001j11c.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-512gb-m2001j11e-m2001j11c", + "name": "Redmi K30 Pro Zoom 5G Dual SIM TD-LTE CN 512GB M2001J11E / M2001J11C", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-04-04", + "ram_gb": 12.0, + "battery_mah": 4700, + "weight_g": 218.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-k30-ultra-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2006j10c.json b/data/smartphone/xiaomi/2020/redmi-k30-ultra-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2006j10c.json new file mode 100644 index 00000000000..ffd52a15faa --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-k30-ultra-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2006j10c.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-k30-ultra-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2006j10c", + "name": "Redmi K30 Ultra 5G Premium Edition Dual SIM TD-LTE CN 128GB M2006J10C", + "brand": "xiaomi", + "soc": "dimensity-1000-plus", + "release_date": "2020-08-14", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 213.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2199, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-k30-ultra-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2006j10c.json b/data/smartphone/xiaomi/2020/redmi-k30-ultra-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2006j10c.json new file mode 100644 index 00000000000..4dd3664097d --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-k30-ultra-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2006j10c.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-k30-ultra-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2006j10c", + "name": "Redmi K30 Ultra 5G Premium Edition Dual SIM TD-LTE CN 512GB M2006J10C", + "brand": "xiaomi", + "soc": "dimensity-1000-plus", + "release_date": "2020-08-14", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 213.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-k30-ultra-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2006j10c.json b/data/smartphone/xiaomi/2020/redmi-k30-ultra-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2006j10c.json new file mode 100644 index 00000000000..31db80f8777 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-k30-ultra-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2006j10c.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-k30-ultra-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2006j10c", + "name": "Redmi K30 Ultra 5G Standard Edition Dual SIM TD-LTE CN 128GB M2006J10C", + "brand": "xiaomi", + "soc": "dimensity-1000-plus", + "release_date": "2020-08-14", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 213.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-k30s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2007j3sc.json b/data/smartphone/xiaomi/2020/redmi-k30s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2007j3sc.json new file mode 100644 index 00000000000..e8617d306b0 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-k30s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2007j3sc.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-k30s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2007j3sc", + "name": "Redmi K30S 5G Standard Edition Dual SIM TD-LTE CN 128GB M2007J3SC", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-11-02", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 216.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2599, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-k30s-5g-supreme-edition-dual-sim-td-lte-cn-256gb-m2007j3sc.json b/data/smartphone/xiaomi/2020/redmi-k30s-5g-supreme-edition-dual-sim-td-lte-cn-256gb-m2007j3sc.json new file mode 100644 index 00000000000..ec320cc3915 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-k30s-5g-supreme-edition-dual-sim-td-lte-cn-256gb-m2007j3sc.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-k30s-5g-supreme-edition-dual-sim-td-lte-cn-256gb-m2007j3sc", + "name": "Redmi K30S 5G Supreme Edition Dual SIM TD-LTE CN 256GB M2007J3SC", + "brand": "xiaomi", + "soc": "snapdragon-865", + "release_date": "2020-11-02", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 216.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2799, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-note-9-4g-premium-edition-dual-sim-td-lte-cn-128gb-m2010j19ct.json b/data/smartphone/xiaomi/2020/redmi-note-9-4g-premium-edition-dual-sim-td-lte-cn-128gb-m2010j19ct.json new file mode 100644 index 00000000000..7bd90fa7600 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-note-9-4g-premium-edition-dual-sim-td-lte-cn-128gb-m2010j19ct.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-9-4g-premium-edition-dual-sim-td-lte-cn-128gb-m2010j19ct", + "name": "Redmi Note 9 4G Premium Edition Dual SIM TD-LTE CN 128GB M2010J19CT", + "brand": "xiaomi", + "soc": "snapdragon-662", + "release_date": "2020-11-27", + "ram_gb": 6.0, + "battery_mah": 6000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1099, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-note-9-4g-standard-edition-dual-sim-td-lte-cn-128gb-m2010j19ct.json b/data/smartphone/xiaomi/2020/redmi-note-9-4g-standard-edition-dual-sim-td-lte-cn-128gb-m2010j19ct.json new file mode 100644 index 00000000000..ac724a3abe2 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-note-9-4g-standard-edition-dual-sim-td-lte-cn-128gb-m2010j19ct.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-9-4g-standard-edition-dual-sim-td-lte-cn-128gb-m2010j19ct", + "name": "Redmi Note 9 4G Standard Edition Dual SIM TD-LTE CN 128GB M2010J19CT", + "brand": "xiaomi", + "soc": "snapdragon-662", + "release_date": "2020-11-27", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-note-9-4g-top-edition-dual-sim-td-lte-cn-128gb-m2010j19ct.json b/data/smartphone/xiaomi/2020/redmi-note-9-4g-top-edition-dual-sim-td-lte-cn-128gb-m2010j19ct.json new file mode 100644 index 00000000000..a66ffd00bfa --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-note-9-4g-top-edition-dual-sim-td-lte-cn-128gb-m2010j19ct.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-9-4g-top-edition-dual-sim-td-lte-cn-128gb-m2010j19ct", + "name": "Redmi Note 9 4G Top Edition Dual SIM TD-LTE CN 128GB M2010J19CT", + "brand": "xiaomi", + "soc": "snapdragon-662", + "release_date": "2020-11-27", + "ram_gb": 8.0, + "battery_mah": 6000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1299, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-note-9-4g-top-edition-dual-sim-td-lte-cn-256gb-m2010j19ct.json b/data/smartphone/xiaomi/2020/redmi-note-9-4g-top-edition-dual-sim-td-lte-cn-256gb-m2010j19ct.json new file mode 100644 index 00000000000..822c4b45882 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-note-9-4g-top-edition-dual-sim-td-lte-cn-256gb-m2010j19ct.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-9-4g-top-edition-dual-sim-td-lte-cn-256gb-m2010j19ct", + "name": "Redmi Note 9 4G Top Edition Dual SIM TD-LTE CN 256GB M2010J19CT", + "brand": "xiaomi", + "soc": "snapdragon-662", + "release_date": "2020-12-01", + "ram_gb": 8.0, + "battery_mah": 6000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-note-9-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2007j22c.json b/data/smartphone/xiaomi/2020/redmi-note-9-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2007j22c.json new file mode 100644 index 00000000000..d6f4de55d6d --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-note-9-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2007j22c.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-note-9-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2007j22c", + "name": "Redmi Note 9 5G Premium Edition Dual SIM TD-LTE CN 128GB M2007J22C", + "brand": "xiaomi", + "soc": "dimensity-800", + "release_date": "2020-11-29", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-note-9-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2007j22c.json b/data/smartphone/xiaomi/2020/redmi-note-9-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2007j22c.json new file mode 100644 index 00000000000..493c1dd2cac --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-note-9-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2007j22c.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-note-9-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2007j22c", + "name": "Redmi Note 9 5G Premium Edition Dual SIM TD-LTE CN 256GB M2007J22C", + "brand": "xiaomi", + "soc": "dimensity-800", + "release_date": "2020-11-29", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1699, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-note-9-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2007j22c.json b/data/smartphone/xiaomi/2020/redmi-note-9-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2007j22c.json new file mode 100644 index 00000000000..58b6aedec3f --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-note-9-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2007j22c.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-note-9-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2007j22c", + "name": "Redmi Note 9 5G Standard Edition Dual SIM TD-LTE CN 128GB M2007J22C", + "brand": "xiaomi", + "soc": "dimensity-800", + "release_date": "2020-11-29", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1299, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-note-9-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2007j22c.json b/data/smartphone/xiaomi/2020/redmi-note-9-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2007j22c.json new file mode 100644 index 00000000000..1064ba8b3ba --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-note-9-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2007j22c.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-note-9-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2007j22c", + "name": "Redmi Note 9 5G Standard Edition Dual SIM TD-LTE CN 256GB M2007J22C", + "brand": "xiaomi", + "soc": "dimensity-800", + "release_date": "2020-12-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1599, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-note-9-global-dual-sim-td-lte-128gb-m2003j15sg.json b/data/smartphone/xiaomi/2020/redmi-note-9-global-dual-sim-td-lte-128gb-m2003j15sg.json new file mode 100644 index 00000000000..5189b31c968 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-note-9-global-dual-sim-td-lte-128gb-m2003j15sg.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-9-global-dual-sim-td-lte-128gb-m2003j15sg", + "name": "Redmi Note 9 Global Dual SIM TD-LTE 128GB M2003J15SG", + "brand": "xiaomi", + "soc": "helio-g85", + "release_date": "2020-05-13", + "ram_gb": 4.0, + "battery_mah": 5020, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "France , Germany , Italy , Russia , Spain", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/xiaomi/2020/redmi-note-9-global-dual-sim-td-lte-128gb-m2003j15ss.json b/data/smartphone/xiaomi/2020/redmi-note-9-global-dual-sim-td-lte-128gb-m2003j15ss.json new file mode 100644 index 00000000000..dcfddaa281d --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-note-9-global-dual-sim-td-lte-128gb-m2003j15ss.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-9-global-dual-sim-td-lte-128gb-m2003j15ss", + "name": "Redmi Note 9 Global Dual SIM TD-LTE 128GB M2003J15SS", + "brand": "xiaomi", + "soc": "helio-g85", + "release_date": "2020-05-13", + "ram_gb": 4.0, + "battery_mah": 5020, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Malaysia , Mexico , Pakistan , Poland , Russia , Singapore , Thailand , UAE , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2020/redmi-note-9-global-dual-sim-td-lte-64gb-m2003j15sg.json b/data/smartphone/xiaomi/2020/redmi-note-9-global-dual-sim-td-lte-64gb-m2003j15sg.json new file mode 100644 index 00000000000..eadfb9a48bd --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-note-9-global-dual-sim-td-lte-64gb-m2003j15sg.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-9-global-dual-sim-td-lte-64gb-m2003j15sg", + "name": "Redmi Note 9 Global Dual SIM TD-LTE 64GB M2003J15SG", + "brand": "xiaomi", + "soc": "helio-g85", + "release_date": "2020-05-13", + "ram_gb": 3.0, + "battery_mah": 5020, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "France , Germany , Italy , Russia , Spain", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/xiaomi/2020/redmi-note-9-global-dual-sim-td-lte-64gb-m2003j15ss.json b/data/smartphone/xiaomi/2020/redmi-note-9-global-dual-sim-td-lte-64gb-m2003j15ss.json new file mode 100644 index 00000000000..121707348c4 --- /dev/null +++ b/data/smartphone/xiaomi/2020/redmi-note-9-global-dual-sim-td-lte-64gb-m2003j15ss.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-9-global-dual-sim-td-lte-64gb-m2003j15ss", + "name": "Redmi Note 9 Global Dual SIM TD-LTE 64GB M2003J15SS", + "brand": "xiaomi", + "soc": "helio-g85", + "release_date": "2020-05-13", + "ram_gb": 3.0, + "battery_mah": 5020, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Malaysia , Mexico , Pakistan , Poland , Russia , Singapore , Thailand , UAE , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2021/black-shark-4-5g-premium-edition-dual-sim-td-lte-cn-128gb-prs-a0.json b/data/smartphone/xiaomi/2021/black-shark-4-5g-premium-edition-dual-sim-td-lte-cn-128gb-prs-a0.json new file mode 100644 index 00000000000..98498ea1a1a --- /dev/null +++ b/data/smartphone/xiaomi/2021/black-shark-4-5g-premium-edition-dual-sim-td-lte-cn-128gb-prs-a0.json @@ -0,0 +1,44 @@ +{ + "slug": "black-shark-4-5g-premium-edition-dual-sim-td-lte-cn-128gb-prs-a0", + "name": "Black Shark 4 5G Premium Edition Dual SIM TD-LTE CN 128GB PRS-A0", + "brand": "xiaomi", + "soc": "snapdragon-870", + "release_date": "2021-03-26", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 2699, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/black-shark-4-5g-premium-edition-dual-sim-td-lte-cn-256gb-prs-a0.json b/data/smartphone/xiaomi/2021/black-shark-4-5g-premium-edition-dual-sim-td-lte-cn-256gb-prs-a0.json new file mode 100644 index 00000000000..65a456f4272 --- /dev/null +++ b/data/smartphone/xiaomi/2021/black-shark-4-5g-premium-edition-dual-sim-td-lte-cn-256gb-prs-a0.json @@ -0,0 +1,44 @@ +{ + "slug": "black-shark-4-5g-premium-edition-dual-sim-td-lte-cn-256gb-prs-a0", + "name": "Black Shark 4 5G Premium Edition Dual SIM TD-LTE CN 256GB PRS-A0", + "brand": "xiaomi", + "soc": "snapdragon-870", + "release_date": "2021-06-03", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 2999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/black-shark-4-5g-premium-edition-global-dual-sim-td-lte-128gb-prs-h0.json b/data/smartphone/xiaomi/2021/black-shark-4-5g-premium-edition-global-dual-sim-td-lte-128gb-prs-h0.json new file mode 100644 index 00000000000..dcac634a397 --- /dev/null +++ b/data/smartphone/xiaomi/2021/black-shark-4-5g-premium-edition-global-dual-sim-td-lte-128gb-prs-h0.json @@ -0,0 +1,44 @@ +{ + "slug": "black-shark-4-5g-premium-edition-global-dual-sim-td-lte-128gb-prs-h0", + "name": "Black Shark 4 5G Premium Edition Global Dual SIM TD-LTE 128GB PRS-H0", + "brand": "xiaomi", + "soc": "snapdragon-870", + "release_date": "2021-04-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 499, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , Canada , China , Croatia , Cyprus , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , India , Indonesia , Ireland , Israel , Italy , Japan , Kuwait , Latvia , Lithuania , Malaysia , Netherlands , Norway , NZ , Philippines , Poland , Portugal , Romania , Russia , Saudi Arabia , Singapore , Slovakia , Slovenia , South Korea , Spain , Sweden , Taiwan , Thailand , Turkey , UAE , UK , USA , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/black-shark-4-5g-standard-edition-dual-sim-td-lte-cn-128gb-prs-a0.json b/data/smartphone/xiaomi/2021/black-shark-4-5g-standard-edition-dual-sim-td-lte-cn-128gb-prs-a0.json new file mode 100644 index 00000000000..f14b705ac38 --- /dev/null +++ b/data/smartphone/xiaomi/2021/black-shark-4-5g-standard-edition-dual-sim-td-lte-cn-128gb-prs-a0.json @@ -0,0 +1,44 @@ +{ + "slug": "black-shark-4-5g-standard-edition-dual-sim-td-lte-cn-128gb-prs-a0", + "name": "Black Shark 4 5G Standard Edition Dual SIM TD-LTE CN 128GB PRS-A0", + "brand": "xiaomi", + "soc": "snapdragon-870", + "release_date": "2021-03-26", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 2499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/black-shark-4-5g-top-edition-dual-sim-td-lte-cn-128gb-prs-a0.json b/data/smartphone/xiaomi/2021/black-shark-4-5g-top-edition-dual-sim-td-lte-cn-128gb-prs-a0.json new file mode 100644 index 00000000000..6f126ff4ef2 --- /dev/null +++ b/data/smartphone/xiaomi/2021/black-shark-4-5g-top-edition-dual-sim-td-lte-cn-128gb-prs-a0.json @@ -0,0 +1,44 @@ +{ + "slug": "black-shark-4-5g-top-edition-dual-sim-td-lte-cn-128gb-prs-a0", + "name": "Black Shark 4 5G Top Edition Dual SIM TD-LTE CN 128GB PRS-A0", + "brand": "xiaomi", + "soc": "snapdragon-870", + "release_date": "2021-03-26", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 2999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/black-shark-4-5g-top-edition-dual-sim-td-lte-cn-256gb-prs-a0.json b/data/smartphone/xiaomi/2021/black-shark-4-5g-top-edition-dual-sim-td-lte-cn-256gb-prs-a0.json new file mode 100644 index 00000000000..4e6d3bbb6ec --- /dev/null +++ b/data/smartphone/xiaomi/2021/black-shark-4-5g-top-edition-dual-sim-td-lte-cn-256gb-prs-a0.json @@ -0,0 +1,44 @@ +{ + "slug": "black-shark-4-5g-top-edition-dual-sim-td-lte-cn-256gb-prs-a0", + "name": "Black Shark 4 5G Top Edition Dual SIM TD-LTE CN 256GB PRS-A0", + "brand": "xiaomi", + "soc": "snapdragon-870", + "release_date": "2021-03-26", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 3299, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/black-shark-4-5g-top-edition-global-dual-sim-td-lte-256gb-prs-h0.json b/data/smartphone/xiaomi/2021/black-shark-4-5g-top-edition-global-dual-sim-td-lte-256gb-prs-h0.json new file mode 100644 index 00000000000..7457fa3ed0e --- /dev/null +++ b/data/smartphone/xiaomi/2021/black-shark-4-5g-top-edition-global-dual-sim-td-lte-256gb-prs-h0.json @@ -0,0 +1,44 @@ +{ + "slug": "black-shark-4-5g-top-edition-global-dual-sim-td-lte-256gb-prs-h0", + "name": "Black Shark 4 5G Top Edition Global Dual SIM TD-LTE 256GB PRS-H0", + "brand": "xiaomi", + "soc": "snapdragon-870", + "release_date": "2021-04-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 599, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , Canada , China , Croatia , Cyprus , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , India , Indonesia , Ireland , Israel , Italy , Japan , Kuwait , Latvia , Lithuania , Malaysia , Netherlands , Norway , NZ , Philippines , Poland , Portugal , Romania , Russia , Saudi Arabia , Singapore , Slovakia , Slovenia , South Korea , Spain , Sweden , Taiwan , Thailand , Turkey , UAE , UK , USA , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/black-shark-4-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-ksr-a0.json b/data/smartphone/xiaomi/2021/black-shark-4-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-ksr-a0.json new file mode 100644 index 00000000000..b8ccaf5a1a3 --- /dev/null +++ b/data/smartphone/xiaomi/2021/black-shark-4-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-ksr-a0.json @@ -0,0 +1,44 @@ +{ + "slug": "black-shark-4-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-ksr-a0", + "name": "Black Shark 4 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB KSR-A0", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2021-03-26", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 679, + "market_countries": "Austria , China , Czech , France , Germany , HK , Ireland , Italy , Portugal , Russia , Singapore , Spain , Turkey , UAE , USA", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/black-shark-4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-ksr-a0.json b/data/smartphone/xiaomi/2021/black-shark-4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-ksr-a0.json new file mode 100644 index 00000000000..24daaa061c3 --- /dev/null +++ b/data/smartphone/xiaomi/2021/black-shark-4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-ksr-a0.json @@ -0,0 +1,44 @@ +{ + "slug": "black-shark-4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-ksr-a0", + "name": "Black Shark 4 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB KSR-A0", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2021-03-26", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 579, + "market_countries": "Austria , Belgium , Canada , China , Czech , France , Germany , HK , Hungary , Ireland , Italy , Netherlands , Portugal , Russia , Singapore , Spain , Taiwan , Turkey , UAE , UK , USA", + "market_regions": "Asia , Eastern Europe , Europe , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/black-shark-4-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-ksr-a0.json b/data/smartphone/xiaomi/2021/black-shark-4-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-ksr-a0.json new file mode 100644 index 00000000000..ef39271f563 --- /dev/null +++ b/data/smartphone/xiaomi/2021/black-shark-4-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-ksr-a0.json @@ -0,0 +1,44 @@ +{ + "slug": "black-shark-4-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-ksr-a0", + "name": "Black Shark 4 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB KSR-A0", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2021-03-26", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 3999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/black-shark-4-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-ksr-a0.json b/data/smartphone/xiaomi/2021/black-shark-4-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-ksr-a0.json new file mode 100644 index 00000000000..6ffad6f95e3 --- /dev/null +++ b/data/smartphone/xiaomi/2021/black-shark-4-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-ksr-a0.json @@ -0,0 +1,43 @@ +{ + "slug": "black-shark-4-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-ksr-a0", + "name": "Black Shark 4 Pro 5G Top Edition Dual SIM TD-LTE CN 512GB KSR-A0", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2021-03-26", + "ram_gb": 16.0, + "battery_mah": 4500, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/black-shark-4s-5g-gundam-limited-edition-dual-sim-td-lte-cn-256gb-prs-a0.json b/data/smartphone/xiaomi/2021/black-shark-4s-5g-gundam-limited-edition-dual-sim-td-lte-cn-256gb-prs-a0.json new file mode 100644 index 00000000000..9b44f004699 --- /dev/null +++ b/data/smartphone/xiaomi/2021/black-shark-4s-5g-gundam-limited-edition-dual-sim-td-lte-cn-256gb-prs-a0.json @@ -0,0 +1,44 @@ +{ + "slug": "black-shark-4s-5g-gundam-limited-edition-dual-sim-td-lte-cn-256gb-prs-a0", + "name": "Black Shark 4S 5G Gundam Limited Edition Dual SIM TD-LTE CN 256GB PRS-A0", + "brand": "xiaomi", + "soc": "snapdragon-870", + "release_date": "2021-10-14", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 3499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/black-shark-4s-5g-standard-edition-dual-sim-td-lte-cn-128gb-prs-a0.json b/data/smartphone/xiaomi/2021/black-shark-4s-5g-standard-edition-dual-sim-td-lte-cn-128gb-prs-a0.json new file mode 100644 index 00000000000..27759db7f2e --- /dev/null +++ b/data/smartphone/xiaomi/2021/black-shark-4s-5g-standard-edition-dual-sim-td-lte-cn-128gb-prs-a0.json @@ -0,0 +1,44 @@ +{ + "slug": "black-shark-4s-5g-standard-edition-dual-sim-td-lte-cn-128gb-prs-a0", + "name": "Black Shark 4S 5G Standard Edition Dual SIM TD-LTE CN 128GB PRS-A0", + "brand": "xiaomi", + "soc": "snapdragon-870", + "release_date": "2021-10-14", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 2999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/black-shark-4s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-ksr-a0.json b/data/smartphone/xiaomi/2021/black-shark-4s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-ksr-a0.json new file mode 100644 index 00000000000..eb75528362f --- /dev/null +++ b/data/smartphone/xiaomi/2021/black-shark-4s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-ksr-a0.json @@ -0,0 +1,44 @@ +{ + "slug": "black-shark-4s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-ksr-a0", + "name": "Black Shark 4S Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB KSR-A0", + "brand": "xiaomi", + "soc": "snapdragon-888-plus", + "release_date": "2021-10-14", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 4799, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/black-shark-4s-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-ksr-a0.json b/data/smartphone/xiaomi/2021/black-shark-4s-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-ksr-a0.json new file mode 100644 index 00000000000..5ff644ff2e9 --- /dev/null +++ b/data/smartphone/xiaomi/2021/black-shark-4s-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-ksr-a0.json @@ -0,0 +1,43 @@ +{ + "slug": "black-shark-4s-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-ksr-a0", + "name": "Black Shark 4S Pro 5G Top Edition Dual SIM TD-LTE CN 512GB KSR-A0", + "brand": "xiaomi", + "soc": "snapdragon-888-plus", + "release_date": "2021-10-14", + "ram_gb": 16.0, + "battery_mah": 4500, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/mi-10s-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102j2sc.json b/data/smartphone/xiaomi/2021/mi-10s-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102j2sc.json new file mode 100644 index 00000000000..6eb880a6fcc --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-10s-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102j2sc.json @@ -0,0 +1,44 @@ +{ + "slug": "mi-10s-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102j2sc", + "name": "Mi 10S 5G Premium Edition Dual SIM TD-LTE CN 256GB M2102J2SC", + "brand": "xiaomi", + "soc": "snapdragon-870", + "release_date": "2021-03-11", + "ram_gb": 12.0, + "battery_mah": 4780, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 3799, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/mi-10s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2102j2sc.json b/data/smartphone/xiaomi/2021/mi-10s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2102j2sc.json new file mode 100644 index 00000000000..75115e53c07 --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-10s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2102j2sc.json @@ -0,0 +1,44 @@ +{ + "slug": "mi-10s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2102j2sc", + "name": "Mi 10S 5G Standard Edition Dual SIM TD-LTE CN 128GB M2102J2SC", + "brand": "xiaomi", + "soc": "snapdragon-870", + "release_date": "2021-03-11", + "ram_gb": 8.0, + "battery_mah": 4780, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 3299, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/mi-10s-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102j2sc.json b/data/smartphone/xiaomi/2021/mi-10s-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102j2sc.json new file mode 100644 index 00000000000..259b8846cf8 --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-10s-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102j2sc.json @@ -0,0 +1,44 @@ +{ + "slug": "mi-10s-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102j2sc", + "name": "Mi 10S 5G Standard Edition Dual SIM TD-LTE CN 256GB M2102J2SC", + "brand": "xiaomi", + "soc": "snapdragon-870", + "release_date": "2021-03-11", + "ram_gb": 8.0, + "battery_mah": 4780, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 3499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/mi-11-5g-global-dual-sim-td-lte-128gb-m2011k2g.json b/data/smartphone/xiaomi/2021/mi-11-5g-global-dual-sim-td-lte-128gb-m2011k2g.json new file mode 100644 index 00000000000..2156f1dcb17 --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-11-5g-global-dual-sim-td-lte-128gb-m2011k2g.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-11-5g-global-dual-sim-td-lte-128gb-m2011k2g", + "name": "Mi 11 5G Global Dual SIM TD-LTE 128GB M2011K2G", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2021-04-01", + "ram_gb": 8.0, + "battery_mah": 4600, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Belgium , Czech , Denmark , France , Germany , HK , Hungary , Ireland , Italy , Lebanon , Malaysia , Netherlands , Norway , Poland , Portugal , Romania , Russia , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , Thailand , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/mi-11-5g-global-dual-sim-td-lte-256gb-m2011k2g.json b/data/smartphone/xiaomi/2021/mi-11-5g-global-dual-sim-td-lte-256gb-m2011k2g.json new file mode 100644 index 00000000000..c804c9e2f97 --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-11-5g-global-dual-sim-td-lte-256gb-m2011k2g.json @@ -0,0 +1,44 @@ +{ + "slug": "mi-11-5g-global-dual-sim-td-lte-256gb-m2011k2g", + "name": "Mi 11 5G Global Dual SIM TD-LTE 256GB M2011K2G", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2021-04-01", + "ram_gb": 8.0, + "battery_mah": 4600, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 899, + "market_countries": "Belgium , Czech , Denmark , France , Germany , HK , Hungary , Ireland , Italy , Lebanon , Malaysia , Netherlands , Norway , Poland , Portugal , Romania , Russia , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , Thailand , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/mi-11-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2011k2c.json b/data/smartphone/xiaomi/2021/mi-11-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2011k2c.json new file mode 100644 index 00000000000..390bd5e74df --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-11-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2011k2c.json @@ -0,0 +1,44 @@ +{ + "slug": "mi-11-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2011k2c", + "name": "Mi 11 5G Premium Edition Dual SIM TD-LTE CN 256GB M2011K2C", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2021-01-02", + "ram_gb": 12.0, + "battery_mah": 4600, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 4699, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/mi-11-5g-special-edition-dual-sim-td-lte-cn-256gb-m2011k2c.json b/data/smartphone/xiaomi/2021/mi-11-5g-special-edition-dual-sim-td-lte-cn-256gb-m2011k2c.json new file mode 100644 index 00000000000..89215979ed2 --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-11-5g-special-edition-dual-sim-td-lte-cn-256gb-m2011k2c.json @@ -0,0 +1,44 @@ +{ + "slug": "mi-11-5g-special-edition-dual-sim-td-lte-cn-256gb-m2011k2c", + "name": "Mi 11 5G Special Edition Dual SIM TD-LTE CN 256GB M2011K2C", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2021-01-02", + "ram_gb": 12.0, + "battery_mah": 4600, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 4699, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/mi-11-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2011k2c.json b/data/smartphone/xiaomi/2021/mi-11-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2011k2c.json new file mode 100644 index 00000000000..f7080dc88b1 --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-11-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2011k2c.json @@ -0,0 +1,44 @@ +{ + "slug": "mi-11-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2011k2c", + "name": "Mi 11 5G Standard Edition Dual SIM TD-LTE CN 128GB M2011K2C", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2021-01-02", + "ram_gb": 8.0, + "battery_mah": 4600, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/mi-11-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2011k2c.json b/data/smartphone/xiaomi/2021/mi-11-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2011k2c.json new file mode 100644 index 00000000000..fc0531ab8d2 --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-11-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2011k2c.json @@ -0,0 +1,44 @@ +{ + "slug": "mi-11-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2011k2c", + "name": "Mi 11 5G Standard Edition Dual SIM TD-LTE CN 256GB M2011K2C", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2021-01-02", + "ram_gb": 8.0, + "battery_mah": 4600, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 4299, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/mi-11-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102k1ac.json b/data/smartphone/xiaomi/2021/mi-11-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102k1ac.json new file mode 100644 index 00000000000..fad465f78f1 --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-11-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102k1ac.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-11-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102k1ac", + "name": "Mi 11 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB M2102K1AC", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2021-04-02", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 67, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/mi-11-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2102k1ac.json b/data/smartphone/xiaomi/2021/mi-11-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2102k1ac.json new file mode 100644 index 00000000000..44450dfff52 --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-11-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2102k1ac.json @@ -0,0 +1,44 @@ +{ + "slug": "mi-11-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2102k1ac", + "name": "Mi 11 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB M2102K1AC", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2021-04-02", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 67, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 4999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/mi-11-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102k1ac.json b/data/smartphone/xiaomi/2021/mi-11-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102k1ac.json new file mode 100644 index 00000000000..20780aa9a1d --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-11-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102k1ac.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-11-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102k1ac", + "name": "Mi 11 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB M2102K1AC", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2021-04-02", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 208.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 67, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/mi-11-ultra-5g-global-dual-sim-td-lte-256gb-m2102k1g.json b/data/smartphone/xiaomi/2021/mi-11-ultra-5g-global-dual-sim-td-lte-256gb-m2102k1g.json new file mode 100644 index 00000000000..3315be41446 --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-11-ultra-5g-global-dual-sim-td-lte-256gb-m2102k1g.json @@ -0,0 +1,44 @@ +{ + "slug": "mi-11-ultra-5g-global-dual-sim-td-lte-256gb-m2102k1g", + "name": "Mi 11 Ultra 5G Global Dual SIM TD-LTE 256GB M2102K1G", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2021-04-01", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 234.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 67, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1199, + "market_countries": "Austria , Belgium , Croatia , Czech , Denmark , France , Germany , HK , Hungary , India , Indonesia , Ireland , Italy , Kuwait , Lebanon , Malaysia , Netherlands , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Sweden , Switzerland , Taiwan , Thailand , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/mi-11-ultra-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102k1c.json b/data/smartphone/xiaomi/2021/mi-11-ultra-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102k1c.json new file mode 100644 index 00000000000..09889123548 --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-11-ultra-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102k1c.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-11-ultra-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102k1c", + "name": "Mi 11 Ultra 5G Premium Edition Dual SIM TD-LTE CN 256GB M2102K1C", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2021-04-02", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 234.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 67, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/mi-11-ultra-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2102k1c.json b/data/smartphone/xiaomi/2021/mi-11-ultra-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2102k1c.json new file mode 100644 index 00000000000..15445e01ea7 --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-11-ultra-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2102k1c.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-11-ultra-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2102k1c", + "name": "Mi 11 Ultra 5G Premium Edition Dual SIM TD-LTE CN 512GB M2102K1C", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2021-04-12", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 234.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 67, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/mi-11-ultra-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102k1c.json b/data/smartphone/xiaomi/2021/mi-11-ultra-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102k1c.json new file mode 100644 index 00000000000..54578c60138 --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-11-ultra-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102k1c.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-11-ultra-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102k1c", + "name": "Mi 11 Ultra 5G Standard Edition Dual SIM TD-LTE CN 256GB M2102K1C", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2021-04-02", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 234.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 67, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/mi-11i-5g-global-dual-sim-td-lte-128gb-m2012k11g.json b/data/smartphone/xiaomi/2021/mi-11i-5g-global-dual-sim-td-lte-128gb-m2012k11g.json new file mode 100644 index 00000000000..84c091949e2 --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-11i-5g-global-dual-sim-td-lte-128gb-m2012k11g.json @@ -0,0 +1,44 @@ +{ + "slug": "mi-11i-5g-global-dual-sim-td-lte-128gb-m2012k11g", + "name": "Mi 11i 5G Global Dual SIM TD-LTE 128GB M2012K11G", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2021-05-01", + "ram_gb": 8.0, + "battery_mah": 4520, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 649, + "market_countries": "Belgium , Czech , Denmark , France , Germany , HK , Hungary , Ireland , Italy , Lebanon , Malaysia , Netherlands , Norway , Poland , Portugal , Romania , Russia , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , Thailand , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/mi-11i-5g-global-dual-sim-td-lte-256gb-m2012k11g.json b/data/smartphone/xiaomi/2021/mi-11i-5g-global-dual-sim-td-lte-256gb-m2012k11g.json new file mode 100644 index 00000000000..c1badd99043 --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-11i-5g-global-dual-sim-td-lte-256gb-m2012k11g.json @@ -0,0 +1,44 @@ +{ + "slug": "mi-11i-5g-global-dual-sim-td-lte-256gb-m2012k11g", + "name": "Mi 11i 5G Global Dual SIM TD-LTE 256GB M2012K11G", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2021-05-01", + "ram_gb": 8.0, + "battery_mah": 4520, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 699, + "market_countries": "Belgium , Czech , Denmark , France , Germany , HK , Hungary , Ireland , Italy , Lebanon , Malaysia , Netherlands , Norway , Poland , Portugal , Romania , Russia , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , Thailand , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/mi-11t-5g-global-dual-sim-td-lte-128gb-21081111rg.json b/data/smartphone/xiaomi/2021/mi-11t-5g-global-dual-sim-td-lte-128gb-21081111rg.json new file mode 100644 index 00000000000..99310ae1281 --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-11t-5g-global-dual-sim-td-lte-128gb-21081111rg.json @@ -0,0 +1,44 @@ +{ + "slug": "mi-11t-5g-global-dual-sim-td-lte-128gb-21081111rg", + "name": "Mi 11T 5G Global Dual SIM TD-LTE 128GB 21081111RG", + "brand": "xiaomi", + "soc": "dimensity-1200", + "release_date": "2021-10-06", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 203.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 67, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 499, + "market_countries": "Belgium , Czech , Denmark , France , Germany , HK , Hungary , Ireland , Italy , Japan , Lebanon , Malaysia , Netherlands , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , Thailand , Turkey , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/mi-11t-5g-global-dual-sim-td-lte-256gb-21081111rg.json b/data/smartphone/xiaomi/2021/mi-11t-5g-global-dual-sim-td-lte-256gb-21081111rg.json new file mode 100644 index 00000000000..6d4b7f811cd --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-11t-5g-global-dual-sim-td-lte-256gb-21081111rg.json @@ -0,0 +1,44 @@ +{ + "slug": "mi-11t-5g-global-dual-sim-td-lte-256gb-21081111rg", + "name": "Mi 11T 5G Global Dual SIM TD-LTE 256GB 21081111RG", + "brand": "xiaomi", + "soc": "dimensity-1200", + "release_date": "2021-10-06", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 203.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 67, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 549, + "market_countries": "Belgium , Czech , Denmark , France , Germany , HK , Hungary , Ireland , Italy , Japan , Lebanon , Malaysia , Netherlands , Norway , Poland , Portugal , Romania , Russia , Saudi Arabia , Serbia , Slovakia , Singapore , Slovenia , Spain , Switzerland , Sweden , Taiwan , Thailand , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/mi-11t-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-2107113sg.json b/data/smartphone/xiaomi/2021/mi-11t-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-2107113sg.json new file mode 100644 index 00000000000..3cc1c008a3b --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-11t-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-2107113sg.json @@ -0,0 +1,44 @@ +{ + "slug": "mi-11t-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-2107113sg", + "name": "Mi 11T Pro 5G Premium Edition Global Dual SIM TD-LTE 256GB 2107113SG", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2021-10-06", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 204.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 749, + "market_countries": "Belgium , Bulgaria , Czech , Denmark , France , Germany , HK , Hungary , Ireland , Italy , Lebanon , Malaysia , Netherlands , Norway , Poland , Portugal , Romania , Russia , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Sweden , Switzerland , Taiwan , Thailand , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-jp-128gb-2107113sr.json b/data/smartphone/xiaomi/2021/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-jp-128gb-2107113sr.json new file mode 100644 index 00000000000..fef2039f8d6 --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-jp-128gb-2107113sr.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-11t-pro-5g-standard-edition-dual-sim-td-lte-jp-128gb-2107113sr", + "name": "Mi 11T Pro 5G Standard Edition Dual SIM TD-LTE JP 128GB 2107113SR", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2021-11-06", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 204.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-jp-256gb-2107113sr.json b/data/smartphone/xiaomi/2021/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-jp-256gb-2107113sr.json new file mode 100644 index 00000000000..86c46c09b8d --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-jp-256gb-2107113sr.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-11t-pro-5g-standard-edition-dual-sim-td-lte-jp-256gb-2107113sr", + "name": "Mi 11T Pro 5G Standard Edition Dual SIM TD-LTE JP 256GB 2107113SR", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2021-11-06", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 204.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/mi-11t-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-2107113sg.json b/data/smartphone/xiaomi/2021/mi-11t-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-2107113sg.json new file mode 100644 index 00000000000..a03b0b8187f --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-11t-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-2107113sg.json @@ -0,0 +1,44 @@ +{ + "slug": "mi-11t-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-2107113sg", + "name": "Mi 11T Pro 5G Standard Edition Global Dual SIM TD-LTE 128GB 2107113SG", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2021-10-06", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 204.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 649, + "market_countries": "Belgium , Bulgaria , Czech , Denmark , France , Germany , HK , Hungary , Ireland , Italy , Malaysia , Netherlands , Poland , Portugal , Romania , Russia , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Switzerland , Sweden , Thailand , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/mi-11t-pro-5g-standard-edition-global-dual-sim-td-lte-256gb-2107113sg.json b/data/smartphone/xiaomi/2021/mi-11t-pro-5g-standard-edition-global-dual-sim-td-lte-256gb-2107113sg.json new file mode 100644 index 00000000000..d677cc6930a --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-11t-pro-5g-standard-edition-global-dual-sim-td-lte-256gb-2107113sg.json @@ -0,0 +1,44 @@ +{ + "slug": "mi-11t-pro-5g-standard-edition-global-dual-sim-td-lte-256gb-2107113sg", + "name": "Mi 11T Pro 5G Standard Edition Global Dual SIM TD-LTE 256GB 2107113SG", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2021-10-06", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 204.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 699, + "market_countries": "Belgium , Bulgaria , Czech , Denmark , France , Germany , HK , Hungary , Ireland , Italy , Lebanon , Malaysia , Netherlands , Norway , Poland , Portugal , Romania , Russia , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Sweden , Switzerland , Taiwan , Thailand , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/mi-11x-5g-premium-edition-dual-sim-td-lte-in-128gb-m2012k11ai.json b/data/smartphone/xiaomi/2021/mi-11x-5g-premium-edition-dual-sim-td-lte-in-128gb-m2012k11ai.json new file mode 100644 index 00000000000..bdf2673501e --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-11x-5g-premium-edition-dual-sim-td-lte-in-128gb-m2012k11ai.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-11x-5g-premium-edition-dual-sim-td-lte-in-128gb-m2012k11ai", + "name": "Mi 11X 5G Premium Edition Dual SIM TD-LTE IN 128GB M2012K11AI", + "brand": "xiaomi", + "soc": "snapdragon-865-plus", + "release_date": "2021-04-29", + "ram_gb": 8.0, + "battery_mah": 4520, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/mi-11x-5g-standard-edition-dual-sim-td-lte-in-128gb-m2012k11ai.json b/data/smartphone/xiaomi/2021/mi-11x-5g-standard-edition-dual-sim-td-lte-in-128gb-m2012k11ai.json new file mode 100644 index 00000000000..d13c2d92149 --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-11x-5g-standard-edition-dual-sim-td-lte-in-128gb-m2012k11ai.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-11x-5g-standard-edition-dual-sim-td-lte-in-128gb-m2012k11ai", + "name": "Mi 11X 5G Standard Edition Dual SIM TD-LTE IN 128GB M2012K11AI", + "brand": "xiaomi", + "soc": "snapdragon-865-plus", + "release_date": "2021-04-29", + "ram_gb": 6.0, + "battery_mah": 4520, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/mi-11x-pro-5g-dual-sim-td-lte-in-128gb-m2012k11i.json b/data/smartphone/xiaomi/2021/mi-11x-pro-5g-dual-sim-td-lte-in-128gb-m2012k11i.json new file mode 100644 index 00000000000..8547576de81 --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-11x-pro-5g-dual-sim-td-lte-in-128gb-m2012k11i.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-11x-pro-5g-dual-sim-td-lte-in-128gb-m2012k11i", + "name": "Mi 11X Pro 5G Dual SIM TD-LTE IN 128GB M2012K11I", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2021-05-04", + "ram_gb": 8.0, + "battery_mah": 4520, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/mi-11x-pro-5g-dual-sim-td-lte-in-256gb-m2012k11i.json b/data/smartphone/xiaomi/2021/mi-11x-pro-5g-dual-sim-td-lte-in-256gb-m2012k11i.json new file mode 100644 index 00000000000..710d889bb7d --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-11x-pro-5g-dual-sim-td-lte-in-256gb-m2012k11i.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-11x-pro-5g-dual-sim-td-lte-in-256gb-m2012k11i", + "name": "Mi 11X Pro 5G Dual SIM TD-LTE IN 256GB M2012K11I", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2021-05-04", + "ram_gb": 8.0, + "battery_mah": 4520, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/mi-mix-4-5g-premium-edition-dual-sim-td-lte-cn-256gb-2106118c.json b/data/smartphone/xiaomi/2021/mi-mix-4-5g-premium-edition-dual-sim-td-lte-cn-256gb-2106118c.json new file mode 100644 index 00000000000..3b52e0e6ede --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-mix-4-5g-premium-edition-dual-sim-td-lte-cn-256gb-2106118c.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-mix-4-5g-premium-edition-dual-sim-td-lte-cn-256gb-2106118c", + "name": "Mi Mix 4 5G Premium Edition Dual SIM TD-LTE CN 256GB 2106118C", + "brand": "xiaomi", + "soc": "snapdragon-888-plus", + "release_date": "2021-08-16", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 225.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/mi-mix-4-5g-premium-edition-dual-sim-td-lte-cn-512gb-2106118c.json b/data/smartphone/xiaomi/2021/mi-mix-4-5g-premium-edition-dual-sim-td-lte-cn-512gb-2106118c.json new file mode 100644 index 00000000000..7e1a3ea6d97 --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-mix-4-5g-premium-edition-dual-sim-td-lte-cn-512gb-2106118c.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-mix-4-5g-premium-edition-dual-sim-td-lte-cn-512gb-2106118c", + "name": "Mi Mix 4 5G Premium Edition Dual SIM TD-LTE CN 512GB 2106118C", + "brand": "xiaomi", + "soc": "snapdragon-888-plus", + "release_date": "2021-08-16", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 225.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/mi-mix-4-5g-standard-edition-dual-sim-td-lte-cn-128gb-2106118c.json b/data/smartphone/xiaomi/2021/mi-mix-4-5g-standard-edition-dual-sim-td-lte-cn-128gb-2106118c.json new file mode 100644 index 00000000000..dd11fe249ee --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-mix-4-5g-standard-edition-dual-sim-td-lte-cn-128gb-2106118c.json @@ -0,0 +1,44 @@ +{ + "slug": "mi-mix-4-5g-standard-edition-dual-sim-td-lte-cn-128gb-2106118c", + "name": "Mi Mix 4 5G Standard Edition Dual SIM TD-LTE CN 128GB 2106118C", + "brand": "xiaomi", + "soc": "snapdragon-888-plus", + "release_date": "2021-08-16", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 225.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 4999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/mi-mix-4-5g-standard-edition-dual-sim-td-lte-cn-256gb-2106118c.json b/data/smartphone/xiaomi/2021/mi-mix-4-5g-standard-edition-dual-sim-td-lte-cn-256gb-2106118c.json new file mode 100644 index 00000000000..7ac7199ef88 --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-mix-4-5g-standard-edition-dual-sim-td-lte-cn-256gb-2106118c.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-mix-4-5g-standard-edition-dual-sim-td-lte-cn-256gb-2106118c", + "name": "Mi Mix 4 5G Standard Edition Dual SIM TD-LTE CN 256GB 2106118C", + "brand": "xiaomi", + "soc": "snapdragon-888-plus", + "release_date": "2021-08-16", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 225.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/mi-mix-fold-2021-5g-ceramic-special-edition-dual-sim-td-lte-cn-512gb.json b/data/smartphone/xiaomi/2021/mi-mix-fold-2021-5g-ceramic-special-edition-dual-sim-td-lte-cn-512gb.json new file mode 100644 index 00000000000..c660178698e --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-mix-fold-2021-5g-ceramic-special-edition-dual-sim-td-lte-cn-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-mix-fold-2021-5g-ceramic-special-edition-dual-sim-td-lte-cn-512gb", + "name": "Mi Mix Fold 2021 5G Ceramic Special Edition Dual SIM TD-LTE CN 512GB", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2021-04-17", + "ram_gb": 16.0, + "battery_mah": 5020, + "weight_g": 332.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 8.01, + "resolution": "1860x2480", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 67, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/mi-mix-fold-2021-5g-premium-edition-dual-sim-td-lte-cn-256gb.json b/data/smartphone/xiaomi/2021/mi-mix-fold-2021-5g-premium-edition-dual-sim-td-lte-cn-256gb.json new file mode 100644 index 00000000000..19e1e350968 --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-mix-fold-2021-5g-premium-edition-dual-sim-td-lte-cn-256gb.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-mix-fold-2021-5g-premium-edition-dual-sim-td-lte-cn-256gb", + "name": "Mi Mix Fold 2021 5G Premium Edition Dual SIM TD-LTE CN 256GB", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2021-04-16", + "ram_gb": 12.0, + "battery_mah": 5020, + "weight_g": 317.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 8.01, + "resolution": "1860x2480", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 67, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/mi-mix-fold-2021-5g-premium-edition-dual-sim-td-lte-cn-512gb.json b/data/smartphone/xiaomi/2021/mi-mix-fold-2021-5g-premium-edition-dual-sim-td-lte-cn-512gb.json new file mode 100644 index 00000000000..217272b0e09 --- /dev/null +++ b/data/smartphone/xiaomi/2021/mi-mix-fold-2021-5g-premium-edition-dual-sim-td-lte-cn-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-mix-fold-2021-5g-premium-edition-dual-sim-td-lte-cn-512gb", + "name": "Mi Mix Fold 2021 5G Premium Edition Dual SIM TD-LTE CN 512GB", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2021-04-16", + "ram_gb": 12.0, + "battery_mah": 5020, + "weight_g": 317.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 8.01, + "resolution": "1860x2480", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 67, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/poco-f3-5g-premium-edition-global-dual-sim-td-lte-256gb-m2012k11ag.json b/data/smartphone/xiaomi/2021/poco-f3-5g-premium-edition-global-dual-sim-td-lte-256gb-m2012k11ag.json new file mode 100644 index 00000000000..471785236ee --- /dev/null +++ b/data/smartphone/xiaomi/2021/poco-f3-5g-premium-edition-global-dual-sim-td-lte-256gb-m2012k11ag.json @@ -0,0 +1,44 @@ +{ + "slug": "poco-f3-5g-premium-edition-global-dual-sim-td-lte-256gb-m2012k11ag", + "name": "Poco F3 5G Premium Edition Global Dual SIM TD-LTE 256GB M2012K11AG", + "brand": "xiaomi", + "soc": "snapdragon-865-plus", + "release_date": "2021-04-29", + "ram_gb": 8.0, + "battery_mah": 4520, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 399, + "market_countries": "Algeria , Belarus , Belgium , Brazil , Bulgaria , Cyprus , Croatia , Czech , Egypt , France , Greece , Germany , Hungary , Indonesia , Italy , Jordan , Lebanon , Malaysia , Mexico , Netherlands , Pakistan , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Thailand , Tunisie , Turkey , UAE , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/poco-f3-5g-standard-edition-global-dual-sim-td-lte-128gb-m2012k11ag.json b/data/smartphone/xiaomi/2021/poco-f3-5g-standard-edition-global-dual-sim-td-lte-128gb-m2012k11ag.json new file mode 100644 index 00000000000..984712752f2 --- /dev/null +++ b/data/smartphone/xiaomi/2021/poco-f3-5g-standard-edition-global-dual-sim-td-lte-128gb-m2012k11ag.json @@ -0,0 +1,44 @@ +{ + "slug": "poco-f3-5g-standard-edition-global-dual-sim-td-lte-128gb-m2012k11ag", + "name": "Poco F3 5G Standard Edition Global Dual SIM TD-LTE 128GB M2012K11AG", + "brand": "xiaomi", + "soc": "snapdragon-865-plus", + "release_date": "2021-04-29", + "ram_gb": 6.0, + "battery_mah": 4520, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 349, + "market_countries": "Algeria , Belarus , Belgium , Brazil , Bulgaria , Cyprus , Croatia , Czech , Estonia , Egypt , France , Germany , Greece , Hungary , India , Indonesia , Italy , Jordan , Latvia , Lebanon , Lithuania , Malaysia , Mexico , Netherlands , Pakistan , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Tunisie , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/poco-f3-gt-5g-premium-edition-dual-sim-td-lte-in-128gb-m2104k10i.json b/data/smartphone/xiaomi/2021/poco-f3-gt-5g-premium-edition-dual-sim-td-lte-in-128gb-m2104k10i.json new file mode 100644 index 00000000000..0768bece083 --- /dev/null +++ b/data/smartphone/xiaomi/2021/poco-f3-gt-5g-premium-edition-dual-sim-td-lte-in-128gb-m2104k10i.json @@ -0,0 +1,43 @@ +{ + "slug": "poco-f3-gt-5g-premium-edition-dual-sim-td-lte-in-128gb-m2104k10i", + "name": "Poco F3 GT 5G Premium Edition Dual SIM TD-LTE IN 128GB M2104K10I", + "brand": "xiaomi", + "soc": "dimensity-1200", + "release_date": "2021-07-23", + "ram_gb": 8.0, + "battery_mah": 5065, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 67, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/poco-f3-gt-5g-premium-edition-dual-sim-td-lte-in-256gb-m2104k10i.json b/data/smartphone/xiaomi/2021/poco-f3-gt-5g-premium-edition-dual-sim-td-lte-in-256gb-m2104k10i.json new file mode 100644 index 00000000000..77cf17e2227 --- /dev/null +++ b/data/smartphone/xiaomi/2021/poco-f3-gt-5g-premium-edition-dual-sim-td-lte-in-256gb-m2104k10i.json @@ -0,0 +1,43 @@ +{ + "slug": "poco-f3-gt-5g-premium-edition-dual-sim-td-lte-in-256gb-m2104k10i", + "name": "Poco F3 GT 5G Premium Edition Dual SIM TD-LTE IN 256GB M2104K10I", + "brand": "xiaomi", + "soc": "dimensity-1200", + "release_date": "2021-07-23", + "ram_gb": 8.0, + "battery_mah": 5065, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 67, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/poco-f3-gt-5g-standard-edition-dual-sim-td-lte-in-128gb-m2104k10i.json b/data/smartphone/xiaomi/2021/poco-f3-gt-5g-standard-edition-dual-sim-td-lte-in-128gb-m2104k10i.json new file mode 100644 index 00000000000..ad89aeb23fa --- /dev/null +++ b/data/smartphone/xiaomi/2021/poco-f3-gt-5g-standard-edition-dual-sim-td-lte-in-128gb-m2104k10i.json @@ -0,0 +1,43 @@ +{ + "slug": "poco-f3-gt-5g-standard-edition-dual-sim-td-lte-in-128gb-m2104k10i", + "name": "Poco F3 GT 5G Standard Edition Dual SIM TD-LTE IN 128GB M2104K10I", + "brand": "xiaomi", + "soc": "dimensity-1200", + "release_date": "2021-07-23", + "ram_gb": 6.0, + "battery_mah": 5065, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 67, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/poco-m2-reloaded-dual-sim-td-lte-in-64gb-m2004j19pi.json b/data/smartphone/xiaomi/2021/poco-m2-reloaded-dual-sim-td-lte-in-64gb-m2004j19pi.json new file mode 100644 index 00000000000..49f343ce7a1 --- /dev/null +++ b/data/smartphone/xiaomi/2021/poco-m2-reloaded-dual-sim-td-lte-in-64gb-m2004j19pi.json @@ -0,0 +1,42 @@ +{ + "slug": "poco-m2-reloaded-dual-sim-td-lte-in-64gb-m2004j19pi", + "name": "Poco M2 Reloaded Dual SIM TD-LTE IN 64GB M2004J19PI", + "brand": "xiaomi", + "soc": "helio-g80", + "release_date": "2021-06-02", + "ram_gb": 4.0, + "battery_mah": 5020, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , India", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2021/poco-m3-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-m2103k19pi.json b/data/smartphone/xiaomi/2021/poco-m3-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-m2103k19pi.json new file mode 100644 index 00000000000..4be120a207b --- /dev/null +++ b/data/smartphone/xiaomi/2021/poco-m3-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-m2103k19pi.json @@ -0,0 +1,43 @@ +{ + "slug": "poco-m3-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-m2103k19pi", + "name": "Poco M3 Pro 5G Premium Edition Dual SIM TD-LTE IN 128GB M2103K19PI", + "brand": "xiaomi", + "soc": "dimensity-700", + "release_date": "2021-06-12", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/poco-m3-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-m2103k19pg.json b/data/smartphone/xiaomi/2021/poco-m3-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-m2103k19pg.json new file mode 100644 index 00000000000..af8de7e8997 --- /dev/null +++ b/data/smartphone/xiaomi/2021/poco-m3-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-m2103k19pg.json @@ -0,0 +1,43 @@ +{ + "slug": "poco-m3-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-m2103k19pg", + "name": "Poco M3 Pro 5G Premium Edition Global Dual SIM TD-LTE 128GB M2103K19PG", + "brand": "xiaomi", + "soc": "dimensity-700", + "release_date": "2021-05-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Algeria , Armenia , Belarus , Belgium , Cyprus , Czech , Egypt , France , Greece , Germany , Hungary , Indonesia , Ireland , Italy , Kazakhstan , Malaysia , Morocco , Netherlands , Norway , Pakistan , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Sweden , Tunisie , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/poco-m3-pro-5g-standard-edition-dual-sim-td-lte-in-64gb-m2103k19pi.json b/data/smartphone/xiaomi/2021/poco-m3-pro-5g-standard-edition-dual-sim-td-lte-in-64gb-m2103k19pi.json new file mode 100644 index 00000000000..39d9655dd78 --- /dev/null +++ b/data/smartphone/xiaomi/2021/poco-m3-pro-5g-standard-edition-dual-sim-td-lte-in-64gb-m2103k19pi.json @@ -0,0 +1,43 @@ +{ + "slug": "poco-m3-pro-5g-standard-edition-dual-sim-td-lte-in-64gb-m2103k19pi", + "name": "Poco M3 Pro 5G Standard Edition Dual SIM TD-LTE IN 64GB M2103K19PI", + "brand": "xiaomi", + "soc": "dimensity-700", + "release_date": "2021-06-12", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/poco-m3-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-m2103k19pg.json b/data/smartphone/xiaomi/2021/poco-m3-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-m2103k19pg.json new file mode 100644 index 00000000000..748e9f9abbe --- /dev/null +++ b/data/smartphone/xiaomi/2021/poco-m3-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-m2103k19pg.json @@ -0,0 +1,43 @@ +{ + "slug": "poco-m3-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-m2103k19pg", + "name": "Poco M3 Pro 5G Standard Edition Global Dual SIM TD-LTE 64GB M2103K19PG", + "brand": "xiaomi", + "soc": "dimensity-700", + "release_date": "2021-05-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Algeria , Armenia , Belarus , Belgium , Cyprus , Czech , Egypt , France , Greece , Germany , Hungary , Indonesia , Ireland , Italy , Kazakhstan , Malaysia , Morocco , Netherlands , Norway , Pakistan , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Sweden , Tunisie , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/poco-m4-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-21091116ag.json b/data/smartphone/xiaomi/2021/poco-m4-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-21091116ag.json new file mode 100644 index 00000000000..eb9512579a8 --- /dev/null +++ b/data/smartphone/xiaomi/2021/poco-m4-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-21091116ag.json @@ -0,0 +1,44 @@ +{ + "slug": "poco-m4-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-21091116ag", + "name": "Poco M4 Pro 5G Premium Edition Global Dual SIM TD-LTE 128GB 21091116AG", + "brand": "xiaomi", + "soc": "dimensity-810", + "release_date": "2021-11-11", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 219, + "market_countries": "Algeria , Armenia , Belarus , Belgium , Cyprus , Czech , Egypt , France , Greece , Germany , Hungary , Indonesia , Ireland , Italy , Kazakhstan , Kyrgyzstan , Malaysia , Morocco , Netherlands , Norway , Pakistan , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Sweden , Tunisie , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/poco-m4-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-21091116ag.json b/data/smartphone/xiaomi/2021/poco-m4-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-21091116ag.json new file mode 100644 index 00000000000..45608ebc966 --- /dev/null +++ b/data/smartphone/xiaomi/2021/poco-m4-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-21091116ag.json @@ -0,0 +1,44 @@ +{ + "slug": "poco-m4-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-21091116ag", + "name": "Poco M4 Pro 5G Standard Edition Global Dual SIM TD-LTE 64GB 21091116AG", + "brand": "xiaomi", + "soc": "dimensity-810", + "release_date": "2021-11-11", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 199, + "market_countries": "Algeria , Armenia , Belarus , Belgium , Cyprus , Czech , Egypt , France , Greece , Germany , Hungary , Indonesia , Ireland , Italy , Kazakhstan , Kyrgyzstan , Malaysia , Morocco , Netherlands , Norway , Pakistan , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Sweden , Tunisie , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/poco-x3-gt-5g-global-dual-sim-td-lte-128gb-21061110ag.json b/data/smartphone/xiaomi/2021/poco-x3-gt-5g-global-dual-sim-td-lte-128gb-21061110ag.json new file mode 100644 index 00000000000..25801d5b93d --- /dev/null +++ b/data/smartphone/xiaomi/2021/poco-x3-gt-5g-global-dual-sim-td-lte-128gb-21061110ag.json @@ -0,0 +1,43 @@ +{ + "slug": "poco-x3-gt-5g-global-dual-sim-td-lte-128gb-21061110ag", + "name": "Poco X3 GT 5G Global Dual SIM TD-LTE 128GB 21061110AG", + "brand": "xiaomi", + "soc": "dimensity-1100", + "release_date": "2021-08-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 67, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Algeria , Armenia , Belarus , Belgium , Cyprus , Czech , Egypt , France , Greece , Germany , Hungary , Indonesia , Ireland , Italy , Kazakhstan , Kyrgyzstan , Malaysia , Morocco , Netherlands , Norway , Pakistan , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Sweden , Tunisie , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/poco-x3-gt-5g-global-dual-sim-td-lte-256gb-21061110ag.json b/data/smartphone/xiaomi/2021/poco-x3-gt-5g-global-dual-sim-td-lte-256gb-21061110ag.json new file mode 100644 index 00000000000..c6436aceb35 --- /dev/null +++ b/data/smartphone/xiaomi/2021/poco-x3-gt-5g-global-dual-sim-td-lte-256gb-21061110ag.json @@ -0,0 +1,43 @@ +{ + "slug": "poco-x3-gt-5g-global-dual-sim-td-lte-256gb-21061110ag", + "name": "Poco X3 GT 5G Global Dual SIM TD-LTE 256GB 21061110AG", + "brand": "xiaomi", + "soc": "dimensity-1100", + "release_date": "2021-08-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 67, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Algeria , Armenia , Belarus , Belgium , Cyprus , Czech , Egypt , France , Greece , Germany , Hungary , Indonesia , Ireland , Italy , Kazakhstan , Kyrgyzstan , Malaysia , Morocco , Netherlands , Norway , Pakistan , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Sweden , Tunisie , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/poco-x3-pro-premium-edition-dual-sim-td-lte-in-128gb-m2102j20si.json b/data/smartphone/xiaomi/2021/poco-x3-pro-premium-edition-dual-sim-td-lte-in-128gb-m2102j20si.json new file mode 100644 index 00000000000..bb1ae900e94 --- /dev/null +++ b/data/smartphone/xiaomi/2021/poco-x3-pro-premium-edition-dual-sim-td-lte-in-128gb-m2102j20si.json @@ -0,0 +1,43 @@ +{ + "slug": "poco-x3-pro-premium-edition-dual-sim-td-lte-in-128gb-m2102j20si", + "name": "Poco X3 Pro Premium Edition Dual SIM TD-LTE IN 128GB M2102J20SI", + "brand": "xiaomi", + "soc": "snapdragon-860", + "release_date": "2021-04-06", + "ram_gb": 8.0, + "battery_mah": 5160, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/poco-x3-pro-premium-edition-global-dual-sim-td-lte-256gb-m2102j20sg.json b/data/smartphone/xiaomi/2021/poco-x3-pro-premium-edition-global-dual-sim-td-lte-256gb-m2102j20sg.json new file mode 100644 index 00000000000..b200d9670fe --- /dev/null +++ b/data/smartphone/xiaomi/2021/poco-x3-pro-premium-edition-global-dual-sim-td-lte-256gb-m2102j20sg.json @@ -0,0 +1,44 @@ +{ + "slug": "poco-x3-pro-premium-edition-global-dual-sim-td-lte-256gb-m2102j20sg", + "name": "Poco X3 Pro Premium Edition Global Dual SIM TD-LTE 256GB M2102J20SG", + "brand": "xiaomi", + "soc": "snapdragon-860", + "release_date": "2021-03-29", + "ram_gb": 8.0, + "battery_mah": 5160, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 399, + "market_countries": "Algeria , Belarus , Belgium , Brazil , Bulgaria , Cyprus , Croatia , Czech , Estonia , Egypt , France , Germany , Greece , Hungary , Indonesia , Italy , Jordan , Latvia , Lebanon , Lithuania , Malaysia , Mexico , Netherlands , Pakistan , Poland , Portugal , Romania , Russia , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Thailand , Tunisie , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/poco-x3-pro-standard-edition-dual-sim-td-lte-in-128gb-m2102j20si.json b/data/smartphone/xiaomi/2021/poco-x3-pro-standard-edition-dual-sim-td-lte-in-128gb-m2102j20si.json new file mode 100644 index 00000000000..6d6118a34ea --- /dev/null +++ b/data/smartphone/xiaomi/2021/poco-x3-pro-standard-edition-dual-sim-td-lte-in-128gb-m2102j20si.json @@ -0,0 +1,43 @@ +{ + "slug": "poco-x3-pro-standard-edition-dual-sim-td-lte-in-128gb-m2102j20si", + "name": "Poco X3 Pro Standard Edition Dual SIM TD-LTE IN 128GB M2102J20SI", + "brand": "xiaomi", + "soc": "snapdragon-860", + "release_date": "2021-04-06", + "ram_gb": 6.0, + "battery_mah": 5160, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/poco-x3-pro-standard-edition-global-dual-sim-td-lte-128gb-m2102j20sg.json b/data/smartphone/xiaomi/2021/poco-x3-pro-standard-edition-global-dual-sim-td-lte-128gb-m2102j20sg.json new file mode 100644 index 00000000000..ddf657d064b --- /dev/null +++ b/data/smartphone/xiaomi/2021/poco-x3-pro-standard-edition-global-dual-sim-td-lte-128gb-m2102j20sg.json @@ -0,0 +1,44 @@ +{ + "slug": "poco-x3-pro-standard-edition-global-dual-sim-td-lte-128gb-m2102j20sg", + "name": "Poco X3 Pro Standard Edition Global Dual SIM TD-LTE 128GB M2102J20SG", + "brand": "xiaomi", + "soc": "snapdragon-860", + "release_date": "2021-03-29", + "ram_gb": 6.0, + "battery_mah": 5160, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 349, + "market_countries": "Algeria , Belarus , Belgium , Brazil , Bulgaria , Cyprus , Croatia , Czech , Estonia , Egypt , France , Germany , Greece , Hungary , Indonesia , Italy , Jordan , Latvia , Lebanon , Lithuania , Malaysia , Mexico , Netherlands , Pakistan , Poland , Portugal , Romania , Russia , Saudi Arabia , Serbia , Slovakia , Slovenia , Spain , Thailand , Tunisie , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/pocophone-poco-c31-dual-sim-td-lte-in-32gb.json b/data/smartphone/xiaomi/2021/pocophone-poco-c31-dual-sim-td-lte-in-32gb.json new file mode 100644 index 00000000000..778d9983569 --- /dev/null +++ b/data/smartphone/xiaomi/2021/pocophone-poco-c31-dual-sim-td-lte-in-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "pocophone-poco-c31-dual-sim-td-lte-in-32gb", + "name": "Pocophone Poco C31 Dual SIM TD-LTE IN 32GB", + "brand": "xiaomi", + "soc": "helio-g35", + "release_date": "2021-10-02", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/pocophone-poco-c31-dual-sim-td-lte-in-64gb.json b/data/smartphone/xiaomi/2021/pocophone-poco-c31-dual-sim-td-lte-in-64gb.json new file mode 100644 index 00000000000..3d0989bd3eb --- /dev/null +++ b/data/smartphone/xiaomi/2021/pocophone-poco-c31-dual-sim-td-lte-in-64gb.json @@ -0,0 +1,41 @@ +{ + "slug": "pocophone-poco-c31-dual-sim-td-lte-in-64gb", + "name": "Pocophone Poco C31 Dual SIM TD-LTE IN 64GB", + "brand": "xiaomi", + "soc": "helio-g35", + "release_date": "2021-10-02", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-10-2021-premium-edition-dual-sim-td-lte-latam-128gb-21061119al.json b/data/smartphone/xiaomi/2021/redmi-10-2021-premium-edition-dual-sim-td-lte-latam-128gb-21061119al.json new file mode 100644 index 00000000000..269c661d699 --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-10-2021-premium-edition-dual-sim-td-lte-latam-128gb-21061119al.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-10-2021-premium-edition-dual-sim-td-lte-latam-128gb-21061119al", + "name": "Redmi 10 2021 Premium Edition Dual SIM TD-LTE LATAM 128GB 21061119AL", + "brand": "xiaomi", + "soc": "helio-g88", + "release_date": "2021-08-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "2560x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 465 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Colombia", + "market_regions": "South America" +} diff --git a/data/smartphone/xiaomi/2021/redmi-10-2021-premium-edition-global-dual-sim-td-lte-128gb-21061119ag.json b/data/smartphone/xiaomi/2021/redmi-10-2021-premium-edition-global-dual-sim-td-lte-128gb-21061119ag.json new file mode 100644 index 00000000000..fa4ad20814c --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-10-2021-premium-edition-global-dual-sim-td-lte-128gb-21061119ag.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-10-2021-premium-edition-global-dual-sim-td-lte-128gb-21061119ag", + "name": "Redmi 10 2021 Premium Edition Global Dual SIM TD-LTE 128GB 21061119AG", + "brand": "xiaomi", + "soc": "helio-g88", + "release_date": "2021-08-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "2560x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 465 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Belarus , Bulgaria , Cyprus , Czech , France , Germany , Greece , Italy , Poland , Portugal , Romania , Russia , Slovakia , Spain , Taiwan , Turkey , UK , Ukraine , USA", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/redmi-10-2021-premium-edition-global-dual-sim-td-lte-128gb-21061119dg.json b/data/smartphone/xiaomi/2021/redmi-10-2021-premium-edition-global-dual-sim-td-lte-128gb-21061119dg.json new file mode 100644 index 00000000000..747f47a3310 --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-10-2021-premium-edition-global-dual-sim-td-lte-128gb-21061119dg.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-10-2021-premium-edition-global-dual-sim-td-lte-128gb-21061119dg", + "name": "Redmi 10 2021 Premium Edition Global Dual SIM TD-LTE 128GB 21061119DG", + "brand": "xiaomi", + "soc": "helio-g88", + "release_date": "2021-08-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "2560x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 465 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 749, + "market_countries": "Armenia , Bangladesh , Indonesia , Kazakhstan , Kyrgyzstan , Malaysia , Pakistan , Philippines , Russia , Saudi Arabia , Singapore , Sri Lanka , Thailand , UAE , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-10-2021-standard-edition-dual-sim-td-lte-latam-128gb-21061119al.json b/data/smartphone/xiaomi/2021/redmi-10-2021-standard-edition-dual-sim-td-lte-latam-128gb-21061119al.json new file mode 100644 index 00000000000..364ae61a073 --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-10-2021-standard-edition-dual-sim-td-lte-latam-128gb-21061119al.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-10-2021-standard-edition-dual-sim-td-lte-latam-128gb-21061119al", + "name": "Redmi 10 2021 Standard Edition Dual SIM TD-LTE LATAM 128GB 21061119AL", + "brand": "xiaomi", + "soc": "helio-g88", + "release_date": "2021-08-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "2560x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 465 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Chile , Colombia , Mexico , Peru", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/xiaomi/2021/redmi-10-2021-standard-edition-dual-sim-td-lte-latam-64gb-21061119al.json b/data/smartphone/xiaomi/2021/redmi-10-2021-standard-edition-dual-sim-td-lte-latam-64gb-21061119al.json new file mode 100644 index 00000000000..bb5427ada7e --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-10-2021-standard-edition-dual-sim-td-lte-latam-64gb-21061119al.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-10-2021-standard-edition-dual-sim-td-lte-latam-64gb-21061119al", + "name": "Redmi 10 2021 Standard Edition Dual SIM TD-LTE LATAM 64GB 21061119AL", + "brand": "xiaomi", + "soc": "helio-g88", + "release_date": "2021-08-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "2560x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 465 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Chile , Colombia , Mexico", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/xiaomi/2021/redmi-10-2021-standard-edition-global-dual-sim-td-lte-128gb-21061119ag.json b/data/smartphone/xiaomi/2021/redmi-10-2021-standard-edition-global-dual-sim-td-lte-128gb-21061119ag.json new file mode 100644 index 00000000000..30f8aae10b7 --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-10-2021-standard-edition-global-dual-sim-td-lte-128gb-21061119ag.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-10-2021-standard-edition-global-dual-sim-td-lte-128gb-21061119ag", + "name": "Redmi 10 2021 Standard Edition Global Dual SIM TD-LTE 128GB 21061119AG", + "brand": "xiaomi", + "soc": "helio-g88", + "release_date": "2021-08-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "2560x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 465 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 230, + "market_countries": "Australia , Belarus , Cyprus , Czech , France , Greece , Germany , Italy , Poland , Portugal , Russia , Romania , Singapore , Slovakia , Spain , Taiwan , Turkey , UK , Ukraine , USA", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , North America , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/redmi-10-2021-standard-edition-global-dual-sim-td-lte-128gb-21061119dg.json b/data/smartphone/xiaomi/2021/redmi-10-2021-standard-edition-global-dual-sim-td-lte-128gb-21061119dg.json new file mode 100644 index 00000000000..a5b68daa922 --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-10-2021-standard-edition-global-dual-sim-td-lte-128gb-21061119dg.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-10-2021-standard-edition-global-dual-sim-td-lte-128gb-21061119dg", + "name": "Redmi 10 2021 Standard Edition Global Dual SIM TD-LTE 128GB 21061119DG", + "brand": "xiaomi", + "soc": "helio-g88", + "release_date": "2021-08-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "2560x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 465 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , Philippines , Russia , Saudi Arabia , Sri Lanka , Thailand , UAE , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-10-2021-standard-edition-global-dual-sim-td-lte-64gb-21061119ag.json b/data/smartphone/xiaomi/2021/redmi-10-2021-standard-edition-global-dual-sim-td-lte-64gb-21061119ag.json new file mode 100644 index 00000000000..43ef6783498 --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-10-2021-standard-edition-global-dual-sim-td-lte-64gb-21061119ag.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-10-2021-standard-edition-global-dual-sim-td-lte-64gb-21061119ag", + "name": "Redmi 10 2021 Standard Edition Global Dual SIM TD-LTE 64GB 21061119AG", + "brand": "xiaomi", + "soc": "helio-g88", + "release_date": "2021-08-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "2560x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 465 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 199, + "market_countries": "Belarus , Cyprus , Czech , France , Greece , Germany , Italy , Poland , Portugal , Romania , Russia , Singapore , Slovakia , Spain , Taiwan , Turkey , UAE , UK , Ukraine , USA", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/redmi-10-2021-standard-edition-global-dual-sim-td-lte-64gb-21061119dg.json b/data/smartphone/xiaomi/2021/redmi-10-2021-standard-edition-global-dual-sim-td-lte-64gb-21061119dg.json new file mode 100644 index 00000000000..d9c08ed36c9 --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-10-2021-standard-edition-global-dual-sim-td-lte-64gb-21061119dg.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-10-2021-standard-edition-global-dual-sim-td-lte-64gb-21061119dg", + "name": "Redmi 10 2021 Standard Edition Global Dual SIM TD-LTE 64GB 21061119DG", + "brand": "xiaomi", + "soc": "helio-g88", + "release_date": "2021-08-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "2560x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 465 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 229, + "market_countries": "Armenia , Bangladesh , Indonesia , Kazakhstan , Kyrgyzstan , Malaysia , Pakistan , Philippines , Russia , Saudi Arabia , Singapore , Sri Lanka , Thailand , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Oceania , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-10-prime-2021-premium-edition-dual-sim-td-lte-in-128gb-21061119bi.json b/data/smartphone/xiaomi/2021/redmi-10-prime-2021-premium-edition-dual-sim-td-lte-in-128gb-21061119bi.json new file mode 100644 index 00000000000..ef11680b49c --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-10-prime-2021-premium-edition-dual-sim-td-lte-in-128gb-21061119bi.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-10-prime-2021-premium-edition-dual-sim-td-lte-in-128gb-21061119bi", + "name": "Redmi 10 Prime 2021 Premium Edition Dual SIM TD-LTE IN 128GB 21061119BI", + "brand": "xiaomi", + "soc": "helio-g88", + "release_date": "2021-09-03", + "ram_gb": 6.0, + "battery_mah": 6000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "2560x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 465 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-10-prime-2021-standard-edition-dual-sim-td-lte-in-64gb-21061119bi.json b/data/smartphone/xiaomi/2021/redmi-10-prime-2021-standard-edition-dual-sim-td-lte-in-64gb-21061119bi.json new file mode 100644 index 00000000000..6c6faa97bcb --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-10-prime-2021-standard-edition-dual-sim-td-lte-in-64gb-21061119bi.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-10-prime-2021-standard-edition-dual-sim-td-lte-in-64gb-21061119bi", + "name": "Redmi 10 Prime 2021 Standard Edition Dual SIM TD-LTE IN 64GB 21061119BI", + "brand": "xiaomi", + "soc": "helio-g88", + "release_date": "2021-09-03", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 192.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "2560x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 465 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-9a-sport-premium-edition-dual-sim-td-lte-in-32gb-m2006c3li.json b/data/smartphone/xiaomi/2021/redmi-9a-sport-premium-edition-dual-sim-td-lte-in-32gb-m2006c3li.json new file mode 100644 index 00000000000..80e32d301ae --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-9a-sport-premium-edition-dual-sim-td-lte-in-32gb-m2006c3li.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-9a-sport-premium-edition-dual-sim-td-lte-in-32gb-m2006c3li", + "name": "Redmi 9A Sport Premium Edition Dual SIM TD-LTE IN 32GB M2006C3LI", + "brand": "xiaomi", + "soc": "helio-g25", + "release_date": "2021-09-28", + "ram_gb": 3.0, + "battery_mah": 5000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-9a-sport-standard-edition-dual-sim-td-lte-in-32gb-m2006c3li.json b/data/smartphone/xiaomi/2021/redmi-9a-sport-standard-edition-dual-sim-td-lte-in-32gb-m2006c3li.json new file mode 100644 index 00000000000..c849425c8e8 --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-9a-sport-standard-edition-dual-sim-td-lte-in-32gb-m2006c3li.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-9a-sport-standard-edition-dual-sim-td-lte-in-32gb-m2006c3li", + "name": "Redmi 9A Sport Standard Edition Dual SIM TD-LTE IN 32GB M2006C3LI", + "brand": "xiaomi", + "soc": "helio-g25", + "release_date": "2021-09-28", + "ram_gb": 2.0, + "battery_mah": 5000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-9i-sport-dual-sim-td-lte-in-128gb-m2006c3lii.json b/data/smartphone/xiaomi/2021/redmi-9i-sport-dual-sim-td-lte-in-128gb-m2006c3lii.json new file mode 100644 index 00000000000..94cbc0a206f --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-9i-sport-dual-sim-td-lte-in-128gb-m2006c3lii.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-9i-sport-dual-sim-td-lte-in-128gb-m2006c3lii", + "name": "Redmi 9i Sport Dual SIM TD-LTE IN 128GB M2006C3LII", + "brand": "xiaomi", + "soc": "helio-g25", + "release_date": "2021-10-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-9i-sport-dual-sim-td-lte-in-64gb-m2006c3lii.json b/data/smartphone/xiaomi/2021/redmi-9i-sport-dual-sim-td-lte-in-64gb-m2006c3lii.json new file mode 100644 index 00000000000..ab1d28a8bd0 --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-9i-sport-dual-sim-td-lte-in-64gb-m2006c3lii.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-9i-sport-dual-sim-td-lte-in-64gb-m2006c3lii", + "name": "Redmi 9i Sport Dual SIM TD-LTE IN 64GB M2006C3LII", + "brand": "xiaomi", + "soc": "helio-g25", + "release_date": "2021-10-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "charging_wired_w": 10, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-9t-premium-edition-global-dual-sim-td-lte-128gb-m2010j19sg.json b/data/smartphone/xiaomi/2021/redmi-9t-premium-edition-global-dual-sim-td-lte-128gb-m2010j19sg.json new file mode 100644 index 00000000000..d655ad151c3 --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-9t-premium-edition-global-dual-sim-td-lte-128gb-m2010j19sg.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-9t-premium-edition-global-dual-sim-td-lte-128gb-m2010j19sg", + "name": "Redmi 9T Premium Edition Global Dual SIM TD-LTE 128GB M2010J19SG", + "brand": "xiaomi", + "soc": "snapdragon-662", + "release_date": "2021-02-01", + "ram_gb": 6.0, + "battery_mah": 6000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Czech , France , Germany , Hungary , Italy , Russia , Spain , Taiwan , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/redmi-9t-standard-edition-dual-sim-td-lte-jp-64gb-m2010j19sr.json b/data/smartphone/xiaomi/2021/redmi-9t-standard-edition-dual-sim-td-lte-jp-64gb-m2010j19sr.json new file mode 100644 index 00000000000..c068634448f --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-9t-standard-edition-dual-sim-td-lte-jp-64gb-m2010j19sr.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-9t-standard-edition-dual-sim-td-lte-jp-64gb-m2010j19sr", + "name": "Redmi 9T Standard Edition Dual SIM TD-LTE JP 64GB M2010J19SR", + "brand": "xiaomi", + "soc": "snapdragon-662", + "release_date": "2021-02-02", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-9t-standard-edition-dual-sim-td-lte-latam-128gb-m2010j19sl.json b/data/smartphone/xiaomi/2021/redmi-9t-standard-edition-dual-sim-td-lte-latam-128gb-m2010j19sl.json new file mode 100644 index 00000000000..9cbbfe2d02f --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-9t-standard-edition-dual-sim-td-lte-latam-128gb-m2010j19sl.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-9t-standard-edition-dual-sim-td-lte-latam-128gb-m2010j19sl", + "name": "Redmi 9T Standard Edition Dual SIM TD-LTE LATAM 128GB M2010J19SL", + "brand": "xiaomi", + "soc": "snapdragon-662", + "release_date": "2021-02-01", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/xiaomi/2021/redmi-9t-standard-edition-dual-sim-td-lte-ru-128gb-m2010j19sy.json b/data/smartphone/xiaomi/2021/redmi-9t-standard-edition-dual-sim-td-lte-ru-128gb-m2010j19sy.json new file mode 100644 index 00000000000..e705b18bcb6 --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-9t-standard-edition-dual-sim-td-lte-ru-128gb-m2010j19sy.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-9t-standard-edition-dual-sim-td-lte-ru-128gb-m2010j19sy", + "name": "Redmi 9T Standard Edition Dual SIM TD-LTE RU 128GB M2010J19SY", + "brand": "xiaomi", + "soc": "snapdragon-662", + "release_date": "2021-01-01", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Cyprus , Estonia , Greece , Latvia , Lithuania , Poland , Russia , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/xiaomi/2021/redmi-9t-standard-edition-dual-sim-td-lte-ru-64gb-m2010j19sy.json b/data/smartphone/xiaomi/2021/redmi-9t-standard-edition-dual-sim-td-lte-ru-64gb-m2010j19sy.json new file mode 100644 index 00000000000..baf754e9a8b --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-9t-standard-edition-dual-sim-td-lte-ru-64gb-m2010j19sy.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-9t-standard-edition-dual-sim-td-lte-ru-64gb-m2010j19sy", + "name": "Redmi 9T Standard Edition Dual SIM TD-LTE RU 64GB M2010J19SY", + "brand": "xiaomi", + "soc": "snapdragon-662", + "release_date": "2021-01-01", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Cyprus , Estonia , Greece , Latvia , Lithuania , Poland , Russia , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/xiaomi/2021/redmi-9t-standard-edition-global-dual-sim-td-lte-128gb-m2010j19sg.json b/data/smartphone/xiaomi/2021/redmi-9t-standard-edition-global-dual-sim-td-lte-128gb-m2010j19sg.json new file mode 100644 index 00000000000..2962f56e61a --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-9t-standard-edition-global-dual-sim-td-lte-128gb-m2010j19sg.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-9t-standard-edition-global-dual-sim-td-lte-128gb-m2010j19sg", + "name": "Redmi 9T Standard Edition Global Dual SIM TD-LTE 128GB M2010J19SG", + "brand": "xiaomi", + "soc": "snapdragon-662", + "release_date": "2021-01-01", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 189, + "market_countries": "Czech , France , Germany , Hungary , Italy , Spain , Taiwan , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/redmi-9t-standard-edition-global-dual-sim-td-lte-64gb-m2010j19sg.json b/data/smartphone/xiaomi/2021/redmi-9t-standard-edition-global-dual-sim-td-lte-64gb-m2010j19sg.json new file mode 100644 index 00000000000..8a3e76dc34f --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-9t-standard-edition-global-dual-sim-td-lte-64gb-m2010j19sg.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-9t-standard-edition-global-dual-sim-td-lte-64gb-m2010j19sg", + "name": "Redmi 9T Standard Edition Global Dual SIM TD-LTE 64GB M2010J19SG", + "brand": "xiaomi", + "soc": "snapdragon-662", + "release_date": "2021-01-16", + "ram_gb": 4.0, + "battery_mah": 6000, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 159, + "market_countries": "Czech , France , Germany , Hungary , Italy , Russia , Spain , Taiwan , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/redmi-k40-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2012k11ac.json b/data/smartphone/xiaomi/2021/redmi-k40-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2012k11ac.json new file mode 100644 index 00000000000..250569ebcc1 --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-k40-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2012k11ac.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-k40-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2012k11ac", + "name": "Redmi K40 5G Premium Edition Dual SIM TD-LTE CN 128GB M2012K11AC", + "brand": "xiaomi", + "soc": "snapdragon-870", + "release_date": "2021-03-04", + "ram_gb": 8.0, + "battery_mah": 4520, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2199, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-k40-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2012k11ac.json b/data/smartphone/xiaomi/2021/redmi-k40-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2012k11ac.json new file mode 100644 index 00000000000..272ffd0724c --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-k40-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2012k11ac.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-k40-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2012k11ac", + "name": "Redmi K40 5G Premium Edition Dual SIM TD-LTE CN 256GB M2012K11AC", + "brand": "xiaomi", + "soc": "snapdragon-870", + "release_date": "2021-03-04", + "ram_gb": 8.0, + "battery_mah": 4520, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-k40-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2012k11ac.json b/data/smartphone/xiaomi/2021/redmi-k40-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2012k11ac.json new file mode 100644 index 00000000000..2a65efb50b4 --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-k40-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2012k11ac.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-k40-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2012k11ac", + "name": "Redmi K40 5G Standard Edition Dual SIM TD-LTE CN 128GB M2012K11AC", + "brand": "xiaomi", + "soc": "snapdragon-870", + "release_date": "2021-03-04", + "ram_gb": 6.0, + "battery_mah": 4520, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-k40-5g-top-edition-dual-sim-td-lte-cn-256gb-m2012k11ac.json b/data/smartphone/xiaomi/2021/redmi-k40-5g-top-edition-dual-sim-td-lte-cn-256gb-m2012k11ac.json new file mode 100644 index 00000000000..63247e36139 --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-k40-5g-top-edition-dual-sim-td-lte-cn-256gb-m2012k11ac.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-k40-5g-top-edition-dual-sim-td-lte-cn-256gb-m2012k11ac", + "name": "Redmi K40 5G Top Edition Dual SIM TD-LTE CN 256GB M2012K11AC", + "brand": "xiaomi", + "soc": "snapdragon-870", + "release_date": "2021-03-01", + "ram_gb": 12.0, + "battery_mah": 4520, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2699, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-k40-game-enhanced-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c.json b/data/smartphone/xiaomi/2021/redmi-k40-game-enhanced-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c.json new file mode 100644 index 00000000000..93d2af9bba6 --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-k40-game-enhanced-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-k40-game-enhanced-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c", + "name": "Redmi K40 Game Enhanced Edition 5G Dual SIM TD-LTE CN 128GB M2104K10C", + "brand": "xiaomi", + "soc": "dimensity-1200", + "release_date": "2021-04-27", + "ram_gb": 12.0, + "battery_mah": 5065, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 67, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 2399, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-k40-game-enhanced-edition-5g-dual-sim-td-lte-cn-256gb-m2104k10c.json b/data/smartphone/xiaomi/2021/redmi-k40-game-enhanced-edition-5g-dual-sim-td-lte-cn-256gb-m2104k10c.json new file mode 100644 index 00000000000..93f0873d869 --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-k40-game-enhanced-edition-5g-dual-sim-td-lte-cn-256gb-m2104k10c.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-k40-game-enhanced-edition-5g-dual-sim-td-lte-cn-256gb-m2104k10c", + "name": "Redmi K40 Game Enhanced Edition 5G Dual SIM TD-LTE CN 256GB M2104K10C", + "brand": "xiaomi", + "soc": "dimensity-1200", + "release_date": "2021-04-27", + "ram_gb": 12.0, + "battery_mah": 5065, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 67, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 2699, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-k40-game-premium-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c.json b/data/smartphone/xiaomi/2021/redmi-k40-game-premium-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c.json new file mode 100644 index 00000000000..c4a43fbcf6f --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-k40-game-premium-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-k40-game-premium-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c", + "name": "Redmi K40 Game Premium Edition 5G Dual SIM TD-LTE CN 128GB M2104K10C", + "brand": "xiaomi", + "soc": "dimensity-1200", + "release_date": "2021-04-27", + "ram_gb": 8.0, + "battery_mah": 5065, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 67, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 2199, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-k40-game-premium-edition-5g-dual-sim-td-lte-cn-256gb-m2104k10c.json b/data/smartphone/xiaomi/2021/redmi-k40-game-premium-edition-5g-dual-sim-td-lte-cn-256gb-m2104k10c.json new file mode 100644 index 00000000000..729ca8a2341 --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-k40-game-premium-edition-5g-dual-sim-td-lte-cn-256gb-m2104k10c.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-k40-game-premium-edition-5g-dual-sim-td-lte-cn-256gb-m2104k10c", + "name": "Redmi K40 Game Premium Edition 5G Dual SIM TD-LTE CN 256GB M2104K10C", + "brand": "xiaomi", + "soc": "dimensity-1200", + "release_date": "2021-04-27", + "ram_gb": 8.0, + "battery_mah": 5065, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 67, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 2399, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-k40-game-standard-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c.json b/data/smartphone/xiaomi/2021/redmi-k40-game-standard-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c.json new file mode 100644 index 00000000000..829587d5b2c --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-k40-game-standard-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-k40-game-standard-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c", + "name": "Redmi K40 Game Standard Edition 5G Dual SIM TD-LTE CN 128GB M2104K10C", + "brand": "xiaomi", + "soc": "dimensity-1200", + "release_date": "2021-04-27", + "ram_gb": 6.0, + "battery_mah": 5065, + "weight_g": 205.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 67, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 1999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-k40-pro-5g-dual-sim-td-lte-cn-256gb-m2012k11q-redmi-k40-ulta.json b/data/smartphone/xiaomi/2021/redmi-k40-pro-5g-dual-sim-td-lte-cn-256gb-m2012k11q-redmi-k40-ulta.json new file mode 100644 index 00000000000..59540f43122 --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-k40-pro-5g-dual-sim-td-lte-cn-256gb-m2012k11q-redmi-k40-ulta.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-k40-pro-5g-dual-sim-td-lte-cn-256gb-m2012k11q-redmi-k40-ulta", + "name": "Redmi K40 Pro+ 5G Dual SIM TD-LTE CN 256GB M2012K11Q / Redmi K40 Ulta", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2021-03-04", + "ram_gb": 12.0, + "battery_mah": 4520, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3699, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-k40-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2012k11c.json b/data/smartphone/xiaomi/2021/redmi-k40-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2012k11c.json new file mode 100644 index 00000000000..85f11b27658 --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-k40-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2012k11c.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-k40-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2012k11c", + "name": "Redmi K40 Pro 5G Premium Edition Dual SIM TD-LTE CN 128GB M2012K11C", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2021-03-04", + "ram_gb": 8.0, + "battery_mah": 4520, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 2999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-k40-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2012k11c.json b/data/smartphone/xiaomi/2021/redmi-k40-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2012k11c.json new file mode 100644 index 00000000000..37216d81135 --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-k40-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2012k11c.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-k40-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2012k11c", + "name": "Redmi K40 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB M2012K11C", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2021-03-04", + "ram_gb": 8.0, + "battery_mah": 4520, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3299, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-k40-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2012k11c.json b/data/smartphone/xiaomi/2021/redmi-k40-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2012k11c.json new file mode 100644 index 00000000000..4024bc87e7c --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-k40-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2012k11c.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-k40-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2012k11c", + "name": "Redmi K40 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB M2012K11C", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2021-03-04", + "ram_gb": 6.0, + "battery_mah": 4520, + "weight_g": 196.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 2799, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-note-10-4g-premium-edition-dual-sim-td-lte-in-128gb-m2101k7ai.json b/data/smartphone/xiaomi/2021/redmi-note-10-4g-premium-edition-dual-sim-td-lte-in-128gb-m2101k7ai.json new file mode 100644 index 00000000000..697095dd0f9 --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-note-10-4g-premium-edition-dual-sim-td-lte-in-128gb-m2101k7ai.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-note-10-4g-premium-edition-dual-sim-td-lte-in-128gb-m2101k7ai", + "name": "Redmi Note 10 4G Premium Edition Dual SIM TD-LTE IN 128GB M2101K7AI", + "brand": "xiaomi", + "soc": "snapdragon-678", + "release_date": "2021-03-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 178.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-note-10-4g-premium-edition-global-dual-sim-td-lte-128gb-m2101k7ag.json b/data/smartphone/xiaomi/2021/redmi-note-10-4g-premium-edition-global-dual-sim-td-lte-128gb-m2101k7ag.json new file mode 100644 index 00000000000..2f5369b83fd --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-note-10-4g-premium-edition-global-dual-sim-td-lte-128gb-m2101k7ag.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-note-10-4g-premium-edition-global-dual-sim-td-lte-128gb-m2101k7ag", + "name": "Redmi Note 10 4G Premium Edition Global Dual SIM TD-LTE 128GB M2101K7AG", + "brand": "xiaomi", + "soc": "snapdragon-678", + "release_date": "2021-03-08", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 178.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Belgium , Egypt , France , Germany , Hungary , Indonesia , Ireland , Italy , Malaysia , Morocco , Netherlands , Norway , Pakistan , Poland , Portugal , Saudi Arabia , Singapore , Spain , Sweden , Thailand , Tunisie , Turkey , UAE , UK , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/redmi-note-10-4g-standard-edition-dual-sim-td-lte-in-64gb-m2101k7ai.json b/data/smartphone/xiaomi/2021/redmi-note-10-4g-standard-edition-dual-sim-td-lte-in-64gb-m2101k7ai.json new file mode 100644 index 00000000000..c6c25c2d5be --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-note-10-4g-standard-edition-dual-sim-td-lte-in-64gb-m2101k7ai.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-note-10-4g-standard-edition-dual-sim-td-lte-in-64gb-m2101k7ai", + "name": "Redmi Note 10 4G Standard Edition Dual SIM TD-LTE IN 64GB M2101K7AI", + "brand": "xiaomi", + "soc": "snapdragon-678", + "release_date": "2021-03-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 178.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-note-10-4g-standard-edition-global-dual-sim-td-lte-128gb-m2101k7ag.json b/data/smartphone/xiaomi/2021/redmi-note-10-4g-standard-edition-global-dual-sim-td-lte-128gb-m2101k7ag.json new file mode 100644 index 00000000000..49f9f1ae7dd --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-note-10-4g-standard-edition-global-dual-sim-td-lte-128gb-m2101k7ag.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-10-4g-standard-edition-global-dual-sim-td-lte-128gb-m2101k7ag", + "name": "Redmi Note 10 4G Standard Edition Global Dual SIM TD-LTE 128GB M2101K7AG", + "brand": "xiaomi", + "soc": "snapdragon-678", + "release_date": "2021-03-08", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 178.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 200, + "market_countries": "Belgium , Egypt , France , Germany , Hungary , Indonesia , Ireland , Italy , Malaysia , Morocco , Netherlands , Norway , Pakistan , Poland , Portugal , Saudi Arabia , Singapore , Spain , Sweden , Thailand , Tunisie , Turkey , UAE , UK , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/redmi-note-10-4g-standard-edition-global-dual-sim-td-lte-64gb-m2101k7ag.json b/data/smartphone/xiaomi/2021/redmi-note-10-4g-standard-edition-global-dual-sim-td-lte-64gb-m2101k7ag.json new file mode 100644 index 00000000000..08475c49837 --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-note-10-4g-standard-edition-global-dual-sim-td-lte-64gb-m2101k7ag.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-10-4g-standard-edition-global-dual-sim-td-lte-64gb-m2101k7ag", + "name": "Redmi Note 10 4G Standard Edition Global Dual SIM TD-LTE 64GB M2101K7AG", + "brand": "xiaomi", + "soc": "snapdragon-678", + "release_date": "2021-03-08", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 178.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 180, + "market_countries": "Belgium , Egypt , France , Germany , Hungary , Indonesia , Ireland , Italy , Malaysia , Morocco , Netherlands , Norway , Pakistan , Poland , Portugal , Saudi Arabia , Singapore , Spain , Sweden , Thailand , Tunisie , Turkey , UAE , UK , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/redmi-note-10-5g-premium-edition-global-dual-sim-td-lte-128gb-m2103k19g.json b/data/smartphone/xiaomi/2021/redmi-note-10-5g-premium-edition-global-dual-sim-td-lte-128gb-m2103k19g.json new file mode 100644 index 00000000000..743f1572793 --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-note-10-5g-premium-edition-global-dual-sim-td-lte-128gb-m2103k19g.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-10-5g-premium-edition-global-dual-sim-td-lte-128gb-m2103k19g", + "name": "Redmi Note 10 5G Premium Edition Global Dual SIM TD-LTE 128GB M2103K19G", + "brand": "xiaomi", + "soc": "dimensity-700", + "release_date": "2021-04-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Belgium , France , Germany , Hungary , Ireland , Italy , Malaysia , Morocco , Netherlands , Norway , Pakistan , Poland , Portugal , Russia , Saudi Arabia , Singapore , Spain , Sweden , Thailand , Tunisie , Turkey , UAE , UK , Ukraine", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/redmi-note-10-5g-standard-edition-global-dual-sim-td-lte-128gb-m2103k19g.json b/data/smartphone/xiaomi/2021/redmi-note-10-5g-standard-edition-global-dual-sim-td-lte-128gb-m2103k19g.json new file mode 100644 index 00000000000..3af0f84788e --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-note-10-5g-standard-edition-global-dual-sim-td-lte-128gb-m2103k19g.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-note-10-5g-standard-edition-global-dual-sim-td-lte-128gb-m2103k19g", + "name": "Redmi Note 10 5G Standard Edition Global Dual SIM TD-LTE 128GB M2103K19G", + "brand": "xiaomi", + "soc": "dimensity-700", + "release_date": "2021-04-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 229, + "market_countries": "Belgium , Egypt , France , Germany , Hungary , Indonesia , Ireland , Italy , Malaysia , Mexico , Morocco , Netherlands , Norway , Pakistan , Poland , Portugal , Russia , Saudi Arabia , Singapore , Spain , Sweden , Thailand , Tunisie , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/redmi-note-10-5g-standard-edition-global-dual-sim-td-lte-64gb-m2103k19g.json b/data/smartphone/xiaomi/2021/redmi-note-10-5g-standard-edition-global-dual-sim-td-lte-64gb-m2103k19g.json new file mode 100644 index 00000000000..f5fab493ff1 --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-note-10-5g-standard-edition-global-dual-sim-td-lte-64gb-m2103k19g.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-note-10-5g-standard-edition-global-dual-sim-td-lte-64gb-m2103k19g", + "name": "Redmi Note 10 5G Standard Edition Global Dual SIM TD-LTE 64GB M2103K19G", + "brand": "xiaomi", + "soc": "dimensity-700", + "release_date": "2021-04-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 199, + "market_countries": "Belgium , Egypt , France , Germany , Hungary , Indonesia , Ireland , Italy , Malaysia , Mexico , Morocco , Netherlands , Norway , Pakistan , Poland , Portugal , Russia , Saudi Arabia , Singapore , Spain , Sweden , Thailand , Tunisie , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/redmi-note-10-je-xig02-td-lte-jp-64gb.json b/data/smartphone/xiaomi/2021/redmi-note-10-je-xig02-td-lte-jp-64gb.json new file mode 100644 index 00000000000..28eb9ed10dc --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-note-10-je-xig02-td-lte-jp-64gb.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-10-je-xig02-td-lte-jp-64gb", + "name": "Redmi Note 10 JE XIG02 TD-LTE JP 64GB", + "brand": "xiaomi", + "soc": "snapdragon-480", + "release_date": "2021-08-13", + "ram_gb": 4.0, + "battery_mah": 4800, + "weight_g": 200.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-note-10s-premium-edition-global-dual-sim-td-lte-128gb-m2101k7bg.json b/data/smartphone/xiaomi/2021/redmi-note-10s-premium-edition-global-dual-sim-td-lte-128gb-m2101k7bg.json new file mode 100644 index 00000000000..d2f0dcbe51d --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-note-10s-premium-edition-global-dual-sim-td-lte-128gb-m2101k7bg.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-10s-premium-edition-global-dual-sim-td-lte-128gb-m2101k7bg", + "name": "Redmi Note 10S Premium Edition Global Dual SIM TD-LTE 128GB M2101K7BG", + "brand": "xiaomi", + "soc": "helio-g95", + "release_date": "2021-04-27", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 178.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 279, + "market_countries": "Belgium , Czech , Egypt , Hungary , Indonesia , Ireland , Italy , Kazakhstan , Kenya , Malaysia , Morocco , Netherlands , Norway , Pakistan , Poland , Portugal , Saudi Arabia , Singapore , Spain , Sweden , Thailand , Tunisie , Turkey , UAE , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/redmi-note-10s-standard-edition-global-dual-sim-td-lte-128gb-m2101k7bg.json b/data/smartphone/xiaomi/2021/redmi-note-10s-standard-edition-global-dual-sim-td-lte-128gb-m2101k7bg.json new file mode 100644 index 00000000000..01804ec03ba --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-note-10s-standard-edition-global-dual-sim-td-lte-128gb-m2101k7bg.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-10s-standard-edition-global-dual-sim-td-lte-128gb-m2101k7bg", + "name": "Redmi Note 10S Standard Edition Global Dual SIM TD-LTE 128GB M2101K7BG", + "brand": "xiaomi", + "soc": "helio-g95", + "release_date": "2021-04-27", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 178.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 249, + "market_countries": "Belarus , Belgium , Egypt , France , Germany , Hungary , Indonesia , Italy , Malaysia , Morocco , Netherlands , Norway , Pakistan , Poland , Portugal , Saudi Arabia , Singapore , Spain , Sweden , Thailand , Tunisie , Turkey , UAE , UK , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/redmi-note-10s-standard-edition-global-dual-sim-td-lte-64gb-m2101k7bg.json b/data/smartphone/xiaomi/2021/redmi-note-10s-standard-edition-global-dual-sim-td-lte-64gb-m2101k7bg.json new file mode 100644 index 00000000000..0fe291446ba --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-note-10s-standard-edition-global-dual-sim-td-lte-64gb-m2101k7bg.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-10s-standard-edition-global-dual-sim-td-lte-64gb-m2101k7bg", + "name": "Redmi Note 10S Standard Edition Global Dual SIM TD-LTE 64GB M2101K7BG", + "brand": "xiaomi", + "soc": "helio-g95", + "release_date": "2021-04-27", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 178.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 229, + "market_countries": "Belgium , Bulgaria , Egypt , France , Germany , Hungary , Indonesia , Ireland , Italy , Kazakhstan , Kenya , Malaysia , Morocco , Netherlands , Norway , Pakistan , Poland , Portugal , Saudi Arabia , Singapore , Spain , Sweden , Thailand , Tunisie , Turkey , UAE , UK , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/redmi-note-10t-5g-premium-edition-dual-sim-td-lte-in-128gb-m2103k19i.json b/data/smartphone/xiaomi/2021/redmi-note-10t-5g-premium-edition-dual-sim-td-lte-in-128gb-m2103k19i.json new file mode 100644 index 00000000000..e3afa2e47d4 --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-note-10t-5g-premium-edition-dual-sim-td-lte-in-128gb-m2103k19i.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-10t-5g-premium-edition-dual-sim-td-lte-in-128gb-m2103k19i", + "name": "Redmi Note 10T 5G Premium Edition Dual SIM TD-LTE IN 128GB M2103K19I", + "brand": "xiaomi", + "soc": "dimensity-700", + "release_date": "2021-07-23", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-note-10t-5g-standard-edition-dual-sim-td-lte-in-64gb-m2103k19i.json b/data/smartphone/xiaomi/2021/redmi-note-10t-5g-standard-edition-dual-sim-td-lte-in-64gb-m2103k19i.json new file mode 100644 index 00000000000..cde417b3aca --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-note-10t-5g-standard-edition-dual-sim-td-lte-in-64gb-m2103k19i.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-10t-5g-standard-edition-dual-sim-td-lte-in-64gb-m2103k19i", + "name": "Redmi Note 10T 5G Standard Edition Dual SIM TD-LTE IN 64GB M2103K19I", + "brand": "xiaomi", + "soc": "dimensity-700", + "release_date": "2021-07-23", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-note-11-4g-premium-edition-dual-sim-td-lte-cn-128gb-21121119sc.json b/data/smartphone/xiaomi/2021/redmi-note-11-4g-premium-edition-dual-sim-td-lte-cn-128gb-21121119sc.json new file mode 100644 index 00000000000..5c78bee18ce --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-note-11-4g-premium-edition-dual-sim-td-lte-cn-128gb-21121119sc.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-note-11-4g-premium-edition-dual-sim-td-lte-cn-128gb-21121119sc", + "name": "Redmi Note 11 4G Premium Edition Dual SIM TD-LTE CN 128GB 21121119SC", + "brand": "xiaomi", + "soc": "helio-g88", + "release_date": "2021-12-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1099, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-note-11-4g-standard-edition-dual-sim-td-lte-cn-128gb-21121119sc.json b/data/smartphone/xiaomi/2021/redmi-note-11-4g-standard-edition-dual-sim-td-lte-cn-128gb-21121119sc.json new file mode 100644 index 00000000000..f46eb3a966a --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-note-11-4g-standard-edition-dual-sim-td-lte-cn-128gb-21121119sc.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-note-11-4g-standard-edition-dual-sim-td-lte-cn-128gb-21121119sc", + "name": "Redmi Note 11 4G Standard Edition Dual SIM TD-LTE CN 128GB 21121119SC", + "brand": "xiaomi", + "soc": "helio-g88", + "release_date": "2021-12-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-note-11-5g-premium-edition-dual-sim-td-lte-cn-128gb-21091116ac.json b/data/smartphone/xiaomi/2021/redmi-note-11-5g-premium-edition-dual-sim-td-lte-cn-128gb-21091116ac.json new file mode 100644 index 00000000000..2313b6de747 --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-note-11-5g-premium-edition-dual-sim-td-lte-cn-128gb-21091116ac.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-note-11-5g-premium-edition-dual-sim-td-lte-cn-128gb-21091116ac", + "name": "Redmi Note 11 5G Premium Edition Dual SIM TD-LTE CN 128GB 21091116AC", + "brand": "xiaomi", + "soc": "dimensity-810", + "release_date": "2021-11-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1299, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-note-11-5g-standard-edition-dual-sim-td-lte-cn-128gb-21091116ac.json b/data/smartphone/xiaomi/2021/redmi-note-11-5g-standard-edition-dual-sim-td-lte-cn-128gb-21091116ac.json new file mode 100644 index 00000000000..ce659019862 --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-note-11-5g-standard-edition-dual-sim-td-lte-cn-128gb-21091116ac.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-note-11-5g-standard-edition-dual-sim-td-lte-cn-128gb-21091116ac", + "name": "Redmi Note 11 5G Standard Edition Dual SIM TD-LTE CN 128GB 21091116AC", + "brand": "xiaomi", + "soc": "dimensity-810", + "release_date": "2021-11-02", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1199, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-note-11-5g-top-edition-dual-sim-td-lte-cn-128gb-21091116ac.json b/data/smartphone/xiaomi/2021/redmi-note-11-5g-top-edition-dual-sim-td-lte-cn-128gb-21091116ac.json new file mode 100644 index 00000000000..d8cacbfe05b --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-note-11-5g-top-edition-dual-sim-td-lte-cn-128gb-21091116ac.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-note-11-5g-top-edition-dual-sim-td-lte-cn-128gb-21091116ac", + "name": "Redmi Note 11 5G Top Edition Dual SIM TD-LTE CN 128GB 21091116AC", + "brand": "xiaomi", + "soc": "dimensity-810", + "release_date": "2021-11-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1499, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-note-11-5g-top-edition-dual-sim-td-lte-cn-256gb-21091116ac.json b/data/smartphone/xiaomi/2021/redmi-note-11-5g-top-edition-dual-sim-td-lte-cn-256gb-21091116ac.json new file mode 100644 index 00000000000..4b8492807c7 --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-note-11-5g-top-edition-dual-sim-td-lte-cn-256gb-21091116ac.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-note-11-5g-top-edition-dual-sim-td-lte-cn-256gb-21091116ac", + "name": "Redmi Note 11 5G Top Edition Dual SIM TD-LTE CN 256GB 21091116AC", + "brand": "xiaomi", + "soc": "dimensity-810", + "release_date": "2021-11-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1699, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-note-11t-5g-premium-edition-dual-sim-td-lte-in-128gb-21091116ai.json b/data/smartphone/xiaomi/2021/redmi-note-11t-5g-premium-edition-dual-sim-td-lte-in-128gb-21091116ai.json new file mode 100644 index 00000000000..c3ad84ff849 --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-note-11t-5g-premium-edition-dual-sim-td-lte-in-128gb-21091116ai.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-11t-5g-premium-edition-dual-sim-td-lte-in-128gb-21091116ai", + "name": "Redmi Note 11T 5G Premium Edition Dual SIM TD-LTE IN 128GB 21091116AI", + "brand": "xiaomi", + "soc": "dimensity-810", + "release_date": "2021-12-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-note-11t-5g-standard-edition-dual-sim-td-lte-in-128gb-21091116ai.json b/data/smartphone/xiaomi/2021/redmi-note-11t-5g-standard-edition-dual-sim-td-lte-in-128gb-21091116ai.json new file mode 100644 index 00000000000..1093817a42b --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-note-11t-5g-standard-edition-dual-sim-td-lte-in-128gb-21091116ai.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-11t-5g-standard-edition-dual-sim-td-lte-in-128gb-21091116ai", + "name": "Redmi Note 11T 5G Standard Edition Dual SIM TD-LTE IN 128GB 21091116AI", + "brand": "xiaomi", + "soc": "dimensity-810", + "release_date": "2021-12-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-note-11t-5g-standard-edition-dual-sim-td-lte-in-64gb-21091116ai.json b/data/smartphone/xiaomi/2021/redmi-note-11t-5g-standard-edition-dual-sim-td-lte-in-64gb-21091116ai.json new file mode 100644 index 00000000000..f9d450acf91 --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-note-11t-5g-standard-edition-dual-sim-td-lte-in-64gb-21091116ai.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-11t-5g-standard-edition-dual-sim-td-lte-in-64gb-21091116ai", + "name": "Redmi Note 11T 5G Standard Edition Dual SIM TD-LTE IN 64GB 21091116AI", + "brand": "xiaomi", + "soc": "dimensity-810", + "release_date": "2021-12-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 195.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-note-8-2021-global-dual-sim-td-lte-128gb-m1908c3jgg.json b/data/smartphone/xiaomi/2021/redmi-note-8-2021-global-dual-sim-td-lte-128gb-m1908c3jgg.json new file mode 100644 index 00000000000..dcd50e941b1 --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-note-8-2021-global-dual-sim-td-lte-128gb-m1908c3jgg.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-note-8-2021-global-dual-sim-td-lte-128gb-m1908c3jgg", + "name": "Redmi Note 8 2021 Global Dual SIM TD-LTE 128GB M1908C3JGG", + "brand": "xiaomi", + "soc": "helio-g85", + "release_date": "2021-06-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Cyprus , France , Germany , Greece , Italy , Poland , Portugal , Russia , Spain , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/redmi-note-8-2021-global-dual-sim-td-lte-64gb-m1908c3jgg.json b/data/smartphone/xiaomi/2021/redmi-note-8-2021-global-dual-sim-td-lte-64gb-m1908c3jgg.json new file mode 100644 index 00000000000..46ee2c70f17 --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-note-8-2021-global-dual-sim-td-lte-64gb-m1908c3jgg.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-8-2021-global-dual-sim-td-lte-64gb-m1908c3jgg", + "name": "Redmi Note 8 2021 Global Dual SIM TD-LTE 64GB M1908C3JGG", + "brand": "xiaomi", + "soc": "helio-g85", + "release_date": "2021-06-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 169, + "market_countries": "Austria , Belgium , Czech , France , Germany , Hungary , Ireland , Italy , Netherlands , Poland , Portugal , Russia , Spain , UK , Ukraine", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/redmi-note-9t-5g-a001xm-dual-sim-td-lte-jp-64gb-m2007j22r.json b/data/smartphone/xiaomi/2021/redmi-note-9t-5g-a001xm-dual-sim-td-lte-jp-64gb-m2007j22r.json new file mode 100644 index 00000000000..8ddc34706db --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-note-9t-5g-a001xm-dual-sim-td-lte-jp-64gb-m2007j22r.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-9t-5g-a001xm-dual-sim-td-lte-jp-64gb-m2007j22r", + "name": "Redmi Note 9T 5G A001XM Dual SIM TD-LTE JP 64GB M2007J22R", + "brand": "xiaomi", + "soc": "dimensity-800", + "release_date": "2021-02-26", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2021/redmi-note-9t-5g-global-dual-sim-td-lte-128gb-m2007j22g.json b/data/smartphone/xiaomi/2021/redmi-note-9t-5g-global-dual-sim-td-lte-128gb-m2007j22g.json new file mode 100644 index 00000000000..88a00ae6874 --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-note-9t-5g-global-dual-sim-td-lte-128gb-m2007j22g.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-note-9t-5g-global-dual-sim-td-lte-128gb-m2007j22g", + "name": "Redmi Note 9T 5G Global Dual SIM TD-LTE 128GB M2007J22G", + "brand": "xiaomi", + "soc": "dimensity-800", + "release_date": "2021-01-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 269, + "market_countries": "France , Germany , HK , Hungary , Italy , Malaysia , Netherlands , Poland , Russia , Singapore , Spain , Taiwan , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2021/redmi-note-9t-5g-global-dual-sim-td-lte-64gb-m2007j22g.json b/data/smartphone/xiaomi/2021/redmi-note-9t-5g-global-dual-sim-td-lte-64gb-m2007j22g.json new file mode 100644 index 00000000000..e45d71368ba --- /dev/null +++ b/data/smartphone/xiaomi/2021/redmi-note-9t-5g-global-dual-sim-td-lte-64gb-m2007j22g.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-note-9t-5g-global-dual-sim-td-lte-64gb-m2007j22g", + "name": "Redmi Note 9T 5G Global Dual SIM TD-LTE 64GB M2007J22G", + "brand": "xiaomi", + "soc": "dimensity-800", + "release_date": "2021-01-16", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 199.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 229, + "market_countries": "France , Germany , HK , Hungary , Italy , Malaysia , Poland , Russia , Singapore , Spain , Taiwan , Thailand , Turkey , UAE , UK , Ukraine , Vietnam", + "market_regions": "Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2022/mi-11t-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-2107113si.json b/data/smartphone/xiaomi/2022/mi-11t-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-2107113si.json new file mode 100644 index 00000000000..cc035687bcd --- /dev/null +++ b/data/smartphone/xiaomi/2022/mi-11t-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-2107113si.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-11t-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-2107113si", + "name": "Mi 11T Pro 5G Premium Edition Dual SIM TD-LTE IN 256GB 2107113SI", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2022-01-19", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 204.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2022/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-2107113si.json b/data/smartphone/xiaomi/2022/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-2107113si.json new file mode 100644 index 00000000000..66c2bc9df82 --- /dev/null +++ b/data/smartphone/xiaomi/2022/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-2107113si.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-11t-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-2107113si", + "name": "Mi 11T Pro 5G Standard Edition Dual SIM TD-LTE IN 128GB 2107113SI", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2022-01-19", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 204.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2022/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-in-256gb-2107113si.json b/data/smartphone/xiaomi/2022/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-in-256gb-2107113si.json new file mode 100644 index 00000000000..f9afa14dcfa --- /dev/null +++ b/data/smartphone/xiaomi/2022/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-in-256gb-2107113si.json @@ -0,0 +1,43 @@ +{ + "slug": "mi-11t-pro-5g-standard-edition-dual-sim-td-lte-in-256gb-2107113si", + "name": "Mi 11T Pro 5G Standard Edition Dual SIM TD-LTE IN 256GB 2107113SI", + "brand": "xiaomi", + "soc": "snapdragon-888", + "release_date": "2022-01-19", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 204.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2022/poco-m4-pro-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117pi.json b/data/smartphone/xiaomi/2022/poco-m4-pro-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117pi.json new file mode 100644 index 00000000000..96198df15fd --- /dev/null +++ b/data/smartphone/xiaomi/2022/poco-m4-pro-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117pi.json @@ -0,0 +1,43 @@ +{ + "slug": "poco-m4-pro-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117pi", + "name": "Poco M4 Pro 4G Premium Edition Dual SIM TD-LTE IN 128GB 2201117PI", + "brand": "xiaomi", + "soc": "helio-g96", + "release_date": "2022-03-07", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 179.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2022/poco-m4-pro-4g-premium-edition-global-dual-sim-td-lte-256gb-2201117pg.json b/data/smartphone/xiaomi/2022/poco-m4-pro-4g-premium-edition-global-dual-sim-td-lte-256gb-2201117pg.json new file mode 100644 index 00000000000..44d4122962e --- /dev/null +++ b/data/smartphone/xiaomi/2022/poco-m4-pro-4g-premium-edition-global-dual-sim-td-lte-256gb-2201117pg.json @@ -0,0 +1,44 @@ +{ + "slug": "poco-m4-pro-4g-premium-edition-global-dual-sim-td-lte-256gb-2201117pg", + "name": "Poco M4 Pro 4G Premium Edition Global Dual SIM TD-LTE 256GB 2201117PG", + "brand": "xiaomi", + "soc": "helio-g96", + "release_date": "2022-03-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 179.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 229, + "market_countries": "Armenia , Belarus , Belgium , Bulgaria , Czech , Estonia , Egypt , France , Hungary , Indonesia , Ireland , Italy , Kazakhstan , Kyrgyzstan , Latvia , Lithuania , Malaysia , Morocco , Norway , Pakistan , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Singapore , Slovenia , Spain , Sweden , Tunisie , Thailand , Turkey , UAE , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2022/poco-m4-pro-4g-standard-edition-dual-sim-td-lte-in-128gb-2201117pi.json b/data/smartphone/xiaomi/2022/poco-m4-pro-4g-standard-edition-dual-sim-td-lte-in-128gb-2201117pi.json new file mode 100644 index 00000000000..6c21b6bd5ff --- /dev/null +++ b/data/smartphone/xiaomi/2022/poco-m4-pro-4g-standard-edition-dual-sim-td-lte-in-128gb-2201117pi.json @@ -0,0 +1,43 @@ +{ + "slug": "poco-m4-pro-4g-standard-edition-dual-sim-td-lte-in-128gb-2201117pi", + "name": "Poco M4 Pro 4G Standard Edition Dual SIM TD-LTE IN 128GB 2201117PI", + "brand": "xiaomi", + "soc": "helio-g96", + "release_date": "2022-03-07", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 179.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2022/poco-m4-pro-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117pi.json b/data/smartphone/xiaomi/2022/poco-m4-pro-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117pi.json new file mode 100644 index 00000000000..87ca0d94e61 --- /dev/null +++ b/data/smartphone/xiaomi/2022/poco-m4-pro-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117pi.json @@ -0,0 +1,43 @@ +{ + "slug": "poco-m4-pro-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117pi", + "name": "Poco M4 Pro 4G Standard Edition Dual SIM TD-LTE IN 64GB 2201117PI", + "brand": "xiaomi", + "soc": "helio-g96", + "release_date": "2022-03-07", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 179.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2022/poco-m4-pro-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117pg.json b/data/smartphone/xiaomi/2022/poco-m4-pro-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117pg.json new file mode 100644 index 00000000000..149cd3f8f5d --- /dev/null +++ b/data/smartphone/xiaomi/2022/poco-m4-pro-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117pg.json @@ -0,0 +1,44 @@ +{ + "slug": "poco-m4-pro-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117pg", + "name": "Poco M4 Pro 4G Standard Edition Global Dual SIM TD-LTE 128GB 2201117PG", + "brand": "xiaomi", + "soc": "helio-g96", + "release_date": "2022-03-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 179.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 179, + "market_countries": "Algeria , Armenia , Belarus , Belgium , Cyprus , Czech , Estonia , Egypt , France , Greece , Germany , HK , Hungary , Indonesia , Ireland , Italy , Kazakhstan , Kyrgyzstan , Latvia , Lithuania , Malaysia , Morocco , Netherlands , Norway , Pakistan , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , Spain , Sweden , Tunisie , Thailand , UAE , UK , Ukraine , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2022/redmi-10-2022-premium-edition-global-dual-sim-td-lte-128gb-21121119sg.json b/data/smartphone/xiaomi/2022/redmi-10-2022-premium-edition-global-dual-sim-td-lte-128gb-21121119sg.json new file mode 100644 index 00000000000..0ca5fa0770c --- /dev/null +++ b/data/smartphone/xiaomi/2022/redmi-10-2022-premium-edition-global-dual-sim-td-lte-128gb-21121119sg.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-10-2022-premium-edition-global-dual-sim-td-lte-128gb-21121119sg", + "name": "Redmi 10 2022 Premium Edition Global Dual SIM TD-LTE 128GB 21121119SG", + "brand": "xiaomi", + "soc": "helio-g88", + "release_date": "2022-02-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , Belarus , Cyprus , Czech , France , Germany , Greece , Indonesia , Italy , Nepal , Poland , Portugal , Romania , Russia , Slovakia , Spain , Taiwan , UK , USA", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2022/redmi-10-2022-standard-edition-global-dual-sim-td-lte-128gb-21121119sg.json b/data/smartphone/xiaomi/2022/redmi-10-2022-standard-edition-global-dual-sim-td-lte-128gb-21121119sg.json new file mode 100644 index 00000000000..b702ec98621 --- /dev/null +++ b/data/smartphone/xiaomi/2022/redmi-10-2022-standard-edition-global-dual-sim-td-lte-128gb-21121119sg.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-10-2022-standard-edition-global-dual-sim-td-lte-128gb-21121119sg", + "name": "Redmi 10 2022 Standard Edition Global Dual SIM TD-LTE 128GB 21121119SG", + "brand": "xiaomi", + "soc": "helio-g88", + "release_date": "2022-02-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , Belarus , Bulgaria , Cyprus , Czech , France , Greece , Germany , Indonesia , Italy , Nepal , Poland , Portugal , Russia , Romania , Slovakia , Spain , Taiwan , UK , Ukraine , USA", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2022/redmi-10-2022-standard-edition-global-dual-sim-td-lte-64gb-21121119sg.json b/data/smartphone/xiaomi/2022/redmi-10-2022-standard-edition-global-dual-sim-td-lte-64gb-21121119sg.json new file mode 100644 index 00000000000..02d418408ee --- /dev/null +++ b/data/smartphone/xiaomi/2022/redmi-10-2022-standard-edition-global-dual-sim-td-lte-64gb-21121119sg.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-10-2022-standard-edition-global-dual-sim-td-lte-64gb-21121119sg", + "name": "Redmi 10 2022 Standard Edition Global Dual SIM TD-LTE 64GB 21121119SG", + "brand": "xiaomi", + "soc": "helio-g88", + "release_date": "2022-02-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Bangladesh , Belarus , Bulgaria , Cyprus , Czech , France , Greece , Germany , Indonesia , Italy , Nepal , Poland , Portugal , Russia , Romania , Slovakia , Spain , Taiwan , UK , Ukraine , USA", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2022/redmi-note-11-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117ti.json b/data/smartphone/xiaomi/2022/redmi-note-11-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117ti.json new file mode 100644 index 00000000000..c6bade45aab --- /dev/null +++ b/data/smartphone/xiaomi/2022/redmi-note-11-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117ti.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-11-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117ti", + "name": "Redmi Note 11 4G Premium Edition Dual SIM TD-LTE IN 128GB 2201117TI", + "brand": "xiaomi", + "soc": "snapdragon-680", + "release_date": "2022-03-09", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2022/redmi-note-11-4g-premium-edition-dual-sim-td-lte-in-64gb-2201117ti.json b/data/smartphone/xiaomi/2022/redmi-note-11-4g-premium-edition-dual-sim-td-lte-in-64gb-2201117ti.json new file mode 100644 index 00000000000..81e8a649abd --- /dev/null +++ b/data/smartphone/xiaomi/2022/redmi-note-11-4g-premium-edition-dual-sim-td-lte-in-64gb-2201117ti.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-11-4g-premium-edition-dual-sim-td-lte-in-64gb-2201117ti", + "name": "Redmi Note 11 4G Premium Edition Dual SIM TD-LTE IN 64GB 2201117TI", + "brand": "xiaomi", + "soc": "snapdragon-680", + "release_date": "2022-03-09", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2022/redmi-note-11-4g-premium-edition-global-dual-sim-td-lte-128gb-2201117tg.json b/data/smartphone/xiaomi/2022/redmi-note-11-4g-premium-edition-global-dual-sim-td-lte-128gb-2201117tg.json new file mode 100644 index 00000000000..6ba68cc887a --- /dev/null +++ b/data/smartphone/xiaomi/2022/redmi-note-11-4g-premium-edition-global-dual-sim-td-lte-128gb-2201117tg.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-note-11-4g-premium-edition-global-dual-sim-td-lte-128gb-2201117tg", + "name": "Redmi Note 11 4G Premium Edition Global Dual SIM TD-LTE 128GB 2201117TG", + "brand": "xiaomi", + "soc": "snapdragon-680", + "release_date": "2022-02-09", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 229, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Czech , Denmark , Egypt , France , Germany , HK , Hungary , Indonesia , Ireland , Italy , Kenya , Malaysia , Netherlands , Nigeria , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , Thailand , UAE , UK , Ukraine , USA , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2022/redmi-note-11-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117ti.json b/data/smartphone/xiaomi/2022/redmi-note-11-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117ti.json new file mode 100644 index 00000000000..e7be8dad3cb --- /dev/null +++ b/data/smartphone/xiaomi/2022/redmi-note-11-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117ti.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-11-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117ti", + "name": "Redmi Note 11 4G Standard Edition Dual SIM TD-LTE IN 64GB 2201117TI", + "brand": "xiaomi", + "soc": "snapdragon-680", + "release_date": "2022-03-09", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2022/redmi-note-11-4g-standard-edition-dual-sim-td-lte-latam-jp-64gb-2201117tl.json b/data/smartphone/xiaomi/2022/redmi-note-11-4g-standard-edition-dual-sim-td-lte-latam-jp-64gb-2201117tl.json new file mode 100644 index 00000000000..5a3ea8532f4 --- /dev/null +++ b/data/smartphone/xiaomi/2022/redmi-note-11-4g-standard-edition-dual-sim-td-lte-latam-jp-64gb-2201117tl.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-note-11-4g-standard-edition-dual-sim-td-lte-latam-jp-64gb-2201117tl", + "name": "Redmi Note 11 4G Standard Edition Dual SIM TD-LTE LATAM JP 64GB 2201117TL", + "brand": "xiaomi", + "soc": "snapdragon-680", + "release_date": "2022-03-09", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Brazil , Colombia , Japan , Mexico" +} diff --git a/data/smartphone/xiaomi/2022/redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117tg.json b/data/smartphone/xiaomi/2022/redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117tg.json new file mode 100644 index 00000000000..e14d8548576 --- /dev/null +++ b/data/smartphone/xiaomi/2022/redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117tg.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117tg", + "name": "Redmi Note 11 4G Standard Edition Global Dual SIM TD-LTE 128GB 2201117TG", + "brand": "xiaomi", + "soc": "snapdragon-680", + "release_date": "2022-02-09", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 230, + "market_countries": "Armenia , Belarus , Bulgaria , Czech , Denmark , Egypt , France , Germany , Hungary , Indonesia , Ireland , Italy , Jordan , Kazakhstan , Kenya , Kyrgyzstan , Malaysia , Nigeria , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Singapore , Slovenia , Spain , Sweden , Switzerland , Thailand , UAE , UK , Ukraine , USA , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2022/redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117ty.json b/data/smartphone/xiaomi/2022/redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117ty.json new file mode 100644 index 00000000000..c52d2838dc8 --- /dev/null +++ b/data/smartphone/xiaomi/2022/redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117ty.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117ty", + "name": "Redmi Note 11 4G Standard Edition Global Dual SIM TD-LTE 128GB 2201117TY", + "brand": "xiaomi", + "soc": "snapdragon-680", + "release_date": "2022-02-09", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 230, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Czech , Denmark , Egypt , France , Germany , HK , Hungary , Indonesia , Ireland , Italy , Kenya , Malaysia , Netherlands , Nigeria , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , Thailand , UAE , UK , Ukraine , USA , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2022/redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-64gb-2201117ty.json b/data/smartphone/xiaomi/2022/redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-64gb-2201117ty.json new file mode 100644 index 00000000000..549be9a776c --- /dev/null +++ b/data/smartphone/xiaomi/2022/redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-64gb-2201117ty.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-64gb-2201117ty", + "name": "Redmi Note 11 4G Standard Edition Global Dual SIM TD-LTE 64GB 2201117TY", + "brand": "xiaomi", + "soc": "snapdragon-680", + "release_date": "2022-02-09", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 199, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Czech , Denmark , Egypt , France , Germany , HK , Hungary , Indonesia , Ireland , Italy , Kenya , Malaysia , Netherlands , Nigeria , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , Thailand , UAE , UK , Ukraine , USA , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2022/redmi-note-11-pro-4g-premium-edition-global-dual-sim-td-lte-128gb-2201116tg.json b/data/smartphone/xiaomi/2022/redmi-note-11-pro-4g-premium-edition-global-dual-sim-td-lte-128gb-2201116tg.json new file mode 100644 index 00000000000..16476a44825 --- /dev/null +++ b/data/smartphone/xiaomi/2022/redmi-note-11-pro-4g-premium-edition-global-dual-sim-td-lte-128gb-2201116tg.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-note-11-pro-4g-premium-edition-global-dual-sim-td-lte-128gb-2201116tg", + "name": "Redmi Note 11 Pro 4G Premium Edition Global Dual SIM TD-LTE 128GB 2201116TG", + "brand": "xiaomi", + "soc": "helio-g96", + "release_date": "2022-02-19", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 202.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 67, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1099, + "market_countries": "Belgium , Bulgaria , Czech , Denmark , France , Germany , Hungary , Indonesia , Ireland , Italy , Malaysia , Netherlands , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Singapore , Slovenia , Spain , Switzerland , Sweden , Thailand , UAE , UK , Ukraine , USA", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2022/redmi-note-11-pro-4g-standard-edition-global-dual-sim-td-lte-128gb-2201116tg.json b/data/smartphone/xiaomi/2022/redmi-note-11-pro-4g-standard-edition-global-dual-sim-td-lte-128gb-2201116tg.json new file mode 100644 index 00000000000..07bdb522977 --- /dev/null +++ b/data/smartphone/xiaomi/2022/redmi-note-11-pro-4g-standard-edition-global-dual-sim-td-lte-128gb-2201116tg.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-note-11-pro-4g-standard-edition-global-dual-sim-td-lte-128gb-2201116tg", + "name": "Redmi Note 11 Pro 4G Standard Edition Global Dual SIM TD-LTE 128GB 2201116TG", + "brand": "xiaomi", + "soc": "helio-g96", + "release_date": "2022-02-19", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 202.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 67, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 999, + "market_countries": "Belgium , Bulgaria , Czech , Denmark , France , Germany , Hungary , Indonesia , Ireland , Italy , Malaysia , Netherlands , Poland , Portugal , Romania , Russia , Saudi Arabia , Slovakia , Singapore , Slovenia , Spain , Switzerland , Sweden , Thailand , UAE , UK , Ukraine , USA", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2022/redmi-note-11-pro-4g-standard-edition-global-dual-sim-td-lte-64gb-2201116tg.json b/data/smartphone/xiaomi/2022/redmi-note-11-pro-4g-standard-edition-global-dual-sim-td-lte-64gb-2201116tg.json new file mode 100644 index 00000000000..28e5696302d --- /dev/null +++ b/data/smartphone/xiaomi/2022/redmi-note-11-pro-4g-standard-edition-global-dual-sim-td-lte-64gb-2201116tg.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-note-11-pro-4g-standard-edition-global-dual-sim-td-lte-64gb-2201116tg", + "name": "Redmi Note 11 Pro 4G Standard Edition Global Dual SIM TD-LTE 64GB 2201116TG", + "brand": "xiaomi", + "soc": "helio-g96", + "release_date": "2022-02-19", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 202.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 67, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 299, + "market_countries": "Belgium , Bulgaria , Czech , Denmark , France , Germany , Hungary , Indonesia , Ireland , Italy , Netherlands , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Slovenia , Spain , Sweden , Switzerland , Thailand , UAE , UK , Ukraine , USA", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2022/redmi-note-11-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-2201116si.json b/data/smartphone/xiaomi/2022/redmi-note-11-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-2201116si.json new file mode 100644 index 00000000000..b561fec809b --- /dev/null +++ b/data/smartphone/xiaomi/2022/redmi-note-11-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-2201116si.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-11-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-2201116si", + "name": "Redmi Note 11 Pro+ 5G Premium Edition Dual SIM TD-LTE IN 128GB 2201116SI", + "brand": "xiaomi", + "soc": "snapdragon-695", + "release_date": "2022-03-08", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 202.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 67, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2022/redmi-note-11-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-2201116si.json b/data/smartphone/xiaomi/2022/redmi-note-11-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-2201116si.json new file mode 100644 index 00000000000..998c1dda1bc --- /dev/null +++ b/data/smartphone/xiaomi/2022/redmi-note-11-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-2201116si.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-11-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-2201116si", + "name": "Redmi Note 11 Pro+ 5G Premium Edition Dual SIM TD-LTE IN 256GB 2201116SI", + "brand": "xiaomi", + "soc": "snapdragon-695", + "release_date": "2022-03-08", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 202.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 67, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2022/redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-21091116ug.json b/data/smartphone/xiaomi/2022/redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-21091116ug.json new file mode 100644 index 00000000000..f016fe15e89 --- /dev/null +++ b/data/smartphone/xiaomi/2022/redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-21091116ug.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-21091116ug", + "name": "Redmi Note 11 Pro+ 5G Premium Edition Global Dual SIM TD-LTE 128GB 21091116UG", + "brand": "xiaomi", + "soc": "dimensity-920", + "release_date": "2022-03-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 204.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 399, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Czech , Denmark , France , Germany , Greece , Hungary , Indonesia , Ireland , Italy , Malaysia , Netherlands , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Switzerland , Sweden , Thailand , Turkey , UAE , UK , Ukraine , USA", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2022/redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-2201116sg.json b/data/smartphone/xiaomi/2022/redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-2201116sg.json new file mode 100644 index 00000000000..71c09a9090a --- /dev/null +++ b/data/smartphone/xiaomi/2022/redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-2201116sg.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-2201116sg", + "name": "Redmi Note 11 Pro 5G Premium Edition Global Dual SIM TD-LTE 128GB 2201116SG", + "brand": "xiaomi", + "soc": "snapdragon-695", + "release_date": "2022-02-19", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 202.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 67, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1299, + "market_countries": "Belgium , Bulgaria , Czech , Denmark , France , Germany , HK , Hungary , Ireland , Italy , Malaysia , Mexico , Netherlands , Poland , Portugal , Romania , Russia , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Sweden , Switzerland , Thailand , UAE , UK , Ukraine , USA", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2022/redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-21091116ug.json b/data/smartphone/xiaomi/2022/redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-21091116ug.json new file mode 100644 index 00000000000..033af25bb8a --- /dev/null +++ b/data/smartphone/xiaomi/2022/redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-21091116ug.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-21091116ug", + "name": "Redmi Note 11 Pro+ 5G Premium Edition Global Dual SIM TD-LTE 256GB 21091116UG", + "brand": "xiaomi", + "soc": "dimensity-920", + "release_date": "2022-03-01", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 204.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Czech , Denmark , France , Germany , Greece , Hungary , Indonesia , Ireland , Italy , Malaysia , Netherlands , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Switzerland , Sweden , Thailand , Turkey , UAE , UK , Ukraine , USA", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2022/redmi-note-11-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-2201116si.json b/data/smartphone/xiaomi/2022/redmi-note-11-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-2201116si.json new file mode 100644 index 00000000000..ffe70685e38 --- /dev/null +++ b/data/smartphone/xiaomi/2022/redmi-note-11-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-2201116si.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-11-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-2201116si", + "name": "Redmi Note 11 Pro+ 5G Standard Edition Dual SIM TD-LTE IN 128GB 2201116SI", + "brand": "xiaomi", + "soc": "snapdragon-695", + "release_date": "2022-03-08", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 202.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 67, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2022/redmi-note-11-pro-5g-standard-edition-dual-sim-td-lte-jp-128gb-2201116sr.json b/data/smartphone/xiaomi/2022/redmi-note-11-pro-5g-standard-edition-dual-sim-td-lte-jp-128gb-2201116sr.json new file mode 100644 index 00000000000..d086f7cf92d --- /dev/null +++ b/data/smartphone/xiaomi/2022/redmi-note-11-pro-5g-standard-edition-dual-sim-td-lte-jp-128gb-2201116sr.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-11-pro-5g-standard-edition-dual-sim-td-lte-jp-128gb-2201116sr", + "name": "Redmi Note 11 Pro 5G Standard Edition Dual SIM TD-LTE JP 128GB 2201116SR", + "brand": "xiaomi", + "soc": "snapdragon-695", + "release_date": "2022-05-29", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 202.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 67, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2022/redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-21091116ug.json b/data/smartphone/xiaomi/2022/redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-21091116ug.json new file mode 100644 index 00000000000..ba2a058d1d5 --- /dev/null +++ b/data/smartphone/xiaomi/2022/redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-21091116ug.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-21091116ug", + "name": "Redmi Note 11 Pro+ 5G Standard Edition Global Dual SIM TD-LTE 128GB 21091116UG", + "brand": "xiaomi", + "soc": "dimensity-920", + "release_date": "2022-03-01", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 204.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belarus , Belgium , Bulgaria , Cyprus , Czech , Denmark , France , Germany , Greece , Hungary , Indonesia , Ireland , Italy , Kenya , Malaysia , Netherlands , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Singapore , Slovenia , Spain , Sweden , Switzerland , Tunisie , Thailand , Turkey , UAE , UK , Ukraine , USA", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2022/redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-2201116sg.json b/data/smartphone/xiaomi/2022/redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-2201116sg.json new file mode 100644 index 00000000000..ea5a9d224e8 --- /dev/null +++ b/data/smartphone/xiaomi/2022/redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-2201116sg.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-2201116sg", + "name": "Redmi Note 11 Pro 5G Standard Edition Global Dual SIM TD-LTE 128GB 2201116SG", + "brand": "xiaomi", + "soc": "snapdragon-695", + "release_date": "2022-02-19", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 202.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 67, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 349, + "market_countries": "Belgium , Bulgaria , Czech , Denmark , France , Germany , HK , Hungary , Ireland , Italy , Malaysia , Netherlands , Poland , Portugal , Romania , Russia , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Switzerland , Sweden , Thailand , UAE , UK , Ukraine , USA", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2022/redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-2201116sg.json b/data/smartphone/xiaomi/2022/redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-2201116sg.json new file mode 100644 index 00000000000..8ac470ea065 --- /dev/null +++ b/data/smartphone/xiaomi/2022/redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-2201116sg.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-2201116sg", + "name": "Redmi Note 11 Pro 5G Standard Edition Global Dual SIM TD-LTE 64GB 2201116SG", + "brand": "xiaomi", + "soc": "snapdragon-695", + "release_date": "2022-02-19", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 202.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 67, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 329, + "market_countries": "Belgium , Bulgaria , Czech , Denmark , France , Germany , HK , Hungary , Ireland , Italy , Malaysia , Mexico , Netherlands , Poland , Portugal , Romania , Russia , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Sweden , Switzerland , Thailand , UAE , UK , Ukraine , USA", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2022/redmi-note-11i-hypercharge-5g-premium-edition-dual-sim-td-lte-in-128gb-21091116ui.json b/data/smartphone/xiaomi/2022/redmi-note-11i-hypercharge-5g-premium-edition-dual-sim-td-lte-in-128gb-21091116ui.json new file mode 100644 index 00000000000..0d020d858ba --- /dev/null +++ b/data/smartphone/xiaomi/2022/redmi-note-11i-hypercharge-5g-premium-edition-dual-sim-td-lte-in-128gb-21091116ui.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-11i-hypercharge-5g-premium-edition-dual-sim-td-lte-in-128gb-21091116ui", + "name": "Redmi Note 11i Hypercharge 5G Premium Edition Dual SIM TD-LTE IN 128GB 21091116UI", + "brand": "xiaomi", + "soc": "dimensity-920", + "release_date": "2022-01-12", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 204.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2022/redmi-note-11i-hypercharge-5g-standard-edition-dual-sim-td-lte-in-128gb-21091116ui.json b/data/smartphone/xiaomi/2022/redmi-note-11i-hypercharge-5g-standard-edition-dual-sim-td-lte-in-128gb-21091116ui.json new file mode 100644 index 00000000000..54f7abdc7b6 --- /dev/null +++ b/data/smartphone/xiaomi/2022/redmi-note-11i-hypercharge-5g-standard-edition-dual-sim-td-lte-in-128gb-21091116ui.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-11i-hypercharge-5g-standard-edition-dual-sim-td-lte-in-128gb-21091116ui", + "name": "Redmi Note 11i Hypercharge 5G Standard Edition Dual SIM TD-LTE IN 128GB 21091116UI", + "brand": "xiaomi", + "soc": "dimensity-920", + "release_date": "2022-01-12", + "ram_gb": 6.0, + "battery_mah": 4500, + "weight_g": 204.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2022/redmi-note-11s-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117si.json b/data/smartphone/xiaomi/2022/redmi-note-11s-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117si.json new file mode 100644 index 00000000000..497b86bbecc --- /dev/null +++ b/data/smartphone/xiaomi/2022/redmi-note-11s-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117si.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-11s-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117si", + "name": "Redmi Note 11S 4G Premium Edition Dual SIM TD-LTE IN 128GB 2201117SI", + "brand": "xiaomi", + "soc": "helio-g96", + "release_date": "2022-01-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2022/redmi-note-11s-4g-premium-edition-global-dual-sim-td-lte-128gb-2201117sy.json b/data/smartphone/xiaomi/2022/redmi-note-11s-4g-premium-edition-global-dual-sim-td-lte-128gb-2201117sy.json new file mode 100644 index 00000000000..c3df7dc8486 --- /dev/null +++ b/data/smartphone/xiaomi/2022/redmi-note-11s-4g-premium-edition-global-dual-sim-td-lte-128gb-2201117sy.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-note-11s-4g-premium-edition-global-dual-sim-td-lte-128gb-2201117sy", + "name": "Redmi Note 11S 4G Premium Edition Global Dual SIM TD-LTE 128GB 2201117SY", + "brand": "xiaomi", + "soc": "helio-g96", + "release_date": "2022-02-09", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 299, + "market_countries": "Belgium , Bulgaria , Czech , Denmark , Egypt , France , Germany , HK , Hungary , Indonesia , Ireland , Italy , Kenya , Malaysia , Netherlands , Nigeria , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Spain , Sweden , Switzerland , Taiwan , Thailand , UAE , UK , Ukraine , USA , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2022/redmi-note-11s-4g-standard-edition-dual-sim-td-lte-in-128gb-2201117si.json b/data/smartphone/xiaomi/2022/redmi-note-11s-4g-standard-edition-dual-sim-td-lte-in-128gb-2201117si.json new file mode 100644 index 00000000000..14a57d04db1 --- /dev/null +++ b/data/smartphone/xiaomi/2022/redmi-note-11s-4g-standard-edition-dual-sim-td-lte-in-128gb-2201117si.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-11s-4g-standard-edition-dual-sim-td-lte-in-128gb-2201117si", + "name": "Redmi Note 11S 4G Standard Edition Dual SIM TD-LTE IN 128GB 2201117SI", + "brand": "xiaomi", + "soc": "helio-g96", + "release_date": "2022-01-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2022/redmi-note-11s-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117si.json b/data/smartphone/xiaomi/2022/redmi-note-11s-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117si.json new file mode 100644 index 00000000000..1ffa5a05c23 --- /dev/null +++ b/data/smartphone/xiaomi/2022/redmi-note-11s-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117si.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-11s-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117si", + "name": "Redmi Note 11S 4G Standard Edition Dual SIM TD-LTE IN 64GB 2201117SI", + "brand": "xiaomi", + "soc": "helio-g96", + "release_date": "2022-01-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "India", + "market_regions": "Asia" +} diff --git a/data/smartphone/xiaomi/2022/redmi-note-11s-4g-standard-edition-dual-sim-td-lte-latam-128gb-2201117sl.json b/data/smartphone/xiaomi/2022/redmi-note-11s-4g-standard-edition-dual-sim-td-lte-latam-128gb-2201117sl.json new file mode 100644 index 00000000000..3c00306da77 --- /dev/null +++ b/data/smartphone/xiaomi/2022/redmi-note-11s-4g-standard-edition-dual-sim-td-lte-latam-128gb-2201117sl.json @@ -0,0 +1,42 @@ +{ + "slug": "redmi-note-11s-4g-standard-edition-dual-sim-td-lte-latam-128gb-2201117sl", + "name": "Redmi Note 11S 4G Standard Edition Dual SIM TD-LTE LATAM 128GB 2201117SL", + "brand": "xiaomi", + "soc": "helio-g96", + "release_date": "2022-03-01", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Chile , Colombia , Mexico" +} diff --git a/data/smartphone/xiaomi/2022/redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117sg.json b/data/smartphone/xiaomi/2022/redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117sg.json new file mode 100644 index 00000000000..918f2a8467c --- /dev/null +++ b/data/smartphone/xiaomi/2022/redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117sg.json @@ -0,0 +1,43 @@ +{ + "slug": "redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117sg", + "name": "Redmi Note 11S 4G Standard Edition Global Dual SIM TD-LTE 128GB 2201117SG", + "brand": "xiaomi", + "soc": "helio-g96", + "release_date": "2022-02-09", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Bulgaria , Egypt , HK , Indonesia , Kenya , Malaysia , Nigeria , Russia , Saudi Arabia , UAE , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , Southeast Asia" +} diff --git a/data/smartphone/xiaomi/2022/redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117sy.json b/data/smartphone/xiaomi/2022/redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117sy.json new file mode 100644 index 00000000000..a0115c5a831 --- /dev/null +++ b/data/smartphone/xiaomi/2022/redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117sy.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117sy", + "name": "Redmi Note 11S 4G Standard Edition Global Dual SIM TD-LTE 128GB 2201117SY", + "brand": "xiaomi", + "soc": "helio-g96", + "release_date": "2022-02-09", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 279, + "market_countries": "Belgium , Bulgaria , Czech , Denmark , Egypt , France , Germany , HK , Hungary , Indonesia , Ireland , Italy , Kenya , Malaysia , Netherlands , Nigeria , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , Thailand , UAE , UK , Ukraine , USA , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2022/redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-64gb-2201117sy.json b/data/smartphone/xiaomi/2022/redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-64gb-2201117sy.json new file mode 100644 index 00000000000..f90386c4445 --- /dev/null +++ b/data/smartphone/xiaomi/2022/redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-64gb-2201117sy.json @@ -0,0 +1,44 @@ +{ + "slug": "redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-64gb-2201117sy", + "name": "Redmi Note 11S 4G Standard Edition Global Dual SIM TD-LTE 64GB 2201117SY", + "brand": "xiaomi", + "soc": "helio-g96", + "release_date": "2022-02-09", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 33, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 249, + "market_countries": "Belgium , Bulgaria , Czech , Denmark , Egypt , France , Germany , HK , Hungary , Indonesia , Ireland , Italy , Kenya , Malaysia , Netherlands , Nigeria , Norway , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , Thailand , UAE , UK , Ukraine , USA , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/xiaomi/2023/14-pro.json b/data/smartphone/xiaomi/2023/14-pro.json new file mode 100644 index 00000000000..65f0e4959fb --- /dev/null +++ b/data/smartphone/xiaomi/2023/14-pro.json @@ -0,0 +1,33 @@ +{ + "slug": "14-pro", + "name": "14 Pro", + "brand": "xiaomi", + "soc": "snapdragon-8-gen-3", + "release_date": "2023-01-01", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 206.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 256, + 512 + ], + "display": { + "size_inch": 6.73 + }, + "cameras": [ + { + "type": "main", + "mp": 50.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "msrp_usd": 799 +} diff --git a/data/smartphone/xiaomi/2023/14.json b/data/smartphone/xiaomi/2023/14.json new file mode 100644 index 00000000000..814a78b34ad --- /dev/null +++ b/data/smartphone/xiaomi/2023/14.json @@ -0,0 +1,33 @@ +{ + "slug": "14", + "name": "14", + "brand": "xiaomi", + "soc": "snapdragon-8-gen-3", + "release_date": "2023-01-01", + "ram_gb": 12.0, + "battery_mah": 4610, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 256, + 512 + ], + "display": { + "size_inch": 6.36 + }, + "cameras": [ + { + "type": "main", + "mp": 50.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "msrp_usd": 699 +} diff --git a/data/smartphone/xiaomi/2024/14t-pro.json b/data/smartphone/xiaomi/2024/14t-pro.json new file mode 100644 index 00000000000..3e5b812d85f --- /dev/null +++ b/data/smartphone/xiaomi/2024/14t-pro.json @@ -0,0 +1,34 @@ +{ + "slug": "14t-pro", + "name": "14T Pro", + "brand": "xiaomi", + "soc": "dimensity-9300-plus", + "release_date": "2024-01-01", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 209.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 256, + 512, + 1024 + ], + "display": { + "size_inch": 6.67 + }, + "cameras": [ + { + "type": "main", + "mp": 50.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "msrp_usd": 635 +} diff --git a/data/smartphone/xiaomi/2024/15-pro.json b/data/smartphone/xiaomi/2024/15-pro.json new file mode 100644 index 00000000000..7d19321ec30 --- /dev/null +++ b/data/smartphone/xiaomi/2024/15-pro.json @@ -0,0 +1,34 @@ +{ + "slug": "15-pro", + "name": "15 Pro", + "brand": "xiaomi", + "soc": "snapdragon-8-elite", + "release_date": "2024-01-01", + "ram_gb": 16.0, + "battery_mah": 6100, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 256, + 512, + 1024 + ], + "display": { + "size_inch": 6.73 + }, + "cameras": [ + { + "type": "main", + "mp": 50.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "msrp_usd": 799 +} diff --git a/data/smartphone/xiaomi/2024/15.json b/data/smartphone/xiaomi/2024/15.json new file mode 100644 index 00000000000..19804920093 --- /dev/null +++ b/data/smartphone/xiaomi/2024/15.json @@ -0,0 +1,33 @@ +{ + "slug": "15", + "name": "15", + "brand": "xiaomi", + "soc": "snapdragon-8-elite", + "release_date": "2024-01-01", + "ram_gb": 16.0, + "battery_mah": 5400, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "storage_options_gb": [ + 256, + 512 + ], + "display": { + "size_inch": 6.36 + }, + "cameras": [ + { + "type": "main", + "mp": 50.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "msrp_usd": 699 +} diff --git a/data/smartphone/zte/2015/blade-v220-lte-emea-avea-intouch-4.json b/data/smartphone/zte/2015/blade-v220-lte-emea-avea-intouch-4.json new file mode 100644 index 00000000000..8512d41c859 --- /dev/null +++ b/data/smartphone/zte/2015/blade-v220-lte-emea-avea-intouch-4.json @@ -0,0 +1,41 @@ +{ + "slug": "blade-v220-lte-emea-avea-intouch-4", + "name": "Blade V220 LTE EMEA / Avea inTouch 4", + "brand": "zte", + "soc": "snapdragon-410", + "release_date": "2015-03-01", + "ram_gb": 1.0, + "battery_mah": 2100, + "weight_g": 140.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "4.4", + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Cyprus , France , Germany , Greece , Italy , Netherlands , Spain , Turkey", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/zte/2017/blade-a522-global-dual-sim-lte.json b/data/smartphone/zte/2017/blade-a522-global-dual-sim-lte.json new file mode 100644 index 00000000000..d5300e0fdbb --- /dev/null +++ b/data/smartphone/zte/2017/blade-a522-global-dual-sim-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "blade-a522-global-dual-sim-lte", + "name": "Blade A522 Global Dual SIM LTE", + "brand": "zte", + "soc": "snapdragon-425", + "release_date": "2017-10-01", + "ram_gb": 2.0, + "battery_mah": 2730, + "weight_g": 131.6, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "market_countries": "Malaysia , Russia , Ukraine", + "market_regions": "Eastern Europe , Europe , Southeast Asia" +} diff --git a/data/smartphone/zte/2017/z557bl-zfive-g-lte-us.json b/data/smartphone/zte/2017/z557bl-zfive-g-lte-us.json new file mode 100644 index 00000000000..2131dbfe6bf --- /dev/null +++ b/data/smartphone/zte/2017/z557bl-zfive-g-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "z557bl-zfive-g-lte-us", + "name": "Z557BL ZFive G LTE US", + "brand": "zte", + "soc": "snapdragon-210", + "release_date": "2017-11-01", + "ram_gb": 1.0, + "battery_mah": 2200, + "weight_g": 141.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.0, + "resolution": "480x854", + "type": "Color IPS TFT LCD display", + "ppi": 196 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/zte/2017/z558vl-zfive-c-lte-us.json b/data/smartphone/zte/2017/z558vl-zfive-c-lte-us.json new file mode 100644 index 00000000000..ee2c2dbd4d0 --- /dev/null +++ b/data/smartphone/zte/2017/z558vl-zfive-c-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "z558vl-zfive-c-lte-us", + "name": "Z558VL ZFive C LTE US", + "brand": "zte", + "soc": "snapdragon-210", + "release_date": "2017-11-01", + "ram_gb": 1.0, + "battery_mah": 2200, + "weight_g": 141.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.0, + "resolution": "480x854", + "type": "Color IPS TFT LCD display", + "ppi": 196 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/zte/2017/z815-fanfare-2-lte-us.json b/data/smartphone/zte/2017/z815-fanfare-2-lte-us.json new file mode 100644 index 00000000000..6c57ac729c1 --- /dev/null +++ b/data/smartphone/zte/2017/z815-fanfare-2-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "z815-fanfare-2-lte-us", + "name": "Z815 Fanfare 2 LTE US", + "brand": "zte", + "soc": "snapdragon-210", + "release_date": "2017-01-01", + "ram_gb": 1.0, + "battery_mah": 2200, + "weight_g": 130.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "6.0", + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 4.49, + "resolution": "480x854", + "type": "Color TN-TFT LCD display", + "ppi": 218 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/zte/2017/z836bl-zfive-2-lte-us.json b/data/smartphone/zte/2017/z836bl-zfive-2-lte-us.json new file mode 100644 index 00000000000..68e1c13fdb2 --- /dev/null +++ b/data/smartphone/zte/2017/z836bl-zfive-2-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "z836bl-zfive-2-lte-us", + "name": "Z836BL ZFive 2 LTE US", + "brand": "zte", + "soc": "snapdragon-425", + "release_date": "2017-07-01", + "ram_gb": 1.0, + "battery_mah": 2800, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "6.0", + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/zte/2017/z837vl-zfive-2-lte-us.json b/data/smartphone/zte/2017/z837vl-zfive-2-lte-us.json new file mode 100644 index 00000000000..7ff8f3b069b --- /dev/null +++ b/data/smartphone/zte/2017/z837vl-zfive-2-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "z837vl-zfive-2-lte-us", + "name": "Z837VL ZFive 2 LTE US", + "brand": "zte", + "soc": "snapdragon-425", + "release_date": "2017-07-01", + "ram_gb": 1.0, + "battery_mah": 2800, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "6.0", + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/zte/2017/z851m-overture-3-lte-us.json b/data/smartphone/zte/2017/z851m-overture-3-lte-us.json new file mode 100644 index 00000000000..e41592f80f6 --- /dev/null +++ b/data/smartphone/zte/2017/z851m-overture-3-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "z851m-overture-3-lte-us", + "name": "Z851M Overture 3 LTE US", + "brand": "zte", + "soc": "snapdragon-210", + "release_date": "2017-11-01", + "ram_gb": 2.0, + "battery_mah": 2115, + "weight_g": 158.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "480x854", + "type": "Color TN-TFT LCD display", + "ppi": 196 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/zte/2017/z852-fanfare-3-lte-us.json b/data/smartphone/zte/2017/z852-fanfare-3-lte-us.json new file mode 100644 index 00000000000..4c474d9aad2 --- /dev/null +++ b/data/smartphone/zte/2017/z852-fanfare-3-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "z852-fanfare-3-lte-us", + "name": "Z852 Fanfare 3 LTE US", + "brand": "zte", + "soc": "snapdragon-210", + "release_date": "2017-10-01", + "ram_gb": 1.0, + "battery_mah": 2250, + "weight_g": 141.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.0, + "resolution": "480x854", + "type": "Color TN-TFT LCD display", + "ppi": 196 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/zte/2017/z855-avid-4-lte-us.json b/data/smartphone/zte/2017/z855-avid-4-lte-us.json new file mode 100644 index 00000000000..7acbc0f99cf --- /dev/null +++ b/data/smartphone/zte/2017/z855-avid-4-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "z855-avid-4-lte-us", + "name": "Z855 Avid 4 LTE US", + "brand": "zte", + "soc": "snapdragon-210", + "release_date": "2017-10-01", + "ram_gb": 1.0, + "battery_mah": 2520, + "weight_g": 158.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.0", + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.0, + "resolution": "480x854", + "type": "Color TN-TFT LCD display", + "ppi": 196 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/zte/2018/a0722-blade-a7-vita-dual-sim-td-lte-cn-32gb.json b/data/smartphone/zte/2018/a0722-blade-a7-vita-dual-sim-td-lte-cn-32gb.json new file mode 100644 index 00000000000..5aacc3241c3 --- /dev/null +++ b/data/smartphone/zte/2018/a0722-blade-a7-vita-dual-sim-td-lte-cn-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "a0722-blade-a7-vita-dual-sim-td-lte-cn-32gb", + "name": "A0722 Blade A7 Vita Dual SIM TD-LTE CN 32GB", + "brand": "zte", + "soc": "snapdragon-425", + "release_date": "2018-08-01", + "ram_gb": 3.0, + "battery_mah": 3100, + "weight_g": 135.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2018/a0722-blade-a7-vita-global-dual-sim-td-lte-16gb.json b/data/smartphone/zte/2018/a0722-blade-a7-vita-global-dual-sim-td-lte-16gb.json new file mode 100644 index 00000000000..c88ad4b56f6 --- /dev/null +++ b/data/smartphone/zte/2018/a0722-blade-a7-vita-global-dual-sim-td-lte-16gb.json @@ -0,0 +1,41 @@ +{ + "slug": "a0722-blade-a7-vita-global-dual-sim-td-lte-16gb", + "name": "A0722 Blade A7 Vita Global Dual SIM TD-LTE 16GB", + "brand": "zte", + "soc": "snapdragon-425", + "release_date": "2018-09-01", + "ram_gb": 2.0, + "battery_mah": 3100, + "weight_g": 135.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Germany , Russia , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/zte/2018/axon-9-pro-dual-sim-td-lte-cn-256gb-a2019.json b/data/smartphone/zte/2018/axon-9-pro-dual-sim-td-lte-cn-256gb-a2019.json new file mode 100644 index 00000000000..5c437255aa1 --- /dev/null +++ b/data/smartphone/zte/2018/axon-9-pro-dual-sim-td-lte-cn-256gb-a2019.json @@ -0,0 +1,41 @@ +{ + "slug": "axon-9-pro-dual-sim-td-lte-cn-256gb-a2019", + "name": "Axon 9 Pro Dual SIM TD-LTE CN 256GB A2019", + "brand": "zte", + "soc": "snapdragon-845", + "release_date": "2018-09-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2248", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2018/axon-9-pro-lte-a-emea-64gb-a2019g.json b/data/smartphone/zte/2018/axon-9-pro-lte-a-emea-64gb-a2019g.json new file mode 100644 index 00000000000..7a85183e21a --- /dev/null +++ b/data/smartphone/zte/2018/axon-9-pro-lte-a-emea-64gb-a2019g.json @@ -0,0 +1,41 @@ +{ + "slug": "axon-9-pro-lte-a-emea-64gb-a2019g", + "name": "Axon 9 Pro LTE-A EMEA 64GB A2019G", + "brand": "zte", + "soc": "snapdragon-845", + "release_date": "2018-10-22", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2248", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , France , Germany , Italy , Netherlands , Poland , Russia , Saudi Arabia , Spain , UAE , UK", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/zte/2018/blade-a512-global-dual-sim-lte.json b/data/smartphone/zte/2018/blade-a512-global-dual-sim-lte.json new file mode 100644 index 00000000000..36226d112cf --- /dev/null +++ b/data/smartphone/zte/2018/blade-a512-global-dual-sim-lte.json @@ -0,0 +1,41 @@ +{ + "slug": "blade-a512-global-dual-sim-lte", + "name": "Blade A512 Global Dual SIM LTE", + "brand": "zte", + "soc": "snapdragon-425", + "release_date": "2018-04-09", + "ram_gb": 2.0, + "battery_mah": 2450, + "weight_g": 130.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "6.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.2, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "market_countries": "Malaysia , Russia , Ukraine", + "market_regions": "Eastern Europe , Europe , Southeast Asia" +} diff --git a/data/smartphone/zte/2018/blade-max-2s-dual-sim-lte-us-z6410s.json b/data/smartphone/zte/2018/blade-max-2s-dual-sim-lte-us-z6410s.json new file mode 100644 index 00000000000..eea83daee16 --- /dev/null +++ b/data/smartphone/zte/2018/blade-max-2s-dual-sim-lte-us-z6410s.json @@ -0,0 +1,41 @@ +{ + "slug": "blade-max-2s-dual-sim-lte-us-z6410s", + "name": "Blade Max 2s Dual SIM LTE US Z6410S", + "brand": "zte", + "soc": "snapdragon-435", + "release_date": "2018-11-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 180.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/zte/2018/blade-max-view-lte-us-z610dl.json b/data/smartphone/zte/2018/blade-max-view-lte-us-z610dl.json new file mode 100644 index 00000000000..cc04e9a5b82 --- /dev/null +++ b/data/smartphone/zte/2018/blade-max-view-lte-us-z610dl.json @@ -0,0 +1,41 @@ +{ + "slug": "blade-max-view-lte-us-z610dl", + "name": "Blade Max View LTE US Z610DL", + "brand": "zte", + "soc": "snapdragon-435", + "release_date": "2018-11-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 159.9, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/zte/2018/blade-v8q-dual-sim-td-lte-jp.json b/data/smartphone/zte/2018/blade-v8q-dual-sim-td-lte-jp.json new file mode 100644 index 00000000000..5c5c1021589 --- /dev/null +++ b/data/smartphone/zte/2018/blade-v8q-dual-sim-td-lte-jp.json @@ -0,0 +1,41 @@ +{ + "slug": "blade-v8q-dual-sim-td-lte-jp", + "name": "Blade V8Q Dual SIM TD-LTE JP", + "brand": "zte", + "soc": "snapdragon-435", + "release_date": "2018-05-01", + "ram_gb": 4.0, + "battery_mah": 2500, + "weight_g": 132.3, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2018/blade-v9-dual-sim-lte-a-am-version-2-32gb.json b/data/smartphone/zte/2018/blade-v9-dual-sim-lte-a-am-version-2-32gb.json new file mode 100644 index 00000000000..f7656639a31 --- /dev/null +++ b/data/smartphone/zte/2018/blade-v9-dual-sim-lte-a-am-version-2-32gb.json @@ -0,0 +1,41 @@ +{ + "slug": "blade-v9-dual-sim-lte-a-am-version-2-32gb", + "name": "Blade V9 Dual SIM LTE-A AM Version 2 32GB", + "brand": "zte", + "soc": "snapdragon-450", + "release_date": "2018-03-01", + "ram_gb": 3.0, + "battery_mah": 3200, + "weight_g": 140.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Brazil , USA", + "market_regions": "North America , South America" +} diff --git a/data/smartphone/zte/2018/blade-v9-dual-sim-td-lte-cn-32gb-v0900.json b/data/smartphone/zte/2018/blade-v9-dual-sim-td-lte-cn-32gb-v0900.json new file mode 100644 index 00000000000..b53d2f622a7 --- /dev/null +++ b/data/smartphone/zte/2018/blade-v9-dual-sim-td-lte-cn-32gb-v0900.json @@ -0,0 +1,41 @@ +{ + "slug": "blade-v9-dual-sim-td-lte-cn-32gb-v0900", + "name": "Blade V9 Dual SIM TD-LTE CN 32GB V0900", + "brand": "zte", + "soc": "snapdragon-450", + "release_date": "2018-08-16", + "ram_gb": 4.0, + "battery_mah": 3100, + "weight_g": 140.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/zte/2018/blade-v9-dual-sim-td-lte-cn-64gb-v0900.json b/data/smartphone/zte/2018/blade-v9-dual-sim-td-lte-cn-64gb-v0900.json new file mode 100644 index 00000000000..d9e44e28a6d --- /dev/null +++ b/data/smartphone/zte/2018/blade-v9-dual-sim-td-lte-cn-64gb-v0900.json @@ -0,0 +1,41 @@ +{ + "slug": "blade-v9-dual-sim-td-lte-cn-64gb-v0900", + "name": "Blade V9 Dual SIM TD-LTE CN 64GB V0900", + "brand": "zte", + "soc": "snapdragon-450", + "release_date": "2018-08-16", + "ram_gb": 4.0, + "battery_mah": 3100, + "weight_g": 140.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/zte/2018/blade-v9-dual-sim-td-lte-version-3-16gb.json b/data/smartphone/zte/2018/blade-v9-dual-sim-td-lte-version-3-16gb.json new file mode 100644 index 00000000000..791683f1207 --- /dev/null +++ b/data/smartphone/zte/2018/blade-v9-dual-sim-td-lte-version-3-16gb.json @@ -0,0 +1,41 @@ +{ + "slug": "blade-v9-dual-sim-td-lte-version-3-16gb", + "name": "Blade V9 Dual SIM TD-LTE Version 3 16GB", + "brand": "zte", + "soc": "snapdragon-450", + "release_date": "2018-03-01", + "ram_gb": 2.0, + "battery_mah": 3200, + "weight_g": 140.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Brazil , India", + "market_regions": "Asia , South America , Southeast Asia" +} diff --git a/data/smartphone/zte/2018/blade-v9-vita-dual-sim-lte-am-v0920.json b/data/smartphone/zte/2018/blade-v9-vita-dual-sim-lte-am-v0920.json new file mode 100644 index 00000000000..c1c97dc7409 --- /dev/null +++ b/data/smartphone/zte/2018/blade-v9-vita-dual-sim-lte-am-v0920.json @@ -0,0 +1,41 @@ +{ + "slug": "blade-v9-vita-dual-sim-lte-am-v0920", + "name": "Blade V9 Vita Dual SIM LTE AM V0920", + "brand": "zte", + "soc": "snapdragon-435", + "release_date": "2018-03-01", + "ram_gb": 3.0, + "battery_mah": 3200, + "weight_g": 132.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/zte/2018/blade-v9-vita-dual-sim-td-lte-cn-v0920-xiaoxian-5s.json b/data/smartphone/zte/2018/blade-v9-vita-dual-sim-td-lte-cn-v0920-xiaoxian-5s.json new file mode 100644 index 00000000000..60e9f399906 --- /dev/null +++ b/data/smartphone/zte/2018/blade-v9-vita-dual-sim-td-lte-cn-v0920-xiaoxian-5s.json @@ -0,0 +1,41 @@ +{ + "slug": "blade-v9-vita-dual-sim-td-lte-cn-v0920-xiaoxian-5s", + "name": "Blade V9 Vita Dual SIM TD-LTE CN V0920 / Xiaoxian 5S", + "brand": "zte", + "soc": "snapdragon-435", + "release_date": "2018-04-11", + "ram_gb": 3.0, + "battery_mah": 3100, + "weight_g": 132.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/zte/2018/boost-jett-4gx-lte-au-b125.json b/data/smartphone/zte/2018/boost-jett-4gx-lte-au-b125.json new file mode 100644 index 00000000000..9fdd2af939e --- /dev/null +++ b/data/smartphone/zte/2018/boost-jett-4gx-lte-au-b125.json @@ -0,0 +1,41 @@ +{ + "slug": "boost-jett-4gx-lte-au-b125", + "name": "Boost Jett 4GX LTE AU B125", + "brand": "zte", + "soc": "snapdragon-210", + "release_date": "2018-12-31", + "ram_gb": 1.0, + "battery_mah": 1600, + "weight_g": 125.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 4.02, + "resolution": "480x800", + "type": "Color IPS TFT LCD display", + "ppi": 232 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 0.3 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Australia , NZ", + "market_regions": "Australia" +} diff --git a/data/smartphone/zte/2018/nubia-red-magic-dual-sim-td-lte-128gb-nx609j.json b/data/smartphone/zte/2018/nubia-red-magic-dual-sim-td-lte-128gb-nx609j.json new file mode 100644 index 00000000000..7812f1acbe6 --- /dev/null +++ b/data/smartphone/zte/2018/nubia-red-magic-dual-sim-td-lte-128gb-nx609j.json @@ -0,0 +1,41 @@ +{ + "slug": "nubia-red-magic-dual-sim-td-lte-128gb-nx609j", + "name": "Nubia Red Magic Dual SIM TD-LTE 128GB NX609J", + "brand": "zte", + "soc": "snapdragon-835", + "release_date": "2018-04-26", + "ram_gb": 8.0, + "battery_mah": 3800, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/zte/2018/nubia-red-magic-dual-sim-td-lte-64gb-nx609j.json b/data/smartphone/zte/2018/nubia-red-magic-dual-sim-td-lte-64gb-nx609j.json new file mode 100644 index 00000000000..b02401c3a75 --- /dev/null +++ b/data/smartphone/zte/2018/nubia-red-magic-dual-sim-td-lte-64gb-nx609j.json @@ -0,0 +1,41 @@ +{ + "slug": "nubia-red-magic-dual-sim-td-lte-64gb-nx609j", + "name": "Nubia Red Magic Dual SIM TD-LTE 64GB NX609J", + "brand": "zte", + "soc": "snapdragon-835", + "release_date": "2018-04-26", + "ram_gb": 6.0, + "battery_mah": 3800, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/zte/2018/nubia-red-magic-mars-global-dual-sim-td-lte-128gb-nx619j.json b/data/smartphone/zte/2018/nubia-red-magic-mars-global-dual-sim-td-lte-128gb-nx619j.json new file mode 100644 index 00000000000..bde1ef1b7e9 --- /dev/null +++ b/data/smartphone/zte/2018/nubia-red-magic-mars-global-dual-sim-td-lte-128gb-nx619j.json @@ -0,0 +1,41 @@ +{ + "slug": "nubia-red-magic-mars-global-dual-sim-td-lte-128gb-nx619j", + "name": "Nubia Red Magic Mars Global Dual SIM TD-LTE 128GB NX619J", + "brand": "zte", + "soc": "snapdragon-845", + "release_date": "2018-12-07", + "ram_gb": 8.0, + "battery_mah": 3800, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Brazil , Bulgaria , Canada , China , Croatia , Denmark , Estonia , Finland , France , Germany , HK , Hungary , Ireland , Israel , Italy , Japan , Latvia , Lithuania , Malaysia , Netherlands , Philippines , Poland , Portugal , Romania , Slovakia , Slovenia , South Korea , Spain , Switzerland , Sweden , Taiwan , UAE , UK , USA , Vietnam", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , North America , Oceania , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/zte/2018/nubia-red-magic-mars-global-dual-sim-td-lte-256gb-nx619j.json b/data/smartphone/zte/2018/nubia-red-magic-mars-global-dual-sim-td-lte-256gb-nx619j.json new file mode 100644 index 00000000000..a8555c2224a --- /dev/null +++ b/data/smartphone/zte/2018/nubia-red-magic-mars-global-dual-sim-td-lte-256gb-nx619j.json @@ -0,0 +1,41 @@ +{ + "slug": "nubia-red-magic-mars-global-dual-sim-td-lte-256gb-nx619j", + "name": "Nubia Red Magic Mars Global Dual SIM TD-LTE 256GB NX619J", + "brand": "zte", + "soc": "snapdragon-845", + "release_date": "2018-01-18", + "ram_gb": 10.0, + "battery_mah": 3800, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2018/nubia-red-magic-mars-global-dual-sim-td-lte-64gb-nx619j.json b/data/smartphone/zte/2018/nubia-red-magic-mars-global-dual-sim-td-lte-64gb-nx619j.json new file mode 100644 index 00000000000..da13fefa708 --- /dev/null +++ b/data/smartphone/zte/2018/nubia-red-magic-mars-global-dual-sim-td-lte-64gb-nx619j.json @@ -0,0 +1,41 @@ +{ + "slug": "nubia-red-magic-mars-global-dual-sim-td-lte-64gb-nx619j", + "name": "Nubia Red Magic Mars Global Dual SIM TD-LTE 64GB NX619J", + "brand": "zte", + "soc": "snapdragon-845", + "release_date": "2018-12-07", + "ram_gb": 6.0, + "battery_mah": 3800, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , France , Germany , HK , Italy , Japan , Spain , UK", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/zte/2018/nubia-v18-dual-sim-td-lte-cn.json b/data/smartphone/zte/2018/nubia-v18-dual-sim-td-lte-cn.json new file mode 100644 index 00000000000..94166f47355 --- /dev/null +++ b/data/smartphone/zte/2018/nubia-v18-dual-sim-td-lte-cn.json @@ -0,0 +1,41 @@ +{ + "slug": "nubia-v18-dual-sim-td-lte-cn", + "name": "Nubia V18 Dual SIM TD-LTE CN", + "brand": "zte", + "soc": "snapdragon-625", + "release_date": "2018-03-28", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 170.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.01, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2018/nubia-x-premium-edition-dual-sim-td-lte-cn-128gb-nx616j.json b/data/smartphone/zte/2018/nubia-x-premium-edition-dual-sim-td-lte-cn-128gb-nx616j.json new file mode 100644 index 00000000000..d2c22388970 --- /dev/null +++ b/data/smartphone/zte/2018/nubia-x-premium-edition-dual-sim-td-lte-cn-128gb-nx616j.json @@ -0,0 +1,37 @@ +{ + "slug": "nubia-x-premium-edition-dual-sim-td-lte-cn-128gb-nx616j", + "name": "Nubia X Premium Edition Dual SIM TD-LTE CN 128GB NX616J", + "brand": "zte", + "soc": "snapdragon-845", + "release_date": "2018-11-06", + "ram_gb": 8.0, + "battery_mah": 3800, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/zte/2018/nubia-x-premium-edition-dual-sim-td-lte-cn-256gb-nx616j.json b/data/smartphone/zte/2018/nubia-x-premium-edition-dual-sim-td-lte-cn-256gb-nx616j.json new file mode 100644 index 00000000000..51e89105ca1 --- /dev/null +++ b/data/smartphone/zte/2018/nubia-x-premium-edition-dual-sim-td-lte-cn-256gb-nx616j.json @@ -0,0 +1,37 @@ +{ + "slug": "nubia-x-premium-edition-dual-sim-td-lte-cn-256gb-nx616j", + "name": "Nubia X Premium Edition Dual SIM TD-LTE CN 256GB NX616J", + "brand": "zte", + "soc": "snapdragon-845", + "release_date": "2018-11-06", + "ram_gb": 8.0, + "battery_mah": 3800, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2018/nubia-x-standard-edition-dual-sim-td-lte-cn-64gb-nx616j.json b/data/smartphone/zte/2018/nubia-x-standard-edition-dual-sim-td-lte-cn-64gb-nx616j.json new file mode 100644 index 00000000000..0ab2bf22948 --- /dev/null +++ b/data/smartphone/zte/2018/nubia-x-standard-edition-dual-sim-td-lte-cn-64gb-nx616j.json @@ -0,0 +1,37 @@ +{ + "slug": "nubia-x-standard-edition-dual-sim-td-lte-cn-64gb-nx616j", + "name": "Nubia X Standard Edition Dual SIM TD-LTE CN 64GB NX616J", + "brand": "zte", + "soc": "snapdragon-845", + "release_date": "2018-11-06", + "ram_gb": 6.0, + "battery_mah": 3800, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2018/nubia-x-starry-night-collector-edition-dual-sim-td-lte-cn-512gb-nx616j.json b/data/smartphone/zte/2018/nubia-x-starry-night-collector-edition-dual-sim-td-lte-cn-512gb-nx616j.json new file mode 100644 index 00000000000..ffa94139426 --- /dev/null +++ b/data/smartphone/zte/2018/nubia-x-starry-night-collector-edition-dual-sim-td-lte-cn-512gb-nx616j.json @@ -0,0 +1,37 @@ +{ + "slug": "nubia-x-starry-night-collector-edition-dual-sim-td-lte-cn-512gb-nx616j", + "name": "Nubia X Starry Night Collector Edition Dual SIM TD-LTE CN 512GB NX616J", + "brand": "zte", + "soc": "snapdragon-845", + "release_date": "2018-12-24", + "ram_gb": 8.0, + "battery_mah": 3800, + "weight_g": 181.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2018/nubia-z18-dual-sim-td-lte-64gb-nx606j.json b/data/smartphone/zte/2018/nubia-z18-dual-sim-td-lte-64gb-nx606j.json new file mode 100644 index 00000000000..a71c91f5338 --- /dev/null +++ b/data/smartphone/zte/2018/nubia-z18-dual-sim-td-lte-64gb-nx606j.json @@ -0,0 +1,41 @@ +{ + "slug": "nubia-z18-dual-sim-td-lte-64gb-nx606j", + "name": "Nubia Z18 Dual SIM TD-LTE 64GB NX606J", + "brand": "zte", + "soc": "snapdragon-845", + "release_date": "2018-09-01", + "ram_gb": 6.0, + "battery_mah": 3450, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/zte/2018/nubia-z18-mini-dual-sim-td-lte-128gb-nx611j.json b/data/smartphone/zte/2018/nubia-z18-mini-dual-sim-td-lte-128gb-nx611j.json new file mode 100644 index 00000000000..1778aa55f61 --- /dev/null +++ b/data/smartphone/zte/2018/nubia-z18-mini-dual-sim-td-lte-128gb-nx611j.json @@ -0,0 +1,41 @@ +{ + "slug": "nubia-z18-mini-dual-sim-td-lte-128gb-nx611j", + "name": "Nubia Z18 mini Dual SIM TD-LTE 128GB NX611J", + "brand": "zte", + "soc": "snapdragon-660", + "release_date": "2018-04-19", + "ram_gb": 6.0, + "battery_mah": 3450, + "weight_g": 153.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/zte/2018/nubia-z18-mini-dual-sim-td-lte-64gb-nx611j.json b/data/smartphone/zte/2018/nubia-z18-mini-dual-sim-td-lte-64gb-nx611j.json new file mode 100644 index 00000000000..117516be42a --- /dev/null +++ b/data/smartphone/zte/2018/nubia-z18-mini-dual-sim-td-lte-64gb-nx611j.json @@ -0,0 +1,41 @@ +{ + "slug": "nubia-z18-mini-dual-sim-td-lte-64gb-nx611j", + "name": "Nubia Z18 mini Dual SIM TD-LTE 64GB NX611J", + "brand": "zte", + "soc": "snapdragon-660", + "release_date": "2018-04-19", + "ram_gb": 6.0, + "battery_mah": 3450, + "weight_g": 153.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/zte/2018/nubia-z18-van-gogh-edition-dual-sim-td-lte-128gb-nx606j.json b/data/smartphone/zte/2018/nubia-z18-van-gogh-edition-dual-sim-td-lte-128gb-nx606j.json new file mode 100644 index 00000000000..f5d1408cc70 --- /dev/null +++ b/data/smartphone/zte/2018/nubia-z18-van-gogh-edition-dual-sim-td-lte-128gb-nx606j.json @@ -0,0 +1,41 @@ +{ + "slug": "nubia-z18-van-gogh-edition-dual-sim-td-lte-128gb-nx606j", + "name": "Nubia Z18 Van Gogh Edition Dual SIM TD-LTE 128GB NX606J", + "brand": "zte", + "soc": "snapdragon-845", + "release_date": "2018-09-01", + "ram_gb": 8.0, + "battery_mah": 3450, + "weight_g": 172.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/zte/2018/nubia-z18s-premium-edition-dual-sim-td-lte-128gb.json b/data/smartphone/zte/2018/nubia-z18s-premium-edition-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..d42528a68a2 --- /dev/null +++ b/data/smartphone/zte/2018/nubia-z18s-premium-edition-dual-sim-td-lte-128gb.json @@ -0,0 +1,37 @@ +{ + "slug": "nubia-z18s-premium-edition-dual-sim-td-lte-128gb", + "name": "Nubia Z18s Premium Edition Dual SIM TD-LTE 128GB", + "brand": "zte", + "soc": "snapdragon-845", + "release_date": "2018-10-01", + "ram_gb": 8.0, + "battery_mah": 3800, + "weight_g": 178.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 22.6 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , HK", + "market_regions": "Asia , Southeast Asia" +} diff --git a/data/smartphone/zte/2018/tempo-go-td-lte-n9137go.json b/data/smartphone/zte/2018/tempo-go-td-lte-n9137go.json new file mode 100644 index 00000000000..5a37612b1a4 --- /dev/null +++ b/data/smartphone/zte/2018/tempo-go-td-lte-n9137go.json @@ -0,0 +1,41 @@ +{ + "slug": "tempo-go-td-lte-n9137go", + "name": "Tempo Go TD-LTE N9137GO", + "brand": "zte", + "soc": "snapdragon-210", + "release_date": "2018-03-01", + "ram_gb": 1.0, + "battery_mah": 2200, + "weight_g": 155.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.0, + "resolution": "480x854", + "type": "Color IPS TFT LCD display", + "ppi": 196 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/zte/2018/z6050-blade-a6-max-lte-au-optus-x-power.json b/data/smartphone/zte/2018/z6050-blade-a6-max-lte-au-optus-x-power.json new file mode 100644 index 00000000000..41187caf9ea --- /dev/null +++ b/data/smartphone/zte/2018/z6050-blade-a6-max-lte-au-optus-x-power.json @@ -0,0 +1,41 @@ +{ + "slug": "z6050-blade-a6-max-lte-au-optus-x-power", + "name": "Z6050 Blade A6 Max LTE AU / Optus X Power", + "brand": "zte", + "soc": "snapdragon-210", + "release_date": "2018-09-01", + "ram_gb": 1.0, + "battery_mah": 4000, + "weight_g": 161.5, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "7.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia", + "market_regions": "Australia" +} diff --git a/data/smartphone/zte/2019/axon-10-pro-5g-a2020n2-dual-sim-td-lte-cn-128gb.json b/data/smartphone/zte/2019/axon-10-pro-5g-a2020n2-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..f8a6b95a212 --- /dev/null +++ b/data/smartphone/zte/2019/axon-10-pro-5g-a2020n2-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "axon-10-pro-5g-a2020n2-dual-sim-td-lte-cn-128gb", + "name": "Axon 10 Pro 5G A2020N2 Dual SIM TD-LTE CN 128GB", + "brand": "zte", + "soc": "snapdragon-855", + "release_date": "2019-07-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2019/axon-10-pro-5g-a2020n2-dual-sim-td-lte-cn-256gb.json b/data/smartphone/zte/2019/axon-10-pro-5g-a2020n2-dual-sim-td-lte-cn-256gb.json new file mode 100644 index 00000000000..031f7cfd97b --- /dev/null +++ b/data/smartphone/zte/2019/axon-10-pro-5g-a2020n2-dual-sim-td-lte-cn-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "axon-10-pro-5g-a2020n2-dual-sim-td-lte-cn-256gb", + "name": "Axon 10 Pro 5G A2020N2 Dual SIM TD-LTE CN 256GB", + "brand": "zte", + "soc": "snapdragon-855", + "release_date": "2019-07-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2019/axon-10-pro-5g-a2020n3-premium-edition-dual-sim-td-lte-emea-128gb.json b/data/smartphone/zte/2019/axon-10-pro-5g-a2020n3-premium-edition-dual-sim-td-lte-emea-128gb.json new file mode 100644 index 00000000000..4c6268754ff --- /dev/null +++ b/data/smartphone/zte/2019/axon-10-pro-5g-a2020n3-premium-edition-dual-sim-td-lte-emea-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "axon-10-pro-5g-a2020n3-premium-edition-dual-sim-td-lte-emea-128gb", + "name": "Axon 10 Pro 5G A2020N3 Premium Edition Dual SIM TD-LTE EMEA 128GB", + "brand": "zte", + "soc": "snapdragon-855", + "release_date": "2019-05-29", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Finland , Germany , Jordan , Kuwait , Saudi Arabia , Spain , UAE , UK", + "market_regions": "Asia , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/zte/2019/axon-10-pro-5g-a2020n3-premium-edition-dual-sim-td-lte-emea-256gb.json b/data/smartphone/zte/2019/axon-10-pro-5g-a2020n3-premium-edition-dual-sim-td-lte-emea-256gb.json new file mode 100644 index 00000000000..d47dc9065dc --- /dev/null +++ b/data/smartphone/zte/2019/axon-10-pro-5g-a2020n3-premium-edition-dual-sim-td-lte-emea-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "axon-10-pro-5g-a2020n3-premium-edition-dual-sim-td-lte-emea-256gb", + "name": "Axon 10 Pro 5G A2020N3 Premium Edition Dual SIM TD-LTE EMEA 256GB", + "brand": "zte", + "soc": "snapdragon-855", + "release_date": "2019-05-29", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Finland , Germany , Jordan , Kuwait , Saudi Arabia , Spain , UAE , UK", + "market_regions": "Asia , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/zte/2019/axon-10-pro-a2020-premium-edition-dual-sim-td-lte-cn-256gb.json b/data/smartphone/zte/2019/axon-10-pro-a2020-premium-edition-dual-sim-td-lte-cn-256gb.json new file mode 100644 index 00000000000..6b1039c64ed --- /dev/null +++ b/data/smartphone/zte/2019/axon-10-pro-a2020-premium-edition-dual-sim-td-lte-cn-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "axon-10-pro-a2020-premium-edition-dual-sim-td-lte-cn-256gb", + "name": "Axon 10 Pro A2020 Premium Edition Dual SIM TD-LTE CN 256GB", + "brand": "zte", + "soc": "snapdragon-855", + "release_date": "2019-05-07", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2019/axon-10-pro-a2020-standard-edition-dual-sim-td-lte-cn-128gb.json b/data/smartphone/zte/2019/axon-10-pro-a2020-standard-edition-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..0e9aeed6104 --- /dev/null +++ b/data/smartphone/zte/2019/axon-10-pro-a2020-standard-edition-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "axon-10-pro-a2020-standard-edition-dual-sim-td-lte-cn-128gb", + "name": "Axon 10 Pro A2020 Standard Edition Dual SIM TD-LTE CN 128GB", + "brand": "zte", + "soc": "snapdragon-855", + "release_date": "2019-05-07", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2019/axon-10-pro-a2020-top-edition-dual-sim-td-lte-cn-256gb.json b/data/smartphone/zte/2019/axon-10-pro-a2020-top-edition-dual-sim-td-lte-cn-256gb.json new file mode 100644 index 00000000000..93f39f8bd83 --- /dev/null +++ b/data/smartphone/zte/2019/axon-10-pro-a2020-top-edition-dual-sim-td-lte-cn-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "axon-10-pro-a2020-top-edition-dual-sim-td-lte-cn-256gb", + "name": "Axon 10 Pro A2020 Top Edition Dual SIM TD-LTE CN 256GB", + "brand": "zte", + "soc": "snapdragon-855", + "release_date": "2019-05-07", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2019/axon-10-pro-a2020g-premium-edition-global-dual-sim-td-lte-256gb.json b/data/smartphone/zte/2019/axon-10-pro-a2020g-premium-edition-global-dual-sim-td-lte-256gb.json new file mode 100644 index 00000000000..8d63dca6f47 --- /dev/null +++ b/data/smartphone/zte/2019/axon-10-pro-a2020g-premium-edition-global-dual-sim-td-lte-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "axon-10-pro-a2020g-premium-edition-global-dual-sim-td-lte-256gb", + "name": "Axon 10 Pro A2020G Premium Edition Global Dual SIM TD-LTE 256GB", + "brand": "zte", + "soc": "snapdragon-855", + "release_date": "2019-07-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Finland , France , Germany , Spain , UK , USA", + "market_regions": "Eastern Europe , Europe , North America , Western Europe" +} diff --git a/data/smartphone/zte/2019/axon-10-pro-a2020g-standard-edition-global-dual-sim-td-lte-128gb-a2020ru.json b/data/smartphone/zte/2019/axon-10-pro-a2020g-standard-edition-global-dual-sim-td-lte-128gb-a2020ru.json new file mode 100644 index 00000000000..edaa09e4ebe --- /dev/null +++ b/data/smartphone/zte/2019/axon-10-pro-a2020g-standard-edition-global-dual-sim-td-lte-128gb-a2020ru.json @@ -0,0 +1,42 @@ +{ + "slug": "axon-10-pro-a2020g-standard-edition-global-dual-sim-td-lte-128gb-a2020ru", + "name": "Axon 10 Pro A2020G Standard Edition Global Dual SIM TD-LTE 128GB / A2020RU", + "brand": "zte", + "soc": "snapdragon-855", + "release_date": "2019-07-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Finland , France , Germany , Poland , Russia , Spain , Sweden , UK", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/zte/2019/axon-10-pro-a2020g-top-edition-global-dual-sim-td-lte-256gb.json b/data/smartphone/zte/2019/axon-10-pro-a2020g-top-edition-global-dual-sim-td-lte-256gb.json new file mode 100644 index 00000000000..c7427fedc66 --- /dev/null +++ b/data/smartphone/zte/2019/axon-10-pro-a2020g-top-edition-global-dual-sim-td-lte-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "axon-10-pro-a2020g-top-edition-global-dual-sim-td-lte-256gb", + "name": "Axon 10 Pro A2020G Top Edition Global Dual SIM TD-LTE 256GB", + "brand": "zte", + "soc": "snapdragon-855", + "release_date": "2019-08-27", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Finland , France , Germany , Spain , UK , USA", + "market_regions": "Eastern Europe , Europe , North America , Western Europe" +} diff --git a/data/smartphone/zte/2019/axon-9-dual-sim-td-lte-cn-64gb-a2019.json b/data/smartphone/zte/2019/axon-9-dual-sim-td-lte-cn-64gb-a2019.json new file mode 100644 index 00000000000..092b9dfafc1 --- /dev/null +++ b/data/smartphone/zte/2019/axon-9-dual-sim-td-lte-cn-64gb-a2019.json @@ -0,0 +1,41 @@ +{ + "slug": "axon-9-dual-sim-td-lte-cn-64gb-a2019", + "name": "Axon 9 Dual SIM TD-LTE CN 64GB A2019", + "brand": "zte", + "soc": "snapdragon-845", + "release_date": "2019-05-02", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 179.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2248", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2019/blade-20-smart-global-td-lte-128gb.json b/data/smartphone/zte/2019/blade-20-smart-global-td-lte-128gb.json new file mode 100644 index 00000000000..1baacd26615 --- /dev/null +++ b/data/smartphone/zte/2019/blade-20-smart-global-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "blade-20-smart-global-td-lte-128gb", + "name": "Blade 20 Smart Global TD-LTE 128GB", + "brand": "zte", + "soc": "helio-p60", + "release_date": "2019-11-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.49, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 265 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Russia , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe" +} diff --git a/data/smartphone/zte/2019/libero-s10-td-lte-jp-901zt.json b/data/smartphone/zte/2019/libero-s10-td-lte-jp-901zt.json new file mode 100644 index 00000000000..66cae2cace1 --- /dev/null +++ b/data/smartphone/zte/2019/libero-s10-td-lte-jp-901zt.json @@ -0,0 +1,41 @@ +{ + "slug": "libero-s10-td-lte-jp-901zt", + "name": "Libero S10 TD-LTE JP 901ZT", + "brand": "zte", + "soc": "snapdragon-450", + "release_date": "2019-11-08", + "ram_gb": 3.0, + "battery_mah": 3100, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2019/nubia-m3-dual-sim-td-lte-64gb-nx611j.json b/data/smartphone/zte/2019/nubia-m3-dual-sim-td-lte-64gb-nx611j.json new file mode 100644 index 00000000000..6e2a66d54bd --- /dev/null +++ b/data/smartphone/zte/2019/nubia-m3-dual-sim-td-lte-64gb-nx611j.json @@ -0,0 +1,41 @@ +{ + "slug": "nubia-m3-dual-sim-td-lte-64gb-nx611j", + "name": "Nubia M3 Dual SIM TD-LTE 64GB NX611J", + "brand": "zte", + "soc": "snapdragon-660", + "release_date": "2019-01-03", + "ram_gb": 6.0, + "battery_mah": 3450, + "weight_g": 153.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , Cyprus , Czech , France , Germany , Greece , HK , Italy , Poland , Portugal , Russia , Slovakia , Slovenia , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/zte/2019/nubia-red-magic-3-premium-edition-dual-sim-td-lte-na-128gb-nx629j.json b/data/smartphone/zte/2019/nubia-red-magic-3-premium-edition-dual-sim-td-lte-na-128gb-nx629j.json new file mode 100644 index 00000000000..b8ba2d1529d --- /dev/null +++ b/data/smartphone/zte/2019/nubia-red-magic-3-premium-edition-dual-sim-td-lte-na-128gb-nx629j.json @@ -0,0 +1,43 @@ +{ + "slug": "nubia-red-magic-3-premium-edition-dual-sim-td-lte-na-128gb-nx629j", + "name": "Nubia Red Magic 3 Premium Edition Dual SIM TD-LTE NA 128GB NX629J", + "brand": "zte", + "soc": "snapdragon-855", + "release_date": "2019-06-01", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/zte/2019/nubia-red-magic-3-premium-edition-dual-sim-td-lte-na-256gb-nx629j.json b/data/smartphone/zte/2019/nubia-red-magic-3-premium-edition-dual-sim-td-lte-na-256gb-nx629j.json new file mode 100644 index 00000000000..235fb92ebd5 --- /dev/null +++ b/data/smartphone/zte/2019/nubia-red-magic-3-premium-edition-dual-sim-td-lte-na-256gb-nx629j.json @@ -0,0 +1,43 @@ +{ + "slug": "nubia-red-magic-3-premium-edition-dual-sim-td-lte-na-256gb-nx629j", + "name": "Nubia Red Magic 3 Premium Edition Dual SIM TD-LTE NA 256GB NX629J", + "brand": "zte", + "soc": "snapdragon-855", + "release_date": "2019-06-01", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/zte/2019/nubia-red-magic-3-premium-edition-global-dual-sim-td-lte-128gb-nx629j.json b/data/smartphone/zte/2019/nubia-red-magic-3-premium-edition-global-dual-sim-td-lte-128gb-nx629j.json new file mode 100644 index 00000000000..5fd8d4c0011 --- /dev/null +++ b/data/smartphone/zte/2019/nubia-red-magic-3-premium-edition-global-dual-sim-td-lte-128gb-nx629j.json @@ -0,0 +1,43 @@ +{ + "slug": "nubia-red-magic-3-premium-edition-global-dual-sim-td-lte-128gb-nx629j", + "name": "Nubia Red Magic 3 Premium Edition Global Dual SIM TD-LTE 128GB NX629J", + "brand": "zte", + "soc": "snapdragon-855", + "release_date": "2019-05-03", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Bulgaria , China , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , India , Indonesia , Ireland , Israel , Japan , Kuwait , Latvia , Lithuania , Malaysia , Norway , Poland , Portugal , Romania , Russia , Singapore , Slovakia , Slovenia , Spain , Sweden , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Western Europe" +} diff --git a/data/smartphone/zte/2019/nubia-red-magic-3-premium-edition-global-dual-sim-td-lte-256gb-nx629j.json b/data/smartphone/zte/2019/nubia-red-magic-3-premium-edition-global-dual-sim-td-lte-256gb-nx629j.json new file mode 100644 index 00000000000..f6b1c762ba1 --- /dev/null +++ b/data/smartphone/zte/2019/nubia-red-magic-3-premium-edition-global-dual-sim-td-lte-256gb-nx629j.json @@ -0,0 +1,43 @@ +{ + "slug": "nubia-red-magic-3-premium-edition-global-dual-sim-td-lte-256gb-nx629j", + "name": "Nubia Red Magic 3 Premium Edition Global Dual SIM TD-LTE 256GB NX629J", + "brand": "zte", + "soc": "snapdragon-855", + "release_date": "2019-05-01", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Belgium , Bulgaria , China , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , India , Indonesia , Israel , Italy , Japan , Latvia , Lithuania , Malaysia , Netherlands , Norway , Poland , Portugal , Romania , Russia , Singapore , Slovakia , Slovenia , Spain , Sweden , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/zte/2019/nubia-red-magic-3-standard-edition-global-dual-sim-td-lte-128gb-nx629j.json b/data/smartphone/zte/2019/nubia-red-magic-3-standard-edition-global-dual-sim-td-lte-128gb-nx629j.json new file mode 100644 index 00000000000..d71a8b954b3 --- /dev/null +++ b/data/smartphone/zte/2019/nubia-red-magic-3-standard-edition-global-dual-sim-td-lte-128gb-nx629j.json @@ -0,0 +1,43 @@ +{ + "slug": "nubia-red-magic-3-standard-edition-global-dual-sim-td-lte-128gb-nx629j", + "name": "Nubia Red Magic 3 Standard Edition Global Dual SIM TD-LTE 128GB NX629J", + "brand": "zte", + "soc": "snapdragon-855", + "release_date": "2019-05-03", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , India , Indonesia , Malaysia , Russia", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia" +} diff --git a/data/smartphone/zte/2019/nubia-red-magic-3-standard-edition-global-dual-sim-td-lte-64gb-nx629j.json b/data/smartphone/zte/2019/nubia-red-magic-3-standard-edition-global-dual-sim-td-lte-64gb-nx629j.json new file mode 100644 index 00000000000..f7fdda48692 --- /dev/null +++ b/data/smartphone/zte/2019/nubia-red-magic-3-standard-edition-global-dual-sim-td-lte-64gb-nx629j.json @@ -0,0 +1,43 @@ +{ + "slug": "nubia-red-magic-3-standard-edition-global-dual-sim-td-lte-64gb-nx629j", + "name": "Nubia Red Magic 3 Standard Edition Global Dual SIM TD-LTE 64GB NX629J", + "brand": "zte", + "soc": "snapdragon-855", + "release_date": "2019-05-03", + "ram_gb": 6.0, + "battery_mah": 5000, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China , India , Indonesia , Malaysia , Russia", + "market_regions": "Asia , Eastern Europe , Europe , Southeast Asia" +} diff --git a/data/smartphone/zte/2019/nubia-red-magic-3s-premium-edition-global-dual-sim-td-lte-256gb-nx629j.json b/data/smartphone/zte/2019/nubia-red-magic-3s-premium-edition-global-dual-sim-td-lte-256gb-nx629j.json new file mode 100644 index 00000000000..97415eb0fa6 --- /dev/null +++ b/data/smartphone/zte/2019/nubia-red-magic-3s-premium-edition-global-dual-sim-td-lte-256gb-nx629j.json @@ -0,0 +1,43 @@ +{ + "slug": "nubia-red-magic-3s-premium-edition-global-dual-sim-td-lte-256gb-nx629j", + "name": "Nubia Red Magic 3S Premium Edition Global Dual SIM TD-LTE 256GB NX629J", + "brand": "zte", + "soc": "snapdragon-855-plus", + "release_date": "2019-09-09", + "ram_gb": 12.0, + "battery_mah": 5000, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Canada , China , Czech , Denmark , Finland , France , Germany , HK , Hungary , India , Indonesia , Israel , Italy , Japan , Netherlands , Poland , Singapore , Slovakia , Slovenia , Spain , Sweden , Switzerland , Taiwan , USA", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/zte/2019/nubia-red-magic-3s-standard-edition-global-dual-sim-td-lte-128gb-nx629j.json b/data/smartphone/zte/2019/nubia-red-magic-3s-standard-edition-global-dual-sim-td-lte-128gb-nx629j.json new file mode 100644 index 00000000000..c069605be87 --- /dev/null +++ b/data/smartphone/zte/2019/nubia-red-magic-3s-standard-edition-global-dual-sim-td-lte-128gb-nx629j.json @@ -0,0 +1,43 @@ +{ + "slug": "nubia-red-magic-3s-standard-edition-global-dual-sim-td-lte-128gb-nx629j", + "name": "Nubia Red Magic 3S Standard Edition Global Dual SIM TD-LTE 128GB NX629J", + "brand": "zte", + "soc": "snapdragon-855-plus", + "release_date": "2019-09-09", + "ram_gb": 8.0, + "battery_mah": 5000, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Canada , China , Cyprus , Croatia , Czech , Denmark , Finland , France , Germany , Greece , HK , Hungary , India , Indonesia , Israel , Italy , Japan , Netherlands , Poland , Singapore , Slovakia , Slovenia , Spain , Switzerland , Sweden , Taiwan , UK , USA", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/zte/2019/nubia-z20-premium-edition-dual-sim-td-lte-na-128gb-nx627j.json b/data/smartphone/zte/2019/nubia-z20-premium-edition-dual-sim-td-lte-na-128gb-nx627j.json new file mode 100644 index 00000000000..e19441c466f --- /dev/null +++ b/data/smartphone/zte/2019/nubia-z20-premium-edition-dual-sim-td-lte-na-128gb-nx627j.json @@ -0,0 +1,38 @@ +{ + "slug": "nubia-z20-premium-edition-dual-sim-td-lte-na-128gb-nx627j", + "name": "Nubia Z20 Premium Edition Dual SIM TD-LTE NA 128GB NX627J", + "brand": "zte", + "soc": "snapdragon-855-plus", + "release_date": "2019-10-14", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/zte/2019/nubia-z20-premium-edition-global-dual-sim-td-lte-128gb-nx627j.json b/data/smartphone/zte/2019/nubia-z20-premium-edition-global-dual-sim-td-lte-128gb-nx627j.json new file mode 100644 index 00000000000..8f9fc581f29 --- /dev/null +++ b/data/smartphone/zte/2019/nubia-z20-premium-edition-global-dual-sim-td-lte-128gb-nx627j.json @@ -0,0 +1,38 @@ +{ + "slug": "nubia-z20-premium-edition-global-dual-sim-td-lte-128gb-nx627j", + "name": "Nubia Z20 Premium Edition Global Dual SIM TD-LTE 128GB NX627J", + "brand": "zte", + "soc": "snapdragon-855-plus", + "release_date": "2019-08-16", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , China , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Indonesia , Ireland , Israel , Italy , Japan , Latvia , Lithuania , Netherlands , Norway , Pakistan , Poland , Portugal , Romania , Russia , Slovakia , Singapore , Slovenia , Spain , Switzerland , Sweden , Taiwan , UK , Ukraine", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/zte/2019/nubia-z20-premium-edition-global-dual-sim-td-lte-512gb-nx627j.json b/data/smartphone/zte/2019/nubia-z20-premium-edition-global-dual-sim-td-lte-512gb-nx627j.json new file mode 100644 index 00000000000..176e0729d81 --- /dev/null +++ b/data/smartphone/zte/2019/nubia-z20-premium-edition-global-dual-sim-td-lte-512gb-nx627j.json @@ -0,0 +1,38 @@ +{ + "slug": "nubia-z20-premium-edition-global-dual-sim-td-lte-512gb-nx627j", + "name": "Nubia Z20 Premium Edition Global Dual SIM TD-LTE 512GB NX627J", + "brand": "zte", + "soc": "snapdragon-855-plus", + "release_date": "2019-08-16", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2019/nubia-z20-standard-edition-dual-sim-td-lte-na-128gb-nx627j.json b/data/smartphone/zte/2019/nubia-z20-standard-edition-dual-sim-td-lte-na-128gb-nx627j.json new file mode 100644 index 00000000000..567313594a0 --- /dev/null +++ b/data/smartphone/zte/2019/nubia-z20-standard-edition-dual-sim-td-lte-na-128gb-nx627j.json @@ -0,0 +1,38 @@ +{ + "slug": "nubia-z20-standard-edition-dual-sim-td-lte-na-128gb-nx627j", + "name": "Nubia Z20 Standard Edition Dual SIM TD-LTE NA 128GB NX627J", + "brand": "zte", + "soc": "snapdragon-855-plus", + "release_date": "2019-10-14", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Canada , USA", + "market_regions": "North America" +} diff --git a/data/smartphone/zte/2019/nubia-z20-standard-edition-global-dual-sim-td-lte-128gb-nx627j.json b/data/smartphone/zte/2019/nubia-z20-standard-edition-global-dual-sim-td-lte-128gb-nx627j.json new file mode 100644 index 00000000000..e76224fcb10 --- /dev/null +++ b/data/smartphone/zte/2019/nubia-z20-standard-edition-global-dual-sim-td-lte-128gb-nx627j.json @@ -0,0 +1,38 @@ +{ + "slug": "nubia-z20-standard-edition-global-dual-sim-td-lte-128gb-nx627j", + "name": "Nubia Z20 Standard Edition Global Dual SIM TD-LTE 128GB NX627J", + "brand": "zte", + "soc": "snapdragon-855-plus", + "release_date": "2019-08-16", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "charging_wired_w": 27, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , China , Croatia , Cyprus , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Indonesia , Ireland , Israel , Italy , Japan , Latvia , Lithuania , Netherlands , Norway , Poland , Portugal , Romania , Singapore , Slovakia , Slovenia , Spain , Sweden , Switzerland , Taiwan , UK", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/zte/2019/optus-x-wave-td-lte-au.json b/data/smartphone/zte/2019/optus-x-wave-td-lte-au.json new file mode 100644 index 00000000000..0326143fd20 --- /dev/null +++ b/data/smartphone/zte/2019/optus-x-wave-td-lte-au.json @@ -0,0 +1,41 @@ +{ + "slug": "optus-x-wave-td-lte-au", + "name": "Optus X Wave TD-LTE AU", + "brand": "zte", + "soc": "helio-a22", + "release_date": "2019-10-13", + "ram_gb": 2.0, + "battery_mah": 3200, + "weight_g": 155.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Australia", + "market_regions": "Australia" +} diff --git a/data/smartphone/zte/2019/v1010-blade-v10-dual-sim-td-lte-cn-128gb.json b/data/smartphone/zte/2019/v1010-blade-v10-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..ec08ac57cf4 --- /dev/null +++ b/data/smartphone/zte/2019/v1010-blade-v10-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "v1010-blade-v10-dual-sim-td-lte-cn-128gb", + "name": "V1010 Blade V10 Dual SIM TD-LTE CN 128GB", + "brand": "zte", + "soc": "helio-p70", + "release_date": "2019-03-01", + "ram_gb": 4.0, + "battery_mah": 3200, + "weight_g": 154.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 8, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2019/v1010-blade-v10-dual-sim-td-lte-cn-32gb.json b/data/smartphone/zte/2019/v1010-blade-v10-dual-sim-td-lte-cn-32gb.json new file mode 100644 index 00000000000..17c567af2f3 --- /dev/null +++ b/data/smartphone/zte/2019/v1010-blade-v10-dual-sim-td-lte-cn-32gb.json @@ -0,0 +1,42 @@ +{ + "slug": "v1010-blade-v10-dual-sim-td-lte-cn-32gb", + "name": "V1010 Blade V10 Dual SIM TD-LTE CN 32GB", + "brand": "zte", + "soc": "helio-p70", + "release_date": "2019-03-12", + "ram_gb": 3.0, + "battery_mah": 3200, + "weight_g": 154.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 8, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2019/v1010-blade-v10-dual-sim-td-lte-cn-64gb.json b/data/smartphone/zte/2019/v1010-blade-v10-dual-sim-td-lte-cn-64gb.json new file mode 100644 index 00000000000..a01fa361647 --- /dev/null +++ b/data/smartphone/zte/2019/v1010-blade-v10-dual-sim-td-lte-cn-64gb.json @@ -0,0 +1,42 @@ +{ + "slug": "v1010-blade-v10-dual-sim-td-lte-cn-64gb", + "name": "V1010 Blade V10 Dual SIM TD-LTE CN 64GB", + "brand": "zte", + "soc": "helio-p70", + "release_date": "2019-03-12", + "ram_gb": 4.0, + "battery_mah": 3200, + "weight_g": 154.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 8, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2019/v1010-blade-v10-global-dual-sim-td-lte-64gb-blade-10.json b/data/smartphone/zte/2019/v1010-blade-v10-global-dual-sim-td-lte-64gb-blade-10.json new file mode 100644 index 00000000000..49442ef8493 --- /dev/null +++ b/data/smartphone/zte/2019/v1010-blade-v10-global-dual-sim-td-lte-64gb-blade-10.json @@ -0,0 +1,42 @@ +{ + "slug": "v1010-blade-v10-global-dual-sim-td-lte-64gb-blade-10", + "name": "V1010 Blade V10 Global Dual SIM TD-LTE 64GB / Blade 10", + "brand": "zte", + "soc": "helio-p70", + "release_date": "2019-04-01", + "ram_gb": 4.0, + "battery_mah": 3200, + "weight_g": 154.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 8, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Armenia , Austria , Germany , Kazakhstan , Russia , UK , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/zte/2019/v1050-blade-20-smart-td-lte-cn-128gb.json b/data/smartphone/zte/2019/v1050-blade-20-smart-td-lte-cn-128gb.json new file mode 100644 index 00000000000..82407b7a6d7 --- /dev/null +++ b/data/smartphone/zte/2019/v1050-blade-20-smart-td-lte-cn-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "v1050-blade-20-smart-td-lte-cn-128gb", + "name": "V1050 Blade 20 Smart TD-LTE CN 128GB", + "brand": "zte", + "soc": "helio-p60", + "release_date": "2019-10-28", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.49, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 265 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2019/z3153vpp-blade-vantage-2-lte-us-z3153v.json b/data/smartphone/zte/2019/z3153vpp-blade-vantage-2-lte-us-z3153v.json new file mode 100644 index 00000000000..757c07b3181 --- /dev/null +++ b/data/smartphone/zte/2019/z3153vpp-blade-vantage-2-lte-us-z3153v.json @@ -0,0 +1,41 @@ +{ + "slug": "z3153vpp-blade-vantage-2-lte-us-z3153v", + "name": "Z3153VPP Blade Vantage 2 LTE US Z3153V", + "brand": "zte", + "soc": "helio-a22", + "release_date": "2019-09-01", + "ram_gb": 2.0, + "battery_mah": 2050, + "weight_g": 150.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "480x960", + "type": "Color TN-TFT LCD display", + "ppi": 215 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/zte/2019/z5031o-optus-x-spirit-2-lte-au.json b/data/smartphone/zte/2019/z5031o-optus-x-spirit-2-lte-au.json new file mode 100644 index 00000000000..4816f8a148a --- /dev/null +++ b/data/smartphone/zte/2019/z5031o-optus-x-spirit-2-lte-au.json @@ -0,0 +1,41 @@ +{ + "slug": "z5031o-optus-x-spirit-2-lte-au", + "name": "Z5031O Optus X Spirit 2 LTE AU", + "brand": "zte", + "soc": "snapdragon-210", + "release_date": "2019-01-01", + "ram_gb": 1.0, + "battery_mah": 2450, + "weight_g": 153.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.34, + "resolution": "480x960", + "type": "Color TN-TFT LCD display", + "ppi": 201 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "Australia", + "market_regions": "Australia" +} diff --git a/data/smartphone/zte/2019/z5151vs-blade-visible-r2-lte-us.json b/data/smartphone/zte/2019/z5151vs-blade-visible-r2-lte-us.json new file mode 100644 index 00000000000..10ee547cadb --- /dev/null +++ b/data/smartphone/zte/2019/z5151vs-blade-visible-r2-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "z5151vs-blade-visible-r2-lte-us", + "name": "Z5151VS Blade Visible R2 LTE US", + "brand": "zte", + "soc": "snapdragon-425", + "release_date": "2019-04-01", + "ram_gb": 2.0, + "battery_mah": 3200, + "weight_g": 139.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/zte/2019/z559dl-blade-t2-lite-4g-lte-us.json b/data/smartphone/zte/2019/z559dl-blade-t2-lite-4g-lte-us.json new file mode 100644 index 00000000000..226ab72d597 --- /dev/null +++ b/data/smartphone/zte/2019/z559dl-blade-t2-lite-4g-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "z559dl-blade-t2-lite-4g-lte-us", + "name": "Z559DL Blade T2 Lite 4G LTE US", + "brand": "zte", + "soc": "snapdragon-210", + "release_date": "2019-06-01", + "ram_gb": 2.0, + "battery_mah": 2200, + "weight_g": 141.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "480x854", + "type": "Color IPS TFT LCD display", + "ppi": 196 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/zte/2019/z5g31-gabb-z1-lte-us.json b/data/smartphone/zte/2019/z5g31-gabb-z1-lte-us.json new file mode 100644 index 00000000000..0b50d4dd62d --- /dev/null +++ b/data/smartphone/zte/2019/z5g31-gabb-z1-lte-us.json @@ -0,0 +1,41 @@ +{ + "slug": "z5g31-gabb-z1-lte-us", + "name": "Z5G31 Gabb Z1 LTE US", + "brand": "zte", + "soc": "snapdragon-210", + "release_date": "2019-09-01", + "ram_gb": 2.0, + "battery_mah": 2200, + "weight_g": 141.7, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "8.1", + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "480x854", + "type": "Color IPS TFT LCD display", + "ppi": 196 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/zte/2019/z620-blade-a7-prime-dual-sim-lte-z6201vs.json b/data/smartphone/zte/2019/z620-blade-a7-prime-dual-sim-lte-z6201vs.json new file mode 100644 index 00000000000..06b69bd32cd --- /dev/null +++ b/data/smartphone/zte/2019/z620-blade-a7-prime-dual-sim-lte-z6201vs.json @@ -0,0 +1,41 @@ +{ + "slug": "z620-blade-a7-prime-dual-sim-lte-z6201vs", + "name": "Z620 Blade A7 Prime Dual SIM LTE Z6201VS", + "brand": "zte", + "soc": "helio-a22", + "release_date": "2019-11-28", + "ram_gb": 3.0, + "battery_mah": 3200, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/zte/2019/z6530v-blade-10-prime-lte-a-us-z6530vs.json b/data/smartphone/zte/2019/z6530v-blade-10-prime-lte-a-us-z6530vs.json new file mode 100644 index 00000000000..9ddbc29902a --- /dev/null +++ b/data/smartphone/zte/2019/z6530v-blade-10-prime-lte-a-us-z6530vs.json @@ -0,0 +1,41 @@ +{ + "slug": "z6530v-blade-10-prime-lte-a-us-z6530vs", + "name": "Z6530V Blade 10 Prime LTE-A US Z6530VS", + "brand": "zte", + "soc": "helio-p60", + "release_date": "2019-11-01", + "ram_gb": 3.0, + "battery_mah": 3100, + "weight_g": 165.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "USA", + "market_regions": "Central America , North America" +} diff --git a/data/smartphone/zte/2020/a1-5g-td-lte-jp-ztg01.json b/data/smartphone/zte/2020/a1-5g-td-lte-jp-ztg01.json new file mode 100644 index 00000000000..1f9f31756ba --- /dev/null +++ b/data/smartphone/zte/2020/a1-5g-td-lte-jp-ztg01.json @@ -0,0 +1,41 @@ +{ + "slug": "a1-5g-td-lte-jp-ztg01", + "name": "a1 5G TD-LTE JP ZTG01", + "brand": "zte", + "soc": "snapdragon-765", + "release_date": "2020-07-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2020/axon-10-pro-5g-td-lte-jp-902zt.json b/data/smartphone/zte/2020/axon-10-pro-5g-td-lte-jp-902zt.json new file mode 100644 index 00000000000..3e80298e359 --- /dev/null +++ b/data/smartphone/zte/2020/axon-10-pro-5g-td-lte-jp-902zt.json @@ -0,0 +1,41 @@ +{ + "slug": "axon-10-pro-5g-td-lte-jp-902zt", + "name": "Axon 10 Pro 5G TD-LTE JP 902ZT", + "brand": "zte", + "soc": "snapdragon-865", + "release_date": "2020-03-27", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2020/axon-10s-pro-5g-a2020-sp-dual-sim-td-lte-cn-128gb.json b/data/smartphone/zte/2020/axon-10s-pro-5g-a2020-sp-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..fb925767ee0 --- /dev/null +++ b/data/smartphone/zte/2020/axon-10s-pro-5g-a2020-sp-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "axon-10s-pro-5g-a2020-sp-dual-sim-td-lte-cn-128gb", + "name": "Axon 10S Pro 5G A2020 SP Dual SIM TD-LTE CN 128GB", + "brand": "zte", + "soc": "snapdragon-865", + "release_date": "2020-02-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2020/axon-10s-pro-5g-a2020-sp-dual-sim-td-lte-cn-256gb.json b/data/smartphone/zte/2020/axon-10s-pro-5g-a2020-sp-dual-sim-td-lte-cn-256gb.json new file mode 100644 index 00000000000..824ff8ffd6e --- /dev/null +++ b/data/smartphone/zte/2020/axon-10s-pro-5g-a2020-sp-dual-sim-td-lte-cn-256gb.json @@ -0,0 +1,41 @@ +{ + "slug": "axon-10s-pro-5g-a2020-sp-dual-sim-td-lte-cn-256gb", + "name": "Axon 10S Pro 5G A2020 SP Dual SIM TD-LTE CN 256GB", + "brand": "zte", + "soc": "snapdragon-865", + "release_date": "2020-02-01", + "ram_gb": 12.0, + "battery_mah": 4000, + "weight_g": 175.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2020/axon-11-4g-global-dual-sim-lte-a-128gb.json b/data/smartphone/zte/2020/axon-11-4g-global-dual-sim-lte-a-128gb.json new file mode 100644 index 00000000000..98971ad291a --- /dev/null +++ b/data/smartphone/zte/2020/axon-11-4g-global-dual-sim-lte-a-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "axon-11-4g-global-dual-sim-lte-a-128gb", + "name": "Axon 11 4G Global Dual SIM LTE-A 128GB", + "brand": "zte", + "soc": "helio-p70", + "release_date": "2020-06-17", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Germany , UK", + "market_regions": "Europe , Western Europe" +} diff --git a/data/smartphone/zte/2020/axon-11-5g-premium-edition-a2021-dual-sim-td-lte-cn-128gb.json b/data/smartphone/zte/2020/axon-11-5g-premium-edition-a2021-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..0d602a90e64 --- /dev/null +++ b/data/smartphone/zte/2020/axon-11-5g-premium-edition-a2021-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "axon-11-5g-premium-edition-a2021-dual-sim-td-lte-cn-128gb", + "name": "Axon 11 5G Premium Edition A2021 Dual SIM TD-LTE CN 128GB", + "brand": "zte", + "soc": "snapdragon-765", + "release_date": "2020-03-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2020/axon-11-5g-premium-edition-a2021-dual-sim-td-lte-cn-256gb-a2021h.json b/data/smartphone/zte/2020/axon-11-5g-premium-edition-a2021-dual-sim-td-lte-cn-256gb-a2021h.json new file mode 100644 index 00000000000..5c30eb27fc0 --- /dev/null +++ b/data/smartphone/zte/2020/axon-11-5g-premium-edition-a2021-dual-sim-td-lte-cn-256gb-a2021h.json @@ -0,0 +1,41 @@ +{ + "slug": "axon-11-5g-premium-edition-a2021-dual-sim-td-lte-cn-256gb-a2021h", + "name": "Axon 11 5G Premium Edition A2021 Dual SIM TD-LTE CN 256GB / A2021H", + "brand": "zte", + "soc": "snapdragon-765", + "release_date": "2020-03-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2020/axon-11-5g-premium-edition-a2021-global-dual-sim-td-lte-256gb.json b/data/smartphone/zte/2020/axon-11-5g-premium-edition-a2021-global-dual-sim-td-lte-256gb.json new file mode 100644 index 00000000000..2e215cd6876 --- /dev/null +++ b/data/smartphone/zte/2020/axon-11-5g-premium-edition-a2021-global-dual-sim-td-lte-256gb.json @@ -0,0 +1,42 @@ +{ + "slug": "axon-11-5g-premium-edition-a2021-global-dual-sim-td-lte-256gb", + "name": "Axon 11 5G Premium Edition A2021 Global Dual SIM TD-LTE 256GB", + "brand": "zte", + "soc": "snapdragon-765", + "release_date": "2020-06-17", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Germany , Mexico , Saudi Arabia , UAE", + "market_regions": "Asia , Middle East , North America" +} diff --git a/data/smartphone/zte/2020/axon-11-5g-standard-edition-a2021-dual-sim-td-lte-cn-128gb.json b/data/smartphone/zte/2020/axon-11-5g-standard-edition-a2021-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..c89e3c0b0c6 --- /dev/null +++ b/data/smartphone/zte/2020/axon-11-5g-standard-edition-a2021-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,41 @@ +{ + "slug": "axon-11-5g-standard-edition-a2021-dual-sim-td-lte-cn-128gb", + "name": "Axon 11 5G Standard Edition A2021 Dual SIM TD-LTE CN 128GB", + "brand": "zte", + "soc": "snapdragon-765", + "release_date": "2020-03-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2020/axon-11-5g-standard-edition-a2021-global-dual-sim-td-lte-128gb.json b/data/smartphone/zte/2020/axon-11-5g-standard-edition-a2021-global-dual-sim-td-lte-128gb.json new file mode 100644 index 00000000000..004d3b9a7e4 --- /dev/null +++ b/data/smartphone/zte/2020/axon-11-5g-standard-edition-a2021-global-dual-sim-td-lte-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "axon-11-5g-standard-edition-a2021-global-dual-sim-td-lte-128gb", + "name": "Axon 11 5G Standard Edition A2021 Global Dual SIM TD-LTE 128GB", + "brand": "zte", + "soc": "snapdragon-765", + "release_date": "2020-06-17", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Germany , Mexico , Saudi Arabia , UAE", + "market_regions": "Asia , Middle East , North America" +} diff --git a/data/smartphone/zte/2020/axon-20-4g-global-dual-sim-td-lte-128gb-a2121e.json b/data/smartphone/zte/2020/axon-20-4g-global-dual-sim-td-lte-128gb-a2121e.json new file mode 100644 index 00000000000..268828468aa --- /dev/null +++ b/data/smartphone/zte/2020/axon-20-4g-global-dual-sim-td-lte-128gb-a2121e.json @@ -0,0 +1,44 @@ +{ + "slug": "axon-20-4g-global-dual-sim-td-lte-128gb-a2121e", + "name": "Axon 20 4G Global Dual SIM TD-LTE 128GB A2121E", + "brand": "zte", + "soc": "tiger-t618", + "release_date": "2020-12-04", + "ram_gb": 6.0, + "battery_mah": 4220, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 15, + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 399, + "market_countries": "Bulgaria , France , Germany , Poland , Russia , Spain", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/zte/2020/axon-20-5g-extreme-edition-dual-sim-td-lte-cn-256gb-a2121.json b/data/smartphone/zte/2020/axon-20-5g-extreme-edition-dual-sim-td-lte-cn-256gb-a2121.json new file mode 100644 index 00000000000..e77021b2d7c --- /dev/null +++ b/data/smartphone/zte/2020/axon-20-5g-extreme-edition-dual-sim-td-lte-cn-256gb-a2121.json @@ -0,0 +1,43 @@ +{ + "slug": "axon-20-5g-extreme-edition-dual-sim-td-lte-cn-256gb-a2121", + "name": "Axon 20 5G Extreme Edition Dual SIM TD-LTE CN 256GB A2121", + "brand": "zte", + "soc": "snapdragon-765", + "release_date": "2020-12-01", + "ram_gb": 12.0, + "battery_mah": 4220, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2020/axon-20-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2121-a20.json b/data/smartphone/zte/2020/axon-20-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2121-a20.json new file mode 100644 index 00000000000..3b02ac7ccfb --- /dev/null +++ b/data/smartphone/zte/2020/axon-20-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2121-a20.json @@ -0,0 +1,44 @@ +{ + "slug": "axon-20-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2121-a20", + "name": "Axon 20 5G Standard Edition Dual SIM TD-LTE CN 128GB A2121 / A20", + "brand": "zte", + "soc": "snapdragon-765", + "release_date": "2020-11-11", + "ram_gb": 6.0, + "battery_mah": 4220, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2198, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2020/blade-10-smart-lte-a-emea-128gb.json b/data/smartphone/zte/2020/blade-10-smart-lte-a-emea-128gb.json new file mode 100644 index 00000000000..55f3d0dbea4 --- /dev/null +++ b/data/smartphone/zte/2020/blade-10-smart-lte-a-emea-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "blade-10-smart-lte-a-emea-128gb", + "name": "Blade 10 Smart LTE-A EMEA 128GB", + "brand": "zte", + "soc": "helio-p60", + "release_date": "2020-05-19", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.49, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 265 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Germany , UK", + "market_regions": "Europe , Western Europe" +} diff --git a/data/smartphone/zte/2020/blade-20-5g-dual-sim-td-lte-cn-128gb-8012n.json b/data/smartphone/zte/2020/blade-20-5g-dual-sim-td-lte-cn-128gb-8012n.json new file mode 100644 index 00000000000..7cd21c018b8 --- /dev/null +++ b/data/smartphone/zte/2020/blade-20-5g-dual-sim-td-lte-cn-128gb-8012n.json @@ -0,0 +1,42 @@ +{ + "slug": "blade-20-5g-dual-sim-td-lte-cn-128gb-8012n", + "name": "Blade 20 5G Dual SIM TD-LTE CN 128GB 8012N", + "brand": "zte", + "soc": "dimensity-720", + "release_date": "2020-12-01", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1399, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2020/blade-20-pro-5g-dual-sim-td-lte-cn-128gb.json b/data/smartphone/zte/2020/blade-20-pro-5g-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..07fc449f07b --- /dev/null +++ b/data/smartphone/zte/2020/blade-20-pro-5g-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,42 @@ +{ + "slug": "blade-20-pro-5g-dual-sim-td-lte-cn-128gb", + "name": "Blade 20 Pro 5G Dual SIM TD-LTE CN 128GB", + "brand": "zte", + "soc": "snapdragon-765", + "release_date": "2020-12-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 168.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2020/blade-a3-prime-lte-us-z5157vs.json b/data/smartphone/zte/2020/blade-a3-prime-lte-us-z5157vs.json new file mode 100644 index 00000000000..dabb3449b7d --- /dev/null +++ b/data/smartphone/zte/2020/blade-a3-prime-lte-us-z5157vs.json @@ -0,0 +1,42 @@ +{ + "slug": "blade-a3-prime-lte-us-z5157vs", + "name": "Blade A3 Prime LTE US Z5157VS", + "brand": "zte", + "soc": "helio-a22", + "release_date": "2020-06-11", + "ram_gb": 2.0, + "battery_mah": 2660, + "weight_g": 161.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 99, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/zte/2020/blade-a3y-lte-us-z5157v.json b/data/smartphone/zte/2020/blade-a3y-lte-us-z5157v.json new file mode 100644 index 00000000000..3f7eab3b3a0 --- /dev/null +++ b/data/smartphone/zte/2020/blade-a3y-lte-us-z5157v.json @@ -0,0 +1,42 @@ +{ + "slug": "blade-a3y-lte-us-z5157v", + "name": "Blade A3Y LTE US Z5157V", + "brand": "zte", + "soc": "helio-a22", + "release_date": "2020-10-27", + "ram_gb": 2.0, + "battery_mah": 2660, + "weight_g": 161.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 99, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/zte/2020/blade-a7-2020-dual-sim-td-lte-emea-32gb-ea72020-blade-a7s.json b/data/smartphone/zte/2020/blade-a7-2020-dual-sim-td-lte-emea-32gb-ea72020-blade-a7s.json new file mode 100644 index 00000000000..863f83e9380 --- /dev/null +++ b/data/smartphone/zte/2020/blade-a7-2020-dual-sim-td-lte-emea-32gb-ea72020-blade-a7s.json @@ -0,0 +1,41 @@ +{ + "slug": "blade-a7-2020-dual-sim-td-lte-emea-32gb-ea72020-blade-a7s", + "name": "Blade A7 2020 Dual SIM TD-LTE EMEA 32GB EA72020 / Blade A7s", + "brand": "zte", + "soc": "helio-p22", + "release_date": "2020-01-01", + "ram_gb": 2.0, + "battery_mah": 4000, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Germany , Russia , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/zte/2020/blade-a7-2020-dual-sim-td-lte-emea-64gb-ea72020-blade-a7s.json b/data/smartphone/zte/2020/blade-a7-2020-dual-sim-td-lte-emea-64gb-ea72020-blade-a7s.json new file mode 100644 index 00000000000..91fb4e92ec0 --- /dev/null +++ b/data/smartphone/zte/2020/blade-a7-2020-dual-sim-td-lte-emea-64gb-ea72020-blade-a7s.json @@ -0,0 +1,41 @@ +{ + "slug": "blade-a7-2020-dual-sim-td-lte-emea-64gb-ea72020-blade-a7s", + "name": "Blade A7 2020 Dual SIM TD-LTE EMEA 64GB EA72020 / Blade A7s", + "brand": "zte", + "soc": "helio-p22", + "release_date": "2020-01-01", + "ram_gb": 3.0, + "battery_mah": 4000, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Germany , Russia , Ukraine", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/zte/2020/blade-a7s-2020-dual-sim-td-lte-cn-64gb-a7010.json b/data/smartphone/zte/2020/blade-a7s-2020-dual-sim-td-lte-cn-64gb-a7010.json new file mode 100644 index 00000000000..4ad96ef22a4 --- /dev/null +++ b/data/smartphone/zte/2020/blade-a7s-2020-dual-sim-td-lte-cn-64gb-a7010.json @@ -0,0 +1,41 @@ +{ + "slug": "blade-a7s-2020-dual-sim-td-lte-cn-64gb-a7010", + "name": "Blade A7s 2020 Dual SIM TD-LTE CN 64GB A7010", + "brand": "zte", + "soc": "helio-p22", + "release_date": "2020-01-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 164.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "9.0", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2020/blade-v2020-dual-sim-lte-a-eu-p671-a1-alpha-20.json b/data/smartphone/zte/2020/blade-v2020-dual-sim-lte-a-eu-p671-a1-alpha-20.json new file mode 100644 index 00000000000..19e3fe04dc1 --- /dev/null +++ b/data/smartphone/zte/2020/blade-v2020-dual-sim-lte-a-eu-p671-a1-alpha-20.json @@ -0,0 +1,41 @@ +{ + "slug": "blade-v2020-dual-sim-lte-a-eu-p671-a1-alpha-20", + "name": "Blade V2020 Dual SIM LTE-A EU P671 / A1 Alpha 20+", + "brand": "zte", + "soc": "helio-p70", + "release_date": "2020-05-26", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Bulgaria , Croatia , Germany , Slovenia", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/zte/2020/blade-v2020-lte-a-latam.json b/data/smartphone/zte/2020/blade-v2020-lte-a-latam.json new file mode 100644 index 00000000000..53f80ccce53 --- /dev/null +++ b/data/smartphone/zte/2020/blade-v2020-lte-a-latam.json @@ -0,0 +1,41 @@ +{ + "slug": "blade-v2020-lte-a-latam", + "name": "Blade V2020 LTE-A LATAM", + "brand": "zte", + "soc": "helio-p70", + "release_date": "2020-06-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 185.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "market_countries": "Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/zte/2020/blade-v2020-vita-lte-latam.json b/data/smartphone/zte/2020/blade-v2020-vita-lte-latam.json new file mode 100644 index 00000000000..275f76f21fa --- /dev/null +++ b/data/smartphone/zte/2020/blade-v2020-vita-lte-latam.json @@ -0,0 +1,41 @@ +{ + "slug": "blade-v2020-vita-lte-latam", + "name": "Blade V2020 Vita LTE LATAM", + "brand": "zte", + "soc": "helio-p70", + "release_date": "2020-05-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 194.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 264 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Yes", + "usb": "Yes" + }, + "market_countries": "Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/zte/2020/blade-v2021-5g-dual-sim-td-lte-cn-128gb-8012n.json b/data/smartphone/zte/2020/blade-v2021-5g-dual-sim-td-lte-cn-128gb-8012n.json new file mode 100644 index 00000000000..52eada2ede0 --- /dev/null +++ b/data/smartphone/zte/2020/blade-v2021-5g-dual-sim-td-lte-cn-128gb-8012n.json @@ -0,0 +1,42 @@ +{ + "slug": "blade-v2021-5g-dual-sim-td-lte-cn-128gb-8012n", + "name": "Blade V2021 5G Dual SIM TD-LTE CN 128GB 8012N", + "brand": "zte", + "soc": "dimensity-720", + "release_date": "2020-12-07", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 1399, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2020/gabb-z2-lte-us.json b/data/smartphone/zte/2020/gabb-z2-lte-us.json new file mode 100644 index 00000000000..10416ec748e --- /dev/null +++ b/data/smartphone/zte/2020/gabb-z2-lte-us.json @@ -0,0 +1,42 @@ +{ + "slug": "gabb-z2-lte-us", + "name": "Gabb Z2 LTE US", + "brand": "zte", + "soc": "helio-a22", + "release_date": "2020-08-14", + "ram_gb": 2.0, + "battery_mah": 2660, + "weight_g": 161.8, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "msrp_usd": 100, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/zte/2020/libero-3-td-lte-a001zt.json b/data/smartphone/zte/2020/libero-3-td-lte-a001zt.json new file mode 100644 index 00000000000..294f562490c --- /dev/null +++ b/data/smartphone/zte/2020/libero-3-td-lte-a001zt.json @@ -0,0 +1,41 @@ +{ + "slug": "libero-3-td-lte-a001zt", + "name": "Libero 3 TD-LTE A001ZT", + "brand": "zte", + "soc": "helio-p22", + "release_date": "2020-09-18", + "ram_gb": 3.0, + "battery_mah": 3900, + "weight_g": 166.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2020/nubia-play-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx651j.json b/data/smartphone/zte/2020/nubia-play-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx651j.json new file mode 100644 index 00000000000..5b44c4cb06f --- /dev/null +++ b/data/smartphone/zte/2020/nubia-play-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx651j.json @@ -0,0 +1,43 @@ +{ + "slug": "nubia-play-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx651j", + "name": "Nubia Play 5G Premium Edition Dual SIM TD-LTE CN 128GB NX651J", + "brand": "zte", + "soc": "snapdragon-765", + "release_date": "2020-04-24", + "ram_gb": 6.0, + "battery_mah": 5100, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2020/nubia-play-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx651j.json b/data/smartphone/zte/2020/nubia-play-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx651j.json new file mode 100644 index 00000000000..1e2c4822dfd --- /dev/null +++ b/data/smartphone/zte/2020/nubia-play-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx651j.json @@ -0,0 +1,43 @@ +{ + "slug": "nubia-play-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx651j", + "name": "Nubia Play 5G Premium Edition Dual SIM TD-LTE CN 256GB NX651J", + "brand": "zte", + "soc": "snapdragon-765", + "release_date": "2020-04-24", + "ram_gb": 8.0, + "battery_mah": 5100, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2020/nubia-red-magic-5g-lite-premium-edition-global-dual-sim-td-lte-256gb-nx651j.json b/data/smartphone/zte/2020/nubia-red-magic-5g-lite-premium-edition-global-dual-sim-td-lte-256gb-nx651j.json new file mode 100644 index 00000000000..09795de3297 --- /dev/null +++ b/data/smartphone/zte/2020/nubia-red-magic-5g-lite-premium-edition-global-dual-sim-td-lte-256gb-nx651j.json @@ -0,0 +1,43 @@ +{ + "slug": "nubia-red-magic-5g-lite-premium-edition-global-dual-sim-td-lte-256gb-nx651j", + "name": "Nubia Red Magic 5G Lite Premium Edition Global Dual SIM TD-LTE 256GB NX651J", + "brand": "zte", + "soc": "snapdragon-765", + "release_date": "2020-07-01", + "ram_gb": 8.0, + "battery_mah": 5100, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Russia , Spain , Switzerland , UK", + "market_regions": "Asia , Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/zte/2020/nubia-red-magic-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx659j.json b/data/smartphone/zte/2020/nubia-red-magic-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx659j.json new file mode 100644 index 00000000000..5627a052594 --- /dev/null +++ b/data/smartphone/zte/2020/nubia-red-magic-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx659j.json @@ -0,0 +1,43 @@ +{ + "slug": "nubia-red-magic-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx659j", + "name": "Nubia Red Magic 5G Premium Edition Dual SIM TD-LTE CN 128GB NX659J", + "brand": "zte", + "soc": "snapdragon-865", + "release_date": "2020-03-19", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 218.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2020/nubia-red-magic-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx659j.json b/data/smartphone/zte/2020/nubia-red-magic-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx659j.json new file mode 100644 index 00000000000..890be38117d --- /dev/null +++ b/data/smartphone/zte/2020/nubia-red-magic-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx659j.json @@ -0,0 +1,43 @@ +{ + "slug": "nubia-red-magic-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx659j", + "name": "Nubia Red Magic 5G Premium Edition Dual SIM TD-LTE CN 256GB NX659J", + "brand": "zte", + "soc": "snapdragon-865", + "release_date": "2020-03-19", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 218.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2020/nubia-red-magic-5g-premium-edition-global-dual-sim-td-lte-128gb-nx659j.json b/data/smartphone/zte/2020/nubia-red-magic-5g-premium-edition-global-dual-sim-td-lte-128gb-nx659j.json new file mode 100644 index 00000000000..0c910bba392 --- /dev/null +++ b/data/smartphone/zte/2020/nubia-red-magic-5g-premium-edition-global-dual-sim-td-lte-128gb-nx659j.json @@ -0,0 +1,43 @@ +{ + "slug": "nubia-red-magic-5g-premium-edition-global-dual-sim-td-lte-128gb-nx659j", + "name": "Nubia Red Magic 5G Premium Edition Global Dual SIM TD-LTE 128GB NX659J", + "brand": "zte", + "soc": "snapdragon-865", + "release_date": "2020-06-16", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 218.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Canada , Czech , Denmark , Finland , France , Germany , HK , Hungary , India , Indonesia , Israel , Italy , Japan , Netherlands , Poland , Singapore , Slovakia , Slovenia , Spain , Sweden , Switzerland , Taiwan , USA", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/zte/2020/nubia-red-magic-5g-premium-edition-global-dual-sim-td-lte-256gb-nx659j.json b/data/smartphone/zte/2020/nubia-red-magic-5g-premium-edition-global-dual-sim-td-lte-256gb-nx659j.json new file mode 100644 index 00000000000..f054a19d3d1 --- /dev/null +++ b/data/smartphone/zte/2020/nubia-red-magic-5g-premium-edition-global-dual-sim-td-lte-256gb-nx659j.json @@ -0,0 +1,43 @@ +{ + "slug": "nubia-red-magic-5g-premium-edition-global-dual-sim-td-lte-256gb-nx659j", + "name": "Nubia Red Magic 5G Premium Edition Global Dual SIM TD-LTE 256GB NX659J", + "brand": "zte", + "soc": "snapdragon-865", + "release_date": "2020-04-14", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 218.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Canada , Czech , Denmark , Finland , France , Germany , HK , Hungary , India , Indonesia , Israel , Italy , Japan , Netherlands , Poland , Singapore , Slovakia , Slovenia , Spain , Sweden , Switzerland , Taiwan , USA", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/zte/2020/nubia-red-magic-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx659j.json b/data/smartphone/zte/2020/nubia-red-magic-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx659j.json new file mode 100644 index 00000000000..7c73a5ff6e6 --- /dev/null +++ b/data/smartphone/zte/2020/nubia-red-magic-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx659j.json @@ -0,0 +1,43 @@ +{ + "slug": "nubia-red-magic-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx659j", + "name": "Nubia Red Magic 5G Standard Edition Dual SIM TD-LTE CN 128GB NX659J", + "brand": "zte", + "soc": "snapdragon-865", + "release_date": "2020-03-19", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 218.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2020/nubia-red-magic-5g-standard-edition-global-dual-sim-td-lte-128gb-nx659j.json b/data/smartphone/zte/2020/nubia-red-magic-5g-standard-edition-global-dual-sim-td-lte-128gb-nx659j.json new file mode 100644 index 00000000000..948d57c94ba --- /dev/null +++ b/data/smartphone/zte/2020/nubia-red-magic-5g-standard-edition-global-dual-sim-td-lte-128gb-nx659j.json @@ -0,0 +1,43 @@ +{ + "slug": "nubia-red-magic-5g-standard-edition-global-dual-sim-td-lte-128gb-nx659j", + "name": "Nubia Red Magic 5G Standard Edition Global Dual SIM TD-LTE 128GB NX659J", + "brand": "zte", + "soc": "snapdragon-865", + "release_date": "2020-04-14", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 218.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Australia , Austria , Belgium , Canada , Czech , Denmark , Finland , France , Germany , HK , Hungary , India , Indonesia , Israel , Italy , Japan , Netherlands , Poland , Singapore , Slovakia , Slovenia , Spain , Sweden , Switzerland , Taiwan , USA", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/zte/2020/nubia-red-magic-5g-top-edition-dual-sim-td-lte-cn-256gb-nx659j.json b/data/smartphone/zte/2020/nubia-red-magic-5g-top-edition-dual-sim-td-lte-cn-256gb-nx659j.json new file mode 100644 index 00000000000..1da3a343267 --- /dev/null +++ b/data/smartphone/zte/2020/nubia-red-magic-5g-top-edition-dual-sim-td-lte-cn-256gb-nx659j.json @@ -0,0 +1,43 @@ +{ + "slug": "nubia-red-magic-5g-top-edition-dual-sim-td-lte-cn-256gb-nx659j", + "name": "Nubia Red Magic 5G Top Edition Dual SIM TD-LTE CN 256GB NX659J", + "brand": "zte", + "soc": "snapdragon-865", + "release_date": "2020-04-01", + "ram_gb": 16.0, + "battery_mah": 4500, + "weight_g": 218.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2020/nubia-red-magic-5g-transparent-edition-dual-sim-td-lte-cn-256gb-nx659j.json b/data/smartphone/zte/2020/nubia-red-magic-5g-transparent-edition-dual-sim-td-lte-cn-256gb-nx659j.json new file mode 100644 index 00000000000..e10f197498d --- /dev/null +++ b/data/smartphone/zte/2020/nubia-red-magic-5g-transparent-edition-dual-sim-td-lte-cn-256gb-nx659j.json @@ -0,0 +1,43 @@ +{ + "slug": "nubia-red-magic-5g-transparent-edition-dual-sim-td-lte-cn-256gb-nx659j", + "name": "Nubia Red Magic 5G Transparent Edition Dual SIM TD-LTE CN 256GB NX659J", + "brand": "zte", + "soc": "snapdragon-865", + "release_date": "2020-05-31", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 218.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2020/nubia-red-magic-5s-premium-edition-dual-sim-td-lte-cn-256gb-nx659j.json b/data/smartphone/zte/2020/nubia-red-magic-5s-premium-edition-dual-sim-td-lte-cn-256gb-nx659j.json new file mode 100644 index 00000000000..0987dff1ee1 --- /dev/null +++ b/data/smartphone/zte/2020/nubia-red-magic-5s-premium-edition-dual-sim-td-lte-cn-256gb-nx659j.json @@ -0,0 +1,44 @@ +{ + "slug": "nubia-red-magic-5s-premium-edition-dual-sim-td-lte-cn-256gb-nx659j", + "name": "Nubia Red Magic 5S Premium Edition Dual SIM TD-LTE CN 256GB NX659J", + "brand": "zte", + "soc": "snapdragon-865", + "release_date": "2020-08-01", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 4399, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2020/nubia-red-magic-5s-premium-edition-global-dual-sim-td-lte-256gb-nx659j.json b/data/smartphone/zte/2020/nubia-red-magic-5s-premium-edition-global-dual-sim-td-lte-256gb-nx659j.json new file mode 100644 index 00000000000..d200f4a74f0 --- /dev/null +++ b/data/smartphone/zte/2020/nubia-red-magic-5s-premium-edition-global-dual-sim-td-lte-256gb-nx659j.json @@ -0,0 +1,44 @@ +{ + "slug": "nubia-red-magic-5s-premium-edition-global-dual-sim-td-lte-256gb-nx659j", + "name": "Nubia Red Magic 5S Premium Edition Global Dual SIM TD-LTE 256GB NX659J", + "brand": "zte", + "soc": "snapdragon-865", + "release_date": "2020-08-26", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 649, + "market_countries": "Australia , Austria , Belgium , Canada , Czech , Denmark , Finland , France , Germany , HK , Hungary , India , Indonesia , Israel , Italy , Japan , Netherlands , Poland , Singapore , Slovakia , Slovenia , Spain , Sweden , Switzerland , Taiwan , USA", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/zte/2020/nubia-red-magic-5s-standard-edition-dual-sim-td-lte-cn-128gb-nx659j.json b/data/smartphone/zte/2020/nubia-red-magic-5s-standard-edition-dual-sim-td-lte-cn-128gb-nx659j.json new file mode 100644 index 00000000000..4f1066a491a --- /dev/null +++ b/data/smartphone/zte/2020/nubia-red-magic-5s-standard-edition-dual-sim-td-lte-cn-128gb-nx659j.json @@ -0,0 +1,44 @@ +{ + "slug": "nubia-red-magic-5s-standard-edition-dual-sim-td-lte-cn-128gb-nx659j", + "name": "Nubia Red Magic 5S Standard Edition Dual SIM TD-LTE CN 128GB NX659J", + "brand": "zte", + "soc": "snapdragon-865", + "release_date": "2020-08-12", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 3799, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2020/nubia-red-magic-5s-standard-edition-global-dual-sim-td-lte-128gb-nx659j.json b/data/smartphone/zte/2020/nubia-red-magic-5s-standard-edition-global-dual-sim-td-lte-128gb-nx659j.json new file mode 100644 index 00000000000..abb20181966 --- /dev/null +++ b/data/smartphone/zte/2020/nubia-red-magic-5s-standard-edition-global-dual-sim-td-lte-128gb-nx659j.json @@ -0,0 +1,44 @@ +{ + "slug": "nubia-red-magic-5s-standard-edition-global-dual-sim-td-lte-128gb-nx659j", + "name": "Nubia Red Magic 5S Standard Edition Global Dual SIM TD-LTE 128GB NX659J", + "brand": "zte", + "soc": "snapdragon-865", + "release_date": "2020-08-26", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 579, + "market_countries": "Australia , Austria , Belgium , Canada , Czech , Denmark , Finland , France , Germany , HK , Hungary , India , Indonesia , Israel , Italy , Japan , Netherlands , Poland , Portugal , Romania , Russia , Singapore , Slovakia , Slovenia , Spain , Sweden , Switzerland , Taiwan , USA", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/zte/2020/nubia-red-magic-5s-top-edition-dual-sim-td-lte-cn-256gb-nx659j.json b/data/smartphone/zte/2020/nubia-red-magic-5s-top-edition-dual-sim-td-lte-cn-256gb-nx659j.json new file mode 100644 index 00000000000..b5f1f6a4714 --- /dev/null +++ b/data/smartphone/zte/2020/nubia-red-magic-5s-top-edition-dual-sim-td-lte-cn-256gb-nx659j.json @@ -0,0 +1,44 @@ +{ + "slug": "nubia-red-magic-5s-top-edition-dual-sim-td-lte-cn-256gb-nx659j", + "name": "Nubia Red Magic 5S Top Edition Dual SIM TD-LTE CN 256GB NX659J", + "brand": "zte", + "soc": "snapdragon-865", + "release_date": "2020-08-01", + "ram_gb": 16.0, + "battery_mah": 4500, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 4999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2020/rakuten-big-5g-td-lte-jp.json b/data/smartphone/zte/2020/rakuten-big-5g-td-lte-jp.json new file mode 100644 index 00000000000..f1177d34957 --- /dev/null +++ b/data/smartphone/zte/2020/rakuten-big-5g-td-lte-jp.json @@ -0,0 +1,43 @@ +{ + "slug": "rakuten-big-5g-td-lte-jp", + "name": "Rakuten BIG 5G TD-LTE JP", + "brand": "zte", + "soc": "snapdragon-765", + "release_date": "2020-11-24", + "ram_gb": 6.0, + "battery_mah": 4220, + "weight_g": 227.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "Japan", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2021/axon-20-5g-global-dual-sim-td-lte-128gb-a2121g.json b/data/smartphone/zte/2021/axon-20-5g-global-dual-sim-td-lte-128gb-a2121g.json new file mode 100644 index 00000000000..f012946311a --- /dev/null +++ b/data/smartphone/zte/2021/axon-20-5g-global-dual-sim-td-lte-128gb-a2121g.json @@ -0,0 +1,44 @@ +{ + "slug": "axon-20-5g-global-dual-sim-td-lte-128gb-a2121g", + "name": "Axon 20 5G Global Dual SIM TD-LTE 128GB A2121G", + "brand": "zte", + "soc": "snapdragon-765", + "release_date": "2021-04-01", + "ram_gb": 8.0, + "battery_mah": 4220, + "weight_g": 198.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 449, + "market_countries": "Austria , Belgium , Bulgaria , Canada , China , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Indonesia , Ireland , Israel , Italy , Japan , Kuwait , Latvia , Lithuania , Malaysia , Netherlands , Norway , Philippines , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Switzerland , Sweden , Thailand , UAE , UK , USA , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/zte/2021/axon-30-5g-premium-edition-dual-sim-td-lte-cn-128gb-a2322.json b/data/smartphone/zte/2021/axon-30-5g-premium-edition-dual-sim-td-lte-cn-128gb-a2322.json new file mode 100644 index 00000000000..792d7dd706d --- /dev/null +++ b/data/smartphone/zte/2021/axon-30-5g-premium-edition-dual-sim-td-lte-cn-128gb-a2322.json @@ -0,0 +1,44 @@ +{ + "slug": "axon-30-5g-premium-edition-dual-sim-td-lte-cn-128gb-a2322", + "name": "Axon 30 5G Premium Edition Dual SIM TD-LTE CN 128GB A2322", + "brand": "zte", + "soc": "snapdragon-870", + "release_date": "2021-08-03", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2498, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2021/axon-30-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2322.json b/data/smartphone/zte/2021/axon-30-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2322.json new file mode 100644 index 00000000000..62751b4cf4e --- /dev/null +++ b/data/smartphone/zte/2021/axon-30-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2322.json @@ -0,0 +1,44 @@ +{ + "slug": "axon-30-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2322", + "name": "Axon 30 5G Premium Edition Dual SIM TD-LTE CN 256GB A2322", + "brand": "zte", + "soc": "snapdragon-870", + "release_date": "2021-08-03", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2798, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2021/axon-30-5g-premium-edition-global-dual-sim-td-lte-128gb-a2322g.json b/data/smartphone/zte/2021/axon-30-5g-premium-edition-global-dual-sim-td-lte-128gb-a2322g.json new file mode 100644 index 00000000000..06110e6be09 --- /dev/null +++ b/data/smartphone/zte/2021/axon-30-5g-premium-edition-global-dual-sim-td-lte-128gb-a2322g.json @@ -0,0 +1,44 @@ +{ + "slug": "axon-30-5g-premium-edition-global-dual-sim-td-lte-128gb-a2322g", + "name": "Axon 30 5G Premium Edition Global Dual SIM TD-LTE 128GB A2322G", + "brand": "zte", + "soc": "snapdragon-870", + "release_date": "2021-09-09", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 499, + "market_countries": "Austria , Belgium , Bulgaria , Canada , China , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Indonesia , Ireland , Israel , Italy , Japan , Kuwait , Latvia , Lithuania , Malaysia , Netherlands , Norway , Philippines , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Switzerland , Sweden , Thailand , UAE , UK , USA , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/zte/2021/axon-30-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2322.json b/data/smartphone/zte/2021/axon-30-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2322.json new file mode 100644 index 00000000000..ae7a68dc18f --- /dev/null +++ b/data/smartphone/zte/2021/axon-30-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2322.json @@ -0,0 +1,44 @@ +{ + "slug": "axon-30-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2322", + "name": "Axon 30 5G Standard Edition Dual SIM TD-LTE CN 128GB A2322", + "brand": "zte", + "soc": "snapdragon-870", + "release_date": "2021-08-03", + "ram_gb": 6.0, + "battery_mah": 4200, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 2198, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2021/axon-30-5g-top-edition-dual-sim-td-lte-cn-256gb-a2322.json b/data/smartphone/zte/2021/axon-30-5g-top-edition-dual-sim-td-lte-cn-256gb-a2322.json new file mode 100644 index 00000000000..bc34185e70a --- /dev/null +++ b/data/smartphone/zte/2021/axon-30-5g-top-edition-dual-sim-td-lte-cn-256gb-a2322.json @@ -0,0 +1,44 @@ +{ + "slug": "axon-30-5g-top-edition-dual-sim-td-lte-cn-256gb-a2322", + "name": "Axon 30 5G Top Edition Dual SIM TD-LTE CN 256GB A2322", + "brand": "zte", + "soc": "snapdragon-870", + "release_date": "2021-08-03", + "ram_gb": 12.0, + "battery_mah": 4200, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 3098, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2021/axon-30-5g-top-edition-global-dual-sim-td-lte-256gb-a2322g.json b/data/smartphone/zte/2021/axon-30-5g-top-edition-global-dual-sim-td-lte-256gb-a2322g.json new file mode 100644 index 00000000000..dc0dbb29d15 --- /dev/null +++ b/data/smartphone/zte/2021/axon-30-5g-top-edition-global-dual-sim-td-lte-256gb-a2322g.json @@ -0,0 +1,44 @@ +{ + "slug": "axon-30-5g-top-edition-global-dual-sim-td-lte-256gb-a2322g", + "name": "Axon 30 5G Top Edition Global Dual SIM TD-LTE 256GB A2322G", + "brand": "zte", + "soc": "snapdragon-870", + "release_date": "2021-09-09", + "ram_gb": 12.0, + "battery_mah": 4200, + "weight_g": 189.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 599, + "market_countries": "Austria , Belgium , Bulgaria , Canada , China , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Indonesia , Ireland , Israel , Italy , Japan , Kuwait , Latvia , Lithuania , Malaysia , Netherlands , Norway , Philippines , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Switzerland , Sweden , Thailand , UAE , UK , USA , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/zte/2021/axon-30-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-a2022.json b/data/smartphone/zte/2021/axon-30-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-a2022.json new file mode 100644 index 00000000000..deb914b6682 --- /dev/null +++ b/data/smartphone/zte/2021/axon-30-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-a2022.json @@ -0,0 +1,44 @@ +{ + "slug": "axon-30-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-a2022", + "name": "Axon 30 Pro 5G Premium Edition Dual SIM TD-LTE CN 128GB A2022", + "brand": "zte", + "soc": "snapdragon-888", + "release_date": "2021-04-16", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3298, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2021/axon-30-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2022.json b/data/smartphone/zte/2021/axon-30-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2022.json new file mode 100644 index 00000000000..5621a5f0afa --- /dev/null +++ b/data/smartphone/zte/2021/axon-30-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2022.json @@ -0,0 +1,44 @@ +{ + "slug": "axon-30-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2022", + "name": "Axon 30 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB A2022", + "brand": "zte", + "soc": "snapdragon-888", + "release_date": "2021-04-16", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3598, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2021/axon-30-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2022.json b/data/smartphone/zte/2021/axon-30-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2022.json new file mode 100644 index 00000000000..190cb1421f2 --- /dev/null +++ b/data/smartphone/zte/2021/axon-30-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2022.json @@ -0,0 +1,44 @@ +{ + "slug": "axon-30-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2022", + "name": "Axon 30 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB A2022", + "brand": "zte", + "soc": "snapdragon-888", + "release_date": "2021-04-16", + "ram_gb": 6.0, + "battery_mah": 4200, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 2998, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2021/axon-30-ultra-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2022p.json b/data/smartphone/zte/2021/axon-30-ultra-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2022p.json new file mode 100644 index 00000000000..5e0ef91e1a2 --- /dev/null +++ b/data/smartphone/zte/2021/axon-30-ultra-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2022p.json @@ -0,0 +1,44 @@ +{ + "slug": "axon-30-ultra-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2022p", + "name": "Axon 30 Ultra 5G Premium Edition Dual SIM TD-LTE CN 256GB A2022P", + "brand": "zte", + "soc": "snapdragon-888", + "release_date": "2021-04-19", + "ram_gb": 12.0, + "battery_mah": 4600, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 4998, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2021/axon-30-ultra-5g-premium-edition-global-dual-sim-td-lte-256gb-a2022pg.json b/data/smartphone/zte/2021/axon-30-ultra-5g-premium-edition-global-dual-sim-td-lte-256gb-a2022pg.json new file mode 100644 index 00000000000..162a433847b --- /dev/null +++ b/data/smartphone/zte/2021/axon-30-ultra-5g-premium-edition-global-dual-sim-td-lte-256gb-a2022pg.json @@ -0,0 +1,44 @@ +{ + "slug": "axon-30-ultra-5g-premium-edition-global-dual-sim-td-lte-256gb-a2022pg", + "name": "Axon 30 Ultra 5G Premium Edition Global Dual SIM TD-LTE 256GB A2022PG", + "brand": "zte", + "soc": "snapdragon-888", + "release_date": "2021-04-01", + "ram_gb": 12.0, + "battery_mah": 4600, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 849, + "market_countries": "Austria , Belgium , Bulgaria , Canada , China , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Indonesia , Ireland , Israel , Italy , Japan , Kuwait , Latvia , Lithuania , Malaysia , Netherlands , Norway , Philippines , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Switzerland , Sweden , Thailand , UAE , UK , USA , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/zte/2021/axon-30-ultra-5g-standard-edition-dual-sim-td-lte-cn-256gb-a2022p.json b/data/smartphone/zte/2021/axon-30-ultra-5g-standard-edition-dual-sim-td-lte-cn-256gb-a2022p.json new file mode 100644 index 00000000000..f137726d4d3 --- /dev/null +++ b/data/smartphone/zte/2021/axon-30-ultra-5g-standard-edition-dual-sim-td-lte-cn-256gb-a2022p.json @@ -0,0 +1,44 @@ +{ + "slug": "axon-30-ultra-5g-standard-edition-dual-sim-td-lte-cn-256gb-a2022p", + "name": "Axon 30 Ultra 5G Standard Edition Dual SIM TD-LTE CN 256GB A2022P", + "brand": "zte", + "soc": "snapdragon-888", + "release_date": "2021-04-19", + "ram_gb": 8.0, + "battery_mah": 4600, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 4698, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2021/axon-30-ultra-5g-standard-edition-global-dual-sim-td-lte-128gb-a2022pg.json b/data/smartphone/zte/2021/axon-30-ultra-5g-standard-edition-global-dual-sim-td-lte-128gb-a2022pg.json new file mode 100644 index 00000000000..1f36e965a5d --- /dev/null +++ b/data/smartphone/zte/2021/axon-30-ultra-5g-standard-edition-global-dual-sim-td-lte-128gb-a2022pg.json @@ -0,0 +1,44 @@ +{ + "slug": "axon-30-ultra-5g-standard-edition-global-dual-sim-td-lte-128gb-a2022pg", + "name": "Axon 30 Ultra 5G Standard Edition Global Dual SIM TD-LTE 128GB A2022PG", + "brand": "zte", + "soc": "snapdragon-888", + "release_date": "2021-04-01", + "ram_gb": 8.0, + "battery_mah": 4600, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 749, + "market_countries": "Austria , Belgium , Bulgaria , Canada , China , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , Indonesia , Ireland , Israel , Italy , Japan , Kuwait , Latvia , Lithuania , Malaysia , Netherlands , Norway , Philippines , Poland , Portugal , Russia , Romania , Saudi Arabia , Serbia , Singapore , Slovakia , Slovenia , South Africa , South Korea , Spain , Switzerland , Sweden , Thailand , UAE , UK , USA , Vietnam", + "market_regions": "Africa , Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/zte/2021/axon-30-ultra-5g-top-edition-dual-sim-td-lte-cn-1tb-a2022p.json b/data/smartphone/zte/2021/axon-30-ultra-5g-top-edition-dual-sim-td-lte-cn-1tb-a2022p.json new file mode 100644 index 00000000000..013a8a41f62 --- /dev/null +++ b/data/smartphone/zte/2021/axon-30-ultra-5g-top-edition-dual-sim-td-lte-cn-1tb-a2022p.json @@ -0,0 +1,43 @@ +{ + "slug": "axon-30-ultra-5g-top-edition-dual-sim-td-lte-cn-1tb-a2022p", + "name": "Axon 30 Ultra 5G Top Edition Dual SIM TD-LTE CN 1TB A2022P", + "brand": "zte", + "soc": "snapdragon-888", + "release_date": "2021-04-01", + "ram_gb": 16.0, + "battery_mah": 4600, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 65, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2021/blade-11-prime-2020-dual-sim-lte-a-us-z6251vs.json b/data/smartphone/zte/2021/blade-11-prime-2020-dual-sim-lte-a-us-z6251vs.json new file mode 100644 index 00000000000..49984c3384a --- /dev/null +++ b/data/smartphone/zte/2021/blade-11-prime-2020-dual-sim-lte-a-us-z6251vs.json @@ -0,0 +1,42 @@ +{ + "slug": "blade-11-prime-2020-dual-sim-lte-a-us-z6251vs", + "name": "Blade 11 Prime 2020 Dual SIM LTE-A US Z6251VS", + "brand": "zte", + "soc": "helio-p22", + "release_date": "2021-05-01", + "ram_gb": 4.0, + "battery_mah": 4000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 192, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/zte/2021/blade-v30-global-dual-sim-td-lte-128gb-a9030.json b/data/smartphone/zte/2021/blade-v30-global-dual-sim-td-lte-128gb-a9030.json new file mode 100644 index 00000000000..1bb1db3e7fd --- /dev/null +++ b/data/smartphone/zte/2021/blade-v30-global-dual-sim-td-lte-128gb-a9030.json @@ -0,0 +1,41 @@ +{ + "slug": "blade-v30-global-dual-sim-td-lte-128gb-a9030", + "name": "Blade V30 Global Dual SIM TD-LTE 128GB A9030", + "brand": "zte", + "soc": "tiger-t618", + "release_date": "2021-09-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 14.4 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Austria , Bulgaria , Cyprus , Czech , France , Germany , Greece , Italy , Poland , Portugal , Romania , Russia , Spain , Ukraine", + "market_regions": "Eastern Europe , Europe , Western Europe" +} diff --git a/data/smartphone/zte/2021/blade-v30-lte-a-latam-128gb-a9030.json b/data/smartphone/zte/2021/blade-v30-lte-a-latam-128gb-a9030.json new file mode 100644 index 00000000000..d180a4717a5 --- /dev/null +++ b/data/smartphone/zte/2021/blade-v30-lte-a-latam-128gb-a9030.json @@ -0,0 +1,41 @@ +{ + "slug": "blade-v30-lte-a-latam-128gb-a9030", + "name": "Blade V30 LTE-A LATAM 128GB A9030", + "brand": "zte", + "soc": "tiger-t618", + "release_date": "2021-09-01", + "ram_gb": 4.0, + "battery_mah": 5000, + "weight_g": 193.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 14.4 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "market_countries": "Mexico", + "market_regions": "North America" +} diff --git a/data/smartphone/zte/2021/blade-x1-5g-lte-a-us-z6750m-z6750vs.json b/data/smartphone/zte/2021/blade-x1-5g-lte-a-us-z6750m-z6750vs.json new file mode 100644 index 00000000000..834b265d8af --- /dev/null +++ b/data/smartphone/zte/2021/blade-x1-5g-lte-a-us-z6750m-z6750vs.json @@ -0,0 +1,43 @@ +{ + "slug": "blade-x1-5g-lte-a-us-z6750m-z6750vs", + "name": "Blade X1 5G LTE-A US Z6750M / Z6750VS", + "brand": "zte", + "soc": "snapdragon-765", + "release_date": "2021-01-26", + "ram_gb": 6.0, + "battery_mah": 4000, + "weight_g": 190.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "10", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "msrp_usd": 360, + "market_countries": "USA", + "market_regions": "North America" +} diff --git a/data/smartphone/zte/2021/nubia-red-magic-6-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx669j.json b/data/smartphone/zte/2021/nubia-red-magic-6-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx669j.json new file mode 100644 index 00000000000..6370127978d --- /dev/null +++ b/data/smartphone/zte/2021/nubia-red-magic-6-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx669j.json @@ -0,0 +1,44 @@ +{ + "slug": "nubia-red-magic-6-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx669j", + "name": "Nubia Red Magic 6 5G Premium Edition Dual SIM TD-LTE CN 128GB NX669J", + "brand": "zte", + "soc": "snapdragon-888", + "release_date": "2021-03-11", + "ram_gb": 12.0, + "battery_mah": 5050, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "refresh_hz": 165, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 4099, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2021/nubia-red-magic-6-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j.json b/data/smartphone/zte/2021/nubia-red-magic-6-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j.json new file mode 100644 index 00000000000..a73deae424b --- /dev/null +++ b/data/smartphone/zte/2021/nubia-red-magic-6-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j.json @@ -0,0 +1,44 @@ +{ + "slug": "nubia-red-magic-6-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j", + "name": "Nubia Red Magic 6 5G Premium Edition Dual SIM TD-LTE CN 256GB NX669J", + "brand": "zte", + "soc": "snapdragon-888", + "release_date": "2021-03-11", + "ram_gb": 12.0, + "battery_mah": 5050, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "refresh_hz": 165, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 4399, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2021/nubia-red-magic-6-5g-premium-edition-global-dual-sim-td-lte-128gb-nx669j.json b/data/smartphone/zte/2021/nubia-red-magic-6-5g-premium-edition-global-dual-sim-td-lte-128gb-nx669j.json new file mode 100644 index 00000000000..a76ef39e680 --- /dev/null +++ b/data/smartphone/zte/2021/nubia-red-magic-6-5g-premium-edition-global-dual-sim-td-lte-128gb-nx669j.json @@ -0,0 +1,44 @@ +{ + "slug": "nubia-red-magic-6-5g-premium-edition-global-dual-sim-td-lte-128gb-nx669j", + "name": "Nubia Red Magic 6 5G Premium Edition Global Dual SIM TD-LTE 128GB NX669J", + "brand": "zte", + "soc": "snapdragon-888", + "release_date": "2021-03-01", + "ram_gb": 12.0, + "battery_mah": 5050, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "refresh_hz": 165, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 599, + "market_countries": "Austria , Belarus , Belgium , Canada , Cyprus , Croatia , Czech , Denmark , France , Greece , Germany , HK , Hungary , India , Indonesia , Ireland , Israel , Italy , Japan , Netherlands , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Singapore , Slovenia , Spain , Switzerland , Sweden , Thailand , UAE , UK , USA", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/zte/2021/nubia-red-magic-6-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx669j.json b/data/smartphone/zte/2021/nubia-red-magic-6-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx669j.json new file mode 100644 index 00000000000..dd582ad3554 --- /dev/null +++ b/data/smartphone/zte/2021/nubia-red-magic-6-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx669j.json @@ -0,0 +1,44 @@ +{ + "slug": "nubia-red-magic-6-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx669j", + "name": "Nubia Red Magic 6 5G Standard Edition Dual SIM TD-LTE CN 128GB NX669J", + "brand": "zte", + "soc": "snapdragon-888", + "release_date": "2021-03-11", + "ram_gb": 8.0, + "battery_mah": 5050, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "refresh_hz": 165, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 3799, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2021/nubia-red-magic-6-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j-p.json b/data/smartphone/zte/2021/nubia-red-magic-6-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j-p.json new file mode 100644 index 00000000000..6152293ddb3 --- /dev/null +++ b/data/smartphone/zte/2021/nubia-red-magic-6-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j-p.json @@ -0,0 +1,43 @@ +{ + "slug": "nubia-red-magic-6-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j-p", + "name": "Nubia Red Magic 6 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB NX669J-P", + "brand": "zte", + "soc": "snapdragon-888", + "release_date": "2021-03-11", + "ram_gb": 16.0, + "battery_mah": 4500, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "refresh_hz": 165, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2021/nubia-red-magic-6-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-nx669j-p.json b/data/smartphone/zte/2021/nubia-red-magic-6-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-nx669j-p.json new file mode 100644 index 00000000000..cde6f1070e0 --- /dev/null +++ b/data/smartphone/zte/2021/nubia-red-magic-6-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-nx669j-p.json @@ -0,0 +1,44 @@ +{ + "slug": "nubia-red-magic-6-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-nx669j-p", + "name": "Nubia Red Magic 6 Pro 5G Premium Edition Global Dual SIM TD-LTE 256GB NX669J-P", + "brand": "zte", + "soc": "snapdragon-888", + "release_date": "2021-03-01", + "ram_gb": 16.0, + "battery_mah": 5050, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "refresh_hz": 165, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 699, + "market_countries": "Austria , Belarus , Belgium , Canada , Cyprus , Croatia , Czech , Denmark , France , Greece , Germany , HK , Hungary , India , Indonesia , Ireland , Israel , Italy , Japan , Netherlands , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Singapore , Slovenia , Spain , Switzerland , Sweden , Thailand , UAE , UK , USA", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/zte/2021/nubia-red-magic-6-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-nx669j-p.json b/data/smartphone/zte/2021/nubia-red-magic-6-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-nx669j-p.json new file mode 100644 index 00000000000..786581e2821 --- /dev/null +++ b/data/smartphone/zte/2021/nubia-red-magic-6-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-nx669j-p.json @@ -0,0 +1,43 @@ +{ + "slug": "nubia-red-magic-6-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-nx669j-p", + "name": "Nubia Red Magic 6 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB NX669J-P", + "brand": "zte", + "soc": "snapdragon-888", + "release_date": "2021-03-11", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "refresh_hz": 165, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2021/nubia-red-magic-6r-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx666j.json b/data/smartphone/zte/2021/nubia-red-magic-6r-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx666j.json new file mode 100644 index 00000000000..838f10f3d3c --- /dev/null +++ b/data/smartphone/zte/2021/nubia-red-magic-6r-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx666j.json @@ -0,0 +1,44 @@ +{ + "slug": "nubia-red-magic-6r-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx666j", + "name": "Nubia Red Magic 6R 5G Premium Edition Dual SIM TD-LTE CN 256GB NX666J", + "brand": "zte", + "soc": "snapdragon-888", + "release_date": "2021-06-01", + "ram_gb": 12.0, + "battery_mah": 4200, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 3899, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2021/nubia-red-magic-6r-5g-premium-edition-global-dual-sim-td-lte-256gb-nx666j.json b/data/smartphone/zte/2021/nubia-red-magic-6r-5g-premium-edition-global-dual-sim-td-lte-256gb-nx666j.json new file mode 100644 index 00000000000..645ce0777a2 --- /dev/null +++ b/data/smartphone/zte/2021/nubia-red-magic-6r-5g-premium-edition-global-dual-sim-td-lte-256gb-nx666j.json @@ -0,0 +1,44 @@ +{ + "slug": "nubia-red-magic-6r-5g-premium-edition-global-dual-sim-td-lte-256gb-nx666j", + "name": "Nubia Red Magic 6R 5G Premium Edition Global Dual SIM TD-LTE 256GB NX666J", + "brand": "zte", + "soc": "snapdragon-888", + "release_date": "2021-06-02", + "ram_gb": 12.0, + "battery_mah": 4200, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 599, + "market_countries": "Austria , Belarus , Belgium , Canada , Cyprus , Croatia , Czech , Denmark , France , Greece , Germany , HK , Hungary , India , Indonesia , Ireland , Israel , Italy , Japan , Netherlands , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Singapore , Slovenia , Spain , Switzerland , Sweden , Thailand , UAE , UK , USA", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/zte/2021/nubia-red-magic-6r-5g-satndard-edition-global-dual-sim-td-lte-128gb-nx666j.json b/data/smartphone/zte/2021/nubia-red-magic-6r-5g-satndard-edition-global-dual-sim-td-lte-128gb-nx666j.json new file mode 100644 index 00000000000..8d6dd0c37a7 --- /dev/null +++ b/data/smartphone/zte/2021/nubia-red-magic-6r-5g-satndard-edition-global-dual-sim-td-lte-128gb-nx666j.json @@ -0,0 +1,44 @@ +{ + "slug": "nubia-red-magic-6r-5g-satndard-edition-global-dual-sim-td-lte-128gb-nx666j", + "name": "Nubia Red Magic 6R 5G Satndard Edition Global Dual SIM TD-LTE 128GB NX666J", + "brand": "zte", + "soc": "snapdragon-888", + "release_date": "2021-06-02", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "msrp_usd": 599, + "market_countries": "Austria , Belarus , Belgium , Canada , Cyprus , Croatia , Czech , Denmark , France , Greece , Germany , HK , Hungary , India , Indonesia , Ireland , Israel , Italy , Japan , Netherlands , Poland , Portugal , Russia , Romania , Saudi Arabia , Slovakia , Singapore , Slovenia , Spain , Switzerland , Sweden , Thailand , UAE , UK , USA", + "market_regions": "Asia , Eastern Europe , Europe , Middle East , North America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/zte/2021/nubia-red-magic-6s-pro-5g-basic-edition-dual-sim-td-lte-cn-128gb-nx669j-s.json b/data/smartphone/zte/2021/nubia-red-magic-6s-pro-5g-basic-edition-dual-sim-td-lte-cn-128gb-nx669j-s.json new file mode 100644 index 00000000000..feb25584c22 --- /dev/null +++ b/data/smartphone/zte/2021/nubia-red-magic-6s-pro-5g-basic-edition-dual-sim-td-lte-cn-128gb-nx669j-s.json @@ -0,0 +1,44 @@ +{ + "slug": "nubia-red-magic-6s-pro-5g-basic-edition-dual-sim-td-lte-cn-128gb-nx669j-s", + "name": "Nubia Red Magic 6S Pro 5G Basic Edition Dual SIM TD-LTE CN 128GB NX669J-S", + "brand": "zte", + "soc": "snapdragon-888-plus", + "release_date": "2021-09-27", + "ram_gb": 8.0, + "battery_mah": 4500, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "refresh_hz": 165, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 3999, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2021/nubia-red-magic-6s-pro-5g-camouflage-edition-dual-sim-td-lte-cn-512gb-nx669j-s.json b/data/smartphone/zte/2021/nubia-red-magic-6s-pro-5g-camouflage-edition-dual-sim-td-lte-cn-512gb-nx669j-s.json new file mode 100644 index 00000000000..846583c50a2 --- /dev/null +++ b/data/smartphone/zte/2021/nubia-red-magic-6s-pro-5g-camouflage-edition-dual-sim-td-lte-cn-512gb-nx669j-s.json @@ -0,0 +1,43 @@ +{ + "slug": "nubia-red-magic-6s-pro-5g-camouflage-edition-dual-sim-td-lte-cn-512gb-nx669j-s", + "name": "Nubia Red Magic 6S Pro 5G Camouflage Edition Dual SIM TD-LTE CN 512GB NX669J-S", + "brand": "zte", + "soc": "snapdragon-888-plus", + "release_date": "2021-10-01", + "ram_gb": 18.0, + "battery_mah": 4500, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "refresh_hz": 165, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2021/nubia-red-magic-6s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j-s.json b/data/smartphone/zte/2021/nubia-red-magic-6s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j-s.json new file mode 100644 index 00000000000..7b02261f8ce --- /dev/null +++ b/data/smartphone/zte/2021/nubia-red-magic-6s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j-s.json @@ -0,0 +1,43 @@ +{ + "slug": "nubia-red-magic-6s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j-s", + "name": "Nubia Red Magic 6S Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB NX669J-S", + "brand": "zte", + "soc": "snapdragon-888-plus", + "release_date": "2021-09-27", + "ram_gb": 16.0, + "battery_mah": 4500, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "refresh_hz": 165, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2021/nubia-red-magic-6s-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-nx669j-s.json b/data/smartphone/zte/2021/nubia-red-magic-6s-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-nx669j-s.json new file mode 100644 index 00000000000..fbb60fb4b36 --- /dev/null +++ b/data/smartphone/zte/2021/nubia-red-magic-6s-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-nx669j-s.json @@ -0,0 +1,44 @@ +{ + "slug": "nubia-red-magic-6s-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-nx669j-s", + "name": "Nubia Red Magic 6S Pro 5G Premium Edition Global Dual SIM TD-LTE 256GB NX669J-S", + "brand": "zte", + "soc": "snapdragon-888-plus", + "release_date": "2021-09-01", + "ram_gb": 16.0, + "battery_mah": 5050, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "refresh_hz": 165, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 699, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , Canada , Chile , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , India , Indonesia , Ireland , Israel , Italy , Japan , Kuwait , Latvia , Lebanon , Lithuania , Mexico , Netherlands , Norway , Peru , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Sweden , Switzerland , Thailand , UAE , UK , Ukraine , USA", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , North America , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/zte/2021/nubia-red-magic-6s-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx669j-s.json b/data/smartphone/zte/2021/nubia-red-magic-6s-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx669j-s.json new file mode 100644 index 00000000000..dc0efec1dfe --- /dev/null +++ b/data/smartphone/zte/2021/nubia-red-magic-6s-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx669j-s.json @@ -0,0 +1,44 @@ +{ + "slug": "nubia-red-magic-6s-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx669j-s", + "name": "Nubia Red Magic 6S Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB NX669J-S", + "brand": "zte", + "soc": "snapdragon-888-plus", + "release_date": "2021-09-27", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "refresh_hz": 165, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 4299, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2021/nubia-red-magic-6s-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-nx669j-s.json b/data/smartphone/zte/2021/nubia-red-magic-6s-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-nx669j-s.json new file mode 100644 index 00000000000..63fe88806c1 --- /dev/null +++ b/data/smartphone/zte/2021/nubia-red-magic-6s-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-nx669j-s.json @@ -0,0 +1,44 @@ +{ + "slug": "nubia-red-magic-6s-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-nx669j-s", + "name": "Nubia Red Magic 6S Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB NX669J-S", + "brand": "zte", + "soc": "snapdragon-888-plus", + "release_date": "2021-09-27", + "ram_gb": 12.0, + "battery_mah": 4500, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "refresh_hz": 165, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 4899, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2021/nubia-red-magic-6s-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-nx669j-s.json b/data/smartphone/zte/2021/nubia-red-magic-6s-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-nx669j-s.json new file mode 100644 index 00000000000..be808413d98 --- /dev/null +++ b/data/smartphone/zte/2021/nubia-red-magic-6s-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-nx669j-s.json @@ -0,0 +1,44 @@ +{ + "slug": "nubia-red-magic-6s-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-nx669j-s", + "name": "Nubia Red Magic 6S Pro 5G Standard Edition Global Dual SIM TD-LTE 128GB NX669J-S", + "brand": "zte", + "soc": "snapdragon-888-plus", + "release_date": "2021-09-01", + "ram_gb": 16.0, + "battery_mah": 5050, + "weight_g": 220.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "refresh_hz": 165, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "msrp_usd": 599, + "market_countries": "Australia , Austria , Belarus , Belgium , Bulgaria , Canada , Chile , Cyprus , Croatia , Czech , Denmark , Estonia , Finland , France , Greece , Germany , HK , Hungary , India , Indonesia , Ireland , Israel , Italy , Japan , Kuwait , Latvia , Lebanon , Lithuania , Mexico , Netherlands , Norway , Peru , Poland , Portugal , Russia , Romania , Saudi Arabia , Singapore , Slovakia , Slovenia , Spain , Sweden , Switzerland , Thailand , UAE , UK , Ukraine , USA", + "market_regions": "Asia , Australia , Eastern Europe , Europe , Middle East , North America , South America , Southeast Asia , Western Europe" +} diff --git a/data/smartphone/zte/2021/nubia-red-magic-6s-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-nx669j-s.json b/data/smartphone/zte/2021/nubia-red-magic-6s-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-nx669j-s.json new file mode 100644 index 00000000000..9d4a87ec5b3 --- /dev/null +++ b/data/smartphone/zte/2021/nubia-red-magic-6s-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-nx669j-s.json @@ -0,0 +1,43 @@ +{ + "slug": "nubia-red-magic-6s-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-nx669j-s", + "name": "Nubia Red Magic 6S Pro 5G Top Edition Dual SIM TD-LTE CN 512GB NX669J-S", + "brand": "zte", + "soc": "snapdragon-888-plus", + "release_date": "2021-09-27", + "ram_gb": 18.0, + "battery_mah": 4500, + "weight_g": 215.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "refresh_hz": 165, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 120, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2021/s30-5g-dual-sim-td-lte-cn-128gb-9030n.json b/data/smartphone/zte/2021/s30-5g-dual-sim-td-lte-cn-128gb-9030n.json new file mode 100644 index 00000000000..d0bda528d81 --- /dev/null +++ b/data/smartphone/zte/2021/s30-5g-dual-sim-td-lte-cn-128gb-9030n.json @@ -0,0 +1,43 @@ +{ + "slug": "s30-5g-dual-sim-td-lte-cn-128gb-9030n", + "name": "S30 5G Dual SIM TD-LTE CN 128GB 9030N", + "brand": "zte", + "soc": "dimensity-720", + "release_date": "2021-03-01", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2021/s30-5g-dual-sim-td-lte-cn-256gb-9030n.json b/data/smartphone/zte/2021/s30-5g-dual-sim-td-lte-cn-256gb-9030n.json new file mode 100644 index 00000000000..dec7ef2ec58 --- /dev/null +++ b/data/smartphone/zte/2021/s30-5g-dual-sim-td-lte-cn-256gb-9030n.json @@ -0,0 +1,43 @@ +{ + "slug": "s30-5g-dual-sim-td-lte-cn-256gb-9030n", + "name": "S30 5G Dual SIM TD-LTE CN 256GB 9030N", + "brand": "zte", + "soc": "dimensity-720", + "release_date": "2021-04-02", + "ram_gb": 8.0, + "battery_mah": 4000, + "weight_g": 184.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 30, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2021/s30-se-5g-dual-sim-td-lte-cn-128gb-8030n.json b/data/smartphone/zte/2021/s30-se-5g-dual-sim-td-lte-cn-128gb-8030n.json new file mode 100644 index 00000000000..9dee7203070 --- /dev/null +++ b/data/smartphone/zte/2021/s30-se-5g-dual-sim-td-lte-cn-128gb-8030n.json @@ -0,0 +1,43 @@ +{ + "slug": "s30-se-5g-dual-sim-td-lte-cn-128gb-8030n", + "name": "S30 SE 5G Dual SIM TD-LTE CN 128GB 8030N", + "brand": "zte", + "soc": "dimensity-700", + "release_date": "2021-03-01", + "ram_gb": 6.0, + "battery_mah": 6000, + "weight_g": 210.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "charging_wired_w": 18, + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2021/tianji-a31-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb.json b/data/smartphone/zte/2021/tianji-a31-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb.json new file mode 100644 index 00000000000..beaac4eb361 --- /dev/null +++ b/data/smartphone/zte/2021/tianji-a31-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb.json @@ -0,0 +1,43 @@ +{ + "slug": "tianji-a31-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb", + "name": "Tianji A31 Pro 5G Premium Edition Dual SIM TD-LTE CN 128GB", + "brand": "zte", + "soc": "snapdragon-888", + "release_date": "2021-09-01", + "ram_gb": 8.0, + "battery_mah": 4200, + "weight_g": 186.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 43.7 + } + ], + "charging_wired_w": 55, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/data/smartphone/zte/2021/tianji-a31-ultra-5g-dual-sim-td-lte-cn-512gb.json b/data/smartphone/zte/2021/tianji-a31-ultra-5g-dual-sim-td-lte-cn-512gb.json new file mode 100644 index 00000000000..0cba28a8a6d --- /dev/null +++ b/data/smartphone/zte/2021/tianji-a31-ultra-5g-dual-sim-td-lte-cn-512gb.json @@ -0,0 +1,43 @@ +{ + "slug": "tianji-a31-ultra-5g-dual-sim-td-lte-cn-512gb", + "name": "Tianji A31 Ultra 5G Dual SIM TD-LTE CN 512GB", + "brand": "zte", + "soc": "snapdragon-888", + "release_date": "2021-05-01", + "ram_gb": 12.0, + "battery_mah": 4600, + "weight_g": 188.0, + "os": "Android", + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "os_version": "11", + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "charging_wired_w": 66, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "market_countries": "China", + "market_regions": "Asia" +} diff --git a/site/public/v1/index.json b/site/public/v1/index.json index d7202a5927d..35d1a2763d2 100644 --- a/site/public/v1/index.json +++ b/site/public/v1/index.json @@ -10,7 +10,7 @@ "url": "/v1/socs/index.json" }, "smartphones": { - "count": 1499, + "count": 6544, "url": "/v1/smartphones/index.json" }, "gpus": { diff --git a/site/public/v1/smartphones/1-3-2020-dual-sim-lte-emea/index.json b/site/public/v1/smartphones/1-3-2020-dual-sim-lte-emea/index.json new file mode 100644 index 00000000000..3f224a9bc0c --- /dev/null +++ b/site/public/v1/smartphones/1-3-2020-dual-sim-lte-emea/index.json @@ -0,0 +1,76 @@ +{ + "id": 2432, + "slug": "1-3-2020-dual-sim-lte-emea", + "name": "1.3 2020 Dual SIM LTE EMEA", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 131, + "slug": "snapdragon-215", + "name": "Snapdragon 215", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-215" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 155.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.457271", + "updated_at": "2026-06-19T00:43:44.457271" +} diff --git a/site/public/v1/smartphones/1-3-2020-dual-sim-lte-emea/score/index.json b/site/public/v1/smartphones/1-3-2020-dual-sim-lte-emea/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/1-3-2020-dual-sim-lte-emea/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/1-3-2020-dual-sim-lte-latam/index.json b/site/public/v1/smartphones/1-3-2020-dual-sim-lte-latam/index.json new file mode 100644 index 00000000000..398425f6c3e --- /dev/null +++ b/site/public/v1/smartphones/1-3-2020-dual-sim-lte-latam/index.json @@ -0,0 +1,76 @@ +{ + "id": 2433, + "slug": "1-3-2020-dual-sim-lte-latam", + "name": "1.3 2020 Dual SIM LTE LATAM", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 131, + "slug": "snapdragon-215", + "name": "Snapdragon 215", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-215" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 155.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.457271", + "updated_at": "2026-06-19T00:43:44.457271" +} diff --git a/site/public/v1/smartphones/1-3-2020-dual-sim-lte-latam/score/index.json b/site/public/v1/smartphones/1-3-2020-dual-sim-lte-latam/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/1-3-2020-dual-sim-lte-latam/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/1-3-2020-lte-emea/index.json b/site/public/v1/smartphones/1-3-2020-lte-emea/index.json new file mode 100644 index 00000000000..1168d4722ee --- /dev/null +++ b/site/public/v1/smartphones/1-3-2020-lte-emea/index.json @@ -0,0 +1,76 @@ +{ + "id": 2434, + "slug": "1-3-2020-lte-emea", + "name": "1.3 2020 LTE EMEA", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 131, + "slug": "snapdragon-215", + "name": "Snapdragon 215", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-215" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 155.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.457271", + "updated_at": "2026-06-19T00:43:44.457271" +} diff --git a/site/public/v1/smartphones/1-3-2020-lte-emea/score/index.json b/site/public/v1/smartphones/1-3-2020-lte-emea/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/1-3-2020-lte-emea/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/1-4-2021-premium-edition-lte-latam/index.json b/site/public/v1/smartphones/1-4-2021-premium-edition-lte-latam/index.json new file mode 100644 index 00000000000..f9efd32bce0 --- /dev/null +++ b/site/public/v1/smartphones/1-4-2021-premium-edition-lte-latam/index.json @@ -0,0 +1,76 @@ +{ + "id": 2457, + "slug": "1-4-2021-premium-edition-lte-latam", + "name": "1.4 2021 Premium Edition LTE LATAM", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 131, + "slug": "snapdragon-215", + "name": "Snapdragon 215", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-215" + }, + "release_date": "2021-03-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.460276", + "updated_at": "2026-06-19T00:43:44.460276" +} diff --git a/site/public/v1/smartphones/1-4-2021-premium-edition-lte-latam/score/index.json b/site/public/v1/smartphones/1-4-2021-premium-edition-lte-latam/score/index.json new file mode 100644 index 00000000000..7f209133483 --- /dev/null +++ b/site/public/v1/smartphones/1-4-2021-premium-edition-lte-latam/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/1-4-2021-standard-edition-dual-sim-lte-emea-16gb/index.json b/site/public/v1/smartphones/1-4-2021-standard-edition-dual-sim-lte-emea-16gb/index.json new file mode 100644 index 00000000000..79c90831dd6 --- /dev/null +++ b/site/public/v1/smartphones/1-4-2021-standard-edition-dual-sim-lte-emea-16gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2458, + "slug": "1-4-2021-standard-edition-dual-sim-lte-emea-16gb", + "name": "1.4 2021 Standard Edition Dual SIM LTE EMEA 16GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 131, + "slug": "snapdragon-215", + "name": "Snapdragon 215", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-215" + }, + "release_date": "2021-02-04", + "msrp_usd": 99, + "ram_gb": 1, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 35.0, + "value": 59.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.460276", + "updated_at": "2026-06-19T00:43:44.460276" +} diff --git a/site/public/v1/smartphones/1-4-2021-standard-edition-dual-sim-lte-emea-16gb/score/index.json b/site/public/v1/smartphones/1-4-2021-standard-edition-dual-sim-lte-emea-16gb/score/index.json new file mode 100644 index 00000000000..3c09059e448 --- /dev/null +++ b/site/public/v1/smartphones/1-4-2021-standard-edition-dual-sim-lte-emea-16gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 35.0, + "value": 59.1 +} diff --git a/site/public/v1/smartphones/1-4-2021-standard-edition-dual-sim-lte-latam-16gb/index.json b/site/public/v1/smartphones/1-4-2021-standard-edition-dual-sim-lte-latam-16gb/index.json new file mode 100644 index 00000000000..347ea2f997b --- /dev/null +++ b/site/public/v1/smartphones/1-4-2021-standard-edition-dual-sim-lte-latam-16gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2459, + "slug": "1-4-2021-standard-edition-dual-sim-lte-latam-16gb", + "name": "1.4 2021 Standard Edition Dual SIM LTE LATAM 16GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 131, + "slug": "snapdragon-215", + "name": "Snapdragon 215", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-215" + }, + "release_date": "2021-02-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.460276", + "updated_at": "2026-06-19T00:43:44.460276" +} diff --git a/site/public/v1/smartphones/1-4-2021-standard-edition-dual-sim-lte-latam-16gb/score/index.json b/site/public/v1/smartphones/1-4-2021-standard-edition-dual-sim-lte-latam-16gb/score/index.json new file mode 100644 index 00000000000..7f209133483 --- /dev/null +++ b/site/public/v1/smartphones/1-4-2021-standard-edition-dual-sim-lte-latam-16gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/10-5g-global-td-lte-128gb-t790y/index.json b/site/public/v1/smartphones/10-5g-global-td-lte-128gb-t790y/index.json new file mode 100644 index 00000000000..2d4d6c3e978 --- /dev/null +++ b/site/public/v1/smartphones/10-5g-global-td-lte-128gb-t790y/index.json @@ -0,0 +1,77 @@ +{ + "id": 4930, + "slug": "10-5g-global-td-lte-128gb-t790y", + "name": "10 5G Global TD-LTE 128GB T790Y", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 1.5, + "camera": 21.7, + "battery": 23.1, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.830568", + "updated_at": "2026-06-19T00:43:44.830568" +} diff --git a/site/public/v1/smartphones/10-5g-global-td-lte-128gb-t790y/score/index.json b/site/public/v1/smartphones/10-5g-global-td-lte-128gb-t790y/score/index.json new file mode 100644 index 00000000000..800eed5f87b --- /dev/null +++ b/site/public/v1/smartphones/10-5g-global-td-lte-128gb-t790y/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 1.5, + "camera": 21.7, + "battery": 23.1, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/10-5g-td-lte-jp-128gb-t790h/index.json b/site/public/v1/smartphones/10-5g-td-lte-jp-128gb-t790h/index.json new file mode 100644 index 00000000000..c79a4f85352 --- /dev/null +++ b/site/public/v1/smartphones/10-5g-td-lte-jp-128gb-t790h/index.json @@ -0,0 +1,77 @@ +{ + "id": 4931, + "slug": "10-5g-td-lte-jp-128gb-t790h", + "name": "10 5G TD-LTE JP 128GB T790H", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-06-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 1.5, + "camera": 21.7, + "battery": 23.1, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.831198", + "updated_at": "2026-06-19T00:43:44.831198" +} diff --git a/site/public/v1/smartphones/10-5g-td-lte-jp-128gb-t790h/score/index.json b/site/public/v1/smartphones/10-5g-td-lte-jp-128gb-t790h/score/index.json new file mode 100644 index 00000000000..800eed5f87b --- /dev/null +++ b/site/public/v1/smartphones/10-5g-td-lte-jp-128gb-t790h/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 1.5, + "camera": 21.7, + "battery": 23.1, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/10-5g-uw-td-lte-us-128gb-t790s/index.json b/site/public/v1/smartphones/10-5g-uw-td-lte-us-128gb-t790s/index.json new file mode 100644 index 00000000000..4a0fbf011ea --- /dev/null +++ b/site/public/v1/smartphones/10-5g-uw-td-lte-us-128gb-t790s/index.json @@ -0,0 +1,77 @@ +{ + "id": 4932, + "slug": "10-5g-uw-td-lte-us-128gb-t790s", + "name": "10 5G UW TD-LTE US 128GB T790S", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-10-29", + "msrp_usd": 400, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 1.5, + "camera": 21.7, + "battery": 23.1, + "display": 27.0, + "value": 55.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.831198", + "updated_at": "2026-06-19T00:43:44.831198" +} diff --git a/site/public/v1/smartphones/10-5g-uw-td-lte-us-128gb-t790s/score/index.json b/site/public/v1/smartphones/10-5g-uw-td-lte-us-128gb-t790s/score/index.json new file mode 100644 index 00000000000..7d144004070 --- /dev/null +++ b/site/public/v1/smartphones/10-5g-uw-td-lte-us-128gb-t790s/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 1.5, + "camera": 21.7, + "battery": 23.1, + "display": 27.0, + "value": 55.3 +} diff --git a/site/public/v1/smartphones/10-plus-premium-edition-global-dual-sim-td-lte-256gb-t782h/index.json b/site/public/v1/smartphones/10-plus-premium-edition-global-dual-sim-td-lte-256gb-t782h/index.json new file mode 100644 index 00000000000..411d1c2eff3 --- /dev/null +++ b/site/public/v1/smartphones/10-plus-premium-edition-global-dual-sim-td-lte-256gb-t782h/index.json @@ -0,0 +1,76 @@ +{ + "id": 4933, + "slug": "10-plus-premium-edition-global-dual-sim-td-lte-256gb-t782h", + "name": "10 Plus Premium Edition Global Dual SIM TD-LTE 256GB T782H", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-08-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 3.0, + "camera": 16.5, + "battery": 22.5, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.831198", + "updated_at": "2026-06-19T00:43:44.831198" +} diff --git a/site/public/v1/smartphones/10-plus-premium-edition-global-dual-sim-td-lte-256gb-t782h/score/index.json b/site/public/v1/smartphones/10-plus-premium-edition-global-dual-sim-td-lte-256gb-t782h/score/index.json new file mode 100644 index 00000000000..34ac12644cd --- /dev/null +++ b/site/public/v1/smartphones/10-plus-premium-edition-global-dual-sim-td-lte-256gb-t782h/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 3.0, + "camera": 16.5, + "battery": 22.5, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/10-plus-standard-edition-dual-sim-td-lte-apac-64gb-t782p/index.json b/site/public/v1/smartphones/10-plus-standard-edition-dual-sim-td-lte-apac-64gb-t782p/index.json new file mode 100644 index 00000000000..583cb1552af --- /dev/null +++ b/site/public/v1/smartphones/10-plus-standard-edition-dual-sim-td-lte-apac-64gb-t782p/index.json @@ -0,0 +1,76 @@ +{ + "id": 4950, + "slug": "10-plus-standard-edition-dual-sim-td-lte-apac-64gb-t782p", + "name": "10 Plus Standard Edition Dual SIM TD-LTE APAC 64GB T782P", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2021-01-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 1.5, + "camera": 16.5, + "battery": 22.5, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.832757", + "updated_at": "2026-06-19T00:43:44.832757" +} diff --git a/site/public/v1/smartphones/10-plus-standard-edition-dual-sim-td-lte-apac-64gb-t782p/score/index.json b/site/public/v1/smartphones/10-plus-standard-edition-dual-sim-td-lte-apac-64gb-t782p/score/index.json new file mode 100644 index 00000000000..fe13dbf3bbc --- /dev/null +++ b/site/public/v1/smartphones/10-plus-standard-edition-dual-sim-td-lte-apac-64gb-t782p/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 1.5, + "camera": 16.5, + "battery": 22.5, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/10-plus-standard-edition-global-dual-sim-td-lte-128gb-t782h/index.json b/site/public/v1/smartphones/10-plus-standard-edition-global-dual-sim-td-lte-128gb-t782h/index.json new file mode 100644 index 00000000000..ec12d100515 --- /dev/null +++ b/site/public/v1/smartphones/10-plus-standard-edition-global-dual-sim-td-lte-128gb-t782h/index.json @@ -0,0 +1,76 @@ +{ + "id": 4934, + "slug": "10-plus-standard-edition-global-dual-sim-td-lte-128gb-t782h", + "name": "10 Plus Standard Edition Global Dual SIM TD-LTE 128GB T782H", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-08-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 1.5, + "camera": 16.5, + "battery": 22.5, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.831198", + "updated_at": "2026-06-19T00:43:44.831198" +} diff --git a/site/public/v1/smartphones/10-plus-standard-edition-global-dual-sim-td-lte-128gb-t782h/score/index.json b/site/public/v1/smartphones/10-plus-standard-edition-global-dual-sim-td-lte-128gb-t782h/score/index.json new file mode 100644 index 00000000000..fe13dbf3bbc --- /dev/null +++ b/site/public/v1/smartphones/10-plus-standard-edition-global-dual-sim-td-lte-128gb-t782h/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 1.5, + "camera": 16.5, + "battery": 22.5, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/10-plus-standard-edition-global-dual-sim-td-lte-256gb-t782h/index.json b/site/public/v1/smartphones/10-plus-standard-edition-global-dual-sim-td-lte-256gb-t782h/index.json new file mode 100644 index 00000000000..bc8d2f3b1f4 --- /dev/null +++ b/site/public/v1/smartphones/10-plus-standard-edition-global-dual-sim-td-lte-256gb-t782h/index.json @@ -0,0 +1,76 @@ +{ + "id": 4935, + "slug": "10-plus-standard-edition-global-dual-sim-td-lte-256gb-t782h", + "name": "10 Plus Standard Edition Global Dual SIM TD-LTE 256GB T782H", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-08-01", + "msrp_usd": 269, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 1.5, + "camera": 16.5, + "battery": 22.5, + "display": 44.8, + "value": 60.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.831727", + "updated_at": "2026-06-19T00:43:44.831727" +} diff --git a/site/public/v1/smartphones/10-plus-standard-edition-global-dual-sim-td-lte-256gb-t782h/score/index.json b/site/public/v1/smartphones/10-plus-standard-edition-global-dual-sim-td-lte-256gb-t782h/score/index.json new file mode 100644 index 00000000000..feeb5493f9f --- /dev/null +++ b/site/public/v1/smartphones/10-plus-standard-edition-global-dual-sim-td-lte-256gb-t782h/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 1.5, + "camera": 16.5, + "battery": 22.5, + "display": 44.8, + "value": 60.6 +} diff --git a/site/public/v1/smartphones/10-plus-standard-edition-global-dual-sim-td-lte-64gb-t782h/index.json b/site/public/v1/smartphones/10-plus-standard-edition-global-dual-sim-td-lte-64gb-t782h/index.json new file mode 100644 index 00000000000..12de617d1b9 --- /dev/null +++ b/site/public/v1/smartphones/10-plus-standard-edition-global-dual-sim-td-lte-64gb-t782h/index.json @@ -0,0 +1,76 @@ +{ + "id": 4936, + "slug": "10-plus-standard-edition-global-dual-sim-td-lte-64gb-t782h", + "name": "10 Plus Standard Edition Global Dual SIM TD-LTE 64GB T782H", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-08-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 1.5, + "camera": 16.5, + "battery": 22.5, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.831727", + "updated_at": "2026-06-19T00:43:44.831727" +} diff --git a/site/public/v1/smartphones/10-plus-standard-edition-global-dual-sim-td-lte-64gb-t782h/score/index.json b/site/public/v1/smartphones/10-plus-standard-edition-global-dual-sim-td-lte-64gb-t782h/score/index.json new file mode 100644 index 00000000000..fe13dbf3bbc --- /dev/null +++ b/site/public/v1/smartphones/10-plus-standard-edition-global-dual-sim-td-lte-64gb-t782h/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 1.5, + "camera": 16.5, + "battery": 22.5, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/10-pro-dual-sim-td-lte-am-128gb-t799b/index.json b/site/public/v1/smartphones/10-pro-dual-sim-td-lte-am-128gb-t799b/index.json new file mode 100644 index 00000000000..d812ead18e3 --- /dev/null +++ b/site/public/v1/smartphones/10-pro-dual-sim-td-lte-am-128gb-t799b/index.json @@ -0,0 +1,77 @@ +{ + "id": 4937, + "slug": "10-pro-dual-sim-td-lte-am-128gb-t799b", + "name": "10 Pro Dual SIM TD-LTE AM 128GB T799B", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2020-05-19", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 1.5, + "camera": 21.7, + "battery": 23.1, + "display": 27.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.831727", + "updated_at": "2026-06-19T00:43:44.831727" +} diff --git a/site/public/v1/smartphones/10-pro-dual-sim-td-lte-am-128gb-t799b/score/index.json b/site/public/v1/smartphones/10-pro-dual-sim-td-lte-am-128gb-t799b/score/index.json new file mode 100644 index 00000000000..36c8f1e6536 --- /dev/null +++ b/site/public/v1/smartphones/10-pro-dual-sim-td-lte-am-128gb-t799b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 1.5, + "camera": 21.7, + "battery": 23.1, + "display": 27.3, + "value": null +} diff --git a/site/public/v1/smartphones/10-pro-global-dual-sim-td-lte-128gb-t799h/index.json b/site/public/v1/smartphones/10-pro-global-dual-sim-td-lte-128gb-t799h/index.json new file mode 100644 index 00000000000..ebcdd981f87 --- /dev/null +++ b/site/public/v1/smartphones/10-pro-global-dual-sim-td-lte-128gb-t799h/index.json @@ -0,0 +1,77 @@ +{ + "id": 4938, + "slug": "10-pro-global-dual-sim-td-lte-128gb-t799h", + "name": "10 Pro Global Dual SIM TD-LTE 128GB T799H", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 1.5, + "camera": 21.7, + "battery": 23.1, + "display": 27.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.831727", + "updated_at": "2026-06-19T00:43:44.831727" +} diff --git a/site/public/v1/smartphones/10-pro-global-dual-sim-td-lte-128gb-t799h/score/index.json b/site/public/v1/smartphones/10-pro-global-dual-sim-td-lte-128gb-t799h/score/index.json new file mode 100644 index 00000000000..36c8f1e6536 --- /dev/null +++ b/site/public/v1/smartphones/10-pro-global-dual-sim-td-lte-128gb-t799h/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 1.5, + "camera": 21.7, + "battery": 23.1, + "display": 27.3, + "value": null +} diff --git a/site/public/v1/smartphones/10-se-global-dual-sim-td-lte-128gb-t766u/index.json b/site/public/v1/smartphones/10-se-global-dual-sim-td-lte-128gb-t766u/index.json new file mode 100644 index 00000000000..0ee3bd7d96e --- /dev/null +++ b/site/public/v1/smartphones/10-se-global-dual-sim-td-lte-128gb-t766u/index.json @@ -0,0 +1,76 @@ +{ + "id": 4939, + "slug": "10-se-global-dual-sim-td-lte-128gb-t766u", + "name": "10 SE Global Dual SIM TD-LTE 128GB T766U", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": null, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.832227", + "updated_at": "2026-06-19T00:43:44.832227" +} diff --git a/site/public/v1/smartphones/10-se-global-dual-sim-td-lte-128gb-t766u/score/index.json b/site/public/v1/smartphones/10-se-global-dual-sim-td-lte-128gb-t766u/score/index.json new file mode 100644 index 00000000000..973265fb19b --- /dev/null +++ b/site/public/v1/smartphones/10-se-global-dual-sim-td-lte-128gb-t766u/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": null, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/10-se-global-dual-sim-td-lte-64gb-t766h/index.json b/site/public/v1/smartphones/10-se-global-dual-sim-td-lte-64gb-t766h/index.json new file mode 100644 index 00000000000..694a453246c --- /dev/null +++ b/site/public/v1/smartphones/10-se-global-dual-sim-td-lte-64gb-t766h/index.json @@ -0,0 +1,76 @@ +{ + "id": 4940, + "slug": "10-se-global-dual-sim-td-lte-64gb-t766h", + "name": "10 SE Global Dual SIM TD-LTE 64GB T766H", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": null, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.832227", + "updated_at": "2026-06-19T00:43:44.832227" +} diff --git a/site/public/v1/smartphones/10-se-global-dual-sim-td-lte-64gb-t766h/score/index.json b/site/public/v1/smartphones/10-se-global-dual-sim-td-lte-64gb-t766h/score/index.json new file mode 100644 index 00000000000..973265fb19b --- /dev/null +++ b/site/public/v1/smartphones/10-se-global-dual-sim-td-lte-64gb-t766h/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": null, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/10-se-lte-latam-128gb-t766j/index.json b/site/public/v1/smartphones/10-se-lte-latam-128gb-t766j/index.json new file mode 100644 index 00000000000..e633996df81 --- /dev/null +++ b/site/public/v1/smartphones/10-se-lte-latam-128gb-t766j/index.json @@ -0,0 +1,76 @@ +{ + "id": 4941, + "slug": "10-se-lte-latam-128gb-t766j", + "name": "10 SE LTE LATAM 128GB T766J", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": null, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.832227", + "updated_at": "2026-06-19T00:43:44.832227" +} diff --git a/site/public/v1/smartphones/10-se-lte-latam-128gb-t766j/score/index.json b/site/public/v1/smartphones/10-se-lte-latam-128gb-t766j/score/index.json new file mode 100644 index 00000000000..973265fb19b --- /dev/null +++ b/site/public/v1/smartphones/10-se-lte-latam-128gb-t766j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": null, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/10-se-lte-latam-64gb-t766a/index.json b/site/public/v1/smartphones/10-se-lte-latam-64gb-t766a/index.json new file mode 100644 index 00000000000..4b01da93994 --- /dev/null +++ b/site/public/v1/smartphones/10-se-lte-latam-64gb-t766a/index.json @@ -0,0 +1,76 @@ +{ + "id": 4942, + "slug": "10-se-lte-latam-64gb-t766a", + "name": "10 SE LTE LATAM 64GB T766A", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-07-01", + "msrp_usd": 4889, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": null, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": 11.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.832227", + "updated_at": "2026-06-19T00:43:44.832227" +} diff --git a/site/public/v1/smartphones/10-se-lte-latam-64gb-t766a/score/index.json b/site/public/v1/smartphones/10-se-lte-latam-64gb-t766a/score/index.json new file mode 100644 index 00000000000..6b437b3b6bf --- /dev/null +++ b/site/public/v1/smartphones/10-se-lte-latam-64gb-t766a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": null, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": 11.1 +} diff --git a/site/public/v1/smartphones/10l-dual-sim-td-lte-am-128gb-t770b/index.json b/site/public/v1/smartphones/10l-dual-sim-td-lte-am-128gb-t770b/index.json new file mode 100644 index 00000000000..c88ed767e4e --- /dev/null +++ b/site/public/v1/smartphones/10l-dual-sim-td-lte-am-128gb-t770b/index.json @@ -0,0 +1,77 @@ +{ + "id": 4943, + "slug": "10l-dual-sim-td-lte-am-128gb-t770b", + "name": "10L Dual SIM TD-LTE AM 128GB T770B", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-05-19", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.832757", + "updated_at": "2026-06-19T00:43:44.832757" +} diff --git a/site/public/v1/smartphones/10l-dual-sim-td-lte-am-128gb-t770b/score/index.json b/site/public/v1/smartphones/10l-dual-sim-td-lte-am-128gb-t770b/score/index.json new file mode 100644 index 00000000000..0e4b7417dbf --- /dev/null +++ b/site/public/v1/smartphones/10l-dual-sim-td-lte-am-128gb-t770b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/10l-dual-sim-td-lte-am-64gb-t770b/index.json b/site/public/v1/smartphones/10l-dual-sim-td-lte-am-64gb-t770b/index.json new file mode 100644 index 00000000000..38e52ea6668 --- /dev/null +++ b/site/public/v1/smartphones/10l-dual-sim-td-lte-am-64gb-t770b/index.json @@ -0,0 +1,77 @@ +{ + "id": 4944, + "slug": "10l-dual-sim-td-lte-am-64gb-t770b", + "name": "10L Dual SIM TD-LTE AM 64GB T770B", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-05-19", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.832757", + "updated_at": "2026-06-19T00:43:44.832757" +} diff --git a/site/public/v1/smartphones/10l-dual-sim-td-lte-am-64gb-t770b/score/index.json b/site/public/v1/smartphones/10l-dual-sim-td-lte-am-64gb-t770b/score/index.json new file mode 100644 index 00000000000..0e4b7417dbf --- /dev/null +++ b/site/public/v1/smartphones/10l-dual-sim-td-lte-am-64gb-t770b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/10l-global-dual-sim-td-lte-128gb-t770h/index.json b/site/public/v1/smartphones/10l-global-dual-sim-td-lte-128gb-t770h/index.json new file mode 100644 index 00000000000..1b1c016e04c --- /dev/null +++ b/site/public/v1/smartphones/10l-global-dual-sim-td-lte-128gb-t770h/index.json @@ -0,0 +1,77 @@ +{ + "id": 4945, + "slug": "10l-global-dual-sim-td-lte-128gb-t770h", + "name": "10L Global Dual SIM TD-LTE 128GB T770H", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.832757", + "updated_at": "2026-06-19T00:43:44.832757" +} diff --git a/site/public/v1/smartphones/10l-global-dual-sim-td-lte-128gb-t770h/score/index.json b/site/public/v1/smartphones/10l-global-dual-sim-td-lte-128gb-t770h/score/index.json new file mode 100644 index 00000000000..0e4b7417dbf --- /dev/null +++ b/site/public/v1/smartphones/10l-global-dual-sim-td-lte-128gb-t770h/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/10l-global-dual-sim-td-lte-64gb-t770h/index.json b/site/public/v1/smartphones/10l-global-dual-sim-td-lte-64gb-t770h/index.json new file mode 100644 index 00000000000..1a6337e683b --- /dev/null +++ b/site/public/v1/smartphones/10l-global-dual-sim-td-lte-64gb-t770h/index.json @@ -0,0 +1,77 @@ +{ + "id": 4946, + "slug": "10l-global-dual-sim-td-lte-64gb-t770h", + "name": "10L Global Dual SIM TD-LTE 64GB T770H", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.832757", + "updated_at": "2026-06-19T00:43:44.832757" +} diff --git a/site/public/v1/smartphones/10l-global-dual-sim-td-lte-64gb-t770h/score/index.json b/site/public/v1/smartphones/10l-global-dual-sim-td-lte-64gb-t770h/score/index.json new file mode 100644 index 00000000000..0e4b7417dbf --- /dev/null +++ b/site/public/v1/smartphones/10l-global-dual-sim-td-lte-64gb-t770h/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/10t-5g/index.json b/site/public/v1/smartphones/10t-5g/index.json new file mode 100644 index 00000000000..32fb835521f --- /dev/null +++ b/site/public/v1/smartphones/10t-5g/index.json @@ -0,0 +1,70 @@ +{ + "id": 2672, + "slug": "10t-5g", + "name": "10T 5G", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 165, + "slug": "snapdragon-8-plus-gen-1", + "name": "Snapdragon 8+ Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-plus-gen-1" + }, + "release_date": "2022-01-01", + "msrp_usd": 749, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7 + }, + "cameras": [ + { + "type": "main", + "mp": 50.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 25.2, + "camera": 17.1, + "battery": 37.5, + "display": null, + "value": 46.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.489309", + "updated_at": "2026-06-19T00:43:44.489309" +} diff --git a/site/public/v1/smartphones/10t-5g/score/index.json b/site/public/v1/smartphones/10t-5g/score/index.json new file mode 100644 index 00000000000..fb707ca07f5 --- /dev/null +++ b/site/public/v1/smartphones/10t-5g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 25.2, + "camera": 17.1, + "battery": 37.5, + "display": null, + "value": 46.0 +} diff --git a/site/public/v1/smartphones/12/index.json b/site/public/v1/smartphones/12/index.json new file mode 100644 index 00000000000..c3e2c2c4bcc --- /dev/null +++ b/site/public/v1/smartphones/12/index.json @@ -0,0 +1,70 @@ +{ + "id": 2704, + "slug": "12", + "name": "12", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 170, + "slug": "snapdragon-8-gen-3", + "name": "Snapdragon 8 Gen 3", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 750", + "url": "/v1/socs/snapdragon-8-gen-3" + }, + "release_date": "2024-01-01", + "msrp_usd": 799, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7 + }, + "cameras": [ + { + "type": "main", + "mp": 50.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 38.8, + "performance": 54.2, + "camera": 17.1, + "battery": 45.0, + "display": null, + "value": 50.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.494306", + "updated_at": "2026-06-19T00:43:44.494306" +} diff --git a/site/public/v1/smartphones/12/score/index.json b/site/public/v1/smartphones/12/score/index.json new file mode 100644 index 00000000000..6e5bc60ea01 --- /dev/null +++ b/site/public/v1/smartphones/12/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 38.8, + "performance": 54.2, + "camera": 17.1, + "battery": 45.0, + "display": null, + "value": 50.2 +} diff --git a/site/public/v1/smartphones/12r/index.json b/site/public/v1/smartphones/12r/index.json new file mode 100644 index 00000000000..f497de82fc9 --- /dev/null +++ b/site/public/v1/smartphones/12r/index.json @@ -0,0 +1,70 @@ +{ + "id": 2705, + "slug": "12r", + "name": "12R", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 164, + "slug": "snapdragon-8-gen-2", + "name": "Snapdragon 8 Gen 2", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 740", + "url": "/v1/socs/snapdragon-8-gen-2" + }, + "release_date": "2024-01-01", + "msrp_usd": 699, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7 + }, + "cameras": [ + { + "type": "main", + "mp": 50.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.4, + "performance": 36.7, + "camera": 17.1, + "battery": 37.5, + "display": null, + "value": 49.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.494306", + "updated_at": "2026-06-19T00:43:44.494306" +} diff --git a/site/public/v1/smartphones/12r/score/index.json b/site/public/v1/smartphones/12r/score/index.json new file mode 100644 index 00000000000..cfd6e04f9dd --- /dev/null +++ b/site/public/v1/smartphones/12r/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.4, + "performance": 36.7, + "camera": 17.1, + "battery": 37.5, + "display": null, + "value": 49.8 +} diff --git a/site/public/v1/smartphones/14-pro/index.json b/site/public/v1/smartphones/14-pro/index.json new file mode 100644 index 00000000000..45aa20ac58b --- /dev/null +++ b/site/public/v1/smartphones/14-pro/index.json @@ -0,0 +1,71 @@ +{ + "id": 6325, + "slug": "14-pro", + "name": "14 Pro", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 170, + "slug": "snapdragon-8-gen-3", + "name": "Snapdragon 8 Gen 3", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 750", + "url": "/v1/socs/snapdragon-8-gen-3" + }, + "release_date": "2023-01-01", + "msrp_usd": 799, + "ram_gb": 12, + "storage_options_gb": [ + 256, + 512 + ], + "display": { + "size_inch": 6.73 + }, + "cameras": [ + { + "type": "main", + "mp": 50.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 38.8, + "performance": 54.2, + "camera": 17.1, + "battery": 45.0, + "display": null, + "value": 50.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.996824", + "updated_at": "2026-06-19T00:43:44.996824" +} diff --git a/site/public/v1/smartphones/14-pro/score/index.json b/site/public/v1/smartphones/14-pro/score/index.json new file mode 100644 index 00000000000..6e5bc60ea01 --- /dev/null +++ b/site/public/v1/smartphones/14-pro/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 38.8, + "performance": 54.2, + "camera": 17.1, + "battery": 45.0, + "display": null, + "value": 50.2 +} diff --git a/site/public/v1/smartphones/14/index.json b/site/public/v1/smartphones/14/index.json new file mode 100644 index 00000000000..1558d5a0792 --- /dev/null +++ b/site/public/v1/smartphones/14/index.json @@ -0,0 +1,71 @@ +{ + "id": 6326, + "slug": "14", + "name": "14", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 170, + "slug": "snapdragon-8-gen-3", + "name": "Snapdragon 8 Gen 3", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 750", + "url": "/v1/socs/snapdragon-8-gen-3" + }, + "release_date": "2023-01-01", + "msrp_usd": 699, + "ram_gb": 12, + "storage_options_gb": [ + 256, + 512 + ], + "display": { + "size_inch": 6.36 + }, + "cameras": [ + { + "type": "main", + "mp": 50.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4610, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 36.8, + "performance": 54.2, + "camera": 17.1, + "battery": 39.2, + "display": null, + "value": 53.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.997824", + "updated_at": "2026-06-19T00:43:44.997824" +} diff --git a/site/public/v1/smartphones/14/score/index.json b/site/public/v1/smartphones/14/score/index.json new file mode 100644 index 00000000000..b95ed82e919 --- /dev/null +++ b/site/public/v1/smartphones/14/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 36.8, + "performance": 54.2, + "camera": 17.1, + "battery": 39.2, + "display": null, + "value": 53.0 +} diff --git a/site/public/v1/smartphones/14t-pro/index.json b/site/public/v1/smartphones/14t-pro/index.json new file mode 100644 index 00000000000..ce8a64ab809 --- /dev/null +++ b/site/public/v1/smartphones/14t-pro/index.json @@ -0,0 +1,72 @@ +{ + "id": 6352, + "slug": "14t-pro", + "name": "14T Pro", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 93, + "slug": "dimensity-9300-plus", + "name": "MediaTek Dimensity 9300+", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 4.0, + "gpu_name": "Immortalis-G720 MC12", + "url": "/v1/socs/dimensity-9300-plus" + }, + "release_date": "2024-01-01", + "msrp_usd": 635, + "ram_gb": 12, + "storage_options_gb": [ + 256, + 512, + 1024 + ], + "display": { + "size_inch": 6.67 + }, + "cameras": [ + { + "type": "main", + "mp": 50.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 209.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.1, + "performance": 58.1, + "camera": 17.1, + "battery": 45.0, + "display": null, + "value": 57.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:45.000825", + "updated_at": "2026-06-19T00:43:45.000825" +} diff --git a/site/public/v1/smartphones/14t-pro/score/index.json b/site/public/v1/smartphones/14t-pro/score/index.json new file mode 100644 index 00000000000..3bd2ce9ba88 --- /dev/null +++ b/site/public/v1/smartphones/14t-pro/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.1, + "performance": 58.1, + "camera": 17.1, + "battery": 45.0, + "display": null, + "value": 57.2 +} diff --git a/site/public/v1/smartphones/15-dual-sim-td-lte-cn-m881q-128gb/index.json b/site/public/v1/smartphones/15-dual-sim-td-lte-cn-m881q-128gb/index.json new file mode 100644 index 00000000000..a70e7ef2087 --- /dev/null +++ b/site/public/v1/smartphones/15-dual-sim-td-lte-cn-m881q-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1849, + "slug": "15-dual-sim-td-lte-cn-m881q-128gb", + "name": "15 Dual SIM TD-LTE CN M881Q 128GB", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-03-31", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.46, + "resolution": "1080x1920", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "battery_mah": 2940, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 152.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 18.0, + "camera": 5.0, + "battery": 0.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.382879", + "updated_at": "2026-06-19T00:43:44.382879" +} diff --git a/site/public/v1/smartphones/15-dual-sim-td-lte-cn-m881q-128gb/score/index.json b/site/public/v1/smartphones/15-dual-sim-td-lte-cn-m881q-128gb/score/index.json new file mode 100644 index 00000000000..57bdae533e9 --- /dev/null +++ b/site/public/v1/smartphones/15-dual-sim-td-lte-cn-m881q-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 18.0, + "camera": 5.0, + "battery": 0.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/15-dual-sim-td-lte-cn-m881q-64gb/index.json b/site/public/v1/smartphones/15-dual-sim-td-lte-cn-m881q-64gb/index.json new file mode 100644 index 00000000000..a13d339db0f --- /dev/null +++ b/site/public/v1/smartphones/15-dual-sim-td-lte-cn-m881q-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1850, + "slug": "15-dual-sim-td-lte-cn-m881q-64gb", + "name": "15 Dual SIM TD-LTE CN M881Q 64GB", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-03-31", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.46, + "resolution": "1080x1920", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "battery_mah": 2940, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 152.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 18.0, + "camera": 5.0, + "battery": 0.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.382879", + "updated_at": "2026-06-19T00:43:44.382879" +} diff --git a/site/public/v1/smartphones/15-dual-sim-td-lte-cn-m881q-64gb/score/index.json b/site/public/v1/smartphones/15-dual-sim-td-lte-cn-m881q-64gb/score/index.json new file mode 100644 index 00000000000..57bdae533e9 --- /dev/null +++ b/site/public/v1/smartphones/15-dual-sim-td-lte-cn-m881q-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 18.0, + "camera": 5.0, + "battery": 0.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/15-pro/index.json b/site/public/v1/smartphones/15-pro/index.json new file mode 100644 index 00000000000..0cc35212b02 --- /dev/null +++ b/site/public/v1/smartphones/15-pro/index.json @@ -0,0 +1,72 @@ +{ + "id": 6353, + "slug": "15-pro", + "name": "15 Pro", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 173, + "slug": "snapdragon-8-elite", + "name": "Snapdragon 8 Elite", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 3.0, + "gpu_name": "Adreno 830", + "url": "/v1/socs/snapdragon-8-elite" + }, + "release_date": "2024-01-01", + "msrp_usd": 799, + "ram_gb": 16, + "storage_options_gb": [ + 256, + 512, + 1024 + ], + "display": { + "size_inch": 6.73 + }, + "cameras": [ + { + "type": "main", + "mp": 50.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 6100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 56.3, + "performance": 86.9, + "camera": 17.1, + "battery": 65.0, + "display": null, + "value": 59.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:45.000825", + "updated_at": "2026-06-19T00:43:45.000825" +} diff --git a/site/public/v1/smartphones/15-pro/score/index.json b/site/public/v1/smartphones/15-pro/score/index.json new file mode 100644 index 00000000000..92775328904 --- /dev/null +++ b/site/public/v1/smartphones/15-pro/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 56.3, + "performance": 86.9, + "camera": 17.1, + "battery": 65.0, + "display": null, + "value": 59.0 +} diff --git a/site/public/v1/smartphones/15/index.json b/site/public/v1/smartphones/15/index.json new file mode 100644 index 00000000000..3ef63aa050d --- /dev/null +++ b/site/public/v1/smartphones/15/index.json @@ -0,0 +1,71 @@ +{ + "id": 6354, + "slug": "15", + "name": "15", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 173, + "slug": "snapdragon-8-elite", + "name": "Snapdragon 8 Elite", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 3.0, + "gpu_name": "Adreno 830", + "url": "/v1/socs/snapdragon-8-elite" + }, + "release_date": "2024-01-01", + "msrp_usd": 699, + "ram_gb": 16, + "storage_options_gb": [ + 256, + 512 + ], + "display": { + "size_inch": 6.36 + }, + "cameras": [ + { + "type": "main", + "mp": 50.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 5400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 53.3, + "performance": 86.9, + "camera": 17.1, + "battery": 56.0, + "display": null, + "value": 61.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:45.000825", + "updated_at": "2026-06-19T00:43:45.000825" +} diff --git a/site/public/v1/smartphones/15/score/index.json b/site/public/v1/smartphones/15/score/index.json new file mode 100644 index 00000000000..f9a7ad495c6 --- /dev/null +++ b/site/public/v1/smartphones/15/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 53.3, + "performance": 86.9, + "camera": 17.1, + "battery": 56.0, + "display": null, + "value": 61.3 +} diff --git a/site/public/v1/smartphones/16-global-dual-sim-td-lte-128gb-m872h-16x/index.json b/site/public/v1/smartphones/16-global-dual-sim-td-lte-128gb-m872h-16x/index.json new file mode 100644 index 00000000000..0215285b22f --- /dev/null +++ b/site/public/v1/smartphones/16-global-dual-sim-td-lte-128gb-m872h-16x/index.json @@ -0,0 +1,76 @@ +{ + "id": 1851, + "slug": "16-global-dual-sim-td-lte-128gb-m872h-16x", + "name": "16 Global Dual SIM TD-LTE 128GB M872H / 16X", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2018-11-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 154.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 21.5, + "camera": 5.1, + "battery": 1.5, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.382879", + "updated_at": "2026-06-19T00:43:44.382879" +} diff --git a/site/public/v1/smartphones/16-global-dual-sim-td-lte-128gb-m872h-16x/score/index.json b/site/public/v1/smartphones/16-global-dual-sim-td-lte-128gb-m872h-16x/score/index.json new file mode 100644 index 00000000000..90e39bd2495 --- /dev/null +++ b/site/public/v1/smartphones/16-global-dual-sim-td-lte-128gb-m872h-16x/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 21.5, + "camera": 5.1, + "battery": 1.5, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/16-global-dual-sim-td-lte-64gb-m872h-16x/index.json b/site/public/v1/smartphones/16-global-dual-sim-td-lte-64gb-m872h-16x/index.json new file mode 100644 index 00000000000..f4869996f8a --- /dev/null +++ b/site/public/v1/smartphones/16-global-dual-sim-td-lte-64gb-m872h-16x/index.json @@ -0,0 +1,76 @@ +{ + "id": 1852, + "slug": "16-global-dual-sim-td-lte-64gb-m872h-16x", + "name": "16 Global Dual SIM TD-LTE 64GB M872H / 16X", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2018-11-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 154.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 21.5, + "camera": 5.1, + "battery": 1.5, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.382879", + "updated_at": "2026-06-19T00:43:44.382879" +} diff --git a/site/public/v1/smartphones/16-global-dual-sim-td-lte-64gb-m872h-16x/score/index.json b/site/public/v1/smartphones/16-global-dual-sim-td-lte-64gb-m872h-16x/score/index.json new file mode 100644 index 00000000000..90e39bd2495 --- /dev/null +++ b/site/public/v1/smartphones/16-global-dual-sim-td-lte-64gb-m872h-16x/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 21.5, + "camera": 5.1, + "battery": 1.5, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/16s-premium-edition-dual-sim-td-lte-cn-m971q-128gb/index.json b/site/public/v1/smartphones/16s-premium-edition-dual-sim-td-lte-cn-m971q-128gb/index.json new file mode 100644 index 00000000000..1f5f4249940 --- /dev/null +++ b/site/public/v1/smartphones/16s-premium-edition-dual-sim-td-lte-cn-m971q-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1877, + "slug": "16s-premium-edition-dual-sim-td-lte-cn-m971q-128gb", + "name": "16s Premium Edition Dual SIM TD-LTE CN M971Q 128GB", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-04-28", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2232", + "type": "AM-OLED display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3600, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 3.0, + "camera": 16.5, + "battery": 10.3, + "display": 45.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.385882", + "updated_at": "2026-06-19T00:43:44.385882" +} diff --git a/site/public/v1/smartphones/16s-premium-edition-dual-sim-td-lte-cn-m971q-128gb/score/index.json b/site/public/v1/smartphones/16s-premium-edition-dual-sim-td-lte-cn-m971q-128gb/score/index.json new file mode 100644 index 00000000000..b84dbd0fdec --- /dev/null +++ b/site/public/v1/smartphones/16s-premium-edition-dual-sim-td-lte-cn-m971q-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 3.0, + "camera": 16.5, + "battery": 10.3, + "display": 45.0, + "value": null +} diff --git a/site/public/v1/smartphones/16s-premium-edition-dual-sim-td-lte-cn-m971q-256gb/index.json b/site/public/v1/smartphones/16s-premium-edition-dual-sim-td-lte-cn-m971q-256gb/index.json new file mode 100644 index 00000000000..ac04ecc7ba3 --- /dev/null +++ b/site/public/v1/smartphones/16s-premium-edition-dual-sim-td-lte-cn-m971q-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1878, + "slug": "16s-premium-edition-dual-sim-td-lte-cn-m971q-256gb", + "name": "16s Premium Edition Dual SIM TD-LTE CN M971Q 256GB", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-04-28", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2232", + "type": "AM-OLED display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3600, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 3.0, + "camera": 16.5, + "battery": 10.3, + "display": 45.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.385882", + "updated_at": "2026-06-19T00:43:44.385882" +} diff --git a/site/public/v1/smartphones/16s-premium-edition-dual-sim-td-lte-cn-m971q-256gb/score/index.json b/site/public/v1/smartphones/16s-premium-edition-dual-sim-td-lte-cn-m971q-256gb/score/index.json new file mode 100644 index 00000000000..b84dbd0fdec --- /dev/null +++ b/site/public/v1/smartphones/16s-premium-edition-dual-sim-td-lte-cn-m971q-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 3.0, + "camera": 16.5, + "battery": 10.3, + "display": 45.0, + "value": null +} diff --git a/site/public/v1/smartphones/16s-premium-edition-global-dual-sim-td-lte-m971h-128gb/index.json b/site/public/v1/smartphones/16s-premium-edition-global-dual-sim-td-lte-m971h-128gb/index.json new file mode 100644 index 00000000000..abf0aa97b44 --- /dev/null +++ b/site/public/v1/smartphones/16s-premium-edition-global-dual-sim-td-lte-m971h-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1879, + "slug": "16s-premium-edition-global-dual-sim-td-lte-m971h-128gb", + "name": "16s Premium Edition Global Dual SIM TD-LTE M971H 128GB", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2232", + "type": "AM-OLED display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3600, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 3.0, + "camera": 16.5, + "battery": 10.3, + "display": 45.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.386879", + "updated_at": "2026-06-19T00:43:44.386879" +} diff --git a/site/public/v1/smartphones/16s-premium-edition-global-dual-sim-td-lte-m971h-128gb/score/index.json b/site/public/v1/smartphones/16s-premium-edition-global-dual-sim-td-lte-m971h-128gb/score/index.json new file mode 100644 index 00000000000..b84dbd0fdec --- /dev/null +++ b/site/public/v1/smartphones/16s-premium-edition-global-dual-sim-td-lte-m971h-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 3.0, + "camera": 16.5, + "battery": 10.3, + "display": 45.0, + "value": null +} diff --git a/site/public/v1/smartphones/16s-pro-premium-edition-dual-sim-td-lte-cn-m973q-128gb/index.json b/site/public/v1/smartphones/16s-pro-premium-edition-dual-sim-td-lte-cn-m973q-128gb/index.json new file mode 100644 index 00000000000..103ef63e63e --- /dev/null +++ b/site/public/v1/smartphones/16s-pro-premium-edition-dual-sim-td-lte-cn-m973q-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1880, + "slug": "16s-pro-premium-edition-dual-sim-td-lte-cn-m973q-128gb", + "name": "16s Pro Premium Edition Dual SIM TD-LTE CN M973Q 128GB", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2232", + "type": "AM-OLED display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3600, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 3.0, + "camera": 16.5, + "battery": 10.3, + "display": 45.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.386879", + "updated_at": "2026-06-19T00:43:44.386879" +} diff --git a/site/public/v1/smartphones/16s-pro-premium-edition-dual-sim-td-lte-cn-m973q-128gb/score/index.json b/site/public/v1/smartphones/16s-pro-premium-edition-dual-sim-td-lte-cn-m973q-128gb/score/index.json new file mode 100644 index 00000000000..b84dbd0fdec --- /dev/null +++ b/site/public/v1/smartphones/16s-pro-premium-edition-dual-sim-td-lte-cn-m973q-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 3.0, + "camera": 16.5, + "battery": 10.3, + "display": 45.0, + "value": null +} diff --git a/site/public/v1/smartphones/16s-pro-premium-edition-dual-sim-td-lte-cn-m973q-256gb/index.json b/site/public/v1/smartphones/16s-pro-premium-edition-dual-sim-td-lte-cn-m973q-256gb/index.json new file mode 100644 index 00000000000..0652bb42e37 --- /dev/null +++ b/site/public/v1/smartphones/16s-pro-premium-edition-dual-sim-td-lte-cn-m973q-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1881, + "slug": "16s-pro-premium-edition-dual-sim-td-lte-cn-m973q-256gb", + "name": "16s Pro Premium Edition Dual SIM TD-LTE CN M973Q 256GB", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2232", + "type": "AM-OLED display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3600, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 3.0, + "camera": 16.5, + "battery": 10.3, + "display": 45.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.386879", + "updated_at": "2026-06-19T00:43:44.386879" +} diff --git a/site/public/v1/smartphones/16s-pro-premium-edition-dual-sim-td-lte-cn-m973q-256gb/score/index.json b/site/public/v1/smartphones/16s-pro-premium-edition-dual-sim-td-lte-cn-m973q-256gb/score/index.json new file mode 100644 index 00000000000..b84dbd0fdec --- /dev/null +++ b/site/public/v1/smartphones/16s-pro-premium-edition-dual-sim-td-lte-cn-m973q-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 3.0, + "camera": 16.5, + "battery": 10.3, + "display": 45.0, + "value": null +} diff --git a/site/public/v1/smartphones/16s-pro-standard-edition-dual-sim-td-lte-cn-m973q-128gb/index.json b/site/public/v1/smartphones/16s-pro-standard-edition-dual-sim-td-lte-cn-m973q-128gb/index.json new file mode 100644 index 00000000000..b565272fe71 --- /dev/null +++ b/site/public/v1/smartphones/16s-pro-standard-edition-dual-sim-td-lte-cn-m973q-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1882, + "slug": "16s-pro-standard-edition-dual-sim-td-lte-cn-m973q-128gb", + "name": "16s Pro Standard Edition Dual SIM TD-LTE CN M973Q 128GB", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2232", + "type": "AM-OLED display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3600, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 1.5, + "camera": 16.5, + "battery": 10.3, + "display": 45.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.386879", + "updated_at": "2026-06-19T00:43:44.386879" +} diff --git a/site/public/v1/smartphones/16s-pro-standard-edition-dual-sim-td-lte-cn-m973q-128gb/score/index.json b/site/public/v1/smartphones/16s-pro-standard-edition-dual-sim-td-lte-cn-m973q-128gb/score/index.json new file mode 100644 index 00000000000..2556abc0001 --- /dev/null +++ b/site/public/v1/smartphones/16s-pro-standard-edition-dual-sim-td-lte-cn-m973q-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 1.5, + "camera": 16.5, + "battery": 10.3, + "display": 45.0, + "value": null +} diff --git a/site/public/v1/smartphones/16s-standard-edition-dual-sim-td-lte-cn-m971q-128gb/index.json b/site/public/v1/smartphones/16s-standard-edition-dual-sim-td-lte-cn-m971q-128gb/index.json new file mode 100644 index 00000000000..cc74378ea79 --- /dev/null +++ b/site/public/v1/smartphones/16s-standard-edition-dual-sim-td-lte-cn-m971q-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1883, + "slug": "16s-standard-edition-dual-sim-td-lte-cn-m971q-128gb", + "name": "16s Standard Edition Dual SIM TD-LTE CN M971Q 128GB", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-04-28", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2232", + "type": "AM-OLED display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3600, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 1.5, + "camera": 16.5, + "battery": 10.3, + "display": 45.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.386879", + "updated_at": "2026-06-19T00:43:44.386879" +} diff --git a/site/public/v1/smartphones/16s-standard-edition-dual-sim-td-lte-cn-m971q-128gb/score/index.json b/site/public/v1/smartphones/16s-standard-edition-dual-sim-td-lte-cn-m971q-128gb/score/index.json new file mode 100644 index 00000000000..2556abc0001 --- /dev/null +++ b/site/public/v1/smartphones/16s-standard-edition-dual-sim-td-lte-cn-m971q-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 1.5, + "camera": 16.5, + "battery": 10.3, + "display": 45.0, + "value": null +} diff --git a/site/public/v1/smartphones/16s-standard-edition-global-dual-sim-td-lte-m971h-128gb/index.json b/site/public/v1/smartphones/16s-standard-edition-global-dual-sim-td-lte-m971h-128gb/index.json new file mode 100644 index 00000000000..2b55b98c417 --- /dev/null +++ b/site/public/v1/smartphones/16s-standard-edition-global-dual-sim-td-lte-m971h-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1884, + "slug": "16s-standard-edition-global-dual-sim-td-lte-m971h-128gb", + "name": "16s Standard Edition Global Dual SIM TD-LTE M971H 128GB", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2232", + "type": "AM-OLED display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3600, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 1.5, + "camera": 16.5, + "battery": 10.3, + "display": 45.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.386879", + "updated_at": "2026-06-19T00:43:44.386879" +} diff --git a/site/public/v1/smartphones/16s-standard-edition-global-dual-sim-td-lte-m971h-128gb/score/index.json b/site/public/v1/smartphones/16s-standard-edition-global-dual-sim-td-lte-m971h-128gb/score/index.json new file mode 100644 index 00000000000..2556abc0001 --- /dev/null +++ b/site/public/v1/smartphones/16s-standard-edition-global-dual-sim-td-lte-m971h-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 1.5, + "camera": 16.5, + "battery": 10.3, + "display": 45.0, + "value": null +} diff --git a/site/public/v1/smartphones/16t-premium-edition-dual-sim-td-lte-cn-m928q-128gb/index.json b/site/public/v1/smartphones/16t-premium-edition-dual-sim-td-lte-cn-m928q-128gb/index.json new file mode 100644 index 00000000000..b82a5d0441a --- /dev/null +++ b/site/public/v1/smartphones/16t-premium-edition-dual-sim-td-lte-cn-m928q-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1885, + "slug": "16t-premium-edition-dual-sim-td-lte-cn-m928q-128gb", + "name": "16T Premium Edition Dual SIM TD-LTE CN M928Q 128GB", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-10-28", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2232", + "type": "AM-OLED display", + "ppi": 382 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 3.0, + "camera": 5.1, + "battery": 23.1, + "display": 43.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.386879", + "updated_at": "2026-06-19T00:43:44.386879" +} diff --git a/site/public/v1/smartphones/16t-premium-edition-dual-sim-td-lte-cn-m928q-128gb/score/index.json b/site/public/v1/smartphones/16t-premium-edition-dual-sim-td-lte-cn-m928q-128gb/score/index.json new file mode 100644 index 00000000000..513387495d9 --- /dev/null +++ b/site/public/v1/smartphones/16t-premium-edition-dual-sim-td-lte-cn-m928q-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 3.0, + "camera": 5.1, + "battery": 23.1, + "display": 43.2, + "value": null +} diff --git a/site/public/v1/smartphones/16t-premium-edition-dual-sim-td-lte-cn-m928q-256gb/index.json b/site/public/v1/smartphones/16t-premium-edition-dual-sim-td-lte-cn-m928q-256gb/index.json new file mode 100644 index 00000000000..32208b9c25b --- /dev/null +++ b/site/public/v1/smartphones/16t-premium-edition-dual-sim-td-lte-cn-m928q-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1886, + "slug": "16t-premium-edition-dual-sim-td-lte-cn-m928q-256gb", + "name": "16T Premium Edition Dual SIM TD-LTE CN M928Q 256GB", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-10-28", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2232", + "type": "AM-OLED display", + "ppi": 382 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 3.0, + "camera": 5.1, + "battery": 23.1, + "display": 43.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.386879", + "updated_at": "2026-06-19T00:43:44.386879" +} diff --git a/site/public/v1/smartphones/16t-premium-edition-dual-sim-td-lte-cn-m928q-256gb/score/index.json b/site/public/v1/smartphones/16t-premium-edition-dual-sim-td-lte-cn-m928q-256gb/score/index.json new file mode 100644 index 00000000000..513387495d9 --- /dev/null +++ b/site/public/v1/smartphones/16t-premium-edition-dual-sim-td-lte-cn-m928q-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 3.0, + "camera": 5.1, + "battery": 23.1, + "display": 43.2, + "value": null +} diff --git a/site/public/v1/smartphones/16t-standard-edition-dual-sim-td-lte-cn-m928q-128gb/index.json b/site/public/v1/smartphones/16t-standard-edition-dual-sim-td-lte-cn-m928q-128gb/index.json new file mode 100644 index 00000000000..233c58de255 --- /dev/null +++ b/site/public/v1/smartphones/16t-standard-edition-dual-sim-td-lte-cn-m928q-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1887, + "slug": "16t-standard-edition-dual-sim-td-lte-cn-m928q-128gb", + "name": "16T Standard Edition Dual SIM TD-LTE CN M928Q 128GB", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-10-28", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2232", + "type": "AM-OLED display", + "ppi": 382 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 1.5, + "camera": 5.1, + "battery": 23.1, + "display": 43.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.386879", + "updated_at": "2026-06-19T00:43:44.386879" +} diff --git a/site/public/v1/smartphones/16t-standard-edition-dual-sim-td-lte-cn-m928q-128gb/score/index.json b/site/public/v1/smartphones/16t-standard-edition-dual-sim-td-lte-cn-m928q-128gb/score/index.json new file mode 100644 index 00000000000..4afba0d680f --- /dev/null +++ b/site/public/v1/smartphones/16t-standard-edition-dual-sim-td-lte-cn-m928q-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 1.5, + "camera": 5.1, + "battery": 23.1, + "display": 43.2, + "value": null +} diff --git a/site/public/v1/smartphones/16th-global-dual-sim-td-lte-m882h-128gb/index.json b/site/public/v1/smartphones/16th-global-dual-sim-td-lte-m882h-128gb/index.json new file mode 100644 index 00000000000..e8edc4ec32f --- /dev/null +++ b/site/public/v1/smartphones/16th-global-dual-sim-td-lte-m882h-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1853, + "slug": "16th-global-dual-sim-td-lte-m882h-128gb", + "name": "16th Global Dual SIM TD-LTE M882H 128GB", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3010, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 152.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": 3.0, + "camera": 5.1, + "battery": 0.1, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.382879", + "updated_at": "2026-06-19T00:43:44.382879" +} diff --git a/site/public/v1/smartphones/16th-global-dual-sim-td-lte-m882h-128gb/score/index.json b/site/public/v1/smartphones/16th-global-dual-sim-td-lte-m882h-128gb/score/index.json new file mode 100644 index 00000000000..81446ab6aad --- /dev/null +++ b/site/public/v1/smartphones/16th-global-dual-sim-td-lte-m882h-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": 3.0, + "camera": 5.1, + "battery": 0.1, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/16th-global-dual-sim-td-lte-m882h-64gb/index.json b/site/public/v1/smartphones/16th-global-dual-sim-td-lte-m882h-64gb/index.json new file mode 100644 index 00000000000..b9ce3e34f51 --- /dev/null +++ b/site/public/v1/smartphones/16th-global-dual-sim-td-lte-m882h-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1854, + "slug": "16th-global-dual-sim-td-lte-m882h-64gb", + "name": "16th Global Dual SIM TD-LTE M882H 64GB", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3010, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 152.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.0, + "performance": 1.5, + "camera": 5.1, + "battery": 0.1, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.382879", + "updated_at": "2026-06-19T00:43:44.382879" +} diff --git a/site/public/v1/smartphones/16th-global-dual-sim-td-lte-m882h-64gb/score/index.json b/site/public/v1/smartphones/16th-global-dual-sim-td-lte-m882h-64gb/score/index.json new file mode 100644 index 00000000000..d0979646dbb --- /dev/null +++ b/site/public/v1/smartphones/16th-global-dual-sim-td-lte-m882h-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.0, + "performance": 1.5, + "camera": 5.1, + "battery": 0.1, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/16th-plus-premium-edition-dual-sim-td-lte-cn-m892q-128gb/index.json b/site/public/v1/smartphones/16th-plus-premium-edition-dual-sim-td-lte-cn-m892q-128gb/index.json new file mode 100644 index 00000000000..941449df7a7 --- /dev/null +++ b/site/public/v1/smartphones/16th-plus-premium-edition-dual-sim-td-lte-cn-m892q-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1855, + "slug": "16th-plus-premium-edition-dual-sim-td-lte-cn-m892q-128gb", + "name": "16th Plus Premium Edition Dual SIM TD-LTE CN M892Q 128GB", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-08-19", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 372 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3640, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 3.0, + "camera": 5.1, + "battery": 9.6, + "display": 42.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.383875", + "updated_at": "2026-06-19T00:43:44.383875" +} diff --git a/site/public/v1/smartphones/16th-plus-premium-edition-dual-sim-td-lte-cn-m892q-128gb/score/index.json b/site/public/v1/smartphones/16th-plus-premium-edition-dual-sim-td-lte-cn-m892q-128gb/score/index.json new file mode 100644 index 00000000000..61c598b1a60 --- /dev/null +++ b/site/public/v1/smartphones/16th-plus-premium-edition-dual-sim-td-lte-cn-m892q-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 3.0, + "camera": 5.1, + "battery": 9.6, + "display": 42.2, + "value": null +} diff --git a/site/public/v1/smartphones/16th-plus-premium-edition-dual-sim-td-lte-cn-m892q-256gb/index.json b/site/public/v1/smartphones/16th-plus-premium-edition-dual-sim-td-lte-cn-m892q-256gb/index.json new file mode 100644 index 00000000000..0e607e7dfe4 --- /dev/null +++ b/site/public/v1/smartphones/16th-plus-premium-edition-dual-sim-td-lte-cn-m892q-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1856, + "slug": "16th-plus-premium-edition-dual-sim-td-lte-cn-m892q-256gb", + "name": "16th Plus Premium Edition Dual SIM TD-LTE CN M892Q 256GB", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-08-19", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 372 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3640, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 3.0, + "camera": 5.1, + "battery": 9.6, + "display": 42.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.383875", + "updated_at": "2026-06-19T00:43:44.383875" +} diff --git a/site/public/v1/smartphones/16th-plus-premium-edition-dual-sim-td-lte-cn-m892q-256gb/score/index.json b/site/public/v1/smartphones/16th-plus-premium-edition-dual-sim-td-lte-cn-m892q-256gb/score/index.json new file mode 100644 index 00000000000..61c598b1a60 --- /dev/null +++ b/site/public/v1/smartphones/16th-plus-premium-edition-dual-sim-td-lte-cn-m892q-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 3.0, + "camera": 5.1, + "battery": 9.6, + "display": 42.2, + "value": null +} diff --git a/site/public/v1/smartphones/16th-plus-standard-edition-dual-sim-td-lte-cn-m892q-128gb/index.json b/site/public/v1/smartphones/16th-plus-standard-edition-dual-sim-td-lte-cn-m892q-128gb/index.json new file mode 100644 index 00000000000..48ccd29c365 --- /dev/null +++ b/site/public/v1/smartphones/16th-plus-standard-edition-dual-sim-td-lte-cn-m892q-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1857, + "slug": "16th-plus-standard-edition-dual-sim-td-lte-cn-m892q-128gb", + "name": "16th Plus Standard Edition Dual SIM TD-LTE CN M892Q 128GB", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-08-19", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 372 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3640, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.6, + "performance": 1.5, + "camera": 5.1, + "battery": 9.6, + "display": 42.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.383875", + "updated_at": "2026-06-19T00:43:44.383875" +} diff --git a/site/public/v1/smartphones/16th-plus-standard-edition-dual-sim-td-lte-cn-m892q-128gb/score/index.json b/site/public/v1/smartphones/16th-plus-standard-edition-dual-sim-td-lte-cn-m892q-128gb/score/index.json new file mode 100644 index 00000000000..2ae13d825d5 --- /dev/null +++ b/site/public/v1/smartphones/16th-plus-standard-edition-dual-sim-td-lte-cn-m892q-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.6, + "performance": 1.5, + "camera": 5.1, + "battery": 9.6, + "display": 42.2, + "value": null +} diff --git a/site/public/v1/smartphones/16th-premium-edition-dual-sim-td-lte-cn-m882q-128gb/index.json b/site/public/v1/smartphones/16th-premium-edition-dual-sim-td-lte-cn-m882q-128gb/index.json new file mode 100644 index 00000000000..5f9bb03da61 --- /dev/null +++ b/site/public/v1/smartphones/16th-premium-edition-dual-sim-td-lte-cn-m882q-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1858, + "slug": "16th-premium-edition-dual-sim-td-lte-cn-m882q-128gb", + "name": "16th Premium Edition Dual SIM TD-LTE CN M882Q 128GB", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3010, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 152.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": 3.0, + "camera": 5.1, + "battery": 0.1, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.383875", + "updated_at": "2026-06-19T00:43:44.383875" +} diff --git a/site/public/v1/smartphones/16th-premium-edition-dual-sim-td-lte-cn-m882q-128gb/score/index.json b/site/public/v1/smartphones/16th-premium-edition-dual-sim-td-lte-cn-m882q-128gb/score/index.json new file mode 100644 index 00000000000..81446ab6aad --- /dev/null +++ b/site/public/v1/smartphones/16th-premium-edition-dual-sim-td-lte-cn-m882q-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": 3.0, + "camera": 5.1, + "battery": 0.1, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/16th-standard-edition-dual-sim-td-lte-cn-m882q-128gb/index.json b/site/public/v1/smartphones/16th-standard-edition-dual-sim-td-lte-cn-m882q-128gb/index.json new file mode 100644 index 00000000000..7d74fddc721 --- /dev/null +++ b/site/public/v1/smartphones/16th-standard-edition-dual-sim-td-lte-cn-m882q-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1859, + "slug": "16th-standard-edition-dual-sim-td-lte-cn-m882q-128gb", + "name": "16th Standard Edition Dual SIM TD-LTE CN M882Q 128GB", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3010, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 152.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.0, + "performance": 1.5, + "camera": 5.1, + "battery": 0.1, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.383875", + "updated_at": "2026-06-19T00:43:44.383875" +} diff --git a/site/public/v1/smartphones/16th-standard-edition-dual-sim-td-lte-cn-m882q-128gb/score/index.json b/site/public/v1/smartphones/16th-standard-edition-dual-sim-td-lte-cn-m882q-128gb/score/index.json new file mode 100644 index 00000000000..d0979646dbb --- /dev/null +++ b/site/public/v1/smartphones/16th-standard-edition-dual-sim-td-lte-cn-m882q-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.0, + "performance": 1.5, + "camera": 5.1, + "battery": 0.1, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/16th-standard-edition-dual-sim-td-lte-cn-m882q-64gb/index.json b/site/public/v1/smartphones/16th-standard-edition-dual-sim-td-lte-cn-m882q-64gb/index.json new file mode 100644 index 00000000000..a1836bef735 --- /dev/null +++ b/site/public/v1/smartphones/16th-standard-edition-dual-sim-td-lte-cn-m882q-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1860, + "slug": "16th-standard-edition-dual-sim-td-lte-cn-m882q-64gb", + "name": "16th Standard Edition Dual SIM TD-LTE CN M882Q 64GB", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3010, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 152.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.0, + "performance": 1.5, + "camera": 5.1, + "battery": 0.1, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.383875", + "updated_at": "2026-06-19T00:43:44.383875" +} diff --git a/site/public/v1/smartphones/16th-standard-edition-dual-sim-td-lte-cn-m882q-64gb/score/index.json b/site/public/v1/smartphones/16th-standard-edition-dual-sim-td-lte-cn-m882q-64gb/score/index.json new file mode 100644 index 00000000000..d0979646dbb --- /dev/null +++ b/site/public/v1/smartphones/16th-standard-edition-dual-sim-td-lte-cn-m882q-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.0, + "performance": 1.5, + "camera": 5.1, + "battery": 0.1, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/16x-dual-sim-td-lte-cn-128gb-m872q/index.json b/site/public/v1/smartphones/16x-dual-sim-td-lte-cn-128gb-m872q/index.json new file mode 100644 index 00000000000..a0924aea65f --- /dev/null +++ b/site/public/v1/smartphones/16x-dual-sim-td-lte-cn-128gb-m872q/index.json @@ -0,0 +1,76 @@ +{ + "id": 1861, + "slug": "16x-dual-sim-td-lte-cn-128gb-m872q", + "name": "16X Dual SIM TD-LTE CN 128GB M872Q", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2018-09-26", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 154.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 21.5, + "camera": 5.1, + "battery": 1.5, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.383875", + "updated_at": "2026-06-19T00:43:44.383875" +} diff --git a/site/public/v1/smartphones/16x-dual-sim-td-lte-cn-128gb-m872q/score/index.json b/site/public/v1/smartphones/16x-dual-sim-td-lte-cn-128gb-m872q/score/index.json new file mode 100644 index 00000000000..90e39bd2495 --- /dev/null +++ b/site/public/v1/smartphones/16x-dual-sim-td-lte-cn-128gb-m872q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 21.5, + "camera": 5.1, + "battery": 1.5, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/16x-dual-sim-td-lte-cn-64gb-m872q/index.json b/site/public/v1/smartphones/16x-dual-sim-td-lte-cn-64gb-m872q/index.json new file mode 100644 index 00000000000..4b5bbb4ffa2 --- /dev/null +++ b/site/public/v1/smartphones/16x-dual-sim-td-lte-cn-64gb-m872q/index.json @@ -0,0 +1,76 @@ +{ + "id": 1862, + "slug": "16x-dual-sim-td-lte-cn-64gb-m872q", + "name": "16X Dual SIM TD-LTE CN 64GB M872Q", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2018-09-26", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 154.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 21.5, + "camera": 5.1, + "battery": 1.5, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.383875", + "updated_at": "2026-06-19T00:43:44.383875" +} diff --git a/site/public/v1/smartphones/16x-dual-sim-td-lte-cn-64gb-m872q/score/index.json b/site/public/v1/smartphones/16x-dual-sim-td-lte-cn-64gb-m872q/score/index.json new file mode 100644 index 00000000000..90e39bd2495 --- /dev/null +++ b/site/public/v1/smartphones/16x-dual-sim-td-lte-cn-64gb-m872q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 21.5, + "camera": 5.1, + "battery": 1.5, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/16xs-dual-sim-td-lte-cn-128gb-m926q/index.json b/site/public/v1/smartphones/16xs-dual-sim-td-lte-cn-128gb-m926q/index.json new file mode 100644 index 00000000000..4822078392b --- /dev/null +++ b/site/public/v1/smartphones/16xs-dual-sim-td-lte-cn-128gb-m926q/index.json @@ -0,0 +1,76 @@ +{ + "id": 1888, + "slug": "16xs-dual-sim-td-lte-cn-128gb-m926q", + "name": "16Xs Dual SIM TD-LTE CN 128GB M926Q", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-06-11", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2232", + "type": "AM-OLED display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 45.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.386879", + "updated_at": "2026-06-19T00:43:44.386879" +} diff --git a/site/public/v1/smartphones/16xs-dual-sim-td-lte-cn-128gb-m926q/score/index.json b/site/public/v1/smartphones/16xs-dual-sim-td-lte-cn-128gb-m926q/score/index.json new file mode 100644 index 00000000000..c43a892fecd --- /dev/null +++ b/site/public/v1/smartphones/16xs-dual-sim-td-lte-cn-128gb-m926q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 45.0, + "value": null +} diff --git a/site/public/v1/smartphones/16xs-dual-sim-td-lte-cn-64gb-m926q/index.json b/site/public/v1/smartphones/16xs-dual-sim-td-lte-cn-64gb-m926q/index.json new file mode 100644 index 00000000000..68df0986101 --- /dev/null +++ b/site/public/v1/smartphones/16xs-dual-sim-td-lte-cn-64gb-m926q/index.json @@ -0,0 +1,76 @@ +{ + "id": 1889, + "slug": "16xs-dual-sim-td-lte-cn-64gb-m926q", + "name": "16Xs Dual SIM TD-LTE CN 64GB M926Q", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-06-11", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2232", + "type": "AM-OLED display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 45.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.387879", + "updated_at": "2026-06-19T00:43:44.387879" +} diff --git a/site/public/v1/smartphones/16xs-dual-sim-td-lte-cn-64gb-m926q/score/index.json b/site/public/v1/smartphones/16xs-dual-sim-td-lte-cn-64gb-m926q/score/index.json new file mode 100644 index 00000000000..c43a892fecd --- /dev/null +++ b/site/public/v1/smartphones/16xs-dual-sim-td-lte-cn-64gb-m926q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 45.0, + "value": null +} diff --git a/site/public/v1/smartphones/16xs-global-dual-sim-td-lte-128gb-m926h/index.json b/site/public/v1/smartphones/16xs-global-dual-sim-td-lte-128gb-m926h/index.json new file mode 100644 index 00000000000..e794fb844d9 --- /dev/null +++ b/site/public/v1/smartphones/16xs-global-dual-sim-td-lte-128gb-m926h/index.json @@ -0,0 +1,76 @@ +{ + "id": 1890, + "slug": "16xs-global-dual-sim-td-lte-128gb-m926h", + "name": "16Xs Global Dual SIM TD-LTE 128GB M926H", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2232", + "type": "AM-OLED display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 45.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.387879", + "updated_at": "2026-06-19T00:43:44.387879" +} diff --git a/site/public/v1/smartphones/16xs-global-dual-sim-td-lte-128gb-m926h/score/index.json b/site/public/v1/smartphones/16xs-global-dual-sim-td-lte-128gb-m926h/score/index.json new file mode 100644 index 00000000000..c43a892fecd --- /dev/null +++ b/site/public/v1/smartphones/16xs-global-dual-sim-td-lte-128gb-m926h/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 45.0, + "value": null +} diff --git a/site/public/v1/smartphones/16xs-global-dual-sim-td-lte-64gb-m926h/index.json b/site/public/v1/smartphones/16xs-global-dual-sim-td-lte-64gb-m926h/index.json new file mode 100644 index 00000000000..4da0e8c2a01 --- /dev/null +++ b/site/public/v1/smartphones/16xs-global-dual-sim-td-lte-64gb-m926h/index.json @@ -0,0 +1,76 @@ +{ + "id": 1891, + "slug": "16xs-global-dual-sim-td-lte-64gb-m926h", + "name": "16Xs Global Dual SIM TD-LTE 64GB M926H", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2232", + "type": "AM-OLED display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 45.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.387879", + "updated_at": "2026-06-19T00:43:44.387879" +} diff --git a/site/public/v1/smartphones/16xs-global-dual-sim-td-lte-64gb-m926h/score/index.json b/site/public/v1/smartphones/16xs-global-dual-sim-td-lte-64gb-m926h/score/index.json new file mode 100644 index 00000000000..c43a892fecd --- /dev/null +++ b/site/public/v1/smartphones/16xs-global-dual-sim-td-lte-64gb-m926h/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 45.0, + "value": null +} diff --git a/site/public/v1/smartphones/17-5g-aircraft-carrier-limited-edition-dual-sim-td-lte-cn-256gb-m081q/index.json b/site/public/v1/smartphones/17-5g-aircraft-carrier-limited-edition-dual-sim-td-lte-cn-256gb-m081q/index.json new file mode 100644 index 00000000000..27de16bf0a1 --- /dev/null +++ b/site/public/v1/smartphones/17-5g-aircraft-carrier-limited-edition-dual-sim-td-lte-cn-256gb-m081q/index.json @@ -0,0 +1,77 @@ +{ + "id": 1895, + "slug": "17-5g-aircraft-carrier-limited-edition-dual-sim-td-lte-cn-256gb-m081q", + "name": "17 5G Aircraft Carrier Limited Edition Dual SIM TD-LTE CN 256GB M081Q", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4500, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 3.0, + "camera": 21.5, + "battery": 25.4, + "display": 39.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.387879", + "updated_at": "2026-06-19T00:43:44.387879" +} diff --git a/site/public/v1/smartphones/17-5g-aircraft-carrier-limited-edition-dual-sim-td-lte-cn-256gb-m081q/score/index.json b/site/public/v1/smartphones/17-5g-aircraft-carrier-limited-edition-dual-sim-td-lte-cn-256gb-m081q/score/index.json new file mode 100644 index 00000000000..9c82e341e1f --- /dev/null +++ b/site/public/v1/smartphones/17-5g-aircraft-carrier-limited-edition-dual-sim-td-lte-cn-256gb-m081q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 3.0, + "camera": 21.5, + "battery": 25.4, + "display": 39.1, + "value": null +} diff --git a/site/public/v1/smartphones/17-5g-dual-sim-td-lte-cn-128gb-m081m/index.json b/site/public/v1/smartphones/17-5g-dual-sim-td-lte-cn-128gb-m081m/index.json new file mode 100644 index 00000000000..728bf8f78ad --- /dev/null +++ b/site/public/v1/smartphones/17-5g-dual-sim-td-lte-cn-128gb-m081m/index.json @@ -0,0 +1,77 @@ +{ + "id": 1896, + "slug": "17-5g-dual-sim-td-lte-cn-128gb-m081m", + "name": "17 5G Dual SIM TD-LTE CN 128GB M081M", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-05-13", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4500, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 3.0, + "camera": 21.5, + "battery": 25.4, + "display": 39.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.387879", + "updated_at": "2026-06-19T00:43:44.387879" +} diff --git a/site/public/v1/smartphones/17-5g-dual-sim-td-lte-cn-128gb-m081m/score/index.json b/site/public/v1/smartphones/17-5g-dual-sim-td-lte-cn-128gb-m081m/score/index.json new file mode 100644 index 00000000000..9c82e341e1f --- /dev/null +++ b/site/public/v1/smartphones/17-5g-dual-sim-td-lte-cn-128gb-m081m/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 3.0, + "camera": 21.5, + "battery": 25.4, + "display": 39.1, + "value": null +} diff --git a/site/public/v1/smartphones/17-5g-dual-sim-td-lte-cn-128gb-m081q/index.json b/site/public/v1/smartphones/17-5g-dual-sim-td-lte-cn-128gb-m081q/index.json new file mode 100644 index 00000000000..aa4730d7f1a --- /dev/null +++ b/site/public/v1/smartphones/17-5g-dual-sim-td-lte-cn-128gb-m081q/index.json @@ -0,0 +1,77 @@ +{ + "id": 1897, + "slug": "17-5g-dual-sim-td-lte-cn-128gb-m081q", + "name": "17 5G Dual SIM TD-LTE CN 128GB M081Q", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-05-13", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4500, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 3.0, + "camera": 21.5, + "battery": 25.4, + "display": 39.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.388881", + "updated_at": "2026-06-19T00:43:44.388881" +} diff --git a/site/public/v1/smartphones/17-5g-dual-sim-td-lte-cn-128gb-m081q/score/index.json b/site/public/v1/smartphones/17-5g-dual-sim-td-lte-cn-128gb-m081q/score/index.json new file mode 100644 index 00000000000..9c82e341e1f --- /dev/null +++ b/site/public/v1/smartphones/17-5g-dual-sim-td-lte-cn-128gb-m081q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 3.0, + "camera": 21.5, + "battery": 25.4, + "display": 39.1, + "value": null +} diff --git a/site/public/v1/smartphones/17-5g-dual-sim-td-lte-cn-256gb-m081q/index.json b/site/public/v1/smartphones/17-5g-dual-sim-td-lte-cn-256gb-m081q/index.json new file mode 100644 index 00000000000..5103b5c392a --- /dev/null +++ b/site/public/v1/smartphones/17-5g-dual-sim-td-lte-cn-256gb-m081q/index.json @@ -0,0 +1,77 @@ +{ + "id": 1898, + "slug": "17-5g-dual-sim-td-lte-cn-256gb-m081q", + "name": "17 5G Dual SIM TD-LTE CN 256GB M081Q", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-05-13", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4500, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 3.0, + "camera": 21.5, + "battery": 25.4, + "display": 39.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.388881", + "updated_at": "2026-06-19T00:43:44.388881" +} diff --git a/site/public/v1/smartphones/17-5g-dual-sim-td-lte-cn-256gb-m081q/score/index.json b/site/public/v1/smartphones/17-5g-dual-sim-td-lte-cn-256gb-m081q/score/index.json new file mode 100644 index 00000000000..9c82e341e1f --- /dev/null +++ b/site/public/v1/smartphones/17-5g-dual-sim-td-lte-cn-256gb-m081q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 3.0, + "camera": 21.5, + "battery": 25.4, + "display": 39.1, + "value": null +} diff --git a/site/public/v1/smartphones/17-pro-5g-premium-edition-dual-sim-td-lte-cn-m091q/index.json b/site/public/v1/smartphones/17-pro-5g-premium-edition-dual-sim-td-lte-cn-m091q/index.json new file mode 100644 index 00000000000..a16d6523bf1 --- /dev/null +++ b/site/public/v1/smartphones/17-pro-5g-premium-edition-dual-sim-td-lte-cn-m091q/index.json @@ -0,0 +1,77 @@ +{ + "id": 1899, + "slug": "17-pro-5g-premium-edition-dual-sim-td-lte-cn-m091q", + "name": "17 Pro 5G Premium Edition Dual SIM TD-LTE CN M091Q", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-05-13", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4500, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 219.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.0, + "performance": 6.0, + "camera": 21.5, + "battery": 25.4, + "display": 39.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.388881", + "updated_at": "2026-06-19T00:43:44.388881" +} diff --git a/site/public/v1/smartphones/17-pro-5g-premium-edition-dual-sim-td-lte-cn-m091q/score/index.json b/site/public/v1/smartphones/17-pro-5g-premium-edition-dual-sim-td-lte-cn-m091q/score/index.json new file mode 100644 index 00000000000..c64adeb50e2 --- /dev/null +++ b/site/public/v1/smartphones/17-pro-5g-premium-edition-dual-sim-td-lte-cn-m091q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.0, + "performance": 6.0, + "camera": 21.5, + "battery": 25.4, + "display": 39.1, + "value": null +} diff --git a/site/public/v1/smartphones/17-pro-5g-standard-edition-dual-sim-td-lte-cn-m091m/index.json b/site/public/v1/smartphones/17-pro-5g-standard-edition-dual-sim-td-lte-cn-m091m/index.json new file mode 100644 index 00000000000..afff6a51623 --- /dev/null +++ b/site/public/v1/smartphones/17-pro-5g-standard-edition-dual-sim-td-lte-cn-m091m/index.json @@ -0,0 +1,77 @@ +{ + "id": 1900, + "slug": "17-pro-5g-standard-edition-dual-sim-td-lte-cn-m091m", + "name": "17 Pro 5G Standard Edition Dual SIM TD-LTE CN M091M", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-05-13", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4500, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 219.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 3.0, + "camera": 21.5, + "battery": 25.4, + "display": 39.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.388881", + "updated_at": "2026-06-19T00:43:44.388881" +} diff --git a/site/public/v1/smartphones/17-pro-5g-standard-edition-dual-sim-td-lte-cn-m091m/score/index.json b/site/public/v1/smartphones/17-pro-5g-standard-edition-dual-sim-td-lte-cn-m091m/score/index.json new file mode 100644 index 00000000000..9c82e341e1f --- /dev/null +++ b/site/public/v1/smartphones/17-pro-5g-standard-edition-dual-sim-td-lte-cn-m091m/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 3.0, + "camera": 21.5, + "battery": 25.4, + "display": 39.1, + "value": null +} diff --git a/site/public/v1/smartphones/17-pro-5g-standard-edition-dual-sim-td-lte-cn-m091q/index.json b/site/public/v1/smartphones/17-pro-5g-standard-edition-dual-sim-td-lte-cn-m091q/index.json new file mode 100644 index 00000000000..065830c2304 --- /dev/null +++ b/site/public/v1/smartphones/17-pro-5g-standard-edition-dual-sim-td-lte-cn-m091q/index.json @@ -0,0 +1,77 @@ +{ + "id": 1901, + "slug": "17-pro-5g-standard-edition-dual-sim-td-lte-cn-m091q", + "name": "17 Pro 5G Standard Edition Dual SIM TD-LTE CN M091Q", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-05-13", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4500, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 219.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 3.0, + "camera": 21.5, + "battery": 25.4, + "display": 39.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.388881", + "updated_at": "2026-06-19T00:43:44.388881" +} diff --git a/site/public/v1/smartphones/17-pro-5g-standard-edition-dual-sim-td-lte-cn-m091q/score/index.json b/site/public/v1/smartphones/17-pro-5g-standard-edition-dual-sim-td-lte-cn-m091q/score/index.json new file mode 100644 index 00000000000..9c82e341e1f --- /dev/null +++ b/site/public/v1/smartphones/17-pro-5g-standard-edition-dual-sim-td-lte-cn-m091q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 3.0, + "camera": 21.5, + "battery": 25.4, + "display": 39.1, + "value": null +} diff --git a/site/public/v1/smartphones/17-pro-5g-xiaofang-kiln-art-edition-dual-sim-td-lte-cn-m091q/index.json b/site/public/v1/smartphones/17-pro-5g-xiaofang-kiln-art-edition-dual-sim-td-lte-cn-m091q/index.json new file mode 100644 index 00000000000..075a93b35ae --- /dev/null +++ b/site/public/v1/smartphones/17-pro-5g-xiaofang-kiln-art-edition-dual-sim-td-lte-cn-m091q/index.json @@ -0,0 +1,77 @@ +{ + "id": 1902, + "slug": "17-pro-5g-xiaofang-kiln-art-edition-dual-sim-td-lte-cn-m091q", + "name": "17 Pro 5G Xiaofang Kiln Art Edition Dual SIM TD-LTE CN M091Q", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4500, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 219.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.0, + "performance": 6.0, + "camera": 21.5, + "battery": 25.4, + "display": 39.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.388881", + "updated_at": "2026-06-19T00:43:44.388881" +} diff --git a/site/public/v1/smartphones/17-pro-5g-xiaofang-kiln-art-edition-dual-sim-td-lte-cn-m091q/score/index.json b/site/public/v1/smartphones/17-pro-5g-xiaofang-kiln-art-edition-dual-sim-td-lte-cn-m091q/score/index.json new file mode 100644 index 00000000000..c64adeb50e2 --- /dev/null +++ b/site/public/v1/smartphones/17-pro-5g-xiaofang-kiln-art-edition-dual-sim-td-lte-cn-m091q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.0, + "performance": 6.0, + "camera": 21.5, + "battery": 25.4, + "display": 39.1, + "value": null +} diff --git a/site/public/v1/smartphones/18-5g-premium-edition-dual-sim-td-lte-cn-256gb-m181q/index.json b/site/public/v1/smartphones/18-5g-premium-edition-dual-sim-td-lte-cn-256gb-m181q/index.json new file mode 100644 index 00000000000..ff88566c22e --- /dev/null +++ b/site/public/v1/smartphones/18-5g-premium-edition-dual-sim-td-lte-cn-256gb-m181q/index.json @@ -0,0 +1,77 @@ +{ + "id": 1903, + "slug": "18-5g-premium-edition-dual-sim-td-lte-cn-256gb-m181q", + "name": "18 5G Premium Edition Dual SIM TD-LTE CN 256GB M181Q", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-09", + "msrp_usd": 4999, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.2, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 566 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 4000, + "charging_wired_w": 36.0, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 9.4, + "camera": 21.7, + "battery": 29.0, + "display": 69.1, + "value": 16.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.388881", + "updated_at": "2026-06-19T00:43:44.388881" +} diff --git a/site/public/v1/smartphones/18-5g-premium-edition-dual-sim-td-lte-cn-256gb-m181q/score/index.json b/site/public/v1/smartphones/18-5g-premium-edition-dual-sim-td-lte-cn-256gb-m181q/score/index.json new file mode 100644 index 00000000000..714d6b08bd0 --- /dev/null +++ b/site/public/v1/smartphones/18-5g-premium-edition-dual-sim-td-lte-cn-256gb-m181q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 9.4, + "camera": 21.7, + "battery": 29.0, + "display": 69.1, + "value": 16.1 +} diff --git a/site/public/v1/smartphones/18-5g-standard-edition-dual-sim-td-lte-cn-128gb-m181q/index.json b/site/public/v1/smartphones/18-5g-standard-edition-dual-sim-td-lte-cn-128gb-m181q/index.json new file mode 100644 index 00000000000..a5a108ec386 --- /dev/null +++ b/site/public/v1/smartphones/18-5g-standard-edition-dual-sim-td-lte-cn-128gb-m181q/index.json @@ -0,0 +1,77 @@ +{ + "id": 1904, + "slug": "18-5g-standard-edition-dual-sim-td-lte-cn-128gb-m181q", + "name": "18 5G Standard Edition Dual SIM TD-LTE CN 128GB M181Q", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-09", + "msrp_usd": 4399, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 566 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 4000, + "charging_wired_w": 36.0, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.5, + "performance": 6.4, + "camera": 21.7, + "battery": 29.0, + "display": 69.1, + "value": 15.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.388881", + "updated_at": "2026-06-19T00:43:44.388881" +} diff --git a/site/public/v1/smartphones/18-5g-standard-edition-dual-sim-td-lte-cn-128gb-m181q/score/index.json b/site/public/v1/smartphones/18-5g-standard-edition-dual-sim-td-lte-cn-128gb-m181q/score/index.json new file mode 100644 index 00000000000..04bbbe2375c --- /dev/null +++ b/site/public/v1/smartphones/18-5g-standard-edition-dual-sim-td-lte-cn-128gb-m181q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.5, + "performance": 6.4, + "camera": 21.7, + "battery": 29.0, + "display": 69.1, + "value": 15.8 +} diff --git a/site/public/v1/smartphones/18-5g-standard-edition-dual-sim-td-lte-cn-256gb-m181q/index.json b/site/public/v1/smartphones/18-5g-standard-edition-dual-sim-td-lte-cn-256gb-m181q/index.json new file mode 100644 index 00000000000..e8234bd24eb --- /dev/null +++ b/site/public/v1/smartphones/18-5g-standard-edition-dual-sim-td-lte-cn-256gb-m181q/index.json @@ -0,0 +1,77 @@ +{ + "id": 1905, + "slug": "18-5g-standard-edition-dual-sim-td-lte-cn-256gb-m181q", + "name": "18 5G Standard Edition Dual SIM TD-LTE CN 256GB M181Q", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-09", + "msrp_usd": 4699, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.2, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 566 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 4000, + "charging_wired_w": 36.0, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.5, + "performance": 6.4, + "camera": 21.7, + "battery": 29.0, + "display": 69.1, + "value": 15.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.388881", + "updated_at": "2026-06-19T00:43:44.388881" +} diff --git a/site/public/v1/smartphones/18-5g-standard-edition-dual-sim-td-lte-cn-256gb-m181q/score/index.json b/site/public/v1/smartphones/18-5g-standard-edition-dual-sim-td-lte-cn-256gb-m181q/score/index.json new file mode 100644 index 00000000000..04bbbe2375c --- /dev/null +++ b/site/public/v1/smartphones/18-5g-standard-edition-dual-sim-td-lte-cn-256gb-m181q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.5, + "performance": 6.4, + "camera": 21.7, + "battery": 29.0, + "display": 69.1, + "value": 15.8 +} diff --git a/site/public/v1/smartphones/18-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m191q/index.json b/site/public/v1/smartphones/18-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m191q/index.json new file mode 100644 index 00000000000..75925ee4c97 --- /dev/null +++ b/site/public/v1/smartphones/18-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m191q/index.json @@ -0,0 +1,77 @@ +{ + "id": 1906, + "slug": "18-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m191q", + "name": "18 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB M191Q", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-09", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.68, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 43.7 + } + ], + "battery_mah": 4500, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 9.4, + "camera": 17.2, + "battery": 37.3, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.388881", + "updated_at": "2026-06-19T00:43:44.388881" +} diff --git a/site/public/v1/smartphones/18-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m191q/score/index.json b/site/public/v1/smartphones/18-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m191q/score/index.json new file mode 100644 index 00000000000..3cb812bf685 --- /dev/null +++ b/site/public/v1/smartphones/18-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m191q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 9.4, + "camera": 17.2, + "battery": 37.3, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/18-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m191q/index.json b/site/public/v1/smartphones/18-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m191q/index.json new file mode 100644 index 00000000000..f088f49a5c1 --- /dev/null +++ b/site/public/v1/smartphones/18-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m191q/index.json @@ -0,0 +1,77 @@ +{ + "id": 1907, + "slug": "18-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m191q", + "name": "18 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB M191Q", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-09", + "msrp_usd": 4999, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.68, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 43.7 + } + ], + "battery_mah": 4500, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.5, + "performance": 6.4, + "camera": 17.2, + "battery": 37.3, + "display": 65.1, + "value": 15.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.389879", + "updated_at": "2026-06-19T00:43:44.389879" +} diff --git a/site/public/v1/smartphones/18-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m191q/score/index.json b/site/public/v1/smartphones/18-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m191q/score/index.json new file mode 100644 index 00000000000..860611bf596 --- /dev/null +++ b/site/public/v1/smartphones/18-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m191q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.5, + "performance": 6.4, + "camera": 17.2, + "battery": 37.3, + "display": 65.1, + "value": 15.8 +} diff --git a/site/public/v1/smartphones/18-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m191q/index.json b/site/public/v1/smartphones/18-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m191q/index.json new file mode 100644 index 00000000000..2ab202369df --- /dev/null +++ b/site/public/v1/smartphones/18-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m191q/index.json @@ -0,0 +1,77 @@ +{ + "id": 1908, + "slug": "18-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m191q", + "name": "18 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB M191Q", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-09", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.68, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 43.7 + } + ], + "battery_mah": 4500, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.5, + "performance": 6.4, + "camera": 17.2, + "battery": 37.3, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.389879", + "updated_at": "2026-06-19T00:43:44.389879" +} diff --git a/site/public/v1/smartphones/18-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m191q/score/index.json b/site/public/v1/smartphones/18-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m191q/score/index.json new file mode 100644 index 00000000000..9b151fc13ad --- /dev/null +++ b/site/public/v1/smartphones/18-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m191q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.5, + "performance": 6.4, + "camera": 17.2, + "battery": 37.3, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/18s-5g-premium-edition-dual-sim-td-lte-cn-256gb-m182q/index.json b/site/public/v1/smartphones/18s-5g-premium-edition-dual-sim-td-lte-cn-256gb-m182q/index.json new file mode 100644 index 00000000000..55085d37e44 --- /dev/null +++ b/site/public/v1/smartphones/18s-5g-premium-edition-dual-sim-td-lte-cn-256gb-m182q/index.json @@ -0,0 +1,77 @@ +{ + "id": 1909, + "slug": "18s-5g-premium-edition-dual-sim-td-lte-cn-256gb-m182q", + "name": "18s 5G Premium Edition Dual SIM TD-LTE CN 256GB M182Q", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-09-01", + "msrp_usd": 4299, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.2, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 566 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 4000, + "charging_wired_w": 36.0, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.8, + "performance": 11.2, + "camera": 21.7, + "battery": 29.0, + "display": 69.1, + "value": 16.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.389879", + "updated_at": "2026-06-19T00:43:44.389879" +} diff --git a/site/public/v1/smartphones/18s-5g-premium-edition-dual-sim-td-lte-cn-256gb-m182q/score/index.json b/site/public/v1/smartphones/18s-5g-premium-edition-dual-sim-td-lte-cn-256gb-m182q/score/index.json new file mode 100644 index 00000000000..d4d6b04e8ca --- /dev/null +++ b/site/public/v1/smartphones/18s-5g-premium-edition-dual-sim-td-lte-cn-256gb-m182q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.8, + "performance": 11.2, + "camera": 21.7, + "battery": 29.0, + "display": 69.1, + "value": 16.4 +} diff --git a/site/public/v1/smartphones/18s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m182q/index.json b/site/public/v1/smartphones/18s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m182q/index.json new file mode 100644 index 00000000000..ca4b18284c0 --- /dev/null +++ b/site/public/v1/smartphones/18s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m182q/index.json @@ -0,0 +1,77 @@ +{ + "id": 1910, + "slug": "18s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m182q", + "name": "18s 5G Standard Edition Dual SIM TD-LTE CN 128GB M182Q", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-09-01", + "msrp_usd": 3699, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 566 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 4000, + "charging_wired_w": 36.0, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.0, + "performance": 8.2, + "camera": 21.7, + "battery": 29.0, + "display": 69.1, + "value": 16.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.389879", + "updated_at": "2026-06-19T00:43:44.389879" +} diff --git a/site/public/v1/smartphones/18s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m182q/score/index.json b/site/public/v1/smartphones/18s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m182q/score/index.json new file mode 100644 index 00000000000..66709cb1438 --- /dev/null +++ b/site/public/v1/smartphones/18s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m182q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.0, + "performance": 8.2, + "camera": 21.7, + "battery": 29.0, + "display": 69.1, + "value": 16.0 +} diff --git a/site/public/v1/smartphones/18s-5g-standard-edition-dual-sim-td-lte-cn-256gb-m182q/index.json b/site/public/v1/smartphones/18s-5g-standard-edition-dual-sim-td-lte-cn-256gb-m182q/index.json new file mode 100644 index 00000000000..6af82939899 --- /dev/null +++ b/site/public/v1/smartphones/18s-5g-standard-edition-dual-sim-td-lte-cn-256gb-m182q/index.json @@ -0,0 +1,77 @@ +{ + "id": 1911, + "slug": "18s-5g-standard-edition-dual-sim-td-lte-cn-256gb-m182q", + "name": "18s 5G Standard Edition Dual SIM TD-LTE CN 256GB M182Q", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-09-01", + "msrp_usd": 3999, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.2, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 566 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 4000, + "charging_wired_w": 36.0, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.0, + "performance": 8.2, + "camera": 21.7, + "battery": 29.0, + "display": 69.1, + "value": 16.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.389879", + "updated_at": "2026-06-19T00:43:44.389879" +} diff --git a/site/public/v1/smartphones/18s-5g-standard-edition-dual-sim-td-lte-cn-256gb-m182q/score/index.json b/site/public/v1/smartphones/18s-5g-standard-edition-dual-sim-td-lte-cn-256gb-m182q/score/index.json new file mode 100644 index 00000000000..66709cb1438 --- /dev/null +++ b/site/public/v1/smartphones/18s-5g-standard-edition-dual-sim-td-lte-cn-256gb-m182q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.0, + "performance": 8.2, + "camera": 21.7, + "battery": 29.0, + "display": 69.1, + "value": 16.0 +} diff --git a/site/public/v1/smartphones/18s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m192q/index.json b/site/public/v1/smartphones/18s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m192q/index.json new file mode 100644 index 00000000000..c84e3013c17 --- /dev/null +++ b/site/public/v1/smartphones/18s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m192q/index.json @@ -0,0 +1,77 @@ +{ + "id": 1912, + "slug": "18s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m192q", + "name": "18s Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB M192Q", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-09-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.68, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 43.7 + } + ], + "battery_mah": 4500, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.7, + "performance": 11.2, + "camera": 17.2, + "battery": 37.3, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.389879", + "updated_at": "2026-06-19T00:43:44.389879" +} diff --git a/site/public/v1/smartphones/18s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m192q/score/index.json b/site/public/v1/smartphones/18s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m192q/score/index.json new file mode 100644 index 00000000000..bfdbafad7d3 --- /dev/null +++ b/site/public/v1/smartphones/18s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m192q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.7, + "performance": 11.2, + "camera": 17.2, + "battery": 37.3, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/18s-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m192q/index.json b/site/public/v1/smartphones/18s-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m192q/index.json new file mode 100644 index 00000000000..03e13ded742 --- /dev/null +++ b/site/public/v1/smartphones/18s-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m192q/index.json @@ -0,0 +1,77 @@ +{ + "id": 1913, + "slug": "18s-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m192q", + "name": "18s Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB M192Q", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-09-01", + "msrp_usd": 4599, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.68, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 43.7 + } + ], + "battery_mah": 4500, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.9, + "performance": 8.2, + "camera": 17.2, + "battery": 37.3, + "display": 65.1, + "value": 15.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.389879", + "updated_at": "2026-06-19T00:43:44.389879" +} diff --git a/site/public/v1/smartphones/18s-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m192q/score/index.json b/site/public/v1/smartphones/18s-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m192q/score/index.json new file mode 100644 index 00000000000..5af40392032 --- /dev/null +++ b/site/public/v1/smartphones/18s-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m192q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.9, + "performance": 8.2, + "camera": 17.2, + "battery": 37.3, + "display": 65.1, + "value": 15.9 +} diff --git a/site/public/v1/smartphones/18s-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m192q/index.json b/site/public/v1/smartphones/18s-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m192q/index.json new file mode 100644 index 00000000000..0504430fd5b --- /dev/null +++ b/site/public/v1/smartphones/18s-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m192q/index.json @@ -0,0 +1,77 @@ +{ + "id": 1914, + "slug": "18s-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m192q", + "name": "18s Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB M192Q", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-09-01", + "msrp_usd": 4999, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.68, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 43.7 + } + ], + "battery_mah": 4500, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.9, + "performance": 8.2, + "camera": 17.2, + "battery": 37.3, + "display": 65.1, + "value": 15.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.389879", + "updated_at": "2026-06-19T00:43:44.389879" +} diff --git a/site/public/v1/smartphones/18s-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m192q/score/index.json b/site/public/v1/smartphones/18s-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m192q/score/index.json new file mode 100644 index 00000000000..5af40392032 --- /dev/null +++ b/site/public/v1/smartphones/18s-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m192q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.9, + "performance": 8.2, + "camera": 17.2, + "battery": 37.3, + "display": 65.1, + "value": 15.9 +} diff --git a/site/public/v1/smartphones/18x-5g-premium-edition-dual-sim-td-lte-cn-256gb-m172q/index.json b/site/public/v1/smartphones/18x-5g-premium-edition-dual-sim-td-lte-cn-256gb-m172q/index.json new file mode 100644 index 00000000000..6179bb349dd --- /dev/null +++ b/site/public/v1/smartphones/18x-5g-premium-edition-dual-sim-td-lte-cn-256gb-m172q/index.json @@ -0,0 +1,77 @@ +{ + "id": 1915, + "slug": "18x-5g-premium-edition-dual-sim-td-lte-cn-256gb-m172q", + "name": "18X 5G Premium Edition Dual SIM TD-LTE CN 256GB M172Q", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-09-01", + "msrp_usd": 2999, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.3, + "performance": 9.1, + "camera": 21.7, + "battery": 22.3, + "display": 52.0, + "value": 13.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.390878", + "updated_at": "2026-06-19T00:43:44.390878" +} diff --git a/site/public/v1/smartphones/18x-5g-premium-edition-dual-sim-td-lte-cn-256gb-m172q/score/index.json b/site/public/v1/smartphones/18x-5g-premium-edition-dual-sim-td-lte-cn-256gb-m172q/score/index.json new file mode 100644 index 00000000000..658c9290854 --- /dev/null +++ b/site/public/v1/smartphones/18x-5g-premium-edition-dual-sim-td-lte-cn-256gb-m172q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.3, + "performance": 9.1, + "camera": 21.7, + "battery": 22.3, + "display": 52.0, + "value": 13.2 +} diff --git a/site/public/v1/smartphones/18x-5g-standard-edition-dual-sim-td-lte-cn-128gb-m172q/index.json b/site/public/v1/smartphones/18x-5g-standard-edition-dual-sim-td-lte-cn-128gb-m172q/index.json new file mode 100644 index 00000000000..ad55e406774 --- /dev/null +++ b/site/public/v1/smartphones/18x-5g-standard-edition-dual-sim-td-lte-cn-128gb-m172q/index.json @@ -0,0 +1,77 @@ +{ + "id": 1916, + "slug": "18x-5g-standard-edition-dual-sim-td-lte-cn-128gb-m172q", + "name": "18X 5G Standard Edition Dual SIM TD-LTE CN 128GB M172Q", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-09-01", + "msrp_usd": 2599, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.5, + "performance": 6.1, + "camera": 21.7, + "battery": 22.3, + "display": 52.0, + "value": 12.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.390878", + "updated_at": "2026-06-19T00:43:44.390878" +} diff --git a/site/public/v1/smartphones/18x-5g-standard-edition-dual-sim-td-lte-cn-128gb-m172q/score/index.json b/site/public/v1/smartphones/18x-5g-standard-edition-dual-sim-td-lte-cn-128gb-m172q/score/index.json new file mode 100644 index 00000000000..ef1ffbfb815 --- /dev/null +++ b/site/public/v1/smartphones/18x-5g-standard-edition-dual-sim-td-lte-cn-128gb-m172q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.5, + "performance": 6.1, + "camera": 21.7, + "battery": 22.3, + "display": 52.0, + "value": 12.8 +} diff --git a/site/public/v1/smartphones/18x-5g-standard-edition-dual-sim-td-lte-cn-256gb-m172q/index.json b/site/public/v1/smartphones/18x-5g-standard-edition-dual-sim-td-lte-cn-256gb-m172q/index.json new file mode 100644 index 00000000000..f7e4325b5ea --- /dev/null +++ b/site/public/v1/smartphones/18x-5g-standard-edition-dual-sim-td-lte-cn-256gb-m172q/index.json @@ -0,0 +1,77 @@ +{ + "id": 1917, + "slug": "18x-5g-standard-edition-dual-sim-td-lte-cn-256gb-m172q", + "name": "18X 5G Standard Edition Dual SIM TD-LTE CN 256GB M172Q", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-09-01", + "msrp_usd": 2799, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.5, + "performance": 6.1, + "camera": 21.7, + "battery": 22.3, + "display": 52.0, + "value": 12.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.390878", + "updated_at": "2026-06-19T00:43:44.390878" +} diff --git a/site/public/v1/smartphones/18x-5g-standard-edition-dual-sim-td-lte-cn-256gb-m172q/score/index.json b/site/public/v1/smartphones/18x-5g-standard-edition-dual-sim-td-lte-cn-256gb-m172q/score/index.json new file mode 100644 index 00000000000..ef1ffbfb815 --- /dev/null +++ b/site/public/v1/smartphones/18x-5g-standard-edition-dual-sim-td-lte-cn-256gb-m172q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.5, + "performance": 6.1, + "camera": 21.7, + "battery": 22.3, + "display": 52.0, + "value": 12.8 +} diff --git a/site/public/v1/smartphones/1b-2020-global-dual-sim-lte-5002d/index.json b/site/public/v1/smartphones/1b-2020-global-dual-sim-lte-5002d/index.json new file mode 100644 index 00000000000..44929982816 --- /dev/null +++ b/site/public/v1/smartphones/1b-2020-global-dual-sim-lte-5002d/index.json @@ -0,0 +1,76 @@ +{ + "id": 14, + "slug": "1b-2020-global-dual-sim-lte-5002d", + "name": "1B 2020 Global Dual SIM LTE 5002D", + "brand": { + "id": 6, + "slug": "alcatel", + "name": "Alcatel Mobile", + "country": "CN", + "url": "/v1/brands/alcatel" + }, + "soc": { + "id": 131, + "slug": "snapdragon-215", + "name": "Snapdragon 215", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-215" + }, + "release_date": "2020-02-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 293 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.110419", + "updated_at": "2026-06-19T00:43:44.110419" +} diff --git a/site/public/v1/smartphones/1b-2020-global-dual-sim-lte-5002d/score/index.json b/site/public/v1/smartphones/1b-2020-global-dual-sim-lte-5002d/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/1b-2020-global-dual-sim-lte-5002d/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/1b-2020-global-lte-5002x/index.json b/site/public/v1/smartphones/1b-2020-global-lte-5002x/index.json new file mode 100644 index 00000000000..da7e9a702ac --- /dev/null +++ b/site/public/v1/smartphones/1b-2020-global-lte-5002x/index.json @@ -0,0 +1,76 @@ +{ + "id": 15, + "slug": "1b-2020-global-lte-5002x", + "name": "1B 2020 Global LTE 5002X", + "brand": { + "id": 6, + "slug": "alcatel", + "name": "Alcatel Mobile", + "country": "CN", + "url": "/v1/brands/alcatel" + }, + "soc": { + "id": 131, + "slug": "snapdragon-215", + "name": "Snapdragon 215", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-215" + }, + "release_date": "2020-02-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 293 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.111419", + "updated_at": "2026-06-19T00:43:44.111419" +} diff --git a/site/public/v1/smartphones/1b-2020-global-lte-5002x/score/index.json b/site/public/v1/smartphones/1b-2020-global-lte-5002x/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/1b-2020-global-lte-5002x/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/1s-2020-global-dual-sim-td-lte-5028d/index.json b/site/public/v1/smartphones/1s-2020-global-dual-sim-td-lte-5028d/index.json new file mode 100644 index 00000000000..5d99343787c --- /dev/null +++ b/site/public/v1/smartphones/1s-2020-global-dual-sim-td-lte-5028d/index.json @@ -0,0 +1,76 @@ +{ + "id": 16, + "slug": "1s-2020-global-dual-sim-td-lte-5028d", + "name": "1s 2020 Global Dual SIM TD-LTE 5028D", + "brand": { + "id": 6, + "slug": "alcatel", + "name": "Alcatel Mobile", + "country": "CN", + "url": "/v1/brands/alcatel" + }, + "soc": { + "id": 58, + "slug": "helio-a25", + "name": "Helio A25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-a25" + }, + "release_date": "2020-02-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.111419", + "updated_at": "2026-06-19T00:43:44.111419" +} diff --git a/site/public/v1/smartphones/1s-2020-global-dual-sim-td-lte-5028d/score/index.json b/site/public/v1/smartphones/1s-2020-global-dual-sim-td-lte-5028d/score/index.json new file mode 100644 index 00000000000..a59635bee66 --- /dev/null +++ b/site/public/v1/smartphones/1s-2020-global-dual-sim-td-lte-5028d/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/1s-2020-global-dual-sim-td-lte-5028y/index.json b/site/public/v1/smartphones/1s-2020-global-dual-sim-td-lte-5028y/index.json new file mode 100644 index 00000000000..160c69a4c61 --- /dev/null +++ b/site/public/v1/smartphones/1s-2020-global-dual-sim-td-lte-5028y/index.json @@ -0,0 +1,76 @@ +{ + "id": 17, + "slug": "1s-2020-global-dual-sim-td-lte-5028y", + "name": "1s 2020 Global Dual SIM TD-LTE 5028Y", + "brand": { + "id": 6, + "slug": "alcatel", + "name": "Alcatel Mobile", + "country": "CN", + "url": "/v1/brands/alcatel" + }, + "soc": { + "id": 58, + "slug": "helio-a25", + "name": "Helio A25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-a25" + }, + "release_date": "2020-02-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.111419", + "updated_at": "2026-06-19T00:43:44.111419" +} diff --git a/site/public/v1/smartphones/1s-2020-global-dual-sim-td-lte-5028y/score/index.json b/site/public/v1/smartphones/1s-2020-global-dual-sim-td-lte-5028y/score/index.json new file mode 100644 index 00000000000..a59635bee66 --- /dev/null +++ b/site/public/v1/smartphones/1s-2020-global-dual-sim-td-lte-5028y/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/1s-2020-lte-latam-5028a/index.json b/site/public/v1/smartphones/1s-2020-lte-latam-5028a/index.json new file mode 100644 index 00000000000..b9066d20794 --- /dev/null +++ b/site/public/v1/smartphones/1s-2020-lte-latam-5028a/index.json @@ -0,0 +1,76 @@ +{ + "id": 18, + "slug": "1s-2020-lte-latam-5028a", + "name": "1s 2020 LTE LATAM 5028A", + "brand": { + "id": 6, + "slug": "alcatel", + "name": "Alcatel Mobile", + "country": "CN", + "url": "/v1/brands/alcatel" + }, + "soc": { + "id": 58, + "slug": "helio-a25", + "name": "Helio A25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-a25" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.111419", + "updated_at": "2026-06-19T00:43:44.111419" +} diff --git a/site/public/v1/smartphones/1s-2020-lte-latam-5028a/score/index.json b/site/public/v1/smartphones/1s-2020-lte-latam-5028a/score/index.json new file mode 100644 index 00000000000..a59635bee66 --- /dev/null +++ b/site/public/v1/smartphones/1s-2020-lte-latam-5028a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/1s-2021-global-dual-sim-td-lte-6025d/index.json b/site/public/v1/smartphones/1s-2021-global-dual-sim-td-lte-6025d/index.json new file mode 100644 index 00000000000..ea6753c5f6c --- /dev/null +++ b/site/public/v1/smartphones/1s-2021-global-dual-sim-td-lte-6025d/index.json @@ -0,0 +1,76 @@ +{ + "id": 23, + "slug": "1s-2021-global-dual-sim-td-lte-6025d", + "name": "1s 2021 Global Dual SIM TD-LTE 6025D", + "brand": { + "id": 6, + "slug": "alcatel", + "name": "Alcatel Mobile", + "country": "CN", + "url": "/v1/brands/alcatel" + }, + "soc": { + "id": 58, + "slug": "helio-a25", + "name": "Helio A25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-a25" + }, + "release_date": "2021-03-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.112419", + "updated_at": "2026-06-19T00:43:44.112419" +} diff --git a/site/public/v1/smartphones/1s-2021-global-dual-sim-td-lte-6025d/score/index.json b/site/public/v1/smartphones/1s-2021-global-dual-sim-td-lte-6025d/score/index.json new file mode 100644 index 00000000000..a59635bee66 --- /dev/null +++ b/site/public/v1/smartphones/1s-2021-global-dual-sim-td-lte-6025d/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/1s-2021-global-td-lte-6025h/index.json b/site/public/v1/smartphones/1s-2021-global-td-lte-6025h/index.json new file mode 100644 index 00000000000..876a66db060 --- /dev/null +++ b/site/public/v1/smartphones/1s-2021-global-td-lte-6025h/index.json @@ -0,0 +1,76 @@ +{ + "id": 24, + "slug": "1s-2021-global-td-lte-6025h", + "name": "1s 2021 Global TD-LTE 6025H", + "brand": { + "id": 6, + "slug": "alcatel", + "name": "Alcatel Mobile", + "country": "CN", + "url": "/v1/brands/alcatel" + }, + "soc": { + "id": 58, + "slug": "helio-a25", + "name": "Helio A25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-a25" + }, + "release_date": "2021-03-24", + "msrp_usd": 100, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 56.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.112419", + "updated_at": "2026-06-19T00:43:44.112419" +} diff --git a/site/public/v1/smartphones/1s-2021-global-td-lte-6025h/score/index.json b/site/public/v1/smartphones/1s-2021-global-td-lte-6025h/score/index.json new file mode 100644 index 00000000000..8998cfefb03 --- /dev/null +++ b/site/public/v1/smartphones/1s-2021-global-td-lte-6025h/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 56.9 +} diff --git a/site/public/v1/smartphones/1v-2020-global-dual-sim-td-lte-5007u/index.json b/site/public/v1/smartphones/1v-2020-global-dual-sim-td-lte-5007u/index.json new file mode 100644 index 00000000000..2d0f15953b9 --- /dev/null +++ b/site/public/v1/smartphones/1v-2020-global-dual-sim-td-lte-5007u/index.json @@ -0,0 +1,76 @@ +{ + "id": 19, + "slug": "1v-2020-global-dual-sim-td-lte-5007u", + "name": "1V 2020 Global Dual SIM TD-LTE 5007U", + "brand": { + "id": 6, + "slug": "alcatel", + "name": "Alcatel Mobile", + "country": "CN", + "url": "/v1/brands/alcatel" + }, + "soc": { + "id": 58, + "slug": "helio-a25", + "name": "Helio A25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-a25" + }, + "release_date": "2020-02-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Yes" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.111419", + "updated_at": "2026-06-19T00:43:44.111419" +} diff --git a/site/public/v1/smartphones/1v-2020-global-dual-sim-td-lte-5007u/score/index.json b/site/public/v1/smartphones/1v-2020-global-dual-sim-td-lte-5007u/score/index.json new file mode 100644 index 00000000000..a59635bee66 --- /dev/null +++ b/site/public/v1/smartphones/1v-2020-global-dual-sim-td-lte-5007u/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/2-1-dual-sim-td-lte-in/index.json b/site/public/v1/smartphones/2-1-dual-sim-td-lte-in/index.json new file mode 100644 index 00000000000..1b094d29b21 --- /dev/null +++ b/site/public/v1/smartphones/2-1-dual-sim-td-lte-in/index.json @@ -0,0 +1,76 @@ +{ + "id": 2343, + "slug": "2-1-dual-sim-td-lte-in", + "name": "2.1 Dual SIM TD-LTE IN", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.444874", + "updated_at": "2026-06-19T00:43:44.444874" +} diff --git a/site/public/v1/smartphones/2-1-dual-sim-td-lte-in/score/index.json b/site/public/v1/smartphones/2-1-dual-sim-td-lte-in/score/index.json new file mode 100644 index 00000000000..7f209133483 --- /dev/null +++ b/site/public/v1/smartphones/2-1-dual-sim-td-lte-in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/2-1-dual-sim-td-lte-latam/index.json b/site/public/v1/smartphones/2-1-dual-sim-td-lte-latam/index.json new file mode 100644 index 00000000000..b084346239d --- /dev/null +++ b/site/public/v1/smartphones/2-1-dual-sim-td-lte-latam/index.json @@ -0,0 +1,76 @@ +{ + "id": 2344, + "slug": "2-1-dual-sim-td-lte-latam", + "name": "2.1 Dual SIM TD-LTE LATAM", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-12-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.444874", + "updated_at": "2026-06-19T00:43:44.444874" +} diff --git a/site/public/v1/smartphones/2-1-dual-sim-td-lte-latam/score/index.json b/site/public/v1/smartphones/2-1-dual-sim-td-lte-latam/score/index.json new file mode 100644 index 00000000000..7f209133483 --- /dev/null +++ b/site/public/v1/smartphones/2-1-dual-sim-td-lte-latam/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/2-1-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/2-1-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..7cd448b941d --- /dev/null +++ b/site/public/v1/smartphones/2-1-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 2345, + "slug": "2-1-global-dual-sim-td-lte", + "name": "2.1 Global Dual SIM TD-LTE", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.444874", + "updated_at": "2026-06-19T00:43:44.444874" +} diff --git a/site/public/v1/smartphones/2-1-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/2-1-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..7f209133483 --- /dev/null +++ b/site/public/v1/smartphones/2-1-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/2-1-global-td-lte/index.json b/site/public/v1/smartphones/2-1-global-td-lte/index.json new file mode 100644 index 00000000000..1b8aa0872a8 --- /dev/null +++ b/site/public/v1/smartphones/2-1-global-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 2346, + "slug": "2-1-global-td-lte", + "name": "2.1 Global TD-LTE", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.444874", + "updated_at": "2026-06-19T00:43:44.444874" +} diff --git a/site/public/v1/smartphones/2-1-global-td-lte/score/index.json b/site/public/v1/smartphones/2-1-global-td-lte/score/index.json new file mode 100644 index 00000000000..7f209133483 --- /dev/null +++ b/site/public/v1/smartphones/2-1-global-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/2-1-td-lte-latam/index.json b/site/public/v1/smartphones/2-1-td-lte-latam/index.json new file mode 100644 index 00000000000..c8a98924656 --- /dev/null +++ b/site/public/v1/smartphones/2-1-td-lte-latam/index.json @@ -0,0 +1,76 @@ +{ + "id": 2347, + "slug": "2-1-td-lte-latam", + "name": "2.1 TD-LTE LATAM", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-12-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.444874", + "updated_at": "2026-06-19T00:43:44.444874" +} diff --git a/site/public/v1/smartphones/2-1-td-lte-latam/score/index.json b/site/public/v1/smartphones/2-1-td-lte-latam/score/index.json new file mode 100644 index 00000000000..7f209133483 --- /dev/null +++ b/site/public/v1/smartphones/2-1-td-lte-latam/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/2-2-2019-dual-sim-td-lte-in-16gb/index.json b/site/public/v1/smartphones/2-2-2019-dual-sim-td-lte-in-16gb/index.json new file mode 100644 index 00000000000..7f9ecaea0fd --- /dev/null +++ b/site/public/v1/smartphones/2-2-2019-dual-sim-td-lte-in-16gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2379, + "slug": "2-2-2019-dual-sim-td-lte-in-16gb", + "name": "2.2 2019 Dual SIM TD-LTE IN 16GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 153.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.450273", + "updated_at": "2026-06-19T00:43:44.450273" +} diff --git a/site/public/v1/smartphones/2-2-2019-dual-sim-td-lte-in-16gb/score/index.json b/site/public/v1/smartphones/2-2-2019-dual-sim-td-lte-in-16gb/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/2-2-2019-dual-sim-td-lte-in-16gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/2-2-2019-dual-sim-td-lte-in-32gb/index.json b/site/public/v1/smartphones/2-2-2019-dual-sim-td-lte-in-32gb/index.json new file mode 100644 index 00000000000..7cd6edc943d --- /dev/null +++ b/site/public/v1/smartphones/2-2-2019-dual-sim-td-lte-in-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2380, + "slug": "2-2-2019-dual-sim-td-lte-in-32gb", + "name": "2.2 2019 Dual SIM TD-LTE IN 32GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 153.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.450273", + "updated_at": "2026-06-19T00:43:44.450273" +} diff --git a/site/public/v1/smartphones/2-2-2019-dual-sim-td-lte-in-32gb/score/index.json b/site/public/v1/smartphones/2-2-2019-dual-sim-td-lte-in-32gb/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/2-2-2019-dual-sim-td-lte-in-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/2-2-2019-global-dual-sim-td-lte-16gb/index.json b/site/public/v1/smartphones/2-2-2019-global-dual-sim-td-lte-16gb/index.json new file mode 100644 index 00000000000..f72210ab9a4 --- /dev/null +++ b/site/public/v1/smartphones/2-2-2019-global-dual-sim-td-lte-16gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2381, + "slug": "2-2-2019-global-dual-sim-td-lte-16gb", + "name": "2.2 2019 Global Dual SIM TD-LTE 16GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 153.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.450273", + "updated_at": "2026-06-19T00:43:44.450273" +} diff --git a/site/public/v1/smartphones/2-2-2019-global-dual-sim-td-lte-16gb/score/index.json b/site/public/v1/smartphones/2-2-2019-global-dual-sim-td-lte-16gb/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/2-2-2019-global-dual-sim-td-lte-16gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/2-2-2019-global-dual-sim-td-lte-32gb/index.json b/site/public/v1/smartphones/2-2-2019-global-dual-sim-td-lte-32gb/index.json new file mode 100644 index 00000000000..d628f9eab94 --- /dev/null +++ b/site/public/v1/smartphones/2-2-2019-global-dual-sim-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2382, + "slug": "2-2-2019-global-dual-sim-td-lte-32gb", + "name": "2.2 2019 Global Dual SIM TD-LTE 32GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 153.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.451272", + "updated_at": "2026-06-19T00:43:44.451272" +} diff --git a/site/public/v1/smartphones/2-2-2019-global-dual-sim-td-lte-32gb/score/index.json b/site/public/v1/smartphones/2-2-2019-global-dual-sim-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/2-2-2019-global-dual-sim-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/2-2-2019-global-td-lte-16gb/index.json b/site/public/v1/smartphones/2-2-2019-global-td-lte-16gb/index.json new file mode 100644 index 00000000000..0c5dde02288 --- /dev/null +++ b/site/public/v1/smartphones/2-2-2019-global-td-lte-16gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2383, + "slug": "2-2-2019-global-td-lte-16gb", + "name": "2.2 2019 Global TD-LTE 16GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 153.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.451272", + "updated_at": "2026-06-19T00:43:44.451272" +} diff --git a/site/public/v1/smartphones/2-2-2019-global-td-lte-16gb/score/index.json b/site/public/v1/smartphones/2-2-2019-global-td-lte-16gb/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/2-2-2019-global-td-lte-16gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/2-2-2019-lte-na-32gb/index.json b/site/public/v1/smartphones/2-2-2019-lte-na-32gb/index.json new file mode 100644 index 00000000000..35acbdf1e57 --- /dev/null +++ b/site/public/v1/smartphones/2-2-2019-lte-na-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2384, + "slug": "2-2-2019-lte-na-32gb", + "name": "2.2 2019 LTE NA 32GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-07-16", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 153.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.451272", + "updated_at": "2026-06-19T00:43:44.451272" +} diff --git a/site/public/v1/smartphones/2-2-2019-lte-na-32gb/score/index.json b/site/public/v1/smartphones/2-2-2019-lte-na-32gb/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/2-2-2019-lte-na-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/2-2-2019-lte-us-32gb/index.json b/site/public/v1/smartphones/2-2-2019-lte-us-32gb/index.json new file mode 100644 index 00000000000..ea59b3b3ac5 --- /dev/null +++ b/site/public/v1/smartphones/2-2-2019-lte-us-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2385, + "slug": "2-2-2019-lte-us-32gb", + "name": "2.2 2019 LTE US 32GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-07-16", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 153.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.451272", + "updated_at": "2026-06-19T00:43:44.451272" +} diff --git a/site/public/v1/smartphones/2-2-2019-lte-us-32gb/score/index.json b/site/public/v1/smartphones/2-2-2019-lte-us-32gb/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/2-2-2019-lte-us-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/2-2017-dual-sim-lte/index.json b/site/public/v1/smartphones/2-2017-dual-sim-lte/index.json new file mode 100644 index 00000000000..2d1c257b7b0 --- /dev/null +++ b/site/public/v1/smartphones/2-2017-dual-sim-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 518, + "slug": "2-2017-dual-sim-lte", + "name": "2 2017 Dual SIM LTE", + "brand": { + "id": 81, + "slug": "fairphone", + "name": "Fairphone", + "country": "NL", + "url": "/v1/brands/fairphone" + }, + "soc": { + "id": 106, + "slug": "snapdragon-801", + "name": "Snapdragon 801", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Adreno 330", + "url": "/v1/socs/snapdragon-801" + }, + "release_date": "2017-03-23", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.0, + "resolution": "1080x1920", + "type": "AM-OLED display", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 2420, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 148.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "6.0", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.7, + "performance": 0.5, + "camera": 5.0, + "battery": 0.0, + "display": 49.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.178933", + "updated_at": "2026-06-19T00:43:44.178933" +} diff --git a/site/public/v1/smartphones/2-2017-dual-sim-lte/score/index.json b/site/public/v1/smartphones/2-2017-dual-sim-lte/score/index.json new file mode 100644 index 00000000000..8ea10c23ab2 --- /dev/null +++ b/site/public/v1/smartphones/2-2017-dual-sim-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.7, + "performance": 0.5, + "camera": 5.0, + "battery": 0.0, + "display": 49.1, + "value": null +} diff --git a/site/public/v1/smartphones/2-3-dual-sim-td-lte-in/index.json b/site/public/v1/smartphones/2-3-dual-sim-td-lte-in/index.json new file mode 100644 index 00000000000..9305f75eb12 --- /dev/null +++ b/site/public/v1/smartphones/2-3-dual-sim-td-lte-in/index.json @@ -0,0 +1,76 @@ +{ + "id": 2388, + "slug": "2-3-dual-sim-td-lte-in", + "name": "2.3 Dual SIM TD-LTE IN", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-12-19", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.18, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 272 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": null, + "camera": 5.4, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.451272", + "updated_at": "2026-06-19T00:43:44.451272" +} diff --git a/site/public/v1/smartphones/2-3-dual-sim-td-lte-in/score/index.json b/site/public/v1/smartphones/2-3-dual-sim-td-lte-in/score/index.json new file mode 100644 index 00000000000..9ddc31c4176 --- /dev/null +++ b/site/public/v1/smartphones/2-3-dual-sim-td-lte-in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": null, + "camera": 5.4, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/2-3-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/2-3-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..efa7985523b --- /dev/null +++ b/site/public/v1/smartphones/2-3-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 2389, + "slug": "2-3-global-dual-sim-td-lte", + "name": "2.3 Global Dual SIM TD-LTE", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-12-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.18, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 272 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": null, + "camera": 5.4, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.451272", + "updated_at": "2026-06-19T00:43:44.451272" +} diff --git a/site/public/v1/smartphones/2-3-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/2-3-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..9ddc31c4176 --- /dev/null +++ b/site/public/v1/smartphones/2-3-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": null, + "camera": 5.4, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/2-3-global-td-lte/index.json b/site/public/v1/smartphones/2-3-global-td-lte/index.json new file mode 100644 index 00000000000..23658ffb13a --- /dev/null +++ b/site/public/v1/smartphones/2-3-global-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 2435, + "slug": "2-3-global-td-lte", + "name": "2.3 Global TD-LTE", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2020-01-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.18, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 272 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": null, + "camera": 5.4, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.458275", + "updated_at": "2026-06-19T00:43:44.458275" +} diff --git a/site/public/v1/smartphones/2-3-global-td-lte/score/index.json b/site/public/v1/smartphones/2-3-global-td-lte/score/index.json new file mode 100644 index 00000000000..9ddc31c4176 --- /dev/null +++ b/site/public/v1/smartphones/2-3-global-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": null, + "camera": 5.4, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/2-3-lte-na/index.json b/site/public/v1/smartphones/2-3-lte-na/index.json new file mode 100644 index 00000000000..4f1df87ff3a --- /dev/null +++ b/site/public/v1/smartphones/2-3-lte-na/index.json @@ -0,0 +1,76 @@ +{ + "id": 2436, + "slug": "2-3-lte-na", + "name": "2.3 LTE NA", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2020-01-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.18, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 272 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": null, + "camera": 5.4, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.458275", + "updated_at": "2026-06-19T00:43:44.458275" +} diff --git a/site/public/v1/smartphones/2-3-lte-na/score/index.json b/site/public/v1/smartphones/2-3-lte-na/score/index.json new file mode 100644 index 00000000000..9ddc31c4176 --- /dev/null +++ b/site/public/v1/smartphones/2-3-lte-na/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": null, + "camera": 5.4, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/2-v-lte-us/index.json b/site/public/v1/smartphones/2-v-lte-us/index.json new file mode 100644 index 00000000000..28777b192b7 --- /dev/null +++ b/site/public/v1/smartphones/2-v-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 2391, + "slug": "2-v-lte-us", + "name": "2 V LTE US", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2019-02-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.452272", + "updated_at": "2026-06-19T00:43:44.452272" +} diff --git a/site/public/v1/smartphones/2-v-lte-us/score/index.json b/site/public/v1/smartphones/2-v-lte-us/score/index.json new file mode 100644 index 00000000000..7f209133483 --- /dev/null +++ b/site/public/v1/smartphones/2-v-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/2-v-tella-lte-a-us-16gb/index.json b/site/public/v1/smartphones/2-v-tella-lte-a-us-16gb/index.json new file mode 100644 index 00000000000..8206e9ebdd4 --- /dev/null +++ b/site/public/v1/smartphones/2-v-tella-lte-a-us-16gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2440, + "slug": "2-v-tella-lte-a-us-16gb", + "name": "2 V Tella LTE-A US 16GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2020-10-01", + "msrp_usd": 168, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": 56.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.458275", + "updated_at": "2026-06-19T00:43:44.458275" +} diff --git a/site/public/v1/smartphones/2-v-tella-lte-a-us-16gb/score/index.json b/site/public/v1/smartphones/2-v-tella-lte-a-us-16gb/score/index.json new file mode 100644 index 00000000000..5c96d84f650 --- /dev/null +++ b/site/public/v1/smartphones/2-v-tella-lte-a-us-16gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": 56.6 +} diff --git a/site/public/v1/smartphones/20-5g-global-dual-sim-td-lte-128gb-t781h/index.json b/site/public/v1/smartphones/20-5g-global-dual-sim-td-lte-128gb-t781h/index.json new file mode 100644 index 00000000000..0fab01632e9 --- /dev/null +++ b/site/public/v1/smartphones/20-5g-global-dual-sim-td-lte-128gb-t781h/index.json @@ -0,0 +1,76 @@ +{ + "id": 4951, + "slug": "20-5g-global-dual-sim-td-lte-128gb-t781h", + "name": "20 5G Global Dual SIM TD-LTE 128GB T781H", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 143, + "slug": "snapdragon-690", + "name": "Snapdragon 690", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619L", + "url": "/v1/socs/snapdragon-690" + }, + "release_date": "2021-01-12", + "msrp_usd": 299, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 1.5, + "camera": 16.5, + "battery": 23.1, + "display": 44.5, + "value": 60.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.832757", + "updated_at": "2026-06-19T00:43:44.832757" +} diff --git a/site/public/v1/smartphones/20-5g-global-dual-sim-td-lte-128gb-t781h/score/index.json b/site/public/v1/smartphones/20-5g-global-dual-sim-td-lte-128gb-t781h/score/index.json new file mode 100644 index 00000000000..62640ec0b34 --- /dev/null +++ b/site/public/v1/smartphones/20-5g-global-dual-sim-td-lte-128gb-t781h/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 1.5, + "camera": 16.5, + "battery": 23.1, + "display": 44.5, + "value": 60.7 +} diff --git a/site/public/v1/smartphones/20-5g-global-dual-sim-td-lte-256gb-t781k/index.json b/site/public/v1/smartphones/20-5g-global-dual-sim-td-lte-256gb-t781k/index.json new file mode 100644 index 00000000000..df83011c32a --- /dev/null +++ b/site/public/v1/smartphones/20-5g-global-dual-sim-td-lte-256gb-t781k/index.json @@ -0,0 +1,76 @@ +{ + "id": 4952, + "slug": "20-5g-global-dual-sim-td-lte-256gb-t781k", + "name": "20 5G Global Dual SIM TD-LTE 256GB T781K", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 143, + "slug": "snapdragon-690", + "name": "Snapdragon 690", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619L", + "url": "/v1/socs/snapdragon-690" + }, + "release_date": "2021-01-12", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 1.5, + "camera": 16.5, + "battery": 23.1, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.833762", + "updated_at": "2026-06-19T00:43:44.833762" +} diff --git a/site/public/v1/smartphones/20-5g-global-dual-sim-td-lte-256gb-t781k/score/index.json b/site/public/v1/smartphones/20-5g-global-dual-sim-td-lte-256gb-t781k/score/index.json new file mode 100644 index 00000000000..95f06d3dc45 --- /dev/null +++ b/site/public/v1/smartphones/20-5g-global-dual-sim-td-lte-256gb-t781k/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 1.5, + "camera": 16.5, + "battery": 23.1, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/20-5g-uw-td-lte-us-128gb-t781s-t781spp/index.json b/site/public/v1/smartphones/20-5g-uw-td-lte-us-128gb-t781s-t781spp/index.json new file mode 100644 index 00000000000..b8f892597d1 --- /dev/null +++ b/site/public/v1/smartphones/20-5g-uw-td-lte-us-128gb-t781s-t781spp/index.json @@ -0,0 +1,76 @@ +{ + "id": 4953, + "slug": "20-5g-uw-td-lte-us-128gb-t781s-t781spp", + "name": "20 5G UW TD-LTE US 128GB T781S / T781SPP", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 143, + "slug": "snapdragon-690", + "name": "Snapdragon 690", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619L", + "url": "/v1/socs/snapdragon-690" + }, + "release_date": "2021-11-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 1.5, + "camera": 16.5, + "battery": 23.1, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.833762", + "updated_at": "2026-06-19T00:43:44.833762" +} diff --git a/site/public/v1/smartphones/20-5g-uw-td-lte-us-128gb-t781s-t781spp/score/index.json b/site/public/v1/smartphones/20-5g-uw-td-lte-us-128gb-t781s-t781spp/score/index.json new file mode 100644 index 00000000000..95f06d3dc45 --- /dev/null +++ b/site/public/v1/smartphones/20-5g-uw-td-lte-us-128gb-t781s-t781spp/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 1.5, + "camera": 16.5, + "battery": 23.1, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/20-r-5g-global-dual-sim-td-lte-64gb-t767h/index.json b/site/public/v1/smartphones/20-r-5g-global-dual-sim-td-lte-64gb-t767h/index.json new file mode 100644 index 00000000000..b13bd089e5f --- /dev/null +++ b/site/public/v1/smartphones/20-r-5g-global-dual-sim-td-lte-64gb-t767h/index.json @@ -0,0 +1,77 @@ +{ + "id": 4954, + "slug": "20-r-5g-global-dual-sim-td-lte-64gb-t767h", + "name": "20 R 5G Global Dual SIM TD-LTE 64GB T767H", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-09-22", + "msrp_usd": 249, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 0.0, + "camera": 5.3, + "battery": 22.5, + "display": 30.0, + "value": 57.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.833762", + "updated_at": "2026-06-19T00:43:44.833762" +} diff --git a/site/public/v1/smartphones/20-r-5g-global-dual-sim-td-lte-64gb-t767h/score/index.json b/site/public/v1/smartphones/20-r-5g-global-dual-sim-td-lte-64gb-t767h/score/index.json new file mode 100644 index 00000000000..e5d57238f4b --- /dev/null +++ b/site/public/v1/smartphones/20-r-5g-global-dual-sim-td-lte-64gb-t767h/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 0.0, + "camera": 5.3, + "battery": 22.5, + "display": 30.0, + "value": 57.2 +} diff --git a/site/public/v1/smartphones/20-r-5g-global-td-lte-64gb-t767h/index.json b/site/public/v1/smartphones/20-r-5g-global-td-lte-64gb-t767h/index.json new file mode 100644 index 00000000000..c78010cb5f2 --- /dev/null +++ b/site/public/v1/smartphones/20-r-5g-global-td-lte-64gb-t767h/index.json @@ -0,0 +1,77 @@ +{ + "id": 4955, + "slug": "20-r-5g-global-td-lte-64gb-t767h", + "name": "20 R 5G Global TD-LTE 64GB T767H", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-09-22", + "msrp_usd": 299, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 0.0, + "camera": 5.3, + "battery": 22.5, + "display": 30.0, + "value": 57.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.833762", + "updated_at": "2026-06-19T00:43:44.833762" +} diff --git a/site/public/v1/smartphones/20-r-5g-global-td-lte-64gb-t767h/score/index.json b/site/public/v1/smartphones/20-r-5g-global-td-lte-64gb-t767h/score/index.json new file mode 100644 index 00000000000..e5d57238f4b --- /dev/null +++ b/site/public/v1/smartphones/20-r-5g-global-td-lte-64gb-t767h/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 0.0, + "camera": 5.3, + "battery": 22.5, + "display": 30.0, + "value": 57.2 +} diff --git a/site/public/v1/smartphones/20-se-dual-sim-lte-latam-128gb-t671e/index.json b/site/public/v1/smartphones/20-se-dual-sim-lte-latam-128gb-t671e/index.json new file mode 100644 index 00000000000..1558768e46b --- /dev/null +++ b/site/public/v1/smartphones/20-se-dual-sim-lte-latam-128gb-t671e/index.json @@ -0,0 +1,76 @@ +{ + "id": 4956, + "slug": "20-se-dual-sim-lte-latam-128gb-t671e", + "name": "20 SE Dual SIM LTE LATAM 128GB T671E", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2021-01-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.82, + "resolution": "720x1640", + "type": "Color IPS TFT LCD display", + "ppi": 263 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.833762", + "updated_at": "2026-06-19T00:43:44.833762" +} diff --git a/site/public/v1/smartphones/20-se-dual-sim-lte-latam-128gb-t671e/score/index.json b/site/public/v1/smartphones/20-se-dual-sim-lte-latam-128gb-t671e/score/index.json new file mode 100644 index 00000000000..50669699bea --- /dev/null +++ b/site/public/v1/smartphones/20-se-dual-sim-lte-latam-128gb-t671e/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/20-se-global-dual-sim-td-lte-128gb-t671f/index.json b/site/public/v1/smartphones/20-se-global-dual-sim-td-lte-128gb-t671f/index.json new file mode 100644 index 00000000000..cebd52241f9 --- /dev/null +++ b/site/public/v1/smartphones/20-se-global-dual-sim-td-lte-128gb-t671f/index.json @@ -0,0 +1,76 @@ +{ + "id": 4957, + "slug": "20-se-global-dual-sim-td-lte-128gb-t671f", + "name": "20 SE Global Dual SIM TD-LTE 128GB T671F", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2021-01-18", + "msrp_usd": 299, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.82, + "resolution": "720x1640", + "type": "Color IPS TFT LCD display", + "ppi": 263 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 35.0, + "value": 60.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.833762", + "updated_at": "2026-06-19T00:43:44.833762" +} diff --git a/site/public/v1/smartphones/20-se-global-dual-sim-td-lte-128gb-t671f/score/index.json b/site/public/v1/smartphones/20-se-global-dual-sim-td-lte-128gb-t671f/score/index.json new file mode 100644 index 00000000000..2f6bc18a6eb --- /dev/null +++ b/site/public/v1/smartphones/20-se-global-dual-sim-td-lte-128gb-t671f/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 35.0, + "value": 60.2 +} diff --git a/site/public/v1/smartphones/20-se-global-dual-sim-td-lte-64gb-t671h/index.json b/site/public/v1/smartphones/20-se-global-dual-sim-td-lte-64gb-t671h/index.json new file mode 100644 index 00000000000..f6915f9fc13 --- /dev/null +++ b/site/public/v1/smartphones/20-se-global-dual-sim-td-lte-64gb-t671h/index.json @@ -0,0 +1,76 @@ +{ + "id": 4958, + "slug": "20-se-global-dual-sim-td-lte-64gb-t671h", + "name": "20 SE Global Dual SIM TD-LTE 64GB T671H", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2021-01-18", + "msrp_usd": 149, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.82, + "resolution": "720x1640", + "type": "Color IPS TFT LCD display", + "ppi": 263 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 35.0, + "value": 59.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.833762", + "updated_at": "2026-06-19T00:43:44.833762" +} diff --git a/site/public/v1/smartphones/20-se-global-dual-sim-td-lte-64gb-t671h/score/index.json b/site/public/v1/smartphones/20-se-global-dual-sim-td-lte-64gb-t671h/score/index.json new file mode 100644 index 00000000000..e3edb0db624 --- /dev/null +++ b/site/public/v1/smartphones/20-se-global-dual-sim-td-lte-64gb-t671h/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 35.0, + "value": 59.0 +} diff --git a/site/public/v1/smartphones/20-se-lte-latam-128gb-t671o/index.json b/site/public/v1/smartphones/20-se-lte-latam-128gb-t671o/index.json new file mode 100644 index 00000000000..1a8e9b79f31 --- /dev/null +++ b/site/public/v1/smartphones/20-se-lte-latam-128gb-t671o/index.json @@ -0,0 +1,76 @@ +{ + "id": 4959, + "slug": "20-se-lte-latam-128gb-t671o", + "name": "20 SE LTE LATAM 128GB T671O", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2021-05-01", + "msrp_usd": 269, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.82, + "resolution": "720x1640", + "type": "Color IPS TFT LCD display", + "ppi": 263 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 35.0, + "value": 60.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.834762", + "updated_at": "2026-06-19T00:43:44.834762" +} diff --git a/site/public/v1/smartphones/20-se-lte-latam-128gb-t671o/score/index.json b/site/public/v1/smartphones/20-se-lte-latam-128gb-t671o/score/index.json new file mode 100644 index 00000000000..2f6bc18a6eb --- /dev/null +++ b/site/public/v1/smartphones/20-se-lte-latam-128gb-t671o/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 35.0, + "value": 60.2 +} diff --git a/site/public/v1/smartphones/20e-2021-lte-latam-128gb-6125f1/index.json b/site/public/v1/smartphones/20e-2021-lte-latam-128gb-6125f1/index.json new file mode 100644 index 00000000000..7e6c90754c7 --- /dev/null +++ b/site/public/v1/smartphones/20e-2021-lte-latam-128gb-6125f1/index.json @@ -0,0 +1,77 @@ +{ + "id": 4960, + "slug": "20e-2021-lte-latam-128gb-6125f1", + "name": "20E 2021 LTE LATAM 128GB 6125F1", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 58, + "slug": "helio-a25", + "name": "Helio A25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-a25" + }, + "release_date": "2021-04-01", + "msrp_usd": 4799, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 9.4, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 17.5, + "value": 4.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.834762", + "updated_at": "2026-06-19T00:43:44.834762" +} diff --git a/site/public/v1/smartphones/20e-2021-lte-latam-128gb-6125f1/score/index.json b/site/public/v1/smartphones/20e-2021-lte-latam-128gb-6125f1/score/index.json new file mode 100644 index 00000000000..3832bcd43cb --- /dev/null +++ b/site/public/v1/smartphones/20e-2021-lte-latam-128gb-6125f1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 9.4, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 17.5, + "value": 4.7 +} diff --git a/site/public/v1/smartphones/20e-2021-lte-latam-64gb-6125a/index.json b/site/public/v1/smartphones/20e-2021-lte-latam-64gb-6125a/index.json new file mode 100644 index 00000000000..ec812f112e0 --- /dev/null +++ b/site/public/v1/smartphones/20e-2021-lte-latam-64gb-6125a/index.json @@ -0,0 +1,77 @@ +{ + "id": 4961, + "slug": "20e-2021-lte-latam-64gb-6125a", + "name": "20E 2021 LTE LATAM 64GB 6125A", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 58, + "slug": "helio-a25", + "name": "Helio A25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-a25" + }, + "release_date": "2021-04-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 9.4, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.834762", + "updated_at": "2026-06-19T00:43:44.834762" +} diff --git a/site/public/v1/smartphones/20e-2021-lte-latam-64gb-6125a/score/index.json b/site/public/v1/smartphones/20e-2021-lte-latam-64gb-6125a/score/index.json new file mode 100644 index 00000000000..2a25eb7841b --- /dev/null +++ b/site/public/v1/smartphones/20e-2021-lte-latam-64gb-6125a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 9.4, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/20e-2021-lte-latam-64gb-6125f/index.json b/site/public/v1/smartphones/20e-2021-lte-latam-64gb-6125f/index.json new file mode 100644 index 00000000000..e1afbca3f41 --- /dev/null +++ b/site/public/v1/smartphones/20e-2021-lte-latam-64gb-6125f/index.json @@ -0,0 +1,77 @@ +{ + "id": 4962, + "slug": "20e-2021-lte-latam-64gb-6125f", + "name": "20E 2021 LTE LATAM 64GB 6125F", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 58, + "slug": "helio-a25", + "name": "Helio A25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-a25" + }, + "release_date": "2021-04-01", + "msrp_usd": 3999, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 9.4, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 17.5, + "value": 4.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.834762", + "updated_at": "2026-06-19T00:43:44.834762" +} diff --git a/site/public/v1/smartphones/20e-2021-lte-latam-64gb-6125f/score/index.json b/site/public/v1/smartphones/20e-2021-lte-latam-64gb-6125f/score/index.json new file mode 100644 index 00000000000..3832bcd43cb --- /dev/null +++ b/site/public/v1/smartphones/20e-2021-lte-latam-64gb-6125f/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 9.4, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 17.5, + "value": 4.7 +} diff --git a/site/public/v1/smartphones/20l-premium-edition-dual-sim-td-lte-latam-128gb-t774b/index.json b/site/public/v1/smartphones/20l-premium-edition-dual-sim-td-lte-latam-128gb-t774b/index.json new file mode 100644 index 00000000000..5a3161c8a3a --- /dev/null +++ b/site/public/v1/smartphones/20l-premium-edition-dual-sim-td-lte-latam-128gb-t774b/index.json @@ -0,0 +1,77 @@ +{ + "id": 4963, + "slug": "20l-premium-edition-dual-sim-td-lte-latam-128gb-t774b", + "name": "20L Premium Edition Dual SIM TD-LTE LATAM 128GB T774B", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-04-14", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.834762", + "updated_at": "2026-06-19T00:43:44.834762" +} diff --git a/site/public/v1/smartphones/20l-premium-edition-dual-sim-td-lte-latam-128gb-t774b/score/index.json b/site/public/v1/smartphones/20l-premium-edition-dual-sim-td-lte-latam-128gb-t774b/score/index.json new file mode 100644 index 00000000000..d4e5b9dbca6 --- /dev/null +++ b/site/public/v1/smartphones/20l-premium-edition-dual-sim-td-lte-latam-128gb-t774b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/20l-premium-edition-dual-sim-td-lte-latam-256gb-t775b/index.json b/site/public/v1/smartphones/20l-premium-edition-dual-sim-td-lte-latam-256gb-t775b/index.json new file mode 100644 index 00000000000..959a9345a30 --- /dev/null +++ b/site/public/v1/smartphones/20l-premium-edition-dual-sim-td-lte-latam-256gb-t775b/index.json @@ -0,0 +1,77 @@ +{ + "id": 4964, + "slug": "20l-premium-edition-dual-sim-td-lte-latam-256gb-t775b", + "name": "20L+ Premium Edition Dual SIM TD-LTE LATAM 256GB T775B", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 21.5, + "battery": 30.6, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.834762", + "updated_at": "2026-06-19T00:43:44.834762" +} diff --git a/site/public/v1/smartphones/20l-premium-edition-dual-sim-td-lte-latam-256gb-t775b/score/index.json b/site/public/v1/smartphones/20l-premium-edition-dual-sim-td-lte-latam-256gb-t775b/score/index.json new file mode 100644 index 00000000000..27982f4ecd3 --- /dev/null +++ b/site/public/v1/smartphones/20l-premium-edition-dual-sim-td-lte-latam-256gb-t775b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 21.5, + "battery": 30.6, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/20l-premium-edition-global-dual-sim-td-lte-256gb-t775h/index.json b/site/public/v1/smartphones/20l-premium-edition-global-dual-sim-td-lte-256gb-t775h/index.json new file mode 100644 index 00000000000..ccf95b16968 --- /dev/null +++ b/site/public/v1/smartphones/20l-premium-edition-global-dual-sim-td-lte-256gb-t775h/index.json @@ -0,0 +1,77 @@ +{ + "id": 4965, + "slug": "20l-premium-edition-global-dual-sim-td-lte-256gb-t775h", + "name": "20L+ Premium Edition Global Dual SIM TD-LTE 256GB T775H", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-04-14", + "msrp_usd": 400, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 21.5, + "battery": 30.6, + "display": 27.0, + "value": 56.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.834762", + "updated_at": "2026-06-19T00:43:44.834762" +} diff --git a/site/public/v1/smartphones/20l-premium-edition-global-dual-sim-td-lte-256gb-t775h/score/index.json b/site/public/v1/smartphones/20l-premium-edition-global-dual-sim-td-lte-256gb-t775h/score/index.json new file mode 100644 index 00000000000..46f46119351 --- /dev/null +++ b/site/public/v1/smartphones/20l-premium-edition-global-dual-sim-td-lte-256gb-t775h/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 21.5, + "battery": 30.6, + "display": 27.0, + "value": 56.2 +} diff --git a/site/public/v1/smartphones/20l-premium-edition-global-dual-sim-td-lte-64gb-t774h/index.json b/site/public/v1/smartphones/20l-premium-edition-global-dual-sim-td-lte-64gb-t774h/index.json new file mode 100644 index 00000000000..eacbb267754 --- /dev/null +++ b/site/public/v1/smartphones/20l-premium-edition-global-dual-sim-td-lte-64gb-t774h/index.json @@ -0,0 +1,77 @@ +{ + "id": 4966, + "slug": "20l-premium-edition-global-dual-sim-td-lte-64gb-t774h", + "name": "20L Premium Edition Global Dual SIM TD-LTE 64GB T774H", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-04-14", + "msrp_usd": 199, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 27.0, + "value": 59.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.834762", + "updated_at": "2026-06-19T00:43:44.834762" +} diff --git a/site/public/v1/smartphones/20l-premium-edition-global-dual-sim-td-lte-64gb-t774h/score/index.json b/site/public/v1/smartphones/20l-premium-edition-global-dual-sim-td-lte-64gb-t774h/score/index.json new file mode 100644 index 00000000000..4a548023d80 --- /dev/null +++ b/site/public/v1/smartphones/20l-premium-edition-global-dual-sim-td-lte-64gb-t774h/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 27.0, + "value": 59.5 +} diff --git a/site/public/v1/smartphones/20l-premium-edition-td-lte-latam-128gb-t774b/index.json b/site/public/v1/smartphones/20l-premium-edition-td-lte-latam-128gb-t774b/index.json new file mode 100644 index 00000000000..e32237bf39c --- /dev/null +++ b/site/public/v1/smartphones/20l-premium-edition-td-lte-latam-128gb-t774b/index.json @@ -0,0 +1,77 @@ +{ + "id": 4967, + "slug": "20l-premium-edition-td-lte-latam-128gb-t774b", + "name": "20L Premium Edition TD-LTE LATAM 128GB T774B", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-04-14", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.834762", + "updated_at": "2026-06-19T00:43:44.834762" +} diff --git a/site/public/v1/smartphones/20l-premium-edition-td-lte-latam-128gb-t774b/score/index.json b/site/public/v1/smartphones/20l-premium-edition-td-lte-latam-128gb-t774b/score/index.json new file mode 100644 index 00000000000..d4e5b9dbca6 --- /dev/null +++ b/site/public/v1/smartphones/20l-premium-edition-td-lte-latam-128gb-t774b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/20l-premium-edition-td-lte-latam-256gb-t775b/index.json b/site/public/v1/smartphones/20l-premium-edition-td-lte-latam-256gb-t775b/index.json new file mode 100644 index 00000000000..408b240e9eb --- /dev/null +++ b/site/public/v1/smartphones/20l-premium-edition-td-lte-latam-256gb-t775b/index.json @@ -0,0 +1,77 @@ +{ + "id": 4968, + "slug": "20l-premium-edition-td-lte-latam-256gb-t775b", + "name": "20L+ Premium Edition TD-LTE LATAM 256GB T775B", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-04-28", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 21.5, + "battery": 30.6, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.835762", + "updated_at": "2026-06-19T00:43:44.835762" +} diff --git a/site/public/v1/smartphones/20l-premium-edition-td-lte-latam-256gb-t775b/score/index.json b/site/public/v1/smartphones/20l-premium-edition-td-lte-latam-256gb-t775b/score/index.json new file mode 100644 index 00000000000..27982f4ecd3 --- /dev/null +++ b/site/public/v1/smartphones/20l-premium-edition-td-lte-latam-256gb-t775b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 21.5, + "battery": 30.6, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/20l-standard-edition-global-dual-sim-td-lte-128gb-t774h/index.json b/site/public/v1/smartphones/20l-standard-edition-global-dual-sim-td-lte-128gb-t774h/index.json new file mode 100644 index 00000000000..4adae08b0c5 --- /dev/null +++ b/site/public/v1/smartphones/20l-standard-edition-global-dual-sim-td-lte-128gb-t774h/index.json @@ -0,0 +1,77 @@ +{ + "id": 4969, + "slug": "20l-standard-edition-global-dual-sim-td-lte-128gb-t774h", + "name": "20L Standard Edition Global Dual SIM TD-LTE 128GB T774H", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-04-14", + "msrp_usd": 229, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 27.0, + "value": 59.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.835762", + "updated_at": "2026-06-19T00:43:44.835762" +} diff --git a/site/public/v1/smartphones/20l-standard-edition-global-dual-sim-td-lte-128gb-t774h/score/index.json b/site/public/v1/smartphones/20l-standard-edition-global-dual-sim-td-lte-128gb-t774h/score/index.json new file mode 100644 index 00000000000..9a634b17e46 --- /dev/null +++ b/site/public/v1/smartphones/20l-standard-edition-global-dual-sim-td-lte-128gb-t774h/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 27.0, + "value": 59.2 +} diff --git a/site/public/v1/smartphones/20s-td-lte-na-128gb-t773o/index.json b/site/public/v1/smartphones/20s-td-lte-na-128gb-t773o/index.json new file mode 100644 index 00000000000..460cc067543 --- /dev/null +++ b/site/public/v1/smartphones/20s-td-lte-na-128gb-t773o/index.json @@ -0,0 +1,77 @@ +{ + "id": 4970, + "slug": "20s-td-lte-na-128gb-t773o", + "name": "20S TD-LTE NA 128GB T773O", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2021-04-24", + "msrp_usd": 460, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 0.0, + "camera": 21.5, + "battery": 30.6, + "display": 27.0, + "value": 53.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.835762", + "updated_at": "2026-06-19T00:43:44.835762" +} diff --git a/site/public/v1/smartphones/20s-td-lte-na-128gb-t773o/score/index.json b/site/public/v1/smartphones/20s-td-lte-na-128gb-t773o/score/index.json new file mode 100644 index 00000000000..13d34c86498 --- /dev/null +++ b/site/public/v1/smartphones/20s-td-lte-na-128gb-t773o/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 0.0, + "camera": 21.5, + "battery": 30.6, + "display": 27.0, + "value": 53.8 +} diff --git a/site/public/v1/smartphones/20y-2021-dual-sim-lte-eu-64gb-6156h/index.json b/site/public/v1/smartphones/20y-2021-dual-sim-lte-eu-64gb-6156h/index.json new file mode 100644 index 00000000000..7e038018ff6 --- /dev/null +++ b/site/public/v1/smartphones/20y-2021-dual-sim-lte-eu-64gb-6156h/index.json @@ -0,0 +1,77 @@ +{ + "id": 4971, + "slug": "20y-2021-dual-sim-lte-eu-64gb-6156h", + "name": "20Y 2021 Dual SIM LTE EU 64GB 6156H", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 58, + "slug": "helio-a25", + "name": "Helio A25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-a25" + }, + "release_date": "2021-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.2, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.835762", + "updated_at": "2026-06-19T00:43:44.835762" +} diff --git a/site/public/v1/smartphones/20y-2021-dual-sim-lte-eu-64gb-6156h/score/index.json b/site/public/v1/smartphones/20y-2021-dual-sim-lte-eu-64gb-6156h/score/index.json new file mode 100644 index 00000000000..80d19c5dcf5 --- /dev/null +++ b/site/public/v1/smartphones/20y-2021-dual-sim-lte-eu-64gb-6156h/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.2, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/20y-2021-global-dual-sim-td-lte-128gb-6156d1/index.json b/site/public/v1/smartphones/20y-2021-global-dual-sim-td-lte-128gb-6156d1/index.json new file mode 100644 index 00000000000..a0f91a04081 --- /dev/null +++ b/site/public/v1/smartphones/20y-2021-global-dual-sim-td-lte-128gb-6156d1/index.json @@ -0,0 +1,77 @@ +{ + "id": 4972, + "slug": "20y-2021-global-dual-sim-td-lte-128gb-6156d1", + "name": "20Y 2021 Global Dual SIM TD-LTE 128GB 6156D1", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 58, + "slug": "helio-a25", + "name": "Helio A25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-a25" + }, + "release_date": "2021-04-01", + "msrp_usd": 179, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.2, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 17.5, + "value": 56.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.835762", + "updated_at": "2026-06-19T00:43:44.835762" +} diff --git a/site/public/v1/smartphones/20y-2021-global-dual-sim-td-lte-128gb-6156d1/score/index.json b/site/public/v1/smartphones/20y-2021-global-dual-sim-td-lte-128gb-6156d1/score/index.json new file mode 100644 index 00000000000..dc7043940e6 --- /dev/null +++ b/site/public/v1/smartphones/20y-2021-global-dual-sim-td-lte-128gb-6156d1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.2, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 17.5, + "value": 56.1 +} diff --git a/site/public/v1/smartphones/20y-2021-global-dual-sim-td-lte-64gb-6156d/index.json b/site/public/v1/smartphones/20y-2021-global-dual-sim-td-lte-64gb-6156d/index.json new file mode 100644 index 00000000000..93c4e9206f6 --- /dev/null +++ b/site/public/v1/smartphones/20y-2021-global-dual-sim-td-lte-64gb-6156d/index.json @@ -0,0 +1,77 @@ +{ + "id": 4973, + "slug": "20y-2021-global-dual-sim-td-lte-64gb-6156d", + "name": "20Y 2021 Global Dual SIM TD-LTE 64GB 6156D", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 58, + "slug": "helio-a25", + "name": "Helio A25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-a25" + }, + "release_date": "2021-04-01", + "msrp_usd": 229, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.2, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 17.5, + "value": 56.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.835762", + "updated_at": "2026-06-19T00:43:44.835762" +} diff --git a/site/public/v1/smartphones/20y-2021-global-dual-sim-td-lte-64gb-6156d/score/index.json b/site/public/v1/smartphones/20y-2021-global-dual-sim-td-lte-64gb-6156d/score/index.json new file mode 100644 index 00000000000..dc7043940e6 --- /dev/null +++ b/site/public/v1/smartphones/20y-2021-global-dual-sim-td-lte-64gb-6156d/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.2, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 17.5, + "value": 56.1 +} diff --git a/site/public/v1/smartphones/20y-2021-lte-latam-128gb-6156a1/index.json b/site/public/v1/smartphones/20y-2021-lte-latam-128gb-6156a1/index.json new file mode 100644 index 00000000000..77434303085 --- /dev/null +++ b/site/public/v1/smartphones/20y-2021-lte-latam-128gb-6156a1/index.json @@ -0,0 +1,77 @@ +{ + "id": 4974, + "slug": "20y-2021-lte-latam-128gb-6156a1", + "name": "20Y 2021 LTE LATAM 128GB 6156A1", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 58, + "slug": "helio-a25", + "name": "Helio A25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-a25" + }, + "release_date": "2021-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.2, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.835762", + "updated_at": "2026-06-19T00:43:44.835762" +} diff --git a/site/public/v1/smartphones/20y-2021-lte-latam-128gb-6156a1/score/index.json b/site/public/v1/smartphones/20y-2021-lte-latam-128gb-6156a1/score/index.json new file mode 100644 index 00000000000..80d19c5dcf5 --- /dev/null +++ b/site/public/v1/smartphones/20y-2021-lte-latam-128gb-6156a1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.2, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/20y-2021-lte-latam-64gb-6156a/index.json b/site/public/v1/smartphones/20y-2021-lte-latam-64gb-6156a/index.json new file mode 100644 index 00000000000..efefb838f9b --- /dev/null +++ b/site/public/v1/smartphones/20y-2021-lte-latam-64gb-6156a/index.json @@ -0,0 +1,77 @@ +{ + "id": 4975, + "slug": "20y-2021-lte-latam-64gb-6156a", + "name": "20Y 2021 LTE LATAM 64GB 6156A", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 58, + "slug": "helio-a25", + "name": "Helio A25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-a25" + }, + "release_date": "2021-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.2, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.835762", + "updated_at": "2026-06-19T00:43:44.835762" +} diff --git a/site/public/v1/smartphones/20y-2021-lte-latam-64gb-6156a/score/index.json b/site/public/v1/smartphones/20y-2021-lte-latam-64gb-6156a/score/index.json new file mode 100644 index 00000000000..80d19c5dcf5 --- /dev/null +++ b/site/public/v1/smartphones/20y-2021-lte-latam-64gb-6156a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.2, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/3-1-plus-dual-sim-lte-latam-32gb/index.json b/site/public/v1/smartphones/3-1-plus-dual-sim-lte-latam-32gb/index.json new file mode 100644 index 00000000000..8e31c63419b --- /dev/null +++ b/site/public/v1/smartphones/3-1-plus-dual-sim-lte-latam-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2392, + "slug": "3-1-plus-dual-sim-lte-latam-32gb", + "name": "3.1 Plus Dual SIM LTE LATAM 32GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-02-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.0, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.452272", + "updated_at": "2026-06-19T00:43:44.452272" +} diff --git a/site/public/v1/smartphones/3-1-plus-dual-sim-lte-latam-32gb/score/index.json b/site/public/v1/smartphones/3-1-plus-dual-sim-lte-latam-32gb/score/index.json new file mode 100644 index 00000000000..99542862d37 --- /dev/null +++ b/site/public/v1/smartphones/3-1-plus-dual-sim-lte-latam-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/3-1-plus-dual-sim-td-lte-cn-32gb/index.json b/site/public/v1/smartphones/3-1-plus-dual-sim-td-lte-cn-32gb/index.json new file mode 100644 index 00000000000..f5d8856dd48 --- /dev/null +++ b/site/public/v1/smartphones/3-1-plus-dual-sim-td-lte-cn-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2348, + "slug": "3-1-plus-dual-sim-td-lte-cn-32gb", + "name": "3.1 Plus Dual SIM TD-LTE CN 32GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-11-21", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.0, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.445874", + "updated_at": "2026-06-19T00:43:44.445874" +} diff --git a/site/public/v1/smartphones/3-1-plus-dual-sim-td-lte-cn-32gb/score/index.json b/site/public/v1/smartphones/3-1-plus-dual-sim-td-lte-cn-32gb/score/index.json new file mode 100644 index 00000000000..99542862d37 --- /dev/null +++ b/site/public/v1/smartphones/3-1-plus-dual-sim-td-lte-cn-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/3-1-plus-dual-sim-td-lte-in-16gb/index.json b/site/public/v1/smartphones/3-1-plus-dual-sim-td-lte-in-16gb/index.json new file mode 100644 index 00000000000..8f244658a79 --- /dev/null +++ b/site/public/v1/smartphones/3-1-plus-dual-sim-td-lte-in-16gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2349, + "slug": "3-1-plus-dual-sim-td-lte-in-16gb", + "name": "3.1 Plus Dual SIM TD-LTE IN 16GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-11-21", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.0, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.445874", + "updated_at": "2026-06-19T00:43:44.445874" +} diff --git a/site/public/v1/smartphones/3-1-plus-dual-sim-td-lte-in-16gb/score/index.json b/site/public/v1/smartphones/3-1-plus-dual-sim-td-lte-in-16gb/score/index.json new file mode 100644 index 00000000000..99542862d37 --- /dev/null +++ b/site/public/v1/smartphones/3-1-plus-dual-sim-td-lte-in-16gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/3-1-plus-dual-sim-td-lte-in-32gb/index.json b/site/public/v1/smartphones/3-1-plus-dual-sim-td-lte-in-32gb/index.json new file mode 100644 index 00000000000..2175e15455c --- /dev/null +++ b/site/public/v1/smartphones/3-1-plus-dual-sim-td-lte-in-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2350, + "slug": "3-1-plus-dual-sim-td-lte-in-32gb", + "name": "3.1 Plus Dual SIM TD-LTE IN 32GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-11-21", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.0, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.445874", + "updated_at": "2026-06-19T00:43:44.445874" +} diff --git a/site/public/v1/smartphones/3-1-plus-dual-sim-td-lte-in-32gb/score/index.json b/site/public/v1/smartphones/3-1-plus-dual-sim-td-lte-in-32gb/score/index.json new file mode 100644 index 00000000000..99542862d37 --- /dev/null +++ b/site/public/v1/smartphones/3-1-plus-dual-sim-td-lte-in-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/3-1-plus-global-dual-sim-td-lte-32gb/index.json b/site/public/v1/smartphones/3-1-plus-global-dual-sim-td-lte-32gb/index.json new file mode 100644 index 00000000000..05abebe5fd5 --- /dev/null +++ b/site/public/v1/smartphones/3-1-plus-global-dual-sim-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2351, + "slug": "3-1-plus-global-dual-sim-td-lte-32gb", + "name": "3.1 Plus Global Dual SIM TD-LTE 32GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-12-06", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.0, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.445874", + "updated_at": "2026-06-19T00:43:44.445874" +} diff --git a/site/public/v1/smartphones/3-1-plus-global-dual-sim-td-lte-32gb/score/index.json b/site/public/v1/smartphones/3-1-plus-global-dual-sim-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..99542862d37 --- /dev/null +++ b/site/public/v1/smartphones/3-1-plus-global-dual-sim-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/3-1-plus-global-td-lte-32gb/index.json b/site/public/v1/smartphones/3-1-plus-global-td-lte-32gb/index.json new file mode 100644 index 00000000000..1f68a4f20b1 --- /dev/null +++ b/site/public/v1/smartphones/3-1-plus-global-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2352, + "slug": "3-1-plus-global-td-lte-32gb", + "name": "3.1 Plus Global TD-LTE 32GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-12-06", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.0, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.445874", + "updated_at": "2026-06-19T00:43:44.445874" +} diff --git a/site/public/v1/smartphones/3-1-plus-global-td-lte-32gb/score/index.json b/site/public/v1/smartphones/3-1-plus-global-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..99542862d37 --- /dev/null +++ b/site/public/v1/smartphones/3-1-plus-global-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/3-1-plus-lte-a-us/index.json b/site/public/v1/smartphones/3-1-plus-lte-a-us/index.json new file mode 100644 index 00000000000..a0b52804201 --- /dev/null +++ b/site/public/v1/smartphones/3-1-plus-lte-a-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 2393, + "slug": "3-1-plus-lte-a-us", + "name": "3.1 Plus LTE-A US", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-01-27", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 11.9, + "performance": 0.0, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.453273", + "updated_at": "2026-06-19T00:43:44.453273" +} diff --git a/site/public/v1/smartphones/3-1-plus-lte-a-us/score/index.json b/site/public/v1/smartphones/3-1-plus-lte-a-us/score/index.json new file mode 100644 index 00000000000..ca23a5bab96 --- /dev/null +++ b/site/public/v1/smartphones/3-1-plus-lte-a-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 11.9, + "performance": 0.0, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/3-1-plus-lte-latam-16gb/index.json b/site/public/v1/smartphones/3-1-plus-lte-latam-16gb/index.json new file mode 100644 index 00000000000..76c4fafc7e1 --- /dev/null +++ b/site/public/v1/smartphones/3-1-plus-lte-latam-16gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2394, + "slug": "3-1-plus-lte-latam-16gb", + "name": "3.1 Plus LTE LATAM 16GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-02-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.0, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.453273", + "updated_at": "2026-06-19T00:43:44.453273" +} diff --git a/site/public/v1/smartphones/3-1-plus-lte-latam-16gb/score/index.json b/site/public/v1/smartphones/3-1-plus-lte-latam-16gb/score/index.json new file mode 100644 index 00000000000..99542862d37 --- /dev/null +++ b/site/public/v1/smartphones/3-1-plus-lte-latam-16gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/3-2-2019-dual-sim-td-lte-in-16gb/index.json b/site/public/v1/smartphones/3-2-2019-dual-sim-td-lte-in-16gb/index.json new file mode 100644 index 00000000000..7831b846631 --- /dev/null +++ b/site/public/v1/smartphones/3-2-2019-dual-sim-td-lte-in-16gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2396, + "slug": "3-2-2019-dual-sim-td-lte-in-16gb", + "name": "3.2 2019 Dual SIM TD-LTE IN 16GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 124, + "slug": "snapdragon-429", + "name": "Snapdragon 429", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Qualcomm Adreno 504", + "url": "/v1/socs/snapdragon-429" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color TN-TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.453273", + "updated_at": "2026-06-19T00:43:44.453273" +} diff --git a/site/public/v1/smartphones/3-2-2019-dual-sim-td-lte-in-16gb/score/index.json b/site/public/v1/smartphones/3-2-2019-dual-sim-td-lte-in-16gb/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/3-2-2019-dual-sim-td-lte-in-16gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/3-2-2019-dual-sim-td-lte-in-32gb/index.json b/site/public/v1/smartphones/3-2-2019-dual-sim-td-lte-in-32gb/index.json new file mode 100644 index 00000000000..2da8bdeac36 --- /dev/null +++ b/site/public/v1/smartphones/3-2-2019-dual-sim-td-lte-in-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2397, + "slug": "3-2-2019-dual-sim-td-lte-in-32gb", + "name": "3.2 2019 Dual SIM TD-LTE IN 32GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 124, + "slug": "snapdragon-429", + "name": "Snapdragon 429", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Qualcomm Adreno 504", + "url": "/v1/socs/snapdragon-429" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color TN-TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.453273", + "updated_at": "2026-06-19T00:43:44.453273" +} diff --git a/site/public/v1/smartphones/3-2-2019-dual-sim-td-lte-in-32gb/score/index.json b/site/public/v1/smartphones/3-2-2019-dual-sim-td-lte-in-32gb/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/3-2-2019-dual-sim-td-lte-in-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/3-2-2019-global-dual-sim-td-lte-16gb/index.json b/site/public/v1/smartphones/3-2-2019-global-dual-sim-td-lte-16gb/index.json new file mode 100644 index 00000000000..3512bf8b7d0 --- /dev/null +++ b/site/public/v1/smartphones/3-2-2019-global-dual-sim-td-lte-16gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2398, + "slug": "3-2-2019-global-dual-sim-td-lte-16gb", + "name": "3.2 2019 Global Dual SIM TD-LTE 16GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 124, + "slug": "snapdragon-429", + "name": "Snapdragon 429", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Qualcomm Adreno 504", + "url": "/v1/socs/snapdragon-429" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color TN-TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.453273", + "updated_at": "2026-06-19T00:43:44.453273" +} diff --git a/site/public/v1/smartphones/3-2-2019-global-dual-sim-td-lte-16gb/score/index.json b/site/public/v1/smartphones/3-2-2019-global-dual-sim-td-lte-16gb/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/3-2-2019-global-dual-sim-td-lte-16gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/3-2-2019-global-dual-sim-td-lte-32gb/index.json b/site/public/v1/smartphones/3-2-2019-global-dual-sim-td-lte-32gb/index.json new file mode 100644 index 00000000000..9361d21c24c --- /dev/null +++ b/site/public/v1/smartphones/3-2-2019-global-dual-sim-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2399, + "slug": "3-2-2019-global-dual-sim-td-lte-32gb", + "name": "3.2 2019 Global Dual SIM TD-LTE 32GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 124, + "slug": "snapdragon-429", + "name": "Snapdragon 429", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Qualcomm Adreno 504", + "url": "/v1/socs/snapdragon-429" + }, + "release_date": "2019-05-21", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color TN-TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.453273", + "updated_at": "2026-06-19T00:43:44.453273" +} diff --git a/site/public/v1/smartphones/3-2-2019-global-dual-sim-td-lte-32gb/score/index.json b/site/public/v1/smartphones/3-2-2019-global-dual-sim-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/3-2-2019-global-dual-sim-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/3-2-2019-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/3-2-2019-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..e23bbd94a82 --- /dev/null +++ b/site/public/v1/smartphones/3-2-2019-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2400, + "slug": "3-2-2019-global-dual-sim-td-lte-64gb", + "name": "3.2 2019 Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 124, + "slug": "snapdragon-429", + "name": "Snapdragon 429", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Qualcomm Adreno 504", + "url": "/v1/socs/snapdragon-429" + }, + "release_date": "2019-05-21", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color TN-TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.454272", + "updated_at": "2026-06-19T00:43:44.454272" +} diff --git a/site/public/v1/smartphones/3-2-2019-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/3-2-2019-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/3-2-2019-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/3-2-2019-global-td-lte-16gb/index.json b/site/public/v1/smartphones/3-2-2019-global-td-lte-16gb/index.json new file mode 100644 index 00000000000..b29b589af92 --- /dev/null +++ b/site/public/v1/smartphones/3-2-2019-global-td-lte-16gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2401, + "slug": "3-2-2019-global-td-lte-16gb", + "name": "3.2 2019 Global TD-LTE 16GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 124, + "slug": "snapdragon-429", + "name": "Snapdragon 429", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Qualcomm Adreno 504", + "url": "/v1/socs/snapdragon-429" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color TN-TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.454272", + "updated_at": "2026-06-19T00:43:44.454272" +} diff --git a/site/public/v1/smartphones/3-2-2019-global-td-lte-16gb/score/index.json b/site/public/v1/smartphones/3-2-2019-global-td-lte-16gb/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/3-2-2019-global-td-lte-16gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/3-2019-dual-sim-lte-emea-32gb-5053d/index.json b/site/public/v1/smartphones/3-2019-dual-sim-lte-emea-32gb-5053d/index.json new file mode 100644 index 00000000000..5c07fbfd8f3 --- /dev/null +++ b/site/public/v1/smartphones/3-2019-dual-sim-lte-emea-32gb-5053d/index.json @@ -0,0 +1,76 @@ +{ + "id": 7, + "slug": "3-2019-dual-sim-lte-emea-32gb-5053d", + "name": "3 2019 Dual SIM LTE EMEA 32GB 5053D", + "brand": { + "id": 6, + "slug": "alcatel", + "name": "Alcatel Mobile", + "country": "CN", + "url": "/v1/brands/alcatel" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.94, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 289 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 11.9, + "performance": 0.0, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.109419", + "updated_at": "2026-06-19T00:43:44.109419" +} diff --git a/site/public/v1/smartphones/3-2019-dual-sim-lte-emea-32gb-5053d/score/index.json b/site/public/v1/smartphones/3-2019-dual-sim-lte-emea-32gb-5053d/score/index.json new file mode 100644 index 00000000000..ca23a5bab96 --- /dev/null +++ b/site/public/v1/smartphones/3-2019-dual-sim-lte-emea-32gb-5053d/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 11.9, + "performance": 0.0, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/3-2019-dual-sim-lte-emea-64gb-5053k/index.json b/site/public/v1/smartphones/3-2019-dual-sim-lte-emea-64gb-5053k/index.json new file mode 100644 index 00000000000..0d87be53311 --- /dev/null +++ b/site/public/v1/smartphones/3-2019-dual-sim-lte-emea-64gb-5053k/index.json @@ -0,0 +1,76 @@ +{ + "id": 8, + "slug": "3-2019-dual-sim-lte-emea-64gb-5053k", + "name": "3 2019 Dual SIM LTE EMEA 64GB 5053K", + "brand": { + "id": 6, + "slug": "alcatel", + "name": "Alcatel Mobile", + "country": "CN", + "url": "/v1/brands/alcatel" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.94, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 289 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 11.9, + "performance": 0.0, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.110419", + "updated_at": "2026-06-19T00:43:44.110419" +} diff --git a/site/public/v1/smartphones/3-2019-dual-sim-lte-emea-64gb-5053k/score/index.json b/site/public/v1/smartphones/3-2019-dual-sim-lte-emea-64gb-5053k/score/index.json new file mode 100644 index 00000000000..ca23a5bab96 --- /dev/null +++ b/site/public/v1/smartphones/3-2019-dual-sim-lte-emea-64gb-5053k/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 11.9, + "performance": 0.0, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/3-2019-lte-emea-32gb-5053y/index.json b/site/public/v1/smartphones/3-2019-lte-emea-32gb-5053y/index.json new file mode 100644 index 00000000000..052d61ca777 --- /dev/null +++ b/site/public/v1/smartphones/3-2019-lte-emea-32gb-5053y/index.json @@ -0,0 +1,76 @@ +{ + "id": 9, + "slug": "3-2019-lte-emea-32gb-5053y", + "name": "3 2019 LTE EMEA 32GB 5053Y", + "brand": { + "id": 6, + "slug": "alcatel", + "name": "Alcatel Mobile", + "country": "CN", + "url": "/v1/brands/alcatel" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.94, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 289 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 11.9, + "performance": 0.0, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.110419", + "updated_at": "2026-06-19T00:43:44.110419" +} diff --git a/site/public/v1/smartphones/3-2019-lte-emea-32gb-5053y/score/index.json b/site/public/v1/smartphones/3-2019-lte-emea-32gb-5053y/score/index.json new file mode 100644 index 00000000000..ca23a5bab96 --- /dev/null +++ b/site/public/v1/smartphones/3-2019-lte-emea-32gb-5053y/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 11.9, + "performance": 0.0, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/3-dual-sim-lte-fp3/index.json b/site/public/v1/smartphones/3-dual-sim-lte-fp3/index.json new file mode 100644 index 00000000000..950c742806d --- /dev/null +++ b/site/public/v1/smartphones/3-dual-sim-lte-fp3/index.json @@ -0,0 +1,76 @@ +{ + "id": 519, + "slug": "3-dual-sim-lte-fp3", + "name": "3 Dual SIM LTE FP3", + "brand": { + "id": 81, + "slug": "fairphone", + "name": "Fairphone", + "country": "NL", + "url": "/v1/brands/fairphone" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-08-27", + "msrp_usd": 419, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.64, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 428 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3060, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": 0.0, + "camera": 5.0, + "battery": 0.9, + "display": 47.8, + "value": 52.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.178933", + "updated_at": "2026-06-19T00:43:44.178933" +} diff --git a/site/public/v1/smartphones/3-dual-sim-lte-fp3/score/index.json b/site/public/v1/smartphones/3-dual-sim-lte-fp3/score/index.json new file mode 100644 index 00000000000..f6dd1e9f7f2 --- /dev/null +++ b/site/public/v1/smartphones/3-dual-sim-lte-fp3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": 0.0, + "camera": 5.0, + "battery": 0.9, + "display": 47.8, + "value": 52.1 +} diff --git a/site/public/v1/smartphones/30/index.json b/site/public/v1/smartphones/30/index.json new file mode 100644 index 00000000000..edf90826ee6 --- /dev/null +++ b/site/public/v1/smartphones/30/index.json @@ -0,0 +1,68 @@ +{ + "id": 641, + "slug": "30", + "name": "30", + "brand": { + "id": 16, + "slug": "honor", + "name": "HONOR", + "country": "CN", + "url": "/v1/brands/honor" + }, + "soc": { + "id": 37, + "slug": "kirin-985", + "name": "Kirin 985", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP8", + "url": "/v1/socs/kirin-985" + }, + "release_date": "2020-01-01", + "msrp_usd": 449, + "ram_gb": 8, + "storage_options_gb": [], + "display": { + "size_inch": 6.53 + }, + "cameras": [ + { + "type": "main", + "mp": 40.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.6, + "performance": 3.0, + "camera": 13.9, + "battery": 15.0, + "display": null, + "value": 49.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.194936", + "updated_at": "2026-06-19T00:43:44.194936" +} diff --git a/site/public/v1/smartphones/30/score/index.json b/site/public/v1/smartphones/30/score/index.json new file mode 100644 index 00000000000..bd1ba810b5c --- /dev/null +++ b/site/public/v1/smartphones/30/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.6, + "performance": 3.0, + "camera": 13.9, + "battery": 15.0, + "display": null, + "value": 49.5 +} diff --git a/site/public/v1/smartphones/30s/index.json b/site/public/v1/smartphones/30s/index.json new file mode 100644 index 00000000000..0a93f178fda --- /dev/null +++ b/site/public/v1/smartphones/30s/index.json @@ -0,0 +1,68 @@ +{ + "id": 642, + "slug": "30s", + "name": "30S", + "brand": { + "id": 16, + "slug": "honor", + "name": "HONOR", + "country": "CN", + "url": "/v1/brands/honor" + }, + "soc": { + "id": 34, + "slug": "kirin-820", + "name": "Kirin 820", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MP6", + "url": "/v1/socs/kirin-820" + }, + "release_date": "2020-01-01", + "msrp_usd": 349, + "ram_gb": 6, + "storage_options_gb": [], + "display": { + "size_inch": 6.5 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.7, + "performance": 1.5, + "camera": 21.6, + "battery": 15.0, + "display": null, + "value": 54.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.194936", + "updated_at": "2026-06-19T00:43:44.194936" +} diff --git a/site/public/v1/smartphones/30s/score/index.json b/site/public/v1/smartphones/30s/score/index.json new file mode 100644 index 00000000000..cd4825e69e6 --- /dev/null +++ b/site/public/v1/smartphones/30s/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.7, + "performance": 1.5, + "camera": 21.6, + "battery": 15.0, + "display": null, + "value": 54.5 +} diff --git a/site/public/v1/smartphones/3l-2020-global-dual-sim-td-lte-5029d/index.json b/site/public/v1/smartphones/3l-2020-global-dual-sim-td-lte-5029d/index.json new file mode 100644 index 00000000000..129dfe7d943 --- /dev/null +++ b/site/public/v1/smartphones/3l-2020-global-dual-sim-td-lte-5029d/index.json @@ -0,0 +1,76 @@ +{ + "id": 20, + "slug": "3l-2020-global-dual-sim-td-lte-5029d", + "name": "3L 2020 Global Dual SIM TD-LTE 5029D", + "brand": { + "id": 6, + "slug": "alcatel", + "name": "Alcatel Mobile", + "country": "CN", + "url": "/v1/brands/alcatel" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-02-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": null, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.111419", + "updated_at": "2026-06-19T00:43:44.111419" +} diff --git a/site/public/v1/smartphones/3l-2020-global-dual-sim-td-lte-5029d/score/index.json b/site/public/v1/smartphones/3l-2020-global-dual-sim-td-lte-5029d/score/index.json new file mode 100644 index 00000000000..973265fb19b --- /dev/null +++ b/site/public/v1/smartphones/3l-2020-global-dual-sim-td-lte-5029d/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": null, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/3l-2021-dual-sim-lte-eu-6056h/index.json b/site/public/v1/smartphones/3l-2021-dual-sim-lte-eu-6056h/index.json new file mode 100644 index 00000000000..2db768e7711 --- /dev/null +++ b/site/public/v1/smartphones/3l-2021-dual-sim-lte-eu-6056h/index.json @@ -0,0 +1,77 @@ +{ + "id": 25, + "slug": "3l-2021-dual-sim-lte-eu-6056h", + "name": "3L 2021 Dual SIM LTE EU 6056H", + "brand": { + "id": 6, + "slug": "alcatel", + "name": "Alcatel Mobile", + "country": "CN", + "url": "/v1/brands/alcatel" + }, + "soc": { + "id": 58, + "slug": "helio-a25", + "name": "Helio A25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-a25" + }, + "release_date": "2021-04-26", + "msrp_usd": 155, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.2, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 17.5, + "value": 56.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.112419", + "updated_at": "2026-06-19T00:43:44.112419" +} diff --git a/site/public/v1/smartphones/3l-2021-dual-sim-lte-eu-6056h/score/index.json b/site/public/v1/smartphones/3l-2021-dual-sim-lte-eu-6056h/score/index.json new file mode 100644 index 00000000000..dc7043940e6 --- /dev/null +++ b/site/public/v1/smartphones/3l-2021-dual-sim-lte-eu-6056h/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.2, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 17.5, + "value": 56.1 +} diff --git a/site/public/v1/smartphones/3l-2021-global-dual-sim-td-lte-6056d/index.json b/site/public/v1/smartphones/3l-2021-global-dual-sim-td-lte-6056d/index.json new file mode 100644 index 00000000000..7cf05b142d1 --- /dev/null +++ b/site/public/v1/smartphones/3l-2021-global-dual-sim-td-lte-6056d/index.json @@ -0,0 +1,77 @@ +{ + "id": 26, + "slug": "3l-2021-global-dual-sim-td-lte-6056d", + "name": "3L 2021 Global Dual SIM TD-LTE 6056D", + "brand": { + "id": 6, + "slug": "alcatel", + "name": "Alcatel Mobile", + "country": "CN", + "url": "/v1/brands/alcatel" + }, + "soc": { + "id": 58, + "slug": "helio-a25", + "name": "Helio A25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-a25" + }, + "release_date": "2021-04-26", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.2, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.112419", + "updated_at": "2026-06-19T00:43:44.112419" +} diff --git a/site/public/v1/smartphones/3l-2021-global-dual-sim-td-lte-6056d/score/index.json b/site/public/v1/smartphones/3l-2021-global-dual-sim-td-lte-6056d/score/index.json new file mode 100644 index 00000000000..80d19c5dcf5 --- /dev/null +++ b/site/public/v1/smartphones/3l-2021-global-dual-sim-td-lte-6056d/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.2, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/3x-2019-dual-sim-lte-emea-128gb-5048u/index.json b/site/public/v1/smartphones/3x-2019-dual-sim-lte-emea-128gb-5048u/index.json new file mode 100644 index 00000000000..3c7389ecaeb --- /dev/null +++ b/site/public/v1/smartphones/3x-2019-dual-sim-lte-emea-128gb-5048u/index.json @@ -0,0 +1,76 @@ +{ + "id": 10, + "slug": "3x-2019-dual-sim-lte-emea-128gb-5048u", + "name": "3x 2019 Dual SIM LTE EMEA 128GB 5048U", + "brand": { + "id": 6, + "slug": "alcatel", + "name": "Alcatel Mobile", + "country": "CN", + "url": "/v1/brands/alcatel" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.110419", + "updated_at": "2026-06-19T00:43:44.110419" +} diff --git a/site/public/v1/smartphones/3x-2019-dual-sim-lte-emea-128gb-5048u/score/index.json b/site/public/v1/smartphones/3x-2019-dual-sim-lte-emea-128gb-5048u/score/index.json new file mode 100644 index 00000000000..28137bb5301 --- /dev/null +++ b/site/public/v1/smartphones/3x-2019-dual-sim-lte-emea-128gb-5048u/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/3x-2019-dual-sim-lte-emea-5048i/index.json b/site/public/v1/smartphones/3x-2019-dual-sim-lte-emea-5048i/index.json new file mode 100644 index 00000000000..5cec849bb75 --- /dev/null +++ b/site/public/v1/smartphones/3x-2019-dual-sim-lte-emea-5048i/index.json @@ -0,0 +1,76 @@ +{ + "id": 11, + "slug": "3x-2019-dual-sim-lte-emea-5048i", + "name": "3x 2019 Dual SIM LTE EMEA 5048I", + "brand": { + "id": 6, + "slug": "alcatel", + "name": "Alcatel Mobile", + "country": "CN", + "url": "/v1/brands/alcatel" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.110419", + "updated_at": "2026-06-19T00:43:44.110419" +} diff --git a/site/public/v1/smartphones/3x-2019-dual-sim-lte-emea-5048i/score/index.json b/site/public/v1/smartphones/3x-2019-dual-sim-lte-emea-5048i/score/index.json new file mode 100644 index 00000000000..82b598c31b6 --- /dev/null +++ b/site/public/v1/smartphones/3x-2019-dual-sim-lte-emea-5048i/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/3x-2019-dual-sim-lte-emea-5048y/index.json b/site/public/v1/smartphones/3x-2019-dual-sim-lte-emea-5048y/index.json new file mode 100644 index 00000000000..06dc0ec0ef3 --- /dev/null +++ b/site/public/v1/smartphones/3x-2019-dual-sim-lte-emea-5048y/index.json @@ -0,0 +1,76 @@ +{ + "id": 12, + "slug": "3x-2019-dual-sim-lte-emea-5048y", + "name": "3x 2019 Dual SIM LTE EMEA 5048Y", + "brand": { + "id": 6, + "slug": "alcatel", + "name": "Alcatel Mobile", + "country": "CN", + "url": "/v1/brands/alcatel" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.110419", + "updated_at": "2026-06-19T00:43:44.110419" +} diff --git a/site/public/v1/smartphones/3x-2019-dual-sim-lte-emea-5048y/score/index.json b/site/public/v1/smartphones/3x-2019-dual-sim-lte-emea-5048y/score/index.json new file mode 100644 index 00000000000..82b598c31b6 --- /dev/null +++ b/site/public/v1/smartphones/3x-2019-dual-sim-lte-emea-5048y/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/3x-2019-lte-am-5048a/index.json b/site/public/v1/smartphones/3x-2019-lte-am-5048a/index.json new file mode 100644 index 00000000000..a6826932dd8 --- /dev/null +++ b/site/public/v1/smartphones/3x-2019-lte-am-5048a/index.json @@ -0,0 +1,76 @@ +{ + "id": 13, + "slug": "3x-2019-lte-am-5048a", + "name": "3x 2019 LTE AM 5048A", + "brand": { + "id": 6, + "slug": "alcatel", + "name": "Alcatel Mobile", + "country": "CN", + "url": "/v1/brands/alcatel" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.110419", + "updated_at": "2026-06-19T00:43:44.110419" +} diff --git a/site/public/v1/smartphones/3x-2019-lte-am-5048a/score/index.json b/site/public/v1/smartphones/3x-2019-lte-am-5048a/score/index.json new file mode 100644 index 00000000000..82b598c31b6 --- /dev/null +++ b/site/public/v1/smartphones/3x-2019-lte-am-5048a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/3x-2020-global-dual-sim-td-lte-5061k/index.json b/site/public/v1/smartphones/3x-2020-global-dual-sim-td-lte-5061k/index.json new file mode 100644 index 00000000000..ea2e8695da9 --- /dev/null +++ b/site/public/v1/smartphones/3x-2020-global-dual-sim-td-lte-5061k/index.json @@ -0,0 +1,76 @@ +{ + "id": 21, + "slug": "3x-2020-global-dual-sim-td-lte-5061k", + "name": "3x 2020 Global Dual SIM TD-LTE 5061K", + "brand": { + "id": 6, + "slug": "alcatel", + "name": "Alcatel Mobile", + "country": "CN", + "url": "/v1/brands/alcatel" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.8, + "performance": null, + "camera": 6.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.111419", + "updated_at": "2026-06-19T00:43:44.111419" +} diff --git a/site/public/v1/smartphones/3x-2020-global-dual-sim-td-lte-5061k/score/index.json b/site/public/v1/smartphones/3x-2020-global-dual-sim-td-lte-5061k/score/index.json new file mode 100644 index 00000000000..79d7057bdac --- /dev/null +++ b/site/public/v1/smartphones/3x-2020-global-dual-sim-td-lte-5061k/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.8, + "performance": null, + "camera": 6.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/4-2-dual-sim-td-lte-am-32gb/index.json b/site/public/v1/smartphones/4-2-dual-sim-td-lte-am-32gb/index.json new file mode 100644 index 00000000000..14e89679b2f --- /dev/null +++ b/site/public/v1/smartphones/4-2-dual-sim-td-lte-am-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2402, + "slug": "4-2-dual-sim-td-lte-am-32gb", + "name": "4.2 Dual SIM TD-LTE AM 32GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-05-14", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 161.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.454272", + "updated_at": "2026-06-19T00:43:44.454272" +} diff --git a/site/public/v1/smartphones/4-2-dual-sim-td-lte-am-32gb/score/index.json b/site/public/v1/smartphones/4-2-dual-sim-td-lte-am-32gb/score/index.json new file mode 100644 index 00000000000..8dd4f57a73b --- /dev/null +++ b/site/public/v1/smartphones/4-2-dual-sim-td-lte-am-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/4-2-dual-sim-td-lte-in-32gb/index.json b/site/public/v1/smartphones/4-2-dual-sim-td-lte-in-32gb/index.json new file mode 100644 index 00000000000..f517b4aa4ef --- /dev/null +++ b/site/public/v1/smartphones/4-2-dual-sim-td-lte-in-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2403, + "slug": "4-2-dual-sim-td-lte-in-32gb", + "name": "4.2 Dual SIM TD-LTE IN 32GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-05-02", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 161.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.454272", + "updated_at": "2026-06-19T00:43:44.454272" +} diff --git a/site/public/v1/smartphones/4-2-dual-sim-td-lte-in-32gb/score/index.json b/site/public/v1/smartphones/4-2-dual-sim-td-lte-in-32gb/score/index.json new file mode 100644 index 00000000000..8dd4f57a73b --- /dev/null +++ b/site/public/v1/smartphones/4-2-dual-sim-td-lte-in-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/4-2-global-dual-sim-td-lte-16gb/index.json b/site/public/v1/smartphones/4-2-global-dual-sim-td-lte-16gb/index.json new file mode 100644 index 00000000000..bd948eb5bbe --- /dev/null +++ b/site/public/v1/smartphones/4-2-global-dual-sim-td-lte-16gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2404, + "slug": "4-2-global-dual-sim-td-lte-16gb", + "name": "4.2 Global Dual SIM TD-LTE 16GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-04-28", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 161.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.454272", + "updated_at": "2026-06-19T00:43:44.454272" +} diff --git a/site/public/v1/smartphones/4-2-global-dual-sim-td-lte-16gb/score/index.json b/site/public/v1/smartphones/4-2-global-dual-sim-td-lte-16gb/score/index.json new file mode 100644 index 00000000000..8dd4f57a73b --- /dev/null +++ b/site/public/v1/smartphones/4-2-global-dual-sim-td-lte-16gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/4-2-global-dual-sim-td-lte-32gb/index.json b/site/public/v1/smartphones/4-2-global-dual-sim-td-lte-32gb/index.json new file mode 100644 index 00000000000..6c2630e2733 --- /dev/null +++ b/site/public/v1/smartphones/4-2-global-dual-sim-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2405, + "slug": "4-2-global-dual-sim-td-lte-32gb", + "name": "4.2 Global Dual SIM TD-LTE 32GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-04-28", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 161.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.454272", + "updated_at": "2026-06-19T00:43:44.454272" +} diff --git a/site/public/v1/smartphones/4-2-global-dual-sim-td-lte-32gb/score/index.json b/site/public/v1/smartphones/4-2-global-dual-sim-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..8dd4f57a73b --- /dev/null +++ b/site/public/v1/smartphones/4-2-global-dual-sim-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/4-2-global-td-lte-32gb/index.json b/site/public/v1/smartphones/4-2-global-td-lte-32gb/index.json new file mode 100644 index 00000000000..59ee6d4b752 --- /dev/null +++ b/site/public/v1/smartphones/4-2-global-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2406, + "slug": "4-2-global-td-lte-32gb", + "name": "4.2 Global TD-LTE 32GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-04-28", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 161.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.454272", + "updated_at": "2026-06-19T00:43:44.454272" +} diff --git a/site/public/v1/smartphones/4-2-global-td-lte-32gb/score/index.json b/site/public/v1/smartphones/4-2-global-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..8dd4f57a73b --- /dev/null +++ b/site/public/v1/smartphones/4-2-global-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/4-2-td-lte-latam-32gb/index.json b/site/public/v1/smartphones/4-2-td-lte-latam-32gb/index.json new file mode 100644 index 00000000000..9eaf7e5320e --- /dev/null +++ b/site/public/v1/smartphones/4-2-td-lte-latam-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2407, + "slug": "4-2-td-lte-latam-32gb", + "name": "4.2 TD-LTE LATAM 32GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 161.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.454272", + "updated_at": "2026-06-19T00:43:44.454272" +} diff --git a/site/public/v1/smartphones/4-2-td-lte-latam-32gb/score/index.json b/site/public/v1/smartphones/4-2-td-lte-latam-32gb/score/index.json new file mode 100644 index 00000000000..8dd4f57a73b --- /dev/null +++ b/site/public/v1/smartphones/4-2-td-lte-latam-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/5-1-plus-2018-dual-sim-td-lte-in-32gb/index.json b/site/public/v1/smartphones/5-1-plus-2018-dual-sim-td-lte-in-32gb/index.json new file mode 100644 index 00000000000..4289eb02247 --- /dev/null +++ b/site/public/v1/smartphones/5-1-plus-2018-dual-sim-td-lte-in-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2354, + "slug": "5-1-plus-2018-dual-sim-td-lte-in-32gb", + "name": "5.1 Plus 2018 Dual SIM TD-LTE IN 32GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-10-02", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.86, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 287 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3060, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 151.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 5.3, + "battery": 0.9, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.445874", + "updated_at": "2026-06-19T00:43:44.445874" +} diff --git a/site/public/v1/smartphones/5-1-plus-2018-dual-sim-td-lte-in-32gb/score/index.json b/site/public/v1/smartphones/5-1-plus-2018-dual-sim-td-lte-in-32gb/score/index.json new file mode 100644 index 00000000000..b1be3a16dc2 --- /dev/null +++ b/site/public/v1/smartphones/5-1-plus-2018-dual-sim-td-lte-in-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 5.3, + "battery": 0.9, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/5-1-plus-2018-dual-sim-td-lte-latam/index.json b/site/public/v1/smartphones/5-1-plus-2018-dual-sim-td-lte-latam/index.json new file mode 100644 index 00000000000..f35f282fef7 --- /dev/null +++ b/site/public/v1/smartphones/5-1-plus-2018-dual-sim-td-lte-latam/index.json @@ -0,0 +1,76 @@ +{ + "id": 2408, + "slug": "5-1-plus-2018-dual-sim-td-lte-latam", + "name": "5.1 Plus 2018 Dual SIM TD-LTE LATAM", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2019-01-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.86, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 287 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3060, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 151.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 5.3, + "battery": 0.9, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.454272", + "updated_at": "2026-06-19T00:43:44.454272" +} diff --git a/site/public/v1/smartphones/5-1-plus-2018-dual-sim-td-lte-latam/score/index.json b/site/public/v1/smartphones/5-1-plus-2018-dual-sim-td-lte-latam/score/index.json new file mode 100644 index 00000000000..b1be3a16dc2 --- /dev/null +++ b/site/public/v1/smartphones/5-1-plus-2018-dual-sim-td-lte-latam/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 5.3, + "battery": 0.9, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/5-1-plus-2018-global-dual-sim-td-lte-32gb/index.json b/site/public/v1/smartphones/5-1-plus-2018-global-dual-sim-td-lte-32gb/index.json new file mode 100644 index 00000000000..2f593fcd9ef --- /dev/null +++ b/site/public/v1/smartphones/5-1-plus-2018-global-dual-sim-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2355, + "slug": "5-1-plus-2018-global-dual-sim-td-lte-32gb", + "name": "5.1 Plus 2018 Global Dual SIM TD-LTE 32GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-12-06", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.86, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 287 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3060, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 151.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 5.3, + "battery": 0.9, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.445874", + "updated_at": "2026-06-19T00:43:44.445874" +} diff --git a/site/public/v1/smartphones/5-1-plus-2018-global-dual-sim-td-lte-32gb/score/index.json b/site/public/v1/smartphones/5-1-plus-2018-global-dual-sim-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..b1be3a16dc2 --- /dev/null +++ b/site/public/v1/smartphones/5-1-plus-2018-global-dual-sim-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 5.3, + "battery": 0.9, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/5-1-plus-2018-premium-edition-dual-sim-td-lte-in-64gb/index.json b/site/public/v1/smartphones/5-1-plus-2018-premium-edition-dual-sim-td-lte-in-64gb/index.json new file mode 100644 index 00000000000..05dcfff93b3 --- /dev/null +++ b/site/public/v1/smartphones/5-1-plus-2018-premium-edition-dual-sim-td-lte-in-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2409, + "slug": "5-1-plus-2018-premium-edition-dual-sim-td-lte-in-64gb", + "name": "5.1 Plus 2018 Premium Edition Dual SIM TD-LTE IN 64GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2019-02-07", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.86, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 287 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3060, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 151.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.7, + "performance": 1.5, + "camera": 5.3, + "battery": 0.9, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.455271", + "updated_at": "2026-06-19T00:43:44.455271" +} diff --git a/site/public/v1/smartphones/5-1-plus-2018-premium-edition-dual-sim-td-lte-in-64gb/score/index.json b/site/public/v1/smartphones/5-1-plus-2018-premium-edition-dual-sim-td-lte-in-64gb/score/index.json new file mode 100644 index 00000000000..7ab5540812b --- /dev/null +++ b/site/public/v1/smartphones/5-1-plus-2018-premium-edition-dual-sim-td-lte-in-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.7, + "performance": 1.5, + "camera": 5.3, + "battery": 0.9, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/5-1-plus-2018-standard-edition-dual-sim-td-lte-in-64gb/index.json b/site/public/v1/smartphones/5-1-plus-2018-standard-edition-dual-sim-td-lte-in-64gb/index.json new file mode 100644 index 00000000000..4567586c134 --- /dev/null +++ b/site/public/v1/smartphones/5-1-plus-2018-standard-edition-dual-sim-td-lte-in-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2411, + "slug": "5-1-plus-2018-standard-edition-dual-sim-td-lte-in-64gb", + "name": "5.1 Plus 2018 Standard Edition Dual SIM TD-LTE IN 64GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2019-02-07", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.86, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 287 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3060, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 151.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 5.3, + "battery": 0.9, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.455271", + "updated_at": "2026-06-19T00:43:44.455271" +} diff --git a/site/public/v1/smartphones/5-1-plus-2018-standard-edition-dual-sim-td-lte-in-64gb/score/index.json b/site/public/v1/smartphones/5-1-plus-2018-standard-edition-dual-sim-td-lte-in-64gb/score/index.json new file mode 100644 index 00000000000..b1be3a16dc2 --- /dev/null +++ b/site/public/v1/smartphones/5-1-plus-2018-standard-edition-dual-sim-td-lte-in-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 5.3, + "battery": 0.9, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/5-1-plus-2018-td-lte-latam/index.json b/site/public/v1/smartphones/5-1-plus-2018-td-lte-latam/index.json new file mode 100644 index 00000000000..98c642269cb --- /dev/null +++ b/site/public/v1/smartphones/5-1-plus-2018-td-lte-latam/index.json @@ -0,0 +1,76 @@ +{ + "id": 2413, + "slug": "5-1-plus-2018-td-lte-latam", + "name": "5.1 Plus 2018 TD-LTE LATAM", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2019-01-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.86, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 287 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3060, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 151.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 5.3, + "battery": 0.9, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.455271", + "updated_at": "2026-06-19T00:43:44.455271" +} diff --git a/site/public/v1/smartphones/5-1-plus-2018-td-lte-latam/score/index.json b/site/public/v1/smartphones/5-1-plus-2018-td-lte-latam/score/index.json new file mode 100644 index 00000000000..b1be3a16dc2 --- /dev/null +++ b/site/public/v1/smartphones/5-1-plus-2018-td-lte-latam/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 5.3, + "battery": 0.9, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/5-3-2020-dual-sim-td-lte-in-64gb/index.json b/site/public/v1/smartphones/5-3-2020-dual-sim-td-lte-in-64gb/index.json new file mode 100644 index 00000000000..15f9c6540f7 --- /dev/null +++ b/site/public/v1/smartphones/5-3-2020-dual-sim-td-lte-in-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2442, + "slug": "5-3-2020-dual-sim-td-lte-in-64gb", + "name": "5.3 2020 Dual SIM TD-LTE IN 64GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-08-27", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 1.5, + "camera": 5.4, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.458275", + "updated_at": "2026-06-19T00:43:44.458275" +} diff --git a/site/public/v1/smartphones/5-3-2020-dual-sim-td-lte-in-64gb/score/index.json b/site/public/v1/smartphones/5-3-2020-dual-sim-td-lte-in-64gb/score/index.json new file mode 100644 index 00000000000..f6dbcdb65cd --- /dev/null +++ b/site/public/v1/smartphones/5-3-2020-dual-sim-td-lte-in-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 1.5, + "camera": 5.4, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/5-3-2020-dual-sim-td-lte-latam-128gb/index.json b/site/public/v1/smartphones/5-3-2020-dual-sim-td-lte-latam-128gb/index.json new file mode 100644 index 00000000000..7f207eb0453 --- /dev/null +++ b/site/public/v1/smartphones/5-3-2020-dual-sim-td-lte-latam-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2443, + "slug": "5-3-2020-dual-sim-td-lte-latam-128gb", + "name": "5.3 2020 Dual SIM TD-LTE LATAM 128GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-05-21", + "msrp_usd": 1899, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.4, + "battery": 15.0, + "display": 35.0, + "value": 6.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.459275", + "updated_at": "2026-06-19T00:43:44.459275" +} diff --git a/site/public/v1/smartphones/5-3-2020-dual-sim-td-lte-latam-128gb/score/index.json b/site/public/v1/smartphones/5-3-2020-dual-sim-td-lte-latam-128gb/score/index.json new file mode 100644 index 00000000000..4a73c725401 --- /dev/null +++ b/site/public/v1/smartphones/5-3-2020-dual-sim-td-lte-latam-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.4, + "battery": 15.0, + "display": 35.0, + "value": 6.9 +} diff --git a/site/public/v1/smartphones/5-3-2020-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/5-3-2020-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..88c2e720e8b --- /dev/null +++ b/site/public/v1/smartphones/5-3-2020-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2444, + "slug": "5-3-2020-global-dual-sim-td-lte-64gb", + "name": "5.3 2020 Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-05-07", + "msrp_usd": 159, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.4, + "battery": 15.0, + "display": 35.0, + "value": 56.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.459275", + "updated_at": "2026-06-19T00:43:44.459275" +} diff --git a/site/public/v1/smartphones/5-3-2020-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/5-3-2020-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..f0195767e2e --- /dev/null +++ b/site/public/v1/smartphones/5-3-2020-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.4, + "battery": 15.0, + "display": 35.0, + "value": 56.9 +} diff --git a/site/public/v1/smartphones/5-3-2020-global-td-lte-64gb/index.json b/site/public/v1/smartphones/5-3-2020-global-td-lte-64gb/index.json new file mode 100644 index 00000000000..dd5537925d5 --- /dev/null +++ b/site/public/v1/smartphones/5-3-2020-global-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2445, + "slug": "5-3-2020-global-td-lte-64gb", + "name": "5.3 2020 Global TD-LTE 64GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-05-07", + "msrp_usd": 159, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.4, + "battery": 15.0, + "display": 35.0, + "value": 56.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.459275", + "updated_at": "2026-06-19T00:43:44.459275" +} diff --git a/site/public/v1/smartphones/5-3-2020-global-td-lte-64gb/score/index.json b/site/public/v1/smartphones/5-3-2020-global-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..f0195767e2e --- /dev/null +++ b/site/public/v1/smartphones/5-3-2020-global-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.4, + "battery": 15.0, + "display": 35.0, + "value": 56.9 +} diff --git a/site/public/v1/smartphones/5-3-2020-td-lte-latam-64gb/index.json b/site/public/v1/smartphones/5-3-2020-td-lte-latam-64gb/index.json new file mode 100644 index 00000000000..3d92e758eb9 --- /dev/null +++ b/site/public/v1/smartphones/5-3-2020-td-lte-latam-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2446, + "slug": "5-3-2020-td-lte-latam-64gb", + "name": "5.3 2020 TD-LTE LATAM 64GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.4, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.459275", + "updated_at": "2026-06-19T00:43:44.459275" +} diff --git a/site/public/v1/smartphones/5-3-2020-td-lte-latam-64gb/score/index.json b/site/public/v1/smartphones/5-3-2020-td-lte-latam-64gb/score/index.json new file mode 100644 index 00000000000..70ebfe12776 --- /dev/null +++ b/site/public/v1/smartphones/5-3-2020-td-lte-latam-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.4, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/5-4-2021-dual-sim-lte-latam-64gb/index.json b/site/public/v1/smartphones/5-4-2021-dual-sim-lte-latam-64gb/index.json new file mode 100644 index 00000000000..82491e9d968 --- /dev/null +++ b/site/public/v1/smartphones/5-4-2021-dual-sim-lte-latam-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2460, + "slug": "5-4-2021-dual-sim-lte-latam-64gb", + "name": "5.4 2021 Dual SIM LTE LATAM 64GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-02-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.461276", + "updated_at": "2026-06-19T00:43:44.461276" +} diff --git a/site/public/v1/smartphones/5-4-2021-dual-sim-lte-latam-64gb/score/index.json b/site/public/v1/smartphones/5-4-2021-dual-sim-lte-latam-64gb/score/index.json new file mode 100644 index 00000000000..6de7755463e --- /dev/null +++ b/site/public/v1/smartphones/5-4-2021-dual-sim-lte-latam-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/5-4-2021-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/5-4-2021-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..fa76a4c21e9 --- /dev/null +++ b/site/public/v1/smartphones/5-4-2021-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2461, + "slug": "5-4-2021-global-dual-sim-td-lte-64gb", + "name": "5.4 2021 Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-01-01", + "msrp_usd": 189, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": 58.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.461276", + "updated_at": "2026-06-19T00:43:44.461276" +} diff --git a/site/public/v1/smartphones/5-4-2021-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/5-4-2021-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..5e7255a2273 --- /dev/null +++ b/site/public/v1/smartphones/5-4-2021-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": 58.3 +} diff --git a/site/public/v1/smartphones/5-4-2021-global-td-lte-64gb/index.json b/site/public/v1/smartphones/5-4-2021-global-td-lte-64gb/index.json new file mode 100644 index 00000000000..dcfd320e7e8 --- /dev/null +++ b/site/public/v1/smartphones/5-4-2021-global-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2462, + "slug": "5-4-2021-global-td-lte-64gb", + "name": "5.4 2021 Global TD-LTE 64GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-01-01", + "msrp_usd": 189, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": 58.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.461276", + "updated_at": "2026-06-19T00:43:44.461276" +} diff --git a/site/public/v1/smartphones/5-4-2021-global-td-lte-64gb/score/index.json b/site/public/v1/smartphones/5-4-2021-global-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..5e7255a2273 --- /dev/null +++ b/site/public/v1/smartphones/5-4-2021-global-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": 58.3 +} diff --git a/site/public/v1/smartphones/5-4-2021-lte-latam-64gb/index.json b/site/public/v1/smartphones/5-4-2021-lte-latam-64gb/index.json new file mode 100644 index 00000000000..b59904609ca --- /dev/null +++ b/site/public/v1/smartphones/5-4-2021-lte-latam-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2463, + "slug": "5-4-2021-lte-latam-64gb", + "name": "5.4 2021 LTE LATAM 64GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-01-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.461276", + "updated_at": "2026-06-19T00:43:44.461276" +} diff --git a/site/public/v1/smartphones/5-4-2021-lte-latam-64gb/score/index.json b/site/public/v1/smartphones/5-4-2021-lte-latam-64gb/score/index.json new file mode 100644 index 00000000000..6de7755463e --- /dev/null +++ b/site/public/v1/smartphones/5-4-2021-lte-latam-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/5h-2021-lte-latam-128gb-6056a/index.json b/site/public/v1/smartphones/5h-2021-lte-latam-128gb-6056a/index.json new file mode 100644 index 00000000000..aaa401b467d --- /dev/null +++ b/site/public/v1/smartphones/5h-2021-lte-latam-128gb-6056a/index.json @@ -0,0 +1,77 @@ +{ + "id": 27, + "slug": "5h-2021-lte-latam-128gb-6056a", + "name": "5H 2021 LTE LATAM 128GB 6056A", + "brand": { + "id": 6, + "slug": "alcatel", + "name": "Alcatel Mobile", + "country": "CN", + "url": "/v1/brands/alcatel" + }, + "soc": { + "id": 58, + "slug": "helio-a25", + "name": "Helio A25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-a25" + }, + "release_date": "2021-07-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.2, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.112419", + "updated_at": "2026-06-19T00:43:44.112419" +} diff --git a/site/public/v1/smartphones/5h-2021-lte-latam-128gb-6056a/score/index.json b/site/public/v1/smartphones/5h-2021-lte-latam-128gb-6056a/score/index.json new file mode 100644 index 00000000000..80d19c5dcf5 --- /dev/null +++ b/site/public/v1/smartphones/5h-2021-lte-latam-128gb-6056a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.2, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/5t-star-wars-edition/index.json b/site/public/v1/smartphones/5t-star-wars-edition/index.json new file mode 100644 index 00000000000..5b2516f3a7d --- /dev/null +++ b/site/public/v1/smartphones/5t-star-wars-edition/index.json @@ -0,0 +1,70 @@ +{ + "id": 2510, + "slug": "5t-star-wars-edition", + "name": "5T Star Wars Edition", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 122, + "slug": "snapdragon-835", + "name": "Snapdragon 835", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 540", + "url": "/v1/socs/snapdragon-835" + }, + "release_date": "2017-01-01", + "msrp_usd": 649, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.01 + }, + "cameras": [ + { + "type": "main", + "mp": 20.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.2, + "performance": 24.6, + "camera": 7.6, + "battery": 4.5, + "display": null, + "value": 42.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.466275", + "updated_at": "2026-06-19T00:43:44.466275" +} diff --git a/site/public/v1/smartphones/5t-star-wars-edition/score/index.json b/site/public/v1/smartphones/5t-star-wars-edition/score/index.json new file mode 100644 index 00000000000..d16a0d1004d --- /dev/null +++ b/site/public/v1/smartphones/5t-star-wars-edition/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.2, + "performance": 24.6, + "camera": 7.6, + "battery": 4.5, + "display": null, + "value": 42.7 +} diff --git a/site/public/v1/smartphones/5v-dual-sim-lte-emea/index.json b/site/public/v1/smartphones/5v-dual-sim-lte-emea/index.json new file mode 100644 index 00000000000..49bd8559f34 --- /dev/null +++ b/site/public/v1/smartphones/5v-dual-sim-lte-emea/index.json @@ -0,0 +1,76 @@ +{ + "id": 5, + "slug": "5v-dual-sim-lte-emea", + "name": "5V Dual SIM LTE EMEA", + "brand": { + "id": 6, + "slug": "alcatel", + "name": "Alcatel Mobile", + "country": "CN", + "url": "/v1/brands/alcatel" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1500", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 158.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.109419", + "updated_at": "2026-06-19T00:43:44.109419" +} diff --git a/site/public/v1/smartphones/5v-dual-sim-lte-emea/score/index.json b/site/public/v1/smartphones/5v-dual-sim-lte-emea/score/index.json new file mode 100644 index 00000000000..835c881a4f1 --- /dev/null +++ b/site/public/v1/smartphones/5v-dual-sim-lte-emea/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/5x-2020-dual-sim-td-lte-latam-128gb-5061a/index.json b/site/public/v1/smartphones/5x-2020-dual-sim-td-lte-latam-128gb-5061a/index.json new file mode 100644 index 00000000000..b2e31133046 --- /dev/null +++ b/site/public/v1/smartphones/5x-2020-dual-sim-td-lte-latam-128gb-5061a/index.json @@ -0,0 +1,76 @@ +{ + "id": 22, + "slug": "5x-2020-dual-sim-td-lte-latam-128gb-5061a", + "name": "5X 2020 Dual SIM TD-LTE LATAM 128GB 5061A", + "brand": { + "id": 6, + "slug": "alcatel", + "name": "Alcatel Mobile", + "country": "CN", + "url": "/v1/brands/alcatel" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.2, + "performance": null, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.112419", + "updated_at": "2026-06-19T00:43:44.112419" +} diff --git a/site/public/v1/smartphones/5x-2020-dual-sim-td-lte-latam-128gb-5061a/score/index.json b/site/public/v1/smartphones/5x-2020-dual-sim-td-lte-latam-128gb-5061a/score/index.json new file mode 100644 index 00000000000..a885b368bc4 --- /dev/null +++ b/site/public/v1/smartphones/5x-2020-dual-sim-td-lte-latam-128gb-5061a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.2, + "performance": null, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/6-1-plus-2018-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/6-1-plus-2018-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..197c0729359 --- /dev/null +++ b/site/public/v1/smartphones/6-1-plus-2018-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 2357, + "slug": "6-1-plus-2018-global-dual-sim-td-lte", + "name": "6.1 Plus 2018 Global Dual SIM TD-LTE", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-08-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.8, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3060, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 152.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 6.3, + "battery": 0.9, + "display": 48.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.446873", + "updated_at": "2026-06-19T00:43:44.446873" +} diff --git a/site/public/v1/smartphones/6-1-plus-2018-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/6-1-plus-2018-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..046893eccf4 --- /dev/null +++ b/site/public/v1/smartphones/6-1-plus-2018-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 6.3, + "battery": 0.9, + "display": 48.5, + "value": null +} diff --git a/site/public/v1/smartphones/6-1-plus-2018-premium-edition-sim-td-lte-in/index.json b/site/public/v1/smartphones/6-1-plus-2018-premium-edition-sim-td-lte-in/index.json new file mode 100644 index 00000000000..0eff85ffbc4 --- /dev/null +++ b/site/public/v1/smartphones/6-1-plus-2018-premium-edition-sim-td-lte-in/index.json @@ -0,0 +1,76 @@ +{ + "id": 2414, + "slug": "6-1-plus-2018-premium-edition-sim-td-lte-in", + "name": "6.1 Plus 2018 Premium Edition SIM TD-LTE IN", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2019-02-23", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.8, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3060, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 152.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.3, + "performance": 1.5, + "camera": 6.3, + "battery": 0.9, + "display": 48.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.455271", + "updated_at": "2026-06-19T00:43:44.455271" +} diff --git a/site/public/v1/smartphones/6-1-plus-2018-premium-edition-sim-td-lte-in/score/index.json b/site/public/v1/smartphones/6-1-plus-2018-premium-edition-sim-td-lte-in/score/index.json new file mode 100644 index 00000000000..19dc3dbc333 --- /dev/null +++ b/site/public/v1/smartphones/6-1-plus-2018-premium-edition-sim-td-lte-in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.3, + "performance": 1.5, + "camera": 6.3, + "battery": 0.9, + "display": 48.5, + "value": null +} diff --git a/site/public/v1/smartphones/6-1-plus-2018-standard-edition-sim-td-lte-in/index.json b/site/public/v1/smartphones/6-1-plus-2018-standard-edition-sim-td-lte-in/index.json new file mode 100644 index 00000000000..fbef4bc7de5 --- /dev/null +++ b/site/public/v1/smartphones/6-1-plus-2018-standard-edition-sim-td-lte-in/index.json @@ -0,0 +1,76 @@ +{ + "id": 2358, + "slug": "6-1-plus-2018-standard-edition-sim-td-lte-in", + "name": "6.1 Plus 2018 Standard Edition SIM TD-LTE IN", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.8, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3060, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 152.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 6.3, + "battery": 0.9, + "display": 48.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.446873", + "updated_at": "2026-06-19T00:43:44.446873" +} diff --git a/site/public/v1/smartphones/6-1-plus-2018-standard-edition-sim-td-lte-in/score/index.json b/site/public/v1/smartphones/6-1-plus-2018-standard-edition-sim-td-lte-in/score/index.json new file mode 100644 index 00000000000..046893eccf4 --- /dev/null +++ b/site/public/v1/smartphones/6-1-plus-2018-standard-edition-sim-td-lte-in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 6.3, + "battery": 0.9, + "display": 48.5, + "value": null +} diff --git a/site/public/v1/smartphones/6-2-dual-sim-td-lte-in-64gb/index.json b/site/public/v1/smartphones/6-2-dual-sim-td-lte-in-64gb/index.json new file mode 100644 index 00000000000..84eceb62361 --- /dev/null +++ b/site/public/v1/smartphones/6-2-dual-sim-td-lte-in-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2415, + "slug": "6-2-dual-sim-td-lte-in-64gb", + "name": "6.2 Dual SIM TD-LTE IN 64GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2019-10-12", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": 0.0, + "camera": 6.3, + "battery": 7.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.455271", + "updated_at": "2026-06-19T00:43:44.455271" +} diff --git a/site/public/v1/smartphones/6-2-dual-sim-td-lte-in-64gb/score/index.json b/site/public/v1/smartphones/6-2-dual-sim-td-lte-in-64gb/score/index.json new file mode 100644 index 00000000000..13cb365cae9 --- /dev/null +++ b/site/public/v1/smartphones/6-2-dual-sim-td-lte-in-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": 0.0, + "camera": 6.3, + "battery": 7.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/6-2-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/6-2-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..4ec73cf548f --- /dev/null +++ b/site/public/v1/smartphones/6-2-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2416, + "slug": "6-2-global-dual-sim-td-lte-128gb", + "name": "6.2 Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2019-09-23", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": 0.0, + "camera": 6.3, + "battery": 7.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.455271", + "updated_at": "2026-06-19T00:43:44.455271" +} diff --git a/site/public/v1/smartphones/6-2-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/6-2-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..13cb365cae9 --- /dev/null +++ b/site/public/v1/smartphones/6-2-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": 0.0, + "camera": 6.3, + "battery": 7.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/6-2-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/6-2-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..95f8e32a4c6 --- /dev/null +++ b/site/public/v1/smartphones/6-2-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2417, + "slug": "6-2-global-dual-sim-td-lte-64gb", + "name": "6.2 Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2019-09-23", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": 0.0, + "camera": 6.3, + "battery": 7.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.456272", + "updated_at": "2026-06-19T00:43:44.456272" +} diff --git a/site/public/v1/smartphones/6-2-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/6-2-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..13cb365cae9 --- /dev/null +++ b/site/public/v1/smartphones/6-2-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": 0.0, + "camera": 6.3, + "battery": 7.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/6-2-global-td-lte-64gb/index.json b/site/public/v1/smartphones/6-2-global-td-lte-64gb/index.json new file mode 100644 index 00000000000..7344d285edb --- /dev/null +++ b/site/public/v1/smartphones/6-2-global-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2418, + "slug": "6-2-global-td-lte-64gb", + "name": "6.2 Global TD-LTE 64GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2019-09-23", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": 0.0, + "camera": 6.3, + "battery": 7.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.456272", + "updated_at": "2026-06-19T00:43:44.456272" +} diff --git a/site/public/v1/smartphones/6-2-global-td-lte-64gb/score/index.json b/site/public/v1/smartphones/6-2-global-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..13cb365cae9 --- /dev/null +++ b/site/public/v1/smartphones/6-2-global-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": 0.0, + "camera": 6.3, + "battery": 7.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/6-2-lte-a-am-64gb/index.json b/site/public/v1/smartphones/6-2-lte-a-am-64gb/index.json new file mode 100644 index 00000000000..5ac0882d5c6 --- /dev/null +++ b/site/public/v1/smartphones/6-2-lte-a-am-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2419, + "slug": "6-2-lte-a-am-64gb", + "name": "6.2 LTE-A AM 64GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2019-10-14", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": 0.0, + "camera": 6.3, + "battery": 7.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.456272", + "updated_at": "2026-06-19T00:43:44.456272" +} diff --git a/site/public/v1/smartphones/6-2-lte-a-am-64gb/score/index.json b/site/public/v1/smartphones/6-2-lte-a-am-64gb/score/index.json new file mode 100644 index 00000000000..13cb365cae9 --- /dev/null +++ b/site/public/v1/smartphones/6-2-lte-a-am-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": 0.0, + "camera": 6.3, + "battery": 7.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/6-2018-dual-sim-td-lte-am-32gb-6-1/index.json b/site/public/v1/smartphones/6-2018-dual-sim-td-lte-am-32gb-6-1/index.json new file mode 100644 index 00000000000..c3590368a5a --- /dev/null +++ b/site/public/v1/smartphones/6-2018-dual-sim-td-lte-am-32gb-6-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2359, + "slug": "6-2018-dual-sim-td-lte-am-32gb-6-1", + "name": "6 2018 Dual SIM TD-LTE AM 32GB / 6.1", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2018-04-24", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.9, + "performance": 0.0, + "camera": 6.4, + "battery": 0.0, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.446873", + "updated_at": "2026-06-19T00:43:44.446873" +} diff --git a/site/public/v1/smartphones/6-2018-dual-sim-td-lte-am-32gb-6-1/score/index.json b/site/public/v1/smartphones/6-2018-dual-sim-td-lte-am-32gb-6-1/score/index.json new file mode 100644 index 00000000000..5c61f1b9b01 --- /dev/null +++ b/site/public/v1/smartphones/6-2018-dual-sim-td-lte-am-32gb-6-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.9, + "performance": 0.0, + "camera": 6.4, + "battery": 0.0, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/6-2018-global-dual-sim-td-lte-32gb-6-1/index.json b/site/public/v1/smartphones/6-2018-global-dual-sim-td-lte-32gb-6-1/index.json new file mode 100644 index 00000000000..e2a201d1122 --- /dev/null +++ b/site/public/v1/smartphones/6-2018-global-dual-sim-td-lte-32gb-6-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2360, + "slug": "6-2018-global-dual-sim-td-lte-32gb-6-1", + "name": "6 2018 Global Dual SIM TD-LTE 32GB / 6.1", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.9, + "performance": 0.0, + "camera": 6.4, + "battery": 0.0, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.446873", + "updated_at": "2026-06-19T00:43:44.446873" +} diff --git a/site/public/v1/smartphones/6-2018-global-dual-sim-td-lte-32gb-6-1/score/index.json b/site/public/v1/smartphones/6-2018-global-dual-sim-td-lte-32gb-6-1/score/index.json new file mode 100644 index 00000000000..5c61f1b9b01 --- /dev/null +++ b/site/public/v1/smartphones/6-2018-global-dual-sim-td-lte-32gb-6-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.9, + "performance": 0.0, + "camera": 6.4, + "battery": 0.0, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/6-2018-global-dual-sim-td-lte-64gb-6-1/index.json b/site/public/v1/smartphones/6-2018-global-dual-sim-td-lte-64gb-6-1/index.json new file mode 100644 index 00000000000..19318168bc5 --- /dev/null +++ b/site/public/v1/smartphones/6-2018-global-dual-sim-td-lte-64gb-6-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2361, + "slug": "6-2018-global-dual-sim-td-lte-64gb-6-1", + "name": "6 2018 Global Dual SIM TD-LTE 64GB / 6.1", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2018-06-12", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.9, + "performance": 0.0, + "camera": 6.4, + "battery": 0.0, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.446873", + "updated_at": "2026-06-19T00:43:44.446873" +} diff --git a/site/public/v1/smartphones/6-2018-global-dual-sim-td-lte-64gb-6-1/score/index.json b/site/public/v1/smartphones/6-2018-global-dual-sim-td-lte-64gb-6-1/score/index.json new file mode 100644 index 00000000000..5c61f1b9b01 --- /dev/null +++ b/site/public/v1/smartphones/6-2018-global-dual-sim-td-lte-64gb-6-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.9, + "performance": 0.0, + "camera": 6.4, + "battery": 0.0, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/6-dual-sim-global-td-lte-a6003-128gb/index.json b/site/public/v1/smartphones/6-dual-sim-global-td-lte-a6003-128gb/index.json new file mode 100644 index 00000000000..295ef0a9a44 --- /dev/null +++ b/site/public/v1/smartphones/6-dual-sim-global-td-lte-a6003-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2515, + "slug": "6-dual-sim-global-td-lte-a6003-128gb", + "name": "6 Dual SIM Global TD-LTE A6003 128GB", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-05-22", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 3.0, + "camera": 6.3, + "battery": 4.5, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.467276", + "updated_at": "2026-06-19T00:43:44.467276" +} diff --git a/site/public/v1/smartphones/6-dual-sim-global-td-lte-a6003-128gb/score/index.json b/site/public/v1/smartphones/6-dual-sim-global-td-lte-a6003-128gb/score/index.json new file mode 100644 index 00000000000..a11bdadcfbc --- /dev/null +++ b/site/public/v1/smartphones/6-dual-sim-global-td-lte-a6003-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 3.0, + "camera": 6.3, + "battery": 4.5, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/6-dual-sim-global-td-lte-a6003-256gb/index.json b/site/public/v1/smartphones/6-dual-sim-global-td-lte-a6003-256gb/index.json new file mode 100644 index 00000000000..c8a3990fa0c --- /dev/null +++ b/site/public/v1/smartphones/6-dual-sim-global-td-lte-a6003-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2516, + "slug": "6-dual-sim-global-td-lte-a6003-256gb", + "name": "6 Dual SIM Global TD-LTE A6003 256GB", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-05-22", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 3.0, + "camera": 6.3, + "battery": 4.5, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.467276", + "updated_at": "2026-06-19T00:43:44.467276" +} diff --git a/site/public/v1/smartphones/6-dual-sim-global-td-lte-a6003-256gb/score/index.json b/site/public/v1/smartphones/6-dual-sim-global-td-lte-a6003-256gb/score/index.json new file mode 100644 index 00000000000..a11bdadcfbc --- /dev/null +++ b/site/public/v1/smartphones/6-dual-sim-global-td-lte-a6003-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 3.0, + "camera": 6.3, + "battery": 4.5, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/6-dual-sim-global-td-lte-a6003-64gb/index.json b/site/public/v1/smartphones/6-dual-sim-global-td-lte-a6003-64gb/index.json new file mode 100644 index 00000000000..b2c878582a7 --- /dev/null +++ b/site/public/v1/smartphones/6-dual-sim-global-td-lte-a6003-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2517, + "slug": "6-dual-sim-global-td-lte-a6003-64gb", + "name": "6 Dual SIM Global TD-LTE A6003 64GB", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-05-22", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 6.3, + "battery": 4.5, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.468276", + "updated_at": "2026-06-19T00:43:44.468276" +} diff --git a/site/public/v1/smartphones/6-dual-sim-global-td-lte-a6003-64gb/score/index.json b/site/public/v1/smartphones/6-dual-sim-global-td-lte-a6003-64gb/score/index.json new file mode 100644 index 00000000000..b6741204a67 --- /dev/null +++ b/site/public/v1/smartphones/6-dual-sim-global-td-lte-a6003-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 6.3, + "battery": 4.5, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/6-dual-sim-td-lte-apac-a6000-128gb/index.json b/site/public/v1/smartphones/6-dual-sim-td-lte-apac-a6000-128gb/index.json new file mode 100644 index 00000000000..c82f17a4f6d --- /dev/null +++ b/site/public/v1/smartphones/6-dual-sim-td-lte-apac-a6000-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2518, + "slug": "6-dual-sim-td-lte-apac-a6000-128gb", + "name": "6 Dual SIM TD-LTE APAC A6000 128GB", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-05-22", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 3.0, + "camera": 6.3, + "battery": 4.5, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.468276", + "updated_at": "2026-06-19T00:43:44.468276" +} diff --git a/site/public/v1/smartphones/6-dual-sim-td-lte-apac-a6000-128gb/score/index.json b/site/public/v1/smartphones/6-dual-sim-td-lte-apac-a6000-128gb/score/index.json new file mode 100644 index 00000000000..a11bdadcfbc --- /dev/null +++ b/site/public/v1/smartphones/6-dual-sim-td-lte-apac-a6000-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 3.0, + "camera": 6.3, + "battery": 4.5, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/6-dual-sim-td-lte-apac-a6000-64gb/index.json b/site/public/v1/smartphones/6-dual-sim-td-lte-apac-a6000-64gb/index.json new file mode 100644 index 00000000000..610c40f36b7 --- /dev/null +++ b/site/public/v1/smartphones/6-dual-sim-td-lte-apac-a6000-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2519, + "slug": "6-dual-sim-td-lte-apac-a6000-64gb", + "name": "6 Dual SIM TD-LTE APAC A6000 64GB", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-05-22", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 6.3, + "battery": 4.5, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.468276", + "updated_at": "2026-06-19T00:43:44.468276" +} diff --git a/site/public/v1/smartphones/6-dual-sim-td-lte-apac-a6000-64gb/score/index.json b/site/public/v1/smartphones/6-dual-sim-td-lte-apac-a6000-64gb/score/index.json new file mode 100644 index 00000000000..b6741204a67 --- /dev/null +++ b/site/public/v1/smartphones/6-dual-sim-td-lte-apac-a6000-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 6.3, + "battery": 4.5, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/6t-mclaren-edition-dual-sim-global-td-lte-a6013-256gb/index.json b/site/public/v1/smartphones/6t-mclaren-edition-dual-sim-global-td-lte-a6013-256gb/index.json new file mode 100644 index 00000000000..d772a61d6f7 --- /dev/null +++ b/site/public/v1/smartphones/6t-mclaren-edition-dual-sim-global-td-lte-a6013-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2520, + "slug": "6t-mclaren-edition-dual-sim-global-td-lte-a6013-256gb", + "name": "6T McLaren Edition Dual SIM Global TD-LTE A6013 256GB", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-12-13", + "msrp_usd": null, + "ram_gb": 10, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3700, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.3, + "performance": 4.5, + "camera": 6.3, + "battery": 13.3, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.468276", + "updated_at": "2026-06-19T00:43:44.468276" +} diff --git a/site/public/v1/smartphones/6t-mclaren-edition-dual-sim-global-td-lte-a6013-256gb/score/index.json b/site/public/v1/smartphones/6t-mclaren-edition-dual-sim-global-td-lte-a6013-256gb/score/index.json new file mode 100644 index 00000000000..7dec683f596 --- /dev/null +++ b/site/public/v1/smartphones/6t-mclaren-edition-dual-sim-global-td-lte-a6013-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.3, + "performance": 4.5, + "camera": 6.3, + "battery": 13.3, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/6t-mclaren-edition/index.json b/site/public/v1/smartphones/6t-mclaren-edition/index.json new file mode 100644 index 00000000000..907d7db1e94 --- /dev/null +++ b/site/public/v1/smartphones/6t-mclaren-edition/index.json @@ -0,0 +1,70 @@ +{ + "id": 2521, + "slug": "6t-mclaren-edition", + "name": "6T McLaren Edition", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-01-01", + "msrp_usd": 799, + "ram_gb": 10, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41 + }, + "cameras": [ + { + "type": "main", + "mp": 20.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 7.5, + "performance": 4.5, + "camera": 7.6, + "battery": 10.5, + "display": null, + "value": 34.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.468276", + "updated_at": "2026-06-19T00:43:44.468276" +} diff --git a/site/public/v1/smartphones/6t-mclaren-edition/score/index.json b/site/public/v1/smartphones/6t-mclaren-edition/score/index.json new file mode 100644 index 00000000000..4a851f53b0b --- /dev/null +++ b/site/public/v1/smartphones/6t-mclaren-edition/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 7.5, + "performance": 4.5, + "camera": 7.6, + "battery": 10.5, + "display": null, + "value": 34.5 +} diff --git a/site/public/v1/smartphones/6t-premium-edition-dual-sim-global-td-lte-a6013-128gb/index.json b/site/public/v1/smartphones/6t-premium-edition-dual-sim-global-td-lte-a6013-128gb/index.json new file mode 100644 index 00000000000..bc284278a90 --- /dev/null +++ b/site/public/v1/smartphones/6t-premium-edition-dual-sim-global-td-lte-a6013-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2522, + "slug": "6t-premium-edition-dual-sim-global-td-lte-a6013-128gb", + "name": "6T Premium Edition Dual SIM Global TD-LTE A6013 128GB", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-11-06", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3700, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 3.0, + "camera": 6.3, + "battery": 11.4, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.469276", + "updated_at": "2026-06-19T00:43:44.469276" +} diff --git a/site/public/v1/smartphones/6t-premium-edition-dual-sim-global-td-lte-a6013-128gb/score/index.json b/site/public/v1/smartphones/6t-premium-edition-dual-sim-global-td-lte-a6013-128gb/score/index.json new file mode 100644 index 00000000000..4173e63b4cd --- /dev/null +++ b/site/public/v1/smartphones/6t-premium-edition-dual-sim-global-td-lte-a6013-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 3.0, + "camera": 6.3, + "battery": 11.4, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/6t-premium-edition-dual-sim-global-td-lte-a6013-256gb/index.json b/site/public/v1/smartphones/6t-premium-edition-dual-sim-global-td-lte-a6013-256gb/index.json new file mode 100644 index 00000000000..bb016d83ee7 --- /dev/null +++ b/site/public/v1/smartphones/6t-premium-edition-dual-sim-global-td-lte-a6013-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2523, + "slug": "6t-premium-edition-dual-sim-global-td-lte-a6013-256gb", + "name": "6T Premium Edition Dual SIM Global TD-LTE A6013 256GB", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-11-06", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3700, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 3.0, + "camera": 6.3, + "battery": 11.4, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.469276", + "updated_at": "2026-06-19T00:43:44.469276" +} diff --git a/site/public/v1/smartphones/6t-premium-edition-dual-sim-global-td-lte-a6013-256gb/score/index.json b/site/public/v1/smartphones/6t-premium-edition-dual-sim-global-td-lte-a6013-256gb/score/index.json new file mode 100644 index 00000000000..4173e63b4cd --- /dev/null +++ b/site/public/v1/smartphones/6t-premium-edition-dual-sim-global-td-lte-a6013-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 3.0, + "camera": 6.3, + "battery": 11.4, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/6t-premium-edition-dual-sim-td-lte-cn-in-a6010-256gb/index.json b/site/public/v1/smartphones/6t-premium-edition-dual-sim-td-lte-cn-in-a6010-256gb/index.json new file mode 100644 index 00000000000..a58d7ac3d23 --- /dev/null +++ b/site/public/v1/smartphones/6t-premium-edition-dual-sim-td-lte-cn-in-a6010-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2524, + "slug": "6t-premium-edition-dual-sim-td-lte-cn-in-a6010-256gb", + "name": "6T Premium Edition Dual SIM TD-LTE CN IN A6010 256GB", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-11-06", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3700, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 3.0, + "camera": 6.3, + "battery": 11.4, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.469276", + "updated_at": "2026-06-19T00:43:44.469276" +} diff --git a/site/public/v1/smartphones/6t-premium-edition-dual-sim-td-lte-cn-in-a6010-256gb/score/index.json b/site/public/v1/smartphones/6t-premium-edition-dual-sim-td-lte-cn-in-a6010-256gb/score/index.json new file mode 100644 index 00000000000..4173e63b4cd --- /dev/null +++ b/site/public/v1/smartphones/6t-premium-edition-dual-sim-td-lte-cn-in-a6010-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 3.0, + "camera": 6.3, + "battery": 11.4, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/6t-standard-edition-dual-sim-global-td-lte-a6013-128gb/index.json b/site/public/v1/smartphones/6t-standard-edition-dual-sim-global-td-lte-a6013-128gb/index.json new file mode 100644 index 00000000000..7ccf6ea0b10 --- /dev/null +++ b/site/public/v1/smartphones/6t-standard-edition-dual-sim-global-td-lte-a6013-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2525, + "slug": "6t-standard-edition-dual-sim-global-td-lte-a6013-128gb", + "name": "6T Standard Edition Dual SIM Global TD-LTE A6013 128GB", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-11-06", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3700, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 1.5, + "camera": 6.3, + "battery": 11.4, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.469276", + "updated_at": "2026-06-19T00:43:44.469276" +} diff --git a/site/public/v1/smartphones/6t-standard-edition-dual-sim-global-td-lte-a6013-128gb/score/index.json b/site/public/v1/smartphones/6t-standard-edition-dual-sim-global-td-lte-a6013-128gb/score/index.json new file mode 100644 index 00000000000..939f42ffc04 --- /dev/null +++ b/site/public/v1/smartphones/6t-standard-edition-dual-sim-global-td-lte-a6013-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 1.5, + "camera": 6.3, + "battery": 11.4, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/6t-standard-edition-dual-sim-td-lte-cn-in-a6010-128gb/index.json b/site/public/v1/smartphones/6t-standard-edition-dual-sim-td-lte-cn-in-a6010-128gb/index.json new file mode 100644 index 00000000000..e226a2f4628 --- /dev/null +++ b/site/public/v1/smartphones/6t-standard-edition-dual-sim-td-lte-cn-in-a6010-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2526, + "slug": "6t-standard-edition-dual-sim-td-lte-cn-in-a6010-128gb", + "name": "6T Standard Edition Dual SIM TD-LTE CN IN A6010 128GB", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-11-06", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3700, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 1.5, + "camera": 6.3, + "battery": 11.4, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.469276", + "updated_at": "2026-06-19T00:43:44.469276" +} diff --git a/site/public/v1/smartphones/6t-standard-edition-dual-sim-td-lte-cn-in-a6010-128gb/score/index.json b/site/public/v1/smartphones/6t-standard-edition-dual-sim-td-lte-cn-in-a6010-128gb/score/index.json new file mode 100644 index 00000000000..939f42ffc04 --- /dev/null +++ b/site/public/v1/smartphones/6t-standard-edition-dual-sim-td-lte-cn-in-a6010-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 1.5, + "camera": 6.3, + "battery": 11.4, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/7-1-dual-sim-td-lte-am-64gb/index.json b/site/public/v1/smartphones/7-1-dual-sim-td-lte-am-64gb/index.json new file mode 100644 index 00000000000..b44a7f94601 --- /dev/null +++ b/site/public/v1/smartphones/7-1-dual-sim-td-lte-am-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2362, + "slug": "7-1-dual-sim-td-lte-am-64gb", + "name": "7.1 Dual SIM TD-LTE AM 64GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-10-22", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3060, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": 0.0, + "camera": 5.0, + "battery": 0.9, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.447761", + "updated_at": "2026-06-19T00:43:44.447761" +} diff --git a/site/public/v1/smartphones/7-1-dual-sim-td-lte-am-64gb/score/index.json b/site/public/v1/smartphones/7-1-dual-sim-td-lte-am-64gb/score/index.json new file mode 100644 index 00000000000..b5317fa5b38 --- /dev/null +++ b/site/public/v1/smartphones/7-1-dual-sim-td-lte-am-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": 0.0, + "camera": 5.0, + "battery": 0.9, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/7-1-dual-sim-td-lte-emea-32gb/index.json b/site/public/v1/smartphones/7-1-dual-sim-td-lte-emea-32gb/index.json new file mode 100644 index 00000000000..ae2e3d4d0bb --- /dev/null +++ b/site/public/v1/smartphones/7-1-dual-sim-td-lte-emea-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2363, + "slug": "7-1-dual-sim-td-lte-emea-32gb", + "name": "7.1 Dual SIM TD-LTE EMEA 32GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3060, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": 0.0, + "camera": 5.0, + "battery": 0.9, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.447761", + "updated_at": "2026-06-19T00:43:44.447761" +} diff --git a/site/public/v1/smartphones/7-1-dual-sim-td-lte-emea-32gb/score/index.json b/site/public/v1/smartphones/7-1-dual-sim-td-lte-emea-32gb/score/index.json new file mode 100644 index 00000000000..b5317fa5b38 --- /dev/null +++ b/site/public/v1/smartphones/7-1-dual-sim-td-lte-emea-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": 0.0, + "camera": 5.0, + "battery": 0.9, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/7-1-dual-sim-td-lte-emea-64gb/index.json b/site/public/v1/smartphones/7-1-dual-sim-td-lte-emea-64gb/index.json new file mode 100644 index 00000000000..6254e28a3c0 --- /dev/null +++ b/site/public/v1/smartphones/7-1-dual-sim-td-lte-emea-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2364, + "slug": "7-1-dual-sim-td-lte-emea-64gb", + "name": "7.1 Dual SIM TD-LTE EMEA 64GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3060, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": 0.0, + "camera": 5.0, + "battery": 0.9, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.447761", + "updated_at": "2026-06-19T00:43:44.447761" +} diff --git a/site/public/v1/smartphones/7-1-dual-sim-td-lte-emea-64gb/score/index.json b/site/public/v1/smartphones/7-1-dual-sim-td-lte-emea-64gb/score/index.json new file mode 100644 index 00000000000..b5317fa5b38 --- /dev/null +++ b/site/public/v1/smartphones/7-1-dual-sim-td-lte-emea-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": 0.0, + "camera": 5.0, + "battery": 0.9, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/7-1-plus-2018-dual-sim-td-lte-am-64gb/index.json b/site/public/v1/smartphones/7-1-plus-2018-dual-sim-td-lte-am-64gb/index.json new file mode 100644 index 00000000000..53b9838304d --- /dev/null +++ b/site/public/v1/smartphones/7-1-plus-2018-dual-sim-td-lte-am-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2365, + "slug": "7-1-plus-2018-dual-sim-td-lte-am-64gb", + "name": "7.1 Plus 2018 Dual SIM TD-LTE AM 64GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 20.0, + "camera": 5.1, + "battery": 7.5, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.447761", + "updated_at": "2026-06-19T00:43:44.447761" +} diff --git a/site/public/v1/smartphones/7-1-plus-2018-dual-sim-td-lte-am-64gb/score/index.json b/site/public/v1/smartphones/7-1-plus-2018-dual-sim-td-lte-am-64gb/score/index.json new file mode 100644 index 00000000000..3662c91a6e1 --- /dev/null +++ b/site/public/v1/smartphones/7-1-plus-2018-dual-sim-td-lte-am-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 20.0, + "camera": 5.1, + "battery": 7.5, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/7-1-td-lte-am-64gb/index.json b/site/public/v1/smartphones/7-1-td-lte-am-64gb/index.json new file mode 100644 index 00000000000..517819b4708 --- /dev/null +++ b/site/public/v1/smartphones/7-1-td-lte-am-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2366, + "slug": "7-1-td-lte-am-64gb", + "name": "7.1 TD-LTE AM 64GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-12-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3060, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": 0.0, + "camera": 5.0, + "battery": 0.9, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.448266", + "updated_at": "2026-06-19T00:43:44.448266" +} diff --git a/site/public/v1/smartphones/7-1-td-lte-am-64gb/score/index.json b/site/public/v1/smartphones/7-1-td-lte-am-64gb/score/index.json new file mode 100644 index 00000000000..b5317fa5b38 --- /dev/null +++ b/site/public/v1/smartphones/7-1-td-lte-am-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": 0.0, + "camera": 5.0, + "battery": 0.9, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/7-1-td-lte-emea-32gb/index.json b/site/public/v1/smartphones/7-1-td-lte-emea-32gb/index.json new file mode 100644 index 00000000000..023979c5d85 --- /dev/null +++ b/site/public/v1/smartphones/7-1-td-lte-emea-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2367, + "slug": "7-1-td-lte-emea-32gb", + "name": "7.1 TD-LTE EMEA 32GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3060, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": 0.0, + "camera": 5.0, + "battery": 0.9, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.448266", + "updated_at": "2026-06-19T00:43:44.448266" +} diff --git a/site/public/v1/smartphones/7-1-td-lte-emea-32gb/score/index.json b/site/public/v1/smartphones/7-1-td-lte-emea-32gb/score/index.json new file mode 100644 index 00000000000..b5317fa5b38 --- /dev/null +++ b/site/public/v1/smartphones/7-1-td-lte-emea-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": 0.0, + "camera": 5.0, + "battery": 0.9, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/7-2-dual-sim-td-lte-in-64gb/index.json b/site/public/v1/smartphones/7-2-dual-sim-td-lte-in-64gb/index.json new file mode 100644 index 00000000000..b79a8c70ef4 --- /dev/null +++ b/site/public/v1/smartphones/7-2-dual-sim-td-lte-in-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2420, + "slug": "7-2-dual-sim-td-lte-in-64gb", + "name": "7.2 Dual SIM TD-LTE IN 64GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2019-10-11", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3500, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 18.0, + "camera": 16.5, + "battery": 7.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.456272", + "updated_at": "2026-06-19T00:43:44.456272" +} diff --git a/site/public/v1/smartphones/7-2-dual-sim-td-lte-in-64gb/score/index.json b/site/public/v1/smartphones/7-2-dual-sim-td-lte-in-64gb/score/index.json new file mode 100644 index 00000000000..e0a64516191 --- /dev/null +++ b/site/public/v1/smartphones/7-2-dual-sim-td-lte-in-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 18.0, + "camera": 16.5, + "battery": 7.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/7-2-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/7-2-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..54c1fb26917 --- /dev/null +++ b/site/public/v1/smartphones/7-2-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2421, + "slug": "7-2-global-dual-sim-td-lte-128gb", + "name": "7.2 Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2019-09-23", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3500, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.4, + "performance": 19.5, + "camera": 16.5, + "battery": 7.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.456272", + "updated_at": "2026-06-19T00:43:44.456272" +} diff --git a/site/public/v1/smartphones/7-2-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/7-2-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..2d4e6d2aaa6 --- /dev/null +++ b/site/public/v1/smartphones/7-2-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.4, + "performance": 19.5, + "camera": 16.5, + "battery": 7.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/7-2-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/7-2-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..f0184454eac --- /dev/null +++ b/site/public/v1/smartphones/7-2-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2422, + "slug": "7-2-global-dual-sim-td-lte-64gb", + "name": "7.2 Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2019-09-23", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3500, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 18.0, + "camera": 16.5, + "battery": 7.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.456272", + "updated_at": "2026-06-19T00:43:44.456272" +} diff --git a/site/public/v1/smartphones/7-2-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/7-2-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..e0a64516191 --- /dev/null +++ b/site/public/v1/smartphones/7-2-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 18.0, + "camera": 16.5, + "battery": 7.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/7-2-global-td-lte-64gb/index.json b/site/public/v1/smartphones/7-2-global-td-lte-64gb/index.json new file mode 100644 index 00000000000..c31c4a12647 --- /dev/null +++ b/site/public/v1/smartphones/7-2-global-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2423, + "slug": "7-2-global-td-lte-64gb", + "name": "7.2 Global TD-LTE 64GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2019-09-23", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3500, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 18.0, + "camera": 16.5, + "battery": 7.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.456272", + "updated_at": "2026-06-19T00:43:44.456272" +} diff --git a/site/public/v1/smartphones/7-2-global-td-lte-64gb/score/index.json b/site/public/v1/smartphones/7-2-global-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..e0a64516191 --- /dev/null +++ b/site/public/v1/smartphones/7-2-global-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 18.0, + "camera": 16.5, + "battery": 7.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/7-2-lte-a-am-128gb/index.json b/site/public/v1/smartphones/7-2-lte-a-am-128gb/index.json new file mode 100644 index 00000000000..998a41893e7 --- /dev/null +++ b/site/public/v1/smartphones/7-2-lte-a-am-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2424, + "slug": "7-2-lte-a-am-128gb", + "name": "7.2 LTE-A AM 128GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2019-09-23", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3500, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.4, + "performance": 19.5, + "camera": 16.5, + "battery": 7.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.456272", + "updated_at": "2026-06-19T00:43:44.456272" +} diff --git a/site/public/v1/smartphones/7-2-lte-a-am-128gb/score/index.json b/site/public/v1/smartphones/7-2-lte-a-am-128gb/score/index.json new file mode 100644 index 00000000000..2d4e6d2aaa6 --- /dev/null +++ b/site/public/v1/smartphones/7-2-lte-a-am-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.4, + "performance": 19.5, + "camera": 16.5, + "battery": 7.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/7-lte-am-6062w/index.json b/site/public/v1/smartphones/7-lte-am-6062w/index.json new file mode 100644 index 00000000000..77fee7d319a --- /dev/null +++ b/site/public/v1/smartphones/7-lte-am-6062w/index.json @@ -0,0 +1,76 @@ +{ + "id": 6, + "slug": "7-lte-am-6062w", + "name": "7 LTE AM 6062W", + "brand": { + "id": 6, + "slug": "alcatel", + "name": "Alcatel Mobile", + "country": "CN", + "url": "/v1/brands/alcatel" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2180", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.4, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 45.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.109419", + "updated_at": "2026-06-19T00:43:44.109419" +} diff --git a/site/public/v1/smartphones/7-lte-am-6062w/score/index.json b/site/public/v1/smartphones/7-lte-am-6062w/score/index.json new file mode 100644 index 00000000000..c18d165162a --- /dev/null +++ b/site/public/v1/smartphones/7-lte-am-6062w/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.4, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 45.5, + "value": null +} diff --git a/site/public/v1/smartphones/7-plus-android-one-dual-sim-td-lte-in/index.json b/site/public/v1/smartphones/7-plus-android-one-dual-sim-td-lte-in/index.json new file mode 100644 index 00000000000..0789a1d58c1 --- /dev/null +++ b/site/public/v1/smartphones/7-plus-android-one-dual-sim-td-lte-in/index.json @@ -0,0 +1,76 @@ +{ + "id": 2368, + "slug": "7-plus-android-one-dual-sim-td-lte-in", + "name": "7 Plus Android One Dual SIM TD-LTE IN", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 18.0, + "camera": 5.3, + "battery": 12.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.448266", + "updated_at": "2026-06-19T00:43:44.448266" +} diff --git a/site/public/v1/smartphones/7-plus-android-one-dual-sim-td-lte-in/score/index.json b/site/public/v1/smartphones/7-plus-android-one-dual-sim-td-lte-in/score/index.json new file mode 100644 index 00000000000..dbf0d0e06b5 --- /dev/null +++ b/site/public/v1/smartphones/7-plus-android-one-dual-sim-td-lte-in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 18.0, + "camera": 5.3, + "battery": 12.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/7-plus-android-one-global-dual-sim-lte-a/index.json b/site/public/v1/smartphones/7-plus-android-one-global-dual-sim-lte-a/index.json new file mode 100644 index 00000000000..7775575dc0f --- /dev/null +++ b/site/public/v1/smartphones/7-plus-android-one-global-dual-sim-lte-a/index.json @@ -0,0 +1,76 @@ +{ + "id": 2369, + "slug": "7-plus-android-one-global-dual-sim-lte-a", + "name": "7 Plus Android One Global Dual SIM LTE-A", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 18.0, + "camera": 5.3, + "battery": 12.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.449279", + "updated_at": "2026-06-19T00:43:44.449279" +} diff --git a/site/public/v1/smartphones/7-plus-android-one-global-dual-sim-lte-a/score/index.json b/site/public/v1/smartphones/7-plus-android-one-global-dual-sim-lte-a/score/index.json new file mode 100644 index 00000000000..dbf0d0e06b5 --- /dev/null +++ b/site/public/v1/smartphones/7-plus-android-one-global-dual-sim-lte-a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 18.0, + "camera": 5.3, + "battery": 12.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/7-plus-premium-edition-dual-sim-td-lte-apac/index.json b/site/public/v1/smartphones/7-plus-premium-edition-dual-sim-td-lte-apac/index.json new file mode 100644 index 00000000000..cc0fe33df92 --- /dev/null +++ b/site/public/v1/smartphones/7-plus-premium-edition-dual-sim-td-lte-apac/index.json @@ -0,0 +1,76 @@ +{ + "id": 2370, + "slug": "7-plus-premium-edition-dual-sim-td-lte-apac", + "name": "7 Plus Premium Edition Dual SIM TD-LTE APAC", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-03-07", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 19.5, + "camera": 5.3, + "battery": 12.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.449279", + "updated_at": "2026-06-19T00:43:44.449279" +} diff --git a/site/public/v1/smartphones/7-plus-premium-edition-dual-sim-td-lte-apac/score/index.json b/site/public/v1/smartphones/7-plus-premium-edition-dual-sim-td-lte-apac/score/index.json new file mode 100644 index 00000000000..451516ceb59 --- /dev/null +++ b/site/public/v1/smartphones/7-plus-premium-edition-dual-sim-td-lte-apac/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 19.5, + "camera": 5.3, + "battery": 12.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/7-plus-standard-edition-dual-sim-td-lte-apac/index.json b/site/public/v1/smartphones/7-plus-standard-edition-dual-sim-td-lte-apac/index.json new file mode 100644 index 00000000000..0ffa2dc9d5c --- /dev/null +++ b/site/public/v1/smartphones/7-plus-standard-edition-dual-sim-td-lte-apac/index.json @@ -0,0 +1,76 @@ +{ + "id": 2371, + "slug": "7-plus-standard-edition-dual-sim-td-lte-apac", + "name": "7 Plus Standard Edition Dual SIM TD-LTE APAC", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-03-07", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 18.0, + "camera": 5.3, + "battery": 12.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.449279", + "updated_at": "2026-06-19T00:43:44.449279" +} diff --git a/site/public/v1/smartphones/7-plus-standard-edition-dual-sim-td-lte-apac/score/index.json b/site/public/v1/smartphones/7-plus-standard-edition-dual-sim-td-lte-apac/score/index.json new file mode 100644 index 00000000000..dbf0d0e06b5 --- /dev/null +++ b/site/public/v1/smartphones/7-plus-standard-edition-dual-sim-td-lte-apac/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 18.0, + "camera": 5.3, + "battery": 12.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/7-premium-edition-dual-sim-td-lte-cn-in-256gb-gm1901/index.json b/site/public/v1/smartphones/7-premium-edition-dual-sim-td-lte-cn-in-256gb-gm1901/index.json new file mode 100644 index 00000000000..b70f0330fa2 --- /dev/null +++ b/site/public/v1/smartphones/7-premium-edition-dual-sim-td-lte-cn-in-256gb-gm1901/index.json @@ -0,0 +1,76 @@ +{ + "id": 2531, + "slug": "7-premium-edition-dual-sim-td-lte-cn-in-256gb-gm1901", + "name": "7 Premium Edition Dual SIM TD-LTE CN IN 256GB GM1901", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-04", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3700, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 3.0, + "camera": 16.5, + "battery": 11.4, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.470276", + "updated_at": "2026-06-19T00:43:44.470276" +} diff --git a/site/public/v1/smartphones/7-premium-edition-dual-sim-td-lte-cn-in-256gb-gm1901/score/index.json b/site/public/v1/smartphones/7-premium-edition-dual-sim-td-lte-cn-in-256gb-gm1901/score/index.json new file mode 100644 index 00000000000..c924959b9ac --- /dev/null +++ b/site/public/v1/smartphones/7-premium-edition-dual-sim-td-lte-cn-in-256gb-gm1901/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 3.0, + "camera": 16.5, + "battery": 11.4, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/7-premium-edition-global-dual-sim-td-lte-256gb-gm1903/index.json b/site/public/v1/smartphones/7-premium-edition-global-dual-sim-td-lte-256gb-gm1903/index.json new file mode 100644 index 00000000000..8d09c602112 --- /dev/null +++ b/site/public/v1/smartphones/7-premium-edition-global-dual-sim-td-lte-256gb-gm1903/index.json @@ -0,0 +1,76 @@ +{ + "id": 2532, + "slug": "7-premium-edition-global-dual-sim-td-lte-256gb-gm1903", + "name": "7 Premium Edition Global Dual SIM TD-LTE 256GB GM1903", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-04", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3700, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 3.0, + "camera": 16.5, + "battery": 11.4, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.470276", + "updated_at": "2026-06-19T00:43:44.470276" +} diff --git a/site/public/v1/smartphones/7-premium-edition-global-dual-sim-td-lte-256gb-gm1903/score/index.json b/site/public/v1/smartphones/7-premium-edition-global-dual-sim-td-lte-256gb-gm1903/score/index.json new file mode 100644 index 00000000000..c924959b9ac --- /dev/null +++ b/site/public/v1/smartphones/7-premium-edition-global-dual-sim-td-lte-256gb-gm1903/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 3.0, + "camera": 16.5, + "battery": 11.4, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/7-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-gm1920/index.json b/site/public/v1/smartphones/7-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-gm1920/index.json new file mode 100644 index 00000000000..b00887f8a19 --- /dev/null +++ b/site/public/v1/smartphones/7-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-gm1920/index.json @@ -0,0 +1,77 @@ +{ + "id": 2533, + "slug": "7-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-gm1920", + "name": "7 Pro 5G Premium Edition Global Dual SIM TD-LTE 256GB GM1920", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-29", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3140", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 518 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 3.0, + "camera": 16.5, + "battery": 17.8, + "display": 51.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.470276", + "updated_at": "2026-06-19T00:43:44.470276" +} diff --git a/site/public/v1/smartphones/7-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-gm1920/score/index.json b/site/public/v1/smartphones/7-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-gm1920/score/index.json new file mode 100644 index 00000000000..ad187131fda --- /dev/null +++ b/site/public/v1/smartphones/7-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-gm1920/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 3.0, + "camera": 16.5, + "battery": 17.8, + "display": 51.8, + "value": null +} diff --git a/site/public/v1/smartphones/7-pro-5g/index.json b/site/public/v1/smartphones/7-pro-5g/index.json new file mode 100644 index 00000000000..d40d51a3cb8 --- /dev/null +++ b/site/public/v1/smartphones/7-pro-5g/index.json @@ -0,0 +1,70 @@ +{ + "id": 2534, + "slug": "7-pro-5g", + "name": "7 Pro 5G", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-01-01", + "msrp_usd": 799, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.5, + "performance": 6.0, + "camera": 16.5, + "battery": 15.0, + "display": null, + "value": 37.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.470276", + "updated_at": "2026-06-19T00:43:44.470276" +} diff --git a/site/public/v1/smartphones/7-pro-5g/score/index.json b/site/public/v1/smartphones/7-pro-5g/score/index.json new file mode 100644 index 00000000000..772b6071464 --- /dev/null +++ b/site/public/v1/smartphones/7-pro-5g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.5, + "performance": 6.0, + "camera": 16.5, + "battery": 15.0, + "display": null, + "value": 37.0 +} diff --git a/site/public/v1/smartphones/7-pro-premium-edition-dual-sim-td-lte-cn-256gb-gm1910/index.json b/site/public/v1/smartphones/7-pro-premium-edition-dual-sim-td-lte-cn-256gb-gm1910/index.json new file mode 100644 index 00000000000..291be120dec --- /dev/null +++ b/site/public/v1/smartphones/7-pro-premium-edition-dual-sim-td-lte-cn-256gb-gm1910/index.json @@ -0,0 +1,77 @@ +{ + "id": 2535, + "slug": "7-pro-premium-edition-dual-sim-td-lte-cn-256gb-gm1910", + "name": "7 Pro Premium Edition Dual SIM TD-LTE CN 256GB GM1910", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3140", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 518 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 3.0, + "camera": 16.5, + "battery": 17.8, + "display": 51.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.470276", + "updated_at": "2026-06-19T00:43:44.470276" +} diff --git a/site/public/v1/smartphones/7-pro-premium-edition-dual-sim-td-lte-cn-256gb-gm1910/score/index.json b/site/public/v1/smartphones/7-pro-premium-edition-dual-sim-td-lte-cn-256gb-gm1910/score/index.json new file mode 100644 index 00000000000..ad187131fda --- /dev/null +++ b/site/public/v1/smartphones/7-pro-premium-edition-dual-sim-td-lte-cn-256gb-gm1910/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 3.0, + "camera": 16.5, + "battery": 17.8, + "display": 51.8, + "value": null +} diff --git a/site/public/v1/smartphones/7-pro-premium-edition-dual-sim-td-lte-in-256gb-gm1911/index.json b/site/public/v1/smartphones/7-pro-premium-edition-dual-sim-td-lte-in-256gb-gm1911/index.json new file mode 100644 index 00000000000..ce3d2ddfee0 --- /dev/null +++ b/site/public/v1/smartphones/7-pro-premium-edition-dual-sim-td-lte-in-256gb-gm1911/index.json @@ -0,0 +1,77 @@ +{ + "id": 2536, + "slug": "7-pro-premium-edition-dual-sim-td-lte-in-256gb-gm1911", + "name": "7 Pro Premium Edition Dual SIM TD-LTE IN 256GB GM1911", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-16", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3140", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 518 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 1.5, + "camera": 16.5, + "battery": 17.8, + "display": 51.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.470276", + "updated_at": "2026-06-19T00:43:44.470276" +} diff --git a/site/public/v1/smartphones/7-pro-premium-edition-dual-sim-td-lte-in-256gb-gm1911/score/index.json b/site/public/v1/smartphones/7-pro-premium-edition-dual-sim-td-lte-in-256gb-gm1911/score/index.json new file mode 100644 index 00000000000..7bd1e070fcb --- /dev/null +++ b/site/public/v1/smartphones/7-pro-premium-edition-dual-sim-td-lte-in-256gb-gm1911/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 1.5, + "camera": 16.5, + "battery": 17.8, + "display": 51.8, + "value": null +} diff --git a/site/public/v1/smartphones/7-pro-premium-edition-dual-sim-td-lte-us-256gb-gm1915/index.json b/site/public/v1/smartphones/7-pro-premium-edition-dual-sim-td-lte-us-256gb-gm1915/index.json new file mode 100644 index 00000000000..c237188fca6 --- /dev/null +++ b/site/public/v1/smartphones/7-pro-premium-edition-dual-sim-td-lte-us-256gb-gm1915/index.json @@ -0,0 +1,77 @@ +{ + "id": 2537, + "slug": "7-pro-premium-edition-dual-sim-td-lte-us-256gb-gm1915", + "name": "7 Pro Premium Edition Dual SIM TD-LTE US 256GB GM1915", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-27", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3140", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 518 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 3.0, + "camera": 16.5, + "battery": 17.8, + "display": 51.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.471275", + "updated_at": "2026-06-19T00:43:44.471275" +} diff --git a/site/public/v1/smartphones/7-pro-premium-edition-dual-sim-td-lte-us-256gb-gm1915/score/index.json b/site/public/v1/smartphones/7-pro-premium-edition-dual-sim-td-lte-us-256gb-gm1915/score/index.json new file mode 100644 index 00000000000..ad187131fda --- /dev/null +++ b/site/public/v1/smartphones/7-pro-premium-edition-dual-sim-td-lte-us-256gb-gm1915/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 3.0, + "camera": 16.5, + "battery": 17.8, + "display": 51.8, + "value": null +} diff --git a/site/public/v1/smartphones/7-pro-premium-edition-dual-sim-td-lte-us-256gb-gm1917/index.json b/site/public/v1/smartphones/7-pro-premium-edition-dual-sim-td-lte-us-256gb-gm1917/index.json new file mode 100644 index 00000000000..54f8ca4dd24 --- /dev/null +++ b/site/public/v1/smartphones/7-pro-premium-edition-dual-sim-td-lte-us-256gb-gm1917/index.json @@ -0,0 +1,77 @@ +{ + "id": 2538, + "slug": "7-pro-premium-edition-dual-sim-td-lte-us-256gb-gm1917", + "name": "7 Pro Premium Edition Dual SIM TD-LTE US 256GB GM1917", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-03", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3140", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 518 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 3.0, + "camera": 16.5, + "battery": 17.8, + "display": 51.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.471275", + "updated_at": "2026-06-19T00:43:44.471275" +} diff --git a/site/public/v1/smartphones/7-pro-premium-edition-dual-sim-td-lte-us-256gb-gm1917/score/index.json b/site/public/v1/smartphones/7-pro-premium-edition-dual-sim-td-lte-us-256gb-gm1917/score/index.json new file mode 100644 index 00000000000..ad187131fda --- /dev/null +++ b/site/public/v1/smartphones/7-pro-premium-edition-dual-sim-td-lte-us-256gb-gm1917/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 3.0, + "camera": 16.5, + "battery": 17.8, + "display": 51.8, + "value": null +} diff --git a/site/public/v1/smartphones/7-pro-premium-edition-global-dual-sim-td-lte-128gb-gm1913/index.json b/site/public/v1/smartphones/7-pro-premium-edition-global-dual-sim-td-lte-128gb-gm1913/index.json new file mode 100644 index 00000000000..d6be98a9406 --- /dev/null +++ b/site/public/v1/smartphones/7-pro-premium-edition-global-dual-sim-td-lte-128gb-gm1913/index.json @@ -0,0 +1,77 @@ +{ + "id": 2539, + "slug": "7-pro-premium-edition-global-dual-sim-td-lte-128gb-gm1913", + "name": "7 Pro Premium Edition Global Dual SIM TD-LTE 128GB GM1913", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3140", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 518 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 1.5, + "camera": 16.5, + "battery": 17.8, + "display": 51.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.471275", + "updated_at": "2026-06-19T00:43:44.471275" +} diff --git a/site/public/v1/smartphones/7-pro-premium-edition-global-dual-sim-td-lte-128gb-gm1913/score/index.json b/site/public/v1/smartphones/7-pro-premium-edition-global-dual-sim-td-lte-128gb-gm1913/score/index.json new file mode 100644 index 00000000000..7bd1e070fcb --- /dev/null +++ b/site/public/v1/smartphones/7-pro-premium-edition-global-dual-sim-td-lte-128gb-gm1913/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 1.5, + "camera": 16.5, + "battery": 17.8, + "display": 51.8, + "value": null +} diff --git a/site/public/v1/smartphones/7-pro-premium-edition-global-dual-sim-td-lte-256gb-gm1913/index.json b/site/public/v1/smartphones/7-pro-premium-edition-global-dual-sim-td-lte-256gb-gm1913/index.json new file mode 100644 index 00000000000..e6b9d14ff75 --- /dev/null +++ b/site/public/v1/smartphones/7-pro-premium-edition-global-dual-sim-td-lte-256gb-gm1913/index.json @@ -0,0 +1,77 @@ +{ + "id": 2540, + "slug": "7-pro-premium-edition-global-dual-sim-td-lte-256gb-gm1913", + "name": "7 Pro Premium Edition Global Dual SIM TD-LTE 256GB GM1913", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3140", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 518 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 3.0, + "camera": 16.5, + "battery": 17.8, + "display": 51.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.471275", + "updated_at": "2026-06-19T00:43:44.471275" +} diff --git a/site/public/v1/smartphones/7-pro-premium-edition-global-dual-sim-td-lte-256gb-gm1913/score/index.json b/site/public/v1/smartphones/7-pro-premium-edition-global-dual-sim-td-lte-256gb-gm1913/score/index.json new file mode 100644 index 00000000000..ad187131fda --- /dev/null +++ b/site/public/v1/smartphones/7-pro-premium-edition-global-dual-sim-td-lte-256gb-gm1913/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 3.0, + "camera": 16.5, + "battery": 17.8, + "display": 51.8, + "value": null +} diff --git a/site/public/v1/smartphones/7-pro-standard-edition-dual-sim-td-lte-cn-128gb-gm1910/index.json b/site/public/v1/smartphones/7-pro-standard-edition-dual-sim-td-lte-cn-128gb-gm1910/index.json new file mode 100644 index 00000000000..1882a28bcac --- /dev/null +++ b/site/public/v1/smartphones/7-pro-standard-edition-dual-sim-td-lte-cn-128gb-gm1910/index.json @@ -0,0 +1,77 @@ +{ + "id": 2541, + "slug": "7-pro-standard-edition-dual-sim-td-lte-cn-128gb-gm1910", + "name": "7 Pro Standard Edition Dual SIM TD-LTE CN 128GB GM1910", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3140", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 518 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 1.5, + "camera": 16.5, + "battery": 17.8, + "display": 51.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.471275", + "updated_at": "2026-06-19T00:43:44.471275" +} diff --git a/site/public/v1/smartphones/7-pro-standard-edition-dual-sim-td-lte-cn-128gb-gm1910/score/index.json b/site/public/v1/smartphones/7-pro-standard-edition-dual-sim-td-lte-cn-128gb-gm1910/score/index.json new file mode 100644 index 00000000000..7bd1e070fcb --- /dev/null +++ b/site/public/v1/smartphones/7-pro-standard-edition-dual-sim-td-lte-cn-128gb-gm1910/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 1.5, + "camera": 16.5, + "battery": 17.8, + "display": 51.8, + "value": null +} diff --git a/site/public/v1/smartphones/7-pro-standard-edition-dual-sim-td-lte-in-128gb-gm1911/index.json b/site/public/v1/smartphones/7-pro-standard-edition-dual-sim-td-lte-in-128gb-gm1911/index.json new file mode 100644 index 00000000000..7a4982a2b3d --- /dev/null +++ b/site/public/v1/smartphones/7-pro-standard-edition-dual-sim-td-lte-in-128gb-gm1911/index.json @@ -0,0 +1,77 @@ +{ + "id": 2542, + "slug": "7-pro-standard-edition-dual-sim-td-lte-in-128gb-gm1911", + "name": "7 Pro Standard Edition Dual SIM TD-LTE IN 128GB GM1911", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-16", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3140", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 518 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 1.5, + "camera": 16.5, + "battery": 17.8, + "display": 51.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.471275", + "updated_at": "2026-06-19T00:43:44.471275" +} diff --git a/site/public/v1/smartphones/7-pro-standard-edition-dual-sim-td-lte-in-128gb-gm1911/score/index.json b/site/public/v1/smartphones/7-pro-standard-edition-dual-sim-td-lte-in-128gb-gm1911/score/index.json new file mode 100644 index 00000000000..7bd1e070fcb --- /dev/null +++ b/site/public/v1/smartphones/7-pro-standard-edition-dual-sim-td-lte-in-128gb-gm1911/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 1.5, + "camera": 16.5, + "battery": 17.8, + "display": 51.8, + "value": null +} diff --git a/site/public/v1/smartphones/7-pro-top-edition-dual-sim-td-lte-cn-256gb-gm1910/index.json b/site/public/v1/smartphones/7-pro-top-edition-dual-sim-td-lte-cn-256gb-gm1910/index.json new file mode 100644 index 00000000000..732fb237bb2 --- /dev/null +++ b/site/public/v1/smartphones/7-pro-top-edition-dual-sim-td-lte-cn-256gb-gm1910/index.json @@ -0,0 +1,77 @@ +{ + "id": 2543, + "slug": "7-pro-top-edition-dual-sim-td-lte-cn-256gb-gm1910", + "name": "7 Pro Top Edition Dual SIM TD-LTE CN 256GB GM1910", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3140", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 518 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.0, + "performance": 6.0, + "camera": 16.5, + "battery": 17.8, + "display": 51.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.471275", + "updated_at": "2026-06-19T00:43:44.471275" +} diff --git a/site/public/v1/smartphones/7-pro-top-edition-dual-sim-td-lte-cn-256gb-gm1910/score/index.json b/site/public/v1/smartphones/7-pro-top-edition-dual-sim-td-lte-cn-256gb-gm1910/score/index.json new file mode 100644 index 00000000000..95a34611007 --- /dev/null +++ b/site/public/v1/smartphones/7-pro-top-edition-dual-sim-td-lte-cn-256gb-gm1910/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.0, + "performance": 6.0, + "camera": 16.5, + "battery": 17.8, + "display": 51.8, + "value": null +} diff --git a/site/public/v1/smartphones/7-standard-edition-dual-sim-td-lte-cn-in-128gb-gm1901/index.json b/site/public/v1/smartphones/7-standard-edition-dual-sim-td-lte-cn-in-128gb-gm1901/index.json new file mode 100644 index 00000000000..14ab0ffe709 --- /dev/null +++ b/site/public/v1/smartphones/7-standard-edition-dual-sim-td-lte-cn-in-128gb-gm1901/index.json @@ -0,0 +1,76 @@ +{ + "id": 2544, + "slug": "7-standard-edition-dual-sim-td-lte-cn-in-128gb-gm1901", + "name": "7 Standard Edition Dual SIM TD-LTE CN IN 128GB GM1901", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-04", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3700, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 1.5, + "camera": 16.5, + "battery": 11.4, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.471275", + "updated_at": "2026-06-19T00:43:44.471275" +} diff --git a/site/public/v1/smartphones/7-standard-edition-dual-sim-td-lte-cn-in-128gb-gm1901/score/index.json b/site/public/v1/smartphones/7-standard-edition-dual-sim-td-lte-cn-in-128gb-gm1901/score/index.json new file mode 100644 index 00000000000..490b45f37bd --- /dev/null +++ b/site/public/v1/smartphones/7-standard-edition-dual-sim-td-lte-cn-in-128gb-gm1901/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 1.5, + "camera": 16.5, + "battery": 11.4, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/7-standard-edition-global-dual-sim-td-lte-128gb-gm1903/index.json b/site/public/v1/smartphones/7-standard-edition-global-dual-sim-td-lte-128gb-gm1903/index.json new file mode 100644 index 00000000000..fd2bfb9bd07 --- /dev/null +++ b/site/public/v1/smartphones/7-standard-edition-global-dual-sim-td-lte-128gb-gm1903/index.json @@ -0,0 +1,76 @@ +{ + "id": 2545, + "slug": "7-standard-edition-global-dual-sim-td-lte-128gb-gm1903", + "name": "7 Standard Edition Global Dual SIM TD-LTE 128GB GM1903", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-04", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3700, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 1.5, + "camera": 16.5, + "battery": 11.4, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.471275", + "updated_at": "2026-06-19T00:43:44.471275" +} diff --git a/site/public/v1/smartphones/7-standard-edition-global-dual-sim-td-lte-128gb-gm1903/score/index.json b/site/public/v1/smartphones/7-standard-edition-global-dual-sim-td-lte-128gb-gm1903/score/index.json new file mode 100644 index 00000000000..490b45f37bd --- /dev/null +++ b/site/public/v1/smartphones/7-standard-edition-global-dual-sim-td-lte-128gb-gm1903/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 1.5, + "camera": 16.5, + "battery": 11.4, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/7-top-edition-dual-sim-td-lte-cn-256gb-gm1901/index.json b/site/public/v1/smartphones/7-top-edition-dual-sim-td-lte-cn-256gb-gm1901/index.json new file mode 100644 index 00000000000..0db8a0fce78 --- /dev/null +++ b/site/public/v1/smartphones/7-top-edition-dual-sim-td-lte-cn-256gb-gm1901/index.json @@ -0,0 +1,76 @@ +{ + "id": 2546, + "slug": "7-top-edition-dual-sim-td-lte-cn-256gb-gm1901", + "name": "7 Top Edition Dual SIM TD-LTE CN 256GB GM1901", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-06", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3700, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 6.0, + "camera": 16.5, + "battery": 11.4, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.471275", + "updated_at": "2026-06-19T00:43:44.471275" +} diff --git a/site/public/v1/smartphones/7-top-edition-dual-sim-td-lte-cn-256gb-gm1901/score/index.json b/site/public/v1/smartphones/7-top-edition-dual-sim-td-lte-cn-256gb-gm1901/score/index.json new file mode 100644 index 00000000000..808a1e803ec --- /dev/null +++ b/site/public/v1/smartphones/7-top-edition-dual-sim-td-lte-cn-256gb-gm1901/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 6.0, + "camera": 16.5, + "battery": 11.4, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/7t-dual-sim-td-lte-na-128gb-hd1905/index.json b/site/public/v1/smartphones/7t-dual-sim-td-lte-na-128gb-hd1905/index.json new file mode 100644 index 00000000000..7118c3dba3a --- /dev/null +++ b/site/public/v1/smartphones/7t-dual-sim-td-lte-na-128gb-hd1905/index.json @@ -0,0 +1,77 @@ +{ + "id": 2547, + "slug": "7t-dual-sim-td-lte-na-128gb-hd1905", + "name": "7T Dual SIM TD-LTE NA 128GB HD1905", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-10-11", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3800, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 3.0, + "camera": 16.5, + "battery": 14.9, + "display": 40.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.471275", + "updated_at": "2026-06-19T00:43:44.471275" +} diff --git a/site/public/v1/smartphones/7t-dual-sim-td-lte-na-128gb-hd1905/score/index.json b/site/public/v1/smartphones/7t-dual-sim-td-lte-na-128gb-hd1905/score/index.json new file mode 100644 index 00000000000..2245239b3a7 --- /dev/null +++ b/site/public/v1/smartphones/7t-dual-sim-td-lte-na-128gb-hd1905/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 3.0, + "camera": 16.5, + "battery": 14.9, + "display": 40.2, + "value": null +} diff --git a/site/public/v1/smartphones/7t-pro-5g-mclaren-edition-global-dual-sim-td-lte-256gb-hd1925/index.json b/site/public/v1/smartphones/7t-pro-5g-mclaren-edition-global-dual-sim-td-lte-256gb-hd1925/index.json new file mode 100644 index 00000000000..2f0d8baf315 --- /dev/null +++ b/site/public/v1/smartphones/7t-pro-5g-mclaren-edition-global-dual-sim-td-lte-256gb-hd1925/index.json @@ -0,0 +1,77 @@ +{ + "id": 2548, + "slug": "7t-pro-5g-mclaren-edition-global-dual-sim-td-lte-256gb-hd1925", + "name": "7T Pro 5G McLaren Edition Global Dual SIM TD-LTE 256GB HD1925", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-12-07", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3120", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4085, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.0, + "camera": 16.5, + "battery": 19.2, + "display": 51.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.471275", + "updated_at": "2026-06-19T00:43:44.471275" +} diff --git a/site/public/v1/smartphones/7t-pro-5g-mclaren-edition-global-dual-sim-td-lte-256gb-hd1925/score/index.json b/site/public/v1/smartphones/7t-pro-5g-mclaren-edition-global-dual-sim-td-lte-256gb-hd1925/score/index.json new file mode 100644 index 00000000000..3741bd6c581 --- /dev/null +++ b/site/public/v1/smartphones/7t-pro-5g-mclaren-edition-global-dual-sim-td-lte-256gb-hd1925/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.0, + "camera": 16.5, + "battery": 19.2, + "display": 51.5, + "value": null +} diff --git a/site/public/v1/smartphones/7t-pro-5g-mclaren-edition/index.json b/site/public/v1/smartphones/7t-pro-5g-mclaren-edition/index.json new file mode 100644 index 00000000000..b21ccf4f175 --- /dev/null +++ b/site/public/v1/smartphones/7t-pro-5g-mclaren-edition/index.json @@ -0,0 +1,70 @@ +{ + "id": 2549, + "slug": "7t-pro-5g-mclaren-edition", + "name": "7T Pro 5G McLaren Edition", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-01-01", + "msrp_usd": 899, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 4085, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.9, + "performance": 6.0, + "camera": 16.5, + "battery": 16.3, + "display": null, + "value": 33.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.472780", + "updated_at": "2026-06-19T00:43:44.472780" +} diff --git a/site/public/v1/smartphones/7t-pro-5g-mclaren-edition/score/index.json b/site/public/v1/smartphones/7t-pro-5g-mclaren-edition/score/index.json new file mode 100644 index 00000000000..c01a28a2de1 --- /dev/null +++ b/site/public/v1/smartphones/7t-pro-5g-mclaren-edition/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.9, + "performance": 6.0, + "camera": 16.5, + "battery": 16.3, + "display": null, + "value": 33.4 +} diff --git a/site/public/v1/smartphones/7t-pro-mclaren-edition-dual-sim-td-lte-cn-256gb-hd1910/index.json b/site/public/v1/smartphones/7t-pro-mclaren-edition-dual-sim-td-lte-cn-256gb-hd1910/index.json new file mode 100644 index 00000000000..53549f409c3 --- /dev/null +++ b/site/public/v1/smartphones/7t-pro-mclaren-edition-dual-sim-td-lte-cn-256gb-hd1910/index.json @@ -0,0 +1,77 @@ +{ + "id": 2550, + "slug": "7t-pro-mclaren-edition-dual-sim-td-lte-cn-256gb-hd1910", + "name": "7T Pro McLaren Edition Dual SIM TD-LTE CN 256GB HD1910", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3120", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4085, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.0, + "camera": 16.5, + "battery": 19.2, + "display": 51.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.472780", + "updated_at": "2026-06-19T00:43:44.472780" +} diff --git a/site/public/v1/smartphones/7t-pro-mclaren-edition-dual-sim-td-lte-cn-256gb-hd1910/score/index.json b/site/public/v1/smartphones/7t-pro-mclaren-edition-dual-sim-td-lte-cn-256gb-hd1910/score/index.json new file mode 100644 index 00000000000..3741bd6c581 --- /dev/null +++ b/site/public/v1/smartphones/7t-pro-mclaren-edition-dual-sim-td-lte-cn-256gb-hd1910/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.0, + "camera": 16.5, + "battery": 19.2, + "display": 51.5, + "value": null +} diff --git a/site/public/v1/smartphones/7t-pro-mclaren-edition-global-dual-sim-td-lte-256gb-hd1913/index.json b/site/public/v1/smartphones/7t-pro-mclaren-edition-global-dual-sim-td-lte-256gb-hd1913/index.json new file mode 100644 index 00000000000..c1e57217223 --- /dev/null +++ b/site/public/v1/smartphones/7t-pro-mclaren-edition-global-dual-sim-td-lte-256gb-hd1913/index.json @@ -0,0 +1,77 @@ +{ + "id": 2551, + "slug": "7t-pro-mclaren-edition-global-dual-sim-td-lte-256gb-hd1913", + "name": "7T Pro McLaren Edition Global Dual SIM TD-LTE 256GB HD1913", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-10-26", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3120", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4085, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.0, + "camera": 16.5, + "battery": 19.2, + "display": 51.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.472780", + "updated_at": "2026-06-19T00:43:44.472780" +} diff --git a/site/public/v1/smartphones/7t-pro-mclaren-edition-global-dual-sim-td-lte-256gb-hd1913/score/index.json b/site/public/v1/smartphones/7t-pro-mclaren-edition-global-dual-sim-td-lte-256gb-hd1913/score/index.json new file mode 100644 index 00000000000..3741bd6c581 --- /dev/null +++ b/site/public/v1/smartphones/7t-pro-mclaren-edition-global-dual-sim-td-lte-256gb-hd1913/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.0, + "camera": 16.5, + "battery": 19.2, + "display": 51.5, + "value": null +} diff --git a/site/public/v1/smartphones/7t-pro-standard-edition-dual-sim-td-lte-cn-256gb-hd1910/index.json b/site/public/v1/smartphones/7t-pro-standard-edition-dual-sim-td-lte-cn-256gb-hd1910/index.json new file mode 100644 index 00000000000..6f5e58ad042 --- /dev/null +++ b/site/public/v1/smartphones/7t-pro-standard-edition-dual-sim-td-lte-cn-256gb-hd1910/index.json @@ -0,0 +1,77 @@ +{ + "id": 2553, + "slug": "7t-pro-standard-edition-dual-sim-td-lte-cn-256gb-hd1910", + "name": "7T Pro Standard Edition Dual SIM TD-LTE CN 256GB HD1910", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-10-12", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3120", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4085, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 19.2, + "display": 51.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.472780", + "updated_at": "2026-06-19T00:43:44.472780" +} diff --git a/site/public/v1/smartphones/7t-pro-standard-edition-dual-sim-td-lte-cn-256gb-hd1910/score/index.json b/site/public/v1/smartphones/7t-pro-standard-edition-dual-sim-td-lte-cn-256gb-hd1910/score/index.json new file mode 100644 index 00000000000..ac157aea278 --- /dev/null +++ b/site/public/v1/smartphones/7t-pro-standard-edition-dual-sim-td-lte-cn-256gb-hd1910/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 19.2, + "display": 51.5, + "value": null +} diff --git a/site/public/v1/smartphones/7t-pro-standard-edition-global-dual-sim-td-lte-256gb-hd1913/index.json b/site/public/v1/smartphones/7t-pro-standard-edition-global-dual-sim-td-lte-256gb-hd1913/index.json new file mode 100644 index 00000000000..baa919959eb --- /dev/null +++ b/site/public/v1/smartphones/7t-pro-standard-edition-global-dual-sim-td-lte-256gb-hd1913/index.json @@ -0,0 +1,77 @@ +{ + "id": 2554, + "slug": "7t-pro-standard-edition-global-dual-sim-td-lte-256gb-hd1913", + "name": "7T Pro Standard Edition Global Dual SIM TD-LTE 256GB HD1913", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-10-12", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3120", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4085, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 19.2, + "display": 51.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.472780", + "updated_at": "2026-06-19T00:43:44.472780" +} diff --git a/site/public/v1/smartphones/7t-pro-standard-edition-global-dual-sim-td-lte-256gb-hd1913/score/index.json b/site/public/v1/smartphones/7t-pro-standard-edition-global-dual-sim-td-lte-256gb-hd1913/score/index.json new file mode 100644 index 00000000000..ac157aea278 --- /dev/null +++ b/site/public/v1/smartphones/7t-pro-standard-edition-global-dual-sim-td-lte-256gb-hd1913/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 19.2, + "display": 51.5, + "value": null +} diff --git a/site/public/v1/smartphones/7t-standard-edition-dual-sim-td-lte-cn-256gb-hd1900/index.json b/site/public/v1/smartphones/7t-standard-edition-dual-sim-td-lte-cn-256gb-hd1900/index.json new file mode 100644 index 00000000000..a76dc15b1d0 --- /dev/null +++ b/site/public/v1/smartphones/7t-standard-edition-dual-sim-td-lte-cn-256gb-hd1900/index.json @@ -0,0 +1,77 @@ +{ + "id": 2557, + "slug": "7t-standard-edition-dual-sim-td-lte-cn-256gb-hd1900", + "name": "7T Standard Edition Dual SIM TD-LTE CN 256GB HD1900", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-09-29", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3800, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 3.0, + "camera": 16.5, + "battery": 14.9, + "display": 40.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.472780", + "updated_at": "2026-06-19T00:43:44.472780" +} diff --git a/site/public/v1/smartphones/7t-standard-edition-dual-sim-td-lte-cn-256gb-hd1900/score/index.json b/site/public/v1/smartphones/7t-standard-edition-dual-sim-td-lte-cn-256gb-hd1900/score/index.json new file mode 100644 index 00000000000..2245239b3a7 --- /dev/null +++ b/site/public/v1/smartphones/7t-standard-edition-dual-sim-td-lte-cn-256gb-hd1900/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 3.0, + "camera": 16.5, + "battery": 14.9, + "display": 40.2, + "value": null +} diff --git a/site/public/v1/smartphones/7t-standard-edition-dual-sim-td-lte-cn-in-128gb-hd1901/index.json b/site/public/v1/smartphones/7t-standard-edition-dual-sim-td-lte-cn-in-128gb-hd1901/index.json new file mode 100644 index 00000000000..a8d99de6010 --- /dev/null +++ b/site/public/v1/smartphones/7t-standard-edition-dual-sim-td-lte-cn-in-128gb-hd1901/index.json @@ -0,0 +1,77 @@ +{ + "id": 2558, + "slug": "7t-standard-edition-dual-sim-td-lte-cn-in-128gb-hd1901", + "name": "7T Standard Edition Dual SIM TD-LTE CN IN 128GB HD1901", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-09-29", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3800, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 3.0, + "camera": 16.5, + "battery": 14.9, + "display": 40.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.473785", + "updated_at": "2026-06-19T00:43:44.473785" +} diff --git a/site/public/v1/smartphones/7t-standard-edition-dual-sim-td-lte-cn-in-128gb-hd1901/score/index.json b/site/public/v1/smartphones/7t-standard-edition-dual-sim-td-lte-cn-in-128gb-hd1901/score/index.json new file mode 100644 index 00000000000..2245239b3a7 --- /dev/null +++ b/site/public/v1/smartphones/7t-standard-edition-dual-sim-td-lte-cn-in-128gb-hd1901/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 3.0, + "camera": 16.5, + "battery": 14.9, + "display": 40.2, + "value": null +} diff --git a/site/public/v1/smartphones/7t-standard-edition-dual-sim-td-lte-cn-in-256gb-hd1901/index.json b/site/public/v1/smartphones/7t-standard-edition-dual-sim-td-lte-cn-in-256gb-hd1901/index.json new file mode 100644 index 00000000000..4e748a23d1f --- /dev/null +++ b/site/public/v1/smartphones/7t-standard-edition-dual-sim-td-lte-cn-in-256gb-hd1901/index.json @@ -0,0 +1,77 @@ +{ + "id": 2559, + "slug": "7t-standard-edition-dual-sim-td-lte-cn-in-256gb-hd1901", + "name": "7T Standard Edition Dual SIM TD-LTE CN IN 256GB HD1901", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-09-29", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3800, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 3.0, + "camera": 16.5, + "battery": 14.9, + "display": 40.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.473785", + "updated_at": "2026-06-19T00:43:44.473785" +} diff --git a/site/public/v1/smartphones/7t-standard-edition-dual-sim-td-lte-cn-in-256gb-hd1901/score/index.json b/site/public/v1/smartphones/7t-standard-edition-dual-sim-td-lte-cn-in-256gb-hd1901/score/index.json new file mode 100644 index 00000000000..2245239b3a7 --- /dev/null +++ b/site/public/v1/smartphones/7t-standard-edition-dual-sim-td-lte-cn-in-256gb-hd1901/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 3.0, + "camera": 16.5, + "battery": 14.9, + "display": 40.2, + "value": null +} diff --git a/site/public/v1/smartphones/7t-standard-edition-dual-sim-td-lte-eu-128gb-hd1903/index.json b/site/public/v1/smartphones/7t-standard-edition-dual-sim-td-lte-eu-128gb-hd1903/index.json new file mode 100644 index 00000000000..3c3706e0f99 --- /dev/null +++ b/site/public/v1/smartphones/7t-standard-edition-dual-sim-td-lte-eu-128gb-hd1903/index.json @@ -0,0 +1,77 @@ +{ + "id": 2560, + "slug": "7t-standard-edition-dual-sim-td-lte-eu-128gb-hd1903", + "name": "7T Standard Edition Dual SIM TD-LTE EU 128GB HD1903", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-10-18", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3800, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 3.0, + "camera": 16.5, + "battery": 14.9, + "display": 40.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.473785", + "updated_at": "2026-06-19T00:43:44.473785" +} diff --git a/site/public/v1/smartphones/7t-standard-edition-dual-sim-td-lte-eu-128gb-hd1903/score/index.json b/site/public/v1/smartphones/7t-standard-edition-dual-sim-td-lte-eu-128gb-hd1903/score/index.json new file mode 100644 index 00000000000..2245239b3a7 --- /dev/null +++ b/site/public/v1/smartphones/7t-standard-edition-dual-sim-td-lte-eu-128gb-hd1903/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 3.0, + "camera": 16.5, + "battery": 14.9, + "display": 40.2, + "value": null +} diff --git a/site/public/v1/smartphones/8-1-premium-edition-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/8-1-premium-edition-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..1ab3d4eca57 --- /dev/null +++ b/site/public/v1/smartphones/8-1-premium-edition-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2425, + "slug": "8-1-premium-edition-global-dual-sim-td-lte-64gb", + "name": "8.1 Premium Edition Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-02-06", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 21.5, + "camera": 5.1, + "battery": 7.5, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.456272", + "updated_at": "2026-06-19T00:43:44.456272" +} diff --git a/site/public/v1/smartphones/8-1-premium-edition-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/8-1-premium-edition-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..bb2257ef0ee --- /dev/null +++ b/site/public/v1/smartphones/8-1-premium-edition-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 21.5, + "camera": 5.1, + "battery": 7.5, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/8-1-standard-edition-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/8-1-standard-edition-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..3a2672f96ec --- /dev/null +++ b/site/public/v1/smartphones/8-1-standard-edition-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2372, + "slug": "8-1-standard-edition-global-dual-sim-td-lte-64gb", + "name": "8.1 Standard Edition Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2018-12-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 20.0, + "camera": 5.1, + "battery": 7.5, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.449279", + "updated_at": "2026-06-19T00:43:44.449279" +} diff --git a/site/public/v1/smartphones/8-1-standard-edition-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/8-1-standard-edition-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..3662c91a6e1 --- /dev/null +++ b/site/public/v1/smartphones/8-1-standard-edition-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 20.0, + "camera": 5.1, + "battery": 7.5, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/8-3-2020-5g-premium-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/8-3-2020-5g-premium-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..125e2de931f --- /dev/null +++ b/site/public/v1/smartphones/8-3-2020-5g-premium-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 2447, + "slug": "8-3-2020-5g-premium-edition-global-dual-sim-td-lte-128gb", + "name": "8.3 2020 5G Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-09-22", + "msrp_usd": 599, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.81, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 227.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 1.5, + "camera": 21.5, + "battery": 23.1, + "display": 26.1, + "value": 47.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.459275", + "updated_at": "2026-06-19T00:43:44.459275" +} diff --git a/site/public/v1/smartphones/8-3-2020-5g-premium-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/8-3-2020-5g-premium-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..4ca2a40f2a5 --- /dev/null +++ b/site/public/v1/smartphones/8-3-2020-5g-premium-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 1.5, + "camera": 21.5, + "battery": 23.1, + "display": 26.1, + "value": 47.5 +} diff --git a/site/public/v1/smartphones/8-3-2020-5g-standard-edition-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/8-3-2020-5g-standard-edition-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..e2c0c4972b3 --- /dev/null +++ b/site/public/v1/smartphones/8-3-2020-5g-standard-edition-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 2448, + "slug": "8-3-2020-5g-standard-edition-global-dual-sim-td-lte-64gb", + "name": "8.3 2020 5G Standard Edition Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-09-22", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.81, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 227.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 1.5, + "camera": 21.5, + "battery": 23.1, + "display": 26.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.459275", + "updated_at": "2026-06-19T00:43:44.459275" +} diff --git a/site/public/v1/smartphones/8-3-2020-5g-standard-edition-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/8-3-2020-5g-standard-edition-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..171cb93d113 --- /dev/null +++ b/site/public/v1/smartphones/8-3-2020-5g-standard-edition-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 1.5, + "camera": 21.5, + "battery": 23.1, + "display": 26.1, + "value": null +} diff --git a/site/public/v1/smartphones/8-3-2020-5g-standard-edition-global-td-lte-64gb/index.json b/site/public/v1/smartphones/8-3-2020-5g-standard-edition-global-td-lte-64gb/index.json new file mode 100644 index 00000000000..29f1833788e --- /dev/null +++ b/site/public/v1/smartphones/8-3-2020-5g-standard-edition-global-td-lte-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 2449, + "slug": "8-3-2020-5g-standard-edition-global-td-lte-64gb", + "name": "8.3 2020 5G Standard Edition Global TD-LTE 64GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-10-08", + "msrp_usd": 500, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.81, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 227.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 1.5, + "camera": 21.5, + "battery": 23.1, + "display": 26.1, + "value": 51.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.459275", + "updated_at": "2026-06-19T00:43:44.459275" +} diff --git a/site/public/v1/smartphones/8-3-2020-5g-standard-edition-global-td-lte-64gb/score/index.json b/site/public/v1/smartphones/8-3-2020-5g-standard-edition-global-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..be310c0cc6d --- /dev/null +++ b/site/public/v1/smartphones/8-3-2020-5g-standard-edition-global-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 1.5, + "camera": 21.5, + "battery": 23.1, + "display": 26.1, + "value": 51.3 +} diff --git a/site/public/v1/smartphones/8-5g-premium-edition-dual-sim-td-lte-cn-256gb-in2010/index.json b/site/public/v1/smartphones/8-5g-premium-edition-dual-sim-td-lte-cn-256gb-in2010/index.json new file mode 100644 index 00000000000..d750d550bb6 --- /dev/null +++ b/site/public/v1/smartphones/8-5g-premium-edition-dual-sim-td-lte-cn-256gb-in2010/index.json @@ -0,0 +1,77 @@ +{ + "id": 2566, + "slug": "8-5g-premium-edition-dual-sim-td-lte-cn-256gb-in2010", + "name": "8 5G Premium Edition Dual SIM TD-LTE CN 256GB IN2010", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-17", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 6.0, + "camera": 16.5, + "battery": 22.3, + "display": 40.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.474785", + "updated_at": "2026-06-19T00:43:44.474785" +} diff --git a/site/public/v1/smartphones/8-5g-premium-edition-dual-sim-td-lte-cn-256gb-in2010/score/index.json b/site/public/v1/smartphones/8-5g-premium-edition-dual-sim-td-lte-cn-256gb-in2010/score/index.json new file mode 100644 index 00000000000..156790ef8d3 --- /dev/null +++ b/site/public/v1/smartphones/8-5g-premium-edition-dual-sim-td-lte-cn-256gb-in2010/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 6.0, + "camera": 16.5, + "battery": 22.3, + "display": 40.2, + "value": null +} diff --git a/site/public/v1/smartphones/8-5g-premium-edition-dual-sim-td-lte-in-256gb-in2011/index.json b/site/public/v1/smartphones/8-5g-premium-edition-dual-sim-td-lte-in-256gb-in2011/index.json new file mode 100644 index 00000000000..2b10d164436 --- /dev/null +++ b/site/public/v1/smartphones/8-5g-premium-edition-dual-sim-td-lte-in-256gb-in2011/index.json @@ -0,0 +1,77 @@ +{ + "id": 2567, + "slug": "8-5g-premium-edition-dual-sim-td-lte-in-256gb-in2011", + "name": "8 5G Premium Edition Dual SIM TD-LTE IN 256GB IN2011", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-05-29", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 6.0, + "camera": 16.5, + "battery": 22.3, + "display": 40.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.474785", + "updated_at": "2026-06-19T00:43:44.474785" +} diff --git a/site/public/v1/smartphones/8-5g-premium-edition-dual-sim-td-lte-in-256gb-in2011/score/index.json b/site/public/v1/smartphones/8-5g-premium-edition-dual-sim-td-lte-in-256gb-in2011/score/index.json new file mode 100644 index 00000000000..156790ef8d3 --- /dev/null +++ b/site/public/v1/smartphones/8-5g-premium-edition-dual-sim-td-lte-in-256gb-in2011/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 6.0, + "camera": 16.5, + "battery": 22.3, + "display": 40.2, + "value": null +} diff --git a/site/public/v1/smartphones/8-5g-premium-edition-dual-sim-td-lte-na-256gb-in2015/index.json b/site/public/v1/smartphones/8-5g-premium-edition-dual-sim-td-lte-na-256gb-in2015/index.json new file mode 100644 index 00000000000..8b81ea06733 --- /dev/null +++ b/site/public/v1/smartphones/8-5g-premium-edition-dual-sim-td-lte-na-256gb-in2015/index.json @@ -0,0 +1,77 @@ +{ + "id": 2568, + "slug": "8-5g-premium-edition-dual-sim-td-lte-na-256gb-in2015", + "name": "8 5G Premium Edition Dual SIM TD-LTE NA 256GB IN2015", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-21", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 6.0, + "camera": 16.5, + "battery": 22.3, + "display": 40.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.474785", + "updated_at": "2026-06-19T00:43:44.474785" +} diff --git a/site/public/v1/smartphones/8-5g-premium-edition-dual-sim-td-lte-na-256gb-in2015/score/index.json b/site/public/v1/smartphones/8-5g-premium-edition-dual-sim-td-lte-na-256gb-in2015/score/index.json new file mode 100644 index 00000000000..156790ef8d3 --- /dev/null +++ b/site/public/v1/smartphones/8-5g-premium-edition-dual-sim-td-lte-na-256gb-in2015/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 6.0, + "camera": 16.5, + "battery": 22.3, + "display": 40.2, + "value": null +} diff --git a/site/public/v1/smartphones/8-5g-premium-edition-global-dual-sim-td-lte-256gb-in2013/index.json b/site/public/v1/smartphones/8-5g-premium-edition-global-dual-sim-td-lte-256gb-in2013/index.json new file mode 100644 index 00000000000..77052f2ac24 --- /dev/null +++ b/site/public/v1/smartphones/8-5g-premium-edition-global-dual-sim-td-lte-256gb-in2013/index.json @@ -0,0 +1,77 @@ +{ + "id": 2569, + "slug": "8-5g-premium-edition-global-dual-sim-td-lte-256gb-in2013", + "name": "8 5G Premium Edition Global Dual SIM TD-LTE 256GB IN2013", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-21", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 6.0, + "camera": 16.5, + "battery": 22.3, + "display": 40.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.474785", + "updated_at": "2026-06-19T00:43:44.474785" +} diff --git a/site/public/v1/smartphones/8-5g-premium-edition-global-dual-sim-td-lte-256gb-in2013/score/index.json b/site/public/v1/smartphones/8-5g-premium-edition-global-dual-sim-td-lte-256gb-in2013/score/index.json new file mode 100644 index 00000000000..156790ef8d3 --- /dev/null +++ b/site/public/v1/smartphones/8-5g-premium-edition-global-dual-sim-td-lte-256gb-in2013/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 6.0, + "camera": 16.5, + "battery": 22.3, + "display": 40.2, + "value": null +} diff --git a/site/public/v1/smartphones/8-5g-standard-edition-dual-sim-td-lte-cn-128gb-in2010/index.json b/site/public/v1/smartphones/8-5g-standard-edition-dual-sim-td-lte-cn-128gb-in2010/index.json new file mode 100644 index 00000000000..032573b6ffe --- /dev/null +++ b/site/public/v1/smartphones/8-5g-standard-edition-dual-sim-td-lte-cn-128gb-in2010/index.json @@ -0,0 +1,77 @@ +{ + "id": 2570, + "slug": "8-5g-standard-edition-dual-sim-td-lte-cn-128gb-in2010", + "name": "8 5G Standard Edition Dual SIM TD-LTE CN 128GB IN2010", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-17", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 22.3, + "display": 40.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.474785", + "updated_at": "2026-06-19T00:43:44.474785" +} diff --git a/site/public/v1/smartphones/8-5g-standard-edition-dual-sim-td-lte-cn-128gb-in2010/score/index.json b/site/public/v1/smartphones/8-5g-standard-edition-dual-sim-td-lte-cn-128gb-in2010/score/index.json new file mode 100644 index 00000000000..ed9f621c88c --- /dev/null +++ b/site/public/v1/smartphones/8-5g-standard-edition-dual-sim-td-lte-cn-128gb-in2010/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 22.3, + "display": 40.2, + "value": null +} diff --git a/site/public/v1/smartphones/8-5g-standard-edition-dual-sim-td-lte-in-128gb-in2011/index.json b/site/public/v1/smartphones/8-5g-standard-edition-dual-sim-td-lte-in-128gb-in2011/index.json new file mode 100644 index 00000000000..576fec2c5a0 --- /dev/null +++ b/site/public/v1/smartphones/8-5g-standard-edition-dual-sim-td-lte-in-128gb-in2011/index.json @@ -0,0 +1,77 @@ +{ + "id": 2571, + "slug": "8-5g-standard-edition-dual-sim-td-lte-in-128gb-in2011", + "name": "8 5G Standard Edition Dual SIM TD-LTE IN 128GB IN2011", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-05-29", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 22.3, + "display": 40.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.474785", + "updated_at": "2026-06-19T00:43:44.474785" +} diff --git a/site/public/v1/smartphones/8-5g-standard-edition-dual-sim-td-lte-in-128gb-in2011/score/index.json b/site/public/v1/smartphones/8-5g-standard-edition-dual-sim-td-lte-in-128gb-in2011/score/index.json new file mode 100644 index 00000000000..ed9f621c88c --- /dev/null +++ b/site/public/v1/smartphones/8-5g-standard-edition-dual-sim-td-lte-in-128gb-in2011/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 22.3, + "display": 40.2, + "value": null +} diff --git a/site/public/v1/smartphones/8-5g-standard-edition-dual-sim-td-lte-na-128gb-in2015/index.json b/site/public/v1/smartphones/8-5g-standard-edition-dual-sim-td-lte-na-128gb-in2015/index.json new file mode 100644 index 00000000000..c81fe400b84 --- /dev/null +++ b/site/public/v1/smartphones/8-5g-standard-edition-dual-sim-td-lte-na-128gb-in2015/index.json @@ -0,0 +1,77 @@ +{ + "id": 2572, + "slug": "8-5g-standard-edition-dual-sim-td-lte-na-128gb-in2015", + "name": "8 5G Standard Edition Dual SIM TD-LTE NA 128GB IN2015", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-21", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 22.3, + "display": 40.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.475785", + "updated_at": "2026-06-19T00:43:44.475785" +} diff --git a/site/public/v1/smartphones/8-5g-standard-edition-dual-sim-td-lte-na-128gb-in2015/score/index.json b/site/public/v1/smartphones/8-5g-standard-edition-dual-sim-td-lte-na-128gb-in2015/score/index.json new file mode 100644 index 00000000000..ed9f621c88c --- /dev/null +++ b/site/public/v1/smartphones/8-5g-standard-edition-dual-sim-td-lte-na-128gb-in2015/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 22.3, + "display": 40.2, + "value": null +} diff --git a/site/public/v1/smartphones/8-5g-standard-edition-global-dual-sim-td-lte-128gb-in2013/index.json b/site/public/v1/smartphones/8-5g-standard-edition-global-dual-sim-td-lte-128gb-in2013/index.json new file mode 100644 index 00000000000..3b415cd7d30 --- /dev/null +++ b/site/public/v1/smartphones/8-5g-standard-edition-global-dual-sim-td-lte-128gb-in2013/index.json @@ -0,0 +1,77 @@ +{ + "id": 2573, + "slug": "8-5g-standard-edition-global-dual-sim-td-lte-128gb-in2013", + "name": "8 5G Standard Edition Global Dual SIM TD-LTE 128GB IN2013", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-21", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 22.3, + "display": 40.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.475785", + "updated_at": "2026-06-19T00:43:44.475785" +} diff --git a/site/public/v1/smartphones/8-5g-standard-edition-global-dual-sim-td-lte-128gb-in2013/score/index.json b/site/public/v1/smartphones/8-5g-standard-edition-global-dual-sim-td-lte-128gb-in2013/score/index.json new file mode 100644 index 00000000000..ed9f621c88c --- /dev/null +++ b/site/public/v1/smartphones/8-5g-standard-edition-global-dual-sim-td-lte-128gb-in2013/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 22.3, + "display": 40.2, + "value": null +} diff --git a/site/public/v1/smartphones/8-dual-sim-td-lte-am/index.json b/site/public/v1/smartphones/8-dual-sim-td-lte-am/index.json new file mode 100644 index 00000000000..0da6c9b2991 --- /dev/null +++ b/site/public/v1/smartphones/8-dual-sim-td-lte-am/index.json @@ -0,0 +1,76 @@ +{ + "id": 2342, + "slug": "8-dual-sim-td-lte-am", + "name": "8 Dual SIM TD-LTE AM", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 122, + "slug": "snapdragon-835", + "name": "Snapdragon 835", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 540", + "url": "/v1/socs/snapdragon-835" + }, + "release_date": "2017-09-27", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.27, + "resolution": "1440x2560", + "type": "Color IPS TFT LCD display", + "ppi": 557 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3090, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 23.1, + "camera": 5.2, + "battery": 1.4, + "display": 60.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.444874", + "updated_at": "2026-06-19T00:43:44.444874" +} diff --git a/site/public/v1/smartphones/8-dual-sim-td-lte-am/score/index.json b/site/public/v1/smartphones/8-dual-sim-td-lte-am/score/index.json new file mode 100644 index 00000000000..8cad46b1844 --- /dev/null +++ b/site/public/v1/smartphones/8-dual-sim-td-lte-am/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 23.1, + "camera": 5.2, + "battery": 1.4, + "display": 60.7, + "value": null +} diff --git a/site/public/v1/smartphones/8-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-in2020/index.json b/site/public/v1/smartphones/8-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-in2020/index.json new file mode 100644 index 00000000000..ca4f3ac9a9b --- /dev/null +++ b/site/public/v1/smartphones/8-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-in2020/index.json @@ -0,0 +1,77 @@ +{ + "id": 2574, + "slug": "8-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-in2020", + "name": "8 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB IN2020", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-17", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 513 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4510, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.9, + "performance": 6.0, + "camera": 16.5, + "battery": 25.5, + "display": 63.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.475785", + "updated_at": "2026-06-19T00:43:44.475785" +} diff --git a/site/public/v1/smartphones/8-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-in2020/score/index.json b/site/public/v1/smartphones/8-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-in2020/score/index.json new file mode 100644 index 00000000000..e91bfd5e976 --- /dev/null +++ b/site/public/v1/smartphones/8-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-in2020/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.9, + "performance": 6.0, + "camera": 16.5, + "battery": 25.5, + "display": 63.8, + "value": null +} diff --git a/site/public/v1/smartphones/8-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-in2021/index.json b/site/public/v1/smartphones/8-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-in2021/index.json new file mode 100644 index 00000000000..c97a123d145 --- /dev/null +++ b/site/public/v1/smartphones/8-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-in2021/index.json @@ -0,0 +1,77 @@ +{ + "id": 2575, + "slug": "8-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-in2021", + "name": "8 Pro 5G Premium Edition Dual SIM TD-LTE IN 128GB IN2021", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-05-29", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.78, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 513 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4510, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.2, + "performance": 3.0, + "camera": 16.5, + "battery": 25.5, + "display": 63.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.475785", + "updated_at": "2026-06-19T00:43:44.475785" +} diff --git a/site/public/v1/smartphones/8-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-in2021/score/index.json b/site/public/v1/smartphones/8-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-in2021/score/index.json new file mode 100644 index 00000000000..bf070b7436a --- /dev/null +++ b/site/public/v1/smartphones/8-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-in2021/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.2, + "performance": 3.0, + "camera": 16.5, + "battery": 25.5, + "display": 63.8, + "value": null +} diff --git a/site/public/v1/smartphones/8-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-in2021/index.json b/site/public/v1/smartphones/8-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-in2021/index.json new file mode 100644 index 00000000000..21328b9b1e7 --- /dev/null +++ b/site/public/v1/smartphones/8-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-in2021/index.json @@ -0,0 +1,77 @@ +{ + "id": 2576, + "slug": "8-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-in2021", + "name": "8 Pro 5G Premium Edition Dual SIM TD-LTE IN 256GB IN2021", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-05-29", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 513 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4510, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.9, + "performance": 6.0, + "camera": 16.5, + "battery": 25.5, + "display": 63.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.475785", + "updated_at": "2026-06-19T00:43:44.475785" +} diff --git a/site/public/v1/smartphones/8-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-in2021/score/index.json b/site/public/v1/smartphones/8-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-in2021/score/index.json new file mode 100644 index 00000000000..e91bfd5e976 --- /dev/null +++ b/site/public/v1/smartphones/8-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-in2021/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.9, + "performance": 6.0, + "camera": 16.5, + "battery": 25.5, + "display": 63.8, + "value": null +} diff --git a/site/public/v1/smartphones/8-pro-5g-premium-edition-dual-sim-td-lte-na-256gb-in2025/index.json b/site/public/v1/smartphones/8-pro-5g-premium-edition-dual-sim-td-lte-na-256gb-in2025/index.json new file mode 100644 index 00000000000..5b78e46e1dc --- /dev/null +++ b/site/public/v1/smartphones/8-pro-5g-premium-edition-dual-sim-td-lte-na-256gb-in2025/index.json @@ -0,0 +1,77 @@ +{ + "id": 2577, + "slug": "8-pro-5g-premium-edition-dual-sim-td-lte-na-256gb-in2025", + "name": "8 Pro 5G Premium Edition Dual SIM TD-LTE NA 256GB IN2025", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-29", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 513 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4510, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.9, + "performance": 6.0, + "camera": 16.5, + "battery": 25.5, + "display": 63.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.475785", + "updated_at": "2026-06-19T00:43:44.475785" +} diff --git a/site/public/v1/smartphones/8-pro-5g-premium-edition-dual-sim-td-lte-na-256gb-in2025/score/index.json b/site/public/v1/smartphones/8-pro-5g-premium-edition-dual-sim-td-lte-na-256gb-in2025/score/index.json new file mode 100644 index 00000000000..e91bfd5e976 --- /dev/null +++ b/site/public/v1/smartphones/8-pro-5g-premium-edition-dual-sim-td-lte-na-256gb-in2025/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.9, + "performance": 6.0, + "camera": 16.5, + "battery": 25.5, + "display": 63.8, + "value": null +} diff --git a/site/public/v1/smartphones/8-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-in2023/index.json b/site/public/v1/smartphones/8-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-in2023/index.json new file mode 100644 index 00000000000..8db896c1293 --- /dev/null +++ b/site/public/v1/smartphones/8-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-in2023/index.json @@ -0,0 +1,77 @@ +{ + "id": 2578, + "slug": "8-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-in2023", + "name": "8 Pro 5G Premium Edition Global Dual SIM TD-LTE 256GB IN2023", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-21", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 513 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4510, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.9, + "performance": 6.0, + "camera": 16.5, + "battery": 25.5, + "display": 63.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.475785", + "updated_at": "2026-06-19T00:43:44.475785" +} diff --git a/site/public/v1/smartphones/8-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-in2023/score/index.json b/site/public/v1/smartphones/8-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-in2023/score/index.json new file mode 100644 index 00000000000..e91bfd5e976 --- /dev/null +++ b/site/public/v1/smartphones/8-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-in2023/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.9, + "performance": 6.0, + "camera": 16.5, + "battery": 25.5, + "display": 63.8, + "value": null +} diff --git a/site/public/v1/smartphones/8-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-in2020/index.json b/site/public/v1/smartphones/8-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-in2020/index.json new file mode 100644 index 00000000000..2104d5b92cb --- /dev/null +++ b/site/public/v1/smartphones/8-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-in2020/index.json @@ -0,0 +1,77 @@ +{ + "id": 2579, + "slug": "8-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-in2020", + "name": "8 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB IN2020", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-17", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.78, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 513 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4510, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.2, + "performance": 3.0, + "camera": 16.5, + "battery": 25.5, + "display": 63.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.475785", + "updated_at": "2026-06-19T00:43:44.475785" +} diff --git a/site/public/v1/smartphones/8-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-in2020/score/index.json b/site/public/v1/smartphones/8-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-in2020/score/index.json new file mode 100644 index 00000000000..bf070b7436a --- /dev/null +++ b/site/public/v1/smartphones/8-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-in2020/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.2, + "performance": 3.0, + "camera": 16.5, + "battery": 25.5, + "display": 63.8, + "value": null +} diff --git a/site/public/v1/smartphones/8-pro-5g-standard-edition-dual-sim-td-lte-na-128gb-in2025/index.json b/site/public/v1/smartphones/8-pro-5g-standard-edition-dual-sim-td-lte-na-128gb-in2025/index.json new file mode 100644 index 00000000000..3a113cd2400 --- /dev/null +++ b/site/public/v1/smartphones/8-pro-5g-standard-edition-dual-sim-td-lte-na-128gb-in2025/index.json @@ -0,0 +1,77 @@ +{ + "id": 2580, + "slug": "8-pro-5g-standard-edition-dual-sim-td-lte-na-128gb-in2025", + "name": "8 Pro 5G Standard Edition Dual SIM TD-LTE NA 128GB IN2025", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-29", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.78, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 513 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4510, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.2, + "performance": 3.0, + "camera": 16.5, + "battery": 25.5, + "display": 63.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.476785", + "updated_at": "2026-06-19T00:43:44.476785" +} diff --git a/site/public/v1/smartphones/8-pro-5g-standard-edition-dual-sim-td-lte-na-128gb-in2025/score/index.json b/site/public/v1/smartphones/8-pro-5g-standard-edition-dual-sim-td-lte-na-128gb-in2025/score/index.json new file mode 100644 index 00000000000..bf070b7436a --- /dev/null +++ b/site/public/v1/smartphones/8-pro-5g-standard-edition-dual-sim-td-lte-na-128gb-in2025/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.2, + "performance": 3.0, + "camera": 16.5, + "battery": 25.5, + "display": 63.8, + "value": null +} diff --git a/site/public/v1/smartphones/8-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-in2023/index.json b/site/public/v1/smartphones/8-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-in2023/index.json new file mode 100644 index 00000000000..ab10f5a54d5 --- /dev/null +++ b/site/public/v1/smartphones/8-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-in2023/index.json @@ -0,0 +1,77 @@ +{ + "id": 2581, + "slug": "8-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-in2023", + "name": "8 Pro 5G Standard Edition Global Dual SIM TD-LTE 128GB IN2023", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-21", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.78, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 513 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4510, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.2, + "performance": 3.0, + "camera": 16.5, + "battery": 25.5, + "display": 63.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.476785", + "updated_at": "2026-06-19T00:43:44.476785" +} diff --git a/site/public/v1/smartphones/8-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-in2023/score/index.json b/site/public/v1/smartphones/8-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-in2023/score/index.json new file mode 100644 index 00000000000..bf070b7436a --- /dev/null +++ b/site/public/v1/smartphones/8-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-in2023/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.2, + "performance": 3.0, + "camera": 16.5, + "battery": 25.5, + "display": 63.8, + "value": null +} diff --git a/site/public/v1/smartphones/8-v-5g-uw-td-lte-us/index.json b/site/public/v1/smartphones/8-v-5g-uw-td-lte-us/index.json new file mode 100644 index 00000000000..ed09aa32aa3 --- /dev/null +++ b/site/public/v1/smartphones/8-v-5g-uw-td-lte-us/index.json @@ -0,0 +1,77 @@ +{ + "id": 2451, + "slug": "8-v-5g-uw-td-lte-us", + "name": "8 V 5G UW TD-LTE US", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-11-12", + "msrp_usd": 699, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.81, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 226.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 1.5, + "camera": 21.5, + "battery": 23.1, + "display": 26.1, + "value": 43.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.459275", + "updated_at": "2026-06-19T00:43:44.459275" +} diff --git a/site/public/v1/smartphones/8-v-5g-uw-td-lte-us/score/index.json b/site/public/v1/smartphones/8-v-5g-uw-td-lte-us/score/index.json new file mode 100644 index 00000000000..daf8e1bf914 --- /dev/null +++ b/site/public/v1/smartphones/8-v-5g-uw-td-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 1.5, + "camera": 21.5, + "battery": 23.1, + "display": 26.1, + "value": 43.7 +} diff --git a/site/public/v1/smartphones/8t-5g-premium-edition-dual-sim-td-lte-cn-256gb-kb2000/index.json b/site/public/v1/smartphones/8t-5g-premium-edition-dual-sim-td-lte-cn-256gb-kb2000/index.json new file mode 100644 index 00000000000..2d5db91f9f3 --- /dev/null +++ b/site/public/v1/smartphones/8t-5g-premium-edition-dual-sim-td-lte-cn-256gb-kb2000/index.json @@ -0,0 +1,77 @@ +{ + "id": 2584, + "slug": "8t-5g-premium-edition-dual-sim-td-lte-cn-256gb-kb2000", + "name": "8T 5G Premium Edition Dual SIM TD-LTE CN 256GB KB2000", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-10-13", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.8, + "performance": 6.0, + "camera": 16.5, + "battery": 32.0, + "display": 52.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.476785", + "updated_at": "2026-06-19T00:43:44.476785" +} diff --git a/site/public/v1/smartphones/8t-5g-premium-edition-dual-sim-td-lte-cn-256gb-kb2000/score/index.json b/site/public/v1/smartphones/8t-5g-premium-edition-dual-sim-td-lte-cn-256gb-kb2000/score/index.json new file mode 100644 index 00000000000..f989be9f83e --- /dev/null +++ b/site/public/v1/smartphones/8t-5g-premium-edition-dual-sim-td-lte-cn-256gb-kb2000/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.8, + "performance": 6.0, + "camera": 16.5, + "battery": 32.0, + "display": 52.7, + "value": null +} diff --git a/site/public/v1/smartphones/8t-5g-premium-edition-dual-sim-td-lte-in-256gb-kb2001/index.json b/site/public/v1/smartphones/8t-5g-premium-edition-dual-sim-td-lte-in-256gb-kb2001/index.json new file mode 100644 index 00000000000..43d655c1711 --- /dev/null +++ b/site/public/v1/smartphones/8t-5g-premium-edition-dual-sim-td-lte-in-256gb-kb2001/index.json @@ -0,0 +1,77 @@ +{ + "id": 2585, + "slug": "8t-5g-premium-edition-dual-sim-td-lte-in-256gb-kb2001", + "name": "8T 5G Premium Edition Dual SIM TD-LTE IN 256GB KB2001", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-10-14", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.8, + "performance": 6.0, + "camera": 16.5, + "battery": 32.0, + "display": 52.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.476785", + "updated_at": "2026-06-19T00:43:44.476785" +} diff --git a/site/public/v1/smartphones/8t-5g-premium-edition-dual-sim-td-lte-in-256gb-kb2001/score/index.json b/site/public/v1/smartphones/8t-5g-premium-edition-dual-sim-td-lte-in-256gb-kb2001/score/index.json new file mode 100644 index 00000000000..f989be9f83e --- /dev/null +++ b/site/public/v1/smartphones/8t-5g-premium-edition-dual-sim-td-lte-in-256gb-kb2001/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.8, + "performance": 6.0, + "camera": 16.5, + "battery": 32.0, + "display": 52.7, + "value": null +} diff --git a/site/public/v1/smartphones/8t-5g-premium-edition-dual-sim-td-lte-na-256gb-kb2005/index.json b/site/public/v1/smartphones/8t-5g-premium-edition-dual-sim-td-lte-na-256gb-kb2005/index.json new file mode 100644 index 00000000000..1611bc621af --- /dev/null +++ b/site/public/v1/smartphones/8t-5g-premium-edition-dual-sim-td-lte-na-256gb-kb2005/index.json @@ -0,0 +1,77 @@ +{ + "id": 2586, + "slug": "8t-5g-premium-edition-dual-sim-td-lte-na-256gb-kb2005", + "name": "8T 5G Premium Edition Dual SIM TD-LTE NA 256GB KB2005", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-10-14", + "msrp_usd": 749, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.8, + "performance": 6.0, + "camera": 16.5, + "battery": 32.0, + "display": 52.7, + "value": 46.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.477785", + "updated_at": "2026-06-19T00:43:44.477785" +} diff --git a/site/public/v1/smartphones/8t-5g-premium-edition-dual-sim-td-lte-na-256gb-kb2005/score/index.json b/site/public/v1/smartphones/8t-5g-premium-edition-dual-sim-td-lte-na-256gb-kb2005/score/index.json new file mode 100644 index 00000000000..203085f65cb --- /dev/null +++ b/site/public/v1/smartphones/8t-5g-premium-edition-dual-sim-td-lte-na-256gb-kb2005/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.8, + "performance": 6.0, + "camera": 16.5, + "battery": 32.0, + "display": 52.7, + "value": 46.1 +} diff --git a/site/public/v1/smartphones/8t-5g-premium-edition-dual-sim-td-lte-us-256gb-kb2007/index.json b/site/public/v1/smartphones/8t-5g-premium-edition-dual-sim-td-lte-us-256gb-kb2007/index.json new file mode 100644 index 00000000000..63af5ca84c2 --- /dev/null +++ b/site/public/v1/smartphones/8t-5g-premium-edition-dual-sim-td-lte-us-256gb-kb2007/index.json @@ -0,0 +1,77 @@ +{ + "id": 2587, + "slug": "8t-5g-premium-edition-dual-sim-td-lte-us-256gb-kb2007", + "name": "8T+ 5G Premium Edition Dual SIM TD-LTE US 256GB KB2007", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-10-01", + "msrp_usd": 750, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.8, + "performance": 6.0, + "camera": 16.5, + "battery": 32.0, + "display": 52.7, + "value": 46.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.477785", + "updated_at": "2026-06-19T00:43:44.477785" +} diff --git a/site/public/v1/smartphones/8t-5g-premium-edition-dual-sim-td-lte-us-256gb-kb2007/score/index.json b/site/public/v1/smartphones/8t-5g-premium-edition-dual-sim-td-lte-us-256gb-kb2007/score/index.json new file mode 100644 index 00000000000..203085f65cb --- /dev/null +++ b/site/public/v1/smartphones/8t-5g-premium-edition-dual-sim-td-lte-us-256gb-kb2007/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.8, + "performance": 6.0, + "camera": 16.5, + "battery": 32.0, + "display": 52.7, + "value": 46.1 +} diff --git a/site/public/v1/smartphones/8t-5g-premium-edition-global-dual-sim-td-lte-256gb-kb2003/index.json b/site/public/v1/smartphones/8t-5g-premium-edition-global-dual-sim-td-lte-256gb-kb2003/index.json new file mode 100644 index 00000000000..130b68fceed --- /dev/null +++ b/site/public/v1/smartphones/8t-5g-premium-edition-global-dual-sim-td-lte-256gb-kb2003/index.json @@ -0,0 +1,77 @@ +{ + "id": 2588, + "slug": "8t-5g-premium-edition-global-dual-sim-td-lte-256gb-kb2003", + "name": "8T 5G Premium Edition Global Dual SIM TD-LTE 256GB KB2003", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-10-16", + "msrp_usd": 778, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.8, + "performance": 6.0, + "camera": 16.5, + "battery": 32.0, + "display": 52.7, + "value": 45.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.477785", + "updated_at": "2026-06-19T00:43:44.477785" +} diff --git a/site/public/v1/smartphones/8t-5g-premium-edition-global-dual-sim-td-lte-256gb-kb2003/score/index.json b/site/public/v1/smartphones/8t-5g-premium-edition-global-dual-sim-td-lte-256gb-kb2003/score/index.json new file mode 100644 index 00000000000..3ef2da7bdd5 --- /dev/null +++ b/site/public/v1/smartphones/8t-5g-premium-edition-global-dual-sim-td-lte-256gb-kb2003/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.8, + "performance": 6.0, + "camera": 16.5, + "battery": 32.0, + "display": 52.7, + "value": 45.0 +} diff --git a/site/public/v1/smartphones/8t-5g-standard-edition-dual-sim-td-lte-cn-128gb-kb2000/index.json b/site/public/v1/smartphones/8t-5g-standard-edition-dual-sim-td-lte-cn-128gb-kb2000/index.json new file mode 100644 index 00000000000..64393884d05 --- /dev/null +++ b/site/public/v1/smartphones/8t-5g-standard-edition-dual-sim-td-lte-cn-128gb-kb2000/index.json @@ -0,0 +1,77 @@ +{ + "id": 2589, + "slug": "8t-5g-standard-edition-dual-sim-td-lte-cn-128gb-kb2000", + "name": "8T 5G Standard Edition Dual SIM TD-LTE CN 128GB KB2000", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-10-13", + "msrp_usd": 3399, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.1, + "performance": 3.0, + "camera": 16.5, + "battery": 32.0, + "display": 52.7, + "value": 13.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.477785", + "updated_at": "2026-06-19T00:43:44.477785" +} diff --git a/site/public/v1/smartphones/8t-5g-standard-edition-dual-sim-td-lte-cn-128gb-kb2000/score/index.json b/site/public/v1/smartphones/8t-5g-standard-edition-dual-sim-td-lte-cn-128gb-kb2000/score/index.json new file mode 100644 index 00000000000..8f95a20955a --- /dev/null +++ b/site/public/v1/smartphones/8t-5g-standard-edition-dual-sim-td-lte-cn-128gb-kb2000/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.1, + "performance": 3.0, + "camera": 16.5, + "battery": 32.0, + "display": 52.7, + "value": 13.1 +} diff --git a/site/public/v1/smartphones/8t-5g-standard-edition-dual-sim-td-lte-in-128gb-kb2001/index.json b/site/public/v1/smartphones/8t-5g-standard-edition-dual-sim-td-lte-in-128gb-kb2001/index.json new file mode 100644 index 00000000000..38c390af3e8 --- /dev/null +++ b/site/public/v1/smartphones/8t-5g-standard-edition-dual-sim-td-lte-in-128gb-kb2001/index.json @@ -0,0 +1,77 @@ +{ + "id": 2590, + "slug": "8t-5g-standard-edition-dual-sim-td-lte-in-128gb-kb2001", + "name": "8T 5G Standard Edition Dual SIM TD-LTE IN 128GB KB2001", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-10-14", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.1, + "performance": 3.0, + "camera": 16.5, + "battery": 32.0, + "display": 52.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.477785", + "updated_at": "2026-06-19T00:43:44.477785" +} diff --git a/site/public/v1/smartphones/8t-5g-standard-edition-dual-sim-td-lte-in-128gb-kb2001/score/index.json b/site/public/v1/smartphones/8t-5g-standard-edition-dual-sim-td-lte-in-128gb-kb2001/score/index.json new file mode 100644 index 00000000000..ca3e3168100 --- /dev/null +++ b/site/public/v1/smartphones/8t-5g-standard-edition-dual-sim-td-lte-in-128gb-kb2001/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.1, + "performance": 3.0, + "camera": 16.5, + "battery": 32.0, + "display": 52.7, + "value": null +} diff --git a/site/public/v1/smartphones/8t-5g-standard-edition-dual-sim-td-lte-na-128gb-kb2005/index.json b/site/public/v1/smartphones/8t-5g-standard-edition-dual-sim-td-lte-na-128gb-kb2005/index.json new file mode 100644 index 00000000000..5504d2342a4 --- /dev/null +++ b/site/public/v1/smartphones/8t-5g-standard-edition-dual-sim-td-lte-na-128gb-kb2005/index.json @@ -0,0 +1,77 @@ +{ + "id": 2591, + "slug": "8t-5g-standard-edition-dual-sim-td-lte-na-128gb-kb2005", + "name": "8T 5G Standard Edition Dual SIM TD-LTE NA 128GB KB2005", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-10-14", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.1, + "performance": 3.0, + "camera": 16.5, + "battery": 32.0, + "display": 52.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.477785", + "updated_at": "2026-06-19T00:43:44.477785" +} diff --git a/site/public/v1/smartphones/8t-5g-standard-edition-dual-sim-td-lte-na-128gb-kb2005/score/index.json b/site/public/v1/smartphones/8t-5g-standard-edition-dual-sim-td-lte-na-128gb-kb2005/score/index.json new file mode 100644 index 00000000000..ca3e3168100 --- /dev/null +++ b/site/public/v1/smartphones/8t-5g-standard-edition-dual-sim-td-lte-na-128gb-kb2005/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.1, + "performance": 3.0, + "camera": 16.5, + "battery": 32.0, + "display": 52.7, + "value": null +} diff --git a/site/public/v1/smartphones/8t-5g-standard-edition-global-dual-sim-td-lte-128gb-kb2003/index.json b/site/public/v1/smartphones/8t-5g-standard-edition-global-dual-sim-td-lte-128gb-kb2003/index.json new file mode 100644 index 00000000000..7a9e5afa274 --- /dev/null +++ b/site/public/v1/smartphones/8t-5g-standard-edition-global-dual-sim-td-lte-128gb-kb2003/index.json @@ -0,0 +1,77 @@ +{ + "id": 2592, + "slug": "8t-5g-standard-edition-global-dual-sim-td-lte-128gb-kb2003", + "name": "8T 5G Standard Edition Global Dual SIM TD-LTE 128GB KB2003", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-10-16", + "msrp_usd": 667, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.1, + "performance": 3.0, + "camera": 16.5, + "battery": 32.0, + "display": 52.7, + "value": 49.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.477785", + "updated_at": "2026-06-19T00:43:44.477785" +} diff --git a/site/public/v1/smartphones/8t-5g-standard-edition-global-dual-sim-td-lte-128gb-kb2003/score/index.json b/site/public/v1/smartphones/8t-5g-standard-edition-global-dual-sim-td-lte-128gb-kb2003/score/index.json new file mode 100644 index 00000000000..b8f9c6ef5c5 --- /dev/null +++ b/site/public/v1/smartphones/8t-5g-standard-edition-global-dual-sim-td-lte-128gb-kb2003/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.1, + "performance": 3.0, + "camera": 16.5, + "battery": 32.0, + "display": 52.7, + "value": 49.0 +} diff --git a/site/public/v1/smartphones/8t-cyberpunk-2077-edition/index.json b/site/public/v1/smartphones/8t-cyberpunk-2077-edition/index.json new file mode 100644 index 00000000000..f8bbf392017 --- /dev/null +++ b/site/public/v1/smartphones/8t-cyberpunk-2077-edition/index.json @@ -0,0 +1,70 @@ +{ + "id": 2593, + "slug": "8t-cyberpunk-2077-edition", + "name": "8T Cyberpunk 2077 Edition", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-01-01", + "msrp_usd": 749, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 6.0, + "camera": 16.5, + "battery": 22.5, + "display": null, + "value": 40.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.477785", + "updated_at": "2026-06-19T00:43:44.477785" +} diff --git a/site/public/v1/smartphones/8t-cyberpunk-2077-edition/score/index.json b/site/public/v1/smartphones/8t-cyberpunk-2077-edition/score/index.json new file mode 100644 index 00000000000..96a38142cf0 --- /dev/null +++ b/site/public/v1/smartphones/8t-cyberpunk-2077-edition/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 6.0, + "camera": 16.5, + "battery": 22.5, + "display": null, + "value": 40.2 +} diff --git a/site/public/v1/smartphones/9-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2110/index.json b/site/public/v1/smartphones/9-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2110/index.json new file mode 100644 index 00000000000..959185ef921 --- /dev/null +++ b/site/public/v1/smartphones/9-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2110/index.json @@ -0,0 +1,77 @@ +{ + "id": 2619, + "slug": "9-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2110", + "name": "9 5G Premium Edition Dual SIM TD-LTE CN 256GB LE2110", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.2, + "performance": 9.4, + "camera": 16.5, + "battery": 42.0, + "display": 52.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.482296", + "updated_at": "2026-06-19T00:43:44.482296" +} diff --git a/site/public/v1/smartphones/9-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2110/score/index.json b/site/public/v1/smartphones/9-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2110/score/index.json new file mode 100644 index 00000000000..4fe2e1bdff8 --- /dev/null +++ b/site/public/v1/smartphones/9-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2110/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.2, + "performance": 9.4, + "camera": 16.5, + "battery": 42.0, + "display": 52.7, + "value": null +} diff --git a/site/public/v1/smartphones/9-5g-premium-edition-dual-sim-td-lte-in-256gb-le2111/index.json b/site/public/v1/smartphones/9-5g-premium-edition-dual-sim-td-lte-in-256gb-le2111/index.json new file mode 100644 index 00000000000..7e1c65dd568 --- /dev/null +++ b/site/public/v1/smartphones/9-5g-premium-edition-dual-sim-td-lte-in-256gb-le2111/index.json @@ -0,0 +1,77 @@ +{ + "id": 2620, + "slug": "9-5g-premium-edition-dual-sim-td-lte-in-256gb-le2111", + "name": "9 5G Premium Edition Dual SIM TD-LTE IN 256GB LE2111", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-29", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.2, + "performance": 9.4, + "camera": 16.5, + "battery": 42.0, + "display": 52.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.482296", + "updated_at": "2026-06-19T00:43:44.482296" +} diff --git a/site/public/v1/smartphones/9-5g-premium-edition-dual-sim-td-lte-in-256gb-le2111/score/index.json b/site/public/v1/smartphones/9-5g-premium-edition-dual-sim-td-lte-in-256gb-le2111/score/index.json new file mode 100644 index 00000000000..4fe2e1bdff8 --- /dev/null +++ b/site/public/v1/smartphones/9-5g-premium-edition-dual-sim-td-lte-in-256gb-le2111/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.2, + "performance": 9.4, + "camera": 16.5, + "battery": 42.0, + "display": 52.7, + "value": null +} diff --git a/site/public/v1/smartphones/9-5g-premium-edition-global-dual-sim-td-lte-256gb-le2113/index.json b/site/public/v1/smartphones/9-5g-premium-edition-global-dual-sim-td-lte-256gb-le2113/index.json new file mode 100644 index 00000000000..088231f61b5 --- /dev/null +++ b/site/public/v1/smartphones/9-5g-premium-edition-global-dual-sim-td-lte-256gb-le2113/index.json @@ -0,0 +1,77 @@ +{ + "id": 2621, + "slug": "9-5g-premium-edition-global-dual-sim-td-lte-256gb-le2113", + "name": "9 5G Premium Edition Global Dual SIM TD-LTE 256GB LE2113", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-29", + "msrp_usd": 859, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.2, + "performance": 9.4, + "camera": 16.5, + "battery": 42.0, + "display": 52.7, + "value": 43.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.482296", + "updated_at": "2026-06-19T00:43:44.482296" +} diff --git a/site/public/v1/smartphones/9-5g-premium-edition-global-dual-sim-td-lte-256gb-le2113/score/index.json b/site/public/v1/smartphones/9-5g-premium-edition-global-dual-sim-td-lte-256gb-le2113/score/index.json new file mode 100644 index 00000000000..039770b9fb5 --- /dev/null +++ b/site/public/v1/smartphones/9-5g-premium-edition-global-dual-sim-td-lte-256gb-le2113/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.2, + "performance": 9.4, + "camera": 16.5, + "battery": 42.0, + "display": 52.7, + "value": 43.6 +} diff --git a/site/public/v1/smartphones/9-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2110/index.json b/site/public/v1/smartphones/9-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2110/index.json new file mode 100644 index 00000000000..0fcf816ec7e --- /dev/null +++ b/site/public/v1/smartphones/9-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2110/index.json @@ -0,0 +1,77 @@ +{ + "id": 2622, + "slug": "9-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2110", + "name": "9 5G Standard Edition Dual SIM TD-LTE CN 128GB LE2110", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.4, + "performance": 6.4, + "camera": 16.5, + "battery": 42.0, + "display": 52.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.482296", + "updated_at": "2026-06-19T00:43:44.482296" +} diff --git a/site/public/v1/smartphones/9-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2110/score/index.json b/site/public/v1/smartphones/9-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2110/score/index.json new file mode 100644 index 00000000000..5d76b37813a --- /dev/null +++ b/site/public/v1/smartphones/9-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2110/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.4, + "performance": 6.4, + "camera": 16.5, + "battery": 42.0, + "display": 52.7, + "value": null +} diff --git a/site/public/v1/smartphones/9-5g-standard-edition-dual-sim-td-lte-in-128gb-le2111/index.json b/site/public/v1/smartphones/9-5g-standard-edition-dual-sim-td-lte-in-128gb-le2111/index.json new file mode 100644 index 00000000000..5657edd85cb --- /dev/null +++ b/site/public/v1/smartphones/9-5g-standard-edition-dual-sim-td-lte-in-128gb-le2111/index.json @@ -0,0 +1,77 @@ +{ + "id": 2623, + "slug": "9-5g-standard-edition-dual-sim-td-lte-in-128gb-le2111", + "name": "9 5G Standard Edition Dual SIM TD-LTE IN 128GB LE2111", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-29", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.4, + "performance": 6.4, + "camera": 16.5, + "battery": 42.0, + "display": 52.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.482296", + "updated_at": "2026-06-19T00:43:44.482296" +} diff --git a/site/public/v1/smartphones/9-5g-standard-edition-dual-sim-td-lte-in-128gb-le2111/score/index.json b/site/public/v1/smartphones/9-5g-standard-edition-dual-sim-td-lte-in-128gb-le2111/score/index.json new file mode 100644 index 00000000000..5d76b37813a --- /dev/null +++ b/site/public/v1/smartphones/9-5g-standard-edition-dual-sim-td-lte-in-128gb-le2111/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.4, + "performance": 6.4, + "camera": 16.5, + "battery": 42.0, + "display": 52.7, + "value": null +} diff --git a/site/public/v1/smartphones/9-5g-standard-edition-global-dual-sim-td-lte-128gb-le2113/index.json b/site/public/v1/smartphones/9-5g-standard-edition-global-dual-sim-td-lte-128gb-le2113/index.json new file mode 100644 index 00000000000..52a1cdc68da --- /dev/null +++ b/site/public/v1/smartphones/9-5g-standard-edition-global-dual-sim-td-lte-128gb-le2113/index.json @@ -0,0 +1,77 @@ +{ + "id": 2624, + "slug": "9-5g-standard-edition-global-dual-sim-td-lte-128gb-le2113", + "name": "9 5G Standard Edition Global Dual SIM TD-LTE 128GB LE2113", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-29", + "msrp_usd": 759, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.4, + "performance": 6.4, + "camera": 16.5, + "battery": 42.0, + "display": 52.7, + "value": 47.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.482296", + "updated_at": "2026-06-19T00:43:44.482296" +} diff --git a/site/public/v1/smartphones/9-5g-standard-edition-global-dual-sim-td-lte-128gb-le2113/score/index.json b/site/public/v1/smartphones/9-5g-standard-edition-global-dual-sim-td-lte-128gb-le2113/score/index.json new file mode 100644 index 00000000000..d828b1b1b60 --- /dev/null +++ b/site/public/v1/smartphones/9-5g-standard-edition-global-dual-sim-td-lte-128gb-le2113/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.4, + "performance": 6.4, + "camera": 16.5, + "battery": 42.0, + "display": 52.7, + "value": 47.0 +} diff --git a/site/public/v1/smartphones/9-5g-standard-edition-td-lte-na-128gb-le2115/index.json b/site/public/v1/smartphones/9-5g-standard-edition-td-lte-na-128gb-le2115/index.json new file mode 100644 index 00000000000..1cef7474413 --- /dev/null +++ b/site/public/v1/smartphones/9-5g-standard-edition-td-lte-na-128gb-le2115/index.json @@ -0,0 +1,77 @@ +{ + "id": 2625, + "slug": "9-5g-standard-edition-td-lte-na-128gb-le2115", + "name": "9 5G Standard Edition TD-LTE NA 128GB LE2115", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-29", + "msrp_usd": 729, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.4, + "performance": 6.4, + "camera": 16.5, + "battery": 42.0, + "display": 52.7, + "value": 48.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.483308", + "updated_at": "2026-06-19T00:43:44.483308" +} diff --git a/site/public/v1/smartphones/9-5g-standard-edition-td-lte-na-128gb-le2115/score/index.json b/site/public/v1/smartphones/9-5g-standard-edition-td-lte-na-128gb-le2115/score/index.json new file mode 100644 index 00000000000..06e1eac16cd --- /dev/null +++ b/site/public/v1/smartphones/9-5g-standard-edition-td-lte-na-128gb-le2115/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.4, + "performance": 6.4, + "camera": 16.5, + "battery": 42.0, + "display": 52.7, + "value": 48.2 +} diff --git a/site/public/v1/smartphones/9-5g-standard-edition-td-lte-us-128gb-le2117/index.json b/site/public/v1/smartphones/9-5g-standard-edition-td-lte-us-128gb-le2117/index.json new file mode 100644 index 00000000000..df80545d981 --- /dev/null +++ b/site/public/v1/smartphones/9-5g-standard-edition-td-lte-us-128gb-le2117/index.json @@ -0,0 +1,77 @@ +{ + "id": 2626, + "slug": "9-5g-standard-edition-td-lte-us-128gb-le2117", + "name": "9 5G Standard Edition TD-LTE US 128GB LE2117", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-29", + "msrp_usd": 730, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.4, + "performance": 6.4, + "camera": 16.5, + "battery": 42.0, + "display": 52.7, + "value": 48.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.483308", + "updated_at": "2026-06-19T00:43:44.483308" +} diff --git a/site/public/v1/smartphones/9-5g-standard-edition-td-lte-us-128gb-le2117/score/index.json b/site/public/v1/smartphones/9-5g-standard-edition-td-lte-us-128gb-le2117/score/index.json new file mode 100644 index 00000000000..06e1eac16cd --- /dev/null +++ b/site/public/v1/smartphones/9-5g-standard-edition-td-lte-us-128gb-le2117/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.4, + "performance": 6.4, + "camera": 16.5, + "battery": 42.0, + "display": 52.7, + "value": 48.2 +} diff --git a/site/public/v1/smartphones/9-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2120/index.json b/site/public/v1/smartphones/9-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2120/index.json new file mode 100644 index 00000000000..70e758e4de4 --- /dev/null +++ b/site/public/v1/smartphones/9-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2120/index.json @@ -0,0 +1,77 @@ +{ + "id": 2627, + "slug": "9-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2120", + "name": "9 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB LE2120", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3216", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.2, + "performance": 9.4, + "camera": 16.5, + "battery": 42.0, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.483308", + "updated_at": "2026-06-19T00:43:44.483308" +} diff --git a/site/public/v1/smartphones/9-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2120/score/index.json b/site/public/v1/smartphones/9-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2120/score/index.json new file mode 100644 index 00000000000..eb17b702c23 --- /dev/null +++ b/site/public/v1/smartphones/9-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2120/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.2, + "performance": 9.4, + "camera": 16.5, + "battery": 42.0, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/9-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-le2121/index.json b/site/public/v1/smartphones/9-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-le2121/index.json new file mode 100644 index 00000000000..739ebcf8eb5 --- /dev/null +++ b/site/public/v1/smartphones/9-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-le2121/index.json @@ -0,0 +1,77 @@ +{ + "id": 2628, + "slug": "9-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-le2121", + "name": "9 Pro 5G Premium Edition Dual SIM TD-LTE IN 256GB LE2121", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-31", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3216", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.2, + "performance": 9.4, + "camera": 16.5, + "battery": 42.0, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.483308", + "updated_at": "2026-06-19T00:43:44.483308" +} diff --git a/site/public/v1/smartphones/9-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-le2121/score/index.json b/site/public/v1/smartphones/9-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-le2121/score/index.json new file mode 100644 index 00000000000..eb17b702c23 --- /dev/null +++ b/site/public/v1/smartphones/9-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-le2121/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.2, + "performance": 9.4, + "camera": 16.5, + "battery": 42.0, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/9-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-le2123/index.json b/site/public/v1/smartphones/9-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-le2123/index.json new file mode 100644 index 00000000000..e2721a31fbe --- /dev/null +++ b/site/public/v1/smartphones/9-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-le2123/index.json @@ -0,0 +1,77 @@ +{ + "id": 2629, + "slug": "9-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-le2123", + "name": "9 Pro 5G Premium Edition Global Dual SIM TD-LTE 256GB LE2123", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-29", + "msrp_usd": 1049, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3216", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.2, + "performance": 9.4, + "camera": 16.5, + "battery": 42.0, + "display": 65.1, + "value": 37.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.483308", + "updated_at": "2026-06-19T00:43:44.483308" +} diff --git a/site/public/v1/smartphones/9-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-le2123/score/index.json b/site/public/v1/smartphones/9-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-le2123/score/index.json new file mode 100644 index 00000000000..9b4c550686a --- /dev/null +++ b/site/public/v1/smartphones/9-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-le2123/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.2, + "performance": 9.4, + "camera": 16.5, + "battery": 42.0, + "display": 65.1, + "value": 37.8 +} diff --git a/site/public/v1/smartphones/9-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2120/index.json b/site/public/v1/smartphones/9-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2120/index.json new file mode 100644 index 00000000000..3920d1d5603 --- /dev/null +++ b/site/public/v1/smartphones/9-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2120/index.json @@ -0,0 +1,77 @@ +{ + "id": 2630, + "slug": "9-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2120", + "name": "9 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB LE2120", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3216", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 6.4, + "camera": 16.5, + "battery": 42.0, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.483308", + "updated_at": "2026-06-19T00:43:44.483308" +} diff --git a/site/public/v1/smartphones/9-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2120/score/index.json b/site/public/v1/smartphones/9-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2120/score/index.json new file mode 100644 index 00000000000..fbbb474424f --- /dev/null +++ b/site/public/v1/smartphones/9-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2120/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 6.4, + "camera": 16.5, + "battery": 42.0, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/9-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-le2120/index.json b/site/public/v1/smartphones/9-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-le2120/index.json new file mode 100644 index 00000000000..788fe76e345 --- /dev/null +++ b/site/public/v1/smartphones/9-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-le2120/index.json @@ -0,0 +1,77 @@ +{ + "id": 2631, + "slug": "9-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-le2120", + "name": "9 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB LE2120", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3216", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 6.4, + "camera": 16.5, + "battery": 42.0, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.483308", + "updated_at": "2026-06-19T00:43:44.483308" +} diff --git a/site/public/v1/smartphones/9-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-le2120/score/index.json b/site/public/v1/smartphones/9-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-le2120/score/index.json new file mode 100644 index 00000000000..fbbb474424f --- /dev/null +++ b/site/public/v1/smartphones/9-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-le2120/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 6.4, + "camera": 16.5, + "battery": 42.0, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/9-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-le2121/index.json b/site/public/v1/smartphones/9-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-le2121/index.json new file mode 100644 index 00000000000..3ce95536fe2 --- /dev/null +++ b/site/public/v1/smartphones/9-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-le2121/index.json @@ -0,0 +1,77 @@ +{ + "id": 2632, + "slug": "9-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-le2121", + "name": "9 Pro 5G Standard Edition Dual SIM TD-LTE IN 128GB LE2121", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-31", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3216", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 6.4, + "camera": 16.5, + "battery": 42.0, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.484302", + "updated_at": "2026-06-19T00:43:44.484302" +} diff --git a/site/public/v1/smartphones/9-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-le2121/score/index.json b/site/public/v1/smartphones/9-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-le2121/score/index.json new file mode 100644 index 00000000000..fbbb474424f --- /dev/null +++ b/site/public/v1/smartphones/9-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-le2121/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 6.4, + "camera": 16.5, + "battery": 42.0, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/9-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-le2123/index.json b/site/public/v1/smartphones/9-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-le2123/index.json new file mode 100644 index 00000000000..c083aadffa5 --- /dev/null +++ b/site/public/v1/smartphones/9-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-le2123/index.json @@ -0,0 +1,77 @@ +{ + "id": 2633, + "slug": "9-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-le2123", + "name": "9 Pro 5G Standard Edition Global Dual SIM TD-LTE 128GB LE2123", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-29", + "msrp_usd": 949, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3216", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 6.4, + "camera": 16.5, + "battery": 42.0, + "display": 65.1, + "value": 41.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.484302", + "updated_at": "2026-06-19T00:43:44.484302" +} diff --git a/site/public/v1/smartphones/9-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-le2123/score/index.json b/site/public/v1/smartphones/9-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-le2123/score/index.json new file mode 100644 index 00000000000..8e9c2011522 --- /dev/null +++ b/site/public/v1/smartphones/9-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-le2123/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 6.4, + "camera": 16.5, + "battery": 42.0, + "display": 65.1, + "value": 41.3 +} diff --git a/site/public/v1/smartphones/9-pro-5g-uw-td-lte-na-256gb-le2125/index.json b/site/public/v1/smartphones/9-pro-5g-uw-td-lte-na-256gb-le2125/index.json new file mode 100644 index 00000000000..fb3281e005c --- /dev/null +++ b/site/public/v1/smartphones/9-pro-5g-uw-td-lte-na-256gb-le2125/index.json @@ -0,0 +1,77 @@ +{ + "id": 2634, + "slug": "9-pro-5g-uw-td-lte-na-256gb-le2125", + "name": "9 Pro 5G UW TD-LTE NA 256GB LE2125", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-29", + "msrp_usd": 1069, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3216", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.2, + "performance": 9.4, + "camera": 16.5, + "battery": 42.0, + "display": 65.1, + "value": 37.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.484302", + "updated_at": "2026-06-19T00:43:44.484302" +} diff --git a/site/public/v1/smartphones/9-pro-5g-uw-td-lte-na-256gb-le2125/score/index.json b/site/public/v1/smartphones/9-pro-5g-uw-td-lte-na-256gb-le2125/score/index.json new file mode 100644 index 00000000000..cb6f3cbed9d --- /dev/null +++ b/site/public/v1/smartphones/9-pro-5g-uw-td-lte-na-256gb-le2125/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.2, + "performance": 9.4, + "camera": 16.5, + "battery": 42.0, + "display": 65.1, + "value": 37.0 +} diff --git a/site/public/v1/smartphones/9-pro-5g-uw-td-lte-us-256gb-le2127/index.json b/site/public/v1/smartphones/9-pro-5g-uw-td-lte-us-256gb-le2127/index.json new file mode 100644 index 00000000000..d0d01a533ac --- /dev/null +++ b/site/public/v1/smartphones/9-pro-5g-uw-td-lte-us-256gb-le2127/index.json @@ -0,0 +1,77 @@ +{ + "id": 2635, + "slug": "9-pro-5g-uw-td-lte-us-256gb-le2127", + "name": "9 Pro 5G UW TD-LTE US 256GB LE2127", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-02", + "msrp_usd": 1068, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3216", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.2, + "performance": 9.4, + "camera": 16.5, + "battery": 42.0, + "display": 65.1, + "value": 37.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.484302", + "updated_at": "2026-06-19T00:43:44.484302" +} diff --git a/site/public/v1/smartphones/9-pro-5g-uw-td-lte-us-256gb-le2127/score/index.json b/site/public/v1/smartphones/9-pro-5g-uw-td-lte-us-256gb-le2127/score/index.json new file mode 100644 index 00000000000..cb6f3cbed9d --- /dev/null +++ b/site/public/v1/smartphones/9-pro-5g-uw-td-lte-us-256gb-le2127/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.2, + "performance": 9.4, + "camera": 16.5, + "battery": 42.0, + "display": 65.1, + "value": 37.0 +} diff --git a/site/public/v1/smartphones/9-pureview-dual-sim-td-lte-cn/index.json b/site/public/v1/smartphones/9-pureview-dual-sim-td-lte-cn/index.json new file mode 100644 index 00000000000..27dd712cb41 --- /dev/null +++ b/site/public/v1/smartphones/9-pureview-dual-sim-td-lte-cn/index.json @@ -0,0 +1,76 @@ +{ + "id": 2426, + "slug": "9-pureview-dual-sim-td-lte-cn", + "name": "9 PureView Dual SIM TD-LTE CN", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2019-04-19", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3320, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 1.5, + "camera": 5.1, + "battery": 5.4, + "display": 58.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.457271", + "updated_at": "2026-06-19T00:43:44.457271" +} diff --git a/site/public/v1/smartphones/9-pureview-dual-sim-td-lte-cn/score/index.json b/site/public/v1/smartphones/9-pureview-dual-sim-td-lte-cn/score/index.json new file mode 100644 index 00000000000..f8f29f7d056 --- /dev/null +++ b/site/public/v1/smartphones/9-pureview-dual-sim-td-lte-cn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 1.5, + "camera": 5.1, + "battery": 5.4, + "display": 58.8, + "value": null +} diff --git a/site/public/v1/smartphones/9-pureview-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/9-pureview-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..71ce21a0523 --- /dev/null +++ b/site/public/v1/smartphones/9-pureview-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 2427, + "slug": "9-pureview-global-dual-sim-td-lte", + "name": "9 PureView Global Dual SIM TD-LTE", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2019-03-16", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3320, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 1.5, + "camera": 5.1, + "battery": 5.4, + "display": 58.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.457271", + "updated_at": "2026-06-19T00:43:44.457271" +} diff --git a/site/public/v1/smartphones/9-pureview-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/9-pureview-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..f8f29f7d056 --- /dev/null +++ b/site/public/v1/smartphones/9-pureview-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 1.5, + "camera": 5.1, + "battery": 5.4, + "display": 58.8, + "value": null +} diff --git a/site/public/v1/smartphones/9-pureview-td-lte-na/index.json b/site/public/v1/smartphones/9-pureview-td-lte-na/index.json new file mode 100644 index 00000000000..70339d0876c --- /dev/null +++ b/site/public/v1/smartphones/9-pureview-td-lte-na/index.json @@ -0,0 +1,76 @@ +{ + "id": 2428, + "slug": "9-pureview-td-lte-na", + "name": "9 PureView TD-LTE NA", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2019-03-03", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3320, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 1.5, + "camera": 5.1, + "battery": 5.4, + "display": 58.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.457271", + "updated_at": "2026-06-19T00:43:44.457271" +} diff --git a/site/public/v1/smartphones/9-pureview-td-lte-na/score/index.json b/site/public/v1/smartphones/9-pureview-td-lte-na/score/index.json new file mode 100644 index 00000000000..f8f29f7d056 --- /dev/null +++ b/site/public/v1/smartphones/9-pureview-td-lte-na/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 1.5, + "camera": 5.1, + "battery": 5.4, + "display": 58.8, + "value": null +} diff --git a/site/public/v1/smartphones/9r-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2100/index.json b/site/public/v1/smartphones/9r-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2100/index.json new file mode 100644 index 00000000000..ba71c658144 --- /dev/null +++ b/site/public/v1/smartphones/9r-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2100/index.json @@ -0,0 +1,77 @@ +{ + "id": 2638, + "slug": "9r-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2100", + "name": "9R 5G Premium Edition Dual SIM TD-LTE CN 256GB LE2100", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-03-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 9.1, + "camera": 16.5, + "battery": 32.0, + "display": 52.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.485307", + "updated_at": "2026-06-19T00:43:44.485307" +} diff --git a/site/public/v1/smartphones/9r-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2100/score/index.json b/site/public/v1/smartphones/9r-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2100/score/index.json new file mode 100644 index 00000000000..3d8967b8e9c --- /dev/null +++ b/site/public/v1/smartphones/9r-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2100/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 9.1, + "camera": 16.5, + "battery": 32.0, + "display": 52.7, + "value": null +} diff --git a/site/public/v1/smartphones/9r-5g-premium-edition-dual-sim-td-lte-in-256gb-le2101/index.json b/site/public/v1/smartphones/9r-5g-premium-edition-dual-sim-td-lte-in-256gb-le2101/index.json new file mode 100644 index 00000000000..b04135b61b3 --- /dev/null +++ b/site/public/v1/smartphones/9r-5g-premium-edition-dual-sim-td-lte-in-256gb-le2101/index.json @@ -0,0 +1,77 @@ +{ + "id": 2639, + "slug": "9r-5g-premium-edition-dual-sim-td-lte-in-256gb-le2101", + "name": "9R 5G Premium Edition Dual SIM TD-LTE IN 256GB LE2101", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-04-14", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 9.1, + "camera": 16.5, + "battery": 32.0, + "display": 52.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.485307", + "updated_at": "2026-06-19T00:43:44.485307" +} diff --git a/site/public/v1/smartphones/9r-5g-premium-edition-dual-sim-td-lte-in-256gb-le2101/score/index.json b/site/public/v1/smartphones/9r-5g-premium-edition-dual-sim-td-lte-in-256gb-le2101/score/index.json new file mode 100644 index 00000000000..3d8967b8e9c --- /dev/null +++ b/site/public/v1/smartphones/9r-5g-premium-edition-dual-sim-td-lte-in-256gb-le2101/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 9.1, + "camera": 16.5, + "battery": 32.0, + "display": 52.7, + "value": null +} diff --git a/site/public/v1/smartphones/9r-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2100/index.json b/site/public/v1/smartphones/9r-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2100/index.json new file mode 100644 index 00000000000..fdc3becdb3f --- /dev/null +++ b/site/public/v1/smartphones/9r-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2100/index.json @@ -0,0 +1,77 @@ +{ + "id": 2640, + "slug": "9r-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2100", + "name": "9R 5G Standard Edition Dual SIM TD-LTE CN 128GB LE2100", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.8, + "performance": 6.1, + "camera": 16.5, + "battery": 32.0, + "display": 52.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.485307", + "updated_at": "2026-06-19T00:43:44.485307" +} diff --git a/site/public/v1/smartphones/9r-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2100/score/index.json b/site/public/v1/smartphones/9r-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2100/score/index.json new file mode 100644 index 00000000000..e10113e834f --- /dev/null +++ b/site/public/v1/smartphones/9r-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2100/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.8, + "performance": 6.1, + "camera": 16.5, + "battery": 32.0, + "display": 52.7, + "value": null +} diff --git a/site/public/v1/smartphones/9r-5g-standard-edition-dual-sim-td-lte-cn-256gb-le2100/index.json b/site/public/v1/smartphones/9r-5g-standard-edition-dual-sim-td-lte-cn-256gb-le2100/index.json new file mode 100644 index 00000000000..c414133adb3 --- /dev/null +++ b/site/public/v1/smartphones/9r-5g-standard-edition-dual-sim-td-lte-cn-256gb-le2100/index.json @@ -0,0 +1,77 @@ +{ + "id": 2641, + "slug": "9r-5g-standard-edition-dual-sim-td-lte-cn-256gb-le2100", + "name": "9R 5G Standard Edition Dual SIM TD-LTE CN 256GB LE2100", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.8, + "performance": 6.1, + "camera": 16.5, + "battery": 32.0, + "display": 52.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.485307", + "updated_at": "2026-06-19T00:43:44.485307" +} diff --git a/site/public/v1/smartphones/9r-5g-standard-edition-dual-sim-td-lte-cn-256gb-le2100/score/index.json b/site/public/v1/smartphones/9r-5g-standard-edition-dual-sim-td-lte-cn-256gb-le2100/score/index.json new file mode 100644 index 00000000000..e10113e834f --- /dev/null +++ b/site/public/v1/smartphones/9r-5g-standard-edition-dual-sim-td-lte-cn-256gb-le2100/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.8, + "performance": 6.1, + "camera": 16.5, + "battery": 32.0, + "display": 52.7, + "value": null +} diff --git a/site/public/v1/smartphones/9r-5g-standard-edition-dual-sim-td-lte-in-128gb-le2101/index.json b/site/public/v1/smartphones/9r-5g-standard-edition-dual-sim-td-lte-in-128gb-le2101/index.json new file mode 100644 index 00000000000..54c0e4d9e71 --- /dev/null +++ b/site/public/v1/smartphones/9r-5g-standard-edition-dual-sim-td-lte-in-128gb-le2101/index.json @@ -0,0 +1,77 @@ +{ + "id": 2642, + "slug": "9r-5g-standard-edition-dual-sim-td-lte-in-128gb-le2101", + "name": "9R 5G Standard Edition Dual SIM TD-LTE IN 128GB LE2101", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-04-14", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.8, + "performance": 6.1, + "camera": 16.5, + "battery": 32.0, + "display": 52.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.485307", + "updated_at": "2026-06-19T00:43:44.485307" +} diff --git a/site/public/v1/smartphones/9r-5g-standard-edition-dual-sim-td-lte-in-128gb-le2101/score/index.json b/site/public/v1/smartphones/9r-5g-standard-edition-dual-sim-td-lte-in-128gb-le2101/score/index.json new file mode 100644 index 00000000000..e10113e834f --- /dev/null +++ b/site/public/v1/smartphones/9r-5g-standard-edition-dual-sim-td-lte-in-128gb-le2101/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.8, + "performance": 6.1, + "camera": 16.5, + "battery": 32.0, + "display": 52.7, + "value": null +} diff --git a/site/public/v1/smartphones/9r-5g/index.json b/site/public/v1/smartphones/9r-5g/index.json new file mode 100644 index 00000000000..fb64122edae --- /dev/null +++ b/site/public/v1/smartphones/9r-5g/index.json @@ -0,0 +1,70 @@ +{ + "id": 2643, + "slug": "9r-5g", + "name": "9R 5G", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-01-01", + "msrp_usd": 599, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 6.1, + "camera": 16.5, + "battery": 22.5, + "display": null, + "value": 46.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.485307", + "updated_at": "2026-06-19T00:43:44.485307" +} diff --git a/site/public/v1/smartphones/9r-5g/score/index.json b/site/public/v1/smartphones/9r-5g/score/index.json new file mode 100644 index 00000000000..2221bf83ae6 --- /dev/null +++ b/site/public/v1/smartphones/9r-5g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 6.1, + "camera": 16.5, + "battery": 22.5, + "display": null, + "value": 46.0 +} diff --git a/site/public/v1/smartphones/9rt-5g-premium-edition-dual-sim-td-lte-cn-256gb-mt2110/index.json b/site/public/v1/smartphones/9rt-5g-premium-edition-dual-sim-td-lte-cn-256gb-mt2110/index.json new file mode 100644 index 00000000000..24766a68337 --- /dev/null +++ b/site/public/v1/smartphones/9rt-5g-premium-edition-dual-sim-td-lte-cn-256gb-mt2110/index.json @@ -0,0 +1,77 @@ +{ + "id": 2645, + "slug": "9rt-5g-premium-edition-dual-sim-td-lte-cn-256gb-mt2110", + "name": "9RT 5G Premium Edition Dual SIM TD-LTE CN 256GB MT2110", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-10-19", + "msrp_usd": 3799, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 198.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.2, + "performance": 9.4, + "camera": 17.2, + "battery": 42.0, + "display": 52.3, + "value": 15.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.486302", + "updated_at": "2026-06-19T00:43:44.486302" +} diff --git a/site/public/v1/smartphones/9rt-5g-premium-edition-dual-sim-td-lte-cn-256gb-mt2110/score/index.json b/site/public/v1/smartphones/9rt-5g-premium-edition-dual-sim-td-lte-cn-256gb-mt2110/score/index.json new file mode 100644 index 00000000000..6dc8c30dc98 --- /dev/null +++ b/site/public/v1/smartphones/9rt-5g-premium-edition-dual-sim-td-lte-cn-256gb-mt2110/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.2, + "performance": 9.4, + "camera": 17.2, + "battery": 42.0, + "display": 52.3, + "value": 15.1 +} diff --git a/site/public/v1/smartphones/9rt-5g-premium-edition-dual-sim-td-lte-in-256gb-mt2111/index.json b/site/public/v1/smartphones/9rt-5g-premium-edition-dual-sim-td-lte-in-256gb-mt2111/index.json new file mode 100644 index 00000000000..e9c177c6c7b --- /dev/null +++ b/site/public/v1/smartphones/9rt-5g-premium-edition-dual-sim-td-lte-in-256gb-mt2111/index.json @@ -0,0 +1,77 @@ +{ + "id": 2674, + "slug": "9rt-5g-premium-edition-dual-sim-td-lte-in-256gb-mt2111", + "name": "9RT 5G Premium Edition Dual SIM TD-LTE IN 256GB MT2111", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2022-01-16", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 198.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.2, + "performance": 9.4, + "camera": 17.2, + "battery": 42.0, + "display": 52.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.490308", + "updated_at": "2026-06-19T00:43:44.490308" +} diff --git a/site/public/v1/smartphones/9rt-5g-premium-edition-dual-sim-td-lte-in-256gb-mt2111/score/index.json b/site/public/v1/smartphones/9rt-5g-premium-edition-dual-sim-td-lte-in-256gb-mt2111/score/index.json new file mode 100644 index 00000000000..5b315c64c9f --- /dev/null +++ b/site/public/v1/smartphones/9rt-5g-premium-edition-dual-sim-td-lte-in-256gb-mt2111/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.2, + "performance": 9.4, + "camera": 17.2, + "battery": 42.0, + "display": 52.3, + "value": null +} diff --git a/site/public/v1/smartphones/9rt-5g-standard-edition-dual-sim-td-lte-cn-128gb-mt2110/index.json b/site/public/v1/smartphones/9rt-5g-standard-edition-dual-sim-td-lte-cn-128gb-mt2110/index.json new file mode 100644 index 00000000000..5960938a6dd --- /dev/null +++ b/site/public/v1/smartphones/9rt-5g-standard-edition-dual-sim-td-lte-cn-128gb-mt2110/index.json @@ -0,0 +1,77 @@ +{ + "id": 2646, + "slug": "9rt-5g-standard-edition-dual-sim-td-lte-cn-128gb-mt2110", + "name": "9RT 5G Standard Edition Dual SIM TD-LTE CN 128GB MT2110", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-10-19", + "msrp_usd": 3299, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 198.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.5, + "performance": 6.4, + "camera": 17.2, + "battery": 42.0, + "display": 52.3, + "value": 14.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.486302", + "updated_at": "2026-06-19T00:43:44.486302" +} diff --git a/site/public/v1/smartphones/9rt-5g-standard-edition-dual-sim-td-lte-cn-128gb-mt2110/score/index.json b/site/public/v1/smartphones/9rt-5g-standard-edition-dual-sim-td-lte-cn-128gb-mt2110/score/index.json new file mode 100644 index 00000000000..4bfd2a8dd67 --- /dev/null +++ b/site/public/v1/smartphones/9rt-5g-standard-edition-dual-sim-td-lte-cn-128gb-mt2110/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.5, + "performance": 6.4, + "camera": 17.2, + "battery": 42.0, + "display": 52.3, + "value": 14.8 +} diff --git a/site/public/v1/smartphones/9rt-5g-standard-edition-dual-sim-td-lte-cn-256gb-mt2110/index.json b/site/public/v1/smartphones/9rt-5g-standard-edition-dual-sim-td-lte-cn-256gb-mt2110/index.json new file mode 100644 index 00000000000..af4c7eaa902 --- /dev/null +++ b/site/public/v1/smartphones/9rt-5g-standard-edition-dual-sim-td-lte-cn-256gb-mt2110/index.json @@ -0,0 +1,77 @@ +{ + "id": 2647, + "slug": "9rt-5g-standard-edition-dual-sim-td-lte-cn-256gb-mt2110", + "name": "9RT 5G Standard Edition Dual SIM TD-LTE CN 256GB MT2110", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-10-19", + "msrp_usd": 3499, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 198.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.5, + "performance": 6.4, + "camera": 17.2, + "battery": 42.0, + "display": 52.3, + "value": 14.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.486302", + "updated_at": "2026-06-19T00:43:44.486302" +} diff --git a/site/public/v1/smartphones/9rt-5g-standard-edition-dual-sim-td-lte-cn-256gb-mt2110/score/index.json b/site/public/v1/smartphones/9rt-5g-standard-edition-dual-sim-td-lte-cn-256gb-mt2110/score/index.json new file mode 100644 index 00000000000..4bfd2a8dd67 --- /dev/null +++ b/site/public/v1/smartphones/9rt-5g-standard-edition-dual-sim-td-lte-cn-256gb-mt2110/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.5, + "performance": 6.4, + "camera": 17.2, + "battery": 42.0, + "display": 52.3, + "value": 14.8 +} diff --git a/site/public/v1/smartphones/9rt-5g-standard-edition-dual-sim-td-lte-in-128gb-mt2111/index.json b/site/public/v1/smartphones/9rt-5g-standard-edition-dual-sim-td-lte-in-128gb-mt2111/index.json new file mode 100644 index 00000000000..cb6645b2f78 --- /dev/null +++ b/site/public/v1/smartphones/9rt-5g-standard-edition-dual-sim-td-lte-in-128gb-mt2111/index.json @@ -0,0 +1,77 @@ +{ + "id": 2675, + "slug": "9rt-5g-standard-edition-dual-sim-td-lte-in-128gb-mt2111", + "name": "9RT 5G Standard Edition Dual SIM TD-LTE IN 128GB MT2111", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2022-01-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 198.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.5, + "performance": 6.4, + "camera": 17.2, + "battery": 42.0, + "display": 52.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.490308", + "updated_at": "2026-06-19T00:43:44.490308" +} diff --git a/site/public/v1/smartphones/9rt-5g-standard-edition-dual-sim-td-lte-in-128gb-mt2111/score/index.json b/site/public/v1/smartphones/9rt-5g-standard-edition-dual-sim-td-lte-in-128gb-mt2111/score/index.json new file mode 100644 index 00000000000..2946facd362 --- /dev/null +++ b/site/public/v1/smartphones/9rt-5g-standard-edition-dual-sim-td-lte-in-128gb-mt2111/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.5, + "performance": 6.4, + "camera": 17.2, + "battery": 42.0, + "display": 52.3, + "value": null +} diff --git a/site/public/v1/smartphones/a0722-blade-a7-vita-dual-sim-td-lte-cn-32gb/index.json b/site/public/v1/smartphones/a0722-blade-a7-vita-dual-sim-td-lte-cn-32gb/index.json new file mode 100644 index 00000000000..62502840eb1 --- /dev/null +++ b/site/public/v1/smartphones/a0722-blade-a7-vita-dual-sim-td-lte-cn-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 6387, + "slug": "a0722-blade-a7-vita-dual-sim-td-lte-cn-32gb", + "name": "A0722 Blade A7 Vita Dual SIM TD-LTE CN 32GB", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 135.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": null, + "camera": 5.3, + "battery": 1.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.003824", + "updated_at": "2026-06-19T00:43:45.003824" +} diff --git a/site/public/v1/smartphones/a0722-blade-a7-vita-dual-sim-td-lte-cn-32gb/score/index.json b/site/public/v1/smartphones/a0722-blade-a7-vita-dual-sim-td-lte-cn-32gb/score/index.json new file mode 100644 index 00000000000..dea4113388e --- /dev/null +++ b/site/public/v1/smartphones/a0722-blade-a7-vita-dual-sim-td-lte-cn-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": null, + "camera": 5.3, + "battery": 1.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a0722-blade-a7-vita-global-dual-sim-td-lte-16gb/index.json b/site/public/v1/smartphones/a0722-blade-a7-vita-global-dual-sim-td-lte-16gb/index.json new file mode 100644 index 00000000000..5fda1e8ef4f --- /dev/null +++ b/site/public/v1/smartphones/a0722-blade-a7-vita-global-dual-sim-td-lte-16gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 6388, + "slug": "a0722-blade-a7-vita-global-dual-sim-td-lte-16gb", + "name": "A0722 Blade A7 Vita Global Dual SIM TD-LTE 16GB", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 135.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": null, + "camera": 5.3, + "battery": 1.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.003824", + "updated_at": "2026-06-19T00:43:45.003824" +} diff --git a/site/public/v1/smartphones/a0722-blade-a7-vita-global-dual-sim-td-lte-16gb/score/index.json b/site/public/v1/smartphones/a0722-blade-a7-vita-global-dual-sim-td-lte-16gb/score/index.json new file mode 100644 index 00000000000..dea4113388e --- /dev/null +++ b/site/public/v1/smartphones/a0722-blade-a7-vita-global-dual-sim-td-lte-16gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": null, + "camera": 5.3, + "battery": 1.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a1-5g-td-lte-jp-ztg01/index.json b/site/public/v1/smartphones/a1-5g-td-lte-jp-ztg01/index.json new file mode 100644 index 00000000000..ff19f6f7649 --- /dev/null +++ b/site/public/v1/smartphones/a1-5g-td-lte-jp-ztg01/index.json @@ -0,0 +1,76 @@ +{ + "id": 6459, + "slug": "a1-5g-td-lte-jp-ztg01", + "name": "a1 5G TD-LTE JP ZTG01", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-07-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.012824", + "updated_at": "2026-06-19T00:43:45.012824" +} diff --git a/site/public/v1/smartphones/a1-5g-td-lte-jp-ztg01/score/index.json b/site/public/v1/smartphones/a1-5g-td-lte-jp-ztg01/score/index.json new file mode 100644 index 00000000000..bddc6ed700f --- /dev/null +++ b/site/public/v1/smartphones/a1-5g-td-lte-jp-ztg01/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.7, + "value": null +} diff --git a/site/public/v1/smartphones/a1-alpha-20-dual-sim-lte-emea-5029y/index.json b/site/public/v1/smartphones/a1-alpha-20-dual-sim-lte-emea-5029y/index.json new file mode 100644 index 00000000000..890b47a7bf3 --- /dev/null +++ b/site/public/v1/smartphones/a1-alpha-20-dual-sim-lte-emea-5029y/index.json @@ -0,0 +1,76 @@ +{ + "id": 4947, + "slug": "a1-alpha-20-dual-sim-lte-emea-5029y", + "name": "A1 Alpha 20 Dual SIM LTE EMEA 5029Y", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": null, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.832757", + "updated_at": "2026-06-19T00:43:44.832757" +} diff --git a/site/public/v1/smartphones/a1-alpha-20-dual-sim-lte-emea-5029y/score/index.json b/site/public/v1/smartphones/a1-alpha-20-dual-sim-lte-emea-5029y/score/index.json new file mode 100644 index 00000000000..973265fb19b --- /dev/null +++ b/site/public/v1/smartphones/a1-alpha-20-dual-sim-lte-emea-5029y/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": null, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a1-dual-sim-td-lte-cn-a83/index.json b/site/public/v1/smartphones/a1-dual-sim-td-lte-cn-a83/index.json new file mode 100644 index 00000000000..ad401aaaadf --- /dev/null +++ b/site/public/v1/smartphones/a1-dual-sim-td-lte-cn-a83/index.json @@ -0,0 +1,76 @@ +{ + "id": 2719, + "slug": "a1-dual-sim-td-lte-cn-a83", + "name": "A1 Dual SIM TD-LTE CN / A83", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2018-04-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3180, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 143.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.8, + "performance": 0.0, + "camera": 5.3, + "battery": 2.7, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.496306", + "updated_at": "2026-06-19T00:43:44.496306" +} diff --git a/site/public/v1/smartphones/a1-dual-sim-td-lte-cn-a83/score/index.json b/site/public/v1/smartphones/a1-dual-sim-td-lte-cn-a83/score/index.json new file mode 100644 index 00000000000..2d90b705bf8 --- /dev/null +++ b/site/public/v1/smartphones/a1-dual-sim-td-lte-cn-a83/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.8, + "performance": 0.0, + "camera": 5.3, + "battery": 2.7, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a11-2019-premium-edition-dual-sim-td-lte-cn-256gb-pchm10/index.json b/site/public/v1/smartphones/a11-2019-premium-edition-dual-sim-td-lte-cn-256gb-pchm10/index.json new file mode 100644 index 00000000000..2f3665ce38a --- /dev/null +++ b/site/public/v1/smartphones/a11-2019-premium-edition-dual-sim-td-lte-cn-256gb-pchm10/index.json @@ -0,0 +1,76 @@ +{ + "id": 2810, + "slug": "a11-2019-premium-edition-dual-sim-td-lte-cn-256gb-pchm10", + "name": "A11 2019 Premium Edition Dual SIM TD-LTE CN 256GB PCHM10", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": 1.5, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.508912", + "updated_at": "2026-06-19T00:43:44.508912" +} diff --git a/site/public/v1/smartphones/a11-2019-premium-edition-dual-sim-td-lte-cn-256gb-pchm10/score/index.json b/site/public/v1/smartphones/a11-2019-premium-edition-dual-sim-td-lte-cn-256gb-pchm10/score/index.json new file mode 100644 index 00000000000..46c94975d9d --- /dev/null +++ b/site/public/v1/smartphones/a11-2019-premium-edition-dual-sim-td-lte-cn-256gb-pchm10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": 1.5, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a11-2019-standard-edition-dual-sim-td-lte-cn-128gb-pchm10/index.json b/site/public/v1/smartphones/a11-2019-standard-edition-dual-sim-td-lte-cn-128gb-pchm10/index.json new file mode 100644 index 00000000000..c2120fbc3e9 --- /dev/null +++ b/site/public/v1/smartphones/a11-2019-standard-edition-dual-sim-td-lte-cn-128gb-pchm10/index.json @@ -0,0 +1,76 @@ +{ + "id": 2811, + "slug": "a11-2019-standard-edition-dual-sim-td-lte-cn-128gb-pchm10", + "name": "A11 2019 Standard Edition Dual SIM TD-LTE CN 128GB PCHM10", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.508912", + "updated_at": "2026-06-19T00:43:44.508912" +} diff --git a/site/public/v1/smartphones/a11-2019-standard-edition-dual-sim-td-lte-cn-128gb-pchm10/score/index.json b/site/public/v1/smartphones/a11-2019-standard-edition-dual-sim-td-lte-cn-128gb-pchm10/score/index.json new file mode 100644 index 00000000000..3611766e8e8 --- /dev/null +++ b/site/public/v1/smartphones/a11-2019-standard-edition-dual-sim-td-lte-cn-128gb-pchm10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a11-2019-standard-edition-dual-sim-td-lte-cn-128gb-pcht10/index.json b/site/public/v1/smartphones/a11-2019-standard-edition-dual-sim-td-lte-cn-128gb-pcht10/index.json new file mode 100644 index 00000000000..e45583ffcf6 --- /dev/null +++ b/site/public/v1/smartphones/a11-2019-standard-edition-dual-sim-td-lte-cn-128gb-pcht10/index.json @@ -0,0 +1,76 @@ +{ + "id": 2812, + "slug": "a11-2019-standard-edition-dual-sim-td-lte-cn-128gb-pcht10", + "name": "A11 2019 Standard Edition Dual SIM TD-LTE CN 128GB PCHT10", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.508912", + "updated_at": "2026-06-19T00:43:44.508912" +} diff --git a/site/public/v1/smartphones/a11-2019-standard-edition-dual-sim-td-lte-cn-128gb-pcht10/score/index.json b/site/public/v1/smartphones/a11-2019-standard-edition-dual-sim-td-lte-cn-128gb-pcht10/score/index.json new file mode 100644 index 00000000000..3611766e8e8 --- /dev/null +++ b/site/public/v1/smartphones/a11-2019-standard-edition-dual-sim-td-lte-cn-128gb-pcht10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a11-2019-standard-edition-dual-sim-td-lte-cn-64gb-pchm10/index.json b/site/public/v1/smartphones/a11-2019-standard-edition-dual-sim-td-lte-cn-64gb-pchm10/index.json new file mode 100644 index 00000000000..831a9102a48 --- /dev/null +++ b/site/public/v1/smartphones/a11-2019-standard-edition-dual-sim-td-lte-cn-64gb-pchm10/index.json @@ -0,0 +1,76 @@ +{ + "id": 2813, + "slug": "a11-2019-standard-edition-dual-sim-td-lte-cn-64gb-pchm10", + "name": "A11 2019 Standard Edition Dual SIM TD-LTE CN 64GB PCHM10", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.508912", + "updated_at": "2026-06-19T00:43:44.508912" +} diff --git a/site/public/v1/smartphones/a11-2019-standard-edition-dual-sim-td-lte-cn-64gb-pchm10/score/index.json b/site/public/v1/smartphones/a11-2019-standard-edition-dual-sim-td-lte-cn-64gb-pchm10/score/index.json new file mode 100644 index 00000000000..3611766e8e8 --- /dev/null +++ b/site/public/v1/smartphones/a11-2019-standard-edition-dual-sim-td-lte-cn-64gb-pchm10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a11-2019-standard-edition-dual-sim-td-lte-cn-64gb-pcht10/index.json b/site/public/v1/smartphones/a11-2019-standard-edition-dual-sim-td-lte-cn-64gb-pcht10/index.json new file mode 100644 index 00000000000..096db150bb9 --- /dev/null +++ b/site/public/v1/smartphones/a11-2019-standard-edition-dual-sim-td-lte-cn-64gb-pcht10/index.json @@ -0,0 +1,76 @@ +{ + "id": 2814, + "slug": "a11-2019-standard-edition-dual-sim-td-lte-cn-64gb-pcht10", + "name": "A11 2019 Standard Edition Dual SIM TD-LTE CN 64GB PCHT10", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.508912", + "updated_at": "2026-06-19T00:43:44.508912" +} diff --git a/site/public/v1/smartphones/a11-2019-standard-edition-dual-sim-td-lte-cn-64gb-pcht10/score/index.json b/site/public/v1/smartphones/a11-2019-standard-edition-dual-sim-td-lte-cn-64gb-pcht10/score/index.json new file mode 100644 index 00000000000..3611766e8e8 --- /dev/null +++ b/site/public/v1/smartphones/a11-2019-standard-edition-dual-sim-td-lte-cn-64gb-pcht10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a11k-2020-dual-sim-td-lte-v1-in-pk-32gb-cph2083-cph2071/index.json b/site/public/v1/smartphones/a11k-2020-dual-sim-td-lte-v1-in-pk-32gb-cph2083-cph2071/index.json new file mode 100644 index 00000000000..7cb7a163b8e --- /dev/null +++ b/site/public/v1/smartphones/a11k-2020-dual-sim-td-lte-v1-in-pk-32gb-cph2083-cph2071/index.json @@ -0,0 +1,76 @@ +{ + "id": 3015, + "slug": "a11k-2020-dual-sim-td-lte-v1-in-pk-32gb-cph2083-cph2071", + "name": "A11k 2020 Dual SIM TD-LTE V1 IN PK 32GB CPH2083 / CPH2071", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-06-22", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.536922", + "updated_at": "2026-06-19T00:43:44.536922" +} diff --git a/site/public/v1/smartphones/a11k-2020-dual-sim-td-lte-v1-in-pk-32gb-cph2083-cph2071/score/index.json b/site/public/v1/smartphones/a11k-2020-dual-sim-td-lte-v1-in-pk-32gb-cph2083-cph2071/score/index.json new file mode 100644 index 00000000000..470feae9b91 --- /dev/null +++ b/site/public/v1/smartphones/a11k-2020-dual-sim-td-lte-v1-in-pk-32gb-cph2083-cph2071/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a11x-2019-premium-edition-dual-sim-td-lte-cn-128gb-pchm00/index.json b/site/public/v1/smartphones/a11x-2019-premium-edition-dual-sim-td-lte-cn-128gb-pchm00/index.json new file mode 100644 index 00000000000..e48daa09ca6 --- /dev/null +++ b/site/public/v1/smartphones/a11x-2019-premium-edition-dual-sim-td-lte-cn-128gb-pchm00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2815, + "slug": "a11x-2019-premium-edition-dual-sim-td-lte-cn-128gb-pchm00", + "name": "A11x 2019 Premium Edition Dual SIM TD-LTE CN 128GB PCHM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-10-21", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.508912", + "updated_at": "2026-06-19T00:43:44.508912" +} diff --git a/site/public/v1/smartphones/a11x-2019-premium-edition-dual-sim-td-lte-cn-128gb-pchm00/score/index.json b/site/public/v1/smartphones/a11x-2019-premium-edition-dual-sim-td-lte-cn-128gb-pchm00/score/index.json new file mode 100644 index 00000000000..b0800e395dc --- /dev/null +++ b/site/public/v1/smartphones/a11x-2019-premium-edition-dual-sim-td-lte-cn-128gb-pchm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a11x-2019-premium-edition-dual-sim-td-lte-cn-128gb-pcht00/index.json b/site/public/v1/smartphones/a11x-2019-premium-edition-dual-sim-td-lte-cn-128gb-pcht00/index.json new file mode 100644 index 00000000000..b9d966f017a --- /dev/null +++ b/site/public/v1/smartphones/a11x-2019-premium-edition-dual-sim-td-lte-cn-128gb-pcht00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2816, + "slug": "a11x-2019-premium-edition-dual-sim-td-lte-cn-128gb-pcht00", + "name": "A11x 2019 Premium Edition Dual SIM TD-LTE CN 128GB PCHT00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-10-21", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.508912", + "updated_at": "2026-06-19T00:43:44.508912" +} diff --git a/site/public/v1/smartphones/a11x-2019-premium-edition-dual-sim-td-lte-cn-128gb-pcht00/score/index.json b/site/public/v1/smartphones/a11x-2019-premium-edition-dual-sim-td-lte-cn-128gb-pcht00/score/index.json new file mode 100644 index 00000000000..b0800e395dc --- /dev/null +++ b/site/public/v1/smartphones/a11x-2019-premium-edition-dual-sim-td-lte-cn-128gb-pcht00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a12-2020-dual-sim-td-lte-v1-in-id-pk-bd-32gb-cph2083/index.json b/site/public/v1/smartphones/a12-2020-dual-sim-td-lte-v1-in-id-pk-bd-32gb-cph2083/index.json new file mode 100644 index 00000000000..8409aee5535 --- /dev/null +++ b/site/public/v1/smartphones/a12-2020-dual-sim-td-lte-v1-in-id-pk-bd-32gb-cph2083/index.json @@ -0,0 +1,76 @@ +{ + "id": 3017, + "slug": "a12-2020-dual-sim-td-lte-v1-in-id-pk-bd-32gb-cph2083", + "name": "A12 2020 Dual SIM TD-LTE V1 IN ID PK BD 32GB CPH2083", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-06-09", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.537922", + "updated_at": "2026-06-19T00:43:44.537922" +} diff --git a/site/public/v1/smartphones/a12-2020-dual-sim-td-lte-v1-in-id-pk-bd-32gb-cph2083/score/index.json b/site/public/v1/smartphones/a12-2020-dual-sim-td-lte-v1-in-id-pk-bd-32gb-cph2083/score/index.json new file mode 100644 index 00000000000..470feae9b91 --- /dev/null +++ b/site/public/v1/smartphones/a12-2020-dual-sim-td-lte-v1-in-id-pk-bd-32gb-cph2083/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a12-2020-dual-sim-td-lte-v1-in-id-pk-bd-64gb-cph2083/index.json b/site/public/v1/smartphones/a12-2020-dual-sim-td-lte-v1-in-id-pk-bd-64gb-cph2083/index.json new file mode 100644 index 00000000000..2e2ad31099f --- /dev/null +++ b/site/public/v1/smartphones/a12-2020-dual-sim-td-lte-v1-in-id-pk-bd-64gb-cph2083/index.json @@ -0,0 +1,76 @@ +{ + "id": 3018, + "slug": "a12-2020-dual-sim-td-lte-v1-in-id-pk-bd-64gb-cph2083", + "name": "A12 2020 Dual SIM TD-LTE V1 IN ID PK BD 64GB CPH2083", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-06-09", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.537922", + "updated_at": "2026-06-19T00:43:44.537922" +} diff --git a/site/public/v1/smartphones/a12-2020-dual-sim-td-lte-v1-in-id-pk-bd-64gb-cph2083/score/index.json b/site/public/v1/smartphones/a12-2020-dual-sim-td-lte-v1-in-id-pk-bd-64gb-cph2083/score/index.json new file mode 100644 index 00000000000..470feae9b91 --- /dev/null +++ b/site/public/v1/smartphones/a12-2020-dual-sim-td-lte-v1-in-id-pk-bd-64gb-cph2083/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a12-2020-dual-sim-td-lte-v2-th-vn-kh-my-32gb-cph2083/index.json b/site/public/v1/smartphones/a12-2020-dual-sim-td-lte-v2-th-vn-kh-my-32gb-cph2083/index.json new file mode 100644 index 00000000000..b635a9392f0 --- /dev/null +++ b/site/public/v1/smartphones/a12-2020-dual-sim-td-lte-v2-th-vn-kh-my-32gb-cph2083/index.json @@ -0,0 +1,76 @@ +{ + "id": 3019, + "slug": "a12-2020-dual-sim-td-lte-v2-th-vn-kh-my-32gb-cph2083", + "name": "A12 2020 Dual SIM TD-LTE V2 TH VN KH MY 32GB CPH2083", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.537922", + "updated_at": "2026-06-19T00:43:44.537922" +} diff --git a/site/public/v1/smartphones/a12-2020-dual-sim-td-lte-v2-th-vn-kh-my-32gb-cph2083/score/index.json b/site/public/v1/smartphones/a12-2020-dual-sim-td-lte-v2-th-vn-kh-my-32gb-cph2083/score/index.json new file mode 100644 index 00000000000..470feae9b91 --- /dev/null +++ b/site/public/v1/smartphones/a12-2020-dual-sim-td-lte-v2-th-vn-kh-my-32gb-cph2083/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a12-2020-dual-sim-td-lte-v4-latam-32gb-cph2083/index.json b/site/public/v1/smartphones/a12-2020-dual-sim-td-lte-v4-latam-32gb-cph2083/index.json new file mode 100644 index 00000000000..33b1959c82c --- /dev/null +++ b/site/public/v1/smartphones/a12-2020-dual-sim-td-lte-v4-latam-32gb-cph2083/index.json @@ -0,0 +1,76 @@ +{ + "id": 3020, + "slug": "a12-2020-dual-sim-td-lte-v4-latam-32gb-cph2083", + "name": "A12 2020 Dual SIM TD-LTE V4 LATAM 32GB CPH2083", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.537922", + "updated_at": "2026-06-19T00:43:44.537922" +} diff --git a/site/public/v1/smartphones/a12-2020-dual-sim-td-lte-v4-latam-32gb-cph2083/score/index.json b/site/public/v1/smartphones/a12-2020-dual-sim-td-lte-v4-latam-32gb-cph2083/score/index.json new file mode 100644 index 00000000000..470feae9b91 --- /dev/null +++ b/site/public/v1/smartphones/a12-2020-dual-sim-td-lte-v4-latam-32gb-cph2083/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a12-2020-global-dual-sim-td-lte-v3-32gb-cph2083/index.json b/site/public/v1/smartphones/a12-2020-global-dual-sim-td-lte-v3-32gb-cph2083/index.json new file mode 100644 index 00000000000..cf243a81ed8 --- /dev/null +++ b/site/public/v1/smartphones/a12-2020-global-dual-sim-td-lte-v3-32gb-cph2083/index.json @@ -0,0 +1,76 @@ +{ + "id": 3021, + "slug": "a12-2020-global-dual-sim-td-lte-v3-32gb-cph2083", + "name": "A12 2020 Global Dual SIM TD-LTE V3 32GB CPH2083", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.537922", + "updated_at": "2026-06-19T00:43:44.537922" +} diff --git a/site/public/v1/smartphones/a12-2020-global-dual-sim-td-lte-v3-32gb-cph2083/score/index.json b/site/public/v1/smartphones/a12-2020-global-dual-sim-td-lte-v3-32gb-cph2083/score/index.json new file mode 100644 index 00000000000..470feae9b91 --- /dev/null +++ b/site/public/v1/smartphones/a12-2020-global-dual-sim-td-lte-v3-32gb-cph2083/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a15-2020-premium-edition-dual-sim-td-lte-in-id-my-pk-v1-32gb-cph2185/index.json b/site/public/v1/smartphones/a15-2020-premium-edition-dual-sim-td-lte-in-id-my-pk-v1-32gb-cph2185/index.json new file mode 100644 index 00000000000..68c55bc2d6e --- /dev/null +++ b/site/public/v1/smartphones/a15-2020-premium-edition-dual-sim-td-lte-in-id-my-pk-v1-32gb-cph2185/index.json @@ -0,0 +1,77 @@ +{ + "id": 3023, + "slug": "a15-2020-premium-edition-dual-sim-td-lte-in-id-my-pk-v1-32gb-cph2185", + "name": "A15 2020 Premium Edition Dual SIM TD-LTE IN ID MY PK V1 32GB CPH2185", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-10-22", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4230, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.537922", + "updated_at": "2026-06-19T00:43:44.537922" +} diff --git a/site/public/v1/smartphones/a15-2020-premium-edition-dual-sim-td-lte-in-id-my-pk-v1-32gb-cph2185/score/index.json b/site/public/v1/smartphones/a15-2020-premium-edition-dual-sim-td-lte-in-id-my-pk-v1-32gb-cph2185/score/index.json new file mode 100644 index 00000000000..3bf03f259d5 --- /dev/null +++ b/site/public/v1/smartphones/a15-2020-premium-edition-dual-sim-td-lte-in-id-my-pk-v1-32gb-cph2185/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/a15-2020-premium-edition-dual-sim-td-lte-th-v2-32gb-cph2185/index.json b/site/public/v1/smartphones/a15-2020-premium-edition-dual-sim-td-lte-th-v2-32gb-cph2185/index.json new file mode 100644 index 00000000000..01b5fd97c2d --- /dev/null +++ b/site/public/v1/smartphones/a15-2020-premium-edition-dual-sim-td-lte-th-v2-32gb-cph2185/index.json @@ -0,0 +1,77 @@ +{ + "id": 3024, + "slug": "a15-2020-premium-edition-dual-sim-td-lte-th-v2-32gb-cph2185", + "name": "A15 2020 Premium Edition Dual SIM TD-LTE TH V2 32GB CPH2185", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-10-22", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4230, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.537922", + "updated_at": "2026-06-19T00:43:44.538922" +} diff --git a/site/public/v1/smartphones/a15-2020-premium-edition-dual-sim-td-lte-th-v2-32gb-cph2185/score/index.json b/site/public/v1/smartphones/a15-2020-premium-edition-dual-sim-td-lte-th-v2-32gb-cph2185/score/index.json new file mode 100644 index 00000000000..3bf03f259d5 --- /dev/null +++ b/site/public/v1/smartphones/a15-2020-premium-edition-dual-sim-td-lte-th-v2-32gb-cph2185/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/a15-2020-premium-edition-global-dual-sim-td-lte-v3-32gb-cph2185/index.json b/site/public/v1/smartphones/a15-2020-premium-edition-global-dual-sim-td-lte-v3-32gb-cph2185/index.json new file mode 100644 index 00000000000..c215173a54d --- /dev/null +++ b/site/public/v1/smartphones/a15-2020-premium-edition-global-dual-sim-td-lte-v3-32gb-cph2185/index.json @@ -0,0 +1,77 @@ +{ + "id": 3025, + "slug": "a15-2020-premium-edition-global-dual-sim-td-lte-v3-32gb-cph2185", + "name": "A15 2020 Premium Edition Global Dual SIM TD-LTE V3 32GB CPH2185", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-10-16", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4230, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.538922", + "updated_at": "2026-06-19T00:43:44.538922" +} diff --git a/site/public/v1/smartphones/a15-2020-premium-edition-global-dual-sim-td-lte-v3-32gb-cph2185/score/index.json b/site/public/v1/smartphones/a15-2020-premium-edition-global-dual-sim-td-lte-v3-32gb-cph2185/score/index.json new file mode 100644 index 00000000000..3bf03f259d5 --- /dev/null +++ b/site/public/v1/smartphones/a15-2020-premium-edition-global-dual-sim-td-lte-v3-32gb-cph2185/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/a15-2020-standard-edition-dual-sim-td-lte-in-v1-32gb-cph2185/index.json b/site/public/v1/smartphones/a15-2020-standard-edition-dual-sim-td-lte-in-v1-32gb-cph2185/index.json new file mode 100644 index 00000000000..b27249550bc --- /dev/null +++ b/site/public/v1/smartphones/a15-2020-standard-edition-dual-sim-td-lte-in-v1-32gb-cph2185/index.json @@ -0,0 +1,77 @@ +{ + "id": 3027, + "slug": "a15-2020-standard-edition-dual-sim-td-lte-in-v1-32gb-cph2185", + "name": "A15 2020 Standard Edition Dual SIM TD-LTE IN V1 32GB CPH2185", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-10-22", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4230, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.538922", + "updated_at": "2026-06-19T00:43:44.538922" +} diff --git a/site/public/v1/smartphones/a15-2020-standard-edition-dual-sim-td-lte-in-v1-32gb-cph2185/score/index.json b/site/public/v1/smartphones/a15-2020-standard-edition-dual-sim-td-lte-in-v1-32gb-cph2185/score/index.json new file mode 100644 index 00000000000..3bf03f259d5 --- /dev/null +++ b/site/public/v1/smartphones/a15-2020-standard-edition-dual-sim-td-lte-in-v1-32gb-cph2185/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/a15-2020-standard-edition-global-dual-sim-td-lte-v3-32gb-cph2185/index.json b/site/public/v1/smartphones/a15-2020-standard-edition-global-dual-sim-td-lte-v3-32gb-cph2185/index.json new file mode 100644 index 00000000000..9b7b9b4de44 --- /dev/null +++ b/site/public/v1/smartphones/a15-2020-standard-edition-global-dual-sim-td-lte-v3-32gb-cph2185/index.json @@ -0,0 +1,77 @@ +{ + "id": 3028, + "slug": "a15-2020-standard-edition-global-dual-sim-td-lte-v3-32gb-cph2185", + "name": "A15 2020 Standard Edition Global Dual SIM TD-LTE V3 32GB CPH2185", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-10-16", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4230, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.538922", + "updated_at": "2026-06-19T00:43:44.538922" +} diff --git a/site/public/v1/smartphones/a15-2020-standard-edition-global-dual-sim-td-lte-v3-32gb-cph2185/score/index.json b/site/public/v1/smartphones/a15-2020-standard-edition-global-dual-sim-td-lte-v3-32gb-cph2185/score/index.json new file mode 100644 index 00000000000..3bf03f259d5 --- /dev/null +++ b/site/public/v1/smartphones/a15-2020-standard-edition-global-dual-sim-td-lte-v3-32gb-cph2185/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/a15s-2020-dual-sim-td-lte-in-v1-64gb-cph2179/index.json b/site/public/v1/smartphones/a15s-2020-dual-sim-td-lte-in-v1-64gb-cph2179/index.json new file mode 100644 index 00000000000..0f4da3a523c --- /dev/null +++ b/site/public/v1/smartphones/a15s-2020-dual-sim-td-lte-in-v1-64gb-cph2179/index.json @@ -0,0 +1,77 @@ +{ + "id": 3030, + "slug": "a15s-2020-dual-sim-td-lte-in-v1-64gb-cph2179", + "name": "A15s 2020 Dual SIM TD-LTE IN V1 64GB CPH2179", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-12-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.539587", + "updated_at": "2026-06-19T00:43:44.539587" +} diff --git a/site/public/v1/smartphones/a15s-2020-dual-sim-td-lte-in-v1-64gb-cph2179/score/index.json b/site/public/v1/smartphones/a15s-2020-dual-sim-td-lte-in-v1-64gb-cph2179/score/index.json new file mode 100644 index 00000000000..3bf03f259d5 --- /dev/null +++ b/site/public/v1/smartphones/a15s-2020-dual-sim-td-lte-in-v1-64gb-cph2179/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/a16-2021-premium-edition-dual-sim-td-lte-v1-in-id-bd-64gb-cph2269/index.json b/site/public/v1/smartphones/a16-2021-premium-edition-dual-sim-td-lte-v1-in-id-bd-64gb-cph2269/index.json new file mode 100644 index 00000000000..cd3a06bffdd --- /dev/null +++ b/site/public/v1/smartphones/a16-2021-premium-edition-dual-sim-td-lte-v1-in-id-bd-64gb-cph2269/index.json @@ -0,0 +1,77 @@ +{ + "id": 3263, + "slug": "a16-2021-premium-edition-dual-sim-td-lte-v1-in-id-bd-64gb-cph2269", + "name": "A16 2021 Premium Edition Dual SIM TD-LTE V1 IN ID BD 64GB CPH2269", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-07-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.572626", + "updated_at": "2026-06-19T00:43:44.572626" +} diff --git a/site/public/v1/smartphones/a16-2021-premium-edition-dual-sim-td-lte-v1-in-id-bd-64gb-cph2269/score/index.json b/site/public/v1/smartphones/a16-2021-premium-edition-dual-sim-td-lte-v1-in-id-bd-64gb-cph2269/score/index.json new file mode 100644 index 00000000000..ff129acafc5 --- /dev/null +++ b/site/public/v1/smartphones/a16-2021-premium-edition-dual-sim-td-lte-v1-in-id-bd-64gb-cph2269/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/a16-2021-premium-edition-dual-sim-td-lte-v2-th-my-sg-vn-ph-kh-64gb-cph2269-cph2275/index.json b/site/public/v1/smartphones/a16-2021-premium-edition-dual-sim-td-lte-v2-th-my-sg-vn-ph-kh-64gb-cph2269-cph2275/index.json new file mode 100644 index 00000000000..31b0a51d495 --- /dev/null +++ b/site/public/v1/smartphones/a16-2021-premium-edition-dual-sim-td-lte-v2-th-my-sg-vn-ph-kh-64gb-cph2269-cph2275/index.json @@ -0,0 +1,77 @@ +{ + "id": 3264, + "slug": "a16-2021-premium-edition-dual-sim-td-lte-v2-th-my-sg-vn-ph-kh-64gb-cph2269-cph2275", + "name": "A16 2021 Premium Edition Dual SIM TD-LTE V2 TH MY SG VN PH KH 64GB CPH2269 / CPH2275", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-07-01", + "msrp_usd": 199, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 17.5, + "value": 56.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.572626", + "updated_at": "2026-06-19T00:43:44.572626" +} diff --git a/site/public/v1/smartphones/a16-2021-premium-edition-dual-sim-td-lte-v2-th-my-sg-vn-ph-kh-64gb-cph2269-cph2275/score/index.json b/site/public/v1/smartphones/a16-2021-premium-edition-dual-sim-td-lte-v2-th-my-sg-vn-ph-kh-64gb-cph2269-cph2275/score/index.json new file mode 100644 index 00000000000..a23d61db4b1 --- /dev/null +++ b/site/public/v1/smartphones/a16-2021-premium-edition-dual-sim-td-lte-v2-th-my-sg-vn-ph-kh-64gb-cph2269-cph2275/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 17.5, + "value": 56.6 +} diff --git a/site/public/v1/smartphones/a16-2021-standard-edition-dual-sim-td-lte-v1-id-pk-bd-np-32gb-cph2269/index.json b/site/public/v1/smartphones/a16-2021-standard-edition-dual-sim-td-lte-v1-id-pk-bd-np-32gb-cph2269/index.json new file mode 100644 index 00000000000..5796d839cab --- /dev/null +++ b/site/public/v1/smartphones/a16-2021-standard-edition-dual-sim-td-lte-v1-id-pk-bd-np-32gb-cph2269/index.json @@ -0,0 +1,77 @@ +{ + "id": 3266, + "slug": "a16-2021-standard-edition-dual-sim-td-lte-v1-id-pk-bd-np-32gb-cph2269", + "name": "A16 2021 Standard Edition Dual SIM TD-LTE V1 ID PK BD NP 32GB CPH2269", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-07-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.573631", + "updated_at": "2026-06-19T00:43:44.573631" +} diff --git a/site/public/v1/smartphones/a16-2021-standard-edition-dual-sim-td-lte-v1-id-pk-bd-np-32gb-cph2269/score/index.json b/site/public/v1/smartphones/a16-2021-standard-edition-dual-sim-td-lte-v1-id-pk-bd-np-32gb-cph2269/score/index.json new file mode 100644 index 00000000000..ff129acafc5 --- /dev/null +++ b/site/public/v1/smartphones/a16-2021-standard-edition-dual-sim-td-lte-v1-id-pk-bd-np-32gb-cph2269/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/a16-2021-standard-edition-dual-sim-td-lte-v2-th-my-vn-ph-kh-32gb-cph2269/index.json b/site/public/v1/smartphones/a16-2021-standard-edition-dual-sim-td-lte-v2-th-my-vn-ph-kh-32gb-cph2269/index.json new file mode 100644 index 00000000000..98dea48b696 --- /dev/null +++ b/site/public/v1/smartphones/a16-2021-standard-edition-dual-sim-td-lte-v2-th-my-vn-ph-kh-32gb-cph2269/index.json @@ -0,0 +1,77 @@ +{ + "id": 3267, + "slug": "a16-2021-standard-edition-dual-sim-td-lte-v2-th-my-vn-ph-kh-32gb-cph2269", + "name": "A16 2021 Standard Edition Dual SIM TD-LTE V2 TH MY VN PH KH 32GB CPH2269", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-07-01", + "msrp_usd": 4999, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 17.5, + "value": 6.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.573631", + "updated_at": "2026-06-19T00:43:44.573631" +} diff --git a/site/public/v1/smartphones/a16-2021-standard-edition-dual-sim-td-lte-v2-th-my-vn-ph-kh-32gb-cph2269/score/index.json b/site/public/v1/smartphones/a16-2021-standard-edition-dual-sim-td-lte-v2-th-my-vn-ph-kh-32gb-cph2269/score/index.json new file mode 100644 index 00000000000..f65928f1b7c --- /dev/null +++ b/site/public/v1/smartphones/a16-2021-standard-edition-dual-sim-td-lte-v2-th-my-vn-ph-kh-32gb-cph2269/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 17.5, + "value": 6.6 +} diff --git a/site/public/v1/smartphones/a16s-2021-global-dual-sim-td-lte-64gb-cph2271/index.json b/site/public/v1/smartphones/a16s-2021-global-dual-sim-td-lte-64gb-cph2271/index.json new file mode 100644 index 00000000000..6df9bee3237 --- /dev/null +++ b/site/public/v1/smartphones/a16s-2021-global-dual-sim-td-lte-64gb-cph2271/index.json @@ -0,0 +1,77 @@ +{ + "id": 3271, + "slug": "a16s-2021-global-dual-sim-td-lte-64gb-cph2271", + "name": "A16s 2021 Global Dual SIM TD-LTE 64GB CPH2271", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-09-27", + "msrp_usd": 179, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 17.5, + "value": 56.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.573631", + "updated_at": "2026-06-19T00:43:44.573631" +} diff --git a/site/public/v1/smartphones/a16s-2021-global-dual-sim-td-lte-64gb-cph2271/score/index.json b/site/public/v1/smartphones/a16s-2021-global-dual-sim-td-lte-64gb-cph2271/score/index.json new file mode 100644 index 00000000000..a23d61db4b1 --- /dev/null +++ b/site/public/v1/smartphones/a16s-2021-global-dual-sim-td-lte-64gb-cph2271/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 17.5, + "value": 56.6 +} diff --git a/site/public/v1/smartphones/a16s-2021-global-td-lte-64gb-cph2271/index.json b/site/public/v1/smartphones/a16s-2021-global-td-lte-64gb-cph2271/index.json new file mode 100644 index 00000000000..15ce4b2fbf7 --- /dev/null +++ b/site/public/v1/smartphones/a16s-2021-global-td-lte-64gb-cph2271/index.json @@ -0,0 +1,77 @@ +{ + "id": 3272, + "slug": "a16s-2021-global-td-lte-64gb-cph2271", + "name": "A16s 2021 Global TD-LTE 64GB CPH2271", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-09-27", + "msrp_usd": 179, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 17.5, + "value": 56.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.573631", + "updated_at": "2026-06-19T00:43:44.574637" +} diff --git a/site/public/v1/smartphones/a16s-2021-global-td-lte-64gb-cph2271/score/index.json b/site/public/v1/smartphones/a16s-2021-global-td-lte-64gb-cph2271/score/index.json new file mode 100644 index 00000000000..a23d61db4b1 --- /dev/null +++ b/site/public/v1/smartphones/a16s-2021-global-td-lte-64gb-cph2271/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 17.5, + "value": 56.6 +} diff --git a/site/public/v1/smartphones/a1k-dual-sim-td-lte-in-mn-bd-32gb-cph1923/index.json b/site/public/v1/smartphones/a1k-dual-sim-td-lte-in-mn-bd-32gb-cph1923/index.json new file mode 100644 index 00000000000..1e9ed72f7ed --- /dev/null +++ b/site/public/v1/smartphones/a1k-dual-sim-td-lte-in-mn-bd-32gb-cph1923/index.json @@ -0,0 +1,76 @@ +{ + "id": 2817, + "slug": "a1k-dual-sim-td-lte-in-mn-bd-32gb-cph1923", + "name": "A1k Dual SIM TD-LTE IN MN BD 32GB CPH1923", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-04-23", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.508912", + "updated_at": "2026-06-19T00:43:44.508912" +} diff --git a/site/public/v1/smartphones/a1k-dual-sim-td-lte-in-mn-bd-32gb-cph1923/score/index.json b/site/public/v1/smartphones/a1k-dual-sim-td-lte-in-mn-bd-32gb-cph1923/score/index.json new file mode 100644 index 00000000000..7f209133483 --- /dev/null +++ b/site/public/v1/smartphones/a1k-dual-sim-td-lte-in-mn-bd-32gb-cph1923/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a1k-global-dual-sim-td-lte-32gb-cph1923/index.json b/site/public/v1/smartphones/a1k-global-dual-sim-td-lte-32gb-cph1923/index.json new file mode 100644 index 00000000000..ceb333f4386 --- /dev/null +++ b/site/public/v1/smartphones/a1k-global-dual-sim-td-lte-32gb-cph1923/index.json @@ -0,0 +1,76 @@ +{ + "id": 2818, + "slug": "a1k-global-dual-sim-td-lte-32gb-cph1923", + "name": "A1k Global Dual SIM TD-LTE 32GB CPH1923", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-04-23", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.508912", + "updated_at": "2026-06-19T00:43:44.508912" +} diff --git a/site/public/v1/smartphones/a1k-global-dual-sim-td-lte-32gb-cph1923/score/index.json b/site/public/v1/smartphones/a1k-global-dual-sim-td-lte-32gb-cph1923/score/index.json new file mode 100644 index 00000000000..7f209133483 --- /dev/null +++ b/site/public/v1/smartphones/a1k-global-dual-sim-td-lte-32gb-cph1923/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a3-dual-sim-td-lte-apac-cph1837/index.json b/site/public/v1/smartphones/a3-dual-sim-td-lte-apac-cph1837/index.json new file mode 100644 index 00000000000..2ecf106df94 --- /dev/null +++ b/site/public/v1/smartphones/a3-dual-sim-td-lte-apac-cph1837/index.json @@ -0,0 +1,76 @@ +{ + "id": 2721, + "slug": "a3-dual-sim-td-lte-apac-cph1837", + "name": "A3 Dual SIM TD-LTE APAC CPH1837", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-06-23", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.5, + "performance": 0.0, + "camera": 6.3, + "battery": 6.0, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.496306", + "updated_at": "2026-06-19T00:43:44.496306" +} diff --git a/site/public/v1/smartphones/a3-dual-sim-td-lte-apac-cph1837/score/index.json b/site/public/v1/smartphones/a3-dual-sim-td-lte-apac-cph1837/score/index.json new file mode 100644 index 00000000000..e6c69a24639 --- /dev/null +++ b/site/public/v1/smartphones/a3-dual-sim-td-lte-apac-cph1837/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.5, + "performance": 0.0, + "camera": 6.3, + "battery": 6.0, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/a3-dual-sim-td-lte-cn-padm00/index.json b/site/public/v1/smartphones/a3-dual-sim-td-lte-cn-padm00/index.json new file mode 100644 index 00000000000..5b9632387aa --- /dev/null +++ b/site/public/v1/smartphones/a3-dual-sim-td-lte-cn-padm00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2722, + "slug": "a3-dual-sim-td-lte-cn-padm00", + "name": "A3 Dual SIM TD-LTE CN PADM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.5, + "performance": 0.0, + "camera": 6.3, + "battery": 6.0, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.496306", + "updated_at": "2026-06-19T00:43:44.496306" +} diff --git a/site/public/v1/smartphones/a3-dual-sim-td-lte-cn-padm00/score/index.json b/site/public/v1/smartphones/a3-dual-sim-td-lte-cn-padm00/score/index.json new file mode 100644 index 00000000000..e6c69a24639 --- /dev/null +++ b/site/public/v1/smartphones/a3-dual-sim-td-lte-cn-padm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.5, + "performance": 0.0, + "camera": 6.3, + "battery": 6.0, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/a3-dual-sim-td-lte-cn-padt00/index.json b/site/public/v1/smartphones/a3-dual-sim-td-lte-cn-padt00/index.json new file mode 100644 index 00000000000..b0a04cea4be --- /dev/null +++ b/site/public/v1/smartphones/a3-dual-sim-td-lte-cn-padt00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2723, + "slug": "a3-dual-sim-td-lte-cn-padt00", + "name": "A3 Dual SIM TD-LTE CN PADT00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.5, + "performance": 0.0, + "camera": 6.3, + "battery": 6.0, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.496306", + "updated_at": "2026-06-19T00:43:44.496306" +} diff --git a/site/public/v1/smartphones/a3-dual-sim-td-lte-cn-padt00/score/index.json b/site/public/v1/smartphones/a3-dual-sim-td-lte-cn-padt00/score/index.json new file mode 100644 index 00000000000..e6c69a24639 --- /dev/null +++ b/site/public/v1/smartphones/a3-dual-sim-td-lte-cn-padt00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.5, + "performance": 0.0, + "camera": 6.3, + "battery": 6.0, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/a30-lte-latam-5102o/index.json b/site/public/v1/smartphones/a30-lte-latam-5102o/index.json new file mode 100644 index 00000000000..e89f0f92cb7 --- /dev/null +++ b/site/public/v1/smartphones/a30-lte-latam-5102o/index.json @@ -0,0 +1,76 @@ +{ + "id": 4976, + "slug": "a30-lte-latam-5102o", + "name": "A30 LTE LATAM 5102O", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2021-10-01", + "msrp_usd": 120, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 293 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.95, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": 56.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.835762", + "updated_at": "2026-06-19T00:43:44.835762" +} diff --git a/site/public/v1/smartphones/a30-lte-latam-5102o/score/index.json b/site/public/v1/smartphones/a30-lte-latam-5102o/score/index.json new file mode 100644 index 00000000000..5c96d84f650 --- /dev/null +++ b/site/public/v1/smartphones/a30-lte-latam-5102o/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": 56.6 +} diff --git a/site/public/v1/smartphones/a31-2020-premium-edition-dual-sim-td-lte-v1-in-sg-vn-bd-128gb-cph2015-cph2081/index.json b/site/public/v1/smartphones/a31-2020-premium-edition-dual-sim-td-lte-v1-in-sg-vn-bd-128gb-cph2015-cph2081/index.json new file mode 100644 index 00000000000..e407caf0777 --- /dev/null +++ b/site/public/v1/smartphones/a31-2020-premium-edition-dual-sim-td-lte-v1-in-sg-vn-bd-128gb-cph2015-cph2081/index.json @@ -0,0 +1,76 @@ +{ + "id": 3032, + "slug": "a31-2020-premium-edition-dual-sim-td-lte-v1-in-sg-vn-bd-128gb-cph2015-cph2081", + "name": "A31 2020 Premium Edition Dual SIM TD-LTE V1 IN SG VN BD 128GB CPH2015 / CPH2081", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-02-14", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 1.5, + "camera": 5.2, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.539587", + "updated_at": "2026-06-19T00:43:44.539587" +} diff --git a/site/public/v1/smartphones/a31-2020-premium-edition-dual-sim-td-lte-v1-in-sg-vn-bd-128gb-cph2015-cph2081/score/index.json b/site/public/v1/smartphones/a31-2020-premium-edition-dual-sim-td-lte-v1-in-sg-vn-bd-128gb-cph2015-cph2081/score/index.json new file mode 100644 index 00000000000..a810fe1d7ea --- /dev/null +++ b/site/public/v1/smartphones/a31-2020-premium-edition-dual-sim-td-lte-v1-in-sg-vn-bd-128gb-cph2015-cph2081/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 1.5, + "camera": 5.2, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a31-2020-premium-edition-dual-sim-td-lte-v2-th-ph-128gb-cph2015-cph2031/index.json b/site/public/v1/smartphones/a31-2020-premium-edition-dual-sim-td-lte-v2-th-ph-128gb-cph2015-cph2031/index.json new file mode 100644 index 00000000000..7d7fd202f7e --- /dev/null +++ b/site/public/v1/smartphones/a31-2020-premium-edition-dual-sim-td-lte-v2-th-ph-128gb-cph2015-cph2031/index.json @@ -0,0 +1,76 @@ +{ + "id": 3033, + "slug": "a31-2020-premium-edition-dual-sim-td-lte-v2-th-ph-128gb-cph2015-cph2031", + "name": "A31 2020 Premium Edition Dual SIM TD-LTE V2 TH PH 128GB CPH2015 / CPH2031", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-02-14", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 1.5, + "camera": 5.2, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.539587", + "updated_at": "2026-06-19T00:43:44.539587" +} diff --git a/site/public/v1/smartphones/a31-2020-premium-edition-dual-sim-td-lte-v2-th-ph-128gb-cph2015-cph2031/score/index.json b/site/public/v1/smartphones/a31-2020-premium-edition-dual-sim-td-lte-v2-th-ph-128gb-cph2015-cph2031/score/index.json new file mode 100644 index 00000000000..a810fe1d7ea --- /dev/null +++ b/site/public/v1/smartphones/a31-2020-premium-edition-dual-sim-td-lte-v2-th-ph-128gb-cph2015-cph2031/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 1.5, + "camera": 5.2, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a31-2020-premium-edition-dual-sim-td-lte-v3-kz-128gb-cph2015/index.json b/site/public/v1/smartphones/a31-2020-premium-edition-dual-sim-td-lte-v3-kz-128gb-cph2015/index.json new file mode 100644 index 00000000000..94b1a162b61 --- /dev/null +++ b/site/public/v1/smartphones/a31-2020-premium-edition-dual-sim-td-lte-v3-kz-128gb-cph2015/index.json @@ -0,0 +1,76 @@ +{ + "id": 3034, + "slug": "a31-2020-premium-edition-dual-sim-td-lte-v3-kz-128gb-cph2015", + "name": "A31 2020 Premium Edition Dual SIM TD-LTE V3 KZ 128GB CPH2015", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-02-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 1.5, + "camera": 5.2, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.539587", + "updated_at": "2026-06-19T00:43:44.539587" +} diff --git a/site/public/v1/smartphones/a31-2020-premium-edition-dual-sim-td-lte-v3-kz-128gb-cph2015/score/index.json b/site/public/v1/smartphones/a31-2020-premium-edition-dual-sim-td-lte-v3-kz-128gb-cph2015/score/index.json new file mode 100644 index 00000000000..a810fe1d7ea --- /dev/null +++ b/site/public/v1/smartphones/a31-2020-premium-edition-dual-sim-td-lte-v3-kz-128gb-cph2015/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 1.5, + "camera": 5.2, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a31-2020-premium-edition-dual-sim-td-lte-v4-id-128gb-cph2015/index.json b/site/public/v1/smartphones/a31-2020-premium-edition-dual-sim-td-lte-v4-id-128gb-cph2015/index.json new file mode 100644 index 00000000000..9bec3aa1364 --- /dev/null +++ b/site/public/v1/smartphones/a31-2020-premium-edition-dual-sim-td-lte-v4-id-128gb-cph2015/index.json @@ -0,0 +1,76 @@ +{ + "id": 3035, + "slug": "a31-2020-premium-edition-dual-sim-td-lte-v4-id-128gb-cph2015", + "name": "A31 2020 Premium Edition Dual SIM TD-LTE V4 ID 128GB CPH2015", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-02-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 1.5, + "camera": 5.2, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.539587", + "updated_at": "2026-06-19T00:43:44.539587" +} diff --git a/site/public/v1/smartphones/a31-2020-premium-edition-dual-sim-td-lte-v4-id-128gb-cph2015/score/index.json b/site/public/v1/smartphones/a31-2020-premium-edition-dual-sim-td-lte-v4-id-128gb-cph2015/score/index.json new file mode 100644 index 00000000000..a810fe1d7ea --- /dev/null +++ b/site/public/v1/smartphones/a31-2020-premium-edition-dual-sim-td-lte-v4-id-128gb-cph2015/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 1.5, + "camera": 5.2, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v1-in-sg-64gb-cph2015-cph2073/index.json b/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v1-in-sg-64gb-cph2015-cph2073/index.json new file mode 100644 index 00000000000..707bd857dbe --- /dev/null +++ b/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v1-in-sg-64gb-cph2015-cph2073/index.json @@ -0,0 +1,76 @@ +{ + "id": 3037, + "slug": "a31-2020-standard-edition-dual-sim-td-lte-v1-in-sg-64gb-cph2015-cph2073", + "name": "A31 2020 Standard Edition Dual SIM TD-LTE V1 IN SG 64GB CPH2015 / CPH2073", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-02-14", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.2, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.539587", + "updated_at": "2026-06-19T00:43:44.540592" +} diff --git a/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v1-in-sg-64gb-cph2015-cph2073/score/index.json b/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v1-in-sg-64gb-cph2015-cph2073/score/index.json new file mode 100644 index 00000000000..0561b00a555 --- /dev/null +++ b/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v1-in-sg-64gb-cph2015-cph2073/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.2, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v1-sg-vn-bd-np-128gb-cph2015-cph2073/index.json b/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v1-sg-vn-bd-np-128gb-cph2015-cph2073/index.json new file mode 100644 index 00000000000..006935cbf24 --- /dev/null +++ b/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v1-sg-vn-bd-np-128gb-cph2015-cph2073/index.json @@ -0,0 +1,76 @@ +{ + "id": 3038, + "slug": "a31-2020-standard-edition-dual-sim-td-lte-v1-sg-vn-bd-np-128gb-cph2015-cph2073", + "name": "A31 2020 Standard Edition Dual SIM TD-LTE V1 SG VN BD NP 128GB CPH2015 / CPH2073", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-02-14", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.2, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.540592", + "updated_at": "2026-06-19T00:43:44.540592" +} diff --git a/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v1-sg-vn-bd-np-128gb-cph2015-cph2073/score/index.json b/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v1-sg-vn-bd-np-128gb-cph2015-cph2073/score/index.json new file mode 100644 index 00000000000..0561b00a555 --- /dev/null +++ b/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v1-sg-vn-bd-np-128gb-cph2015-cph2073/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.2, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v2-th-ph-128gb-cph2015-cph2031/index.json b/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v2-th-ph-128gb-cph2015-cph2031/index.json new file mode 100644 index 00000000000..db18300cbc2 --- /dev/null +++ b/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v2-th-ph-128gb-cph2015-cph2031/index.json @@ -0,0 +1,76 @@ +{ + "id": 3039, + "slug": "a31-2020-standard-edition-dual-sim-td-lte-v2-th-ph-128gb-cph2015-cph2031", + "name": "A31 2020 Standard Edition Dual SIM TD-LTE V2 TH PH 128GB CPH2015 / CPH2031", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-02-14", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.2, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.540592", + "updated_at": "2026-06-19T00:43:44.540592" +} diff --git a/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v2-th-ph-128gb-cph2015-cph2031/score/index.json b/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v2-th-ph-128gb-cph2015-cph2031/score/index.json new file mode 100644 index 00000000000..0561b00a555 --- /dev/null +++ b/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v2-th-ph-128gb-cph2015-cph2031/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.2, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v2-th-ph-64gb-cph2015-cph2031/index.json b/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v2-th-ph-64gb-cph2015-cph2031/index.json new file mode 100644 index 00000000000..73ecbdbd5fc --- /dev/null +++ b/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v2-th-ph-64gb-cph2015-cph2031/index.json @@ -0,0 +1,76 @@ +{ + "id": 3040, + "slug": "a31-2020-standard-edition-dual-sim-td-lte-v2-th-ph-64gb-cph2015-cph2031", + "name": "A31 2020 Standard Edition Dual SIM TD-LTE V2 TH PH 64GB CPH2015 / CPH2031", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-02-14", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.2, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.540592", + "updated_at": "2026-06-19T00:43:44.540592" +} diff --git a/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v2-th-ph-64gb-cph2015-cph2031/score/index.json b/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v2-th-ph-64gb-cph2015-cph2031/score/index.json new file mode 100644 index 00000000000..0561b00a555 --- /dev/null +++ b/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v2-th-ph-64gb-cph2015-cph2031/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.2, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v3-kz-sa-ae-128gb-cph2015/index.json b/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v3-kz-sa-ae-128gb-cph2015/index.json new file mode 100644 index 00000000000..c7e7efe4e38 --- /dev/null +++ b/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v3-kz-sa-ae-128gb-cph2015/index.json @@ -0,0 +1,76 @@ +{ + "id": 3041, + "slug": "a31-2020-standard-edition-dual-sim-td-lte-v3-kz-sa-ae-128gb-cph2015", + "name": "A31 2020 Standard Edition Dual SIM TD-LTE V3 KZ SA AE 128GB CPH2015", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-02-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.2, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.540592", + "updated_at": "2026-06-19T00:43:44.540592" +} diff --git a/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v3-kz-sa-ae-128gb-cph2015/score/index.json b/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v3-kz-sa-ae-128gb-cph2015/score/index.json new file mode 100644 index 00000000000..0561b00a555 --- /dev/null +++ b/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v3-kz-sa-ae-128gb-cph2015/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.2, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v3-ru-pl-kz-tr-64gb-cph2015-cph2029/index.json b/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v3-ru-pl-kz-tr-64gb-cph2015-cph2029/index.json new file mode 100644 index 00000000000..6be7fd2410e --- /dev/null +++ b/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v3-ru-pl-kz-tr-64gb-cph2015-cph2029/index.json @@ -0,0 +1,76 @@ +{ + "id": 3042, + "slug": "a31-2020-standard-edition-dual-sim-td-lte-v3-ru-pl-kz-tr-64gb-cph2015-cph2029", + "name": "A31 2020 Standard Edition Dual SIM TD-LTE V3 RU PL KZ TR 64GB CPH2015 / CPH2029", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-02-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.2, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.540592", + "updated_at": "2026-06-19T00:43:44.540592" +} diff --git a/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v3-ru-pl-kz-tr-64gb-cph2015-cph2029/score/index.json b/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v3-ru-pl-kz-tr-64gb-cph2015-cph2029/score/index.json new file mode 100644 index 00000000000..0561b00a555 --- /dev/null +++ b/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v3-ru-pl-kz-tr-64gb-cph2015-cph2029/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.2, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v4-id-128gb-cph2015/index.json b/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v4-id-128gb-cph2015/index.json new file mode 100644 index 00000000000..404bc0bf747 --- /dev/null +++ b/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v4-id-128gb-cph2015/index.json @@ -0,0 +1,76 @@ +{ + "id": 3043, + "slug": "a31-2020-standard-edition-dual-sim-td-lte-v4-id-128gb-cph2015", + "name": "A31 2020 Standard Edition Dual SIM TD-LTE V4 ID 128GB CPH2015", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-02-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.2, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.540592", + "updated_at": "2026-06-19T00:43:44.540592" +} diff --git a/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v4-id-128gb-cph2015/score/index.json b/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v4-id-128gb-cph2015/score/index.json new file mode 100644 index 00000000000..0561b00a555 --- /dev/null +++ b/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v4-id-128gb-cph2015/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.2, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v5-mx-128gb-cph2015/index.json b/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v5-mx-128gb-cph2015/index.json new file mode 100644 index 00000000000..299d271783d --- /dev/null +++ b/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v5-mx-128gb-cph2015/index.json @@ -0,0 +1,76 @@ +{ + "id": 3044, + "slug": "a31-2020-standard-edition-dual-sim-td-lte-v5-mx-128gb-cph2015", + "name": "A31 2020 Standard Edition Dual SIM TD-LTE V5 MX 128GB CPH2015", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-02-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 1.5, + "camera": 5.2, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.541597", + "updated_at": "2026-06-19T00:43:44.541597" +} diff --git a/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v5-mx-128gb-cph2015/score/index.json b/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v5-mx-128gb-cph2015/score/index.json new file mode 100644 index 00000000000..a810fe1d7ea --- /dev/null +++ b/site/public/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v5-mx-128gb-cph2015/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 1.5, + "camera": 5.2, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a32-2020-premium-edition-dual-sim-td-lte-cn-128gb-pdvm00/index.json b/site/public/v1/smartphones/a32-2020-premium-edition-dual-sim-td-lte-cn-128gb-pdvm00/index.json new file mode 100644 index 00000000000..ddd68d46f4b --- /dev/null +++ b/site/public/v1/smartphones/a32-2020-premium-edition-dual-sim-td-lte-cn-128gb-pdvm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3046, + "slug": "a32-2020-premium-edition-dual-sim-td-lte-cn-128gb-pdvm00", + "name": "A32 2020 Premium Edition Dual SIM TD-LTE CN 128GB PDVM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2020-09-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 3.0, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.541597", + "updated_at": "2026-06-19T00:43:44.541597" +} diff --git a/site/public/v1/smartphones/a32-2020-premium-edition-dual-sim-td-lte-cn-128gb-pdvm00/score/index.json b/site/public/v1/smartphones/a32-2020-premium-edition-dual-sim-td-lte-cn-128gb-pdvm00/score/index.json new file mode 100644 index 00000000000..db79519d547 --- /dev/null +++ b/site/public/v1/smartphones/a32-2020-premium-edition-dual-sim-td-lte-cn-128gb-pdvm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 3.0, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/a32-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdvm00/index.json b/site/public/v1/smartphones/a32-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdvm00/index.json new file mode 100644 index 00000000000..b029f12409c --- /dev/null +++ b/site/public/v1/smartphones/a32-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdvm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3047, + "slug": "a32-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdvm00", + "name": "A32 2020 Standard Edition Dual SIM TD-LTE CN 128GB PDVM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2020-09-01", + "msrp_usd": 1199, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": 23.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.541597", + "updated_at": "2026-06-19T00:43:44.541597" +} diff --git a/site/public/v1/smartphones/a32-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdvm00/score/index.json b/site/public/v1/smartphones/a32-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdvm00/score/index.json new file mode 100644 index 00000000000..35624205d30 --- /dev/null +++ b/site/public/v1/smartphones/a32-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdvm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": 23.6 +} diff --git a/site/public/v1/smartphones/a33-2020-standard-edition-dual-sim-td-lte-v1-in-32gb-cph2137/index.json b/site/public/v1/smartphones/a33-2020-standard-edition-dual-sim-td-lte-v1-in-32gb-cph2137/index.json new file mode 100644 index 00000000000..d9bbaa5ffb3 --- /dev/null +++ b/site/public/v1/smartphones/a33-2020-standard-edition-dual-sim-td-lte-v1-in-32gb-cph2137/index.json @@ -0,0 +1,77 @@ +{ + "id": 3048, + "slug": "a33-2020-standard-edition-dual-sim-td-lte-v1-in-32gb-cph2137", + "name": "A33 2020 Standard Edition Dual SIM TD-LTE V1 IN 32GB CPH2137", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.541597", + "updated_at": "2026-06-19T00:43:44.541597" +} diff --git a/site/public/v1/smartphones/a33-2020-standard-edition-dual-sim-td-lte-v1-in-32gb-cph2137/score/index.json b/site/public/v1/smartphones/a33-2020-standard-edition-dual-sim-td-lte-v1-in-32gb-cph2137/score/index.json new file mode 100644 index 00000000000..3aa95a8aa71 --- /dev/null +++ b/site/public/v1/smartphones/a33-2020-standard-edition-dual-sim-td-lte-v1-in-32gb-cph2137/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/a35-2021-dual-sim-td-lte-cn-128gb-pehm00/index.json b/site/public/v1/smartphones/a35-2021-dual-sim-td-lte-cn-128gb-pehm00/index.json new file mode 100644 index 00000000000..2712b0b905d --- /dev/null +++ b/site/public/v1/smartphones/a35-2021-dual-sim-td-lte-cn-128gb-pehm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3274, + "slug": "a35-2021-dual-sim-td-lte-cn-128gb-pehm00", + "name": "A35 2021 Dual SIM TD-LTE CN 128GB PEHM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2021-04-26", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.574637", + "updated_at": "2026-06-19T00:43:44.574637" +} diff --git a/site/public/v1/smartphones/a35-2021-dual-sim-td-lte-cn-128gb-pehm00/score/index.json b/site/public/v1/smartphones/a35-2021-dual-sim-td-lte-cn-128gb-pehm00/score/index.json new file mode 100644 index 00000000000..3bf03f259d5 --- /dev/null +++ b/site/public/v1/smartphones/a35-2021-dual-sim-td-lte-cn-128gb-pehm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/a35-2021-dual-sim-td-lte-cn-64gb-pehm00/index.json b/site/public/v1/smartphones/a35-2021-dual-sim-td-lte-cn-64gb-pehm00/index.json new file mode 100644 index 00000000000..33093a12301 --- /dev/null +++ b/site/public/v1/smartphones/a35-2021-dual-sim-td-lte-cn-64gb-pehm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3275, + "slug": "a35-2021-dual-sim-td-lte-cn-64gb-pehm00", + "name": "A35 2021 Dual SIM TD-LTE CN 64GB PEHM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2021-04-26", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.574637", + "updated_at": "2026-06-19T00:43:44.574637" +} diff --git a/site/public/v1/smartphones/a35-2021-dual-sim-td-lte-cn-64gb-pehm00/score/index.json b/site/public/v1/smartphones/a35-2021-dual-sim-td-lte-cn-64gb-pehm00/score/index.json new file mode 100644 index 00000000000..3bf03f259d5 --- /dev/null +++ b/site/public/v1/smartphones/a35-2021-dual-sim-td-lte-cn-64gb-pehm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/a37-dual-sim-td-lte-emea/index.json b/site/public/v1/smartphones/a37-dual-sim-td-lte-emea/index.json new file mode 100644 index 00000000000..1bea397dc3e --- /dev/null +++ b/site/public/v1/smartphones/a37-dual-sim-td-lte-emea/index.json @@ -0,0 +1,76 @@ +{ + "id": 2714, + "slug": "a37-dual-sim-td-lte-emea", + "name": "A37 Dual SIM TD-LTE EMEA", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 105, + "slug": "snapdragon-410", + "name": "Snapdragon 410", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 306", + "url": "/v1/socs/snapdragon-410" + }, + "release_date": "2016-06-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 2630, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 136.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "5.1", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.495308", + "updated_at": "2026-06-19T00:43:44.495308" +} diff --git a/site/public/v1/smartphones/a37-dual-sim-td-lte-emea/score/index.json b/site/public/v1/smartphones/a37-dual-sim-td-lte-emea/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/a37-dual-sim-td-lte-emea/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a37-dual-sim-td-lte-in-kz/index.json b/site/public/v1/smartphones/a37-dual-sim-td-lte-in-kz/index.json new file mode 100644 index 00000000000..0af002ad7ec --- /dev/null +++ b/site/public/v1/smartphones/a37-dual-sim-td-lte-in-kz/index.json @@ -0,0 +1,76 @@ +{ + "id": 2715, + "slug": "a37-dual-sim-td-lte-in-kz", + "name": "A37 Dual SIM TD-LTE IN KZ", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 105, + "slug": "snapdragon-410", + "name": "Snapdragon 410", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 306", + "url": "/v1/socs/snapdragon-410" + }, + "release_date": "2016-06-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 2630, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 136.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "5.1", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.495308", + "updated_at": "2026-06-19T00:43:44.495308" +} diff --git a/site/public/v1/smartphones/a37-dual-sim-td-lte-in-kz/score/index.json b/site/public/v1/smartphones/a37-dual-sim-td-lte-in-kz/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/a37-dual-sim-td-lte-in-kz/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a37-dual-sim-td-lte-sg/index.json b/site/public/v1/smartphones/a37-dual-sim-td-lte-sg/index.json new file mode 100644 index 00000000000..02a36454ebb --- /dev/null +++ b/site/public/v1/smartphones/a37-dual-sim-td-lte-sg/index.json @@ -0,0 +1,76 @@ +{ + "id": 2716, + "slug": "a37-dual-sim-td-lte-sg", + "name": "A37 Dual SIM TD-LTE SG", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 105, + "slug": "snapdragon-410", + "name": "Snapdragon 410", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 306", + "url": "/v1/socs/snapdragon-410" + }, + "release_date": "2016-06-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 2630, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 136.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "5.1", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.495308", + "updated_at": "2026-06-19T00:43:44.495308" +} diff --git a/site/public/v1/smartphones/a37-dual-sim-td-lte-sg/score/index.json b/site/public/v1/smartphones/a37-dual-sim-td-lte-sg/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/a37-dual-sim-td-lte-sg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a3s-dual-sim-td-lte-in-id-th-pk-np-sg-version-3-16gb-cph1803/index.json b/site/public/v1/smartphones/a3s-dual-sim-td-lte-in-id-th-pk-np-sg-version-3-16gb-cph1803/index.json new file mode 100644 index 00000000000..33cb30e10ca --- /dev/null +++ b/site/public/v1/smartphones/a3s-dual-sim-td-lte-in-id-th-pk-np-sg-version-3-16gb-cph1803/index.json @@ -0,0 +1,76 @@ +{ + "id": 2725, + "slug": "a3s-dual-sim-td-lte-in-id-th-pk-np-sg-version-3-16gb-cph1803", + "name": "A3s Dual SIM TD-LTE IN ID TH PK NP SG Version 3 16GB CPH1803", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.496306", + "updated_at": "2026-06-19T00:43:44.496306" +} diff --git a/site/public/v1/smartphones/a3s-dual-sim-td-lte-in-id-th-pk-np-sg-version-3-16gb-cph1803/score/index.json b/site/public/v1/smartphones/a3s-dual-sim-td-lte-in-id-th-pk-np-sg-version-3-16gb-cph1803/score/index.json new file mode 100644 index 00000000000..8556f7d0cec --- /dev/null +++ b/site/public/v1/smartphones/a3s-dual-sim-td-lte-in-id-th-pk-np-sg-version-3-16gb-cph1803/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a3s-dual-sim-td-lte-in-id-th-pk-np-sg-version-3-32gb-cph1805/index.json b/site/public/v1/smartphones/a3s-dual-sim-td-lte-in-id-th-pk-np-sg-version-3-32gb-cph1805/index.json new file mode 100644 index 00000000000..1821a8ccae7 --- /dev/null +++ b/site/public/v1/smartphones/a3s-dual-sim-td-lte-in-id-th-pk-np-sg-version-3-32gb-cph1805/index.json @@ -0,0 +1,76 @@ +{ + "id": 2726, + "slug": "a3s-dual-sim-td-lte-in-id-th-pk-np-sg-version-3-32gb-cph1805", + "name": "A3s Dual SIM TD-LTE IN ID TH PK NP SG Version 3 32GB CPH1805", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.496306", + "updated_at": "2026-06-19T00:43:44.496306" +} diff --git a/site/public/v1/smartphones/a3s-dual-sim-td-lte-in-id-th-pk-np-sg-version-3-32gb-cph1805/score/index.json b/site/public/v1/smartphones/a3s-dual-sim-td-lte-in-id-th-pk-np-sg-version-3-32gb-cph1805/score/index.json new file mode 100644 index 00000000000..8556f7d0cec --- /dev/null +++ b/site/public/v1/smartphones/a3s-dual-sim-td-lte-in-id-th-pk-np-sg-version-3-32gb-cph1805/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a3s-dual-sim-td-lte-ph-my-version-1-16gb-cph1803/index.json b/site/public/v1/smartphones/a3s-dual-sim-td-lte-ph-my-version-1-16gb-cph1803/index.json new file mode 100644 index 00000000000..476c807bb43 --- /dev/null +++ b/site/public/v1/smartphones/a3s-dual-sim-td-lte-ph-my-version-1-16gb-cph1803/index.json @@ -0,0 +1,76 @@ +{ + "id": 2727, + "slug": "a3s-dual-sim-td-lte-ph-my-version-1-16gb-cph1803", + "name": "A3s Dual SIM TD-LTE PH MY Version 1 16GB CPH1803", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.496306", + "updated_at": "2026-06-19T00:43:44.496306" +} diff --git a/site/public/v1/smartphones/a3s-dual-sim-td-lte-ph-my-version-1-16gb-cph1803/score/index.json b/site/public/v1/smartphones/a3s-dual-sim-td-lte-ph-my-version-1-16gb-cph1803/score/index.json new file mode 100644 index 00000000000..8556f7d0cec --- /dev/null +++ b/site/public/v1/smartphones/a3s-dual-sim-td-lte-ph-my-version-1-16gb-cph1803/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a3s-dual-sim-td-lte-vn-version-2-16gb-cph1803-a2-pro/index.json b/site/public/v1/smartphones/a3s-dual-sim-td-lte-vn-version-2-16gb-cph1803-a2-pro/index.json new file mode 100644 index 00000000000..43a08292636 --- /dev/null +++ b/site/public/v1/smartphones/a3s-dual-sim-td-lte-vn-version-2-16gb-cph1803-a2-pro/index.json @@ -0,0 +1,76 @@ +{ + "id": 2728, + "slug": "a3s-dual-sim-td-lte-vn-version-2-16gb-cph1803-a2-pro", + "name": "A3s Dual SIM TD-LTE VN Version 2 16GB CPH1803 / A2 Pro", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.496306", + "updated_at": "2026-06-19T00:43:44.496306" +} diff --git a/site/public/v1/smartphones/a3s-dual-sim-td-lte-vn-version-2-16gb-cph1803-a2-pro/score/index.json b/site/public/v1/smartphones/a3s-dual-sim-td-lte-vn-version-2-16gb-cph1803-a2-pro/score/index.json new file mode 100644 index 00000000000..8556f7d0cec --- /dev/null +++ b/site/public/v1/smartphones/a3s-dual-sim-td-lte-vn-version-2-16gb-cph1803-a2-pro/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a5-2020-premium-edition-dual-sim-td-lte-v1-id-bd-np-128gb-cph1933/index.json b/site/public/v1/smartphones/a5-2020-premium-edition-dual-sim-td-lte-v1-id-bd-np-128gb-cph1933/index.json new file mode 100644 index 00000000000..a2b0a7f8240 --- /dev/null +++ b/site/public/v1/smartphones/a5-2020-premium-edition-dual-sim-td-lte-v1-id-bd-np-128gb-cph1933/index.json @@ -0,0 +1,76 @@ +{ + "id": 2820, + "slug": "a5-2020-premium-edition-dual-sim-td-lte-v1-id-bd-np-128gb-cph1933", + "name": "A5 2020 Premium Edition Dual SIM TD-LTE V1 ID BD NP 128GB CPH1933", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-09-22", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.509912", + "updated_at": "2026-06-19T00:43:44.509912" +} diff --git a/site/public/v1/smartphones/a5-2020-premium-edition-dual-sim-td-lte-v1-id-bd-np-128gb-cph1933/score/index.json b/site/public/v1/smartphones/a5-2020-premium-edition-dual-sim-td-lte-v1-id-bd-np-128gb-cph1933/score/index.json new file mode 100644 index 00000000000..3611766e8e8 --- /dev/null +++ b/site/public/v1/smartphones/a5-2020-premium-edition-dual-sim-td-lte-v1-id-bd-np-128gb-cph1933/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a5-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-64gb-cph1933/index.json b/site/public/v1/smartphones/a5-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-64gb-cph1933/index.json new file mode 100644 index 00000000000..c00c0310fab --- /dev/null +++ b/site/public/v1/smartphones/a5-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-64gb-cph1933/index.json @@ -0,0 +1,76 @@ +{ + "id": 2821, + "slug": "a5-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-64gb-cph1933", + "name": "A5 2020 Premium Edition Dual SIM TD-LTE V1 IN ID PK BD NP 64GB CPH1933", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-09-22", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.509912", + "updated_at": "2026-06-19T00:43:44.509912" +} diff --git a/site/public/v1/smartphones/a5-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-64gb-cph1933/score/index.json b/site/public/v1/smartphones/a5-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-64gb-cph1933/score/index.json new file mode 100644 index 00000000000..3611766e8e8 --- /dev/null +++ b/site/public/v1/smartphones/a5-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-64gb-cph1933/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a5-2020-premium-edition-dual-sim-td-lte-v2-th-128gb-cph1933/index.json b/site/public/v1/smartphones/a5-2020-premium-edition-dual-sim-td-lte-v2-th-128gb-cph1933/index.json new file mode 100644 index 00000000000..0134a05fb97 --- /dev/null +++ b/site/public/v1/smartphones/a5-2020-premium-edition-dual-sim-td-lte-v2-th-128gb-cph1933/index.json @@ -0,0 +1,76 @@ +{ + "id": 2822, + "slug": "a5-2020-premium-edition-dual-sim-td-lte-v2-th-128gb-cph1933", + "name": "A5 2020 Premium Edition Dual SIM TD-LTE V2 TH 128GB CPH1933", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.509912", + "updated_at": "2026-06-19T00:43:44.509912" +} diff --git a/site/public/v1/smartphones/a5-2020-premium-edition-dual-sim-td-lte-v2-th-128gb-cph1933/score/index.json b/site/public/v1/smartphones/a5-2020-premium-edition-dual-sim-td-lte-v2-th-128gb-cph1933/score/index.json new file mode 100644 index 00000000000..3611766e8e8 --- /dev/null +++ b/site/public/v1/smartphones/a5-2020-premium-edition-dual-sim-td-lte-v2-th-128gb-cph1933/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a5-2020-premium-edition-dual-sim-td-lte-v4-tw-jp-sg-64gb-cph1943/index.json b/site/public/v1/smartphones/a5-2020-premium-edition-dual-sim-td-lte-v4-tw-jp-sg-64gb-cph1943/index.json new file mode 100644 index 00000000000..7bb9a82cd8f --- /dev/null +++ b/site/public/v1/smartphones/a5-2020-premium-edition-dual-sim-td-lte-v4-tw-jp-sg-64gb-cph1943/index.json @@ -0,0 +1,76 @@ +{ + "id": 2823, + "slug": "a5-2020-premium-edition-dual-sim-td-lte-v4-tw-jp-sg-64gb-cph1943", + "name": "A5 2020 Premium Edition Dual SIM TD-LTE V4 TW JP SG 64GB CPH1943", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-11-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.509912", + "updated_at": "2026-06-19T00:43:44.509912" +} diff --git a/site/public/v1/smartphones/a5-2020-premium-edition-dual-sim-td-lte-v4-tw-jp-sg-64gb-cph1943/score/index.json b/site/public/v1/smartphones/a5-2020-premium-edition-dual-sim-td-lte-v4-tw-jp-sg-64gb-cph1943/score/index.json new file mode 100644 index 00000000000..3611766e8e8 --- /dev/null +++ b/site/public/v1/smartphones/a5-2020-premium-edition-dual-sim-td-lte-v4-tw-jp-sg-64gb-cph1943/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a5-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph1933/index.json b/site/public/v1/smartphones/a5-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph1933/index.json new file mode 100644 index 00000000000..4e5fde1b1f6 --- /dev/null +++ b/site/public/v1/smartphones/a5-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph1933/index.json @@ -0,0 +1,76 @@ +{ + "id": 2824, + "slug": "a5-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph1933", + "name": "A5 2020 Premium Edition Global Dual SIM TD-LTE V3 128GB CPH1933", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.509912", + "updated_at": "2026-06-19T00:43:44.509912" +} diff --git a/site/public/v1/smartphones/a5-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph1933/score/index.json b/site/public/v1/smartphones/a5-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph1933/score/index.json new file mode 100644 index 00000000000..3611766e8e8 --- /dev/null +++ b/site/public/v1/smartphones/a5-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph1933/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a5-2020-premium-edition-global-dual-sim-td-lte-v3-64gb-cph1933/index.json b/site/public/v1/smartphones/a5-2020-premium-edition-global-dual-sim-td-lte-v3-64gb-cph1933/index.json new file mode 100644 index 00000000000..ae6b5243b84 --- /dev/null +++ b/site/public/v1/smartphones/a5-2020-premium-edition-global-dual-sim-td-lte-v3-64gb-cph1933/index.json @@ -0,0 +1,76 @@ +{ + "id": 2825, + "slug": "a5-2020-premium-edition-global-dual-sim-td-lte-v3-64gb-cph1933", + "name": "A5 2020 Premium Edition Global Dual SIM TD-LTE V3 64GB CPH1933", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.509912", + "updated_at": "2026-06-19T00:43:44.509912" +} diff --git a/site/public/v1/smartphones/a5-2020-premium-edition-global-dual-sim-td-lte-v3-64gb-cph1933/score/index.json b/site/public/v1/smartphones/a5-2020-premium-edition-global-dual-sim-td-lte-v3-64gb-cph1933/score/index.json new file mode 100644 index 00000000000..3611766e8e8 --- /dev/null +++ b/site/public/v1/smartphones/a5-2020-premium-edition-global-dual-sim-td-lte-v3-64gb-cph1933/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a5-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-bd-64gb-cph1931/index.json b/site/public/v1/smartphones/a5-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-bd-64gb-cph1931/index.json new file mode 100644 index 00000000000..3329ff6b806 --- /dev/null +++ b/site/public/v1/smartphones/a5-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-bd-64gb-cph1931/index.json @@ -0,0 +1,76 @@ +{ + "id": 2826, + "slug": "a5-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-bd-64gb-cph1931", + "name": "A5 2020 Standard Edition Dual SIM TD-LTE V1 IN ID PK BD 64GB CPH1931", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-09-22", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.510911", + "updated_at": "2026-06-19T00:43:44.510911" +} diff --git a/site/public/v1/smartphones/a5-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-bd-64gb-cph1931/score/index.json b/site/public/v1/smartphones/a5-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-bd-64gb-cph1931/score/index.json new file mode 100644 index 00000000000..3611766e8e8 --- /dev/null +++ b/site/public/v1/smartphones/a5-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-bd-64gb-cph1931/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a5-2020-standard-edition-dual-sim-td-lte-v2-my-th-64gb-cph1931/index.json b/site/public/v1/smartphones/a5-2020-standard-edition-dual-sim-td-lte-v2-my-th-64gb-cph1931/index.json new file mode 100644 index 00000000000..b1c8e685390 --- /dev/null +++ b/site/public/v1/smartphones/a5-2020-standard-edition-dual-sim-td-lte-v2-my-th-64gb-cph1931/index.json @@ -0,0 +1,76 @@ +{ + "id": 2827, + "slug": "a5-2020-standard-edition-dual-sim-td-lte-v2-my-th-64gb-cph1931", + "name": "A5 2020 Standard Edition Dual SIM TD-LTE V2 MY TH 64GB CPH1931", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.510911", + "updated_at": "2026-06-19T00:43:44.510911" +} diff --git a/site/public/v1/smartphones/a5-2020-standard-edition-dual-sim-td-lte-v2-my-th-64gb-cph1931/score/index.json b/site/public/v1/smartphones/a5-2020-standard-edition-dual-sim-td-lte-v2-my-th-64gb-cph1931/score/index.json new file mode 100644 index 00000000000..3611766e8e8 --- /dev/null +++ b/site/public/v1/smartphones/a5-2020-standard-edition-dual-sim-td-lte-v2-my-th-64gb-cph1931/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a5-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph1931/index.json b/site/public/v1/smartphones/a5-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph1931/index.json new file mode 100644 index 00000000000..659da5dc0c6 --- /dev/null +++ b/site/public/v1/smartphones/a5-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph1931/index.json @@ -0,0 +1,76 @@ +{ + "id": 2828, + "slug": "a5-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph1931", + "name": "A5 2020 Standard Edition Global Dual SIM TD-LTE V3 64GB CPH1931", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.510911", + "updated_at": "2026-06-19T00:43:44.510911" +} diff --git a/site/public/v1/smartphones/a5-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph1931/score/index.json b/site/public/v1/smartphones/a5-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph1931/score/index.json new file mode 100644 index 00000000000..3611766e8e8 --- /dev/null +++ b/site/public/v1/smartphones/a5-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph1931/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a5-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph1935/index.json b/site/public/v1/smartphones/a5-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph1935/index.json new file mode 100644 index 00000000000..8f1f9f6fa5b --- /dev/null +++ b/site/public/v1/smartphones/a5-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph1935/index.json @@ -0,0 +1,76 @@ +{ + "id": 2829, + "slug": "a5-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph1935", + "name": "A5 2020 Standard Edition Global Dual SIM TD-LTE V3 64GB CPH1935", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.510911", + "updated_at": "2026-06-19T00:43:44.510911" +} diff --git a/site/public/v1/smartphones/a5-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph1935/score/index.json b/site/public/v1/smartphones/a5-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph1935/score/index.json new file mode 100644 index 00000000000..3611766e8e8 --- /dev/null +++ b/site/public/v1/smartphones/a5-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph1935/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a5-dual-sim-td-lte-cn-32gb-hlte202n/index.json b/site/public/v1/smartphones/a5-dual-sim-td-lte-cn-32gb-hlte202n/index.json new file mode 100644 index 00000000000..f6d316d742b --- /dev/null +++ b/site/public/v1/smartphones/a5-dual-sim-td-lte-cn-32gb-hlte202n/index.json @@ -0,0 +1,76 @@ +{ + "id": 626, + "slug": "a5-dual-sim-td-lte-cn-32gb-hlte202n", + "name": "A5 Dual SIM TD-LTE CN 32GB HLTE202N", + "brand": { + "id": 14, + "slug": "hisense", + "name": "Hisense", + "country": "CN", + "url": "/v1/brands/hisense" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.84, + "resolution": "720x1440", + "type": "mono E Ink display", + "ppi": 276 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 158.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.192938", + "updated_at": "2026-06-19T00:43:44.192938" +} diff --git a/site/public/v1/smartphones/a5-dual-sim-td-lte-cn-32gb-hlte202n/score/index.json b/site/public/v1/smartphones/a5-dual-sim-td-lte-cn-32gb-hlte202n/score/index.json new file mode 100644 index 00000000000..a59635bee66 --- /dev/null +++ b/site/public/v1/smartphones/a5-dual-sim-td-lte-cn-32gb-hlte202n/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a5-dual-sim-td-lte-cn-64gb-hlte202n/index.json b/site/public/v1/smartphones/a5-dual-sim-td-lte-cn-64gb-hlte202n/index.json new file mode 100644 index 00000000000..b3611f0d01a --- /dev/null +++ b/site/public/v1/smartphones/a5-dual-sim-td-lte-cn-64gb-hlte202n/index.json @@ -0,0 +1,76 @@ +{ + "id": 627, + "slug": "a5-dual-sim-td-lte-cn-64gb-hlte202n", + "name": "A5 Dual SIM TD-LTE CN 64GB HLTE202N", + "brand": { + "id": 14, + "slug": "hisense", + "name": "Hisense", + "country": "CN", + "url": "/v1/brands/hisense" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "720x1440", + "type": "mono E Ink display", + "ppi": 276 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 158.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.192938", + "updated_at": "2026-06-19T00:43:44.192938" +} diff --git a/site/public/v1/smartphones/a5-dual-sim-td-lte-cn-64gb-hlte202n/score/index.json b/site/public/v1/smartphones/a5-dual-sim-td-lte-cn-64gb-hlte202n/score/index.json new file mode 100644 index 00000000000..a59635bee66 --- /dev/null +++ b/site/public/v1/smartphones/a5-dual-sim-td-lte-cn-64gb-hlte202n/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a5-dual-sim-td-lte-in-pk-bd-32gb-cph1809/index.json b/site/public/v1/smartphones/a5-dual-sim-td-lte-in-pk-bd-32gb-cph1809/index.json new file mode 100644 index 00000000000..deaabba6fdd --- /dev/null +++ b/site/public/v1/smartphones/a5-dual-sim-td-lte-in-pk-bd-32gb-cph1809/index.json @@ -0,0 +1,76 @@ +{ + "id": 2729, + "slug": "a5-dual-sim-td-lte-in-pk-bd-32gb-cph1809", + "name": "A5 Dual SIM TD-LTE IN PK BD 32GB CPH1809", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.497301", + "updated_at": "2026-06-19T00:43:44.497301" +} diff --git a/site/public/v1/smartphones/a5-dual-sim-td-lte-in-pk-bd-32gb-cph1809/score/index.json b/site/public/v1/smartphones/a5-dual-sim-td-lte-in-pk-bd-32gb-cph1809/score/index.json new file mode 100644 index 00000000000..8556f7d0cec --- /dev/null +++ b/site/public/v1/smartphones/a5-dual-sim-td-lte-in-pk-bd-32gb-cph1809/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a5-dual-sim-td-lte-in-pk-bd-64gb-cph1809/index.json b/site/public/v1/smartphones/a5-dual-sim-td-lte-in-pk-bd-64gb-cph1809/index.json new file mode 100644 index 00000000000..fa9d37c60a2 --- /dev/null +++ b/site/public/v1/smartphones/a5-dual-sim-td-lte-in-pk-bd-64gb-cph1809/index.json @@ -0,0 +1,76 @@ +{ + "id": 2830, + "slug": "a5-dual-sim-td-lte-in-pk-bd-64gb-cph1809", + "name": "A5 Dual SIM TD-LTE IN PK BD 64GB CPH1809", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.510911", + "updated_at": "2026-06-19T00:43:44.510911" +} diff --git a/site/public/v1/smartphones/a5-dual-sim-td-lte-in-pk-bd-64gb-cph1809/score/index.json b/site/public/v1/smartphones/a5-dual-sim-td-lte-in-pk-bd-64gb-cph1809/score/index.json new file mode 100644 index 00000000000..8556f7d0cec --- /dev/null +++ b/site/public/v1/smartphones/a5-dual-sim-td-lte-in-pk-bd-64gb-cph1809/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a5-premium-edition-dual-sim-td-lte-cn-pbam00/index.json b/site/public/v1/smartphones/a5-premium-edition-dual-sim-td-lte-cn-pbam00/index.json new file mode 100644 index 00000000000..b4560f10dd9 --- /dev/null +++ b/site/public/v1/smartphones/a5-premium-edition-dual-sim-td-lte-cn-pbam00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2730, + "slug": "a5-premium-edition-dual-sim-td-lte-cn-pbam00", + "name": "A5 Premium Edition Dual SIM TD-LTE CN PBAM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-07-13", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color TN-TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.497301", + "updated_at": "2026-06-19T00:43:44.497301" +} diff --git a/site/public/v1/smartphones/a5-premium-edition-dual-sim-td-lte-cn-pbam00/score/index.json b/site/public/v1/smartphones/a5-premium-edition-dual-sim-td-lte-cn-pbam00/score/index.json new file mode 100644 index 00000000000..8556f7d0cec --- /dev/null +++ b/site/public/v1/smartphones/a5-premium-edition-dual-sim-td-lte-cn-pbam00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a5-premium-edition-dual-sim-td-lte-cn-pbat00/index.json b/site/public/v1/smartphones/a5-premium-edition-dual-sim-td-lte-cn-pbat00/index.json new file mode 100644 index 00000000000..b83fd15faeb --- /dev/null +++ b/site/public/v1/smartphones/a5-premium-edition-dual-sim-td-lte-cn-pbat00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2731, + "slug": "a5-premium-edition-dual-sim-td-lte-cn-pbat00", + "name": "A5 Premium Edition Dual SIM TD-LTE CN PBAT00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-07-13", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color TN-TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.497301", + "updated_at": "2026-06-19T00:43:44.497301" +} diff --git a/site/public/v1/smartphones/a5-premium-edition-dual-sim-td-lte-cn-pbat00/score/index.json b/site/public/v1/smartphones/a5-premium-edition-dual-sim-td-lte-cn-pbat00/score/index.json new file mode 100644 index 00000000000..8556f7d0cec --- /dev/null +++ b/site/public/v1/smartphones/a5-premium-edition-dual-sim-td-lte-cn-pbat00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a5-standard-edition-dual-sim-td-lte-cn-pbam00/index.json b/site/public/v1/smartphones/a5-standard-edition-dual-sim-td-lte-cn-pbam00/index.json new file mode 100644 index 00000000000..32094c02c24 --- /dev/null +++ b/site/public/v1/smartphones/a5-standard-edition-dual-sim-td-lte-cn-pbam00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2732, + "slug": "a5-standard-edition-dual-sim-td-lte-cn-pbam00", + "name": "A5 Standard Edition Dual SIM TD-LTE CN PBAM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-07-13", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color TN-TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.497301", + "updated_at": "2026-06-19T00:43:44.497301" +} diff --git a/site/public/v1/smartphones/a5-standard-edition-dual-sim-td-lte-cn-pbam00/score/index.json b/site/public/v1/smartphones/a5-standard-edition-dual-sim-td-lte-cn-pbam00/score/index.json new file mode 100644 index 00000000000..8556f7d0cec --- /dev/null +++ b/site/public/v1/smartphones/a5-standard-edition-dual-sim-td-lte-cn-pbam00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a52-2020-dual-sim-td-lte-cn-128gb-pdam10/index.json b/site/public/v1/smartphones/a52-2020-dual-sim-td-lte-cn-128gb-pdam10/index.json new file mode 100644 index 00000000000..b7103037836 --- /dev/null +++ b/site/public/v1/smartphones/a52-2020-dual-sim-td-lte-cn-128gb-pdam10/index.json @@ -0,0 +1,76 @@ +{ + "id": 3052, + "slug": "a52-2020-dual-sim-td-lte-cn-128gb-pdam10", + "name": "A52 2020 Dual SIM TD-LTE CN 128GB PDAM10", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 12.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 5.1, + "battery": 30.6, + "display": 45.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.542597", + "updated_at": "2026-06-19T00:43:44.542597" +} diff --git a/site/public/v1/smartphones/a52-2020-dual-sim-td-lte-cn-128gb-pdam10/score/index.json b/site/public/v1/smartphones/a52-2020-dual-sim-td-lte-cn-128gb-pdam10/score/index.json new file mode 100644 index 00000000000..b2dbe79eb10 --- /dev/null +++ b/site/public/v1/smartphones/a52-2020-dual-sim-td-lte-cn-128gb-pdam10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 5.1, + "battery": 30.6, + "display": 45.5, + "value": null +} diff --git a/site/public/v1/smartphones/a52-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-128gb-cph2061/index.json b/site/public/v1/smartphones/a52-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-128gb-cph2061/index.json new file mode 100644 index 00000000000..d0e823593d2 --- /dev/null +++ b/site/public/v1/smartphones/a52-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-128gb-cph2061/index.json @@ -0,0 +1,76 @@ +{ + "id": 3053, + "slug": "a52-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-128gb-cph2061", + "name": "A52 2020 Premium Edition Dual SIM TD-LTE V1 IN ID PK BD NP 128GB CPH2061", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-07-16", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 12.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 1.5, + "camera": 5.1, + "battery": 30.6, + "display": 45.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.542597", + "updated_at": "2026-06-19T00:43:44.542597" +} diff --git a/site/public/v1/smartphones/a52-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-128gb-cph2061/score/index.json b/site/public/v1/smartphones/a52-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-128gb-cph2061/score/index.json new file mode 100644 index 00000000000..efd12e4175c --- /dev/null +++ b/site/public/v1/smartphones/a52-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-128gb-cph2061/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 1.5, + "camera": 5.1, + "battery": 30.6, + "display": 45.5, + "value": null +} diff --git a/site/public/v1/smartphones/a52-2020-premium-edition-dual-sim-td-lte-v2-my-vn-th-kh-128gb-cph2061/index.json b/site/public/v1/smartphones/a52-2020-premium-edition-dual-sim-td-lte-v2-my-vn-th-kh-128gb-cph2061/index.json new file mode 100644 index 00000000000..24073b5e6b2 --- /dev/null +++ b/site/public/v1/smartphones/a52-2020-premium-edition-dual-sim-td-lte-v2-my-vn-th-kh-128gb-cph2061/index.json @@ -0,0 +1,76 @@ +{ + "id": 3054, + "slug": "a52-2020-premium-edition-dual-sim-td-lte-v2-my-vn-th-kh-128gb-cph2061", + "name": "A52 2020 Premium Edition Dual SIM TD-LTE V2 MY VN TH KH 128GB CPH2061", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 12.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 1.5, + "camera": 5.1, + "battery": 30.6, + "display": 45.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.542597", + "updated_at": "2026-06-19T00:43:44.542597" +} diff --git a/site/public/v1/smartphones/a52-2020-premium-edition-dual-sim-td-lte-v2-my-vn-th-kh-128gb-cph2061/score/index.json b/site/public/v1/smartphones/a52-2020-premium-edition-dual-sim-td-lte-v2-my-vn-th-kh-128gb-cph2061/score/index.json new file mode 100644 index 00000000000..efd12e4175c --- /dev/null +++ b/site/public/v1/smartphones/a52-2020-premium-edition-dual-sim-td-lte-v2-my-vn-th-kh-128gb-cph2061/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 1.5, + "camera": 5.1, + "battery": 30.6, + "display": 45.5, + "value": null +} diff --git a/site/public/v1/smartphones/a52-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph2061/index.json b/site/public/v1/smartphones/a52-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph2061/index.json new file mode 100644 index 00000000000..f3211c51063 --- /dev/null +++ b/site/public/v1/smartphones/a52-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph2061/index.json @@ -0,0 +1,76 @@ +{ + "id": 3055, + "slug": "a52-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph2061", + "name": "A52 2020 Premium Edition Global Dual SIM TD-LTE V3 128GB CPH2061", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 12.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 1.5, + "camera": 5.1, + "battery": 30.6, + "display": 45.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.542597", + "updated_at": "2026-06-19T00:43:44.542597" +} diff --git a/site/public/v1/smartphones/a52-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph2061/score/index.json b/site/public/v1/smartphones/a52-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph2061/score/index.json new file mode 100644 index 00000000000..efd12e4175c --- /dev/null +++ b/site/public/v1/smartphones/a52-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph2061/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 1.5, + "camera": 5.1, + "battery": 30.6, + "display": 45.5, + "value": null +} diff --git a/site/public/v1/smartphones/a52-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-128gb-cph2061/index.json b/site/public/v1/smartphones/a52-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-128gb-cph2061/index.json new file mode 100644 index 00000000000..7a0c5341a55 --- /dev/null +++ b/site/public/v1/smartphones/a52-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-128gb-cph2061/index.json @@ -0,0 +1,76 @@ +{ + "id": 3056, + "slug": "a52-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-128gb-cph2061", + "name": "A52 2020 Standard Edition Dual SIM TD-LTE V1 IN ID PK BD NP 128GB CPH2061", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-07-16", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 12.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 0.0, + "camera": 5.1, + "battery": 30.6, + "display": 45.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.542597", + "updated_at": "2026-06-19T00:43:44.542597" +} diff --git a/site/public/v1/smartphones/a52-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-128gb-cph2061/score/index.json b/site/public/v1/smartphones/a52-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-128gb-cph2061/score/index.json new file mode 100644 index 00000000000..1a2e64b761f --- /dev/null +++ b/site/public/v1/smartphones/a52-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-128gb-cph2061/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 0.0, + "camera": 5.1, + "battery": 30.6, + "display": 45.5, + "value": null +} diff --git a/site/public/v1/smartphones/a52-2020-standard-edition-global-dual-sim-td-lte-v3-128gb-cph2061/index.json b/site/public/v1/smartphones/a52-2020-standard-edition-global-dual-sim-td-lte-v3-128gb-cph2061/index.json new file mode 100644 index 00000000000..933d40689b2 --- /dev/null +++ b/site/public/v1/smartphones/a52-2020-standard-edition-global-dual-sim-td-lte-v3-128gb-cph2061/index.json @@ -0,0 +1,76 @@ +{ + "id": 3057, + "slug": "a52-2020-standard-edition-global-dual-sim-td-lte-v3-128gb-cph2061", + "name": "A52 2020 Standard Edition Global Dual SIM TD-LTE V3 128GB CPH2061", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 12.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 0.0, + "camera": 5.1, + "battery": 30.6, + "display": 45.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.542597", + "updated_at": "2026-06-19T00:43:44.542597" +} diff --git a/site/public/v1/smartphones/a52-2020-standard-edition-global-dual-sim-td-lte-v3-128gb-cph2061/score/index.json b/site/public/v1/smartphones/a52-2020-standard-edition-global-dual-sim-td-lte-v3-128gb-cph2061/score/index.json new file mode 100644 index 00000000000..1a2e64b761f --- /dev/null +++ b/site/public/v1/smartphones/a52-2020-standard-edition-global-dual-sim-td-lte-v3-128gb-cph2061/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 0.0, + "camera": 5.1, + "battery": 30.6, + "display": 45.5, + "value": null +} diff --git a/site/public/v1/smartphones/a52-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph2069/index.json b/site/public/v1/smartphones/a52-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph2069/index.json new file mode 100644 index 00000000000..6ef0d0a678e --- /dev/null +++ b/site/public/v1/smartphones/a52-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph2069/index.json @@ -0,0 +1,76 @@ +{ + "id": 3058, + "slug": "a52-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph2069", + "name": "A52 2020 Standard Edition Global Dual SIM TD-LTE V3 64GB CPH2069", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-05-01", + "msrp_usd": 200, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 12.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 0.0, + "camera": 5.1, + "battery": 30.6, + "display": 45.5, + "value": 60.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.542597", + "updated_at": "2026-06-19T00:43:44.542597" +} diff --git a/site/public/v1/smartphones/a52-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph2069/score/index.json b/site/public/v1/smartphones/a52-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph2069/score/index.json new file mode 100644 index 00000000000..e4e5ce6e0d6 --- /dev/null +++ b/site/public/v1/smartphones/a52-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph2069/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 0.0, + "camera": 5.1, + "battery": 30.6, + "display": 45.5, + "value": 60.1 +} diff --git a/site/public/v1/smartphones/a53-2020-premium-edition-dual-sim-td-lte-v1-in-id-bd-128gb-cph2127/index.json b/site/public/v1/smartphones/a53-2020-premium-edition-dual-sim-td-lte-v1-in-id-bd-128gb-cph2127/index.json new file mode 100644 index 00000000000..e84aa7ac18e --- /dev/null +++ b/site/public/v1/smartphones/a53-2020-premium-edition-dual-sim-td-lte-v1-in-id-bd-128gb-cph2127/index.json @@ -0,0 +1,77 @@ +{ + "id": 3060, + "slug": "a53-2020-premium-edition-dual-sim-td-lte-v1-in-id-bd-128gb-cph2127", + "name": "A53 2020 Premium Edition Dual SIM TD-LTE V1 IN ID BD 128GB CPH2127", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2020-08-31", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 1.5, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.543598", + "updated_at": "2026-06-19T00:43:44.543598" +} diff --git a/site/public/v1/smartphones/a53-2020-premium-edition-dual-sim-td-lte-v1-in-id-bd-128gb-cph2127/score/index.json b/site/public/v1/smartphones/a53-2020-premium-edition-dual-sim-td-lte-v1-in-id-bd-128gb-cph2127/score/index.json new file mode 100644 index 00000000000..f26413df4b3 --- /dev/null +++ b/site/public/v1/smartphones/a53-2020-premium-edition-dual-sim-td-lte-v1-in-id-bd-128gb-cph2127/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 1.5, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/a53-2020-premium-edition-dual-sim-td-lte-v3-sg-ru-pl-128gb-cph2127/index.json b/site/public/v1/smartphones/a53-2020-premium-edition-dual-sim-td-lte-v3-sg-ru-pl-128gb-cph2127/index.json new file mode 100644 index 00000000000..902c094c59b --- /dev/null +++ b/site/public/v1/smartphones/a53-2020-premium-edition-dual-sim-td-lte-v3-sg-ru-pl-128gb-cph2127/index.json @@ -0,0 +1,77 @@ +{ + "id": 3061, + "slug": "a53-2020-premium-edition-dual-sim-td-lte-v3-sg-ru-pl-128gb-cph2127", + "name": "A53 2020 Premium Edition Dual SIM TD-LTE V3 SG RU PL 128GB CPH2127", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2020-09-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 1.5, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.543598", + "updated_at": "2026-06-19T00:43:44.543598" +} diff --git a/site/public/v1/smartphones/a53-2020-premium-edition-dual-sim-td-lte-v3-sg-ru-pl-128gb-cph2127/score/index.json b/site/public/v1/smartphones/a53-2020-premium-edition-dual-sim-td-lte-v3-sg-ru-pl-128gb-cph2127/score/index.json new file mode 100644 index 00000000000..f26413df4b3 --- /dev/null +++ b/site/public/v1/smartphones/a53-2020-premium-edition-dual-sim-td-lte-v3-sg-ru-pl-128gb-cph2127/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 1.5, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/a53-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-np-my-64gb-cph2127/index.json b/site/public/v1/smartphones/a53-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-np-my-64gb-cph2127/index.json new file mode 100644 index 00000000000..91a23d6b01a --- /dev/null +++ b/site/public/v1/smartphones/a53-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-np-my-64gb-cph2127/index.json @@ -0,0 +1,77 @@ +{ + "id": 3062, + "slug": "a53-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-np-my-64gb-cph2127", + "name": "A53 2020 Standard Edition Dual SIM TD-LTE V1 IN ID PK NP MY 64GB CPH2127", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2020-08-31", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.543598", + "updated_at": "2026-06-19T00:43:44.543598" +} diff --git a/site/public/v1/smartphones/a53-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-np-my-64gb-cph2127/score/index.json b/site/public/v1/smartphones/a53-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-np-my-64gb-cph2127/score/index.json new file mode 100644 index 00000000000..3aa95a8aa71 --- /dev/null +++ b/site/public/v1/smartphones/a53-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-np-my-64gb-cph2127/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/a53-2020-standard-edition-dual-sim-td-lte-v2-th-vn-kh-64gb-cph2127/index.json b/site/public/v1/smartphones/a53-2020-standard-edition-dual-sim-td-lte-v2-th-vn-kh-64gb-cph2127/index.json new file mode 100644 index 00000000000..98d65d2019f --- /dev/null +++ b/site/public/v1/smartphones/a53-2020-standard-edition-dual-sim-td-lte-v2-th-vn-kh-64gb-cph2127/index.json @@ -0,0 +1,77 @@ +{ + "id": 3063, + "slug": "a53-2020-standard-edition-dual-sim-td-lte-v2-th-vn-kh-64gb-cph2127", + "name": "A53 2020 Standard Edition Dual SIM TD-LTE V2 TH VN KH 64GB CPH2127", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2020-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.543598", + "updated_at": "2026-06-19T00:43:44.543598" +} diff --git a/site/public/v1/smartphones/a53-2020-standard-edition-dual-sim-td-lte-v2-th-vn-kh-64gb-cph2127/score/index.json b/site/public/v1/smartphones/a53-2020-standard-edition-dual-sim-td-lte-v2-th-vn-kh-64gb-cph2127/score/index.json new file mode 100644 index 00000000000..3aa95a8aa71 --- /dev/null +++ b/site/public/v1/smartphones/a53-2020-standard-edition-dual-sim-td-lte-v2-th-vn-kh-64gb-cph2127/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/a53-2020-standard-edition-dual-sim-td-lte-v3-ru-ua-kz-128gb-cph2127/index.json b/site/public/v1/smartphones/a53-2020-standard-edition-dual-sim-td-lte-v3-ru-ua-kz-128gb-cph2127/index.json new file mode 100644 index 00000000000..3d55657da27 --- /dev/null +++ b/site/public/v1/smartphones/a53-2020-standard-edition-dual-sim-td-lte-v3-ru-ua-kz-128gb-cph2127/index.json @@ -0,0 +1,77 @@ +{ + "id": 3064, + "slug": "a53-2020-standard-edition-dual-sim-td-lte-v3-ru-ua-kz-128gb-cph2127", + "name": "A53 2020 Standard Edition Dual SIM TD-LTE V3 RU UA KZ 128GB CPH2127", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2020-08-31", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.543598", + "updated_at": "2026-06-19T00:43:44.543598" +} diff --git a/site/public/v1/smartphones/a53-2020-standard-edition-dual-sim-td-lte-v3-ru-ua-kz-128gb-cph2127/score/index.json b/site/public/v1/smartphones/a53-2020-standard-edition-dual-sim-td-lte-v3-ru-ua-kz-128gb-cph2127/score/index.json new file mode 100644 index 00000000000..3aa95a8aa71 --- /dev/null +++ b/site/public/v1/smartphones/a53-2020-standard-edition-dual-sim-td-lte-v3-ru-ua-kz-128gb-cph2127/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/a53-2020-standard-edition-dual-sim-td-lte-v3-ru-ua-kz-64gb-cph2127/index.json b/site/public/v1/smartphones/a53-2020-standard-edition-dual-sim-td-lte-v3-ru-ua-kz-64gb-cph2127/index.json new file mode 100644 index 00000000000..cbe0c0ac5cc --- /dev/null +++ b/site/public/v1/smartphones/a53-2020-standard-edition-dual-sim-td-lte-v3-ru-ua-kz-64gb-cph2127/index.json @@ -0,0 +1,77 @@ +{ + "id": 3065, + "slug": "a53-2020-standard-edition-dual-sim-td-lte-v3-ru-ua-kz-64gb-cph2127", + "name": "A53 2020 Standard Edition Dual SIM TD-LTE V3 RU UA KZ 64GB CPH2127", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2020-08-31", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.543598", + "updated_at": "2026-06-19T00:43:44.543598" +} diff --git a/site/public/v1/smartphones/a53-2020-standard-edition-dual-sim-td-lte-v3-ru-ua-kz-64gb-cph2127/score/index.json b/site/public/v1/smartphones/a53-2020-standard-edition-dual-sim-td-lte-v3-ru-ua-kz-64gb-cph2127/score/index.json new file mode 100644 index 00000000000..3aa95a8aa71 --- /dev/null +++ b/site/public/v1/smartphones/a53-2020-standard-edition-dual-sim-td-lte-v3-ru-ua-kz-64gb-cph2127/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/a53-2020-standard-edition-dual-sim-td-lte-v5-mx-64gb-cph2127/index.json b/site/public/v1/smartphones/a53-2020-standard-edition-dual-sim-td-lte-v5-mx-64gb-cph2127/index.json new file mode 100644 index 00000000000..a7029d276f1 --- /dev/null +++ b/site/public/v1/smartphones/a53-2020-standard-edition-dual-sim-td-lte-v5-mx-64gb-cph2127/index.json @@ -0,0 +1,77 @@ +{ + "id": 3066, + "slug": "a53-2020-standard-edition-dual-sim-td-lte-v5-mx-64gb-cph2127", + "name": "A53 2020 Standard Edition Dual SIM TD-LTE V5 MX 64GB CPH2127", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2020-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.544596", + "updated_at": "2026-06-19T00:43:44.544596" +} diff --git a/site/public/v1/smartphones/a53-2020-standard-edition-dual-sim-td-lte-v5-mx-64gb-cph2127/score/index.json b/site/public/v1/smartphones/a53-2020-standard-edition-dual-sim-td-lte-v5-mx-64gb-cph2127/score/index.json new file mode 100644 index 00000000000..3aa95a8aa71 --- /dev/null +++ b/site/public/v1/smartphones/a53-2020-standard-edition-dual-sim-td-lte-v5-mx-64gb-cph2127/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/a53-2020-standard-edition-global-dual-sim-td-lte-v6-64gb-cph2127/index.json b/site/public/v1/smartphones/a53-2020-standard-edition-global-dual-sim-td-lte-v6-64gb-cph2127/index.json new file mode 100644 index 00000000000..5e562ca2a2d --- /dev/null +++ b/site/public/v1/smartphones/a53-2020-standard-edition-global-dual-sim-td-lte-v6-64gb-cph2127/index.json @@ -0,0 +1,77 @@ +{ + "id": 3067, + "slug": "a53-2020-standard-edition-global-dual-sim-td-lte-v6-64gb-cph2127", + "name": "A53 2020 Standard Edition Global Dual SIM TD-LTE V6 64GB CPH2127", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2020-08-01", + "msrp_usd": 299, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": 58.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.544596", + "updated_at": "2026-06-19T00:43:44.544596" +} diff --git a/site/public/v1/smartphones/a53-2020-standard-edition-global-dual-sim-td-lte-v6-64gb-cph2127/score/index.json b/site/public/v1/smartphones/a53-2020-standard-edition-global-dual-sim-td-lte-v6-64gb-cph2127/score/index.json new file mode 100644 index 00000000000..fafdd866b65 --- /dev/null +++ b/site/public/v1/smartphones/a53-2020-standard-edition-global-dual-sim-td-lte-v6-64gb-cph2127/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": 58.2 +} diff --git a/site/public/v1/smartphones/a53-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-pecm30/index.json b/site/public/v1/smartphones/a53-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-pecm30/index.json new file mode 100644 index 00000000000..e65197a61ba --- /dev/null +++ b/site/public/v1/smartphones/a53-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-pecm30/index.json @@ -0,0 +1,77 @@ +{ + "id": 3277, + "slug": "a53-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-pecm30", + "name": "A53 5G 2020 Premium Edition Dual SIM TD-LTE CN 128GB PECM30", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2021-01-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4040, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.0, + "performance": 1.5, + "camera": 6.3, + "battery": 15.6, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.574637", + "updated_at": "2026-06-19T00:43:44.574637" +} diff --git a/site/public/v1/smartphones/a53-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-pecm30/score/index.json b/site/public/v1/smartphones/a53-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-pecm30/score/index.json new file mode 100644 index 00000000000..f931ddad0a3 --- /dev/null +++ b/site/public/v1/smartphones/a53-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-pecm30/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.0, + "performance": 1.5, + "camera": 6.3, + "battery": 15.6, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/a53-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pecm30/index.json b/site/public/v1/smartphones/a53-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pecm30/index.json new file mode 100644 index 00000000000..52e7c14e399 --- /dev/null +++ b/site/public/v1/smartphones/a53-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pecm30/index.json @@ -0,0 +1,77 @@ +{ + "id": 3278, + "slug": "a53-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pecm30", + "name": "A53 5G 2020 Standard Edition Dual SIM TD-LTE CN 128GB PECM30", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2021-01-01", + "msrp_usd": 1299, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4040, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.6, + "performance": 0.0, + "camera": 6.3, + "battery": 15.6, + "display": 40.5, + "value": 19.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.574637", + "updated_at": "2026-06-19T00:43:44.574637" +} diff --git a/site/public/v1/smartphones/a53-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pecm30/score/index.json b/site/public/v1/smartphones/a53-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pecm30/score/index.json new file mode 100644 index 00000000000..1071abe9598 --- /dev/null +++ b/site/public/v1/smartphones/a53-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pecm30/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.6, + "performance": 0.0, + "camera": 6.3, + "battery": 15.6, + "display": 40.5, + "value": 19.4 +} diff --git a/site/public/v1/smartphones/a53-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pect30/index.json b/site/public/v1/smartphones/a53-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pect30/index.json new file mode 100644 index 00000000000..ae25cafef7d --- /dev/null +++ b/site/public/v1/smartphones/a53-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pect30/index.json @@ -0,0 +1,77 @@ +{ + "id": 3279, + "slug": "a53-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pect30", + "name": "A53 5G 2020 Standard Edition Dual SIM TD-LTE CN 128GB PECT30", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2021-01-01", + "msrp_usd": 1299, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4040, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.6, + "performance": 0.0, + "camera": 6.3, + "battery": 15.6, + "display": 40.5, + "value": 19.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.574637", + "updated_at": "2026-06-19T00:43:44.574637" +} diff --git a/site/public/v1/smartphones/a53-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pect30/score/index.json b/site/public/v1/smartphones/a53-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pect30/score/index.json new file mode 100644 index 00000000000..1071abe9598 --- /dev/null +++ b/site/public/v1/smartphones/a53-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pect30/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.6, + "performance": 0.0, + "camera": 6.3, + "battery": 15.6, + "display": 40.5, + "value": 19.4 +} diff --git a/site/public/v1/smartphones/a53s-2020-standard-edition-dual-sim-td-lte-v1-my-nz-za-128gb-cph2135/index.json b/site/public/v1/smartphones/a53s-2020-standard-edition-dual-sim-td-lte-v1-my-nz-za-128gb-cph2135/index.json new file mode 100644 index 00000000000..c44b028b15e --- /dev/null +++ b/site/public/v1/smartphones/a53s-2020-standard-edition-dual-sim-td-lte-v1-my-nz-za-128gb-cph2135/index.json @@ -0,0 +1,77 @@ +{ + "id": 3069, + "slug": "a53s-2020-standard-edition-dual-sim-td-lte-v1-my-nz-za-128gb-cph2135", + "name": "A53s 2020 Standard Edition Dual SIM TD-LTE V1 MY NZ ZA 128GB CPH2135", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2020-10-07", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.544596", + "updated_at": "2026-06-19T00:43:44.544596" +} diff --git a/site/public/v1/smartphones/a53s-2020-standard-edition-dual-sim-td-lte-v1-my-nz-za-128gb-cph2135/score/index.json b/site/public/v1/smartphones/a53s-2020-standard-edition-dual-sim-td-lte-v1-my-nz-za-128gb-cph2135/score/index.json new file mode 100644 index 00000000000..3aa95a8aa71 --- /dev/null +++ b/site/public/v1/smartphones/a53s-2020-standard-edition-dual-sim-td-lte-v1-my-nz-za-128gb-cph2135/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/a53s-2020-standard-edition-global-dual-sim-td-lte-v6-128gb-cph2135/index.json b/site/public/v1/smartphones/a53s-2020-standard-edition-global-dual-sim-td-lte-v6-128gb-cph2135/index.json new file mode 100644 index 00000000000..fce1e313ea3 --- /dev/null +++ b/site/public/v1/smartphones/a53s-2020-standard-edition-global-dual-sim-td-lte-v6-128gb-cph2135/index.json @@ -0,0 +1,77 @@ +{ + "id": 3070, + "slug": "a53s-2020-standard-edition-global-dual-sim-td-lte-v6-128gb-cph2135", + "name": "A53s 2020 Standard Edition Global Dual SIM TD-LTE V6 128GB CPH2135", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2020-10-01", + "msrp_usd": 189, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": 58.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.544596", + "updated_at": "2026-06-19T00:43:44.544596" +} diff --git a/site/public/v1/smartphones/a53s-2020-standard-edition-global-dual-sim-td-lte-v6-128gb-cph2135/score/index.json b/site/public/v1/smartphones/a53s-2020-standard-edition-global-dual-sim-td-lte-v6-128gb-cph2135/score/index.json new file mode 100644 index 00000000000..fafdd866b65 --- /dev/null +++ b/site/public/v1/smartphones/a53s-2020-standard-edition-global-dual-sim-td-lte-v6-128gb-cph2135/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": 58.2 +} diff --git a/site/public/v1/smartphones/a54-2021-5g-dual-sim-td-lte-jp-64gb-cph2303/index.json b/site/public/v1/smartphones/a54-2021-5g-dual-sim-td-lte-jp-64gb-cph2303/index.json new file mode 100644 index 00000000000..574475fd3b4 --- /dev/null +++ b/site/public/v1/smartphones/a54-2021-5g-dual-sim-td-lte-jp-64gb-cph2303/index.json @@ -0,0 +1,77 @@ +{ + "id": 3281, + "slug": "a54-2021-5g-dual-sim-td-lte-jp-64gb-cph2303", + "name": "A54 2021 5G Dual SIM TD-LTE JP 64GB CPH2303", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-06-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.575636", + "updated_at": "2026-06-19T00:43:44.575636" +} diff --git a/site/public/v1/smartphones/a54-2021-5g-dual-sim-td-lte-jp-64gb-cph2303/score/index.json b/site/public/v1/smartphones/a54-2021-5g-dual-sim-td-lte-jp-64gb-cph2303/score/index.json new file mode 100644 index 00000000000..158756846a2 --- /dev/null +++ b/site/public/v1/smartphones/a54-2021-5g-dual-sim-td-lte-jp-64gb-cph2303/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/a54-2021-5g-global-dual-sim-td-lte-64gb-cph2195/index.json b/site/public/v1/smartphones/a54-2021-5g-global-dual-sim-td-lte-64gb-cph2195/index.json new file mode 100644 index 00000000000..80bde107751 --- /dev/null +++ b/site/public/v1/smartphones/a54-2021-5g-global-dual-sim-td-lte-64gb-cph2195/index.json @@ -0,0 +1,77 @@ +{ + "id": 3282, + "slug": "a54-2021-5g-global-dual-sim-td-lte-64gb-cph2195", + "name": "A54 2021 5G Global Dual SIM TD-LTE 64GB CPH2195", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-04-01", + "msrp_usd": 270, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 40.5, + "value": 60.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.575636", + "updated_at": "2026-06-19T00:43:44.575636" +} diff --git a/site/public/v1/smartphones/a54-2021-5g-global-dual-sim-td-lte-64gb-cph2195/score/index.json b/site/public/v1/smartphones/a54-2021-5g-global-dual-sim-td-lte-64gb-cph2195/score/index.json new file mode 100644 index 00000000000..b3dbba1f329 --- /dev/null +++ b/site/public/v1/smartphones/a54-2021-5g-global-dual-sim-td-lte-64gb-cph2195/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 40.5, + "value": 60.9 +} diff --git a/site/public/v1/smartphones/a54-2021-5g-global-td-lte-64gb-cph2195/index.json b/site/public/v1/smartphones/a54-2021-5g-global-td-lte-64gb-cph2195/index.json new file mode 100644 index 00000000000..73eaa95ed58 --- /dev/null +++ b/site/public/v1/smartphones/a54-2021-5g-global-td-lte-64gb-cph2195/index.json @@ -0,0 +1,77 @@ +{ + "id": 3283, + "slug": "a54-2021-5g-global-td-lte-64gb-cph2195", + "name": "A54 2021 5G Global TD-LTE 64GB CPH2195", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-04-01", + "msrp_usd": 399, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 40.5, + "value": 57.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.575636", + "updated_at": "2026-06-19T00:43:44.575636" +} diff --git a/site/public/v1/smartphones/a54-2021-5g-global-td-lte-64gb-cph2195/score/index.json b/site/public/v1/smartphones/a54-2021-5g-global-td-lte-64gb-cph2195/score/index.json new file mode 100644 index 00000000000..495d0b93cec --- /dev/null +++ b/site/public/v1/smartphones/a54-2021-5g-global-td-lte-64gb-cph2195/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 40.5, + "value": 57.1 +} diff --git a/site/public/v1/smartphones/a54-2021-5g-td-lte-jp-opg02/index.json b/site/public/v1/smartphones/a54-2021-5g-td-lte-jp-opg02/index.json new file mode 100644 index 00000000000..7b241ee04fd --- /dev/null +++ b/site/public/v1/smartphones/a54-2021-5g-td-lte-jp-opg02/index.json @@ -0,0 +1,77 @@ +{ + "id": 3284, + "slug": "a54-2021-5g-td-lte-jp-opg02", + "name": "A54 2021 5G TD-LTE JP OPG02", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-06-04", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.575636", + "updated_at": "2026-06-19T00:43:44.575636" +} diff --git a/site/public/v1/smartphones/a54-2021-5g-td-lte-jp-opg02/score/index.json b/site/public/v1/smartphones/a54-2021-5g-td-lte-jp-opg02/score/index.json new file mode 100644 index 00000000000..158756846a2 --- /dev/null +++ b/site/public/v1/smartphones/a54-2021-5g-td-lte-jp-opg02/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/a54s-2021-global-dual-sim-td-lte-128gb-cph2273/index.json b/site/public/v1/smartphones/a54s-2021-global-dual-sim-td-lte-128gb-cph2273/index.json new file mode 100644 index 00000000000..1969547c925 --- /dev/null +++ b/site/public/v1/smartphones/a54s-2021-global-dual-sim-td-lte-128gb-cph2273/index.json @@ -0,0 +1,77 @@ +{ + "id": 3287, + "slug": "a54s-2021-global-dual-sim-td-lte-128gb-cph2273", + "name": "A54s 2021 Global Dual SIM TD-LTE 128GB CPH2273", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-10-01", + "msrp_usd": 179, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 17.2, + "battery": 30.0, + "display": 17.5, + "value": 58.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.575636", + "updated_at": "2026-06-19T00:43:44.575636" +} diff --git a/site/public/v1/smartphones/a54s-2021-global-dual-sim-td-lte-128gb-cph2273/score/index.json b/site/public/v1/smartphones/a54s-2021-global-dual-sim-td-lte-128gb-cph2273/score/index.json new file mode 100644 index 00000000000..0d4b3c422cc --- /dev/null +++ b/site/public/v1/smartphones/a54s-2021-global-dual-sim-td-lte-128gb-cph2273/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 17.2, + "battery": 30.0, + "display": 17.5, + "value": 58.1 +} diff --git a/site/public/v1/smartphones/a55-4g-2021-dual-sim-td-lte-v1-in-128gb-cph2325/index.json b/site/public/v1/smartphones/a55-4g-2021-dual-sim-td-lte-v1-in-128gb-cph2325/index.json new file mode 100644 index 00000000000..952d28602c7 --- /dev/null +++ b/site/public/v1/smartphones/a55-4g-2021-dual-sim-td-lte-v1-in-128gb-cph2325/index.json @@ -0,0 +1,77 @@ +{ + "id": 3289, + "slug": "a55-4g-2021-dual-sim-td-lte-v1-in-128gb-cph2325", + "name": "A55 4G 2021 Dual SIM TD-LTE V1 IN 128GB CPH2325", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-08-26", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 17.2, + "battery": 30.6, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.576637", + "updated_at": "2026-06-19T00:43:44.576637" +} diff --git a/site/public/v1/smartphones/a55-4g-2021-dual-sim-td-lte-v1-in-128gb-cph2325/score/index.json b/site/public/v1/smartphones/a55-4g-2021-dual-sim-td-lte-v1-in-128gb-cph2325/score/index.json new file mode 100644 index 00000000000..e1400c2d88a --- /dev/null +++ b/site/public/v1/smartphones/a55-4g-2021-dual-sim-td-lte-v1-in-128gb-cph2325/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 17.2, + "battery": 30.6, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/a55-4g-2021-dual-sim-td-lte-v1-in-64gb-cph2325/index.json b/site/public/v1/smartphones/a55-4g-2021-dual-sim-td-lte-v1-in-64gb-cph2325/index.json new file mode 100644 index 00000000000..ad3b2ed8a25 --- /dev/null +++ b/site/public/v1/smartphones/a55-4g-2021-dual-sim-td-lte-v1-in-64gb-cph2325/index.json @@ -0,0 +1,77 @@ +{ + "id": 3290, + "slug": "a55-4g-2021-dual-sim-td-lte-v1-in-64gb-cph2325", + "name": "A55 4G 2021 Dual SIM TD-LTE V1 IN 64GB CPH2325", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 0.0, + "camera": 17.2, + "battery": 30.6, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.576637", + "updated_at": "2026-06-19T00:43:44.576637" +} diff --git a/site/public/v1/smartphones/a55-4g-2021-dual-sim-td-lte-v1-in-64gb-cph2325/score/index.json b/site/public/v1/smartphones/a55-4g-2021-dual-sim-td-lte-v1-in-64gb-cph2325/score/index.json new file mode 100644 index 00000000000..1213367c242 --- /dev/null +++ b/site/public/v1/smartphones/a55-4g-2021-dual-sim-td-lte-v1-in-64gb-cph2325/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 0.0, + "camera": 17.2, + "battery": 30.6, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/a55-5g-2021-dual-sim-td-lte-cn-pemm00/index.json b/site/public/v1/smartphones/a55-5g-2021-dual-sim-td-lte-cn-pemm00/index.json new file mode 100644 index 00000000000..369ae4cd80f --- /dev/null +++ b/site/public/v1/smartphones/a55-5g-2021-dual-sim-td-lte-cn-pemm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3291, + "slug": "a55-5g-2021-dual-sim-td-lte-cn-pemm00", + "name": "A55 5G 2021 Dual SIM TD-LTE CN PEMM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-02-01", + "msrp_usd": 1599, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 1.5, + "camera": 5.3, + "battery": 30.0, + "display": 17.5, + "value": 6.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.576637", + "updated_at": "2026-06-19T00:43:44.576637" +} diff --git a/site/public/v1/smartphones/a55-5g-2021-dual-sim-td-lte-cn-pemm00/score/index.json b/site/public/v1/smartphones/a55-5g-2021-dual-sim-td-lte-cn-pemm00/score/index.json new file mode 100644 index 00000000000..b8c352c9e23 --- /dev/null +++ b/site/public/v1/smartphones/a55-5g-2021-dual-sim-td-lte-cn-pemm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 1.5, + "camera": 5.3, + "battery": 30.0, + "display": 17.5, + "value": 6.8 +} diff --git a/site/public/v1/smartphones/a56-5g-2021-dual-sim-td-lte-cn-pfvm10/index.json b/site/public/v1/smartphones/a56-5g-2021-dual-sim-td-lte-cn-pfvm10/index.json new file mode 100644 index 00000000000..69cedc87394 --- /dev/null +++ b/site/public/v1/smartphones/a56-5g-2021-dual-sim-td-lte-cn-pfvm10/index.json @@ -0,0 +1,77 @@ +{ + "id": 3295, + "slug": "a56-5g-2021-dual-sim-td-lte-cn-pfvm10", + "name": "A56 5G 2021 Dual SIM TD-LTE CN PFVM10", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-11-01", + "msrp_usd": 1599, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 189.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 1.5, + "camera": 5.3, + "battery": 30.0, + "display": 17.5, + "value": 6.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.577637", + "updated_at": "2026-06-19T00:43:44.577637" +} diff --git a/site/public/v1/smartphones/a56-5g-2021-dual-sim-td-lte-cn-pfvm10/score/index.json b/site/public/v1/smartphones/a56-5g-2021-dual-sim-td-lte-cn-pfvm10/score/index.json new file mode 100644 index 00000000000..b8c352c9e23 --- /dev/null +++ b/site/public/v1/smartphones/a56-5g-2021-dual-sim-td-lte-cn-pfvm10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 1.5, + "camera": 5.3, + "battery": 30.0, + "display": 17.5, + "value": 6.8 +} diff --git a/site/public/v1/smartphones/a5s-dual-sim-td-lte-ru-kz-ph-v1-32gb-cph1909/index.json b/site/public/v1/smartphones/a5s-dual-sim-td-lte-ru-kz-ph-v1-32gb-cph1909/index.json new file mode 100644 index 00000000000..cfa710d22a1 --- /dev/null +++ b/site/public/v1/smartphones/a5s-dual-sim-td-lte-ru-kz-ph-v1-32gb-cph1909/index.json @@ -0,0 +1,76 @@ +{ + "id": 2831, + "slug": "a5s-dual-sim-td-lte-ru-kz-ph-v1-32gb-cph1909", + "name": "A5s Dual SIM TD-LTE RU KZ PH V1 32GB CPH1909", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.510911", + "updated_at": "2026-06-19T00:43:44.510911" +} diff --git a/site/public/v1/smartphones/a5s-dual-sim-td-lte-ru-kz-ph-v1-32gb-cph1909/score/index.json b/site/public/v1/smartphones/a5s-dual-sim-td-lte-ru-kz-ph-v1-32gb-cph1909/score/index.json new file mode 100644 index 00000000000..470feae9b91 --- /dev/null +++ b/site/public/v1/smartphones/a5s-dual-sim-td-lte-ru-kz-ph-v1-32gb-cph1909/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a5s-premium-edition-dual-sim-td-lte-in-id-bd-th-v3-32gb-cph1909/index.json b/site/public/v1/smartphones/a5s-premium-edition-dual-sim-td-lte-in-id-bd-th-v3-32gb-cph1909/index.json new file mode 100644 index 00000000000..64390b2f155 --- /dev/null +++ b/site/public/v1/smartphones/a5s-premium-edition-dual-sim-td-lte-in-id-bd-th-v3-32gb-cph1909/index.json @@ -0,0 +1,76 @@ +{ + "id": 2832, + "slug": "a5s-premium-edition-dual-sim-td-lte-in-id-bd-th-v3-32gb-cph1909", + "name": "A5s Premium Edition Dual SIM TD-LTE IN ID BD TH V3 32GB CPH1909", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.510911", + "updated_at": "2026-06-19T00:43:44.510911" +} diff --git a/site/public/v1/smartphones/a5s-premium-edition-dual-sim-td-lte-in-id-bd-th-v3-32gb-cph1909/score/index.json b/site/public/v1/smartphones/a5s-premium-edition-dual-sim-td-lte-in-id-bd-th-v3-32gb-cph1909/score/index.json new file mode 100644 index 00000000000..470feae9b91 --- /dev/null +++ b/site/public/v1/smartphones/a5s-premium-edition-dual-sim-td-lte-in-id-bd-th-v3-32gb-cph1909/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a5s-premium-edition-dual-sim-td-lte-vn-kh-my-v2-32gb-cph1909/index.json b/site/public/v1/smartphones/a5s-premium-edition-dual-sim-td-lte-vn-kh-my-v2-32gb-cph1909/index.json new file mode 100644 index 00000000000..1d75dd451ec --- /dev/null +++ b/site/public/v1/smartphones/a5s-premium-edition-dual-sim-td-lte-vn-kh-my-v2-32gb-cph1909/index.json @@ -0,0 +1,76 @@ +{ + "id": 2833, + "slug": "a5s-premium-edition-dual-sim-td-lte-vn-kh-my-v2-32gb-cph1909", + "name": "A5s Premium Edition Dual SIM TD-LTE VN KH MY V2 32GB CPH1909", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.510911", + "updated_at": "2026-06-19T00:43:44.510911" +} diff --git a/site/public/v1/smartphones/a5s-premium-edition-dual-sim-td-lte-vn-kh-my-v2-32gb-cph1909/score/index.json b/site/public/v1/smartphones/a5s-premium-edition-dual-sim-td-lte-vn-kh-my-v2-32gb-cph1909/score/index.json new file mode 100644 index 00000000000..470feae9b91 --- /dev/null +++ b/site/public/v1/smartphones/a5s-premium-edition-dual-sim-td-lte-vn-kh-my-v2-32gb-cph1909/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a5s-standard-edition-dual-sim-td-lte-in-id-bd-th-v3-32gb-cph1909/index.json b/site/public/v1/smartphones/a5s-standard-edition-dual-sim-td-lte-in-id-bd-th-v3-32gb-cph1909/index.json new file mode 100644 index 00000000000..47efbe7bd19 --- /dev/null +++ b/site/public/v1/smartphones/a5s-standard-edition-dual-sim-td-lte-in-id-bd-th-v3-32gb-cph1909/index.json @@ -0,0 +1,76 @@ +{ + "id": 2835, + "slug": "a5s-standard-edition-dual-sim-td-lte-in-id-bd-th-v3-32gb-cph1909", + "name": "A5s Standard Edition Dual SIM TD-LTE IN ID BD TH V3 32GB CPH1909", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.511912", + "updated_at": "2026-06-19T00:43:44.511912" +} diff --git a/site/public/v1/smartphones/a5s-standard-edition-dual-sim-td-lte-in-id-bd-th-v3-32gb-cph1909/score/index.json b/site/public/v1/smartphones/a5s-standard-edition-dual-sim-td-lte-in-id-bd-th-v3-32gb-cph1909/score/index.json new file mode 100644 index 00000000000..470feae9b91 --- /dev/null +++ b/site/public/v1/smartphones/a5s-standard-edition-dual-sim-td-lte-in-id-bd-th-v3-32gb-cph1909/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a6-dual-sim-td-lte-hlte700t/index.json b/site/public/v1/smartphones/a6-dual-sim-td-lte-hlte700t/index.json new file mode 100644 index 00000000000..ca2fcd31972 --- /dev/null +++ b/site/public/v1/smartphones/a6-dual-sim-td-lte-hlte700t/index.json @@ -0,0 +1,76 @@ +{ + "id": 618, + "slug": "a6-dual-sim-td-lte-hlte700t", + "name": "A6 Dual SIM TD-LTE HLTE700T", + "brand": { + "id": 14, + "slug": "hisense", + "name": "Hisense", + "country": "CN", + "url": "/v1/brands/hisense" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.01, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.5, + "performance": 19.5, + "camera": 8.8, + "battery": 4.5, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.189932", + "updated_at": "2026-06-19T00:43:44.189932" +} diff --git a/site/public/v1/smartphones/a6-dual-sim-td-lte-hlte700t/score/index.json b/site/public/v1/smartphones/a6-dual-sim-td-lte-hlte700t/score/index.json new file mode 100644 index 00000000000..f3c6d31873a --- /dev/null +++ b/site/public/v1/smartphones/a6-dual-sim-td-lte-hlte700t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.5, + "performance": 19.5, + "camera": 8.8, + "battery": 4.5, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/a6-note-dual-sim-td-lte-in/index.json b/site/public/v1/smartphones/a6-note-dual-sim-td-lte-in/index.json new file mode 100644 index 00000000000..77e2f1df771 --- /dev/null +++ b/site/public/v1/smartphones/a6-note-dual-sim-td-lte-in/index.json @@ -0,0 +1,76 @@ +{ + "id": 1447, + "slug": "a6-note-dual-sim-td-lte-in", + "name": "A6 Note Dual SIM TD-LTE IN", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.2 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": null, + "camera": 5.4, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.333605", + "updated_at": "2026-06-19T00:43:44.333605" +} diff --git a/site/public/v1/smartphones/a6-note-dual-sim-td-lte-in/score/index.json b/site/public/v1/smartphones/a6-note-dual-sim-td-lte-in/score/index.json new file mode 100644 index 00000000000..9ddc31c4176 --- /dev/null +++ b/site/public/v1/smartphones/a6-note-dual-sim-td-lte-in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": null, + "camera": 5.4, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a6l-dual-sim-td-lte-128gb-hlte730t/index.json b/site/public/v1/smartphones/a6l-dual-sim-td-lte-128gb-hlte730t/index.json new file mode 100644 index 00000000000..6203c047fcc --- /dev/null +++ b/site/public/v1/smartphones/a6l-dual-sim-td-lte-128gb-hlte730t/index.json @@ -0,0 +1,76 @@ +{ + "id": 619, + "slug": "a6l-dual-sim-td-lte-128gb-hlte730t", + "name": "A6L Dual SIM TD-LTE 128GB HLTE730T", + "brand": { + "id": 14, + "slug": "hisense", + "name": "Hisense", + "country": "CN", + "url": "/v1/brands/hisense" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-10-23", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 19.5, + "camera": 8.8, + "battery": 12.0, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.190933", + "updated_at": "2026-06-19T00:43:44.190933" +} diff --git a/site/public/v1/smartphones/a6l-dual-sim-td-lte-128gb-hlte730t/score/index.json b/site/public/v1/smartphones/a6l-dual-sim-td-lte-128gb-hlte730t/score/index.json new file mode 100644 index 00000000000..612116f1e53 --- /dev/null +++ b/site/public/v1/smartphones/a6l-dual-sim-td-lte-128gb-hlte730t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 19.5, + "camera": 8.8, + "battery": 12.0, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/a6l-dual-sim-td-lte-64gb-hlte730t/index.json b/site/public/v1/smartphones/a6l-dual-sim-td-lte-64gb-hlte730t/index.json new file mode 100644 index 00000000000..0f16a273552 --- /dev/null +++ b/site/public/v1/smartphones/a6l-dual-sim-td-lte-64gb-hlte730t/index.json @@ -0,0 +1,76 @@ +{ + "id": 620, + "slug": "a6l-dual-sim-td-lte-64gb-hlte730t", + "name": "A6L Dual SIM TD-LTE 64GB HLTE730T", + "brand": { + "id": 14, + "slug": "hisense", + "name": "Hisense", + "country": "CN", + "url": "/v1/brands/hisense" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-10-23", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 19.5, + "camera": 8.8, + "battery": 12.0, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.191933", + "updated_at": "2026-06-19T00:43:44.191933" +} diff --git a/site/public/v1/smartphones/a6l-dual-sim-td-lte-64gb-hlte730t/score/index.json b/site/public/v1/smartphones/a6l-dual-sim-td-lte-64gb-hlte730t/score/index.json new file mode 100644 index 00000000000..612116f1e53 --- /dev/null +++ b/site/public/v1/smartphones/a6l-dual-sim-td-lte-64gb-hlte730t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 19.5, + "camera": 8.8, + "battery": 12.0, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/a7-dual-sim-td-lte-cn-64gb-pbfm00/index.json b/site/public/v1/smartphones/a7-dual-sim-td-lte-cn-64gb-pbfm00/index.json new file mode 100644 index 00000000000..a53d319fc2a --- /dev/null +++ b/site/public/v1/smartphones/a7-dual-sim-td-lte-cn-64gb-pbfm00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2733, + "slug": "a7-dual-sim-td-lte-cn-64gb-pbfm00", + "name": "A7 Dual SIM TD-LTE CN 64GB PBFM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-11-22", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.18, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 272 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.497301", + "updated_at": "2026-06-19T00:43:44.497301" +} diff --git a/site/public/v1/smartphones/a7-dual-sim-td-lte-cn-64gb-pbfm00/score/index.json b/site/public/v1/smartphones/a7-dual-sim-td-lte-cn-64gb-pbfm00/score/index.json new file mode 100644 index 00000000000..8556f7d0cec --- /dev/null +++ b/site/public/v1/smartphones/a7-dual-sim-td-lte-cn-64gb-pbfm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a7-dual-sim-td-lte-pk-np-32gb-cph1901/index.json b/site/public/v1/smartphones/a7-dual-sim-td-lte-pk-np-32gb-cph1901/index.json new file mode 100644 index 00000000000..23e062b79ff --- /dev/null +++ b/site/public/v1/smartphones/a7-dual-sim-td-lte-pk-np-32gb-cph1901/index.json @@ -0,0 +1,76 @@ +{ + "id": 2734, + "slug": "a7-dual-sim-td-lte-pk-np-32gb-cph1901", + "name": "A7 Dual SIM TD-LTE PK NP 32GB CPH1901", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-11-22", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.18, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 272 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.497301", + "updated_at": "2026-06-19T00:43:44.497301" +} diff --git a/site/public/v1/smartphones/a7-dual-sim-td-lte-pk-np-32gb-cph1901/score/index.json b/site/public/v1/smartphones/a7-dual-sim-td-lte-pk-np-32gb-cph1901/score/index.json new file mode 100644 index 00000000000..8556f7d0cec --- /dev/null +++ b/site/public/v1/smartphones/a7-dual-sim-td-lte-pk-np-32gb-cph1901/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a72-2020-global-dual-sim-td-lte-128gb-cph2067/index.json b/site/public/v1/smartphones/a72-2020-global-dual-sim-td-lte-128gb-cph2067/index.json new file mode 100644 index 00000000000..e9cfb820e60 --- /dev/null +++ b/site/public/v1/smartphones/a72-2020-global-dual-sim-td-lte-128gb-cph2067/index.json @@ -0,0 +1,76 @@ +{ + "id": 3071, + "slug": "a72-2020-global-dual-sim-td-lte-128gb-cph2067", + "name": "A72 2020 Global Dual SIM TD-LTE 128GB CPH2067", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 45.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.544596", + "updated_at": "2026-06-19T00:43:44.544596" +} diff --git a/site/public/v1/smartphones/a72-2020-global-dual-sim-td-lte-128gb-cph2067/score/index.json b/site/public/v1/smartphones/a72-2020-global-dual-sim-td-lte-128gb-cph2067/score/index.json new file mode 100644 index 00000000000..7735ebdc0d2 --- /dev/null +++ b/site/public/v1/smartphones/a72-2020-global-dual-sim-td-lte-128gb-cph2067/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 45.5, + "value": null +} diff --git a/site/public/v1/smartphones/a72-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-pdym20/index.json b/site/public/v1/smartphones/a72-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-pdym20/index.json new file mode 100644 index 00000000000..0114ccc4f98 --- /dev/null +++ b/site/public/v1/smartphones/a72-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-pdym20/index.json @@ -0,0 +1,77 @@ +{ + "id": 3072, + "slug": "a72-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-pdym20", + "name": "A72 5G 2020 Premium Edition Dual SIM TD-LTE CN 128GB PDYM20", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2020-07-01", + "msrp_usd": 1499, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4040, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 1.5, + "camera": 6.3, + "battery": 16.2, + "display": 40.5, + "value": 12.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.544596", + "updated_at": "2026-06-19T00:43:44.544596" +} diff --git a/site/public/v1/smartphones/a72-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-pdym20/score/index.json b/site/public/v1/smartphones/a72-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-pdym20/score/index.json new file mode 100644 index 00000000000..e669179babc --- /dev/null +++ b/site/public/v1/smartphones/a72-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-pdym20/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 1.5, + "camera": 6.3, + "battery": 16.2, + "display": 40.5, + "value": 12.0 +} diff --git a/site/public/v1/smartphones/a72-5g-2020-premium-edition-dual-sim-td-lte-cn-256gb-pdym20/index.json b/site/public/v1/smartphones/a72-5g-2020-premium-edition-dual-sim-td-lte-cn-256gb-pdym20/index.json new file mode 100644 index 00000000000..b978f3da63e --- /dev/null +++ b/site/public/v1/smartphones/a72-5g-2020-premium-edition-dual-sim-td-lte-cn-256gb-pdym20/index.json @@ -0,0 +1,77 @@ +{ + "id": 3073, + "slug": "a72-5g-2020-premium-edition-dual-sim-td-lte-cn-256gb-pdym20", + "name": "A72 5G 2020 Premium Edition Dual SIM TD-LTE CN 256GB PDYM20", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2020-07-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4040, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 1.5, + "camera": 6.3, + "battery": 16.2, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.545597", + "updated_at": "2026-06-19T00:43:44.545597" +} diff --git a/site/public/v1/smartphones/a72-5g-2020-premium-edition-dual-sim-td-lte-cn-256gb-pdym20/score/index.json b/site/public/v1/smartphones/a72-5g-2020-premium-edition-dual-sim-td-lte-cn-256gb-pdym20/score/index.json new file mode 100644 index 00000000000..39482677bcb --- /dev/null +++ b/site/public/v1/smartphones/a72-5g-2020-premium-edition-dual-sim-td-lte-cn-256gb-pdym20/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 1.5, + "camera": 6.3, + "battery": 16.2, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/a72-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdym20/index.json b/site/public/v1/smartphones/a72-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdym20/index.json new file mode 100644 index 00000000000..c5cdb6d05b3 --- /dev/null +++ b/site/public/v1/smartphones/a72-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdym20/index.json @@ -0,0 +1,77 @@ +{ + "id": 3074, + "slug": "a72-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdym20", + "name": "A72 5G 2020 Standard Edition Dual SIM TD-LTE CN 128GB PDYM20", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2020-07-01", + "msrp_usd": 1399, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4040, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 0.0, + "camera": 6.3, + "battery": 16.2, + "display": 40.5, + "value": 15.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.545597", + "updated_at": "2026-06-19T00:43:44.545597" +} diff --git a/site/public/v1/smartphones/a72-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdym20/score/index.json b/site/public/v1/smartphones/a72-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdym20/score/index.json new file mode 100644 index 00000000000..c63914f5e94 --- /dev/null +++ b/site/public/v1/smartphones/a72-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdym20/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 0.0, + "camera": 6.3, + "battery": 16.2, + "display": 40.5, + "value": 15.7 +} diff --git a/site/public/v1/smartphones/a72-5g-2020-top-edition-dual-sim-td-lte-cn-128gb-pdym20/index.json b/site/public/v1/smartphones/a72-5g-2020-top-edition-dual-sim-td-lte-cn-128gb-pdym20/index.json new file mode 100644 index 00000000000..e20292008e1 --- /dev/null +++ b/site/public/v1/smartphones/a72-5g-2020-top-edition-dual-sim-td-lte-cn-128gb-pdym20/index.json @@ -0,0 +1,77 @@ +{ + "id": 3075, + "slug": "a72-5g-2020-top-edition-dual-sim-td-lte-cn-128gb-pdym20", + "name": "A72 5G 2020 Top Edition Dual SIM TD-LTE CN 128GB PDYM20", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2020-07-01", + "msrp_usd": 1899, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4040, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 3.0, + "camera": 6.3, + "battery": 16.2, + "display": 40.5, + "value": 8.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.545597", + "updated_at": "2026-06-19T00:43:44.545597" +} diff --git a/site/public/v1/smartphones/a72-5g-2020-top-edition-dual-sim-td-lte-cn-128gb-pdym20/score/index.json b/site/public/v1/smartphones/a72-5g-2020-top-edition-dual-sim-td-lte-cn-128gb-pdym20/score/index.json new file mode 100644 index 00000000000..a289a33220e --- /dev/null +++ b/site/public/v1/smartphones/a72-5g-2020-top-edition-dual-sim-td-lte-cn-128gb-pdym20/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 3.0, + "camera": 6.3, + "battery": 16.2, + "display": 40.5, + "value": 8.2 +} diff --git a/site/public/v1/smartphones/a73-2020-dual-sim-td-lte-v1-my-vn-th-128gb-cph2095/index.json b/site/public/v1/smartphones/a73-2020-dual-sim-td-lte-v1-my-vn-th-128gb-cph2095/index.json new file mode 100644 index 00000000000..5f918c6b1e0 --- /dev/null +++ b/site/public/v1/smartphones/a73-2020-dual-sim-td-lte-v1-my-vn-th-128gb-cph2095/index.json @@ -0,0 +1,77 @@ +{ + "id": 3077, + "slug": "a73-2020-dual-sim-td-lte-v1-my-vn-th-128gb-cph2095", + "name": "A73 2020 Dual SIM TD-LTE V1 MY VN TH 128GB CPH2095", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2020-10-01", + "msrp_usd": 899, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 4015, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.0, + "performance": 1.5, + "camera": 6.3, + "battery": 15.8, + "display": 28.4, + "value": 33.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.545597", + "updated_at": "2026-06-19T00:43:44.545597" +} diff --git a/site/public/v1/smartphones/a73-2020-dual-sim-td-lte-v1-my-vn-th-128gb-cph2095/score/index.json b/site/public/v1/smartphones/a73-2020-dual-sim-td-lte-v1-my-vn-th-128gb-cph2095/score/index.json new file mode 100644 index 00000000000..1d2357b6cdd --- /dev/null +++ b/site/public/v1/smartphones/a73-2020-dual-sim-td-lte-v1-my-vn-th-128gb-cph2095/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.0, + "performance": 1.5, + "camera": 6.3, + "battery": 15.8, + "display": 28.4, + "value": 33.5 +} diff --git a/site/public/v1/smartphones/a73-2020-dual-sim-td-lte-v3-jp-64gb-cph2099/index.json b/site/public/v1/smartphones/a73-2020-dual-sim-td-lte-v3-jp-64gb-cph2099/index.json new file mode 100644 index 00000000000..3a851519788 --- /dev/null +++ b/site/public/v1/smartphones/a73-2020-dual-sim-td-lte-v3-jp-64gb-cph2099/index.json @@ -0,0 +1,77 @@ +{ + "id": 3078, + "slug": "a73-2020-dual-sim-td-lte-v3-jp-64gb-cph2099", + "name": "A73 2020 Dual SIM TD-LTE V3 JP 64GB CPH2099", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2020-12-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": 0.0, + "camera": 6.3, + "battery": 15.6, + "display": 28.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.545597", + "updated_at": "2026-06-19T00:43:44.545597" +} diff --git a/site/public/v1/smartphones/a73-2020-dual-sim-td-lte-v3-jp-64gb-cph2099/score/index.json b/site/public/v1/smartphones/a73-2020-dual-sim-td-lte-v3-jp-64gb-cph2099/score/index.json new file mode 100644 index 00000000000..427b2798e96 --- /dev/null +++ b/site/public/v1/smartphones/a73-2020-dual-sim-td-lte-v3-jp-64gb-cph2099/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": 0.0, + "camera": 6.3, + "battery": 15.6, + "display": 28.4, + "value": null +} diff --git a/site/public/v1/smartphones/a73-2020-global-dual-sim-td-lte-v2-128gb-cph2095/index.json b/site/public/v1/smartphones/a73-2020-global-dual-sim-td-lte-v2-128gb-cph2095/index.json new file mode 100644 index 00000000000..68dec934dd9 --- /dev/null +++ b/site/public/v1/smartphones/a73-2020-global-dual-sim-td-lte-v2-128gb-cph2095/index.json @@ -0,0 +1,77 @@ +{ + "id": 3079, + "slug": "a73-2020-global-dual-sim-td-lte-v2-128gb-cph2095", + "name": "A73 2020 Global Dual SIM TD-LTE V2 128GB CPH2095", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 4015, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.0, + "performance": 1.5, + "camera": 6.3, + "battery": 15.8, + "display": 28.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.546597", + "updated_at": "2026-06-19T00:43:44.546597" +} diff --git a/site/public/v1/smartphones/a73-2020-global-dual-sim-td-lte-v2-128gb-cph2095/score/index.json b/site/public/v1/smartphones/a73-2020-global-dual-sim-td-lte-v2-128gb-cph2095/score/index.json new file mode 100644 index 00000000000..8133aae2fc6 --- /dev/null +++ b/site/public/v1/smartphones/a73-2020-global-dual-sim-td-lte-v2-128gb-cph2095/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.0, + "performance": 1.5, + "camera": 6.3, + "battery": 15.8, + "display": 28.4, + "value": null +} diff --git a/site/public/v1/smartphones/a73-5g-2020-dual-sim-td-lte-v3-tw-128gb-cph2161/index.json b/site/public/v1/smartphones/a73-5g-2020-dual-sim-td-lte-v3-tw-128gb-cph2161/index.json new file mode 100644 index 00000000000..349e45e791b --- /dev/null +++ b/site/public/v1/smartphones/a73-5g-2020-dual-sim-td-lte-v3-tw-128gb-cph2161/index.json @@ -0,0 +1,77 @@ +{ + "id": 3080, + "slug": "a73-5g-2020-dual-sim-td-lte-v3-tw-128gb-cph2161", + "name": "A73 5G 2020 Dual SIM TD-LTE V3 TW 128GB CPH2161", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2020-11-03", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4040, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 3.0, + "camera": 6.3, + "battery": 16.2, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.546597", + "updated_at": "2026-06-19T00:43:44.546597" +} diff --git a/site/public/v1/smartphones/a73-5g-2020-dual-sim-td-lte-v3-tw-128gb-cph2161/score/index.json b/site/public/v1/smartphones/a73-5g-2020-dual-sim-td-lte-v3-tw-128gb-cph2161/score/index.json new file mode 100644 index 00000000000..09fc3dcf824 --- /dev/null +++ b/site/public/v1/smartphones/a73-5g-2020-dual-sim-td-lte-v3-tw-128gb-cph2161/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 3.0, + "camera": 6.3, + "battery": 16.2, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/a73-5g-2020-global-dual-sim-td-lte-v1-128gb-cph2161/index.json b/site/public/v1/smartphones/a73-5g-2020-global-dual-sim-td-lte-v1-128gb-cph2161/index.json new file mode 100644 index 00000000000..01b937f53f8 --- /dev/null +++ b/site/public/v1/smartphones/a73-5g-2020-global-dual-sim-td-lte-v1-128gb-cph2161/index.json @@ -0,0 +1,77 @@ +{ + "id": 3081, + "slug": "a73-5g-2020-global-dual-sim-td-lte-v1-128gb-cph2161", + "name": "A73 5G 2020 Global Dual SIM TD-LTE V1 128GB CPH2161", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2020-10-01", + "msrp_usd": 299, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4040, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 3.0, + "camera": 6.3, + "battery": 16.2, + "display": 40.5, + "value": 58.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.546597", + "updated_at": "2026-06-19T00:43:44.546597" +} diff --git a/site/public/v1/smartphones/a73-5g-2020-global-dual-sim-td-lte-v1-128gb-cph2161/score/index.json b/site/public/v1/smartphones/a73-5g-2020-global-dual-sim-td-lte-v1-128gb-cph2161/score/index.json new file mode 100644 index 00000000000..44270bf06d1 --- /dev/null +++ b/site/public/v1/smartphones/a73-5g-2020-global-dual-sim-td-lte-v1-128gb-cph2161/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 3.0, + "camera": 6.3, + "battery": 16.2, + "display": 40.5, + "value": 58.2 +} diff --git a/site/public/v1/smartphones/a73s-dual-sim-td-lte-tw-cph1859-f7-youth/index.json b/site/public/v1/smartphones/a73s-dual-sim-td-lte-tw-cph1859-f7-youth/index.json new file mode 100644 index 00000000000..e654798b376 --- /dev/null +++ b/site/public/v1/smartphones/a73s-dual-sim-td-lte-tw-cph1859-f7-youth/index.json @@ -0,0 +1,76 @@ +{ + "id": 2735, + "slug": "a73s-dual-sim-td-lte-tw-cph1859-f7-youth", + "name": "A73s Dual SIM TD-LTE TW CPH1859 / F7 Youth", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-06-28", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3410, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 155.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 0.0, + "camera": 5.3, + "battery": 6.2, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.497301", + "updated_at": "2026-06-19T00:43:44.497301" +} diff --git a/site/public/v1/smartphones/a73s-dual-sim-td-lte-tw-cph1859-f7-youth/score/index.json b/site/public/v1/smartphones/a73s-dual-sim-td-lte-tw-cph1859-f7-youth/score/index.json new file mode 100644 index 00000000000..c75032371f4 --- /dev/null +++ b/site/public/v1/smartphones/a73s-dual-sim-td-lte-tw-cph1859-f7-youth/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 0.0, + "camera": 5.3, + "battery": 6.2, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/a74-2021-5g-global-dual-sim-td-lte-128gb-cph2197/index.json b/site/public/v1/smartphones/a74-2021-5g-global-dual-sim-td-lte-128gb-cph2197/index.json new file mode 100644 index 00000000000..01c65ed06bc --- /dev/null +++ b/site/public/v1/smartphones/a74-2021-5g-global-dual-sim-td-lte-128gb-cph2197/index.json @@ -0,0 +1,77 @@ +{ + "id": 3298, + "slug": "a74-2021-5g-global-dual-sim-td-lte-128gb-cph2197", + "name": "A74 2021 5G Global Dual SIM TD-LTE 128GB CPH2197", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-04-22", + "msrp_usd": 319, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": 60.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.577637", + "updated_at": "2026-06-19T00:43:44.577637" +} diff --git a/site/public/v1/smartphones/a74-2021-5g-global-dual-sim-td-lte-128gb-cph2197/score/index.json b/site/public/v1/smartphones/a74-2021-5g-global-dual-sim-td-lte-128gb-cph2197/score/index.json new file mode 100644 index 00000000000..a89c8158b68 --- /dev/null +++ b/site/public/v1/smartphones/a74-2021-5g-global-dual-sim-td-lte-128gb-cph2197/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": 60.4 +} diff --git a/site/public/v1/smartphones/a74-2021-premium-edition-dual-sim-td-lte-v2-au-my-th-128gb-cph2219/index.json b/site/public/v1/smartphones/a74-2021-premium-edition-dual-sim-td-lte-v2-au-my-th-128gb-cph2219/index.json new file mode 100644 index 00000000000..a0b6f9be6d0 --- /dev/null +++ b/site/public/v1/smartphones/a74-2021-premium-edition-dual-sim-td-lte-v2-au-my-th-128gb-cph2219/index.json @@ -0,0 +1,77 @@ +{ + "id": 3299, + "slug": "a74-2021-premium-edition-dual-sim-td-lte-v2-au-my-th-128gb-cph2219", + "name": "A74 2021 Premium Edition Dual SIM TD-LTE V2 AU MY TH 128GB CPH2219", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-04-01", + "msrp_usd": 299, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 1.5, + "camera": 16.5, + "battery": 33.4, + "display": 28.4, + "value": 60.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.577637", + "updated_at": "2026-06-19T00:43:44.577637" +} diff --git a/site/public/v1/smartphones/a74-2021-premium-edition-dual-sim-td-lte-v2-au-my-th-128gb-cph2219/score/index.json b/site/public/v1/smartphones/a74-2021-premium-edition-dual-sim-td-lte-v2-au-my-th-128gb-cph2219/score/index.json new file mode 100644 index 00000000000..4854d18acfc --- /dev/null +++ b/site/public/v1/smartphones/a74-2021-premium-edition-dual-sim-td-lte-v2-au-my-th-128gb-cph2219/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 1.5, + "camera": 16.5, + "battery": 33.4, + "display": 28.4, + "value": 60.0 +} diff --git a/site/public/v1/smartphones/a74-2021-standard-edition-dual-sim-td-lte-v2-kz-128gb-cph2219/index.json b/site/public/v1/smartphones/a74-2021-standard-edition-dual-sim-td-lte-v2-kz-128gb-cph2219/index.json new file mode 100644 index 00000000000..38706ff7b19 --- /dev/null +++ b/site/public/v1/smartphones/a74-2021-standard-edition-dual-sim-td-lte-v2-kz-128gb-cph2219/index.json @@ -0,0 +1,77 @@ +{ + "id": 3300, + "slug": "a74-2021-standard-edition-dual-sim-td-lte-v2-kz-128gb-cph2219", + "name": "A74 2021 Standard Edition Dual SIM TD-LTE V2 KZ 128GB CPH2219", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 0.0, + "camera": 16.5, + "battery": 33.4, + "display": 28.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.577637", + "updated_at": "2026-06-19T00:43:44.577637" +} diff --git a/site/public/v1/smartphones/a74-2021-standard-edition-dual-sim-td-lte-v2-kz-128gb-cph2219/score/index.json b/site/public/v1/smartphones/a74-2021-standard-edition-dual-sim-td-lte-v2-kz-128gb-cph2219/score/index.json new file mode 100644 index 00000000000..d13258e6815 --- /dev/null +++ b/site/public/v1/smartphones/a74-2021-standard-edition-dual-sim-td-lte-v2-kz-128gb-cph2219/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 0.0, + "camera": 16.5, + "battery": 33.4, + "display": 28.4, + "value": null +} diff --git a/site/public/v1/smartphones/a74-2021-top-edition-dual-sim-td-lte-v2-vn-128gb-cph2219/index.json b/site/public/v1/smartphones/a74-2021-top-edition-dual-sim-td-lte-v2-vn-128gb-cph2219/index.json new file mode 100644 index 00000000000..dbabbd52b0f --- /dev/null +++ b/site/public/v1/smartphones/a74-2021-top-edition-dual-sim-td-lte-v2-vn-128gb-cph2219/index.json @@ -0,0 +1,77 @@ +{ + "id": 3301, + "slug": "a74-2021-top-edition-dual-sim-td-lte-v2-vn-128gb-cph2219", + "name": "A74 2021 Top Edition Dual SIM TD-LTE V2 VN 128GB CPH2219", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-04-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 3.0, + "camera": 16.5, + "battery": 33.4, + "display": 28.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.577637", + "updated_at": "2026-06-19T00:43:44.577637" +} diff --git a/site/public/v1/smartphones/a74-2021-top-edition-dual-sim-td-lte-v2-vn-128gb-cph2219/score/index.json b/site/public/v1/smartphones/a74-2021-top-edition-dual-sim-td-lte-v2-vn-128gb-cph2219/score/index.json new file mode 100644 index 00000000000..60e0ee85013 --- /dev/null +++ b/site/public/v1/smartphones/a74-2021-top-edition-dual-sim-td-lte-v2-vn-128gb-cph2219/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 3.0, + "camera": 16.5, + "battery": 33.4, + "display": 28.4, + "value": null +} diff --git a/site/public/v1/smartphones/a76-2022-premium-edition-dual-sim-td-lte-id-in-pk-np-bd-v1-128gb-cph2375/index.json b/site/public/v1/smartphones/a76-2022-premium-edition-dual-sim-td-lte-id-in-pk-np-bd-v1-128gb-cph2375/index.json new file mode 100644 index 00000000000..4345c7ea49d --- /dev/null +++ b/site/public/v1/smartphones/a76-2022-premium-edition-dual-sim-td-lte-id-in-pk-np-bd-v1-128gb-cph2375/index.json @@ -0,0 +1,77 @@ +{ + "id": 3445, + "slug": "a76-2022-premium-edition-dual-sim-td-lte-id-in-pk-np-bd-v1-128gb-cph2375", + "name": "A76 2022 Premium Edition Dual SIM TD-LTE ID IN PK NP BD V1 128GB CPH2375", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 152, + "slug": "snapdragon-680", + "name": "Snapdragon 680 4G", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 6.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-680" + }, + "release_date": "2022-02-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "720x1612", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.8, + "performance": 1.5, + "camera": 5.3, + "battery": 38.4, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.598891", + "updated_at": "2026-06-19T00:43:44.598891" +} diff --git a/site/public/v1/smartphones/a76-2022-premium-edition-dual-sim-td-lte-id-in-pk-np-bd-v1-128gb-cph2375/score/index.json b/site/public/v1/smartphones/a76-2022-premium-edition-dual-sim-td-lte-id-in-pk-np-bd-v1-128gb-cph2375/score/index.json new file mode 100644 index 00000000000..602346af39e --- /dev/null +++ b/site/public/v1/smartphones/a76-2022-premium-edition-dual-sim-td-lte-id-in-pk-np-bd-v1-128gb-cph2375/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.8, + "performance": 1.5, + "camera": 5.3, + "battery": 38.4, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/a76-2022-premium-edition-global-dual-sim-td-lte-v2-128gb-cph2375/index.json b/site/public/v1/smartphones/a76-2022-premium-edition-global-dual-sim-td-lte-v2-128gb-cph2375/index.json new file mode 100644 index 00000000000..ab8f6559760 --- /dev/null +++ b/site/public/v1/smartphones/a76-2022-premium-edition-global-dual-sim-td-lte-v2-128gb-cph2375/index.json @@ -0,0 +1,77 @@ +{ + "id": 3446, + "slug": "a76-2022-premium-edition-global-dual-sim-td-lte-v2-128gb-cph2375", + "name": "A76 2022 Premium Edition Global Dual SIM TD-LTE V2 128GB CPH2375", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 152, + "slug": "snapdragon-680", + "name": "Snapdragon 680 4G", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 6.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-680" + }, + "release_date": "2022-02-01", + "msrp_usd": 899, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "720x1612", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.8, + "performance": 1.5, + "camera": 5.3, + "battery": 38.4, + "display": 30.0, + "value": 36.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.598891", + "updated_at": "2026-06-19T00:43:44.598891" +} diff --git a/site/public/v1/smartphones/a76-2022-premium-edition-global-dual-sim-td-lte-v2-128gb-cph2375/score/index.json b/site/public/v1/smartphones/a76-2022-premium-edition-global-dual-sim-td-lte-v2-128gb-cph2375/score/index.json new file mode 100644 index 00000000000..ade4e42ff70 --- /dev/null +++ b/site/public/v1/smartphones/a76-2022-premium-edition-global-dual-sim-td-lte-v2-128gb-cph2375/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.8, + "performance": 1.5, + "camera": 5.3, + "battery": 38.4, + "display": 30.0, + "value": 36.4 +} diff --git a/site/public/v1/smartphones/a76-2022-standard-edition-global-dual-sim-td-lte-v2-128gb-cph2375/index.json b/site/public/v1/smartphones/a76-2022-standard-edition-global-dual-sim-td-lte-v2-128gb-cph2375/index.json new file mode 100644 index 00000000000..dbdf8c55c46 --- /dev/null +++ b/site/public/v1/smartphones/a76-2022-standard-edition-global-dual-sim-td-lte-v2-128gb-cph2375/index.json @@ -0,0 +1,77 @@ +{ + "id": 3447, + "slug": "a76-2022-standard-edition-global-dual-sim-td-lte-v2-128gb-cph2375", + "name": "A76 2022 Standard Edition Global Dual SIM TD-LTE V2 128GB CPH2375", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 152, + "slug": "snapdragon-680", + "name": "Snapdragon 680 4G", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 6.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-680" + }, + "release_date": "2022-02-01", + "msrp_usd": 249, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "720x1612", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 0.0, + "camera": 5.3, + "battery": 38.4, + "display": 30.0, + "value": 59.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.598891", + "updated_at": "2026-06-19T00:43:44.598891" +} diff --git a/site/public/v1/smartphones/a76-2022-standard-edition-global-dual-sim-td-lte-v2-128gb-cph2375/score/index.json b/site/public/v1/smartphones/a76-2022-standard-edition-global-dual-sim-td-lte-v2-128gb-cph2375/score/index.json new file mode 100644 index 00000000000..04b62311de7 --- /dev/null +++ b/site/public/v1/smartphones/a76-2022-standard-edition-global-dual-sim-td-lte-v2-128gb-cph2375/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 0.0, + "camera": 5.3, + "battery": 38.4, + "display": 30.0, + "value": 59.2 +} diff --git a/site/public/v1/smartphones/a76-2022-standard-edition-global-dual-sim-td-lte-v2-256gb-cph2375/index.json b/site/public/v1/smartphones/a76-2022-standard-edition-global-dual-sim-td-lte-v2-256gb-cph2375/index.json new file mode 100644 index 00000000000..57e463ef3ef --- /dev/null +++ b/site/public/v1/smartphones/a76-2022-standard-edition-global-dual-sim-td-lte-v2-256gb-cph2375/index.json @@ -0,0 +1,77 @@ +{ + "id": 3448, + "slug": "a76-2022-standard-edition-global-dual-sim-td-lte-v2-256gb-cph2375", + "name": "A76 2022 Standard Edition Global Dual SIM TD-LTE V2 256GB CPH2375", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 152, + "slug": "snapdragon-680", + "name": "Snapdragon 680 4G", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 6.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-680" + }, + "release_date": "2022-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "720x1612", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 0.0, + "camera": 5.3, + "battery": 38.4, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.598891", + "updated_at": "2026-06-19T00:43:44.598891" +} diff --git a/site/public/v1/smartphones/a76-2022-standard-edition-global-dual-sim-td-lte-v2-256gb-cph2375/score/index.json b/site/public/v1/smartphones/a76-2022-standard-edition-global-dual-sim-td-lte-v2-256gb-cph2375/score/index.json new file mode 100644 index 00000000000..6078fb4b150 --- /dev/null +++ b/site/public/v1/smartphones/a76-2022-standard-edition-global-dual-sim-td-lte-v2-256gb-cph2375/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 0.0, + "camera": 5.3, + "battery": 38.4, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/a7n-dual-sim-td-lte-cn-pcdm00/index.json b/site/public/v1/smartphones/a7n-dual-sim-td-lte-cn-pcdm00/index.json new file mode 100644 index 00000000000..13010727077 --- /dev/null +++ b/site/public/v1/smartphones/a7n-dual-sim-td-lte-cn-pcdm00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2838, + "slug": "a7n-dual-sim-td-lte-cn-pcdm00", + "name": "A7n Dual SIM TD-LTE CN PCDM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.511912", + "updated_at": "2026-06-19T00:43:44.511912" +} diff --git a/site/public/v1/smartphones/a7n-dual-sim-td-lte-cn-pcdm00/score/index.json b/site/public/v1/smartphones/a7n-dual-sim-td-lte-cn-pcdm00/score/index.json new file mode 100644 index 00000000000..470feae9b91 --- /dev/null +++ b/site/public/v1/smartphones/a7n-dual-sim-td-lte-cn-pcdm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a7n-dual-sim-td-lte-cn-pcdt00/index.json b/site/public/v1/smartphones/a7n-dual-sim-td-lte-cn-pcdt00/index.json new file mode 100644 index 00000000000..288a06951a1 --- /dev/null +++ b/site/public/v1/smartphones/a7n-dual-sim-td-lte-cn-pcdt00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2839, + "slug": "a7n-dual-sim-td-lte-cn-pcdt00", + "name": "A7n Dual SIM TD-LTE CN PCDT00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.511912", + "updated_at": "2026-06-19T00:43:44.511912" +} diff --git a/site/public/v1/smartphones/a7n-dual-sim-td-lte-cn-pcdt00/score/index.json b/site/public/v1/smartphones/a7n-dual-sim-td-lte-cn-pcdt00/score/index.json new file mode 100644 index 00000000000..470feae9b91 --- /dev/null +++ b/site/public/v1/smartphones/a7n-dual-sim-td-lte-cn-pcdt00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a7x-dual-sim-td-lte-cn-128gb-pbbm00/index.json b/site/public/v1/smartphones/a7x-dual-sim-td-lte-cn-128gb-pbbm00/index.json new file mode 100644 index 00000000000..96ec3b80f9c --- /dev/null +++ b/site/public/v1/smartphones/a7x-dual-sim-td-lte-cn-128gb-pbbm00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2737, + "slug": "a7x-dual-sim-td-lte-cn-128gb-pbbm00", + "name": "A7x Dual SIM TD-LTE CN 128GB PBBM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color TN-TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": 0.0, + "camera": 6.3, + "battery": 7.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.498308", + "updated_at": "2026-06-19T00:43:44.498308" +} diff --git a/site/public/v1/smartphones/a7x-dual-sim-td-lte-cn-128gb-pbbm00/score/index.json b/site/public/v1/smartphones/a7x-dual-sim-td-lte-cn-128gb-pbbm00/score/index.json new file mode 100644 index 00000000000..13cb365cae9 --- /dev/null +++ b/site/public/v1/smartphones/a7x-dual-sim-td-lte-cn-128gb-pbbm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": 0.0, + "camera": 6.3, + "battery": 7.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/a7x-dual-sim-td-lte-cn-64gb-pbbm00/index.json b/site/public/v1/smartphones/a7x-dual-sim-td-lte-cn-64gb-pbbm00/index.json new file mode 100644 index 00000000000..d764e63c8bf --- /dev/null +++ b/site/public/v1/smartphones/a7x-dual-sim-td-lte-cn-64gb-pbbm00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2738, + "slug": "a7x-dual-sim-td-lte-cn-64gb-pbbm00", + "name": "A7x Dual SIM TD-LTE CN 64GB PBBM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color TN-TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": 0.0, + "camera": 6.3, + "battery": 7.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.498308", + "updated_at": "2026-06-19T00:43:44.498308" +} diff --git a/site/public/v1/smartphones/a7x-dual-sim-td-lte-cn-64gb-pbbm00/score/index.json b/site/public/v1/smartphones/a7x-dual-sim-td-lte-cn-64gb-pbbm00/score/index.json new file mode 100644 index 00000000000..13cb365cae9 --- /dev/null +++ b/site/public/v1/smartphones/a7x-dual-sim-td-lte-cn-64gb-pbbm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": 0.0, + "camera": 6.3, + "battery": 7.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/a7x-dual-sim-td-lte-cn-64gb-pbbt00/index.json b/site/public/v1/smartphones/a7x-dual-sim-td-lte-cn-64gb-pbbt00/index.json new file mode 100644 index 00000000000..2d65ca8974b --- /dev/null +++ b/site/public/v1/smartphones/a7x-dual-sim-td-lte-cn-64gb-pbbt00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2739, + "slug": "a7x-dual-sim-td-lte-cn-64gb-pbbt00", + "name": "A7x Dual SIM TD-LTE CN 64GB PBBT00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color TN-TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": 0.0, + "camera": 6.3, + "battery": 7.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.498308", + "updated_at": "2026-06-19T00:43:44.498308" +} diff --git a/site/public/v1/smartphones/a7x-dual-sim-td-lte-cn-64gb-pbbt00/score/index.json b/site/public/v1/smartphones/a7x-dual-sim-td-lte-cn-64gb-pbbt00/score/index.json new file mode 100644 index 00000000000..13cb365cae9 --- /dev/null +++ b/site/public/v1/smartphones/a7x-dual-sim-td-lte-cn-64gb-pbbt00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": 0.0, + "camera": 6.3, + "battery": 7.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/a8-2019-dual-sim-td-lte-cn-pdbm00/index.json b/site/public/v1/smartphones/a8-2019-dual-sim-td-lte-cn-pdbm00/index.json new file mode 100644 index 00000000000..5bee3556c16 --- /dev/null +++ b/site/public/v1/smartphones/a8-2019-dual-sim-td-lte-cn-pdbm00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2841, + "slug": "a8-2019-dual-sim-td-lte-cn-pdbm00", + "name": "A8 2019 Dual SIM TD-LTE CN PDBM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2019-12-26", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.2, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.511912", + "updated_at": "2026-06-19T00:43:44.511912" +} diff --git a/site/public/v1/smartphones/a8-2019-dual-sim-td-lte-cn-pdbm00/score/index.json b/site/public/v1/smartphones/a8-2019-dual-sim-td-lte-cn-pdbm00/score/index.json new file mode 100644 index 00000000000..0561b00a555 --- /dev/null +++ b/site/public/v1/smartphones/a8-2019-dual-sim-td-lte-cn-pdbm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.2, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a83-2018-dual-sim-td-lte-in-id-th-16gb/index.json b/site/public/v1/smartphones/a83-2018-dual-sim-td-lte-in-id-th-16gb/index.json new file mode 100644 index 00000000000..18924b88779 --- /dev/null +++ b/site/public/v1/smartphones/a83-2018-dual-sim-td-lte-in-id-th-16gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2741, + "slug": "a83-2018-dual-sim-td-lte-in-id-th-16gb", + "name": "A83 2018 Dual SIM TD-LTE IN ID TH 16GB", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3180, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 143.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.8, + "performance": 0.0, + "camera": 5.3, + "battery": 2.7, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.498308", + "updated_at": "2026-06-19T00:43:44.498308" +} diff --git a/site/public/v1/smartphones/a83-2018-dual-sim-td-lte-in-id-th-16gb/score/index.json b/site/public/v1/smartphones/a83-2018-dual-sim-td-lte-in-id-th-16gb/score/index.json new file mode 100644 index 00000000000..2d90b705bf8 --- /dev/null +++ b/site/public/v1/smartphones/a83-2018-dual-sim-td-lte-in-id-th-16gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.8, + "performance": 0.0, + "camera": 5.3, + "battery": 2.7, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a83-2018-dual-sim-td-lte-in-id-th-64gb/index.json b/site/public/v1/smartphones/a83-2018-dual-sim-td-lte-in-id-th-64gb/index.json new file mode 100644 index 00000000000..faa2d4dabeb --- /dev/null +++ b/site/public/v1/smartphones/a83-2018-dual-sim-td-lte-in-id-th-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2742, + "slug": "a83-2018-dual-sim-td-lte-in-id-th-64gb", + "name": "A83 2018 Dual SIM TD-LTE IN ID TH 64GB", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2018-01-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3180, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 143.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.8, + "performance": 0.0, + "camera": 5.3, + "battery": 2.7, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.498308", + "updated_at": "2026-06-19T00:43:44.498308" +} diff --git a/site/public/v1/smartphones/a83-2018-dual-sim-td-lte-in-id-th-64gb/score/index.json b/site/public/v1/smartphones/a83-2018-dual-sim-td-lte-in-id-th-64gb/score/index.json new file mode 100644 index 00000000000..2d90b705bf8 --- /dev/null +++ b/site/public/v1/smartphones/a83-2018-dual-sim-td-lte-in-id-th-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.8, + "performance": 0.0, + "camera": 5.3, + "battery": 2.7, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a83-dual-sim-td-lte-my-vn-eg-pk/index.json b/site/public/v1/smartphones/a83-dual-sim-td-lte-my-vn-eg-pk/index.json new file mode 100644 index 00000000000..c63b0502ae5 --- /dev/null +++ b/site/public/v1/smartphones/a83-dual-sim-td-lte-my-vn-eg-pk/index.json @@ -0,0 +1,76 @@ +{ + "id": 2744, + "slug": "a83-dual-sim-td-lte-my-vn-eg-pk", + "name": "A83 Dual SIM TD-LTE MY VN EG PK", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2018-01-21", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3180, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 143.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.8, + "performance": 0.0, + "camera": 5.3, + "battery": 2.7, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.498308", + "updated_at": "2026-06-19T00:43:44.498308" +} diff --git a/site/public/v1/smartphones/a83-dual-sim-td-lte-my-vn-eg-pk/score/index.json b/site/public/v1/smartphones/a83-dual-sim-td-lte-my-vn-eg-pk/score/index.json new file mode 100644 index 00000000000..2d90b705bf8 --- /dev/null +++ b/site/public/v1/smartphones/a83-dual-sim-td-lte-my-vn-eg-pk/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.8, + "performance": 0.0, + "camera": 5.3, + "battery": 2.7, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a83-dual-sim-td-lte-ru-kz-ph-ke/index.json b/site/public/v1/smartphones/a83-dual-sim-td-lte-ru-kz-ph-ke/index.json new file mode 100644 index 00000000000..0030a18f651 --- /dev/null +++ b/site/public/v1/smartphones/a83-dual-sim-td-lte-ru-kz-ph-ke/index.json @@ -0,0 +1,76 @@ +{ + "id": 2745, + "slug": "a83-dual-sim-td-lte-ru-kz-ph-ke", + "name": "A83 Dual SIM TD-LTE RU KZ PH KE", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2018-01-21", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3180, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 143.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.8, + "performance": 0.0, + "camera": 5.3, + "battery": 2.7, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.498308", + "updated_at": "2026-06-19T00:43:44.498308" +} diff --git a/site/public/v1/smartphones/a83-dual-sim-td-lte-ru-kz-ph-ke/score/index.json b/site/public/v1/smartphones/a83-dual-sim-td-lte-ru-kz-ph-ke/score/index.json new file mode 100644 index 00000000000..2d90b705bf8 --- /dev/null +++ b/site/public/v1/smartphones/a83-dual-sim-td-lte-ru-kz-ph-ke/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.8, + "performance": 0.0, + "camera": 5.3, + "battery": 2.7, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a9-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-np-bd-128gb-cph1939/index.json b/site/public/v1/smartphones/a9-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-np-bd-128gb-cph1939/index.json new file mode 100644 index 00000000000..e6f73e148c2 --- /dev/null +++ b/site/public/v1/smartphones/a9-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-np-bd-128gb-cph1939/index.json @@ -0,0 +1,76 @@ +{ + "id": 2843, + "slug": "a9-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-np-bd-128gb-cph1939", + "name": "A9 2020 Premium Edition Dual SIM TD-LTE V1 IN ID PK NP BD 128GB CPH1939", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.512913", + "updated_at": "2026-06-19T00:43:44.512913" +} diff --git a/site/public/v1/smartphones/a9-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-np-bd-128gb-cph1939/score/index.json b/site/public/v1/smartphones/a9-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-np-bd-128gb-cph1939/score/index.json new file mode 100644 index 00000000000..b0800e395dc --- /dev/null +++ b/site/public/v1/smartphones/a9-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-np-bd-128gb-cph1939/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a9-2020-premium-edition-dual-sim-td-lte-v2-my-vn-th-128gb-cph1939/index.json b/site/public/v1/smartphones/a9-2020-premium-edition-dual-sim-td-lte-v2-my-vn-th-128gb-cph1939/index.json new file mode 100644 index 00000000000..2d9d153809c --- /dev/null +++ b/site/public/v1/smartphones/a9-2020-premium-edition-dual-sim-td-lte-v2-my-vn-th-128gb-cph1939/index.json @@ -0,0 +1,76 @@ +{ + "id": 2844, + "slug": "a9-2020-premium-edition-dual-sim-td-lte-v2-my-vn-th-128gb-cph1939", + "name": "A9 2020 Premium Edition Dual SIM TD-LTE V2 MY VN TH 128GB CPH1939", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.512913", + "updated_at": "2026-06-19T00:43:44.512913" +} diff --git a/site/public/v1/smartphones/a9-2020-premium-edition-dual-sim-td-lte-v2-my-vn-th-128gb-cph1939/score/index.json b/site/public/v1/smartphones/a9-2020-premium-edition-dual-sim-td-lte-v2-my-vn-th-128gb-cph1939/score/index.json new file mode 100644 index 00000000000..b0800e395dc --- /dev/null +++ b/site/public/v1/smartphones/a9-2020-premium-edition-dual-sim-td-lte-v2-my-vn-th-128gb-cph1939/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a9-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph1939/index.json b/site/public/v1/smartphones/a9-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph1939/index.json new file mode 100644 index 00000000000..e754f2539cd --- /dev/null +++ b/site/public/v1/smartphones/a9-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph1939/index.json @@ -0,0 +1,76 @@ +{ + "id": 2845, + "slug": "a9-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph1939", + "name": "A9 2020 Premium Edition Global Dual SIM TD-LTE V3 128GB CPH1939", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.512913", + "updated_at": "2026-06-19T00:43:44.512913" +} diff --git a/site/public/v1/smartphones/a9-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph1939/score/index.json b/site/public/v1/smartphones/a9-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph1939/score/index.json new file mode 100644 index 00000000000..b0800e395dc --- /dev/null +++ b/site/public/v1/smartphones/a9-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph1939/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a9-2020-premium-edition-global-dual-sim-td-lte-v4-128gb-cph1941/index.json b/site/public/v1/smartphones/a9-2020-premium-edition-global-dual-sim-td-lte-v4-128gb-cph1941/index.json new file mode 100644 index 00000000000..4fad0bb8c56 --- /dev/null +++ b/site/public/v1/smartphones/a9-2020-premium-edition-global-dual-sim-td-lte-v4-128gb-cph1941/index.json @@ -0,0 +1,76 @@ +{ + "id": 2846, + "slug": "a9-2020-premium-edition-global-dual-sim-td-lte-v4-128gb-cph1941", + "name": "A9 2020 Premium Edition Global Dual SIM TD-LTE V4 128GB CPH1941", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.512913", + "updated_at": "2026-06-19T00:43:44.512913" +} diff --git a/site/public/v1/smartphones/a9-2020-premium-edition-global-dual-sim-td-lte-v4-128gb-cph1941/score/index.json b/site/public/v1/smartphones/a9-2020-premium-edition-global-dual-sim-td-lte-v4-128gb-cph1941/score/index.json new file mode 100644 index 00000000000..b0800e395dc --- /dev/null +++ b/site/public/v1/smartphones/a9-2020-premium-edition-global-dual-sim-td-lte-v4-128gb-cph1941/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a9-2020-standard-edition-dual-sim-td-lte-v1-in-pk-128gb-cph1937/index.json b/site/public/v1/smartphones/a9-2020-standard-edition-dual-sim-td-lte-v1-in-pk-128gb-cph1937/index.json new file mode 100644 index 00000000000..94e860bcccb --- /dev/null +++ b/site/public/v1/smartphones/a9-2020-standard-edition-dual-sim-td-lte-v1-in-pk-128gb-cph1937/index.json @@ -0,0 +1,76 @@ +{ + "id": 2847, + "slug": "a9-2020-standard-edition-dual-sim-td-lte-v1-in-pk-128gb-cph1937", + "name": "A9 2020 Standard Edition Dual SIM TD-LTE V1 IN PK 128GB CPH1937", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.512913", + "updated_at": "2026-06-19T00:43:44.512913" +} diff --git a/site/public/v1/smartphones/a9-2020-standard-edition-dual-sim-td-lte-v1-in-pk-128gb-cph1937/score/index.json b/site/public/v1/smartphones/a9-2020-standard-edition-dual-sim-td-lte-v1-in-pk-128gb-cph1937/score/index.json new file mode 100644 index 00000000000..99aee406377 --- /dev/null +++ b/site/public/v1/smartphones/a9-2020-standard-edition-dual-sim-td-lte-v1-in-pk-128gb-cph1937/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a9-2020-standard-edition-dual-sim-td-lte-v2-my-vn-th-128gb-cph1937/index.json b/site/public/v1/smartphones/a9-2020-standard-edition-dual-sim-td-lte-v2-my-vn-th-128gb-cph1937/index.json new file mode 100644 index 00000000000..f5f48c9fec9 --- /dev/null +++ b/site/public/v1/smartphones/a9-2020-standard-edition-dual-sim-td-lte-v2-my-vn-th-128gb-cph1937/index.json @@ -0,0 +1,76 @@ +{ + "id": 2848, + "slug": "a9-2020-standard-edition-dual-sim-td-lte-v2-my-vn-th-128gb-cph1937", + "name": "A9 2020 Standard Edition Dual SIM TD-LTE V2 MY VN TH 128GB CPH1937", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.512913", + "updated_at": "2026-06-19T00:43:44.512913" +} diff --git a/site/public/v1/smartphones/a9-2020-standard-edition-dual-sim-td-lte-v2-my-vn-th-128gb-cph1937/score/index.json b/site/public/v1/smartphones/a9-2020-standard-edition-dual-sim-td-lte-v2-my-vn-th-128gb-cph1937/score/index.json new file mode 100644 index 00000000000..99aee406377 --- /dev/null +++ b/site/public/v1/smartphones/a9-2020-standard-edition-dual-sim-td-lte-v2-my-vn-th-128gb-cph1937/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a9-2020-standard-edition-global-dual-sim-td-lte-v4-128gb-cph1941/index.json b/site/public/v1/smartphones/a9-2020-standard-edition-global-dual-sim-td-lte-v4-128gb-cph1941/index.json new file mode 100644 index 00000000000..706648f4d1e --- /dev/null +++ b/site/public/v1/smartphones/a9-2020-standard-edition-global-dual-sim-td-lte-v4-128gb-cph1941/index.json @@ -0,0 +1,76 @@ +{ + "id": 2849, + "slug": "a9-2020-standard-edition-global-dual-sim-td-lte-v4-128gb-cph1941", + "name": "A9 2020 Standard Edition Global Dual SIM TD-LTE V4 128GB CPH1941", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.513913", + "updated_at": "2026-06-19T00:43:44.513913" +} diff --git a/site/public/v1/smartphones/a9-2020-standard-edition-global-dual-sim-td-lte-v4-128gb-cph1941/score/index.json b/site/public/v1/smartphones/a9-2020-standard-edition-global-dual-sim-td-lte-v4-128gb-cph1941/score/index.json new file mode 100644 index 00000000000..99aee406377 --- /dev/null +++ b/site/public/v1/smartphones/a9-2020-standard-edition-global-dual-sim-td-lte-v4-128gb-cph1941/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/a9-premium-edition-dual-sim-td-lte-cn-128gb-pcam10/index.json b/site/public/v1/smartphones/a9-premium-edition-dual-sim-td-lte-cn-128gb-pcam10/index.json new file mode 100644 index 00000000000..c64cc49d796 --- /dev/null +++ b/site/public/v1/smartphones/a9-premium-edition-dual-sim-td-lte-cn-128gb-pcam10/index.json @@ -0,0 +1,76 @@ +{ + "id": 2850, + "slug": "a9-premium-edition-dual-sim-td-lte-cn-128gb-pcam10", + "name": "A9 Premium Edition Dual SIM TD-LTE CN 128GB PCAM10", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color TN-TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4020, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 1.5, + "camera": 6.3, + "battery": 15.3, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.513913", + "updated_at": "2026-06-19T00:43:44.513913" +} diff --git a/site/public/v1/smartphones/a9-premium-edition-dual-sim-td-lte-cn-128gb-pcam10/score/index.json b/site/public/v1/smartphones/a9-premium-edition-dual-sim-td-lte-cn-128gb-pcam10/score/index.json new file mode 100644 index 00000000000..ff649fc48a7 --- /dev/null +++ b/site/public/v1/smartphones/a9-premium-edition-dual-sim-td-lte-cn-128gb-pcam10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 1.5, + "camera": 6.3, + "battery": 15.3, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/a9-premium-edition-dual-sim-td-lte-cn-128gb-pcat10/index.json b/site/public/v1/smartphones/a9-premium-edition-dual-sim-td-lte-cn-128gb-pcat10/index.json new file mode 100644 index 00000000000..2577a3bbd9d --- /dev/null +++ b/site/public/v1/smartphones/a9-premium-edition-dual-sim-td-lte-cn-128gb-pcat10/index.json @@ -0,0 +1,76 @@ +{ + "id": 2851, + "slug": "a9-premium-edition-dual-sim-td-lte-cn-128gb-pcat10", + "name": "A9 Premium Edition Dual SIM TD-LTE CN 128GB PCAT10", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color TN-TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4020, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 1.5, + "camera": 6.3, + "battery": 15.3, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.513913", + "updated_at": "2026-06-19T00:43:44.513913" +} diff --git a/site/public/v1/smartphones/a9-premium-edition-dual-sim-td-lte-cn-128gb-pcat10/score/index.json b/site/public/v1/smartphones/a9-premium-edition-dual-sim-td-lte-cn-128gb-pcat10/score/index.json new file mode 100644 index 00000000000..ff649fc48a7 --- /dev/null +++ b/site/public/v1/smartphones/a9-premium-edition-dual-sim-td-lte-cn-128gb-pcat10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 1.5, + "camera": 6.3, + "battery": 15.3, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/a9-standard-edition-dual-sim-td-lte-cn-128gb-pcam10/index.json b/site/public/v1/smartphones/a9-standard-edition-dual-sim-td-lte-cn-128gb-pcam10/index.json new file mode 100644 index 00000000000..6f288f68420 --- /dev/null +++ b/site/public/v1/smartphones/a9-standard-edition-dual-sim-td-lte-cn-128gb-pcam10/index.json @@ -0,0 +1,76 @@ +{ + "id": 2853, + "slug": "a9-standard-edition-dual-sim-td-lte-cn-128gb-pcam10", + "name": "A9 Standard Edition Dual SIM TD-LTE CN 128GB PCAM10", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-05-11", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color TN-TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4020, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 6.3, + "battery": 15.3, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.513913", + "updated_at": "2026-06-19T00:43:44.513913" +} diff --git a/site/public/v1/smartphones/a9-standard-edition-dual-sim-td-lte-cn-128gb-pcam10/score/index.json b/site/public/v1/smartphones/a9-standard-edition-dual-sim-td-lte-cn-128gb-pcam10/score/index.json new file mode 100644 index 00000000000..718ae9f45d0 --- /dev/null +++ b/site/public/v1/smartphones/a9-standard-edition-dual-sim-td-lte-cn-128gb-pcam10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 6.3, + "battery": 15.3, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/a91-2019-dual-sim-td-lte-cn-128gb-pcpm00/index.json b/site/public/v1/smartphones/a91-2019-dual-sim-td-lte-cn-128gb-pcpm00/index.json new file mode 100644 index 00000000000..9d52daf38c7 --- /dev/null +++ b/site/public/v1/smartphones/a91-2019-dual-sim-td-lte-cn-128gb-pcpm00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2855, + "slug": "a91-2019-dual-sim-td-lte-cn-128gb-pcpm00", + "name": "A91 2019 Dual SIM TD-LTE CN 128GB PCPM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-12-22", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4025, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 3.0, + "camera": 16.5, + "battery": 18.3, + "display": 46.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.513913", + "updated_at": "2026-06-19T00:43:44.513913" +} diff --git a/site/public/v1/smartphones/a91-2019-dual-sim-td-lte-cn-128gb-pcpm00/score/index.json b/site/public/v1/smartphones/a91-2019-dual-sim-td-lte-cn-128gb-pcpm00/score/index.json new file mode 100644 index 00000000000..0b41740f167 --- /dev/null +++ b/site/public/v1/smartphones/a91-2019-dual-sim-td-lte-cn-128gb-pcpm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 3.0, + "camera": 16.5, + "battery": 18.3, + "display": 46.1, + "value": null +} diff --git a/site/public/v1/smartphones/a92-2020-dual-sim-td-lte-apac/index.json b/site/public/v1/smartphones/a92-2020-dual-sim-td-lte-apac/index.json new file mode 100644 index 00000000000..607d46946d7 --- /dev/null +++ b/site/public/v1/smartphones/a92-2020-dual-sim-td-lte-apac/index.json @@ -0,0 +1,76 @@ +{ + "id": 3083, + "slug": "a92-2020-dual-sim-td-lte-apac", + "name": "A92 2020 Dual SIM TD-LTE APAC", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-05-09", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 45.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.546597", + "updated_at": "2026-06-19T00:43:44.546597" +} diff --git a/site/public/v1/smartphones/a92-2020-dual-sim-td-lte-apac/score/index.json b/site/public/v1/smartphones/a92-2020-dual-sim-td-lte-apac/score/index.json new file mode 100644 index 00000000000..e8c39535389 --- /dev/null +++ b/site/public/v1/smartphones/a92-2020-dual-sim-td-lte-apac/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 45.5, + "value": null +} diff --git a/site/public/v1/smartphones/a92s-5g-2020-premum-edition-dual-sim-td-lte-cn-128gb-pdkm00/index.json b/site/public/v1/smartphones/a92s-5g-2020-premum-edition-dual-sim-td-lte-cn-128gb-pdkm00/index.json new file mode 100644 index 00000000000..c89813624da --- /dev/null +++ b/site/public/v1/smartphones/a92s-5g-2020-premum-edition-dual-sim-td-lte-cn-128gb-pdkm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3084, + "slug": "a92s-5g-2020-premum-edition-dual-sim-td-lte-cn-128gb-pdkm00", + "name": "A92s 5G 2020 Premum Edition Dual SIM TD-LTE CN 128GB PDKM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2020-04-29", + "msrp_usd": 2499, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 3.0, + "camera": 16.5, + "battery": 15.6, + "display": 52.6, + "value": 10.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.546597", + "updated_at": "2026-06-19T00:43:44.546597" +} diff --git a/site/public/v1/smartphones/a92s-5g-2020-premum-edition-dual-sim-td-lte-cn-128gb-pdkm00/score/index.json b/site/public/v1/smartphones/a92s-5g-2020-premum-edition-dual-sim-td-lte-cn-128gb-pdkm00/score/index.json new file mode 100644 index 00000000000..df2f1217ae8 --- /dev/null +++ b/site/public/v1/smartphones/a92s-5g-2020-premum-edition-dual-sim-td-lte-cn-128gb-pdkm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 3.0, + "camera": 16.5, + "battery": 15.6, + "display": 52.6, + "value": 10.9 +} diff --git a/site/public/v1/smartphones/a92s-5g-2020-premum-edition-dual-sim-td-lte-cn-256gb-pdkm00/index.json b/site/public/v1/smartphones/a92s-5g-2020-premum-edition-dual-sim-td-lte-cn-256gb-pdkm00/index.json new file mode 100644 index 00000000000..8ef50bff24c --- /dev/null +++ b/site/public/v1/smartphones/a92s-5g-2020-premum-edition-dual-sim-td-lte-cn-256gb-pdkm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3085, + "slug": "a92s-5g-2020-premum-edition-dual-sim-td-lte-cn-256gb-pdkm00", + "name": "A92s 5G 2020 Premum Edition Dual SIM TD-LTE CN 256GB PDKM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2020-04-29", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 3.0, + "camera": 16.5, + "battery": 15.6, + "display": 52.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.546597", + "updated_at": "2026-06-19T00:43:44.546597" +} diff --git a/site/public/v1/smartphones/a92s-5g-2020-premum-edition-dual-sim-td-lte-cn-256gb-pdkm00/score/index.json b/site/public/v1/smartphones/a92s-5g-2020-premum-edition-dual-sim-td-lte-cn-256gb-pdkm00/score/index.json new file mode 100644 index 00000000000..b33a839c68c --- /dev/null +++ b/site/public/v1/smartphones/a92s-5g-2020-premum-edition-dual-sim-td-lte-cn-256gb-pdkm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 3.0, + "camera": 16.5, + "battery": 15.6, + "display": 52.6, + "value": null +} diff --git a/site/public/v1/smartphones/a92s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdkm00/index.json b/site/public/v1/smartphones/a92s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdkm00/index.json new file mode 100644 index 00000000000..11554251fb3 --- /dev/null +++ b/site/public/v1/smartphones/a92s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdkm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3086, + "slug": "a92s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdkm00", + "name": "A92s 5G 2020 Standard Edition Dual SIM TD-LTE CN 128GB PDKM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2020-04-29", + "msrp_usd": 2199, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 52.6, + "value": 10.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.546597", + "updated_at": "2026-06-19T00:43:44.546597" +} diff --git a/site/public/v1/smartphones/a92s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdkm00/score/index.json b/site/public/v1/smartphones/a92s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdkm00/score/index.json new file mode 100644 index 00000000000..2053b37d9d0 --- /dev/null +++ b/site/public/v1/smartphones/a92s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdkm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 52.6, + "value": 10.8 +} diff --git a/site/public/v1/smartphones/a92s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdkt00/index.json b/site/public/v1/smartphones/a92s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdkt00/index.json new file mode 100644 index 00000000000..97980bc94ef --- /dev/null +++ b/site/public/v1/smartphones/a92s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdkt00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3087, + "slug": "a92s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdkt00", + "name": "A92s 5G 2020 Standard Edition Dual SIM TD-LTE CN 128GB PDKT00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2020-04-29", + "msrp_usd": 2199, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 52.6, + "value": 10.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.546597", + "updated_at": "2026-06-19T00:43:44.546597" +} diff --git a/site/public/v1/smartphones/a92s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdkt00/score/index.json b/site/public/v1/smartphones/a92s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdkt00/score/index.json new file mode 100644 index 00000000000..2053b37d9d0 --- /dev/null +++ b/site/public/v1/smartphones/a92s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdkt00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 52.6, + "value": 10.8 +} diff --git a/site/public/v1/smartphones/a93-2020-dual-sim-td-lte-v2-my-vn-128gb-cph2125-reno4-f/index.json b/site/public/v1/smartphones/a93-2020-dual-sim-td-lte-v2-my-vn-128gb-cph2125-reno4-f/index.json new file mode 100644 index 00000000000..d021bff00a7 --- /dev/null +++ b/site/public/v1/smartphones/a93-2020-dual-sim-td-lte-v2-my-vn-128gb-cph2125-reno4-f/index.json @@ -0,0 +1,77 @@ +{ + "id": 3089, + "slug": "a93-2020-dual-sim-td-lte-v2-my-vn-128gb-cph2125-reno4-f", + "name": "A93 2020 Dual SIM TD-LTE V2 MY VN 128GB CPH2125 / Reno4 F", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 65, + "slug": "helio-p95", + "name": "Helio P95", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GM9446", + "url": "/v1/socs/helio-p95" + }, + "release_date": "2020-10-06", + "msrp_usd": 1299, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": 3.0, + "camera": 16.5, + "battery": 15.6, + "display": 28.4, + "value": 19.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.548104", + "updated_at": "2026-06-19T00:43:44.548104" +} diff --git a/site/public/v1/smartphones/a93-2020-dual-sim-td-lte-v2-my-vn-128gb-cph2125-reno4-f/score/index.json b/site/public/v1/smartphones/a93-2020-dual-sim-td-lte-v2-my-vn-128gb-cph2125-reno4-f/score/index.json new file mode 100644 index 00000000000..53e576b8ef7 --- /dev/null +++ b/site/public/v1/smartphones/a93-2020-dual-sim-td-lte-v2-my-vn-128gb-cph2125-reno4-f/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": 3.0, + "camera": 16.5, + "battery": 15.6, + "display": 28.4, + "value": 19.6 +} diff --git a/site/public/v1/smartphones/a93-2021-5g-dual-sim-td-lte-cn-128gb-pehm00/index.json b/site/public/v1/smartphones/a93-2021-5g-dual-sim-td-lte-cn-128gb-pehm00/index.json new file mode 100644 index 00000000000..4f201efe394 --- /dev/null +++ b/site/public/v1/smartphones/a93-2021-5g-dual-sim-td-lte-cn-128gb-pehm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3303, + "slug": "a93-2021-5g-dual-sim-td-lte-cn-128gb-pehm00", + "name": "A93 2021 5G Dual SIM TD-LTE CN 128GB PEHM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-01-01", + "msrp_usd": 1999, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": 11.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.578637", + "updated_at": "2026-06-19T00:43:44.578637" +} diff --git a/site/public/v1/smartphones/a93-2021-5g-dual-sim-td-lte-cn-128gb-pehm00/score/index.json b/site/public/v1/smartphones/a93-2021-5g-dual-sim-td-lte-cn-128gb-pehm00/score/index.json new file mode 100644 index 00000000000..a5c3f9a6a36 --- /dev/null +++ b/site/public/v1/smartphones/a93-2021-5g-dual-sim-td-lte-cn-128gb-pehm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": 11.3 +} diff --git a/site/public/v1/smartphones/a93-2021-5g-dual-sim-td-lte-cn-128gb-peht00/index.json b/site/public/v1/smartphones/a93-2021-5g-dual-sim-td-lte-cn-128gb-peht00/index.json new file mode 100644 index 00000000000..d89ff1a5326 --- /dev/null +++ b/site/public/v1/smartphones/a93-2021-5g-dual-sim-td-lte-cn-128gb-peht00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3304, + "slug": "a93-2021-5g-dual-sim-td-lte-cn-128gb-peht00", + "name": "A93 2021 5G Dual SIM TD-LTE CN 128GB PEHT00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-01-01", + "msrp_usd": 1999, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": 11.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.578637", + "updated_at": "2026-06-19T00:43:44.578637" +} diff --git a/site/public/v1/smartphones/a93-2021-5g-dual-sim-td-lte-cn-128gb-peht00/score/index.json b/site/public/v1/smartphones/a93-2021-5g-dual-sim-td-lte-cn-128gb-peht00/score/index.json new file mode 100644 index 00000000000..a5c3f9a6a36 --- /dev/null +++ b/site/public/v1/smartphones/a93-2021-5g-dual-sim-td-lte-cn-128gb-peht00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": 11.3 +} diff --git a/site/public/v1/smartphones/a93-2021-5g-dual-sim-td-lte-cn-256gb-pehm00/index.json b/site/public/v1/smartphones/a93-2021-5g-dual-sim-td-lte-cn-256gb-pehm00/index.json new file mode 100644 index 00000000000..7529cf7ab3f --- /dev/null +++ b/site/public/v1/smartphones/a93-2021-5g-dual-sim-td-lte-cn-256gb-pehm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3305, + "slug": "a93-2021-5g-dual-sim-td-lte-cn-256gb-pehm00", + "name": "A93 2021 5G Dual SIM TD-LTE CN 256GB PEHM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-01-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.578637", + "updated_at": "2026-06-19T00:43:44.578637" +} diff --git a/site/public/v1/smartphones/a93-2021-5g-dual-sim-td-lte-cn-256gb-pehm00/score/index.json b/site/public/v1/smartphones/a93-2021-5g-dual-sim-td-lte-cn-256gb-pehm00/score/index.json new file mode 100644 index 00000000000..4fe44915390 --- /dev/null +++ b/site/public/v1/smartphones/a93-2021-5g-dual-sim-td-lte-cn-256gb-pehm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/a93s-5g-2021-dual-sim-td-lte-cn-128gb-pfgm00/index.json b/site/public/v1/smartphones/a93s-5g-2021-dual-sim-td-lte-cn-128gb-pfgm00/index.json new file mode 100644 index 00000000000..d4f2b34654d --- /dev/null +++ b/site/public/v1/smartphones/a93s-5g-2021-dual-sim-td-lte-cn-128gb-pfgm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3307, + "slug": "a93s-5g-2021-dual-sim-td-lte-cn-128gb-pfgm00", + "name": "A93s 5G 2021 Dual SIM TD-LTE CN 128GB PFGM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-07-31", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.578637", + "updated_at": "2026-06-19T00:43:44.578637" +} diff --git a/site/public/v1/smartphones/a93s-5g-2021-dual-sim-td-lte-cn-128gb-pfgm00/score/index.json b/site/public/v1/smartphones/a93s-5g-2021-dual-sim-td-lte-cn-128gb-pfgm00/score/index.json new file mode 100644 index 00000000000..4fe44915390 --- /dev/null +++ b/site/public/v1/smartphones/a93s-5g-2021-dual-sim-td-lte-cn-128gb-pfgm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/a93s-5g-2021-dual-sim-td-lte-cn-256gb-pfgm00/index.json b/site/public/v1/smartphones/a93s-5g-2021-dual-sim-td-lte-cn-256gb-pfgm00/index.json new file mode 100644 index 00000000000..0eca97aa652 --- /dev/null +++ b/site/public/v1/smartphones/a93s-5g-2021-dual-sim-td-lte-cn-256gb-pfgm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3308, + "slug": "a93s-5g-2021-dual-sim-td-lte-cn-256gb-pfgm00", + "name": "A93s 5G 2021 Dual SIM TD-LTE CN 256GB PFGM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-08-01", + "msrp_usd": 1999, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": 11.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.579637", + "updated_at": "2026-06-19T00:43:44.579637" +} diff --git a/site/public/v1/smartphones/a93s-5g-2021-dual-sim-td-lte-cn-256gb-pfgm00/score/index.json b/site/public/v1/smartphones/a93s-5g-2021-dual-sim-td-lte-cn-256gb-pfgm00/score/index.json new file mode 100644 index 00000000000..a5c3f9a6a36 --- /dev/null +++ b/site/public/v1/smartphones/a93s-5g-2021-dual-sim-td-lte-cn-256gb-pfgm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": 11.3 +} diff --git a/site/public/v1/smartphones/a94-2021-dual-sim-td-lte-v2-th-ae-128gb-cph2203/index.json b/site/public/v1/smartphones/a94-2021-dual-sim-td-lte-v2-th-ae-128gb-cph2203/index.json new file mode 100644 index 00000000000..aeffa21b963 --- /dev/null +++ b/site/public/v1/smartphones/a94-2021-dual-sim-td-lte-v2-th-ae-128gb-cph2203/index.json @@ -0,0 +1,77 @@ +{ + "id": 3310, + "slug": "a94-2021-dual-sim-td-lte-v2-th-ae-128gb-cph2203", + "name": "A94 2021 Dual SIM TD-LTE V2 TH AE 128GB CPH2203", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 65, + "slug": "helio-p95", + "name": "Helio P95", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GM9446", + "url": "/v1/socs/helio-p95" + }, + "release_date": "2021-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4310, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 3.0, + "camera": 16.5, + "battery": 22.5, + "display": 28.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.579637", + "updated_at": "2026-06-19T00:43:44.579637" +} diff --git a/site/public/v1/smartphones/a94-2021-dual-sim-td-lte-v2-th-ae-128gb-cph2203/score/index.json b/site/public/v1/smartphones/a94-2021-dual-sim-td-lte-v2-th-ae-128gb-cph2203/score/index.json new file mode 100644 index 00000000000..49b86e4f49f --- /dev/null +++ b/site/public/v1/smartphones/a94-2021-dual-sim-td-lte-v2-th-ae-128gb-cph2203/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 3.0, + "camera": 16.5, + "battery": 22.5, + "display": 28.4, + "value": null +} diff --git a/site/public/v1/smartphones/a94-2021-dual-sim-td-lte-v3-ph-sg-eg-128gb-cph2203/index.json b/site/public/v1/smartphones/a94-2021-dual-sim-td-lte-v3-ph-sg-eg-128gb-cph2203/index.json new file mode 100644 index 00000000000..468fa0476d6 --- /dev/null +++ b/site/public/v1/smartphones/a94-2021-dual-sim-td-lte-v3-ph-sg-eg-128gb-cph2203/index.json @@ -0,0 +1,77 @@ +{ + "id": 3311, + "slug": "a94-2021-dual-sim-td-lte-v3-ph-sg-eg-128gb-cph2203", + "name": "A94 2021 Dual SIM TD-LTE V3 PH SG EG 128GB CPH2203", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 65, + "slug": "helio-p95", + "name": "Helio P95", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GM9446", + "url": "/v1/socs/helio-p95" + }, + "release_date": "2021-03-01", + "msrp_usd": 399, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4310, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 3.0, + "camera": 16.5, + "battery": 22.5, + "display": 28.4, + "value": 55.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.579637", + "updated_at": "2026-06-19T00:43:44.579637" +} diff --git a/site/public/v1/smartphones/a94-2021-dual-sim-td-lte-v3-ph-sg-eg-128gb-cph2203/score/index.json b/site/public/v1/smartphones/a94-2021-dual-sim-td-lte-v3-ph-sg-eg-128gb-cph2203/score/index.json new file mode 100644 index 00000000000..58d59a55f03 --- /dev/null +++ b/site/public/v1/smartphones/a94-2021-dual-sim-td-lte-v3-ph-sg-eg-128gb-cph2203/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 3.0, + "camera": 16.5, + "battery": 22.5, + "display": 28.4, + "value": 55.0 +} diff --git a/site/public/v1/smartphones/a95-5g-2021-dual-sim-td-lte-cn-128gb-pelm00/index.json b/site/public/v1/smartphones/a95-5g-2021-dual-sim-td-lte-cn-128gb-pelm00/index.json new file mode 100644 index 00000000000..d344decc3ef --- /dev/null +++ b/site/public/v1/smartphones/a95-5g-2021-dual-sim-td-lte-cn-128gb-pelm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3313, + "slug": "a95-5g-2021-dual-sim-td-lte-cn-128gb-pelm00", + "name": "A95 5G 2021 Dual SIM TD-LTE CN 128GB PELM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2021-05-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 4310, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 3.0, + "camera": 16.5, + "battery": 22.5, + "display": 28.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.579637", + "updated_at": "2026-06-19T00:43:44.579637" +} diff --git a/site/public/v1/smartphones/a95-5g-2021-dual-sim-td-lte-cn-128gb-pelm00/score/index.json b/site/public/v1/smartphones/a95-5g-2021-dual-sim-td-lte-cn-128gb-pelm00/score/index.json new file mode 100644 index 00000000000..49b86e4f49f --- /dev/null +++ b/site/public/v1/smartphones/a95-5g-2021-dual-sim-td-lte-cn-128gb-pelm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 3.0, + "camera": 16.5, + "battery": 22.5, + "display": 28.4, + "value": null +} diff --git a/site/public/v1/smartphones/a95-5g-2021-dual-sim-td-lte-cn-256gb-pelm00/index.json b/site/public/v1/smartphones/a95-5g-2021-dual-sim-td-lte-cn-256gb-pelm00/index.json new file mode 100644 index 00000000000..12659d1d818 --- /dev/null +++ b/site/public/v1/smartphones/a95-5g-2021-dual-sim-td-lte-cn-256gb-pelm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3314, + "slug": "a95-5g-2021-dual-sim-td-lte-cn-256gb-pelm00", + "name": "A95 5G 2021 Dual SIM TD-LTE CN 256GB PELM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2021-05-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 4310, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 3.0, + "camera": 16.5, + "battery": 22.5, + "display": 28.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.579637", + "updated_at": "2026-06-19T00:43:44.579637" +} diff --git a/site/public/v1/smartphones/a95-5g-2021-dual-sim-td-lte-cn-256gb-pelm00/score/index.json b/site/public/v1/smartphones/a95-5g-2021-dual-sim-td-lte-cn-256gb-pelm00/score/index.json new file mode 100644 index 00000000000..49b86e4f49f --- /dev/null +++ b/site/public/v1/smartphones/a95-5g-2021-dual-sim-td-lte-cn-256gb-pelm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 3.0, + "camera": 16.5, + "battery": 22.5, + "display": 28.4, + "value": null +} diff --git a/site/public/v1/smartphones/a9x-dual-sim-td-lte-cn-128gb-pcem00/index.json b/site/public/v1/smartphones/a9x-dual-sim-td-lte-cn-128gb-pcem00/index.json new file mode 100644 index 00000000000..96110605750 --- /dev/null +++ b/site/public/v1/smartphones/a9x-dual-sim-td-lte-cn-128gb-pcem00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2857, + "slug": "a9x-dual-sim-td-lte-cn-128gb-pcem00", + "name": "A9x Dual SIM TD-LTE CN 128GB PCEM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-05-21", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color TN-TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4020, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 16.5, + "battery": 15.3, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.514917", + "updated_at": "2026-06-19T00:43:44.514917" +} diff --git a/site/public/v1/smartphones/a9x-dual-sim-td-lte-cn-128gb-pcem00/score/index.json b/site/public/v1/smartphones/a9x-dual-sim-td-lte-cn-128gb-pcem00/score/index.json new file mode 100644 index 00000000000..d3f14f46035 --- /dev/null +++ b/site/public/v1/smartphones/a9x-dual-sim-td-lte-cn-128gb-pcem00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 16.5, + "battery": 15.3, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/a9x-dual-sim-td-lte-cn-128gb-pcet00/index.json b/site/public/v1/smartphones/a9x-dual-sim-td-lte-cn-128gb-pcet00/index.json new file mode 100644 index 00000000000..b5fd5adafe0 --- /dev/null +++ b/site/public/v1/smartphones/a9x-dual-sim-td-lte-cn-128gb-pcet00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2858, + "slug": "a9x-dual-sim-td-lte-cn-128gb-pcet00", + "name": "A9x Dual SIM TD-LTE CN 128GB PCET00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-05-22", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color TN-TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4020, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 16.5, + "battery": 15.3, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.514917", + "updated_at": "2026-06-19T00:43:44.514917" +} diff --git a/site/public/v1/smartphones/a9x-dual-sim-td-lte-cn-128gb-pcet00/score/index.json b/site/public/v1/smartphones/a9x-dual-sim-td-lte-cn-128gb-pcet00/score/index.json new file mode 100644 index 00000000000..d3f14f46035 --- /dev/null +++ b/site/public/v1/smartphones/a9x-dual-sim-td-lte-cn-128gb-pcet00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 16.5, + "battery": 15.3, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/ace2-2020-eva-limited-edition-dual-sim-td-lte-cn-256gb-pdhm00/index.json b/site/public/v1/smartphones/ace2-2020-eva-limited-edition-dual-sim-td-lte-cn-256gb-pdhm00/index.json new file mode 100644 index 00000000000..863e03b6f45 --- /dev/null +++ b/site/public/v1/smartphones/ace2-2020-eva-limited-edition-dual-sim-td-lte-cn-256gb-pdhm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3091, + "slug": "ace2-2020-eva-limited-edition-dual-sim-td-lte-cn-256gb-pdhm00", + "name": "Ace2 2020 EVA Limited Edition Dual SIM TD-LTE CN 256GB PDHM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-06-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 16.5, + "battery": 24.5, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.548104", + "updated_at": "2026-06-19T00:43:44.548104" +} diff --git a/site/public/v1/smartphones/ace2-2020-eva-limited-edition-dual-sim-td-lte-cn-256gb-pdhm00/score/index.json b/site/public/v1/smartphones/ace2-2020-eva-limited-edition-dual-sim-td-lte-cn-256gb-pdhm00/score/index.json new file mode 100644 index 00000000000..fdfb86c351a --- /dev/null +++ b/site/public/v1/smartphones/ace2-2020-eva-limited-edition-dual-sim-td-lte-cn-256gb-pdhm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 16.5, + "battery": 24.5, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/ace2-2020-premium-edition-dual-sim-td-lte-cn-256gb-pdhm00/index.json b/site/public/v1/smartphones/ace2-2020-premium-edition-dual-sim-td-lte-cn-256gb-pdhm00/index.json new file mode 100644 index 00000000000..9efc65727e4 --- /dev/null +++ b/site/public/v1/smartphones/ace2-2020-premium-edition-dual-sim-td-lte-cn-256gb-pdhm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3093, + "slug": "ace2-2020-premium-edition-dual-sim-td-lte-cn-256gb-pdhm00", + "name": "Ace2 2020 Premium Edition Dual SIM TD-LTE CN 256GB PDHM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-21", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 6.0, + "camera": 16.5, + "battery": 24.5, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.549116", + "updated_at": "2026-06-19T00:43:44.549116" +} diff --git a/site/public/v1/smartphones/ace2-2020-premium-edition-dual-sim-td-lte-cn-256gb-pdhm00/score/index.json b/site/public/v1/smartphones/ace2-2020-premium-edition-dual-sim-td-lte-cn-256gb-pdhm00/score/index.json new file mode 100644 index 00000000000..c0341a48506 --- /dev/null +++ b/site/public/v1/smartphones/ace2-2020-premium-edition-dual-sim-td-lte-cn-256gb-pdhm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 6.0, + "camera": 16.5, + "battery": 24.5, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/ace2-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdhm00/index.json b/site/public/v1/smartphones/ace2-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdhm00/index.json new file mode 100644 index 00000000000..fba0ef62c4f --- /dev/null +++ b/site/public/v1/smartphones/ace2-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdhm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3095, + "slug": "ace2-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdhm00", + "name": "Ace2 2020 Standard Edition Dual SIM TD-LTE CN 128GB PDHM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-21", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 16.5, + "battery": 24.5, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.549116", + "updated_at": "2026-06-19T00:43:44.549116" +} diff --git a/site/public/v1/smartphones/ace2-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdhm00/score/index.json b/site/public/v1/smartphones/ace2-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdhm00/score/index.json new file mode 100644 index 00000000000..fdfb86c351a --- /dev/null +++ b/site/public/v1/smartphones/ace2-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdhm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 16.5, + "battery": 24.5, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/ace2-2020-standard-edition-dual-sim-td-lte-cn-256gb-pdhm00/index.json b/site/public/v1/smartphones/ace2-2020-standard-edition-dual-sim-td-lte-cn-256gb-pdhm00/index.json new file mode 100644 index 00000000000..d0f355e4378 --- /dev/null +++ b/site/public/v1/smartphones/ace2-2020-standard-edition-dual-sim-td-lte-cn-256gb-pdhm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3096, + "slug": "ace2-2020-standard-edition-dual-sim-td-lte-cn-256gb-pdhm00", + "name": "Ace2 2020 Standard Edition Dual SIM TD-LTE CN 256GB PDHM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-21", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 16.5, + "battery": 24.5, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.549116", + "updated_at": "2026-06-19T00:43:44.549116" +} diff --git a/site/public/v1/smartphones/ace2-2020-standard-edition-dual-sim-td-lte-cn-256gb-pdhm00/score/index.json b/site/public/v1/smartphones/ace2-2020-standard-edition-dual-sim-td-lte-cn-256gb-pdhm00/score/index.json new file mode 100644 index 00000000000..fdfb86c351a --- /dev/null +++ b/site/public/v1/smartphones/ace2-2020-standard-edition-dual-sim-td-lte-cn-256gb-pdhm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 16.5, + "battery": 24.5, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/android-one-s5-td-lte-jp-s5-sh/index.json b/site/public/v1/smartphones/android-one-s5-td-lte-jp-s5-sh/index.json new file mode 100644 index 00000000000..df84aa89f06 --- /dev/null +++ b/site/public/v1/smartphones/android-one-s5-td-lte-jp-s5-sh/index.json @@ -0,0 +1,76 @@ +{ + "id": 4712, + "slug": "android-one-s5-td-lte-jp-s5-sh", + "name": "Android One S5 TD-LTE JP S5-SH", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-12-02", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color ASV TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 2700, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 149.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.766209", + "updated_at": "2026-06-19T00:43:44.766209" +} diff --git a/site/public/v1/smartphones/android-one-s5-td-lte-jp-s5-sh/score/index.json b/site/public/v1/smartphones/android-one-s5-td-lte-jp-s5-sh/score/index.json new file mode 100644 index 00000000000..5a1e3f6b50c --- /dev/null +++ b/site/public/v1/smartphones/android-one-s5-td-lte-jp-s5-sh/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/android-one-s6-td-lte-jp-s6-kc/index.json b/site/public/v1/smartphones/android-one-s6-td-lte-jp-s6-kc/index.json new file mode 100644 index 00000000000..702e97aa89d --- /dev/null +++ b/site/public/v1/smartphones/android-one-s6-td-lte-jp-s6-kc/index.json @@ -0,0 +1,76 @@ +{ + "id": 1407, + "slug": "android-one-s6-td-lte-jp-s6-kc", + "name": "Android One S6 TD-LTE JP S6-KC", + "brand": { + "id": 71, + "slug": "kyocera", + "name": "Kyocera", + "country": "JP", + "url": "/v1/brands/kyocera" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2019-12-19", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 16.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3050, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 151.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 6.4, + "battery": 0.8, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.329606", + "updated_at": "2026-06-19T00:43:44.329606" +} diff --git a/site/public/v1/smartphones/android-one-s6-td-lte-jp-s6-kc/score/index.json b/site/public/v1/smartphones/android-one-s6-td-lte-jp-s6-kc/score/index.json new file mode 100644 index 00000000000..6018772318f --- /dev/null +++ b/site/public/v1/smartphones/android-one-s6-td-lte-jp-s6-kc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 6.4, + "battery": 0.8, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/android-one-s7-td-lte-jp-s7-sh/index.json b/site/public/v1/smartphones/android-one-s7-td-lte-jp-s7-sh/index.json new file mode 100644 index 00000000000..32d094d5ce2 --- /dev/null +++ b/site/public/v1/smartphones/android-one-s7-td-lte-jp-s7-sh/index.json @@ -0,0 +1,76 @@ +{ + "id": 4726, + "slug": "android-one-s7-td-lte-jp-s7-sh", + "name": "Android One S7 TD-LTE JP S7-SH", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2019-12-19", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.49, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 459 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.0, + "battery": 15.0, + "display": 50.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.803714", + "updated_at": "2026-06-19T00:43:44.803714" +} diff --git a/site/public/v1/smartphones/android-one-s7-td-lte-jp-s7-sh/score/index.json b/site/public/v1/smartphones/android-one-s7-td-lte-jp-s7-sh/score/index.json new file mode 100644 index 00000000000..c25f7603a99 --- /dev/null +++ b/site/public/v1/smartphones/android-one-s7-td-lte-jp-s7-sh/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.0, + "battery": 15.0, + "display": 50.9, + "value": null +} diff --git a/site/public/v1/smartphones/android-one-s8-td-lte-jp-s8-kc/index.json b/site/public/v1/smartphones/android-one-s8-td-lte-jp-s8-kc/index.json new file mode 100644 index 00000000000..20492f54664 --- /dev/null +++ b/site/public/v1/smartphones/android-one-s8-td-lte-jp-s8-kc/index.json @@ -0,0 +1,76 @@ +{ + "id": 1411, + "slug": "android-one-s8-td-lte-jp-s8-kc", + "name": "Android One S8 TD-LTE JP S8-KC", + "brand": { + "id": 71, + "slug": "kyocera", + "name": "Kyocera", + "country": "JP", + "url": "/v1/brands/kyocera" + }, + "soc": { + "id": 52, + "slug": "helio-p65", + "name": "Helio P65", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-p65" + }, + "release_date": "2020-12-17", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 0.0, + "camera": 6.3, + "battery": 16.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.329606", + "updated_at": "2026-06-19T00:43:44.329606" +} diff --git a/site/public/v1/smartphones/android-one-s8-td-lte-jp-s8-kc/score/index.json b/site/public/v1/smartphones/android-one-s8-td-lte-jp-s8-kc/score/index.json new file mode 100644 index 00000000000..5a4c2a4bd20 --- /dev/null +++ b/site/public/v1/smartphones/android-one-s8-td-lte-jp-s8-kc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 0.0, + "camera": 6.3, + "battery": 16.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/android-one-x4-td-lte-jp-x4-sh/index.json b/site/public/v1/smartphones/android-one-x4-td-lte-jp-x4-sh/index.json new file mode 100644 index 00000000000..923268c7476 --- /dev/null +++ b/site/public/v1/smartphones/android-one-x4-td-lte-jp-x4-sh/index.json @@ -0,0 +1,76 @@ +{ + "id": 4713, + "slug": "android-one-x4-td-lte-jp-x4-sh", + "name": "Android One X4 TD-LTE JP X4-SH", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color ASV TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 157.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 0.0, + "camera": 6.3, + "battery": 1.5, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.766209", + "updated_at": "2026-06-19T00:43:44.766209" +} diff --git a/site/public/v1/smartphones/android-one-x4-td-lte-jp-x4-sh/score/index.json b/site/public/v1/smartphones/android-one-x4-td-lte-jp-x4-sh/score/index.json new file mode 100644 index 00000000000..ef315c0eb15 --- /dev/null +++ b/site/public/v1/smartphones/android-one-x4-td-lte-jp-x4-sh/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 0.0, + "camera": 6.3, + "battery": 1.5, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/android-one-x5-td-lte-jp-x5-lg/index.json b/site/public/v1/smartphones/android-one-x5-td-lte-jp-x5-lg/index.json new file mode 100644 index 00000000000..62aca751654 --- /dev/null +++ b/site/public/v1/smartphones/android-one-x5-td-lte-jp-x5-lg/index.json @@ -0,0 +1,76 @@ +{ + "id": 1527, + "slug": "android-one-x5-td-lte-jp-x5-lg", + "name": "Android One X5 TD-LTE JP X5-LG", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 122, + "slug": "snapdragon-835", + "name": "Snapdragon 835", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 540", + "url": "/v1/socs/snapdragon-835" + }, + "release_date": "2018-12-13", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 158.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.7, + "performance": 23.1, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.342605", + "updated_at": "2026-06-19T00:43:44.342605" +} diff --git a/site/public/v1/smartphones/android-one-x5-td-lte-jp-x5-lg/score/index.json b/site/public/v1/smartphones/android-one-x5-td-lte-jp-x5-lg/score/index.json new file mode 100644 index 00000000000..e97af07ce40 --- /dev/null +++ b/site/public/v1/smartphones/android-one-x5-td-lte-jp-x5-lg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.7, + "performance": 23.1, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null +} diff --git a/site/public/v1/smartphones/anshin-smartphone-5g-td-lte-jp-ky-51b/index.json b/site/public/v1/smartphones/anshin-smartphone-5g-td-lte-jp-ky-51b/index.json new file mode 100644 index 00000000000..d6f8efe6687 --- /dev/null +++ b/site/public/v1/smartphones/anshin-smartphone-5g-td-lte-jp-ky-51b/index.json @@ -0,0 +1,77 @@ +{ + "id": 1417, + "slug": "anshin-smartphone-5g-td-lte-jp-ky-51b", + "name": "Anshin Smartphone 5G TD-LTE JP KY-51B", + "brand": { + "id": 71, + "slug": "kyocera", + "name": "Kyocera", + "country": "JP", + "url": "/v1/brands/kyocera" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2022-02-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 431 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.4, + "performance": 0.0, + "camera": 16.5, + "battery": 22.5, + "display": 30.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.330606", + "updated_at": "2026-06-19T00:43:44.330606" +} diff --git a/site/public/v1/smartphones/anshin-smartphone-5g-td-lte-jp-ky-51b/score/index.json b/site/public/v1/smartphones/anshin-smartphone-5g-td-lte-jp-ky-51b/score/index.json new file mode 100644 index 00000000000..292c8c93058 --- /dev/null +++ b/site/public/v1/smartphones/anshin-smartphone-5g-td-lte-jp-ky-51b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.4, + "performance": 0.0, + "camera": 16.5, + "battery": 22.5, + "display": 30.6, + "value": null +} diff --git a/site/public/v1/smartphones/aquaris-x2-lte-dual-sim-32gb/index.json b/site/public/v1/smartphones/aquaris-x2-lte-dual-sim-32gb/index.json new file mode 100644 index 00000000000..252d35bc7ea --- /dev/null +++ b/site/public/v1/smartphones/aquaris-x2-lte-dual-sim-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 480, + "slug": "aquaris-x2-lte-dual-sim-32gb", + "name": "Aquaris X2 LTE Dual SIM 32GB", + "brand": { + "id": 50, + "slug": "bq", + "name": "BQ", + "country": "ES", + "url": "/v1/brands/bq" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.65, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 427 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 5.0, + "battery": 1.5, + "display": 47.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.172927", + "updated_at": "2026-06-19T00:43:44.172927" +} diff --git a/site/public/v1/smartphones/aquaris-x2-lte-dual-sim-32gb/score/index.json b/site/public/v1/smartphones/aquaris-x2-lte-dual-sim-32gb/score/index.json new file mode 100644 index 00000000000..9405664c3f4 --- /dev/null +++ b/site/public/v1/smartphones/aquaris-x2-lte-dual-sim-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 5.0, + "battery": 1.5, + "display": 47.7, + "value": null +} diff --git a/site/public/v1/smartphones/aquaris-x2-lte-dual-sim-64gb/index.json b/site/public/v1/smartphones/aquaris-x2-lte-dual-sim-64gb/index.json new file mode 100644 index 00000000000..c733d673a65 --- /dev/null +++ b/site/public/v1/smartphones/aquaris-x2-lte-dual-sim-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 481, + "slug": "aquaris-x2-lte-dual-sim-64gb", + "name": "Aquaris X2 LTE Dual SIM 64GB", + "brand": { + "id": 50, + "slug": "bq", + "name": "BQ", + "country": "ES", + "url": "/v1/brands/bq" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.65, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 427 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 5.0, + "battery": 1.5, + "display": 47.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.173932", + "updated_at": "2026-06-19T00:43:44.173932" +} diff --git a/site/public/v1/smartphones/aquaris-x2-lte-dual-sim-64gb/score/index.json b/site/public/v1/smartphones/aquaris-x2-lte-dual-sim-64gb/score/index.json new file mode 100644 index 00000000000..9405664c3f4 --- /dev/null +++ b/site/public/v1/smartphones/aquaris-x2-lte-dual-sim-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 5.0, + "battery": 1.5, + "display": 47.7, + "value": null +} diff --git a/site/public/v1/smartphones/aquaris-x2-pro-lte-dual-sim-128gb/index.json b/site/public/v1/smartphones/aquaris-x2-pro-lte-dual-sim-128gb/index.json new file mode 100644 index 00000000000..70786a7f990 --- /dev/null +++ b/site/public/v1/smartphones/aquaris-x2-pro-lte-dual-sim-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 482, + "slug": "aquaris-x2-pro-lte-dual-sim-128gb", + "name": "Aquaris X2 Pro LTE Dual SIM 128GB", + "brand": { + "id": 50, + "slug": "bq", + "name": "BQ", + "country": "ES", + "url": "/v1/brands/bq" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.65, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 427 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 19.5, + "camera": 5.0, + "battery": 1.5, + "display": 47.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.173932", + "updated_at": "2026-06-19T00:43:44.173932" +} diff --git a/site/public/v1/smartphones/aquaris-x2-pro-lte-dual-sim-128gb/score/index.json b/site/public/v1/smartphones/aquaris-x2-pro-lte-dual-sim-128gb/score/index.json new file mode 100644 index 00000000000..c3addd3fee7 --- /dev/null +++ b/site/public/v1/smartphones/aquaris-x2-pro-lte-dual-sim-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 19.5, + "camera": 5.0, + "battery": 1.5, + "display": 47.7, + "value": null +} diff --git a/site/public/v1/smartphones/aquaris-x2-pro-lte-dual-sim-64gb/index.json b/site/public/v1/smartphones/aquaris-x2-pro-lte-dual-sim-64gb/index.json new file mode 100644 index 00000000000..b296345c745 --- /dev/null +++ b/site/public/v1/smartphones/aquaris-x2-pro-lte-dual-sim-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 483, + "slug": "aquaris-x2-pro-lte-dual-sim-64gb", + "name": "Aquaris X2 Pro LTE Dual SIM 64GB", + "brand": { + "id": 50, + "slug": "bq", + "name": "BQ", + "country": "ES", + "url": "/v1/brands/bq" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.65, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 427 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 18.0, + "camera": 5.0, + "battery": 1.5, + "display": 47.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.173932", + "updated_at": "2026-06-19T00:43:44.173932" +} diff --git a/site/public/v1/smartphones/aquaris-x2-pro-lte-dual-sim-64gb/score/index.json b/site/public/v1/smartphones/aquaris-x2-pro-lte-dual-sim-64gb/score/index.json new file mode 100644 index 00000000000..0703572c124 --- /dev/null +++ b/site/public/v1/smartphones/aquaris-x2-pro-lte-dual-sim-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 18.0, + "camera": 5.0, + "battery": 1.5, + "display": 47.7, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-c10-dual-sim-lte-eu-fs8032/index.json b/site/public/v1/smartphones/aquos-c10-dual-sim-lte-eu-fs8032/index.json new file mode 100644 index 00000000000..7e203ffb297 --- /dev/null +++ b/site/public/v1/smartphones/aquos-c10-dual-sim-lte-eu-fs8032/index.json @@ -0,0 +1,76 @@ +{ + "id": 4714, + "slug": "aquos-c10-dual-sim-lte-eu-fs8032", + "name": "Aquos C10 Dual SIM LTE EU FS8032", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2018-07-23", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2040", + "type": "Color IPS TFT LCD display", + "ppi": 420 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 2700, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.0, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 47.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.766209", + "updated_at": "2026-06-19T00:43:44.766209" +} diff --git a/site/public/v1/smartphones/aquos-c10-dual-sim-lte-eu-fs8032/score/index.json b/site/public/v1/smartphones/aquos-c10-dual-sim-lte-eu-fs8032/score/index.json new file mode 100644 index 00000000000..c9daae6cca4 --- /dev/null +++ b/site/public/v1/smartphones/aquos-c10-dual-sim-lte-eu-fs8032/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.0, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 47.0, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-d10-dual-sim-lte-eu/index.json b/site/public/v1/smartphones/aquos-d10-dual-sim-lte-eu/index.json new file mode 100644 index 00000000000..bd2d78de60b --- /dev/null +++ b/site/public/v1/smartphones/aquos-d10-dual-sim-lte-eu/index.json @@ -0,0 +1,76 @@ +{ + "id": 4715, + "slug": "aquos-d10-dual-sim-lte-eu", + "name": "Aquos D10 Dual SIM LTE EU", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.87, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 2900, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.8, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 46.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.766209", + "updated_at": "2026-06-19T00:43:44.766209" +} diff --git a/site/public/v1/smartphones/aquos-d10-dual-sim-lte-eu/score/index.json b/site/public/v1/smartphones/aquos-d10-dual-sim-lte-eu/score/index.json new file mode 100644 index 00000000000..ffcb5e38431 --- /dev/null +++ b/site/public/v1/smartphones/aquos-d10-dual-sim-lte-eu/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.8, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 46.2, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-phone-td-lte-jp-sh-02l/index.json b/site/public/v1/smartphones/aquos-phone-td-lte-jp-sh-02l/index.json new file mode 100644 index 00000000000..1b0829d59af --- /dev/null +++ b/site/public/v1/smartphones/aquos-phone-td-lte-jp-sh-02l/index.json @@ -0,0 +1,72 @@ +{ + "id": 4727, + "slug": "aquos-phone-td-lte-jp-sh-02l", + "name": "Aquos phone TD-LTE JP SH-02L", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 104, + "slug": "snapdragon-210", + "name": "Snapdragon 210", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-210" + }, + "release_date": "2019-02-08", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 3.4, + "resolution": "540x960", + "type": "Color ASV TFT LCD display", + "ppi": 324 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + } + ], + "battery_mah": 1680, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 120.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 37.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.803714", + "updated_at": "2026-06-19T00:43:44.803714" +} diff --git a/site/public/v1/smartphones/aquos-phone-td-lte-jp-sh-02l/score/index.json b/site/public/v1/smartphones/aquos-phone-td-lte-jp-sh-02l/score/index.json new file mode 100644 index 00000000000..ccf28f9fed3 --- /dev/null +++ b/site/public/v1/smartphones/aquos-phone-td-lte-jp-sh-02l/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 37.4, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-r2-compact-td-lte-jp-803sh/index.json b/site/public/v1/smartphones/aquos-r2-compact-td-lte-jp-803sh/index.json new file mode 100644 index 00000000000..8e428691327 --- /dev/null +++ b/site/public/v1/smartphones/aquos-r2-compact-td-lte-jp-803sh/index.json @@ -0,0 +1,77 @@ +{ + "id": 4728, + "slug": "aquos-r2-compact-td-lte-jp-803sh", + "name": "AQUOS R2 Compact TD-LTE JP 803SH", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2019-01-11", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.2, + "resolution": "1080x2280", + "refresh_hz": 120, + "type": "Color ASV TFT LCD display", + "ppi": 485 + }, + "cameras": [ + { + "type": "main", + "mp": 22.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 2500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 135.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.4, + "performance": 0.0, + "camera": 8.4, + "battery": 0.0, + "display": 61.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.804714", + "updated_at": "2026-06-19T00:43:44.804714" +} diff --git a/site/public/v1/smartphones/aquos-r2-compact-td-lte-jp-803sh/score/index.json b/site/public/v1/smartphones/aquos-r2-compact-td-lte-jp-803sh/score/index.json new file mode 100644 index 00000000000..122bb5d44be --- /dev/null +++ b/site/public/v1/smartphones/aquos-r2-compact-td-lte-jp-803sh/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.4, + "performance": 0.0, + "camera": 8.4, + "battery": 0.0, + "display": 61.0, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-r2-compact-td-lte-jp-sh-m09/index.json b/site/public/v1/smartphones/aquos-r2-compact-td-lte-jp-sh-m09/index.json new file mode 100644 index 00000000000..a79dec1ebf2 --- /dev/null +++ b/site/public/v1/smartphones/aquos-r2-compact-td-lte-jp-sh-m09/index.json @@ -0,0 +1,77 @@ +{ + "id": 4729, + "slug": "aquos-r2-compact-td-lte-jp-sh-m09", + "name": "AQUOS R2 Compact TD-LTE JP SH-M09", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2019-02-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.2, + "resolution": "1080x2280", + "refresh_hz": 120, + "type": "Color ASV TFT LCD display", + "ppi": 485 + }, + "cameras": [ + { + "type": "main", + "mp": 22.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 2500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 135.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.4, + "performance": 0.0, + "camera": 8.4, + "battery": 0.0, + "display": 61.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.804714", + "updated_at": "2026-06-19T00:43:44.804714" +} diff --git a/site/public/v1/smartphones/aquos-r2-compact-td-lte-jp-sh-m09/score/index.json b/site/public/v1/smartphones/aquos-r2-compact-td-lte-jp-sh-m09/score/index.json new file mode 100644 index 00000000000..122bb5d44be --- /dev/null +++ b/site/public/v1/smartphones/aquos-r2-compact-td-lte-jp-sh-m09/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.4, + "performance": 0.0, + "camera": 8.4, + "battery": 0.0, + "display": 61.0, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-r2-td-lte-jp-706sh/index.json b/site/public/v1/smartphones/aquos-r2-td-lte-jp-706sh/index.json new file mode 100644 index 00000000000..532e6322e7c --- /dev/null +++ b/site/public/v1/smartphones/aquos-r2-td-lte-jp-706sh/index.json @@ -0,0 +1,76 @@ +{ + "id": 4716, + "slug": "aquos-r2-td-lte-jp-706sh", + "name": "AQUOS R2 TD-LTE JP 706SH", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-06-16", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1440x3040", + "type": "Color ASV TFT LCD display", + "ppi": 561 + }, + "cameras": [ + { + "type": "main", + "mp": 22.5 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3130, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": 0.0, + "camera": 8.4, + "battery": 1.9, + "display": 61.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.766209", + "updated_at": "2026-06-19T00:43:44.766209" +} diff --git a/site/public/v1/smartphones/aquos-r2-td-lte-jp-706sh/score/index.json b/site/public/v1/smartphones/aquos-r2-td-lte-jp-706sh/score/index.json new file mode 100644 index 00000000000..33c14dbd889 --- /dev/null +++ b/site/public/v1/smartphones/aquos-r2-td-lte-jp-706sh/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": 0.0, + "camera": 8.4, + "battery": 1.9, + "display": 61.1, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-r2-td-lte-jp-sh-03k/index.json b/site/public/v1/smartphones/aquos-r2-td-lte-jp-sh-03k/index.json new file mode 100644 index 00000000000..c201850b204 --- /dev/null +++ b/site/public/v1/smartphones/aquos-r2-td-lte-jp-sh-03k/index.json @@ -0,0 +1,76 @@ +{ + "id": 4717, + "slug": "aquos-r2-td-lte-jp-sh-03k", + "name": "Aquos R2 TD-LTE JP SH-03K", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-06-08", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1440x3040", + "type": "Color ASV TFT LCD display", + "ppi": 561 + }, + "cameras": [ + { + "type": "main", + "mp": 22.5 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3130, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": 0.0, + "camera": 8.4, + "battery": 1.9, + "display": 61.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.767207", + "updated_at": "2026-06-19T00:43:44.767207" +} diff --git a/site/public/v1/smartphones/aquos-r2-td-lte-jp-sh-03k/score/index.json b/site/public/v1/smartphones/aquos-r2-td-lte-jp-sh-03k/score/index.json new file mode 100644 index 00000000000..33c14dbd889 --- /dev/null +++ b/site/public/v1/smartphones/aquos-r2-td-lte-jp-sh-03k/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": 0.0, + "camera": 8.4, + "battery": 1.9, + "display": 61.1, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-r2-wimax-2-shv42/index.json b/site/public/v1/smartphones/aquos-r2-wimax-2-shv42/index.json new file mode 100644 index 00000000000..bd7dad977cd --- /dev/null +++ b/site/public/v1/smartphones/aquos-r2-wimax-2-shv42/index.json @@ -0,0 +1,76 @@ +{ + "id": 4718, + "slug": "aquos-r2-wimax-2-shv42", + "name": "AQUOS R2 WiMAX 2+ SHV42", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-06-08", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1440x3040", + "type": "Color ASV TFT LCD display", + "ppi": 561 + }, + "cameras": [ + { + "type": "main", + "mp": 22.5 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3130, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": 0.0, + "camera": 8.4, + "battery": 1.9, + "display": 61.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.767207", + "updated_at": "2026-06-19T00:43:44.767207" +} diff --git a/site/public/v1/smartphones/aquos-r2-wimax-2-shv42/score/index.json b/site/public/v1/smartphones/aquos-r2-wimax-2-shv42/score/index.json new file mode 100644 index 00000000000..33c14dbd889 --- /dev/null +++ b/site/public/v1/smartphones/aquos-r2-wimax-2-shv42/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": 0.0, + "camera": 8.4, + "battery": 1.9, + "display": 61.1, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-r3-dual-sim-td-lte-tw-sh-r10/index.json b/site/public/v1/smartphones/aquos-r3-dual-sim-td-lte-tw-sh-r10/index.json new file mode 100644 index 00000000000..572457e6621 --- /dev/null +++ b/site/public/v1/smartphones/aquos-r3-dual-sim-td-lte-tw-sh-r10/index.json @@ -0,0 +1,77 @@ +{ + "id": 4730, + "slug": "aquos-r3-dual-sim-td-lte-tw-sh-r10", + "name": "Aquos R3 Dual SIM TD-LTE TW SH-R10", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-08-21", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1440x3120", + "refresh_hz": 120, + "type": "Color ASV TFT LCD display", + "ppi": 554 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 5.1, + "battery": 3.0, + "display": 67.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.804714", + "updated_at": "2026-06-19T00:43:44.804714" +} diff --git a/site/public/v1/smartphones/aquos-r3-dual-sim-td-lte-tw-sh-r10/score/index.json b/site/public/v1/smartphones/aquos-r3-dual-sim-td-lte-tw-sh-r10/score/index.json new file mode 100644 index 00000000000..d52d5a714c1 --- /dev/null +++ b/site/public/v1/smartphones/aquos-r3-dual-sim-td-lte-tw-sh-r10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 5.1, + "battery": 3.0, + "display": 67.9, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-r3-global-dual-sim-lte-sh-r10/index.json b/site/public/v1/smartphones/aquos-r3-global-dual-sim-lte-sh-r10/index.json new file mode 100644 index 00000000000..492eaec404d --- /dev/null +++ b/site/public/v1/smartphones/aquos-r3-global-dual-sim-lte-sh-r10/index.json @@ -0,0 +1,77 @@ +{ + "id": 4731, + "slug": "aquos-r3-global-dual-sim-lte-sh-r10", + "name": "Aquos R3 Global Dual SIM LTE SH-R10", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1440x3120", + "refresh_hz": 120, + "type": "Color ASV TFT LCD display", + "ppi": 554 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 5.1, + "battery": 3.0, + "display": 67.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.804714", + "updated_at": "2026-06-19T00:43:44.804714" +} diff --git a/site/public/v1/smartphones/aquos-r3-global-dual-sim-lte-sh-r10/score/index.json b/site/public/v1/smartphones/aquos-r3-global-dual-sim-lte-sh-r10/score/index.json new file mode 100644 index 00000000000..d52d5a714c1 --- /dev/null +++ b/site/public/v1/smartphones/aquos-r3-global-dual-sim-lte-sh-r10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 5.1, + "battery": 3.0, + "display": 67.9, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-r3-td-lte-jp-808sh/index.json b/site/public/v1/smartphones/aquos-r3-td-lte-jp-808sh/index.json new file mode 100644 index 00000000000..8e2a8c122c3 --- /dev/null +++ b/site/public/v1/smartphones/aquos-r3-td-lte-jp-808sh/index.json @@ -0,0 +1,77 @@ +{ + "id": 4732, + "slug": "aquos-r3-td-lte-jp-808sh", + "name": "Aquos R3 TD-LTE JP 808SH", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1440x3120", + "refresh_hz": 120, + "type": "Color ASV TFT LCD display", + "ppi": 554 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 5.1, + "battery": 3.0, + "display": 67.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.804714", + "updated_at": "2026-06-19T00:43:44.804714" +} diff --git a/site/public/v1/smartphones/aquos-r3-td-lte-jp-808sh/score/index.json b/site/public/v1/smartphones/aquos-r3-td-lte-jp-808sh/score/index.json new file mode 100644 index 00000000000..d52d5a714c1 --- /dev/null +++ b/site/public/v1/smartphones/aquos-r3-td-lte-jp-808sh/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 5.1, + "battery": 3.0, + "display": 67.9, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-r3-td-lte-jp-sh-04l/index.json b/site/public/v1/smartphones/aquos-r3-td-lte-jp-sh-04l/index.json new file mode 100644 index 00000000000..6fdb9041891 --- /dev/null +++ b/site/public/v1/smartphones/aquos-r3-td-lte-jp-sh-04l/index.json @@ -0,0 +1,77 @@ +{ + "id": 4733, + "slug": "aquos-r3-td-lte-jp-sh-04l", + "name": "Aquos R3 TD-LTE JP SH-04L", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1440x3120", + "refresh_hz": 120, + "type": "Color ASV TFT LCD display", + "ppi": 554 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 5.1, + "battery": 3.0, + "display": 67.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.804714", + "updated_at": "2026-06-19T00:43:44.804714" +} diff --git a/site/public/v1/smartphones/aquos-r3-td-lte-jp-sh-04l/score/index.json b/site/public/v1/smartphones/aquos-r3-td-lte-jp-sh-04l/score/index.json new file mode 100644 index 00000000000..d52d5a714c1 --- /dev/null +++ b/site/public/v1/smartphones/aquos-r3-td-lte-jp-sh-04l/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 5.1, + "battery": 3.0, + "display": 67.9, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-r3-wimax-2-shv44/index.json b/site/public/v1/smartphones/aquos-r3-wimax-2-shv44/index.json new file mode 100644 index 00000000000..03a59010cea --- /dev/null +++ b/site/public/v1/smartphones/aquos-r3-wimax-2-shv44/index.json @@ -0,0 +1,77 @@ +{ + "id": 4734, + "slug": "aquos-r3-wimax-2-shv44", + "name": "Aquos R3 WiMAX 2+ SHV44", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-26", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1440x3120", + "refresh_hz": 120, + "type": "Color ASV TFT LCD display", + "ppi": 554 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 5.1, + "battery": 3.0, + "display": 67.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.804714", + "updated_at": "2026-06-19T00:43:44.804714" +} diff --git a/site/public/v1/smartphones/aquos-r3-wimax-2-shv44/score/index.json b/site/public/v1/smartphones/aquos-r3-wimax-2-shv44/score/index.json new file mode 100644 index 00000000000..d52d5a714c1 --- /dev/null +++ b/site/public/v1/smartphones/aquos-r3-wimax-2-shv44/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 5.1, + "battery": 3.0, + "display": 67.9, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-r5g-5g-td-lte-jp-908sh/index.json b/site/public/v1/smartphones/aquos-r5g-5g-td-lte-jp-908sh/index.json new file mode 100644 index 00000000000..9cecfb835b1 --- /dev/null +++ b/site/public/v1/smartphones/aquos-r5g-5g-td-lte-jp-908sh/index.json @@ -0,0 +1,77 @@ +{ + "id": 4746, + "slug": "aquos-r5g-5g-td-lte-jp-908sh", + "name": "Aquos R5G 5G TD-LTE JP 908SH", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-27", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "Color ASV TFT LCD display", + "ppi": 535 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3730, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 6.0, + "camera": 5.1, + "battery": 10.9, + "display": 66.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.806713", + "updated_at": "2026-06-19T00:43:44.806713" +} diff --git a/site/public/v1/smartphones/aquos-r5g-5g-td-lte-jp-908sh/score/index.json b/site/public/v1/smartphones/aquos-r5g-5g-td-lte-jp-908sh/score/index.json new file mode 100644 index 00000000000..73e09a919c1 --- /dev/null +++ b/site/public/v1/smartphones/aquos-r5g-5g-td-lte-jp-908sh/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 6.0, + "camera": 5.1, + "battery": 10.9, + "display": 66.0, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-r5g-5g-td-lte-jp-sh-51a/index.json b/site/public/v1/smartphones/aquos-r5g-5g-td-lte-jp-sh-51a/index.json new file mode 100644 index 00000000000..ee446185aee --- /dev/null +++ b/site/public/v1/smartphones/aquos-r5g-5g-td-lte-jp-sh-51a/index.json @@ -0,0 +1,77 @@ +{ + "id": 4747, + "slug": "aquos-r5g-5g-td-lte-jp-sh-51a", + "name": "Aquos R5G 5G TD-LTE JP SH-51A", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-26", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "Color ASV TFT LCD display", + "ppi": 535 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3730, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 6.0, + "camera": 5.1, + "battery": 10.9, + "display": 66.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.806713", + "updated_at": "2026-06-19T00:43:44.806713" +} diff --git a/site/public/v1/smartphones/aquos-r5g-5g-td-lte-jp-sh-51a/score/index.json b/site/public/v1/smartphones/aquos-r5g-5g-td-lte-jp-sh-51a/score/index.json new file mode 100644 index 00000000000..73e09a919c1 --- /dev/null +++ b/site/public/v1/smartphones/aquos-r5g-5g-td-lte-jp-sh-51a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 6.0, + "camera": 5.1, + "battery": 10.9, + "display": 66.0, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-r5g-5g-td-lte-jp-sh-rm14/index.json b/site/public/v1/smartphones/aquos-r5g-5g-td-lte-jp-sh-rm14/index.json new file mode 100644 index 00000000000..e28ccd9504e --- /dev/null +++ b/site/public/v1/smartphones/aquos-r5g-5g-td-lte-jp-sh-rm14/index.json @@ -0,0 +1,77 @@ +{ + "id": 4748, + "slug": "aquos-r5g-5g-td-lte-jp-sh-rm14", + "name": "Aquos R5G 5G TD-LTE JP SH-RM14", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-06-19", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "Color ASV TFT LCD display", + "ppi": 535 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3730, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 6.0, + "camera": 5.1, + "battery": 10.9, + "display": 66.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.806713", + "updated_at": "2026-06-19T00:43:44.806713" +} diff --git a/site/public/v1/smartphones/aquos-r5g-5g-td-lte-jp-sh-rm14/score/index.json b/site/public/v1/smartphones/aquos-r5g-5g-td-lte-jp-sh-rm14/score/index.json new file mode 100644 index 00000000000..73e09a919c1 --- /dev/null +++ b/site/public/v1/smartphones/aquos-r5g-5g-td-lte-jp-sh-rm14/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 6.0, + "camera": 5.1, + "battery": 10.9, + "display": 66.0, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-r5g-5g-td-lte-jp-shg01/index.json b/site/public/v1/smartphones/aquos-r5g-5g-td-lte-jp-shg01/index.json new file mode 100644 index 00000000000..22b244e407a --- /dev/null +++ b/site/public/v1/smartphones/aquos-r5g-5g-td-lte-jp-shg01/index.json @@ -0,0 +1,77 @@ +{ + "id": 4749, + "slug": "aquos-r5g-5g-td-lte-jp-shg01", + "name": "Aquos R5G 5G TD-LTE JP SHG01", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "Color ASV TFT LCD display", + "ppi": 535 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3730, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 6.0, + "camera": 5.1, + "battery": 10.9, + "display": 66.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.806713", + "updated_at": "2026-06-19T00:43:44.806713" +} diff --git a/site/public/v1/smartphones/aquos-r5g-5g-td-lte-jp-shg01/score/index.json b/site/public/v1/smartphones/aquos-r5g-5g-td-lte-jp-shg01/score/index.json new file mode 100644 index 00000000000..73e09a919c1 --- /dev/null +++ b/site/public/v1/smartphones/aquos-r5g-5g-td-lte-jp-shg01/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 6.0, + "camera": 5.1, + "battery": 10.9, + "display": 66.0, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-r5g-global-td-lte-sh-r50/index.json b/site/public/v1/smartphones/aquos-r5g-global-td-lte-sh-r50/index.json new file mode 100644 index 00000000000..53b10e26f77 --- /dev/null +++ b/site/public/v1/smartphones/aquos-r5g-global-td-lte-sh-r50/index.json @@ -0,0 +1,77 @@ +{ + "id": 4750, + "slug": "aquos-r5g-global-td-lte-sh-r50", + "name": "Aquos R5G Global TD-LTE SH-R50", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-07-06", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "Color ASV TFT LCD display", + "ppi": 535 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3730, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 6.0, + "camera": 5.1, + "battery": 10.9, + "display": 66.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.806713", + "updated_at": "2026-06-19T00:43:44.806713" +} diff --git a/site/public/v1/smartphones/aquos-r5g-global-td-lte-sh-r50/score/index.json b/site/public/v1/smartphones/aquos-r5g-global-td-lte-sh-r50/score/index.json new file mode 100644 index 00000000000..73e09a919c1 --- /dev/null +++ b/site/public/v1/smartphones/aquos-r5g-global-td-lte-sh-r50/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 6.0, + "camera": 5.1, + "battery": 10.9, + "display": 66.0, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-r6-5g-td-lte-jp-a101sh/index.json b/site/public/v1/smartphones/aquos-r6-5g-td-lte-jp-a101sh/index.json new file mode 100644 index 00000000000..9b809bde93d --- /dev/null +++ b/site/public/v1/smartphones/aquos-r6-5g-td-lte-jp-a101sh/index.json @@ -0,0 +1,77 @@ +{ + "id": 4758, + "slug": "aquos-r6-5g-td-lte-jp-a101sh", + "name": "Aquos R6 5G TD-LTE JP A101SH", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-06-24", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1260x2730", + "refresh_hz": 240, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 20.1 + }, + { + "type": "selfie", + "mp": 12.6 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 207.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.3, + "performance": 9.4, + "camera": 7.6, + "battery": 40.0, + "display": 68.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.807713", + "updated_at": "2026-06-19T00:43:44.807713" +} diff --git a/site/public/v1/smartphones/aquos-r6-5g-td-lte-jp-a101sh/score/index.json b/site/public/v1/smartphones/aquos-r6-5g-td-lte-jp-a101sh/score/index.json new file mode 100644 index 00000000000..ad93f2897fd --- /dev/null +++ b/site/public/v1/smartphones/aquos-r6-5g-td-lte-jp-a101sh/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.3, + "performance": 9.4, + "camera": 7.6, + "battery": 40.0, + "display": 68.2, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-r6-5g-td-lte-jp-sh-m22/index.json b/site/public/v1/smartphones/aquos-r6-5g-td-lte-jp-sh-m22/index.json new file mode 100644 index 00000000000..afad2b1cd2d --- /dev/null +++ b/site/public/v1/smartphones/aquos-r6-5g-td-lte-jp-sh-m22/index.json @@ -0,0 +1,77 @@ +{ + "id": 4759, + "slug": "aquos-r6-5g-td-lte-jp-sh-m22", + "name": "Aquos R6 5G TD-LTE JP SH-M22", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1260x2730", + "refresh_hz": 240, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 20.1 + }, + { + "type": "selfie", + "mp": 12.6 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 207.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.3, + "performance": 9.4, + "camera": 7.6, + "battery": 40.0, + "display": 68.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.807713", + "updated_at": "2026-06-19T00:43:44.807713" +} diff --git a/site/public/v1/smartphones/aquos-r6-5g-td-lte-jp-sh-m22/score/index.json b/site/public/v1/smartphones/aquos-r6-5g-td-lte-jp-sh-m22/score/index.json new file mode 100644 index 00000000000..ad93f2897fd --- /dev/null +++ b/site/public/v1/smartphones/aquos-r6-5g-td-lte-jp-sh-m22/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.3, + "performance": 9.4, + "camera": 7.6, + "battery": 40.0, + "display": 68.2, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-r6-5g-uw-td-lte-jp-sh-51b/index.json b/site/public/v1/smartphones/aquos-r6-5g-uw-td-lte-jp-sh-51b/index.json new file mode 100644 index 00000000000..d78773972b8 --- /dev/null +++ b/site/public/v1/smartphones/aquos-r6-5g-uw-td-lte-jp-sh-51b/index.json @@ -0,0 +1,77 @@ +{ + "id": 4760, + "slug": "aquos-r6-5g-uw-td-lte-jp-sh-51b", + "name": "Aquos R6 5G UW TD-LTE JP SH-51B", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-06-24", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1260x2730", + "refresh_hz": 240, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 20.1 + }, + { + "type": "selfie", + "mp": 12.6 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 207.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.3, + "performance": 9.4, + "camera": 7.6, + "battery": 40.0, + "display": 68.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.808713", + "updated_at": "2026-06-19T00:43:44.808713" +} diff --git a/site/public/v1/smartphones/aquos-r6-5g-uw-td-lte-jp-sh-51b/score/index.json b/site/public/v1/smartphones/aquos-r6-5g-uw-td-lte-jp-sh-51b/score/index.json new file mode 100644 index 00000000000..ad93f2897fd --- /dev/null +++ b/site/public/v1/smartphones/aquos-r6-5g-uw-td-lte-jp-sh-51b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.3, + "performance": 9.4, + "camera": 7.6, + "battery": 40.0, + "display": 68.2, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-s3-dual-sim-td-lte-128gb-fs8015/index.json b/site/public/v1/smartphones/aquos-s3-dual-sim-td-lte-128gb-fs8015/index.json new file mode 100644 index 00000000000..1569fed9d08 --- /dev/null +++ b/site/public/v1/smartphones/aquos-s3-dual-sim-td-lte-128gb-fs8015/index.json @@ -0,0 +1,76 @@ +{ + "id": 4719, + "slug": "aquos-s3-dual-sim-td-lte-128gb-fs8015", + "name": "AQUOS S3 Dual SIM TD-LTE 128GB FS8015", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color ASV TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 167.4, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 19.5, + "camera": 5.1, + "battery": 3.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.767207", + "updated_at": "2026-06-19T00:43:44.767207" +} diff --git a/site/public/v1/smartphones/aquos-s3-dual-sim-td-lte-128gb-fs8015/score/index.json b/site/public/v1/smartphones/aquos-s3-dual-sim-td-lte-128gb-fs8015/score/index.json new file mode 100644 index 00000000000..1a5e776d7f3 --- /dev/null +++ b/site/public/v1/smartphones/aquos-s3-dual-sim-td-lte-128gb-fs8015/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 19.5, + "camera": 5.1, + "battery": 3.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-sense-2-td-lte-jp-sh-01l/index.json b/site/public/v1/smartphones/aquos-sense-2-td-lte-jp-sh-01l/index.json new file mode 100644 index 00000000000..e3b12425d29 --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense-2-td-lte-jp-sh-01l/index.json @@ -0,0 +1,76 @@ +{ + "id": 4720, + "slug": "aquos-sense-2-td-lte-jp-sh-01l", + "name": "Aquos Sense 2 TD-LTE JP SH-01L", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-12-14", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color ASV TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 2700, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 155.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.767207", + "updated_at": "2026-06-19T00:43:44.767207" +} diff --git a/site/public/v1/smartphones/aquos-sense-2-td-lte-jp-sh-01l/score/index.json b/site/public/v1/smartphones/aquos-sense-2-td-lte-jp-sh-01l/score/index.json new file mode 100644 index 00000000000..5a1e3f6b50c --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense-2-td-lte-jp-sh-01l/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-sense-2-td-lte-jp-sh-m08/index.json b/site/public/v1/smartphones/aquos-sense-2-td-lte-jp-sh-m08/index.json new file mode 100644 index 00000000000..4ec09d06fd9 --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense-2-td-lte-jp-sh-m08/index.json @@ -0,0 +1,76 @@ +{ + "id": 4721, + "slug": "aquos-sense-2-td-lte-jp-sh-m08", + "name": "Aquos Sense 2 TD-LTE JP SH-M08", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-12-27", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color ASV TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 2700, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 149.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.767207", + "updated_at": "2026-06-19T00:43:44.767207" +} diff --git a/site/public/v1/smartphones/aquos-sense-2-td-lte-jp-sh-m08/score/index.json b/site/public/v1/smartphones/aquos-sense-2-td-lte-jp-sh-m08/score/index.json new file mode 100644 index 00000000000..5a1e3f6b50c --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense-2-td-lte-jp-sh-m08/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-sense-2-wimax-2-td-lte-jp-shv43/index.json b/site/public/v1/smartphones/aquos-sense-2-wimax-2-td-lte-jp-shv43/index.json new file mode 100644 index 00000000000..1ee11e94efe --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense-2-wimax-2-td-lte-jp-shv43/index.json @@ -0,0 +1,76 @@ +{ + "id": 4722, + "slug": "aquos-sense-2-wimax-2-td-lte-jp-shv43", + "name": "Aquos Sense 2 WiMAX 2+ TD-LTE JP SHV43", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-11-09", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color ASV TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 2700, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 155.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.767207", + "updated_at": "2026-06-19T00:43:44.767207" +} diff --git a/site/public/v1/smartphones/aquos-sense-2-wimax-2-td-lte-jp-shv43/score/index.json b/site/public/v1/smartphones/aquos-sense-2-wimax-2-td-lte-jp-shv43/score/index.json new file mode 100644 index 00000000000..5a1e3f6b50c --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense-2-wimax-2-td-lte-jp-shv43/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-sense-3-lite-td-lte-jp-sh-rm12/index.json b/site/public/v1/smartphones/aquos-sense-3-lite-td-lte-jp-sh-rm12/index.json new file mode 100644 index 00000000000..eb6902d86ff --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense-3-lite-td-lte-jp-sh-rm12/index.json @@ -0,0 +1,76 @@ +{ + "id": 4735, + "slug": "aquos-sense-3-lite-td-lte-jp-sh-rm12", + "name": "Aquos Sense 3 Lite TD-LTE JP SH-RM12", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2019-12-09", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color ASV TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 0.0, + "camera": 5.0, + "battery": 15.0, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.804714", + "updated_at": "2026-06-19T00:43:44.804714" +} diff --git a/site/public/v1/smartphones/aquos-sense-3-lite-td-lte-jp-sh-rm12/score/index.json b/site/public/v1/smartphones/aquos-sense-3-lite-td-lte-jp-sh-rm12/score/index.json new file mode 100644 index 00000000000..313e4e8d637 --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense-3-lite-td-lte-jp-sh-rm12/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 0.0, + "camera": 5.0, + "battery": 15.0, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-sense-3-plus-td-lte-jp-901sh/index.json b/site/public/v1/smartphones/aquos-sense-3-plus-td-lte-jp-901sh/index.json new file mode 100644 index 00000000000..b1bda2d1e91 --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense-3-plus-td-lte-jp-901sh/index.json @@ -0,0 +1,76 @@ +{ + "id": 4736, + "slug": "aquos-sense-3-plus-td-lte-jp-901sh", + "name": "Aquos Sense 3 Plus TD-LTE JP 901SH", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2019-12-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2220", + "type": "Color ASV TFT LCD display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 5.4, + "battery": 15.0, + "display": 46.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.805713", + "updated_at": "2026-06-19T00:43:44.805713" +} diff --git a/site/public/v1/smartphones/aquos-sense-3-plus-td-lte-jp-901sh/score/index.json b/site/public/v1/smartphones/aquos-sense-3-plus-td-lte-jp-901sh/score/index.json new file mode 100644 index 00000000000..d08c99f840b --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense-3-plus-td-lte-jp-901sh/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 5.4, + "battery": 15.0, + "display": 46.1, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-sense-3-plus-td-lte-jp-sh-rm11/index.json b/site/public/v1/smartphones/aquos-sense-3-plus-td-lte-jp-sh-rm11/index.json new file mode 100644 index 00000000000..796477d8fc1 --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense-3-plus-td-lte-jp-sh-rm11/index.json @@ -0,0 +1,76 @@ +{ + "id": 4737, + "slug": "aquos-sense-3-plus-td-lte-jp-sh-rm11", + "name": "Aquos Sense 3 Plus TD-LTE JP SH-RM11", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2019-12-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2220", + "type": "Color ASV TFT LCD display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 5.4, + "battery": 15.0, + "display": 46.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.805713", + "updated_at": "2026-06-19T00:43:44.805713" +} diff --git a/site/public/v1/smartphones/aquos-sense-3-plus-td-lte-jp-sh-rm11/score/index.json b/site/public/v1/smartphones/aquos-sense-3-plus-td-lte-jp-sh-rm11/score/index.json new file mode 100644 index 00000000000..d08c99f840b --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense-3-plus-td-lte-jp-sh-rm11/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 5.4, + "battery": 15.0, + "display": 46.1, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-sense-3-plus-wimax-2-shv46/index.json b/site/public/v1/smartphones/aquos-sense-3-plus-wimax-2-shv46/index.json new file mode 100644 index 00000000000..f474defede1 --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense-3-plus-wimax-2-shv46/index.json @@ -0,0 +1,76 @@ +{ + "id": 4738, + "slug": "aquos-sense-3-plus-wimax-2-shv46", + "name": "Aquos Sense 3 Plus WiMAX 2+ SHV46", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2019-12-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2220", + "type": "Color ASV TFT LCD display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 5.4, + "battery": 15.0, + "display": 46.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.805713", + "updated_at": "2026-06-19T00:43:44.805713" +} diff --git a/site/public/v1/smartphones/aquos-sense-3-plus-wimax-2-shv46/score/index.json b/site/public/v1/smartphones/aquos-sense-3-plus-wimax-2-shv46/score/index.json new file mode 100644 index 00000000000..d08c99f840b --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense-3-plus-wimax-2-shv46/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 5.4, + "battery": 15.0, + "display": 46.1, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-sense-3-td-lte-jp-sh-02m/index.json b/site/public/v1/smartphones/aquos-sense-3-td-lte-jp-sh-02m/index.json new file mode 100644 index 00000000000..a82cf57a518 --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense-3-td-lte-jp-sh-02m/index.json @@ -0,0 +1,76 @@ +{ + "id": 4739, + "slug": "aquos-sense-3-td-lte-jp-sh-02m", + "name": "Aquos Sense 3 TD-LTE JP SH-02M", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2019-11-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color ASV TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 0.0, + "camera": 5.0, + "battery": 15.0, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.805713", + "updated_at": "2026-06-19T00:43:44.805713" +} diff --git a/site/public/v1/smartphones/aquos-sense-3-td-lte-jp-sh-02m/score/index.json b/site/public/v1/smartphones/aquos-sense-3-td-lte-jp-sh-02m/score/index.json new file mode 100644 index 00000000000..313e4e8d637 --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense-3-td-lte-jp-sh-02m/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 0.0, + "camera": 5.0, + "battery": 15.0, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-sense-3-wimax-2-shv45-shv45-u/index.json b/site/public/v1/smartphones/aquos-sense-3-wimax-2-shv45-shv45-u/index.json new file mode 100644 index 00000000000..adfba32a255 --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense-3-wimax-2-shv45-shv45-u/index.json @@ -0,0 +1,76 @@ +{ + "id": 4740, + "slug": "aquos-sense-3-wimax-2-shv45-shv45-u", + "name": "Aquos Sense 3 WiMAX 2+ SHV45 / SHV45-u", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2019-11-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color ASV TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 0.0, + "camera": 5.0, + "battery": 15.0, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.805713", + "updated_at": "2026-06-19T00:43:44.805713" +} diff --git a/site/public/v1/smartphones/aquos-sense-3-wimax-2-shv45-shv45-u/score/index.json b/site/public/v1/smartphones/aquos-sense-3-wimax-2-shv45-shv45-u/score/index.json new file mode 100644 index 00000000000..313e4e8d637 --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense-3-wimax-2-shv45-shv45-u/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 0.0, + "camera": 5.0, + "battery": 15.0, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-sense-6-5g-td-lte-jp-128gb-sh-m19/index.json b/site/public/v1/smartphones/aquos-sense-6-5g-td-lte-jp-128gb-sh-m19/index.json new file mode 100644 index 00000000000..7ee4ce33f2a --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense-6-5g-td-lte-jp-128gb-sh-m19/index.json @@ -0,0 +1,77 @@ +{ + "id": 4761, + "slug": "aquos-sense-6-5g-td-lte-jp-128gb-sh-m19", + "name": "Aquos Sense 6 5G TD-LTE JP 128GB SH-M19", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 143, + "slug": "snapdragon-690", + "name": "Snapdragon 690", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619L", + "url": "/v1/socs/snapdragon-690" + }, + "release_date": "2021-11-26", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2432", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 436 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4570, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 1.5, + "camera": 16.5, + "battery": 23.5, + "display": 31.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.808713", + "updated_at": "2026-06-19T00:43:44.808713" +} diff --git a/site/public/v1/smartphones/aquos-sense-6-5g-td-lte-jp-128gb-sh-m19/score/index.json b/site/public/v1/smartphones/aquos-sense-6-5g-td-lte-jp-128gb-sh-m19/score/index.json new file mode 100644 index 00000000000..4e5cfd1b383 --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense-6-5g-td-lte-jp-128gb-sh-m19/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 1.5, + "camera": 16.5, + "battery": 23.5, + "display": 31.1, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-sense-6-5g-td-lte-jp-64gb-sh-54b/index.json b/site/public/v1/smartphones/aquos-sense-6-5g-td-lte-jp-64gb-sh-54b/index.json new file mode 100644 index 00000000000..ba3e73dd1ed --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense-6-5g-td-lte-jp-64gb-sh-54b/index.json @@ -0,0 +1,77 @@ +{ + "id": 4762, + "slug": "aquos-sense-6-5g-td-lte-jp-64gb-sh-54b", + "name": "Aquos Sense 6 5G TD-LTE JP 64GB SH-54B", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 143, + "slug": "snapdragon-690", + "name": "Snapdragon 690", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619L", + "url": "/v1/socs/snapdragon-690" + }, + "release_date": "2021-11-04", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2432", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 436 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4570, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 16.5, + "battery": 23.5, + "display": 31.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.808713", + "updated_at": "2026-06-19T00:43:44.808713" +} diff --git a/site/public/v1/smartphones/aquos-sense-6-5g-td-lte-jp-64gb-sh-54b/score/index.json b/site/public/v1/smartphones/aquos-sense-6-5g-td-lte-jp-64gb-sh-54b/score/index.json new file mode 100644 index 00000000000..e4cce897117 --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense-6-5g-td-lte-jp-64gb-sh-54b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 16.5, + "battery": 23.5, + "display": 31.1, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-sense-6-5g-td-lte-jp-64gb-sh-m19/index.json b/site/public/v1/smartphones/aquos-sense-6-5g-td-lte-jp-64gb-sh-m19/index.json new file mode 100644 index 00000000000..28b7ef399c7 --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense-6-5g-td-lte-jp-64gb-sh-m19/index.json @@ -0,0 +1,77 @@ +{ + "id": 4763, + "slug": "aquos-sense-6-5g-td-lte-jp-64gb-sh-m19", + "name": "Aquos Sense 6 5G TD-LTE JP 64GB SH-M19", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 143, + "slug": "snapdragon-690", + "name": "Snapdragon 690", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619L", + "url": "/v1/socs/snapdragon-690" + }, + "release_date": "2021-11-26", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2432", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 436 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4570, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 16.5, + "battery": 23.5, + "display": 31.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.808713", + "updated_at": "2026-06-19T00:43:44.808713" +} diff --git a/site/public/v1/smartphones/aquos-sense-6-5g-td-lte-jp-64gb-sh-m19/score/index.json b/site/public/v1/smartphones/aquos-sense-6-5g-td-lte-jp-64gb-sh-m19/score/index.json new file mode 100644 index 00000000000..e4cce897117 --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense-6-5g-td-lte-jp-64gb-sh-m19/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 16.5, + "battery": 23.5, + "display": 31.1, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-sense-6-5g-td-lte-jp-64gb-sh-rm19/index.json b/site/public/v1/smartphones/aquos-sense-6-5g-td-lte-jp-64gb-sh-rm19/index.json new file mode 100644 index 00000000000..ec71be6cc84 --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense-6-5g-td-lte-jp-64gb-sh-rm19/index.json @@ -0,0 +1,77 @@ +{ + "id": 4764, + "slug": "aquos-sense-6-5g-td-lte-jp-64gb-sh-rm19", + "name": "Aquos Sense 6 5G TD-LTE JP 64GB SH-RM19", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 143, + "slug": "snapdragon-690", + "name": "Snapdragon 690", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619L", + "url": "/v1/socs/snapdragon-690" + }, + "release_date": "2021-11-04", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2432", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 436 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4570, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 16.5, + "battery": 23.5, + "display": 31.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.808713", + "updated_at": "2026-06-19T00:43:44.808713" +} diff --git a/site/public/v1/smartphones/aquos-sense-6-5g-td-lte-jp-64gb-sh-rm19/score/index.json b/site/public/v1/smartphones/aquos-sense-6-5g-td-lte-jp-64gb-sh-rm19/score/index.json new file mode 100644 index 00000000000..e4cce897117 --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense-6-5g-td-lte-jp-64gb-sh-rm19/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 16.5, + "battery": 23.5, + "display": 31.1, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-sense-6-5g-td-lte-jp-64gb-shg05/index.json b/site/public/v1/smartphones/aquos-sense-6-5g-td-lte-jp-64gb-shg05/index.json new file mode 100644 index 00000000000..db3262d505a --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense-6-5g-td-lte-jp-64gb-shg05/index.json @@ -0,0 +1,77 @@ +{ + "id": 4765, + "slug": "aquos-sense-6-5g-td-lte-jp-64gb-shg05", + "name": "Aquos Sense 6 5G TD-LTE JP 64GB SHG05", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 143, + "slug": "snapdragon-690", + "name": "Snapdragon 690", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619L", + "url": "/v1/socs/snapdragon-690" + }, + "release_date": "2021-11-04", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2432", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 436 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4570, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 16.5, + "battery": 23.5, + "display": 31.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.808713", + "updated_at": "2026-06-19T00:43:44.808713" +} diff --git a/site/public/v1/smartphones/aquos-sense-6-5g-td-lte-jp-64gb-shg05/score/index.json b/site/public/v1/smartphones/aquos-sense-6-5g-td-lte-jp-64gb-shg05/score/index.json new file mode 100644 index 00000000000..e4cce897117 --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense-6-5g-td-lte-jp-64gb-shg05/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 16.5, + "battery": 23.5, + "display": 31.1, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-sense-plus-td-lte-jp-sh-m07/index.json b/site/public/v1/smartphones/aquos-sense-plus-td-lte-jp-sh-m07/index.json new file mode 100644 index 00000000000..7b5bced0d94 --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense-plus-td-lte-jp-sh-m07/index.json @@ -0,0 +1,76 @@ +{ + "id": 4723, + "slug": "aquos-sense-plus-td-lte-jp-sh-m07", + "name": "Aquos Sense Plus TD-LTE JP SH-M07", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2018-06-22", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color ASV TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 157.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 0.0, + "camera": 6.4, + "battery": 1.5, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.767207", + "updated_at": "2026-06-19T00:43:44.767207" +} diff --git a/site/public/v1/smartphones/aquos-sense-plus-td-lte-jp-sh-m07/score/index.json b/site/public/v1/smartphones/aquos-sense-plus-td-lte-jp-sh-m07/score/index.json new file mode 100644 index 00000000000..5d03373bb84 --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense-plus-td-lte-jp-sh-m07/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 0.0, + "camera": 6.4, + "battery": 1.5, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-sense3-basic-td-lte-jp-907sh/index.json b/site/public/v1/smartphones/aquos-sense3-basic-td-lte-jp-907sh/index.json new file mode 100644 index 00000000000..0d019ff733e --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense3-basic-td-lte-jp-907sh/index.json @@ -0,0 +1,76 @@ +{ + "id": 4741, + "slug": "aquos-sense3-basic-td-lte-jp-907sh", + "name": "Aquos Sense3 basic TD-LTE JP 907SH", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2019-11-16", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color ASV TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 0.0, + "camera": 5.0, + "battery": 15.0, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.805713", + "updated_at": "2026-06-19T00:43:44.805713" +} diff --git a/site/public/v1/smartphones/aquos-sense3-basic-td-lte-jp-907sh/score/index.json b/site/public/v1/smartphones/aquos-sense3-basic-td-lte-jp-907sh/score/index.json new file mode 100644 index 00000000000..313e4e8d637 --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense3-basic-td-lte-jp-907sh/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 0.0, + "camera": 5.0, + "battery": 15.0, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-sense3-basic-wimax-2-shv48/index.json b/site/public/v1/smartphones/aquos-sense3-basic-wimax-2-shv48/index.json new file mode 100644 index 00000000000..71471ef0a8c --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense3-basic-wimax-2-shv48/index.json @@ -0,0 +1,76 @@ +{ + "id": 4751, + "slug": "aquos-sense3-basic-wimax-2-shv48", + "name": "Aquos Sense3 basic WiMAX 2+ SHV48", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2020-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color ASV TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 0.0, + "camera": 5.0, + "battery": 15.0, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.806713", + "updated_at": "2026-06-19T00:43:44.806713" +} diff --git a/site/public/v1/smartphones/aquos-sense3-basic-wimax-2-shv48/score/index.json b/site/public/v1/smartphones/aquos-sense3-basic-wimax-2-shv48/score/index.json new file mode 100644 index 00000000000..313e4e8d637 --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense3-basic-wimax-2-shv48/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 0.0, + "camera": 5.0, + "battery": 15.0, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-sense3-dual-sim-td-lte-jp-sh-m12/index.json b/site/public/v1/smartphones/aquos-sense3-dual-sim-td-lte-jp-sh-m12/index.json new file mode 100644 index 00000000000..5db94cace37 --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense3-dual-sim-td-lte-jp-sh-m12/index.json @@ -0,0 +1,76 @@ +{ + "id": 4742, + "slug": "aquos-sense3-dual-sim-td-lte-jp-sh-m12", + "name": "Aquos Sense3 Dual SIM TD-LTE JP SH-M12", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color ASV TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 0.0, + "camera": 5.0, + "battery": 15.0, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.805713", + "updated_at": "2026-06-19T00:43:44.805713" +} diff --git a/site/public/v1/smartphones/aquos-sense3-dual-sim-td-lte-jp-sh-m12/score/index.json b/site/public/v1/smartphones/aquos-sense3-dual-sim-td-lte-jp-sh-m12/score/index.json new file mode 100644 index 00000000000..313e4e8d637 --- /dev/null +++ b/site/public/v1/smartphones/aquos-sense3-dual-sim-td-lte-jp-sh-m12/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 0.0, + "camera": 5.0, + "battery": 15.0, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-v-global-dual-sim-lte-sh-c02/index.json b/site/public/v1/smartphones/aquos-v-global-dual-sim-lte-sh-c02/index.json new file mode 100644 index 00000000000..fc0bc4ef8d6 --- /dev/null +++ b/site/public/v1/smartphones/aquos-v-global-dual-sim-lte-sh-c02/index.json @@ -0,0 +1,76 @@ +{ + "id": 4743, + "slug": "aquos-v-global-dual-sim-lte-sh-c02", + "name": "AQUOS V Global Dual SIM LTE SH-C02", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 122, + "slug": "snapdragon-835", + "name": "Snapdragon 835", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 540", + "url": "/v1/socs/snapdragon-835" + }, + "release_date": "2019-12-07", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.91, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 7.7 + } + ], + "battery_mah": 3090, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 23.1, + "camera": 5.3, + "battery": 1.4, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.806713", + "updated_at": "2026-06-19T00:43:44.806713" +} diff --git a/site/public/v1/smartphones/aquos-v-global-dual-sim-lte-sh-c02/score/index.json b/site/public/v1/smartphones/aquos-v-global-dual-sim-lte-sh-c02/score/index.json new file mode 100644 index 00000000000..ec0bdb2f072 --- /dev/null +++ b/site/public/v1/smartphones/aquos-v-global-dual-sim-lte-sh-c02/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 23.1, + "camera": 5.3, + "battery": 1.4, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-zero-td-lte-801sh/index.json b/site/public/v1/smartphones/aquos-zero-td-lte-801sh/index.json new file mode 100644 index 00000000000..bbb36ef98b2 --- /dev/null +++ b/site/public/v1/smartphones/aquos-zero-td-lte-801sh/index.json @@ -0,0 +1,76 @@ +{ + "id": 4724, + "slug": "aquos-zero-td-lte-801sh", + "name": "AQUOS zero TD-LTE 801SH", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-12-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1440x2992", + "type": "AM-OLED display", + "ppi": 536 + }, + "cameras": [ + { + "type": "main", + "mp": 22.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3130, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 1.5, + "camera": 8.4, + "battery": 1.9, + "display": 58.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.803714", + "updated_at": "2026-06-19T00:43:44.803714" +} diff --git a/site/public/v1/smartphones/aquos-zero-td-lte-801sh/score/index.json b/site/public/v1/smartphones/aquos-zero-td-lte-801sh/score/index.json new file mode 100644 index 00000000000..d401e52bbeb --- /dev/null +++ b/site/public/v1/smartphones/aquos-zero-td-lte-801sh/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 1.5, + "camera": 8.4, + "battery": 1.9, + "display": 58.6, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-zero-td-lte-apac-sh-z10/index.json b/site/public/v1/smartphones/aquos-zero-td-lte-apac-sh-z10/index.json new file mode 100644 index 00000000000..5447252a6d0 --- /dev/null +++ b/site/public/v1/smartphones/aquos-zero-td-lte-apac-sh-z10/index.json @@ -0,0 +1,76 @@ +{ + "id": 4744, + "slug": "aquos-zero-td-lte-apac-sh-z10", + "name": "AQUOS zero TD-LTE APAC SH-Z10", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2019-01-16", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1440x2992", + "type": "AM-OLED display", + "ppi": 536 + }, + "cameras": [ + { + "type": "main", + "mp": 22.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3130, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 1.5, + "camera": 8.4, + "battery": 1.9, + "display": 58.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.806713", + "updated_at": "2026-06-19T00:43:44.806713" +} diff --git a/site/public/v1/smartphones/aquos-zero-td-lte-apac-sh-z10/score/index.json b/site/public/v1/smartphones/aquos-zero-td-lte-apac-sh-z10/score/index.json new file mode 100644 index 00000000000..d401e52bbeb --- /dev/null +++ b/site/public/v1/smartphones/aquos-zero-td-lte-apac-sh-z10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 1.5, + "camera": 8.4, + "battery": 1.9, + "display": 58.6, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-zero-td-lte-jp-sh-m10/index.json b/site/public/v1/smartphones/aquos-zero-td-lte-jp-sh-m10/index.json new file mode 100644 index 00000000000..3d6aff7ded2 --- /dev/null +++ b/site/public/v1/smartphones/aquos-zero-td-lte-jp-sh-m10/index.json @@ -0,0 +1,76 @@ +{ + "id": 4745, + "slug": "aquos-zero-td-lte-jp-sh-m10", + "name": "AQUOS zero TD-LTE JP SH-M10", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2019-04-09", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1440x2992", + "type": "AM-OLED display", + "ppi": 536 + }, + "cameras": [ + { + "type": "main", + "mp": 22.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3130, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 1.5, + "camera": 8.4, + "battery": 1.9, + "display": 58.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.806713", + "updated_at": "2026-06-19T00:43:44.806713" +} diff --git a/site/public/v1/smartphones/aquos-zero-td-lte-jp-sh-m10/score/index.json b/site/public/v1/smartphones/aquos-zero-td-lte-jp-sh-m10/score/index.json new file mode 100644 index 00000000000..d401e52bbeb --- /dev/null +++ b/site/public/v1/smartphones/aquos-zero-td-lte-jp-sh-m10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 1.5, + "camera": 8.4, + "battery": 1.9, + "display": 58.6, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-zero2-global-dual-sim-td-lte-sh-m13/index.json b/site/public/v1/smartphones/aquos-zero2-global-dual-sim-td-lte-sh-m13/index.json new file mode 100644 index 00000000000..280f53ec3d7 --- /dev/null +++ b/site/public/v1/smartphones/aquos-zero2-global-dual-sim-td-lte-sh-m13/index.json @@ -0,0 +1,77 @@ +{ + "id": 4752, + "slug": "aquos-zero2-global-dual-sim-td-lte-sh-m13", + "name": "AQUOS zero2 Global Dual SIM TD-LTE SH-M13", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2020-03-13", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3130, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 141.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.7, + "performance": 3.0, + "camera": 5.1, + "battery": 1.9, + "display": 52.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.807713", + "updated_at": "2026-06-19T00:43:44.807713" +} diff --git a/site/public/v1/smartphones/aquos-zero2-global-dual-sim-td-lte-sh-m13/score/index.json b/site/public/v1/smartphones/aquos-zero2-global-dual-sim-td-lte-sh-m13/score/index.json new file mode 100644 index 00000000000..824f3b859a6 --- /dev/null +++ b/site/public/v1/smartphones/aquos-zero2-global-dual-sim-td-lte-sh-m13/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.7, + "performance": 3.0, + "camera": 5.1, + "battery": 1.9, + "display": 52.8, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-zero2-td-lte-jp-sh-01m/index.json b/site/public/v1/smartphones/aquos-zero2-td-lte-jp-sh-01m/index.json new file mode 100644 index 00000000000..48f27ab3914 --- /dev/null +++ b/site/public/v1/smartphones/aquos-zero2-td-lte-jp-sh-01m/index.json @@ -0,0 +1,77 @@ +{ + "id": 4753, + "slug": "aquos-zero2-td-lte-jp-sh-01m", + "name": "AQUOS zero2 TD-LTE JP SH-01M", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2020-01-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3130, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 143.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.7, + "performance": 3.0, + "camera": 5.1, + "battery": 1.9, + "display": 52.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.807713", + "updated_at": "2026-06-19T00:43:44.807713" +} diff --git a/site/public/v1/smartphones/aquos-zero2-td-lte-jp-sh-01m/score/index.json b/site/public/v1/smartphones/aquos-zero2-td-lte-jp-sh-01m/score/index.json new file mode 100644 index 00000000000..824f3b859a6 --- /dev/null +++ b/site/public/v1/smartphones/aquos-zero2-td-lte-jp-sh-01m/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.7, + "performance": 3.0, + "camera": 5.1, + "battery": 1.9, + "display": 52.8, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-zero2-td-lte-jp-softbank/index.json b/site/public/v1/smartphones/aquos-zero2-td-lte-jp-softbank/index.json new file mode 100644 index 00000000000..6c52316f51e --- /dev/null +++ b/site/public/v1/smartphones/aquos-zero2-td-lte-jp-softbank/index.json @@ -0,0 +1,77 @@ +{ + "id": 4754, + "slug": "aquos-zero2-td-lte-jp-softbank", + "name": "AQUOS zero2 TD-LTE JP SoftBank", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2020-01-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3130, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 143.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.7, + "performance": 3.0, + "camera": 5.1, + "battery": 1.9, + "display": 52.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.807713", + "updated_at": "2026-06-19T00:43:44.807713" +} diff --git a/site/public/v1/smartphones/aquos-zero2-td-lte-jp-softbank/score/index.json b/site/public/v1/smartphones/aquos-zero2-td-lte-jp-softbank/score/index.json new file mode 100644 index 00000000000..824f3b859a6 --- /dev/null +++ b/site/public/v1/smartphones/aquos-zero2-td-lte-jp-softbank/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.7, + "performance": 3.0, + "camera": 5.1, + "battery": 1.9, + "display": 52.8, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-zero2-wimax-2-shv47/index.json b/site/public/v1/smartphones/aquos-zero2-wimax-2-shv47/index.json new file mode 100644 index 00000000000..2c396801ec6 --- /dev/null +++ b/site/public/v1/smartphones/aquos-zero2-wimax-2-shv47/index.json @@ -0,0 +1,77 @@ +{ + "id": 4755, + "slug": "aquos-zero2-wimax-2-shv47", + "name": "AQUOS zero2 WiMAX 2+ SHV47", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2020-01-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3130, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 143.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.7, + "performance": 3.0, + "camera": 5.1, + "battery": 1.9, + "display": 52.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.807713", + "updated_at": "2026-06-19T00:43:44.807713" +} diff --git a/site/public/v1/smartphones/aquos-zero2-wimax-2-shv47/score/index.json b/site/public/v1/smartphones/aquos-zero2-wimax-2-shv47/score/index.json new file mode 100644 index 00000000000..824f3b859a6 --- /dev/null +++ b/site/public/v1/smartphones/aquos-zero2-wimax-2-shv47/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.7, + "performance": 3.0, + "camera": 5.1, + "battery": 1.9, + "display": 52.8, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-zero5g-basic-dx-td-lte-jp-128gb-shg02/index.json b/site/public/v1/smartphones/aquos-zero5g-basic-dx-td-lte-jp-128gb-shg02/index.json new file mode 100644 index 00000000000..59ff621680b --- /dev/null +++ b/site/public/v1/smartphones/aquos-zero5g-basic-dx-td-lte-jp-128gb-shg02/index.json @@ -0,0 +1,77 @@ +{ + "id": 4756, + "slug": "aquos-zero5g-basic-dx-td-lte-jp-128gb-shg02", + "name": "Aquos Zero5G basic DX TD-LTE JP 128GB SHG02", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-09-19", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "refresh_hz": 240, + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3730, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 3.0, + "camera": 16.5, + "battery": 10.9, + "display": 62.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.807713", + "updated_at": "2026-06-19T00:43:44.807713" +} diff --git a/site/public/v1/smartphones/aquos-zero5g-basic-dx-td-lte-jp-128gb-shg02/score/index.json b/site/public/v1/smartphones/aquos-zero5g-basic-dx-td-lte-jp-128gb-shg02/score/index.json new file mode 100644 index 00000000000..b1367d88299 --- /dev/null +++ b/site/public/v1/smartphones/aquos-zero5g-basic-dx-td-lte-jp-128gb-shg02/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 3.0, + "camera": 16.5, + "battery": 10.9, + "display": 62.8, + "value": null +} diff --git a/site/public/v1/smartphones/aquos-zero5g-basic-td-lte-jp-64gb-a002sh/index.json b/site/public/v1/smartphones/aquos-zero5g-basic-td-lte-jp-64gb-a002sh/index.json new file mode 100644 index 00000000000..e154d61c305 --- /dev/null +++ b/site/public/v1/smartphones/aquos-zero5g-basic-td-lte-jp-64gb-a002sh/index.json @@ -0,0 +1,77 @@ +{ + "id": 4757, + "slug": "aquos-zero5g-basic-td-lte-jp-64gb-a002sh", + "name": "Aquos Zero5G basic TD-LTE JP 64GB A002SH", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-10-09", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "refresh_hz": 240, + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3730, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 1.5, + "camera": 16.5, + "battery": 10.9, + "display": 62.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.807713", + "updated_at": "2026-06-19T00:43:44.807713" +} diff --git a/site/public/v1/smartphones/aquos-zero5g-basic-td-lte-jp-64gb-a002sh/score/index.json b/site/public/v1/smartphones/aquos-zero5g-basic-td-lte-jp-64gb-a002sh/score/index.json new file mode 100644 index 00000000000..4f73c7cd4e8 --- /dev/null +++ b/site/public/v1/smartphones/aquos-zero5g-basic-td-lte-jp-64gb-a002sh/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 1.5, + "camera": 16.5, + "battery": 10.9, + "display": 62.8, + "value": null +} diff --git a/site/public/v1/smartphones/armor-3-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/armor-3-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..5efebfa85ad --- /dev/null +++ b/site/public/v1/smartphones/armor-3-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 5017, + "slug": "armor-3-global-dual-sim-td-lte", + "name": "Armor 3 Global Dual SIM TD-LTE", + "brand": { + "id": 41, + "slug": "ulefone", + "name": "Ulefone", + "country": "CN", + "url": "/v1/brands/ulefone" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 21.5 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 10300, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 364.9, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.3, + "performance": 0.0, + "camera": 8.1, + "battery": 45.6, + "display": 47.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.841586", + "updated_at": "2026-06-19T00:43:44.841586" +} diff --git a/site/public/v1/smartphones/armor-3-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/armor-3-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..5ecb7f00adc --- /dev/null +++ b/site/public/v1/smartphones/armor-3-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.3, + "performance": 0.0, + "camera": 8.1, + "battery": 45.6, + "display": 47.4, + "value": null +} diff --git a/site/public/v1/smartphones/armor-3t-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/armor-3t-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..88b3c071cab --- /dev/null +++ b/site/public/v1/smartphones/armor-3t-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 5018, + "slug": "armor-3t-global-dual-sim-td-lte", + "name": "Armor 3T Global Dual SIM TD-LTE", + "brand": { + "id": 41, + "slug": "ulefone", + "name": "Ulefone", + "country": "CN", + "url": "/v1/brands/ulefone" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 21.5 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 10300, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 373.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.3, + "performance": 0.0, + "camera": 8.1, + "battery": 45.6, + "display": 47.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.842135", + "updated_at": "2026-06-19T00:43:44.842135" +} diff --git a/site/public/v1/smartphones/armor-3t-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/armor-3t-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..5ecb7f00adc --- /dev/null +++ b/site/public/v1/smartphones/armor-3t-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.3, + "performance": 0.0, + "camera": 8.1, + "battery": 45.6, + "display": 47.4, + "value": null +} diff --git a/site/public/v1/smartphones/armor-3w-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/armor-3w-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..7a34125062d --- /dev/null +++ b/site/public/v1/smartphones/armor-3w-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 5023, + "slug": "armor-3w-global-dual-sim-td-lte", + "name": "Armor 3W Global Dual SIM TD-LTE", + "brand": { + "id": 41, + "slug": "ulefone", + "name": "Ulefone", + "country": "CN", + "url": "/v1/brands/ulefone" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 21.5 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 10300, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 364.9, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 1.5, + "camera": 8.1, + "battery": 45.6, + "display": 47.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.842703", + "updated_at": "2026-06-19T00:43:44.842703" +} diff --git a/site/public/v1/smartphones/armor-3w-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/armor-3w-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..728ceb98ede --- /dev/null +++ b/site/public/v1/smartphones/armor-3w-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 1.5, + "camera": 8.1, + "battery": 45.6, + "display": 47.4, + "value": null +} diff --git a/site/public/v1/smartphones/armor-5-dual-sim-lte/index.json b/site/public/v1/smartphones/armor-5-dual-sim-lte/index.json new file mode 100644 index 00000000000..8b460ddea91 --- /dev/null +++ b/site/public/v1/smartphones/armor-5-dual-sim-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 5019, + "slug": "armor-5-dual-sim-lte", + "name": "Armor 5 Dual SIM LTE", + "brand": { + "id": 41, + "slug": "ulefone", + "name": "Ulefone", + "country": "CN", + "url": "/v1/brands/ulefone" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2018-07-27", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.85, + "resolution": "720x1512", + "type": "Color IPS TFT LCD display", + "ppi": 286 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 228.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.842135", + "updated_at": "2026-06-19T00:43:44.842135" +} diff --git a/site/public/v1/smartphones/armor-5-dual-sim-lte/score/index.json b/site/public/v1/smartphones/armor-5-dual-sim-lte/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/armor-5-dual-sim-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/armor-5s-global-dual-sim-lte/index.json b/site/public/v1/smartphones/armor-5s-global-dual-sim-lte/index.json new file mode 100644 index 00000000000..749ff932d6e --- /dev/null +++ b/site/public/v1/smartphones/armor-5s-global-dual-sim-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 5024, + "slug": "armor-5s-global-dual-sim-lte", + "name": "Armor 5S Global Dual SIM LTE", + "brand": { + "id": 41, + "slug": "ulefone", + "name": "Ulefone", + "country": "CN", + "url": "/v1/brands/ulefone" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.89, + "resolution": "720x1512", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 228.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.4, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.842703", + "updated_at": "2026-06-19T00:43:44.842703" +} diff --git a/site/public/v1/smartphones/armor-5s-global-dual-sim-lte/score/index.json b/site/public/v1/smartphones/armor-5s-global-dual-sim-lte/score/index.json new file mode 100644 index 00000000000..ece520e99ec --- /dev/null +++ b/site/public/v1/smartphones/armor-5s-global-dual-sim-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.4, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/armor-6-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/armor-6-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..dcab39563ee --- /dev/null +++ b/site/public/v1/smartphones/armor-6-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 5025, + "slug": "armor-6-global-dual-sim-td-lte", + "name": "Armor 6 Global Dual SIM TD-LTE", + "brand": { + "id": 41, + "slug": "ulefone", + "name": "Ulefone", + "country": "CN", + "url": "/v1/brands/ulefone" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2019-01-14", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 267.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": 1.5, + "camera": 6.4, + "battery": 30.6, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.842703", + "updated_at": "2026-06-19T00:43:44.842703" +} diff --git a/site/public/v1/smartphones/armor-6-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/armor-6-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..69df14abff6 --- /dev/null +++ b/site/public/v1/smartphones/armor-6-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": 1.5, + "camera": 6.4, + "battery": 30.6, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/armor-6e-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/armor-6e-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..d89783814f3 --- /dev/null +++ b/site/public/v1/smartphones/armor-6e-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 5026, + "slug": "armor-6e-global-dual-sim-td-lte", + "name": "Armor 6E Global Dual SIM TD-LTE", + "brand": { + "id": 41, + "slug": "ulefone", + "name": "Ulefone", + "country": "CN", + "url": "/v1/brands/ulefone" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-05-12", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 267.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 0.0, + "camera": 6.4, + "battery": 30.6, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.843214", + "updated_at": "2026-06-19T00:43:44.843214" +} diff --git a/site/public/v1/smartphones/armor-6e-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/armor-6e-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..295db3f6995 --- /dev/null +++ b/site/public/v1/smartphones/armor-6e-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 0.0, + "camera": 6.4, + "battery": 30.6, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/armor-7-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/armor-7-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..62fcb87518e --- /dev/null +++ b/site/public/v1/smartphones/armor-7-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 5027, + "slug": "armor-7-global-dual-sim-td-lte", + "name": "Armor 7 Global Dual SIM TD-LTE", + "brand": { + "id": 41, + "slug": "ulefone", + "name": "Ulefone", + "country": "CN", + "url": "/v1/brands/ulefone" + }, + "soc": { + "id": 46, + "slug": "helio-p90", + "name": "Helio P90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GM9446", + "url": "/v1/socs/helio-p90" + }, + "release_date": "2019-10-26", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5500, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 290.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.7, + "performance": 3.0, + "camera": 16.5, + "battery": 37.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.843214", + "updated_at": "2026-06-19T00:43:44.843214" +} diff --git a/site/public/v1/smartphones/armor-7-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/armor-7-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..49f5ee4640f --- /dev/null +++ b/site/public/v1/smartphones/armor-7-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.7, + "performance": 3.0, + "camera": 16.5, + "battery": 37.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/armor-x5-global-dual-sim-lte/index.json b/site/public/v1/smartphones/armor-x5-global-dual-sim-lte/index.json new file mode 100644 index 00000000000..6ef6bee6ca1 --- /dev/null +++ b/site/public/v1/smartphones/armor-x5-global-dual-sim-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 5028, + "slug": "armor-x5-global-dual-sim-lte", + "name": "Armor X5 Global Dual SIM LTE", + "brand": { + "id": 41, + "slug": "ulefone", + "name": "Ulefone", + "country": "CN", + "url": "/v1/brands/ulefone" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 293 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 235.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.843776", + "updated_at": "2026-06-19T00:43:44.843776" +} diff --git a/site/public/v1/smartphones/armor-x5-global-dual-sim-lte/score/index.json b/site/public/v1/smartphones/armor-x5-global-dual-sim-lte/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/armor-x5-global-dual-sim-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/arrows-5g-f-51a-td-lte-jp/index.json b/site/public/v1/smartphones/arrows-5g-f-51a-td-lte-jp/index.json new file mode 100644 index 00000000000..b3f3ee90e0b --- /dev/null +++ b/site/public/v1/smartphones/arrows-5g-f-51a-td-lte-jp/index.json @@ -0,0 +1,76 @@ +{ + "id": 526, + "slug": "arrows-5g-f-51a-td-lte-jp", + "name": "Arrows 5G F-51A TD-LTE JP", + "brand": { + "id": 69, + "slug": "fujitsu", + "name": "Fujitsu", + "country": "JP", + "url": "/v1/brands/fujitsu" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-06-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 385 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4070, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 3.0, + "camera": 16.5, + "battery": 16.1, + "display": 43.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.179932", + "updated_at": "2026-06-19T00:43:44.179932" +} diff --git a/site/public/v1/smartphones/arrows-5g-f-51a-td-lte-jp/score/index.json b/site/public/v1/smartphones/arrows-5g-f-51a-td-lte-jp/score/index.json new file mode 100644 index 00000000000..0dda35669dd --- /dev/null +++ b/site/public/v1/smartphones/arrows-5g-f-51a-td-lte-jp/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 3.0, + "camera": 16.5, + "battery": 16.1, + "display": 43.5, + "value": null +} diff --git a/site/public/v1/smartphones/arrows-be3-f-02l-td-lte-jp/index.json b/site/public/v1/smartphones/arrows-be3-f-02l-td-lte-jp/index.json new file mode 100644 index 00000000000..08404cea05c --- /dev/null +++ b/site/public/v1/smartphones/arrows-be3-f-02l-td-lte-jp/index.json @@ -0,0 +1,76 @@ +{ + "id": 521, + "slug": "arrows-be3-f-02l-td-lte-jp", + "name": "Arrows Be3 F-02L TD-LTE JP", + "brand": { + "id": 69, + "slug": "fujitsu", + "name": "Fujitsu", + "country": "JP", + "url": "/v1/brands/fujitsu" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-06-07", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.6, + "resolution": "1080x2220", + "type": "Color IPS TFT LCD display", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "battery_mah": 2780, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": null, + "camera": 5.1, + "battery": 0.0, + "display": 49.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.178933", + "updated_at": "2026-06-19T00:43:44.178933" +} diff --git a/site/public/v1/smartphones/arrows-be3-f-02l-td-lte-jp/score/index.json b/site/public/v1/smartphones/arrows-be3-f-02l-td-lte-jp/score/index.json new file mode 100644 index 00000000000..725dc551fb5 --- /dev/null +++ b/site/public/v1/smartphones/arrows-be3-f-02l-td-lte-jp/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": null, + "camera": 5.1, + "battery": 0.0, + "display": 49.1, + "value": null +} diff --git a/site/public/v1/smartphones/arrows-be4-f-41a-td-lte-jp/index.json b/site/public/v1/smartphones/arrows-be4-f-41a-td-lte-jp/index.json new file mode 100644 index 00000000000..39749d8dba6 --- /dev/null +++ b/site/public/v1/smartphones/arrows-be4-f-41a-td-lte-jp/index.json @@ -0,0 +1,76 @@ +{ + "id": 527, + "slug": "arrows-be4-f-41a-td-lte-jp", + "name": "Arrows Be4 F-41A TD-LTE JP", + "brand": { + "id": 69, + "slug": "fujitsu", + "name": "Fujitsu", + "country": "JP", + "url": "/v1/brands/fujitsu" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2020-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.6, + "resolution": "1080x2220", + "type": "Color IPS TFT LCD display", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "battery_mah": 2780, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": null, + "camera": 5.1, + "battery": 0.0, + "display": 49.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.179932", + "updated_at": "2026-06-19T00:43:44.179932" +} diff --git a/site/public/v1/smartphones/arrows-be4-f-41a-td-lte-jp/score/index.json b/site/public/v1/smartphones/arrows-be4-f-41a-td-lte-jp/score/index.json new file mode 100644 index 00000000000..725dc551fb5 --- /dev/null +++ b/site/public/v1/smartphones/arrows-be4-f-41a-td-lte-jp/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": null, + "camera": 5.1, + "battery": 0.0, + "display": 49.1, + "value": null +} diff --git a/site/public/v1/smartphones/arrows-be4-plus-f-41b-td-lte-jp/index.json b/site/public/v1/smartphones/arrows-be4-plus-f-41b-td-lte-jp/index.json new file mode 100644 index 00000000000..05071d209c4 --- /dev/null +++ b/site/public/v1/smartphones/arrows-be4-plus-f-41b-td-lte-jp/index.json @@ -0,0 +1,76 @@ +{ + "id": 530, + "slug": "arrows-be4-plus-f-41b-td-lte-jp", + "name": "Arrows Be4 Plus F-41B TD-LTE JP", + "brand": { + "id": 69, + "slug": "fujitsu", + "name": "Fujitsu", + "country": "JP", + "url": "/v1/brands/fujitsu" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2021-05-28", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.6, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "battery_mah": 3600, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 0.0, + "camera": 5.3, + "battery": 9.0, + "display": 49.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.179932", + "updated_at": "2026-06-19T00:43:44.179932" +} diff --git a/site/public/v1/smartphones/arrows-be4-plus-f-41b-td-lte-jp/score/index.json b/site/public/v1/smartphones/arrows-be4-plus-f-41b-td-lte-jp/score/index.json new file mode 100644 index 00000000000..c92de2d2db9 --- /dev/null +++ b/site/public/v1/smartphones/arrows-be4-plus-f-41b-td-lte-jp/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 0.0, + "camera": 5.3, + "battery": 9.0, + "display": 49.1, + "value": null +} diff --git a/site/public/v1/smartphones/arrows-bz01-td-lte-jp/index.json b/site/public/v1/smartphones/arrows-bz01-td-lte-jp/index.json new file mode 100644 index 00000000000..76673f82a32 --- /dev/null +++ b/site/public/v1/smartphones/arrows-bz01-td-lte-jp/index.json @@ -0,0 +1,76 @@ +{ + "id": 528, + "slug": "arrows-bz01-td-lte-jp", + "name": "Arrows BZ01 TD-LTE JP", + "brand": { + "id": 69, + "slug": "fujitsu", + "name": "Fujitsu", + "country": "JP", + "url": "/v1/brands/fujitsu" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.6, + "resolution": "1080x2220", + "type": "Color IPS TFT LCD display", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "battery_mah": 2780, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": null, + "camera": 5.1, + "battery": 0.0, + "display": 49.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.179932", + "updated_at": "2026-06-19T00:43:44.179932" +} diff --git a/site/public/v1/smartphones/arrows-bz01-td-lte-jp/score/index.json b/site/public/v1/smartphones/arrows-bz01-td-lte-jp/score/index.json new file mode 100644 index 00000000000..725dc551fb5 --- /dev/null +++ b/site/public/v1/smartphones/arrows-bz01-td-lte-jp/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": null, + "camera": 5.1, + "battery": 0.0, + "display": 49.1, + "value": null +} diff --git a/site/public/v1/smartphones/arrows-bz02-dual-sim-lte-a-jp/index.json b/site/public/v1/smartphones/arrows-bz02-dual-sim-lte-a-jp/index.json new file mode 100644 index 00000000000..81c6aab8593 --- /dev/null +++ b/site/public/v1/smartphones/arrows-bz02-dual-sim-lte-a-jp/index.json @@ -0,0 +1,76 @@ +{ + "id": 531, + "slug": "arrows-bz02-dual-sim-lte-a-jp", + "name": "Arrows BZ02 Dual SIM LTE-A JP", + "brand": { + "id": 69, + "slug": "fujitsu", + "name": "Fujitsu", + "country": "JP", + "url": "/v1/brands/fujitsu" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2021-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.6, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "battery_mah": 3600, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 0.0, + "camera": 5.3, + "battery": 9.0, + "display": 49.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.179932", + "updated_at": "2026-06-19T00:43:44.179932" +} diff --git a/site/public/v1/smartphones/arrows-bz02-dual-sim-lte-a-jp/score/index.json b/site/public/v1/smartphones/arrows-bz02-dual-sim-lte-a-jp/score/index.json new file mode 100644 index 00000000000..c92de2d2db9 --- /dev/null +++ b/site/public/v1/smartphones/arrows-bz02-dual-sim-lte-a-jp/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 0.0, + "camera": 5.3, + "battery": 9.0, + "display": 49.1, + "value": null +} diff --git a/site/public/v1/smartphones/arrows-j-td-lte-jp-901fj/index.json b/site/public/v1/smartphones/arrows-j-td-lte-jp-901fj/index.json new file mode 100644 index 00000000000..f2d8b3c984d --- /dev/null +++ b/site/public/v1/smartphones/arrows-j-td-lte-jp-901fj/index.json @@ -0,0 +1,76 @@ +{ + "id": 522, + "slug": "arrows-j-td-lte-jp-901fj", + "name": "Arrows J TD-LTE JP 901FJ", + "brand": { + "id": 69, + "slug": "fujitsu", + "name": "Fujitsu", + "country": "JP", + "url": "/v1/brands/fujitsu" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.8, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 2880, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": null, + "camera": 5.4, + "battery": 0.0, + "display": 48.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.178933", + "updated_at": "2026-06-19T00:43:44.178933" +} diff --git a/site/public/v1/smartphones/arrows-j-td-lte-jp-901fj/score/index.json b/site/public/v1/smartphones/arrows-j-td-lte-jp-901fj/score/index.json new file mode 100644 index 00000000000..14f0289a5ab --- /dev/null +++ b/site/public/v1/smartphones/arrows-j-td-lte-jp-901fj/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": null, + "camera": 5.4, + "battery": 0.0, + "display": 48.5, + "value": null +} diff --git a/site/public/v1/smartphones/arrows-m05-td-lte-jp/index.json b/site/public/v1/smartphones/arrows-m05-td-lte-jp/index.json new file mode 100644 index 00000000000..d88ab0b2af5 --- /dev/null +++ b/site/public/v1/smartphones/arrows-m05-td-lte-jp/index.json @@ -0,0 +1,76 @@ +{ + "id": 523, + "slug": "arrows-m05-td-lte-jp", + "name": "Arrows M05 TD-LTE JP", + "brand": { + "id": 69, + "slug": "fujitsu", + "name": "Fujitsu", + "country": "JP", + "url": "/v1/brands/fujitsu" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-12-18", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.8, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 2880, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": null, + "camera": 5.4, + "battery": 0.0, + "display": 48.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.178933", + "updated_at": "2026-06-19T00:43:44.178933" +} diff --git a/site/public/v1/smartphones/arrows-m05-td-lte-jp/score/index.json b/site/public/v1/smartphones/arrows-m05-td-lte-jp/score/index.json new file mode 100644 index 00000000000..14f0289a5ab --- /dev/null +++ b/site/public/v1/smartphones/arrows-m05-td-lte-jp/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": null, + "camera": 5.4, + "battery": 0.0, + "display": 48.5, + "value": null +} diff --git a/site/public/v1/smartphones/arrows-me-f-04k-lte/index.json b/site/public/v1/smartphones/arrows-me-f-04k-lte/index.json new file mode 100644 index 00000000000..d060b007820 --- /dev/null +++ b/site/public/v1/smartphones/arrows-me-f-04k-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 520, + "slug": "arrows-me-f-04k-lte", + "name": "Arrows me F-04K LTE", + "brand": { + "id": 69, + "slug": "fujitsu", + "name": "Fujitsu", + "country": "JP", + "url": "/v1/brands/fujitsu" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2580, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.1, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.178933", + "updated_at": "2026-06-19T00:43:44.178933" +} diff --git a/site/public/v1/smartphones/arrows-me-f-04k-lte/score/index.json b/site/public/v1/smartphones/arrows-me-f-04k-lte/score/index.json new file mode 100644 index 00000000000..42df51812b8 --- /dev/null +++ b/site/public/v1/smartphones/arrows-me-f-04k-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.1, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/arrows-nx9-5g-f-52a-td-lte-jp/index.json b/site/public/v1/smartphones/arrows-nx9-5g-f-52a-td-lte-jp/index.json new file mode 100644 index 00000000000..fe3fc19ab6a --- /dev/null +++ b/site/public/v1/smartphones/arrows-nx9-5g-f-52a-td-lte-jp/index.json @@ -0,0 +1,76 @@ +{ + "id": 529, + "slug": "arrows-nx9-5g-f-52a-td-lte-jp", + "name": "Arrows NX9 5G F-52A TD-LTE JP", + "brand": { + "id": 69, + "slug": "fujitsu", + "name": "Fujitsu", + "country": "JP", + "url": "/v1/brands/fujitsu" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-12-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.4 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3600, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 3.0, + "camera": 16.6, + "battery": 9.0, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.179932", + "updated_at": "2026-06-19T00:43:44.179932" +} diff --git a/site/public/v1/smartphones/arrows-nx9-5g-f-52a-td-lte-jp/score/index.json b/site/public/v1/smartphones/arrows-nx9-5g-f-52a-td-lte-jp/score/index.json new file mode 100644 index 00000000000..2813620634e --- /dev/null +++ b/site/public/v1/smartphones/arrows-nx9-5g-f-52a-td-lte-jp/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 3.0, + "camera": 16.6, + "battery": 9.0, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/arrows-rx-td-lte-jp/index.json b/site/public/v1/smartphones/arrows-rx-td-lte-jp/index.json new file mode 100644 index 00000000000..46e6ab17f29 --- /dev/null +++ b/site/public/v1/smartphones/arrows-rx-td-lte-jp/index.json @@ -0,0 +1,76 @@ +{ + "id": 524, + "slug": "arrows-rx-td-lte-jp", + "name": "Arrows RX TD-LTE JP", + "brand": { + "id": 69, + "slug": "fujitsu", + "name": "Fujitsu", + "country": "JP", + "url": "/v1/brands/fujitsu" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.8, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 2880, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": null, + "camera": 5.4, + "battery": 0.0, + "display": 48.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.178933", + "updated_at": "2026-06-19T00:43:44.178933" +} diff --git a/site/public/v1/smartphones/arrows-rx-td-lte-jp/score/index.json b/site/public/v1/smartphones/arrows-rx-td-lte-jp/score/index.json new file mode 100644 index 00000000000..14f0289a5ab --- /dev/null +++ b/site/public/v1/smartphones/arrows-rx-td-lte-jp/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": null, + "camera": 5.4, + "battery": 0.0, + "display": 48.5, + "value": null +} diff --git a/site/public/v1/smartphones/arrows-we-td-lte-jp-f-51b/index.json b/site/public/v1/smartphones/arrows-we-td-lte-jp-f-51b/index.json new file mode 100644 index 00000000000..cf805d3c755 --- /dev/null +++ b/site/public/v1/smartphones/arrows-we-td-lte-jp-f-51b/index.json @@ -0,0 +1,76 @@ +{ + "id": 532, + "slug": "arrows-we-td-lte-jp-f-51b", + "name": "Arrows We TD-LTE JP F-51B", + "brand": { + "id": 69, + "slug": "fujitsu", + "name": "Fujitsu", + "country": "JP", + "url": "/v1/brands/fujitsu" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-12-03", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.179932", + "updated_at": "2026-06-19T00:43:44.179932" +} diff --git a/site/public/v1/smartphones/arrows-we-td-lte-jp-f-51b/score/index.json b/site/public/v1/smartphones/arrows-we-td-lte-jp-f-51b/score/index.json new file mode 100644 index 00000000000..a59635bee66 --- /dev/null +++ b/site/public/v1/smartphones/arrows-we-td-lte-jp-f-51b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/arrows-we-td-lte-jp-fcg01/index.json b/site/public/v1/smartphones/arrows-we-td-lte-jp-fcg01/index.json new file mode 100644 index 00000000000..2e2dd4b9aaa --- /dev/null +++ b/site/public/v1/smartphones/arrows-we-td-lte-jp-fcg01/index.json @@ -0,0 +1,76 @@ +{ + "id": 533, + "slug": "arrows-we-td-lte-jp-fcg01", + "name": "Arrows We TD-LTE JP FCG01", + "brand": { + "id": 69, + "slug": "fujitsu", + "name": "Fujitsu", + "country": "JP", + "url": "/v1/brands/fujitsu" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-12-03", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.179932", + "updated_at": "2026-06-19T00:43:44.179932" +} diff --git a/site/public/v1/smartphones/arrows-we-td-lte-jp-fcg01/score/index.json b/site/public/v1/smartphones/arrows-we-td-lte-jp-fcg01/score/index.json new file mode 100644 index 00000000000..a59635bee66 --- /dev/null +++ b/site/public/v1/smartphones/arrows-we-td-lte-jp-fcg01/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/as110-k-series-k3-2017-lte/index.json b/site/public/v1/smartphones/as110-k-series-k3-2017-lte/index.json new file mode 100644 index 00000000000..ea5be7a8cbf --- /dev/null +++ b/site/public/v1/smartphones/as110-k-series-k3-2017-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 1514, + "slug": "as110-k-series-k3-2017-lte", + "name": "AS110 K Series K3 2017 LTE", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 104, + "slug": "snapdragon-210", + "name": "Snapdragon 210", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-210" + }, + "release_date": "2017-04-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 4.49, + "resolution": "480x854", + "type": "Color IPS TFT LCD display", + "ppi": 218 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "battery_mah": 2100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 132.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "6.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.341605", + "updated_at": "2026-06-19T00:43:44.341605" +} diff --git a/site/public/v1/smartphones/as110-k-series-k3-2017-lte/score/index.json b/site/public/v1/smartphones/as110-k-series-k3-2017-lte/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/as110-k-series-k3-2017-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/atom-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/atom-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..fbb6e9796c9 --- /dev/null +++ b/site/public/v1/smartphones/atom-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 5032, + "slug": "atom-global-dual-sim-td-lte", + "name": "Atom Global Dual SIM TD-LTE", + "brand": { + "id": 42, + "slug": "unihertz", + "name": "Unihertz", + "country": "CN", + "url": "/v1/brands/unihertz" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2018-06-08", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 2.45, + "resolution": "240x432", + "type": "Color IPS TFT LCD display", + "ppi": 202 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 2000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 108.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.843776", + "updated_at": "2026-06-19T00:43:44.843776" +} diff --git a/site/public/v1/smartphones/atom-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/atom-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..5694f3a308b --- /dev/null +++ b/site/public/v1/smartphones/atom-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/ax5-dual-sim-td-lte-tw-cph1851/index.json b/site/public/v1/smartphones/ax5-dual-sim-td-lte-tw-cph1851/index.json new file mode 100644 index 00000000000..2745b728953 --- /dev/null +++ b/site/public/v1/smartphones/ax5-dual-sim-td-lte-tw-cph1851/index.json @@ -0,0 +1,76 @@ +{ + "id": 2747, + "slug": "ax5-dual-sim-td-lte-tw-cph1851", + "name": "AX5 Dual SIM TD-LTE TW CPH1851", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-08-28", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.499307", + "updated_at": "2026-06-19T00:43:44.499307" +} diff --git a/site/public/v1/smartphones/ax5-dual-sim-td-lte-tw-cph1851/score/index.json b/site/public/v1/smartphones/ax5-dual-sim-td-lte-tw-cph1851/score/index.json new file mode 100644 index 00000000000..8556f7d0cec --- /dev/null +++ b/site/public/v1/smartphones/ax5-dual-sim-td-lte-tw-cph1851/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/ax5s-standard-edition-dual-sim-td-lte-tw-sg-au-64gb-cph1920/index.json b/site/public/v1/smartphones/ax5s-standard-edition-dual-sim-td-lte-tw-sg-au-64gb-cph1920/index.json new file mode 100644 index 00000000000..f305b368da2 --- /dev/null +++ b/site/public/v1/smartphones/ax5s-standard-edition-dual-sim-td-lte-tw-sg-au-64gb-cph1920/index.json @@ -0,0 +1,76 @@ +{ + "id": 2860, + "slug": "ax5s-standard-edition-dual-sim-td-lte-tw-sg-au-64gb-cph1920", + "name": "AX5s Standard Edition Dual SIM TD-LTE TW SG AU 64GB CPH1920", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.514917", + "updated_at": "2026-06-19T00:43:44.514917" +} diff --git a/site/public/v1/smartphones/ax5s-standard-edition-dual-sim-td-lte-tw-sg-au-64gb-cph1920/score/index.json b/site/public/v1/smartphones/ax5s-standard-edition-dual-sim-td-lte-tw-sg-au-64gb-cph1920/score/index.json new file mode 100644 index 00000000000..470feae9b91 --- /dev/null +++ b/site/public/v1/smartphones/ax5s-standard-edition-dual-sim-td-lte-tw-sg-au-64gb-cph1920/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/ax7-dual-sim-td-lte-jp-64gb-cph1903/index.json b/site/public/v1/smartphones/ax7-dual-sim-td-lte-jp-64gb-cph1903/index.json new file mode 100644 index 00000000000..51737bf7142 --- /dev/null +++ b/site/public/v1/smartphones/ax7-dual-sim-td-lte-jp-64gb-cph1903/index.json @@ -0,0 +1,76 @@ +{ + "id": 2748, + "slug": "ax7-dual-sim-td-lte-jp-64gb-cph1903", + "name": "AX7 Dual SIM TD-LTE JP 64GB CPH1903", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-12-14", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.18, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 272 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.499307", + "updated_at": "2026-06-19T00:43:44.499307" +} diff --git a/site/public/v1/smartphones/ax7-dual-sim-td-lte-jp-64gb-cph1903/score/index.json b/site/public/v1/smartphones/ax7-dual-sim-td-lte-jp-64gb-cph1903/score/index.json new file mode 100644 index 00000000000..8556f7d0cec --- /dev/null +++ b/site/public/v1/smartphones/ax7-dual-sim-td-lte-jp-64gb-cph1903/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/ax7-global-dual-sim-td-lte-64gb-cph1903/index.json b/site/public/v1/smartphones/ax7-global-dual-sim-td-lte-64gb-cph1903/index.json new file mode 100644 index 00000000000..532824b14a1 --- /dev/null +++ b/site/public/v1/smartphones/ax7-global-dual-sim-td-lte-64gb-cph1903/index.json @@ -0,0 +1,76 @@ +{ + "id": 2749, + "slug": "ax7-global-dual-sim-td-lte-64gb-cph1903", + "name": "AX7 Global Dual SIM TD-LTE 64GB CPH1903", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-12-14", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.18, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 272 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.499307", + "updated_at": "2026-06-19T00:43:44.499307" +} diff --git a/site/public/v1/smartphones/ax7-global-dual-sim-td-lte-64gb-cph1903/score/index.json b/site/public/v1/smartphones/ax7-global-dual-sim-td-lte-64gb-cph1903/score/index.json new file mode 100644 index 00000000000..8556f7d0cec --- /dev/null +++ b/site/public/v1/smartphones/ax7-global-dual-sim-td-lte-64gb-cph1903/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/axon-10-pro-5g-a2020n2-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/axon-10-pro-5g-a2020n2-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..8d5e8199aed --- /dev/null +++ b/site/public/v1/smartphones/axon-10-pro-5g-a2020n2-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 6419, + "slug": "axon-10-pro-5g-a2020n2-dual-sim-td-lte-cn-128gb", + "name": "Axon 10 Pro 5G A2020N2 Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.007824", + "updated_at": "2026-06-19T00:43:45.007824" +} diff --git a/site/public/v1/smartphones/axon-10-pro-5g-a2020n2-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/axon-10-pro-5g-a2020n2-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..39021bde852 --- /dev/null +++ b/site/public/v1/smartphones/axon-10-pro-5g-a2020n2-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/axon-10-pro-5g-a2020n2-dual-sim-td-lte-cn-256gb/index.json b/site/public/v1/smartphones/axon-10-pro-5g-a2020n2-dual-sim-td-lte-cn-256gb/index.json new file mode 100644 index 00000000000..2d66c9a0e50 --- /dev/null +++ b/site/public/v1/smartphones/axon-10-pro-5g-a2020n2-dual-sim-td-lte-cn-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 6420, + "slug": "axon-10-pro-5g-a2020n2-dual-sim-td-lte-cn-256gb", + "name": "Axon 10 Pro 5G A2020N2 Dual SIM TD-LTE CN 256GB", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 3.0, + "camera": 16.5, + "battery": 15.6, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.007824", + "updated_at": "2026-06-19T00:43:45.007824" +} diff --git a/site/public/v1/smartphones/axon-10-pro-5g-a2020n2-dual-sim-td-lte-cn-256gb/score/index.json b/site/public/v1/smartphones/axon-10-pro-5g-a2020n2-dual-sim-td-lte-cn-256gb/score/index.json new file mode 100644 index 00000000000..5356ec74789 --- /dev/null +++ b/site/public/v1/smartphones/axon-10-pro-5g-a2020n2-dual-sim-td-lte-cn-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 3.0, + "camera": 16.5, + "battery": 15.6, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/axon-10-pro-5g-a2020n3-premium-edition-dual-sim-td-lte-emea-128gb/index.json b/site/public/v1/smartphones/axon-10-pro-5g-a2020n3-premium-edition-dual-sim-td-lte-emea-128gb/index.json new file mode 100644 index 00000000000..20f4d672f99 --- /dev/null +++ b/site/public/v1/smartphones/axon-10-pro-5g-a2020n3-premium-edition-dual-sim-td-lte-emea-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 6421, + "slug": "axon-10-pro-5g-a2020n3-premium-edition-dual-sim-td-lte-emea-128gb", + "name": "Axon 10 Pro 5G A2020N3 Premium Edition Dual SIM TD-LTE EMEA 128GB", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-29", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.007824", + "updated_at": "2026-06-19T00:43:45.007824" +} diff --git a/site/public/v1/smartphones/axon-10-pro-5g-a2020n3-premium-edition-dual-sim-td-lte-emea-128gb/score/index.json b/site/public/v1/smartphones/axon-10-pro-5g-a2020n3-premium-edition-dual-sim-td-lte-emea-128gb/score/index.json new file mode 100644 index 00000000000..39021bde852 --- /dev/null +++ b/site/public/v1/smartphones/axon-10-pro-5g-a2020n3-premium-edition-dual-sim-td-lte-emea-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/axon-10-pro-5g-a2020n3-premium-edition-dual-sim-td-lte-emea-256gb/index.json b/site/public/v1/smartphones/axon-10-pro-5g-a2020n3-premium-edition-dual-sim-td-lte-emea-256gb/index.json new file mode 100644 index 00000000000..b60f88f0db8 --- /dev/null +++ b/site/public/v1/smartphones/axon-10-pro-5g-a2020n3-premium-edition-dual-sim-td-lte-emea-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 6422, + "slug": "axon-10-pro-5g-a2020n3-premium-edition-dual-sim-td-lte-emea-256gb", + "name": "Axon 10 Pro 5G A2020N3 Premium Edition Dual SIM TD-LTE EMEA 256GB", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-29", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 3.0, + "camera": 16.5, + "battery": 15.6, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.007824", + "updated_at": "2026-06-19T00:43:45.007824" +} diff --git a/site/public/v1/smartphones/axon-10-pro-5g-a2020n3-premium-edition-dual-sim-td-lte-emea-256gb/score/index.json b/site/public/v1/smartphones/axon-10-pro-5g-a2020n3-premium-edition-dual-sim-td-lte-emea-256gb/score/index.json new file mode 100644 index 00000000000..5356ec74789 --- /dev/null +++ b/site/public/v1/smartphones/axon-10-pro-5g-a2020n3-premium-edition-dual-sim-td-lte-emea-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 3.0, + "camera": 16.5, + "battery": 15.6, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/axon-10-pro-5g-td-lte-jp-902zt/index.json b/site/public/v1/smartphones/axon-10-pro-5g-td-lte-jp-902zt/index.json new file mode 100644 index 00000000000..5c9d8a170cf --- /dev/null +++ b/site/public/v1/smartphones/axon-10-pro-5g-td-lte-jp-902zt/index.json @@ -0,0 +1,76 @@ +{ + "id": 6460, + "slug": "axon-10-pro-5g-td-lte-jp-902zt", + "name": "Axon 10 Pro 5G TD-LTE JP 902ZT", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-27", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.012824", + "updated_at": "2026-06-19T00:43:45.012824" +} diff --git a/site/public/v1/smartphones/axon-10-pro-5g-td-lte-jp-902zt/score/index.json b/site/public/v1/smartphones/axon-10-pro-5g-td-lte-jp-902zt/score/index.json new file mode 100644 index 00000000000..14415c9192b --- /dev/null +++ b/site/public/v1/smartphones/axon-10-pro-5g-td-lte-jp-902zt/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/axon-10-pro-a2020-premium-edition-dual-sim-td-lte-cn-256gb/index.json b/site/public/v1/smartphones/axon-10-pro-a2020-premium-edition-dual-sim-td-lte-cn-256gb/index.json new file mode 100644 index 00000000000..c43972eef78 --- /dev/null +++ b/site/public/v1/smartphones/axon-10-pro-a2020-premium-edition-dual-sim-td-lte-cn-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 6423, + "slug": "axon-10-pro-a2020-premium-edition-dual-sim-td-lte-cn-256gb", + "name": "Axon 10 Pro A2020 Premium Edition Dual SIM TD-LTE CN 256GB", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-07", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 3.0, + "camera": 16.5, + "battery": 15.6, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.007824", + "updated_at": "2026-06-19T00:43:45.007824" +} diff --git a/site/public/v1/smartphones/axon-10-pro-a2020-premium-edition-dual-sim-td-lte-cn-256gb/score/index.json b/site/public/v1/smartphones/axon-10-pro-a2020-premium-edition-dual-sim-td-lte-cn-256gb/score/index.json new file mode 100644 index 00000000000..5356ec74789 --- /dev/null +++ b/site/public/v1/smartphones/axon-10-pro-a2020-premium-edition-dual-sim-td-lte-cn-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 3.0, + "camera": 16.5, + "battery": 15.6, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/axon-10-pro-a2020-standard-edition-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/axon-10-pro-a2020-standard-edition-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..75bae90ff6b --- /dev/null +++ b/site/public/v1/smartphones/axon-10-pro-a2020-standard-edition-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 6424, + "slug": "axon-10-pro-a2020-standard-edition-dual-sim-td-lte-cn-128gb", + "name": "Axon 10 Pro A2020 Standard Edition Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-07", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.007824", + "updated_at": "2026-06-19T00:43:45.007824" +} diff --git a/site/public/v1/smartphones/axon-10-pro-a2020-standard-edition-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/axon-10-pro-a2020-standard-edition-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..39021bde852 --- /dev/null +++ b/site/public/v1/smartphones/axon-10-pro-a2020-standard-edition-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/axon-10-pro-a2020-top-edition-dual-sim-td-lte-cn-256gb/index.json b/site/public/v1/smartphones/axon-10-pro-a2020-top-edition-dual-sim-td-lte-cn-256gb/index.json new file mode 100644 index 00000000000..bea6c3ceb7e --- /dev/null +++ b/site/public/v1/smartphones/axon-10-pro-a2020-top-edition-dual-sim-td-lte-cn-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 6425, + "slug": "axon-10-pro-a2020-top-edition-dual-sim-td-lte-cn-256gb", + "name": "Axon 10 Pro A2020 Top Edition Dual SIM TD-LTE CN 256GB", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-07", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 6.0, + "camera": 16.5, + "battery": 15.6, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.008824", + "updated_at": "2026-06-19T00:43:45.008824" +} diff --git a/site/public/v1/smartphones/axon-10-pro-a2020-top-edition-dual-sim-td-lte-cn-256gb/score/index.json b/site/public/v1/smartphones/axon-10-pro-a2020-top-edition-dual-sim-td-lte-cn-256gb/score/index.json new file mode 100644 index 00000000000..f27cdcc68ef --- /dev/null +++ b/site/public/v1/smartphones/axon-10-pro-a2020-top-edition-dual-sim-td-lte-cn-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 6.0, + "camera": 16.5, + "battery": 15.6, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/axon-10-pro-a2020g-premium-edition-global-dual-sim-td-lte-256gb/index.json b/site/public/v1/smartphones/axon-10-pro-a2020g-premium-edition-global-dual-sim-td-lte-256gb/index.json new file mode 100644 index 00000000000..1eacf286302 --- /dev/null +++ b/site/public/v1/smartphones/axon-10-pro-a2020g-premium-edition-global-dual-sim-td-lte-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 6426, + "slug": "axon-10-pro-a2020g-premium-edition-global-dual-sim-td-lte-256gb", + "name": "Axon 10 Pro A2020G Premium Edition Global Dual SIM TD-LTE 256GB", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 3.0, + "camera": 16.5, + "battery": 15.6, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.008824", + "updated_at": "2026-06-19T00:43:45.008824" +} diff --git a/site/public/v1/smartphones/axon-10-pro-a2020g-premium-edition-global-dual-sim-td-lte-256gb/score/index.json b/site/public/v1/smartphones/axon-10-pro-a2020g-premium-edition-global-dual-sim-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..5356ec74789 --- /dev/null +++ b/site/public/v1/smartphones/axon-10-pro-a2020g-premium-edition-global-dual-sim-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 3.0, + "camera": 16.5, + "battery": 15.6, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/axon-10-pro-a2020g-standard-edition-global-dual-sim-td-lte-128gb-a2020ru/index.json b/site/public/v1/smartphones/axon-10-pro-a2020g-standard-edition-global-dual-sim-td-lte-128gb-a2020ru/index.json new file mode 100644 index 00000000000..de46573d6c7 --- /dev/null +++ b/site/public/v1/smartphones/axon-10-pro-a2020g-standard-edition-global-dual-sim-td-lte-128gb-a2020ru/index.json @@ -0,0 +1,76 @@ +{ + "id": 6427, + "slug": "axon-10-pro-a2020g-standard-edition-global-dual-sim-td-lte-128gb-a2020ru", + "name": "Axon 10 Pro A2020G Standard Edition Global Dual SIM TD-LTE 128GB / A2020RU", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.008824", + "updated_at": "2026-06-19T00:43:45.008824" +} diff --git a/site/public/v1/smartphones/axon-10-pro-a2020g-standard-edition-global-dual-sim-td-lte-128gb-a2020ru/score/index.json b/site/public/v1/smartphones/axon-10-pro-a2020g-standard-edition-global-dual-sim-td-lte-128gb-a2020ru/score/index.json new file mode 100644 index 00000000000..39021bde852 --- /dev/null +++ b/site/public/v1/smartphones/axon-10-pro-a2020g-standard-edition-global-dual-sim-td-lte-128gb-a2020ru/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/axon-10-pro-a2020g-top-edition-global-dual-sim-td-lte-256gb/index.json b/site/public/v1/smartphones/axon-10-pro-a2020g-top-edition-global-dual-sim-td-lte-256gb/index.json new file mode 100644 index 00000000000..cdcf1a5898b --- /dev/null +++ b/site/public/v1/smartphones/axon-10-pro-a2020g-top-edition-global-dual-sim-td-lte-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 6428, + "slug": "axon-10-pro-a2020g-top-edition-global-dual-sim-td-lte-256gb", + "name": "Axon 10 Pro A2020G Top Edition Global Dual SIM TD-LTE 256GB", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-08-27", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 6.0, + "camera": 16.5, + "battery": 15.6, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.008824", + "updated_at": "2026-06-19T00:43:45.008824" +} diff --git a/site/public/v1/smartphones/axon-10-pro-a2020g-top-edition-global-dual-sim-td-lte-256gb/score/index.json b/site/public/v1/smartphones/axon-10-pro-a2020g-top-edition-global-dual-sim-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..f27cdcc68ef --- /dev/null +++ b/site/public/v1/smartphones/axon-10-pro-a2020g-top-edition-global-dual-sim-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 6.0, + "camera": 16.5, + "battery": 15.6, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/axon-10s-pro-5g-a2020-sp-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/axon-10s-pro-5g-a2020-sp-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..422feb1c02e --- /dev/null +++ b/site/public/v1/smartphones/axon-10s-pro-5g-a2020-sp-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 6461, + "slug": "axon-10s-pro-5g-a2020-sp-dual-sim-td-lte-cn-128gb", + "name": "Axon 10S Pro 5G A2020 SP Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-02-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.012824", + "updated_at": "2026-06-19T00:43:45.012824" +} diff --git a/site/public/v1/smartphones/axon-10s-pro-5g-a2020-sp-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/axon-10s-pro-5g-a2020-sp-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..14415c9192b --- /dev/null +++ b/site/public/v1/smartphones/axon-10s-pro-5g-a2020-sp-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/axon-10s-pro-5g-a2020-sp-dual-sim-td-lte-cn-256gb/index.json b/site/public/v1/smartphones/axon-10s-pro-5g-a2020-sp-dual-sim-td-lte-cn-256gb/index.json new file mode 100644 index 00000000000..cd3a36f0658 --- /dev/null +++ b/site/public/v1/smartphones/axon-10s-pro-5g-a2020-sp-dual-sim-td-lte-cn-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 6462, + "slug": "axon-10s-pro-5g-a2020-sp-dual-sim-td-lte-cn-256gb", + "name": "Axon 10S Pro 5G A2020 SP Dual SIM TD-LTE CN 256GB", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-02-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 6.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.012824", + "updated_at": "2026-06-19T00:43:45.012824" +} diff --git a/site/public/v1/smartphones/axon-10s-pro-5g-a2020-sp-dual-sim-td-lte-cn-256gb/score/index.json b/site/public/v1/smartphones/axon-10s-pro-5g-a2020-sp-dual-sim-td-lte-cn-256gb/score/index.json new file mode 100644 index 00000000000..7a697396d67 --- /dev/null +++ b/site/public/v1/smartphones/axon-10s-pro-5g-a2020-sp-dual-sim-td-lte-cn-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 6.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/axon-11-4g-global-dual-sim-lte-a-128gb/index.json b/site/public/v1/smartphones/axon-11-4g-global-dual-sim-lte-a-128gb/index.json new file mode 100644 index 00000000000..597116dea67 --- /dev/null +++ b/site/public/v1/smartphones/axon-11-4g-global-dual-sim-lte-a-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 6463, + "slug": "axon-11-4g-global-dual-sim-lte-a-128gb", + "name": "Axon 11 4G Global Dual SIM LTE-A 128GB", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2020-06-17", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.013824", + "updated_at": "2026-06-19T00:43:45.013824" +} diff --git a/site/public/v1/smartphones/axon-11-4g-global-dual-sim-lte-a-128gb/score/index.json b/site/public/v1/smartphones/axon-11-4g-global-dual-sim-lte-a-128gb/score/index.json new file mode 100644 index 00000000000..14415c9192b --- /dev/null +++ b/site/public/v1/smartphones/axon-11-4g-global-dual-sim-lte-a-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/axon-11-5g-premium-edition-a2021-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/axon-11-5g-premium-edition-a2021-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..aa4ffa6995b --- /dev/null +++ b/site/public/v1/smartphones/axon-11-5g-premium-edition-a2021-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 6464, + "slug": "axon-11-5g-premium-edition-a2021-dual-sim-td-lte-cn-128gb", + "name": "Axon 11 5G Premium Edition A2021 Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 21.7, + "battery": 15.0, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.013824", + "updated_at": "2026-06-19T00:43:45.013824" +} diff --git a/site/public/v1/smartphones/axon-11-5g-premium-edition-a2021-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/axon-11-5g-premium-edition-a2021-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..1aa1bf50200 --- /dev/null +++ b/site/public/v1/smartphones/axon-11-5g-premium-edition-a2021-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 21.7, + "battery": 15.0, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/axon-11-5g-premium-edition-a2021-dual-sim-td-lte-cn-256gb-a2021h/index.json b/site/public/v1/smartphones/axon-11-5g-premium-edition-a2021-dual-sim-td-lte-cn-256gb-a2021h/index.json new file mode 100644 index 00000000000..4ac0346bf6a --- /dev/null +++ b/site/public/v1/smartphones/axon-11-5g-premium-edition-a2021-dual-sim-td-lte-cn-256gb-a2021h/index.json @@ -0,0 +1,76 @@ +{ + "id": 6465, + "slug": "axon-11-5g-premium-edition-a2021-dual-sim-td-lte-cn-256gb-a2021h", + "name": "Axon 11 5G Premium Edition A2021 Dual SIM TD-LTE CN 256GB / A2021H", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 21.7, + "battery": 15.0, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.013824", + "updated_at": "2026-06-19T00:43:45.013824" +} diff --git a/site/public/v1/smartphones/axon-11-5g-premium-edition-a2021-dual-sim-td-lte-cn-256gb-a2021h/score/index.json b/site/public/v1/smartphones/axon-11-5g-premium-edition-a2021-dual-sim-td-lte-cn-256gb-a2021h/score/index.json new file mode 100644 index 00000000000..1aa1bf50200 --- /dev/null +++ b/site/public/v1/smartphones/axon-11-5g-premium-edition-a2021-dual-sim-td-lte-cn-256gb-a2021h/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 21.7, + "battery": 15.0, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/axon-11-5g-premium-edition-a2021-global-dual-sim-td-lte-256gb/index.json b/site/public/v1/smartphones/axon-11-5g-premium-edition-a2021-global-dual-sim-td-lte-256gb/index.json new file mode 100644 index 00000000000..975587e2d99 --- /dev/null +++ b/site/public/v1/smartphones/axon-11-5g-premium-edition-a2021-global-dual-sim-td-lte-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 6466, + "slug": "axon-11-5g-premium-edition-a2021-global-dual-sim-td-lte-256gb", + "name": "Axon 11 5G Premium Edition A2021 Global Dual SIM TD-LTE 256GB", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-06-17", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 3.0, + "camera": 21.7, + "battery": 15.6, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.013824", + "updated_at": "2026-06-19T00:43:45.013824" +} diff --git a/site/public/v1/smartphones/axon-11-5g-premium-edition-a2021-global-dual-sim-td-lte-256gb/score/index.json b/site/public/v1/smartphones/axon-11-5g-premium-edition-a2021-global-dual-sim-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..c07b32a992c --- /dev/null +++ b/site/public/v1/smartphones/axon-11-5g-premium-edition-a2021-global-dual-sim-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 3.0, + "camera": 21.7, + "battery": 15.6, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/axon-11-5g-standard-edition-a2021-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/axon-11-5g-standard-edition-a2021-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..68eb2416a99 --- /dev/null +++ b/site/public/v1/smartphones/axon-11-5g-standard-edition-a2021-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 6467, + "slug": "axon-11-5g-standard-edition-a2021-dual-sim-td-lte-cn-128gb", + "name": "Axon 11 5G Standard Edition A2021 Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 1.5, + "camera": 21.7, + "battery": 15.0, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.013824", + "updated_at": "2026-06-19T00:43:45.013824" +} diff --git a/site/public/v1/smartphones/axon-11-5g-standard-edition-a2021-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/axon-11-5g-standard-edition-a2021-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..71eae13c873 --- /dev/null +++ b/site/public/v1/smartphones/axon-11-5g-standard-edition-a2021-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 1.5, + "camera": 21.7, + "battery": 15.0, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/axon-11-5g-standard-edition-a2021-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/axon-11-5g-standard-edition-a2021-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..226f35e3b8f --- /dev/null +++ b/site/public/v1/smartphones/axon-11-5g-standard-edition-a2021-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 6468, + "slug": "axon-11-5g-standard-edition-a2021-global-dual-sim-td-lte-128gb", + "name": "Axon 11 5G Standard Edition A2021 Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-06-17", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": 1.5, + "camera": 21.7, + "battery": 15.6, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.013824", + "updated_at": "2026-06-19T00:43:45.013824" +} diff --git a/site/public/v1/smartphones/axon-11-5g-standard-edition-a2021-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/axon-11-5g-standard-edition-a2021-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..b40246a3919 --- /dev/null +++ b/site/public/v1/smartphones/axon-11-5g-standard-edition-a2021-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": 1.5, + "camera": 21.7, + "battery": 15.6, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/axon-20-4g-global-dual-sim-td-lte-128gb-a2121e/index.json b/site/public/v1/smartphones/axon-20-4g-global-dual-sim-td-lte-128gb-a2121e/index.json new file mode 100644 index 00000000000..6f54d9b5a92 --- /dev/null +++ b/site/public/v1/smartphones/axon-20-4g-global-dual-sim-td-lte-128gb-a2121e/index.json @@ -0,0 +1,77 @@ +{ + "id": 6469, + "slug": "axon-20-4g-global-dual-sim-td-lte-128gb-a2121e", + "name": "Axon 20 4G Global Dual SIM TD-LTE 128GB A2121E", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 212, + "slug": "tiger-t618", + "name": "Unisoc Tiger T618", + "manufacturer": { + "slug": "unisoc", + "name": "UNISOC", + "url": "/v1/brands/unisoc" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/tiger-t618" + }, + "release_date": "2020-12-04", + "msrp_usd": 399, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4220, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 21.7, + "battery": 18.3, + "display": 38.8, + "value": 56.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.013824", + "updated_at": "2026-06-19T00:43:45.013824" +} diff --git a/site/public/v1/smartphones/axon-20-4g-global-dual-sim-td-lte-128gb-a2121e/score/index.json b/site/public/v1/smartphones/axon-20-4g-global-dual-sim-td-lte-128gb-a2121e/score/index.json new file mode 100644 index 00000000000..cd9f2fdc8a0 --- /dev/null +++ b/site/public/v1/smartphones/axon-20-4g-global-dual-sim-td-lte-128gb-a2121e/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 21.7, + "battery": 18.3, + "display": 38.8, + "value": 56.2 +} diff --git a/site/public/v1/smartphones/axon-20-5g-extreme-edition-dual-sim-td-lte-cn-256gb-a2121/index.json b/site/public/v1/smartphones/axon-20-5g-extreme-edition-dual-sim-td-lte-cn-256gb-a2121/index.json new file mode 100644 index 00000000000..522d3175cd4 --- /dev/null +++ b/site/public/v1/smartphones/axon-20-5g-extreme-edition-dual-sim-td-lte-cn-256gb-a2121/index.json @@ -0,0 +1,77 @@ +{ + "id": 6470, + "slug": "axon-20-5g-extreme-edition-dual-sim-td-lte-cn-256gb-a2121", + "name": "Axon 20 5G Extreme Edition Dual SIM TD-LTE CN 256GB A2121", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-12-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4220, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 6.0, + "camera": 21.7, + "battery": 21.2, + "display": 38.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.013824", + "updated_at": "2026-06-19T00:43:45.013824" +} diff --git a/site/public/v1/smartphones/axon-20-5g-extreme-edition-dual-sim-td-lte-cn-256gb-a2121/score/index.json b/site/public/v1/smartphones/axon-20-5g-extreme-edition-dual-sim-td-lte-cn-256gb-a2121/score/index.json new file mode 100644 index 00000000000..a93e64a7160 --- /dev/null +++ b/site/public/v1/smartphones/axon-20-5g-extreme-edition-dual-sim-td-lte-cn-256gb-a2121/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 6.0, + "camera": 21.7, + "battery": 21.2, + "display": 38.8, + "value": null +} diff --git a/site/public/v1/smartphones/axon-20-5g-global-dual-sim-td-lte-128gb-a2121g/index.json b/site/public/v1/smartphones/axon-20-5g-global-dual-sim-td-lte-128gb-a2121g/index.json new file mode 100644 index 00000000000..9804a9cac3b --- /dev/null +++ b/site/public/v1/smartphones/axon-20-5g-global-dual-sim-td-lte-128gb-a2121g/index.json @@ -0,0 +1,77 @@ +{ + "id": 6503, + "slug": "axon-20-5g-global-dual-sim-td-lte-128gb-a2121g", + "name": "Axon 20 5G Global Dual SIM TD-LTE 128GB A2121G", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2021-04-01", + "msrp_usd": 449, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4220, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 3.0, + "camera": 21.7, + "battery": 21.2, + "display": 38.8, + "value": 54.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.017824", + "updated_at": "2026-06-19T00:43:45.017824" +} diff --git a/site/public/v1/smartphones/axon-20-5g-global-dual-sim-td-lte-128gb-a2121g/score/index.json b/site/public/v1/smartphones/axon-20-5g-global-dual-sim-td-lte-128gb-a2121g/score/index.json new file mode 100644 index 00000000000..685280c18a1 --- /dev/null +++ b/site/public/v1/smartphones/axon-20-5g-global-dual-sim-td-lte-128gb-a2121g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 3.0, + "camera": 21.7, + "battery": 21.2, + "display": 38.8, + "value": 54.9 +} diff --git a/site/public/v1/smartphones/axon-20-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2121-a20/index.json b/site/public/v1/smartphones/axon-20-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2121-a20/index.json new file mode 100644 index 00000000000..cb02503a7a2 --- /dev/null +++ b/site/public/v1/smartphones/axon-20-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2121-a20/index.json @@ -0,0 +1,77 @@ +{ + "id": 6471, + "slug": "axon-20-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2121-a20", + "name": "Axon 20 5G Standard Edition Dual SIM TD-LTE CN 128GB A2121 / A20", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-11-11", + "msrp_usd": 2198, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4220, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 1.5, + "camera": 21.7, + "battery": 21.2, + "display": 38.8, + "value": 10.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.014824", + "updated_at": "2026-06-19T00:43:45.014824" +} diff --git a/site/public/v1/smartphones/axon-20-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2121-a20/score/index.json b/site/public/v1/smartphones/axon-20-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2121-a20/score/index.json new file mode 100644 index 00000000000..d81736dbc5a --- /dev/null +++ b/site/public/v1/smartphones/axon-20-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2121-a20/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 1.5, + "camera": 21.7, + "battery": 21.2, + "display": 38.8, + "value": 10.4 +} diff --git a/site/public/v1/smartphones/axon-30-5g-premium-edition-dual-sim-td-lte-cn-128gb-a2322/index.json b/site/public/v1/smartphones/axon-30-5g-premium-edition-dual-sim-td-lte-cn-128gb-a2322/index.json new file mode 100644 index 00000000000..fae935cc04b --- /dev/null +++ b/site/public/v1/smartphones/axon-30-5g-premium-edition-dual-sim-td-lte-cn-128gb-a2322/index.json @@ -0,0 +1,77 @@ +{ + "id": 6504, + "slug": "axon-30-5g-premium-edition-dual-sim-td-lte-cn-128gb-a2322", + "name": "Axon 30 5G Premium Edition Dual SIM TD-LTE CN 128GB A2322", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-08-03", + "msrp_usd": 2498, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 6.1, + "camera": 21.7, + "battery": 27.5, + "display": 51.3, + "value": 13.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.017824", + "updated_at": "2026-06-19T00:43:45.017824" +} diff --git a/site/public/v1/smartphones/axon-30-5g-premium-edition-dual-sim-td-lte-cn-128gb-a2322/score/index.json b/site/public/v1/smartphones/axon-30-5g-premium-edition-dual-sim-td-lte-cn-128gb-a2322/score/index.json new file mode 100644 index 00000000000..ebc76e98672 --- /dev/null +++ b/site/public/v1/smartphones/axon-30-5g-premium-edition-dual-sim-td-lte-cn-128gb-a2322/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 6.1, + "camera": 21.7, + "battery": 27.5, + "display": 51.3, + "value": 13.3 +} diff --git a/site/public/v1/smartphones/axon-30-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2322/index.json b/site/public/v1/smartphones/axon-30-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2322/index.json new file mode 100644 index 00000000000..3df79f82a4b --- /dev/null +++ b/site/public/v1/smartphones/axon-30-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2322/index.json @@ -0,0 +1,77 @@ +{ + "id": 6505, + "slug": "axon-30-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2322", + "name": "Axon 30 5G Premium Edition Dual SIM TD-LTE CN 256GB A2322", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-08-03", + "msrp_usd": 2798, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 6.1, + "camera": 21.7, + "battery": 27.5, + "display": 51.3, + "value": 13.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.017824", + "updated_at": "2026-06-19T00:43:45.017824" +} diff --git a/site/public/v1/smartphones/axon-30-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2322/score/index.json b/site/public/v1/smartphones/axon-30-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2322/score/index.json new file mode 100644 index 00000000000..ebc76e98672 --- /dev/null +++ b/site/public/v1/smartphones/axon-30-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2322/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 6.1, + "camera": 21.7, + "battery": 27.5, + "display": 51.3, + "value": 13.3 +} diff --git a/site/public/v1/smartphones/axon-30-5g-premium-edition-global-dual-sim-td-lte-128gb-a2322g/index.json b/site/public/v1/smartphones/axon-30-5g-premium-edition-global-dual-sim-td-lte-128gb-a2322g/index.json new file mode 100644 index 00000000000..e4aa4be5aaf --- /dev/null +++ b/site/public/v1/smartphones/axon-30-5g-premium-edition-global-dual-sim-td-lte-128gb-a2322g/index.json @@ -0,0 +1,77 @@ +{ + "id": 6506, + "slug": "axon-30-5g-premium-edition-global-dual-sim-td-lte-128gb-a2322g", + "name": "Axon 30 5G Premium Edition Global Dual SIM TD-LTE 128GB A2322G", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-09-09", + "msrp_usd": 499, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 6.1, + "camera": 21.7, + "battery": 27.5, + "display": 51.3, + "value": 55.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.017824", + "updated_at": "2026-06-19T00:43:45.017824" +} diff --git a/site/public/v1/smartphones/axon-30-5g-premium-edition-global-dual-sim-td-lte-128gb-a2322g/score/index.json b/site/public/v1/smartphones/axon-30-5g-premium-edition-global-dual-sim-td-lte-128gb-a2322g/score/index.json new file mode 100644 index 00000000000..ef52082f733 --- /dev/null +++ b/site/public/v1/smartphones/axon-30-5g-premium-edition-global-dual-sim-td-lte-128gb-a2322g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 6.1, + "camera": 21.7, + "battery": 27.5, + "display": 51.3, + "value": 55.7 +} diff --git a/site/public/v1/smartphones/axon-30-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2322/index.json b/site/public/v1/smartphones/axon-30-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2322/index.json new file mode 100644 index 00000000000..9bc83c95ccf --- /dev/null +++ b/site/public/v1/smartphones/axon-30-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2322/index.json @@ -0,0 +1,77 @@ +{ + "id": 6507, + "slug": "axon-30-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2322", + "name": "Axon 30 5G Standard Edition Dual SIM TD-LTE CN 128GB A2322", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-08-03", + "msrp_usd": 2198, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.3, + "performance": 4.6, + "camera": 21.7, + "battery": 27.5, + "display": 51.3, + "value": 13.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.018824", + "updated_at": "2026-06-19T00:43:45.018824" +} diff --git a/site/public/v1/smartphones/axon-30-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2322/score/index.json b/site/public/v1/smartphones/axon-30-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2322/score/index.json new file mode 100644 index 00000000000..06d3462cec8 --- /dev/null +++ b/site/public/v1/smartphones/axon-30-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2322/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.3, + "performance": 4.6, + "camera": 21.7, + "battery": 27.5, + "display": 51.3, + "value": 13.2 +} diff --git a/site/public/v1/smartphones/axon-30-5g-top-edition-dual-sim-td-lte-cn-256gb-a2322/index.json b/site/public/v1/smartphones/axon-30-5g-top-edition-dual-sim-td-lte-cn-256gb-a2322/index.json new file mode 100644 index 00000000000..1e5b09cab3d --- /dev/null +++ b/site/public/v1/smartphones/axon-30-5g-top-edition-dual-sim-td-lte-cn-256gb-a2322/index.json @@ -0,0 +1,77 @@ +{ + "id": 6508, + "slug": "axon-30-5g-top-edition-dual-sim-td-lte-cn-256gb-a2322", + "name": "Axon 30 5G Top Edition Dual SIM TD-LTE CN 256GB A2322", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-08-03", + "msrp_usd": 3098, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 9.1, + "camera": 21.7, + "battery": 27.5, + "display": 51.3, + "value": 13.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.018824", + "updated_at": "2026-06-19T00:43:45.018824" +} diff --git a/site/public/v1/smartphones/axon-30-5g-top-edition-dual-sim-td-lte-cn-256gb-a2322/score/index.json b/site/public/v1/smartphones/axon-30-5g-top-edition-dual-sim-td-lte-cn-256gb-a2322/score/index.json new file mode 100644 index 00000000000..1a07cdbb5bf --- /dev/null +++ b/site/public/v1/smartphones/axon-30-5g-top-edition-dual-sim-td-lte-cn-256gb-a2322/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 9.1, + "camera": 21.7, + "battery": 27.5, + "display": 51.3, + "value": 13.7 +} diff --git a/site/public/v1/smartphones/axon-30-5g-top-edition-global-dual-sim-td-lte-256gb-a2322g/index.json b/site/public/v1/smartphones/axon-30-5g-top-edition-global-dual-sim-td-lte-256gb-a2322g/index.json new file mode 100644 index 00000000000..e92abe77cff --- /dev/null +++ b/site/public/v1/smartphones/axon-30-5g-top-edition-global-dual-sim-td-lte-256gb-a2322g/index.json @@ -0,0 +1,77 @@ +{ + "id": 6509, + "slug": "axon-30-5g-top-edition-global-dual-sim-td-lte-256gb-a2322g", + "name": "Axon 30 5G Top Edition Global Dual SIM TD-LTE 256GB A2322G", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-09-09", + "msrp_usd": 599, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 9.1, + "camera": 21.7, + "battery": 27.5, + "display": 51.3, + "value": 52.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.018824", + "updated_at": "2026-06-19T00:43:45.018824" +} diff --git a/site/public/v1/smartphones/axon-30-5g-top-edition-global-dual-sim-td-lte-256gb-a2322g/score/index.json b/site/public/v1/smartphones/axon-30-5g-top-edition-global-dual-sim-td-lte-256gb-a2322g/score/index.json new file mode 100644 index 00000000000..cc60cf605bb --- /dev/null +++ b/site/public/v1/smartphones/axon-30-5g-top-edition-global-dual-sim-td-lte-256gb-a2322g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 9.1, + "camera": 21.7, + "battery": 27.5, + "display": 51.3, + "value": 52.2 +} diff --git a/site/public/v1/smartphones/axon-30-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-a2022/index.json b/site/public/v1/smartphones/axon-30-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-a2022/index.json new file mode 100644 index 00000000000..9cb2c052204 --- /dev/null +++ b/site/public/v1/smartphones/axon-30-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-a2022/index.json @@ -0,0 +1,77 @@ +{ + "id": 6510, + "slug": "axon-30-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-a2022", + "name": "Axon 30 Pro 5G Premium Edition Dual SIM TD-LTE CN 128GB A2022", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-16", + "msrp_usd": 3298, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.4, + "performance": 6.4, + "camera": 21.7, + "battery": 35.6, + "display": 62.0, + "value": 15.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.018824", + "updated_at": "2026-06-19T00:43:45.018824" +} diff --git a/site/public/v1/smartphones/axon-30-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-a2022/score/index.json b/site/public/v1/smartphones/axon-30-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-a2022/score/index.json new file mode 100644 index 00000000000..db06355276f --- /dev/null +++ b/site/public/v1/smartphones/axon-30-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-a2022/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.4, + "performance": 6.4, + "camera": 21.7, + "battery": 35.6, + "display": 62.0, + "value": 15.7 +} diff --git a/site/public/v1/smartphones/axon-30-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2022/index.json b/site/public/v1/smartphones/axon-30-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2022/index.json new file mode 100644 index 00000000000..1615518729c --- /dev/null +++ b/site/public/v1/smartphones/axon-30-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2022/index.json @@ -0,0 +1,77 @@ +{ + "id": 6511, + "slug": "axon-30-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2022", + "name": "Axon 30 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB A2022", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-16", + "msrp_usd": 3598, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.4, + "performance": 6.4, + "camera": 21.7, + "battery": 35.6, + "display": 62.0, + "value": 15.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.018824", + "updated_at": "2026-06-19T00:43:45.018824" +} diff --git a/site/public/v1/smartphones/axon-30-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2022/score/index.json b/site/public/v1/smartphones/axon-30-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2022/score/index.json new file mode 100644 index 00000000000..db06355276f --- /dev/null +++ b/site/public/v1/smartphones/axon-30-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2022/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.4, + "performance": 6.4, + "camera": 21.7, + "battery": 35.6, + "display": 62.0, + "value": 15.7 +} diff --git a/site/public/v1/smartphones/axon-30-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2022/index.json b/site/public/v1/smartphones/axon-30-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2022/index.json new file mode 100644 index 00000000000..88c16465c24 --- /dev/null +++ b/site/public/v1/smartphones/axon-30-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2022/index.json @@ -0,0 +1,77 @@ +{ + "id": 6512, + "slug": "axon-30-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2022", + "name": "Axon 30 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB A2022", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-16", + "msrp_usd": 2998, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.1, + "performance": 4.9, + "camera": 21.7, + "battery": 35.6, + "display": 62.0, + "value": 15.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.018824", + "updated_at": "2026-06-19T00:43:45.018824" +} diff --git a/site/public/v1/smartphones/axon-30-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2022/score/index.json b/site/public/v1/smartphones/axon-30-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2022/score/index.json new file mode 100644 index 00000000000..644946f3b77 --- /dev/null +++ b/site/public/v1/smartphones/axon-30-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2022/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.1, + "performance": 4.9, + "camera": 21.7, + "battery": 35.6, + "display": 62.0, + "value": 15.6 +} diff --git a/site/public/v1/smartphones/axon-30-ultra-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2022p/index.json b/site/public/v1/smartphones/axon-30-ultra-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2022p/index.json new file mode 100644 index 00000000000..be32b608ad6 --- /dev/null +++ b/site/public/v1/smartphones/axon-30-ultra-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2022p/index.json @@ -0,0 +1,77 @@ +{ + "id": 6513, + "slug": "axon-30-ultra-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2022p", + "name": "Axon 30 Ultra 5G Premium Edition Dual SIM TD-LTE CN 256GB A2022P", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-19", + "msrp_usd": 4998, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4600, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 34.1, + "performance": 9.4, + "camera": 21.7, + "battery": 43.5, + "display": 62.0, + "value": 17.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.018824", + "updated_at": "2026-06-19T00:43:45.018824" +} diff --git a/site/public/v1/smartphones/axon-30-ultra-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2022p/score/index.json b/site/public/v1/smartphones/axon-30-ultra-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2022p/score/index.json new file mode 100644 index 00000000000..bade5db94ce --- /dev/null +++ b/site/public/v1/smartphones/axon-30-ultra-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2022p/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 34.1, + "performance": 9.4, + "camera": 21.7, + "battery": 43.5, + "display": 62.0, + "value": 17.1 +} diff --git a/site/public/v1/smartphones/axon-30-ultra-5g-premium-edition-global-dual-sim-td-lte-256gb-a2022pg/index.json b/site/public/v1/smartphones/axon-30-ultra-5g-premium-edition-global-dual-sim-td-lte-256gb-a2022pg/index.json new file mode 100644 index 00000000000..bbef54f48e6 --- /dev/null +++ b/site/public/v1/smartphones/axon-30-ultra-5g-premium-edition-global-dual-sim-td-lte-256gb-a2022pg/index.json @@ -0,0 +1,77 @@ +{ + "id": 6514, + "slug": "axon-30-ultra-5g-premium-edition-global-dual-sim-td-lte-256gb-a2022pg", + "name": "Axon 30 Ultra 5G Premium Edition Global Dual SIM TD-LTE 256GB A2022PG", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-01", + "msrp_usd": 849, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4600, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 34.1, + "performance": 9.4, + "camera": 21.7, + "battery": 43.5, + "display": 62.0, + "value": 46.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.018824", + "updated_at": "2026-06-19T00:43:45.018824" +} diff --git a/site/public/v1/smartphones/axon-30-ultra-5g-premium-edition-global-dual-sim-td-lte-256gb-a2022pg/score/index.json b/site/public/v1/smartphones/axon-30-ultra-5g-premium-edition-global-dual-sim-td-lte-256gb-a2022pg/score/index.json new file mode 100644 index 00000000000..6728e11ff10 --- /dev/null +++ b/site/public/v1/smartphones/axon-30-ultra-5g-premium-edition-global-dual-sim-td-lte-256gb-a2022pg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 34.1, + "performance": 9.4, + "camera": 21.7, + "battery": 43.5, + "display": 62.0, + "value": 46.0 +} diff --git a/site/public/v1/smartphones/axon-30-ultra-5g-standard-edition-dual-sim-td-lte-cn-256gb-a2022p/index.json b/site/public/v1/smartphones/axon-30-ultra-5g-standard-edition-dual-sim-td-lte-cn-256gb-a2022p/index.json new file mode 100644 index 00000000000..6eb7880d976 --- /dev/null +++ b/site/public/v1/smartphones/axon-30-ultra-5g-standard-edition-dual-sim-td-lte-cn-256gb-a2022p/index.json @@ -0,0 +1,77 @@ +{ + "id": 6515, + "slug": "axon-30-ultra-5g-standard-edition-dual-sim-td-lte-cn-256gb-a2022p", + "name": "Axon 30 Ultra 5G Standard Edition Dual SIM TD-LTE CN 256GB A2022P", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-19", + "msrp_usd": 4698, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4600, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.4, + "performance": 6.4, + "camera": 21.7, + "battery": 43.5, + "display": 62.0, + "value": 16.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.018824", + "updated_at": "2026-06-19T00:43:45.018824" +} diff --git a/site/public/v1/smartphones/axon-30-ultra-5g-standard-edition-dual-sim-td-lte-cn-256gb-a2022p/score/index.json b/site/public/v1/smartphones/axon-30-ultra-5g-standard-edition-dual-sim-td-lte-cn-256gb-a2022p/score/index.json new file mode 100644 index 00000000000..acba695ad01 --- /dev/null +++ b/site/public/v1/smartphones/axon-30-ultra-5g-standard-edition-dual-sim-td-lte-cn-256gb-a2022p/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.4, + "performance": 6.4, + "camera": 21.7, + "battery": 43.5, + "display": 62.0, + "value": 16.7 +} diff --git a/site/public/v1/smartphones/axon-30-ultra-5g-standard-edition-global-dual-sim-td-lte-128gb-a2022pg/index.json b/site/public/v1/smartphones/axon-30-ultra-5g-standard-edition-global-dual-sim-td-lte-128gb-a2022pg/index.json new file mode 100644 index 00000000000..2b0ec60b59a --- /dev/null +++ b/site/public/v1/smartphones/axon-30-ultra-5g-standard-edition-global-dual-sim-td-lte-128gb-a2022pg/index.json @@ -0,0 +1,77 @@ +{ + "id": 6516, + "slug": "axon-30-ultra-5g-standard-edition-global-dual-sim-td-lte-128gb-a2022pg", + "name": "Axon 30 Ultra 5G Standard Edition Global Dual SIM TD-LTE 128GB A2022PG", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-01", + "msrp_usd": 749, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4600, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.4, + "performance": 6.4, + "camera": 21.7, + "battery": 43.5, + "display": 62.0, + "value": 49.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.019824", + "updated_at": "2026-06-19T00:43:45.019824" +} diff --git a/site/public/v1/smartphones/axon-30-ultra-5g-standard-edition-global-dual-sim-td-lte-128gb-a2022pg/score/index.json b/site/public/v1/smartphones/axon-30-ultra-5g-standard-edition-global-dual-sim-td-lte-128gb-a2022pg/score/index.json new file mode 100644 index 00000000000..347275f1560 --- /dev/null +++ b/site/public/v1/smartphones/axon-30-ultra-5g-standard-edition-global-dual-sim-td-lte-128gb-a2022pg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.4, + "performance": 6.4, + "camera": 21.7, + "battery": 43.5, + "display": 62.0, + "value": 49.5 +} diff --git a/site/public/v1/smartphones/axon-30-ultra-5g-top-edition-dual-sim-td-lte-cn-1tb-a2022p/index.json b/site/public/v1/smartphones/axon-30-ultra-5g-top-edition-dual-sim-td-lte-cn-1tb-a2022p/index.json new file mode 100644 index 00000000000..111b9781c7b --- /dev/null +++ b/site/public/v1/smartphones/axon-30-ultra-5g-top-edition-dual-sim-td-lte-cn-1tb-a2022p/index.json @@ -0,0 +1,77 @@ +{ + "id": 6517, + "slug": "axon-30-ultra-5g-top-edition-dual-sim-td-lte-cn-1tb-a2022p", + "name": "Axon 30 Ultra 5G Top Edition Dual SIM TD-LTE CN 1TB A2022P", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-01", + "msrp_usd": null, + "ram_gb": 16, + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4600, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 34.9, + "performance": 12.4, + "camera": 21.7, + "battery": 43.5, + "display": 62.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.019824", + "updated_at": "2026-06-19T00:43:45.019824" +} diff --git a/site/public/v1/smartphones/axon-30-ultra-5g-top-edition-dual-sim-td-lte-cn-1tb-a2022p/score/index.json b/site/public/v1/smartphones/axon-30-ultra-5g-top-edition-dual-sim-td-lte-cn-1tb-a2022p/score/index.json new file mode 100644 index 00000000000..4ccae380047 --- /dev/null +++ b/site/public/v1/smartphones/axon-30-ultra-5g-top-edition-dual-sim-td-lte-cn-1tb-a2022p/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 34.9, + "performance": 12.4, + "camera": 21.7, + "battery": 43.5, + "display": 62.0, + "value": null +} diff --git a/site/public/v1/smartphones/axon-9-dual-sim-td-lte-cn-64gb-a2019/index.json b/site/public/v1/smartphones/axon-9-dual-sim-td-lte-cn-64gb-a2019/index.json new file mode 100644 index 00000000000..0a54c19a2bf --- /dev/null +++ b/site/public/v1/smartphones/axon-9-dual-sim-td-lte-cn-64gb-a2019/index.json @@ -0,0 +1,76 @@ +{ + "id": 6429, + "slug": "axon-9-dual-sim-td-lte-cn-64gb-a2019", + "name": "Axon 9 Dual SIM TD-LTE CN 64GB A2019", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2019-05-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2248", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 5.1, + "battery": 15.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.008824", + "updated_at": "2026-06-19T00:43:45.008824" +} diff --git a/site/public/v1/smartphones/axon-9-dual-sim-td-lte-cn-64gb-a2019/score/index.json b/site/public/v1/smartphones/axon-9-dual-sim-td-lte-cn-64gb-a2019/score/index.json new file mode 100644 index 00000000000..751ff33f2d4 --- /dev/null +++ b/site/public/v1/smartphones/axon-9-dual-sim-td-lte-cn-64gb-a2019/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 5.1, + "battery": 15.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/axon-9-pro-dual-sim-td-lte-cn-256gb-a2019/index.json b/site/public/v1/smartphones/axon-9-pro-dual-sim-td-lte-cn-256gb-a2019/index.json new file mode 100644 index 00000000000..f6e87e946c8 --- /dev/null +++ b/site/public/v1/smartphones/axon-9-pro-dual-sim-td-lte-cn-256gb-a2019/index.json @@ -0,0 +1,76 @@ +{ + "id": 6389, + "slug": "axon-9-pro-dual-sim-td-lte-cn-256gb-a2019", + "name": "Axon 9 Pro Dual SIM TD-LTE CN 256GB A2019", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2248", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 3.0, + "camera": 5.1, + "battery": 15.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.004824", + "updated_at": "2026-06-19T00:43:45.004824" +} diff --git a/site/public/v1/smartphones/axon-9-pro-dual-sim-td-lte-cn-256gb-a2019/score/index.json b/site/public/v1/smartphones/axon-9-pro-dual-sim-td-lte-cn-256gb-a2019/score/index.json new file mode 100644 index 00000000000..bfc1edcd32f --- /dev/null +++ b/site/public/v1/smartphones/axon-9-pro-dual-sim-td-lte-cn-256gb-a2019/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 3.0, + "camera": 5.1, + "battery": 15.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/axon-9-pro-lte-a-emea-64gb-a2019g/index.json b/site/public/v1/smartphones/axon-9-pro-lte-a-emea-64gb-a2019g/index.json new file mode 100644 index 00000000000..c26f7f471a6 --- /dev/null +++ b/site/public/v1/smartphones/axon-9-pro-lte-a-emea-64gb-a2019g/index.json @@ -0,0 +1,76 @@ +{ + "id": 6390, + "slug": "axon-9-pro-lte-a-emea-64gb-a2019g", + "name": "Axon 9 Pro LTE-A EMEA 64GB A2019G", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-10-22", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2248", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 5.1, + "battery": 15.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.004824", + "updated_at": "2026-06-19T00:43:45.004824" +} diff --git a/site/public/v1/smartphones/axon-9-pro-lte-a-emea-64gb-a2019g/score/index.json b/site/public/v1/smartphones/axon-9-pro-lte-a-emea-64gb-a2019g/score/index.json new file mode 100644 index 00000000000..751ff33f2d4 --- /dev/null +++ b/site/public/v1/smartphones/axon-9-pro-lte-a-emea-64gb-a2019g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 5.1, + "battery": 15.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/basio4-wimax-2-kyv47/index.json b/site/public/v1/smartphones/basio4-wimax-2-kyv47/index.json new file mode 100644 index 00000000000..31d00b8d1ba --- /dev/null +++ b/site/public/v1/smartphones/basio4-wimax-2-kyv47/index.json @@ -0,0 +1,76 @@ +{ + "id": 1412, + "slug": "basio4-wimax-2-kyv47", + "name": "BASIO4 WiMAX 2+ KYV47", + "brand": { + "id": 71, + "slug": "kyocera", + "name": "Kyocera", + "country": "JP", + "url": "/v1/brands/kyocera" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2020-02-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.6, + "resolution": "720x1480", + "type": "AM-OLED display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 151.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.3, + "battery": 4.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.329606", + "updated_at": "2026-06-19T00:43:44.329606" +} diff --git a/site/public/v1/smartphones/basio4-wimax-2-kyv47/score/index.json b/site/public/v1/smartphones/basio4-wimax-2-kyv47/score/index.json new file mode 100644 index 00000000000..870661d9721 --- /dev/null +++ b/site/public/v1/smartphones/basio4-wimax-2-kyv47/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.3, + "battery": 4.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/bl9000-dual-sim-lte-emea/index.json b/site/public/v1/smartphones/bl9000-dual-sim-lte-emea/index.json new file mode 100644 index 00000000000..3f110ed7c9a --- /dev/null +++ b/site/public/v1/smartphones/bl9000-dual-sim-lte-emea/index.json @@ -0,0 +1,76 @@ +{ + "id": 506, + "slug": "bl9000-dual-sim-lte-emea", + "name": "BL9000 Dual SIM LTE EMEA", + "brand": { + "id": 11, + "slug": "doogee", + "name": "DOOGEE", + "country": "CN", + "url": "/v1/brands/doogee" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2018-05-28", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 9000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 275.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.7, + "performance": 1.5, + "camera": 5.1, + "battery": 46.9, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.176932", + "updated_at": "2026-06-19T00:43:44.176932" +} diff --git a/site/public/v1/smartphones/bl9000-dual-sim-lte-emea/score/index.json b/site/public/v1/smartphones/bl9000-dual-sim-lte-emea/score/index.json new file mode 100644 index 00000000000..9c0418f819c --- /dev/null +++ b/site/public/v1/smartphones/bl9000-dual-sim-lte-emea/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.7, + "performance": 1.5, + "camera": 5.1, + "battery": 46.9, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/black-shark-2-dual-sim-td-lte-cn-128gb-skw-a0/index.json b/site/public/v1/smartphones/black-shark-2-dual-sim-td-lte-cn-128gb-skw-a0/index.json new file mode 100644 index 00000000000..49a38cd974f --- /dev/null +++ b/site/public/v1/smartphones/black-shark-2-dual-sim-td-lte-cn-128gb-skw-a0/index.json @@ -0,0 +1,76 @@ +{ + "id": 5705, + "slug": "black-shark-2-dual-sim-td-lte-cn-128gb-skw-a0", + "name": "Black Shark 2 Dual SIM TD-LTE CN 128GB SKW-A0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-19", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.925307", + "updated_at": "2026-06-19T00:43:44.925307" +} diff --git a/site/public/v1/smartphones/black-shark-2-dual-sim-td-lte-cn-128gb-skw-a0/score/index.json b/site/public/v1/smartphones/black-shark-2-dual-sim-td-lte-cn-128gb-skw-a0/score/index.json new file mode 100644 index 00000000000..c9e71136cc6 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-2-dual-sim-td-lte-cn-128gb-skw-a0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/black-shark-2-dual-sim-td-lte-cn-256gb-skw-a0/index.json b/site/public/v1/smartphones/black-shark-2-dual-sim-td-lte-cn-256gb-skw-a0/index.json new file mode 100644 index 00000000000..ed21c9a3f6d --- /dev/null +++ b/site/public/v1/smartphones/black-shark-2-dual-sim-td-lte-cn-256gb-skw-a0/index.json @@ -0,0 +1,76 @@ +{ + "id": 5706, + "slug": "black-shark-2-dual-sim-td-lte-cn-256gb-skw-a0", + "name": "Black Shark 2 Dual SIM TD-LTE CN 256GB SKW-A0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 6.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.925307", + "updated_at": "2026-06-19T00:43:44.925307" +} diff --git a/site/public/v1/smartphones/black-shark-2-dual-sim-td-lte-cn-256gb-skw-a0/score/index.json b/site/public/v1/smartphones/black-shark-2-dual-sim-td-lte-cn-256gb-skw-a0/score/index.json new file mode 100644 index 00000000000..f679648eefe --- /dev/null +++ b/site/public/v1/smartphones/black-shark-2-dual-sim-td-lte-cn-256gb-skw-a0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 6.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/black-shark-2-global-dual-sim-td-lte-128gb-skw-h0/index.json b/site/public/v1/smartphones/black-shark-2-global-dual-sim-td-lte-128gb-skw-h0/index.json new file mode 100644 index 00000000000..61751e17dcb --- /dev/null +++ b/site/public/v1/smartphones/black-shark-2-global-dual-sim-td-lte-128gb-skw-h0/index.json @@ -0,0 +1,76 @@ +{ + "id": 5707, + "slug": "black-shark-2-global-dual-sim-td-lte-128gb-skw-h0", + "name": "Black Shark 2 Global Dual SIM TD-LTE 128GB SKW-H0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.925307", + "updated_at": "2026-06-19T00:43:44.925307" +} diff --git a/site/public/v1/smartphones/black-shark-2-global-dual-sim-td-lte-128gb-skw-h0/score/index.json b/site/public/v1/smartphones/black-shark-2-global-dual-sim-td-lte-128gb-skw-h0/score/index.json new file mode 100644 index 00000000000..c9e71136cc6 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-2-global-dual-sim-td-lte-128gb-skw-h0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/black-shark-2-global-dual-sim-td-lte-256gb-skw-h0/index.json b/site/public/v1/smartphones/black-shark-2-global-dual-sim-td-lte-256gb-skw-h0/index.json new file mode 100644 index 00000000000..f3f14f8d7f6 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-2-global-dual-sim-td-lte-256gb-skw-h0/index.json @@ -0,0 +1,76 @@ +{ + "id": 5708, + "slug": "black-shark-2-global-dual-sim-td-lte-256gb-skw-h0", + "name": "Black Shark 2 Global Dual SIM TD-LTE 256GB SKW-H0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 6.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.925307", + "updated_at": "2026-06-19T00:43:44.925307" +} diff --git a/site/public/v1/smartphones/black-shark-2-global-dual-sim-td-lte-256gb-skw-h0/score/index.json b/site/public/v1/smartphones/black-shark-2-global-dual-sim-td-lte-256gb-skw-h0/score/index.json new file mode 100644 index 00000000000..f679648eefe --- /dev/null +++ b/site/public/v1/smartphones/black-shark-2-global-dual-sim-td-lte-256gb-skw-h0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 6.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/black-shark-2-pro-dual-sim-td-lte-cn-128gb-dlt-a0/index.json b/site/public/v1/smartphones/black-shark-2-pro-dual-sim-td-lte-cn-128gb-dlt-a0/index.json new file mode 100644 index 00000000000..feb3e6c60fc --- /dev/null +++ b/site/public/v1/smartphones/black-shark-2-pro-dual-sim-td-lte-cn-128gb-dlt-a0/index.json @@ -0,0 +1,76 @@ +{ + "id": 5709, + "slug": "black-shark-2-pro-dual-sim-td-lte-cn-128gb-dlt-a0", + "name": "Black Shark 2 Pro Dual SIM TD-LTE CN 128GB DLT-A0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-08-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 6.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.926307", + "updated_at": "2026-06-19T00:43:44.926307" +} diff --git a/site/public/v1/smartphones/black-shark-2-pro-dual-sim-td-lte-cn-128gb-dlt-a0/score/index.json b/site/public/v1/smartphones/black-shark-2-pro-dual-sim-td-lte-cn-128gb-dlt-a0/score/index.json new file mode 100644 index 00000000000..f679648eefe --- /dev/null +++ b/site/public/v1/smartphones/black-shark-2-pro-dual-sim-td-lte-cn-128gb-dlt-a0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 6.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/black-shark-2-pro-dual-sim-td-lte-cn-256gb-dlt-a0/index.json b/site/public/v1/smartphones/black-shark-2-pro-dual-sim-td-lte-cn-256gb-dlt-a0/index.json new file mode 100644 index 00000000000..ba2bd843fb7 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-2-pro-dual-sim-td-lte-cn-256gb-dlt-a0/index.json @@ -0,0 +1,76 @@ +{ + "id": 5710, + "slug": "black-shark-2-pro-dual-sim-td-lte-cn-256gb-dlt-a0", + "name": "Black Shark 2 Pro Dual SIM TD-LTE CN 256GB DLT-A0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-08-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 6.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.926307", + "updated_at": "2026-06-19T00:43:44.926307" +} diff --git a/site/public/v1/smartphones/black-shark-2-pro-dual-sim-td-lte-cn-256gb-dlt-a0/score/index.json b/site/public/v1/smartphones/black-shark-2-pro-dual-sim-td-lte-cn-256gb-dlt-a0/score/index.json new file mode 100644 index 00000000000..f679648eefe --- /dev/null +++ b/site/public/v1/smartphones/black-shark-2-pro-dual-sim-td-lte-cn-256gb-dlt-a0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 6.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/black-shark-2-pro-global-dual-sim-td-lte-128gb-dlt-h0/index.json b/site/public/v1/smartphones/black-shark-2-pro-global-dual-sim-td-lte-128gb-dlt-h0/index.json new file mode 100644 index 00000000000..0ff8d921f22 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-2-pro-global-dual-sim-td-lte-128gb-dlt-h0/index.json @@ -0,0 +1,76 @@ +{ + "id": 5711, + "slug": "black-shark-2-pro-global-dual-sim-td-lte-128gb-dlt-h0", + "name": "Black Shark 2 Pro Global Dual SIM TD-LTE 128GB DLT-H0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.926307", + "updated_at": "2026-06-19T00:43:44.926307" +} diff --git a/site/public/v1/smartphones/black-shark-2-pro-global-dual-sim-td-lte-128gb-dlt-h0/score/index.json b/site/public/v1/smartphones/black-shark-2-pro-global-dual-sim-td-lte-128gb-dlt-h0/score/index.json new file mode 100644 index 00000000000..c9e71136cc6 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-2-pro-global-dual-sim-td-lte-128gb-dlt-h0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/black-shark-2-pro-global-dual-sim-td-lte-256gb-dlt-h0/index.json b/site/public/v1/smartphones/black-shark-2-pro-global-dual-sim-td-lte-256gb-dlt-h0/index.json new file mode 100644 index 00000000000..56d702a1903 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-2-pro-global-dual-sim-td-lte-256gb-dlt-h0/index.json @@ -0,0 +1,76 @@ +{ + "id": 5712, + "slug": "black-shark-2-pro-global-dual-sim-td-lte-256gb-dlt-h0", + "name": "Black Shark 2 Pro Global Dual SIM TD-LTE 256GB DLT-H0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 6.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.926307", + "updated_at": "2026-06-19T00:43:44.926307" +} diff --git a/site/public/v1/smartphones/black-shark-2-pro-global-dual-sim-td-lte-256gb-dlt-h0/score/index.json b/site/public/v1/smartphones/black-shark-2-pro-global-dual-sim-td-lte-256gb-dlt-h0/score/index.json new file mode 100644 index 00000000000..f679648eefe --- /dev/null +++ b/site/public/v1/smartphones/black-shark-2-pro-global-dual-sim-td-lte-256gb-dlt-h0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 6.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/black-shark-3-5g-premium-edition-dual-sim-td-lte-cn-128gb-kle-a0/index.json b/site/public/v1/smartphones/black-shark-3-5g-premium-edition-dual-sim-td-lte-cn-128gb-kle-a0/index.json new file mode 100644 index 00000000000..af6c3774ad1 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-3-5g-premium-edition-dual-sim-td-lte-cn-128gb-kle-a0/index.json @@ -0,0 +1,77 @@ +{ + "id": 5866, + "slug": "black-shark-3-5g-premium-edition-dual-sim-td-lte-cn-128gb-kle-a0", + "name": "Black Shark 3 5G Premium Edition Dual SIM TD-LTE CN 128GB KLE-A0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4720, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 222.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.0, + "camera": 21.5, + "battery": 35.3, + "display": 39.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.943306", + "updated_at": "2026-06-19T00:43:44.943306" +} diff --git a/site/public/v1/smartphones/black-shark-3-5g-premium-edition-dual-sim-td-lte-cn-128gb-kle-a0/score/index.json b/site/public/v1/smartphones/black-shark-3-5g-premium-edition-dual-sim-td-lte-cn-128gb-kle-a0/score/index.json new file mode 100644 index 00000000000..db3e3e722fb --- /dev/null +++ b/site/public/v1/smartphones/black-shark-3-5g-premium-edition-dual-sim-td-lte-cn-128gb-kle-a0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.0, + "camera": 21.5, + "battery": 35.3, + "display": 39.5, + "value": null +} diff --git a/site/public/v1/smartphones/black-shark-3-5g-premium-edition-dual-sim-td-lte-cn-256gb-kle-a0/index.json b/site/public/v1/smartphones/black-shark-3-5g-premium-edition-dual-sim-td-lte-cn-256gb-kle-a0/index.json new file mode 100644 index 00000000000..b6e89df294e --- /dev/null +++ b/site/public/v1/smartphones/black-shark-3-5g-premium-edition-dual-sim-td-lte-cn-256gb-kle-a0/index.json @@ -0,0 +1,77 @@ +{ + "id": 5867, + "slug": "black-shark-3-5g-premium-edition-dual-sim-td-lte-cn-256gb-kle-a0", + "name": "Black Shark 3 5G Premium Edition Dual SIM TD-LTE CN 256GB KLE-A0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4720, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 222.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.0, + "camera": 21.5, + "battery": 35.3, + "display": 39.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.944309", + "updated_at": "2026-06-19T00:43:44.944309" +} diff --git a/site/public/v1/smartphones/black-shark-3-5g-premium-edition-dual-sim-td-lte-cn-256gb-kle-a0/score/index.json b/site/public/v1/smartphones/black-shark-3-5g-premium-edition-dual-sim-td-lte-cn-256gb-kle-a0/score/index.json new file mode 100644 index 00000000000..db3e3e722fb --- /dev/null +++ b/site/public/v1/smartphones/black-shark-3-5g-premium-edition-dual-sim-td-lte-cn-256gb-kle-a0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.0, + "camera": 21.5, + "battery": 35.3, + "display": 39.5, + "value": null +} diff --git a/site/public/v1/smartphones/black-shark-3-5g-premium-edition-global-dual-sim-td-lte-128gb-kle-h0/index.json b/site/public/v1/smartphones/black-shark-3-5g-premium-edition-global-dual-sim-td-lte-128gb-kle-h0/index.json new file mode 100644 index 00000000000..cf9dafdcb23 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-3-5g-premium-edition-global-dual-sim-td-lte-128gb-kle-h0/index.json @@ -0,0 +1,77 @@ +{ + "id": 5868, + "slug": "black-shark-3-5g-premium-edition-global-dual-sim-td-lte-128gb-kle-h0", + "name": "Black Shark 3 5G Premium Edition Global Dual SIM TD-LTE 128GB KLE-H0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-05-01", + "msrp_usd": 659, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4720, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 222.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.0, + "camera": 21.5, + "battery": 35.3, + "display": 39.5, + "value": 49.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.944309", + "updated_at": "2026-06-19T00:43:44.944309" +} diff --git a/site/public/v1/smartphones/black-shark-3-5g-premium-edition-global-dual-sim-td-lte-128gb-kle-h0/score/index.json b/site/public/v1/smartphones/black-shark-3-5g-premium-edition-global-dual-sim-td-lte-128gb-kle-h0/score/index.json new file mode 100644 index 00000000000..1415939451a --- /dev/null +++ b/site/public/v1/smartphones/black-shark-3-5g-premium-edition-global-dual-sim-td-lte-128gb-kle-h0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.0, + "camera": 21.5, + "battery": 35.3, + "display": 39.5, + "value": 49.0 +} diff --git a/site/public/v1/smartphones/black-shark-3-5g-premium-edition-global-dual-sim-td-lte-256gb-kle-h0/index.json b/site/public/v1/smartphones/black-shark-3-5g-premium-edition-global-dual-sim-td-lte-256gb-kle-h0/index.json new file mode 100644 index 00000000000..eb546b84b36 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-3-5g-premium-edition-global-dual-sim-td-lte-256gb-kle-h0/index.json @@ -0,0 +1,77 @@ +{ + "id": 5869, + "slug": "black-shark-3-5g-premium-edition-global-dual-sim-td-lte-256gb-kle-h0", + "name": "Black Shark 3 5G Premium Edition Global Dual SIM TD-LTE 256GB KLE-H0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-05-01", + "msrp_usd": 729, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4720, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 222.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.0, + "camera": 21.5, + "battery": 35.3, + "display": 39.5, + "value": 46.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.944309", + "updated_at": "2026-06-19T00:43:44.944309" +} diff --git a/site/public/v1/smartphones/black-shark-3-5g-premium-edition-global-dual-sim-td-lte-256gb-kle-h0/score/index.json b/site/public/v1/smartphones/black-shark-3-5g-premium-edition-global-dual-sim-td-lte-256gb-kle-h0/score/index.json new file mode 100644 index 00000000000..007d1ca2081 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-3-5g-premium-edition-global-dual-sim-td-lte-256gb-kle-h0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.0, + "camera": 21.5, + "battery": 35.3, + "display": 39.5, + "value": 46.3 +} diff --git a/site/public/v1/smartphones/black-shark-3-5g-standard-edition-dual-sim-td-lte-cn-128gb-kle-a0/index.json b/site/public/v1/smartphones/black-shark-3-5g-standard-edition-dual-sim-td-lte-cn-128gb-kle-a0/index.json new file mode 100644 index 00000000000..09955155d80 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-3-5g-standard-edition-dual-sim-td-lte-cn-128gb-kle-a0/index.json @@ -0,0 +1,77 @@ +{ + "id": 5870, + "slug": "black-shark-3-5g-standard-edition-dual-sim-td-lte-cn-128gb-kle-a0", + "name": "Black Shark 3 5G Standard Edition Dual SIM TD-LTE CN 128GB KLE-A0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4720, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 222.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.8, + "performance": 3.0, + "camera": 21.5, + "battery": 35.3, + "display": 39.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.944309", + "updated_at": "2026-06-19T00:43:44.944309" +} diff --git a/site/public/v1/smartphones/black-shark-3-5g-standard-edition-dual-sim-td-lte-cn-128gb-kle-a0/score/index.json b/site/public/v1/smartphones/black-shark-3-5g-standard-edition-dual-sim-td-lte-cn-128gb-kle-a0/score/index.json new file mode 100644 index 00000000000..e9b92dcdf01 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-3-5g-standard-edition-dual-sim-td-lte-cn-128gb-kle-a0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.8, + "performance": 3.0, + "camera": 21.5, + "battery": 35.3, + "display": 39.5, + "value": null +} diff --git a/site/public/v1/smartphones/black-shark-3-5g-standard-edition-global-dual-sim-td-lte-128gb-kle-h0/index.json b/site/public/v1/smartphones/black-shark-3-5g-standard-edition-global-dual-sim-td-lte-128gb-kle-h0/index.json new file mode 100644 index 00000000000..f45ecb4b9af --- /dev/null +++ b/site/public/v1/smartphones/black-shark-3-5g-standard-edition-global-dual-sim-td-lte-128gb-kle-h0/index.json @@ -0,0 +1,77 @@ +{ + "id": 5871, + "slug": "black-shark-3-5g-standard-edition-global-dual-sim-td-lte-128gb-kle-h0", + "name": "Black Shark 3 5G Standard Edition Global Dual SIM TD-LTE 128GB KLE-H0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-05-01", + "msrp_usd": 599, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4720, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 222.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.8, + "performance": 3.0, + "camera": 21.5, + "battery": 35.3, + "display": 39.5, + "value": 50.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.944309", + "updated_at": "2026-06-19T00:43:44.944309" +} diff --git a/site/public/v1/smartphones/black-shark-3-5g-standard-edition-global-dual-sim-td-lte-128gb-kle-h0/score/index.json b/site/public/v1/smartphones/black-shark-3-5g-standard-edition-global-dual-sim-td-lte-128gb-kle-h0/score/index.json new file mode 100644 index 00000000000..fbe30bb81ad --- /dev/null +++ b/site/public/v1/smartphones/black-shark-3-5g-standard-edition-global-dual-sim-td-lte-128gb-kle-h0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.8, + "performance": 3.0, + "camera": 21.5, + "battery": 35.3, + "display": 39.5, + "value": 50.9 +} diff --git a/site/public/v1/smartphones/black-shark-3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-mbu-a0/index.json b/site/public/v1/smartphones/black-shark-3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-mbu-a0/index.json new file mode 100644 index 00000000000..ef89949c6f7 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-mbu-a0/index.json @@ -0,0 +1,77 @@ +{ + "id": 5872, + "slug": "black-shark-3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-mbu-a0", + "name": "Black Shark 3 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB MBU-A0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-17", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 7.09, + "resolution": "1440x3120", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 485 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 253.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.9, + "performance": 6.0, + "camera": 21.5, + "battery": 39.5, + "display": 48.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.944309", + "updated_at": "2026-06-19T00:43:44.944309" +} diff --git a/site/public/v1/smartphones/black-shark-3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-mbu-a0/score/index.json b/site/public/v1/smartphones/black-shark-3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-mbu-a0/score/index.json new file mode 100644 index 00000000000..3b462a99ca4 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-mbu-a0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.9, + "performance": 6.0, + "camera": 21.5, + "battery": 39.5, + "display": 48.5, + "value": null +} diff --git a/site/public/v1/smartphones/black-shark-3-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-mbu-h0/index.json b/site/public/v1/smartphones/black-shark-3-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-mbu-h0/index.json new file mode 100644 index 00000000000..652bdd4933b --- /dev/null +++ b/site/public/v1/smartphones/black-shark-3-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-mbu-h0/index.json @@ -0,0 +1,77 @@ +{ + "id": 5873, + "slug": "black-shark-3-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-mbu-h0", + "name": "Black Shark 3 Pro 5G Premium Edition Global Dual SIM TD-LTE 256GB MBU-H0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-05-01", + "msrp_usd": 899, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 7.09, + "resolution": "1440x3120", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 485 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 253.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.9, + "performance": 6.0, + "camera": 21.5, + "battery": 39.5, + "display": 48.5, + "value": 41.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.944309", + "updated_at": "2026-06-19T00:43:44.944309" +} diff --git a/site/public/v1/smartphones/black-shark-3-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-mbu-h0/score/index.json b/site/public/v1/smartphones/black-shark-3-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-mbu-h0/score/index.json new file mode 100644 index 00000000000..638906f1050 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-3-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-mbu-h0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.9, + "performance": 6.0, + "camera": 21.5, + "battery": 39.5, + "display": 48.5, + "value": 41.4 +} diff --git a/site/public/v1/smartphones/black-shark-3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-mbu-a0/index.json b/site/public/v1/smartphones/black-shark-3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-mbu-a0/index.json new file mode 100644 index 00000000000..d2e3c2db85a --- /dev/null +++ b/site/public/v1/smartphones/black-shark-3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-mbu-a0/index.json @@ -0,0 +1,77 @@ +{ + "id": 5874, + "slug": "black-shark-3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-mbu-a0", + "name": "Black Shark 3 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB MBU-A0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-17", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 7.09, + "resolution": "1440x3120", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 485 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 253.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.1, + "performance": 3.0, + "camera": 21.5, + "battery": 39.5, + "display": 48.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.944309", + "updated_at": "2026-06-19T00:43:44.944309" +} diff --git a/site/public/v1/smartphones/black-shark-3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-mbu-a0/score/index.json b/site/public/v1/smartphones/black-shark-3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-mbu-a0/score/index.json new file mode 100644 index 00000000000..1290130b3bd --- /dev/null +++ b/site/public/v1/smartphones/black-shark-3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-mbu-a0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.1, + "performance": 3.0, + "camera": 21.5, + "battery": 39.5, + "display": 48.5, + "value": null +} diff --git a/site/public/v1/smartphones/black-shark-3-pro-5g-standard-edition-global-dual-sim-td-lte-256gb-mbu-h0/index.json b/site/public/v1/smartphones/black-shark-3-pro-5g-standard-edition-global-dual-sim-td-lte-256gb-mbu-h0/index.json new file mode 100644 index 00000000000..2bf94e1539a --- /dev/null +++ b/site/public/v1/smartphones/black-shark-3-pro-5g-standard-edition-global-dual-sim-td-lte-256gb-mbu-h0/index.json @@ -0,0 +1,77 @@ +{ + "id": 5875, + "slug": "black-shark-3-pro-5g-standard-edition-global-dual-sim-td-lte-256gb-mbu-h0", + "name": "Black Shark 3 Pro 5G Standard Edition Global Dual SIM TD-LTE 256GB MBU-H0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 7.09, + "resolution": "1440x3120", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 485 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 253.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.1, + "performance": 3.0, + "camera": 21.5, + "battery": 39.5, + "display": 48.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.944309", + "updated_at": "2026-06-19T00:43:44.944309" +} diff --git a/site/public/v1/smartphones/black-shark-3-pro-5g-standard-edition-global-dual-sim-td-lte-256gb-mbu-h0/score/index.json b/site/public/v1/smartphones/black-shark-3-pro-5g-standard-edition-global-dual-sim-td-lte-256gb-mbu-h0/score/index.json new file mode 100644 index 00000000000..1290130b3bd --- /dev/null +++ b/site/public/v1/smartphones/black-shark-3-pro-5g-standard-edition-global-dual-sim-td-lte-256gb-mbu-h0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.1, + "performance": 3.0, + "camera": 21.5, + "battery": 39.5, + "display": 48.5, + "value": null +} diff --git a/site/public/v1/smartphones/black-shark-3s-5g-dual-sim-td-lte-cn-128gb-kpro/index.json b/site/public/v1/smartphones/black-shark-3s-5g-dual-sim-td-lte-cn-128gb-kpro/index.json new file mode 100644 index 00000000000..576eef3e704 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-3s-5g-dual-sim-td-lte-cn-128gb-kpro/index.json @@ -0,0 +1,77 @@ +{ + "id": 5878, + "slug": "black-shark-3s-5g-dual-sim-td-lte-cn-128gb-kpro", + "name": "Black Shark 3S 5G Dual SIM TD-LTE CN 128GB KPRO", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-08-04", + "msrp_usd": 3999, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4720, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 222.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.7, + "performance": 6.0, + "camera": 21.5, + "battery": 35.3, + "display": 52.0, + "value": 14.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.945307", + "updated_at": "2026-06-19T00:43:44.945307" +} diff --git a/site/public/v1/smartphones/black-shark-3s-5g-dual-sim-td-lte-cn-128gb-kpro/score/index.json b/site/public/v1/smartphones/black-shark-3s-5g-dual-sim-td-lte-cn-128gb-kpro/score/index.json new file mode 100644 index 00000000000..808878f90e5 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-3s-5g-dual-sim-td-lte-cn-128gb-kpro/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.7, + "performance": 6.0, + "camera": 21.5, + "battery": 35.3, + "display": 52.0, + "value": 14.3 +} diff --git a/site/public/v1/smartphones/black-shark-3s-5g-dual-sim-td-lte-cn-256gb-kpro/index.json b/site/public/v1/smartphones/black-shark-3s-5g-dual-sim-td-lte-cn-256gb-kpro/index.json new file mode 100644 index 00000000000..1539480d9dc --- /dev/null +++ b/site/public/v1/smartphones/black-shark-3s-5g-dual-sim-td-lte-cn-256gb-kpro/index.json @@ -0,0 +1,77 @@ +{ + "id": 5879, + "slug": "black-shark-3s-5g-dual-sim-td-lte-cn-256gb-kpro", + "name": "Black Shark 3S 5G Dual SIM TD-LTE CN 256GB KPRO", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-08-04", + "msrp_usd": 4299, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4720, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 222.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.7, + "performance": 6.0, + "camera": 21.5, + "battery": 35.3, + "display": 52.0, + "value": 14.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.945307", + "updated_at": "2026-06-19T00:43:44.945307" +} diff --git a/site/public/v1/smartphones/black-shark-3s-5g-dual-sim-td-lte-cn-256gb-kpro/score/index.json b/site/public/v1/smartphones/black-shark-3s-5g-dual-sim-td-lte-cn-256gb-kpro/score/index.json new file mode 100644 index 00000000000..808878f90e5 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-3s-5g-dual-sim-td-lte-cn-256gb-kpro/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.7, + "performance": 6.0, + "camera": 21.5, + "battery": 35.3, + "display": 52.0, + "value": 14.3 +} diff --git a/site/public/v1/smartphones/black-shark-4-5g-premium-edition-dual-sim-td-lte-cn-128gb-prs-a0/index.json b/site/public/v1/smartphones/black-shark-4-5g-premium-edition-dual-sim-td-lte-cn-128gb-prs-a0/index.json new file mode 100644 index 00000000000..270899e5aa3 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-4-5g-premium-edition-dual-sim-td-lte-cn-128gb-prs-a0/index.json @@ -0,0 +1,77 @@ +{ + "id": 6037, + "slug": "black-shark-4-5g-premium-edition-dual-sim-td-lte-cn-128gb-prs-a0", + "name": "Black Shark 4 5G Premium Edition Dual SIM TD-LTE CN 128GB PRS-A0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-03-26", + "msrp_usd": 2699, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.8, + "performance": 6.1, + "camera": 16.5, + "battery": 42.5, + "display": 62.0, + "value": 15.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.963311", + "updated_at": "2026-06-19T00:43:44.963311" +} diff --git a/site/public/v1/smartphones/black-shark-4-5g-premium-edition-dual-sim-td-lte-cn-128gb-prs-a0/score/index.json b/site/public/v1/smartphones/black-shark-4-5g-premium-edition-dual-sim-td-lte-cn-128gb-prs-a0/score/index.json new file mode 100644 index 00000000000..e7f8bcd3a3e --- /dev/null +++ b/site/public/v1/smartphones/black-shark-4-5g-premium-edition-dual-sim-td-lte-cn-128gb-prs-a0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.8, + "performance": 6.1, + "camera": 16.5, + "battery": 42.5, + "display": 62.0, + "value": 15.9 +} diff --git a/site/public/v1/smartphones/black-shark-4-5g-premium-edition-dual-sim-td-lte-cn-256gb-prs-a0/index.json b/site/public/v1/smartphones/black-shark-4-5g-premium-edition-dual-sim-td-lte-cn-256gb-prs-a0/index.json new file mode 100644 index 00000000000..a52b0cbb752 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-4-5g-premium-edition-dual-sim-td-lte-cn-256gb-prs-a0/index.json @@ -0,0 +1,77 @@ +{ + "id": 6038, + "slug": "black-shark-4-5g-premium-edition-dual-sim-td-lte-cn-256gb-prs-a0", + "name": "Black Shark 4 5G Premium Edition Dual SIM TD-LTE CN 256GB PRS-A0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-06-03", + "msrp_usd": 2999, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.8, + "performance": 6.1, + "camera": 16.5, + "battery": 42.5, + "display": 62.0, + "value": 15.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.963311", + "updated_at": "2026-06-19T00:43:44.963311" +} diff --git a/site/public/v1/smartphones/black-shark-4-5g-premium-edition-dual-sim-td-lte-cn-256gb-prs-a0/score/index.json b/site/public/v1/smartphones/black-shark-4-5g-premium-edition-dual-sim-td-lte-cn-256gb-prs-a0/score/index.json new file mode 100644 index 00000000000..e7f8bcd3a3e --- /dev/null +++ b/site/public/v1/smartphones/black-shark-4-5g-premium-edition-dual-sim-td-lte-cn-256gb-prs-a0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.8, + "performance": 6.1, + "camera": 16.5, + "battery": 42.5, + "display": 62.0, + "value": 15.9 +} diff --git a/site/public/v1/smartphones/black-shark-4-5g-premium-edition-global-dual-sim-td-lte-128gb-prs-h0/index.json b/site/public/v1/smartphones/black-shark-4-5g-premium-edition-global-dual-sim-td-lte-128gb-prs-h0/index.json new file mode 100644 index 00000000000..f81e583797a --- /dev/null +++ b/site/public/v1/smartphones/black-shark-4-5g-premium-edition-global-dual-sim-td-lte-128gb-prs-h0/index.json @@ -0,0 +1,77 @@ +{ + "id": 6039, + "slug": "black-shark-4-5g-premium-edition-global-dual-sim-td-lte-128gb-prs-h0", + "name": "Black Shark 4 5G Premium Edition Global Dual SIM TD-LTE 128GB PRS-H0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-04-01", + "msrp_usd": 499, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.8, + "performance": 6.1, + "camera": 16.5, + "battery": 42.5, + "display": 62.0, + "value": 58.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.964311", + "updated_at": "2026-06-19T00:43:44.964311" +} diff --git a/site/public/v1/smartphones/black-shark-4-5g-premium-edition-global-dual-sim-td-lte-128gb-prs-h0/score/index.json b/site/public/v1/smartphones/black-shark-4-5g-premium-edition-global-dual-sim-td-lte-128gb-prs-h0/score/index.json new file mode 100644 index 00000000000..bda6e534de0 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-4-5g-premium-edition-global-dual-sim-td-lte-128gb-prs-h0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.8, + "performance": 6.1, + "camera": 16.5, + "battery": 42.5, + "display": 62.0, + "value": 58.2 +} diff --git a/site/public/v1/smartphones/black-shark-4-5g-standard-edition-dual-sim-td-lte-cn-128gb-prs-a0/index.json b/site/public/v1/smartphones/black-shark-4-5g-standard-edition-dual-sim-td-lte-cn-128gb-prs-a0/index.json new file mode 100644 index 00000000000..ce23eb802b1 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-4-5g-standard-edition-dual-sim-td-lte-cn-128gb-prs-a0/index.json @@ -0,0 +1,77 @@ +{ + "id": 6040, + "slug": "black-shark-4-5g-standard-edition-dual-sim-td-lte-cn-128gb-prs-a0", + "name": "Black Shark 4 5G Standard Edition Dual SIM TD-LTE CN 128GB PRS-A0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-03-26", + "msrp_usd": 2499, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.4, + "performance": 4.6, + "camera": 16.5, + "battery": 42.5, + "display": 62.0, + "value": 15.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.964311", + "updated_at": "2026-06-19T00:43:44.964311" +} diff --git a/site/public/v1/smartphones/black-shark-4-5g-standard-edition-dual-sim-td-lte-cn-128gb-prs-a0/score/index.json b/site/public/v1/smartphones/black-shark-4-5g-standard-edition-dual-sim-td-lte-cn-128gb-prs-a0/score/index.json new file mode 100644 index 00000000000..95b462db0df --- /dev/null +++ b/site/public/v1/smartphones/black-shark-4-5g-standard-edition-dual-sim-td-lte-cn-128gb-prs-a0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.4, + "performance": 4.6, + "camera": 16.5, + "battery": 42.5, + "display": 62.0, + "value": 15.7 +} diff --git a/site/public/v1/smartphones/black-shark-4-5g-top-edition-dual-sim-td-lte-cn-128gb-prs-a0/index.json b/site/public/v1/smartphones/black-shark-4-5g-top-edition-dual-sim-td-lte-cn-128gb-prs-a0/index.json new file mode 100644 index 00000000000..12574bb2d28 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-4-5g-top-edition-dual-sim-td-lte-cn-128gb-prs-a0/index.json @@ -0,0 +1,77 @@ +{ + "id": 6041, + "slug": "black-shark-4-5g-top-edition-dual-sim-td-lte-cn-128gb-prs-a0", + "name": "Black Shark 4 5G Top Edition Dual SIM TD-LTE CN 128GB PRS-A0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-03-26", + "msrp_usd": 2999, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 9.1, + "camera": 16.5, + "battery": 42.5, + "display": 62.0, + "value": 16.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.964311", + "updated_at": "2026-06-19T00:43:44.964311" +} diff --git a/site/public/v1/smartphones/black-shark-4-5g-top-edition-dual-sim-td-lte-cn-128gb-prs-a0/score/index.json b/site/public/v1/smartphones/black-shark-4-5g-top-edition-dual-sim-td-lte-cn-128gb-prs-a0/score/index.json new file mode 100644 index 00000000000..98dbc81aec1 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-4-5g-top-edition-dual-sim-td-lte-cn-128gb-prs-a0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 9.1, + "camera": 16.5, + "battery": 42.5, + "display": 62.0, + "value": 16.2 +} diff --git a/site/public/v1/smartphones/black-shark-4-5g-top-edition-dual-sim-td-lte-cn-256gb-prs-a0/index.json b/site/public/v1/smartphones/black-shark-4-5g-top-edition-dual-sim-td-lte-cn-256gb-prs-a0/index.json new file mode 100644 index 00000000000..69c5c906efd --- /dev/null +++ b/site/public/v1/smartphones/black-shark-4-5g-top-edition-dual-sim-td-lte-cn-256gb-prs-a0/index.json @@ -0,0 +1,77 @@ +{ + "id": 6042, + "slug": "black-shark-4-5g-top-edition-dual-sim-td-lte-cn-256gb-prs-a0", + "name": "Black Shark 4 5G Top Edition Dual SIM TD-LTE CN 256GB PRS-A0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-03-26", + "msrp_usd": 3299, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 9.1, + "camera": 16.5, + "battery": 42.5, + "display": 62.0, + "value": 16.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.964311", + "updated_at": "2026-06-19T00:43:44.964311" +} diff --git a/site/public/v1/smartphones/black-shark-4-5g-top-edition-dual-sim-td-lte-cn-256gb-prs-a0/score/index.json b/site/public/v1/smartphones/black-shark-4-5g-top-edition-dual-sim-td-lte-cn-256gb-prs-a0/score/index.json new file mode 100644 index 00000000000..98dbc81aec1 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-4-5g-top-edition-dual-sim-td-lte-cn-256gb-prs-a0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 9.1, + "camera": 16.5, + "battery": 42.5, + "display": 62.0, + "value": 16.2 +} diff --git a/site/public/v1/smartphones/black-shark-4-5g-top-edition-global-dual-sim-td-lte-256gb-prs-h0/index.json b/site/public/v1/smartphones/black-shark-4-5g-top-edition-global-dual-sim-td-lte-256gb-prs-h0/index.json new file mode 100644 index 00000000000..a24c5014ed6 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-4-5g-top-edition-global-dual-sim-td-lte-256gb-prs-h0/index.json @@ -0,0 +1,77 @@ +{ + "id": 6043, + "slug": "black-shark-4-5g-top-edition-global-dual-sim-td-lte-256gb-prs-h0", + "name": "Black Shark 4 5G Top Edition Global Dual SIM TD-LTE 256GB PRS-H0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-04-01", + "msrp_usd": 599, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 9.1, + "camera": 16.5, + "battery": 42.5, + "display": 62.0, + "value": 54.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.964311", + "updated_at": "2026-06-19T00:43:44.964311" +} diff --git a/site/public/v1/smartphones/black-shark-4-5g-top-edition-global-dual-sim-td-lte-256gb-prs-h0/score/index.json b/site/public/v1/smartphones/black-shark-4-5g-top-edition-global-dual-sim-td-lte-256gb-prs-h0/score/index.json new file mode 100644 index 00000000000..883323d7dc9 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-4-5g-top-edition-global-dual-sim-td-lte-256gb-prs-h0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 9.1, + "camera": 16.5, + "battery": 42.5, + "display": 62.0, + "value": 54.8 +} diff --git a/site/public/v1/smartphones/black-shark-4-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-ksr-a0/index.json b/site/public/v1/smartphones/black-shark-4-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-ksr-a0/index.json new file mode 100644 index 00000000000..d6d81264d1c --- /dev/null +++ b/site/public/v1/smartphones/black-shark-4-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-ksr-a0/index.json @@ -0,0 +1,77 @@ +{ + "id": 6044, + "slug": "black-shark-4-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-ksr-a0", + "name": "Black Shark 4 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB KSR-A0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-26", + "msrp_usd": 679, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 36.4, + "performance": 9.4, + "camera": 21.5, + "battery": 52.5, + "display": 62.0, + "value": 53.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.964311", + "updated_at": "2026-06-19T00:43:44.964311" +} diff --git a/site/public/v1/smartphones/black-shark-4-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-ksr-a0/score/index.json b/site/public/v1/smartphones/black-shark-4-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-ksr-a0/score/index.json new file mode 100644 index 00000000000..d3e772aed59 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-4-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-ksr-a0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 36.4, + "performance": 9.4, + "camera": 21.5, + "battery": 52.5, + "display": 62.0, + "value": 53.6 +} diff --git a/site/public/v1/smartphones/black-shark-4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-ksr-a0/index.json b/site/public/v1/smartphones/black-shark-4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-ksr-a0/index.json new file mode 100644 index 00000000000..a5931f5d887 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-ksr-a0/index.json @@ -0,0 +1,77 @@ +{ + "id": 6045, + "slug": "black-shark-4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-ksr-a0", + "name": "Black Shark 4 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB KSR-A0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-26", + "msrp_usd": 579, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 35.6, + "performance": 6.4, + "camera": 21.5, + "battery": 52.5, + "display": 62.0, + "value": 57.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.964311", + "updated_at": "2026-06-19T00:43:44.964311" +} diff --git a/site/public/v1/smartphones/black-shark-4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-ksr-a0/score/index.json b/site/public/v1/smartphones/black-shark-4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-ksr-a0/score/index.json new file mode 100644 index 00000000000..8ed7c5a96ba --- /dev/null +++ b/site/public/v1/smartphones/black-shark-4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-ksr-a0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 35.6, + "performance": 6.4, + "camera": 21.5, + "battery": 52.5, + "display": 62.0, + "value": 57.0 +} diff --git a/site/public/v1/smartphones/black-shark-4-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-ksr-a0/index.json b/site/public/v1/smartphones/black-shark-4-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-ksr-a0/index.json new file mode 100644 index 00000000000..83ed5cd207e --- /dev/null +++ b/site/public/v1/smartphones/black-shark-4-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-ksr-a0/index.json @@ -0,0 +1,77 @@ +{ + "id": 6046, + "slug": "black-shark-4-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-ksr-a0", + "name": "Black Shark 4 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB KSR-A0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-26", + "msrp_usd": 3999, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 35.6, + "performance": 6.4, + "camera": 21.5, + "battery": 52.5, + "display": 62.0, + "value": 17.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.964311", + "updated_at": "2026-06-19T00:43:44.964311" +} diff --git a/site/public/v1/smartphones/black-shark-4-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-ksr-a0/score/index.json b/site/public/v1/smartphones/black-shark-4-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-ksr-a0/score/index.json new file mode 100644 index 00000000000..6a6943ce7af --- /dev/null +++ b/site/public/v1/smartphones/black-shark-4-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-ksr-a0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 35.6, + "performance": 6.4, + "camera": 21.5, + "battery": 52.5, + "display": 62.0, + "value": 17.8 +} diff --git a/site/public/v1/smartphones/black-shark-4-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-ksr-a0/index.json b/site/public/v1/smartphones/black-shark-4-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-ksr-a0/index.json new file mode 100644 index 00000000000..427a91f3497 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-4-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-ksr-a0/index.json @@ -0,0 +1,77 @@ +{ + "id": 6047, + "slug": "black-shark-4-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-ksr-a0", + "name": "Black Shark 4 Pro 5G Top Edition Dual SIM TD-LTE CN 512GB KSR-A0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-26", + "msrp_usd": null, + "ram_gb": 16, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.1, + "performance": 12.4, + "camera": 21.5, + "battery": 52.5, + "display": 62.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.964311", + "updated_at": "2026-06-19T00:43:44.964311" +} diff --git a/site/public/v1/smartphones/black-shark-4-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-ksr-a0/score/index.json b/site/public/v1/smartphones/black-shark-4-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-ksr-a0/score/index.json new file mode 100644 index 00000000000..c33cae05457 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-4-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-ksr-a0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.1, + "performance": 12.4, + "camera": 21.5, + "battery": 52.5, + "display": 62.0, + "value": null +} diff --git a/site/public/v1/smartphones/black-shark-4s-5g-gundam-limited-edition-dual-sim-td-lte-cn-256gb-prs-a0/index.json b/site/public/v1/smartphones/black-shark-4s-5g-gundam-limited-edition-dual-sim-td-lte-cn-256gb-prs-a0/index.json new file mode 100644 index 00000000000..e1e57956f64 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-4s-5g-gundam-limited-edition-dual-sim-td-lte-cn-256gb-prs-a0/index.json @@ -0,0 +1,77 @@ +{ + "id": 6050, + "slug": "black-shark-4s-5g-gundam-limited-edition-dual-sim-td-lte-cn-256gb-prs-a0", + "name": "Black Shark 4S 5G Gundam Limited Edition Dual SIM TD-LTE CN 256GB PRS-A0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-10-14", + "msrp_usd": 3499, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 9.1, + "camera": 16.5, + "battery": 42.5, + "display": 62.0, + "value": 16.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.965311", + "updated_at": "2026-06-19T00:43:44.965311" +} diff --git a/site/public/v1/smartphones/black-shark-4s-5g-gundam-limited-edition-dual-sim-td-lte-cn-256gb-prs-a0/score/index.json b/site/public/v1/smartphones/black-shark-4s-5g-gundam-limited-edition-dual-sim-td-lte-cn-256gb-prs-a0/score/index.json new file mode 100644 index 00000000000..98dbc81aec1 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-4s-5g-gundam-limited-edition-dual-sim-td-lte-cn-256gb-prs-a0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 9.1, + "camera": 16.5, + "battery": 42.5, + "display": 62.0, + "value": 16.2 +} diff --git a/site/public/v1/smartphones/black-shark-4s-5g-standard-edition-dual-sim-td-lte-cn-128gb-prs-a0/index.json b/site/public/v1/smartphones/black-shark-4s-5g-standard-edition-dual-sim-td-lte-cn-128gb-prs-a0/index.json new file mode 100644 index 00000000000..0869d0d3847 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-4s-5g-standard-edition-dual-sim-td-lte-cn-128gb-prs-a0/index.json @@ -0,0 +1,77 @@ +{ + "id": 6051, + "slug": "black-shark-4s-5g-standard-edition-dual-sim-td-lte-cn-128gb-prs-a0", + "name": "Black Shark 4S 5G Standard Edition Dual SIM TD-LTE CN 128GB PRS-A0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-10-14", + "msrp_usd": 2999, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.8, + "performance": 6.1, + "camera": 16.5, + "battery": 42.5, + "display": 62.0, + "value": 15.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.965311", + "updated_at": "2026-06-19T00:43:44.965311" +} diff --git a/site/public/v1/smartphones/black-shark-4s-5g-standard-edition-dual-sim-td-lte-cn-128gb-prs-a0/score/index.json b/site/public/v1/smartphones/black-shark-4s-5g-standard-edition-dual-sim-td-lte-cn-128gb-prs-a0/score/index.json new file mode 100644 index 00000000000..e7f8bcd3a3e --- /dev/null +++ b/site/public/v1/smartphones/black-shark-4s-5g-standard-edition-dual-sim-td-lte-cn-128gb-prs-a0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.8, + "performance": 6.1, + "camera": 16.5, + "battery": 42.5, + "display": 62.0, + "value": 15.9 +} diff --git a/site/public/v1/smartphones/black-shark-4s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-ksr-a0/index.json b/site/public/v1/smartphones/black-shark-4s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-ksr-a0/index.json new file mode 100644 index 00000000000..a90a940b49b --- /dev/null +++ b/site/public/v1/smartphones/black-shark-4s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-ksr-a0/index.json @@ -0,0 +1,77 @@ +{ + "id": 6052, + "slug": "black-shark-4s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-ksr-a0", + "name": "Black Shark 4S Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB KSR-A0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-10-14", + "msrp_usd": 4799, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 36.8, + "performance": 11.2, + "camera": 21.5, + "battery": 52.5, + "display": 62.0, + "value": 18.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.965311", + "updated_at": "2026-06-19T00:43:44.965311" +} diff --git a/site/public/v1/smartphones/black-shark-4s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-ksr-a0/score/index.json b/site/public/v1/smartphones/black-shark-4s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-ksr-a0/score/index.json new file mode 100644 index 00000000000..c033b90d8d9 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-4s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-ksr-a0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 36.8, + "performance": 11.2, + "camera": 21.5, + "battery": 52.5, + "display": 62.0, + "value": 18.4 +} diff --git a/site/public/v1/smartphones/black-shark-4s-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-ksr-a0/index.json b/site/public/v1/smartphones/black-shark-4s-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-ksr-a0/index.json new file mode 100644 index 00000000000..c5826a2917b --- /dev/null +++ b/site/public/v1/smartphones/black-shark-4s-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-ksr-a0/index.json @@ -0,0 +1,77 @@ +{ + "id": 6053, + "slug": "black-shark-4s-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-ksr-a0", + "name": "Black Shark 4S Pro 5G Top Edition Dual SIM TD-LTE CN 512GB KSR-A0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-10-14", + "msrp_usd": null, + "ram_gb": 16, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.5, + "performance": 14.2, + "camera": 21.5, + "battery": 52.5, + "display": 62.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.965311", + "updated_at": "2026-06-19T00:43:44.965311" +} diff --git a/site/public/v1/smartphones/black-shark-4s-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-ksr-a0/score/index.json b/site/public/v1/smartphones/black-shark-4s-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-ksr-a0/score/index.json new file mode 100644 index 00000000000..d4d45082214 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-4s-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-ksr-a0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.5, + "performance": 14.2, + "camera": 21.5, + "battery": 52.5, + "display": 62.0, + "value": null +} diff --git a/site/public/v1/smartphones/black-shark-dual-sim-td-lte-cn-128gb-skr-a0/index.json b/site/public/v1/smartphones/black-shark-dual-sim-td-lte-cn-128gb-skr-a0/index.json new file mode 100644 index 00000000000..90d54746c31 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-dual-sim-td-lte-cn-128gb-skr-a0/index.json @@ -0,0 +1,76 @@ +{ + "id": 5601, + "slug": "black-shark-dual-sim-td-lte-cn-128gb-skr-a0", + "name": "Black Shark Dual SIM TD-LTE CN 128GB SKR-A0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-04-22", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 20.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 3.0, + "camera": 5.0, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.913307", + "updated_at": "2026-06-19T00:43:44.913307" +} diff --git a/site/public/v1/smartphones/black-shark-dual-sim-td-lte-cn-128gb-skr-a0/score/index.json b/site/public/v1/smartphones/black-shark-dual-sim-td-lte-cn-128gb-skr-a0/score/index.json new file mode 100644 index 00000000000..bf23aea706e --- /dev/null +++ b/site/public/v1/smartphones/black-shark-dual-sim-td-lte-cn-128gb-skr-a0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 3.0, + "camera": 5.0, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/black-shark-dual-sim-td-lte-cn-256gb-skr-a0/index.json b/site/public/v1/smartphones/black-shark-dual-sim-td-lte-cn-256gb-skr-a0/index.json new file mode 100644 index 00000000000..f5caaca8e48 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-dual-sim-td-lte-cn-256gb-skr-a0/index.json @@ -0,0 +1,76 @@ +{ + "id": 5602, + "slug": "black-shark-dual-sim-td-lte-cn-256gb-skr-a0", + "name": "Black Shark Dual SIM TD-LTE CN 256GB SKR-A0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 20.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 3.0, + "camera": 5.0, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.914307", + "updated_at": "2026-06-19T00:43:44.914307" +} diff --git a/site/public/v1/smartphones/black-shark-dual-sim-td-lte-cn-256gb-skr-a0/score/index.json b/site/public/v1/smartphones/black-shark-dual-sim-td-lte-cn-256gb-skr-a0/score/index.json new file mode 100644 index 00000000000..bf23aea706e --- /dev/null +++ b/site/public/v1/smartphones/black-shark-dual-sim-td-lte-cn-256gb-skr-a0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 3.0, + "camera": 5.0, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/black-shark-dual-sim-td-lte-cn-64gb-skr-a0/index.json b/site/public/v1/smartphones/black-shark-dual-sim-td-lte-cn-64gb-skr-a0/index.json new file mode 100644 index 00000000000..dfee86dab09 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-dual-sim-td-lte-cn-64gb-skr-a0/index.json @@ -0,0 +1,76 @@ +{ + "id": 5603, + "slug": "black-shark-dual-sim-td-lte-cn-64gb-skr-a0", + "name": "Black Shark Dual SIM TD-LTE CN 64GB SKR-A0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-04-21", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 20.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 5.0, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.914307", + "updated_at": "2026-06-19T00:43:44.914307" +} diff --git a/site/public/v1/smartphones/black-shark-dual-sim-td-lte-cn-64gb-skr-a0/score/index.json b/site/public/v1/smartphones/black-shark-dual-sim-td-lte-cn-64gb-skr-a0/score/index.json new file mode 100644 index 00000000000..fb29f69b43f --- /dev/null +++ b/site/public/v1/smartphones/black-shark-dual-sim-td-lte-cn-64gb-skr-a0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 5.0, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/black-shark-global-dual-sim-td-lte-128gb-skr-h0/index.json b/site/public/v1/smartphones/black-shark-global-dual-sim-td-lte-128gb-skr-h0/index.json new file mode 100644 index 00000000000..d859b8907f5 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-global-dual-sim-td-lte-128gb-skr-h0/index.json @@ -0,0 +1,76 @@ +{ + "id": 5714, + "slug": "black-shark-global-dual-sim-td-lte-128gb-skr-h0", + "name": "Black Shark Global Dual SIM TD-LTE 128GB SKR-H0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2019-01-22", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 20.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 3.0, + "camera": 5.0, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.926307", + "updated_at": "2026-06-19T00:43:44.926307" +} diff --git a/site/public/v1/smartphones/black-shark-global-dual-sim-td-lte-128gb-skr-h0/score/index.json b/site/public/v1/smartphones/black-shark-global-dual-sim-td-lte-128gb-skr-h0/score/index.json new file mode 100644 index 00000000000..bf23aea706e --- /dev/null +++ b/site/public/v1/smartphones/black-shark-global-dual-sim-td-lte-128gb-skr-h0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 3.0, + "camera": 5.0, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/black-shark-global-dual-sim-td-lte-64gb-skr-h0/index.json b/site/public/v1/smartphones/black-shark-global-dual-sim-td-lte-64gb-skr-h0/index.json new file mode 100644 index 00000000000..c5c61492c54 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-global-dual-sim-td-lte-64gb-skr-h0/index.json @@ -0,0 +1,76 @@ +{ + "id": 5715, + "slug": "black-shark-global-dual-sim-td-lte-64gb-skr-h0", + "name": "Black Shark Global Dual SIM TD-LTE 64GB SKR-H0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2019-01-21", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 20.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 5.0, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.926307", + "updated_at": "2026-06-19T00:43:44.926307" +} diff --git a/site/public/v1/smartphones/black-shark-global-dual-sim-td-lte-64gb-skr-h0/score/index.json b/site/public/v1/smartphones/black-shark-global-dual-sim-td-lte-64gb-skr-h0/score/index.json new file mode 100644 index 00000000000..fb29f69b43f --- /dev/null +++ b/site/public/v1/smartphones/black-shark-global-dual-sim-td-lte-64gb-skr-h0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 5.0, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/black-shark-helo-premium-edition-dual-sim-td-lte-256gb-awm-a0/index.json b/site/public/v1/smartphones/black-shark-helo-premium-edition-dual-sim-td-lte-256gb-awm-a0/index.json new file mode 100644 index 00000000000..7f6663231f2 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-helo-premium-edition-dual-sim-td-lte-256gb-awm-a0/index.json @@ -0,0 +1,76 @@ +{ + "id": 5604, + "slug": "black-shark-helo-premium-edition-dual-sim-td-lte-256gb-awm-a0", + "name": "Black Shark Helo Premium Edition Dual SIM TD-LTE 256GB AWM-A0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-11-11", + "msrp_usd": null, + "ram_gb": 10, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 4.5, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.914307", + "updated_at": "2026-06-19T00:43:44.914307" +} diff --git a/site/public/v1/smartphones/black-shark-helo-premium-edition-dual-sim-td-lte-256gb-awm-a0/score/index.json b/site/public/v1/smartphones/black-shark-helo-premium-edition-dual-sim-td-lte-256gb-awm-a0/score/index.json new file mode 100644 index 00000000000..93178c2860c --- /dev/null +++ b/site/public/v1/smartphones/black-shark-helo-premium-edition-dual-sim-td-lte-256gb-awm-a0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 4.5, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/black-shark-helo-premium-edition-global-dual-sim-td-lte-128gb-awm-a0/index.json b/site/public/v1/smartphones/black-shark-helo-premium-edition-global-dual-sim-td-lte-128gb-awm-a0/index.json new file mode 100644 index 00000000000..c3ff7606c80 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-helo-premium-edition-global-dual-sim-td-lte-128gb-awm-a0/index.json @@ -0,0 +1,76 @@ +{ + "id": 5605, + "slug": "black-shark-helo-premium-edition-global-dual-sim-td-lte-128gb-awm-a0", + "name": "Black Shark Helo Premium Edition Global Dual SIM TD-LTE 128GB AWM-A0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-10-29", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 3.0, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.914307", + "updated_at": "2026-06-19T00:43:44.914307" +} diff --git a/site/public/v1/smartphones/black-shark-helo-premium-edition-global-dual-sim-td-lte-128gb-awm-a0/score/index.json b/site/public/v1/smartphones/black-shark-helo-premium-edition-global-dual-sim-td-lte-128gb-awm-a0/score/index.json new file mode 100644 index 00000000000..44accb04092 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-helo-premium-edition-global-dual-sim-td-lte-128gb-awm-a0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 3.0, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/black-shark-helo-standard-edition-global-dual-sim-td-lte-128gb-awm-a0/index.json b/site/public/v1/smartphones/black-shark-helo-standard-edition-global-dual-sim-td-lte-128gb-awm-a0/index.json new file mode 100644 index 00000000000..8c81692c596 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-helo-standard-edition-global-dual-sim-td-lte-128gb-awm-a0/index.json @@ -0,0 +1,76 @@ +{ + "id": 5606, + "slug": "black-shark-helo-standard-edition-global-dual-sim-td-lte-128gb-awm-a0", + "name": "Black Shark Helo Standard Edition Global Dual SIM TD-LTE 128GB AWM-A0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-10-29", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.914307", + "updated_at": "2026-06-19T00:43:44.914307" +} diff --git a/site/public/v1/smartphones/black-shark-helo-standard-edition-global-dual-sim-td-lte-128gb-awm-a0/score/index.json b/site/public/v1/smartphones/black-shark-helo-standard-edition-global-dual-sim-td-lte-128gb-awm-a0/score/index.json new file mode 100644 index 00000000000..c0aa0f02657 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-helo-standard-edition-global-dual-sim-td-lte-128gb-awm-a0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/black-shark-helo-standard-edition-global-dual-sim-td-lte-64gb-awm-a0/index.json b/site/public/v1/smartphones/black-shark-helo-standard-edition-global-dual-sim-td-lte-64gb-awm-a0/index.json new file mode 100644 index 00000000000..088d93c00d9 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-helo-standard-edition-global-dual-sim-td-lte-64gb-awm-a0/index.json @@ -0,0 +1,76 @@ +{ + "id": 5607, + "slug": "black-shark-helo-standard-edition-global-dual-sim-td-lte-64gb-awm-a0", + "name": "Black Shark Helo Standard Edition Global Dual SIM TD-LTE 64GB AWM-A0", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-11-16", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.914307", + "updated_at": "2026-06-19T00:43:44.914307" +} diff --git a/site/public/v1/smartphones/black-shark-helo-standard-edition-global-dual-sim-td-lte-64gb-awm-a0/score/index.json b/site/public/v1/smartphones/black-shark-helo-standard-edition-global-dual-sim-td-lte-64gb-awm-a0/score/index.json new file mode 100644 index 00000000000..c0aa0f02657 --- /dev/null +++ b/site/public/v1/smartphones/black-shark-helo-standard-edition-global-dual-sim-td-lte-64gb-awm-a0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/blackberry-evolve-bbg100-1-dual-sim-td-lte-in/index.json b/site/public/v1/smartphones/blackberry-evolve-bbg100-1-dual-sim-td-lte-in/index.json new file mode 100644 index 00000000000..af7f8843313 --- /dev/null +++ b/site/public/v1/smartphones/blackberry-evolve-bbg100-1-dual-sim-td-lte-in/index.json @@ -0,0 +1,76 @@ +{ + "id": 453, + "slug": "blackberry-evolve-bbg100-1-dual-sim-td-lte-in", + "name": "BlackBerry Evolve BBG100-1 Dual SIM TD-LTE IN", + "brand": { + "id": 3, + "slug": "blackberry", + "name": "BlackBerry", + "country": "CA", + "url": "/v1/brands/blackberry" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-10-11", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": null, + "camera": 5.4, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.170423", + "updated_at": "2026-06-19T00:43:44.170423" +} diff --git a/site/public/v1/smartphones/blackberry-evolve-bbg100-1-dual-sim-td-lte-in/score/index.json b/site/public/v1/smartphones/blackberry-evolve-bbg100-1-dual-sim-td-lte-in/score/index.json new file mode 100644 index 00000000000..298cba684f4 --- /dev/null +++ b/site/public/v1/smartphones/blackberry-evolve-bbg100-1-dual-sim-td-lte-in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": null, + "camera": 5.4, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/blackberry-evolve-x-bbh100-1-dual-sim-td-lte-in/index.json b/site/public/v1/smartphones/blackberry-evolve-x-bbh100-1-dual-sim-td-lte-in/index.json new file mode 100644 index 00000000000..92a0a18d24f --- /dev/null +++ b/site/public/v1/smartphones/blackberry-evolve-x-bbh100-1-dual-sim-td-lte-in/index.json @@ -0,0 +1,76 @@ +{ + "id": 454, + "slug": "blackberry-evolve-x-bbh100-1-dual-sim-td-lte-in", + "name": "BlackBerry Evolve X BBH100-1 Dual SIM TD-LTE IN", + "brand": { + "id": 3, + "slug": "blackberry", + "name": "BlackBerry", + "country": "CA", + "url": "/v1/brands/blackberry" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 19.5, + "camera": 5.0, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.170423", + "updated_at": "2026-06-19T00:43:44.170423" +} diff --git a/site/public/v1/smartphones/blackberry-evolve-x-bbh100-1-dual-sim-td-lte-in/score/index.json b/site/public/v1/smartphones/blackberry-evolve-x-bbh100-1-dual-sim-td-lte-in/score/index.json new file mode 100644 index 00000000000..72186d21821 --- /dev/null +++ b/site/public/v1/smartphones/blackberry-evolve-x-bbh100-1-dual-sim-td-lte-in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 19.5, + "camera": 5.0, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/blackberry-key2-bbf100-1-td-lte-eu-au-jp/index.json b/site/public/v1/smartphones/blackberry-key2-bbf100-1-td-lte-eu-au-jp/index.json new file mode 100644 index 00000000000..388037e2000 --- /dev/null +++ b/site/public/v1/smartphones/blackberry-key2-bbf100-1-td-lte-eu-au-jp/index.json @@ -0,0 +1,76 @@ +{ + "id": 455, + "slug": "blackberry-key2-bbf100-1-td-lte-eu-au-jp", + "name": "BlackBerry KEY2 BBF100-1 TD-LTE EU AU JP", + "brand": { + "id": 3, + "slug": "blackberry", + "name": "BlackBerry", + "country": "CA", + "url": "/v1/brands/blackberry" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-06-27", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.48, + "resolution": "1080x1620", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 19.5, + "camera": 5.0, + "battery": 7.5, + "display": 48.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.170423", + "updated_at": "2026-06-19T00:43:44.170423" +} diff --git a/site/public/v1/smartphones/blackberry-key2-bbf100-1-td-lte-eu-au-jp/score/index.json b/site/public/v1/smartphones/blackberry-key2-bbf100-1-td-lte-eu-au-jp/score/index.json new file mode 100644 index 00000000000..c20b73a648b --- /dev/null +++ b/site/public/v1/smartphones/blackberry-key2-bbf100-1-td-lte-eu-au-jp/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 19.5, + "camera": 5.0, + "battery": 7.5, + "display": 48.5, + "value": null +} diff --git a/site/public/v1/smartphones/blackberry-key2-bbf100-2-td-lte-am-128gb/index.json b/site/public/v1/smartphones/blackberry-key2-bbf100-2-td-lte-am-128gb/index.json new file mode 100644 index 00000000000..01aa5aa866c --- /dev/null +++ b/site/public/v1/smartphones/blackberry-key2-bbf100-2-td-lte-am-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 456, + "slug": "blackberry-key2-bbf100-2-td-lte-am-128gb", + "name": "BlackBerry KEY2 BBF100-2 TD-LTE AM 128GB", + "brand": { + "id": 3, + "slug": "blackberry", + "name": "BlackBerry", + "country": "CA", + "url": "/v1/brands/blackberry" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-06-21", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 4.48, + "resolution": "1080x1620", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 19.5, + "camera": 5.0, + "battery": 7.5, + "display": 48.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.170423", + "updated_at": "2026-06-19T00:43:44.170423" +} diff --git a/site/public/v1/smartphones/blackberry-key2-bbf100-2-td-lte-am-128gb/score/index.json b/site/public/v1/smartphones/blackberry-key2-bbf100-2-td-lte-am-128gb/score/index.json new file mode 100644 index 00000000000..c20b73a648b --- /dev/null +++ b/site/public/v1/smartphones/blackberry-key2-bbf100-2-td-lte-am-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 19.5, + "camera": 5.0, + "battery": 7.5, + "display": 48.5, + "value": null +} diff --git a/site/public/v1/smartphones/blackberry-key2-bbf100-2-td-lte-am/index.json b/site/public/v1/smartphones/blackberry-key2-bbf100-2-td-lte-am/index.json new file mode 100644 index 00000000000..dae65475965 --- /dev/null +++ b/site/public/v1/smartphones/blackberry-key2-bbf100-2-td-lte-am/index.json @@ -0,0 +1,76 @@ +{ + "id": 457, + "slug": "blackberry-key2-bbf100-2-td-lte-am", + "name": "BlackBerry KEY2 BBF100-2 TD-LTE AM", + "brand": { + "id": 3, + "slug": "blackberry", + "name": "BlackBerry", + "country": "CA", + "url": "/v1/brands/blackberry" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-06-21", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.48, + "resolution": "1080x1620", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 19.5, + "camera": 5.0, + "battery": 7.5, + "display": 48.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.170423", + "updated_at": "2026-06-19T00:43:44.170423" +} diff --git a/site/public/v1/smartphones/blackberry-key2-bbf100-2-td-lte-am/score/index.json b/site/public/v1/smartphones/blackberry-key2-bbf100-2-td-lte-am/score/index.json new file mode 100644 index 00000000000..c20b73a648b --- /dev/null +++ b/site/public/v1/smartphones/blackberry-key2-bbf100-2-td-lte-am/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 19.5, + "camera": 5.0, + "battery": 7.5, + "display": 48.5, + "value": null +} diff --git a/site/public/v1/smartphones/blackberry-key2-bbf100-4-td-lte-cn/index.json b/site/public/v1/smartphones/blackberry-key2-bbf100-4-td-lte-cn/index.json new file mode 100644 index 00000000000..04c1d9c93a2 --- /dev/null +++ b/site/public/v1/smartphones/blackberry-key2-bbf100-4-td-lte-cn/index.json @@ -0,0 +1,76 @@ +{ + "id": 458, + "slug": "blackberry-key2-bbf100-4-td-lte-cn", + "name": "BlackBerry KEY2 BBF100-4 TD-LTE CN", + "brand": { + "id": 3, + "slug": "blackberry", + "name": "BlackBerry", + "country": "CA", + "url": "/v1/brands/blackberry" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.48, + "resolution": "1080x1620", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 19.5, + "camera": 5.0, + "battery": 7.5, + "display": 48.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.170423", + "updated_at": "2026-06-19T00:43:44.170423" +} diff --git a/site/public/v1/smartphones/blackberry-key2-bbf100-4-td-lte-cn/score/index.json b/site/public/v1/smartphones/blackberry-key2-bbf100-4-td-lte-cn/score/index.json new file mode 100644 index 00000000000..c20b73a648b --- /dev/null +++ b/site/public/v1/smartphones/blackberry-key2-bbf100-4-td-lte-cn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 19.5, + "camera": 5.0, + "battery": 7.5, + "display": 48.5, + "value": null +} diff --git a/site/public/v1/smartphones/blackberry-key2-bbf100-6-dual-sim-td-lte-apac-128gb/index.json b/site/public/v1/smartphones/blackberry-key2-bbf100-6-dual-sim-td-lte-apac-128gb/index.json new file mode 100644 index 00000000000..a0e3e883019 --- /dev/null +++ b/site/public/v1/smartphones/blackberry-key2-bbf100-6-dual-sim-td-lte-apac-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 459, + "slug": "blackberry-key2-bbf100-6-dual-sim-td-lte-apac-128gb", + "name": "BlackBerry KEY2 BBF100-6 Dual SIM TD-LTE APAC 128GB", + "brand": { + "id": 3, + "slug": "blackberry", + "name": "BlackBerry", + "country": "CA", + "url": "/v1/brands/blackberry" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-07-23", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 4.48, + "resolution": "1080x1620", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 19.5, + "camera": 5.0, + "battery": 7.5, + "display": 48.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.170423", + "updated_at": "2026-06-19T00:43:44.170423" +} diff --git a/site/public/v1/smartphones/blackberry-key2-bbf100-6-dual-sim-td-lte-apac-128gb/score/index.json b/site/public/v1/smartphones/blackberry-key2-bbf100-6-dual-sim-td-lte-apac-128gb/score/index.json new file mode 100644 index 00000000000..c20b73a648b --- /dev/null +++ b/site/public/v1/smartphones/blackberry-key2-bbf100-6-dual-sim-td-lte-apac-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 19.5, + "camera": 5.0, + "battery": 7.5, + "display": 48.5, + "value": null +} diff --git a/site/public/v1/smartphones/blackberry-key2-bbf100-6-dual-sim-td-lte-apac/index.json b/site/public/v1/smartphones/blackberry-key2-bbf100-6-dual-sim-td-lte-apac/index.json new file mode 100644 index 00000000000..062a42dec42 --- /dev/null +++ b/site/public/v1/smartphones/blackberry-key2-bbf100-6-dual-sim-td-lte-apac/index.json @@ -0,0 +1,76 @@ +{ + "id": 460, + "slug": "blackberry-key2-bbf100-6-dual-sim-td-lte-apac", + "name": "BlackBerry KEY2 BBF100-6 Dual SIM TD-LTE APAC", + "brand": { + "id": 3, + "slug": "blackberry", + "name": "BlackBerry", + "country": "CA", + "url": "/v1/brands/blackberry" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-07-23", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.48, + "resolution": "1080x1620", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 19.5, + "camera": 5.0, + "battery": 7.5, + "display": 48.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.171423", + "updated_at": "2026-06-19T00:43:44.171423" +} diff --git a/site/public/v1/smartphones/blackberry-key2-bbf100-6-dual-sim-td-lte-apac/score/index.json b/site/public/v1/smartphones/blackberry-key2-bbf100-6-dual-sim-td-lte-apac/score/index.json new file mode 100644 index 00000000000..c20b73a648b --- /dev/null +++ b/site/public/v1/smartphones/blackberry-key2-bbf100-6-dual-sim-td-lte-apac/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 19.5, + "camera": 5.0, + "battery": 7.5, + "display": 48.5, + "value": null +} diff --git a/site/public/v1/smartphones/blackberry-key2-bbf100-8-dual-sim-td-lte-jp-64gb/index.json b/site/public/v1/smartphones/blackberry-key2-bbf100-8-dual-sim-td-lte-jp-64gb/index.json new file mode 100644 index 00000000000..114ed965ae8 --- /dev/null +++ b/site/public/v1/smartphones/blackberry-key2-bbf100-8-dual-sim-td-lte-jp-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 461, + "slug": "blackberry-key2-bbf100-8-dual-sim-td-lte-jp-64gb", + "name": "BlackBerry KEY2 BBF100-8 Dual SIM TD-LTE JP 64GB", + "brand": { + "id": 3, + "slug": "blackberry", + "name": "BlackBerry", + "country": "CA", + "url": "/v1/brands/blackberry" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.48, + "resolution": "1080x1620", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 19.5, + "camera": 5.0, + "battery": 7.5, + "display": 48.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.171423", + "updated_at": "2026-06-19T00:43:44.171423" +} diff --git a/site/public/v1/smartphones/blackberry-key2-bbf100-8-dual-sim-td-lte-jp-64gb/score/index.json b/site/public/v1/smartphones/blackberry-key2-bbf100-8-dual-sim-td-lte-jp-64gb/score/index.json new file mode 100644 index 00000000000..c20b73a648b --- /dev/null +++ b/site/public/v1/smartphones/blackberry-key2-bbf100-8-dual-sim-td-lte-jp-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 19.5, + "camera": 5.0, + "battery": 7.5, + "display": 48.5, + "value": null +} diff --git a/site/public/v1/smartphones/blackberry-key2-bbf100-9-td-lte-jp-128gb/index.json b/site/public/v1/smartphones/blackberry-key2-bbf100-9-td-lte-jp-128gb/index.json new file mode 100644 index 00000000000..dfdcf3290b6 --- /dev/null +++ b/site/public/v1/smartphones/blackberry-key2-bbf100-9-td-lte-jp-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 462, + "slug": "blackberry-key2-bbf100-9-td-lte-jp-128gb", + "name": "BlackBerry KEY2 BBF100-9 TD-LTE JP 128GB", + "brand": { + "id": 3, + "slug": "blackberry", + "name": "BlackBerry", + "country": "CA", + "url": "/v1/brands/blackberry" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-09-07", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 4.48, + "resolution": "1080x1620", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 19.5, + "camera": 5.0, + "battery": 7.5, + "display": 48.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.171423", + "updated_at": "2026-06-19T00:43:44.171423" +} diff --git a/site/public/v1/smartphones/blackberry-key2-bbf100-9-td-lte-jp-128gb/score/index.json b/site/public/v1/smartphones/blackberry-key2-bbf100-9-td-lte-jp-128gb/score/index.json new file mode 100644 index 00000000000..c20b73a648b --- /dev/null +++ b/site/public/v1/smartphones/blackberry-key2-bbf100-9-td-lte-jp-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 19.5, + "camera": 5.0, + "battery": 7.5, + "display": 48.5, + "value": null +} diff --git a/site/public/v1/smartphones/blackberry-key2-last-edition-bbf100-9-td-lte-jp-128gb/index.json b/site/public/v1/smartphones/blackberry-key2-last-edition-bbf100-9-td-lte-jp-128gb/index.json new file mode 100644 index 00000000000..3e81b1800a7 --- /dev/null +++ b/site/public/v1/smartphones/blackberry-key2-last-edition-bbf100-9-td-lte-jp-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 469, + "slug": "blackberry-key2-last-edition-bbf100-9-td-lte-jp-128gb", + "name": "BlackBerry KEY2 Last Edition BBF100-9 TD-LTE JP 128GB", + "brand": { + "id": 3, + "slug": "blackberry", + "name": "BlackBerry", + "country": "CA", + "url": "/v1/brands/blackberry" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2020-07-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 4.48, + "resolution": "1080x1620", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 19.5, + "camera": 5.0, + "battery": 7.5, + "display": 48.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.172423", + "updated_at": "2026-06-19T00:43:44.172423" +} diff --git a/site/public/v1/smartphones/blackberry-key2-last-edition-bbf100-9-td-lte-jp-128gb/score/index.json b/site/public/v1/smartphones/blackberry-key2-last-edition-bbf100-9-td-lte-jp-128gb/score/index.json new file mode 100644 index 00000000000..c20b73a648b --- /dev/null +++ b/site/public/v1/smartphones/blackberry-key2-last-edition-bbf100-9-td-lte-jp-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 19.5, + "camera": 5.0, + "battery": 7.5, + "display": 48.5, + "value": null +} diff --git a/site/public/v1/smartphones/blackberry-key2-le-bbe100-1-global-td-lte/index.json b/site/public/v1/smartphones/blackberry-key2-le-bbe100-1-global-td-lte/index.json new file mode 100644 index 00000000000..f72d1aa1d6b --- /dev/null +++ b/site/public/v1/smartphones/blackberry-key2-le-bbe100-1-global-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 463, + "slug": "blackberry-key2-le-bbe100-1-global-td-lte", + "name": "BlackBerry KEY2 LE BBE100-1 Global TD-LTE", + "brand": { + "id": 3, + "slug": "blackberry", + "name": "BlackBerry", + "country": "CA", + "url": "/v1/brands/blackberry" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-09-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 4.48, + "resolution": "1080x1620", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 48.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.171423", + "updated_at": "2026-06-19T00:43:44.171423" +} diff --git a/site/public/v1/smartphones/blackberry-key2-le-bbe100-1-global-td-lte/score/index.json b/site/public/v1/smartphones/blackberry-key2-le-bbe100-1-global-td-lte/score/index.json new file mode 100644 index 00000000000..649fdcdb0f0 --- /dev/null +++ b/site/public/v1/smartphones/blackberry-key2-le-bbe100-1-global-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 48.5, + "value": null +} diff --git a/site/public/v1/smartphones/blackberry-key2-le-bbe100-2-td-lte-am-32gb/index.json b/site/public/v1/smartphones/blackberry-key2-le-bbe100-2-td-lte-am-32gb/index.json new file mode 100644 index 00000000000..2049c8ea63b --- /dev/null +++ b/site/public/v1/smartphones/blackberry-key2-le-bbe100-2-td-lte-am-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 464, + "slug": "blackberry-key2-le-bbe100-2-td-lte-am-32gb", + "name": "BlackBerry KEY2 LE BBE100-2 TD-LTE AM 32GB", + "brand": { + "id": 3, + "slug": "blackberry", + "name": "BlackBerry", + "country": "CA", + "url": "/v1/brands/blackberry" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 4.48, + "resolution": "1080x1620", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 48.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.171423", + "updated_at": "2026-06-19T00:43:44.171423" +} diff --git a/site/public/v1/smartphones/blackberry-key2-le-bbe100-2-td-lte-am-32gb/score/index.json b/site/public/v1/smartphones/blackberry-key2-le-bbe100-2-td-lte-am-32gb/score/index.json new file mode 100644 index 00000000000..649fdcdb0f0 --- /dev/null +++ b/site/public/v1/smartphones/blackberry-key2-le-bbe100-2-td-lte-am-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 48.5, + "value": null +} diff --git a/site/public/v1/smartphones/blackberry-key2-le-bbe100-4-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/blackberry-key2-le-bbe100-4-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..fd4b65addce --- /dev/null +++ b/site/public/v1/smartphones/blackberry-key2-le-bbe100-4-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 465, + "slug": "blackberry-key2-le-bbe100-4-global-dual-sim-td-lte-64gb", + "name": "BlackBerry KEY2 LE BBE100-4 Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 3, + "slug": "blackberry", + "name": "BlackBerry", + "country": "CA", + "url": "/v1/brands/blackberry" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.48, + "resolution": "1080x1620", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 48.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.171423", + "updated_at": "2026-06-19T00:43:44.171423" +} diff --git a/site/public/v1/smartphones/blackberry-key2-le-bbe100-4-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/blackberry-key2-le-bbe100-4-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..649fdcdb0f0 --- /dev/null +++ b/site/public/v1/smartphones/blackberry-key2-le-bbe100-4-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 48.5, + "value": null +} diff --git a/site/public/v1/smartphones/blackberry-key2-le-bbe100-5-dual-sim-td-lte-na-64gb/index.json b/site/public/v1/smartphones/blackberry-key2-le-bbe100-5-dual-sim-td-lte-na-64gb/index.json new file mode 100644 index 00000000000..4ca96d2d804 --- /dev/null +++ b/site/public/v1/smartphones/blackberry-key2-le-bbe100-5-dual-sim-td-lte-na-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 466, + "slug": "blackberry-key2-le-bbe100-5-dual-sim-td-lte-na-64gb", + "name": "BlackBerry KEY2 LE BBE100-5 Dual SIM TD-LTE NA 64GB", + "brand": { + "id": 3, + "slug": "blackberry", + "name": "BlackBerry", + "country": "CA", + "url": "/v1/brands/blackberry" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.48, + "resolution": "1080x1620", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 48.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.171423", + "updated_at": "2026-06-19T00:43:44.171423" +} diff --git a/site/public/v1/smartphones/blackberry-key2-le-bbe100-5-dual-sim-td-lte-na-64gb/score/index.json b/site/public/v1/smartphones/blackberry-key2-le-bbe100-5-dual-sim-td-lte-na-64gb/score/index.json new file mode 100644 index 00000000000..649fdcdb0f0 --- /dev/null +++ b/site/public/v1/smartphones/blackberry-key2-le-bbe100-5-dual-sim-td-lte-na-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 48.5, + "value": null +} diff --git a/site/public/v1/smartphones/blackberry-key2-red-edition-bbf100-1-td-lte-eu-au-jp-128gb/index.json b/site/public/v1/smartphones/blackberry-key2-red-edition-bbf100-1-td-lte-eu-au-jp-128gb/index.json new file mode 100644 index 00000000000..2ed39ba1c4a --- /dev/null +++ b/site/public/v1/smartphones/blackberry-key2-red-edition-bbf100-1-td-lte-eu-au-jp-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 467, + "slug": "blackberry-key2-red-edition-bbf100-1-td-lte-eu-au-jp-128gb", + "name": "BlackBerry KEY2 Red Edition BBF100-1 TD-LTE EU AU JP 128GB", + "brand": { + "id": 3, + "slug": "blackberry", + "name": "BlackBerry", + "country": "CA", + "url": "/v1/brands/blackberry" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2019-03-08", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 4.48, + "resolution": "1080x1620", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 19.5, + "camera": 5.0, + "battery": 7.5, + "display": 48.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.171423", + "updated_at": "2026-06-19T00:43:44.171423" +} diff --git a/site/public/v1/smartphones/blackberry-key2-red-edition-bbf100-1-td-lte-eu-au-jp-128gb/score/index.json b/site/public/v1/smartphones/blackberry-key2-red-edition-bbf100-1-td-lte-eu-au-jp-128gb/score/index.json new file mode 100644 index 00000000000..c20b73a648b --- /dev/null +++ b/site/public/v1/smartphones/blackberry-key2-red-edition-bbf100-1-td-lte-eu-au-jp-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 19.5, + "camera": 5.0, + "battery": 7.5, + "display": 48.5, + "value": null +} diff --git a/site/public/v1/smartphones/blackberry-key2-red-eition-bbf100-2-td-lte-am-128gb/index.json b/site/public/v1/smartphones/blackberry-key2-red-eition-bbf100-2-td-lte-am-128gb/index.json new file mode 100644 index 00000000000..428fb0e1f57 --- /dev/null +++ b/site/public/v1/smartphones/blackberry-key2-red-eition-bbf100-2-td-lte-am-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 468, + "slug": "blackberry-key2-red-eition-bbf100-2-td-lte-am-128gb", + "name": "BlackBerry KEY2 Red Eition BBF100-2 TD-LTE AM 128GB", + "brand": { + "id": 3, + "slug": "blackberry", + "name": "BlackBerry", + "country": "CA", + "url": "/v1/brands/blackberry" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2019-04-18", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 4.48, + "resolution": "1080x1620", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 19.5, + "camera": 5.0, + "battery": 7.5, + "display": 48.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.171423", + "updated_at": "2026-06-19T00:43:44.171423" +} diff --git a/site/public/v1/smartphones/blackberry-key2-red-eition-bbf100-2-td-lte-am-128gb/score/index.json b/site/public/v1/smartphones/blackberry-key2-red-eition-bbf100-2-td-lte-am-128gb/score/index.json new file mode 100644 index 00000000000..c20b73a648b --- /dev/null +++ b/site/public/v1/smartphones/blackberry-key2-red-eition-bbf100-2-td-lte-am-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 19.5, + "camera": 5.0, + "battery": 7.5, + "display": 48.5, + "value": null +} diff --git a/site/public/v1/smartphones/blackberry-motion-global-dual-sim-td-lte-bbd100-6/index.json b/site/public/v1/smartphones/blackberry-motion-global-dual-sim-td-lte-bbd100-6/index.json new file mode 100644 index 00000000000..9169d4a50d2 --- /dev/null +++ b/site/public/v1/smartphones/blackberry-motion-global-dual-sim-td-lte-bbd100-6/index.json @@ -0,0 +1,76 @@ +{ + "id": 452, + "slug": "blackberry-motion-global-dual-sim-td-lte-bbd100-6", + "name": "BlackBerry Motion Global Dual SIm TD-LTE BBD100-6", + "brand": { + "id": 3, + "slug": "blackberry", + "name": "BlackBerry", + "country": "CA", + "url": "/v1/brands/blackberry" + }, + "soc": { + "id": 114, + "slug": "snapdragon-625", + "name": "Snapdragon 625", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-625" + }, + "release_date": "2017-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.47, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.170423", + "updated_at": "2026-06-19T00:43:44.170423" +} diff --git a/site/public/v1/smartphones/blackberry-motion-global-dual-sim-td-lte-bbd100-6/score/index.json b/site/public/v1/smartphones/blackberry-motion-global-dual-sim-td-lte-bbd100-6/score/index.json new file mode 100644 index 00000000000..6c8b815b076 --- /dev/null +++ b/site/public/v1/smartphones/blackberry-motion-global-dual-sim-td-lte-bbd100-6/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/blade-10-smart-lte-a-emea-128gb/index.json b/site/public/v1/smartphones/blade-10-smart-lte-a-emea-128gb/index.json new file mode 100644 index 00000000000..be69769d808 --- /dev/null +++ b/site/public/v1/smartphones/blade-10-smart-lte-a-emea-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 6472, + "slug": "blade-10-smart-lte-a-emea-128gb", + "name": "Blade 10 Smart LTE-A EMEA 128GB", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2020-05-19", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.49, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 265 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.014824", + "updated_at": "2026-06-19T00:43:45.014824" +} diff --git a/site/public/v1/smartphones/blade-10-smart-lte-a-emea-128gb/score/index.json b/site/public/v1/smartphones/blade-10-smart-lte-a-emea-128gb/score/index.json new file mode 100644 index 00000000000..841c6807555 --- /dev/null +++ b/site/public/v1/smartphones/blade-10-smart-lte-a-emea-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/blade-11-prime-2020-dual-sim-lte-a-us-z6251vs/index.json b/site/public/v1/smartphones/blade-11-prime-2020-dual-sim-lte-a-us-z6251vs/index.json new file mode 100644 index 00000000000..d181175561a --- /dev/null +++ b/site/public/v1/smartphones/blade-11-prime-2020-dual-sim-lte-a-us-z6251vs/index.json @@ -0,0 +1,76 @@ +{ + "id": 6518, + "slug": "blade-11-prime-2020-dual-sim-lte-a-us-z6251vs", + "name": "Blade 11 Prime 2020 Dual SIM LTE-A US Z6251VS", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2021-05-01", + "msrp_usd": 192, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.8, + "performance": null, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": 59.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.019824", + "updated_at": "2026-06-19T00:43:45.019824" +} diff --git a/site/public/v1/smartphones/blade-11-prime-2020-dual-sim-lte-a-us-z6251vs/score/index.json b/site/public/v1/smartphones/blade-11-prime-2020-dual-sim-lte-a-us-z6251vs/score/index.json new file mode 100644 index 00000000000..8650a773283 --- /dev/null +++ b/site/public/v1/smartphones/blade-11-prime-2020-dual-sim-lte-a-us-z6251vs/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.8, + "performance": null, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": 59.4 +} diff --git a/site/public/v1/smartphones/blade-20-5g-dual-sim-td-lte-cn-128gb-8012n/index.json b/site/public/v1/smartphones/blade-20-5g-dual-sim-td-lte-cn-128gb-8012n/index.json new file mode 100644 index 00000000000..de162f64bff --- /dev/null +++ b/site/public/v1/smartphones/blade-20-5g-dual-sim-td-lte-cn-128gb-8012n/index.json @@ -0,0 +1,76 @@ +{ + "id": 6473, + "slug": "blade-20-5g-dual-sim-td-lte-cn-128gb-8012n", + "name": "Blade 20 5G Dual SIM TD-LTE CN 128GB 8012N", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2020-12-01", + "msrp_usd": 1399, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": 14.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.014824", + "updated_at": "2026-06-19T00:43:45.014824" +} diff --git a/site/public/v1/smartphones/blade-20-5g-dual-sim-td-lte-cn-128gb-8012n/score/index.json b/site/public/v1/smartphones/blade-20-5g-dual-sim-td-lte-cn-128gb-8012n/score/index.json new file mode 100644 index 00000000000..3548592088b --- /dev/null +++ b/site/public/v1/smartphones/blade-20-5g-dual-sim-td-lte-cn-128gb-8012n/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": 14.9 +} diff --git a/site/public/v1/smartphones/blade-20-pro-5g-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/blade-20-pro-5g-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..fea0d3d6c79 --- /dev/null +++ b/site/public/v1/smartphones/blade-20-pro-5g-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 6474, + "slug": "blade-20-pro-5g-dual-sim-td-lte-cn-128gb", + "name": "Blade 20 Pro 5G Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-12-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 3.0, + "camera": 21.7, + "battery": 15.6, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.014824", + "updated_at": "2026-06-19T00:43:45.014824" +} diff --git a/site/public/v1/smartphones/blade-20-pro-5g-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/blade-20-pro-5g-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..c07b32a992c --- /dev/null +++ b/site/public/v1/smartphones/blade-20-pro-5g-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 3.0, + "camera": 21.7, + "battery": 15.6, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/blade-20-smart-global-td-lte-128gb/index.json b/site/public/v1/smartphones/blade-20-smart-global-td-lte-128gb/index.json new file mode 100644 index 00000000000..189ff7a4498 --- /dev/null +++ b/site/public/v1/smartphones/blade-20-smart-global-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 6430, + "slug": "blade-20-smart-global-td-lte-128gb", + "name": "Blade 20 Smart Global TD-LTE 128GB", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.49, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 265 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.008824", + "updated_at": "2026-06-19T00:43:45.008824" +} diff --git a/site/public/v1/smartphones/blade-20-smart-global-td-lte-128gb/score/index.json b/site/public/v1/smartphones/blade-20-smart-global-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..841c6807555 --- /dev/null +++ b/site/public/v1/smartphones/blade-20-smart-global-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/blade-a3-prime-lte-us-z5157vs/index.json b/site/public/v1/smartphones/blade-a3-prime-lte-us-z5157vs/index.json new file mode 100644 index 00000000000..2d1ae3dbdc0 --- /dev/null +++ b/site/public/v1/smartphones/blade-a3-prime-lte-us-z5157vs/index.json @@ -0,0 +1,76 @@ +{ + "id": 6475, + "slug": "blade-a3-prime-lte-us-z5157vs", + "name": "Blade A3 Prime LTE US Z5157VS", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2020-06-11", + "msrp_usd": 99, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2660, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 161.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": 56.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.014824", + "updated_at": "2026-06-19T00:43:45.014824" +} diff --git a/site/public/v1/smartphones/blade-a3-prime-lte-us-z5157vs/score/index.json b/site/public/v1/smartphones/blade-a3-prime-lte-us-z5157vs/score/index.json new file mode 100644 index 00000000000..5c96d84f650 --- /dev/null +++ b/site/public/v1/smartphones/blade-a3-prime-lte-us-z5157vs/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": 56.6 +} diff --git a/site/public/v1/smartphones/blade-a3y-lte-us-z5157v/index.json b/site/public/v1/smartphones/blade-a3y-lte-us-z5157v/index.json new file mode 100644 index 00000000000..8ae3f5b6327 --- /dev/null +++ b/site/public/v1/smartphones/blade-a3y-lte-us-z5157v/index.json @@ -0,0 +1,76 @@ +{ + "id": 6476, + "slug": "blade-a3y-lte-us-z5157v", + "name": "Blade A3Y LTE US Z5157V", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2020-10-27", + "msrp_usd": 99, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2660, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 161.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": 56.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.014824", + "updated_at": "2026-06-19T00:43:45.014824" +} diff --git a/site/public/v1/smartphones/blade-a3y-lte-us-z5157v/score/index.json b/site/public/v1/smartphones/blade-a3y-lte-us-z5157v/score/index.json new file mode 100644 index 00000000000..5c96d84f650 --- /dev/null +++ b/site/public/v1/smartphones/blade-a3y-lte-us-z5157v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": 56.6 +} diff --git a/site/public/v1/smartphones/blade-a512-global-dual-sim-lte/index.json b/site/public/v1/smartphones/blade-a512-global-dual-sim-lte/index.json new file mode 100644 index 00000000000..f8a71dfbb16 --- /dev/null +++ b/site/public/v1/smartphones/blade-a512-global-dual-sim-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 6391, + "slug": "blade-a512-global-dual-sim-lte", + "name": "Blade A512 Global Dual SIM LTE", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-04-09", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.2, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2450, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 130.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "6.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 47.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.004824", + "updated_at": "2026-06-19T00:43:45.004824" +} diff --git a/site/public/v1/smartphones/blade-a512-global-dual-sim-lte/score/index.json b/site/public/v1/smartphones/blade-a512-global-dual-sim-lte/score/index.json new file mode 100644 index 00000000000..4aab13d3459 --- /dev/null +++ b/site/public/v1/smartphones/blade-a512-global-dual-sim-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 47.4, + "value": null +} diff --git a/site/public/v1/smartphones/blade-a522-global-dual-sim-lte/index.json b/site/public/v1/smartphones/blade-a522-global-dual-sim-lte/index.json new file mode 100644 index 00000000000..224ac35f1de --- /dev/null +++ b/site/public/v1/smartphones/blade-a522-global-dual-sim-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 6378, + "slug": "blade-a522-global-dual-sim-lte", + "name": "Blade A522 Global Dual SIM LTE", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2017-10-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 2730, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 131.6, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.002824", + "updated_at": "2026-06-19T00:43:45.002824" +} diff --git a/site/public/v1/smartphones/blade-a522-global-dual-sim-lte/score/index.json b/site/public/v1/smartphones/blade-a522-global-dual-sim-lte/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/blade-a522-global-dual-sim-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/blade-a7-2020-dual-sim-td-lte-emea-32gb-ea72020-blade-a7s/index.json b/site/public/v1/smartphones/blade-a7-2020-dual-sim-td-lte-emea-32gb-ea72020-blade-a7s/index.json new file mode 100644 index 00000000000..77219ef9112 --- /dev/null +++ b/site/public/v1/smartphones/blade-a7-2020-dual-sim-td-lte-emea-32gb-ea72020-blade-a7s/index.json @@ -0,0 +1,76 @@ +{ + "id": 6477, + "slug": "blade-a7-2020-dual-sim-td-lte-emea-32gb-ea72020-blade-a7s", + "name": "Blade A7 2020 Dual SIM TD-LTE EMEA 32GB EA72020 / Blade A7s", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-01-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.8, + "performance": null, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.014824", + "updated_at": "2026-06-19T00:43:45.014824" +} diff --git a/site/public/v1/smartphones/blade-a7-2020-dual-sim-td-lte-emea-32gb-ea72020-blade-a7s/score/index.json b/site/public/v1/smartphones/blade-a7-2020-dual-sim-td-lte-emea-32gb-ea72020-blade-a7s/score/index.json new file mode 100644 index 00000000000..7f41dfc3901 --- /dev/null +++ b/site/public/v1/smartphones/blade-a7-2020-dual-sim-td-lte-emea-32gb-ea72020-blade-a7s/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.8, + "performance": null, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/blade-a7-2020-dual-sim-td-lte-emea-64gb-ea72020-blade-a7s/index.json b/site/public/v1/smartphones/blade-a7-2020-dual-sim-td-lte-emea-64gb-ea72020-blade-a7s/index.json new file mode 100644 index 00000000000..77d551c3f27 --- /dev/null +++ b/site/public/v1/smartphones/blade-a7-2020-dual-sim-td-lte-emea-64gb-ea72020-blade-a7s/index.json @@ -0,0 +1,76 @@ +{ + "id": 6478, + "slug": "blade-a7-2020-dual-sim-td-lte-emea-64gb-ea72020-blade-a7s", + "name": "Blade A7 2020 Dual SIM TD-LTE EMEA 64GB EA72020 / Blade A7s", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-01-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.8, + "performance": null, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.014824", + "updated_at": "2026-06-19T00:43:45.014824" +} diff --git a/site/public/v1/smartphones/blade-a7-2020-dual-sim-td-lte-emea-64gb-ea72020-blade-a7s/score/index.json b/site/public/v1/smartphones/blade-a7-2020-dual-sim-td-lte-emea-64gb-ea72020-blade-a7s/score/index.json new file mode 100644 index 00000000000..7f41dfc3901 --- /dev/null +++ b/site/public/v1/smartphones/blade-a7-2020-dual-sim-td-lte-emea-64gb-ea72020-blade-a7s/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.8, + "performance": null, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/blade-a7s-2020-dual-sim-td-lte-cn-64gb-a7010/index.json b/site/public/v1/smartphones/blade-a7s-2020-dual-sim-td-lte-cn-64gb-a7010/index.json new file mode 100644 index 00000000000..2dfd56961a1 --- /dev/null +++ b/site/public/v1/smartphones/blade-a7s-2020-dual-sim-td-lte-cn-64gb-a7010/index.json @@ -0,0 +1,76 @@ +{ + "id": 6479, + "slug": "blade-a7s-2020-dual-sim-td-lte-cn-64gb-a7010", + "name": "Blade A7s 2020 Dual SIM TD-LTE CN 64GB A7010", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-01-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.8, + "performance": null, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.014824", + "updated_at": "2026-06-19T00:43:45.014824" +} diff --git a/site/public/v1/smartphones/blade-a7s-2020-dual-sim-td-lte-cn-64gb-a7010/score/index.json b/site/public/v1/smartphones/blade-a7s-2020-dual-sim-td-lte-cn-64gb-a7010/score/index.json new file mode 100644 index 00000000000..7f41dfc3901 --- /dev/null +++ b/site/public/v1/smartphones/blade-a7s-2020-dual-sim-td-lte-cn-64gb-a7010/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.8, + "performance": null, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/blade-max-2s-dual-sim-lte-us-z6410s/index.json b/site/public/v1/smartphones/blade-max-2s-dual-sim-lte-us-z6410s/index.json new file mode 100644 index 00000000000..69a113c9e48 --- /dev/null +++ b/site/public/v1/smartphones/blade-max-2s-dual-sim-lte-us-z6410s/index.json @@ -0,0 +1,76 @@ +{ + "id": 6392, + "slug": "blade-max-2s-dual-sim-lte-us-z6410s", + "name": "Blade Max 2s Dual SIM LTE US Z6410S", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 113, + "slug": "snapdragon-435", + "name": "Snapdragon 435", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-435" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.004824", + "updated_at": "2026-06-19T00:43:45.004824" +} diff --git a/site/public/v1/smartphones/blade-max-2s-dual-sim-lte-us-z6410s/score/index.json b/site/public/v1/smartphones/blade-max-2s-dual-sim-lte-us-z6410s/score/index.json new file mode 100644 index 00000000000..881e0cbad02 --- /dev/null +++ b/site/public/v1/smartphones/blade-max-2s-dual-sim-lte-us-z6410s/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/blade-max-view-lte-us-z610dl/index.json b/site/public/v1/smartphones/blade-max-view-lte-us-z610dl/index.json new file mode 100644 index 00000000000..ad65bd6dfbe --- /dev/null +++ b/site/public/v1/smartphones/blade-max-view-lte-us-z610dl/index.json @@ -0,0 +1,76 @@ +{ + "id": 6393, + "slug": "blade-max-view-lte-us-z610dl", + "name": "Blade Max View LTE US Z610DL", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 113, + "slug": "snapdragon-435", + "name": "Snapdragon 435", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-435" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 159.9, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": null, + "camera": 6.3, + "battery": 15.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.004824", + "updated_at": "2026-06-19T00:43:45.004824" +} diff --git a/site/public/v1/smartphones/blade-max-view-lte-us-z610dl/score/index.json b/site/public/v1/smartphones/blade-max-view-lte-us-z610dl/score/index.json new file mode 100644 index 00000000000..23d39ea00ba --- /dev/null +++ b/site/public/v1/smartphones/blade-max-view-lte-us-z610dl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": null, + "camera": 6.3, + "battery": 15.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/blade-v2020-dual-sim-lte-a-eu-p671-a1-alpha-20/index.json b/site/public/v1/smartphones/blade-v2020-dual-sim-lte-a-eu-p671-a1-alpha-20/index.json new file mode 100644 index 00000000000..3924550f3c0 --- /dev/null +++ b/site/public/v1/smartphones/blade-v2020-dual-sim-lte-a-eu-p671-a1-alpha-20/index.json @@ -0,0 +1,76 @@ +{ + "id": 6480, + "slug": "blade-v2020-dual-sim-lte-a-eu-p671-a1-alpha-20", + "name": "Blade V2020 Dual SIM LTE-A EU P671 / A1 Alpha 20+", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2020-05-26", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.015824", + "updated_at": "2026-06-19T00:43:45.015824" +} diff --git a/site/public/v1/smartphones/blade-v2020-dual-sim-lte-a-eu-p671-a1-alpha-20/score/index.json b/site/public/v1/smartphones/blade-v2020-dual-sim-lte-a-eu-p671-a1-alpha-20/score/index.json new file mode 100644 index 00000000000..84d6bbc6b09 --- /dev/null +++ b/site/public/v1/smartphones/blade-v2020-dual-sim-lte-a-eu-p671-a1-alpha-20/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/blade-v2020-lte-a-latam/index.json b/site/public/v1/smartphones/blade-v2020-lte-a-latam/index.json new file mode 100644 index 00000000000..2b974079106 --- /dev/null +++ b/site/public/v1/smartphones/blade-v2020-lte-a-latam/index.json @@ -0,0 +1,76 @@ +{ + "id": 6481, + "slug": "blade-v2020-lte-a-latam", + "name": "Blade V2020 LTE-A LATAM", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2020-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.015824", + "updated_at": "2026-06-19T00:43:45.015824" +} diff --git a/site/public/v1/smartphones/blade-v2020-lte-a-latam/score/index.json b/site/public/v1/smartphones/blade-v2020-lte-a-latam/score/index.json new file mode 100644 index 00000000000..84d6bbc6b09 --- /dev/null +++ b/site/public/v1/smartphones/blade-v2020-lte-a-latam/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/blade-v2020-vita-lte-latam/index.json b/site/public/v1/smartphones/blade-v2020-vita-lte-latam/index.json new file mode 100644 index 00000000000..790553836eb --- /dev/null +++ b/site/public/v1/smartphones/blade-v2020-vita-lte-latam/index.json @@ -0,0 +1,76 @@ +{ + "id": 6482, + "slug": "blade-v2020-vita-lte-latam", + "name": "Blade V2020 Vita LTE LATAM", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 264 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "Yes" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.015824", + "updated_at": "2026-06-19T00:43:45.015824" +} diff --git a/site/public/v1/smartphones/blade-v2020-vita-lte-latam/score/index.json b/site/public/v1/smartphones/blade-v2020-vita-lte-latam/score/index.json new file mode 100644 index 00000000000..99aee406377 --- /dev/null +++ b/site/public/v1/smartphones/blade-v2020-vita-lte-latam/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/blade-v2021-5g-dual-sim-td-lte-cn-128gb-8012n/index.json b/site/public/v1/smartphones/blade-v2021-5g-dual-sim-td-lte-cn-128gb-8012n/index.json new file mode 100644 index 00000000000..1b9d80c0a07 --- /dev/null +++ b/site/public/v1/smartphones/blade-v2021-5g-dual-sim-td-lte-cn-128gb-8012n/index.json @@ -0,0 +1,76 @@ +{ + "id": 6483, + "slug": "blade-v2021-5g-dual-sim-td-lte-cn-128gb-8012n", + "name": "Blade V2021 5G Dual SIM TD-LTE CN 128GB 8012N", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2020-12-07", + "msrp_usd": 1399, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": 14.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.015824", + "updated_at": "2026-06-19T00:43:45.015824" +} diff --git a/site/public/v1/smartphones/blade-v2021-5g-dual-sim-td-lte-cn-128gb-8012n/score/index.json b/site/public/v1/smartphones/blade-v2021-5g-dual-sim-td-lte-cn-128gb-8012n/score/index.json new file mode 100644 index 00000000000..3548592088b --- /dev/null +++ b/site/public/v1/smartphones/blade-v2021-5g-dual-sim-td-lte-cn-128gb-8012n/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": 14.9 +} diff --git a/site/public/v1/smartphones/blade-v220-lte-emea-avea-intouch-4/index.json b/site/public/v1/smartphones/blade-v220-lte-emea-avea-intouch-4/index.json new file mode 100644 index 00000000000..2573d655f7f --- /dev/null +++ b/site/public/v1/smartphones/blade-v220-lte-emea-avea-intouch-4/index.json @@ -0,0 +1,76 @@ +{ + "id": 6377, + "slug": "blade-v220-lte-emea-avea-intouch-4", + "name": "Blade V220 LTE EMEA / Avea inTouch 4", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 105, + "slug": "snapdragon-410", + "name": "Snapdragon 410", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 306", + "url": "/v1/socs/snapdragon-410" + }, + "release_date": "2015-03-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 2100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "4.4", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.002824", + "updated_at": "2026-06-19T00:43:45.002824" +} diff --git a/site/public/v1/smartphones/blade-v220-lte-emea-avea-intouch-4/score/index.json b/site/public/v1/smartphones/blade-v220-lte-emea-avea-intouch-4/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/blade-v220-lte-emea-avea-intouch-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/blade-v30-global-dual-sim-td-lte-128gb-a9030/index.json b/site/public/v1/smartphones/blade-v30-global-dual-sim-td-lte-128gb-a9030/index.json new file mode 100644 index 00000000000..efc001de1ac --- /dev/null +++ b/site/public/v1/smartphones/blade-v30-global-dual-sim-td-lte-128gb-a9030/index.json @@ -0,0 +1,76 @@ +{ + "id": 6519, + "slug": "blade-v30-global-dual-sim-td-lte-128gb-a9030", + "name": "Blade V30 Global Dual SIM TD-LTE 128GB A9030", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 212, + "slug": "tiger-t618", + "name": "Unisoc Tiger T618", + "manufacturer": { + "slug": "unisoc", + "name": "UNISOC", + "url": "/v1/brands/unisoc" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/tiger-t618" + }, + "release_date": "2021-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 14.4 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.0, + "performance": 0.0, + "camera": 21.5, + "battery": 30.0, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.019824", + "updated_at": "2026-06-19T00:43:45.019824" +} diff --git a/site/public/v1/smartphones/blade-v30-global-dual-sim-td-lte-128gb-a9030/score/index.json b/site/public/v1/smartphones/blade-v30-global-dual-sim-td-lte-128gb-a9030/score/index.json new file mode 100644 index 00000000000..d5cd7e27dbe --- /dev/null +++ b/site/public/v1/smartphones/blade-v30-global-dual-sim-td-lte-128gb-a9030/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.0, + "performance": 0.0, + "camera": 21.5, + "battery": 30.0, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/blade-v30-lte-a-latam-128gb-a9030/index.json b/site/public/v1/smartphones/blade-v30-lte-a-latam-128gb-a9030/index.json new file mode 100644 index 00000000000..cf1566b307e --- /dev/null +++ b/site/public/v1/smartphones/blade-v30-lte-a-latam-128gb-a9030/index.json @@ -0,0 +1,76 @@ +{ + "id": 6520, + "slug": "blade-v30-lte-a-latam-128gb-a9030", + "name": "Blade V30 LTE-A LATAM 128GB A9030", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 212, + "slug": "tiger-t618", + "name": "Unisoc Tiger T618", + "manufacturer": { + "slug": "unisoc", + "name": "UNISOC", + "url": "/v1/brands/unisoc" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/tiger-t618" + }, + "release_date": "2021-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 14.4 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.0, + "performance": 0.0, + "camera": 21.5, + "battery": 30.0, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.019824", + "updated_at": "2026-06-19T00:43:45.019824" +} diff --git a/site/public/v1/smartphones/blade-v30-lte-a-latam-128gb-a9030/score/index.json b/site/public/v1/smartphones/blade-v30-lte-a-latam-128gb-a9030/score/index.json new file mode 100644 index 00000000000..d5cd7e27dbe --- /dev/null +++ b/site/public/v1/smartphones/blade-v30-lte-a-latam-128gb-a9030/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.0, + "performance": 0.0, + "camera": 21.5, + "battery": 30.0, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/blade-v8q-dual-sim-td-lte-jp/index.json b/site/public/v1/smartphones/blade-v8q-dual-sim-td-lte-jp/index.json new file mode 100644 index 00000000000..84634d4c49c --- /dev/null +++ b/site/public/v1/smartphones/blade-v8q-dual-sim-td-lte-jp/index.json @@ -0,0 +1,76 @@ +{ + "id": 6394, + "slug": "blade-v8q-dual-sim-td-lte-jp", + "name": "Blade V8Q Dual SIM TD-LTE JP", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 113, + "slug": "snapdragon-435", + "name": "Snapdragon 435", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-435" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 2500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 132.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.2, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.004824", + "updated_at": "2026-06-19T00:43:45.004824" +} diff --git a/site/public/v1/smartphones/blade-v8q-dual-sim-td-lte-jp/score/index.json b/site/public/v1/smartphones/blade-v8q-dual-sim-td-lte-jp/score/index.json new file mode 100644 index 00000000000..97a903b7df9 --- /dev/null +++ b/site/public/v1/smartphones/blade-v8q-dual-sim-td-lte-jp/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.2, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/blade-v9-dual-sim-lte-a-am-version-2-32gb/index.json b/site/public/v1/smartphones/blade-v9-dual-sim-lte-a-am-version-2-32gb/index.json new file mode 100644 index 00000000000..207e570864b --- /dev/null +++ b/site/public/v1/smartphones/blade-v9-dual-sim-lte-a-am-version-2-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 6395, + "slug": "blade-v9-dual-sim-lte-a-am-version-2-32gb", + "name": "Blade V9 Dual SIM LTE-A AM Version 2 32GB", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": null, + "camera": 6.3, + "battery": 3.0, + "display": 47.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.004824", + "updated_at": "2026-06-19T00:43:45.004824" +} diff --git a/site/public/v1/smartphones/blade-v9-dual-sim-lte-a-am-version-2-32gb/score/index.json b/site/public/v1/smartphones/blade-v9-dual-sim-lte-a-am-version-2-32gb/score/index.json new file mode 100644 index 00000000000..9906c88ed87 --- /dev/null +++ b/site/public/v1/smartphones/blade-v9-dual-sim-lte-a-am-version-2-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": null, + "camera": 6.3, + "battery": 3.0, + "display": 47.6, + "value": null +} diff --git a/site/public/v1/smartphones/blade-v9-dual-sim-td-lte-cn-32gb-v0900/index.json b/site/public/v1/smartphones/blade-v9-dual-sim-td-lte-cn-32gb-v0900/index.json new file mode 100644 index 00000000000..615fe9442dc --- /dev/null +++ b/site/public/v1/smartphones/blade-v9-dual-sim-td-lte-cn-32gb-v0900/index.json @@ -0,0 +1,76 @@ +{ + "id": 6396, + "slug": "blade-v9-dual-sim-td-lte-cn-32gb-v0900", + "name": "Blade V9 Dual SIM TD-LTE CN 32GB V0900", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-08-16", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": null, + "camera": 6.3, + "battery": 1.5, + "display": 47.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.004824", + "updated_at": "2026-06-19T00:43:45.004824" +} diff --git a/site/public/v1/smartphones/blade-v9-dual-sim-td-lte-cn-32gb-v0900/score/index.json b/site/public/v1/smartphones/blade-v9-dual-sim-td-lte-cn-32gb-v0900/score/index.json new file mode 100644 index 00000000000..1e5f084581f --- /dev/null +++ b/site/public/v1/smartphones/blade-v9-dual-sim-td-lte-cn-32gb-v0900/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": null, + "camera": 6.3, + "battery": 1.5, + "display": 47.6, + "value": null +} diff --git a/site/public/v1/smartphones/blade-v9-dual-sim-td-lte-cn-64gb-v0900/index.json b/site/public/v1/smartphones/blade-v9-dual-sim-td-lte-cn-64gb-v0900/index.json new file mode 100644 index 00000000000..5afb1dab1f0 --- /dev/null +++ b/site/public/v1/smartphones/blade-v9-dual-sim-td-lte-cn-64gb-v0900/index.json @@ -0,0 +1,76 @@ +{ + "id": 6397, + "slug": "blade-v9-dual-sim-td-lte-cn-64gb-v0900", + "name": "Blade V9 Dual SIM TD-LTE CN 64GB V0900", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-08-16", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": null, + "camera": 6.3, + "battery": 1.5, + "display": 47.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.005824", + "updated_at": "2026-06-19T00:43:45.005824" +} diff --git a/site/public/v1/smartphones/blade-v9-dual-sim-td-lte-cn-64gb-v0900/score/index.json b/site/public/v1/smartphones/blade-v9-dual-sim-td-lte-cn-64gb-v0900/score/index.json new file mode 100644 index 00000000000..1e5f084581f --- /dev/null +++ b/site/public/v1/smartphones/blade-v9-dual-sim-td-lte-cn-64gb-v0900/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": null, + "camera": 6.3, + "battery": 1.5, + "display": 47.6, + "value": null +} diff --git a/site/public/v1/smartphones/blade-v9-dual-sim-td-lte-version-3-16gb/index.json b/site/public/v1/smartphones/blade-v9-dual-sim-td-lte-version-3-16gb/index.json new file mode 100644 index 00000000000..91d398a52e5 --- /dev/null +++ b/site/public/v1/smartphones/blade-v9-dual-sim-td-lte-version-3-16gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 6398, + "slug": "blade-v9-dual-sim-td-lte-version-3-16gb", + "name": "Blade V9 Dual SIM TD-LTE Version 3 16GB", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": null, + "camera": 6.3, + "battery": 3.0, + "display": 47.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.005824", + "updated_at": "2026-06-19T00:43:45.005824" +} diff --git a/site/public/v1/smartphones/blade-v9-dual-sim-td-lte-version-3-16gb/score/index.json b/site/public/v1/smartphones/blade-v9-dual-sim-td-lte-version-3-16gb/score/index.json new file mode 100644 index 00000000000..9906c88ed87 --- /dev/null +++ b/site/public/v1/smartphones/blade-v9-dual-sim-td-lte-version-3-16gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": null, + "camera": 6.3, + "battery": 3.0, + "display": 47.6, + "value": null +} diff --git a/site/public/v1/smartphones/blade-v9-vita-dual-sim-lte-am-v0920/index.json b/site/public/v1/smartphones/blade-v9-vita-dual-sim-lte-am-v0920/index.json new file mode 100644 index 00000000000..8b9a35cc85e --- /dev/null +++ b/site/public/v1/smartphones/blade-v9-vita-dual-sim-lte-am-v0920/index.json @@ -0,0 +1,76 @@ +{ + "id": 6399, + "slug": "blade-v9-vita-dual-sim-lte-am-v0920", + "name": "Blade V9 Vita Dual SIM LTE AM V0920", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 113, + "slug": "snapdragon-435", + "name": "Snapdragon 435", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-435" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 132.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": null, + "camera": 5.2, + "battery": 3.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.005824", + "updated_at": "2026-06-19T00:43:45.005824" +} diff --git a/site/public/v1/smartphones/blade-v9-vita-dual-sim-lte-am-v0920/score/index.json b/site/public/v1/smartphones/blade-v9-vita-dual-sim-lte-am-v0920/score/index.json new file mode 100644 index 00000000000..b91c658f19c --- /dev/null +++ b/site/public/v1/smartphones/blade-v9-vita-dual-sim-lte-am-v0920/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": null, + "camera": 5.2, + "battery": 3.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/blade-v9-vita-dual-sim-td-lte-cn-v0920-xiaoxian-5s/index.json b/site/public/v1/smartphones/blade-v9-vita-dual-sim-td-lte-cn-v0920-xiaoxian-5s/index.json new file mode 100644 index 00000000000..98c21af0f0a --- /dev/null +++ b/site/public/v1/smartphones/blade-v9-vita-dual-sim-td-lte-cn-v0920-xiaoxian-5s/index.json @@ -0,0 +1,76 @@ +{ + "id": 6400, + "slug": "blade-v9-vita-dual-sim-td-lte-cn-v0920-xiaoxian-5s", + "name": "Blade V9 Vita Dual SIM TD-LTE CN V0920 / Xiaoxian 5S", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 113, + "slug": "snapdragon-435", + "name": "Snapdragon 435", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-435" + }, + "release_date": "2018-04-11", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 132.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": null, + "camera": 5.2, + "battery": 1.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.005824", + "updated_at": "2026-06-19T00:43:45.005824" +} diff --git a/site/public/v1/smartphones/blade-v9-vita-dual-sim-td-lte-cn-v0920-xiaoxian-5s/score/index.json b/site/public/v1/smartphones/blade-v9-vita-dual-sim-td-lte-cn-v0920-xiaoxian-5s/score/index.json new file mode 100644 index 00000000000..850ceebd7d4 --- /dev/null +++ b/site/public/v1/smartphones/blade-v9-vita-dual-sim-td-lte-cn-v0920-xiaoxian-5s/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": null, + "camera": 5.2, + "battery": 1.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/blade-x1-5g-lte-a-us-z6750m-z6750vs/index.json b/site/public/v1/smartphones/blade-x1-5g-lte-a-us-z6750m-z6750vs/index.json new file mode 100644 index 00000000000..04966f04a82 --- /dev/null +++ b/site/public/v1/smartphones/blade-x1-5g-lte-a-us-z6750m-z6750vs/index.json @@ -0,0 +1,77 @@ +{ + "id": 6521, + "slug": "blade-x1-5g-lte-a-us-z6750m-z6750vs", + "name": "Blade X1 5G LTE-A US Z6750M / Z6750VS", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2021-01-26", + "msrp_usd": 360, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 27.2, + "value": 55.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.019824", + "updated_at": "2026-06-19T00:43:45.019824" +} diff --git a/site/public/v1/smartphones/blade-x1-5g-lte-a-us-z6750m-z6750vs/score/index.json b/site/public/v1/smartphones/blade-x1-5g-lte-a-us-z6750m-z6750vs/score/index.json new file mode 100644 index 00000000000..749753752e6 --- /dev/null +++ b/site/public/v1/smartphones/blade-x1-5g-lte-a-us-z6750m-z6750vs/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 27.2, + "value": 55.2 +} diff --git a/site/public/v1/smartphones/boost-jett-4gx-lte-au-b125/index.json b/site/public/v1/smartphones/boost-jett-4gx-lte-au-b125/index.json new file mode 100644 index 00000000000..4be26fcc5e9 --- /dev/null +++ b/site/public/v1/smartphones/boost-jett-4gx-lte-au-b125/index.json @@ -0,0 +1,76 @@ +{ + "id": 6401, + "slug": "boost-jett-4gx-lte-au-b125", + "name": "Boost Jett 4GX LTE AU B125", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 104, + "slug": "snapdragon-210", + "name": "Snapdragon 210", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-210" + }, + "release_date": "2018-12-31", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 4.02, + "resolution": "480x800", + "type": "Color IPS TFT LCD display", + "ppi": 232 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 0.3 + } + ], + "battery_mah": 1600, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 125.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.005824", + "updated_at": "2026-06-19T00:43:45.005824" +} diff --git a/site/public/v1/smartphones/boost-jett-4gx-lte-au-b125/score/index.json b/site/public/v1/smartphones/boost-jett-4gx-lte-au-b125/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/boost-jett-4gx-lte-au-b125/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/c2-tennen-lte-a-us-32gb-c2-tava/index.json b/site/public/v1/smartphones/c2-tennen-lte-a-us-32gb-c2-tava/index.json new file mode 100644 index 00000000000..58d783b240b --- /dev/null +++ b/site/public/v1/smartphones/c2-tennen-lte-a-us-32gb-c2-tava/index.json @@ -0,0 +1,76 @@ +{ + "id": 2453, + "slug": "c2-tennen-lte-a-us-32gb-c2-tava", + "name": "C2 Tennen LTE-A US 32GB / C2 Tava", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2020-06-14", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.460276", + "updated_at": "2026-06-19T00:43:44.460276" +} diff --git a/site/public/v1/smartphones/c2-tennen-lte-a-us-32gb-c2-tava/score/index.json b/site/public/v1/smartphones/c2-tennen-lte-a-us-32gb-c2-tava/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/c2-tennen-lte-a-us-32gb-c2-tava/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/c5-endi-lte-a-us/index.json b/site/public/v1/smartphones/c5-endi-lte-a-us/index.json new file mode 100644 index 00000000000..d4da9103fd9 --- /dev/null +++ b/site/public/v1/smartphones/c5-endi-lte-a-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 2455, + "slug": "c5-endi-lte-a-us", + "name": "C5 Endi LTE-A US", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-06-14", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.460276", + "updated_at": "2026-06-19T00:43:44.460276" +} diff --git a/site/public/v1/smartphones/c5-endi-lte-a-us/score/index.json b/site/public/v1/smartphones/c5-endi-lte-a-us/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/c5-endi-lte-a-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/c61/index.json b/site/public/v1/smartphones/c61/index.json new file mode 100644 index 00000000000..1baadd47174 --- /dev/null +++ b/site/public/v1/smartphones/c61/index.json @@ -0,0 +1,70 @@ +{ + "id": 3693, + "slug": "c61", + "name": "C61", + "brand": { + "id": 31, + "slug": "realme", + "name": "realme", + "country": "CN", + "url": "/v1/brands/realme" + }, + "soc": { + "id": 216, + "slug": "unisoc-t612", + "name": "UNISOC Tiger T612", + "manufacturer": { + "slug": "unisoc", + "name": "UNISOC", + "url": "/v1/brands/unisoc" + }, + "process_nm": 12.0, + "gpu_name": "ARM Mali-G57", + "url": "/v1/socs/unisoc-t612" + }, + "release_date": "2024-01-01", + "msrp_usd": 130, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5 + }, + "cameras": [ + { + "type": "main", + "mp": 50.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": null, + "camera": 17.1, + "battery": 30.0, + "display": null, + "value": 61.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.631425", + "updated_at": "2026-06-19T00:43:44.631425" +} diff --git a/site/public/v1/smartphones/c61/score/index.json b/site/public/v1/smartphones/c61/score/index.json new file mode 100644 index 00000000000..c07a3576284 --- /dev/null +++ b/site/public/v1/smartphones/c61/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": null, + "camera": 17.1, + "battery": 30.0, + "display": null, + "value": 61.8 +} diff --git a/site/public/v1/smartphones/camon-15-air-dual-sim-td-lte-cc6-cd6/index.json b/site/public/v1/smartphones/camon-15-air-dual-sim-td-lte-cc6-cd6/index.json new file mode 100644 index 00000000000..0c057f43563 --- /dev/null +++ b/site/public/v1/smartphones/camon-15-air-dual-sim-td-lte-cc6-cd6/index.json @@ -0,0 +1,76 @@ +{ + "id": 4979, + "slug": "camon-15-air-dual-sim-td-lte-cc6-cd6", + "name": "Camon 15 Air Dual SIM TD-LTE CC6 / CD6", + "brand": { + "id": 39, + "slug": "tecno", + "name": "Tecno Mobile", + "country": "CN", + "url": "/v1/brands/tecno" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.2, + "performance": null, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.836762", + "updated_at": "2026-06-19T00:43:44.836762" +} diff --git a/site/public/v1/smartphones/camon-15-air-dual-sim-td-lte-cc6-cd6/score/index.json b/site/public/v1/smartphones/camon-15-air-dual-sim-td-lte-cc6-cd6/score/index.json new file mode 100644 index 00000000000..a885b368bc4 --- /dev/null +++ b/site/public/v1/smartphones/camon-15-air-dual-sim-td-lte-cc6-cd6/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.2, + "performance": null, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/camon-15-dual-sim-td-lte-cc7-cd7/index.json b/site/public/v1/smartphones/camon-15-dual-sim-td-lte-cc7-cd7/index.json new file mode 100644 index 00000000000..c8d5f43a8bf --- /dev/null +++ b/site/public/v1/smartphones/camon-15-dual-sim-td-lte-cc7-cd7/index.json @@ -0,0 +1,76 @@ +{ + "id": 4980, + "slug": "camon-15-dual-sim-td-lte-cc7-cd7", + "name": "Camon 15 Dual SIM TD-LTE CC7 / CD7", + "brand": { + "id": 39, + "slug": "tecno", + "name": "Tecno Mobile", + "country": "CN", + "url": "/v1/brands/tecno" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-02-26", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.2, + "performance": null, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.836762", + "updated_at": "2026-06-19T00:43:44.836762" +} diff --git a/site/public/v1/smartphones/camon-15-dual-sim-td-lte-cc7-cd7/score/index.json b/site/public/v1/smartphones/camon-15-dual-sim-td-lte-cc7-cd7/score/index.json new file mode 100644 index 00000000000..a885b368bc4 --- /dev/null +++ b/site/public/v1/smartphones/camon-15-dual-sim-td-lte-cc7-cd7/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.2, + "performance": null, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/camon-15-premier-dual-sim-td-lte-128gb-cc8j-cd8j/index.json b/site/public/v1/smartphones/camon-15-premier-dual-sim-td-lte-128gb-cc8j-cd8j/index.json new file mode 100644 index 00000000000..686b8e93ac5 --- /dev/null +++ b/site/public/v1/smartphones/camon-15-premier-dual-sim-td-lte-128gb-cc8j-cd8j/index.json @@ -0,0 +1,76 @@ +{ + "id": 4981, + "slug": "camon-15-premier-dual-sim-td-lte-128gb-cc8j-cd8j", + "name": "Camon 15 Premier Dual SIM TD-LTE 128GB CC8j / CD8j", + "brand": { + "id": 39, + "slug": "tecno", + "name": "Tecno Mobile", + "country": "CN", + "url": "/v1/brands/tecno" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-02-26", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.54, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 1.5, + "camera": 21.7, + "battery": 15.0, + "display": 44.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.836762", + "updated_at": "2026-06-19T00:43:44.836762" +} diff --git a/site/public/v1/smartphones/camon-15-premier-dual-sim-td-lte-128gb-cc8j-cd8j/score/index.json b/site/public/v1/smartphones/camon-15-premier-dual-sim-td-lte-128gb-cc8j-cd8j/score/index.json new file mode 100644 index 00000000000..66067fe58c5 --- /dev/null +++ b/site/public/v1/smartphones/camon-15-premier-dual-sim-td-lte-128gb-cc8j-cd8j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 1.5, + "camera": 21.7, + "battery": 15.0, + "display": 44.4, + "value": null +} diff --git a/site/public/v1/smartphones/camon-15-pro-dual-sim-td-lte-128gb-cc8-cd8/index.json b/site/public/v1/smartphones/camon-15-pro-dual-sim-td-lte-128gb-cc8-cd8/index.json new file mode 100644 index 00000000000..bf328580185 --- /dev/null +++ b/site/public/v1/smartphones/camon-15-pro-dual-sim-td-lte-128gb-cc8-cd8/index.json @@ -0,0 +1,76 @@ +{ + "id": 4982, + "slug": "camon-15-pro-dual-sim-td-lte-128gb-cc8-cd8", + "name": "Camon 15 Pro Dual SIM TD-LTE 128GB CC8 / CD8", + "brand": { + "id": 39, + "slug": "tecno", + "name": "Tecno Mobile", + "country": "CN", + "url": "/v1/brands/tecno" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-02-26", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.54, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.836762", + "updated_at": "2026-06-19T00:43:44.836762" +} diff --git a/site/public/v1/smartphones/camon-15-pro-dual-sim-td-lte-128gb-cc8-cd8/score/index.json b/site/public/v1/smartphones/camon-15-pro-dual-sim-td-lte-128gb-cc8-cd8/score/index.json new file mode 100644 index 00000000000..25204a396a4 --- /dev/null +++ b/site/public/v1/smartphones/camon-15-pro-dual-sim-td-lte-128gb-cc8-cd8/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.4, + "value": null +} diff --git a/site/public/v1/smartphones/camon-x-td-lte-dual-sim-16gb/index.json b/site/public/v1/smartphones/camon-x-td-lte-dual-sim-16gb/index.json new file mode 100644 index 00000000000..bbf98546015 --- /dev/null +++ b/site/public/v1/smartphones/camon-x-td-lte-dual-sim-16gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4977, + "slug": "camon-x-td-lte-dual-sim-16gb", + "name": "Camon X TD-LTE Dual SIM 16GB", + "brand": { + "id": 39, + "slug": "tecno", + "name": "Tecno Mobile", + "country": "CN", + "url": "/v1/brands/tecno" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2017-04-09", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.98, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "battery_mah": 3750, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 148.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 6.4, + "battery": 11.2, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.836762", + "updated_at": "2026-06-19T00:43:44.836762" +} diff --git a/site/public/v1/smartphones/camon-x-td-lte-dual-sim-16gb/score/index.json b/site/public/v1/smartphones/camon-x-td-lte-dual-sim-16gb/score/index.json new file mode 100644 index 00000000000..c4cdf667b17 --- /dev/null +++ b/site/public/v1/smartphones/camon-x-td-lte-dual-sim-16gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 6.4, + "battery": 11.2, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/canvas-4g-lte-us-3636a/index.json b/site/public/v1/smartphones/canvas-4g-lte-us-3636a/index.json new file mode 100644 index 00000000000..2c530ce3ffe --- /dev/null +++ b/site/public/v1/smartphones/canvas-4g-lte-us-3636a/index.json @@ -0,0 +1,76 @@ +{ + "id": 492, + "slug": "canvas-4g-lte-us-3636a", + "name": "Canvas 4G LTE US 3636A", + "brand": { + "id": 10, + "slug": "coolpad", + "name": "Coolpad", + "country": "CN", + "url": "/v1/brands/coolpad" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2017-07-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.47, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 167.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.174932", + "updated_at": "2026-06-19T00:43:44.174932" +} diff --git a/site/public/v1/smartphones/canvas-4g-lte-us-3636a/score/index.json b/site/public/v1/smartphones/canvas-4g-lte-us-3636a/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/canvas-4g-lte-us-3636a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/cat-s52-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/cat-s52-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..14768c2a828 --- /dev/null +++ b/site/public/v1/smartphones/cat-s52-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 487, + "slug": "cat-s52-global-dual-sim-td-lte", + "name": "Cat S52 Global Dual SIM TD-LTE", + "brand": { + "id": 106, + "slug": "caterpillar", + "name": "Caterpillar", + "country": "US", + "url": "/v1/brands/caterpillar" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2019-11-12", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.65, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 285 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.4, + "performance": 0.0, + "camera": 5.0, + "battery": 1.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.173932", + "updated_at": "2026-06-19T00:43:44.173932" +} diff --git a/site/public/v1/smartphones/cat-s52-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/cat-s52-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..37ab346d3e2 --- /dev/null +++ b/site/public/v1/smartphones/cat-s52-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.4, + "performance": 0.0, + "camera": 5.0, + "battery": 1.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/cat-s61-dual-sim-lte-us/index.json b/site/public/v1/smartphones/cat-s61-dual-sim-lte-us/index.json new file mode 100644 index 00000000000..f5008fc3719 --- /dev/null +++ b/site/public/v1/smartphones/cat-s61-dual-sim-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 484, + "slug": "cat-s61-dual-sim-lte-us", + "name": "CAT S61 Dual SIM LTE US", + "brand": { + "id": 106, + "slug": "caterpillar", + "name": "Caterpillar", + "country": "US", + "url": "/v1/brands/caterpillar" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2018-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.2, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 259.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 6.4, + "battery": 22.5, + "display": 47.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.173932", + "updated_at": "2026-06-19T00:43:44.173932" +} diff --git a/site/public/v1/smartphones/cat-s61-dual-sim-lte-us/score/index.json b/site/public/v1/smartphones/cat-s61-dual-sim-lte-us/score/index.json new file mode 100644 index 00000000000..66f30534caf --- /dev/null +++ b/site/public/v1/smartphones/cat-s61-dual-sim-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 6.4, + "battery": 22.5, + "display": 47.4, + "value": null +} diff --git a/site/public/v1/smartphones/cat-s61-dual-sim-td-lte-apac/index.json b/site/public/v1/smartphones/cat-s61-dual-sim-td-lte-apac/index.json new file mode 100644 index 00000000000..f9082f7dd37 --- /dev/null +++ b/site/public/v1/smartphones/cat-s61-dual-sim-td-lte-apac/index.json @@ -0,0 +1,76 @@ +{ + "id": 485, + "slug": "cat-s61-dual-sim-td-lte-apac", + "name": "CAT S61 Dual SIM TD-LTE APAC", + "brand": { + "id": 106, + "slug": "caterpillar", + "name": "Caterpillar", + "country": "US", + "url": "/v1/brands/caterpillar" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.2, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 259.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 6.4, + "battery": 22.5, + "display": 47.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.173932", + "updated_at": "2026-06-19T00:43:44.173932" +} diff --git a/site/public/v1/smartphones/cat-s61-dual-sim-td-lte-apac/score/index.json b/site/public/v1/smartphones/cat-s61-dual-sim-td-lte-apac/score/index.json new file mode 100644 index 00000000000..66f30534caf --- /dev/null +++ b/site/public/v1/smartphones/cat-s61-dual-sim-td-lte-apac/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 6.4, + "battery": 22.5, + "display": 47.4, + "value": null +} diff --git a/site/public/v1/smartphones/cat-s61-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/cat-s61-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..8ee4d03acc9 --- /dev/null +++ b/site/public/v1/smartphones/cat-s61-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 486, + "slug": "cat-s61-global-dual-sim-td-lte", + "name": "CAT S61 Global Dual SIM TD-LTE", + "brand": { + "id": 106, + "slug": "caterpillar", + "name": "Caterpillar", + "country": "US", + "url": "/v1/brands/caterpillar" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.2, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 259.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 6.4, + "battery": 22.5, + "display": 47.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.173932", + "updated_at": "2026-06-19T00:43:44.173932" +} diff --git a/site/public/v1/smartphones/cat-s61-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/cat-s61-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..66f30534caf --- /dev/null +++ b/site/public/v1/smartphones/cat-s61-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 6.4, + "battery": 22.5, + "display": 47.4, + "value": null +} diff --git a/site/public/v1/smartphones/cat-s62-pro-dual-sim-lte-a-am/index.json b/site/public/v1/smartphones/cat-s62-pro-dual-sim-lte-a-am/index.json new file mode 100644 index 00000000000..b5aacb5a277 --- /dev/null +++ b/site/public/v1/smartphones/cat-s62-pro-dual-sim-lte-a-am/index.json @@ -0,0 +1,76 @@ +{ + "id": 488, + "slug": "cat-s62-pro-dual-sim-lte-a-am", + "name": "CAT S62 Pro Dual SIM LTE-A AM", + "brand": { + "id": 106, + "slug": "caterpillar", + "name": "Caterpillar", + "country": "US", + "url": "/v1/brands/caterpillar" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2020-08-17", + "msrp_usd": 649, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 248.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 19.5, + "camera": 5.0, + "battery": 15.6, + "display": 47.4, + "value": 47.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.173932", + "updated_at": "2026-06-19T00:43:44.173932" +} diff --git a/site/public/v1/smartphones/cat-s62-pro-dual-sim-lte-a-am/score/index.json b/site/public/v1/smartphones/cat-s62-pro-dual-sim-lte-a-am/score/index.json new file mode 100644 index 00000000000..98c2d54be60 --- /dev/null +++ b/site/public/v1/smartphones/cat-s62-pro-dual-sim-lte-a-am/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 19.5, + "camera": 5.0, + "battery": 15.6, + "display": 47.4, + "value": 47.5 +} diff --git a/site/public/v1/smartphones/cat-s62-pro-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/cat-s62-pro-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..56300d8eec4 --- /dev/null +++ b/site/public/v1/smartphones/cat-s62-pro-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 489, + "slug": "cat-s62-pro-global-dual-sim-td-lte", + "name": "CAT S62 Pro Global Dual SIM TD-LTE", + "brand": { + "id": 106, + "slug": "caterpillar", + "name": "Caterpillar", + "country": "US", + "url": "/v1/brands/caterpillar" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2020-08-01", + "msrp_usd": 499, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 248.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 19.5, + "camera": 5.0, + "battery": 15.6, + "display": 47.4, + "value": 53.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.174932", + "updated_at": "2026-06-19T00:43:44.174932" +} diff --git a/site/public/v1/smartphones/cat-s62-pro-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/cat-s62-pro-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..fb67ba786a8 --- /dev/null +++ b/site/public/v1/smartphones/cat-s62-pro-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 19.5, + "camera": 5.0, + "battery": 15.6, + "display": 47.4, + "value": 53.3 +} diff --git a/site/public/v1/smartphones/cat-s62-pro-lte-a-am/index.json b/site/public/v1/smartphones/cat-s62-pro-lte-a-am/index.json new file mode 100644 index 00000000000..7094aeb64cd --- /dev/null +++ b/site/public/v1/smartphones/cat-s62-pro-lte-a-am/index.json @@ -0,0 +1,76 @@ +{ + "id": 490, + "slug": "cat-s62-pro-lte-a-am", + "name": "CAT S62 Pro LTE-A AM", + "brand": { + "id": 106, + "slug": "caterpillar", + "name": "Caterpillar", + "country": "US", + "url": "/v1/brands/caterpillar" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2020-08-17", + "msrp_usd": 649, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 248.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 19.5, + "camera": 5.0, + "battery": 15.6, + "display": 47.4, + "value": 47.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.174932", + "updated_at": "2026-06-19T00:43:44.174932" +} diff --git a/site/public/v1/smartphones/cat-s62-pro-lte-a-am/score/index.json b/site/public/v1/smartphones/cat-s62-pro-lte-a-am/score/index.json new file mode 100644 index 00000000000..98c2d54be60 --- /dev/null +++ b/site/public/v1/smartphones/cat-s62-pro-lte-a-am/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 19.5, + "camera": 5.0, + "battery": 15.6, + "display": 47.4, + "value": 47.5 +} diff --git a/site/public/v1/smartphones/cat-s62-td-lte-am/index.json b/site/public/v1/smartphones/cat-s62-td-lte-am/index.json new file mode 100644 index 00000000000..6059067de1f --- /dev/null +++ b/site/public/v1/smartphones/cat-s62-td-lte-am/index.json @@ -0,0 +1,76 @@ +{ + "id": 491, + "slug": "cat-s62-td-lte-am", + "name": "CAT S62 TD-LTE- AM", + "brand": { + "id": 106, + "slug": "caterpillar", + "name": "Caterpillar", + "country": "US", + "url": "/v1/brands/caterpillar" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2021-07-01", + "msrp_usd": 499, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 260.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 18.0, + "camera": 16.5, + "battery": 15.6, + "display": 47.4, + "value": 54.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.174932", + "updated_at": "2026-06-19T00:43:44.174932" +} diff --git a/site/public/v1/smartphones/cat-s62-td-lte-am/score/index.json b/site/public/v1/smartphones/cat-s62-td-lte-am/score/index.json new file mode 100644 index 00000000000..5352ced5eb1 --- /dev/null +++ b/site/public/v1/smartphones/cat-s62-td-lte-am/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 18.0, + "camera": 16.5, + "battery": 15.6, + "display": 47.4, + "value": 54.5 +} diff --git a/site/public/v1/smartphones/cool-20-premium-edition-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/cool-20-premium-edition-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..0f2381e5066 --- /dev/null +++ b/site/public/v1/smartphones/cool-20-premium-edition-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 502, + "slug": "cool-20-premium-edition-dual-sim-td-lte-cn-128gb", + "name": "Cool 20 Premium Edition Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 10, + "slug": "coolpad", + "name": "Coolpad", + "country": "CN", + "url": "/v1/brands/coolpad" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2021-06-08", + "msrp_usd": 1099, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 23.0, + "charging_wireless_w": null, + "weight_g": 199.6, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": 1.5, + "camera": 16.5, + "battery": 24.0, + "display": 17.5, + "value": 26.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.176932", + "updated_at": "2026-06-19T00:43:44.176932" +} diff --git a/site/public/v1/smartphones/cool-20-premium-edition-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/cool-20-premium-edition-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..5b09441e587 --- /dev/null +++ b/site/public/v1/smartphones/cool-20-premium-edition-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": 1.5, + "camera": 16.5, + "battery": 24.0, + "display": 17.5, + "value": 26.7 +} diff --git a/site/public/v1/smartphones/cool-20-standard-edition-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/cool-20-standard-edition-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..91754f250ad --- /dev/null +++ b/site/public/v1/smartphones/cool-20-standard-edition-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 503, + "slug": "cool-20-standard-edition-dual-sim-td-lte-cn-128gb", + "name": "Cool 20 Standard Edition Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 10, + "slug": "coolpad", + "name": "Coolpad", + "country": "CN", + "url": "/v1/brands/coolpad" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2021-06-08", + "msrp_usd": 899, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 23.0, + "charging_wireless_w": null, + "weight_g": 199.6, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.5, + "performance": 0.0, + "camera": 16.5, + "battery": 24.0, + "display": 17.5, + "value": 34.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.176932", + "updated_at": "2026-06-19T00:43:44.176932" +} diff --git a/site/public/v1/smartphones/cool-20-standard-edition-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/cool-20-standard-edition-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..76f4b15ddb7 --- /dev/null +++ b/site/public/v1/smartphones/cool-20-standard-edition-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.5, + "performance": 0.0, + "camera": 16.5, + "battery": 24.0, + "display": 17.5, + "value": 34.2 +} diff --git a/site/public/v1/smartphones/cool-20-standard-edition-dual-sim-td-lte-cn-64gb/index.json b/site/public/v1/smartphones/cool-20-standard-edition-dual-sim-td-lte-cn-64gb/index.json new file mode 100644 index 00000000000..9dd82823f88 --- /dev/null +++ b/site/public/v1/smartphones/cool-20-standard-edition-dual-sim-td-lte-cn-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 504, + "slug": "cool-20-standard-edition-dual-sim-td-lte-cn-64gb", + "name": "Cool 20 Standard Edition Dual SIM TD-LTE CN 64GB", + "brand": { + "id": 10, + "slug": "coolpad", + "name": "Coolpad", + "country": "CN", + "url": "/v1/brands/coolpad" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2021-06-08", + "msrp_usd": 699, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 23.0, + "charging_wireless_w": null, + "weight_g": 199.6, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.5, + "performance": 0.0, + "camera": 16.5, + "battery": 24.0, + "display": 17.5, + "value": 41.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.176932", + "updated_at": "2026-06-19T00:43:44.176932" +} diff --git a/site/public/v1/smartphones/cool-20-standard-edition-dual-sim-td-lte-cn-64gb/score/index.json b/site/public/v1/smartphones/cool-20-standard-edition-dual-sim-td-lte-cn-64gb/score/index.json new file mode 100644 index 00000000000..af763a521e1 --- /dev/null +++ b/site/public/v1/smartphones/cool-20-standard-edition-dual-sim-td-lte-cn-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.5, + "performance": 0.0, + "camera": 16.5, + "battery": 24.0, + "display": 17.5, + "value": 41.9 +} diff --git a/site/public/v1/smartphones/cool-5-dual-sim-td-lte-1826-i01/index.json b/site/public/v1/smartphones/cool-5-dual-sim-td-lte-1826-i01/index.json new file mode 100644 index 00000000000..f26117b4abf --- /dev/null +++ b/site/public/v1/smartphones/cool-5-dual-sim-td-lte-1826-i01/index.json @@ -0,0 +1,76 @@ +{ + "id": 497, + "slug": "cool-5-dual-sim-td-lte-1826-i01", + "name": "Cool 5 Dual SIM TD-LTE 1826-I01", + "brand": { + "id": 10, + "slug": "coolpad", + "name": "Coolpad", + "country": "CN", + "url": "/v1/brands/coolpad" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-10-03", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.175933", + "updated_at": "2026-06-19T00:43:44.175933" +} diff --git a/site/public/v1/smartphones/cool-5-dual-sim-td-lte-1826-i01/score/index.json b/site/public/v1/smartphones/cool-5-dual-sim-td-lte-1826-i01/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/cool-5-dual-sim-td-lte-1826-i01/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/cricket-ovation-lte-a-us-u705ac/index.json b/site/public/v1/smartphones/cricket-ovation-lte-a-us-u705ac/index.json new file mode 100644 index 00000000000..effa186a223 --- /dev/null +++ b/site/public/v1/smartphones/cricket-ovation-lte-a-us-u705ac/index.json @@ -0,0 +1,76 @@ +{ + "id": 5591, + "slug": "cricket-ovation-lte-a-us-u705ac", + "name": "Cricket Ovation LTE-A US U705AC", + "brand": { + "id": 56, + "slug": "wiko", + "name": "Wiko", + "country": "FR", + "url": "/v1/brands/wiko" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-07-01", + "msrp_usd": 80, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 264 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 59.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.912308", + "updated_at": "2026-06-19T00:43:44.912308" +} diff --git a/site/public/v1/smartphones/cricket-ovation-lte-a-us-u705ac/score/index.json b/site/public/v1/smartphones/cricket-ovation-lte-a-us-u705ac/score/index.json new file mode 100644 index 00000000000..c9a1e1f5381 --- /dev/null +++ b/site/public/v1/smartphones/cricket-ovation-lte-a-us-u705ac/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 59.2 +} diff --git a/site/public/v1/smartphones/defiant-3632a-lte-us/index.json b/site/public/v1/smartphones/defiant-3632a-lte-us/index.json new file mode 100644 index 00000000000..fb76587357c --- /dev/null +++ b/site/public/v1/smartphones/defiant-3632a-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 493, + "slug": "defiant-3632a-lte-us", + "name": "Defiant 3632A LTE US", + "brand": { + "id": 10, + "slug": "coolpad", + "name": "Coolpad", + "country": "CN", + "url": "/v1/brands/coolpad" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2017-06-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.0, + "resolution": "480x854", + "type": "Color IPS TFT LCD display", + "ppi": 196 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "battery_mah": 2450, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.174932", + "updated_at": "2026-06-19T00:43:44.174932" +} diff --git a/site/public/v1/smartphones/defiant-3632a-lte-us/score/index.json b/site/public/v1/smartphones/defiant-3632a-lte-us/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/defiant-3632a-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/desire-12-dual-sim-td-lte-apac-32gb/index.json b/site/public/v1/smartphones/desire-12-dual-sim-td-lte-apac-32gb/index.json new file mode 100644 index 00000000000..529f4f1344e --- /dev/null +++ b/site/public/v1/smartphones/desire-12-dual-sim-td-lte-apac-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 762, + "slug": "desire-12-dual-sim-td-lte-apac-32gb", + "name": "Desire 12+ Dual SIM TD-LTE APAC 32GB", + "brand": { + "id": 92, + "slug": "htc", + "name": "HTC", + "country": "TW", + "url": "/v1/brands/htc" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-06-02", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.98, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 2965, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 157.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.212932", + "updated_at": "2026-06-19T00:43:44.212932" +} diff --git a/site/public/v1/smartphones/desire-12-dual-sim-td-lte-apac-32gb/score/index.json b/site/public/v1/smartphones/desire-12-dual-sim-td-lte-apac-32gb/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/desire-12-dual-sim-td-lte-apac-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/desire-12-global-dual-sim-td-lte-32gb/index.json b/site/public/v1/smartphones/desire-12-global-dual-sim-td-lte-32gb/index.json new file mode 100644 index 00000000000..425a6c0dbd9 --- /dev/null +++ b/site/public/v1/smartphones/desire-12-global-dual-sim-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 763, + "slug": "desire-12-global-dual-sim-td-lte-32gb", + "name": "Desire 12+ Global Dual SIM TD-LTE 32GB", + "brand": { + "id": 92, + "slug": "htc", + "name": "HTC", + "country": "TW", + "url": "/v1/brands/htc" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-04-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.98, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 2965, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 157.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.212932", + "updated_at": "2026-06-19T00:43:44.212932" +} diff --git a/site/public/v1/smartphones/desire-12-global-dual-sim-td-lte-32gb/score/index.json b/site/public/v1/smartphones/desire-12-global-dual-sim-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/desire-12-global-dual-sim-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/desire-12s-global-dual-sim-td-lte-32gb/index.json b/site/public/v1/smartphones/desire-12s-global-dual-sim-td-lte-32gb/index.json new file mode 100644 index 00000000000..468c24a0a65 --- /dev/null +++ b/site/public/v1/smartphones/desire-12s-global-dual-sim-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 764, + "slug": "desire-12s-global-dual-sim-td-lte-32gb", + "name": "Desire 12s Global Dual SIM TD-LTE 32GB", + "brand": { + "id": 92, + "slug": "htc", + "name": "HTC", + "country": "TW", + "url": "/v1/brands/htc" + }, + "soc": { + "id": 113, + "slug": "snapdragon-435", + "name": "Snapdragon 435", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-435" + }, + "release_date": "2018-12-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3075, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 5.3, + "battery": 1.1, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.213932", + "updated_at": "2026-06-19T00:43:44.213932" +} diff --git a/site/public/v1/smartphones/desire-12s-global-dual-sim-td-lte-32gb/score/index.json b/site/public/v1/smartphones/desire-12s-global-dual-sim-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..6664c6e47ab --- /dev/null +++ b/site/public/v1/smartphones/desire-12s-global-dual-sim-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 5.3, + "battery": 1.1, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/desire-12s-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/desire-12s-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..19f5de5d45e --- /dev/null +++ b/site/public/v1/smartphones/desire-12s-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 765, + "slug": "desire-12s-global-dual-sim-td-lte-64gb", + "name": "Desire 12s Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 92, + "slug": "htc", + "name": "HTC", + "country": "TW", + "url": "/v1/brands/htc" + }, + "soc": { + "id": 113, + "slug": "snapdragon-435", + "name": "Snapdragon 435", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-435" + }, + "release_date": "2018-12-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3075, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 5.3, + "battery": 1.1, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.213932", + "updated_at": "2026-06-19T00:43:44.213932" +} diff --git a/site/public/v1/smartphones/desire-12s-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/desire-12s-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..6664c6e47ab --- /dev/null +++ b/site/public/v1/smartphones/desire-12s-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 5.3, + "battery": 1.1, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/desire-19-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/desire-19-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..479861c005a --- /dev/null +++ b/site/public/v1/smartphones/desire-19-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 775, + "slug": "desire-19-global-dual-sim-td-lte-128gb", + "name": "Desire 19+ Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 92, + "slug": "htc", + "name": "HTC", + "country": "TW", + "url": "/v1/brands/htc" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 3850, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 1.5, + "camera": 5.3, + "battery": 12.7, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.214933", + "updated_at": "2026-06-19T00:43:44.214933" +} diff --git a/site/public/v1/smartphones/desire-19-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/desire-19-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..53a724a6b9b --- /dev/null +++ b/site/public/v1/smartphones/desire-19-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 1.5, + "camera": 5.3, + "battery": 12.7, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/desire-19-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/desire-19-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..64c34f52c2a --- /dev/null +++ b/site/public/v1/smartphones/desire-19-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 776, + "slug": "desire-19-global-dual-sim-td-lte-64gb", + "name": "Desire 19+ Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 92, + "slug": "htc", + "name": "HTC", + "country": "TW", + "url": "/v1/brands/htc" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 3850, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.3, + "battery": 12.7, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.214933", + "updated_at": "2026-06-19T00:43:44.214933" +} diff --git a/site/public/v1/smartphones/desire-19-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/desire-19-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..80d9424613e --- /dev/null +++ b/site/public/v1/smartphones/desire-19-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.3, + "battery": 12.7, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/desire-19s-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/desire-19s-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..e5661495b4b --- /dev/null +++ b/site/public/v1/smartphones/desire-19s-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 778, + "slug": "desire-19s-global-dual-sim-td-lte", + "name": "Desire 19s Global Dual SIM TD-LTE", + "brand": { + "id": 92, + "slug": "htc", + "name": "HTC", + "country": "TW", + "url": "/v1/brands/htc" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3850, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": null, + "camera": 5.3, + "battery": 12.7, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.215933", + "updated_at": "2026-06-19T00:43:44.215933" +} diff --git a/site/public/v1/smartphones/desire-19s-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/desire-19s-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..144f32d26d7 --- /dev/null +++ b/site/public/v1/smartphones/desire-19s-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": null, + "camera": 5.3, + "battery": 12.7, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/desire-20-pro-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/desire-20-pro-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..9be90fc7dd3 --- /dev/null +++ b/site/public/v1/smartphones/desire-20-pro-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 789, + "slug": "desire-20-pro-global-dual-sim-td-lte", + "name": "Desire 20 Pro Global Dual SIM TD-LTE", + "brand": { + "id": 92, + "slug": "htc", + "name": "HTC", + "country": "TW", + "url": "/v1/brands/htc" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-06-18", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 201.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 1.5, + "camera": 16.5, + "battery": 30.0, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.216934", + "updated_at": "2026-06-19T00:43:44.216934" +} diff --git a/site/public/v1/smartphones/desire-20-pro-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/desire-20-pro-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..f34ca68c989 --- /dev/null +++ b/site/public/v1/smartphones/desire-20-pro-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 1.5, + "camera": 16.5, + "battery": 30.0, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/diamond-2019-dual-sim-lte/index.json b/site/public/v1/smartphones/diamond-2019-dual-sim-lte/index.json new file mode 100644 index 00000000000..5217c05f805 --- /dev/null +++ b/site/public/v1/smartphones/diamond-2019-dual-sim-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 304, + "slug": "diamond-2019-dual-sim-lte", + "name": "Diamond 2019 Dual SIM LTE", + "brand": { + "id": 54, + "slug": "archos", + "name": "Archos", + "country": "FR", + "url": "/v1/brands/archos" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-02-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 0.0, + "camera": 6.3, + "battery": 6.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.150418", + "updated_at": "2026-06-19T00:43:44.150418" +} diff --git a/site/public/v1/smartphones/diamond-2019-dual-sim-lte/score/index.json b/site/public/v1/smartphones/diamond-2019-dual-sim-lte/score/index.json new file mode 100644 index 00000000000..fdedde6c3ce --- /dev/null +++ b/site/public/v1/smartphones/diamond-2019-dual-sim-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 0.0, + "camera": 6.3, + "battery": 6.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/digno-3-for-biz-td-lte-jp-904kc/index.json b/site/public/v1/smartphones/digno-3-for-biz-td-lte-jp-904kc/index.json new file mode 100644 index 00000000000..c724d0f6b24 --- /dev/null +++ b/site/public/v1/smartphones/digno-3-for-biz-td-lte-jp-904kc/index.json @@ -0,0 +1,76 @@ +{ + "id": 1413, + "slug": "digno-3-for-biz-td-lte-jp-904kc", + "name": "Digno 3 for Biz TD-LTE JP 904KC", + "brand": { + "id": 71, + "slug": "kyocera", + "name": "Kyocera", + "country": "JP", + "url": "/v1/brands/kyocera" + }, + "soc": { + "id": 104, + "slug": "snapdragon-210", + "name": "Snapdragon 210", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-210" + }, + "release_date": "2020-02-21", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 3.4, + "resolution": "480x854", + "type": "Color TN-TFT LCD display", + "ppi": 288 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "battery_mah": 1700, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 131.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.330606", + "updated_at": "2026-06-19T00:43:44.330606" +} diff --git a/site/public/v1/smartphones/digno-3-for-biz-td-lte-jp-904kc/score/index.json b/site/public/v1/smartphones/digno-3-for-biz-td-lte-jp-904kc/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/digno-3-for-biz-td-lte-jp-904kc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/digno-bx-td-lte-jp-901kc/index.json b/site/public/v1/smartphones/digno-bx-td-lte-jp-901kc/index.json new file mode 100644 index 00000000000..f0d54883858 --- /dev/null +++ b/site/public/v1/smartphones/digno-bx-td-lte-jp-901kc/index.json @@ -0,0 +1,76 @@ +{ + "id": 1408, + "slug": "digno-bx-td-lte-jp-901kc", + "name": "Digno BX TD-LTE JP 901KC", + "brand": { + "id": 71, + "slug": "kyocera", + "name": "Kyocera", + "country": "JP", + "url": "/v1/brands/kyocera" + }, + "soc": { + "id": 124, + "slug": "snapdragon-429", + "name": "Snapdragon 429", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Qualcomm Adreno 504", + "url": "/v1/socs/snapdragon-429" + }, + "release_date": "2019-11-14", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.65, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 285 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "battery_mah": 2800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.329606", + "updated_at": "2026-06-19T00:43:44.329606" +} diff --git a/site/public/v1/smartphones/digno-bx-td-lte-jp-901kc/score/index.json b/site/public/v1/smartphones/digno-bx-td-lte-jp-901kc/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/digno-bx-td-lte-jp-901kc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/digno-j-td-lte-jp-704kc/index.json b/site/public/v1/smartphones/digno-j-td-lte-jp-704kc/index.json new file mode 100644 index 00000000000..393c4564229 --- /dev/null +++ b/site/public/v1/smartphones/digno-j-td-lte-jp-704kc/index.json @@ -0,0 +1,76 @@ +{ + "id": 1405, + "slug": "digno-j-td-lte-jp-704kc", + "name": "Digno J TD-LTE JP 704KC", + "brand": { + "id": 71, + "slug": "kyocera", + "name": "Kyocera", + "country": "JP", + "url": "/v1/brands/kyocera" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.0, + "resolution": "1080x1920", + "type": "Color TN-TFT LCD display", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 2600, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 130.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 49.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.328606", + "updated_at": "2026-06-19T00:43:44.328606" +} diff --git a/site/public/v1/smartphones/digno-j-td-lte-jp-704kc/score/index.json b/site/public/v1/smartphones/digno-j-td-lte-jp-704kc/score/index.json new file mode 100644 index 00000000000..d2ec81163b0 --- /dev/null +++ b/site/public/v1/smartphones/digno-j-td-lte-jp-704kc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 49.1, + "value": null +} diff --git a/site/public/v1/smartphones/duraforce-pro-2-lte-a-us-e6921/index.json b/site/public/v1/smartphones/duraforce-pro-2-lte-a-us-e6921/index.json new file mode 100644 index 00000000000..b6b56de618b --- /dev/null +++ b/site/public/v1/smartphones/duraforce-pro-2-lte-a-us-e6921/index.json @@ -0,0 +1,76 @@ +{ + "id": 1414, + "slug": "duraforce-pro-2-lte-a-us-e6921", + "name": "DuraForce Pro 2 LTE-A US E6921", + "brand": { + "id": 71, + "slug": "kyocera", + "name": "Kyocera", + "country": "JP", + "url": "/v1/brands/kyocera" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2020-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.0, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3240, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 235.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.5, + "performance": 0.0, + "camera": 5.2, + "battery": 3.6, + "display": 49.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.330606", + "updated_at": "2026-06-19T00:43:44.330606" +} diff --git a/site/public/v1/smartphones/duraforce-pro-2-lte-a-us-e6921/score/index.json b/site/public/v1/smartphones/duraforce-pro-2-lte-a-us-e6921/score/index.json new file mode 100644 index 00000000000..6cb6a91e0e7 --- /dev/null +++ b/site/public/v1/smartphones/duraforce-pro-2-lte-a-us-e6921/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.5, + "performance": 0.0, + "camera": 5.2, + "battery": 3.6, + "display": 49.1, + "value": null +} diff --git a/site/public/v1/smartphones/duraforce-pro-2-xlte-e6910/index.json b/site/public/v1/smartphones/duraforce-pro-2-xlte-e6910/index.json new file mode 100644 index 00000000000..77b3313f89d --- /dev/null +++ b/site/public/v1/smartphones/duraforce-pro-2-xlte-e6910/index.json @@ -0,0 +1,76 @@ +{ + "id": 1406, + "slug": "duraforce-pro-2-xlte-e6910", + "name": "DuraForce Pro 2 XLTE E6910", + "brand": { + "id": 71, + "slug": "kyocera", + "name": "Kyocera", + "country": "JP", + "url": "/v1/brands/kyocera" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.0, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3240, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 243.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.5, + "performance": 0.0, + "camera": 5.2, + "battery": 3.6, + "display": 49.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.329606", + "updated_at": "2026-06-19T00:43:44.329606" +} diff --git a/site/public/v1/smartphones/duraforce-pro-2-xlte-e6910/score/index.json b/site/public/v1/smartphones/duraforce-pro-2-xlte-e6910/score/index.json new file mode 100644 index 00000000000..6cb6a91e0e7 --- /dev/null +++ b/site/public/v1/smartphones/duraforce-pro-2-xlte-e6910/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.5, + "performance": 0.0, + "camera": 5.2, + "battery": 3.6, + "display": 49.1, + "value": null +} diff --git a/site/public/v1/smartphones/duraforce-ultra-5g-uw-e7110/index.json b/site/public/v1/smartphones/duraforce-ultra-5g-uw-e7110/index.json new file mode 100644 index 00000000000..fb155e99830 --- /dev/null +++ b/site/public/v1/smartphones/duraforce-ultra-5g-uw-e7110/index.json @@ -0,0 +1,76 @@ +{ + "id": 1415, + "slug": "duraforce-ultra-5g-uw-e7110", + "name": "DuraForce Ultra 5G UW E7110", + "brand": { + "id": 71, + "slug": "kyocera", + "name": "Kyocera", + "country": "JP", + "url": "/v1/brands/kyocera" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2021-03-11", + "msrp_usd": 900, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.45, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 443 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 278.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 1.5, + "camera": 8.8, + "battery": 22.5, + "display": 49.3, + "value": 37.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.330606", + "updated_at": "2026-06-19T00:43:44.330606" +} diff --git a/site/public/v1/smartphones/duraforce-ultra-5g-uw-e7110/score/index.json b/site/public/v1/smartphones/duraforce-ultra-5g-uw-e7110/score/index.json new file mode 100644 index 00000000000..5989306f91f --- /dev/null +++ b/site/public/v1/smartphones/duraforce-ultra-5g-uw-e7110/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 1.5, + "camera": 8.8, + "battery": 22.5, + "display": 49.3, + "value": 37.1 +} diff --git a/site/public/v1/smartphones/durasport-5g-uw-td-lte-us-e6930/index.json b/site/public/v1/smartphones/durasport-5g-uw-td-lte-us-e6930/index.json new file mode 100644 index 00000000000..18fe6ba0ebf --- /dev/null +++ b/site/public/v1/smartphones/durasport-5g-uw-td-lte-us-e6930/index.json @@ -0,0 +1,77 @@ +{ + "id": 1416, + "slug": "durasport-5g-uw-td-lte-us-e6930", + "name": "DuraSport 5G UW TD-LTE US E6930", + "brand": { + "id": 71, + "slug": "kyocera", + "name": "Kyocera", + "country": "JP", + "url": "/v1/brands/kyocera" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-11-12", + "msrp_usd": 580, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 1.5, + "camera": 16.5, + "battery": 24.8, + "display": 30.7, + "value": 48.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.330606", + "updated_at": "2026-06-19T00:43:44.330606" +} diff --git a/site/public/v1/smartphones/durasport-5g-uw-td-lte-us-e6930/score/index.json b/site/public/v1/smartphones/durasport-5g-uw-td-lte-us-e6930/score/index.json new file mode 100644 index 00000000000..0c8c191900f --- /dev/null +++ b/site/public/v1/smartphones/durasport-5g-uw-td-lte-us-e6930/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 1.5, + "camera": 16.5, + "battery": 24.8, + "display": 30.7, + "value": 48.5 +} diff --git a/site/public/v1/smartphones/edge-30-fusion/index.json b/site/public/v1/smartphones/edge-30-fusion/index.json new file mode 100644 index 00000000000..4ad21a01f92 --- /dev/null +++ b/site/public/v1/smartphones/edge-30-fusion/index.json @@ -0,0 +1,71 @@ +{ + "id": 2275, + "slug": "edge-30-fusion", + "name": "Edge 30 Fusion", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2022-01-01", + "msrp_usd": 699, + "ram_gb": 12, + "storage_options_gb": [ + 128, + 256 + ], + "display": { + "size_inch": 6.55 + }, + "cameras": [ + { + "type": "main", + "mp": 50.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 11.2, + "camera": 17.1, + "battery": 31.0, + "display": null, + "value": 44.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.435873", + "updated_at": "2026-06-19T00:43:44.435873" +} diff --git a/site/public/v1/smartphones/edge-30-fusion/score/index.json b/site/public/v1/smartphones/edge-30-fusion/score/index.json new file mode 100644 index 00000000000..f80a9475b7c --- /dev/null +++ b/site/public/v1/smartphones/edge-30-fusion/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 11.2, + "camera": 17.1, + "battery": 31.0, + "display": null, + "value": 44.5 +} diff --git a/site/public/v1/smartphones/edge-30-neo/index.json b/site/public/v1/smartphones/edge-30-neo/index.json new file mode 100644 index 00000000000..172d6f51995 --- /dev/null +++ b/site/public/v1/smartphones/edge-30-neo/index.json @@ -0,0 +1,71 @@ +{ + "id": 2276, + "slug": "edge-30-neo", + "name": "Edge 30 Neo", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 153, + "slug": "snapdragon-695", + "name": "Snapdragon 695 5G", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 6.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-695" + }, + "release_date": "2022-01-01", + "msrp_usd": 499, + "ram_gb": 8, + "storage_options_gb": [ + 128, + 256 + ], + "display": { + "size_inch": 6.28 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4020, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 155.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 3.0, + "camera": 21.6, + "battery": 20.3, + "display": null, + "value": 49.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.435873", + "updated_at": "2026-06-19T00:43:44.435873" +} diff --git a/site/public/v1/smartphones/edge-30-neo/score/index.json b/site/public/v1/smartphones/edge-30-neo/score/index.json new file mode 100644 index 00000000000..cd1e14d5d68 --- /dev/null +++ b/site/public/v1/smartphones/edge-30-neo/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 3.0, + "camera": 21.6, + "battery": 20.3, + "display": null, + "value": 49.9 +} diff --git a/site/public/v1/smartphones/eluga-ray-610-dual-sim-td-lte-in/index.json b/site/public/v1/smartphones/eluga-ray-610-dual-sim-td-lte-in/index.json new file mode 100644 index 00000000000..224a7c32628 --- /dev/null +++ b/site/public/v1/smartphones/eluga-ray-610-dual-sim-td-lte-in/index.json @@ -0,0 +1,76 @@ +{ + "id": 3514, + "slug": "eluga-ray-610-dual-sim-td-lte-in", + "name": "Eluga Ray 610 Dual SIM TD-LTE IN", + "brand": { + "id": 73, + "slug": "panasonic", + "name": "Panasonic", + "country": "JP", + "url": "/v1/brands/panasonic" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-12-29", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.606892", + "updated_at": "2026-06-19T00:43:44.606892" +} diff --git a/site/public/v1/smartphones/eluga-ray-610-dual-sim-td-lte-in/score/index.json b/site/public/v1/smartphones/eluga-ray-610-dual-sim-td-lte-in/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/eluga-ray-610-dual-sim-td-lte-in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/eluga-ray-810-dual-sim-td-lte-in/index.json b/site/public/v1/smartphones/eluga-ray-810-dual-sim-td-lte-in/index.json new file mode 100644 index 00000000000..b57a33f798d --- /dev/null +++ b/site/public/v1/smartphones/eluga-ray-810-dual-sim-td-lte-in/index.json @@ -0,0 +1,76 @@ +{ + "id": 3515, + "slug": "eluga-ray-810-dual-sim-td-lte-in", + "name": "Eluga Ray 810 Dual SIM TD-LTE IN", + "brand": { + "id": 73, + "slug": "panasonic", + "name": "Panasonic", + "country": "JP", + "url": "/v1/brands/panasonic" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-12-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1500", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 158.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.8, + "performance": null, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.606892", + "updated_at": "2026-06-19T00:43:44.606892" +} diff --git a/site/public/v1/smartphones/eluga-ray-810-dual-sim-td-lte-in/score/index.json b/site/public/v1/smartphones/eluga-ray-810-dual-sim-td-lte-in/score/index.json new file mode 100644 index 00000000000..7f41dfc3901 --- /dev/null +++ b/site/public/v1/smartphones/eluga-ray-810-dual-sim-td-lte-in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.8, + "performance": null, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/eluga-x1-dual-sim-td-lte-in/index.json b/site/public/v1/smartphones/eluga-x1-dual-sim-td-lte-in/index.json new file mode 100644 index 00000000000..accd631025f --- /dev/null +++ b/site/public/v1/smartphones/eluga-x1-dual-sim-td-lte-in/index.json @@ -0,0 +1,76 @@ +{ + "id": 3507, + "slug": "eluga-x1-dual-sim-td-lte-in", + "name": "Eluga X1 Dual SIM TD-LTE IN", + "brand": { + "id": 73, + "slug": "panasonic", + "name": "Panasonic", + "country": "JP", + "url": "/v1/brands/panasonic" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.14, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 406 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.0, + "performance": 0.0, + "camera": 6.4, + "battery": 0.0, + "display": 45.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.605892", + "updated_at": "2026-06-19T00:43:44.605892" +} diff --git a/site/public/v1/smartphones/eluga-x1-dual-sim-td-lte-in/score/index.json b/site/public/v1/smartphones/eluga-x1-dual-sim-td-lte-in/score/index.json new file mode 100644 index 00000000000..19dc81af193 --- /dev/null +++ b/site/public/v1/smartphones/eluga-x1-dual-sim-td-lte-in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.0, + "performance": 0.0, + "camera": 6.4, + "battery": 0.0, + "display": 45.6, + "value": null +} diff --git a/site/public/v1/smartphones/eluga-x1-pro-dual-sim-td-lte-in/index.json b/site/public/v1/smartphones/eluga-x1-pro-dual-sim-td-lte-in/index.json new file mode 100644 index 00000000000..34b63589a03 --- /dev/null +++ b/site/public/v1/smartphones/eluga-x1-pro-dual-sim-td-lte-in/index.json @@ -0,0 +1,76 @@ +{ + "id": 3508, + "slug": "eluga-x1-pro-dual-sim-td-lte-in", + "name": "Eluga X1 Pro Dual SIM TD-LTE IN", + "brand": { + "id": 73, + "slug": "panasonic", + "name": "Panasonic", + "country": "JP", + "url": "/v1/brands/panasonic" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.14, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 406 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": 1.5, + "camera": 6.4, + "battery": 0.0, + "display": 45.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.605892", + "updated_at": "2026-06-19T00:43:44.605892" +} diff --git a/site/public/v1/smartphones/eluga-x1-pro-dual-sim-td-lte-in/score/index.json b/site/public/v1/smartphones/eluga-x1-pro-dual-sim-td-lte-in/score/index.json new file mode 100644 index 00000000000..04f2d32aa89 --- /dev/null +++ b/site/public/v1/smartphones/eluga-x1-pro-dual-sim-td-lte-in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": 1.5, + "camera": 6.4, + "battery": 0.0, + "display": 45.6, + "value": null +} diff --git a/site/public/v1/smartphones/eluga-y-pro-dual-sim-td-lte-tw/index.json b/site/public/v1/smartphones/eluga-y-pro-dual-sim-td-lte-tw/index.json new file mode 100644 index 00000000000..54cc5c0cf02 --- /dev/null +++ b/site/public/v1/smartphones/eluga-y-pro-dual-sim-td-lte-tw/index.json @@ -0,0 +1,76 @@ +{ + "id": 3509, + "slug": "eluga-y-pro-dual-sim-td-lte-tw", + "name": "Eluga Y Pro Dual SIM TD-LTE TW", + "brand": { + "id": 73, + "slug": "panasonic", + "name": "Panasonic", + "country": "JP", + "url": "/v1/brands/panasonic" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.85, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 287 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 6.4, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.606892", + "updated_at": "2026-06-19T00:43:44.606892" +} diff --git a/site/public/v1/smartphones/eluga-y-pro-dual-sim-td-lte-tw/score/index.json b/site/public/v1/smartphones/eluga-y-pro-dual-sim-td-lte-tw/score/index.json new file mode 100644 index 00000000000..c20e20ae551 --- /dev/null +++ b/site/public/v1/smartphones/eluga-y-pro-dual-sim-td-lte-tw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 6.4, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/eluga-z1-dual-sim-td-lte-in/index.json b/site/public/v1/smartphones/eluga-z1-dual-sim-td-lte-in/index.json new file mode 100644 index 00000000000..82b4204db60 --- /dev/null +++ b/site/public/v1/smartphones/eluga-z1-dual-sim-td-lte-in/index.json @@ -0,0 +1,76 @@ +{ + "id": 3510, + "slug": "eluga-z1-dual-sim-td-lte-in", + "name": "Eluga Z1 Dual SIM TD-LTE IN", + "brand": { + "id": 73, + "slug": "panasonic", + "name": "Panasonic", + "country": "JP", + "url": "/v1/brands/panasonic" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-10-31", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.19, + "resolution": "720x1500", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.606892", + "updated_at": "2026-06-19T00:43:44.606892" +} diff --git a/site/public/v1/smartphones/eluga-z1-dual-sim-td-lte-in/score/index.json b/site/public/v1/smartphones/eluga-z1-dual-sim-td-lte-in/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/eluga-z1-dual-sim-td-lte-in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/eluga-z1-pro-dual-sim-td-lte-in/index.json b/site/public/v1/smartphones/eluga-z1-pro-dual-sim-td-lte-in/index.json new file mode 100644 index 00000000000..181865a4c4b --- /dev/null +++ b/site/public/v1/smartphones/eluga-z1-pro-dual-sim-td-lte-in/index.json @@ -0,0 +1,76 @@ +{ + "id": 3511, + "slug": "eluga-z1-pro-dual-sim-td-lte-in", + "name": "Eluga Z1 Pro Dual SIM TD-LTE IN", + "brand": { + "id": 73, + "slug": "panasonic", + "name": "Panasonic", + "country": "JP", + "url": "/v1/brands/panasonic" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-10-31", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.19, + "resolution": "720x1500", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.606892", + "updated_at": "2026-06-19T00:43:44.606892" +} diff --git a/site/public/v1/smartphones/eluga-z1-pro-dual-sim-td-lte-in/score/index.json b/site/public/v1/smartphones/eluga-z1-pro-dual-sim-td-lte-in/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/eluga-z1-pro-dual-sim-td-lte-in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-10-plus-premium-edition-dual-sim-td-lte-cn-128gb-stk-al00/index.json b/site/public/v1/smartphones/enjoy-10-plus-premium-edition-dual-sim-td-lte-cn-128gb-stk-al00/index.json new file mode 100644 index 00000000000..28a5459ea49 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-10-plus-premium-edition-dual-sim-td-lte-cn-128gb-stk-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 954, + "slug": "enjoy-10-plus-premium-edition-dual-sim-td-lte-cn-128gb-stk-al00", + "name": "Enjoy 10 Plus Premium Edition Dual SIM TD-LTE CN 128GB STK-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 196.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.240016", + "updated_at": "2026-06-19T00:43:44.240016" +} diff --git a/site/public/v1/smartphones/enjoy-10-plus-premium-edition-dual-sim-td-lte-cn-128gb-stk-al00/score/index.json b/site/public/v1/smartphones/enjoy-10-plus-premium-edition-dual-sim-td-lte-cn-128gb-stk-al00/score/index.json new file mode 100644 index 00000000000..e919f97aa30 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-10-plus-premium-edition-dual-sim-td-lte-cn-128gb-stk-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-10-plus-premium-edition-dual-sim-td-lte-cn-128gb-stk-tl00/index.json b/site/public/v1/smartphones/enjoy-10-plus-premium-edition-dual-sim-td-lte-cn-128gb-stk-tl00/index.json new file mode 100644 index 00000000000..8ed9be679d3 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-10-plus-premium-edition-dual-sim-td-lte-cn-128gb-stk-tl00/index.json @@ -0,0 +1,76 @@ +{ + "id": 955, + "slug": "enjoy-10-plus-premium-edition-dual-sim-td-lte-cn-128gb-stk-tl00", + "name": "Enjoy 10 Plus Premium Edition Dual SIM TD-LTE CN 128GB STK-TL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 196.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.240016", + "updated_at": "2026-06-19T00:43:44.240016" +} diff --git a/site/public/v1/smartphones/enjoy-10-plus-premium-edition-dual-sim-td-lte-cn-128gb-stk-tl00/score/index.json b/site/public/v1/smartphones/enjoy-10-plus-premium-edition-dual-sim-td-lte-cn-128gb-stk-tl00/score/index.json new file mode 100644 index 00000000000..e919f97aa30 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-10-plus-premium-edition-dual-sim-td-lte-cn-128gb-stk-tl00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-10-plus-standard-edition-dual-sim-td-lte-cn-128gb-stk-al00/index.json b/site/public/v1/smartphones/enjoy-10-plus-standard-edition-dual-sim-td-lte-cn-128gb-stk-al00/index.json new file mode 100644 index 00000000000..9c663d2d7bf --- /dev/null +++ b/site/public/v1/smartphones/enjoy-10-plus-standard-edition-dual-sim-td-lte-cn-128gb-stk-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 956, + "slug": "enjoy-10-plus-standard-edition-dual-sim-td-lte-cn-128gb-stk-al00", + "name": "Enjoy 10 Plus Standard Edition Dual SIM TD-LTE CN 128GB STK-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 196.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.240016", + "updated_at": "2026-06-19T00:43:44.240016" +} diff --git a/site/public/v1/smartphones/enjoy-10-plus-standard-edition-dual-sim-td-lte-cn-128gb-stk-al00/score/index.json b/site/public/v1/smartphones/enjoy-10-plus-standard-edition-dual-sim-td-lte-cn-128gb-stk-al00/score/index.json new file mode 100644 index 00000000000..df376d7c14f --- /dev/null +++ b/site/public/v1/smartphones/enjoy-10-plus-standard-edition-dual-sim-td-lte-cn-128gb-stk-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-10-plus-standard-edition-dual-sim-td-lte-cn-128gb-stk-tl00/index.json b/site/public/v1/smartphones/enjoy-10-plus-standard-edition-dual-sim-td-lte-cn-128gb-stk-tl00/index.json new file mode 100644 index 00000000000..787a4ba0ba3 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-10-plus-standard-edition-dual-sim-td-lte-cn-128gb-stk-tl00/index.json @@ -0,0 +1,76 @@ +{ + "id": 957, + "slug": "enjoy-10-plus-standard-edition-dual-sim-td-lte-cn-128gb-stk-tl00", + "name": "Enjoy 10 Plus Standard Edition Dual SIM TD-LTE CN 128GB STK-TL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 196.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.240016", + "updated_at": "2026-06-19T00:43:44.240016" +} diff --git a/site/public/v1/smartphones/enjoy-10-plus-standard-edition-dual-sim-td-lte-cn-128gb-stk-tl00/score/index.json b/site/public/v1/smartphones/enjoy-10-plus-standard-edition-dual-sim-td-lte-cn-128gb-stk-tl00/score/index.json new file mode 100644 index 00000000000..df376d7c14f --- /dev/null +++ b/site/public/v1/smartphones/enjoy-10-plus-standard-edition-dual-sim-td-lte-cn-128gb-stk-tl00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-10-plus-top-edition-dual-sim-td-lte-cn-128gb-stk-al00/index.json b/site/public/v1/smartphones/enjoy-10-plus-top-edition-dual-sim-td-lte-cn-128gb-stk-al00/index.json new file mode 100644 index 00000000000..fb054a585eb --- /dev/null +++ b/site/public/v1/smartphones/enjoy-10-plus-top-edition-dual-sim-td-lte-cn-128gb-stk-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 958, + "slug": "enjoy-10-plus-top-edition-dual-sim-td-lte-cn-128gb-stk-al00", + "name": "Enjoy 10 Plus Top Edition Dual SIM TD-LTE CN 128GB STK-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 196.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 3.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.240016", + "updated_at": "2026-06-19T00:43:44.240016" +} diff --git a/site/public/v1/smartphones/enjoy-10-plus-top-edition-dual-sim-td-lte-cn-128gb-stk-al00/score/index.json b/site/public/v1/smartphones/enjoy-10-plus-top-edition-dual-sim-td-lte-cn-128gb-stk-al00/score/index.json new file mode 100644 index 00000000000..9a8cd7f4c12 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-10-plus-top-edition-dual-sim-td-lte-cn-128gb-stk-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 3.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-10-plus-top-edition-dual-sim-td-lte-cn-128gb-stk-tl00/index.json b/site/public/v1/smartphones/enjoy-10-plus-top-edition-dual-sim-td-lte-cn-128gb-stk-tl00/index.json new file mode 100644 index 00000000000..296be4e5fa6 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-10-plus-top-edition-dual-sim-td-lte-cn-128gb-stk-tl00/index.json @@ -0,0 +1,76 @@ +{ + "id": 959, + "slug": "enjoy-10-plus-top-edition-dual-sim-td-lte-cn-128gb-stk-tl00", + "name": "Enjoy 10 Plus Top Edition Dual SIM TD-LTE CN 128GB STK-TL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 196.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 3.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.240016", + "updated_at": "2026-06-19T00:43:44.240016" +} diff --git a/site/public/v1/smartphones/enjoy-10-plus-top-edition-dual-sim-td-lte-cn-128gb-stk-tl00/score/index.json b/site/public/v1/smartphones/enjoy-10-plus-top-edition-dual-sim-td-lte-cn-128gb-stk-tl00/score/index.json new file mode 100644 index 00000000000..9a8cd7f4c12 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-10-plus-top-edition-dual-sim-td-lte-cn-128gb-stk-tl00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 3.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-10-premium-edition-dual-sim-td-lte-cn-64gb-art-al00x/index.json b/site/public/v1/smartphones/enjoy-10-premium-edition-dual-sim-td-lte-cn-64gb-art-al00x/index.json new file mode 100644 index 00000000000..a77175f2263 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-10-premium-edition-dual-sim-td-lte-cn-64gb-art-al00x/index.json @@ -0,0 +1,76 @@ +{ + "id": 960, + "slug": "enjoy-10-premium-edition-dual-sim-td-lte-cn-64gb-art-al00x", + "name": "Enjoy 10 Premium Edition Dual SIM TD-LTE CN 64GB ART-AL00x", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.240016", + "updated_at": "2026-06-19T00:43:44.240016" +} diff --git a/site/public/v1/smartphones/enjoy-10-premium-edition-dual-sim-td-lte-cn-64gb-art-al00x/score/index.json b/site/public/v1/smartphones/enjoy-10-premium-edition-dual-sim-td-lte-cn-64gb-art-al00x/score/index.json new file mode 100644 index 00000000000..aa8f9cfc108 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-10-premium-edition-dual-sim-td-lte-cn-64gb-art-al00x/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-10-standard-edition-dual-sim-td-lte-cn-128gb-art-al00x/index.json b/site/public/v1/smartphones/enjoy-10-standard-edition-dual-sim-td-lte-cn-128gb-art-al00x/index.json new file mode 100644 index 00000000000..7185c65d5b8 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-10-standard-edition-dual-sim-td-lte-cn-128gb-art-al00x/index.json @@ -0,0 +1,76 @@ +{ + "id": 961, + "slug": "enjoy-10-standard-edition-dual-sim-td-lte-cn-128gb-art-al00x", + "name": "Enjoy 10 Standard Edition Dual SIM TD-LTE CN 128GB ART-AL00x", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.240016", + "updated_at": "2026-06-19T00:43:44.240016" +} diff --git a/site/public/v1/smartphones/enjoy-10-standard-edition-dual-sim-td-lte-cn-128gb-art-al00x/score/index.json b/site/public/v1/smartphones/enjoy-10-standard-edition-dual-sim-td-lte-cn-128gb-art-al00x/score/index.json new file mode 100644 index 00000000000..6de7755463e --- /dev/null +++ b/site/public/v1/smartphones/enjoy-10-standard-edition-dual-sim-td-lte-cn-128gb-art-al00x/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-10-standard-edition-dual-sim-td-lte-cn-128gb-art-tl00x/index.json b/site/public/v1/smartphones/enjoy-10-standard-edition-dual-sim-td-lte-cn-128gb-art-tl00x/index.json new file mode 100644 index 00000000000..5bd6a640b7e --- /dev/null +++ b/site/public/v1/smartphones/enjoy-10-standard-edition-dual-sim-td-lte-cn-128gb-art-tl00x/index.json @@ -0,0 +1,76 @@ +{ + "id": 962, + "slug": "enjoy-10-standard-edition-dual-sim-td-lte-cn-128gb-art-tl00x", + "name": "Enjoy 10 Standard Edition Dual SIM TD-LTE CN 128GB ART-TL00x", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.241531", + "updated_at": "2026-06-19T00:43:44.241531" +} diff --git a/site/public/v1/smartphones/enjoy-10-standard-edition-dual-sim-td-lte-cn-128gb-art-tl00x/score/index.json b/site/public/v1/smartphones/enjoy-10-standard-edition-dual-sim-td-lte-cn-128gb-art-tl00x/score/index.json new file mode 100644 index 00000000000..6de7755463e --- /dev/null +++ b/site/public/v1/smartphones/enjoy-10-standard-edition-dual-sim-td-lte-cn-128gb-art-tl00x/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-10-standard-edition-dual-sim-td-lte-cn-64gb-art-al00x/index.json b/site/public/v1/smartphones/enjoy-10-standard-edition-dual-sim-td-lte-cn-64gb-art-al00x/index.json new file mode 100644 index 00000000000..934d7d97371 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-10-standard-edition-dual-sim-td-lte-cn-64gb-art-al00x/index.json @@ -0,0 +1,76 @@ +{ + "id": 963, + "slug": "enjoy-10-standard-edition-dual-sim-td-lte-cn-64gb-art-al00x", + "name": "Enjoy 10 Standard Edition Dual SIM TD-LTE CN 64GB ART-AL00x", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.241531", + "updated_at": "2026-06-19T00:43:44.241531" +} diff --git a/site/public/v1/smartphones/enjoy-10-standard-edition-dual-sim-td-lte-cn-64gb-art-al00x/score/index.json b/site/public/v1/smartphones/enjoy-10-standard-edition-dual-sim-td-lte-cn-64gb-art-al00x/score/index.json new file mode 100644 index 00000000000..6de7755463e --- /dev/null +++ b/site/public/v1/smartphones/enjoy-10-standard-edition-dual-sim-td-lte-cn-64gb-art-al00x/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-10-standard-edition-dual-sim-td-lte-cn-64gb-art-tl00x/index.json b/site/public/v1/smartphones/enjoy-10-standard-edition-dual-sim-td-lte-cn-64gb-art-tl00x/index.json new file mode 100644 index 00000000000..86eec773ca1 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-10-standard-edition-dual-sim-td-lte-cn-64gb-art-tl00x/index.json @@ -0,0 +1,76 @@ +{ + "id": 964, + "slug": "enjoy-10-standard-edition-dual-sim-td-lte-cn-64gb-art-tl00x", + "name": "Enjoy 10 Standard Edition Dual SIM TD-LTE CN 64GB ART-TL00x", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.241531", + "updated_at": "2026-06-19T00:43:44.241531" +} diff --git a/site/public/v1/smartphones/enjoy-10-standard-edition-dual-sim-td-lte-cn-64gb-art-tl00x/score/index.json b/site/public/v1/smartphones/enjoy-10-standard-edition-dual-sim-td-lte-cn-64gb-art-tl00x/score/index.json new file mode 100644 index 00000000000..6de7755463e --- /dev/null +++ b/site/public/v1/smartphones/enjoy-10-standard-edition-dual-sim-td-lte-cn-64gb-art-tl00x/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-10e-premium-edition-dual-sim-td-lte-cn-128gb-med-al00/index.json b/site/public/v1/smartphones/enjoy-10e-premium-edition-dual-sim-td-lte-cn-128gb-med-al00/index.json new file mode 100644 index 00000000000..e77b62305b6 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-10e-premium-edition-dual-sim-td-lte-cn-128gb-med-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1119, + "slug": "enjoy-10e-premium-edition-dual-sim-td-lte-cn-128gb-med-al00", + "name": "Enjoy 10e Premium Edition Dual SIM TD-LTE CN 128GB MED-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-03-04", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 279 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.265097", + "updated_at": "2026-06-19T00:43:44.265097" +} diff --git a/site/public/v1/smartphones/enjoy-10e-premium-edition-dual-sim-td-lte-cn-128gb-med-al00/score/index.json b/site/public/v1/smartphones/enjoy-10e-premium-edition-dual-sim-td-lte-cn-128gb-med-al00/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/enjoy-10e-premium-edition-dual-sim-td-lte-cn-128gb-med-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-10e-premium-edition-dual-sim-td-lte-cn-64gb-med-al00-changxiang-10e/index.json b/site/public/v1/smartphones/enjoy-10e-premium-edition-dual-sim-td-lte-cn-64gb-med-al00-changxiang-10e/index.json new file mode 100644 index 00000000000..686752c768b --- /dev/null +++ b/site/public/v1/smartphones/enjoy-10e-premium-edition-dual-sim-td-lte-cn-64gb-med-al00-changxiang-10e/index.json @@ -0,0 +1,76 @@ +{ + "id": 1120, + "slug": "enjoy-10e-premium-edition-dual-sim-td-lte-cn-64gb-med-al00-changxiang-10e", + "name": "Enjoy 10e Premium Edition Dual SIM TD-LTE CN 64GB MED-AL00 / Changxiang 10e", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-03-04", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 279 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.265097", + "updated_at": "2026-06-19T00:43:44.265097" +} diff --git a/site/public/v1/smartphones/enjoy-10e-premium-edition-dual-sim-td-lte-cn-64gb-med-al00-changxiang-10e/score/index.json b/site/public/v1/smartphones/enjoy-10e-premium-edition-dual-sim-td-lte-cn-64gb-med-al00-changxiang-10e/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/enjoy-10e-premium-edition-dual-sim-td-lte-cn-64gb-med-al00-changxiang-10e/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-10s-premium-edition-dual-sim-td-lte-cn-128gb-aqm-al00/index.json b/site/public/v1/smartphones/enjoy-10s-premium-edition-dual-sim-td-lte-cn-128gb-aqm-al00/index.json new file mode 100644 index 00000000000..f6f1b198b06 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-10s-premium-edition-dual-sim-td-lte-cn-128gb-aqm-al00/index.json @@ -0,0 +1,77 @@ +{ + "id": 965, + "slug": "enjoy-10s-premium-edition-dual-sim-td-lte-cn-128gb-aqm-al00", + "name": "Enjoy 10S Premium Edition Dual SIM TD-LTE CN 128GB AQM-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 418 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": 3.0, + "camera": 16.5, + "battery": 15.0, + "display": 29.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.241531", + "updated_at": "2026-06-19T00:43:44.241531" +} diff --git a/site/public/v1/smartphones/enjoy-10s-premium-edition-dual-sim-td-lte-cn-128gb-aqm-al00/score/index.json b/site/public/v1/smartphones/enjoy-10s-premium-edition-dual-sim-td-lte-cn-128gb-aqm-al00/score/index.json new file mode 100644 index 00000000000..2a561c25e14 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-10s-premium-edition-dual-sim-td-lte-cn-128gb-aqm-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": 3.0, + "camera": 16.5, + "battery": 15.0, + "display": 29.3, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-10s-standard-edition-dual-sim-td-lte-cn-128gb-aqm-al00/index.json b/site/public/v1/smartphones/enjoy-10s-standard-edition-dual-sim-td-lte-cn-128gb-aqm-al00/index.json new file mode 100644 index 00000000000..f4abf728645 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-10s-standard-edition-dual-sim-td-lte-cn-128gb-aqm-al00/index.json @@ -0,0 +1,77 @@ +{ + "id": 966, + "slug": "enjoy-10s-standard-edition-dual-sim-td-lte-cn-128gb-aqm-al00", + "name": "Enjoy 10S Standard Edition Dual SIM TD-LTE CN 128GB AQM-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 418 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 29.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.241531", + "updated_at": "2026-06-19T00:43:44.241531" +} diff --git a/site/public/v1/smartphones/enjoy-10s-standard-edition-dual-sim-td-lte-cn-128gb-aqm-al00/score/index.json b/site/public/v1/smartphones/enjoy-10s-standard-edition-dual-sim-td-lte-cn-128gb-aqm-al00/score/index.json new file mode 100644 index 00000000000..d974997da23 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-10s-standard-edition-dual-sim-td-lte-cn-128gb-aqm-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 29.3, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-10s-standard-edition-dual-sim-td-lte-cn-64gb-aqm-al00/index.json b/site/public/v1/smartphones/enjoy-10s-standard-edition-dual-sim-td-lte-cn-64gb-aqm-al00/index.json new file mode 100644 index 00000000000..11a97eec606 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-10s-standard-edition-dual-sim-td-lte-cn-64gb-aqm-al00/index.json @@ -0,0 +1,77 @@ +{ + "id": 967, + "slug": "enjoy-10s-standard-edition-dual-sim-td-lte-cn-64gb-aqm-al00", + "name": "Enjoy 10S Standard Edition Dual SIM TD-LTE CN 64GB AQM-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 418 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 29.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.241531", + "updated_at": "2026-06-19T00:43:44.241531" +} diff --git a/site/public/v1/smartphones/enjoy-10s-standard-edition-dual-sim-td-lte-cn-64gb-aqm-al00/score/index.json b/site/public/v1/smartphones/enjoy-10s-standard-edition-dual-sim-td-lte-cn-64gb-aqm-al00/score/index.json new file mode 100644 index 00000000000..d974997da23 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-10s-standard-edition-dual-sim-td-lte-cn-64gb-aqm-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 29.3, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-10s-standard-edition-dual-sim-td-lte-cn-64gb-aqm-tl00/index.json b/site/public/v1/smartphones/enjoy-10s-standard-edition-dual-sim-td-lte-cn-64gb-aqm-tl00/index.json new file mode 100644 index 00000000000..4c6c82e79b4 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-10s-standard-edition-dual-sim-td-lte-cn-64gb-aqm-tl00/index.json @@ -0,0 +1,77 @@ +{ + "id": 968, + "slug": "enjoy-10s-standard-edition-dual-sim-td-lte-cn-64gb-aqm-tl00", + "name": "Enjoy 10S Standard Edition Dual SIM TD-LTE CN 64GB AQM-TL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 418 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 29.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.241531", + "updated_at": "2026-06-19T00:43:44.241531" +} diff --git a/site/public/v1/smartphones/enjoy-10s-standard-edition-dual-sim-td-lte-cn-64gb-aqm-tl00/score/index.json b/site/public/v1/smartphones/enjoy-10s-standard-edition-dual-sim-td-lte-cn-64gb-aqm-tl00/score/index.json new file mode 100644 index 00000000000..d974997da23 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-10s-standard-edition-dual-sim-td-lte-cn-64gb-aqm-tl00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 29.3, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-20-plus-5g-premium-edition-dual-sim-td-lte-cn-frl-an00a-changxiang-20-plus/index.json b/site/public/v1/smartphones/enjoy-20-plus-5g-premium-edition-dual-sim-td-lte-cn-frl-an00a-changxiang-20-plus/index.json new file mode 100644 index 00000000000..247e75bdb3d --- /dev/null +++ b/site/public/v1/smartphones/enjoy-20-plus-5g-premium-edition-dual-sim-td-lte-cn-frl-an00a-changxiang-20-plus/index.json @@ -0,0 +1,77 @@ +{ + "id": 1122, + "slug": "enjoy-20-plus-5g-premium-edition-dual-sim-td-lte-cn-frl-an00a-changxiang-20-plus", + "name": "Enjoy 20 Plus 5G Premium Edition Dual SIM TD-LTE CN FRL-AN00a / Changxiang 20 Plus", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2020-09-09", + "msrp_usd": 2499, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.63, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 22.8, + "display": 39.7, + "value": 10.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.265097", + "updated_at": "2026-06-19T00:43:44.265097" +} diff --git a/site/public/v1/smartphones/enjoy-20-plus-5g-premium-edition-dual-sim-td-lte-cn-frl-an00a-changxiang-20-plus/score/index.json b/site/public/v1/smartphones/enjoy-20-plus-5g-premium-edition-dual-sim-td-lte-cn-frl-an00a-changxiang-20-plus/score/index.json new file mode 100644 index 00000000000..3dc9efaa0dc --- /dev/null +++ b/site/public/v1/smartphones/enjoy-20-plus-5g-premium-edition-dual-sim-td-lte-cn-frl-an00a-changxiang-20-plus/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 22.8, + "display": 39.7, + "value": 10.2 +} diff --git a/site/public/v1/smartphones/enjoy-20-plus-5g-standard-edition-dual-sim-td-lte-cn-frl-an00a-changxiang-20-plus/index.json b/site/public/v1/smartphones/enjoy-20-plus-5g-standard-edition-dual-sim-td-lte-cn-frl-an00a-changxiang-20-plus/index.json new file mode 100644 index 00000000000..f8a384441f1 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-20-plus-5g-standard-edition-dual-sim-td-lte-cn-frl-an00a-changxiang-20-plus/index.json @@ -0,0 +1,77 @@ +{ + "id": 1123, + "slug": "enjoy-20-plus-5g-standard-edition-dual-sim-td-lte-cn-frl-an00a-changxiang-20-plus", + "name": "Enjoy 20 Plus 5G Standard Edition Dual SIM TD-LTE CN FRL-AN00a / Changxiang 20 Plus", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2020-09-09", + "msrp_usd": 2299, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.63, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 16.5, + "battery": 22.8, + "display": 39.7, + "value": 10.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.265097", + "updated_at": "2026-06-19T00:43:44.265097" +} diff --git a/site/public/v1/smartphones/enjoy-20-plus-5g-standard-edition-dual-sim-td-lte-cn-frl-an00a-changxiang-20-plus/score/index.json b/site/public/v1/smartphones/enjoy-20-plus-5g-standard-edition-dual-sim-td-lte-cn-frl-an00a-changxiang-20-plus/score/index.json new file mode 100644 index 00000000000..1d7850c61ef --- /dev/null +++ b/site/public/v1/smartphones/enjoy-20-plus-5g-standard-edition-dual-sim-td-lte-cn-frl-an00a-changxiang-20-plus/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 16.5, + "battery": 22.8, + "display": 39.7, + "value": 10.1 +} diff --git a/site/public/v1/smartphones/enjoy-20-plus-5g-standard-edition-dual-sim-td-lte-cn-frl-tn00a-changxiang-20-plus/index.json b/site/public/v1/smartphones/enjoy-20-plus-5g-standard-edition-dual-sim-td-lte-cn-frl-tn00a-changxiang-20-plus/index.json new file mode 100644 index 00000000000..516a7e026f9 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-20-plus-5g-standard-edition-dual-sim-td-lte-cn-frl-tn00a-changxiang-20-plus/index.json @@ -0,0 +1,77 @@ +{ + "id": 1124, + "slug": "enjoy-20-plus-5g-standard-edition-dual-sim-td-lte-cn-frl-tn00a-changxiang-20-plus", + "name": "Enjoy 20 Plus 5G Standard Edition Dual SIM TD-LTE CN FRL-TN00a / Changxiang 20 Plus", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2020-09-09", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.63, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 16.5, + "battery": 22.8, + "display": 39.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.265097", + "updated_at": "2026-06-19T00:43:44.265097" +} diff --git a/site/public/v1/smartphones/enjoy-20-plus-5g-standard-edition-dual-sim-td-lte-cn-frl-tn00a-changxiang-20-plus/score/index.json b/site/public/v1/smartphones/enjoy-20-plus-5g-standard-edition-dual-sim-td-lte-cn-frl-tn00a-changxiang-20-plus/score/index.json new file mode 100644 index 00000000000..6bc46ea6756 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-20-plus-5g-standard-edition-dual-sim-td-lte-cn-frl-tn00a-changxiang-20-plus/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 16.5, + "battery": 22.8, + "display": 39.7, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-20-pro-5g-dual-sim-td-lte-cn-128gb-dvc-an00-changxiang-20-pro-dvc-an20/index.json b/site/public/v1/smartphones/enjoy-20-pro-5g-dual-sim-td-lte-cn-128gb-dvc-an00-changxiang-20-pro-dvc-an20/index.json new file mode 100644 index 00000000000..34a48a20e6d --- /dev/null +++ b/site/public/v1/smartphones/enjoy-20-pro-5g-dual-sim-td-lte-cn-128gb-dvc-an00-changxiang-20-pro-dvc-an20/index.json @@ -0,0 +1,77 @@ +{ + "id": 1126, + "slug": "enjoy-20-pro-5g-dual-sim-td-lte-cn-128gb-dvc-an00-changxiang-20-pro-dvc-an20", + "name": "Enjoy 20 Pro 5G Dual SIM TD-LTE CN 128GB DVC-AN00 / Changxiang 20 Pro DVC-AN20", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2020-06-21", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 1.5, + "camera": 16.5, + "battery": 16.3, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.265097", + "updated_at": "2026-06-19T00:43:44.265097" +} diff --git a/site/public/v1/smartphones/enjoy-20-pro-5g-dual-sim-td-lte-cn-128gb-dvc-an00-changxiang-20-pro-dvc-an20/score/index.json b/site/public/v1/smartphones/enjoy-20-pro-5g-dual-sim-td-lte-cn-128gb-dvc-an00-changxiang-20-pro-dvc-an20/score/index.json new file mode 100644 index 00000000000..629af5e673c --- /dev/null +++ b/site/public/v1/smartphones/enjoy-20-pro-5g-dual-sim-td-lte-cn-128gb-dvc-an00-changxiang-20-pro-dvc-an20/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 1.5, + "camera": 16.5, + "battery": 16.3, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-20-pro-5g-dual-sim-td-lte-cn-128gb-dvc-tn00-changxiang-20-pro-dvc-tn20/index.json b/site/public/v1/smartphones/enjoy-20-pro-5g-dual-sim-td-lte-cn-128gb-dvc-tn00-changxiang-20-pro-dvc-tn20/index.json new file mode 100644 index 00000000000..11fb5199a83 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-20-pro-5g-dual-sim-td-lte-cn-128gb-dvc-tn00-changxiang-20-pro-dvc-tn20/index.json @@ -0,0 +1,77 @@ +{ + "id": 1127, + "slug": "enjoy-20-pro-5g-dual-sim-td-lte-cn-128gb-dvc-tn00-changxiang-20-pro-dvc-tn20", + "name": "Enjoy 20 Pro 5G Dual SIM TD-LTE CN 128GB DVC-TN00 / Changxiang 20 Pro DVC-TN20", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2020-06-21", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 1.5, + "camera": 16.5, + "battery": 16.3, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.265097", + "updated_at": "2026-06-19T00:43:44.265097" +} diff --git a/site/public/v1/smartphones/enjoy-20-pro-5g-dual-sim-td-lte-cn-128gb-dvc-tn00-changxiang-20-pro-dvc-tn20/score/index.json b/site/public/v1/smartphones/enjoy-20-pro-5g-dual-sim-td-lte-cn-128gb-dvc-tn00-changxiang-20-pro-dvc-tn20/score/index.json new file mode 100644 index 00000000000..629af5e673c --- /dev/null +++ b/site/public/v1/smartphones/enjoy-20-pro-5g-dual-sim-td-lte-cn-128gb-dvc-tn00-changxiang-20-pro-dvc-tn20/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 1.5, + "camera": 16.5, + "battery": 16.3, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-20-pro-5g-premium-edition-dual-sim-td-lte-cn-dvc-an00-enjoy-z-5g/index.json b/site/public/v1/smartphones/enjoy-20-pro-5g-premium-edition-dual-sim-td-lte-cn-dvc-an00-enjoy-z-5g/index.json new file mode 100644 index 00000000000..1e0de6b2497 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-20-pro-5g-premium-edition-dual-sim-td-lte-cn-dvc-an00-enjoy-z-5g/index.json @@ -0,0 +1,77 @@ +{ + "id": 1128, + "slug": "enjoy-20-pro-5g-premium-edition-dual-sim-td-lte-cn-dvc-an00-enjoy-z-5g", + "name": "Enjoy 20 Pro 5G Premium Edition Dual SIM TD-LTE CN DVC-AN00 / Enjoy Z 5G", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2020-06-24", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 3.0, + "camera": 16.5, + "battery": 16.3, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.266097", + "updated_at": "2026-06-19T00:43:44.266097" +} diff --git a/site/public/v1/smartphones/enjoy-20-pro-5g-premium-edition-dual-sim-td-lte-cn-dvc-an00-enjoy-z-5g/score/index.json b/site/public/v1/smartphones/enjoy-20-pro-5g-premium-edition-dual-sim-td-lte-cn-dvc-an00-enjoy-z-5g/score/index.json new file mode 100644 index 00000000000..30d30a7b531 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-20-pro-5g-premium-edition-dual-sim-td-lte-cn-dvc-an00-enjoy-z-5g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 3.0, + "camera": 16.5, + "battery": 16.3, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-20-se-premium-edition-dual-sim-td-lte-cn-128gb-ppa-al20-changxiang-20-se/index.json b/site/public/v1/smartphones/enjoy-20-se-premium-edition-dual-sim-td-lte-cn-128gb-ppa-al20-changxiang-20-se/index.json new file mode 100644 index 00000000000..0bfc014ff11 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-20-se-premium-edition-dual-sim-td-lte-cn-128gb-ppa-al20-changxiang-20-se/index.json @@ -0,0 +1,76 @@ +{ + "id": 1130, + "slug": "enjoy-20-se-premium-edition-dual-sim-td-lte-cn-128gb-ppa-al20-changxiang-20-se", + "name": "Enjoy 20 SE Premium Edition Dual SIM TD-LTE CN 128GB PPA-AL20 / Changxiang 20 SE", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 33, + "slug": "kirin-710a", + "name": "Kirin 710A", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51", + "url": "/v1/socs/kirin-710a" + }, + "release_date": "2020-12-01", + "msrp_usd": 1499, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 5.4, + "battery": 31.4, + "display": 44.5, + "value": 14.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.266097", + "updated_at": "2026-06-19T00:43:44.266097" +} diff --git a/site/public/v1/smartphones/enjoy-20-se-premium-edition-dual-sim-td-lte-cn-128gb-ppa-al20-changxiang-20-se/score/index.json b/site/public/v1/smartphones/enjoy-20-se-premium-edition-dual-sim-td-lte-cn-128gb-ppa-al20-changxiang-20-se/score/index.json new file mode 100644 index 00000000000..0a7470241d9 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-20-se-premium-edition-dual-sim-td-lte-cn-128gb-ppa-al20-changxiang-20-se/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 5.4, + "battery": 31.4, + "display": 44.5, + "value": 14.5 +} diff --git a/site/public/v1/smartphones/enjoy-20-se-standard-edition-dual-sim-td-lte-cn-128gb-ppa-al20-changxiang-20-se/index.json b/site/public/v1/smartphones/enjoy-20-se-standard-edition-dual-sim-td-lte-cn-128gb-ppa-al20-changxiang-20-se/index.json new file mode 100644 index 00000000000..c254e97759f --- /dev/null +++ b/site/public/v1/smartphones/enjoy-20-se-standard-edition-dual-sim-td-lte-cn-128gb-ppa-al20-changxiang-20-se/index.json @@ -0,0 +1,76 @@ +{ + "id": 1131, + "slug": "enjoy-20-se-standard-edition-dual-sim-td-lte-cn-128gb-ppa-al20-changxiang-20-se", + "name": "Enjoy 20 SE Standard Edition Dual SIM TD-LTE CN 128GB PPA-AL20 / Changxiang 20 SE", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 33, + "slug": "kirin-710a", + "name": "Kirin 710A", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51", + "url": "/v1/socs/kirin-710a" + }, + "release_date": "2020-12-01", + "msrp_usd": 1299, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 0.0, + "camera": 5.4, + "battery": 31.4, + "display": 44.5, + "value": 21.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.266097", + "updated_at": "2026-06-19T00:43:44.266097" +} diff --git a/site/public/v1/smartphones/enjoy-20-se-standard-edition-dual-sim-td-lte-cn-128gb-ppa-al20-changxiang-20-se/score/index.json b/site/public/v1/smartphones/enjoy-20-se-standard-edition-dual-sim-td-lte-cn-128gb-ppa-al20-changxiang-20-se/score/index.json new file mode 100644 index 00000000000..db3f715385a --- /dev/null +++ b/site/public/v1/smartphones/enjoy-20-se-standard-edition-dual-sim-td-lte-cn-128gb-ppa-al20-changxiang-20-se/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 0.0, + "camera": 5.4, + "battery": 31.4, + "display": 44.5, + "value": 21.8 +} diff --git a/site/public/v1/smartphones/enjoy-8-dual-sim-td-lte-cn-ldn-al00/index.json b/site/public/v1/smartphones/enjoy-8-dual-sim-td-lte-cn-ldn-al00/index.json new file mode 100644 index 00000000000..bbca6f7f79f --- /dev/null +++ b/site/public/v1/smartphones/enjoy-8-dual-sim-td-lte-cn-ldn-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 809, + "slug": "enjoy-8-dual-sim-td-lte-cn-ldn-al00", + "name": "Enjoy 8 Dual SIM TD-LTE CN LDN-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 155.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.219932", + "updated_at": "2026-06-19T00:43:44.219932" +} diff --git a/site/public/v1/smartphones/enjoy-8-dual-sim-td-lte-cn-ldn-al00/score/index.json b/site/public/v1/smartphones/enjoy-8-dual-sim-td-lte-cn-ldn-al00/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-8-dual-sim-td-lte-cn-ldn-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-8-dual-sim-td-lte-cn-ldn-tl10-y7-prime-2018-ldn-tl30-ldn-tl40/index.json b/site/public/v1/smartphones/enjoy-8-dual-sim-td-lte-cn-ldn-tl10-y7-prime-2018-ldn-tl30-ldn-tl40/index.json new file mode 100644 index 00000000000..057b8492825 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-8-dual-sim-td-lte-cn-ldn-tl10-y7-prime-2018-ldn-tl30-ldn-tl40/index.json @@ -0,0 +1,76 @@ +{ + "id": 810, + "slug": "enjoy-8-dual-sim-td-lte-cn-ldn-tl10-y7-prime-2018-ldn-tl30-ldn-tl40", + "name": "Enjoy 8 Dual SIM TD-LTE CN LDN-TL10 / Y7 Prime 2018 LDN-TL30 / LDN-TL40", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 155.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.219932", + "updated_at": "2026-06-19T00:43:44.219932" +} diff --git a/site/public/v1/smartphones/enjoy-8-dual-sim-td-lte-cn-ldn-tl10-y7-prime-2018-ldn-tl30-ldn-tl40/score/index.json b/site/public/v1/smartphones/enjoy-8-dual-sim-td-lte-cn-ldn-tl10-y7-prime-2018-ldn-tl30-ldn-tl40/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-8-dual-sim-td-lte-cn-ldn-tl10-y7-prime-2018-ldn-tl30-ldn-tl40/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-8-plus-dual-sim-td-lte-cn-fla-al00-32gb/index.json b/site/public/v1/smartphones/enjoy-8-plus-dual-sim-td-lte-cn-fla-al00-32gb/index.json new file mode 100644 index 00000000000..c48d06987c4 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-8-plus-dual-sim-td-lte-cn-fla-al00-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 811, + "slug": "enjoy-8-plus-dual-sim-td-lte-cn-fla-al00-32gb", + "name": "Enjoy 8 Plus Dual SIM TD-LTE CN FLA-AL00 32GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 25, + "slug": "kirin-659", + "name": "Kirin 659", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 16.0, + "gpu_name": "Mali-T830 MP2", + "url": "/v1/socs/kirin-659" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.93, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 407 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 45.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.219932", + "updated_at": "2026-06-19T00:43:44.219932" +} diff --git a/site/public/v1/smartphones/enjoy-8-plus-dual-sim-td-lte-cn-fla-al00-32gb/score/index.json b/site/public/v1/smartphones/enjoy-8-plus-dual-sim-td-lte-cn-fla-al00-32gb/score/index.json new file mode 100644 index 00000000000..96293b69c1f --- /dev/null +++ b/site/public/v1/smartphones/enjoy-8-plus-dual-sim-td-lte-cn-fla-al00-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 45.7, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-8-plus-dual-sim-td-lte-cn-fla-al10-64gb/index.json b/site/public/v1/smartphones/enjoy-8-plus-dual-sim-td-lte-cn-fla-al10-64gb/index.json new file mode 100644 index 00000000000..b3369c4c29c --- /dev/null +++ b/site/public/v1/smartphones/enjoy-8-plus-dual-sim-td-lte-cn-fla-al10-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 812, + "slug": "enjoy-8-plus-dual-sim-td-lte-cn-fla-al10-64gb", + "name": "Enjoy 8 Plus Dual SIM TD-LTE CN FLA-AL10 64GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 25, + "slug": "kirin-659", + "name": "Kirin 659", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 16.0, + "gpu_name": "Mali-T830 MP2", + "url": "/v1/socs/kirin-659" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.93, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 407 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 45.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.219932", + "updated_at": "2026-06-19T00:43:44.219932" +} diff --git a/site/public/v1/smartphones/enjoy-8-plus-dual-sim-td-lte-cn-fla-al10-64gb/score/index.json b/site/public/v1/smartphones/enjoy-8-plus-dual-sim-td-lte-cn-fla-al10-64gb/score/index.json new file mode 100644 index 00000000000..96293b69c1f --- /dev/null +++ b/site/public/v1/smartphones/enjoy-8-plus-dual-sim-td-lte-cn-fla-al10-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 45.7, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-8-plus-dual-sim-td-lte-cn-fla-al20-128gb/index.json b/site/public/v1/smartphones/enjoy-8-plus-dual-sim-td-lte-cn-fla-al20-128gb/index.json new file mode 100644 index 00000000000..22daa500425 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-8-plus-dual-sim-td-lte-cn-fla-al20-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 813, + "slug": "enjoy-8-plus-dual-sim-td-lte-cn-fla-al20-128gb", + "name": "Enjoy 8 Plus Dual SIM TD-LTE CN FLA-AL20 128GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 25, + "slug": "kirin-659", + "name": "Kirin 659", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 16.0, + "gpu_name": "Mali-T830 MP2", + "url": "/v1/socs/kirin-659" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.93, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 407 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 45.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.219932", + "updated_at": "2026-06-19T00:43:44.219932" +} diff --git a/site/public/v1/smartphones/enjoy-8-plus-dual-sim-td-lte-cn-fla-al20-128gb/score/index.json b/site/public/v1/smartphones/enjoy-8-plus-dual-sim-td-lte-cn-fla-al20-128gb/score/index.json new file mode 100644 index 00000000000..96293b69c1f --- /dev/null +++ b/site/public/v1/smartphones/enjoy-8-plus-dual-sim-td-lte-cn-fla-al20-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 45.7, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-8-plus-dual-sim-td-lte-cn-fla-tl00-32gb/index.json b/site/public/v1/smartphones/enjoy-8-plus-dual-sim-td-lte-cn-fla-tl00-32gb/index.json new file mode 100644 index 00000000000..82fe20f6bae --- /dev/null +++ b/site/public/v1/smartphones/enjoy-8-plus-dual-sim-td-lte-cn-fla-tl00-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 814, + "slug": "enjoy-8-plus-dual-sim-td-lte-cn-fla-tl00-32gb", + "name": "Enjoy 8 Plus Dual SIM TD-LTE CN FLA-TL00 32GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 25, + "slug": "kirin-659", + "name": "Kirin 659", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 16.0, + "gpu_name": "Mali-T830 MP2", + "url": "/v1/socs/kirin-659" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.93, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 407 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 45.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.219932", + "updated_at": "2026-06-19T00:43:44.219932" +} diff --git a/site/public/v1/smartphones/enjoy-8-plus-dual-sim-td-lte-cn-fla-tl00-32gb/score/index.json b/site/public/v1/smartphones/enjoy-8-plus-dual-sim-td-lte-cn-fla-tl00-32gb/score/index.json new file mode 100644 index 00000000000..96293b69c1f --- /dev/null +++ b/site/public/v1/smartphones/enjoy-8-plus-dual-sim-td-lte-cn-fla-tl00-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 45.7, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-8e-dual-sim-td-lte-cn-atu-al10/index.json b/site/public/v1/smartphones/enjoy-8e-dual-sim-td-lte-cn-atu-al10/index.json new file mode 100644 index 00000000000..d37b7a63835 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-8e-dual-sim-td-lte-cn-atu-al10/index.json @@ -0,0 +1,76 @@ +{ + "id": 815, + "slug": "enjoy-8e-dual-sim-td-lte-cn-atu-al10", + "name": "Enjoy 8e Dual SIM TD-LTE CN ATU-AL10", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-03-29", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.220932", + "updated_at": "2026-06-19T00:43:44.220932" +} diff --git a/site/public/v1/smartphones/enjoy-8e-dual-sim-td-lte-cn-atu-al10/score/index.json b/site/public/v1/smartphones/enjoy-8e-dual-sim-td-lte-cn-atu-al10/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-8e-dual-sim-td-lte-cn-atu-al10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-8e-dual-sim-td-lte-cn-atu-tl10/index.json b/site/public/v1/smartphones/enjoy-8e-dual-sim-td-lte-cn-atu-tl10/index.json new file mode 100644 index 00000000000..91fe047d658 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-8e-dual-sim-td-lte-cn-atu-tl10/index.json @@ -0,0 +1,76 @@ +{ + "id": 816, + "slug": "enjoy-8e-dual-sim-td-lte-cn-atu-tl10", + "name": "Enjoy 8e Dual SIM TD-LTE CN ATU-TL10", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-03-29", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.220932", + "updated_at": "2026-06-19T00:43:44.220932" +} diff --git a/site/public/v1/smartphones/enjoy-8e-dual-sim-td-lte-cn-atu-tl10/score/index.json b/site/public/v1/smartphones/enjoy-8e-dual-sim-td-lte-cn-atu-tl10/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-8e-dual-sim-td-lte-cn-atu-tl10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-9-dual-sim-td-lte-cn-dub-al00/index.json b/site/public/v1/smartphones/enjoy-9-dual-sim-td-lte-cn-dub-al00/index.json new file mode 100644 index 00000000000..0797248397d --- /dev/null +++ b/site/public/v1/smartphones/enjoy-9-dual-sim-td-lte-cn-dub-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 817, + "slug": "enjoy-9-dual-sim-td-lte-cn-dub-al00", + "name": "Enjoy 9 Dual SIM TD-LTE CN DUB-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-12-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.220932", + "updated_at": "2026-06-19T00:43:44.220932" +} diff --git a/site/public/v1/smartphones/enjoy-9-dual-sim-td-lte-cn-dub-al00/score/index.json b/site/public/v1/smartphones/enjoy-9-dual-sim-td-lte-cn-dub-al00/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/enjoy-9-dual-sim-td-lte-cn-dub-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-9-dual-sim-td-lte-cn-dub-al20-64gb/index.json b/site/public/v1/smartphones/enjoy-9-dual-sim-td-lte-cn-dub-al20-64gb/index.json new file mode 100644 index 00000000000..fadc92902e8 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-9-dual-sim-td-lte-cn-dub-al20-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 818, + "slug": "enjoy-9-dual-sim-td-lte-cn-dub-al20-64gb", + "name": "Enjoy 9 Dual SIM TD-LTE CN DUB-AL20 64GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-12-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.220932", + "updated_at": "2026-06-19T00:43:44.220932" +} diff --git a/site/public/v1/smartphones/enjoy-9-dual-sim-td-lte-cn-dub-al20-64gb/score/index.json b/site/public/v1/smartphones/enjoy-9-dual-sim-td-lte-cn-dub-al20-64gb/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/enjoy-9-dual-sim-td-lte-cn-dub-al20-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-9-dual-sim-td-lte-cn-dub-tl00/index.json b/site/public/v1/smartphones/enjoy-9-dual-sim-td-lte-cn-dub-tl00/index.json new file mode 100644 index 00000000000..cc37915dfbb --- /dev/null +++ b/site/public/v1/smartphones/enjoy-9-dual-sim-td-lte-cn-dub-tl00/index.json @@ -0,0 +1,76 @@ +{ + "id": 819, + "slug": "enjoy-9-dual-sim-td-lte-cn-dub-tl00", + "name": "Enjoy 9 Dual SIM TD-LTE CN DUB-TL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-12-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.220932", + "updated_at": "2026-06-19T00:43:44.220932" +} diff --git a/site/public/v1/smartphones/enjoy-9-dual-sim-td-lte-cn-dub-tl00/score/index.json b/site/public/v1/smartphones/enjoy-9-dual-sim-td-lte-cn-dub-tl00/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/enjoy-9-dual-sim-td-lte-cn-dub-tl00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-9-max-dual-sim-td-lte-cn-ars-al00-128gb-changxiang-max/index.json b/site/public/v1/smartphones/enjoy-9-max-dual-sim-td-lte-cn-ars-al00-128gb-changxiang-max/index.json new file mode 100644 index 00000000000..6b8ab50c486 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-9-max-dual-sim-td-lte-cn-ars-al00-128gb-changxiang-max/index.json @@ -0,0 +1,76 @@ +{ + "id": 820, + "slug": "enjoy-9-max-dual-sim-td-lte-cn-ars-al00-128gb-changxiang-max", + "name": "Enjoy 9 Max Dual SIM TD-LTE CN ARS-AL00 128GB / Changxiang Max", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-10-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 7.12, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 350 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 18.0, + "camera": 6.3, + "battery": 30.0, + "display": 40.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.220932", + "updated_at": "2026-06-19T00:43:44.220932" +} diff --git a/site/public/v1/smartphones/enjoy-9-max-dual-sim-td-lte-cn-ars-al00-128gb-changxiang-max/score/index.json b/site/public/v1/smartphones/enjoy-9-max-dual-sim-td-lte-cn-ars-al00-128gb-changxiang-max/score/index.json new file mode 100644 index 00000000000..bc3fae48d29 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-9-max-dual-sim-td-lte-cn-ars-al00-128gb-changxiang-max/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 18.0, + "camera": 6.3, + "battery": 30.0, + "display": 40.0, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-9-max-dual-sim-td-lte-cn-ars-al00-64gb-changxiang-max/index.json b/site/public/v1/smartphones/enjoy-9-max-dual-sim-td-lte-cn-ars-al00-64gb-changxiang-max/index.json new file mode 100644 index 00000000000..e5e7eae84e2 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-9-max-dual-sim-td-lte-cn-ars-al00-64gb-changxiang-max/index.json @@ -0,0 +1,76 @@ +{ + "id": 821, + "slug": "enjoy-9-max-dual-sim-td-lte-cn-ars-al00-64gb-changxiang-max", + "name": "Enjoy 9 Max Dual SIM TD-LTE CN ARS-AL00 64GB / Changxiang Max", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-10-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 7.12, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 350 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 18.0, + "camera": 6.3, + "battery": 30.0, + "display": 40.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.220932", + "updated_at": "2026-06-19T00:43:44.220932" +} diff --git a/site/public/v1/smartphones/enjoy-9-max-dual-sim-td-lte-cn-ars-al00-64gb-changxiang-max/score/index.json b/site/public/v1/smartphones/enjoy-9-max-dual-sim-td-lte-cn-ars-al00-64gb-changxiang-max/score/index.json new file mode 100644 index 00000000000..bc3fae48d29 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-9-max-dual-sim-td-lte-cn-ars-al00-64gb-changxiang-max/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 18.0, + "camera": 6.3, + "battery": 30.0, + "display": 40.0, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-9-max-dual-sim-td-lte-cn-ars-tl00-64gb/index.json b/site/public/v1/smartphones/enjoy-9-max-dual-sim-td-lte-cn-ars-tl00-64gb/index.json new file mode 100644 index 00000000000..f72d8930857 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-9-max-dual-sim-td-lte-cn-ars-tl00-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 822, + "slug": "enjoy-9-max-dual-sim-td-lte-cn-ars-tl00-64gb", + "name": "Enjoy 9 Max Dual SIM TD-LTE CN ARS-TL00 64GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-10-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 7.12, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 350 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 18.0, + "camera": 6.3, + "battery": 30.0, + "display": 40.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.220932", + "updated_at": "2026-06-19T00:43:44.220932" +} diff --git a/site/public/v1/smartphones/enjoy-9-max-dual-sim-td-lte-cn-ars-tl00-64gb/score/index.json b/site/public/v1/smartphones/enjoy-9-max-dual-sim-td-lte-cn-ars-tl00-64gb/score/index.json new file mode 100644 index 00000000000..bc3fae48d29 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-9-max-dual-sim-td-lte-cn-ars-tl00-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 18.0, + "camera": 6.3, + "battery": 30.0, + "display": 40.0, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-9-plus-premium-edition-dual-sim-td-lte-cn-jkm-al00-128gb/index.json b/site/public/v1/smartphones/enjoy-9-plus-premium-edition-dual-sim-td-lte-cn-jkm-al00-128gb/index.json new file mode 100644 index 00000000000..d8182d464cb --- /dev/null +++ b/site/public/v1/smartphones/enjoy-9-plus-premium-edition-dual-sim-td-lte-cn-jkm-al00-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 823, + "slug": "enjoy-9-plus-premium-edition-dual-sim-td-lte-cn-jkm-al00-128gb", + "name": "Enjoy 9 Plus Premium Edition Dual SIM TD-LTE CN JKM-AL00 128GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 1.5, + "camera": 5.3, + "battery": 15.0, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.221932", + "updated_at": "2026-06-19T00:43:44.221932" +} diff --git a/site/public/v1/smartphones/enjoy-9-plus-premium-edition-dual-sim-td-lte-cn-jkm-al00-128gb/score/index.json b/site/public/v1/smartphones/enjoy-9-plus-premium-edition-dual-sim-td-lte-cn-jkm-al00-128gb/score/index.json new file mode 100644 index 00000000000..abbd09cc150 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-9-plus-premium-edition-dual-sim-td-lte-cn-jkm-al00-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 1.5, + "camera": 5.3, + "battery": 15.0, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-9-plus-standard-edition-dual-sim-td-lte-cn-128gb-jkm-al00-jkm-al00b/index.json b/site/public/v1/smartphones/enjoy-9-plus-standard-edition-dual-sim-td-lte-cn-128gb-jkm-al00-jkm-al00b/index.json new file mode 100644 index 00000000000..746f6ecfc39 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-9-plus-standard-edition-dual-sim-td-lte-cn-128gb-jkm-al00-jkm-al00b/index.json @@ -0,0 +1,76 @@ +{ + "id": 824, + "slug": "enjoy-9-plus-standard-edition-dual-sim-td-lte-cn-128gb-jkm-al00-jkm-al00b", + "name": "Enjoy 9 Plus Standard Edition Dual SIM TD-LTE CN 128GB JKM-AL00 / JKM-AL00B", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.221932", + "updated_at": "2026-06-19T00:43:44.221932" +} diff --git a/site/public/v1/smartphones/enjoy-9-plus-standard-edition-dual-sim-td-lte-cn-128gb-jkm-al00-jkm-al00b/score/index.json b/site/public/v1/smartphones/enjoy-9-plus-standard-edition-dual-sim-td-lte-cn-128gb-jkm-al00-jkm-al00b/score/index.json new file mode 100644 index 00000000000..edcebd82a6c --- /dev/null +++ b/site/public/v1/smartphones/enjoy-9-plus-standard-edition-dual-sim-td-lte-cn-128gb-jkm-al00-jkm-al00b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-9-plus-standard-edition-dual-sim-td-lte-cn-jkm-al00-64gb/index.json b/site/public/v1/smartphones/enjoy-9-plus-standard-edition-dual-sim-td-lte-cn-jkm-al00-64gb/index.json new file mode 100644 index 00000000000..d9d52eda15d --- /dev/null +++ b/site/public/v1/smartphones/enjoy-9-plus-standard-edition-dual-sim-td-lte-cn-jkm-al00-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 825, + "slug": "enjoy-9-plus-standard-edition-dual-sim-td-lte-cn-jkm-al00-64gb", + "name": "Enjoy 9 Plus Standard Edition Dual SIM TD-LTE CN JKM-AL00 64GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.221932", + "updated_at": "2026-06-19T00:43:44.221932" +} diff --git a/site/public/v1/smartphones/enjoy-9-plus-standard-edition-dual-sim-td-lte-cn-jkm-al00-64gb/score/index.json b/site/public/v1/smartphones/enjoy-9-plus-standard-edition-dual-sim-td-lte-cn-jkm-al00-64gb/score/index.json new file mode 100644 index 00000000000..edcebd82a6c --- /dev/null +++ b/site/public/v1/smartphones/enjoy-9-plus-standard-edition-dual-sim-td-lte-cn-jkm-al00-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-9e-dual-sim-td-lte-cn-mrd-al00/index.json b/site/public/v1/smartphones/enjoy-9e-dual-sim-td-lte-cn-mrd-al00/index.json new file mode 100644 index 00000000000..c4ebf6765c9 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-9e-dual-sim-td-lte-cn-mrd-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 969, + "slug": "enjoy-9e-dual-sim-td-lte-cn-mrd-al00", + "name": "Enjoy 9e Dual SIM TD-LTE CN MRD-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2019-04-08", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3020, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.2, + "performance": 0.0, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.243054", + "updated_at": "2026-06-19T00:43:44.243054" +} diff --git a/site/public/v1/smartphones/enjoy-9e-dual-sim-td-lte-cn-mrd-al00/score/index.json b/site/public/v1/smartphones/enjoy-9e-dual-sim-td-lte-cn-mrd-al00/score/index.json new file mode 100644 index 00000000000..83f9924d81f --- /dev/null +++ b/site/public/v1/smartphones/enjoy-9e-dual-sim-td-lte-cn-mrd-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.2, + "performance": 0.0, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-9e-dual-sim-td-lte-cn-mrd-tl00/index.json b/site/public/v1/smartphones/enjoy-9e-dual-sim-td-lte-cn-mrd-tl00/index.json new file mode 100644 index 00000000000..71facd0d11a --- /dev/null +++ b/site/public/v1/smartphones/enjoy-9e-dual-sim-td-lte-cn-mrd-tl00/index.json @@ -0,0 +1,76 @@ +{ + "id": 970, + "slug": "enjoy-9e-dual-sim-td-lte-cn-mrd-tl00", + "name": "Enjoy 9e Dual SIM TD-LTE CN MRD-TL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2019-04-08", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3020, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.2, + "performance": 0.0, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.243054", + "updated_at": "2026-06-19T00:43:44.243054" +} diff --git a/site/public/v1/smartphones/enjoy-9e-dual-sim-td-lte-cn-mrd-tl00/score/index.json b/site/public/v1/smartphones/enjoy-9e-dual-sim-td-lte-cn-mrd-tl00/score/index.json new file mode 100644 index 00000000000..83f9924d81f --- /dev/null +++ b/site/public/v1/smartphones/enjoy-9e-dual-sim-td-lte-cn-mrd-tl00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.2, + "performance": 0.0, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-9s-premium-edition-dual-sim-td-lte-cn-64gb-pot-al00a/index.json b/site/public/v1/smartphones/enjoy-9s-premium-edition-dual-sim-td-lte-cn-64gb-pot-al00a/index.json new file mode 100644 index 00000000000..0e772e849e6 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-9s-premium-edition-dual-sim-td-lte-cn-64gb-pot-al00a/index.json @@ -0,0 +1,76 @@ +{ + "id": 972, + "slug": "enjoy-9s-premium-edition-dual-sim-td-lte-cn-64gb-pot-al00a", + "name": "Enjoy 9S Premium Edition Dual SIM TD-LTE CN 64GB POT-AL00a", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.7, + "performance": 1.5, + "camera": 8.8, + "battery": 6.0, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.243054", + "updated_at": "2026-06-19T00:43:44.243054" +} diff --git a/site/public/v1/smartphones/enjoy-9s-premium-edition-dual-sim-td-lte-cn-64gb-pot-al00a/score/index.json b/site/public/v1/smartphones/enjoy-9s-premium-edition-dual-sim-td-lte-cn-64gb-pot-al00a/score/index.json new file mode 100644 index 00000000000..dabd5730354 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-9s-premium-edition-dual-sim-td-lte-cn-64gb-pot-al00a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.7, + "performance": 1.5, + "camera": 8.8, + "battery": 6.0, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-9s-standard-edition-dual-sim-td-lte-cn-128gb-pot-al00a/index.json b/site/public/v1/smartphones/enjoy-9s-standard-edition-dual-sim-td-lte-cn-128gb-pot-al00a/index.json new file mode 100644 index 00000000000..0569749786e --- /dev/null +++ b/site/public/v1/smartphones/enjoy-9s-standard-edition-dual-sim-td-lte-cn-128gb-pot-al00a/index.json @@ -0,0 +1,76 @@ +{ + "id": 973, + "slug": "enjoy-9s-standard-edition-dual-sim-td-lte-cn-128gb-pot-al00a", + "name": "Enjoy 9S Standard Edition Dual SIM TD-LTE CN 128GB POT-AL00a", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-04-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.3, + "performance": 0.0, + "camera": 8.8, + "battery": 6.0, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.243054", + "updated_at": "2026-06-19T00:43:44.243054" +} diff --git a/site/public/v1/smartphones/enjoy-9s-standard-edition-dual-sim-td-lte-cn-128gb-pot-al00a/score/index.json b/site/public/v1/smartphones/enjoy-9s-standard-edition-dual-sim-td-lte-cn-128gb-pot-al00a/score/index.json new file mode 100644 index 00000000000..584fb3174b2 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-9s-standard-edition-dual-sim-td-lte-cn-128gb-pot-al00a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.3, + "performance": 0.0, + "camera": 8.8, + "battery": 6.0, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-9s-standard-edition-dual-sim-td-lte-cn-128gb-pot-tl00a/index.json b/site/public/v1/smartphones/enjoy-9s-standard-edition-dual-sim-td-lte-cn-128gb-pot-tl00a/index.json new file mode 100644 index 00000000000..89473352d17 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-9s-standard-edition-dual-sim-td-lte-cn-128gb-pot-tl00a/index.json @@ -0,0 +1,76 @@ +{ + "id": 974, + "slug": "enjoy-9s-standard-edition-dual-sim-td-lte-cn-128gb-pot-tl00a", + "name": "Enjoy 9S Standard Edition Dual SIM TD-LTE CN 128GB POT-TL00a", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-04-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.3, + "performance": 0.0, + "camera": 8.8, + "battery": 6.0, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.243054", + "updated_at": "2026-06-19T00:43:44.243054" +} diff --git a/site/public/v1/smartphones/enjoy-9s-standard-edition-dual-sim-td-lte-cn-128gb-pot-tl00a/score/index.json b/site/public/v1/smartphones/enjoy-9s-standard-edition-dual-sim-td-lte-cn-128gb-pot-tl00a/score/index.json new file mode 100644 index 00000000000..584fb3174b2 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-9s-standard-edition-dual-sim-td-lte-cn-128gb-pot-tl00a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.3, + "performance": 0.0, + "camera": 8.8, + "battery": 6.0, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/enjoy-9s-standard-edition-dual-sim-td-lte-cn-64gb-pot-al00a/index.json b/site/public/v1/smartphones/enjoy-9s-standard-edition-dual-sim-td-lte-cn-64gb-pot-al00a/index.json new file mode 100644 index 00000000000..e48101b4ae2 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-9s-standard-edition-dual-sim-td-lte-cn-64gb-pot-al00a/index.json @@ -0,0 +1,76 @@ +{ + "id": 975, + "slug": "enjoy-9s-standard-edition-dual-sim-td-lte-cn-64gb-pot-al00a", + "name": "Enjoy 9S Standard Edition Dual SIM TD-LTE CN 64GB POT-AL00a", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.3, + "performance": 0.0, + "camera": 8.8, + "battery": 6.0, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.243054", + "updated_at": "2026-06-19T00:43:44.243054" +} diff --git a/site/public/v1/smartphones/enjoy-9s-standard-edition-dual-sim-td-lte-cn-64gb-pot-al00a/score/index.json b/site/public/v1/smartphones/enjoy-9s-standard-edition-dual-sim-td-lte-cn-64gb-pot-al00a/score/index.json new file mode 100644 index 00000000000..584fb3174b2 --- /dev/null +++ b/site/public/v1/smartphones/enjoy-9s-standard-edition-dual-sim-td-lte-cn-64gb-pot-al00a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.3, + "performance": 0.0, + "camera": 8.8, + "battery": 6.0, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/exodus-1-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/exodus-1-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..51e3430d337 --- /dev/null +++ b/site/public/v1/smartphones/exodus-1-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 766, + "slug": "exodus-1-global-dual-sim-td-lte", + "name": "Exodus 1 Global Dual SIM TD-LTE", + "brand": { + "id": 92, + "slug": "htc", + "name": "HTC", + "country": "TW", + "url": "/v1/brands/htc" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-12-08", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1440x2880", + "type": "Color PVA TFT LCD display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 1.5, + "camera": 5.1, + "battery": 7.5, + "display": 58.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.213932", + "updated_at": "2026-06-19T00:43:44.213932" +} diff --git a/site/public/v1/smartphones/exodus-1-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/exodus-1-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..e1552384abd --- /dev/null +++ b/site/public/v1/smartphones/exodus-1-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 1.5, + "camera": 5.1, + "battery": 7.5, + "display": 58.7, + "value": null +} diff --git a/site/public/v1/smartphones/exodus-1s-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/exodus-1s-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..8ec2754bba2 --- /dev/null +++ b/site/public/v1/smartphones/exodus-1s-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 780, + "slug": "exodus-1s-global-dual-sim-td-lte", + "name": "Exodus 1s Global Dual SIM TD-LTE", + "brand": { + "id": 92, + "slug": "htc", + "name": "HTC", + "country": "TW", + "url": "/v1/brands/htc" + }, + "soc": { + "id": 113, + "slug": "snapdragon-435", + "name": "Snapdragon 435", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-435" + }, + "release_date": "2019-12-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3075, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 5.3, + "battery": 1.1, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.215933", + "updated_at": "2026-06-19T00:43:44.215933" +} diff --git a/site/public/v1/smartphones/exodus-1s-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/exodus-1s-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..6664c6e47ab --- /dev/null +++ b/site/public/v1/smartphones/exodus-1s-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 5.3, + "battery": 1.1, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/f11-dual-sim-td-lte-in-id-v2-128gb-cph1911/index.json b/site/public/v1/smartphones/f11-dual-sim-td-lte-in-id-v2-128gb-cph1911/index.json new file mode 100644 index 00000000000..07c26e9c197 --- /dev/null +++ b/site/public/v1/smartphones/f11-dual-sim-td-lte-in-id-v2-128gb-cph1911/index.json @@ -0,0 +1,76 @@ +{ + "id": 2862, + "slug": "f11-dual-sim-td-lte-in-id-v2-128gb-cph1911", + "name": "F11 Dual SIM TD-LTE IN ID V2 128GB CPH1911", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-03-18", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color TN-TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4020, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 0.0, + "camera": 16.5, + "battery": 16.3, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.514917", + "updated_at": "2026-06-19T00:43:44.514917" +} diff --git a/site/public/v1/smartphones/f11-dual-sim-td-lte-in-id-v2-128gb-cph1911/score/index.json b/site/public/v1/smartphones/f11-dual-sim-td-lte-in-id-v2-128gb-cph1911/score/index.json new file mode 100644 index 00000000000..85bed1bd28c --- /dev/null +++ b/site/public/v1/smartphones/f11-dual-sim-td-lte-in-id-v2-128gb-cph1911/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 0.0, + "camera": 16.5, + "battery": 16.3, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/f11-dual-sim-td-lte-in-id-v2-64gb-cph1911/index.json b/site/public/v1/smartphones/f11-dual-sim-td-lte-in-id-v2-64gb-cph1911/index.json new file mode 100644 index 00000000000..3de72434098 --- /dev/null +++ b/site/public/v1/smartphones/f11-dual-sim-td-lte-in-id-v2-64gb-cph1911/index.json @@ -0,0 +1,76 @@ +{ + "id": 2863, + "slug": "f11-dual-sim-td-lte-in-id-v2-64gb-cph1911", + "name": "F11 Dual SIM TD-LTE IN ID V2 64GB CPH1911", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-05-18", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color TN-TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4020, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 0.0, + "camera": 16.5, + "battery": 16.3, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.515923", + "updated_at": "2026-06-19T00:43:44.515923" +} diff --git a/site/public/v1/smartphones/f11-dual-sim-td-lte-in-id-v2-64gb-cph1911/score/index.json b/site/public/v1/smartphones/f11-dual-sim-td-lte-in-id-v2-64gb-cph1911/score/index.json new file mode 100644 index 00000000000..85bed1bd28c --- /dev/null +++ b/site/public/v1/smartphones/f11-dual-sim-td-lte-in-id-v2-64gb-cph1911/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 0.0, + "camera": 16.5, + "battery": 16.3, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/f11-premium-edition-dual-sim-td-lte-ph-v1-64gb-cph1911-cph1913/index.json b/site/public/v1/smartphones/f11-premium-edition-dual-sim-td-lte-ph-v1-64gb-cph1911-cph1913/index.json new file mode 100644 index 00000000000..97d8df19299 --- /dev/null +++ b/site/public/v1/smartphones/f11-premium-edition-dual-sim-td-lte-ph-v1-64gb-cph1911-cph1913/index.json @@ -0,0 +1,76 @@ +{ + "id": 2864, + "slug": "f11-premium-edition-dual-sim-td-lte-ph-v1-64gb-cph1911-cph1913", + "name": "F11 Premium Edition Dual SIM TD-LTE PH V1 64GB CPH1911 / CPH1913", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color TN-TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4020, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 16.5, + "battery": 16.3, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.515923", + "updated_at": "2026-06-19T00:43:44.515923" +} diff --git a/site/public/v1/smartphones/f11-premium-edition-dual-sim-td-lte-ph-v1-64gb-cph1911-cph1913/score/index.json b/site/public/v1/smartphones/f11-premium-edition-dual-sim-td-lte-ph-v1-64gb-cph1911-cph1913/score/index.json new file mode 100644 index 00000000000..35998f87cc4 --- /dev/null +++ b/site/public/v1/smartphones/f11-premium-edition-dual-sim-td-lte-ph-v1-64gb-cph1911-cph1913/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 16.5, + "battery": 16.3, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/f11-premium-edition-dual-sim-td-lte-th-bd-mn-v3-128gb-cph1911-cph1913/index.json b/site/public/v1/smartphones/f11-premium-edition-dual-sim-td-lte-th-bd-mn-v3-128gb-cph1911-cph1913/index.json new file mode 100644 index 00000000000..4506a6e5f83 --- /dev/null +++ b/site/public/v1/smartphones/f11-premium-edition-dual-sim-td-lte-th-bd-mn-v3-128gb-cph1911-cph1913/index.json @@ -0,0 +1,76 @@ +{ + "id": 2865, + "slug": "f11-premium-edition-dual-sim-td-lte-th-bd-mn-v3-128gb-cph1911-cph1913", + "name": "F11 Premium Edition Dual SIM TD-LTE TH BD MN V3 128GB CPH1911 / CPH1913", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-03-18", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color TN-TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4020, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 16.5, + "battery": 16.3, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.515923", + "updated_at": "2026-06-19T00:43:44.515923" +} diff --git a/site/public/v1/smartphones/f11-premium-edition-dual-sim-td-lte-th-bd-mn-v3-128gb-cph1911-cph1913/score/index.json b/site/public/v1/smartphones/f11-premium-edition-dual-sim-td-lte-th-bd-mn-v3-128gb-cph1911-cph1913/score/index.json new file mode 100644 index 00000000000..35998f87cc4 --- /dev/null +++ b/site/public/v1/smartphones/f11-premium-edition-dual-sim-td-lte-th-bd-mn-v3-128gb-cph1911-cph1913/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 16.5, + "battery": 16.3, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/f11-pro-avengers-limited-edition-dual-sim-td-lte-in-id-mn-v3-128gb-cph1969/index.json b/site/public/v1/smartphones/f11-pro-avengers-limited-edition-dual-sim-td-lte-in-id-mn-v3-128gb-cph1969/index.json new file mode 100644 index 00000000000..0fae3d270f1 --- /dev/null +++ b/site/public/v1/smartphones/f11-pro-avengers-limited-edition-dual-sim-td-lte-in-id-mn-v3-128gb-cph1969/index.json @@ -0,0 +1,76 @@ +{ + "id": 2867, + "slug": "f11-pro-avengers-limited-edition-dual-sim-td-lte-in-id-mn-v3-128gb-cph1969", + "name": "F11 Pro Avengers Limited Edition Dual SIM TD-LTE IN ID MN V3 128GB CPH1969", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-05-06", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.9, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.516923", + "updated_at": "2026-06-19T00:43:44.516923" +} diff --git a/site/public/v1/smartphones/f11-pro-avengers-limited-edition-dual-sim-td-lte-in-id-mn-v3-128gb-cph1969/score/index.json b/site/public/v1/smartphones/f11-pro-avengers-limited-edition-dual-sim-td-lte-in-id-mn-v3-128gb-cph1969/score/index.json new file mode 100644 index 00000000000..6dd002db676 --- /dev/null +++ b/site/public/v1/smartphones/f11-pro-avengers-limited-edition-dual-sim-td-lte-in-id-mn-v3-128gb-cph1969/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.9, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/f11-pro-avengers-limited-edition-dual-sim-td-lte-ph-v1-128gb-cph1969/index.json b/site/public/v1/smartphones/f11-pro-avengers-limited-edition-dual-sim-td-lte-ph-v1-128gb-cph1969/index.json new file mode 100644 index 00000000000..7e45051b5e2 --- /dev/null +++ b/site/public/v1/smartphones/f11-pro-avengers-limited-edition-dual-sim-td-lte-ph-v1-128gb-cph1969/index.json @@ -0,0 +1,76 @@ +{ + "id": 2868, + "slug": "f11-pro-avengers-limited-edition-dual-sim-td-lte-ph-v1-128gb-cph1969", + "name": "F11 Pro Avengers Limited Edition Dual SIM TD-LTE PH V1 128GB CPH1969", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-05-06", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.9, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.516923", + "updated_at": "2026-06-19T00:43:44.516923" +} diff --git a/site/public/v1/smartphones/f11-pro-avengers-limited-edition-dual-sim-td-lte-ph-v1-128gb-cph1969/score/index.json b/site/public/v1/smartphones/f11-pro-avengers-limited-edition-dual-sim-td-lte-ph-v1-128gb-cph1969/score/index.json new file mode 100644 index 00000000000..6dd002db676 --- /dev/null +++ b/site/public/v1/smartphones/f11-pro-avengers-limited-edition-dual-sim-td-lte-ph-v1-128gb-cph1969/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.9, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/f11-pro-dual-sim-td-lte-in-id-bd-th-mn-v3-128gb-cph1969/index.json b/site/public/v1/smartphones/f11-pro-dual-sim-td-lte-in-id-bd-th-mn-v3-128gb-cph1969/index.json new file mode 100644 index 00000000000..2bce33b8bea --- /dev/null +++ b/site/public/v1/smartphones/f11-pro-dual-sim-td-lte-in-id-bd-th-mn-v3-128gb-cph1969/index.json @@ -0,0 +1,76 @@ +{ + "id": 2870, + "slug": "f11-pro-dual-sim-td-lte-in-id-bd-th-mn-v3-128gb-cph1969", + "name": "F11 Pro Dual SIM TD-LTE IN ID BD TH MN V3 128GB CPH1969", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-03-14", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.9, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.516923", + "updated_at": "2026-06-19T00:43:44.516923" +} diff --git a/site/public/v1/smartphones/f11-pro-dual-sim-td-lte-in-id-bd-th-mn-v3-128gb-cph1969/score/index.json b/site/public/v1/smartphones/f11-pro-dual-sim-td-lte-in-id-bd-th-mn-v3-128gb-cph1969/score/index.json new file mode 100644 index 00000000000..6dd002db676 --- /dev/null +++ b/site/public/v1/smartphones/f11-pro-dual-sim-td-lte-in-id-bd-th-mn-v3-128gb-cph1969/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.9, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/f11-pro-dual-sim-td-lte-in-id-bd-th-mn-v3-64gb-cph1969/index.json b/site/public/v1/smartphones/f11-pro-dual-sim-td-lte-in-id-bd-th-mn-v3-64gb-cph1969/index.json new file mode 100644 index 00000000000..28c44acb4cd --- /dev/null +++ b/site/public/v1/smartphones/f11-pro-dual-sim-td-lte-in-id-bd-th-mn-v3-64gb-cph1969/index.json @@ -0,0 +1,76 @@ +{ + "id": 2871, + "slug": "f11-pro-dual-sim-td-lte-in-id-bd-th-mn-v3-64gb-cph1969", + "name": "F11 Pro Dual SIM TD-LTE IN ID BD TH MN V3 64GB CPH1969", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-03-14", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.9, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.516923", + "updated_at": "2026-06-19T00:43:44.516923" +} diff --git a/site/public/v1/smartphones/f11-pro-dual-sim-td-lte-in-id-bd-th-mn-v3-64gb-cph1969/score/index.json b/site/public/v1/smartphones/f11-pro-dual-sim-td-lte-in-id-bd-th-mn-v3-64gb-cph1969/score/index.json new file mode 100644 index 00000000000..6dd002db676 --- /dev/null +++ b/site/public/v1/smartphones/f11-pro-dual-sim-td-lte-in-id-bd-th-mn-v3-64gb-cph1969/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.9, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/f11-pro-dual-sim-td-lte-kh-v2-128gb-cph1969/index.json b/site/public/v1/smartphones/f11-pro-dual-sim-td-lte-kh-v2-128gb-cph1969/index.json new file mode 100644 index 00000000000..ddb4845c4ea --- /dev/null +++ b/site/public/v1/smartphones/f11-pro-dual-sim-td-lte-kh-v2-128gb-cph1969/index.json @@ -0,0 +1,76 @@ +{ + "id": 2872, + "slug": "f11-pro-dual-sim-td-lte-kh-v2-128gb-cph1969", + "name": "F11 Pro Dual SIM TD-LTE KH V2 128GB CPH1969", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.9, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.516923", + "updated_at": "2026-06-19T00:43:44.516923" +} diff --git a/site/public/v1/smartphones/f11-pro-dual-sim-td-lte-kh-v2-128gb-cph1969/score/index.json b/site/public/v1/smartphones/f11-pro-dual-sim-td-lte-kh-v2-128gb-cph1969/score/index.json new file mode 100644 index 00000000000..6dd002db676 --- /dev/null +++ b/site/public/v1/smartphones/f11-pro-dual-sim-td-lte-kh-v2-128gb-cph1969/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.9, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/f11-pro-dual-sim-td-lte-kh-v2-64gb-cph1969/index.json b/site/public/v1/smartphones/f11-pro-dual-sim-td-lte-kh-v2-64gb-cph1969/index.json new file mode 100644 index 00000000000..a2fad057676 --- /dev/null +++ b/site/public/v1/smartphones/f11-pro-dual-sim-td-lte-kh-v2-64gb-cph1969/index.json @@ -0,0 +1,76 @@ +{ + "id": 2873, + "slug": "f11-pro-dual-sim-td-lte-kh-v2-64gb-cph1969", + "name": "F11 Pro Dual SIM TD-LTE KH V2 64GB CPH1969", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.9, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.517922", + "updated_at": "2026-06-19T00:43:44.517922" +} diff --git a/site/public/v1/smartphones/f11-pro-dual-sim-td-lte-kh-v2-64gb-cph1969/score/index.json b/site/public/v1/smartphones/f11-pro-dual-sim-td-lte-kh-v2-64gb-cph1969/score/index.json new file mode 100644 index 00000000000..6dd002db676 --- /dev/null +++ b/site/public/v1/smartphones/f11-pro-dual-sim-td-lte-kh-v2-64gb-cph1969/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.9, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/f11-pro-dual-sim-td-lte-ph-v1-64gb-cph1969/index.json b/site/public/v1/smartphones/f11-pro-dual-sim-td-lte-ph-v1-64gb-cph1969/index.json new file mode 100644 index 00000000000..1a6f83b8a02 --- /dev/null +++ b/site/public/v1/smartphones/f11-pro-dual-sim-td-lte-ph-v1-64gb-cph1969/index.json @@ -0,0 +1,76 @@ +{ + "id": 2874, + "slug": "f11-pro-dual-sim-td-lte-ph-v1-64gb-cph1969", + "name": "F11 Pro Dual SIM TD-LTE PH V1 64GB CPH1969", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-03-14", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.9, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.517922", + "updated_at": "2026-06-19T00:43:44.517922" +} diff --git a/site/public/v1/smartphones/f11-pro-dual-sim-td-lte-ph-v1-64gb-cph1969/score/index.json b/site/public/v1/smartphones/f11-pro-dual-sim-td-lte-ph-v1-64gb-cph1969/score/index.json new file mode 100644 index 00000000000..6dd002db676 --- /dev/null +++ b/site/public/v1/smartphones/f11-pro-dual-sim-td-lte-ph-v1-64gb-cph1969/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.9, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/f11-standard-edition-dual-sim-td-lte-th-bd-mn-v3-64gb-cph1911/index.json b/site/public/v1/smartphones/f11-standard-edition-dual-sim-td-lte-th-bd-mn-v3-64gb-cph1911/index.json new file mode 100644 index 00000000000..2662a58f211 --- /dev/null +++ b/site/public/v1/smartphones/f11-standard-edition-dual-sim-td-lte-th-bd-mn-v3-64gb-cph1911/index.json @@ -0,0 +1,76 @@ +{ + "id": 2876, + "slug": "f11-standard-edition-dual-sim-td-lte-th-bd-mn-v3-64gb-cph1911", + "name": "F11 Standard Edition Dual SIM TD-LTE TH BD MN V3 64GB CPH1911", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color TN-TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4020, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 0.0, + "camera": 16.5, + "battery": 16.3, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.517922", + "updated_at": "2026-06-19T00:43:44.517922" +} diff --git a/site/public/v1/smartphones/f11-standard-edition-dual-sim-td-lte-th-bd-mn-v3-64gb-cph1911/score/index.json b/site/public/v1/smartphones/f11-standard-edition-dual-sim-td-lte-th-bd-mn-v3-64gb-cph1911/score/index.json new file mode 100644 index 00000000000..85bed1bd28c --- /dev/null +++ b/site/public/v1/smartphones/f11-standard-edition-dual-sim-td-lte-th-bd-mn-v3-64gb-cph1911/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 0.0, + "camera": 16.5, + "battery": 16.3, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/f15-2020-dual-sim-td-lte-in-128gb-cph2001/index.json b/site/public/v1/smartphones/f15-2020-dual-sim-td-lte-in-128gb-cph2001/index.json new file mode 100644 index 00000000000..89447bf5853 --- /dev/null +++ b/site/public/v1/smartphones/f15-2020-dual-sim-td-lte-in-128gb-cph2001/index.json @@ -0,0 +1,76 @@ +{ + "id": 3098, + "slug": "f15-2020-dual-sim-td-lte-in-128gb-cph2001", + "name": "F15 2020 Dual SIM TD-LTE IN 128GB CPH2001", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2020-01-24", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4025, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 3.0, + "camera": 16.5, + "battery": 18.3, + "display": 46.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.550112", + "updated_at": "2026-06-19T00:43:44.550112" +} diff --git a/site/public/v1/smartphones/f15-2020-dual-sim-td-lte-in-128gb-cph2001/score/index.json b/site/public/v1/smartphones/f15-2020-dual-sim-td-lte-in-128gb-cph2001/score/index.json new file mode 100644 index 00000000000..0b41740f167 --- /dev/null +++ b/site/public/v1/smartphones/f15-2020-dual-sim-td-lte-in-128gb-cph2001/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 3.0, + "camera": 16.5, + "battery": 18.3, + "display": 46.1, + "value": null +} diff --git a/site/public/v1/smartphones/f17-2020-premium-edition-dual-sim-td-lte-v1-in-128gb-cph2095/index.json b/site/public/v1/smartphones/f17-2020-premium-edition-dual-sim-td-lte-v1-in-128gb-cph2095/index.json new file mode 100644 index 00000000000..19e1edee6cd --- /dev/null +++ b/site/public/v1/smartphones/f17-2020-premium-edition-dual-sim-td-lte-v1-in-128gb-cph2095/index.json @@ -0,0 +1,77 @@ +{ + "id": 3100, + "slug": "f17-2020-premium-edition-dual-sim-td-lte-v1-in-128gb-cph2095", + "name": "F17 2020 Premium Edition Dual SIM TD-LTE V1 IN 128GB CPH2095", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2020-09-09", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 4015, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": 3.0, + "camera": 6.3, + "battery": 15.8, + "display": 28.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.550112", + "updated_at": "2026-06-19T00:43:44.550112" +} diff --git a/site/public/v1/smartphones/f17-2020-premium-edition-dual-sim-td-lte-v1-in-128gb-cph2095/score/index.json b/site/public/v1/smartphones/f17-2020-premium-edition-dual-sim-td-lte-v1-in-128gb-cph2095/score/index.json new file mode 100644 index 00000000000..c9b5c4cc2c1 --- /dev/null +++ b/site/public/v1/smartphones/f17-2020-premium-edition-dual-sim-td-lte-v1-in-128gb-cph2095/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": 3.0, + "camera": 6.3, + "battery": 15.8, + "display": 28.4, + "value": null +} diff --git a/site/public/v1/smartphones/f17-2020-standard-edition-dual-sim-td-lte-v1-in-128gb-cph2095/index.json b/site/public/v1/smartphones/f17-2020-standard-edition-dual-sim-td-lte-v1-in-128gb-cph2095/index.json new file mode 100644 index 00000000000..80b97f5436e --- /dev/null +++ b/site/public/v1/smartphones/f17-2020-standard-edition-dual-sim-td-lte-v1-in-128gb-cph2095/index.json @@ -0,0 +1,77 @@ +{ + "id": 3101, + "slug": "f17-2020-standard-edition-dual-sim-td-lte-v1-in-128gb-cph2095", + "name": "F17 2020 Standard Edition Dual SIM TD-LTE V1 IN 128GB CPH2095", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2020-09-09", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 4015, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.0, + "performance": 1.5, + "camera": 6.3, + "battery": 15.8, + "display": 28.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.550112", + "updated_at": "2026-06-19T00:43:44.550112" +} diff --git a/site/public/v1/smartphones/f17-2020-standard-edition-dual-sim-td-lte-v1-in-128gb-cph2095/score/index.json b/site/public/v1/smartphones/f17-2020-standard-edition-dual-sim-td-lte-v1-in-128gb-cph2095/score/index.json new file mode 100644 index 00000000000..8133aae2fc6 --- /dev/null +++ b/site/public/v1/smartphones/f17-2020-standard-edition-dual-sim-td-lte-v1-in-128gb-cph2095/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.0, + "performance": 1.5, + "camera": 6.3, + "battery": 15.8, + "display": 28.4, + "value": null +} diff --git a/site/public/v1/smartphones/f17-pro-2020-dual-sim-td-lte-in-v1-128gb-cph2119/index.json b/site/public/v1/smartphones/f17-pro-2020-dual-sim-td-lte-in-v1-128gb-cph2119/index.json new file mode 100644 index 00000000000..395b0666516 --- /dev/null +++ b/site/public/v1/smartphones/f17-pro-2020-dual-sim-td-lte-in-v1-128gb-cph2119/index.json @@ -0,0 +1,77 @@ +{ + "id": 3102, + "slug": "f17-pro-2020-dual-sim-td-lte-in-v1-128gb-cph2119", + "name": "F17 Pro 2020 Dual SIM TD-LTE IN V1 128GB CPH2119", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 65, + "slug": "helio-p95", + "name": "Helio P95", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GM9446", + "url": "/v1/socs/helio-p95" + }, + "release_date": "2020-12-07", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4015, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 3.0, + "camera": 16.5, + "battery": 18.1, + "display": 28.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.550112", + "updated_at": "2026-06-19T00:43:44.550112" +} diff --git a/site/public/v1/smartphones/f17-pro-2020-dual-sim-td-lte-in-v1-128gb-cph2119/score/index.json b/site/public/v1/smartphones/f17-pro-2020-dual-sim-td-lte-in-v1-128gb-cph2119/score/index.json new file mode 100644 index 00000000000..9a7b5c95241 --- /dev/null +++ b/site/public/v1/smartphones/f17-pro-2020-dual-sim-td-lte-in-v1-128gb-cph2119/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 3.0, + "camera": 16.5, + "battery": 18.1, + "display": 28.4, + "value": null +} diff --git a/site/public/v1/smartphones/f19-2021-dual-sim-td-lte-v1-in-id-128gb-cph2219-a74/index.json b/site/public/v1/smartphones/f19-2021-dual-sim-td-lte-v1-in-id-128gb-cph2219-a74/index.json new file mode 100644 index 00000000000..b06d41d4665 --- /dev/null +++ b/site/public/v1/smartphones/f19-2021-dual-sim-td-lte-v1-in-id-128gb-cph2219-a74/index.json @@ -0,0 +1,77 @@ +{ + "id": 3316, + "slug": "f19-2021-dual-sim-td-lte-v1-in-id-128gb-cph2219-a74", + "name": "F19 2021 Dual SIM TD-LTE V1 IN ID 128GB CPH2219 / A74", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-04-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 1.5, + "camera": 16.5, + "battery": 33.4, + "display": 28.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.579637", + "updated_at": "2026-06-19T00:43:44.579637" +} diff --git a/site/public/v1/smartphones/f19-2021-dual-sim-td-lte-v1-in-id-128gb-cph2219-a74/score/index.json b/site/public/v1/smartphones/f19-2021-dual-sim-td-lte-v1-in-id-128gb-cph2219-a74/score/index.json new file mode 100644 index 00000000000..b3f62721524 --- /dev/null +++ b/site/public/v1/smartphones/f19-2021-dual-sim-td-lte-v1-in-id-128gb-cph2219-a74/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 1.5, + "camera": 16.5, + "battery": 33.4, + "display": 28.4, + "value": null +} diff --git a/site/public/v1/smartphones/f19-pro-2021-dual-sim-td-lte-in-v1-128gb-cph2285/index.json b/site/public/v1/smartphones/f19-pro-2021-dual-sim-td-lte-in-v1-128gb-cph2285/index.json new file mode 100644 index 00000000000..e7a9a3cbec2 --- /dev/null +++ b/site/public/v1/smartphones/f19-pro-2021-dual-sim-td-lte-in-v1-128gb-cph2285/index.json @@ -0,0 +1,77 @@ +{ + "id": 3317, + "slug": "f19-pro-2021-dual-sim-td-lte-in-v1-128gb-cph2285", + "name": "F19 Pro 2021 Dual SIM TD-LTE IN V1 128GB CPH2285", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 65, + "slug": "helio-p95", + "name": "Helio P95", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GM9446", + "url": "/v1/socs/helio-p95" + }, + "release_date": "2021-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 4310, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 3.0, + "camera": 16.5, + "battery": 22.5, + "display": 28.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.580636", + "updated_at": "2026-06-19T00:43:44.580636" +} diff --git a/site/public/v1/smartphones/f19-pro-2021-dual-sim-td-lte-in-v1-128gb-cph2285/score/index.json b/site/public/v1/smartphones/f19-pro-2021-dual-sim-td-lte-in-v1-128gb-cph2285/score/index.json new file mode 100644 index 00000000000..49b86e4f49f --- /dev/null +++ b/site/public/v1/smartphones/f19-pro-2021-dual-sim-td-lte-in-v1-128gb-cph2285/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 3.0, + "camera": 16.5, + "battery": 22.5, + "display": 28.4, + "value": null +} diff --git a/site/public/v1/smartphones/f19-pro-2021-dual-sim-td-lte-in-v1-256gb-cph2285/index.json b/site/public/v1/smartphones/f19-pro-2021-dual-sim-td-lte-in-v1-256gb-cph2285/index.json new file mode 100644 index 00000000000..1e25e0e2a35 --- /dev/null +++ b/site/public/v1/smartphones/f19-pro-2021-dual-sim-td-lte-in-v1-256gb-cph2285/index.json @@ -0,0 +1,77 @@ +{ + "id": 3318, + "slug": "f19-pro-2021-dual-sim-td-lte-in-v1-256gb-cph2285", + "name": "F19 Pro 2021 Dual SIM TD-LTE IN V1 256GB CPH2285", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 65, + "slug": "helio-p95", + "name": "Helio P95", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GM9446", + "url": "/v1/socs/helio-p95" + }, + "release_date": "2021-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 4310, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 3.0, + "camera": 16.5, + "battery": 22.5, + "display": 28.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.580636", + "updated_at": "2026-06-19T00:43:44.580636" +} diff --git a/site/public/v1/smartphones/f19-pro-2021-dual-sim-td-lte-in-v1-256gb-cph2285/score/index.json b/site/public/v1/smartphones/f19-pro-2021-dual-sim-td-lte-in-v1-256gb-cph2285/score/index.json new file mode 100644 index 00000000000..49b86e4f49f --- /dev/null +++ b/site/public/v1/smartphones/f19-pro-2021-dual-sim-td-lte-in-v1-256gb-cph2285/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 3.0, + "camera": 16.5, + "battery": 22.5, + "display": 28.4, + "value": null +} diff --git a/site/public/v1/smartphones/f19-pro-5g-2021-dual-sim-td-lte-in-v1-128gb-cph2213/index.json b/site/public/v1/smartphones/f19-pro-5g-2021-dual-sim-td-lte-in-v1-128gb-cph2213/index.json new file mode 100644 index 00000000000..29278930401 --- /dev/null +++ b/site/public/v1/smartphones/f19-pro-5g-2021-dual-sim-td-lte-in-v1-128gb-cph2213/index.json @@ -0,0 +1,77 @@ +{ + "id": 3320, + "slug": "f19-pro-5g-2021-dual-sim-td-lte-in-v1-128gb-cph2213", + "name": "F19 Pro+ 5G 2021 Dual SIM TD-LTE IN V1 128GB CPH2213", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2021-03-06", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 4310, + "charging_wired_w": 50.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 3.0, + "camera": 16.5, + "battery": 26.3, + "display": 28.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.580636", + "updated_at": "2026-06-19T00:43:44.580636" +} diff --git a/site/public/v1/smartphones/f19-pro-5g-2021-dual-sim-td-lte-in-v1-128gb-cph2213/score/index.json b/site/public/v1/smartphones/f19-pro-5g-2021-dual-sim-td-lte-in-v1-128gb-cph2213/score/index.json new file mode 100644 index 00000000000..9f09d1e3bfd --- /dev/null +++ b/site/public/v1/smartphones/f19-pro-5g-2021-dual-sim-td-lte-in-v1-128gb-cph2213/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 3.0, + "camera": 16.5, + "battery": 26.3, + "display": 28.4, + "value": null +} diff --git a/site/public/v1/smartphones/f19s-2021-dual-sim-td-lte-v1-in-128gb-cph2223/index.json b/site/public/v1/smartphones/f19s-2021-dual-sim-td-lte-v1-in-128gb-cph2223/index.json new file mode 100644 index 00000000000..8d6e804ffb9 --- /dev/null +++ b/site/public/v1/smartphones/f19s-2021-dual-sim-td-lte-v1-in-128gb-cph2223/index.json @@ -0,0 +1,77 @@ +{ + "id": 3322, + "slug": "f19s-2021-dual-sim-td-lte-v1-in-128gb-cph2223", + "name": "F19s 2021 Dual SIM TD-LTE V1 IN 128GB CPH2223", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-09-28", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 1.5, + "camera": 16.5, + "battery": 33.4, + "display": 28.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.580636", + "updated_at": "2026-06-19T00:43:44.580636" +} diff --git a/site/public/v1/smartphones/f19s-2021-dual-sim-td-lte-v1-in-128gb-cph2223/score/index.json b/site/public/v1/smartphones/f19s-2021-dual-sim-td-lte-v1-in-128gb-cph2223/score/index.json new file mode 100644 index 00000000000..b3f62721524 --- /dev/null +++ b/site/public/v1/smartphones/f19s-2021-dual-sim-td-lte-v1-in-128gb-cph2223/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 1.5, + "camera": 16.5, + "battery": 33.4, + "display": 28.4, + "value": null +} diff --git a/site/public/v1/smartphones/f40-premium-edition-td-lte-cn-128gb-hlte227t/index.json b/site/public/v1/smartphones/f40-premium-edition-td-lte-cn-128gb-hlte227t/index.json new file mode 100644 index 00000000000..560fa3a4e16 --- /dev/null +++ b/site/public/v1/smartphones/f40-premium-edition-td-lte-cn-128gb-hlte227t/index.json @@ -0,0 +1,76 @@ +{ + "id": 628, + "slug": "f40-premium-edition-td-lte-cn-128gb-hlte227t", + "name": "F40 Premium Edition TD-LTE CN 128GB HLTE227T", + "brand": { + "id": 14, + "slug": "hisense", + "name": "Hisense", + "country": "CN", + "url": "/v1/brands/hisense" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": 1.5, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.192938", + "updated_at": "2026-06-19T00:43:44.192938" +} diff --git a/site/public/v1/smartphones/f40-premium-edition-td-lte-cn-128gb-hlte227t/score/index.json b/site/public/v1/smartphones/f40-premium-edition-td-lte-cn-128gb-hlte227t/score/index.json new file mode 100644 index 00000000000..f43b2264da9 --- /dev/null +++ b/site/public/v1/smartphones/f40-premium-edition-td-lte-cn-128gb-hlte227t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": 1.5, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/f40-premium-edition-td-lte-cn-256gb-hlte227t/index.json b/site/public/v1/smartphones/f40-premium-edition-td-lte-cn-256gb-hlte227t/index.json new file mode 100644 index 00000000000..2b3f94c9106 --- /dev/null +++ b/site/public/v1/smartphones/f40-premium-edition-td-lte-cn-256gb-hlte227t/index.json @@ -0,0 +1,76 @@ +{ + "id": 629, + "slug": "f40-premium-edition-td-lte-cn-256gb-hlte227t", + "name": "F40 Premium Edition TD-LTE CN 256GB HLTE227T", + "brand": { + "id": 14, + "slug": "hisense", + "name": "Hisense", + "country": "CN", + "url": "/v1/brands/hisense" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": 1.5, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.192938", + "updated_at": "2026-06-19T00:43:44.192938" +} diff --git a/site/public/v1/smartphones/f40-premium-edition-td-lte-cn-256gb-hlte227t/score/index.json b/site/public/v1/smartphones/f40-premium-edition-td-lte-cn-256gb-hlte227t/score/index.json new file mode 100644 index 00000000000..f43b2264da9 --- /dev/null +++ b/site/public/v1/smartphones/f40-premium-edition-td-lte-cn-256gb-hlte227t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": 1.5, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/f40-standard-edition-td-lte-cn-128gb-hlte227t/index.json b/site/public/v1/smartphones/f40-standard-edition-td-lte-cn-128gb-hlte227t/index.json new file mode 100644 index 00000000000..fac466fa0b3 --- /dev/null +++ b/site/public/v1/smartphones/f40-standard-edition-td-lte-cn-128gb-hlte227t/index.json @@ -0,0 +1,76 @@ +{ + "id": 630, + "slug": "f40-standard-edition-td-lte-cn-128gb-hlte227t", + "name": "F40 Standard Edition TD-LTE CN 128GB HLTE227T", + "brand": { + "id": 14, + "slug": "hisense", + "name": "Hisense", + "country": "CN", + "url": "/v1/brands/hisense" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.192938", + "updated_at": "2026-06-19T00:43:44.192938" +} diff --git a/site/public/v1/smartphones/f40-standard-edition-td-lte-cn-128gb-hlte227t/score/index.json b/site/public/v1/smartphones/f40-standard-edition-td-lte-cn-128gb-hlte227t/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/f40-standard-edition-td-lte-cn-128gb-hlte227t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/f5-dual-sim-td-lte-in-th-version-1-32gb-cph1727/index.json b/site/public/v1/smartphones/f5-dual-sim-td-lte-in-th-version-1-32gb-cph1727/index.json new file mode 100644 index 00000000000..76b4677bb19 --- /dev/null +++ b/site/public/v1/smartphones/f5-dual-sim-td-lte-in-th-version-1-32gb-cph1727/index.json @@ -0,0 +1,76 @@ +{ + "id": 2717, + "slug": "f5-dual-sim-td-lte-in-th-version-1-32gb-cph1727", + "name": "F5 Dual SIM TD-LTE IN TH Version 1 32GB CPH1727", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2017-11-08", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color ASV TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 152.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 6.3, + "battery": 3.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.495308", + "updated_at": "2026-06-19T00:43:44.495308" +} diff --git a/site/public/v1/smartphones/f5-dual-sim-td-lte-in-th-version-1-32gb-cph1727/score/index.json b/site/public/v1/smartphones/f5-dual-sim-td-lte-in-th-version-1-32gb-cph1727/score/index.json new file mode 100644 index 00000000000..36c1cb3b80e --- /dev/null +++ b/site/public/v1/smartphones/f5-dual-sim-td-lte-in-th-version-1-32gb-cph1727/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 6.3, + "battery": 3.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/f7-diamond-black-edition-dual-sim-td-lte-in-id-th-pk-version-1-128gb-cph1821/index.json b/site/public/v1/smartphones/f7-diamond-black-edition-dual-sim-td-lte-in-id-th-pk-version-1-128gb-cph1821/index.json new file mode 100644 index 00000000000..ef272d62d0d --- /dev/null +++ b/site/public/v1/smartphones/f7-diamond-black-edition-dual-sim-td-lte-in-id-th-pk-version-1-128gb-cph1821/index.json @@ -0,0 +1,76 @@ +{ + "id": 2750, + "slug": "f7-diamond-black-edition-dual-sim-td-lte-in-id-th-pk-version-1-128gb-cph1821", + "name": "F7 Diamond Black Edition Dual SIM TD-LTE IN ID TH PK Version 1 128GB CPH1821", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-04-21", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.23, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 158.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 1.5, + "camera": 6.3, + "battery": 6.0, + "display": 45.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.500308", + "updated_at": "2026-06-19T00:43:44.500308" +} diff --git a/site/public/v1/smartphones/f7-diamond-black-edition-dual-sim-td-lte-in-id-th-pk-version-1-128gb-cph1821/score/index.json b/site/public/v1/smartphones/f7-diamond-black-edition-dual-sim-td-lte-in-id-th-pk-version-1-128gb-cph1821/score/index.json new file mode 100644 index 00000000000..fd2dd76e49d --- /dev/null +++ b/site/public/v1/smartphones/f7-diamond-black-edition-dual-sim-td-lte-in-id-th-pk-version-1-128gb-cph1821/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 1.5, + "camera": 6.3, + "battery": 6.0, + "display": 45.5, + "value": null +} diff --git a/site/public/v1/smartphones/f7-dual-sim-td-lte-ae-ph-my-version-3-128gb-cph1821/index.json b/site/public/v1/smartphones/f7-dual-sim-td-lte-ae-ph-my-version-3-128gb-cph1821/index.json new file mode 100644 index 00000000000..a5b18e05607 --- /dev/null +++ b/site/public/v1/smartphones/f7-dual-sim-td-lte-ae-ph-my-version-3-128gb-cph1821/index.json @@ -0,0 +1,76 @@ +{ + "id": 2752, + "slug": "f7-dual-sim-td-lte-ae-ph-my-version-3-128gb-cph1821", + "name": "F7 Dual SIM TD-LTE AE PH MY Version 3 128GB CPH1821", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-04-22", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.23, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 158.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 1.5, + "camera": 6.3, + "battery": 6.0, + "display": 45.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.500308", + "updated_at": "2026-06-19T00:43:44.500308" +} diff --git a/site/public/v1/smartphones/f7-dual-sim-td-lte-ae-ph-my-version-3-128gb-cph1821/score/index.json b/site/public/v1/smartphones/f7-dual-sim-td-lte-ae-ph-my-version-3-128gb-cph1821/score/index.json new file mode 100644 index 00000000000..fd2dd76e49d --- /dev/null +++ b/site/public/v1/smartphones/f7-dual-sim-td-lte-ae-ph-my-version-3-128gb-cph1821/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 1.5, + "camera": 6.3, + "battery": 6.0, + "display": 45.5, + "value": null +} diff --git a/site/public/v1/smartphones/f7-dual-sim-td-lte-in-id-th-pk-version-1-64gb-cph1819/index.json b/site/public/v1/smartphones/f7-dual-sim-td-lte-in-id-th-pk-version-1-64gb-cph1819/index.json new file mode 100644 index 00000000000..b370e4870e0 --- /dev/null +++ b/site/public/v1/smartphones/f7-dual-sim-td-lte-in-id-th-pk-version-1-64gb-cph1819/index.json @@ -0,0 +1,76 @@ +{ + "id": 2753, + "slug": "f7-dual-sim-td-lte-in-id-th-pk-version-1-64gb-cph1819", + "name": "F7 Dual SIM TD-LTE IN ID TH PK Version 1 64GB CPH1819", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-04-09", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.23, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 158.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 0.0, + "camera": 6.3, + "battery": 6.0, + "display": 45.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.500308", + "updated_at": "2026-06-19T00:43:44.500308" +} diff --git a/site/public/v1/smartphones/f7-dual-sim-td-lte-in-id-th-pk-version-1-64gb-cph1819/score/index.json b/site/public/v1/smartphones/f7-dual-sim-td-lte-in-id-th-pk-version-1-64gb-cph1819/score/index.json new file mode 100644 index 00000000000..9c10ca332d2 --- /dev/null +++ b/site/public/v1/smartphones/f7-dual-sim-td-lte-in-id-th-pk-version-1-64gb-cph1819/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 0.0, + "camera": 6.3, + "battery": 6.0, + "display": 45.5, + "value": null +} diff --git a/site/public/v1/smartphones/f7-dual-sim-td-lte-my-version-2-64gb-cph1819/index.json b/site/public/v1/smartphones/f7-dual-sim-td-lte-my-version-2-64gb-cph1819/index.json new file mode 100644 index 00000000000..3ab70cb3be8 --- /dev/null +++ b/site/public/v1/smartphones/f7-dual-sim-td-lte-my-version-2-64gb-cph1819/index.json @@ -0,0 +1,76 @@ +{ + "id": 2754, + "slug": "f7-dual-sim-td-lte-my-version-2-64gb-cph1819", + "name": "F7 Dual SIM TD-LTE MY Version 2 64GB CPH1819", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-04-22", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.23, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 158.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 0.0, + "camera": 6.3, + "battery": 6.0, + "display": 45.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.501303", + "updated_at": "2026-06-19T00:43:44.501303" +} diff --git a/site/public/v1/smartphones/f7-dual-sim-td-lte-my-version-2-64gb-cph1819/score/index.json b/site/public/v1/smartphones/f7-dual-sim-td-lte-my-version-2-64gb-cph1819/score/index.json new file mode 100644 index 00000000000..9c10ca332d2 --- /dev/null +++ b/site/public/v1/smartphones/f7-dual-sim-td-lte-my-version-2-64gb-cph1819/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 0.0, + "camera": 6.3, + "battery": 6.0, + "display": 45.5, + "value": null +} diff --git a/site/public/v1/smartphones/f7-dual-sim-td-lte-ru-ae-ph-version-3-64gb-cph1819/index.json b/site/public/v1/smartphones/f7-dual-sim-td-lte-ru-ae-ph-version-3-64gb-cph1819/index.json new file mode 100644 index 00000000000..c3465a44ba2 --- /dev/null +++ b/site/public/v1/smartphones/f7-dual-sim-td-lte-ru-ae-ph-version-3-64gb-cph1819/index.json @@ -0,0 +1,76 @@ +{ + "id": 2755, + "slug": "f7-dual-sim-td-lte-ru-ae-ph-version-3-64gb-cph1819", + "name": "F7 Dual SIM TD-LTE RU AE PH Version 3 64GB CPH1819", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-04-22", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.23, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 158.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 0.0, + "camera": 6.3, + "battery": 6.0, + "display": 45.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.501303", + "updated_at": "2026-06-19T00:43:44.501303" +} diff --git a/site/public/v1/smartphones/f7-dual-sim-td-lte-ru-ae-ph-version-3-64gb-cph1819/score/index.json b/site/public/v1/smartphones/f7-dual-sim-td-lte-ru-ae-ph-version-3-64gb-cph1819/score/index.json new file mode 100644 index 00000000000..9c10ca332d2 --- /dev/null +++ b/site/public/v1/smartphones/f7-dual-sim-td-lte-ru-ae-ph-version-3-64gb-cph1819/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 0.0, + "camera": 6.3, + "battery": 6.0, + "display": 45.5, + "value": null +} diff --git a/site/public/v1/smartphones/f7-youth-edition-dual-sim-td-lte-in-id-my-vn-cph1859/index.json b/site/public/v1/smartphones/f7-youth-edition-dual-sim-td-lte-in-id-my-vn-cph1859/index.json new file mode 100644 index 00000000000..2be584a8eda --- /dev/null +++ b/site/public/v1/smartphones/f7-youth-edition-dual-sim-td-lte-in-id-my-vn-cph1859/index.json @@ -0,0 +1,76 @@ +{ + "id": 2756, + "slug": "f7-youth-edition-dual-sim-td-lte-in-id-my-vn-cph1859", + "name": "F7 Youth Edition Dual SIM TD-LTE IN ID MY VN CPH1859", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-05-31", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3410, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 155.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 0.0, + "camera": 5.3, + "battery": 6.2, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.501303", + "updated_at": "2026-06-19T00:43:44.501303" +} diff --git a/site/public/v1/smartphones/f7-youth-edition-dual-sim-td-lte-in-id-my-vn-cph1859/score/index.json b/site/public/v1/smartphones/f7-youth-edition-dual-sim-td-lte-in-id-my-vn-cph1859/score/index.json new file mode 100644 index 00000000000..c75032371f4 --- /dev/null +++ b/site/public/v1/smartphones/f7-youth-edition-dual-sim-td-lte-in-id-my-vn-cph1859/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 0.0, + "camera": 5.3, + "battery": 6.2, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/f7-youth-edition-dual-sim-td-lte-ph-cph1859/index.json b/site/public/v1/smartphones/f7-youth-edition-dual-sim-td-lte-ph-cph1859/index.json new file mode 100644 index 00000000000..64b6c5b2ead --- /dev/null +++ b/site/public/v1/smartphones/f7-youth-edition-dual-sim-td-lte-ph-cph1859/index.json @@ -0,0 +1,76 @@ +{ + "id": 2757, + "slug": "f7-youth-edition-dual-sim-td-lte-ph-cph1859", + "name": "F7 Youth Edition Dual SIM TD-LTE PH CPH1859", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-05-28", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3410, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 155.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 0.0, + "camera": 5.3, + "battery": 6.2, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.501303", + "updated_at": "2026-06-19T00:43:44.501303" +} diff --git a/site/public/v1/smartphones/f7-youth-edition-dual-sim-td-lte-ph-cph1859/score/index.json b/site/public/v1/smartphones/f7-youth-edition-dual-sim-td-lte-ph-cph1859/score/index.json new file mode 100644 index 00000000000..c75032371f4 --- /dev/null +++ b/site/public/v1/smartphones/f7-youth-edition-dual-sim-td-lte-ph-cph1859/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 0.0, + "camera": 5.3, + "battery": 6.2, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/f9-premium-edition-dual-sim-td-lte-my-version-2-64gb-cph1823/index.json b/site/public/v1/smartphones/f9-premium-edition-dual-sim-td-lte-my-version-2-64gb-cph1823/index.json new file mode 100644 index 00000000000..8e545d93d05 --- /dev/null +++ b/site/public/v1/smartphones/f9-premium-edition-dual-sim-td-lte-my-version-2-64gb-cph1823/index.json @@ -0,0 +1,76 @@ +{ + "id": 2760, + "slug": "f9-premium-edition-dual-sim-td-lte-my-version-2-64gb-cph1823", + "name": "F9 Premium Edition Dual SIM TD-LTE MY Version 2 64GB CPH1823", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-08-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color TN-TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.3, + "performance": 1.5, + "camera": 6.4, + "battery": 7.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.502302", + "updated_at": "2026-06-19T00:43:44.502302" +} diff --git a/site/public/v1/smartphones/f9-premium-edition-dual-sim-td-lte-my-version-2-64gb-cph1823/score/index.json b/site/public/v1/smartphones/f9-premium-edition-dual-sim-td-lte-my-version-2-64gb-cph1823/score/index.json new file mode 100644 index 00000000000..755f2474597 --- /dev/null +++ b/site/public/v1/smartphones/f9-premium-edition-dual-sim-td-lte-my-version-2-64gb-cph1823/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.3, + "performance": 1.5, + "camera": 6.4, + "battery": 7.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/f9-premium-edition-dual-sim-td-lte-vn-ph-version-1-64gb-cph1823/index.json b/site/public/v1/smartphones/f9-premium-edition-dual-sim-td-lte-vn-ph-version-1-64gb-cph1823/index.json new file mode 100644 index 00000000000..0121b7ad61a --- /dev/null +++ b/site/public/v1/smartphones/f9-premium-edition-dual-sim-td-lte-vn-ph-version-1-64gb-cph1823/index.json @@ -0,0 +1,76 @@ +{ + "id": 2761, + "slug": "f9-premium-edition-dual-sim-td-lte-vn-ph-version-1-64gb-cph1823", + "name": "F9 Premium Edition Dual SIM TD-LTE VN PH Version 1 64GB CPH1823", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-08-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color TN-TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.3, + "performance": 1.5, + "camera": 6.4, + "battery": 7.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.502302", + "updated_at": "2026-06-19T00:43:44.502302" +} diff --git a/site/public/v1/smartphones/f9-premium-edition-dual-sim-td-lte-vn-ph-version-1-64gb-cph1823/score/index.json b/site/public/v1/smartphones/f9-premium-edition-dual-sim-td-lte-vn-ph-version-1-64gb-cph1823/score/index.json new file mode 100644 index 00000000000..755f2474597 --- /dev/null +++ b/site/public/v1/smartphones/f9-premium-edition-dual-sim-td-lte-vn-ph-version-1-64gb-cph1823/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.3, + "performance": 1.5, + "camera": 6.4, + "battery": 7.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/f9-pro-dual-sim-td-lte-in-version-3-64gb-cph1823/index.json b/site/public/v1/smartphones/f9-pro-dual-sim-td-lte-in-version-3-64gb-cph1823/index.json new file mode 100644 index 00000000000..0ba3a09d524 --- /dev/null +++ b/site/public/v1/smartphones/f9-pro-dual-sim-td-lte-in-version-3-64gb-cph1823/index.json @@ -0,0 +1,76 @@ +{ + "id": 2763, + "slug": "f9-pro-dual-sim-td-lte-in-version-3-64gb-cph1823", + "name": "F9 Pro Dual SIM TD-LTE IN Version 3 64GB CPH1823", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-08-29", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color TN-TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.3, + "performance": 1.5, + "camera": 6.4, + "battery": 7.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.502302", + "updated_at": "2026-06-19T00:43:44.502302" +} diff --git a/site/public/v1/smartphones/f9-pro-dual-sim-td-lte-in-version-3-64gb-cph1823/score/index.json b/site/public/v1/smartphones/f9-pro-dual-sim-td-lte-in-version-3-64gb-cph1823/score/index.json new file mode 100644 index 00000000000..755f2474597 --- /dev/null +++ b/site/public/v1/smartphones/f9-pro-dual-sim-td-lte-in-version-3-64gb-cph1823/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.3, + "performance": 1.5, + "camera": 6.4, + "battery": 7.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/f9-standard-edition-dual-sim-td-lte-in-id-pk-np-version-3-64gb-cph1825/index.json b/site/public/v1/smartphones/f9-standard-edition-dual-sim-td-lte-in-id-pk-np-version-3-64gb-cph1825/index.json new file mode 100644 index 00000000000..3a479cf32f4 --- /dev/null +++ b/site/public/v1/smartphones/f9-standard-edition-dual-sim-td-lte-in-id-pk-np-version-3-64gb-cph1825/index.json @@ -0,0 +1,76 @@ +{ + "id": 2765, + "slug": "f9-standard-edition-dual-sim-td-lte-in-id-pk-np-version-3-64gb-cph1825", + "name": "F9 Standard Edition Dual SIM TD-LTE IN ID PK NP Version 3 64GB CPH1825", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-08-29", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color TN-TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": 0.0, + "camera": 6.4, + "battery": 7.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.502302", + "updated_at": "2026-06-19T00:43:44.502302" +} diff --git a/site/public/v1/smartphones/f9-standard-edition-dual-sim-td-lte-in-id-pk-np-version-3-64gb-cph1825/score/index.json b/site/public/v1/smartphones/f9-standard-edition-dual-sim-td-lte-in-id-pk-np-version-3-64gb-cph1825/score/index.json new file mode 100644 index 00000000000..5b33aa1d9b7 --- /dev/null +++ b/site/public/v1/smartphones/f9-standard-edition-dual-sim-td-lte-in-id-pk-np-version-3-64gb-cph1825/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": 0.0, + "camera": 6.4, + "battery": 7.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/find-n-2021-5g-premium-edition-dual-sim-td-lte-cn-512gb-peum00/index.json b/site/public/v1/smartphones/find-n-2021-5g-premium-edition-dual-sim-td-lte-cn-512gb-peum00/index.json new file mode 100644 index 00000000000..b4380f7128a --- /dev/null +++ b/site/public/v1/smartphones/find-n-2021-5g-premium-edition-dual-sim-td-lte-cn-512gb-peum00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3323, + "slug": "find-n-2021-5g-premium-edition-dual-sim-td-lte-cn-512gb-peum00", + "name": "Find N 2021 5G Premium Edition Dual SIM TD-LTE CN 512GB PEUM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-12-16", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 7.1, + "resolution": "1920x1792", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 370 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 275.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.0, + "performance": 9.4, + "camera": 17.2, + "battery": 35.9, + "display": 49.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.580636", + "updated_at": "2026-06-19T00:43:44.580636" +} diff --git a/site/public/v1/smartphones/find-n-2021-5g-premium-edition-dual-sim-td-lte-cn-512gb-peum00/score/index.json b/site/public/v1/smartphones/find-n-2021-5g-premium-edition-dual-sim-td-lte-cn-512gb-peum00/score/index.json new file mode 100644 index 00000000000..af849221e89 --- /dev/null +++ b/site/public/v1/smartphones/find-n-2021-5g-premium-edition-dual-sim-td-lte-cn-512gb-peum00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.0, + "performance": 9.4, + "camera": 17.2, + "battery": 35.9, + "display": 49.5, + "value": null +} diff --git a/site/public/v1/smartphones/find-n-2021-5g-standard-edition-dual-sim-td-lte-cn-256gb-peum00/index.json b/site/public/v1/smartphones/find-n-2021-5g-standard-edition-dual-sim-td-lte-cn-256gb-peum00/index.json new file mode 100644 index 00000000000..963bf1a2738 --- /dev/null +++ b/site/public/v1/smartphones/find-n-2021-5g-standard-edition-dual-sim-td-lte-cn-256gb-peum00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3324, + "slug": "find-n-2021-5g-standard-edition-dual-sim-td-lte-cn-256gb-peum00", + "name": "Find N 2021 5G Standard Edition Dual SIM TD-LTE CN 256GB PEUM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-12-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 7.1, + "resolution": "1920x1792", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 370 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 275.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.2, + "performance": 6.4, + "camera": 17.2, + "battery": 35.9, + "display": 49.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.580636", + "updated_at": "2026-06-19T00:43:44.580636" +} diff --git a/site/public/v1/smartphones/find-n-2021-5g-standard-edition-dual-sim-td-lte-cn-256gb-peum00/score/index.json b/site/public/v1/smartphones/find-n-2021-5g-standard-edition-dual-sim-td-lte-cn-256gb-peum00/score/index.json new file mode 100644 index 00000000000..b5b0fe9db85 --- /dev/null +++ b/site/public/v1/smartphones/find-n-2021-5g-standard-edition-dual-sim-td-lte-cn-256gb-peum00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.2, + "performance": 6.4, + "camera": 17.2, + "battery": 35.9, + "display": 49.5, + "value": null +} diff --git a/site/public/v1/smartphones/find-x-automobili-lamborghini-edition-dual-sim-td-lte-cn-512gb-paft10/index.json b/site/public/v1/smartphones/find-x-automobili-lamborghini-edition-dual-sim-td-lte-cn-512gb-paft10/index.json new file mode 100644 index 00000000000..3d4a1e869ee --- /dev/null +++ b/site/public/v1/smartphones/find-x-automobili-lamborghini-edition-dual-sim-td-lte-cn-512gb-paft10/index.json @@ -0,0 +1,76 @@ +{ + "id": 2767, + "slug": "find-x-automobili-lamborghini-edition-dual-sim-td-lte-cn-512gb-paft10", + "name": "Find X Automobili Lamborghini Edition Dual SIM TD-LTE CN 512GB PAFT10", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3400, + "charging_wired_w": 50.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 3.0, + "camera": 6.3, + "battery": 12.6, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.503301", + "updated_at": "2026-06-19T00:43:44.503301" +} diff --git a/site/public/v1/smartphones/find-x-automobili-lamborghini-edition-dual-sim-td-lte-cn-512gb-paft10/score/index.json b/site/public/v1/smartphones/find-x-automobili-lamborghini-edition-dual-sim-td-lte-cn-512gb-paft10/score/index.json new file mode 100644 index 00000000000..f32bc44962e --- /dev/null +++ b/site/public/v1/smartphones/find-x-automobili-lamborghini-edition-dual-sim-td-lte-cn-512gb-paft10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 3.0, + "camera": 6.3, + "battery": 12.6, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/find-x-automobili-lamborghini-edition-global-dual-sim-td-lte-512gb-cph1875-cph1871/index.json b/site/public/v1/smartphones/find-x-automobili-lamborghini-edition-global-dual-sim-td-lte-512gb-cph1875-cph1871/index.json new file mode 100644 index 00000000000..a3c6a093350 --- /dev/null +++ b/site/public/v1/smartphones/find-x-automobili-lamborghini-edition-global-dual-sim-td-lte-512gb-cph1875-cph1871/index.json @@ -0,0 +1,76 @@ +{ + "id": 2768, + "slug": "find-x-automobili-lamborghini-edition-global-dual-sim-td-lte-512gb-cph1875-cph1871", + "name": "Find X Automobili Lamborghini Edition Global Dual SIM TD-LTE 512GB CPH1875 / CPH1871", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-11-09", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3400, + "charging_wired_w": 50.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 3.0, + "camera": 6.3, + "battery": 12.6, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.503301", + "updated_at": "2026-06-19T00:43:44.503301" +} diff --git a/site/public/v1/smartphones/find-x-automobili-lamborghini-edition-global-dual-sim-td-lte-512gb-cph1875-cph1871/score/index.json b/site/public/v1/smartphones/find-x-automobili-lamborghini-edition-global-dual-sim-td-lte-512gb-cph1875-cph1871/score/index.json new file mode 100644 index 00000000000..f32bc44962e --- /dev/null +++ b/site/public/v1/smartphones/find-x-automobili-lamborghini-edition-global-dual-sim-td-lte-512gb-cph1875-cph1871/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 3.0, + "camera": 6.3, + "battery": 12.6, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/find-x-premium-edition-dual-sim-td-lte-cn-256gb-paft10/index.json b/site/public/v1/smartphones/find-x-premium-edition-dual-sim-td-lte-cn-256gb-paft10/index.json new file mode 100644 index 00000000000..3707b85efe3 --- /dev/null +++ b/site/public/v1/smartphones/find-x-premium-edition-dual-sim-td-lte-cn-256gb-paft10/index.json @@ -0,0 +1,76 @@ +{ + "id": 2769, + "slug": "find-x-premium-edition-dual-sim-td-lte-cn-256gb-paft10", + "name": "Find X Premium Edition Dual SIM TD-LTE CN 256GB PAFT10", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-06-29", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3400, + "charging_wired_w": 50.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 3.0, + "camera": 6.3, + "battery": 12.6, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.503301", + "updated_at": "2026-06-19T00:43:44.503301" +} diff --git a/site/public/v1/smartphones/find-x-premium-edition-dual-sim-td-lte-cn-256gb-paft10/score/index.json b/site/public/v1/smartphones/find-x-premium-edition-dual-sim-td-lte-cn-256gb-paft10/score/index.json new file mode 100644 index 00000000000..f32bc44962e --- /dev/null +++ b/site/public/v1/smartphones/find-x-premium-edition-dual-sim-td-lte-cn-256gb-paft10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 3.0, + "camera": 6.3, + "battery": 12.6, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/find-x-premium-edition-global-dual-sim-td-lte-256gb-cph1875-cph1871/index.json b/site/public/v1/smartphones/find-x-premium-edition-global-dual-sim-td-lte-256gb-cph1875-cph1871/index.json new file mode 100644 index 00000000000..5d9151951ce --- /dev/null +++ b/site/public/v1/smartphones/find-x-premium-edition-global-dual-sim-td-lte-256gb-cph1875-cph1871/index.json @@ -0,0 +1,76 @@ +{ + "id": 2770, + "slug": "find-x-premium-edition-global-dual-sim-td-lte-256gb-cph1875-cph1871", + "name": "Find X Premium Edition Global Dual SIM TD-LTE 256GB CPH1875 / CPH1871", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-09-08", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3400, + "charging_wired_w": 50.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 3.0, + "camera": 6.3, + "battery": 12.6, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.503301", + "updated_at": "2026-06-19T00:43:44.503301" +} diff --git a/site/public/v1/smartphones/find-x-premium-edition-global-dual-sim-td-lte-256gb-cph1875-cph1871/score/index.json b/site/public/v1/smartphones/find-x-premium-edition-global-dual-sim-td-lte-256gb-cph1875-cph1871/score/index.json new file mode 100644 index 00000000000..f32bc44962e --- /dev/null +++ b/site/public/v1/smartphones/find-x-premium-edition-global-dual-sim-td-lte-256gb-cph1875-cph1871/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 3.0, + "camera": 6.3, + "battery": 12.6, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/find-x-standard-edition-dual-sim-td-lte-cn-128gb-pafm00/index.json b/site/public/v1/smartphones/find-x-standard-edition-dual-sim-td-lte-cn-128gb-pafm00/index.json new file mode 100644 index 00000000000..5bc765d5b20 --- /dev/null +++ b/site/public/v1/smartphones/find-x-standard-edition-dual-sim-td-lte-cn-128gb-pafm00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2771, + "slug": "find-x-standard-edition-dual-sim-td-lte-cn-128gb-pafm00", + "name": "Find X Standard Edition Dual SIM TD-LTE CN 128GB PAFM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-06-29", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3730, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 3.0, + "camera": 6.3, + "battery": 11.9, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.503301", + "updated_at": "2026-06-19T00:43:44.503301" +} diff --git a/site/public/v1/smartphones/find-x-standard-edition-dual-sim-td-lte-cn-128gb-pafm00/score/index.json b/site/public/v1/smartphones/find-x-standard-edition-dual-sim-td-lte-cn-128gb-pafm00/score/index.json new file mode 100644 index 00000000000..feb187f6a4d --- /dev/null +++ b/site/public/v1/smartphones/find-x-standard-edition-dual-sim-td-lte-cn-128gb-pafm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 3.0, + "camera": 6.3, + "battery": 11.9, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/find-x-standard-edition-dual-sim-td-lte-cn-128gb-paft00/index.json b/site/public/v1/smartphones/find-x-standard-edition-dual-sim-td-lte-cn-128gb-paft00/index.json new file mode 100644 index 00000000000..2ef5d5e2723 --- /dev/null +++ b/site/public/v1/smartphones/find-x-standard-edition-dual-sim-td-lte-cn-128gb-paft00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2772, + "slug": "find-x-standard-edition-dual-sim-td-lte-cn-128gb-paft00", + "name": "Find X Standard Edition Dual SIM TD-LTE CN 128GB PAFT00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-06-29", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3730, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 3.0, + "camera": 6.3, + "battery": 11.9, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.503301", + "updated_at": "2026-06-19T00:43:44.503301" +} diff --git a/site/public/v1/smartphones/find-x-standard-edition-dual-sim-td-lte-cn-128gb-paft00/score/index.json b/site/public/v1/smartphones/find-x-standard-edition-dual-sim-td-lte-cn-128gb-paft00/score/index.json new file mode 100644 index 00000000000..feb187f6a4d --- /dev/null +++ b/site/public/v1/smartphones/find-x-standard-edition-dual-sim-td-lte-cn-128gb-paft00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 3.0, + "camera": 6.3, + "battery": 11.9, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/find-x-standard-edition-global-dual-sim-td-lte-128gb-cph1871/index.json b/site/public/v1/smartphones/find-x-standard-edition-global-dual-sim-td-lte-128gb-cph1871/index.json new file mode 100644 index 00000000000..84a51da77d3 --- /dev/null +++ b/site/public/v1/smartphones/find-x-standard-edition-global-dual-sim-td-lte-128gb-cph1871/index.json @@ -0,0 +1,76 @@ +{ + "id": 2773, + "slug": "find-x-standard-edition-global-dual-sim-td-lte-128gb-cph1871", + "name": "Find X Standard Edition Global Dual SIM TD-LTE 128GB CPH1871", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-09-08", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3730, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 3.0, + "camera": 6.3, + "battery": 11.9, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.503301", + "updated_at": "2026-06-19T00:43:44.503301" +} diff --git a/site/public/v1/smartphones/find-x-standard-edition-global-dual-sim-td-lte-128gb-cph1871/score/index.json b/site/public/v1/smartphones/find-x-standard-edition-global-dual-sim-td-lte-128gb-cph1871/score/index.json new file mode 100644 index 00000000000..feb187f6a4d --- /dev/null +++ b/site/public/v1/smartphones/find-x-standard-edition-global-dual-sim-td-lte-128gb-cph1871/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 3.0, + "camera": 6.3, + "battery": 11.9, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/find-x2-5g-ceramic-dual-sim-td-lte-cn-256gb-pdem10/index.json b/site/public/v1/smartphones/find-x2-5g-ceramic-dual-sim-td-lte-cn-256gb-pdem10/index.json new file mode 100644 index 00000000000..ea81d39d0b8 --- /dev/null +++ b/site/public/v1/smartphones/find-x2-5g-ceramic-dual-sim-td-lte-cn-256gb-pdem10/index.json @@ -0,0 +1,77 @@ +{ + "id": 3104, + "slug": "find-x2-5g-ceramic-dual-sim-td-lte-cn-256gb-pdem10", + "name": "Find X2 5G Ceramic Dual SIM TD-LTE CN 256GB PDEM10", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-13", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 520 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4200, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 209.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.9, + "performance": 3.0, + "camera": 16.5, + "battery": 27.5, + "display": 64.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.550112", + "updated_at": "2026-06-19T00:43:44.550112" +} diff --git a/site/public/v1/smartphones/find-x2-5g-ceramic-dual-sim-td-lte-cn-256gb-pdem10/score/index.json b/site/public/v1/smartphones/find-x2-5g-ceramic-dual-sim-td-lte-cn-256gb-pdem10/score/index.json new file mode 100644 index 00000000000..060adabd946 --- /dev/null +++ b/site/public/v1/smartphones/find-x2-5g-ceramic-dual-sim-td-lte-cn-256gb-pdem10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.9, + "performance": 3.0, + "camera": 16.5, + "battery": 27.5, + "display": 64.5, + "value": null +} diff --git a/site/public/v1/smartphones/find-x2-5g-dual-sim-td-lte-cn-128gb-pdem10/index.json b/site/public/v1/smartphones/find-x2-5g-dual-sim-td-lte-cn-128gb-pdem10/index.json new file mode 100644 index 00000000000..e447308aac5 --- /dev/null +++ b/site/public/v1/smartphones/find-x2-5g-dual-sim-td-lte-cn-128gb-pdem10/index.json @@ -0,0 +1,77 @@ +{ + "id": 3105, + "slug": "find-x2-5g-dual-sim-td-lte-cn-128gb-pdem10", + "name": "Find X2 5G Dual SIM TD-LTE CN 128GB PDEM10", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-13", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 520 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4200, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.9, + "performance": 3.0, + "camera": 16.5, + "battery": 27.5, + "display": 64.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.551115", + "updated_at": "2026-06-19T00:43:44.551115" +} diff --git a/site/public/v1/smartphones/find-x2-5g-dual-sim-td-lte-cn-128gb-pdem10/score/index.json b/site/public/v1/smartphones/find-x2-5g-dual-sim-td-lte-cn-128gb-pdem10/score/index.json new file mode 100644 index 00000000000..060adabd946 --- /dev/null +++ b/site/public/v1/smartphones/find-x2-5g-dual-sim-td-lte-cn-128gb-pdem10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.9, + "performance": 3.0, + "camera": 16.5, + "battery": 27.5, + "display": 64.5, + "value": null +} diff --git a/site/public/v1/smartphones/find-x2-5g-dual-sim-td-lte-cn-128gb-pdet10/index.json b/site/public/v1/smartphones/find-x2-5g-dual-sim-td-lte-cn-128gb-pdet10/index.json new file mode 100644 index 00000000000..aafecb00b4f --- /dev/null +++ b/site/public/v1/smartphones/find-x2-5g-dual-sim-td-lte-cn-128gb-pdet10/index.json @@ -0,0 +1,77 @@ +{ + "id": 3106, + "slug": "find-x2-5g-dual-sim-td-lte-cn-128gb-pdet10", + "name": "Find X2 5G Dual SIM TD-LTE CN 128GB PDET10", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-13", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 520 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4200, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.9, + "performance": 3.0, + "camera": 16.5, + "battery": 27.5, + "display": 64.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.551115", + "updated_at": "2026-06-19T00:43:44.551115" +} diff --git a/site/public/v1/smartphones/find-x2-5g-dual-sim-td-lte-cn-128gb-pdet10/score/index.json b/site/public/v1/smartphones/find-x2-5g-dual-sim-td-lte-cn-128gb-pdet10/score/index.json new file mode 100644 index 00000000000..060adabd946 --- /dev/null +++ b/site/public/v1/smartphones/find-x2-5g-dual-sim-td-lte-cn-128gb-pdet10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.9, + "performance": 3.0, + "camera": 16.5, + "battery": 27.5, + "display": 64.5, + "value": null +} diff --git a/site/public/v1/smartphones/find-x2-5g-premium-edition-ceramic-global-td-lte-256gb-cph2023/index.json b/site/public/v1/smartphones/find-x2-5g-premium-edition-ceramic-global-td-lte-256gb-cph2023/index.json new file mode 100644 index 00000000000..cc05c4fc2db --- /dev/null +++ b/site/public/v1/smartphones/find-x2-5g-premium-edition-ceramic-global-td-lte-256gb-cph2023/index.json @@ -0,0 +1,77 @@ +{ + "id": 3107, + "slug": "find-x2-5g-premium-edition-ceramic-global-td-lte-256gb-cph2023", + "name": "Find X2 5G Premium Edition Ceramic Global TD-LTE 256GB CPH2023", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 520 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4200, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 209.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.6, + "performance": 6.0, + "camera": 16.5, + "battery": 27.5, + "display": 64.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.551115", + "updated_at": "2026-06-19T00:43:44.551115" +} diff --git a/site/public/v1/smartphones/find-x2-5g-premium-edition-ceramic-global-td-lte-256gb-cph2023/score/index.json b/site/public/v1/smartphones/find-x2-5g-premium-edition-ceramic-global-td-lte-256gb-cph2023/score/index.json new file mode 100644 index 00000000000..e85640bc399 --- /dev/null +++ b/site/public/v1/smartphones/find-x2-5g-premium-edition-ceramic-global-td-lte-256gb-cph2023/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.6, + "performance": 6.0, + "camera": 16.5, + "battery": 27.5, + "display": 64.5, + "value": null +} diff --git a/site/public/v1/smartphones/find-x2-lite-5g-global-td-lte-128gb-cph2005/index.json b/site/public/v1/smartphones/find-x2-lite-5g-global-td-lte-128gb-cph2005/index.json new file mode 100644 index 00000000000..5fcf4c9f52f --- /dev/null +++ b/site/public/v1/smartphones/find-x2-lite-5g-global-td-lte-128gb-cph2005/index.json @@ -0,0 +1,77 @@ +{ + "id": 3108, + "slug": "find-x2-lite-5g-global-td-lte-128gb-cph2005", + "name": "Find X2 Lite 5G Global TD-LTE 128GB CPH2005", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4025, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 3.0, + "camera": 16.5, + "battery": 18.3, + "display": 28.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.551115", + "updated_at": "2026-06-19T00:43:44.551115" +} diff --git a/site/public/v1/smartphones/find-x2-lite-5g-global-td-lte-128gb-cph2005/score/index.json b/site/public/v1/smartphones/find-x2-lite-5g-global-td-lte-128gb-cph2005/score/index.json new file mode 100644 index 00000000000..faea1a39614 --- /dev/null +++ b/site/public/v1/smartphones/find-x2-lite-5g-global-td-lte-128gb-cph2005/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 3.0, + "camera": 16.5, + "battery": 18.3, + "display": 28.6, + "value": null +} diff --git a/site/public/v1/smartphones/find-x2-pro-5g-premium-edition-ceramic-dual-sim-td-lte-cn-256gb-pdem30/index.json b/site/public/v1/smartphones/find-x2-pro-5g-premium-edition-ceramic-dual-sim-td-lte-cn-256gb-pdem30/index.json new file mode 100644 index 00000000000..05a972b1402 --- /dev/null +++ b/site/public/v1/smartphones/find-x2-pro-5g-premium-edition-ceramic-dual-sim-td-lte-cn-256gb-pdem30/index.json @@ -0,0 +1,77 @@ +{ + "id": 3110, + "slug": "find-x2-pro-5g-premium-edition-ceramic-dual-sim-td-lte-cn-256gb-pdem30", + "name": "Find X2 Pro 5G Premium Edition Ceramic Dual SIM TD-LTE CN 256GB PDEM30", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-24", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 520 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4260, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 217.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.9, + "performance": 6.0, + "camera": 16.5, + "battery": 28.4, + "display": 64.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.551115", + "updated_at": "2026-06-19T00:43:44.551115" +} diff --git a/site/public/v1/smartphones/find-x2-pro-5g-premium-edition-ceramic-dual-sim-td-lte-cn-256gb-pdem30/score/index.json b/site/public/v1/smartphones/find-x2-pro-5g-premium-edition-ceramic-dual-sim-td-lte-cn-256gb-pdem30/score/index.json new file mode 100644 index 00000000000..ca4116c7f14 --- /dev/null +++ b/site/public/v1/smartphones/find-x2-pro-5g-premium-edition-ceramic-dual-sim-td-lte-cn-256gb-pdem30/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.9, + "performance": 6.0, + "camera": 16.5, + "battery": 28.4, + "display": 64.5, + "value": null +} diff --git a/site/public/v1/smartphones/find-x2-pro-5g-premium-edition-ceramic-global-td-lte-512gb-cph2025/index.json b/site/public/v1/smartphones/find-x2-pro-5g-premium-edition-ceramic-global-td-lte-512gb-cph2025/index.json new file mode 100644 index 00000000000..bc5d7de705f --- /dev/null +++ b/site/public/v1/smartphones/find-x2-pro-5g-premium-edition-ceramic-global-td-lte-512gb-cph2025/index.json @@ -0,0 +1,77 @@ +{ + "id": 3111, + "slug": "find-x2-pro-5g-premium-edition-ceramic-global-td-lte-512gb-cph2025", + "name": "Find X2 Pro 5G Premium Edition Ceramic Global TD-LTE 512GB CPH2025", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 520 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4260, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 207.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.9, + "performance": 6.0, + "camera": 16.5, + "battery": 28.4, + "display": 64.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.551115", + "updated_at": "2026-06-19T00:43:44.551115" +} diff --git a/site/public/v1/smartphones/find-x2-pro-5g-premium-edition-ceramic-global-td-lte-512gb-cph2025/score/index.json b/site/public/v1/smartphones/find-x2-pro-5g-premium-edition-ceramic-global-td-lte-512gb-cph2025/score/index.json new file mode 100644 index 00000000000..ca4116c7f14 --- /dev/null +++ b/site/public/v1/smartphones/find-x2-pro-5g-premium-edition-ceramic-global-td-lte-512gb-cph2025/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.9, + "performance": 6.0, + "camera": 16.5, + "battery": 28.4, + "display": 64.5, + "value": null +} diff --git a/site/public/v1/smartphones/find-x2-pro-5g-premium-edition-ceramic-td-lte-jp-512gb-opg01/index.json b/site/public/v1/smartphones/find-x2-pro-5g-premium-edition-ceramic-td-lte-jp-512gb-opg01/index.json new file mode 100644 index 00000000000..573c764e8f0 --- /dev/null +++ b/site/public/v1/smartphones/find-x2-pro-5g-premium-edition-ceramic-td-lte-jp-512gb-opg01/index.json @@ -0,0 +1,77 @@ +{ + "id": 3112, + "slug": "find-x2-pro-5g-premium-edition-ceramic-td-lte-jp-512gb-opg01", + "name": "Find X2 Pro 5G Premium Edition Ceramic TD-LTE JP 512GB OPG01", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 520 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4260, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 207.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.9, + "performance": 6.0, + "camera": 16.5, + "battery": 28.4, + "display": 64.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.551115", + "updated_at": "2026-06-19T00:43:44.551115" +} diff --git a/site/public/v1/smartphones/find-x2-pro-5g-premium-edition-ceramic-td-lte-jp-512gb-opg01/score/index.json b/site/public/v1/smartphones/find-x2-pro-5g-premium-edition-ceramic-td-lte-jp-512gb-opg01/score/index.json new file mode 100644 index 00000000000..ca4116c7f14 --- /dev/null +++ b/site/public/v1/smartphones/find-x2-pro-5g-premium-edition-ceramic-td-lte-jp-512gb-opg01/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.9, + "performance": 6.0, + "camera": 16.5, + "battery": 28.4, + "display": 64.5, + "value": null +} diff --git a/site/public/v1/smartphones/find-x2-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pdem30/index.json b/site/public/v1/smartphones/find-x2-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pdem30/index.json new file mode 100644 index 00000000000..768eaafa20e --- /dev/null +++ b/site/public/v1/smartphones/find-x2-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pdem30/index.json @@ -0,0 +1,77 @@ +{ + "id": 3113, + "slug": "find-x2-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pdem30", + "name": "Find X2 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB PDEM30", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-24", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 520 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4260, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.9, + "performance": 6.0, + "camera": 16.5, + "battery": 28.4, + "display": 64.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.552127", + "updated_at": "2026-06-19T00:43:44.552127" +} diff --git a/site/public/v1/smartphones/find-x2-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pdem30/score/index.json b/site/public/v1/smartphones/find-x2-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pdem30/score/index.json new file mode 100644 index 00000000000..ca4116c7f14 --- /dev/null +++ b/site/public/v1/smartphones/find-x2-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pdem30/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.9, + "performance": 6.0, + "camera": 16.5, + "battery": 28.4, + "display": 64.5, + "value": null +} diff --git a/site/public/v1/smartphones/find-x2-pro-5g-premium-edition-global-td-lte-256gb-cph2025/index.json b/site/public/v1/smartphones/find-x2-pro-5g-premium-edition-global-td-lte-256gb-cph2025/index.json new file mode 100644 index 00000000000..c8aa19b8376 --- /dev/null +++ b/site/public/v1/smartphones/find-x2-pro-5g-premium-edition-global-td-lte-256gb-cph2025/index.json @@ -0,0 +1,77 @@ +{ + "id": 3114, + "slug": "find-x2-pro-5g-premium-edition-global-td-lte-256gb-cph2025", + "name": "Find X2 Pro 5G Premium Edition Global TD-LTE 256GB CPH2025", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3168", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 520 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4260, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.9, + "performance": 6.0, + "camera": 16.5, + "battery": 28.4, + "display": 64.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.552127", + "updated_at": "2026-06-19T00:43:44.552127" +} diff --git a/site/public/v1/smartphones/find-x2-pro-5g-premium-edition-global-td-lte-256gb-cph2025/score/index.json b/site/public/v1/smartphones/find-x2-pro-5g-premium-edition-global-td-lte-256gb-cph2025/score/index.json new file mode 100644 index 00000000000..ca4116c7f14 --- /dev/null +++ b/site/public/v1/smartphones/find-x2-pro-5g-premium-edition-global-td-lte-256gb-cph2025/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.9, + "performance": 6.0, + "camera": 16.5, + "battery": 28.4, + "display": 64.5, + "value": null +} diff --git a/site/public/v1/smartphones/find-x3-pro-5g-global-dual-sim-td-lte-256gb-cph2173/index.json b/site/public/v1/smartphones/find-x3-pro-5g-global-dual-sim-td-lte-256gb-cph2173/index.json new file mode 100644 index 00000000000..2abdae1eeab --- /dev/null +++ b/site/public/v1/smartphones/find-x3-pro-5g-global-dual-sim-td-lte-256gb-cph2173/index.json @@ -0,0 +1,77 @@ +{ + "id": 3326, + "slug": "find-x3-pro-5g-global-dual-sim-td-lte-256gb-cph2173", + "name": "Find X3 Pro 5G Global Dual SIM TD-LTE 256GB CPH2173", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-31", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1440x3216", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.4, + "performance": 9.4, + "camera": 17.2, + "battery": 42.0, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.581636", + "updated_at": "2026-06-19T00:43:44.581636" +} diff --git a/site/public/v1/smartphones/find-x3-pro-5g-global-dual-sim-td-lte-256gb-cph2173/score/index.json b/site/public/v1/smartphones/find-x3-pro-5g-global-dual-sim-td-lte-256gb-cph2173/score/index.json new file mode 100644 index 00000000000..808f7552ab5 --- /dev/null +++ b/site/public/v1/smartphones/find-x3-pro-5g-global-dual-sim-td-lte-256gb-cph2173/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.4, + "performance": 9.4, + "camera": 17.2, + "battery": 42.0, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/find-x3-pro-5g-global-td-lte-256gb-cph2173/index.json b/site/public/v1/smartphones/find-x3-pro-5g-global-td-lte-256gb-cph2173/index.json new file mode 100644 index 00000000000..d2d16ec1ec7 --- /dev/null +++ b/site/public/v1/smartphones/find-x3-pro-5g-global-td-lte-256gb-cph2173/index.json @@ -0,0 +1,77 @@ +{ + "id": 3327, + "slug": "find-x3-pro-5g-global-td-lte-256gb-cph2173", + "name": "Find X3 Pro 5G Global TD-LTE 256GB CPH2173", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-14", + "msrp_usd": 1038, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1440x3216", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.4, + "performance": 9.4, + "camera": 17.2, + "battery": 42.0, + "display": 65.1, + "value": 38.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.581636", + "updated_at": "2026-06-19T00:43:44.581636" +} diff --git a/site/public/v1/smartphones/find-x3-pro-5g-global-td-lte-256gb-cph2173/score/index.json b/site/public/v1/smartphones/find-x3-pro-5g-global-td-lte-256gb-cph2173/score/index.json new file mode 100644 index 00000000000..b24d5fe1c8d --- /dev/null +++ b/site/public/v1/smartphones/find-x3-pro-5g-global-td-lte-256gb-cph2173/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.4, + "performance": 9.4, + "camera": 17.2, + "battery": 42.0, + "display": 65.1, + "value": 38.3 +} diff --git a/site/public/v1/smartphones/find-x3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-peem00/index.json b/site/public/v1/smartphones/find-x3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-peem00/index.json new file mode 100644 index 00000000000..5a4fcabdc77 --- /dev/null +++ b/site/public/v1/smartphones/find-x3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-peem00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3328, + "slug": "find-x3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-peem00", + "name": "Find X3 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB PEEM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-18", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1440x3216", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.4, + "performance": 9.4, + "camera": 17.2, + "battery": 42.0, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.581636", + "updated_at": "2026-06-19T00:43:44.581636" +} diff --git a/site/public/v1/smartphones/find-x3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-peem00/score/index.json b/site/public/v1/smartphones/find-x3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-peem00/score/index.json new file mode 100644 index 00000000000..808f7552ab5 --- /dev/null +++ b/site/public/v1/smartphones/find-x3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-peem00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.4, + "performance": 9.4, + "camera": 17.2, + "battery": 42.0, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/find-x3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-peem00/index.json b/site/public/v1/smartphones/find-x3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-peem00/index.json new file mode 100644 index 00000000000..72241d023b2 --- /dev/null +++ b/site/public/v1/smartphones/find-x3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-peem00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3329, + "slug": "find-x3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-peem00", + "name": "Find X3 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB PEEM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-18", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1440x3216", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.7, + "performance": 6.4, + "camera": 17.2, + "battery": 42.0, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.581636", + "updated_at": "2026-06-19T00:43:44.581636" +} diff --git a/site/public/v1/smartphones/find-x3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-peem00/score/index.json b/site/public/v1/smartphones/find-x3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-peem00/score/index.json new file mode 100644 index 00000000000..396ef249bce --- /dev/null +++ b/site/public/v1/smartphones/find-x3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-peem00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.7, + "performance": 6.4, + "camera": 17.2, + "battery": 42.0, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/find-x3-pro-5g-td-lte-jp-256gb-opg03/index.json b/site/public/v1/smartphones/find-x3-pro-5g-td-lte-jp-256gb-opg03/index.json new file mode 100644 index 00000000000..34eb62ad3c1 --- /dev/null +++ b/site/public/v1/smartphones/find-x3-pro-5g-td-lte-jp-256gb-opg03/index.json @@ -0,0 +1,77 @@ +{ + "id": 3330, + "slug": "find-x3-pro-5g-td-lte-jp-256gb-opg03", + "name": "Find X3 Pro 5G TD-LTE JP 256GB OPG03", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-06-29", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1440x3216", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.4, + "performance": 9.4, + "camera": 17.2, + "battery": 42.0, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.581636", + "updated_at": "2026-06-19T00:43:44.581636" +} diff --git a/site/public/v1/smartphones/find-x3-pro-5g-td-lte-jp-256gb-opg03/score/index.json b/site/public/v1/smartphones/find-x3-pro-5g-td-lte-jp-256gb-opg03/score/index.json new file mode 100644 index 00000000000..808f7552ab5 --- /dev/null +++ b/site/public/v1/smartphones/find-x3-pro-5g-td-lte-jp-256gb-opg03/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.4, + "performance": 9.4, + "camera": 17.2, + "battery": 42.0, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/g-elite-plus-lte-latam-sla-l03/index.json b/site/public/v1/smartphones/g-elite-plus-lte-latam-sla-l03/index.json new file mode 100644 index 00000000000..ac54dadc31f --- /dev/null +++ b/site/public/v1/smartphones/g-elite-plus-lte-latam-sla-l03/index.json @@ -0,0 +1,76 @@ +{ + "id": 801, + "slug": "g-elite-plus-lte-latam-sla-l03", + "name": "G Elite Plus LTE LATAM SLA-L03", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2017-12-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3020, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": null, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.218933", + "updated_at": "2026-06-19T00:43:44.218933" +} diff --git a/site/public/v1/smartphones/g-elite-plus-lte-latam-sla-l03/score/index.json b/site/public/v1/smartphones/g-elite-plus-lte-latam-sla-l03/score/index.json new file mode 100644 index 00000000000..124cad705d7 --- /dev/null +++ b/site/public/v1/smartphones/g-elite-plus-lte-latam-sla-l03/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": null, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/g-power-3rd-gen-2022-td-lte-na-64gb-xt2165-5/index.json b/site/public/v1/smartphones/g-power-3rd-gen-2022-td-lte-na-64gb-xt2165-5/index.json new file mode 100644 index 00000000000..08b33ac7c8e --- /dev/null +++ b/site/public/v1/smartphones/g-power-3rd-gen-2022-td-lte-na-64gb-xt2165-5/index.json @@ -0,0 +1,77 @@ +{ + "id": 2163, + "slug": "g-power-3rd-gen-2022-td-lte-na-64gb-xt2165-5", + "name": "G Power 3rd gen 2022 TD-LTE NA 64GB XT2165-5", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 72, + "slug": "helio-g37", + "name": "Helio G37", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g37" + }, + "release_date": "2021-12-01", + "msrp_usd": 200, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.7, + "performance": null, + "camera": 17.2, + "battery": 30.0, + "display": 30.0, + "value": 62.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.421874", + "updated_at": "2026-06-19T00:43:44.421874" +} diff --git a/site/public/v1/smartphones/g-power-3rd-gen-2022-td-lte-na-64gb-xt2165-5/score/index.json b/site/public/v1/smartphones/g-power-3rd-gen-2022-td-lte-na-64gb-xt2165-5/score/index.json new file mode 100644 index 00000000000..27b7a802c5f --- /dev/null +++ b/site/public/v1/smartphones/g-power-3rd-gen-2022-td-lte-na-64gb-xt2165-5/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.7, + "performance": null, + "camera": 17.2, + "battery": 30.0, + "display": 30.0, + "value": 62.9 +} diff --git a/site/public/v1/smartphones/g0130ww-g9-dual-sim-lte/index.json b/site/public/v1/smartphones/g0130ww-g9-dual-sim-lte/index.json new file mode 100644 index 00000000000..540fe9e9197 --- /dev/null +++ b/site/public/v1/smartphones/g0130ww-g9-dual-sim-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 474, + "slug": "g0130ww-g9-dual-sim-lte", + "name": "G0130WW G9 Dual SIM LTE", + "brand": { + "id": 104, + "slug": "blu", + "name": "BLU Products", + "country": "US", + "url": "/v1/brands/blu" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.172927", + "updated_at": "2026-06-19T00:43:44.172927" +} diff --git a/site/public/v1/smartphones/g0130ww-g9-dual-sim-lte/score/index.json b/site/public/v1/smartphones/g0130ww-g9-dual-sim-lte/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/g0130ww-g9-dual-sim-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/g0230ww-g9-pro-dual-sim-lte/index.json b/site/public/v1/smartphones/g0230ww-g9-pro-dual-sim-lte/index.json new file mode 100644 index 00000000000..00bdfa5853f --- /dev/null +++ b/site/public/v1/smartphones/g0230ww-g9-pro-dual-sim-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 475, + "slug": "g0230ww-g9-pro-dual-sim-lte", + "name": "G0230WW G9 Pro Dual SIM LTE", + "brand": { + "id": 104, + "slug": "blu", + "name": "BLU Products", + "country": "US", + "url": "/v1/brands/blu" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2019-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 20.2 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.3, + "performance": 0.0, + "camera": 7.6, + "battery": 15.6, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.172927", + "updated_at": "2026-06-19T00:43:44.172927" +} diff --git a/site/public/v1/smartphones/g0230ww-g9-pro-dual-sim-lte/score/index.json b/site/public/v1/smartphones/g0230ww-g9-pro-dual-sim-lte/score/index.json new file mode 100644 index 00000000000..ef909671502 --- /dev/null +++ b/site/public/v1/smartphones/g0230ww-g9-pro-dual-sim-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.3, + "performance": 0.0, + "camera": 7.6, + "battery": 15.6, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/g0250ww-g70-dual-sim-lte/index.json b/site/public/v1/smartphones/g0250ww-g70-dual-sim-lte/index.json new file mode 100644 index 00000000000..03d5bebebd6 --- /dev/null +++ b/site/public/v1/smartphones/g0250ww-g70-dual-sim-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 477, + "slug": "g0250ww-g70-dual-sim-lte", + "name": "G0250WW G70 Dual SIM LTE", + "brand": { + "id": 104, + "slug": "blu", + "name": "BLU Products", + "country": "US", + "url": "/v1/brands/blu" + }, + "soc": { + "id": 58, + "slug": "helio-a25", + "name": "Helio A25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-a25" + }, + "release_date": "2020-01-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.4, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.172927", + "updated_at": "2026-06-19T00:43:44.172927" +} diff --git a/site/public/v1/smartphones/g0250ww-g70-dual-sim-lte/score/index.json b/site/public/v1/smartphones/g0250ww-g70-dual-sim-lte/score/index.json new file mode 100644 index 00000000000..a59635bee66 --- /dev/null +++ b/site/public/v1/smartphones/g0250ww-g70-dual-sim-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/g0290ww-g80-dual-sim-lte/index.json b/site/public/v1/smartphones/g0290ww-g80-dual-sim-lte/index.json new file mode 100644 index 00000000000..7dbe48908df --- /dev/null +++ b/site/public/v1/smartphones/g0290ww-g80-dual-sim-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 478, + "slug": "g0290ww-g80-dual-sim-lte", + "name": "G0290WW G80 Dual SIM LTE", + "brand": { + "id": 104, + "slug": "blu", + "name": "BLU Products", + "country": "US", + "url": "/v1/brands/blu" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2020-06-24", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.172927", + "updated_at": "2026-06-19T00:43:44.172927" +} diff --git a/site/public/v1/smartphones/g0290ww-g80-dual-sim-lte/score/index.json b/site/public/v1/smartphones/g0290ww-g80-dual-sim-lte/score/index.json new file mode 100644 index 00000000000..a59635bee66 --- /dev/null +++ b/site/public/v1/smartphones/g0290ww-g80-dual-sim-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/g0370ww-g90-dual-sim-lte/index.json b/site/public/v1/smartphones/g0370ww-g90-dual-sim-lte/index.json new file mode 100644 index 00000000000..2d562a7dfe4 --- /dev/null +++ b/site/public/v1/smartphones/g0370ww-g90-dual-sim-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 479, + "slug": "g0370ww-g90-dual-sim-lte", + "name": "G0370WW G90 Dual SIM LTE", + "brand": { + "id": 104, + "slug": "blu", + "name": "BLU Products", + "country": "US", + "url": "/v1/brands/blu" + }, + "soc": { + "id": 58, + "slug": "helio-a25", + "name": "Helio A25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-a25" + }, + "release_date": "2020-06-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.172927", + "updated_at": "2026-06-19T00:43:44.172927" +} diff --git a/site/public/v1/smartphones/g0370ww-g90-dual-sim-lte/score/index.json b/site/public/v1/smartphones/g0370ww-g90-dual-sim-lte/score/index.json new file mode 100644 index 00000000000..82b598c31b6 --- /dev/null +++ b/site/public/v1/smartphones/g0370ww-g90-dual-sim-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/g08-dual-sim-lte-apac-m2165/index.json b/site/public/v1/smartphones/g08-dual-sim-lte-apac-m2165/index.json new file mode 100644 index 00000000000..ffe2dd1341b --- /dev/null +++ b/site/public/v1/smartphones/g08-dual-sim-lte-apac-m2165/index.json @@ -0,0 +1,76 @@ +{ + "id": 5583, + "slug": "g08-dual-sim-lte-apac-m2165", + "name": "G08 Dual SIM LTE APAC M2165", + "brand": { + "id": 56, + "slug": "wiko", + "name": "Wiko", + "country": "FR", + "url": "/v1/brands/wiko" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-02-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 6.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.911308", + "updated_at": "2026-06-19T00:43:44.911308" +} diff --git a/site/public/v1/smartphones/g08-dual-sim-lte-apac-m2165/score/index.json b/site/public/v1/smartphones/g08-dual-sim-lte-apac-m2165/score/index.json new file mode 100644 index 00000000000..34400387dab --- /dev/null +++ b/site/public/v1/smartphones/g08-dual-sim-lte-apac-m2165/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 6.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/g10-2021-dual-sim-lte-latam-32gb/index.json b/site/public/v1/smartphones/g10-2021-dual-sim-lte-latam-32gb/index.json new file mode 100644 index 00000000000..e679efee2f1 --- /dev/null +++ b/site/public/v1/smartphones/g10-2021-dual-sim-lte-latam-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2464, + "slug": "g10-2021-dual-sim-lte-latam-32gb", + "name": "G10 2021 Dual SIM LTE LATAM 32GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 59, + "slug": "helio-g25", + "name": "Helio G25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g25" + }, + "release_date": "2021-04-26", + "msrp_usd": 148, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5050, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 5.3, + "battery": 30.7, + "display": 35.0, + "value": 58.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.461276", + "updated_at": "2026-06-19T00:43:44.461276" +} diff --git a/site/public/v1/smartphones/g10-2021-dual-sim-lte-latam-32gb/score/index.json b/site/public/v1/smartphones/g10-2021-dual-sim-lte-latam-32gb/score/index.json new file mode 100644 index 00000000000..9b113865ee0 --- /dev/null +++ b/site/public/v1/smartphones/g10-2021-dual-sim-lte-latam-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 5.3, + "battery": 30.7, + "display": 35.0, + "value": 58.9 +} diff --git a/site/public/v1/smartphones/g10-2021-dual-sim-lte-latam-64gb/index.json b/site/public/v1/smartphones/g10-2021-dual-sim-lte-latam-64gb/index.json new file mode 100644 index 00000000000..ac10d3a66b7 --- /dev/null +++ b/site/public/v1/smartphones/g10-2021-dual-sim-lte-latam-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2465, + "slug": "g10-2021-dual-sim-lte-latam-64gb", + "name": "G10 2021 Dual SIM LTE LATAM 64GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 59, + "slug": "helio-g25", + "name": "Helio G25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g25" + }, + "release_date": "2021-04-26", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5050, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 5.3, + "battery": 30.7, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.461276", + "updated_at": "2026-06-19T00:43:44.461276" +} diff --git a/site/public/v1/smartphones/g10-2021-dual-sim-lte-latam-64gb/score/index.json b/site/public/v1/smartphones/g10-2021-dual-sim-lte-latam-64gb/score/index.json new file mode 100644 index 00000000000..92f78086aed --- /dev/null +++ b/site/public/v1/smartphones/g10-2021-dual-sim-lte-latam-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 5.3, + "battery": 30.7, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/g10-2021-global-dual-sim-td-lte-32gb/index.json b/site/public/v1/smartphones/g10-2021-global-dual-sim-td-lte-32gb/index.json new file mode 100644 index 00000000000..3772a580035 --- /dev/null +++ b/site/public/v1/smartphones/g10-2021-global-dual-sim-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2466, + "slug": "g10-2021-global-dual-sim-td-lte-32gb", + "name": "G10 2021 Global Dual SIM TD-LTE 32GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 59, + "slug": "helio-g25", + "name": "Helio G25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g25" + }, + "release_date": "2021-04-01", + "msrp_usd": 149, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5050, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 5.3, + "battery": 30.7, + "display": 35.0, + "value": 58.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.461276", + "updated_at": "2026-06-19T00:43:44.461276" +} diff --git a/site/public/v1/smartphones/g10-2021-global-dual-sim-td-lte-32gb/score/index.json b/site/public/v1/smartphones/g10-2021-global-dual-sim-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..9b113865ee0 --- /dev/null +++ b/site/public/v1/smartphones/g10-2021-global-dual-sim-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 5.3, + "battery": 30.7, + "display": 35.0, + "value": 58.9 +} diff --git a/site/public/v1/smartphones/g10-2021-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/g10-2021-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..d07f828aae0 --- /dev/null +++ b/site/public/v1/smartphones/g10-2021-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2467, + "slug": "g10-2021-global-dual-sim-td-lte-64gb", + "name": "G10 2021 Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 59, + "slug": "helio-g25", + "name": "Helio G25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g25" + }, + "release_date": "2021-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5050, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 5.3, + "battery": 30.7, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.461276", + "updated_at": "2026-06-19T00:43:44.461276" +} diff --git a/site/public/v1/smartphones/g10-2021-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/g10-2021-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..92f78086aed --- /dev/null +++ b/site/public/v1/smartphones/g10-2021-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 5.3, + "battery": 30.7, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/g10-2021-global-td-lte-32gb/index.json b/site/public/v1/smartphones/g10-2021-global-td-lte-32gb/index.json new file mode 100644 index 00000000000..69a32f98af2 --- /dev/null +++ b/site/public/v1/smartphones/g10-2021-global-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2468, + "slug": "g10-2021-global-td-lte-32gb", + "name": "G10 2021 Global TD-LTE 32GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 59, + "slug": "helio-g25", + "name": "Helio G25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g25" + }, + "release_date": "2021-04-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5050, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 5.3, + "battery": 30.7, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.462276", + "updated_at": "2026-06-19T00:43:44.462276" +} diff --git a/site/public/v1/smartphones/g10-2021-global-td-lte-32gb/score/index.json b/site/public/v1/smartphones/g10-2021-global-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..92f78086aed --- /dev/null +++ b/site/public/v1/smartphones/g10-2021-global-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 5.3, + "battery": 30.7, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/g10-2021-lte-latam-64gb/index.json b/site/public/v1/smartphones/g10-2021-lte-latam-64gb/index.json new file mode 100644 index 00000000000..6063a784e9d --- /dev/null +++ b/site/public/v1/smartphones/g10-2021-lte-latam-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2469, + "slug": "g10-2021-lte-latam-64gb", + "name": "G10 2021 LTE LATAM 64GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 59, + "slug": "helio-g25", + "name": "Helio G25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g25" + }, + "release_date": "2021-04-26", + "msrp_usd": 4599, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5050, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 5.3, + "battery": 30.7, + "display": 35.0, + "value": 8.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.462276", + "updated_at": "2026-06-19T00:43:44.462276" +} diff --git a/site/public/v1/smartphones/g10-2021-lte-latam-64gb/score/index.json b/site/public/v1/smartphones/g10-2021-lte-latam-64gb/score/index.json new file mode 100644 index 00000000000..b98e47f60b2 --- /dev/null +++ b/site/public/v1/smartphones/g10-2021-lte-latam-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 5.3, + "battery": 30.7, + "display": 35.0, + "value": 8.9 +} diff --git a/site/public/v1/smartphones/g50-2021-5g-premium-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/g50-2021-5g-premium-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..1a2e8b7a0d4 --- /dev/null +++ b/site/public/v1/smartphones/g50-2021-5g-premium-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 2472, + "slug": "g50-2021-5g-premium-edition-global-dual-sim-td-lte-128gb", + "name": "G50 2021 5G Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.82, + "resolution": "720x1560", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 252 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.462276", + "updated_at": "2026-06-19T00:43:44.462276" +} diff --git a/site/public/v1/smartphones/g50-2021-5g-premium-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/g50-2021-5g-premium-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..87dd39e3260 --- /dev/null +++ b/site/public/v1/smartphones/g50-2021-5g-premium-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/g50-2021-5g-standard-edition-dual-sim-td-lte-latam-128gb/index.json b/site/public/v1/smartphones/g50-2021-5g-standard-edition-dual-sim-td-lte-latam-128gb/index.json new file mode 100644 index 00000000000..68db9ae5f30 --- /dev/null +++ b/site/public/v1/smartphones/g50-2021-5g-standard-edition-dual-sim-td-lte-latam-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 2473, + "slug": "g50-2021-5g-standard-edition-dual-sim-td-lte-latam-128gb", + "name": "G50 2021 5G Standard Edition Dual SIM TD-LTE LATAM 128GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-10-13", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.82, + "resolution": "720x1560", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 252 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.462276", + "updated_at": "2026-06-19T00:43:44.462276" +} diff --git a/site/public/v1/smartphones/g50-2021-5g-standard-edition-dual-sim-td-lte-latam-128gb/score/index.json b/site/public/v1/smartphones/g50-2021-5g-standard-edition-dual-sim-td-lte-latam-128gb/score/index.json new file mode 100644 index 00000000000..f0a51b68d56 --- /dev/null +++ b/site/public/v1/smartphones/g50-2021-5g-standard-edition-dual-sim-td-lte-latam-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/g50-2021-5g-standard-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/g50-2021-5g-standard-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..21c9635a92a --- /dev/null +++ b/site/public/v1/smartphones/g50-2021-5g-standard-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 2474, + "slug": "g50-2021-5g-standard-edition-global-dual-sim-td-lte-128gb", + "name": "G50 2021 5G Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-10-01", + "msrp_usd": 279, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.82, + "resolution": "720x1560", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 252 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 17.5, + "value": 58.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.462276", + "updated_at": "2026-06-19T00:43:44.462276" +} diff --git a/site/public/v1/smartphones/g50-2021-5g-standard-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/g50-2021-5g-standard-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..0034628c3e7 --- /dev/null +++ b/site/public/v1/smartphones/g50-2021-5g-standard-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 17.5, + "value": 58.0 +} diff --git a/site/public/v1/smartphones/g50-2021-5g-standard-edition-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/g50-2021-5g-standard-edition-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..b7782731e5f --- /dev/null +++ b/site/public/v1/smartphones/g50-2021-5g-standard-edition-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 2475, + "slug": "g50-2021-5g-standard-edition-global-dual-sim-td-lte-64gb", + "name": "G50 2021 5G Standard Edition Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-10-01", + "msrp_usd": 199, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.82, + "resolution": "720x1560", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 252 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 17.5, + "value": 58.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.462276", + "updated_at": "2026-06-19T00:43:44.462276" +} diff --git a/site/public/v1/smartphones/g50-2021-5g-standard-edition-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/g50-2021-5g-standard-edition-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..0034628c3e7 --- /dev/null +++ b/site/public/v1/smartphones/g50-2021-5g-standard-edition-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 17.5, + "value": 58.0 +} diff --git a/site/public/v1/smartphones/g50-2021-5g-standard-edition-td-lte-latam-128gb/index.json b/site/public/v1/smartphones/g50-2021-5g-standard-edition-td-lte-latam-128gb/index.json new file mode 100644 index 00000000000..72a2fb4bb85 --- /dev/null +++ b/site/public/v1/smartphones/g50-2021-5g-standard-edition-td-lte-latam-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 2476, + "slug": "g50-2021-5g-standard-edition-td-lte-latam-128gb", + "name": "G50 2021 5G Standard Edition TD-LTE LATAM 128GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-11-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.82, + "resolution": "720x1560", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 252 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.462276", + "updated_at": "2026-06-19T00:43:44.462276" +} diff --git a/site/public/v1/smartphones/g50-2021-5g-standard-edition-td-lte-latam-128gb/score/index.json b/site/public/v1/smartphones/g50-2021-5g-standard-edition-td-lte-latam-128gb/score/index.json new file mode 100644 index 00000000000..f0a51b68d56 --- /dev/null +++ b/site/public/v1/smartphones/g50-2021-5g-standard-edition-td-lte-latam-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/g50-2021-5g-standard-edition-td-lte-na-128gb/index.json b/site/public/v1/smartphones/g50-2021-5g-standard-edition-td-lte-na-128gb/index.json new file mode 100644 index 00000000000..980af225a9f --- /dev/null +++ b/site/public/v1/smartphones/g50-2021-5g-standard-edition-td-lte-na-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 2477, + "slug": "g50-2021-5g-standard-edition-td-lte-na-128gb", + "name": "G50 2021 5G Standard Edition TD-LTE NA 128GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-10-01", + "msrp_usd": 299, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.82, + "resolution": "720x1560", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 252 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 17.5, + "value": 58.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.462276", + "updated_at": "2026-06-19T00:43:44.462276" +} diff --git a/site/public/v1/smartphones/g50-2021-5g-standard-edition-td-lte-na-128gb/score/index.json b/site/public/v1/smartphones/g50-2021-5g-standard-edition-td-lte-na-128gb/score/index.json new file mode 100644 index 00000000000..0034628c3e7 --- /dev/null +++ b/site/public/v1/smartphones/g50-2021-5g-standard-edition-td-lte-na-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 17.5, + "value": 58.0 +} diff --git a/site/public/v1/smartphones/g710n-g7-thinq-td-lte-kr/index.json b/site/public/v1/smartphones/g710n-g7-thinq-td-lte-kr/index.json new file mode 100644 index 00000000000..9e40d3d6594 --- /dev/null +++ b/site/public/v1/smartphones/g710n-g7-thinq-td-lte-kr/index.json @@ -0,0 +1,76 @@ +{ + "id": 1528, + "slug": "g710n-g7-thinq-td-lte-kr", + "name": "G710N G7 ThinQ TD-LTE KR", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 0.0, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.342605", + "updated_at": "2026-06-19T00:43:44.342605" +} diff --git a/site/public/v1/smartphones/g710n-g7-thinq-td-lte-kr/score/index.json b/site/public/v1/smartphones/g710n-g7-thinq-td-lte-kr/score/index.json new file mode 100644 index 00000000000..21ef73989e4 --- /dev/null +++ b/site/public/v1/smartphones/g710n-g7-thinq-td-lte-kr/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 0.0, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null +} diff --git a/site/public/v1/smartphones/g8-power-lite-dual-sim-lte-a-latam-apac-xt2055-2/index.json b/site/public/v1/smartphones/g8-power-lite-dual-sim-lte-a-latam-apac-xt2055-2/index.json new file mode 100644 index 00000000000..d6377d3dac2 --- /dev/null +++ b/site/public/v1/smartphones/g8-power-lite-dual-sim-lte-a-latam-apac-xt2055-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 2077, + "slug": "g8-power-lite-dual-sim-lte-a-latam-apac-xt2055-2", + "name": "G8 Power Lite Dual SIM LTE-A LATAM APAC XT2055-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-04-03", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.410874", + "updated_at": "2026-06-19T00:43:44.410874" +} diff --git a/site/public/v1/smartphones/g8-power-lite-dual-sim-lte-a-latam-apac-xt2055-2/score/index.json b/site/public/v1/smartphones/g8-power-lite-dual-sim-lte-a-latam-apac-xt2055-2/score/index.json new file mode 100644 index 00000000000..5a744494124 --- /dev/null +++ b/site/public/v1/smartphones/g8-power-lite-dual-sim-lte-a-latam-apac-xt2055-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/g8-power-lite-dual-sim-td-lte-apac-xt2055-4/index.json b/site/public/v1/smartphones/g8-power-lite-dual-sim-td-lte-apac-xt2055-4/index.json new file mode 100644 index 00000000000..d2ee9ea69d2 --- /dev/null +++ b/site/public/v1/smartphones/g8-power-lite-dual-sim-td-lte-apac-xt2055-4/index.json @@ -0,0 +1,76 @@ +{ + "id": 2078, + "slug": "g8-power-lite-dual-sim-td-lte-apac-xt2055-4", + "name": "G8 Power Lite Dual SIM TD-LTE APAC XT2055-4", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-09-04", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.410874", + "updated_at": "2026-06-19T00:43:44.410874" +} diff --git a/site/public/v1/smartphones/g8-power-lite-dual-sim-td-lte-apac-xt2055-4/score/index.json b/site/public/v1/smartphones/g8-power-lite-dual-sim-td-lte-apac-xt2055-4/score/index.json new file mode 100644 index 00000000000..5a744494124 --- /dev/null +++ b/site/public/v1/smartphones/g8-power-lite-dual-sim-td-lte-apac-xt2055-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/g8-power-lite-dual-sim-td-lte-emea-xt2055-1/index.json b/site/public/v1/smartphones/g8-power-lite-dual-sim-td-lte-emea-xt2055-1/index.json new file mode 100644 index 00000000000..a7c554ac482 --- /dev/null +++ b/site/public/v1/smartphones/g8-power-lite-dual-sim-td-lte-emea-xt2055-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2079, + "slug": "g8-power-lite-dual-sim-td-lte-emea-xt2055-1", + "name": "G8 Power Lite Dual SIM TD-LTE EMEA XT2055-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-04-03", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.411874", + "updated_at": "2026-06-19T00:43:44.411874" +} diff --git a/site/public/v1/smartphones/g8-power-lite-dual-sim-td-lte-emea-xt2055-1/score/index.json b/site/public/v1/smartphones/g8-power-lite-dual-sim-td-lte-emea-xt2055-1/score/index.json new file mode 100644 index 00000000000..5a744494124 --- /dev/null +++ b/site/public/v1/smartphones/g8-power-lite-dual-sim-td-lte-emea-xt2055-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/g8-power-lite-lte-a-latam-xt2055-2/index.json b/site/public/v1/smartphones/g8-power-lite-lte-a-latam-xt2055-2/index.json new file mode 100644 index 00000000000..38681748955 --- /dev/null +++ b/site/public/v1/smartphones/g8-power-lite-lte-a-latam-xt2055-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 2080, + "slug": "g8-power-lite-lte-a-latam-xt2055-2", + "name": "G8 Power Lite LTE-A LATAM XT2055-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.411874", + "updated_at": "2026-06-19T00:43:44.411874" +} diff --git a/site/public/v1/smartphones/g8-power-lite-lte-a-latam-xt2055-2/score/index.json b/site/public/v1/smartphones/g8-power-lite-lte-a-latam-xt2055-2/score/index.json new file mode 100644 index 00000000000..5a744494124 --- /dev/null +++ b/site/public/v1/smartphones/g8-power-lite-lte-a-latam-xt2055-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/g8-power-lite-td-lte-emea-xt2055-1/index.json b/site/public/v1/smartphones/g8-power-lite-td-lte-emea-xt2055-1/index.json new file mode 100644 index 00000000000..e19447b3fd9 --- /dev/null +++ b/site/public/v1/smartphones/g8-power-lite-td-lte-emea-xt2055-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2081, + "slug": "g8-power-lite-td-lte-emea-xt2055-1", + "name": "G8 Power Lite TD-LTE EMEA XT2055-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-04-03", + "msrp_usd": 150, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 35.0, + "value": 58.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.411874", + "updated_at": "2026-06-19T00:43:44.411874" +} diff --git a/site/public/v1/smartphones/g8-power-lite-td-lte-emea-xt2055-1/score/index.json b/site/public/v1/smartphones/g8-power-lite-td-lte-emea-xt2055-1/score/index.json new file mode 100644 index 00000000000..398999bdb82 --- /dev/null +++ b/site/public/v1/smartphones/g8-power-lite-td-lte-emea-xt2055-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 35.0, + "value": 58.9 +} diff --git a/site/public/v1/smartphones/g8x-thinq-td-lte-jp-901lg/index.json b/site/public/v1/smartphones/g8x-thinq-td-lte-jp-901lg/index.json new file mode 100644 index 00000000000..83916cfc8be --- /dev/null +++ b/site/public/v1/smartphones/g8x-thinq-td-lte-jp-901lg/index.json @@ -0,0 +1,76 @@ +{ + "id": 1624, + "slug": "g8x-thinq-td-lte-jp-901lg", + "name": "G8X ThinQ TD-LTE JP 901LG", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-12-06", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 21.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 5.1, + "battery": 16.1, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.354605", + "updated_at": "2026-06-19T00:43:44.354605" +} diff --git a/site/public/v1/smartphones/g8x-thinq-td-lte-jp-901lg/score/index.json b/site/public/v1/smartphones/g8x-thinq-td-lte-jp-901lg/score/index.json new file mode 100644 index 00000000000..398da0cfab3 --- /dev/null +++ b/site/public/v1/smartphones/g8x-thinq-td-lte-jp-901lg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 5.1, + "battery": 16.1, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/gabb-z2-lte-us/index.json b/site/public/v1/smartphones/gabb-z2-lte-us/index.json new file mode 100644 index 00000000000..bc91a40f9d7 --- /dev/null +++ b/site/public/v1/smartphones/gabb-z2-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 6484, + "slug": "gabb-z2-lte-us", + "name": "Gabb Z2 LTE US", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2020-08-14", + "msrp_usd": 100, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2660, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 161.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": 56.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.015824", + "updated_at": "2026-06-19T00:43:45.015824" +} diff --git a/site/public/v1/smartphones/gabb-z2-lte-us/score/index.json b/site/public/v1/smartphones/gabb-z2-lte-us/score/index.json new file mode 100644 index 00000000000..5c96d84f650 --- /dev/null +++ b/site/public/v1/smartphones/gabb-z2-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": 56.6 +} diff --git a/site/public/v1/smartphones/galaxy-c7-pro/index.json b/site/public/v1/smartphones/galaxy-c7-pro/index.json new file mode 100644 index 00000000000..7fb37a572e3 --- /dev/null +++ b/site/public/v1/smartphones/galaxy-c7-pro/index.json @@ -0,0 +1,70 @@ +{ + "id": 3736, + "slug": "galaxy-c7-pro", + "name": "Galaxy C7 Pro", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 114, + "slug": "snapdragon-625", + "name": "Snapdragon 625", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-625" + }, + "release_date": "2017-01-01", + "msrp_usd": 299, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.7 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 5.4, + "performance": null, + "camera": 6.3, + "battery": 4.5, + "display": null, + "value": 52.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.637429", + "updated_at": "2026-06-19T00:43:44.637429" +} diff --git a/site/public/v1/smartphones/galaxy-c7-pro/score/index.json b/site/public/v1/smartphones/galaxy-c7-pro/score/index.json new file mode 100644 index 00000000000..b7fe9314916 --- /dev/null +++ b/site/public/v1/smartphones/galaxy-c7-pro/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 5.4, + "performance": null, + "camera": 6.3, + "battery": 4.5, + "display": null, + "value": 52.7 +} diff --git a/site/public/v1/smartphones/galaxy-j6/index.json b/site/public/v1/smartphones/galaxy-j6/index.json new file mode 100644 index 00000000000..aa505ce3795 --- /dev/null +++ b/site/public/v1/smartphones/galaxy-j6/index.json @@ -0,0 +1,70 @@ +{ + "id": 3740, + "slug": "galaxy-j6", + "name": "Galaxy J6+", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-01-01", + "msrp_usd": 169, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 4.9, + "performance": null, + "camera": 5.3, + "battery": 4.5, + "display": null, + "value": 52.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.637429", + "updated_at": "2026-06-19T00:43:44.637429" +} diff --git a/site/public/v1/smartphones/galaxy-j6/score/index.json b/site/public/v1/smartphones/galaxy-j6/score/index.json new file mode 100644 index 00000000000..512e57b6724 --- /dev/null +++ b/site/public/v1/smartphones/galaxy-j6/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 4.9, + "performance": null, + "camera": 5.3, + "battery": 4.5, + "display": null, + "value": 52.5 +} diff --git a/site/public/v1/smartphones/galaxy-j8/index.json b/site/public/v1/smartphones/galaxy-j8/index.json new file mode 100644 index 00000000000..645a16b547a --- /dev/null +++ b/site/public/v1/smartphones/galaxy-j8/index.json @@ -0,0 +1,70 @@ +{ + "id": 3741, + "slug": "galaxy-j8", + "name": "Galaxy J8", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-01-01", + "msrp_usd": 199, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 6.9, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": null, + "value": 53.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.637429", + "updated_at": "2026-06-19T00:43:44.637429" +} diff --git a/site/public/v1/smartphones/galaxy-j8/score/index.json b/site/public/v1/smartphones/galaxy-j8/score/index.json new file mode 100644 index 00000000000..be139109026 --- /dev/null +++ b/site/public/v1/smartphones/galaxy-j8/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 6.9, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": null, + "value": 53.5 +} diff --git a/site/public/v1/smartphones/h18-dual-sim-td-lte/index.json b/site/public/v1/smartphones/h18-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..12375044a18 --- /dev/null +++ b/site/public/v1/smartphones/h18-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 621, + "slug": "h18-dual-sim-td-lte", + "name": "H18 Dual SIM TD-LTE", + "brand": { + "id": 14, + "slug": "hisense", + "name": "Hisense", + "country": "CN", + "url": "/v1/brands/hisense" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-06-27", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.19, + "resolution": "720x1500", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 11.9, + "performance": 0.0, + "camera": 5.1, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.191933", + "updated_at": "2026-06-19T00:43:44.191933" +} diff --git a/site/public/v1/smartphones/h18-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/h18-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..00be0dd0368 --- /dev/null +++ b/site/public/v1/smartphones/h18-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 11.9, + "performance": 0.0, + "camera": 5.1, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/h20-dual-sim-td-lte-hlte510t-128gb/index.json b/site/public/v1/smartphones/h20-dual-sim-td-lte-hlte510t-128gb/index.json new file mode 100644 index 00000000000..b8da4032c63 --- /dev/null +++ b/site/public/v1/smartphones/h20-dual-sim-td-lte-hlte510t-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 622, + "slug": "h20-dual-sim-td-lte-hlte510t-128gb", + "name": "H20 Dual SIM TD-LTE HLTE510T 128GB", + "brand": { + "id": 14, + "slug": "hisense", + "name": "Hisense", + "country": "CN", + "url": "/v1/brands/hisense" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2220", + "type": "Color IPS TFT LCD display", + "ppi": 423 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 20.2 + } + ], + "battery_mah": 3020, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": 1.5, + "camera": 5.0, + "battery": 0.3, + "display": 47.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.191933", + "updated_at": "2026-06-19T00:43:44.191933" +} diff --git a/site/public/v1/smartphones/h20-dual-sim-td-lte-hlte510t-128gb/score/index.json b/site/public/v1/smartphones/h20-dual-sim-td-lte-hlte510t-128gb/score/index.json new file mode 100644 index 00000000000..8d77c9d0d99 --- /dev/null +++ b/site/public/v1/smartphones/h20-dual-sim-td-lte-hlte510t-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": 1.5, + "camera": 5.0, + "battery": 0.3, + "display": 47.3, + "value": null +} diff --git a/site/public/v1/smartphones/h20-dual-sim-td-lte-hlte510t-64gb/index.json b/site/public/v1/smartphones/h20-dual-sim-td-lte-hlte510t-64gb/index.json new file mode 100644 index 00000000000..0f7c2d051f6 --- /dev/null +++ b/site/public/v1/smartphones/h20-dual-sim-td-lte-hlte510t-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 623, + "slug": "h20-dual-sim-td-lte-hlte510t-64gb", + "name": "H20 Dual SIM TD-LTE HLTE510T 64GB", + "brand": { + "id": 14, + "slug": "hisense", + "name": "Hisense", + "country": "CN", + "url": "/v1/brands/hisense" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2220", + "type": "Color IPS TFT LCD display", + "ppi": 423 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 20.2 + } + ], + "battery_mah": 3020, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": 1.5, + "camera": 5.0, + "battery": 0.3, + "display": 47.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.191933", + "updated_at": "2026-06-19T00:43:44.191933" +} diff --git a/site/public/v1/smartphones/h20-dual-sim-td-lte-hlte510t-64gb/score/index.json b/site/public/v1/smartphones/h20-dual-sim-td-lte-hlte510t-64gb/score/index.json new file mode 100644 index 00000000000..8d77c9d0d99 --- /dev/null +++ b/site/public/v1/smartphones/h20-dual-sim-td-lte-hlte510t-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": 1.5, + "camera": 5.0, + "battery": 0.3, + "display": 47.3, + "value": null +} diff --git a/site/public/v1/smartphones/h873u-g6-lte-a-128gb-g6-plus/index.json b/site/public/v1/smartphones/h873u-g6-lte-a-128gb-g6-plus/index.json new file mode 100644 index 00000000000..92f2322af2b --- /dev/null +++ b/site/public/v1/smartphones/h873u-g6-lte-a-128gb-g6-plus/index.json @@ -0,0 +1,76 @@ +{ + "id": 1515, + "slug": "h873u-g6-lte-a-128gb-g6-plus", + "name": "H873U G6+ LTE-A 128GB / G6 Plus", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 116, + "slug": "snapdragon-821", + "name": "Snapdragon 821", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 530", + "url": "/v1/socs/snapdragon-821" + }, + "release_date": "2017-12-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.7, + "resolution": "1440x2880", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 11.8, + "camera": 5.3, + "battery": 4.5, + "display": 61.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.341605", + "updated_at": "2026-06-19T00:43:44.341605" +} diff --git a/site/public/v1/smartphones/h873u-g6-lte-a-128gb-g6-plus/score/index.json b/site/public/v1/smartphones/h873u-g6-lte-a-128gb-g6-plus/score/index.json new file mode 100644 index 00000000000..1b6b77f56a2 --- /dev/null +++ b/site/public/v1/smartphones/h873u-g6-lte-a-128gb-g6-plus/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 11.8, + "camera": 5.3, + "battery": 4.5, + "display": 61.4, + "value": null +} diff --git a/site/public/v1/smartphones/homtom-zoji-z9-dual-sim-td-lte-p270/index.json b/site/public/v1/smartphones/homtom-zoji-z9-dual-sim-td-lte-p270/index.json new file mode 100644 index 00000000000..90671d87c51 --- /dev/null +++ b/site/public/v1/smartphones/homtom-zoji-z9-dual-sim-td-lte-p270/index.json @@ -0,0 +1,76 @@ +{ + "id": 507, + "slug": "homtom-zoji-z9-dual-sim-td-lte-p270", + "name": "HOMTOM Zoji Z9 Dual SIM TD-LTE P270", + "brand": { + "id": 11, + "slug": "doogee", + "name": "DOOGEE", + "country": "CN", + "url": "/v1/brands/doogee" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2018-07-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 280.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 6.4, + "battery": 37.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.176932", + "updated_at": "2026-06-19T00:43:44.176932" +} diff --git a/site/public/v1/smartphones/homtom-zoji-z9-dual-sim-td-lte-p270/score/index.json b/site/public/v1/smartphones/homtom-zoji-z9-dual-sim-td-lte-p270/score/index.json new file mode 100644 index 00000000000..9de6fd79983 --- /dev/null +++ b/site/public/v1/smartphones/homtom-zoji-z9-dual-sim-td-lte-p270/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 6.4, + "battery": 37.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-10-4g-premium-edition-dual-sim-td-lte-cn-col-tl10-128gb/index.json b/site/public/v1/smartphones/honor-10-4g-premium-edition-dual-sim-td-lte-cn-col-tl10-128gb/index.json new file mode 100644 index 00000000000..9a45d2cdc67 --- /dev/null +++ b/site/public/v1/smartphones/honor-10-4g-premium-edition-dual-sim-td-lte-cn-col-tl10-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 826, + "slug": "honor-10-4g-premium-edition-dual-sim-td-lte-cn-col-tl10-128gb", + "name": "Honor 10 4G+ Premium Edition Dual SIM TD-LTE CN COL-TL10 128GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 153.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 26.0, + "camera": 6.3, + "battery": 6.0, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.221932", + "updated_at": "2026-06-19T00:43:44.221932" +} diff --git a/site/public/v1/smartphones/honor-10-4g-premium-edition-dual-sim-td-lte-cn-col-tl10-128gb/score/index.json b/site/public/v1/smartphones/honor-10-4g-premium-edition-dual-sim-td-lte-cn-col-tl10-128gb/score/index.json new file mode 100644 index 00000000000..b66756f80e3 --- /dev/null +++ b/site/public/v1/smartphones/honor-10-4g-premium-edition-dual-sim-td-lte-cn-col-tl10-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 26.0, + "camera": 6.3, + "battery": 6.0, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/honor-10-global-dual-sim-td-lte-128gb-col-l29/index.json b/site/public/v1/smartphones/honor-10-global-dual-sim-td-lte-128gb-col-l29/index.json new file mode 100644 index 00000000000..93ed690dde1 --- /dev/null +++ b/site/public/v1/smartphones/honor-10-global-dual-sim-td-lte-128gb-col-l29/index.json @@ -0,0 +1,76 @@ +{ + "id": 827, + "slug": "honor-10-global-dual-sim-td-lte-128gb-col-l29", + "name": "Honor 10 Global Dual SIM TD-LTE 128GB COL-L29", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-05-16", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 153.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 24.5, + "camera": 6.3, + "battery": 6.0, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.221932", + "updated_at": "2026-06-19T00:43:44.221932" +} diff --git a/site/public/v1/smartphones/honor-10-global-dual-sim-td-lte-128gb-col-l29/score/index.json b/site/public/v1/smartphones/honor-10-global-dual-sim-td-lte-128gb-col-l29/score/index.json new file mode 100644 index 00000000000..f4178f89adb --- /dev/null +++ b/site/public/v1/smartphones/honor-10-global-dual-sim-td-lte-128gb-col-l29/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 24.5, + "camera": 6.3, + "battery": 6.0, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/honor-10-global-dual-sim-td-lte-64gb-col-l29/index.json b/site/public/v1/smartphones/honor-10-global-dual-sim-td-lte-64gb-col-l29/index.json new file mode 100644 index 00000000000..a378123e5af --- /dev/null +++ b/site/public/v1/smartphones/honor-10-global-dual-sim-td-lte-64gb-col-l29/index.json @@ -0,0 +1,76 @@ +{ + "id": 828, + "slug": "honor-10-global-dual-sim-td-lte-64gb-col-l29", + "name": "Honor 10 Global Dual SIM TD-LTE 64GB COL-L29", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-05-16", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 153.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 24.5, + "camera": 6.3, + "battery": 6.0, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.221932", + "updated_at": "2026-06-19T00:43:44.221932" +} diff --git a/site/public/v1/smartphones/honor-10-global-dual-sim-td-lte-64gb-col-l29/score/index.json b/site/public/v1/smartphones/honor-10-global-dual-sim-td-lte-64gb-col-l29/score/index.json new file mode 100644 index 00000000000..f4178f89adb --- /dev/null +++ b/site/public/v1/smartphones/honor-10-global-dual-sim-td-lte-64gb-col-l29/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 24.5, + "camera": 6.3, + "battery": 6.0, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/honor-10-gt-dual-sim-td-lte-cn/index.json b/site/public/v1/smartphones/honor-10-gt-dual-sim-td-lte-cn/index.json new file mode 100644 index 00000000000..b8e77eb25d4 --- /dev/null +++ b/site/public/v1/smartphones/honor-10-gt-dual-sim-td-lte-cn/index.json @@ -0,0 +1,76 @@ +{ + "id": 829, + "slug": "honor-10-gt-dual-sim-td-lte-cn", + "name": "Honor 10 GT Dual SIM TD-LTE CN", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-07-24", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 153.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 27.5, + "camera": 6.3, + "battery": 6.0, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.221932", + "updated_at": "2026-06-19T00:43:44.221932" +} diff --git a/site/public/v1/smartphones/honor-10-gt-dual-sim-td-lte-cn/score/index.json b/site/public/v1/smartphones/honor-10-gt-dual-sim-td-lte-cn/score/index.json new file mode 100644 index 00000000000..9d42a870cda --- /dev/null +++ b/site/public/v1/smartphones/honor-10-gt-dual-sim-td-lte-cn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 27.5, + "camera": 6.3, + "battery": 6.0, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/honor-10-lite-dual-sim-td-lte-apac-64gb-hry-lx2-hry-l22/index.json b/site/public/v1/smartphones/honor-10-lite-dual-sim-td-lte-apac-64gb-hry-lx2-hry-l22/index.json new file mode 100644 index 00000000000..31eeb629c7f --- /dev/null +++ b/site/public/v1/smartphones/honor-10-lite-dual-sim-td-lte-apac-64gb-hry-lx2-hry-l22/index.json @@ -0,0 +1,76 @@ +{ + "id": 976, + "slug": "honor-10-lite-dual-sim-td-lte-apac-64gb-hry-lx2-hry-l22", + "name": "Honor 10 Lite Dual SIM TD-LTE APAC 64GB HRY-LX2 / HRY-L22", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-01-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 0.0, + "camera": 5.3, + "battery": 6.0, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.243054", + "updated_at": "2026-06-19T00:43:44.243054" +} diff --git a/site/public/v1/smartphones/honor-10-lite-dual-sim-td-lte-apac-64gb-hry-lx2-hry-l22/score/index.json b/site/public/v1/smartphones/honor-10-lite-dual-sim-td-lte-apac-64gb-hry-lx2-hry-l22/score/index.json new file mode 100644 index 00000000000..9e92c616aaf --- /dev/null +++ b/site/public/v1/smartphones/honor-10-lite-dual-sim-td-lte-apac-64gb-hry-lx2-hry-l22/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 0.0, + "camera": 5.3, + "battery": 6.0, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/honor-10-lite-dual-sim-td-lte-emea-64gb-hry-lx1-hry-l21/index.json b/site/public/v1/smartphones/honor-10-lite-dual-sim-td-lte-emea-64gb-hry-lx1-hry-l21/index.json new file mode 100644 index 00000000000..f1e8b2717f3 --- /dev/null +++ b/site/public/v1/smartphones/honor-10-lite-dual-sim-td-lte-emea-64gb-hry-lx1-hry-l21/index.json @@ -0,0 +1,76 @@ +{ + "id": 977, + "slug": "honor-10-lite-dual-sim-td-lte-emea-64gb-hry-lx1-hry-l21", + "name": "Honor 10 Lite Dual SIM TD-LTE EMEA 64GB HRY-LX1 / HRY-L21", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-01-11", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 0.0, + "camera": 5.3, + "battery": 6.0, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.243054", + "updated_at": "2026-06-19T00:43:44.243054" +} diff --git a/site/public/v1/smartphones/honor-10-lite-dual-sim-td-lte-emea-64gb-hry-lx1-hry-l21/score/index.json b/site/public/v1/smartphones/honor-10-lite-dual-sim-td-lte-emea-64gb-hry-lx1-hry-l21/score/index.json new file mode 100644 index 00000000000..9e92c616aaf --- /dev/null +++ b/site/public/v1/smartphones/honor-10-lite-dual-sim-td-lte-emea-64gb-hry-lx1-hry-l21/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 0.0, + "camera": 5.3, + "battery": 6.0, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/honor-10-lite-premium-edition-dual-sim-td-lte-cn-128gb-hry-al00/index.json b/site/public/v1/smartphones/honor-10-lite-premium-edition-dual-sim-td-lte-cn-128gb-hry-al00/index.json new file mode 100644 index 00000000000..2173a96be7d --- /dev/null +++ b/site/public/v1/smartphones/honor-10-lite-premium-edition-dual-sim-td-lte-cn-128gb-hry-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 830, + "slug": "honor-10-lite-premium-edition-dual-sim-td-lte-cn-128gb-hry-al00", + "name": "Honor 10 Lite Premium Edition Dual SIM TD-LTE CN 128GB HRY-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2018-11-22", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 1.5, + "camera": 5.3, + "battery": 6.0, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.221932", + "updated_at": "2026-06-19T00:43:44.221932" +} diff --git a/site/public/v1/smartphones/honor-10-lite-premium-edition-dual-sim-td-lte-cn-128gb-hry-al00/score/index.json b/site/public/v1/smartphones/honor-10-lite-premium-edition-dual-sim-td-lte-cn-128gb-hry-al00/score/index.json new file mode 100644 index 00000000000..0aac23b743e --- /dev/null +++ b/site/public/v1/smartphones/honor-10-lite-premium-edition-dual-sim-td-lte-cn-128gb-hry-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 1.5, + "camera": 5.3, + "battery": 6.0, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/honor-10-lite-premium-edition-dual-sim-td-lte-cn-64gb-hry-tl00-honor-10-youth/index.json b/site/public/v1/smartphones/honor-10-lite-premium-edition-dual-sim-td-lte-cn-64gb-hry-tl00-honor-10-youth/index.json new file mode 100644 index 00000000000..60135676e74 --- /dev/null +++ b/site/public/v1/smartphones/honor-10-lite-premium-edition-dual-sim-td-lte-cn-64gb-hry-tl00-honor-10-youth/index.json @@ -0,0 +1,76 @@ +{ + "id": 831, + "slug": "honor-10-lite-premium-edition-dual-sim-td-lte-cn-64gb-hry-tl00-honor-10-youth", + "name": "Honor 10 Lite Premium Edition Dual SIM TD-LTE CN 64GB HRY-TL00 / Honor 10 Youth", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2018-11-22", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 1.5, + "camera": 5.3, + "battery": 6.0, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.222933", + "updated_at": "2026-06-19T00:43:44.222933" +} diff --git a/site/public/v1/smartphones/honor-10-lite-premium-edition-dual-sim-td-lte-cn-64gb-hry-tl00-honor-10-youth/score/index.json b/site/public/v1/smartphones/honor-10-lite-premium-edition-dual-sim-td-lte-cn-64gb-hry-tl00-honor-10-youth/score/index.json new file mode 100644 index 00000000000..0aac23b743e --- /dev/null +++ b/site/public/v1/smartphones/honor-10-lite-premium-edition-dual-sim-td-lte-cn-64gb-hry-tl00-honor-10-youth/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 1.5, + "camera": 5.3, + "battery": 6.0, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/honor-10-lite-premium-edition-dual-sim-td-lte-cn-in-64gb-hry-al00a-honor-10-youth/index.json b/site/public/v1/smartphones/honor-10-lite-premium-edition-dual-sim-td-lte-cn-in-64gb-hry-al00a-honor-10-youth/index.json new file mode 100644 index 00000000000..e3f68bba7dd --- /dev/null +++ b/site/public/v1/smartphones/honor-10-lite-premium-edition-dual-sim-td-lte-cn-in-64gb-hry-al00a-honor-10-youth/index.json @@ -0,0 +1,76 @@ +{ + "id": 832, + "slug": "honor-10-lite-premium-edition-dual-sim-td-lte-cn-in-64gb-hry-al00a-honor-10-youth", + "name": "Honor 10 Lite Premium Edition Dual SIM TD-LTE CN IN 64GB HRY-AL00a / Honor 10 Youth", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2018-11-22", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 1.5, + "camera": 5.3, + "battery": 6.0, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.222933", + "updated_at": "2026-06-19T00:43:44.222933" +} diff --git a/site/public/v1/smartphones/honor-10-lite-premium-edition-dual-sim-td-lte-cn-in-64gb-hry-al00a-honor-10-youth/score/index.json b/site/public/v1/smartphones/honor-10-lite-premium-edition-dual-sim-td-lte-cn-in-64gb-hry-al00a-honor-10-youth/score/index.json new file mode 100644 index 00000000000..0aac23b743e --- /dev/null +++ b/site/public/v1/smartphones/honor-10-lite-premium-edition-dual-sim-td-lte-cn-in-64gb-hry-al00a-honor-10-youth/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 1.5, + "camera": 5.3, + "battery": 6.0, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/honor-10-lite-standard-edition-dual-sim-td-lte-cn-in-32gb-hry-al00/index.json b/site/public/v1/smartphones/honor-10-lite-standard-edition-dual-sim-td-lte-cn-in-32gb-hry-al00/index.json new file mode 100644 index 00000000000..64b53aef6b3 --- /dev/null +++ b/site/public/v1/smartphones/honor-10-lite-standard-edition-dual-sim-td-lte-cn-in-32gb-hry-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 978, + "slug": "honor-10-lite-standard-edition-dual-sim-td-lte-cn-in-32gb-hry-al00", + "name": "Honor 10 Lite Standard Edition Dual SIM TD-LTE CN IN 32GB HRY-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-03-17", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 0.0, + "camera": 5.3, + "battery": 6.0, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.244570", + "updated_at": "2026-06-19T00:43:44.244570" +} diff --git a/site/public/v1/smartphones/honor-10-lite-standard-edition-dual-sim-td-lte-cn-in-32gb-hry-al00/score/index.json b/site/public/v1/smartphones/honor-10-lite-standard-edition-dual-sim-td-lte-cn-in-32gb-hry-al00/score/index.json new file mode 100644 index 00000000000..9e92c616aaf --- /dev/null +++ b/site/public/v1/smartphones/honor-10-lite-standard-edition-dual-sim-td-lte-cn-in-32gb-hry-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 0.0, + "camera": 5.3, + "battery": 6.0, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/honor-10-lite-standard-edition-dual-sim-td-lte-cn-in-64gb-hry-al00/index.json b/site/public/v1/smartphones/honor-10-lite-standard-edition-dual-sim-td-lte-cn-in-64gb-hry-al00/index.json new file mode 100644 index 00000000000..f02b913b24d --- /dev/null +++ b/site/public/v1/smartphones/honor-10-lite-standard-edition-dual-sim-td-lte-cn-in-64gb-hry-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 833, + "slug": "honor-10-lite-standard-edition-dual-sim-td-lte-cn-in-64gb-hry-al00", + "name": "Honor 10 Lite Standard Edition Dual SIM TD-LTE CN IN 64GB HRY-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2018-11-22", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 0.0, + "camera": 5.3, + "battery": 6.0, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.222933", + "updated_at": "2026-06-19T00:43:44.222933" +} diff --git a/site/public/v1/smartphones/honor-10-lite-standard-edition-dual-sim-td-lte-cn-in-64gb-hry-al00/score/index.json b/site/public/v1/smartphones/honor-10-lite-standard-edition-dual-sim-td-lte-cn-in-64gb-hry-al00/score/index.json new file mode 100644 index 00000000000..9e92c616aaf --- /dev/null +++ b/site/public/v1/smartphones/honor-10-lite-standard-edition-dual-sim-td-lte-cn-in-64gb-hry-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 0.0, + "camera": 5.3, + "battery": 6.0, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/honor-10-premium-edition-dual-sim-td-lte-cn-col-al10-128gb/index.json b/site/public/v1/smartphones/honor-10-premium-edition-dual-sim-td-lte-cn-col-al10-128gb/index.json new file mode 100644 index 00000000000..566eb97a467 --- /dev/null +++ b/site/public/v1/smartphones/honor-10-premium-edition-dual-sim-td-lte-cn-col-al10-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 834, + "slug": "honor-10-premium-edition-dual-sim-td-lte-cn-col-al10-128gb", + "name": "Honor 10 Premium Edition Dual SIM TD-LTE CN COL-AL10 128GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-04-27", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 153.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 26.0, + "camera": 6.3, + "battery": 6.0, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.222933", + "updated_at": "2026-06-19T00:43:44.222933" +} diff --git a/site/public/v1/smartphones/honor-10-premium-edition-dual-sim-td-lte-cn-col-al10-128gb/score/index.json b/site/public/v1/smartphones/honor-10-premium-edition-dual-sim-td-lte-cn-col-al10-128gb/score/index.json new file mode 100644 index 00000000000..b66756f80e3 --- /dev/null +++ b/site/public/v1/smartphones/honor-10-premium-edition-dual-sim-td-lte-cn-col-al10-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 26.0, + "camera": 6.3, + "battery": 6.0, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/honor-10-premium-edition-dual-sim-td-lte-cn-col-al10-64gb/index.json b/site/public/v1/smartphones/honor-10-premium-edition-dual-sim-td-lte-cn-col-al10-64gb/index.json new file mode 100644 index 00000000000..abaff5f1f0f --- /dev/null +++ b/site/public/v1/smartphones/honor-10-premium-edition-dual-sim-td-lte-cn-col-al10-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 835, + "slug": "honor-10-premium-edition-dual-sim-td-lte-cn-col-al10-64gb", + "name": "Honor 10 Premium Edition Dual SIM TD-LTE CN COL-AL10 64GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-04-27", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 153.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 26.0, + "camera": 6.3, + "battery": 6.0, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.222933", + "updated_at": "2026-06-19T00:43:44.222933" +} diff --git a/site/public/v1/smartphones/honor-10-premium-edition-dual-sim-td-lte-cn-col-al10-64gb/score/index.json b/site/public/v1/smartphones/honor-10-premium-edition-dual-sim-td-lte-cn-col-al10-64gb/score/index.json new file mode 100644 index 00000000000..b66756f80e3 --- /dev/null +++ b/site/public/v1/smartphones/honor-10-premium-edition-dual-sim-td-lte-cn-col-al10-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 26.0, + "camera": 6.3, + "battery": 6.0, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/honor-10-standard-edition-dual-sim-td-lte-cn-col-al00-64gb/index.json b/site/public/v1/smartphones/honor-10-standard-edition-dual-sim-td-lte-cn-col-al00-64gb/index.json new file mode 100644 index 00000000000..8969536a030 --- /dev/null +++ b/site/public/v1/smartphones/honor-10-standard-edition-dual-sim-td-lte-cn-col-al00-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 836, + "slug": "honor-10-standard-edition-dual-sim-td-lte-cn-col-al00-64gb", + "name": "Honor 10 Standard Edition Dual SIM TD-LTE CN COL-AL00 64GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-04-27", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 153.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 24.5, + "camera": 6.3, + "battery": 6.0, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.222933", + "updated_at": "2026-06-19T00:43:44.222933" +} diff --git a/site/public/v1/smartphones/honor-10-standard-edition-dual-sim-td-lte-cn-col-al00-64gb/score/index.json b/site/public/v1/smartphones/honor-10-standard-edition-dual-sim-td-lte-cn-col-al00-64gb/score/index.json new file mode 100644 index 00000000000..f4178f89adb --- /dev/null +++ b/site/public/v1/smartphones/honor-10-standard-edition-dual-sim-td-lte-cn-col-al00-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 24.5, + "camera": 6.3, + "battery": 6.0, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/honor-10i-dual-sim-lte-a-emea-128gb-hry-lx1t-honor-20-lite-hry-l21t/index.json b/site/public/v1/smartphones/honor-10i-dual-sim-lte-a-emea-128gb-hry-lx1t-honor-20-lite-hry-l21t/index.json new file mode 100644 index 00000000000..57b729f93c8 --- /dev/null +++ b/site/public/v1/smartphones/honor-10i-dual-sim-lte-a-emea-128gb-hry-lx1t-honor-20-lite-hry-l21t/index.json @@ -0,0 +1,76 @@ +{ + "id": 979, + "slug": "honor-10i-dual-sim-lte-a-emea-128gb-hry-lx1t-honor-20-lite-hry-l21t", + "name": "Honor 10i Dual SIM LTE-A EMEA 128GB HRY-LX1T / Honor 20 Lite HRY-L21T", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.3, + "performance": 0.0, + "camera": 8.8, + "battery": 6.0, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.244570", + "updated_at": "2026-06-19T00:43:44.244570" +} diff --git a/site/public/v1/smartphones/honor-10i-dual-sim-lte-a-emea-128gb-hry-lx1t-honor-20-lite-hry-l21t/score/index.json b/site/public/v1/smartphones/honor-10i-dual-sim-lte-a-emea-128gb-hry-lx1t-honor-20-lite-hry-l21t/score/index.json new file mode 100644 index 00000000000..584fb3174b2 --- /dev/null +++ b/site/public/v1/smartphones/honor-10i-dual-sim-lte-a-emea-128gb-hry-lx1t-honor-20-lite-hry-l21t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.3, + "performance": 0.0, + "camera": 8.8, + "battery": 6.0, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/honor-10x-lite-dual-sim-td-lte-emea-128gb-dnn-lx9-dnn-l29/index.json b/site/public/v1/smartphones/honor-10x-lite-dual-sim-td-lte-emea-128gb-dnn-lx9-dnn-l29/index.json new file mode 100644 index 00000000000..23caa99ae8e --- /dev/null +++ b/site/public/v1/smartphones/honor-10x-lite-dual-sim-td-lte-emea-128gb-dnn-lx9-dnn-l29/index.json @@ -0,0 +1,76 @@ +{ + "id": 1132, + "slug": "honor-10x-lite-dual-sim-td-lte-emea-128gb-dnn-lx9-dnn-l29", + "name": "Honor 10X Lite Dual SIM TD-LTE EMEA 128GB DNN-LX9 / DNN-L29", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 33, + "slug": "kirin-710a", + "name": "Kirin 710A", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51", + "url": "/v1/socs/kirin-710a" + }, + "release_date": "2020-11-19", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 0.0, + "camera": 16.5, + "battery": 31.4, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.266097", + "updated_at": "2026-06-19T00:43:44.266097" +} diff --git a/site/public/v1/smartphones/honor-10x-lite-dual-sim-td-lte-emea-128gb-dnn-lx9-dnn-l29/score/index.json b/site/public/v1/smartphones/honor-10x-lite-dual-sim-td-lte-emea-128gb-dnn-lx9-dnn-l29/score/index.json new file mode 100644 index 00000000000..6584fa20502 --- /dev/null +++ b/site/public/v1/smartphones/honor-10x-lite-dual-sim-td-lte-emea-128gb-dnn-lx9-dnn-l29/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 0.0, + "camera": 16.5, + "battery": 31.4, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/honor-20-4g-dual-sim-td-lte-cn-128gb-yal-tl00/index.json b/site/public/v1/smartphones/honor-20-4g-dual-sim-td-lte-cn-128gb-yal-tl00/index.json new file mode 100644 index 00000000000..3247855a667 --- /dev/null +++ b/site/public/v1/smartphones/honor-20-4g-dual-sim-td-lte-cn-128gb-yal-tl00/index.json @@ -0,0 +1,76 @@ +{ + "id": 980, + "slug": "honor-20-4g-dual-sim-td-lte-cn-128gb-yal-tl00", + "name": "Honor 20 4G+ Dual SIM TD-LTE CN 128GB YAL-TL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-06-07", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3750, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.8, + "performance": 56.0, + "camera": 16.5, + "battery": 12.6, + "display": 46.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.244570", + "updated_at": "2026-06-19T00:43:44.244570" +} diff --git a/site/public/v1/smartphones/honor-20-4g-dual-sim-td-lte-cn-128gb-yal-tl00/score/index.json b/site/public/v1/smartphones/honor-20-4g-dual-sim-td-lte-cn-128gb-yal-tl00/score/index.json new file mode 100644 index 00000000000..65a9d3becda --- /dev/null +++ b/site/public/v1/smartphones/honor-20-4g-dual-sim-td-lte-cn-128gb-yal-tl00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.8, + "performance": 56.0, + "camera": 16.5, + "battery": 12.6, + "display": 46.2, + "value": null +} diff --git a/site/public/v1/smartphones/honor-20-dual-sim-td-lte-cn-128gb-yal-al00/index.json b/site/public/v1/smartphones/honor-20-dual-sim-td-lte-cn-128gb-yal-al00/index.json new file mode 100644 index 00000000000..67797b70fcd --- /dev/null +++ b/site/public/v1/smartphones/honor-20-dual-sim-td-lte-cn-128gb-yal-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 981, + "slug": "honor-20-dual-sim-td-lte-cn-128gb-yal-al00", + "name": "Honor 20 Dual SIM TD-LTE CN 128GB YAL-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-06-07", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3750, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.8, + "performance": 56.0, + "camera": 16.5, + "battery": 12.6, + "display": 46.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.244570", + "updated_at": "2026-06-19T00:43:44.244570" +} diff --git a/site/public/v1/smartphones/honor-20-dual-sim-td-lte-cn-128gb-yal-al00/score/index.json b/site/public/v1/smartphones/honor-20-dual-sim-td-lte-cn-128gb-yal-al00/score/index.json new file mode 100644 index 00000000000..65a9d3becda --- /dev/null +++ b/site/public/v1/smartphones/honor-20-dual-sim-td-lte-cn-128gb-yal-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.8, + "performance": 56.0, + "camera": 16.5, + "battery": 12.6, + "display": 46.2, + "value": null +} diff --git a/site/public/v1/smartphones/honor-20-dual-sim-td-lte-cn-256gb-yal-al00/index.json b/site/public/v1/smartphones/honor-20-dual-sim-td-lte-cn-256gb-yal-al00/index.json new file mode 100644 index 00000000000..9299e28cb5b --- /dev/null +++ b/site/public/v1/smartphones/honor-20-dual-sim-td-lte-cn-256gb-yal-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 982, + "slug": "honor-20-dual-sim-td-lte-cn-256gb-yal-al00", + "name": "Honor 20 Dual SIM TD-LTE CN 256GB YAL-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-06-07", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3750, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.8, + "performance": 56.0, + "camera": 16.5, + "battery": 12.6, + "display": 46.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.244570", + "updated_at": "2026-06-19T00:43:44.244570" +} diff --git a/site/public/v1/smartphones/honor-20-dual-sim-td-lte-cn-256gb-yal-al00/score/index.json b/site/public/v1/smartphones/honor-20-dual-sim-td-lte-cn-256gb-yal-al00/score/index.json new file mode 100644 index 00000000000..65a9d3becda --- /dev/null +++ b/site/public/v1/smartphones/honor-20-dual-sim-td-lte-cn-256gb-yal-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.8, + "performance": 56.0, + "camera": 16.5, + "battery": 12.6, + "display": 46.2, + "value": null +} diff --git a/site/public/v1/smartphones/honor-20-pro-4g-dual-sim-td-lte-cn-256gb-yal-tl10/index.json b/site/public/v1/smartphones/honor-20-pro-4g-dual-sim-td-lte-cn-256gb-yal-tl10/index.json new file mode 100644 index 00000000000..5fe4b510254 --- /dev/null +++ b/site/public/v1/smartphones/honor-20-pro-4g-dual-sim-td-lte-cn-256gb-yal-tl10/index.json @@ -0,0 +1,76 @@ +{ + "id": 983, + "slug": "honor-20-pro-4g-dual-sim-td-lte-cn-256gb-yal-tl10", + "name": "Honor 20 Pro 4G+ Dual SIM TD-LTE CN 256GB YAL-TL10", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-06-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.8, + "performance": 56.0, + "camera": 16.5, + "battery": 16.3, + "display": 46.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.244570", + "updated_at": "2026-06-19T00:43:44.244570" +} diff --git a/site/public/v1/smartphones/honor-20-pro-4g-dual-sim-td-lte-cn-256gb-yal-tl10/score/index.json b/site/public/v1/smartphones/honor-20-pro-4g-dual-sim-td-lte-cn-256gb-yal-tl10/score/index.json new file mode 100644 index 00000000000..31ef5f1573c --- /dev/null +++ b/site/public/v1/smartphones/honor-20-pro-4g-dual-sim-td-lte-cn-256gb-yal-tl10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.8, + "performance": 56.0, + "camera": 16.5, + "battery": 16.3, + "display": 46.2, + "value": null +} diff --git a/site/public/v1/smartphones/honor-20-pro-dual-sim-td-lte-cn-128gb-yal-al10/index.json b/site/public/v1/smartphones/honor-20-pro-dual-sim-td-lte-cn-128gb-yal-al10/index.json new file mode 100644 index 00000000000..6d367e400f9 --- /dev/null +++ b/site/public/v1/smartphones/honor-20-pro-dual-sim-td-lte-cn-128gb-yal-al10/index.json @@ -0,0 +1,76 @@ +{ + "id": 984, + "slug": "honor-20-pro-dual-sim-td-lte-cn-128gb-yal-al10", + "name": "Honor 20 Pro Dual SIM TD-LTE CN 128GB YAL-AL10", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-06-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.8, + "performance": 56.0, + "camera": 16.5, + "battery": 16.3, + "display": 46.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.244570", + "updated_at": "2026-06-19T00:43:44.244570" +} diff --git a/site/public/v1/smartphones/honor-20-pro-dual-sim-td-lte-cn-128gb-yal-al10/score/index.json b/site/public/v1/smartphones/honor-20-pro-dual-sim-td-lte-cn-128gb-yal-al10/score/index.json new file mode 100644 index 00000000000..31ef5f1573c --- /dev/null +++ b/site/public/v1/smartphones/honor-20-pro-dual-sim-td-lte-cn-128gb-yal-al10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.8, + "performance": 56.0, + "camera": 16.5, + "battery": 16.3, + "display": 46.2, + "value": null +} diff --git a/site/public/v1/smartphones/honor-20-pro-dual-sim-td-lte-cn-256gb-yal-al10/index.json b/site/public/v1/smartphones/honor-20-pro-dual-sim-td-lte-cn-256gb-yal-al10/index.json new file mode 100644 index 00000000000..23b6949cbdc --- /dev/null +++ b/site/public/v1/smartphones/honor-20-pro-dual-sim-td-lte-cn-256gb-yal-al10/index.json @@ -0,0 +1,76 @@ +{ + "id": 985, + "slug": "honor-20-pro-dual-sim-td-lte-cn-256gb-yal-al10", + "name": "Honor 20 Pro Dual SIM TD-LTE CN 256GB YAL-AL10", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-06-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.8, + "performance": 56.0, + "camera": 16.5, + "battery": 16.3, + "display": 46.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.244570", + "updated_at": "2026-06-19T00:43:44.244570" +} diff --git a/site/public/v1/smartphones/honor-20-pro-dual-sim-td-lte-cn-256gb-yal-al10/score/index.json b/site/public/v1/smartphones/honor-20-pro-dual-sim-td-lte-cn-256gb-yal-al10/score/index.json new file mode 100644 index 00000000000..31ef5f1573c --- /dev/null +++ b/site/public/v1/smartphones/honor-20-pro-dual-sim-td-lte-cn-256gb-yal-al10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.8, + "performance": 56.0, + "camera": 16.5, + "battery": 16.3, + "display": 46.2, + "value": null +} diff --git a/site/public/v1/smartphones/honor-20-pro-global-dual-sim-td-lte-256gb-yal-l41/index.json b/site/public/v1/smartphones/honor-20-pro-global-dual-sim-td-lte-256gb-yal-l41/index.json new file mode 100644 index 00000000000..e9a50805a56 --- /dev/null +++ b/site/public/v1/smartphones/honor-20-pro-global-dual-sim-td-lte-256gb-yal-l41/index.json @@ -0,0 +1,76 @@ +{ + "id": 986, + "slug": "honor-20-pro-global-dual-sim-td-lte-256gb-yal-l41", + "name": "Honor 20 Pro Global Dual SIM TD-LTE 256GB YAL-L41", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-07-29", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.8, + "performance": 56.0, + "camera": 16.5, + "battery": 16.3, + "display": 46.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.244570", + "updated_at": "2026-06-19T00:43:44.244570" +} diff --git a/site/public/v1/smartphones/honor-20-pro-global-dual-sim-td-lte-256gb-yal-l41/score/index.json b/site/public/v1/smartphones/honor-20-pro-global-dual-sim-td-lte-256gb-yal-l41/score/index.json new file mode 100644 index 00000000000..31ef5f1573c --- /dev/null +++ b/site/public/v1/smartphones/honor-20-pro-global-dual-sim-td-lte-256gb-yal-l41/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.8, + "performance": 56.0, + "camera": 16.5, + "battery": 16.3, + "display": 46.2, + "value": null +} diff --git a/site/public/v1/smartphones/honor-20-standard-edition-global-dual-sim-td-lte-128gb-yal-l21-nova-5t/index.json b/site/public/v1/smartphones/honor-20-standard-edition-global-dual-sim-td-lte-128gb-yal-l21-nova-5t/index.json new file mode 100644 index 00000000000..9a647571e5a --- /dev/null +++ b/site/public/v1/smartphones/honor-20-standard-edition-global-dual-sim-td-lte-128gb-yal-l21-nova-5t/index.json @@ -0,0 +1,76 @@ +{ + "id": 987, + "slug": "honor-20-standard-edition-global-dual-sim-td-lte-128gb-yal-l21-nova-5t", + "name": "Honor 20 Standard Edition Global Dual SIM TD-LTE 128GB YAL-L21 / nova 5T", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-06-21", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3750, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 54.5, + "camera": 16.5, + "battery": 12.6, + "display": 46.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.246088", + "updated_at": "2026-06-19T00:43:44.246088" +} diff --git a/site/public/v1/smartphones/honor-20-standard-edition-global-dual-sim-td-lte-128gb-yal-l21-nova-5t/score/index.json b/site/public/v1/smartphones/honor-20-standard-edition-global-dual-sim-td-lte-128gb-yal-l21-nova-5t/score/index.json new file mode 100644 index 00000000000..9f4a346cbb4 --- /dev/null +++ b/site/public/v1/smartphones/honor-20-standard-edition-global-dual-sim-td-lte-128gb-yal-l21-nova-5t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 54.5, + "camera": 16.5, + "battery": 12.6, + "display": 46.2, + "value": null +} diff --git a/site/public/v1/smartphones/honor-20-youth-premium-edition-dual-sim-td-lte-cn-128gb-lra-al00/index.json b/site/public/v1/smartphones/honor-20-youth-premium-edition-dual-sim-td-lte-cn-128gb-lra-al00/index.json new file mode 100644 index 00000000000..42c8e94207b --- /dev/null +++ b/site/public/v1/smartphones/honor-20-youth-premium-edition-dual-sim-td-lte-cn-128gb-lra-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 988, + "slug": "honor-20-youth-premium-edition-dual-sim-td-lte-cn-128gb-lra-al00", + "name": "Honor 20 Youth Premium Edition Dual SIM TD-LTE CN 128GB LRA-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-10-22", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 418 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 171.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 1.5, + "camera": 16.5, + "battery": 15.9, + "display": 46.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.246088", + "updated_at": "2026-06-19T00:43:44.246088" +} diff --git a/site/public/v1/smartphones/honor-20-youth-premium-edition-dual-sim-td-lte-cn-128gb-lra-al00/score/index.json b/site/public/v1/smartphones/honor-20-youth-premium-edition-dual-sim-td-lte-cn-128gb-lra-al00/score/index.json new file mode 100644 index 00000000000..dda645c7ca5 --- /dev/null +++ b/site/public/v1/smartphones/honor-20-youth-premium-edition-dual-sim-td-lte-cn-128gb-lra-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 1.5, + "camera": 16.5, + "battery": 15.9, + "display": 46.8, + "value": null +} diff --git a/site/public/v1/smartphones/honor-20-youth-premium-edition-dual-sim-td-lte-cn-64gb-lra-al00/index.json b/site/public/v1/smartphones/honor-20-youth-premium-edition-dual-sim-td-lte-cn-64gb-lra-al00/index.json new file mode 100644 index 00000000000..ced3064241a --- /dev/null +++ b/site/public/v1/smartphones/honor-20-youth-premium-edition-dual-sim-td-lte-cn-64gb-lra-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 989, + "slug": "honor-20-youth-premium-edition-dual-sim-td-lte-cn-64gb-lra-al00", + "name": "Honor 20 Youth Premium Edition Dual SIM TD-LTE CN 64GB LRA-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-10-22", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 418 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 171.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 1.5, + "camera": 16.5, + "battery": 15.9, + "display": 46.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.246088", + "updated_at": "2026-06-19T00:43:44.246088" +} diff --git a/site/public/v1/smartphones/honor-20-youth-premium-edition-dual-sim-td-lte-cn-64gb-lra-al00/score/index.json b/site/public/v1/smartphones/honor-20-youth-premium-edition-dual-sim-td-lte-cn-64gb-lra-al00/score/index.json new file mode 100644 index 00000000000..dda645c7ca5 --- /dev/null +++ b/site/public/v1/smartphones/honor-20-youth-premium-edition-dual-sim-td-lte-cn-64gb-lra-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 1.5, + "camera": 16.5, + "battery": 15.9, + "display": 46.8, + "value": null +} diff --git a/site/public/v1/smartphones/honor-20-youth-standard-edition-dual-sim-td-lte-cn-64gb-lra-al00/index.json b/site/public/v1/smartphones/honor-20-youth-standard-edition-dual-sim-td-lte-cn-64gb-lra-al00/index.json new file mode 100644 index 00000000000..ec8ade8fb84 --- /dev/null +++ b/site/public/v1/smartphones/honor-20-youth-standard-edition-dual-sim-td-lte-cn-64gb-lra-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 990, + "slug": "honor-20-youth-standard-edition-dual-sim-td-lte-cn-64gb-lra-al00", + "name": "Honor 20 Youth Standard Edition Dual SIM TD-LTE CN 64GB LRA-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-10-22", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 418 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 171.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 0.0, + "camera": 16.5, + "battery": 15.9, + "display": 46.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.246088", + "updated_at": "2026-06-19T00:43:44.246088" +} diff --git a/site/public/v1/smartphones/honor-20-youth-standard-edition-dual-sim-td-lte-cn-64gb-lra-al00/score/index.json b/site/public/v1/smartphones/honor-20-youth-standard-edition-dual-sim-td-lte-cn-64gb-lra-al00/score/index.json new file mode 100644 index 00000000000..0fb00fc3253 --- /dev/null +++ b/site/public/v1/smartphones/honor-20-youth-standard-edition-dual-sim-td-lte-cn-64gb-lra-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 0.0, + "camera": 16.5, + "battery": 15.9, + "display": 46.8, + "value": null +} diff --git a/site/public/v1/smartphones/honor-20-youth-top-edition-dual-sim-td-lte-cn-128gb-lra-al00/index.json b/site/public/v1/smartphones/honor-20-youth-top-edition-dual-sim-td-lte-cn-128gb-lra-al00/index.json new file mode 100644 index 00000000000..80f4104559f --- /dev/null +++ b/site/public/v1/smartphones/honor-20-youth-top-edition-dual-sim-td-lte-cn-128gb-lra-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 991, + "slug": "honor-20-youth-top-edition-dual-sim-td-lte-cn-128gb-lra-al00", + "name": "Honor 20 Youth Top Edition Dual SIM TD-LTE CN 128GB LRA-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-10-22", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 418 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 171.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 3.0, + "camera": 16.5, + "battery": 15.9, + "display": 46.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.246088", + "updated_at": "2026-06-19T00:43:44.246088" +} diff --git a/site/public/v1/smartphones/honor-20-youth-top-edition-dual-sim-td-lte-cn-128gb-lra-al00/score/index.json b/site/public/v1/smartphones/honor-20-youth-top-edition-dual-sim-td-lte-cn-128gb-lra-al00/score/index.json new file mode 100644 index 00000000000..9501c0e54c9 --- /dev/null +++ b/site/public/v1/smartphones/honor-20-youth-top-edition-dual-sim-td-lte-cn-128gb-lra-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 3.0, + "camera": 16.5, + "battery": 15.9, + "display": 46.8, + "value": null +} diff --git a/site/public/v1/smartphones/honor-20e-dual-sim-lte-a-emea-64gb-hry-lx1t-honor-20-lite-hry-l21t/index.json b/site/public/v1/smartphones/honor-20e-dual-sim-lte-a-emea-64gb-hry-lx1t-honor-20-lite-hry-l21t/index.json new file mode 100644 index 00000000000..2e3a5a0bcbb --- /dev/null +++ b/site/public/v1/smartphones/honor-20e-dual-sim-lte-a-emea-64gb-hry-lx1t-honor-20-lite-hry-l21t/index.json @@ -0,0 +1,76 @@ +{ + "id": 1133, + "slug": "honor-20e-dual-sim-lte-a-emea-64gb-hry-lx1t-honor-20-lite-hry-l21t", + "name": "Honor 20E Dual SIM LTE-A EMEA 64GB HRY-LX1T / Honor 20 Lite HRY-L21T", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.3, + "performance": 0.0, + "camera": 8.8, + "battery": 6.0, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.266097", + "updated_at": "2026-06-19T00:43:44.266097" +} diff --git a/site/public/v1/smartphones/honor-20e-dual-sim-lte-a-emea-64gb-hry-lx1t-honor-20-lite-hry-l21t/score/index.json b/site/public/v1/smartphones/honor-20e-dual-sim-lte-a-emea-64gb-hry-lx1t-honor-20-lite-hry-l21t/score/index.json new file mode 100644 index 00000000000..584fb3174b2 --- /dev/null +++ b/site/public/v1/smartphones/honor-20e-dual-sim-lte-a-emea-64gb-hry-lx1t-honor-20-lite-hry-l21t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.3, + "performance": 0.0, + "camera": 8.8, + "battery": 6.0, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/honor-20i-premium-edition-dual-sim-td-lte-cn-256gb-hry-al00t-honor-20-lite/index.json b/site/public/v1/smartphones/honor-20i-premium-edition-dual-sim-td-lte-cn-256gb-hry-al00t-honor-20-lite/index.json new file mode 100644 index 00000000000..1bc4951fc93 --- /dev/null +++ b/site/public/v1/smartphones/honor-20i-premium-edition-dual-sim-td-lte-cn-256gb-hry-al00t-honor-20-lite/index.json @@ -0,0 +1,76 @@ +{ + "id": 992, + "slug": "honor-20i-premium-edition-dual-sim-td-lte-cn-256gb-hry-al00t-honor-20-lite", + "name": "Honor 20i Premium Edition Dual SIM TD-LTE CN 256GB HRY-AL00T / Honor 20 Lite", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-04-18", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.7, + "performance": 1.5, + "camera": 8.8, + "battery": 6.0, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.246088", + "updated_at": "2026-06-19T00:43:44.246088" +} diff --git a/site/public/v1/smartphones/honor-20i-premium-edition-dual-sim-td-lte-cn-256gb-hry-al00t-honor-20-lite/score/index.json b/site/public/v1/smartphones/honor-20i-premium-edition-dual-sim-td-lte-cn-256gb-hry-al00t-honor-20-lite/score/index.json new file mode 100644 index 00000000000..dabd5730354 --- /dev/null +++ b/site/public/v1/smartphones/honor-20i-premium-edition-dual-sim-td-lte-cn-256gb-hry-al00t-honor-20-lite/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.7, + "performance": 1.5, + "camera": 8.8, + "battery": 6.0, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/honor-20i-standard-edition-dual-sim-td-lte-cn-128gb-hry-al00t-honor-20-lite/index.json b/site/public/v1/smartphones/honor-20i-standard-edition-dual-sim-td-lte-cn-128gb-hry-al00t-honor-20-lite/index.json new file mode 100644 index 00000000000..0ca929aedc5 --- /dev/null +++ b/site/public/v1/smartphones/honor-20i-standard-edition-dual-sim-td-lte-cn-128gb-hry-al00t-honor-20-lite/index.json @@ -0,0 +1,76 @@ +{ + "id": 993, + "slug": "honor-20i-standard-edition-dual-sim-td-lte-cn-128gb-hry-al00t-honor-20-lite", + "name": "Honor 20i Standard Edition Dual SIM TD-LTE CN 128GB HRY-AL00T / Honor 20 Lite", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-04-18", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.3, + "performance": 0.0, + "camera": 8.8, + "battery": 6.0, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.247092", + "updated_at": "2026-06-19T00:43:44.247092" +} diff --git a/site/public/v1/smartphones/honor-20i-standard-edition-dual-sim-td-lte-cn-128gb-hry-al00t-honor-20-lite/score/index.json b/site/public/v1/smartphones/honor-20i-standard-edition-dual-sim-td-lte-cn-128gb-hry-al00t-honor-20-lite/score/index.json new file mode 100644 index 00000000000..584fb3174b2 --- /dev/null +++ b/site/public/v1/smartphones/honor-20i-standard-edition-dual-sim-td-lte-cn-128gb-hry-al00t-honor-20-lite/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.3, + "performance": 0.0, + "camera": 8.8, + "battery": 6.0, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/honor-20s-premium-edition-dual-sim-td-lte-cn-128gb-yal-al50/index.json b/site/public/v1/smartphones/honor-20s-premium-edition-dual-sim-td-lte-cn-128gb-yal-al50/index.json new file mode 100644 index 00000000000..d00ef99a5ba --- /dev/null +++ b/site/public/v1/smartphones/honor-20s-premium-edition-dual-sim-td-lte-cn-128gb-yal-al50/index.json @@ -0,0 +1,76 @@ +{ + "id": 994, + "slug": "honor-20s-premium-edition-dual-sim-td-lte-cn-128gb-yal-al50", + "name": "Honor 20S Premium Edition Dual SIM TD-LTE CN 128GB YAL-AL50", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 30, + "slug": "kirin-810", + "name": "Kirin 810", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G52 MP6", + "url": "/v1/socs/kirin-810" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3750, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.5, + "performance": 3.0, + "camera": 16.5, + "battery": 12.2, + "display": 46.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.247092", + "updated_at": "2026-06-19T00:43:44.247092" +} diff --git a/site/public/v1/smartphones/honor-20s-premium-edition-dual-sim-td-lte-cn-128gb-yal-al50/score/index.json b/site/public/v1/smartphones/honor-20s-premium-edition-dual-sim-td-lte-cn-128gb-yal-al50/score/index.json new file mode 100644 index 00000000000..2f2bd2705c4 --- /dev/null +++ b/site/public/v1/smartphones/honor-20s-premium-edition-dual-sim-td-lte-cn-128gb-yal-al50/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.5, + "performance": 3.0, + "camera": 16.5, + "battery": 12.2, + "display": 46.2, + "value": null +} diff --git a/site/public/v1/smartphones/honor-20s-standard-edition-dual-sim-td-lte-cn-128gb-yal-al50/index.json b/site/public/v1/smartphones/honor-20s-standard-edition-dual-sim-td-lte-cn-128gb-yal-al50/index.json new file mode 100644 index 00000000000..c068933312f --- /dev/null +++ b/site/public/v1/smartphones/honor-20s-standard-edition-dual-sim-td-lte-cn-128gb-yal-al50/index.json @@ -0,0 +1,76 @@ +{ + "id": 995, + "slug": "honor-20s-standard-edition-dual-sim-td-lte-cn-128gb-yal-al50", + "name": "Honor 20S Standard Edition Dual SIM TD-LTE CN 128GB YAL-AL50", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 30, + "slug": "kirin-810", + "name": "Kirin 810", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G52 MP6", + "url": "/v1/socs/kirin-810" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3750, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 1.5, + "camera": 16.5, + "battery": 12.2, + "display": 46.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.247092", + "updated_at": "2026-06-19T00:43:44.247092" +} diff --git a/site/public/v1/smartphones/honor-20s-standard-edition-dual-sim-td-lte-cn-128gb-yal-al50/score/index.json b/site/public/v1/smartphones/honor-20s-standard-edition-dual-sim-td-lte-cn-128gb-yal-al50/score/index.json new file mode 100644 index 00000000000..f58405bb1c8 --- /dev/null +++ b/site/public/v1/smartphones/honor-20s-standard-edition-dual-sim-td-lte-cn-128gb-yal-al50/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 1.5, + "camera": 16.5, + "battery": 12.2, + "display": 46.2, + "value": null +} diff --git a/site/public/v1/smartphones/honor-20s-standard-edition-dual-sim-td-lte-cn-128gb-yal-tl50/index.json b/site/public/v1/smartphones/honor-20s-standard-edition-dual-sim-td-lte-cn-128gb-yal-tl50/index.json new file mode 100644 index 00000000000..21cfe282d4c --- /dev/null +++ b/site/public/v1/smartphones/honor-20s-standard-edition-dual-sim-td-lte-cn-128gb-yal-tl50/index.json @@ -0,0 +1,76 @@ +{ + "id": 996, + "slug": "honor-20s-standard-edition-dual-sim-td-lte-cn-128gb-yal-tl50", + "name": "Honor 20S Standard Edition Dual SIM TD-LTE CN 128GB YAL-TL50", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 30, + "slug": "kirin-810", + "name": "Kirin 810", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G52 MP6", + "url": "/v1/socs/kirin-810" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3750, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 1.5, + "camera": 16.5, + "battery": 12.2, + "display": 46.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.247092", + "updated_at": "2026-06-19T00:43:44.247092" +} diff --git a/site/public/v1/smartphones/honor-20s-standard-edition-dual-sim-td-lte-cn-128gb-yal-tl50/score/index.json b/site/public/v1/smartphones/honor-20s-standard-edition-dual-sim-td-lte-cn-128gb-yal-tl50/score/index.json new file mode 100644 index 00000000000..f58405bb1c8 --- /dev/null +++ b/site/public/v1/smartphones/honor-20s-standard-edition-dual-sim-td-lte-cn-128gb-yal-tl50/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 1.5, + "camera": 16.5, + "battery": 12.2, + "display": 46.2, + "value": null +} diff --git a/site/public/v1/smartphones/honor-30-5g-global-dual-sim-td-lte-128gb-bmh-nx9-bmh-n29/index.json b/site/public/v1/smartphones/honor-30-5g-global-dual-sim-td-lte-128gb-bmh-nx9-bmh-n29/index.json new file mode 100644 index 00000000000..5cd6847b278 --- /dev/null +++ b/site/public/v1/smartphones/honor-30-5g-global-dual-sim-td-lte-128gb-bmh-nx9-bmh-n29/index.json @@ -0,0 +1,76 @@ +{ + "id": 1134, + "slug": "honor-30-5g-global-dual-sim-td-lte-128gb-bmh-nx9-bmh-n29", + "name": "Honor 30 5G Global Dual SIM TD-LTE 128GB BMH-NX9 / BMH-N29", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 37, + "slug": "kirin-985", + "name": "Kirin 985", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP8", + "url": "/v1/socs/kirin-985" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 13.9, + "battery": 19.7, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.266097", + "updated_at": "2026-06-19T00:43:44.266097" +} diff --git a/site/public/v1/smartphones/honor-30-5g-global-dual-sim-td-lte-128gb-bmh-nx9-bmh-n29/score/index.json b/site/public/v1/smartphones/honor-30-5g-global-dual-sim-td-lte-128gb-bmh-nx9-bmh-n29/score/index.json new file mode 100644 index 00000000000..4553cb7f3b8 --- /dev/null +++ b/site/public/v1/smartphones/honor-30-5g-global-dual-sim-td-lte-128gb-bmh-nx9-bmh-n29/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 13.9, + "battery": 19.7, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/honor-30-5g-global-dual-sim-td-lte-256gb-bmh-nx9-bmh-n29/index.json b/site/public/v1/smartphones/honor-30-5g-global-dual-sim-td-lte-256gb-bmh-nx9-bmh-n29/index.json new file mode 100644 index 00000000000..4b60f88f699 --- /dev/null +++ b/site/public/v1/smartphones/honor-30-5g-global-dual-sim-td-lte-256gb-bmh-nx9-bmh-n29/index.json @@ -0,0 +1,76 @@ +{ + "id": 1135, + "slug": "honor-30-5g-global-dual-sim-td-lte-256gb-bmh-nx9-bmh-n29", + "name": "Honor 30 5G Global Dual SIM TD-LTE 256GB BMH-NX9 / BMH-N29", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 37, + "slug": "kirin-985", + "name": "Kirin 985", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP8", + "url": "/v1/socs/kirin-985" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 13.9, + "battery": 19.7, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.267097", + "updated_at": "2026-06-19T00:43:44.267097" +} diff --git a/site/public/v1/smartphones/honor-30-5g-global-dual-sim-td-lte-256gb-bmh-nx9-bmh-n29/score/index.json b/site/public/v1/smartphones/honor-30-5g-global-dual-sim-td-lte-256gb-bmh-nx9-bmh-n29/score/index.json new file mode 100644 index 00000000000..4553cb7f3b8 --- /dev/null +++ b/site/public/v1/smartphones/honor-30-5g-global-dual-sim-td-lte-256gb-bmh-nx9-bmh-n29/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 13.9, + "battery": 19.7, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/honor-30-5g-premium-edition-dual-sim-td-lte-cn-128gb-bmh-an10-bmh-an20/index.json b/site/public/v1/smartphones/honor-30-5g-premium-edition-dual-sim-td-lte-cn-128gb-bmh-an10-bmh-an20/index.json new file mode 100644 index 00000000000..47985863506 --- /dev/null +++ b/site/public/v1/smartphones/honor-30-5g-premium-edition-dual-sim-td-lte-cn-128gb-bmh-an10-bmh-an20/index.json @@ -0,0 +1,76 @@ +{ + "id": 1136, + "slug": "honor-30-5g-premium-edition-dual-sim-td-lte-cn-128gb-bmh-an10-bmh-an20", + "name": "Honor 30 5G Premium Edition Dual SIM TD-LTE CN 128GB BMH-AN10 / BMH-AN20", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 37, + "slug": "kirin-985", + "name": "Kirin 985", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP8", + "url": "/v1/socs/kirin-985" + }, + "release_date": "2020-04-28", + "msrp_usd": 3199, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 13.9, + "battery": 19.7, + "display": 45.3, + "value": 10.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.267097", + "updated_at": "2026-06-19T00:43:44.267097" +} diff --git a/site/public/v1/smartphones/honor-30-5g-premium-edition-dual-sim-td-lte-cn-128gb-bmh-an10-bmh-an20/score/index.json b/site/public/v1/smartphones/honor-30-5g-premium-edition-dual-sim-td-lte-cn-128gb-bmh-an10-bmh-an20/score/index.json new file mode 100644 index 00000000000..01c5df90a5e --- /dev/null +++ b/site/public/v1/smartphones/honor-30-5g-premium-edition-dual-sim-td-lte-cn-128gb-bmh-an10-bmh-an20/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 13.9, + "battery": 19.7, + "display": 45.3, + "value": 10.2 +} diff --git a/site/public/v1/smartphones/honor-30-5g-premium-edition-dual-sim-td-lte-cn-256gb-bmh-an10-bmh-an20/index.json b/site/public/v1/smartphones/honor-30-5g-premium-edition-dual-sim-td-lte-cn-256gb-bmh-an10-bmh-an20/index.json new file mode 100644 index 00000000000..af5219f3d6e --- /dev/null +++ b/site/public/v1/smartphones/honor-30-5g-premium-edition-dual-sim-td-lte-cn-256gb-bmh-an10-bmh-an20/index.json @@ -0,0 +1,76 @@ +{ + "id": 1137, + "slug": "honor-30-5g-premium-edition-dual-sim-td-lte-cn-256gb-bmh-an10-bmh-an20", + "name": "Honor 30 5G Premium Edition Dual SIM TD-LTE CN 256GB BMH-AN10 / BMH-AN20", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 37, + "slug": "kirin-985", + "name": "Kirin 985", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP8", + "url": "/v1/socs/kirin-985" + }, + "release_date": "2020-04-28", + "msrp_usd": 3499, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 13.9, + "battery": 19.7, + "display": 45.3, + "value": 10.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.267097", + "updated_at": "2026-06-19T00:43:44.267097" +} diff --git a/site/public/v1/smartphones/honor-30-5g-premium-edition-dual-sim-td-lte-cn-256gb-bmh-an10-bmh-an20/score/index.json b/site/public/v1/smartphones/honor-30-5g-premium-edition-dual-sim-td-lte-cn-256gb-bmh-an10-bmh-an20/score/index.json new file mode 100644 index 00000000000..01c5df90a5e --- /dev/null +++ b/site/public/v1/smartphones/honor-30-5g-premium-edition-dual-sim-td-lte-cn-256gb-bmh-an10-bmh-an20/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 13.9, + "battery": 19.7, + "display": 45.3, + "value": 10.2 +} diff --git a/site/public/v1/smartphones/honor-30-5g-standard-edition-dual-sim-td-lte-cn-128gb-bmh-an10-bmh-an20/index.json b/site/public/v1/smartphones/honor-30-5g-standard-edition-dual-sim-td-lte-cn-128gb-bmh-an10-bmh-an20/index.json new file mode 100644 index 00000000000..0cb271b581c --- /dev/null +++ b/site/public/v1/smartphones/honor-30-5g-standard-edition-dual-sim-td-lte-cn-128gb-bmh-an10-bmh-an20/index.json @@ -0,0 +1,76 @@ +{ + "id": 1138, + "slug": "honor-30-5g-standard-edition-dual-sim-td-lte-cn-128gb-bmh-an10-bmh-an20", + "name": "Honor 30 5G Standard Edition Dual SIM TD-LTE CN 128GB BMH-AN10 / BMH-AN20", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 37, + "slug": "kirin-985", + "name": "Kirin 985", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP8", + "url": "/v1/socs/kirin-985" + }, + "release_date": "2020-04-28", + "msrp_usd": 2999, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 13.9, + "battery": 19.7, + "display": 45.3, + "value": 10.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.267097", + "updated_at": "2026-06-19T00:43:44.267097" +} diff --git a/site/public/v1/smartphones/honor-30-5g-standard-edition-dual-sim-td-lte-cn-128gb-bmh-an10-bmh-an20/score/index.json b/site/public/v1/smartphones/honor-30-5g-standard-edition-dual-sim-td-lte-cn-128gb-bmh-an10-bmh-an20/score/index.json new file mode 100644 index 00000000000..6082affc6f5 --- /dev/null +++ b/site/public/v1/smartphones/honor-30-5g-standard-edition-dual-sim-td-lte-cn-128gb-bmh-an10-bmh-an20/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 13.9, + "battery": 19.7, + "display": 45.3, + "value": 10.1 +} diff --git a/site/public/v1/smartphones/honor-30-lite-5g-premium-edition-dual-sim-td-lte-cn-128gb-mxw-an00-30-lite-youth/index.json b/site/public/v1/smartphones/honor-30-lite-5g-premium-edition-dual-sim-td-lte-cn-128gb-mxw-an00-30-lite-youth/index.json new file mode 100644 index 00000000000..c186bad94df --- /dev/null +++ b/site/public/v1/smartphones/honor-30-lite-5g-premium-edition-dual-sim-td-lte-cn-128gb-mxw-an00-30-lite-youth/index.json @@ -0,0 +1,77 @@ +{ + "id": 1139, + "slug": "honor-30-lite-5g-premium-edition-dual-sim-td-lte-cn-128gb-mxw-an00-30-lite-youth", + "name": "Honor 30 Lite 5G Premium Edition Dual SIM TD-LTE CN 128GB MXW-AN00 / 30 Lite Youth", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2020-07-08", + "msrp_usd": 2199, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 3.0, + "camera": 16.5, + "battery": 16.3, + "display": 40.5, + "value": 9.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.267097", + "updated_at": "2026-06-19T00:43:44.267097" +} diff --git a/site/public/v1/smartphones/honor-30-lite-5g-premium-edition-dual-sim-td-lte-cn-128gb-mxw-an00-30-lite-youth/score/index.json b/site/public/v1/smartphones/honor-30-lite-5g-premium-edition-dual-sim-td-lte-cn-128gb-mxw-an00-30-lite-youth/score/index.json new file mode 100644 index 00000000000..845c1d8d60c --- /dev/null +++ b/site/public/v1/smartphones/honor-30-lite-5g-premium-edition-dual-sim-td-lte-cn-128gb-mxw-an00-30-lite-youth/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 3.0, + "camera": 16.5, + "battery": 16.3, + "display": 40.5, + "value": 9.6 +} diff --git a/site/public/v1/smartphones/honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-128gb-mxw-an00/index.json b/site/public/v1/smartphones/honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-128gb-mxw-an00/index.json new file mode 100644 index 00000000000..446766ebe76 --- /dev/null +++ b/site/public/v1/smartphones/honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-128gb-mxw-an00/index.json @@ -0,0 +1,77 @@ +{ + "id": 1140, + "slug": "honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-128gb-mxw-an00", + "name": "Honor 30 Lite 5G Standard Edition Dual SIM TD-LTE CN 128GB MXW-AN00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2020-07-08", + "msrp_usd": 1899, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 1.5, + "camera": 16.5, + "battery": 16.3, + "display": 40.5, + "value": 9.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.267097", + "updated_at": "2026-06-19T00:43:44.267097" +} diff --git a/site/public/v1/smartphones/honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-128gb-mxw-an00/score/index.json b/site/public/v1/smartphones/honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-128gb-mxw-an00/score/index.json new file mode 100644 index 00000000000..b294350d827 --- /dev/null +++ b/site/public/v1/smartphones/honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-128gb-mxw-an00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 1.5, + "camera": 16.5, + "battery": 16.3, + "display": 40.5, + "value": 9.3 +} diff --git a/site/public/v1/smartphones/honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-64gb-mxw-an00/index.json b/site/public/v1/smartphones/honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-64gb-mxw-an00/index.json new file mode 100644 index 00000000000..65c615fb40c --- /dev/null +++ b/site/public/v1/smartphones/honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-64gb-mxw-an00/index.json @@ -0,0 +1,77 @@ +{ + "id": 1141, + "slug": "honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-64gb-mxw-an00", + "name": "Honor 30 Lite 5G Standard Edition Dual SIM TD-LTE CN 64GB MXW-AN00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2020-07-08", + "msrp_usd": 1699, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 1.5, + "camera": 16.5, + "battery": 16.3, + "display": 40.5, + "value": 9.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.267097", + "updated_at": "2026-06-19T00:43:44.267097" +} diff --git a/site/public/v1/smartphones/honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-64gb-mxw-an00/score/index.json b/site/public/v1/smartphones/honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-64gb-mxw-an00/score/index.json new file mode 100644 index 00000000000..b294350d827 --- /dev/null +++ b/site/public/v1/smartphones/honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-64gb-mxw-an00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 1.5, + "camera": 16.5, + "battery": 16.3, + "display": 40.5, + "value": 9.3 +} diff --git a/site/public/v1/smartphones/honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-64gb-mxw-tn00/index.json b/site/public/v1/smartphones/honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-64gb-mxw-tn00/index.json new file mode 100644 index 00000000000..7ef742e2cf5 --- /dev/null +++ b/site/public/v1/smartphones/honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-64gb-mxw-tn00/index.json @@ -0,0 +1,77 @@ +{ + "id": 1142, + "slug": "honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-64gb-mxw-tn00", + "name": "Honor 30 Lite 5G Standard Edition Dual SIM TD-LTE CN 64GB MXW-TN00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2020-07-09", + "msrp_usd": 1699, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 1.5, + "camera": 16.5, + "battery": 16.3, + "display": 40.5, + "value": 9.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.268097", + "updated_at": "2026-06-19T00:43:44.268097" +} diff --git a/site/public/v1/smartphones/honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-64gb-mxw-tn00/score/index.json b/site/public/v1/smartphones/honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-64gb-mxw-tn00/score/index.json new file mode 100644 index 00000000000..b294350d827 --- /dev/null +++ b/site/public/v1/smartphones/honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-64gb-mxw-tn00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 1.5, + "camera": 16.5, + "battery": 16.3, + "display": 40.5, + "value": 9.3 +} diff --git a/site/public/v1/smartphones/honor-30s-5g-dual-sim-td-lte-cn-128gb-cdy-an90/index.json b/site/public/v1/smartphones/honor-30s-5g-dual-sim-td-lte-cn-128gb-cdy-an90/index.json new file mode 100644 index 00000000000..0e458625547 --- /dev/null +++ b/site/public/v1/smartphones/honor-30s-5g-dual-sim-td-lte-cn-128gb-cdy-an90/index.json @@ -0,0 +1,76 @@ +{ + "id": 1143, + "slug": "honor-30s-5g-dual-sim-td-lte-cn-128gb-cdy-an90", + "name": "Honor 30S 5G Dual SIM TD-LTE CN 128GB CDY-AN90", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 34, + "slug": "kirin-820", + "name": "Kirin 820", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MP6", + "url": "/v1/socs/kirin-820" + }, + "release_date": "2020-04-07", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.4, + "performance": 3.0, + "camera": 21.5, + "battery": 19.7, + "display": 45.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.268097", + "updated_at": "2026-06-19T00:43:44.268097" +} diff --git a/site/public/v1/smartphones/honor-30s-5g-dual-sim-td-lte-cn-128gb-cdy-an90/score/index.json b/site/public/v1/smartphones/honor-30s-5g-dual-sim-td-lte-cn-128gb-cdy-an90/score/index.json new file mode 100644 index 00000000000..8dcca7dc0e8 --- /dev/null +++ b/site/public/v1/smartphones/honor-30s-5g-dual-sim-td-lte-cn-128gb-cdy-an90/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.4, + "performance": 3.0, + "camera": 21.5, + "battery": 19.7, + "display": 45.5, + "value": null +} diff --git a/site/public/v1/smartphones/honor-30s-5g-dual-sim-td-lte-cn-256gb-cdy-an90/index.json b/site/public/v1/smartphones/honor-30s-5g-dual-sim-td-lte-cn-256gb-cdy-an90/index.json new file mode 100644 index 00000000000..3bc0543917e --- /dev/null +++ b/site/public/v1/smartphones/honor-30s-5g-dual-sim-td-lte-cn-256gb-cdy-an90/index.json @@ -0,0 +1,76 @@ +{ + "id": 1144, + "slug": "honor-30s-5g-dual-sim-td-lte-cn-256gb-cdy-an90", + "name": "Honor 30S 5G Dual SIM TD-LTE CN 256GB CDY-AN90", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 34, + "slug": "kirin-820", + "name": "Kirin 820", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MP6", + "url": "/v1/socs/kirin-820" + }, + "release_date": "2020-04-07", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.4, + "performance": 3.0, + "camera": 21.5, + "battery": 19.7, + "display": 45.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.268097", + "updated_at": "2026-06-19T00:43:44.268097" +} diff --git a/site/public/v1/smartphones/honor-30s-5g-dual-sim-td-lte-cn-256gb-cdy-an90/score/index.json b/site/public/v1/smartphones/honor-30s-5g-dual-sim-td-lte-cn-256gb-cdy-an90/score/index.json new file mode 100644 index 00000000000..8dcca7dc0e8 --- /dev/null +++ b/site/public/v1/smartphones/honor-30s-5g-dual-sim-td-lte-cn-256gb-cdy-an90/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.4, + "performance": 3.0, + "camera": 21.5, + "battery": 19.7, + "display": 45.5, + "value": null +} diff --git a/site/public/v1/smartphones/honor-30s-5g-dual-sim-td-lte-cn-256gb-cdy-tn90/index.json b/site/public/v1/smartphones/honor-30s-5g-dual-sim-td-lte-cn-256gb-cdy-tn90/index.json new file mode 100644 index 00000000000..d7f30ffd436 --- /dev/null +++ b/site/public/v1/smartphones/honor-30s-5g-dual-sim-td-lte-cn-256gb-cdy-tn90/index.json @@ -0,0 +1,76 @@ +{ + "id": 1145, + "slug": "honor-30s-5g-dual-sim-td-lte-cn-256gb-cdy-tn90", + "name": "Honor 30S 5G Dual SIM TD-LTE CN 256GB CDY-TN90", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 34, + "slug": "kirin-820", + "name": "Kirin 820", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MP6", + "url": "/v1/socs/kirin-820" + }, + "release_date": "2020-04-07", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.4, + "performance": 3.0, + "camera": 21.5, + "battery": 19.7, + "display": 45.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.268097", + "updated_at": "2026-06-19T00:43:44.268097" +} diff --git a/site/public/v1/smartphones/honor-30s-5g-dual-sim-td-lte-cn-256gb-cdy-tn90/score/index.json b/site/public/v1/smartphones/honor-30s-5g-dual-sim-td-lte-cn-256gb-cdy-tn90/score/index.json new file mode 100644 index 00000000000..8dcca7dc0e8 --- /dev/null +++ b/site/public/v1/smartphones/honor-30s-5g-dual-sim-td-lte-cn-256gb-cdy-tn90/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.4, + "performance": 3.0, + "camera": 21.5, + "battery": 19.7, + "display": 45.5, + "value": null +} diff --git a/site/public/v1/smartphones/honor-50-se-5g-dual-sim-td-lte-cn-128gb-jlh-an00/index.json b/site/public/v1/smartphones/honor-50-se-5g-dual-sim-td-lte-cn-128gb-jlh-an00/index.json new file mode 100644 index 00000000000..9e06d65feaf --- /dev/null +++ b/site/public/v1/smartphones/honor-50-se-5g-dual-sim-td-lte-cn-128gb-jlh-an00/index.json @@ -0,0 +1,77 @@ +{ + "id": 1240, + "slug": "honor-50-se-5g-dual-sim-td-lte-cn-128gb-jlh-an00", + "name": "Honor 50 SE 5G Dual SIM TD-LTE CN 128GB JLH-AN00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 69, + "slug": "dimensity-900", + "name": "Dimensity 900", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G68 MC4", + "url": "/v1/socs/dimensity-900" + }, + "release_date": "2021-07-01", + "msrp_usd": 2399, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2388", + "refresh_hz": 120, + "type": "Color PLS TFT LCD display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.9, + "performance": 3.0, + "camera": 35.8, + "battery": 29.7, + "display": 51.2, + "value": 14.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.279605", + "updated_at": "2026-06-19T00:43:44.279605" +} diff --git a/site/public/v1/smartphones/honor-50-se-5g-dual-sim-td-lte-cn-128gb-jlh-an00/score/index.json b/site/public/v1/smartphones/honor-50-se-5g-dual-sim-td-lte-cn-128gb-jlh-an00/score/index.json new file mode 100644 index 00000000000..9eea65d694f --- /dev/null +++ b/site/public/v1/smartphones/honor-50-se-5g-dual-sim-td-lte-cn-128gb-jlh-an00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.9, + "performance": 3.0, + "camera": 35.8, + "battery": 29.7, + "display": 51.2, + "value": 14.9 +} diff --git a/site/public/v1/smartphones/honor-50-se-5g-dual-sim-td-lte-cn-256gb-jlh-an00/index.json b/site/public/v1/smartphones/honor-50-se-5g-dual-sim-td-lte-cn-256gb-jlh-an00/index.json new file mode 100644 index 00000000000..f1152650796 --- /dev/null +++ b/site/public/v1/smartphones/honor-50-se-5g-dual-sim-td-lte-cn-256gb-jlh-an00/index.json @@ -0,0 +1,77 @@ +{ + "id": 1241, + "slug": "honor-50-se-5g-dual-sim-td-lte-cn-256gb-jlh-an00", + "name": "Honor 50 SE 5G Dual SIM TD-LTE CN 256GB JLH-AN00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 69, + "slug": "dimensity-900", + "name": "Dimensity 900", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G68 MC4", + "url": "/v1/socs/dimensity-900" + }, + "release_date": "2021-07-01", + "msrp_usd": 2699, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2388", + "refresh_hz": 120, + "type": "Color PLS TFT LCD display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.9, + "performance": 3.0, + "camera": 35.8, + "battery": 29.7, + "display": 51.2, + "value": 14.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.279605", + "updated_at": "2026-06-19T00:43:44.279605" +} diff --git a/site/public/v1/smartphones/honor-50-se-5g-dual-sim-td-lte-cn-256gb-jlh-an00/score/index.json b/site/public/v1/smartphones/honor-50-se-5g-dual-sim-td-lte-cn-256gb-jlh-an00/score/index.json new file mode 100644 index 00000000000..9eea65d694f --- /dev/null +++ b/site/public/v1/smartphones/honor-50-se-5g-dual-sim-td-lte-cn-256gb-jlh-an00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.9, + "performance": 3.0, + "camera": 35.8, + "battery": 29.7, + "display": 51.2, + "value": 14.9 +} diff --git a/site/public/v1/smartphones/honor-7a-pro-dual-sim-lte-emea-aum-l29/index.json b/site/public/v1/smartphones/honor-7a-pro-dual-sim-lte-emea-aum-l29/index.json new file mode 100644 index 00000000000..c1c374a2bf5 --- /dev/null +++ b/site/public/v1/smartphones/honor-7a-pro-dual-sim-lte-emea-aum-l29/index.json @@ -0,0 +1,76 @@ +{ + "id": 837, + "slug": "honor-7a-pro-dual-sim-lte-emea-aum-l29", + "name": "Honor 7A Pro Dual SIM LTE EMEA AUM-L29", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3020, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": null, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.222933", + "updated_at": "2026-06-19T00:43:44.222933" +} diff --git a/site/public/v1/smartphones/honor-7a-pro-dual-sim-lte-emea-aum-l29/score/index.json b/site/public/v1/smartphones/honor-7a-pro-dual-sim-lte-emea-aum-l29/score/index.json new file mode 100644 index 00000000000..124cad705d7 --- /dev/null +++ b/site/public/v1/smartphones/honor-7a-pro-dual-sim-lte-emea-aum-l29/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": null, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-8a-premium-edition-global-dual-sim-td-lte-32gb-jat-l29/index.json b/site/public/v1/smartphones/honor-8a-premium-edition-global-dual-sim-td-lte-32gb-jat-l29/index.json new file mode 100644 index 00000000000..365b99437d8 --- /dev/null +++ b/site/public/v1/smartphones/honor-8a-premium-edition-global-dual-sim-td-lte-32gb-jat-l29/index.json @@ -0,0 +1,76 @@ +{ + "id": 997, + "slug": "honor-8a-premium-edition-global-dual-sim-td-lte-32gb-jat-l29", + "name": "Honor 8A Premium Edition Global Dual SIM TD-LTE 32GB JAT-L29", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2019-02-18", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3020, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.2, + "performance": 0.0, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.247092", + "updated_at": "2026-06-19T00:43:44.247092" +} diff --git a/site/public/v1/smartphones/honor-8a-premium-edition-global-dual-sim-td-lte-32gb-jat-l29/score/index.json b/site/public/v1/smartphones/honor-8a-premium-edition-global-dual-sim-td-lte-32gb-jat-l29/score/index.json new file mode 100644 index 00000000000..83f9924d81f --- /dev/null +++ b/site/public/v1/smartphones/honor-8a-premium-edition-global-dual-sim-td-lte-32gb-jat-l29/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.2, + "performance": 0.0, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-8a-standard-edition-global-dual-sim-td-lte-32gb-jat-lx9-jat-l29/index.json b/site/public/v1/smartphones/honor-8a-standard-edition-global-dual-sim-td-lte-32gb-jat-lx9-jat-l29/index.json new file mode 100644 index 00000000000..b6e977595aa --- /dev/null +++ b/site/public/v1/smartphones/honor-8a-standard-edition-global-dual-sim-td-lte-32gb-jat-lx9-jat-l29/index.json @@ -0,0 +1,76 @@ +{ + "id": 998, + "slug": "honor-8a-standard-edition-global-dual-sim-td-lte-32gb-jat-lx9-jat-l29", + "name": "Honor 8A Standard Edition Global Dual SIM TD-LTE 32GB JAT-LX9 / JAT-L29", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2019-02-18", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3020, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.2, + "performance": 0.0, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.247092", + "updated_at": "2026-06-19T00:43:44.247092" +} diff --git a/site/public/v1/smartphones/honor-8a-standard-edition-global-dual-sim-td-lte-32gb-jat-lx9-jat-l29/score/index.json b/site/public/v1/smartphones/honor-8a-standard-edition-global-dual-sim-td-lte-32gb-jat-lx9-jat-l29/score/index.json new file mode 100644 index 00000000000..83f9924d81f --- /dev/null +++ b/site/public/v1/smartphones/honor-8a-standard-edition-global-dual-sim-td-lte-32gb-jat-lx9-jat-l29/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.2, + "performance": 0.0, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-8c-global-dual-sim-td-lte-bkk-lx1-64gb-bkk-l21/index.json b/site/public/v1/smartphones/honor-8c-global-dual-sim-td-lte-bkk-lx1-64gb-bkk-l21/index.json new file mode 100644 index 00000000000..6356caf77c1 --- /dev/null +++ b/site/public/v1/smartphones/honor-8c-global-dual-sim-td-lte-bkk-lx1-64gb-bkk-l21/index.json @@ -0,0 +1,76 @@ +{ + "id": 838, + "slug": "honor-8c-global-dual-sim-td-lte-bkk-lx1-64gb-bkk-l21", + "name": "Honor 8C Global Dual SIM TD-LTE BKK-LX1 64GB / BKK-L21", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2018-11-29", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 167.2, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.223933", + "updated_at": "2026-06-19T00:43:44.223933" +} diff --git a/site/public/v1/smartphones/honor-8c-global-dual-sim-td-lte-bkk-lx1-64gb-bkk-l21/score/index.json b/site/public/v1/smartphones/honor-8c-global-dual-sim-td-lte-bkk-lx1-64gb-bkk-l21/score/index.json new file mode 100644 index 00000000000..a59635bee66 --- /dev/null +++ b/site/public/v1/smartphones/honor-8c-global-dual-sim-td-lte-bkk-lx1-64gb-bkk-l21/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-8s-2019-dual-sim-lte-emea-32gb-ksa-lx9-ksa-l29/index.json b/site/public/v1/smartphones/honor-8s-2019-dual-sim-lte-emea-32gb-ksa-lx9-ksa-l29/index.json new file mode 100644 index 00000000000..d8803d81df1 --- /dev/null +++ b/site/public/v1/smartphones/honor-8s-2019-dual-sim-lte-emea-32gb-ksa-lx9-ksa-l29/index.json @@ -0,0 +1,76 @@ +{ + "id": 999, + "slug": "honor-8s-2019-dual-sim-lte-emea-32gb-ksa-lx9-ksa-l29", + "name": "Honor 8S 2019 Dual SIM LTE EMEA 32GB KSA-LX9 / KSA-L29", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3020, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": null, + "camera": 5.4, + "battery": 0.3, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.247092", + "updated_at": "2026-06-19T00:43:44.247092" +} diff --git a/site/public/v1/smartphones/honor-8s-2019-dual-sim-lte-emea-32gb-ksa-lx9-ksa-l29/score/index.json b/site/public/v1/smartphones/honor-8s-2019-dual-sim-lte-emea-32gb-ksa-lx9-ksa-l29/score/index.json new file mode 100644 index 00000000000..d17e79c7a67 --- /dev/null +++ b/site/public/v1/smartphones/honor-8s-2019-dual-sim-lte-emea-32gb-ksa-lx9-ksa-l29/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": null, + "camera": 5.4, + "battery": 0.3, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-8s-2019-dual-sim-lte-latam-32gb-ksa-lx3-ksa-l23/index.json b/site/public/v1/smartphones/honor-8s-2019-dual-sim-lte-latam-32gb-ksa-lx3-ksa-l23/index.json new file mode 100644 index 00000000000..12efd628a0c --- /dev/null +++ b/site/public/v1/smartphones/honor-8s-2019-dual-sim-lte-latam-32gb-ksa-lx3-ksa-l23/index.json @@ -0,0 +1,76 @@ +{ + "id": 1000, + "slug": "honor-8s-2019-dual-sim-lte-latam-32gb-ksa-lx3-ksa-l23", + "name": "Honor 8S 2019 Dual SIM LTE LATAM 32GB KSA-LX3 / KSA-L23", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-01-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3020, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": null, + "camera": 5.4, + "battery": 0.3, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.248092", + "updated_at": "2026-06-19T00:43:44.248092" +} diff --git a/site/public/v1/smartphones/honor-8s-2019-dual-sim-lte-latam-32gb-ksa-lx3-ksa-l23/score/index.json b/site/public/v1/smartphones/honor-8s-2019-dual-sim-lte-latam-32gb-ksa-lx3-ksa-l23/score/index.json new file mode 100644 index 00000000000..d17e79c7a67 --- /dev/null +++ b/site/public/v1/smartphones/honor-8s-2019-dual-sim-lte-latam-32gb-ksa-lx3-ksa-l23/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": null, + "camera": 5.4, + "battery": 0.3, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-8s-2019-dual-sim-td-lte-apac-32gb-ksa-lx2-ksa-l22/index.json b/site/public/v1/smartphones/honor-8s-2019-dual-sim-td-lte-apac-32gb-ksa-lx2-ksa-l22/index.json new file mode 100644 index 00000000000..1009d10d51f --- /dev/null +++ b/site/public/v1/smartphones/honor-8s-2019-dual-sim-td-lte-apac-32gb-ksa-lx2-ksa-l22/index.json @@ -0,0 +1,76 @@ +{ + "id": 1001, + "slug": "honor-8s-2019-dual-sim-td-lte-apac-32gb-ksa-lx2-ksa-l22", + "name": "Honor 8S 2019 Dual SIM TD-LTE APAC 32GB KSA-LX2 / KSA-L22", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3020, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": null, + "camera": 5.4, + "battery": 0.3, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.248092", + "updated_at": "2026-06-19T00:43:44.248092" +} diff --git a/site/public/v1/smartphones/honor-8s-2019-dual-sim-td-lte-apac-32gb-ksa-lx2-ksa-l22/score/index.json b/site/public/v1/smartphones/honor-8s-2019-dual-sim-td-lte-apac-32gb-ksa-lx2-ksa-l22/score/index.json new file mode 100644 index 00000000000..d17e79c7a67 --- /dev/null +++ b/site/public/v1/smartphones/honor-8s-2019-dual-sim-td-lte-apac-32gb-ksa-lx2-ksa-l22/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": null, + "camera": 5.4, + "battery": 0.3, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-8s-2019-lte-emea-32gb-ksa-lx9-ksa-l09/index.json b/site/public/v1/smartphones/honor-8s-2019-lte-emea-32gb-ksa-lx9-ksa-l09/index.json new file mode 100644 index 00000000000..5e0fa48a6ed --- /dev/null +++ b/site/public/v1/smartphones/honor-8s-2019-lte-emea-32gb-ksa-lx9-ksa-l09/index.json @@ -0,0 +1,76 @@ +{ + "id": 1002, + "slug": "honor-8s-2019-lte-emea-32gb-ksa-lx9-ksa-l09", + "name": "Honor 8S 2019 LTE EMEA 32GB KSA-LX9 / KSA-L09", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3020, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": null, + "camera": 5.4, + "battery": 0.3, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.248092", + "updated_at": "2026-06-19T00:43:44.248092" +} diff --git a/site/public/v1/smartphones/honor-8s-2019-lte-emea-32gb-ksa-lx9-ksa-l09/score/index.json b/site/public/v1/smartphones/honor-8s-2019-lte-emea-32gb-ksa-lx9-ksa-l09/score/index.json new file mode 100644 index 00000000000..d17e79c7a67 --- /dev/null +++ b/site/public/v1/smartphones/honor-8s-2019-lte-emea-32gb-ksa-lx9-ksa-l09/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": null, + "camera": 5.4, + "battery": 0.3, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-8s-2019-lte-latam-32gb-ksa-lx3-ksa-l03/index.json b/site/public/v1/smartphones/honor-8s-2019-lte-latam-32gb-ksa-lx3-ksa-l03/index.json new file mode 100644 index 00000000000..44c634de665 --- /dev/null +++ b/site/public/v1/smartphones/honor-8s-2019-lte-latam-32gb-ksa-lx3-ksa-l03/index.json @@ -0,0 +1,76 @@ +{ + "id": 1003, + "slug": "honor-8s-2019-lte-latam-32gb-ksa-lx3-ksa-l03", + "name": "Honor 8S 2019 LTE LATAM 32GB KSA-LX3 / KSA-L03", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3020, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": null, + "camera": 5.4, + "battery": 0.3, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.248092", + "updated_at": "2026-06-19T00:43:44.248092" +} diff --git a/site/public/v1/smartphones/honor-8s-2019-lte-latam-32gb-ksa-lx3-ksa-l03/score/index.json b/site/public/v1/smartphones/honor-8s-2019-lte-latam-32gb-ksa-lx3-ksa-l03/score/index.json new file mode 100644 index 00000000000..d17e79c7a67 --- /dev/null +++ b/site/public/v1/smartphones/honor-8s-2019-lte-latam-32gb-ksa-lx3-ksa-l03/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": null, + "camera": 5.4, + "battery": 0.3, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-8s-2020-dual-sim-lte-emea-64gb-ksa-lx9/index.json b/site/public/v1/smartphones/honor-8s-2020-dual-sim-lte-emea-64gb-ksa-lx9/index.json new file mode 100644 index 00000000000..97a28bf53f9 --- /dev/null +++ b/site/public/v1/smartphones/honor-8s-2020-dual-sim-lte-emea-64gb-ksa-lx9/index.json @@ -0,0 +1,76 @@ +{ + "id": 1146, + "slug": "honor-8s-2020-dual-sim-lte-emea-64gb-ksa-lx9", + "name": "Honor 8S 2020 Dual SIM LTE EMEA 64GB KSA-LX9", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2020-06-04", + "msrp_usd": 100, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3020, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": null, + "camera": 5.4, + "battery": 0.3, + "display": 35.0, + "value": 56.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.268097", + "updated_at": "2026-06-19T00:43:44.268097" +} diff --git a/site/public/v1/smartphones/honor-8s-2020-dual-sim-lte-emea-64gb-ksa-lx9/score/index.json b/site/public/v1/smartphones/honor-8s-2020-dual-sim-lte-emea-64gb-ksa-lx9/score/index.json new file mode 100644 index 00000000000..776f84438fd --- /dev/null +++ b/site/public/v1/smartphones/honor-8s-2020-dual-sim-lte-emea-64gb-ksa-lx9/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": null, + "camera": 5.4, + "battery": 0.3, + "display": 35.0, + "value": 56.8 +} diff --git a/site/public/v1/smartphones/honor-8x-dual-sim-lte-a-emea-128gb-jsn-l21/index.json b/site/public/v1/smartphones/honor-8x-dual-sim-lte-a-emea-128gb-jsn-l21/index.json new file mode 100644 index 00000000000..8158e672232 --- /dev/null +++ b/site/public/v1/smartphones/honor-8x-dual-sim-lte-a-emea-128gb-jsn-l21/index.json @@ -0,0 +1,76 @@ +{ + "id": 839, + "slug": "honor-8x-dual-sim-lte-a-emea-128gb-jsn-l21", + "name": "Honor 8X Dual SIM LTE-A EMEA 128GB JSN-L21", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2018-10-18", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 19.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3750, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 0.0, + "camera": 7.5, + "battery": 11.2, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.223933", + "updated_at": "2026-06-19T00:43:44.223933" +} diff --git a/site/public/v1/smartphones/honor-8x-dual-sim-lte-a-emea-128gb-jsn-l21/score/index.json b/site/public/v1/smartphones/honor-8x-dual-sim-lte-a-emea-128gb-jsn-l21/score/index.json new file mode 100644 index 00000000000..e15dd6384e2 --- /dev/null +++ b/site/public/v1/smartphones/honor-8x-dual-sim-lte-a-emea-128gb-jsn-l21/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 0.0, + "camera": 7.5, + "battery": 11.2, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/honor-8x-dual-sim-lte-a-latam-64gb-jsn-lx3-jsn-l23/index.json b/site/public/v1/smartphones/honor-8x-dual-sim-lte-a-latam-64gb-jsn-lx3-jsn-l23/index.json new file mode 100644 index 00000000000..40b3e309376 --- /dev/null +++ b/site/public/v1/smartphones/honor-8x-dual-sim-lte-a-latam-64gb-jsn-lx3-jsn-l23/index.json @@ -0,0 +1,76 @@ +{ + "id": 840, + "slug": "honor-8x-dual-sim-lte-a-latam-64gb-jsn-lx3-jsn-l23", + "name": "Honor 8X Dual SIM LTE-A LATAM 64GB JSN-LX3 / JSN-L23", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 19.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3750, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 0.0, + "camera": 7.5, + "battery": 11.2, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.223933", + "updated_at": "2026-06-19T00:43:44.223933" +} diff --git a/site/public/v1/smartphones/honor-8x-dual-sim-lte-a-latam-64gb-jsn-lx3-jsn-l23/score/index.json b/site/public/v1/smartphones/honor-8x-dual-sim-lte-a-latam-64gb-jsn-lx3-jsn-l23/score/index.json new file mode 100644 index 00000000000..e15dd6384e2 --- /dev/null +++ b/site/public/v1/smartphones/honor-8x-dual-sim-lte-a-latam-64gb-jsn-lx3-jsn-l23/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 0.0, + "camera": 7.5, + "battery": 11.2, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/honor-8x-dual-sim-td-lte-apac-128gb-jsn-lx2-jsn-l22/index.json b/site/public/v1/smartphones/honor-8x-dual-sim-td-lte-apac-128gb-jsn-lx2-jsn-l22/index.json new file mode 100644 index 00000000000..7f01901a1d4 --- /dev/null +++ b/site/public/v1/smartphones/honor-8x-dual-sim-td-lte-apac-128gb-jsn-lx2-jsn-l22/index.json @@ -0,0 +1,76 @@ +{ + "id": 841, + "slug": "honor-8x-dual-sim-td-lte-apac-128gb-jsn-lx2-jsn-l22", + "name": "Honor 8X Dual SIM TD-LTE APAC 128GB JSN-LX2 / JSN-L22", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2018-10-18", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 19.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3750, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 0.0, + "camera": 7.5, + "battery": 11.2, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.223933", + "updated_at": "2026-06-19T00:43:44.223933" +} diff --git a/site/public/v1/smartphones/honor-8x-dual-sim-td-lte-apac-128gb-jsn-lx2-jsn-l22/score/index.json b/site/public/v1/smartphones/honor-8x-dual-sim-td-lte-apac-128gb-jsn-lx2-jsn-l22/score/index.json new file mode 100644 index 00000000000..e15dd6384e2 --- /dev/null +++ b/site/public/v1/smartphones/honor-8x-dual-sim-td-lte-apac-128gb-jsn-lx2-jsn-l22/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 0.0, + "camera": 7.5, + "battery": 11.2, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/honor-8x-dual-sim-td-lte-in-128gb-jsn-l42/index.json b/site/public/v1/smartphones/honor-8x-dual-sim-td-lte-in-128gb-jsn-l42/index.json new file mode 100644 index 00000000000..12dc935158e --- /dev/null +++ b/site/public/v1/smartphones/honor-8x-dual-sim-td-lte-in-128gb-jsn-l42/index.json @@ -0,0 +1,76 @@ +{ + "id": 842, + "slug": "honor-8x-dual-sim-td-lte-in-128gb-jsn-l42", + "name": "Honor 8X Dual SIM TD-LTE IN 128GB JSN-L42", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 19.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3750, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 0.0, + "camera": 7.5, + "battery": 11.2, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.223933", + "updated_at": "2026-06-19T00:43:44.223933" +} diff --git a/site/public/v1/smartphones/honor-8x-dual-sim-td-lte-in-128gb-jsn-l42/score/index.json b/site/public/v1/smartphones/honor-8x-dual-sim-td-lte-in-128gb-jsn-l42/score/index.json new file mode 100644 index 00000000000..e15dd6384e2 --- /dev/null +++ b/site/public/v1/smartphones/honor-8x-dual-sim-td-lte-in-128gb-jsn-l42/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 0.0, + "camera": 7.5, + "battery": 11.2, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/honor-8x-max-4g-standard-edition-dual-sim-td-lte-cn-128gb-are-tl00/index.json b/site/public/v1/smartphones/honor-8x-max-4g-standard-edition-dual-sim-td-lte-cn-128gb-are-tl00/index.json new file mode 100644 index 00000000000..67c3491815a --- /dev/null +++ b/site/public/v1/smartphones/honor-8x-max-4g-standard-edition-dual-sim-td-lte-cn-128gb-are-tl00/index.json @@ -0,0 +1,76 @@ +{ + "id": 843, + "slug": "honor-8x-max-4g-standard-edition-dual-sim-td-lte-cn-128gb-are-tl00", + "name": "Honor 8X Max 4G+ Standard Edition Dual SIM TD-LTE CN 128GB ARE-TL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 7.12, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 350 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 40.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.224933", + "updated_at": "2026-06-19T00:43:44.224933" +} diff --git a/site/public/v1/smartphones/honor-8x-max-4g-standard-edition-dual-sim-td-lte-cn-128gb-are-tl00/score/index.json b/site/public/v1/smartphones/honor-8x-max-4g-standard-edition-dual-sim-td-lte-cn-128gb-are-tl00/score/index.json new file mode 100644 index 00000000000..77e5ef2516d --- /dev/null +++ b/site/public/v1/smartphones/honor-8x-max-4g-standard-edition-dual-sim-td-lte-cn-128gb-are-tl00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 40.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-8x-max-premium-edition-dual-sim-td-lte-cn-64gb-are-al10/index.json b/site/public/v1/smartphones/honor-8x-max-premium-edition-dual-sim-td-lte-cn-64gb-are-al10/index.json new file mode 100644 index 00000000000..fe9d4a44176 --- /dev/null +++ b/site/public/v1/smartphones/honor-8x-max-premium-edition-dual-sim-td-lte-cn-64gb-are-al10/index.json @@ -0,0 +1,76 @@ +{ + "id": 844, + "slug": "honor-8x-max-premium-edition-dual-sim-td-lte-cn-64gb-are-al10", + "name": "Honor 8X Max Premium Edition Dual SIM TD-LTE CN 64GB ARE-AL10", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 7.12, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 350 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 19.5, + "camera": 6.3, + "battery": 30.0, + "display": 40.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.224933", + "updated_at": "2026-06-19T00:43:44.224933" +} diff --git a/site/public/v1/smartphones/honor-8x-max-premium-edition-dual-sim-td-lte-cn-64gb-are-al10/score/index.json b/site/public/v1/smartphones/honor-8x-max-premium-edition-dual-sim-td-lte-cn-64gb-are-al10/score/index.json new file mode 100644 index 00000000000..67980e6ef5e --- /dev/null +++ b/site/public/v1/smartphones/honor-8x-max-premium-edition-dual-sim-td-lte-cn-64gb-are-al10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 19.5, + "camera": 6.3, + "battery": 30.0, + "display": 40.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-8x-max-standard-edition-dual-sim-td-lte-cn-128gb-are-al00/index.json b/site/public/v1/smartphones/honor-8x-max-standard-edition-dual-sim-td-lte-cn-128gb-are-al00/index.json new file mode 100644 index 00000000000..4f9a9ed4b5f --- /dev/null +++ b/site/public/v1/smartphones/honor-8x-max-standard-edition-dual-sim-td-lte-cn-128gb-are-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 845, + "slug": "honor-8x-max-standard-edition-dual-sim-td-lte-cn-128gb-are-al00", + "name": "Honor 8X Max Standard Edition Dual SIM TD-LTE CN 128GB ARE-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-09-11", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 7.12, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 350 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 40.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.224933", + "updated_at": "2026-06-19T00:43:44.224933" +} diff --git a/site/public/v1/smartphones/honor-8x-max-standard-edition-dual-sim-td-lte-cn-128gb-are-al00/score/index.json b/site/public/v1/smartphones/honor-8x-max-standard-edition-dual-sim-td-lte-cn-128gb-are-al00/score/index.json new file mode 100644 index 00000000000..77e5ef2516d --- /dev/null +++ b/site/public/v1/smartphones/honor-8x-max-standard-edition-dual-sim-td-lte-cn-128gb-are-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 40.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-8x-max-standard-edition-dual-sim-td-lte-cn-64gb-are-al00/index.json b/site/public/v1/smartphones/honor-8x-max-standard-edition-dual-sim-td-lte-cn-64gb-are-al00/index.json new file mode 100644 index 00000000000..66f348871a1 --- /dev/null +++ b/site/public/v1/smartphones/honor-8x-max-standard-edition-dual-sim-td-lte-cn-64gb-are-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 846, + "slug": "honor-8x-max-standard-edition-dual-sim-td-lte-cn-64gb-are-al00", + "name": "Honor 8X Max Standard Edition Dual SIM TD-LTE CN 64GB ARE-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-09-11", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 7.12, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 350 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 40.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.224933", + "updated_at": "2026-06-19T00:43:44.224933" +} diff --git a/site/public/v1/smartphones/honor-8x-max-standard-edition-dual-sim-td-lte-cn-64gb-are-al00/score/index.json b/site/public/v1/smartphones/honor-8x-max-standard-edition-dual-sim-td-lte-cn-64gb-are-al00/score/index.json new file mode 100644 index 00000000000..77e5ef2516d --- /dev/null +++ b/site/public/v1/smartphones/honor-8x-max-standard-edition-dual-sim-td-lte-cn-64gb-are-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 40.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-8x-premium-edition-dual-sim-td-lte-cn-128gb-jsn-al00a/index.json b/site/public/v1/smartphones/honor-8x-premium-edition-dual-sim-td-lte-cn-128gb-jsn-al00a/index.json new file mode 100644 index 00000000000..56ad8638891 --- /dev/null +++ b/site/public/v1/smartphones/honor-8x-premium-edition-dual-sim-td-lte-cn-128gb-jsn-al00a/index.json @@ -0,0 +1,76 @@ +{ + "id": 847, + "slug": "honor-8x-premium-edition-dual-sim-td-lte-cn-128gb-jsn-al00a", + "name": "Honor 8X Premium Edition Dual SIM TD-LTE CN 128GB JSN-AL00a", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 19.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3750, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 1.5, + "camera": 7.5, + "battery": 11.2, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.224933", + "updated_at": "2026-06-19T00:43:44.224933" +} diff --git a/site/public/v1/smartphones/honor-8x-premium-edition-dual-sim-td-lte-cn-128gb-jsn-al00a/score/index.json b/site/public/v1/smartphones/honor-8x-premium-edition-dual-sim-td-lte-cn-128gb-jsn-al00a/score/index.json new file mode 100644 index 00000000000..41d401a908b --- /dev/null +++ b/site/public/v1/smartphones/honor-8x-premium-edition-dual-sim-td-lte-cn-128gb-jsn-al00a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 1.5, + "camera": 7.5, + "battery": 11.2, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/honor-8x-premium-edition-dual-sim-td-lte-cn-64gb-jsn-al00a/index.json b/site/public/v1/smartphones/honor-8x-premium-edition-dual-sim-td-lte-cn-64gb-jsn-al00a/index.json new file mode 100644 index 00000000000..5a042fa3ab8 --- /dev/null +++ b/site/public/v1/smartphones/honor-8x-premium-edition-dual-sim-td-lte-cn-64gb-jsn-al00a/index.json @@ -0,0 +1,76 @@ +{ + "id": 848, + "slug": "honor-8x-premium-edition-dual-sim-td-lte-cn-64gb-jsn-al00a", + "name": "Honor 8X Premium Edition Dual SIM TD-LTE CN 64GB JSN-AL00a", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2018-09-11", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 19.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3750, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 1.5, + "camera": 7.5, + "battery": 11.2, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.224933", + "updated_at": "2026-06-19T00:43:44.224933" +} diff --git a/site/public/v1/smartphones/honor-8x-premium-edition-dual-sim-td-lte-cn-64gb-jsn-al00a/score/index.json b/site/public/v1/smartphones/honor-8x-premium-edition-dual-sim-td-lte-cn-64gb-jsn-al00a/score/index.json new file mode 100644 index 00000000000..41d401a908b --- /dev/null +++ b/site/public/v1/smartphones/honor-8x-premium-edition-dual-sim-td-lte-cn-64gb-jsn-al00a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 1.5, + "camera": 7.5, + "battery": 11.2, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/honor-8x-standard-edition-dual-sim-td-lte-cn-64gb-jsn-al00/index.json b/site/public/v1/smartphones/honor-8x-standard-edition-dual-sim-td-lte-cn-64gb-jsn-al00/index.json new file mode 100644 index 00000000000..9996114ee8b --- /dev/null +++ b/site/public/v1/smartphones/honor-8x-standard-edition-dual-sim-td-lte-cn-64gb-jsn-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 849, + "slug": "honor-8x-standard-edition-dual-sim-td-lte-cn-64gb-jsn-al00", + "name": "Honor 8X Standard Edition Dual SIM TD-LTE CN 64GB JSN-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2018-09-11", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 19.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3750, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 0.0, + "camera": 7.5, + "battery": 11.2, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.224933", + "updated_at": "2026-06-19T00:43:44.224933" +} diff --git a/site/public/v1/smartphones/honor-8x-standard-edition-dual-sim-td-lte-cn-64gb-jsn-al00/score/index.json b/site/public/v1/smartphones/honor-8x-standard-edition-dual-sim-td-lte-cn-64gb-jsn-al00/score/index.json new file mode 100644 index 00000000000..e15dd6384e2 --- /dev/null +++ b/site/public/v1/smartphones/honor-8x-standard-edition-dual-sim-td-lte-cn-64gb-jsn-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 0.0, + "camera": 7.5, + "battery": 11.2, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/honor-8x-standard-edition-dual-sim-td-lte-cn-64gb-jsn-tl00/index.json b/site/public/v1/smartphones/honor-8x-standard-edition-dual-sim-td-lte-cn-64gb-jsn-tl00/index.json new file mode 100644 index 00000000000..88a1b77e9e9 --- /dev/null +++ b/site/public/v1/smartphones/honor-8x-standard-edition-dual-sim-td-lte-cn-64gb-jsn-tl00/index.json @@ -0,0 +1,76 @@ +{ + "id": 850, + "slug": "honor-8x-standard-edition-dual-sim-td-lte-cn-64gb-jsn-tl00", + "name": "Honor 8X Standard Edition Dual SIM TD-LTE CN 64GB JSN-TL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2018-09-11", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 19.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3750, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 0.0, + "camera": 7.5, + "battery": 11.2, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.224933", + "updated_at": "2026-06-19T00:43:44.225932" +} diff --git a/site/public/v1/smartphones/honor-8x-standard-edition-dual-sim-td-lte-cn-64gb-jsn-tl00/score/index.json b/site/public/v1/smartphones/honor-8x-standard-edition-dual-sim-td-lte-cn-64gb-jsn-tl00/score/index.json new file mode 100644 index 00000000000..e15dd6384e2 --- /dev/null +++ b/site/public/v1/smartphones/honor-8x-standard-edition-dual-sim-td-lte-cn-64gb-jsn-tl00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 0.0, + "camera": 7.5, + "battery": 11.2, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/honor-9a-global-dual-sim-td-lte-64gb-moa-lx9-moa-l29/index.json b/site/public/v1/smartphones/honor-9a-global-dual-sim-td-lte-64gb-moa-lx9-moa-l29/index.json new file mode 100644 index 00000000000..c63f68a54d8 --- /dev/null +++ b/site/public/v1/smartphones/honor-9a-global-dual-sim-td-lte-64gb-moa-lx9-moa-l29/index.json @@ -0,0 +1,76 @@ +{ + "id": 1147, + "slug": "honor-9a-global-dual-sim-td-lte-64gb-moa-lx9-moa-l29", + "name": "Honor 9A Global Dual SIM TD-LTE 64GB MOA-LX9 / MOA-L29", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-05-04", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 279 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.268097", + "updated_at": "2026-06-19T00:43:44.268097" +} diff --git a/site/public/v1/smartphones/honor-9a-global-dual-sim-td-lte-64gb-moa-lx9-moa-l29/score/index.json b/site/public/v1/smartphones/honor-9a-global-dual-sim-td-lte-64gb-moa-lx9-moa-l29/score/index.json new file mode 100644 index 00000000000..d19ba3069c5 --- /dev/null +++ b/site/public/v1/smartphones/honor-9a-global-dual-sim-td-lte-64gb-moa-lx9-moa-l29/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-9a-global-dual-sim-td-lte-64gb-moa-lx9n-moa-l29n/index.json b/site/public/v1/smartphones/honor-9a-global-dual-sim-td-lte-64gb-moa-lx9n-moa-l29n/index.json new file mode 100644 index 00000000000..216e063029f --- /dev/null +++ b/site/public/v1/smartphones/honor-9a-global-dual-sim-td-lte-64gb-moa-lx9n-moa-l29n/index.json @@ -0,0 +1,76 @@ +{ + "id": 1148, + "slug": "honor-9a-global-dual-sim-td-lte-64gb-moa-lx9n-moa-l29n", + "name": "Honor 9A Global Dual SIM TD-LTE 64GB MOA-LX9N / MOA-L29N", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-07-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 279 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.268097", + "updated_at": "2026-06-19T00:43:44.268097" +} diff --git a/site/public/v1/smartphones/honor-9a-global-dual-sim-td-lte-64gb-moa-lx9n-moa-l29n/score/index.json b/site/public/v1/smartphones/honor-9a-global-dual-sim-td-lte-64gb-moa-lx9n-moa-l29n/score/index.json new file mode 100644 index 00000000000..d19ba3069c5 --- /dev/null +++ b/site/public/v1/smartphones/honor-9a-global-dual-sim-td-lte-64gb-moa-lx9n-moa-l29n/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-9c-global-dual-sim-td-lte-64gb-aka-lx9-aka-l29/index.json b/site/public/v1/smartphones/honor-9c-global-dual-sim-td-lte-64gb-aka-lx9-aka-l29/index.json new file mode 100644 index 00000000000..fbcc93b1b26 --- /dev/null +++ b/site/public/v1/smartphones/honor-9c-global-dual-sim-td-lte-64gb-aka-lx9-aka-l29/index.json @@ -0,0 +1,76 @@ +{ + "id": 1149, + "slug": "honor-9c-global-dual-sim-td-lte-64gb-aka-lx9-aka-l29", + "name": "Honor 9C Global Dual SIM TD-LTE 64GB AKA-LX9 / AKA-L29", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2020-05-04", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.268097", + "updated_at": "2026-06-19T00:43:44.268097" +} diff --git a/site/public/v1/smartphones/honor-9c-global-dual-sim-td-lte-64gb-aka-lx9-aka-l29/score/index.json b/site/public/v1/smartphones/honor-9c-global-dual-sim-td-lte-64gb-aka-lx9-aka-l29/score/index.json new file mode 100644 index 00000000000..6de7755463e --- /dev/null +++ b/site/public/v1/smartphones/honor-9c-global-dual-sim-td-lte-64gb-aka-lx9-aka-l29/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-9i-2018-dual-sim-td-lte-cn-128gb-lld-al30-honor-9n/index.json b/site/public/v1/smartphones/honor-9i-2018-dual-sim-td-lte-cn-128gb-lld-al30-honor-9n/index.json new file mode 100644 index 00000000000..e2fa33edf13 --- /dev/null +++ b/site/public/v1/smartphones/honor-9i-2018-dual-sim-td-lte-cn-128gb-lld-al30-honor-9n/index.json @@ -0,0 +1,76 @@ +{ + "id": 851, + "slug": "honor-9i-2018-dual-sim-td-lte-cn-128gb-lld-al30-honor-9n", + "name": "Honor 9i 2018 Dual SIM TD-LTE CN 128GB LLD-AL30 / Honor 9N", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 25, + "slug": "kirin-659", + "name": "Kirin 659", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 16.0, + "gpu_name": "Mali-T830 MP2", + "url": "/v1/socs/kirin-659" + }, + "release_date": "2018-07-31", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 152.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.225932", + "updated_at": "2026-06-19T00:43:44.225932" +} diff --git a/site/public/v1/smartphones/honor-9i-2018-dual-sim-td-lte-cn-128gb-lld-al30-honor-9n/score/index.json b/site/public/v1/smartphones/honor-9i-2018-dual-sim-td-lte-cn-128gb-lld-al30-honor-9n/score/index.json new file mode 100644 index 00000000000..7c608da209d --- /dev/null +++ b/site/public/v1/smartphones/honor-9i-2018-dual-sim-td-lte-cn-128gb-lld-al30-honor-9n/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/honor-9i-2018-dual-sim-td-lte-cn-64gb-lld-al20-honor-9n/index.json b/site/public/v1/smartphones/honor-9i-2018-dual-sim-td-lte-cn-64gb-lld-al20-honor-9n/index.json new file mode 100644 index 00000000000..fa81517a355 --- /dev/null +++ b/site/public/v1/smartphones/honor-9i-2018-dual-sim-td-lte-cn-64gb-lld-al20-honor-9n/index.json @@ -0,0 +1,76 @@ +{ + "id": 852, + "slug": "honor-9i-2018-dual-sim-td-lte-cn-64gb-lld-al20-honor-9n", + "name": "Honor 9i 2018 Dual SIM TD-LTE CN 64GB LLD-AL20 / Honor 9N", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 25, + "slug": "kirin-659", + "name": "Kirin 659", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 16.0, + "gpu_name": "Mali-T830 MP2", + "url": "/v1/socs/kirin-659" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 152.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.225932", + "updated_at": "2026-06-19T00:43:44.225932" +} diff --git a/site/public/v1/smartphones/honor-9i-2018-dual-sim-td-lte-cn-64gb-lld-al20-honor-9n/score/index.json b/site/public/v1/smartphones/honor-9i-2018-dual-sim-td-lte-cn-64gb-lld-al20-honor-9n/score/index.json new file mode 100644 index 00000000000..7c608da209d --- /dev/null +++ b/site/public/v1/smartphones/honor-9i-2018-dual-sim-td-lte-cn-64gb-lld-al20-honor-9n/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/honor-9s-2020-global-dual-sim-td-lte-32gb-dua-lx9-dua-l29/index.json b/site/public/v1/smartphones/honor-9s-2020-global-dual-sim-td-lte-32gb-dua-lx9-dua-l29/index.json new file mode 100644 index 00000000000..e9ce090901a --- /dev/null +++ b/site/public/v1/smartphones/honor-9s-2020-global-dual-sim-td-lte-32gb-dua-lx9-dua-l29/index.json @@ -0,0 +1,76 @@ +{ + "id": 1150, + "slug": "honor-9s-2020-global-dual-sim-td-lte-32gb-dua-lx9-dua-l29", + "name": "Honor 9S 2020 Global Dual SIM TD-LTE 32GB DUA-LX9 / DUA-L29", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-05-04", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3020, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 144.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.0, + "battery": 0.3, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.269098", + "updated_at": "2026-06-19T00:43:44.269098" +} diff --git a/site/public/v1/smartphones/honor-9s-2020-global-dual-sim-td-lte-32gb-dua-lx9-dua-l29/score/index.json b/site/public/v1/smartphones/honor-9s-2020-global-dual-sim-td-lte-32gb-dua-lx9-dua-l29/score/index.json new file mode 100644 index 00000000000..f0f6ca0e2b1 --- /dev/null +++ b/site/public/v1/smartphones/honor-9s-2020-global-dual-sim-td-lte-32gb-dua-lx9-dua-l29/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.0, + "battery": 0.3, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-9x-lite-dual-sim-lte-a-emea-128gb-jsn-lx1/index.json b/site/public/v1/smartphones/honor-9x-lite-dual-sim-lte-a-emea-128gb-jsn-lx1/index.json new file mode 100644 index 00000000000..44cb809f274 --- /dev/null +++ b/site/public/v1/smartphones/honor-9x-lite-dual-sim-lte-a-emea-128gb-jsn-lx1/index.json @@ -0,0 +1,76 @@ +{ + "id": 1151, + "slug": "honor-9x-lite-dual-sim-lte-a-emea-128gb-jsn-lx1", + "name": "Honor 9X Lite Dual SIM LTE-A EMEA 128GB JSN-LX1", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2020-05-14", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3750, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 0.0, + "camera": 16.5, + "battery": 11.2, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.269098", + "updated_at": "2026-06-19T00:43:44.269098" +} diff --git a/site/public/v1/smartphones/honor-9x-lite-dual-sim-lte-a-emea-128gb-jsn-lx1/score/index.json b/site/public/v1/smartphones/honor-9x-lite-dual-sim-lte-a-emea-128gb-jsn-lx1/score/index.json new file mode 100644 index 00000000000..6a7b25e2004 --- /dev/null +++ b/site/public/v1/smartphones/honor-9x-lite-dual-sim-lte-a-emea-128gb-jsn-lx1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 0.0, + "camera": 16.5, + "battery": 11.2, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/honor-9x-lite-dual-sim-td-lte-apac-128gb-jsn-l22/index.json b/site/public/v1/smartphones/honor-9x-lite-dual-sim-td-lte-apac-128gb-jsn-l22/index.json new file mode 100644 index 00000000000..16a4fede556 --- /dev/null +++ b/site/public/v1/smartphones/honor-9x-lite-dual-sim-td-lte-apac-128gb-jsn-l22/index.json @@ -0,0 +1,76 @@ +{ + "id": 1152, + "slug": "honor-9x-lite-dual-sim-td-lte-apac-128gb-jsn-l22", + "name": "Honor 9X Lite Dual SIM TD-LTE APAC 128GB JSN-L22", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2020-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3750, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 0.0, + "camera": 16.5, + "battery": 11.2, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.269098", + "updated_at": "2026-06-19T00:43:44.269098" +} diff --git a/site/public/v1/smartphones/honor-9x-lite-dual-sim-td-lte-apac-128gb-jsn-l22/score/index.json b/site/public/v1/smartphones/honor-9x-lite-dual-sim-td-lte-apac-128gb-jsn-l22/score/index.json new file mode 100644 index 00000000000..6a7b25e2004 --- /dev/null +++ b/site/public/v1/smartphones/honor-9x-lite-dual-sim-td-lte-apac-128gb-jsn-l22/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 0.0, + "camera": 16.5, + "battery": 11.2, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/honor-9x-premium-edition-dual-sim-td-lte-apac-128gb-stk-lx2-stk-l22/index.json b/site/public/v1/smartphones/honor-9x-premium-edition-dual-sim-td-lte-apac-128gb-stk-lx2-stk-l22/index.json new file mode 100644 index 00000000000..7a4d5d1ce6c --- /dev/null +++ b/site/public/v1/smartphones/honor-9x-premium-edition-dual-sim-td-lte-apac-128gb-stk-lx2-stk-l22/index.json @@ -0,0 +1,76 @@ +{ + "id": 1153, + "slug": "honor-9x-premium-edition-dual-sim-td-lte-apac-128gb-stk-lx2-stk-l22", + "name": "Honor 9X Premium Edition Dual SIM TD-LTE APAC 128GB STK-LX2 / STK-L22", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2020-01-19", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 196.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.269098", + "updated_at": "2026-06-19T00:43:44.269098" +} diff --git a/site/public/v1/smartphones/honor-9x-premium-edition-dual-sim-td-lte-apac-128gb-stk-lx2-stk-l22/score/index.json b/site/public/v1/smartphones/honor-9x-premium-edition-dual-sim-td-lte-apac-128gb-stk-lx2-stk-l22/score/index.json new file mode 100644 index 00000000000..e919f97aa30 --- /dev/null +++ b/site/public/v1/smartphones/honor-9x-premium-edition-dual-sim-td-lte-apac-128gb-stk-lx2-stk-l22/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null +} diff --git a/site/public/v1/smartphones/honor-9x-premium-edition-dual-sim-td-lte-cn-128gb-hlk-al00/index.json b/site/public/v1/smartphones/honor-9x-premium-edition-dual-sim-td-lte-cn-128gb-hlk-al00/index.json new file mode 100644 index 00000000000..87718e43ff3 --- /dev/null +++ b/site/public/v1/smartphones/honor-9x-premium-edition-dual-sim-td-lte-cn-128gb-hlk-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1004, + "slug": "honor-9x-premium-edition-dual-sim-td-lte-cn-128gb-hlk-al00", + "name": "Honor 9X Premium Edition Dual SIM TD-LTE CN 128GB HLK-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 30, + "slug": "kirin-810", + "name": "Kirin 810", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G52 MP6", + "url": "/v1/socs/kirin-810" + }, + "release_date": "2019-07-23", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.248092", + "updated_at": "2026-06-19T00:43:44.248092" +} diff --git a/site/public/v1/smartphones/honor-9x-premium-edition-dual-sim-td-lte-cn-128gb-hlk-al00/score/index.json b/site/public/v1/smartphones/honor-9x-premium-edition-dual-sim-td-lte-cn-128gb-hlk-al00/score/index.json new file mode 100644 index 00000000000..e919f97aa30 --- /dev/null +++ b/site/public/v1/smartphones/honor-9x-premium-edition-dual-sim-td-lte-cn-128gb-hlk-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null +} diff --git a/site/public/v1/smartphones/honor-9x-premium-edition-dual-sim-td-lte-cn-64gb-hlk-al00/index.json b/site/public/v1/smartphones/honor-9x-premium-edition-dual-sim-td-lte-cn-64gb-hlk-al00/index.json new file mode 100644 index 00000000000..0d0f467a769 --- /dev/null +++ b/site/public/v1/smartphones/honor-9x-premium-edition-dual-sim-td-lte-cn-64gb-hlk-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1005, + "slug": "honor-9x-premium-edition-dual-sim-td-lte-cn-64gb-hlk-al00", + "name": "Honor 9X Premium Edition Dual SIM TD-LTE CN 64GB HLK-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 30, + "slug": "kirin-810", + "name": "Kirin 810", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G52 MP6", + "url": "/v1/socs/kirin-810" + }, + "release_date": "2019-07-23", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.248092", + "updated_at": "2026-06-19T00:43:44.248092" +} diff --git a/site/public/v1/smartphones/honor-9x-premium-edition-dual-sim-td-lte-cn-64gb-hlk-al00/score/index.json b/site/public/v1/smartphones/honor-9x-premium-edition-dual-sim-td-lte-cn-64gb-hlk-al00/score/index.json new file mode 100644 index 00000000000..e919f97aa30 --- /dev/null +++ b/site/public/v1/smartphones/honor-9x-premium-edition-dual-sim-td-lte-cn-64gb-hlk-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null +} diff --git a/site/public/v1/smartphones/honor-9x-premium-edition-dual-sim-td-lte-emea-128gb-hlk-l41/index.json b/site/public/v1/smartphones/honor-9x-premium-edition-dual-sim-td-lte-emea-128gb-hlk-l41/index.json new file mode 100644 index 00000000000..c6bb2f58429 --- /dev/null +++ b/site/public/v1/smartphones/honor-9x-premium-edition-dual-sim-td-lte-emea-128gb-hlk-l41/index.json @@ -0,0 +1,76 @@ +{ + "id": 1006, + "slug": "honor-9x-premium-edition-dual-sim-td-lte-emea-128gb-hlk-l41", + "name": "Honor 9X Premium Edition Dual SIM TD-LTE EMEA 128GB HLK-L41", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 30, + "slug": "kirin-810", + "name": "Kirin 810", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G52 MP6", + "url": "/v1/socs/kirin-810" + }, + "release_date": "2019-11-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 196.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.248092", + "updated_at": "2026-06-19T00:43:44.248092" +} diff --git a/site/public/v1/smartphones/honor-9x-premium-edition-dual-sim-td-lte-emea-128gb-hlk-l41/score/index.json b/site/public/v1/smartphones/honor-9x-premium-edition-dual-sim-td-lte-emea-128gb-hlk-l41/score/index.json new file mode 100644 index 00000000000..e919f97aa30 --- /dev/null +++ b/site/public/v1/smartphones/honor-9x-premium-edition-dual-sim-td-lte-emea-128gb-hlk-l41/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null +} diff --git a/site/public/v1/smartphones/honor-9x-pro-dual-sim-td-lte-apac-256gb-hlk-l42/index.json b/site/public/v1/smartphones/honor-9x-pro-dual-sim-td-lte-apac-256gb-hlk-l42/index.json new file mode 100644 index 00000000000..7acbd0b328a --- /dev/null +++ b/site/public/v1/smartphones/honor-9x-pro-dual-sim-td-lte-apac-256gb-hlk-l42/index.json @@ -0,0 +1,76 @@ +{ + "id": 1154, + "slug": "honor-9x-pro-dual-sim-td-lte-apac-256gb-hlk-l42", + "name": "Honor 9X Pro Dual SIM TD-LTE APAC 256GB HLK-L42", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 30, + "slug": "kirin-810", + "name": "Kirin 810", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G52 MP6", + "url": "/v1/socs/kirin-810" + }, + "release_date": "2020-05-19", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 202.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.269098", + "updated_at": "2026-06-19T00:43:44.269098" +} diff --git a/site/public/v1/smartphones/honor-9x-pro-dual-sim-td-lte-apac-256gb-hlk-l42/score/index.json b/site/public/v1/smartphones/honor-9x-pro-dual-sim-td-lte-apac-256gb-hlk-l42/score/index.json new file mode 100644 index 00000000000..e919f97aa30 --- /dev/null +++ b/site/public/v1/smartphones/honor-9x-pro-dual-sim-td-lte-apac-256gb-hlk-l42/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null +} diff --git a/site/public/v1/smartphones/honor-9x-pro-dual-sim-td-lte-cn-128gb-hlk-al10/index.json b/site/public/v1/smartphones/honor-9x-pro-dual-sim-td-lte-cn-128gb-hlk-al10/index.json new file mode 100644 index 00000000000..e66b75f8f90 --- /dev/null +++ b/site/public/v1/smartphones/honor-9x-pro-dual-sim-td-lte-cn-128gb-hlk-al10/index.json @@ -0,0 +1,76 @@ +{ + "id": 1007, + "slug": "honor-9x-pro-dual-sim-td-lte-cn-128gb-hlk-al10", + "name": "Honor 9X Pro Dual SIM TD-LTE CN 128GB HLK-AL10", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 30, + "slug": "kirin-810", + "name": "Kirin 810", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G52 MP6", + "url": "/v1/socs/kirin-810" + }, + "release_date": "2019-07-23", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 3.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.249092", + "updated_at": "2026-06-19T00:43:44.249092" +} diff --git a/site/public/v1/smartphones/honor-9x-pro-dual-sim-td-lte-cn-128gb-hlk-al10/score/index.json b/site/public/v1/smartphones/honor-9x-pro-dual-sim-td-lte-cn-128gb-hlk-al10/score/index.json new file mode 100644 index 00000000000..9a8cd7f4c12 --- /dev/null +++ b/site/public/v1/smartphones/honor-9x-pro-dual-sim-td-lte-cn-128gb-hlk-al10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 3.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null +} diff --git a/site/public/v1/smartphones/honor-9x-pro-dual-sim-td-lte-cn-256gb-hlk-al10/index.json b/site/public/v1/smartphones/honor-9x-pro-dual-sim-td-lte-cn-256gb-hlk-al10/index.json new file mode 100644 index 00000000000..c6b9e59313b --- /dev/null +++ b/site/public/v1/smartphones/honor-9x-pro-dual-sim-td-lte-cn-256gb-hlk-al10/index.json @@ -0,0 +1,76 @@ +{ + "id": 1008, + "slug": "honor-9x-pro-dual-sim-td-lte-cn-256gb-hlk-al10", + "name": "Honor 9X Pro Dual SIM TD-LTE CN 256GB HLK-AL10", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 30, + "slug": "kirin-810", + "name": "Kirin 810", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G52 MP6", + "url": "/v1/socs/kirin-810" + }, + "release_date": "2019-07-23", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 3.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.249092", + "updated_at": "2026-06-19T00:43:44.249092" +} diff --git a/site/public/v1/smartphones/honor-9x-pro-dual-sim-td-lte-cn-256gb-hlk-al10/score/index.json b/site/public/v1/smartphones/honor-9x-pro-dual-sim-td-lte-cn-256gb-hlk-al10/score/index.json new file mode 100644 index 00000000000..9a8cd7f4c12 --- /dev/null +++ b/site/public/v1/smartphones/honor-9x-pro-dual-sim-td-lte-cn-256gb-hlk-al10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 3.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null +} diff --git a/site/public/v1/smartphones/honor-9x-standard-edition-dual-sim-td-lte-apac-128gb-stk-lx2-y9-prime-2019-stk-l22/index.json b/site/public/v1/smartphones/honor-9x-standard-edition-dual-sim-td-lte-apac-128gb-stk-lx2-y9-prime-2019-stk-l22/index.json new file mode 100644 index 00000000000..1aab1d330c3 --- /dev/null +++ b/site/public/v1/smartphones/honor-9x-standard-edition-dual-sim-td-lte-apac-128gb-stk-lx2-y9-prime-2019-stk-l22/index.json @@ -0,0 +1,76 @@ +{ + "id": 1155, + "slug": "honor-9x-standard-edition-dual-sim-td-lte-apac-128gb-stk-lx2-y9-prime-2019-stk-l22", + "name": "Honor 9X Standard Edition Dual SIM TD-LTE APAC 128GB STK-LX2 / Y9 Prime 2019 STK-L22", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2020-01-19", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 196.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.269098", + "updated_at": "2026-06-19T00:43:44.269098" +} diff --git a/site/public/v1/smartphones/honor-9x-standard-edition-dual-sim-td-lte-apac-128gb-stk-lx2-y9-prime-2019-stk-l22/score/index.json b/site/public/v1/smartphones/honor-9x-standard-edition-dual-sim-td-lte-apac-128gb-stk-lx2-y9-prime-2019-stk-l22/score/index.json new file mode 100644 index 00000000000..df376d7c14f --- /dev/null +++ b/site/public/v1/smartphones/honor-9x-standard-edition-dual-sim-td-lte-apac-128gb-stk-lx2-y9-prime-2019-stk-l22/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null +} diff --git a/site/public/v1/smartphones/honor-9x-standard-edition-dual-sim-td-lte-cn-64gb-hlk-al00/index.json b/site/public/v1/smartphones/honor-9x-standard-edition-dual-sim-td-lte-cn-64gb-hlk-al00/index.json new file mode 100644 index 00000000000..fdbf1ec8fb4 --- /dev/null +++ b/site/public/v1/smartphones/honor-9x-standard-edition-dual-sim-td-lte-cn-64gb-hlk-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1009, + "slug": "honor-9x-standard-edition-dual-sim-td-lte-cn-64gb-hlk-al00", + "name": "Honor 9X Standard Edition Dual SIM TD-LTE CN 64GB HLK-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 30, + "slug": "kirin-810", + "name": "Kirin 810", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G52 MP6", + "url": "/v1/socs/kirin-810" + }, + "release_date": "2019-07-23", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.249092", + "updated_at": "2026-06-19T00:43:44.249092" +} diff --git a/site/public/v1/smartphones/honor-9x-standard-edition-dual-sim-td-lte-cn-64gb-hlk-al00/score/index.json b/site/public/v1/smartphones/honor-9x-standard-edition-dual-sim-td-lte-cn-64gb-hlk-al00/score/index.json new file mode 100644 index 00000000000..df376d7c14f --- /dev/null +++ b/site/public/v1/smartphones/honor-9x-standard-edition-dual-sim-td-lte-cn-64gb-hlk-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null +} diff --git a/site/public/v1/smartphones/honor-9x-standard-edition-dual-sim-td-lte-cn-64gb-hlk-tl00/index.json b/site/public/v1/smartphones/honor-9x-standard-edition-dual-sim-td-lte-cn-64gb-hlk-tl00/index.json new file mode 100644 index 00000000000..23c83b10b4c --- /dev/null +++ b/site/public/v1/smartphones/honor-9x-standard-edition-dual-sim-td-lte-cn-64gb-hlk-tl00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1010, + "slug": "honor-9x-standard-edition-dual-sim-td-lte-cn-64gb-hlk-tl00", + "name": "Honor 9X Standard Edition Dual SIM TD-LTE CN 64GB HLK-TL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 30, + "slug": "kirin-810", + "name": "Kirin 810", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G52 MP6", + "url": "/v1/socs/kirin-810" + }, + "release_date": "2019-07-23", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.249092", + "updated_at": "2026-06-19T00:43:44.249092" +} diff --git a/site/public/v1/smartphones/honor-9x-standard-edition-dual-sim-td-lte-cn-64gb-hlk-tl00/score/index.json b/site/public/v1/smartphones/honor-9x-standard-edition-dual-sim-td-lte-cn-64gb-hlk-tl00/score/index.json new file mode 100644 index 00000000000..df376d7c14f --- /dev/null +++ b/site/public/v1/smartphones/honor-9x-standard-edition-dual-sim-td-lte-cn-64gb-hlk-tl00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null +} diff --git a/site/public/v1/smartphones/honor-9x-standard-edition-dual-sim-td-lte-emea-128gb-hlk-lx1-hlk-l21/index.json b/site/public/v1/smartphones/honor-9x-standard-edition-dual-sim-td-lte-emea-128gb-hlk-lx1-hlk-l21/index.json new file mode 100644 index 00000000000..a3139341ec9 --- /dev/null +++ b/site/public/v1/smartphones/honor-9x-standard-edition-dual-sim-td-lte-emea-128gb-hlk-lx1-hlk-l21/index.json @@ -0,0 +1,76 @@ +{ + "id": 1011, + "slug": "honor-9x-standard-edition-dual-sim-td-lte-emea-128gb-hlk-lx1-hlk-l21", + "name": "Honor 9X Standard Edition Dual SIM TD-LTE EMEA 128GB HLK-LX1 / HLK-L21", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 30, + "slug": "kirin-810", + "name": "Kirin 810", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G52 MP6", + "url": "/v1/socs/kirin-810" + }, + "release_date": "2019-11-13", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 196.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.249092", + "updated_at": "2026-06-19T00:43:44.249092" +} diff --git a/site/public/v1/smartphones/honor-9x-standard-edition-dual-sim-td-lte-emea-128gb-hlk-lx1-hlk-l21/score/index.json b/site/public/v1/smartphones/honor-9x-standard-edition-dual-sim-td-lte-emea-128gb-hlk-lx1-hlk-l21/score/index.json new file mode 100644 index 00000000000..df376d7c14f --- /dev/null +++ b/site/public/v1/smartphones/honor-9x-standard-edition-dual-sim-td-lte-emea-128gb-hlk-lx1-hlk-l21/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null +} diff --git a/site/public/v1/smartphones/honor-changwan-7a-dual-sim-td-lte-cn-aum-al00-honor-play-7a/index.json b/site/public/v1/smartphones/honor-changwan-7a-dual-sim-td-lte-cn-aum-al00-honor-play-7a/index.json new file mode 100644 index 00000000000..f964a78f17b --- /dev/null +++ b/site/public/v1/smartphones/honor-changwan-7a-dual-sim-td-lte-cn-aum-al00-honor-play-7a/index.json @@ -0,0 +1,76 @@ +{ + "id": 853, + "slug": "honor-changwan-7a-dual-sim-td-lte-cn-aum-al00-honor-play-7a", + "name": "Honor Changwan 7A Dual SIM TD-LTE CN AUM-AL00 / Honor Play 7A", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-04-04", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.225932", + "updated_at": "2026-06-19T00:43:44.225932" +} diff --git a/site/public/v1/smartphones/honor-changwan-7a-dual-sim-td-lte-cn-aum-al00-honor-play-7a/score/index.json b/site/public/v1/smartphones/honor-changwan-7a-dual-sim-td-lte-cn-aum-al00-honor-play-7a/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/honor-changwan-7a-dual-sim-td-lte-cn-aum-al00-honor-play-7a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-changwan-7a-dual-sim-td-lte-cn-aum-al20/index.json b/site/public/v1/smartphones/honor-changwan-7a-dual-sim-td-lte-cn-aum-al20/index.json new file mode 100644 index 00000000000..e326ef2f70a --- /dev/null +++ b/site/public/v1/smartphones/honor-changwan-7a-dual-sim-td-lte-cn-aum-al20/index.json @@ -0,0 +1,76 @@ +{ + "id": 854, + "slug": "honor-changwan-7a-dual-sim-td-lte-cn-aum-al20", + "name": "Honor Changwan 7A Dual SIM TD-LTE CN AUM-AL20", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-04-04", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.225932", + "updated_at": "2026-06-19T00:43:44.225932" +} diff --git a/site/public/v1/smartphones/honor-changwan-7a-dual-sim-td-lte-cn-aum-al20/score/index.json b/site/public/v1/smartphones/honor-changwan-7a-dual-sim-td-lte-cn-aum-al20/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/honor-changwan-7a-dual-sim-td-lte-cn-aum-al20/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-changwan-7a-dual-sim-td-lte-cn-aum-tl20/index.json b/site/public/v1/smartphones/honor-changwan-7a-dual-sim-td-lte-cn-aum-tl20/index.json new file mode 100644 index 00000000000..4a76804e863 --- /dev/null +++ b/site/public/v1/smartphones/honor-changwan-7a-dual-sim-td-lte-cn-aum-tl20/index.json @@ -0,0 +1,76 @@ +{ + "id": 855, + "slug": "honor-changwan-7a-dual-sim-td-lte-cn-aum-tl20", + "name": "Honor Changwan 7A Dual SIM TD-LTE CN AUM-TL20", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-04-04", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.225932", + "updated_at": "2026-06-19T00:43:44.225932" +} diff --git a/site/public/v1/smartphones/honor-changwan-7a-dual-sim-td-lte-cn-aum-tl20/score/index.json b/site/public/v1/smartphones/honor-changwan-7a-dual-sim-td-lte-cn-aum-tl20/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/honor-changwan-7a-dual-sim-td-lte-cn-aum-tl20/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-changwan-7c-dual-sim-td-lte-cn-lnd-al30-honor-play-7c/index.json b/site/public/v1/smartphones/honor-changwan-7c-dual-sim-td-lte-cn-lnd-al30-honor-play-7c/index.json new file mode 100644 index 00000000000..970dbfb620f --- /dev/null +++ b/site/public/v1/smartphones/honor-changwan-7c-dual-sim-td-lte-cn-lnd-al30-honor-play-7c/index.json @@ -0,0 +1,76 @@ +{ + "id": 856, + "slug": "honor-changwan-7c-dual-sim-td-lte-cn-lnd-al30-honor-play-7c", + "name": "Honor Changwan 7C Dual SIM TD-LTE CN LND-AL30 / Honor Play 7C", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-03-13", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.225932", + "updated_at": "2026-06-19T00:43:44.225932" +} diff --git a/site/public/v1/smartphones/honor-changwan-7c-dual-sim-td-lte-cn-lnd-al30-honor-play-7c/score/index.json b/site/public/v1/smartphones/honor-changwan-7c-dual-sim-td-lte-cn-lnd-al30-honor-play-7c/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/honor-changwan-7c-dual-sim-td-lte-cn-lnd-al30-honor-play-7c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-changwan-7c-dual-sim-td-lte-cn-lnd-al40-honor-play-7c/index.json b/site/public/v1/smartphones/honor-changwan-7c-dual-sim-td-lte-cn-lnd-al40-honor-play-7c/index.json new file mode 100644 index 00000000000..e39f1b4e911 --- /dev/null +++ b/site/public/v1/smartphones/honor-changwan-7c-dual-sim-td-lte-cn-lnd-al40-honor-play-7c/index.json @@ -0,0 +1,76 @@ +{ + "id": 857, + "slug": "honor-changwan-7c-dual-sim-td-lte-cn-lnd-al40-honor-play-7c", + "name": "Honor Changwan 7C Dual SIM TD-LTE CN LND-AL40 / Honor Play 7C", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-03-13", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.225932", + "updated_at": "2026-06-19T00:43:44.225932" +} diff --git a/site/public/v1/smartphones/honor-changwan-7c-dual-sim-td-lte-cn-lnd-al40-honor-play-7c/score/index.json b/site/public/v1/smartphones/honor-changwan-7c-dual-sim-td-lte-cn-lnd-al40-honor-play-7c/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/honor-changwan-7c-dual-sim-td-lte-cn-lnd-al40-honor-play-7c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-changwan-7c-dual-sim-td-lte-cn-lnd-tl30/index.json b/site/public/v1/smartphones/honor-changwan-7c-dual-sim-td-lte-cn-lnd-tl30/index.json new file mode 100644 index 00000000000..9c14393b937 --- /dev/null +++ b/site/public/v1/smartphones/honor-changwan-7c-dual-sim-td-lte-cn-lnd-tl30/index.json @@ -0,0 +1,76 @@ +{ + "id": 858, + "slug": "honor-changwan-7c-dual-sim-td-lte-cn-lnd-tl30", + "name": "Honor Changwan 7C Dual SIM TD-LTE CN LND-TL30", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-03-13", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.226932", + "updated_at": "2026-06-19T00:43:44.226932" +} diff --git a/site/public/v1/smartphones/honor-changwan-7c-dual-sim-td-lte-cn-lnd-tl30/score/index.json b/site/public/v1/smartphones/honor-changwan-7c-dual-sim-td-lte-cn-lnd-tl30/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/honor-changwan-7c-dual-sim-td-lte-cn-lnd-tl30/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-changwan-7c-dual-sim-td-lte-cn-lnd-tl40/index.json b/site/public/v1/smartphones/honor-changwan-7c-dual-sim-td-lte-cn-lnd-tl40/index.json new file mode 100644 index 00000000000..b3901637c0e --- /dev/null +++ b/site/public/v1/smartphones/honor-changwan-7c-dual-sim-td-lte-cn-lnd-tl40/index.json @@ -0,0 +1,76 @@ +{ + "id": 859, + "slug": "honor-changwan-7c-dual-sim-td-lte-cn-lnd-tl40", + "name": "Honor Changwan 7C Dual SIM TD-LTE CN LND-TL40", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-03-13", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.226932", + "updated_at": "2026-06-19T00:43:44.226932" +} diff --git a/site/public/v1/smartphones/honor-changwan-7c-dual-sim-td-lte-cn-lnd-tl40/score/index.json b/site/public/v1/smartphones/honor-changwan-7c-dual-sim-td-lte-cn-lnd-tl40/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/honor-changwan-7c-dual-sim-td-lte-cn-lnd-tl40/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-changwan-8a-dual-sim-td-lte-cn-32gb-jat-al00-honor-play-8a/index.json b/site/public/v1/smartphones/honor-changwan-8a-dual-sim-td-lte-cn-32gb-jat-al00-honor-play-8a/index.json new file mode 100644 index 00000000000..4e05b994e39 --- /dev/null +++ b/site/public/v1/smartphones/honor-changwan-8a-dual-sim-td-lte-cn-32gb-jat-al00-honor-play-8a/index.json @@ -0,0 +1,76 @@ +{ + "id": 1012, + "slug": "honor-changwan-8a-dual-sim-td-lte-cn-32gb-jat-al00-honor-play-8a", + "name": "Honor Changwan 8A Dual SIM TD-LTE CN 32GB JAT-AL00 / Honor Play 8A", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2019-01-08", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3020, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.2, + "performance": 0.0, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.250092", + "updated_at": "2026-06-19T00:43:44.250092" +} diff --git a/site/public/v1/smartphones/honor-changwan-8a-dual-sim-td-lte-cn-32gb-jat-al00-honor-play-8a/score/index.json b/site/public/v1/smartphones/honor-changwan-8a-dual-sim-td-lte-cn-32gb-jat-al00-honor-play-8a/score/index.json new file mode 100644 index 00000000000..83f9924d81f --- /dev/null +++ b/site/public/v1/smartphones/honor-changwan-8a-dual-sim-td-lte-cn-32gb-jat-al00-honor-play-8a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.2, + "performance": 0.0, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-changwan-8a-dual-sim-td-lte-cn-32gb-jat-tl00-honor-glory-8a/index.json b/site/public/v1/smartphones/honor-changwan-8a-dual-sim-td-lte-cn-32gb-jat-tl00-honor-glory-8a/index.json new file mode 100644 index 00000000000..ca03f205eba --- /dev/null +++ b/site/public/v1/smartphones/honor-changwan-8a-dual-sim-td-lte-cn-32gb-jat-tl00-honor-glory-8a/index.json @@ -0,0 +1,76 @@ +{ + "id": 1013, + "slug": "honor-changwan-8a-dual-sim-td-lte-cn-32gb-jat-tl00-honor-glory-8a", + "name": "Honor Changwan 8A Dual SIM TD-LTE CN 32GB JAT-TL00 / Honor Glory 8A", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2019-01-08", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3020, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.2, + "performance": 0.0, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.250092", + "updated_at": "2026-06-19T00:43:44.250092" +} diff --git a/site/public/v1/smartphones/honor-changwan-8a-dual-sim-td-lte-cn-32gb-jat-tl00-honor-glory-8a/score/index.json b/site/public/v1/smartphones/honor-changwan-8a-dual-sim-td-lte-cn-32gb-jat-tl00-honor-glory-8a/score/index.json new file mode 100644 index 00000000000..83f9924d81f --- /dev/null +++ b/site/public/v1/smartphones/honor-changwan-8a-dual-sim-td-lte-cn-32gb-jat-tl00-honor-glory-8a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.2, + "performance": 0.0, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-changwan-8a-dual-sim-td-lte-cn-64gb-jat-al00-honor-play-8a/index.json b/site/public/v1/smartphones/honor-changwan-8a-dual-sim-td-lte-cn-64gb-jat-al00-honor-play-8a/index.json new file mode 100644 index 00000000000..1c0d469f0c3 --- /dev/null +++ b/site/public/v1/smartphones/honor-changwan-8a-dual-sim-td-lte-cn-64gb-jat-al00-honor-play-8a/index.json @@ -0,0 +1,76 @@ +{ + "id": 1014, + "slug": "honor-changwan-8a-dual-sim-td-lte-cn-64gb-jat-al00-honor-play-8a", + "name": "Honor Changwan 8A Dual SIM TD-LTE CN 64GB JAT-AL00 / Honor Play 8A", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2019-01-08", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3020, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.2, + "performance": 0.0, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.250092", + "updated_at": "2026-06-19T00:43:44.250092" +} diff --git a/site/public/v1/smartphones/honor-changwan-8a-dual-sim-td-lte-cn-64gb-jat-al00-honor-play-8a/score/index.json b/site/public/v1/smartphones/honor-changwan-8a-dual-sim-td-lte-cn-64gb-jat-al00-honor-play-8a/score/index.json new file mode 100644 index 00000000000..83f9924d81f --- /dev/null +++ b/site/public/v1/smartphones/honor-changwan-8a-dual-sim-td-lte-cn-64gb-jat-al00-honor-play-8a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.2, + "performance": 0.0, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-changwan-8c-dual-sim-td-lte-cn-bkk-al00-64gb/index.json b/site/public/v1/smartphones/honor-changwan-8c-dual-sim-td-lte-cn-bkk-al00-64gb/index.json new file mode 100644 index 00000000000..9459df92690 --- /dev/null +++ b/site/public/v1/smartphones/honor-changwan-8c-dual-sim-td-lte-cn-bkk-al00-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 860, + "slug": "honor-changwan-8c-dual-sim-td-lte-cn-bkk-al00-64gb", + "name": "Honor Changwan 8C Dual SIM TD-LTE CN BKK-AL00 64GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 167.2, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.226932", + "updated_at": "2026-06-19T00:43:44.226932" +} diff --git a/site/public/v1/smartphones/honor-changwan-8c-dual-sim-td-lte-cn-bkk-al00-64gb/score/index.json b/site/public/v1/smartphones/honor-changwan-8c-dual-sim-td-lte-cn-bkk-al00-64gb/score/index.json new file mode 100644 index 00000000000..a59635bee66 --- /dev/null +++ b/site/public/v1/smartphones/honor-changwan-8c-dual-sim-td-lte-cn-bkk-al00-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-changwan-8c-dual-sim-td-lte-cn-bkk-al10-32gb/index.json b/site/public/v1/smartphones/honor-changwan-8c-dual-sim-td-lte-cn-bkk-al10-32gb/index.json new file mode 100644 index 00000000000..77f4b88a9e2 --- /dev/null +++ b/site/public/v1/smartphones/honor-changwan-8c-dual-sim-td-lte-cn-bkk-al10-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 861, + "slug": "honor-changwan-8c-dual-sim-td-lte-cn-bkk-al10-32gb", + "name": "Honor Changwan 8C Dual SIM TD-LTE CN BKK-AL10 32GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 167.2, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.226932", + "updated_at": "2026-06-19T00:43:44.226932" +} diff --git a/site/public/v1/smartphones/honor-changwan-8c-dual-sim-td-lte-cn-bkk-al10-32gb/score/index.json b/site/public/v1/smartphones/honor-changwan-8c-dual-sim-td-lte-cn-bkk-al10-32gb/score/index.json new file mode 100644 index 00000000000..a59635bee66 --- /dev/null +++ b/site/public/v1/smartphones/honor-changwan-8c-dual-sim-td-lte-cn-bkk-al10-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-changwan-8c-dual-sim-td-lte-cn-bkk-tl00-64gb/index.json b/site/public/v1/smartphones/honor-changwan-8c-dual-sim-td-lte-cn-bkk-tl00-64gb/index.json new file mode 100644 index 00000000000..322ae88d4cb --- /dev/null +++ b/site/public/v1/smartphones/honor-changwan-8c-dual-sim-td-lte-cn-bkk-tl00-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 862, + "slug": "honor-changwan-8c-dual-sim-td-lte-cn-bkk-tl00-64gb", + "name": "Honor Changwan 8C Dual SIM TD-LTE CN BKK-TL00 64GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 167.2, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.226932", + "updated_at": "2026-06-19T00:43:44.226932" +} diff --git a/site/public/v1/smartphones/honor-changwan-8c-dual-sim-td-lte-cn-bkk-tl00-64gb/score/index.json b/site/public/v1/smartphones/honor-changwan-8c-dual-sim-td-lte-cn-bkk-tl00-64gb/score/index.json new file mode 100644 index 00000000000..a59635bee66 --- /dev/null +++ b/site/public/v1/smartphones/honor-changwan-8c-dual-sim-td-lte-cn-bkk-tl00-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-magic-2-premium-edition-dual-sim-td-lte-cn-128gb-tny-al00/index.json b/site/public/v1/smartphones/honor-magic-2-premium-edition-dual-sim-td-lte-cn-128gb-tny-al00/index.json new file mode 100644 index 00000000000..3fdc2f36214 --- /dev/null +++ b/site/public/v1/smartphones/honor-magic-2-premium-edition-dual-sim-td-lte-cn-128gb-tny-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 863, + "slug": "honor-magic-2-premium-edition-dual-sim-td-lte-cn-128gb-tny-al00", + "name": "Honor Magic 2 Premium Edition Dual SIM TD-LTE CN 128GB TNY-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2018-11-02", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.8, + "performance": 56.0, + "camera": 6.3, + "battery": 7.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.226932", + "updated_at": "2026-06-19T00:43:44.226932" +} diff --git a/site/public/v1/smartphones/honor-magic-2-premium-edition-dual-sim-td-lte-cn-128gb-tny-al00/score/index.json b/site/public/v1/smartphones/honor-magic-2-premium-edition-dual-sim-td-lte-cn-128gb-tny-al00/score/index.json new file mode 100644 index 00000000000..34cca6b96af --- /dev/null +++ b/site/public/v1/smartphones/honor-magic-2-premium-edition-dual-sim-td-lte-cn-128gb-tny-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.8, + "performance": 56.0, + "camera": 6.3, + "battery": 7.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/honor-magic-2-premium-edition-dual-sim-td-lte-cn-256gb-tny-al00/index.json b/site/public/v1/smartphones/honor-magic-2-premium-edition-dual-sim-td-lte-cn-256gb-tny-al00/index.json new file mode 100644 index 00000000000..e50afdd4446 --- /dev/null +++ b/site/public/v1/smartphones/honor-magic-2-premium-edition-dual-sim-td-lte-cn-256gb-tny-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 864, + "slug": "honor-magic-2-premium-edition-dual-sim-td-lte-cn-256gb-tny-al00", + "name": "Honor Magic 2 Premium Edition Dual SIM TD-LTE CN 256GB TNY-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2018-11-02", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.8, + "performance": 56.0, + "camera": 6.3, + "battery": 7.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.226932", + "updated_at": "2026-06-19T00:43:44.226932" +} diff --git a/site/public/v1/smartphones/honor-magic-2-premium-edition-dual-sim-td-lte-cn-256gb-tny-al00/score/index.json b/site/public/v1/smartphones/honor-magic-2-premium-edition-dual-sim-td-lte-cn-256gb-tny-al00/score/index.json new file mode 100644 index 00000000000..34cca6b96af --- /dev/null +++ b/site/public/v1/smartphones/honor-magic-2-premium-edition-dual-sim-td-lte-cn-256gb-tny-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.8, + "performance": 56.0, + "camera": 6.3, + "battery": 7.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/honor-magic-2-standard-edition-dual-sim-td-lte-cn-128gb-tny-al00/index.json b/site/public/v1/smartphones/honor-magic-2-standard-edition-dual-sim-td-lte-cn-128gb-tny-al00/index.json new file mode 100644 index 00000000000..a0be15e8265 --- /dev/null +++ b/site/public/v1/smartphones/honor-magic-2-standard-edition-dual-sim-td-lte-cn-128gb-tny-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 865, + "slug": "honor-magic-2-standard-edition-dual-sim-td-lte-cn-128gb-tny-al00", + "name": "Honor Magic 2 Standard Edition Dual SIM TD-LTE CN 128GB TNY-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2018-11-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.4, + "performance": 54.5, + "camera": 6.3, + "battery": 7.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.226932", + "updated_at": "2026-06-19T00:43:44.226932" +} diff --git a/site/public/v1/smartphones/honor-magic-2-standard-edition-dual-sim-td-lte-cn-128gb-tny-al00/score/index.json b/site/public/v1/smartphones/honor-magic-2-standard-edition-dual-sim-td-lte-cn-128gb-tny-al00/score/index.json new file mode 100644 index 00000000000..f5cd08cddf0 --- /dev/null +++ b/site/public/v1/smartphones/honor-magic-2-standard-edition-dual-sim-td-lte-cn-128gb-tny-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.4, + "performance": 54.5, + "camera": 6.3, + "battery": 7.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/honor-magic-2-standard-edition-dual-sim-td-lte-cn-128gb-tny-tl00/index.json b/site/public/v1/smartphones/honor-magic-2-standard-edition-dual-sim-td-lte-cn-128gb-tny-tl00/index.json new file mode 100644 index 00000000000..bd63998ebeb --- /dev/null +++ b/site/public/v1/smartphones/honor-magic-2-standard-edition-dual-sim-td-lte-cn-128gb-tny-tl00/index.json @@ -0,0 +1,76 @@ +{ + "id": 866, + "slug": "honor-magic-2-standard-edition-dual-sim-td-lte-cn-128gb-tny-tl00", + "name": "Honor Magic 2 Standard Edition Dual SIM TD-LTE CN 128GB TNY-TL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2018-11-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.4, + "performance": 54.5, + "camera": 6.3, + "battery": 7.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.227931", + "updated_at": "2026-06-19T00:43:44.227931" +} diff --git a/site/public/v1/smartphones/honor-magic-2-standard-edition-dual-sim-td-lte-cn-128gb-tny-tl00/score/index.json b/site/public/v1/smartphones/honor-magic-2-standard-edition-dual-sim-td-lte-cn-128gb-tny-tl00/score/index.json new file mode 100644 index 00000000000..f5cd08cddf0 --- /dev/null +++ b/site/public/v1/smartphones/honor-magic-2-standard-edition-dual-sim-td-lte-cn-128gb-tny-tl00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.4, + "performance": 54.5, + "camera": 6.3, + "battery": 7.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/honor-magic-3-5g-dual-sim-td-lte-cn-128gb-elz-an00/index.json b/site/public/v1/smartphones/honor-magic-3-5g-dual-sim-td-lte-cn-128gb-elz-an00/index.json new file mode 100644 index 00000000000..3adbb9f3416 --- /dev/null +++ b/site/public/v1/smartphones/honor-magic-3-5g-dual-sim-td-lte-cn-128gb-elz-an00/index.json @@ -0,0 +1,77 @@ +{ + "id": 1242, + "slug": "honor-magic-3-5g-dual-sim-td-lte-cn-128gb-elz-an00", + "name": "Honor Magic 3 5G Dual SIM TD-LTE CN 128GB ELZ-AN00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-18", + "msrp_usd": 4599, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.76, + "resolution": "1344x2772", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4600, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.4, + "performance": 6.4, + "camera": 17.2, + "battery": 43.7, + "display": 58.1, + "value": 15.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.279605", + "updated_at": "2026-06-19T00:43:44.279605" +} diff --git a/site/public/v1/smartphones/honor-magic-3-5g-dual-sim-td-lte-cn-128gb-elz-an00/score/index.json b/site/public/v1/smartphones/honor-magic-3-5g-dual-sim-td-lte-cn-128gb-elz-an00/score/index.json new file mode 100644 index 00000000000..637e24865f9 --- /dev/null +++ b/site/public/v1/smartphones/honor-magic-3-5g-dual-sim-td-lte-cn-128gb-elz-an00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.4, + "performance": 6.4, + "camera": 17.2, + "battery": 43.7, + "display": 58.1, + "value": 15.7 +} diff --git a/site/public/v1/smartphones/honor-magic-3-5g-dual-sim-td-lte-cn-256gb-elz-an00/index.json b/site/public/v1/smartphones/honor-magic-3-5g-dual-sim-td-lte-cn-256gb-elz-an00/index.json new file mode 100644 index 00000000000..437061e8f5c --- /dev/null +++ b/site/public/v1/smartphones/honor-magic-3-5g-dual-sim-td-lte-cn-256gb-elz-an00/index.json @@ -0,0 +1,77 @@ +{ + "id": 1243, + "slug": "honor-magic-3-5g-dual-sim-td-lte-cn-256gb-elz-an00", + "name": "Honor Magic 3 5G Dual SIM TD-LTE CN 256GB ELZ-AN00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-18", + "msrp_usd": 4999, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1344x2772", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4600, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.4, + "performance": 6.4, + "camera": 17.2, + "battery": 43.7, + "display": 58.1, + "value": 15.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.279605", + "updated_at": "2026-06-19T00:43:44.279605" +} diff --git a/site/public/v1/smartphones/honor-magic-3-5g-dual-sim-td-lte-cn-256gb-elz-an00/score/index.json b/site/public/v1/smartphones/honor-magic-3-5g-dual-sim-td-lte-cn-256gb-elz-an00/score/index.json new file mode 100644 index 00000000000..637e24865f9 --- /dev/null +++ b/site/public/v1/smartphones/honor-magic-3-5g-dual-sim-td-lte-cn-256gb-elz-an00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.4, + "performance": 6.4, + "camera": 17.2, + "battery": 43.7, + "display": 58.1, + "value": 15.7 +} diff --git a/site/public/v1/smartphones/honor-magic-3-5g-ultimate-edition-dual-sim-td-lte-cn-512gb-elz-an20/index.json b/site/public/v1/smartphones/honor-magic-3-5g-ultimate-edition-dual-sim-td-lte-cn-512gb-elz-an20/index.json new file mode 100644 index 00000000000..1aee02c1b0f --- /dev/null +++ b/site/public/v1/smartphones/honor-magic-3-5g-ultimate-edition-dual-sim-td-lte-cn-512gb-elz-an20/index.json @@ -0,0 +1,77 @@ +{ + "id": 1244, + "slug": "honor-magic-3-5g-ultimate-edition-dual-sim-td-lte-cn-512gb-elz-an20", + "name": "Honor Magic 3 5G Ultimate Edition Dual SIM TD-LTE CN 512GB ELZ-AN20", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-08-18", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.76, + "resolution": "1344x2772", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4600, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 213.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 11.2, + "camera": 17.2, + "battery": 43.7, + "display": 58.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.279605", + "updated_at": "2026-06-19T00:43:44.279605" +} diff --git a/site/public/v1/smartphones/honor-magic-3-5g-ultimate-edition-dual-sim-td-lte-cn-512gb-elz-an20/score/index.json b/site/public/v1/smartphones/honor-magic-3-5g-ultimate-edition-dual-sim-td-lte-cn-512gb-elz-an20/score/index.json new file mode 100644 index 00000000000..cc3c080a990 --- /dev/null +++ b/site/public/v1/smartphones/honor-magic-3-5g-ultimate-edition-dual-sim-td-lte-cn-512gb-elz-an20/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 11.2, + "camera": 17.2, + "battery": 43.7, + "display": 58.1, + "value": null +} diff --git a/site/public/v1/smartphones/honor-magic-3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-elz-an10/index.json b/site/public/v1/smartphones/honor-magic-3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-elz-an10/index.json new file mode 100644 index 00000000000..3161779c639 --- /dev/null +++ b/site/public/v1/smartphones/honor-magic-3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-elz-an10/index.json @@ -0,0 +1,77 @@ +{ + "id": 1245, + "slug": "honor-magic-3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-elz-an10", + "name": "Honor Magic 3 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB ELZ-AN10", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-08-18", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1344x2772", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4600, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 213.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 11.2, + "camera": 17.2, + "battery": 43.7, + "display": 58.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.279605", + "updated_at": "2026-06-19T00:43:44.279605" +} diff --git a/site/public/v1/smartphones/honor-magic-3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-elz-an10/score/index.json b/site/public/v1/smartphones/honor-magic-3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-elz-an10/score/index.json new file mode 100644 index 00000000000..cc3c080a990 --- /dev/null +++ b/site/public/v1/smartphones/honor-magic-3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-elz-an10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 11.2, + "camera": 17.2, + "battery": 43.7, + "display": 58.1, + "value": null +} diff --git a/site/public/v1/smartphones/honor-magic-3-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-elz-an10/index.json b/site/public/v1/smartphones/honor-magic-3-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-elz-an10/index.json new file mode 100644 index 00000000000..5f6c641287e --- /dev/null +++ b/site/public/v1/smartphones/honor-magic-3-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-elz-an10/index.json @@ -0,0 +1,77 @@ +{ + "id": 1246, + "slug": "honor-magic-3-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-elz-an10", + "name": "Honor Magic 3 Pro 5G Premium Edition Dual SIM TD-LTE CN 512GB ELZ-AN10", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-08-18", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.76, + "resolution": "1344x2772", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4600, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 213.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 11.2, + "camera": 17.2, + "battery": 43.7, + "display": 58.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.280605", + "updated_at": "2026-06-19T00:43:44.280605" +} diff --git a/site/public/v1/smartphones/honor-magic-3-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-elz-an10/score/index.json b/site/public/v1/smartphones/honor-magic-3-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-elz-an10/score/index.json new file mode 100644 index 00000000000..cc3c080a990 --- /dev/null +++ b/site/public/v1/smartphones/honor-magic-3-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-elz-an10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 11.2, + "camera": 17.2, + "battery": 43.7, + "display": 58.1, + "value": null +} diff --git a/site/public/v1/smartphones/honor-magic-3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-elz-an10/index.json b/site/public/v1/smartphones/honor-magic-3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-elz-an10/index.json new file mode 100644 index 00000000000..e5d84c96d12 --- /dev/null +++ b/site/public/v1/smartphones/honor-magic-3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-elz-an10/index.json @@ -0,0 +1,77 @@ +{ + "id": 1247, + "slug": "honor-magic-3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-elz-an10", + "name": "Honor Magic 3 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB ELZ-AN10", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-08-18", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1344x2772", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4600, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 213.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.8, + "performance": 8.2, + "camera": 17.2, + "battery": 43.7, + "display": 58.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.280605", + "updated_at": "2026-06-19T00:43:44.280605" +} diff --git a/site/public/v1/smartphones/honor-magic-3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-elz-an10/score/index.json b/site/public/v1/smartphones/honor-magic-3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-elz-an10/score/index.json new file mode 100644 index 00000000000..a25d29f4282 --- /dev/null +++ b/site/public/v1/smartphones/honor-magic-3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-elz-an10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.8, + "performance": 8.2, + "camera": 17.2, + "battery": 43.7, + "display": 58.1, + "value": null +} diff --git a/site/public/v1/smartphones/honor-note-10-premium-edition-dual-sim-td-lte-cn-rvl-al09-128gb/index.json b/site/public/v1/smartphones/honor-note-10-premium-edition-dual-sim-td-lte-cn-rvl-al09-128gb/index.json new file mode 100644 index 00000000000..60655e08296 --- /dev/null +++ b/site/public/v1/smartphones/honor-note-10-premium-edition-dual-sim-td-lte-cn-rvl-al09-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 867, + "slug": "honor-note-10-premium-edition-dual-sim-td-lte-cn-rvl-al09-128gb", + "name": "Honor Note 10 Premium Edition Dual SIM TD-LTE CN RVL-AL09 128GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.95, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 355 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 230.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.1, + "performance": 27.5, + "camera": 6.3, + "battery": 30.0, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.227931", + "updated_at": "2026-06-19T00:43:44.227931" +} diff --git a/site/public/v1/smartphones/honor-note-10-premium-edition-dual-sim-td-lte-cn-rvl-al09-128gb/score/index.json b/site/public/v1/smartphones/honor-note-10-premium-edition-dual-sim-td-lte-cn-rvl-al09-128gb/score/index.json new file mode 100644 index 00000000000..f2e07b67cf7 --- /dev/null +++ b/site/public/v1/smartphones/honor-note-10-premium-edition-dual-sim-td-lte-cn-rvl-al09-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.1, + "performance": 27.5, + "camera": 6.3, + "battery": 30.0, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/honor-note-10-standard-edition-dual-sim-td-lte-cn-rvl-al09-128gb/index.json b/site/public/v1/smartphones/honor-note-10-standard-edition-dual-sim-td-lte-cn-rvl-al09-128gb/index.json new file mode 100644 index 00000000000..aea6a1a0662 --- /dev/null +++ b/site/public/v1/smartphones/honor-note-10-standard-edition-dual-sim-td-lte-cn-rvl-al09-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 868, + "slug": "honor-note-10-standard-edition-dual-sim-td-lte-cn-rvl-al09-128gb", + "name": "Honor Note 10 Standard Edition Dual SIM TD-LTE CN RVL-AL09 128GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.95, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 355 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 230.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.7, + "performance": 26.0, + "camera": 6.3, + "battery": 30.0, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.227931", + "updated_at": "2026-06-19T00:43:44.227931" +} diff --git a/site/public/v1/smartphones/honor-note-10-standard-edition-dual-sim-td-lte-cn-rvl-al09-128gb/score/index.json b/site/public/v1/smartphones/honor-note-10-standard-edition-dual-sim-td-lte-cn-rvl-al09-128gb/score/index.json new file mode 100644 index 00000000000..4340b2c79db --- /dev/null +++ b/site/public/v1/smartphones/honor-note-10-standard-edition-dual-sim-td-lte-cn-rvl-al09-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.7, + "performance": 26.0, + "camera": 6.3, + "battery": 30.0, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/honor-note-10-standard-edition-dual-sim-td-lte-cn-rvl-al09-64gb/index.json b/site/public/v1/smartphones/honor-note-10-standard-edition-dual-sim-td-lte-cn-rvl-al09-64gb/index.json new file mode 100644 index 00000000000..09879963e87 --- /dev/null +++ b/site/public/v1/smartphones/honor-note-10-standard-edition-dual-sim-td-lte-cn-rvl-al09-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 869, + "slug": "honor-note-10-standard-edition-dual-sim-td-lte-cn-rvl-al09-64gb", + "name": "Honor Note 10 Standard Edition Dual SIM TD-LTE CN RVL-AL09 64GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.95, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 355 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 230.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.7, + "performance": 26.0, + "camera": 6.3, + "battery": 30.0, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.227931", + "updated_at": "2026-06-19T00:43:44.227931" +} diff --git a/site/public/v1/smartphones/honor-note-10-standard-edition-dual-sim-td-lte-cn-rvl-al09-64gb/score/index.json b/site/public/v1/smartphones/honor-note-10-standard-edition-dual-sim-td-lte-cn-rvl-al09-64gb/score/index.json new file mode 100644 index 00000000000..4340b2c79db --- /dev/null +++ b/site/public/v1/smartphones/honor-note-10-standard-edition-dual-sim-td-lte-cn-rvl-al09-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.7, + "performance": 26.0, + "camera": 6.3, + "battery": 30.0, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/honor-play-20-premium-edition-dual-sim-td-lte-cn-128gb-koz-al00-changwan-20/index.json b/site/public/v1/smartphones/honor-play-20-premium-edition-dual-sim-td-lte-cn-128gb-koz-al00-changwan-20/index.json new file mode 100644 index 00000000000..90c95dcc932 --- /dev/null +++ b/site/public/v1/smartphones/honor-play-20-premium-edition-dual-sim-td-lte-cn-128gb-koz-al00-changwan-20/index.json @@ -0,0 +1,76 @@ +{ + "id": 1248, + "slug": "honor-play-20-premium-edition-dual-sim-td-lte-cn-128gb-koz-al00-changwan-20", + "name": "Honor Play 20 Premium Edition Dual SIM TD-LTE CN 128GB KOZ-AL00 / Changwan 20", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 211, + "slug": "tiger-t610", + "name": "Unisoc Tiger T610", + "manufacturer": { + "slug": "unisoc", + "name": "UNISOC", + "url": "/v1/brands/unisoc" + }, + "process_nm": 12.0, + "gpu_name": "Mali G52 MP2", + "url": "/v1/socs/tiger-t610" + }, + "release_date": "2021-04-01", + "msrp_usd": 1099, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": 1.5, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 28.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.280605", + "updated_at": "2026-06-19T00:43:44.280605" +} diff --git a/site/public/v1/smartphones/honor-play-20-premium-edition-dual-sim-td-lte-cn-128gb-koz-al00-changwan-20/score/index.json b/site/public/v1/smartphones/honor-play-20-premium-edition-dual-sim-td-lte-cn-128gb-koz-al00-changwan-20/score/index.json new file mode 100644 index 00000000000..f10f285d089 --- /dev/null +++ b/site/public/v1/smartphones/honor-play-20-premium-edition-dual-sim-td-lte-cn-128gb-koz-al00-changwan-20/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": 1.5, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 28.2 +} diff --git a/site/public/v1/smartphones/honor-play-20-standard-edition-dual-sim-td-lte-cn-128gb-koz-al00/index.json b/site/public/v1/smartphones/honor-play-20-standard-edition-dual-sim-td-lte-cn-128gb-koz-al00/index.json new file mode 100644 index 00000000000..3c46617e244 --- /dev/null +++ b/site/public/v1/smartphones/honor-play-20-standard-edition-dual-sim-td-lte-cn-128gb-koz-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1249, + "slug": "honor-play-20-standard-edition-dual-sim-td-lte-cn-128gb-koz-al00", + "name": "Honor Play 20 Standard Edition Dual SIM TD-LTE CN 128GB KOZ-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 211, + "slug": "tiger-t610", + "name": "Unisoc Tiger T610", + "manufacturer": { + "slug": "unisoc", + "name": "UNISOC", + "url": "/v1/brands/unisoc" + }, + "process_nm": 12.0, + "gpu_name": "Mali G52 MP2", + "url": "/v1/socs/tiger-t610" + }, + "release_date": "2021-04-01", + "msrp_usd": 899, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 35.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.280605", + "updated_at": "2026-06-19T00:43:44.280605" +} diff --git a/site/public/v1/smartphones/honor-play-20-standard-edition-dual-sim-td-lte-cn-128gb-koz-al00/score/index.json b/site/public/v1/smartphones/honor-play-20-standard-edition-dual-sim-td-lte-cn-128gb-koz-al00/score/index.json new file mode 100644 index 00000000000..e68df5ec707 --- /dev/null +++ b/site/public/v1/smartphones/honor-play-20-standard-edition-dual-sim-td-lte-cn-128gb-koz-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 35.8 +} diff --git a/site/public/v1/smartphones/honor-play-20-top-edition-dual-sim-td-lte-cn-128gb-koz-al00/index.json b/site/public/v1/smartphones/honor-play-20-top-edition-dual-sim-td-lte-cn-128gb-koz-al00/index.json new file mode 100644 index 00000000000..f83b202d028 --- /dev/null +++ b/site/public/v1/smartphones/honor-play-20-top-edition-dual-sim-td-lte-cn-128gb-koz-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1250, + "slug": "honor-play-20-top-edition-dual-sim-td-lte-cn-128gb-koz-al00", + "name": "Honor Play 20 Top Edition Dual SIM TD-LTE CN 128GB KOZ-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 211, + "slug": "tiger-t610", + "name": "Unisoc Tiger T610", + "manufacturer": { + "slug": "unisoc", + "name": "UNISOC", + "url": "/v1/brands/unisoc" + }, + "process_nm": 12.0, + "gpu_name": "Mali G52 MP2", + "url": "/v1/socs/tiger-t610" + }, + "release_date": "2021-05-01", + "msrp_usd": 1399, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 3.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 16.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.280605", + "updated_at": "2026-06-19T00:43:44.280605" +} diff --git a/site/public/v1/smartphones/honor-play-20-top-edition-dual-sim-td-lte-cn-128gb-koz-al00/score/index.json b/site/public/v1/smartphones/honor-play-20-top-edition-dual-sim-td-lte-cn-128gb-koz-al00/score/index.json new file mode 100644 index 00000000000..2e19f1ec1c7 --- /dev/null +++ b/site/public/v1/smartphones/honor-play-20-top-edition-dual-sim-td-lte-cn-128gb-koz-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 3.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 16.9 +} diff --git a/site/public/v1/smartphones/honor-play-3-premium-edition-dual-sim-td-lte-cn-128gb-ask-al00x/index.json b/site/public/v1/smartphones/honor-play-3-premium-edition-dual-sim-td-lte-cn-128gb-ask-al00x/index.json new file mode 100644 index 00000000000..fcc090ffe0c --- /dev/null +++ b/site/public/v1/smartphones/honor-play-3-premium-edition-dual-sim-td-lte-cn-128gb-ask-al00x/index.json @@ -0,0 +1,76 @@ +{ + "id": 1015, + "slug": "honor-play-3-premium-edition-dual-sim-td-lte-cn-128gb-ask-al00x", + "name": "Honor Play 3 Premium Edition Dual SIM TD-LTE CN 128GB ASK-AL00x", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.250092", + "updated_at": "2026-06-19T00:43:44.250092" +} diff --git a/site/public/v1/smartphones/honor-play-3-premium-edition-dual-sim-td-lte-cn-128gb-ask-al00x/score/index.json b/site/public/v1/smartphones/honor-play-3-premium-edition-dual-sim-td-lte-cn-128gb-ask-al00x/score/index.json new file mode 100644 index 00000000000..aa8f9cfc108 --- /dev/null +++ b/site/public/v1/smartphones/honor-play-3-premium-edition-dual-sim-td-lte-cn-128gb-ask-al00x/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-play-3-premium-edition-dual-sim-td-lte-cn-64gb-ask-al00x/index.json b/site/public/v1/smartphones/honor-play-3-premium-edition-dual-sim-td-lte-cn-64gb-ask-al00x/index.json new file mode 100644 index 00000000000..dd83037c824 --- /dev/null +++ b/site/public/v1/smartphones/honor-play-3-premium-edition-dual-sim-td-lte-cn-64gb-ask-al00x/index.json @@ -0,0 +1,76 @@ +{ + "id": 1016, + "slug": "honor-play-3-premium-edition-dual-sim-td-lte-cn-64gb-ask-al00x", + "name": "Honor Play 3 Premium Edition Dual SIM TD-LTE CN 64GB ASK-AL00x", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-09-07", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.250092", + "updated_at": "2026-06-19T00:43:44.250092" +} diff --git a/site/public/v1/smartphones/honor-play-3-premium-edition-dual-sim-td-lte-cn-64gb-ask-al00x/score/index.json b/site/public/v1/smartphones/honor-play-3-premium-edition-dual-sim-td-lte-cn-64gb-ask-al00x/score/index.json new file mode 100644 index 00000000000..aa8f9cfc108 --- /dev/null +++ b/site/public/v1/smartphones/honor-play-3-premium-edition-dual-sim-td-lte-cn-64gb-ask-al00x/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-play-3-standard-edition-dual-sim-td-lte-cn-128gb-ask-al00x/index.json b/site/public/v1/smartphones/honor-play-3-standard-edition-dual-sim-td-lte-cn-128gb-ask-al00x/index.json new file mode 100644 index 00000000000..833d65b261f --- /dev/null +++ b/site/public/v1/smartphones/honor-play-3-standard-edition-dual-sim-td-lte-cn-128gb-ask-al00x/index.json @@ -0,0 +1,76 @@ +{ + "id": 1017, + "slug": "honor-play-3-standard-edition-dual-sim-td-lte-cn-128gb-ask-al00x", + "name": "Honor Play 3 Standard Edition Dual SIM TD-LTE CN 128GB ASK-AL00x", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-09-07", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.250092", + "updated_at": "2026-06-19T00:43:44.250092" +} diff --git a/site/public/v1/smartphones/honor-play-3-standard-edition-dual-sim-td-lte-cn-128gb-ask-al00x/score/index.json b/site/public/v1/smartphones/honor-play-3-standard-edition-dual-sim-td-lte-cn-128gb-ask-al00x/score/index.json new file mode 100644 index 00000000000..6de7755463e --- /dev/null +++ b/site/public/v1/smartphones/honor-play-3-standard-edition-dual-sim-td-lte-cn-128gb-ask-al00x/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-play-3-standard-edition-dual-sim-td-lte-cn-128gb-ask-tl00x/index.json b/site/public/v1/smartphones/honor-play-3-standard-edition-dual-sim-td-lte-cn-128gb-ask-tl00x/index.json new file mode 100644 index 00000000000..20231dbf48f --- /dev/null +++ b/site/public/v1/smartphones/honor-play-3-standard-edition-dual-sim-td-lte-cn-128gb-ask-tl00x/index.json @@ -0,0 +1,76 @@ +{ + "id": 1018, + "slug": "honor-play-3-standard-edition-dual-sim-td-lte-cn-128gb-ask-tl00x", + "name": "Honor Play 3 Standard Edition Dual SIM TD-LTE CN 128GB ASK-TL00x", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.250092", + "updated_at": "2026-06-19T00:43:44.250092" +} diff --git a/site/public/v1/smartphones/honor-play-3-standard-edition-dual-sim-td-lte-cn-128gb-ask-tl00x/score/index.json b/site/public/v1/smartphones/honor-play-3-standard-edition-dual-sim-td-lte-cn-128gb-ask-tl00x/score/index.json new file mode 100644 index 00000000000..6de7755463e --- /dev/null +++ b/site/public/v1/smartphones/honor-play-3-standard-edition-dual-sim-td-lte-cn-128gb-ask-tl00x/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-play-3-standard-edition-dual-sim-td-lte-cn-64gb-ask-al00x/index.json b/site/public/v1/smartphones/honor-play-3-standard-edition-dual-sim-td-lte-cn-64gb-ask-al00x/index.json new file mode 100644 index 00000000000..17996b4b508 --- /dev/null +++ b/site/public/v1/smartphones/honor-play-3-standard-edition-dual-sim-td-lte-cn-64gb-ask-al00x/index.json @@ -0,0 +1,76 @@ +{ + "id": 1019, + "slug": "honor-play-3-standard-edition-dual-sim-td-lte-cn-64gb-ask-al00x", + "name": "Honor Play 3 Standard Edition Dual SIM TD-LTE CN 64GB ASK-AL00x", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-09-07", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.251091", + "updated_at": "2026-06-19T00:43:44.251091" +} diff --git a/site/public/v1/smartphones/honor-play-3-standard-edition-dual-sim-td-lte-cn-64gb-ask-al00x/score/index.json b/site/public/v1/smartphones/honor-play-3-standard-edition-dual-sim-td-lte-cn-64gb-ask-al00x/score/index.json new file mode 100644 index 00000000000..6de7755463e --- /dev/null +++ b/site/public/v1/smartphones/honor-play-3-standard-edition-dual-sim-td-lte-cn-64gb-ask-al00x/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-play-3-standard-edition-dual-sim-td-lte-cn-64gb-ask-tl00x/index.json b/site/public/v1/smartphones/honor-play-3-standard-edition-dual-sim-td-lte-cn-64gb-ask-tl00x/index.json new file mode 100644 index 00000000000..fce2f46d285 --- /dev/null +++ b/site/public/v1/smartphones/honor-play-3-standard-edition-dual-sim-td-lte-cn-64gb-ask-tl00x/index.json @@ -0,0 +1,76 @@ +{ + "id": 1020, + "slug": "honor-play-3-standard-edition-dual-sim-td-lte-cn-64gb-ask-tl00x", + "name": "Honor Play 3 Standard Edition Dual SIM TD-LTE CN 64GB ASK-TL00x", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.251091", + "updated_at": "2026-06-19T00:43:44.251091" +} diff --git a/site/public/v1/smartphones/honor-play-3-standard-edition-dual-sim-td-lte-cn-64gb-ask-tl00x/score/index.json b/site/public/v1/smartphones/honor-play-3-standard-edition-dual-sim-td-lte-cn-64gb-ask-tl00x/score/index.json new file mode 100644 index 00000000000..6de7755463e --- /dev/null +++ b/site/public/v1/smartphones/honor-play-3-standard-edition-dual-sim-td-lte-cn-64gb-ask-tl00x/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-play-3e-dual-sim-td-lte-cn-32gb-ksa-al00/index.json b/site/public/v1/smartphones/honor-play-3e-dual-sim-td-lte-cn-32gb-ksa-al00/index.json new file mode 100644 index 00000000000..e1b261b0b65 --- /dev/null +++ b/site/public/v1/smartphones/honor-play-3e-dual-sim-td-lte-cn-32gb-ksa-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1021, + "slug": "honor-play-3e-dual-sim-td-lte-cn-32gb-ksa-al00", + "name": "Honor Play 3e Dual SIM TD-LTE CN 32GB KSA-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3020, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": null, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.251091", + "updated_at": "2026-06-19T00:43:44.251091" +} diff --git a/site/public/v1/smartphones/honor-play-3e-dual-sim-td-lte-cn-32gb-ksa-al00/score/index.json b/site/public/v1/smartphones/honor-play-3e-dual-sim-td-lte-cn-32gb-ksa-al00/score/index.json new file mode 100644 index 00000000000..124cad705d7 --- /dev/null +++ b/site/public/v1/smartphones/honor-play-3e-dual-sim-td-lte-cn-32gb-ksa-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": null, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-play-3e-dual-sim-td-lte-cn-32gb-ksa-tl00/index.json b/site/public/v1/smartphones/honor-play-3e-dual-sim-td-lte-cn-32gb-ksa-tl00/index.json new file mode 100644 index 00000000000..edbc17f2f2d --- /dev/null +++ b/site/public/v1/smartphones/honor-play-3e-dual-sim-td-lte-cn-32gb-ksa-tl00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1022, + "slug": "honor-play-3e-dual-sim-td-lte-cn-32gb-ksa-tl00", + "name": "Honor Play 3e Dual SIM TD-LTE CN 32GB KSA-TL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3020, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": null, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.251091", + "updated_at": "2026-06-19T00:43:44.251091" +} diff --git a/site/public/v1/smartphones/honor-play-3e-dual-sim-td-lte-cn-32gb-ksa-tl00/score/index.json b/site/public/v1/smartphones/honor-play-3e-dual-sim-td-lte-cn-32gb-ksa-tl00/score/index.json new file mode 100644 index 00000000000..124cad705d7 --- /dev/null +++ b/site/public/v1/smartphones/honor-play-3e-dual-sim-td-lte-cn-32gb-ksa-tl00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": null, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-play-3e-dual-sim-td-lte-cn-64gb-ksa-al00/index.json b/site/public/v1/smartphones/honor-play-3e-dual-sim-td-lte-cn-64gb-ksa-al00/index.json new file mode 100644 index 00000000000..1ee236c6da8 --- /dev/null +++ b/site/public/v1/smartphones/honor-play-3e-dual-sim-td-lte-cn-64gb-ksa-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1023, + "slug": "honor-play-3e-dual-sim-td-lte-cn-64gb-ksa-al00", + "name": "Honor Play 3e Dual SIM TD-LTE CN 64GB KSA-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-09-17", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3020, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": null, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.251091", + "updated_at": "2026-06-19T00:43:44.251091" +} diff --git a/site/public/v1/smartphones/honor-play-3e-dual-sim-td-lte-cn-64gb-ksa-al00/score/index.json b/site/public/v1/smartphones/honor-play-3e-dual-sim-td-lte-cn-64gb-ksa-al00/score/index.json new file mode 100644 index 00000000000..124cad705d7 --- /dev/null +++ b/site/public/v1/smartphones/honor-play-3e-dual-sim-td-lte-cn-64gb-ksa-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": null, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-play-4t-dual-sim-td-lte-cn-128gb-aka-al10/index.json b/site/public/v1/smartphones/honor-play-4t-dual-sim-td-lte-cn-128gb-aka-al10/index.json new file mode 100644 index 00000000000..da2560b1e2e --- /dev/null +++ b/site/public/v1/smartphones/honor-play-4t-dual-sim-td-lte-cn-128gb-aka-al10/index.json @@ -0,0 +1,76 @@ +{ + "id": 1156, + "slug": "honor-play-4t-dual-sim-td-lte-cn-128gb-aka-al10", + "name": "Honor Play 4T Dual SIM TD-LTE CN 128GB AKA-AL10", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 33, + "slug": "kirin-710a", + "name": "Kirin 710A", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51", + "url": "/v1/socs/kirin-710a" + }, + "release_date": "2020-04-21", + "msrp_usd": 1347, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": 18.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.270098", + "updated_at": "2026-06-19T00:43:44.270098" +} diff --git a/site/public/v1/smartphones/honor-play-4t-dual-sim-td-lte-cn-128gb-aka-al10/score/index.json b/site/public/v1/smartphones/honor-play-4t-dual-sim-td-lte-cn-128gb-aka-al10/score/index.json new file mode 100644 index 00000000000..d6388694177 --- /dev/null +++ b/site/public/v1/smartphones/honor-play-4t-dual-sim-td-lte-cn-128gb-aka-al10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": 18.2 +} diff --git a/site/public/v1/smartphones/honor-play-4t-dual-sim-td-lte-cn-64gb-aka-al10/index.json b/site/public/v1/smartphones/honor-play-4t-dual-sim-td-lte-cn-64gb-aka-al10/index.json new file mode 100644 index 00000000000..da61767bebc --- /dev/null +++ b/site/public/v1/smartphones/honor-play-4t-dual-sim-td-lte-cn-64gb-aka-al10/index.json @@ -0,0 +1,76 @@ +{ + "id": 1157, + "slug": "honor-play-4t-dual-sim-td-lte-cn-64gb-aka-al10", + "name": "Honor Play 4T Dual SIM TD-LTE CN 64GB AKA-AL10", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 33, + "slug": "kirin-710a", + "name": "Kirin 710A", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51", + "url": "/v1/socs/kirin-710a" + }, + "release_date": "2020-04-21", + "msrp_usd": 1247, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": 22.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.270098", + "updated_at": "2026-06-19T00:43:44.270098" +} diff --git a/site/public/v1/smartphones/honor-play-4t-dual-sim-td-lte-cn-64gb-aka-al10/score/index.json b/site/public/v1/smartphones/honor-play-4t-dual-sim-td-lte-cn-64gb-aka-al10/score/index.json new file mode 100644 index 00000000000..71df2b520d9 --- /dev/null +++ b/site/public/v1/smartphones/honor-play-4t-dual-sim-td-lte-cn-64gb-aka-al10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": 22.1 +} diff --git a/site/public/v1/smartphones/honor-play-4t-pro-premium-edition-dual-sim-td-lte-cn-128gb-aqm-al10/index.json b/site/public/v1/smartphones/honor-play-4t-pro-premium-edition-dual-sim-td-lte-cn-128gb-aqm-al10/index.json new file mode 100644 index 00000000000..6decfc1edc4 --- /dev/null +++ b/site/public/v1/smartphones/honor-play-4t-pro-premium-edition-dual-sim-td-lte-cn-128gb-aqm-al10/index.json @@ -0,0 +1,76 @@ +{ + "id": 1158, + "slug": "honor-play-4t-pro-premium-edition-dual-sim-td-lte-cn-128gb-aqm-al10", + "name": "Honor Play 4T Pro Premium Edition Dual SIM TD-LTE CN 128GB AQM-AL10", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 30, + "slug": "kirin-810", + "name": "Kirin 810", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G52 MP6", + "url": "/v1/socs/kirin-810" + }, + "release_date": "2020-04-21", + "msrp_usd": 1699, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 418 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 3.0, + "camera": 16.5, + "battery": 16.3, + "display": 46.8, + "value": 10.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.270098", + "updated_at": "2026-06-19T00:43:44.270098" +} diff --git a/site/public/v1/smartphones/honor-play-4t-pro-premium-edition-dual-sim-td-lte-cn-128gb-aqm-al10/score/index.json b/site/public/v1/smartphones/honor-play-4t-pro-premium-edition-dual-sim-td-lte-cn-128gb-aqm-al10/score/index.json new file mode 100644 index 00000000000..519c7fbe33f --- /dev/null +++ b/site/public/v1/smartphones/honor-play-4t-pro-premium-edition-dual-sim-td-lte-cn-128gb-aqm-al10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 3.0, + "camera": 16.5, + "battery": 16.3, + "display": 46.8, + "value": 10.3 +} diff --git a/site/public/v1/smartphones/honor-play-4t-pro-standard-edition-dual-sim-td-lte-cn-128gb-aqm-al10/index.json b/site/public/v1/smartphones/honor-play-4t-pro-standard-edition-dual-sim-td-lte-cn-128gb-aqm-al10/index.json new file mode 100644 index 00000000000..e2ac966e9ee --- /dev/null +++ b/site/public/v1/smartphones/honor-play-4t-pro-standard-edition-dual-sim-td-lte-cn-128gb-aqm-al10/index.json @@ -0,0 +1,76 @@ +{ + "id": 1159, + "slug": "honor-play-4t-pro-standard-edition-dual-sim-td-lte-cn-128gb-aqm-al10", + "name": "Honor Play 4T Pro Standard Edition Dual SIM TD-LTE CN 128GB AQM-AL10", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 30, + "slug": "kirin-810", + "name": "Kirin 810", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G52 MP6", + "url": "/v1/socs/kirin-810" + }, + "release_date": "2020-04-21", + "msrp_usd": 1499, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 418 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 1.5, + "camera": 16.5, + "battery": 16.3, + "display": 46.8, + "value": 14.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.270098", + "updated_at": "2026-06-19T00:43:44.270098" +} diff --git a/site/public/v1/smartphones/honor-play-4t-pro-standard-edition-dual-sim-td-lte-cn-128gb-aqm-al10/score/index.json b/site/public/v1/smartphones/honor-play-4t-pro-standard-edition-dual-sim-td-lte-cn-128gb-aqm-al10/score/index.json new file mode 100644 index 00000000000..504f29eaab6 --- /dev/null +++ b/site/public/v1/smartphones/honor-play-4t-pro-standard-edition-dual-sim-td-lte-cn-128gb-aqm-al10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 1.5, + "camera": 16.5, + "battery": 16.3, + "display": 46.8, + "value": 14.1 +} diff --git a/site/public/v1/smartphones/honor-play-5t-pro-dual-sim-td-lte-cn-128gb-chl-al00/index.json b/site/public/v1/smartphones/honor-play-5t-pro-dual-sim-td-lte-cn-128gb-chl-al00/index.json new file mode 100644 index 00000000000..8c8832f9ba1 --- /dev/null +++ b/site/public/v1/smartphones/honor-play-5t-pro-dual-sim-td-lte-cn-128gb-chl-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1251, + "slug": "honor-play-5t-pro-dual-sim-td-lte-cn-128gb-chl-al00", + "name": "Honor Play 5T Pro Dual SIM TD-LTE CN 128GB CHL-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2021-08-01", + "msrp_usd": 1499, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 3.0, + "camera": 21.5, + "battery": 16.3, + "display": 44.9, + "value": 14.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.280605", + "updated_at": "2026-06-19T00:43:44.280605" +} diff --git a/site/public/v1/smartphones/honor-play-5t-pro-dual-sim-td-lte-cn-128gb-chl-al00/score/index.json b/site/public/v1/smartphones/honor-play-5t-pro-dual-sim-td-lte-cn-128gb-chl-al00/score/index.json new file mode 100644 index 00000000000..812deb0612d --- /dev/null +++ b/site/public/v1/smartphones/honor-play-5t-pro-dual-sim-td-lte-cn-128gb-chl-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 3.0, + "camera": 21.5, + "battery": 16.3, + "display": 44.9, + "value": 14.6 +} diff --git a/site/public/v1/smartphones/honor-play-5t-youth-edition-dual-sim-td-lte-cn-128gb-nza-al00/index.json b/site/public/v1/smartphones/honor-play-5t-youth-edition-dual-sim-td-lte-cn-128gb-nza-al00/index.json new file mode 100644 index 00000000000..5342fbdcbf8 --- /dev/null +++ b/site/public/v1/smartphones/honor-play-5t-youth-edition-dual-sim-td-lte-cn-128gb-nza-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1252, + "slug": "honor-play-5t-youth-edition-dual-sim-td-lte-cn-128gb-nza-al00", + "name": "Honor Play 5T Youth Edition Dual SIM TD-LTE CN 128GB NZA-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-04-01", + "msrp_usd": 1299, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 1.5, + "camera": 5.3, + "battery": 31.4, + "display": 35.0, + "value": 20.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.281607", + "updated_at": "2026-06-19T00:43:44.281607" +} diff --git a/site/public/v1/smartphones/honor-play-5t-youth-edition-dual-sim-td-lte-cn-128gb-nza-al00/score/index.json b/site/public/v1/smartphones/honor-play-5t-youth-edition-dual-sim-td-lte-cn-128gb-nza-al00/score/index.json new file mode 100644 index 00000000000..ed0bf0a724a --- /dev/null +++ b/site/public/v1/smartphones/honor-play-5t-youth-edition-dual-sim-td-lte-cn-128gb-nza-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 1.5, + "camera": 5.3, + "battery": 31.4, + "display": 35.0, + "value": 20.8 +} diff --git a/site/public/v1/smartphones/honor-play-8-dual-sim-td-lte-cn-32gb-ksa-al00/index.json b/site/public/v1/smartphones/honor-play-8-dual-sim-td-lte-cn-32gb-ksa-al00/index.json new file mode 100644 index 00000000000..3f55c332c45 --- /dev/null +++ b/site/public/v1/smartphones/honor-play-8-dual-sim-td-lte-cn-32gb-ksa-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1024, + "slug": "honor-play-8-dual-sim-td-lte-cn-32gb-ksa-al00", + "name": "Honor Play 8 Dual SIM TD-LTE CN 32GB KSA-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3020, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": null, + "camera": 5.4, + "battery": 0.3, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.251091", + "updated_at": "2026-06-19T00:43:44.251091" +} diff --git a/site/public/v1/smartphones/honor-play-8-dual-sim-td-lte-cn-32gb-ksa-al00/score/index.json b/site/public/v1/smartphones/honor-play-8-dual-sim-td-lte-cn-32gb-ksa-al00/score/index.json new file mode 100644 index 00000000000..d17e79c7a67 --- /dev/null +++ b/site/public/v1/smartphones/honor-play-8-dual-sim-td-lte-cn-32gb-ksa-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": null, + "camera": 5.4, + "battery": 0.3, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-play-8-dual-sim-td-lte-cn-32gb-ksa-tl00/index.json b/site/public/v1/smartphones/honor-play-8-dual-sim-td-lte-cn-32gb-ksa-tl00/index.json new file mode 100644 index 00000000000..360b1b58c81 --- /dev/null +++ b/site/public/v1/smartphones/honor-play-8-dual-sim-td-lte-cn-32gb-ksa-tl00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1025, + "slug": "honor-play-8-dual-sim-td-lte-cn-32gb-ksa-tl00", + "name": "Honor Play 8 Dual SIM TD-LTE CN 32GB KSA-TL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3020, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": null, + "camera": 5.4, + "battery": 0.3, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.251091", + "updated_at": "2026-06-19T00:43:44.251091" +} diff --git a/site/public/v1/smartphones/honor-play-8-dual-sim-td-lte-cn-32gb-ksa-tl00/score/index.json b/site/public/v1/smartphones/honor-play-8-dual-sim-td-lte-cn-32gb-ksa-tl00/score/index.json new file mode 100644 index 00000000000..d17e79c7a67 --- /dev/null +++ b/site/public/v1/smartphones/honor-play-8-dual-sim-td-lte-cn-32gb-ksa-tl00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": null, + "camera": 5.4, + "battery": 0.3, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-play-9a-dual-sim-td-lte-cn-128gb-moa-al00-honor-changwan-9a/index.json b/site/public/v1/smartphones/honor-play-9a-dual-sim-td-lte-cn-128gb-moa-al00-honor-changwan-9a/index.json new file mode 100644 index 00000000000..000052b9dc8 --- /dev/null +++ b/site/public/v1/smartphones/honor-play-9a-dual-sim-td-lte-cn-128gb-moa-al00-honor-changwan-9a/index.json @@ -0,0 +1,76 @@ +{ + "id": 1160, + "slug": "honor-play-9a-dual-sim-td-lte-cn-128gb-moa-al00-honor-changwan-9a", + "name": "Honor Play 9A Dual SIM TD-LTE CN 128GB MOA-AL00 / Honor Changwan 9A", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-04-07", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 279 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.270098", + "updated_at": "2026-06-19T00:43:44.270098" +} diff --git a/site/public/v1/smartphones/honor-play-9a-dual-sim-td-lte-cn-128gb-moa-al00-honor-changwan-9a/score/index.json b/site/public/v1/smartphones/honor-play-9a-dual-sim-td-lte-cn-128gb-moa-al00-honor-changwan-9a/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/honor-play-9a-dual-sim-td-lte-cn-128gb-moa-al00-honor-changwan-9a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-play-9a-dual-sim-td-lte-cn-64gb-moa-al00-honor-changwan-9a/index.json b/site/public/v1/smartphones/honor-play-9a-dual-sim-td-lte-cn-64gb-moa-al00-honor-changwan-9a/index.json new file mode 100644 index 00000000000..425270fdc35 --- /dev/null +++ b/site/public/v1/smartphones/honor-play-9a-dual-sim-td-lte-cn-64gb-moa-al00-honor-changwan-9a/index.json @@ -0,0 +1,76 @@ +{ + "id": 1161, + "slug": "honor-play-9a-dual-sim-td-lte-cn-64gb-moa-al00-honor-changwan-9a", + "name": "Honor Play 9A Dual SIM TD-LTE CN 64GB MOA-AL00 / Honor Changwan 9A", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-04-07", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 279 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.270098", + "updated_at": "2026-06-19T00:43:44.270098" +} diff --git a/site/public/v1/smartphones/honor-play-9a-dual-sim-td-lte-cn-64gb-moa-al00-honor-changwan-9a/score/index.json b/site/public/v1/smartphones/honor-play-9a-dual-sim-td-lte-cn-64gb-moa-al00-honor-changwan-9a/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/honor-play-9a-dual-sim-td-lte-cn-64gb-moa-al00-honor-changwan-9a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/honor-play-global-dual-sim-td-lte-cor-l29/index.json b/site/public/v1/smartphones/honor-play-global-dual-sim-td-lte-cor-l29/index.json new file mode 100644 index 00000000000..f0493ad8f0e --- /dev/null +++ b/site/public/v1/smartphones/honor-play-global-dual-sim-td-lte-cor-l29/index.json @@ -0,0 +1,76 @@ +{ + "id": 870, + "slug": "honor-play-global-dual-sim-td-lte-cor-l29", + "name": "Honor Play Global Dual SIM TD-LTE COR-L29", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3750, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 24.5, + "camera": 6.3, + "battery": 11.2, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.227931", + "updated_at": "2026-06-19T00:43:44.227931" +} diff --git a/site/public/v1/smartphones/honor-play-global-dual-sim-td-lte-cor-l29/score/index.json b/site/public/v1/smartphones/honor-play-global-dual-sim-td-lte-cor-l29/score/index.json new file mode 100644 index 00000000000..51570852a4b --- /dev/null +++ b/site/public/v1/smartphones/honor-play-global-dual-sim-td-lte-cor-l29/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 24.5, + "camera": 6.3, + "battery": 11.2, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/honor-play-premium-edition-dual-sim-td-lte-apac-cor-al10/index.json b/site/public/v1/smartphones/honor-play-premium-edition-dual-sim-td-lte-apac-cor-al10/index.json new file mode 100644 index 00000000000..337f6cb027b --- /dev/null +++ b/site/public/v1/smartphones/honor-play-premium-edition-dual-sim-td-lte-apac-cor-al10/index.json @@ -0,0 +1,76 @@ +{ + "id": 871, + "slug": "honor-play-premium-edition-dual-sim-td-lte-apac-cor-al10", + "name": "Honor Play Premium Edition Dual SIM TD-LTE APAC COR-AL10", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-08-08", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3750, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 26.0, + "camera": 6.3, + "battery": 11.2, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.227931", + "updated_at": "2026-06-19T00:43:44.227931" +} diff --git a/site/public/v1/smartphones/honor-play-premium-edition-dual-sim-td-lte-apac-cor-al10/score/index.json b/site/public/v1/smartphones/honor-play-premium-edition-dual-sim-td-lte-apac-cor-al10/score/index.json new file mode 100644 index 00000000000..1d1e518813f --- /dev/null +++ b/site/public/v1/smartphones/honor-play-premium-edition-dual-sim-td-lte-apac-cor-al10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 26.0, + "camera": 6.3, + "battery": 11.2, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/honor-play-standard-edition-dual-sim-td-lte-apac-cor-al00/index.json b/site/public/v1/smartphones/honor-play-standard-edition-dual-sim-td-lte-apac-cor-al00/index.json new file mode 100644 index 00000000000..13648c6c6f9 --- /dev/null +++ b/site/public/v1/smartphones/honor-play-standard-edition-dual-sim-td-lte-apac-cor-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 872, + "slug": "honor-play-standard-edition-dual-sim-td-lte-apac-cor-al00", + "name": "Honor Play Standard Edition Dual SIM TD-LTE APAC COR-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3750, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 24.5, + "camera": 6.3, + "battery": 11.2, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.227931", + "updated_at": "2026-06-19T00:43:44.227931" +} diff --git a/site/public/v1/smartphones/honor-play-standard-edition-dual-sim-td-lte-apac-cor-al00/score/index.json b/site/public/v1/smartphones/honor-play-standard-edition-dual-sim-td-lte-apac-cor-al00/score/index.json new file mode 100644 index 00000000000..51570852a4b --- /dev/null +++ b/site/public/v1/smartphones/honor-play-standard-edition-dual-sim-td-lte-apac-cor-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 24.5, + "camera": 6.3, + "battery": 11.2, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/honor-play4-5g-premium-edition-dual-sim-td-lte-cn-128gb-tnnh-an00/index.json b/site/public/v1/smartphones/honor-play4-5g-premium-edition-dual-sim-td-lte-cn-128gb-tnnh-an00/index.json new file mode 100644 index 00000000000..676dc4b9048 --- /dev/null +++ b/site/public/v1/smartphones/honor-play4-5g-premium-edition-dual-sim-td-lte-cn-128gb-tnnh-an00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1162, + "slug": "honor-play4-5g-premium-edition-dual-sim-td-lte-cn-128gb-tnnh-an00", + "name": "Honor Play4 5G Premium Edition Dual SIM TD-LTE CN 128GB TNNH-AN00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2020-06-12", + "msrp_usd": 1999, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 213.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 3.0, + "camera": 21.5, + "battery": 20.8, + "display": 43.6, + "value": 11.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.270098", + "updated_at": "2026-06-19T00:43:44.270098" +} diff --git a/site/public/v1/smartphones/honor-play4-5g-premium-edition-dual-sim-td-lte-cn-128gb-tnnh-an00/score/index.json b/site/public/v1/smartphones/honor-play4-5g-premium-edition-dual-sim-td-lte-cn-128gb-tnnh-an00/score/index.json new file mode 100644 index 00000000000..8e3143792f8 --- /dev/null +++ b/site/public/v1/smartphones/honor-play4-5g-premium-edition-dual-sim-td-lte-cn-128gb-tnnh-an00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 3.0, + "camera": 21.5, + "battery": 20.8, + "display": 43.6, + "value": 11.1 +} diff --git a/site/public/v1/smartphones/honor-play4-5g-standard-edition-dual-sim-td-lte-cn-128gb-tnnh-an00/index.json b/site/public/v1/smartphones/honor-play4-5g-standard-edition-dual-sim-td-lte-cn-128gb-tnnh-an00/index.json new file mode 100644 index 00000000000..8ca2171e7bc --- /dev/null +++ b/site/public/v1/smartphones/honor-play4-5g-standard-edition-dual-sim-td-lte-cn-128gb-tnnh-an00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1163, + "slug": "honor-play4-5g-standard-edition-dual-sim-td-lte-cn-128gb-tnnh-an00", + "name": "Honor Play4 5G Standard Edition Dual SIM TD-LTE CN 128GB TNNH-AN00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2020-06-12", + "msrp_usd": 1799, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 213.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 1.5, + "camera": 21.5, + "battery": 20.8, + "display": 43.6, + "value": 10.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.270098", + "updated_at": "2026-06-19T00:43:44.270098" +} diff --git a/site/public/v1/smartphones/honor-play4-5g-standard-edition-dual-sim-td-lte-cn-128gb-tnnh-an00/score/index.json b/site/public/v1/smartphones/honor-play4-5g-standard-edition-dual-sim-td-lte-cn-128gb-tnnh-an00/score/index.json new file mode 100644 index 00000000000..538835b6e0b --- /dev/null +++ b/site/public/v1/smartphones/honor-play4-5g-standard-edition-dual-sim-td-lte-cn-128gb-tnnh-an00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 1.5, + "camera": 21.5, + "battery": 20.8, + "display": 43.6, + "value": 10.9 +} diff --git a/site/public/v1/smartphones/honor-play5-5g-dual-sim-td-lte-cn-128gb-hjc-an90/index.json b/site/public/v1/smartphones/honor-play5-5g-dual-sim-td-lte-cn-128gb-hjc-an90/index.json new file mode 100644 index 00000000000..fc89df76c8a --- /dev/null +++ b/site/public/v1/smartphones/honor-play5-5g-dual-sim-td-lte-cn-128gb-hjc-an90/index.json @@ -0,0 +1,76 @@ +{ + "id": 1253, + "slug": "honor-play5-5g-dual-sim-td-lte-cn-128gb-hjc-an90", + "name": "Honor Play5 5G Dual SIM TD-LTE CN 128GB HJC-AN90", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2021-05-16", + "msrp_usd": 2099, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3800, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 3.0, + "camera": 21.5, + "battery": 21.7, + "display": 45.3, + "value": 11.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.281607", + "updated_at": "2026-06-19T00:43:44.281607" +} diff --git a/site/public/v1/smartphones/honor-play5-5g-dual-sim-td-lte-cn-128gb-hjc-an90/score/index.json b/site/public/v1/smartphones/honor-play5-5g-dual-sim-td-lte-cn-128gb-hjc-an90/score/index.json new file mode 100644 index 00000000000..38d5d1c7ab0 --- /dev/null +++ b/site/public/v1/smartphones/honor-play5-5g-dual-sim-td-lte-cn-128gb-hjc-an90/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 3.0, + "camera": 21.5, + "battery": 21.7, + "display": 45.3, + "value": 11.4 +} diff --git a/site/public/v1/smartphones/honor-play5-5g-dual-sim-td-lte-cn-256gb-hjc-an90/index.json b/site/public/v1/smartphones/honor-play5-5g-dual-sim-td-lte-cn-256gb-hjc-an90/index.json new file mode 100644 index 00000000000..fce715b2e66 --- /dev/null +++ b/site/public/v1/smartphones/honor-play5-5g-dual-sim-td-lte-cn-256gb-hjc-an90/index.json @@ -0,0 +1,76 @@ +{ + "id": 1254, + "slug": "honor-play5-5g-dual-sim-td-lte-cn-256gb-hjc-an90", + "name": "Honor Play5 5G Dual SIM TD-LTE CN 256GB HJC-AN90", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2021-05-16", + "msrp_usd": 2299, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3800, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 3.0, + "camera": 21.5, + "battery": 21.7, + "display": 45.3, + "value": 11.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.281607", + "updated_at": "2026-06-19T00:43:44.281607" +} diff --git a/site/public/v1/smartphones/honor-play5-5g-dual-sim-td-lte-cn-256gb-hjc-an90/score/index.json b/site/public/v1/smartphones/honor-play5-5g-dual-sim-td-lte-cn-256gb-hjc-an90/score/index.json new file mode 100644 index 00000000000..38d5d1c7ab0 --- /dev/null +++ b/site/public/v1/smartphones/honor-play5-5g-dual-sim-td-lte-cn-256gb-hjc-an90/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 3.0, + "camera": 21.5, + "battery": 21.7, + "display": 45.3, + "value": 11.4 +} diff --git a/site/public/v1/smartphones/honor-v10-premium-edition-dual-sim-td-lte-cn-bkl-al20-128gb/index.json b/site/public/v1/smartphones/honor-v10-premium-edition-dual-sim-td-lte-cn-bkl-al20-128gb/index.json new file mode 100644 index 00000000000..443b5971093 --- /dev/null +++ b/site/public/v1/smartphones/honor-v10-premium-edition-dual-sim-td-lte-cn-bkl-al20-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 873, + "slug": "honor-v10-premium-edition-dual-sim-td-lte-cn-bkl-al20-128gb", + "name": "Honor V10 Premium Edition Dual SIM TD-LTE CN BKL-AL20 128GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-08-14", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 11.8 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3750, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 27.5, + "camera": 5.0, + "battery": 11.2, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.228932", + "updated_at": "2026-06-19T00:43:44.228932" +} diff --git a/site/public/v1/smartphones/honor-v10-premium-edition-dual-sim-td-lte-cn-bkl-al20-128gb/score/index.json b/site/public/v1/smartphones/honor-v10-premium-edition-dual-sim-td-lte-cn-bkl-al20-128gb/score/index.json new file mode 100644 index 00000000000..cdcb578ec25 --- /dev/null +++ b/site/public/v1/smartphones/honor-v10-premium-edition-dual-sim-td-lte-cn-bkl-al20-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 27.5, + "camera": 5.0, + "battery": 11.2, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/honor-v10-standard-edition-dual-sim-td-lte-cn-bkl-tl10-64gb/index.json b/site/public/v1/smartphones/honor-v10-standard-edition-dual-sim-td-lte-cn-bkl-tl10-64gb/index.json new file mode 100644 index 00000000000..e11d04b85fb --- /dev/null +++ b/site/public/v1/smartphones/honor-v10-standard-edition-dual-sim-td-lte-cn-bkl-tl10-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 802, + "slug": "honor-v10-standard-edition-dual-sim-td-lte-cn-bkl-tl10-64gb", + "name": "Honor V10 Standard Edition Dual SIM TD-LTE CN BKL-TL10 64GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2017-12-06", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 11.8 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3750, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 26.0, + "camera": 5.0, + "battery": 11.2, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.218933", + "updated_at": "2026-06-19T00:43:44.218933" +} diff --git a/site/public/v1/smartphones/honor-v10-standard-edition-dual-sim-td-lte-cn-bkl-tl10-64gb/score/index.json b/site/public/v1/smartphones/honor-v10-standard-edition-dual-sim-td-lte-cn-bkl-tl10-64gb/score/index.json new file mode 100644 index 00000000000..1355486a2f5 --- /dev/null +++ b/site/public/v1/smartphones/honor-v10-standard-edition-dual-sim-td-lte-cn-bkl-tl10-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 26.0, + "camera": 5.0, + "battery": 11.2, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/honor-v20-moschino-edition-dual-sim-td-lte-cn-pct-al10/index.json b/site/public/v1/smartphones/honor-v20-moschino-edition-dual-sim-td-lte-cn-pct-al10/index.json new file mode 100644 index 00000000000..073e0002495 --- /dev/null +++ b/site/public/v1/smartphones/honor-v20-moschino-edition-dual-sim-td-lte-cn-pct-al10/index.json @@ -0,0 +1,76 @@ +{ + "id": 1026, + "slug": "honor-v20-moschino-edition-dual-sim-td-lte-cn-pct-al10", + "name": "Honor V20 Moschino Edition Dual SIM TD-LTE CN PCT-AL10", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-01-22", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.1, + "performance": 56.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.251091", + "updated_at": "2026-06-19T00:43:44.251091" +} diff --git a/site/public/v1/smartphones/honor-v20-moschino-edition-dual-sim-td-lte-cn-pct-al10/score/index.json b/site/public/v1/smartphones/honor-v20-moschino-edition-dual-sim-td-lte-cn-pct-al10/score/index.json new file mode 100644 index 00000000000..e40787a6059 --- /dev/null +++ b/site/public/v1/smartphones/honor-v20-moschino-edition-dual-sim-td-lte-cn-pct-al10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.1, + "performance": 56.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.9, + "value": null +} diff --git a/site/public/v1/smartphones/honor-v20-premium-edition-dual-sim-td-lte-cn-pct-al10-view-20/index.json b/site/public/v1/smartphones/honor-v20-premium-edition-dual-sim-td-lte-cn-pct-al10-view-20/index.json new file mode 100644 index 00000000000..b0267324fdf --- /dev/null +++ b/site/public/v1/smartphones/honor-v20-premium-edition-dual-sim-td-lte-cn-pct-al10-view-20/index.json @@ -0,0 +1,76 @@ +{ + "id": 874, + "slug": "honor-v20-premium-edition-dual-sim-td-lte-cn-pct-al10-view-20", + "name": "Honor V20 Premium Edition Dual SIM TD-LTE CN PCT-AL10 / View 20", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2018-12-28", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.1, + "performance": 56.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.228932", + "updated_at": "2026-06-19T00:43:44.228932" +} diff --git a/site/public/v1/smartphones/honor-v20-premium-edition-dual-sim-td-lte-cn-pct-al10-view-20/score/index.json b/site/public/v1/smartphones/honor-v20-premium-edition-dual-sim-td-lte-cn-pct-al10-view-20/score/index.json new file mode 100644 index 00000000000..e40787a6059 --- /dev/null +++ b/site/public/v1/smartphones/honor-v20-premium-edition-dual-sim-td-lte-cn-pct-al10-view-20/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.1, + "performance": 56.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.9, + "value": null +} diff --git a/site/public/v1/smartphones/honor-v20-standard-edition-dual-sim-td-lte-cn-pct-al10-view-20/index.json b/site/public/v1/smartphones/honor-v20-standard-edition-dual-sim-td-lte-cn-pct-al10-view-20/index.json new file mode 100644 index 00000000000..382cf153035 --- /dev/null +++ b/site/public/v1/smartphones/honor-v20-standard-edition-dual-sim-td-lte-cn-pct-al10-view-20/index.json @@ -0,0 +1,76 @@ +{ + "id": 875, + "slug": "honor-v20-standard-edition-dual-sim-td-lte-cn-pct-al10-view-20", + "name": "Honor V20 Standard Edition Dual SIM TD-LTE CN PCT-AL10 / View 20", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2018-12-28", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.7, + "performance": 54.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.228932", + "updated_at": "2026-06-19T00:43:44.228932" +} diff --git a/site/public/v1/smartphones/honor-v20-standard-edition-dual-sim-td-lte-cn-pct-al10-view-20/score/index.json b/site/public/v1/smartphones/honor-v20-standard-edition-dual-sim-td-lte-cn-pct-al10-view-20/score/index.json new file mode 100644 index 00000000000..21a8b8c82bb --- /dev/null +++ b/site/public/v1/smartphones/honor-v20-standard-edition-dual-sim-td-lte-cn-pct-al10-view-20/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.7, + "performance": 54.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.9, + "value": null +} diff --git a/site/public/v1/smartphones/honor-v20-standard-edition-dual-sim-td-lte-cn-pct-tl10/index.json b/site/public/v1/smartphones/honor-v20-standard-edition-dual-sim-td-lte-cn-pct-tl10/index.json new file mode 100644 index 00000000000..022390c8944 --- /dev/null +++ b/site/public/v1/smartphones/honor-v20-standard-edition-dual-sim-td-lte-cn-pct-tl10/index.json @@ -0,0 +1,76 @@ +{ + "id": 876, + "slug": "honor-v20-standard-edition-dual-sim-td-lte-cn-pct-tl10", + "name": "Honor V20 Standard Edition Dual SIM TD-LTE CN PCT-TL10", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2018-12-28", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.7, + "performance": 54.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.228932", + "updated_at": "2026-06-19T00:43:44.228932" +} diff --git a/site/public/v1/smartphones/honor-v20-standard-edition-dual-sim-td-lte-cn-pct-tl10/score/index.json b/site/public/v1/smartphones/honor-v20-standard-edition-dual-sim-td-lte-cn-pct-tl10/score/index.json new file mode 100644 index 00000000000..21a8b8c82bb --- /dev/null +++ b/site/public/v1/smartphones/honor-v20-standard-edition-dual-sim-td-lte-cn-pct-tl10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.7, + "performance": 54.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.9, + "value": null +} diff --git a/site/public/v1/smartphones/honor-v40-5g-dual-sim-td-lte-cn-128gb-yok-an10/index.json b/site/public/v1/smartphones/honor-v40-5g-dual-sim-td-lte-cn-128gb-yok-an10/index.json new file mode 100644 index 00000000000..29ca0d6fe2d --- /dev/null +++ b/site/public/v1/smartphones/honor-v40-5g-dual-sim-td-lte-cn-128gb-yok-an10/index.json @@ -0,0 +1,77 @@ +{ + "id": 1255, + "slug": "honor-v40-5g-dual-sim-td-lte-cn-128gb-yok-an10", + "name": "Honor V40 5G Dual SIM TD-LTE CN 128GB YOK-AN10", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 53, + "slug": "dimensity-1000-plus", + "name": "Dimensity 1000 Plus", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1000-plus" + }, + "release_date": "2021-01-22", + "msrp_usd": 3599, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.72, + "resolution": "1236x2676", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.3, + "performance": 3.0, + "camera": 17.2, + "battery": 24.7, + "display": 56.4, + "value": 12.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.281607", + "updated_at": "2026-06-19T00:43:44.281607" +} diff --git a/site/public/v1/smartphones/honor-v40-5g-dual-sim-td-lte-cn-128gb-yok-an10/score/index.json b/site/public/v1/smartphones/honor-v40-5g-dual-sim-td-lte-cn-128gb-yok-an10/score/index.json new file mode 100644 index 00000000000..7e7eb32e1b2 --- /dev/null +++ b/site/public/v1/smartphones/honor-v40-5g-dual-sim-td-lte-cn-128gb-yok-an10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.3, + "performance": 3.0, + "camera": 17.2, + "battery": 24.7, + "display": 56.4, + "value": 12.7 +} diff --git a/site/public/v1/smartphones/honor-v40-5g-dual-sim-td-lte-cn-256gb-yok-an10/index.json b/site/public/v1/smartphones/honor-v40-5g-dual-sim-td-lte-cn-256gb-yok-an10/index.json new file mode 100644 index 00000000000..d740c6b41ce --- /dev/null +++ b/site/public/v1/smartphones/honor-v40-5g-dual-sim-td-lte-cn-256gb-yok-an10/index.json @@ -0,0 +1,77 @@ +{ + "id": 1256, + "slug": "honor-v40-5g-dual-sim-td-lte-cn-256gb-yok-an10", + "name": "Honor V40 5G Dual SIM TD-LTE CN 256GB YOK-AN10", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 53, + "slug": "dimensity-1000-plus", + "name": "Dimensity 1000 Plus", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1000-plus" + }, + "release_date": "2021-01-22", + "msrp_usd": 3999, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.72, + "resolution": "1236x2676", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.3, + "performance": 3.0, + "camera": 17.2, + "battery": 24.7, + "display": 56.4, + "value": 12.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.281607", + "updated_at": "2026-06-19T00:43:44.281607" +} diff --git a/site/public/v1/smartphones/honor-v40-5g-dual-sim-td-lte-cn-256gb-yok-an10/score/index.json b/site/public/v1/smartphones/honor-v40-5g-dual-sim-td-lte-cn-256gb-yok-an10/score/index.json new file mode 100644 index 00000000000..7e7eb32e1b2 --- /dev/null +++ b/site/public/v1/smartphones/honor-v40-5g-dual-sim-td-lte-cn-256gb-yok-an10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.3, + "performance": 3.0, + "camera": 17.2, + "battery": 24.7, + "display": 56.4, + "value": 12.7 +} diff --git a/site/public/v1/smartphones/honor-v40-lite-5g-dual-sim-td-lte-cn-128gb-ala-an70/index.json b/site/public/v1/smartphones/honor-v40-lite-5g-dual-sim-td-lte-cn-128gb-ala-an70/index.json new file mode 100644 index 00000000000..956811a2bd8 --- /dev/null +++ b/site/public/v1/smartphones/honor-v40-lite-5g-dual-sim-td-lte-cn-128gb-ala-an70/index.json @@ -0,0 +1,77 @@ +{ + "id": 1257, + "slug": "honor-v40-lite-5g-dual-sim-td-lte-cn-128gb-ala-an70", + "name": "Honor V40 Lite 5G Dual SIM TD-LTE CN 128GB ALA-AN70", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2021-03-01", + "msrp_usd": 2999, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 392 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3800, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 3.0, + "camera": 21.5, + "battery": 21.7, + "display": 39.2, + "value": 10.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.281607", + "updated_at": "2026-06-19T00:43:44.281607" +} diff --git a/site/public/v1/smartphones/honor-v40-lite-5g-dual-sim-td-lte-cn-128gb-ala-an70/score/index.json b/site/public/v1/smartphones/honor-v40-lite-5g-dual-sim-td-lte-cn-128gb-ala-an70/score/index.json new file mode 100644 index 00000000000..56a2ab1a22d --- /dev/null +++ b/site/public/v1/smartphones/honor-v40-lite-5g-dual-sim-td-lte-cn-128gb-ala-an70/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 3.0, + "camera": 21.5, + "battery": 21.7, + "display": 39.2, + "value": 10.7 +} diff --git a/site/public/v1/smartphones/honor-v40-lite-5g-dual-sim-td-lte-cn-256gb-ala-an70/index.json b/site/public/v1/smartphones/honor-v40-lite-5g-dual-sim-td-lte-cn-256gb-ala-an70/index.json new file mode 100644 index 00000000000..2f6b5cd6141 --- /dev/null +++ b/site/public/v1/smartphones/honor-v40-lite-5g-dual-sim-td-lte-cn-256gb-ala-an70/index.json @@ -0,0 +1,77 @@ +{ + "id": 1258, + "slug": "honor-v40-lite-5g-dual-sim-td-lte-cn-256gb-ala-an70", + "name": "Honor V40 Lite 5G Dual SIM TD-LTE CN 256GB ALA-AN70", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2021-03-01", + "msrp_usd": 3299, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 392 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3800, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 3.0, + "camera": 21.5, + "battery": 21.7, + "display": 39.2, + "value": 10.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.281607", + "updated_at": "2026-06-19T00:43:44.281607" +} diff --git a/site/public/v1/smartphones/honor-v40-lite-5g-dual-sim-td-lte-cn-256gb-ala-an70/score/index.json b/site/public/v1/smartphones/honor-v40-lite-5g-dual-sim-td-lte-cn-256gb-ala-an70/score/index.json new file mode 100644 index 00000000000..56a2ab1a22d --- /dev/null +++ b/site/public/v1/smartphones/honor-v40-lite-5g-dual-sim-td-lte-cn-256gb-ala-an70/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 3.0, + "camera": 21.5, + "battery": 21.7, + "display": 39.2, + "value": 10.7 +} diff --git a/site/public/v1/smartphones/honor-view-20-global-dual-sim-td-lte-pct-lx9-pct-l29/index.json b/site/public/v1/smartphones/honor-view-20-global-dual-sim-td-lte-pct-lx9-pct-l29/index.json new file mode 100644 index 00000000000..e3006b4b031 --- /dev/null +++ b/site/public/v1/smartphones/honor-view-20-global-dual-sim-td-lte-pct-lx9-pct-l29/index.json @@ -0,0 +1,76 @@ +{ + "id": 1027, + "slug": "honor-view-20-global-dual-sim-td-lte-pct-lx9-pct-l29", + "name": "Honor View 20 Global Dual SIM TD-LTE PCT-LX9 / PCT-L29", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-01-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.7, + "performance": 54.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.252091", + "updated_at": "2026-06-19T00:43:44.252091" +} diff --git a/site/public/v1/smartphones/honor-view-20-global-dual-sim-td-lte-pct-lx9-pct-l29/score/index.json b/site/public/v1/smartphones/honor-view-20-global-dual-sim-td-lte-pct-lx9-pct-l29/score/index.json new file mode 100644 index 00000000000..21a8b8c82bb --- /dev/null +++ b/site/public/v1/smartphones/honor-view-20-global-dual-sim-td-lte-pct-lx9-pct-l29/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.7, + "performance": 54.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.9, + "value": null +} diff --git a/site/public/v1/smartphones/honor-view-20-moschino-edition-global-dual-sim-td-lte-pct-lx9-pct-l29/index.json b/site/public/v1/smartphones/honor-view-20-moschino-edition-global-dual-sim-td-lte-pct-lx9-pct-l29/index.json new file mode 100644 index 00000000000..7f9f3b60143 --- /dev/null +++ b/site/public/v1/smartphones/honor-view-20-moschino-edition-global-dual-sim-td-lte-pct-lx9-pct-l29/index.json @@ -0,0 +1,76 @@ +{ + "id": 1028, + "slug": "honor-view-20-moschino-edition-global-dual-sim-td-lte-pct-lx9-pct-l29", + "name": "Honor View 20 Moschino Edition Global Dual SIM TD-LTE PCT-LX9 / PCT-L29", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-02-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.1, + "performance": 56.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.252091", + "updated_at": "2026-06-19T00:43:44.252091" +} diff --git a/site/public/v1/smartphones/honor-view-20-moschino-edition-global-dual-sim-td-lte-pct-lx9-pct-l29/score/index.json b/site/public/v1/smartphones/honor-view-20-moschino-edition-global-dual-sim-td-lte-pct-lx9-pct-l29/score/index.json new file mode 100644 index 00000000000..e40787a6059 --- /dev/null +++ b/site/public/v1/smartphones/honor-view-20-moschino-edition-global-dual-sim-td-lte-pct-lx9-pct-l29/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.1, + "performance": 56.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.9, + "value": null +} diff --git a/site/public/v1/smartphones/honor-x10-5g-premium-edition-dual-sim-td-lte-cn-128gb-tel-an00a/index.json b/site/public/v1/smartphones/honor-x10-5g-premium-edition-dual-sim-td-lte-cn-128gb-tel-an00a/index.json new file mode 100644 index 00000000000..ec1a177ab9d --- /dev/null +++ b/site/public/v1/smartphones/honor-x10-5g-premium-edition-dual-sim-td-lte-cn-128gb-tel-an00a/index.json @@ -0,0 +1,77 @@ +{ + "id": 1164, + "slug": "honor-x10-5g-premium-edition-dual-sim-td-lte-cn-128gb-tel-an00a", + "name": "Honor X10 5G Premium Edition Dual SIM TD-LTE CN 128GB TEL-AN00a", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 34, + "slug": "kirin-820", + "name": "Kirin 820", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MP6", + "url": "/v1/socs/kirin-820" + }, + "release_date": "2020-05-26", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.63, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 3.0, + "camera": 13.9, + "battery": 20.8, + "display": 39.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.270098", + "updated_at": "2026-06-19T00:43:44.270098" +} diff --git a/site/public/v1/smartphones/honor-x10-5g-premium-edition-dual-sim-td-lte-cn-128gb-tel-an00a/score/index.json b/site/public/v1/smartphones/honor-x10-5g-premium-edition-dual-sim-td-lte-cn-128gb-tel-an00a/score/index.json new file mode 100644 index 00000000000..f9816293240 --- /dev/null +++ b/site/public/v1/smartphones/honor-x10-5g-premium-edition-dual-sim-td-lte-cn-128gb-tel-an00a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 3.0, + "camera": 13.9, + "battery": 20.8, + "display": 39.7, + "value": null +} diff --git a/site/public/v1/smartphones/honor-x10-5g-standard-edition-dual-sim-td-lte-cn-128gb-tel-an00/index.json b/site/public/v1/smartphones/honor-x10-5g-standard-edition-dual-sim-td-lte-cn-128gb-tel-an00/index.json new file mode 100644 index 00000000000..f35c57aaeb9 --- /dev/null +++ b/site/public/v1/smartphones/honor-x10-5g-standard-edition-dual-sim-td-lte-cn-128gb-tel-an00/index.json @@ -0,0 +1,77 @@ +{ + "id": 1165, + "slug": "honor-x10-5g-standard-edition-dual-sim-td-lte-cn-128gb-tel-an00", + "name": "Honor X10 5G Standard Edition Dual SIM TD-LTE CN 128GB TEL-AN00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 34, + "slug": "kirin-820", + "name": "Kirin 820", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MP6", + "url": "/v1/socs/kirin-820" + }, + "release_date": "2020-05-26", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.63, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 1.5, + "camera": 13.9, + "battery": 20.8, + "display": 39.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.270098", + "updated_at": "2026-06-19T00:43:44.270098" +} diff --git a/site/public/v1/smartphones/honor-x10-5g-standard-edition-dual-sim-td-lte-cn-128gb-tel-an00/score/index.json b/site/public/v1/smartphones/honor-x10-5g-standard-edition-dual-sim-td-lte-cn-128gb-tel-an00/score/index.json new file mode 100644 index 00000000000..f4533605ad9 --- /dev/null +++ b/site/public/v1/smartphones/honor-x10-5g-standard-edition-dual-sim-td-lte-cn-128gb-tel-an00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 1.5, + "camera": 13.9, + "battery": 20.8, + "display": 39.7, + "value": null +} diff --git a/site/public/v1/smartphones/honor-x10-5g-standard-edition-dual-sim-td-lte-cn-64gb-tel-an00/index.json b/site/public/v1/smartphones/honor-x10-5g-standard-edition-dual-sim-td-lte-cn-64gb-tel-an00/index.json new file mode 100644 index 00000000000..1af13fda6dc --- /dev/null +++ b/site/public/v1/smartphones/honor-x10-5g-standard-edition-dual-sim-td-lte-cn-64gb-tel-an00/index.json @@ -0,0 +1,77 @@ +{ + "id": 1166, + "slug": "honor-x10-5g-standard-edition-dual-sim-td-lte-cn-64gb-tel-an00", + "name": "Honor X10 5G Standard Edition Dual SIM TD-LTE CN 64GB TEL-AN00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 34, + "slug": "kirin-820", + "name": "Kirin 820", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MP6", + "url": "/v1/socs/kirin-820" + }, + "release_date": "2020-05-26", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.63, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 1.5, + "camera": 13.9, + "battery": 20.8, + "display": 39.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.271096", + "updated_at": "2026-06-19T00:43:44.271096" +} diff --git a/site/public/v1/smartphones/honor-x10-5g-standard-edition-dual-sim-td-lte-cn-64gb-tel-an00/score/index.json b/site/public/v1/smartphones/honor-x10-5g-standard-edition-dual-sim-td-lte-cn-64gb-tel-an00/score/index.json new file mode 100644 index 00000000000..f4533605ad9 --- /dev/null +++ b/site/public/v1/smartphones/honor-x10-5g-standard-edition-dual-sim-td-lte-cn-64gb-tel-an00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 1.5, + "camera": 13.9, + "battery": 20.8, + "display": 39.7, + "value": null +} diff --git a/site/public/v1/smartphones/honor-x10-5g-standard-edition-dual-sim-td-lte-cn-64gb-tel-tn00/index.json b/site/public/v1/smartphones/honor-x10-5g-standard-edition-dual-sim-td-lte-cn-64gb-tel-tn00/index.json new file mode 100644 index 00000000000..082b142e5d2 --- /dev/null +++ b/site/public/v1/smartphones/honor-x10-5g-standard-edition-dual-sim-td-lte-cn-64gb-tel-tn00/index.json @@ -0,0 +1,77 @@ +{ + "id": 1167, + "slug": "honor-x10-5g-standard-edition-dual-sim-td-lte-cn-64gb-tel-tn00", + "name": "Honor X10 5G Standard Edition Dual SIM TD-LTE CN 64GB TEL-TN00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 34, + "slug": "kirin-820", + "name": "Kirin 820", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MP6", + "url": "/v1/socs/kirin-820" + }, + "release_date": "2020-05-26", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.63, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 1.5, + "camera": 13.9, + "battery": 20.8, + "display": 39.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.271096", + "updated_at": "2026-06-19T00:43:44.271096" +} diff --git a/site/public/v1/smartphones/honor-x10-5g-standard-edition-dual-sim-td-lte-cn-64gb-tel-tn00/score/index.json b/site/public/v1/smartphones/honor-x10-5g-standard-edition-dual-sim-td-lte-cn-64gb-tel-tn00/score/index.json new file mode 100644 index 00000000000..f4533605ad9 --- /dev/null +++ b/site/public/v1/smartphones/honor-x10-5g-standard-edition-dual-sim-td-lte-cn-64gb-tel-tn00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 1.5, + "camera": 13.9, + "battery": 20.8, + "display": 39.7, + "value": null +} diff --git a/site/public/v1/smartphones/honor-x20-5g-premium-edition-dual-sim-td-lte-cn-128gb-ntn-an20/index.json b/site/public/v1/smartphones/honor-x20-5g-premium-edition-dual-sim-td-lte-cn-128gb-ntn-an20/index.json new file mode 100644 index 00000000000..78e49c27633 --- /dev/null +++ b/site/public/v1/smartphones/honor-x20-5g-premium-edition-dual-sim-td-lte-cn-128gb-ntn-an20/index.json @@ -0,0 +1,77 @@ +{ + "id": 1259, + "slug": "honor-x20-5g-premium-edition-dual-sim-td-lte-cn-128gb-ntn-an20", + "name": "Honor X20 5G Premium Edition Dual SIM TD-LTE CN 128GB NTN-AN20", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 69, + "slug": "dimensity-900", + "name": "Dimensity 900", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G68 MC4", + "url": "/v1/socs/dimensity-900" + }, + "release_date": "2021-08-01", + "msrp_usd": 2199, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "Color PLS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 3.0, + "camera": 21.5, + "battery": 34.2, + "display": 51.6, + "value": 13.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.281607", + "updated_at": "2026-06-19T00:43:44.281607" +} diff --git a/site/public/v1/smartphones/honor-x20-5g-premium-edition-dual-sim-td-lte-cn-128gb-ntn-an20/score/index.json b/site/public/v1/smartphones/honor-x20-5g-premium-edition-dual-sim-td-lte-cn-128gb-ntn-an20/score/index.json new file mode 100644 index 00000000000..b6ed149c673 --- /dev/null +++ b/site/public/v1/smartphones/honor-x20-5g-premium-edition-dual-sim-td-lte-cn-128gb-ntn-an20/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 3.0, + "camera": 21.5, + "battery": 34.2, + "display": 51.6, + "value": 13.8 +} diff --git a/site/public/v1/smartphones/honor-x20-5g-premium-edition-dual-sim-td-lte-cn-256gb-ntn-an20/index.json b/site/public/v1/smartphones/honor-x20-5g-premium-edition-dual-sim-td-lte-cn-256gb-ntn-an20/index.json new file mode 100644 index 00000000000..7024591eea3 --- /dev/null +++ b/site/public/v1/smartphones/honor-x20-5g-premium-edition-dual-sim-td-lte-cn-256gb-ntn-an20/index.json @@ -0,0 +1,77 @@ +{ + "id": 1260, + "slug": "honor-x20-5g-premium-edition-dual-sim-td-lte-cn-256gb-ntn-an20", + "name": "Honor X20 5G Premium Edition Dual SIM TD-LTE CN 256GB NTN-AN20", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 69, + "slug": "dimensity-900", + "name": "Dimensity 900", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G68 MC4", + "url": "/v1/socs/dimensity-900" + }, + "release_date": "2021-08-01", + "msrp_usd": 2499, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "Color PLS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 3.0, + "camera": 21.5, + "battery": 34.2, + "display": 51.6, + "value": 13.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.281607", + "updated_at": "2026-06-19T00:43:44.281607" +} diff --git a/site/public/v1/smartphones/honor-x20-5g-premium-edition-dual-sim-td-lte-cn-256gb-ntn-an20/score/index.json b/site/public/v1/smartphones/honor-x20-5g-premium-edition-dual-sim-td-lte-cn-256gb-ntn-an20/score/index.json new file mode 100644 index 00000000000..b6ed149c673 --- /dev/null +++ b/site/public/v1/smartphones/honor-x20-5g-premium-edition-dual-sim-td-lte-cn-256gb-ntn-an20/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 3.0, + "camera": 21.5, + "battery": 34.2, + "display": 51.6, + "value": 13.8 +} diff --git a/site/public/v1/smartphones/honor-x20-5g-standard-edition-dual-sim-td-lte-cn-128gb-ntn-an20/index.json b/site/public/v1/smartphones/honor-x20-5g-standard-edition-dual-sim-td-lte-cn-128gb-ntn-an20/index.json new file mode 100644 index 00000000000..7d78ba9fc25 --- /dev/null +++ b/site/public/v1/smartphones/honor-x20-5g-standard-edition-dual-sim-td-lte-cn-128gb-ntn-an20/index.json @@ -0,0 +1,77 @@ +{ + "id": 1261, + "slug": "honor-x20-5g-standard-edition-dual-sim-td-lte-cn-128gb-ntn-an20", + "name": "Honor X20 5G Standard Edition Dual SIM TD-LTE CN 128GB NTN-AN20", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 69, + "slug": "dimensity-900", + "name": "Dimensity 900", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G68 MC4", + "url": "/v1/socs/dimensity-900" + }, + "release_date": "2021-08-01", + "msrp_usd": 1899, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "Color PLS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.2, + "performance": 1.5, + "camera": 21.5, + "battery": 34.2, + "display": 51.6, + "value": 13.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.282605", + "updated_at": "2026-06-19T00:43:44.282605" +} diff --git a/site/public/v1/smartphones/honor-x20-5g-standard-edition-dual-sim-td-lte-cn-128gb-ntn-an20/score/index.json b/site/public/v1/smartphones/honor-x20-5g-standard-edition-dual-sim-td-lte-cn-128gb-ntn-an20/score/index.json new file mode 100644 index 00000000000..b44ba07e9b1 --- /dev/null +++ b/site/public/v1/smartphones/honor-x20-5g-standard-edition-dual-sim-td-lte-cn-128gb-ntn-an20/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.2, + "performance": 1.5, + "camera": 21.5, + "battery": 34.2, + "display": 51.6, + "value": 13.6 +} diff --git a/site/public/v1/smartphones/honor-x20-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-chl-an00/index.json b/site/public/v1/smartphones/honor-x20-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-chl-an00/index.json new file mode 100644 index 00000000000..82c750fc1ac --- /dev/null +++ b/site/public/v1/smartphones/honor-x20-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-chl-an00/index.json @@ -0,0 +1,77 @@ +{ + "id": 1262, + "slug": "honor-x20-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-chl-an00", + "name": "Honor X20 SE 5G Premium Edition Dual SIM TD-LTE CN 128GB CHL-AN00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-07-09", + "msrp_usd": 1999, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 3.0, + "camera": 21.5, + "battery": 16.3, + "display": 27.4, + "value": 8.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.282605", + "updated_at": "2026-06-19T00:43:44.282605" +} diff --git a/site/public/v1/smartphones/honor-x20-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-chl-an00/score/index.json b/site/public/v1/smartphones/honor-x20-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-chl-an00/score/index.json new file mode 100644 index 00000000000..e4802763062 --- /dev/null +++ b/site/public/v1/smartphones/honor-x20-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-chl-an00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 3.0, + "camera": 21.5, + "battery": 16.3, + "display": 27.4, + "value": 8.6 +} diff --git a/site/public/v1/smartphones/honor-x20-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-chl-an00/index.json b/site/public/v1/smartphones/honor-x20-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-chl-an00/index.json new file mode 100644 index 00000000000..a8e3c13d1ad --- /dev/null +++ b/site/public/v1/smartphones/honor-x20-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-chl-an00/index.json @@ -0,0 +1,77 @@ +{ + "id": 1263, + "slug": "honor-x20-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-chl-an00", + "name": "Honor X20 SE 5G Standard Edition Dual SIM TD-LTE CN 128GB CHL-AN00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-07-09", + "msrp_usd": 1799, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 21.5, + "battery": 16.3, + "display": 27.4, + "value": 8.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.282605", + "updated_at": "2026-06-19T00:43:44.282605" +} diff --git a/site/public/v1/smartphones/honor-x20-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-chl-an00/score/index.json b/site/public/v1/smartphones/honor-x20-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-chl-an00/score/index.json new file mode 100644 index 00000000000..3cf52d22a27 --- /dev/null +++ b/site/public/v1/smartphones/honor-x20-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-chl-an00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 21.5, + "battery": 16.3, + "display": 27.4, + "value": 8.3 +} diff --git a/site/public/v1/smartphones/hot-12i/index.json b/site/public/v1/smartphones/hot-12i/index.json new file mode 100644 index 00000000000..68e87f9593f --- /dev/null +++ b/site/public/v1/smartphones/hot-12i/index.json @@ -0,0 +1,70 @@ +{ + "id": 1375, + "slug": "hot-12i", + "name": "Hot 12i", + "brand": { + "id": 19, + "slug": "infinix", + "name": "Infinix Mobile", + "country": "CN", + "url": "/v1/brands/infinix" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2022-01-01", + "msrp_usd": 139, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.6 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": null, + "value": 58.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.324605", + "updated_at": "2026-06-19T00:43:44.324605" +} diff --git a/site/public/v1/smartphones/hot-12i/score/index.json b/site/public/v1/smartphones/hot-12i/score/index.json new file mode 100644 index 00000000000..20b4abf98f9 --- /dev/null +++ b/site/public/v1/smartphones/hot-12i/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": null, + "value": 58.8 +} diff --git a/site/public/v1/smartphones/hot-20-play/index.json b/site/public/v1/smartphones/hot-20-play/index.json new file mode 100644 index 00000000000..b1a2c395d08 --- /dev/null +++ b/site/public/v1/smartphones/hot-20-play/index.json @@ -0,0 +1,70 @@ +{ + "id": 1377, + "slug": "hot-20-play", + "name": "Hot 20 Play", + "brand": { + "id": 19, + "slug": "infinix", + "name": "Infinix Mobile", + "country": "CN", + "url": "/v1/brands/infinix" + }, + "soc": { + "id": 72, + "slug": "helio-g37", + "name": "Helio G37", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g37" + }, + "release_date": "2022-01-01", + "msrp_usd": 159, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.82 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 209.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": null, + "camera": 5.3, + "battery": 45.0, + "display": null, + "value": 62.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.324605", + "updated_at": "2026-06-19T00:43:44.324605" +} diff --git a/site/public/v1/smartphones/hot-20-play/score/index.json b/site/public/v1/smartphones/hot-20-play/score/index.json new file mode 100644 index 00000000000..3ac78ef3c00 --- /dev/null +++ b/site/public/v1/smartphones/hot-20-play/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": null, + "camera": 5.3, + "battery": 45.0, + "display": null, + "value": 62.5 +} diff --git a/site/public/v1/smartphones/hot-30-play/index.json b/site/public/v1/smartphones/hot-30-play/index.json new file mode 100644 index 00000000000..784249451ed --- /dev/null +++ b/site/public/v1/smartphones/hot-30-play/index.json @@ -0,0 +1,70 @@ +{ + "id": 1383, + "slug": "hot-30-play", + "name": "Hot 30 Play", + "brand": { + "id": 19, + "slug": "infinix", + "name": "Infinix Mobile", + "country": "CN", + "url": "/v1/brands/infinix" + }, + "soc": { + "id": 72, + "slug": "helio-g37", + "name": "Helio G37", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g37" + }, + "release_date": "2023-01-01", + "msrp_usd": 179, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.82 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": null, + "camera": 6.3, + "battery": 45.0, + "display": null, + "value": 62.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.325606", + "updated_at": "2026-06-19T00:43:44.325606" +} diff --git a/site/public/v1/smartphones/hot-30-play/score/index.json b/site/public/v1/smartphones/hot-30-play/score/index.json new file mode 100644 index 00000000000..711b27b9ef3 --- /dev/null +++ b/site/public/v1/smartphones/hot-30-play/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": null, + "camera": 6.3, + "battery": 45.0, + "display": null, + "value": 62.8 +} diff --git a/site/public/v1/smartphones/hot-7-pro-dual-sim-td-lte-apac-32gb-x625b/index.json b/site/public/v1/smartphones/hot-7-pro-dual-sim-td-lte-apac-32gb-x625b/index.json new file mode 100644 index 00000000000..1d127661c37 --- /dev/null +++ b/site/public/v1/smartphones/hot-7-pro-dual-sim-td-lte-apac-32gb-x625b/index.json @@ -0,0 +1,76 @@ +{ + "id": 1330, + "slug": "hot-7-pro-dual-sim-td-lte-apac-32gb-x625b", + "name": "HOT 7 Pro Dual SIM TD-LTE APAC 32GB X625B", + "brand": { + "id": 19, + "slug": "infinix", + "name": "Infinix Mobile", + "country": "CN", + "url": "/v1/brands/infinix" + }, + "soc": { + "id": 58, + "slug": "helio-a25", + "name": "Helio A25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-a25" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.19, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 272 + }, + "cameras": [ + { + "type": "main", + "mp": 13.3 + }, + { + "type": "selfie", + "mp": 13.3 + } + ], + "battery_mah": 4000, + "charging_wired_w": 6.0, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.4, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.318605", + "updated_at": "2026-06-19T00:43:44.318605" +} diff --git a/site/public/v1/smartphones/hot-7-pro-dual-sim-td-lte-apac-32gb-x625b/score/index.json b/site/public/v1/smartphones/hot-7-pro-dual-sim-td-lte-apac-32gb-x625b/score/index.json new file mode 100644 index 00000000000..70ebfe12776 --- /dev/null +++ b/site/public/v1/smartphones/hot-7-pro-dual-sim-td-lte-apac-32gb-x625b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.4, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/hot-7-pro-dual-sim-td-lte-apac-64gb-x625d/index.json b/site/public/v1/smartphones/hot-7-pro-dual-sim-td-lte-apac-64gb-x625d/index.json new file mode 100644 index 00000000000..44c1d947586 --- /dev/null +++ b/site/public/v1/smartphones/hot-7-pro-dual-sim-td-lte-apac-64gb-x625d/index.json @@ -0,0 +1,76 @@ +{ + "id": 1331, + "slug": "hot-7-pro-dual-sim-td-lte-apac-64gb-x625d", + "name": "HOT 7 Pro Dual SIM TD-LTE APAC 64GB X625D", + "brand": { + "id": 19, + "slug": "infinix", + "name": "Infinix Mobile", + "country": "CN", + "url": "/v1/brands/infinix" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.19, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 272 + }, + "cameras": [ + { + "type": "main", + "mp": 13.3 + }, + { + "type": "selfie", + "mp": 13.3 + } + ], + "battery_mah": 4000, + "charging_wired_w": 6.0, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": null, + "camera": 5.4, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.319606", + "updated_at": "2026-06-19T00:43:44.319606" +} diff --git a/site/public/v1/smartphones/hot-7-pro-dual-sim-td-lte-apac-64gb-x625d/score/index.json b/site/public/v1/smartphones/hot-7-pro-dual-sim-td-lte-apac-64gb-x625d/score/index.json new file mode 100644 index 00000000000..9ddc31c4176 --- /dev/null +++ b/site/public/v1/smartphones/hot-7-pro-dual-sim-td-lte-apac-64gb-x625d/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": null, + "camera": 5.4, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/hot-9-dual-sim-lte-emea-32gb-x655/index.json b/site/public/v1/smartphones/hot-9-dual-sim-lte-emea-32gb-x655/index.json new file mode 100644 index 00000000000..ebf22ab8f6e --- /dev/null +++ b/site/public/v1/smartphones/hot-9-dual-sim-lte-emea-32gb-x655/index.json @@ -0,0 +1,76 @@ +{ + "id": 1351, + "slug": "hot-9-dual-sim-lte-emea-32gb-x655", + "name": "Hot 9 Dual SIM LTE EMEA 32GB X655", + "brand": { + "id": 19, + "slug": "infinix", + "name": "Infinix Mobile", + "country": "CN", + "url": "/v1/brands/infinix" + }, + "soc": { + "id": 58, + "slug": "helio-a25", + "name": "Helio A25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-a25" + }, + "release_date": "2020-06-07", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.4, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.321606", + "updated_at": "2026-06-19T00:43:44.321606" +} diff --git a/site/public/v1/smartphones/hot-9-dual-sim-lte-emea-32gb-x655/score/index.json b/site/public/v1/smartphones/hot-9-dual-sim-lte-emea-32gb-x655/score/index.json new file mode 100644 index 00000000000..ece520e99ec --- /dev/null +++ b/site/public/v1/smartphones/hot-9-dual-sim-lte-emea-32gb-x655/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.4, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/hot-9-dual-sim-lte-emea-64gb-x655c/index.json b/site/public/v1/smartphones/hot-9-dual-sim-lte-emea-64gb-x655c/index.json new file mode 100644 index 00000000000..5045692393c --- /dev/null +++ b/site/public/v1/smartphones/hot-9-dual-sim-lte-emea-64gb-x655c/index.json @@ -0,0 +1,76 @@ +{ + "id": 1352, + "slug": "hot-9-dual-sim-lte-emea-64gb-x655c", + "name": "Hot 9 Dual SIM LTE EMEA 64GB X655C", + "brand": { + "id": 19, + "slug": "infinix", + "name": "Infinix Mobile", + "country": "CN", + "url": "/v1/brands/infinix" + }, + "soc": { + "id": 58, + "slug": "helio-a25", + "name": "Helio A25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-a25" + }, + "release_date": "2020-06-07", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.4, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.321606", + "updated_at": "2026-06-19T00:43:44.321606" +} diff --git a/site/public/v1/smartphones/hot-9-dual-sim-lte-emea-64gb-x655c/score/index.json b/site/public/v1/smartphones/hot-9-dual-sim-lte-emea-64gb-x655c/score/index.json new file mode 100644 index 00000000000..ece520e99ec --- /dev/null +++ b/site/public/v1/smartphones/hot-9-dual-sim-lte-emea-64gb-x655c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.4, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/hot-9-dual-sim-td-lte-apac-64gb-x655d/index.json b/site/public/v1/smartphones/hot-9-dual-sim-td-lte-apac-64gb-x655d/index.json new file mode 100644 index 00000000000..88b21d87b9c --- /dev/null +++ b/site/public/v1/smartphones/hot-9-dual-sim-td-lte-apac-64gb-x655d/index.json @@ -0,0 +1,76 @@ +{ + "id": 1353, + "slug": "hot-9-dual-sim-td-lte-apac-64gb-x655d", + "name": "Hot 9 Dual SIM TD-LTE APAC 64GB X655D", + "brand": { + "id": 19, + "slug": "infinix", + "name": "Infinix Mobile", + "country": "CN", + "url": "/v1/brands/infinix" + }, + "soc": { + "id": 58, + "slug": "helio-a25", + "name": "Helio A25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-a25" + }, + "release_date": "2020-06-07", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.4, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.321606", + "updated_at": "2026-06-19T00:43:44.321606" +} diff --git a/site/public/v1/smartphones/hot-9-dual-sim-td-lte-apac-64gb-x655d/score/index.json b/site/public/v1/smartphones/hot-9-dual-sim-td-lte-apac-64gb-x655d/score/index.json new file mode 100644 index 00000000000..ece520e99ec --- /dev/null +++ b/site/public/v1/smartphones/hot-9-dual-sim-td-lte-apac-64gb-x655d/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.4, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/hot-9-pro-dual-sim-td-lte-apac-64gb-x655f/index.json b/site/public/v1/smartphones/hot-9-pro-dual-sim-td-lte-apac-64gb-x655f/index.json new file mode 100644 index 00000000000..223c0e9a2ee --- /dev/null +++ b/site/public/v1/smartphones/hot-9-pro-dual-sim-td-lte-apac-64gb-x655f/index.json @@ -0,0 +1,76 @@ +{ + "id": 1354, + "slug": "hot-9-pro-dual-sim-td-lte-apac-64gb-x655f", + "name": "Hot 9 Pro Dual SIM TD-LTE APAC 64GB X655F", + "brand": { + "id": 19, + "slug": "infinix", + "name": "Infinix Mobile", + "country": "CN", + "url": "/v1/brands/infinix" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.2, + "performance": null, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.321606", + "updated_at": "2026-06-19T00:43:44.321606" +} diff --git a/site/public/v1/smartphones/hot-9-pro-dual-sim-td-lte-apac-64gb-x655f/score/index.json b/site/public/v1/smartphones/hot-9-pro-dual-sim-td-lte-apac-64gb-x655f/score/index.json new file mode 100644 index 00000000000..a885b368bc4 --- /dev/null +++ b/site/public/v1/smartphones/hot-9-pro-dual-sim-td-lte-apac-64gb-x655f/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.2, + "performance": null, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/hot-s3-dual-sim-td-lte-32gb-x573/index.json b/site/public/v1/smartphones/hot-s3-dual-sim-td-lte-32gb-x573/index.json new file mode 100644 index 00000000000..b10e683949e --- /dev/null +++ b/site/public/v1/smartphones/hot-s3-dual-sim-td-lte-32gb-x573/index.json @@ -0,0 +1,76 @@ +{ + "id": 1325, + "slug": "hot-s3-dual-sim-td-lte-32gb-x573", + "name": "HOT S3 Dual SIM TD-LTE 32GB X573", + "brand": { + "id": 19, + "slug": "infinix", + "name": "Infinix Mobile", + "country": "CN", + "url": "/v1/brands/infinix" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-02-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 19.8 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.318605", + "updated_at": "2026-06-19T00:43:44.318605" +} diff --git a/site/public/v1/smartphones/hot-s3-dual-sim-td-lte-32gb-x573/score/index.json b/site/public/v1/smartphones/hot-s3-dual-sim-td-lte-32gb-x573/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/hot-s3-dual-sim-td-lte-32gb-x573/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/illumina-lte-us-3310a-legacy-go/index.json b/site/public/v1/smartphones/illumina-lte-us-3310a-legacy-go/index.json new file mode 100644 index 00000000000..0b77b589ff2 --- /dev/null +++ b/site/public/v1/smartphones/illumina-lte-us-3310a-legacy-go/index.json @@ -0,0 +1,76 @@ +{ + "id": 494, + "slug": "illumina-lte-us-3310a-legacy-go", + "name": "Illumina LTE US 3310A / Legacy Go", + "brand": { + "id": 10, + "slug": "coolpad", + "name": "Coolpad", + "country": "CN", + "url": "/v1/brands/coolpad" + }, + "soc": { + "id": 104, + "slug": "snapdragon-210", + "name": "Snapdragon 210", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-210" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.0, + "resolution": "480x854", + "type": "Color IPS TFT LCD display", + "ppi": 196 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "battery_mah": 2150, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.174932", + "updated_at": "2026-06-19T00:43:44.174932" +} diff --git a/site/public/v1/smartphones/illumina-lte-us-3310a-legacy-go/score/index.json b/site/public/v1/smartphones/illumina-lte-us-3310a-legacy-go/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/illumina-lte-us-3310a-legacy-go/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/index.json b/site/public/v1/smartphones/index.json index 6bf14113903..71176224932 100644 --- a/site/public/v1/smartphones/index.json +++ b/site/public/v1/smartphones/index.json @@ -1,11 +1,131 @@ { - "count": 1499, + "count": 6544, "results": [ + { + "slug": "1-3-2020-dual-sim-lte-emea", + "name": "1.3 2020 Dual SIM LTE EMEA", + "url": "/v1/smartphones/1-3-2020-dual-sim-lte-emea" + }, + { + "slug": "1-3-2020-dual-sim-lte-latam", + "name": "1.3 2020 Dual SIM LTE LATAM", + "url": "/v1/smartphones/1-3-2020-dual-sim-lte-latam" + }, + { + "slug": "1-3-2020-lte-emea", + "name": "1.3 2020 LTE EMEA", + "url": "/v1/smartphones/1-3-2020-lte-emea" + }, + { + "slug": "1-4-2021-premium-edition-lte-latam", + "name": "1.4 2021 Premium Edition LTE LATAM", + "url": "/v1/smartphones/1-4-2021-premium-edition-lte-latam" + }, + { + "slug": "1-4-2021-standard-edition-dual-sim-lte-emea-16gb", + "name": "1.4 2021 Standard Edition Dual SIM LTE EMEA 16GB", + "url": "/v1/smartphones/1-4-2021-standard-edition-dual-sim-lte-emea-16gb" + }, + { + "slug": "1-4-2021-standard-edition-dual-sim-lte-latam-16gb", + "name": "1.4 2021 Standard Edition Dual SIM LTE LATAM 16GB", + "url": "/v1/smartphones/1-4-2021-standard-edition-dual-sim-lte-latam-16gb" + }, + { + "slug": "10-5g-global-td-lte-128gb-t790y", + "name": "10 5G Global TD-LTE 128GB T790Y", + "url": "/v1/smartphones/10-5g-global-td-lte-128gb-t790y" + }, + { + "slug": "10-5g-td-lte-jp-128gb-t790h", + "name": "10 5G TD-LTE JP 128GB T790H", + "url": "/v1/smartphones/10-5g-td-lte-jp-128gb-t790h" + }, + { + "slug": "10-5g-uw-td-lte-us-128gb-t790s", + "name": "10 5G UW TD-LTE US 128GB T790S", + "url": "/v1/smartphones/10-5g-uw-td-lte-us-128gb-t790s" + }, + { + "slug": "10-plus-premium-edition-global-dual-sim-td-lte-256gb-t782h", + "name": "10 Plus Premium Edition Global Dual SIM TD-LTE 256GB T782H", + "url": "/v1/smartphones/10-plus-premium-edition-global-dual-sim-td-lte-256gb-t782h" + }, + { + "slug": "10-plus-standard-edition-dual-sim-td-lte-apac-64gb-t782p", + "name": "10 Plus Standard Edition Dual SIM TD-LTE APAC 64GB T782P", + "url": "/v1/smartphones/10-plus-standard-edition-dual-sim-td-lte-apac-64gb-t782p" + }, + { + "slug": "10-plus-standard-edition-global-dual-sim-td-lte-128gb-t782h", + "name": "10 Plus Standard Edition Global Dual SIM TD-LTE 128GB T782H", + "url": "/v1/smartphones/10-plus-standard-edition-global-dual-sim-td-lte-128gb-t782h" + }, + { + "slug": "10-plus-standard-edition-global-dual-sim-td-lte-256gb-t782h", + "name": "10 Plus Standard Edition Global Dual SIM TD-LTE 256GB T782H", + "url": "/v1/smartphones/10-plus-standard-edition-global-dual-sim-td-lte-256gb-t782h" + }, + { + "slug": "10-plus-standard-edition-global-dual-sim-td-lte-64gb-t782h", + "name": "10 Plus Standard Edition Global Dual SIM TD-LTE 64GB T782H", + "url": "/v1/smartphones/10-plus-standard-edition-global-dual-sim-td-lte-64gb-t782h" + }, { "slug": "10-pro", "name": "10 Pro", "url": "/v1/smartphones/10-pro" }, + { + "slug": "10-pro-dual-sim-td-lte-am-128gb-t799b", + "name": "10 Pro Dual SIM TD-LTE AM 128GB T799B", + "url": "/v1/smartphones/10-pro-dual-sim-td-lte-am-128gb-t799b" + }, + { + "slug": "10-pro-global-dual-sim-td-lte-128gb-t799h", + "name": "10 Pro Global Dual SIM TD-LTE 128GB T799H", + "url": "/v1/smartphones/10-pro-global-dual-sim-td-lte-128gb-t799h" + }, + { + "slug": "10-se-global-dual-sim-td-lte-128gb-t766u", + "name": "10 SE Global Dual SIM TD-LTE 128GB T766U", + "url": "/v1/smartphones/10-se-global-dual-sim-td-lte-128gb-t766u" + }, + { + "slug": "10-se-global-dual-sim-td-lte-64gb-t766h", + "name": "10 SE Global Dual SIM TD-LTE 64GB T766H", + "url": "/v1/smartphones/10-se-global-dual-sim-td-lte-64gb-t766h" + }, + { + "slug": "10-se-lte-latam-128gb-t766j", + "name": "10 SE LTE LATAM 128GB T766J", + "url": "/v1/smartphones/10-se-lte-latam-128gb-t766j" + }, + { + "slug": "10-se-lte-latam-64gb-t766a", + "name": "10 SE LTE LATAM 64GB T766A", + "url": "/v1/smartphones/10-se-lte-latam-64gb-t766a" + }, + { + "slug": "10l-dual-sim-td-lte-am-128gb-t770b", + "name": "10L Dual SIM TD-LTE AM 128GB T770B", + "url": "/v1/smartphones/10l-dual-sim-td-lte-am-128gb-t770b" + }, + { + "slug": "10l-dual-sim-td-lte-am-64gb-t770b", + "name": "10L Dual SIM TD-LTE AM 64GB T770B", + "url": "/v1/smartphones/10l-dual-sim-td-lte-am-64gb-t770b" + }, + { + "slug": "10l-global-dual-sim-td-lte-128gb-t770h", + "name": "10L Global Dual SIM TD-LTE 128GB T770H", + "url": "/v1/smartphones/10l-global-dual-sim-td-lte-128gb-t770h" + }, + { + "slug": "10l-global-dual-sim-td-lte-64gb-t770h", + "name": "10L Global Dual SIM TD-LTE 64GB T770H", + "url": "/v1/smartphones/10l-global-dual-sim-td-lte-64gb-t770h" + }, { "slug": "10r", "name": "10R", @@ -16,6 +136,11 @@ "name": "10T", "url": "/v1/smartphones/10t" }, + { + "slug": "10t-5g", + "name": "10T 5G", + "url": "/v1/smartphones/10t-5g" + }, { "slug": "10x-lite", "name": "10X Lite", @@ -31,6 +156,16 @@ "name": "11R", "url": "/v1/smartphones/11r" }, + { + "slug": "12", + "name": "12", + "url": "/v1/smartphones/12" + }, + { + "slug": "12r", + "name": "12R", + "url": "/v1/smartphones/12r" + }, { "slug": "13-pro-5g", "name": "13 Pro 5G", @@ -41,7121 +176,31721 @@ "name": "13+ 5G", "url": "/v1/smartphones/13-5g" }, + { + "slug": "14", + "name": "14", + "url": "/v1/smartphones/14" + }, + { + "slug": "14-pro", + "name": "14 Pro", + "url": "/v1/smartphones/14-pro" + }, { "slug": "14-pro-5g", "name": "14 Pro+ 5G", "url": "/v1/smartphones/14-pro-5g" }, + { + "slug": "14t-pro", + "name": "14T Pro", + "url": "/v1/smartphones/14t-pro" + }, { "slug": "14x-5g", "name": "14x 5G", "url": "/v1/smartphones/14x-5g" }, { - "slug": "2-v-tella", - "name": "2 V Tella", - "url": "/v1/smartphones/2-v-tella" + "slug": "15", + "name": "15", + "url": "/v1/smartphones/15" }, { - "slug": "2-2-2019", - "name": "2.2 2019", - "url": "/v1/smartphones/2-2-2019" + "slug": "15-dual-sim-td-lte-cn-m881q-128gb", + "name": "15 Dual SIM TD-LTE CN M881Q 128GB", + "url": "/v1/smartphones/15-dual-sim-td-lte-cn-m881q-128gb" }, { - "slug": "2-2-2019-lte", - "name": "2.2 2019 LTE", - "url": "/v1/smartphones/2-2-2019-lte" + "slug": "15-dual-sim-td-lte-cn-m881q-64gb", + "name": "15 Dual SIM TD-LTE CN M881Q 64GB", + "url": "/v1/smartphones/15-dual-sim-td-lte-cn-m881q-64gb" }, { - "slug": "2-3", - "name": "2.3", - "url": "/v1/smartphones/2-3" + "slug": "15-pro", + "name": "15 Pro", + "url": "/v1/smartphones/15-pro" }, { - "slug": "2-3-lte", - "name": "2.3 LTE", - "url": "/v1/smartphones/2-3-lte" + "slug": "16-global-dual-sim-td-lte-128gb-m872h-16x", + "name": "16 Global Dual SIM TD-LTE 128GB M872H / 16X", + "url": "/v1/smartphones/16-global-dual-sim-td-lte-128gb-m872h-16x" }, { - "slug": "2-4", - "name": "2.4", - "url": "/v1/smartphones/2-4" + "slug": "16-global-dual-sim-td-lte-64gb-m872h-16x", + "name": "16 Global Dual SIM TD-LTE 64GB M872H / 16X", + "url": "/v1/smartphones/16-global-dual-sim-td-lte-64gb-m872h-16x" }, { - "slug": "2-4-lte", - "name": "2.4 LTE", - "url": "/v1/smartphones/2-4-lte" + "slug": "16t-premium-edition-dual-sim-td-lte-cn-m928q-128gb", + "name": "16T Premium Edition Dual SIM TD-LTE CN M928Q 128GB", + "url": "/v1/smartphones/16t-premium-edition-dual-sim-td-lte-cn-m928q-128gb" }, { - "slug": "3-1-plus", - "name": "3.1 Plus", - "url": "/v1/smartphones/3-1-plus" + "slug": "16t-premium-edition-dual-sim-td-lte-cn-m928q-256gb", + "name": "16T Premium Edition Dual SIM TD-LTE CN M928Q 256GB", + "url": "/v1/smartphones/16t-premium-edition-dual-sim-td-lte-cn-m928q-256gb" }, { - "slug": "3-1-plus-lte", - "name": "3.1 Plus LTE", - "url": "/v1/smartphones/3-1-plus-lte" + "slug": "16t-standard-edition-dual-sim-td-lte-cn-m928q-128gb", + "name": "16T Standard Edition Dual SIM TD-LTE CN M928Q 128GB", + "url": "/v1/smartphones/16t-standard-edition-dual-sim-td-lte-cn-m928q-128gb" }, { - "slug": "30-pro", - "name": "30 Pro", - "url": "/v1/smartphones/30-pro" + "slug": "16x-dual-sim-td-lte-cn-128gb-m872q", + "name": "16X Dual SIM TD-LTE CN 128GB M872Q", + "url": "/v1/smartphones/16x-dual-sim-td-lte-cn-128gb-m872q" }, { - "slug": "5-1-plus-2018", - "name": "5.1 Plus 2018", - "url": "/v1/smartphones/5-1-plus-2018" + "slug": "16x-dual-sim-td-lte-cn-64gb-m872q", + "name": "16X Dual SIM TD-LTE CN 64GB M872Q", + "url": "/v1/smartphones/16x-dual-sim-td-lte-cn-64gb-m872q" }, { - "slug": "5-1-plus-2018-premium-edition", - "name": "5.1 Plus 2018 Premium Edition", - "url": "/v1/smartphones/5-1-plus-2018-premium-edition" + "slug": "16xs-dual-sim-td-lte-cn-128gb-m926q", + "name": "16Xs Dual SIM TD-LTE CN 128GB M926Q", + "url": "/v1/smartphones/16xs-dual-sim-td-lte-cn-128gb-m926q" }, { - "slug": "5-1-plus-2018-standard-edition", - "name": "5.1 Plus 2018 Standard Edition", - "url": "/v1/smartphones/5-1-plus-2018-standard-edition" + "slug": "16xs-dual-sim-td-lte-cn-64gb-m926q", + "name": "16Xs Dual SIM TD-LTE CN 64GB M926Q", + "url": "/v1/smartphones/16xs-dual-sim-td-lte-cn-64gb-m926q" }, { - "slug": "50", - "name": "50", - "url": "/v1/smartphones/50" + "slug": "16xs-global-dual-sim-td-lte-128gb-m926h", + "name": "16Xs Global Dual SIM TD-LTE 128GB M926H", + "url": "/v1/smartphones/16xs-global-dual-sim-td-lte-128gb-m926h" }, { - "slug": "50-pro", - "name": "50 Pro", - "url": "/v1/smartphones/50-pro" + "slug": "16xs-global-dual-sim-td-lte-64gb-m926h", + "name": "16Xs Global Dual SIM TD-LTE 64GB M926H", + "url": "/v1/smartphones/16xs-global-dual-sim-td-lte-64gb-m926h" }, { - "slug": "50-se", - "name": "50 SE", - "url": "/v1/smartphones/50-se" + "slug": "16s-premium-edition-dual-sim-td-lte-cn-m971q-128gb", + "name": "16s Premium Edition Dual SIM TD-LTE CN M971Q 128GB", + "url": "/v1/smartphones/16s-premium-edition-dual-sim-td-lte-cn-m971q-128gb" }, { - "slug": "60", - "name": "60", - "url": "/v1/smartphones/60" + "slug": "16s-premium-edition-dual-sim-td-lte-cn-m971q-256gb", + "name": "16s Premium Edition Dual SIM TD-LTE CN M971Q 256GB", + "url": "/v1/smartphones/16s-premium-edition-dual-sim-td-lte-cn-m971q-256gb" }, { - "slug": "60-pro", - "name": "60 Pro", - "url": "/v1/smartphones/60-pro" + "slug": "16s-premium-edition-global-dual-sim-td-lte-m971h-128gb", + "name": "16s Premium Edition Global Dual SIM TD-LTE M971H 128GB", + "url": "/v1/smartphones/16s-premium-edition-global-dual-sim-td-lte-m971h-128gb" }, { - "slug": "60-se", - "name": "60 SE", - "url": "/v1/smartphones/60-se" + "slug": "16s-pro-premium-edition-dual-sim-td-lte-cn-m973q-128gb", + "name": "16s Pro Premium Edition Dual SIM TD-LTE CN M973Q 128GB", + "url": "/v1/smartphones/16s-pro-premium-edition-dual-sim-td-lte-cn-m973q-128gb" }, { - "slug": "70", - "name": "70", - "url": "/v1/smartphones/70" + "slug": "16s-pro-premium-edition-dual-sim-td-lte-cn-m973q-256gb", + "name": "16s Pro Premium Edition Dual SIM TD-LTE CN M973Q 256GB", + "url": "/v1/smartphones/16s-pro-premium-edition-dual-sim-td-lte-cn-m973q-256gb" }, { - "slug": "70-pro", - "name": "70 Pro+", - "url": "/v1/smartphones/70-pro" + "slug": "16s-pro-standard-edition-dual-sim-td-lte-cn-m973q-128gb", + "name": "16s Pro Standard Edition Dual SIM TD-LTE CN M973Q 128GB", + "url": "/v1/smartphones/16s-pro-standard-edition-dual-sim-td-lte-cn-m973q-128gb" }, { - "slug": "7t", - "name": "7T", - "url": "/v1/smartphones/7t" + "slug": "16s-standard-edition-dual-sim-td-lte-cn-m971q-128gb", + "name": "16s Standard Edition Dual SIM TD-LTE CN M971Q 128GB", + "url": "/v1/smartphones/16s-standard-edition-dual-sim-td-lte-cn-m971q-128gb" }, { - "slug": "7t-pro", - "name": "7T Pro", - "url": "/v1/smartphones/7t-pro" + "slug": "16s-standard-edition-global-dual-sim-td-lte-m971h-128gb", + "name": "16s Standard Edition Global Dual SIM TD-LTE M971H 128GB", + "url": "/v1/smartphones/16s-standard-edition-global-dual-sim-td-lte-m971h-128gb" }, { - "slug": "7t-pro-mclaren-edition", - "name": "7T Pro McLaren Edition", - "url": "/v1/smartphones/7t-pro-mclaren-edition" + "slug": "16th-global-dual-sim-td-lte-m882h-128gb", + "name": "16th Global Dual SIM TD-LTE M882H 128GB", + "url": "/v1/smartphones/16th-global-dual-sim-td-lte-m882h-128gb" }, { - "slug": "7t-pro-standard-edition", - "name": "7T Pro Standard Edition", - "url": "/v1/smartphones/7t-pro-standard-edition" + "slug": "16th-global-dual-sim-td-lte-m882h-64gb", + "name": "16th Global Dual SIM TD-LTE M882H 64GB", + "url": "/v1/smartphones/16th-global-dual-sim-td-lte-m882h-64gb" }, { - "slug": "7t-standard-edition", - "name": "7T Standard Edition", - "url": "/v1/smartphones/7t-standard-edition" + "slug": "16th-plus-premium-edition-dual-sim-td-lte-cn-m892q-128gb", + "name": "16th Plus Premium Edition Dual SIM TD-LTE CN M892Q 128GB", + "url": "/v1/smartphones/16th-plus-premium-edition-dual-sim-td-lte-cn-m892q-128gb" }, { - "slug": "8", - "name": "8", - "url": "/v1/smartphones/8" + "slug": "16th-plus-premium-edition-dual-sim-td-lte-cn-m892q-256gb", + "name": "16th Plus Premium Edition Dual SIM TD-LTE CN M892Q 256GB", + "url": "/v1/smartphones/16th-plus-premium-edition-dual-sim-td-lte-cn-m892q-256gb" }, { - "slug": "8-pro", - "name": "8 Pro", - "url": "/v1/smartphones/8-pro" + "slug": "16th-plus-standard-edition-dual-sim-td-lte-cn-m892q-128gb", + "name": "16th Plus Standard Edition Dual SIM TD-LTE CN M892Q 128GB", + "url": "/v1/smartphones/16th-plus-standard-edition-dual-sim-td-lte-cn-m892q-128gb" }, { - "slug": "8-v", - "name": "8 V", - "url": "/v1/smartphones/8-v" + "slug": "16th-premium-edition-dual-sim-td-lte-cn-m882q-128gb", + "name": "16th Premium Edition Dual SIM TD-LTE CN M882Q 128GB", + "url": "/v1/smartphones/16th-premium-edition-dual-sim-td-lte-cn-m882q-128gb" }, { - "slug": "8-3-2020", - "name": "8.3 2020", - "url": "/v1/smartphones/8-3-2020" + "slug": "16th-standard-edition-dual-sim-td-lte-cn-m882q-128gb", + "name": "16th Standard Edition Dual SIM TD-LTE CN M882Q 128GB", + "url": "/v1/smartphones/16th-standard-edition-dual-sim-td-lte-cn-m882q-128gb" }, { - "slug": "80-pro", - "name": "80 Pro", - "url": "/v1/smartphones/80-pro" + "slug": "16th-standard-edition-dual-sim-td-lte-cn-m882q-64gb", + "name": "16th Standard Edition Dual SIM TD-LTE CN M882Q 64GB", + "url": "/v1/smartphones/16th-standard-edition-dual-sim-td-lte-cn-m882q-64gb" }, { - "slug": "80-se", - "name": "80 SE", - "url": "/v1/smartphones/80-se" + "slug": "17-5g-aircraft-carrier-limited-edition-dual-sim-td-lte-cn-256gb-m081q", + "name": "17 5G Aircraft Carrier Limited Edition Dual SIM TD-LTE CN 256GB M081Q", + "url": "/v1/smartphones/17-5g-aircraft-carrier-limited-edition-dual-sim-td-lte-cn-256gb-m081q" }, { - "slug": "8t", - "name": "8T", - "url": "/v1/smartphones/8t" + "slug": "17-5g-dual-sim-td-lte-cn-128gb-m081m", + "name": "17 5G Dual SIM TD-LTE CN 128GB M081M", + "url": "/v1/smartphones/17-5g-dual-sim-td-lte-cn-128gb-m081m" }, { - "slug": "9", - "name": "9", - "url": "/v1/smartphones/9" + "slug": "17-5g-dual-sim-td-lte-cn-128gb-m081q", + "name": "17 5G Dual SIM TD-LTE CN 128GB M081Q", + "url": "/v1/smartphones/17-5g-dual-sim-td-lte-cn-128gb-m081q" }, { - "slug": "9-pro", - "name": "9 Pro", - "url": "/v1/smartphones/9-pro" + "slug": "17-5g-dual-sim-td-lte-cn-256gb-m081q", + "name": "17 5G Dual SIM TD-LTE CN 256GB M081Q", + "url": "/v1/smartphones/17-5g-dual-sim-td-lte-cn-256gb-m081q" }, { - "slug": "90", - "name": "90", - "url": "/v1/smartphones/90" + "slug": "17-pro-5g-premium-edition-dual-sim-td-lte-cn-m091q", + "name": "17 Pro 5G Premium Edition Dual SIM TD-LTE CN M091Q", + "url": "/v1/smartphones/17-pro-5g-premium-edition-dual-sim-td-lte-cn-m091q" }, { - "slug": "90-pro", - "name": "90 Pro", - "url": "/v1/smartphones/90-pro" + "slug": "17-pro-5g-standard-edition-dual-sim-td-lte-cn-m091m", + "name": "17 Pro 5G Standard Edition Dual SIM TD-LTE CN M091M", + "url": "/v1/smartphones/17-pro-5g-standard-edition-dual-sim-td-lte-cn-m091m" }, { - "slug": "90-se", - "name": "90 SE", - "url": "/v1/smartphones/90-se" + "slug": "17-pro-5g-standard-edition-dual-sim-td-lte-cn-m091q", + "name": "17 Pro 5G Standard Edition Dual SIM TD-LTE CN M091Q", + "url": "/v1/smartphones/17-pro-5g-standard-edition-dual-sim-td-lte-cn-m091q" }, { - "slug": "9r", - "name": "9R", - "url": "/v1/smartphones/9r" + "slug": "17-pro-5g-xiaofang-kiln-art-edition-dual-sim-td-lte-cn-m091q", + "name": "17 Pro 5G Xiaofang Kiln Art Edition Dual SIM TD-LTE CN M091Q", + "url": "/v1/smartphones/17-pro-5g-xiaofang-kiln-art-edition-dual-sim-td-lte-cn-m091q" }, { - "slug": "9rt", - "name": "9RT", - "url": "/v1/smartphones/9rt" + "slug": "18-5g-premium-edition-dual-sim-td-lte-cn-256gb-m181q", + "name": "18 5G Premium Edition Dual SIM TD-LTE CN 256GB M181Q", + "url": "/v1/smartphones/18-5g-premium-edition-dual-sim-td-lte-cn-256gb-m181q" }, { - "slug": "9x-lite", - "name": "9X Lite", - "url": "/v1/smartphones/9x-lite" + "slug": "18-5g-standard-edition-dual-sim-td-lte-cn-128gb-m181q", + "name": "18 5G Standard Edition Dual SIM TD-LTE CN 128GB M181Q", + "url": "/v1/smartphones/18-5g-standard-edition-dual-sim-td-lte-cn-128gb-m181q" }, { - "slug": "a1", - "name": "A1", - "url": "/v1/smartphones/a1" + "slug": "18-5g-standard-edition-dual-sim-td-lte-cn-256gb-m181q", + "name": "18 5G Standard Edition Dual SIM TD-LTE CN 256GB M181Q", + "url": "/v1/smartphones/18-5g-standard-edition-dual-sim-td-lte-cn-256gb-m181q" }, { - "slug": "a11k-2020", - "name": "A11k 2020", - "url": "/v1/smartphones/a11k-2020" + "slug": "18-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m191q", + "name": "18 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB M191Q", + "url": "/v1/smartphones/18-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m191q" }, { - "slug": "a12-2020", - "name": "A12 2020", - "url": "/v1/smartphones/a12-2020" + "slug": "18-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m191q", + "name": "18 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB M191Q", + "url": "/v1/smartphones/18-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m191q" }, { - "slug": "a15-2020-premium-edition", - "name": "A15 2020 Premium Edition", - "url": "/v1/smartphones/a15-2020-premium-edition" + "slug": "18-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m191q", + "name": "18 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB M191Q", + "url": "/v1/smartphones/18-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m191q" }, { - "slug": "a15-2020-standard-edition", - "name": "A15 2020 Standard Edition", - "url": "/v1/smartphones/a15-2020-standard-edition" + "slug": "18x-5g-premium-edition-dual-sim-td-lte-cn-256gb-m172q", + "name": "18X 5G Premium Edition Dual SIM TD-LTE CN 256GB M172Q", + "url": "/v1/smartphones/18x-5g-premium-edition-dual-sim-td-lte-cn-256gb-m172q" }, { - "slug": "a15s-2020", - "name": "A15s 2020", - "url": "/v1/smartphones/a15s-2020" + "slug": "18x-5g-standard-edition-dual-sim-td-lte-cn-128gb-m172q", + "name": "18X 5G Standard Edition Dual SIM TD-LTE CN 128GB M172Q", + "url": "/v1/smartphones/18x-5g-standard-edition-dual-sim-td-lte-cn-128gb-m172q" }, { - "slug": "a16-2021-premium-edition", - "name": "A16 2021 Premium Edition", - "url": "/v1/smartphones/a16-2021-premium-edition" + "slug": "18x-5g-standard-edition-dual-sim-td-lte-cn-256gb-m172q", + "name": "18X 5G Standard Edition Dual SIM TD-LTE CN 256GB M172Q", + "url": "/v1/smartphones/18x-5g-standard-edition-dual-sim-td-lte-cn-256gb-m172q" }, { - "slug": "a16-2021-standard-edition", - "name": "A16 2021 Standard Edition", - "url": "/v1/smartphones/a16-2021-standard-edition" + "slug": "18s-5g-premium-edition-dual-sim-td-lte-cn-256gb-m182q", + "name": "18s 5G Premium Edition Dual SIM TD-LTE CN 256GB M182Q", + "url": "/v1/smartphones/18s-5g-premium-edition-dual-sim-td-lte-cn-256gb-m182q" }, { - "slug": "a16e-2022-premium-edition", - "name": "A16e 2022 Premium Edition", - "url": "/v1/smartphones/a16e-2022-premium-edition" + "slug": "18s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m182q", + "name": "18s 5G Standard Edition Dual SIM TD-LTE CN 128GB M182Q", + "url": "/v1/smartphones/18s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m182q" }, { - "slug": "a16e-2022-standard-edition", - "name": "A16e 2022 Standard Edition", - "url": "/v1/smartphones/a16e-2022-standard-edition" + "slug": "18s-5g-standard-edition-dual-sim-td-lte-cn-256gb-m182q", + "name": "18s 5G Standard Edition Dual SIM TD-LTE CN 256GB M182Q", + "url": "/v1/smartphones/18s-5g-standard-edition-dual-sim-td-lte-cn-256gb-m182q" }, { - "slug": "a16k-2021-premium-edition", - "name": "A16k 2021 Premium Edition", - "url": "/v1/smartphones/a16k-2021-premium-edition" + "slug": "18s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m192q", + "name": "18s Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB M192Q", + "url": "/v1/smartphones/18s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m192q" }, { - "slug": "a16k-2021-standard-edition", - "name": "A16k 2021 Standard Edition", - "url": "/v1/smartphones/a16k-2021-standard-edition" + "slug": "18s-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m192q", + "name": "18s Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB M192Q", + "url": "/v1/smartphones/18s-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m192q" }, { - "slug": "a16s-2021", - "name": "A16s 2021", - "url": "/v1/smartphones/a16s-2021" + "slug": "18s-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m192q", + "name": "18s Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB M192Q", + "url": "/v1/smartphones/18s-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m192q" }, { - "slug": "a17", - "name": "A17", - "url": "/v1/smartphones/a17" + "slug": "1b-2020-global-dual-sim-lte-5002d", + "name": "1B 2020 Global Dual SIM LTE 5002D", + "url": "/v1/smartphones/1b-2020-global-dual-sim-lte-5002d" }, { - "slug": "a17k", - "name": "A17k", - "url": "/v1/smartphones/a17k" + "slug": "1b-2020-global-lte-5002x", + "name": "1B 2020 Global LTE 5002X", + "url": "/v1/smartphones/1b-2020-global-lte-5002x" }, { - "slug": "a1k", - "name": "A1k", - "url": "/v1/smartphones/a1k" + "slug": "1v-2020-global-dual-sim-td-lte-5007u", + "name": "1V 2020 Global Dual SIM TD-LTE 5007U", + "url": "/v1/smartphones/1v-2020-global-dual-sim-td-lte-5007u" }, { - "slug": "a3", - "name": "A3", - "url": "/v1/smartphones/a3" + "slug": "1s-2020-global-dual-sim-td-lte-5028d", + "name": "1s 2020 Global Dual SIM TD-LTE 5028D", + "url": "/v1/smartphones/1s-2020-global-dual-sim-td-lte-5028d" }, { - "slug": "a31-2020-premium-edition", - "name": "A31 2020 Premium Edition", - "url": "/v1/smartphones/a31-2020-premium-edition" + "slug": "1s-2020-global-dual-sim-td-lte-5028y", + "name": "1s 2020 Global Dual SIM TD-LTE 5028Y", + "url": "/v1/smartphones/1s-2020-global-dual-sim-td-lte-5028y" }, { - "slug": "a31-2020-standard-edition", - "name": "A31 2020 Standard Edition", - "url": "/v1/smartphones/a31-2020-standard-edition" + "slug": "1s-2020-lte-latam-5028a", + "name": "1s 2020 LTE LATAM 5028A", + "url": "/v1/smartphones/1s-2020-lte-latam-5028a" }, { - "slug": "a35-2021", - "name": "A35 2021", - "url": "/v1/smartphones/a35-2021" + "slug": "1s-2021-global-dual-sim-td-lte-6025d", + "name": "1s 2021 Global Dual SIM TD-LTE 6025D", + "url": "/v1/smartphones/1s-2021-global-dual-sim-td-lte-6025d" }, { - "slug": "a49-5g", - "name": "A49 5G", - "url": "/v1/smartphones/a49-5g" + "slug": "1s-2021-global-td-lte-6025h", + "name": "1s 2021 Global TD-LTE 6025H", + "url": "/v1/smartphones/1s-2021-global-td-lte-6025h" }, { - "slug": "a5-pro", - "name": "A5 Pro", - "url": "/v1/smartphones/a5-pro" + "slug": "2-2017-dual-sim-lte", + "name": "2 2017 Dual SIM LTE", + "url": "/v1/smartphones/2-2017-dual-sim-lte" }, { - "slug": "a50-5g", - "name": "A50 5G", - "url": "/v1/smartphones/a50-5g" + "slug": "2-v-lte-us", + "name": "2 V LTE US", + "url": "/v1/smartphones/2-v-lte-us" }, { - "slug": "a51-5g", - "name": "A51 5G", - "url": "/v1/smartphones/a51-5g" - }, + "slug": "2-v-tella", + "name": "2 V Tella", + "url": "/v1/smartphones/2-v-tella" + }, { - "slug": "a52-5g", - "name": "A52 5G", - "url": "/v1/smartphones/a52-5g" + "slug": "2-v-tella-lte-a-us-16gb", + "name": "2 V Tella LTE-A US 16GB", + "url": "/v1/smartphones/2-v-tella-lte-a-us-16gb" }, { - "slug": "a53", - "name": "A53", - "url": "/v1/smartphones/a53" + "slug": "2-1-dual-sim-td-lte-in", + "name": "2.1 Dual SIM TD-LTE IN", + "url": "/v1/smartphones/2-1-dual-sim-td-lte-in" }, { - "slug": "a53-5g", - "name": "A53 5G", - "url": "/v1/smartphones/a53-5g" + "slug": "2-1-dual-sim-td-lte-latam", + "name": "2.1 Dual SIM TD-LTE LATAM", + "url": "/v1/smartphones/2-1-dual-sim-td-lte-latam" }, { - "slug": "a54-2021", - "name": "A54 2021", - "url": "/v1/smartphones/a54-2021" + "slug": "2-1-global-dual-sim-td-lte", + "name": "2.1 Global Dual SIM TD-LTE", + "url": "/v1/smartphones/2-1-global-dual-sim-td-lte" }, { - "slug": "a54-5g", - "name": "A54 5G", - "url": "/v1/smartphones/a54-5g" + "slug": "2-1-global-td-lte", + "name": "2.1 Global TD-LTE", + "url": "/v1/smartphones/2-1-global-td-lte" }, { - "slug": "a54s-2021", - "name": "A54s 2021", - "url": "/v1/smartphones/a54s-2021" + "slug": "2-1-td-lte-latam", + "name": "2.1 TD-LTE LATAM", + "url": "/v1/smartphones/2-1-td-lte-latam" }, { - "slug": "a55", - "name": "A55", - "url": "/v1/smartphones/a55" + "slug": "2-2-2019", + "name": "2.2 2019", + "url": "/v1/smartphones/2-2-2019" }, { - "slug": "a55-5g", - "name": "A55 5G", - "url": "/v1/smartphones/a55-5g" + "slug": "2-2-2019-dual-sim-td-lte-in-16gb", + "name": "2.2 2019 Dual SIM TD-LTE IN 16GB", + "url": "/v1/smartphones/2-2-2019-dual-sim-td-lte-in-16gb" }, { - "slug": "a55s-2022", - "name": "A55s 2022", - "url": "/v1/smartphones/a55s-2022" + "slug": "2-2-2019-dual-sim-td-lte-in-32gb", + "name": "2.2 2019 Dual SIM TD-LTE IN 32GB", + "url": "/v1/smartphones/2-2-2019-dual-sim-td-lte-in-32gb" }, { - "slug": "a56", - "name": "A56", - "url": "/v1/smartphones/a56" + "slug": "2-2-2019-global-dual-sim-td-lte-16gb", + "name": "2.2 2019 Global Dual SIM TD-LTE 16GB", + "url": "/v1/smartphones/2-2-2019-global-dual-sim-td-lte-16gb" }, { - "slug": "a56-5g", - "name": "A56 5G", - "url": "/v1/smartphones/a56-5g" + "slug": "2-2-2019-global-dual-sim-td-lte-32gb", + "name": "2.2 2019 Global Dual SIM TD-LTE 32GB", + "url": "/v1/smartphones/2-2-2019-global-dual-sim-td-lte-32gb" }, { - "slug": "a56s", - "name": "A56s", - "url": "/v1/smartphones/a56s" + "slug": "2-2-2019-global-td-lte-16gb", + "name": "2.2 2019 Global TD-LTE 16GB", + "url": "/v1/smartphones/2-2-2019-global-td-lte-16gb" }, { - "slug": "a57", - "name": "A57", - "url": "/v1/smartphones/a57" + "slug": "2-2-2019-lte", + "name": "2.2 2019 LTE", + "url": "/v1/smartphones/2-2-2019-lte" }, { - "slug": "a57-5g", - "name": "A57 5G", - "url": "/v1/smartphones/a57-5g" + "slug": "2-2-2019-lte-na-32gb", + "name": "2.2 2019 LTE NA 32GB", + "url": "/v1/smartphones/2-2-2019-lte-na-32gb" }, { - "slug": "a57s", - "name": "A57s", - "url": "/v1/smartphones/a57s" + "slug": "2-2-2019-lte-us-32gb", + "name": "2.2 2019 LTE US 32GB", + "url": "/v1/smartphones/2-2-2019-lte-us-32gb" }, { - "slug": "a58", - "name": "A58", - "url": "/v1/smartphones/a58" + "slug": "2-3", + "name": "2.3", + "url": "/v1/smartphones/2-3" }, { - "slug": "a58-5g", - "name": "A58 5G", - "url": "/v1/smartphones/a58-5g" + "slug": "2-3-dual-sim-td-lte-in", + "name": "2.3 Dual SIM TD-LTE IN", + "url": "/v1/smartphones/2-3-dual-sim-td-lte-in" }, { - "slug": "a58x", - "name": "A58x", - "url": "/v1/smartphones/a58x" + "slug": "2-3-global-dual-sim-td-lte", + "name": "2.3 Global Dual SIM TD-LTE", + "url": "/v1/smartphones/2-3-global-dual-sim-td-lte" }, { - "slug": "a5s", - "name": "A5s", - "url": "/v1/smartphones/a5s" + "slug": "2-3-global-td-lte", + "name": "2.3 Global TD-LTE", + "url": "/v1/smartphones/2-3-global-td-lte" }, { - "slug": "a5s-premium-edition", - "name": "A5s Premium Edition", - "url": "/v1/smartphones/a5s-premium-edition" + "slug": "2-3-lte", + "name": "2.3 LTE", + "url": "/v1/smartphones/2-3-lte" }, { - "slug": "a5s-standard-edition", - "name": "A5s Standard Edition", - "url": "/v1/smartphones/a5s-standard-edition" + "slug": "2-3-lte-na", + "name": "2.3 LTE NA", + "url": "/v1/smartphones/2-3-lte-na" }, { - "slug": "a6-note", - "name": "A6 Note", - "url": "/v1/smartphones/a6-note" + "slug": "2-4", + "name": "2.4", + "url": "/v1/smartphones/2-4" }, { - "slug": "a72", - "name": "A72", - "url": "/v1/smartphones/a72" + "slug": "2-4-lte", + "name": "2.4 LTE", + "url": "/v1/smartphones/2-4-lte" }, { - "slug": "a73", - "name": "A73", - "url": "/v1/smartphones/a73" + "slug": "20-5g-global-dual-sim-td-lte-128gb-t781h", + "name": "20 5G Global Dual SIM TD-LTE 128GB T781H", + "url": "/v1/smartphones/20-5g-global-dual-sim-td-lte-128gb-t781h" }, { - "slug": "a73s", - "name": "A73s", - "url": "/v1/smartphones/a73s" + "slug": "20-5g-global-dual-sim-td-lte-256gb-t781k", + "name": "20 5G Global Dual SIM TD-LTE 256GB T781K", + "url": "/v1/smartphones/20-5g-global-dual-sim-td-lte-256gb-t781k" }, { - "slug": "a74-2021", - "name": "A74 2021", - "url": "/v1/smartphones/a74-2021" + "slug": "20-5g-uw-td-lte-us-128gb-t781s-t781spp", + "name": "20 5G UW TD-LTE US 128GB T781S / T781SPP", + "url": "/v1/smartphones/20-5g-uw-td-lte-us-128gb-t781s-t781spp" }, { - "slug": "a77", - "name": "A77", - "url": "/v1/smartphones/a77" + "slug": "20-r-5g-global-dual-sim-td-lte-64gb-t767h", + "name": "20 R 5G Global Dual SIM TD-LTE 64GB T767H", + "url": "/v1/smartphones/20-r-5g-global-dual-sim-td-lte-64gb-t767h" }, { - "slug": "a78", - "name": "A78", - "url": "/v1/smartphones/a78" + "slug": "20-r-5g-global-td-lte-64gb-t767h", + "name": "20 R 5G Global TD-LTE 64GB T767H", + "url": "/v1/smartphones/20-r-5g-global-td-lte-64gb-t767h" }, { - "slug": "a7n", - "name": "A7n", - "url": "/v1/smartphones/a7n" + "slug": "20-se-dual-sim-lte-latam-128gb-t671e", + "name": "20 SE Dual SIM LTE LATAM 128GB T671E", + "url": "/v1/smartphones/20-se-dual-sim-lte-latam-128gb-t671e" }, { - "slug": "a7x", - "name": "A7x", - "url": "/v1/smartphones/a7x" + "slug": "20-se-global-dual-sim-td-lte-128gb-t671f", + "name": "20 SE Global Dual SIM TD-LTE 128GB T671F", + "url": "/v1/smartphones/20-se-global-dual-sim-td-lte-128gb-t671f" }, { - "slug": "a8-2019", - "name": "A8 2019", - "url": "/v1/smartphones/a8-2019" + "slug": "20-se-global-dual-sim-td-lte-64gb-t671h", + "name": "20 SE Global Dual SIM TD-LTE 64GB T671H", + "url": "/v1/smartphones/20-se-global-dual-sim-td-lte-64gb-t671h" }, { - "slug": "a80", - "name": "A80", - "url": "/v1/smartphones/a80" + "slug": "20-se-lte-latam-128gb-t671o", + "name": "20 SE LTE LATAM 128GB T671O", + "url": "/v1/smartphones/20-se-lte-latam-128gb-t671o" }, { - "slug": "a83", - "name": "A83", - "url": "/v1/smartphones/a83" + "slug": "20e-2021-lte-latam-128gb-6125f1", + "name": "20E 2021 LTE LATAM 128GB 6125F1", + "url": "/v1/smartphones/20e-2021-lte-latam-128gb-6125f1" }, { - "slug": "a83-2018", - "name": "A83 2018", - "url": "/v1/smartphones/a83-2018" + "slug": "20e-2021-lte-latam-64gb-6125a", + "name": "20E 2021 LTE LATAM 64GB 6125A", + "url": "/v1/smartphones/20e-2021-lte-latam-64gb-6125a" }, { - "slug": "a9-premium-edition", - "name": "A9 Premium Edition", - "url": "/v1/smartphones/a9-premium-edition" + "slug": "20e-2021-lte-latam-64gb-6125f", + "name": "20E 2021 LTE LATAM 64GB 6125F", + "url": "/v1/smartphones/20e-2021-lte-latam-64gb-6125f" }, { - "slug": "a9-standard-edition", - "name": "A9 Standard Edition", - "url": "/v1/smartphones/a9-standard-edition" + "slug": "20l-premium-edition-dual-sim-td-lte-latam-128gb-t774b", + "name": "20L Premium Edition Dual SIM TD-LTE LATAM 128GB T774B", + "url": "/v1/smartphones/20l-premium-edition-dual-sim-td-lte-latam-128gb-t774b" }, { - "slug": "a91-2019", - "name": "A91 2019", - "url": "/v1/smartphones/a91-2019" + "slug": "20l-premium-edition-global-dual-sim-td-lte-64gb-t774h", + "name": "20L Premium Edition Global Dual SIM TD-LTE 64GB T774H", + "url": "/v1/smartphones/20l-premium-edition-global-dual-sim-td-lte-64gb-t774h" }, { - "slug": "a92s", - "name": "A92s", - "url": "/v1/smartphones/a92s" + "slug": "20l-premium-edition-td-lte-latam-128gb-t774b", + "name": "20L Premium Edition TD-LTE LATAM 128GB T774B", + "url": "/v1/smartphones/20l-premium-edition-td-lte-latam-128gb-t774b" }, { - "slug": "a93-2020", - "name": "A93 2020", - "url": "/v1/smartphones/a93-2020" + "slug": "20l-standard-edition-global-dual-sim-td-lte-128gb-t774h", + "name": "20L Standard Edition Global Dual SIM TD-LTE 128GB T774H", + "url": "/v1/smartphones/20l-standard-edition-global-dual-sim-td-lte-128gb-t774h" }, { - "slug": "a93-2021", - "name": "A93 2021", - "url": "/v1/smartphones/a93-2021" + "slug": "20l-premium-edition-dual-sim-td-lte-latam-256gb-t775b", + "name": "20L+ Premium Edition Dual SIM TD-LTE LATAM 256GB T775B", + "url": "/v1/smartphones/20l-premium-edition-dual-sim-td-lte-latam-256gb-t775b" }, { - "slug": "a93s", - "name": "A93s", - "url": "/v1/smartphones/a93s" + "slug": "20l-premium-edition-global-dual-sim-td-lte-256gb-t775h", + "name": "20L+ Premium Edition Global Dual SIM TD-LTE 256GB T775H", + "url": "/v1/smartphones/20l-premium-edition-global-dual-sim-td-lte-256gb-t775h" }, { - "slug": "a94-2021", - "name": "A94 2021", - "url": "/v1/smartphones/a94-2021" + "slug": "20l-premium-edition-td-lte-latam-256gb-t775b", + "name": "20L+ Premium Edition TD-LTE LATAM 256GB T775B", + "url": "/v1/smartphones/20l-premium-edition-td-lte-latam-256gb-t775b" }, { - "slug": "a95", - "name": "A95", - "url": "/v1/smartphones/a95" + "slug": "20s-td-lte-na-128gb-t773o", + "name": "20S TD-LTE NA 128GB T773O", + "url": "/v1/smartphones/20s-td-lte-na-128gb-t773o" }, { - "slug": "a97", - "name": "A97", - "url": "/v1/smartphones/a97" + "slug": "20y-2021-dual-sim-lte-eu-64gb-6156h", + "name": "20Y 2021 Dual SIM LTE EU 64GB 6156H", + "url": "/v1/smartphones/20y-2021-dual-sim-lte-eu-64gb-6156h" }, { - "slug": "a9x", - "name": "A9x", - "url": "/v1/smartphones/a9x" + "slug": "20y-2021-global-dual-sim-td-lte-128gb-6156d1", + "name": "20Y 2021 Global Dual SIM TD-LTE 128GB 6156D1", + "url": "/v1/smartphones/20y-2021-global-dual-sim-td-lte-128gb-6156d1" }, { - "slug": "asus-rog-phone-10-pro-edition", - "name": "ASUS ROG Phone 10 Pro Edition", - "url": "/v1/smartphones/asus-rog-phone-10-pro-edition" + "slug": "20y-2021-global-dual-sim-td-lte-64gb-6156d", + "name": "20Y 2021 Global Dual SIM TD-LTE 64GB 6156D", + "url": "/v1/smartphones/20y-2021-global-dual-sim-td-lte-64gb-6156d" }, { - "slug": "asus-rog-phone-5", - "name": "ASUS ROG Phone 5", - "url": "/v1/smartphones/asus-rog-phone-5" + "slug": "20y-2021-lte-latam-128gb-6156a1", + "name": "20Y 2021 LTE LATAM 128GB 6156A1", + "url": "/v1/smartphones/20y-2021-lte-latam-128gb-6156a1" }, { - "slug": "asus-rog-phone-6", - "name": "ASUS ROG Phone 6", - "url": "/v1/smartphones/asus-rog-phone-6" + "slug": "20y-2021-lte-latam-64gb-6156a", + "name": "20Y 2021 LTE LATAM 64GB 6156A", + "url": "/v1/smartphones/20y-2021-lte-latam-64gb-6156a" }, { - "slug": "asus-rog-phone-7", - "name": "ASUS ROG Phone 7", - "url": "/v1/smartphones/asus-rog-phone-7" + "slug": "3-2019-dual-sim-lte-emea-32gb-5053d", + "name": "3 2019 Dual SIM LTE EMEA 32GB 5053D", + "url": "/v1/smartphones/3-2019-dual-sim-lte-emea-32gb-5053d" }, { - "slug": "asus-rog-phone-8-pro", - "name": "ASUS ROG Phone 8 Pro", - "url": "/v1/smartphones/asus-rog-phone-8-pro" + "slug": "3-2019-dual-sim-lte-emea-64gb-5053k", + "name": "3 2019 Dual SIM LTE EMEA 64GB 5053K", + "url": "/v1/smartphones/3-2019-dual-sim-lte-emea-64gb-5053k" }, { - "slug": "asus-rog-phone-9", - "name": "ASUS ROG Phone 9", - "url": "/v1/smartphones/asus-rog-phone-9" + "slug": "3-2019-lte-emea-32gb-5053y", + "name": "3 2019 LTE EMEA 32GB 5053Y", + "url": "/v1/smartphones/3-2019-lte-emea-32gb-5053y" }, { - "slug": "asus-rog-phone-9-pro", - "name": "ASUS ROG Phone 9 Pro", - "url": "/v1/smartphones/asus-rog-phone-9-pro" + "slug": "3-dual-sim-lte-fp3", + "name": "3 Dual SIM LTE FP3", + "url": "/v1/smartphones/3-dual-sim-lte-fp3" }, { - "slug": "asus-zenfone-7-pro", - "name": "ASUS ZenFone 7 Pro", - "url": "/v1/smartphones/asus-zenfone-7-pro" + "slug": "3-1-plus", + "name": "3.1 Plus", + "url": "/v1/smartphones/3-1-plus" }, { - "slug": "asus-zenfone-8", - "name": "ASUS ZenFone 8", - "url": "/v1/smartphones/asus-zenfone-8" + "slug": "3-1-plus-dual-sim-lte-latam-32gb", + "name": "3.1 Plus Dual SIM LTE LATAM 32GB", + "url": "/v1/smartphones/3-1-plus-dual-sim-lte-latam-32gb" }, { - "slug": "asus-zenfone-10", - "name": "ASUS Zenfone 10", - "url": "/v1/smartphones/asus-zenfone-10" + "slug": "3-1-plus-dual-sim-td-lte-cn-32gb", + "name": "3.1 Plus Dual SIM TD-LTE CN 32GB", + "url": "/v1/smartphones/3-1-plus-dual-sim-td-lte-cn-32gb" }, { - "slug": "asus-zenfone-11-ultra", - "name": "ASUS Zenfone 11 Ultra", - "url": "/v1/smartphones/asus-zenfone-11-ultra" + "slug": "3-1-plus-dual-sim-td-lte-in-16gb", + "name": "3.1 Plus Dual SIM TD-LTE IN 16GB", + "url": "/v1/smartphones/3-1-plus-dual-sim-td-lte-in-16gb" }, { - "slug": "asus-zenfone-9", - "name": "ASUS Zenfone 9", - "url": "/v1/smartphones/asus-zenfone-9" + "slug": "3-1-plus-dual-sim-td-lte-in-32gb", + "name": "3.1 Plus Dual SIM TD-LTE IN 32GB", + "url": "/v1/smartphones/3-1-plus-dual-sim-td-lte-in-32gb" }, { - "slug": "ax5s-standard-edition", - "name": "AX5s Standard Edition", - "url": "/v1/smartphones/ax5s-standard-edition" + "slug": "3-1-plus-global-dual-sim-td-lte-32gb", + "name": "3.1 Plus Global Dual SIM TD-LTE 32GB", + "url": "/v1/smartphones/3-1-plus-global-dual-sim-td-lte-32gb" }, { - "slug": "ace", - "name": "Ace", - "url": "/v1/smartphones/ace" + "slug": "3-1-plus-global-td-lte-32gb", + "name": "3.1 Plus Global TD-LTE 32GB", + "url": "/v1/smartphones/3-1-plus-global-td-lte-32gb" }, { - "slug": "ace-2", - "name": "Ace 2", - "url": "/v1/smartphones/ace-2" + "slug": "3-1-plus-lte", + "name": "3.1 Plus LTE", + "url": "/v1/smartphones/3-1-plus-lte" }, { - "slug": "ace-pro", - "name": "Ace Pro", - "url": "/v1/smartphones/ace-pro" + "slug": "3-1-plus-lte-latam-16gb", + "name": "3.1 Plus LTE LATAM 16GB", + "url": "/v1/smartphones/3-1-plus-lte-latam-16gb" }, { - "slug": "ace-racing", - "name": "Ace Racing", - "url": "/v1/smartphones/ace-racing" + "slug": "3-1-plus-lte-a-us", + "name": "3.1 Plus LTE-A US", + "url": "/v1/smartphones/3-1-plus-lte-a-us" }, { - "slug": "ace2-2020-eva-limited-edition", - "name": "Ace2 2020 EVA Limited Edition", - "url": "/v1/smartphones/ace2-2020-eva-limited-edition" + "slug": "3-2-2019-dual-sim-td-lte-in-16gb", + "name": "3.2 2019 Dual SIM TD-LTE IN 16GB", + "url": "/v1/smartphones/3-2-2019-dual-sim-td-lte-in-16gb" }, { - "slug": "ace2-2020-premium-edition", - "name": "Ace2 2020 Premium Edition", - "url": "/v1/smartphones/ace2-2020-premium-edition" + "slug": "3-2-2019-dual-sim-td-lte-in-32gb", + "name": "3.2 2019 Dual SIM TD-LTE IN 32GB", + "url": "/v1/smartphones/3-2-2019-dual-sim-td-lte-in-32gb" }, { - "slug": "ace2-2020-standard-edition", - "name": "Ace2 2020 Standard Edition", - "url": "/v1/smartphones/ace2-2020-standard-edition" + "slug": "3-2-2019-global-dual-sim-td-lte-16gb", + "name": "3.2 2019 Global Dual SIM TD-LTE 16GB", + "url": "/v1/smartphones/3-2-2019-global-dual-sim-td-lte-16gb" }, { - "slug": "black-shark-2-pro", - "name": "Black Shark 2 Pro", - "url": "/v1/smartphones/black-shark-2-pro" + "slug": "3-2-2019-global-dual-sim-td-lte-32gb", + "name": "3.2 2019 Global Dual SIM TD-LTE 32GB", + "url": "/v1/smartphones/3-2-2019-global-dual-sim-td-lte-32gb" }, { - "slug": "black-shark-3", - "name": "Black Shark 3", - "url": "/v1/smartphones/black-shark-3" + "slug": "3-2-2019-global-dual-sim-td-lte-64gb", + "name": "3.2 2019 Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/3-2-2019-global-dual-sim-td-lte-64gb" }, { - "slug": "black-shark-3-pro", - "name": "Black Shark 3 Pro", - "url": "/v1/smartphones/black-shark-3-pro" + "slug": "3-2-2019-global-td-lte-16gb", + "name": "3.2 2019 Global TD-LTE 16GB", + "url": "/v1/smartphones/3-2-2019-global-td-lte-16gb" }, { - "slug": "black-shark-3s", - "name": "Black Shark 3S", - "url": "/v1/smartphones/black-shark-3s" + "slug": "30", + "name": "30", + "url": "/v1/smartphones/30" }, { - "slug": "black-shark-4", - "name": "Black Shark 4", - "url": "/v1/smartphones/black-shark-4" + "slug": "30-pro", + "name": "30 Pro", + "url": "/v1/smartphones/30-pro" }, { - "slug": "black-shark-4-pro", - "name": "Black Shark 4 Pro", - "url": "/v1/smartphones/black-shark-4-pro" + "slug": "30s", + "name": "30S", + "url": "/v1/smartphones/30s" }, { - "slug": "black-shark-4s", - "name": "Black Shark 4S", - "url": "/v1/smartphones/black-shark-4s" + "slug": "3l-2020-global-dual-sim-td-lte-5029d", + "name": "3L 2020 Global Dual SIM TD-LTE 5029D", + "url": "/v1/smartphones/3l-2020-global-dual-sim-td-lte-5029d" }, { - "slug": "black-shark-4s-pro", - "name": "Black Shark 4S Pro", - "url": "/v1/smartphones/black-shark-4s-pro" + "slug": "3l-2021-dual-sim-lte-eu-6056h", + "name": "3L 2021 Dual SIM LTE EU 6056H", + "url": "/v1/smartphones/3l-2021-dual-sim-lte-eu-6056h" }, { - "slug": "black-shark-5", - "name": "Black Shark 5", - "url": "/v1/smartphones/black-shark-5" + "slug": "3l-2021-global-dual-sim-td-lte-6056d", + "name": "3L 2021 Global Dual SIM TD-LTE 6056D", + "url": "/v1/smartphones/3l-2021-global-dual-sim-td-lte-6056d" }, { - "slug": "black-shark-5-pro", - "name": "Black Shark 5 Pro", - "url": "/v1/smartphones/black-shark-5-pro" + "slug": "3x-2019-dual-sim-lte-emea-128gb-5048u", + "name": "3x 2019 Dual SIM LTE EMEA 128GB 5048U", + "url": "/v1/smartphones/3x-2019-dual-sim-lte-emea-128gb-5048u" }, { - "slug": "black-shark-5-rs", - "name": "Black Shark 5 RS", - "url": "/v1/smartphones/black-shark-5-rs" + "slug": "3x-2019-dual-sim-lte-emea-5048i", + "name": "3x 2019 Dual SIM LTE EMEA 5048I", + "url": "/v1/smartphones/3x-2019-dual-sim-lte-emea-5048i" }, { - "slug": "c2-tennen", - "name": "C2 Tennen", - "url": "/v1/smartphones/c2-tennen" + "slug": "3x-2019-dual-sim-lte-emea-5048y", + "name": "3x 2019 Dual SIM LTE EMEA 5048Y", + "url": "/v1/smartphones/3x-2019-dual-sim-lte-emea-5048y" }, { - "slug": "c5-endi", - "name": "C5 Endi", - "url": "/v1/smartphones/c5-endi" + "slug": "3x-2019-lte-am-5048a", + "name": "3x 2019 LTE AM 5048A", + "url": "/v1/smartphones/3x-2019-lte-am-5048a" }, { - "slug": "c55", - "name": "C55", - "url": "/v1/smartphones/c55" + "slug": "3x-2020-global-dual-sim-td-lte-5061k", + "name": "3x 2020 Global Dual SIM TD-LTE 5061K", + "url": "/v1/smartphones/3x-2020-global-dual-sim-td-lte-5061k" }, { - "slug": "c63", - "name": "C63", - "url": "/v1/smartphones/c63" + "slug": "4-2-dual-sim-td-lte-am-32gb", + "name": "4.2 Dual SIM TD-LTE AM 32GB", + "url": "/v1/smartphones/4-2-dual-sim-td-lte-am-32gb" }, { - "slug": "c65", - "name": "C65", - "url": "/v1/smartphones/c65" + "slug": "4-2-dual-sim-td-lte-in-32gb", + "name": "4.2 Dual SIM TD-LTE IN 32GB", + "url": "/v1/smartphones/4-2-dual-sim-td-lte-in-32gb" }, { - "slug": "realme-c65", - "name": "C65", - "url": "/v1/smartphones/realme-c65" + "slug": "4-2-global-dual-sim-td-lte-16gb", + "name": "4.2 Global Dual SIM TD-LTE 16GB", + "url": "/v1/smartphones/4-2-global-dual-sim-td-lte-16gb" }, { - "slug": "c67", - "name": "C67", - "url": "/v1/smartphones/c67" + "slug": "4-2-global-dual-sim-td-lte-32gb", + "name": "4.2 Global Dual SIM TD-LTE 32GB", + "url": "/v1/smartphones/4-2-global-dual-sim-td-lte-32gb" }, { - "slug": "c75", - "name": "C75", - "url": "/v1/smartphones/c75" + "slug": "4-2-global-td-lte-32gb", + "name": "4.2 Global TD-LTE 32GB", + "url": "/v1/smartphones/4-2-global-td-lte-32gb" }, { - "slug": "cmf-phone-1", - "name": "CMF Phone 1", - "url": "/v1/smartphones/cmf-phone-1" + "slug": "4-2-td-lte-latam-32gb", + "name": "4.2 TD-LTE LATAM 32GB", + "url": "/v1/smartphones/4-2-td-lte-latam-32gb" }, { - "slug": "nothing-cmf-phone-2-pro", - "name": "CMF Phone 2 Pro", - "url": "/v1/smartphones/nothing-cmf-phone-2-pro" + "slug": "5-1-plus-2018", + "name": "5.1 Plus 2018", + "url": "/v1/smartphones/5-1-plus-2018" }, { - "slug": "camon-20", - "name": "Camon 20", - "url": "/v1/smartphones/camon-20" + "slug": "5-1-plus-2018-dual-sim-td-lte-in-32gb", + "name": "5.1 Plus 2018 Dual SIM TD-LTE IN 32GB", + "url": "/v1/smartphones/5-1-plus-2018-dual-sim-td-lte-in-32gb" }, { - "slug": "camon-20-premier", - "name": "Camon 20 Premier", - "url": "/v1/smartphones/camon-20-premier" + "slug": "5-1-plus-2018-dual-sim-td-lte-latam", + "name": "5.1 Plus 2018 Dual SIM TD-LTE LATAM", + "url": "/v1/smartphones/5-1-plus-2018-dual-sim-td-lte-latam" }, { - "slug": "camon-20-pro", - "name": "Camon 20 Pro", - "url": "/v1/smartphones/camon-20-pro" + "slug": "5-1-plus-2018-global-dual-sim-td-lte-32gb", + "name": "5.1 Plus 2018 Global Dual SIM TD-LTE 32GB", + "url": "/v1/smartphones/5-1-plus-2018-global-dual-sim-td-lte-32gb" }, { - "slug": "camon-20-pro-5g", - "name": "Camon 20 Pro 5G", - "url": "/v1/smartphones/camon-20-pro-5g" + "slug": "5-1-plus-2018-premium-edition", + "name": "5.1 Plus 2018 Premium Edition", + "url": "/v1/smartphones/5-1-plus-2018-premium-edition" }, { - "slug": "camon-20s", - "name": "Camon 20s", - "url": "/v1/smartphones/camon-20s" + "slug": "5-1-plus-2018-premium-edition-dual-sim-td-lte-in-64gb", + "name": "5.1 Plus 2018 Premium Edition Dual SIM TD-LTE IN 64GB", + "url": "/v1/smartphones/5-1-plus-2018-premium-edition-dual-sim-td-lte-in-64gb" }, { - "slug": "camon-20s-pro", - "name": "Camon 20s Pro", - "url": "/v1/smartphones/camon-20s-pro" + "slug": "5-1-plus-2018-standard-edition", + "name": "5.1 Plus 2018 Standard Edition", + "url": "/v1/smartphones/5-1-plus-2018-standard-edition" }, { - "slug": "camon-20s-pro-5g", - "name": "Camon 20s Pro 5G", - "url": "/v1/smartphones/camon-20s-pro-5g" + "slug": "5-1-plus-2018-standard-edition-dual-sim-td-lte-in-64gb", + "name": "5.1 Plus 2018 Standard Edition Dual SIM TD-LTE IN 64GB", + "url": "/v1/smartphones/5-1-plus-2018-standard-edition-dual-sim-td-lte-in-64gb" }, { - "slug": "camon-30", - "name": "Camon 30", - "url": "/v1/smartphones/camon-30" + "slug": "5-1-plus-2018-td-lte-latam", + "name": "5.1 Plus 2018 TD-LTE LATAM", + "url": "/v1/smartphones/5-1-plus-2018-td-lte-latam" }, { - "slug": "camon-30-5g", - "name": "Camon 30 5G", - "url": "/v1/smartphones/camon-30-5g" + "slug": "5-3-2020-dual-sim-td-lte-in-64gb", + "name": "5.3 2020 Dual SIM TD-LTE IN 64GB", + "url": "/v1/smartphones/5-3-2020-dual-sim-td-lte-in-64gb" }, { - "slug": "camon-30-premier", - "name": "Camon 30 Premier", - "url": "/v1/smartphones/camon-30-premier" + "slug": "5-3-2020-dual-sim-td-lte-latam-128gb", + "name": "5.3 2020 Dual SIM TD-LTE LATAM 128GB", + "url": "/v1/smartphones/5-3-2020-dual-sim-td-lte-latam-128gb" }, { - "slug": "camon-30-pro", - "name": "Camon 30 Pro", - "url": "/v1/smartphones/camon-30-pro" + "slug": "5-3-2020-global-dual-sim-td-lte-64gb", + "name": "5.3 2020 Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/5-3-2020-global-dual-sim-td-lte-64gb" }, { - "slug": "camon-30s", - "name": "Camon 30S", - "url": "/v1/smartphones/camon-30s" + "slug": "5-3-2020-global-td-lte-64gb", + "name": "5.3 2020 Global TD-LTE 64GB", + "url": "/v1/smartphones/5-3-2020-global-td-lte-64gb" }, { - "slug": "camon-30s-pro", - "name": "Camon 30S Pro", - "url": "/v1/smartphones/camon-30s-pro" + "slug": "5-3-2020-td-lte-latam-64gb", + "name": "5.3 2020 TD-LTE LATAM 64GB", + "url": "/v1/smartphones/5-3-2020-td-lte-latam-64gb" }, { - "slug": "civi", - "name": "Civi", - "url": "/v1/smartphones/civi" + "slug": "5-4-2021-dual-sim-lte-latam-64gb", + "name": "5.4 2021 Dual SIM LTE LATAM 64GB", + "url": "/v1/smartphones/5-4-2021-dual-sim-lte-latam-64gb" }, { - "slug": "civi-1s", - "name": "Civi 1s", - "url": "/v1/smartphones/civi-1s" + "slug": "5-4-2021-global-dual-sim-td-lte-64gb", + "name": "5.4 2021 Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/5-4-2021-global-dual-sim-td-lte-64gb" }, { - "slug": "civi-2", - "name": "Civi 2", - "url": "/v1/smartphones/civi-2" + "slug": "5-4-2021-global-td-lte-64gb", + "name": "5.4 2021 Global TD-LTE 64GB", + "url": "/v1/smartphones/5-4-2021-global-td-lte-64gb" }, { - "slug": "civi-3", - "name": "Civi 3", - "url": "/v1/smartphones/civi-3" + "slug": "5-4-2021-lte-latam-64gb", + "name": "5.4 2021 LTE LATAM 64GB", + "url": "/v1/smartphones/5-4-2021-lte-latam-64gb" }, { - "slug": "desire-19", - "name": "Desire 19+", - "url": "/v1/smartphones/desire-19" + "slug": "50", + "name": "50", + "url": "/v1/smartphones/50" }, { - "slug": "desire-19s", - "name": "Desire 19s", - "url": "/v1/smartphones/desire-19s" + "slug": "50-pro", + "name": "50 Pro", + "url": "/v1/smartphones/50-pro" }, { - "slug": "desire-20", - "name": "Desire 20+", - "url": "/v1/smartphones/desire-20" + "slug": "50-se", + "name": "50 SE", + "url": "/v1/smartphones/50-se" }, { - "slug": "desire-21-pro", - "name": "Desire 21 Pro", - "url": "/v1/smartphones/desire-21-pro" + "slug": "5h-2021-lte-latam-128gb-6056a", + "name": "5H 2021 LTE LATAM 128GB 6056A", + "url": "/v1/smartphones/5h-2021-lte-latam-128gb-6056a" }, { - "slug": "desire-22-pro", - "name": "Desire 22 Pro", - "url": "/v1/smartphones/desire-22-pro" + "slug": "5t-star-wars-edition", + "name": "5T Star Wars Edition", + "url": "/v1/smartphones/5t-star-wars-edition" }, { - "slug": "edge", - "name": "Edge", - "url": "/v1/smartphones/edge" + "slug": "5v-dual-sim-lte-emea", + "name": "5V Dual SIM LTE EMEA", + "url": "/v1/smartphones/5v-dual-sim-lte-emea" }, { - "slug": "edge-50", - "name": "Edge 50", - "url": "/v1/smartphones/edge-50" + "slug": "5x-2020-dual-sim-td-lte-latam-128gb-5061a", + "name": "5X 2020 Dual SIM TD-LTE LATAM 128GB 5061A", + "url": "/v1/smartphones/5x-2020-dual-sim-td-lte-latam-128gb-5061a" }, { - "slug": "edge-50-fusion", - "name": "Edge 50 Fusion", - "url": "/v1/smartphones/edge-50-fusion" + "slug": "6-2018-dual-sim-td-lte-am-32gb-6-1", + "name": "6 2018 Dual SIM TD-LTE AM 32GB / 6.1", + "url": "/v1/smartphones/6-2018-dual-sim-td-lte-am-32gb-6-1" }, { - "slug": "edge-50-lite", - "name": "Edge 50 Lite", - "url": "/v1/smartphones/edge-50-lite" + "slug": "6-2018-global-dual-sim-td-lte-32gb-6-1", + "name": "6 2018 Global Dual SIM TD-LTE 32GB / 6.1", + "url": "/v1/smartphones/6-2018-global-dual-sim-td-lte-32gb-6-1" }, { - "slug": "edge-50-neo", - "name": "Edge 50 Neo", - "url": "/v1/smartphones/edge-50-neo" + "slug": "6-2018-global-dual-sim-td-lte-64gb-6-1", + "name": "6 2018 Global Dual SIM TD-LTE 64GB / 6.1", + "url": "/v1/smartphones/6-2018-global-dual-sim-td-lte-64gb-6-1" }, { - "slug": "edge-50-pro", - "name": "Edge 50 Pro", - "url": "/v1/smartphones/edge-50-pro" + "slug": "6-dual-sim-global-td-lte-a6003-128gb", + "name": "6 Dual SIM Global TD-LTE A6003 128GB", + "url": "/v1/smartphones/6-dual-sim-global-td-lte-a6003-128gb" }, { - "slug": "edge-50-ultra", - "name": "Edge 50 Ultra", - "url": "/v1/smartphones/edge-50-ultra" + "slug": "6-dual-sim-global-td-lte-a6003-256gb", + "name": "6 Dual SIM Global TD-LTE A6003 256GB", + "url": "/v1/smartphones/6-dual-sim-global-td-lte-a6003-256gb" }, { - "slug": "enjoy-10e-premium-edition", - "name": "Enjoy 10e Premium Edition", - "url": "/v1/smartphones/enjoy-10e-premium-edition" + "slug": "6-dual-sim-global-td-lte-a6003-64gb", + "name": "6 Dual SIM Global TD-LTE A6003 64GB", + "url": "/v1/smartphones/6-dual-sim-global-td-lte-a6003-64gb" }, { - "slug": "enjoy-20-plus", - "name": "Enjoy 20 Plus", - "url": "/v1/smartphones/enjoy-20-plus" + "slug": "6-dual-sim-td-lte-apac-a6000-128gb", + "name": "6 Dual SIM TD-LTE APAC A6000 128GB", + "url": "/v1/smartphones/6-dual-sim-td-lte-apac-a6000-128gb" }, { - "slug": "enjoy-20-pro", - "name": "Enjoy 20 Pro", - "url": "/v1/smartphones/enjoy-20-pro" + "slug": "6-dual-sim-td-lte-apac-a6000-64gb", + "name": "6 Dual SIM TD-LTE APAC A6000 64GB", + "url": "/v1/smartphones/6-dual-sim-td-lte-apac-a6000-64gb" }, { - "slug": "enjoy-20e-standard-edition", - "name": "Enjoy 20e Standard Edition", - "url": "/v1/smartphones/enjoy-20e-standard-edition" + "slug": "6-1-plus-2018-global-dual-sim-td-lte", + "name": "6.1 Plus 2018 Global Dual SIM TD-LTE", + "url": "/v1/smartphones/6-1-plus-2018-global-dual-sim-td-lte" }, { - "slug": "enjoy-9e", - "name": "Enjoy 9e", - "url": "/v1/smartphones/enjoy-9e" + "slug": "6-1-plus-2018-premium-edition-sim-td-lte-in", + "name": "6.1 Plus 2018 Premium Edition SIM TD-LTE IN", + "url": "/v1/smartphones/6-1-plus-2018-premium-edition-sim-td-lte-in" }, { - "slug": "f11", - "name": "F11", - "url": "/v1/smartphones/f11" + "slug": "6-1-plus-2018-standard-edition-sim-td-lte-in", + "name": "6.1 Plus 2018 Standard Edition SIM TD-LTE IN", + "url": "/v1/smartphones/6-1-plus-2018-standard-edition-sim-td-lte-in" }, { - "slug": "f11-premium-edition", - "name": "F11 Premium Edition", - "url": "/v1/smartphones/f11-premium-edition" + "slug": "6-2-dual-sim-td-lte-in-64gb", + "name": "6.2 Dual SIM TD-LTE IN 64GB", + "url": "/v1/smartphones/6-2-dual-sim-td-lte-in-64gb" }, { - "slug": "f11-pro", - "name": "F11 Pro", - "url": "/v1/smartphones/f11-pro" + "slug": "6-2-global-dual-sim-td-lte-128gb", + "name": "6.2 Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/6-2-global-dual-sim-td-lte-128gb" }, { - "slug": "f11-pro-avengers-limited-edition", - "name": "F11 Pro Avengers Limited Edition", - "url": "/v1/smartphones/f11-pro-avengers-limited-edition" + "slug": "6-2-global-dual-sim-td-lte-64gb", + "name": "6.2 Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/6-2-global-dual-sim-td-lte-64gb" }, { - "slug": "f11-standard-edition", - "name": "F11 Standard Edition", - "url": "/v1/smartphones/f11-standard-edition" + "slug": "6-2-global-td-lte-64gb", + "name": "6.2 Global TD-LTE 64GB", + "url": "/v1/smartphones/6-2-global-td-lte-64gb" }, { - "slug": "f15-2020", - "name": "F15 2020", - "url": "/v1/smartphones/f15-2020" + "slug": "6-2-lte-a-am-64gb", + "name": "6.2 LTE-A AM 64GB", + "url": "/v1/smartphones/6-2-lte-a-am-64gb" }, { - "slug": "f17-pro-2020", - "name": "F17 Pro 2020", - "url": "/v1/smartphones/f17-pro-2020" + "slug": "60", + "name": "60", + "url": "/v1/smartphones/60" }, { - "slug": "f19-pro-2021", - "name": "F19 Pro 2021", - "url": "/v1/smartphones/f19-pro-2021" + "slug": "60-pro", + "name": "60 Pro", + "url": "/v1/smartphones/60-pro" }, { - "slug": "f19-pro", - "name": "F19 Pro+", - "url": "/v1/smartphones/f19-pro" + "slug": "60-se", + "name": "60 SE", + "url": "/v1/smartphones/60-se" }, { - "slug": "f2-pro", - "name": "F2 Pro", - "url": "/v1/smartphones/f2-pro" + "slug": "6t-mclaren-edition", + "name": "6T McLaren Edition", + "url": "/v1/smartphones/6t-mclaren-edition" }, { - "slug": "f21-pro", - "name": "F21 Pro", - "url": "/v1/smartphones/f21-pro" + "slug": "6t-mclaren-edition-dual-sim-global-td-lte-a6013-256gb", + "name": "6T McLaren Edition Dual SIM Global TD-LTE A6013 256GB", + "url": "/v1/smartphones/6t-mclaren-edition-dual-sim-global-td-lte-a6013-256gb" }, { - "slug": "f21s-pro", - "name": "F21s Pro", - "url": "/v1/smartphones/f21s-pro" + "slug": "6t-premium-edition-dual-sim-global-td-lte-a6013-128gb", + "name": "6T Premium Edition Dual SIM Global TD-LTE A6013 128GB", + "url": "/v1/smartphones/6t-premium-edition-dual-sim-global-td-lte-a6013-128gb" }, { - "slug": "f25-pro", - "name": "F25 Pro", - "url": "/v1/smartphones/f25-pro" + "slug": "6t-premium-edition-dual-sim-global-td-lte-a6013-256gb", + "name": "6T Premium Edition Dual SIM Global TD-LTE A6013 256GB", + "url": "/v1/smartphones/6t-premium-edition-dual-sim-global-td-lte-a6013-256gb" }, { - "slug": "f3", - "name": "F3", - "url": "/v1/smartphones/f3" + "slug": "6t-premium-edition-dual-sim-td-lte-cn-in-a6010-256gb", + "name": "6T Premium Edition Dual SIM TD-LTE CN IN A6010 256GB", + "url": "/v1/smartphones/6t-premium-edition-dual-sim-td-lte-cn-in-a6010-256gb" }, { - "slug": "f3-gt", - "name": "F3 GT", - "url": "/v1/smartphones/f3-gt" + "slug": "6t-standard-edition-dual-sim-global-td-lte-a6013-128gb", + "name": "6T Standard Edition Dual SIM Global TD-LTE A6013 128GB", + "url": "/v1/smartphones/6t-standard-edition-dual-sim-global-td-lte-a6013-128gb" }, { - "slug": "f4", - "name": "F4", - "url": "/v1/smartphones/f4" + "slug": "6t-standard-edition-dual-sim-td-lte-cn-in-a6010-128gb", + "name": "6T Standard Edition Dual SIM TD-LTE CN IN A6010 128GB", + "url": "/v1/smartphones/6t-standard-edition-dual-sim-td-lte-cn-in-a6010-128gb" }, { - "slug": "f4-gt", - "name": "F4 GT", - "url": "/v1/smartphones/f4-gt" + "slug": "7-lte-am-6062w", + "name": "7 LTE AM 6062W", + "url": "/v1/smartphones/7-lte-am-6062w" }, { - "slug": "oppo-f5", - "name": "F5", - "url": "/v1/smartphones/oppo-f5" + "slug": "7-plus-android-one-dual-sim-td-lte-in", + "name": "7 Plus Android One Dual SIM TD-LTE IN", + "url": "/v1/smartphones/7-plus-android-one-dual-sim-td-lte-in" }, { - "slug": "f5", - "name": "F5", - "url": "/v1/smartphones/f5" + "slug": "7-plus-android-one-global-dual-sim-lte-a", + "name": "7 Plus Android One Global Dual SIM LTE-A", + "url": "/v1/smartphones/7-plus-android-one-global-dual-sim-lte-a" }, { - "slug": "f5-pro", - "name": "F5 Pro", - "url": "/v1/smartphones/f5-pro" + "slug": "7-plus-premium-edition-dual-sim-td-lte-apac", + "name": "7 Plus Premium Edition Dual SIM TD-LTE APAC", + "url": "/v1/smartphones/7-plus-premium-edition-dual-sim-td-lte-apac" }, { - "slug": "f6", - "name": "F6", - "url": "/v1/smartphones/f6" + "slug": "7-plus-standard-edition-dual-sim-td-lte-apac", + "name": "7 Plus Standard Edition Dual SIM TD-LTE APAC", + "url": "/v1/smartphones/7-plus-standard-edition-dual-sim-td-lte-apac" }, { - "slug": "f7", - "name": "F7", - "url": "/v1/smartphones/f7" + "slug": "7-premium-edition-dual-sim-td-lte-cn-in-256gb-gm1901", + "name": "7 Premium Edition Dual SIM TD-LTE CN IN 256GB GM1901", + "url": "/v1/smartphones/7-premium-edition-dual-sim-td-lte-cn-in-256gb-gm1901" }, { - "slug": "f7-diamond-black-edition", - "name": "F7 Diamond Black Edition", - "url": "/v1/smartphones/f7-diamond-black-edition" + "slug": "7-premium-edition-global-dual-sim-td-lte-256gb-gm1903", + "name": "7 Premium Edition Global Dual SIM TD-LTE 256GB GM1903", + "url": "/v1/smartphones/7-premium-edition-global-dual-sim-td-lte-256gb-gm1903" }, { - "slug": "f7-youth-edition", - "name": "F7 Youth Edition", - "url": "/v1/smartphones/f7-youth-edition" + "slug": "7-pro-5g", + "name": "7 Pro 5G", + "url": "/v1/smartphones/7-pro-5g" }, { - "slug": "f9-premium-edition", - "name": "F9 Premium Edition", - "url": "/v1/smartphones/f9-premium-edition" + "slug": "7-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-gm1920", + "name": "7 Pro 5G Premium Edition Global Dual SIM TD-LTE 256GB GM1920", + "url": "/v1/smartphones/7-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-gm1920" }, { - "slug": "f9-pro", - "name": "F9 Pro", - "url": "/v1/smartphones/f9-pro" + "slug": "7-pro-premium-edition-dual-sim-td-lte-cn-256gb-gm1910", + "name": "7 Pro Premium Edition Dual SIM TD-LTE CN 256GB GM1910", + "url": "/v1/smartphones/7-pro-premium-edition-dual-sim-td-lte-cn-256gb-gm1910" }, { - "slug": "f9-standard-edition", - "name": "F9 Standard Edition", - "url": "/v1/smartphones/f9-standard-edition" + "slug": "7-pro-premium-edition-dual-sim-td-lte-in-256gb-gm1911", + "name": "7 Pro Premium Edition Dual SIM TD-LTE IN 256GB GM1911", + "url": "/v1/smartphones/7-pro-premium-edition-dual-sim-td-lte-in-256gb-gm1911" }, { - "slug": "find-n-2021", - "name": "Find N 2021", - "url": "/v1/smartphones/find-n-2021" + "slug": "7-pro-premium-edition-dual-sim-td-lte-us-256gb-gm1915", + "name": "7 Pro Premium Edition Dual SIM TD-LTE US 256GB GM1915", + "url": "/v1/smartphones/7-pro-premium-edition-dual-sim-td-lte-us-256gb-gm1915" }, { - "slug": "find-n2", - "name": "Find N2", - "url": "/v1/smartphones/find-n2" + "slug": "7-pro-premium-edition-dual-sim-td-lte-us-256gb-gm1917", + "name": "7 Pro Premium Edition Dual SIM TD-LTE US 256GB GM1917", + "url": "/v1/smartphones/7-pro-premium-edition-dual-sim-td-lte-us-256gb-gm1917" }, { - "slug": "find-n2-2022", - "name": "Find N2 2022", - "url": "/v1/smartphones/find-n2-2022" + "slug": "7-pro-premium-edition-global-dual-sim-td-lte-128gb-gm1913", + "name": "7 Pro Premium Edition Global Dual SIM TD-LTE 128GB GM1913", + "url": "/v1/smartphones/7-pro-premium-edition-global-dual-sim-td-lte-128gb-gm1913" }, { - "slug": "find-n2-flip", - "name": "Find N2 Flip", - "url": "/v1/smartphones/find-n2-flip" + "slug": "7-pro-premium-edition-global-dual-sim-td-lte-256gb-gm1913", + "name": "7 Pro Premium Edition Global Dual SIM TD-LTE 256GB GM1913", + "url": "/v1/smartphones/7-pro-premium-edition-global-dual-sim-td-lte-256gb-gm1913" }, { - "slug": "find-n3", - "name": "Find N3", - "url": "/v1/smartphones/find-n3" + "slug": "7-pro-standard-edition-dual-sim-td-lte-cn-128gb-gm1910", + "name": "7 Pro Standard Edition Dual SIM TD-LTE CN 128GB GM1910", + "url": "/v1/smartphones/7-pro-standard-edition-dual-sim-td-lte-cn-128gb-gm1910" }, { - "slug": "find-n3-flip", - "name": "Find N3 Flip", - "url": "/v1/smartphones/find-n3-flip" + "slug": "7-pro-standard-edition-dual-sim-td-lte-in-128gb-gm1911", + "name": "7 Pro Standard Edition Dual SIM TD-LTE IN 128GB GM1911", + "url": "/v1/smartphones/7-pro-standard-edition-dual-sim-td-lte-in-128gb-gm1911" }, { - "slug": "find-x2", - "name": "Find X2", - "url": "/v1/smartphones/find-x2" + "slug": "7-pro-top-edition-dual-sim-td-lte-cn-256gb-gm1910", + "name": "7 Pro Top Edition Dual SIM TD-LTE CN 256GB GM1910", + "url": "/v1/smartphones/7-pro-top-edition-dual-sim-td-lte-cn-256gb-gm1910" }, { - "slug": "find-x2-lite", - "name": "Find X2 Lite", - "url": "/v1/smartphones/find-x2-lite" + "slug": "7-standard-edition-dual-sim-td-lte-cn-in-128gb-gm1901", + "name": "7 Standard Edition Dual SIM TD-LTE CN IN 128GB GM1901", + "url": "/v1/smartphones/7-standard-edition-dual-sim-td-lte-cn-in-128gb-gm1901" }, { - "slug": "find-x2-pro", - "name": "Find X2 Pro", - "url": "/v1/smartphones/find-x2-pro" + "slug": "7-standard-edition-global-dual-sim-td-lte-128gb-gm1903", + "name": "7 Standard Edition Global Dual SIM TD-LTE 128GB GM1903", + "url": "/v1/smartphones/7-standard-edition-global-dual-sim-td-lte-128gb-gm1903" }, { - "slug": "find-x3-pro", - "name": "Find X3 Pro", - "url": "/v1/smartphones/find-x3-pro" + "slug": "7-top-edition-dual-sim-td-lte-cn-256gb-gm1901", + "name": "7 Top Edition Dual SIM TD-LTE CN 256GB GM1901", + "url": "/v1/smartphones/7-top-edition-dual-sim-td-lte-cn-256gb-gm1901" }, { - "slug": "find-x5", - "name": "Find X5", - "url": "/v1/smartphones/find-x5" + "slug": "7-1-dual-sim-td-lte-am-64gb", + "name": "7.1 Dual SIM TD-LTE AM 64GB", + "url": "/v1/smartphones/7-1-dual-sim-td-lte-am-64gb" }, { - "slug": "find-x5-lite", - "name": "Find X5 Lite", - "url": "/v1/smartphones/find-x5-lite" + "slug": "7-1-dual-sim-td-lte-emea-32gb", + "name": "7.1 Dual SIM TD-LTE EMEA 32GB", + "url": "/v1/smartphones/7-1-dual-sim-td-lte-emea-32gb" }, { - "slug": "find-x5-pro", - "name": "Find X5 Pro", - "url": "/v1/smartphones/find-x5-pro" + "slug": "7-1-dual-sim-td-lte-emea-64gb", + "name": "7.1 Dual SIM TD-LTE EMEA 64GB", + "url": "/v1/smartphones/7-1-dual-sim-td-lte-emea-64gb" }, { - "slug": "find-x6", - "name": "Find X6", - "url": "/v1/smartphones/find-x6" + "slug": "7-1-plus-2018-dual-sim-td-lte-am-64gb", + "name": "7.1 Plus 2018 Dual SIM TD-LTE AM 64GB", + "url": "/v1/smartphones/7-1-plus-2018-dual-sim-td-lte-am-64gb" }, { - "slug": "find-x6-pro", - "name": "Find X6 Pro", - "url": "/v1/smartphones/find-x6-pro" + "slug": "7-1-td-lte-am-64gb", + "name": "7.1 TD-LTE AM 64GB", + "url": "/v1/smartphones/7-1-td-lte-am-64gb" }, { - "slug": "find-x7", - "name": "Find X7", - "url": "/v1/smartphones/find-x7" + "slug": "7-1-td-lte-emea-32gb", + "name": "7.1 TD-LTE EMEA 32GB", + "url": "/v1/smartphones/7-1-td-lte-emea-32gb" }, { - "slug": "find-x7-ultra", - "name": "Find X7 Ultra", - "url": "/v1/smartphones/find-x7-ultra" + "slug": "7-2-dual-sim-td-lte-in-64gb", + "name": "7.2 Dual SIM TD-LTE IN 64GB", + "url": "/v1/smartphones/7-2-dual-sim-td-lte-in-64gb" }, { - "slug": "find-x8", - "name": "Find X8", - "url": "/v1/smartphones/find-x8" + "slug": "7-2-global-dual-sim-td-lte-128gb", + "name": "7.2 Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/7-2-global-dual-sim-td-lte-128gb" }, { - "slug": "find-x8-pro", - "name": "Find X8 Pro", - "url": "/v1/smartphones/find-x8-pro" + "slug": "7-2-global-dual-sim-td-lte-64gb", + "name": "7.2 Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/7-2-global-dual-sim-td-lte-64gb" }, { - "slug": "g-power-3rd-gen-2022", - "name": "G Power 3rd gen 2022", - "url": "/v1/smartphones/g-power-3rd-gen-2022" + "slug": "7-2-global-td-lte-64gb", + "name": "7.2 Global TD-LTE 64GB", + "url": "/v1/smartphones/7-2-global-td-lte-64gb" }, { - "slug": "g10-2021", - "name": "G10 2021", - "url": "/v1/smartphones/g10-2021" + "slug": "7-2-lte-a-am-128gb", + "name": "7.2 LTE-A AM 128GB", + "url": "/v1/smartphones/7-2-lte-a-am-128gb" }, { - "slug": "g10-2021-lte", - "name": "G10 2021 LTE", - "url": "/v1/smartphones/g10-2021-lte" + "slug": "70", + "name": "70", + "url": "/v1/smartphones/70" }, { - "slug": "g11-2022", - "name": "G11 2022", - "url": "/v1/smartphones/g11-2022" + "slug": "70-pro", + "name": "70 Pro+", + "url": "/v1/smartphones/70-pro" }, { - "slug": "g11-2022-nfc", - "name": "G11 2022 NFC", - "url": "/v1/smartphones/g11-2022-nfc" + "slug": "7t", + "name": "7T", + "url": "/v1/smartphones/7t" }, { - "slug": "g11-plus-2022-premium-edition", - "name": "G11 Plus 2022 Premium Edition", - "url": "/v1/smartphones/g11-plus-2022-premium-edition" + "slug": "7t-dual-sim-td-lte-na-128gb-hd1905", + "name": "7T Dual SIM TD-LTE NA 128GB HD1905", + "url": "/v1/smartphones/7t-dual-sim-td-lte-na-128gb-hd1905" }, { - "slug": "g11-plus-2022-standard-edition", - "name": "G11 Plus 2022 Standard Edition", - "url": "/v1/smartphones/g11-plus-2022-standard-edition" + "slug": "7t-pro", + "name": "7T Pro", + "url": "/v1/smartphones/7t-pro" }, { - "slug": "g21", - "name": "G21", - "url": "/v1/smartphones/g21" + "slug": "7t-pro-5g-mclaren-edition", + "name": "7T Pro 5G McLaren Edition", + "url": "/v1/smartphones/7t-pro-5g-mclaren-edition" }, { - "slug": "g21-2022-nfc-premium-edition", - "name": "G21 2022 NFC Premium Edition", - "url": "/v1/smartphones/g21-2022-nfc-premium-edition" + "slug": "7t-pro-5g-mclaren-edition-global-dual-sim-td-lte-256gb-hd1925", + "name": "7T Pro 5G McLaren Edition Global Dual SIM TD-LTE 256GB HD1925", + "url": "/v1/smartphones/7t-pro-5g-mclaren-edition-global-dual-sim-td-lte-256gb-hd1925" }, { - "slug": "g21-2022-nfc-standard-edition", - "name": "G21 2022 NFC Standard Edition", - "url": "/v1/smartphones/g21-2022-nfc-standard-edition" + "slug": "7t-pro-mclaren-edition", + "name": "7T Pro McLaren Edition", + "url": "/v1/smartphones/7t-pro-mclaren-edition" }, { - "slug": "g21-2022-standard-edition", - "name": "G21 2022 Standard Edition", - "url": "/v1/smartphones/g21-2022-standard-edition" + "slug": "7t-pro-mclaren-edition-dual-sim-td-lte-cn-256gb-hd1910", + "name": "7T Pro McLaren Edition Dual SIM TD-LTE CN 256GB HD1910", + "url": "/v1/smartphones/7t-pro-mclaren-edition-dual-sim-td-lte-cn-256gb-hd1910" }, { - "slug": "g400", - "name": "G400", - "url": "/v1/smartphones/g400" + "slug": "7t-pro-mclaren-edition-global-dual-sim-td-lte-256gb-hd1913", + "name": "7T Pro McLaren Edition Global Dual SIM TD-LTE 256GB HD1913", + "url": "/v1/smartphones/7t-pro-mclaren-edition-global-dual-sim-td-lte-256gb-hd1913" }, { - "slug": "g42-5g", - "name": "G42 5G", - "url": "/v1/smartphones/g42-5g" + "slug": "7t-pro-standard-edition", + "name": "7T Pro Standard Edition", + "url": "/v1/smartphones/7t-pro-standard-edition" }, { - "slug": "g50-2021", - "name": "G50 2021", - "url": "/v1/smartphones/g50-2021" + "slug": "7t-pro-standard-edition-dual-sim-td-lte-cn-256gb-hd1910", + "name": "7T Pro Standard Edition Dual SIM TD-LTE CN 256GB HD1910", + "url": "/v1/smartphones/7t-pro-standard-edition-dual-sim-td-lte-cn-256gb-hd1910" }, { - "slug": "g60-2022", - "name": "G60 2022", - "url": "/v1/smartphones/g60-2022" + "slug": "7t-pro-standard-edition-global-dual-sim-td-lte-256gb-hd1913", + "name": "7T Pro Standard Edition Global Dual SIM TD-LTE 256GB HD1913", + "url": "/v1/smartphones/7t-pro-standard-edition-global-dual-sim-td-lte-256gb-hd1913" }, { - "slug": "g8-power-lite", - "name": "G8 Power Lite", - "url": "/v1/smartphones/g8-power-lite" + "slug": "7t-standard-edition", + "name": "7T Standard Edition", + "url": "/v1/smartphones/7t-standard-edition" }, { - "slug": "g84-5g", - "name": "G84 5G", - "url": "/v1/smartphones/g84-5g" + "slug": "7t-standard-edition-dual-sim-td-lte-cn-256gb-hd1900", + "name": "7T Standard Edition Dual SIM TD-LTE CN 256GB HD1900", + "url": "/v1/smartphones/7t-standard-edition-dual-sim-td-lte-cn-256gb-hd1900" }, { - "slug": "gt-10-pro", - "name": "GT 10 Pro", - "url": "/v1/smartphones/gt-10-pro" + "slug": "7t-standard-edition-dual-sim-td-lte-cn-in-128gb-hd1901", + "name": "7T Standard Edition Dual SIM TD-LTE CN IN 128GB HD1901", + "url": "/v1/smartphones/7t-standard-edition-dual-sim-td-lte-cn-in-128gb-hd1901" }, { - "slug": "gt-20-pro", - "name": "GT 20 Pro", - "url": "/v1/smartphones/gt-20-pro" + "slug": "7t-standard-edition-dual-sim-td-lte-cn-in-256gb-hd1901", + "name": "7T Standard Edition Dual SIM TD-LTE CN IN 256GB HD1901", + "url": "/v1/smartphones/7t-standard-edition-dual-sim-td-lte-cn-in-256gb-hd1901" }, { - "slug": "gt-6", - "name": "GT 6", - "url": "/v1/smartphones/gt-6" + "slug": "7t-standard-edition-dual-sim-td-lte-eu-128gb-hd1903", + "name": "7T Standard Edition Dual SIM TD-LTE EU 128GB HD1903", + "url": "/v1/smartphones/7t-standard-edition-dual-sim-td-lte-eu-128gb-hd1903" }, { - "slug": "gt-6t", - "name": "GT 6T", - "url": "/v1/smartphones/gt-6t" + "slug": "8", + "name": "8", + "url": "/v1/smartphones/8" }, { - "slug": "gt-7", - "name": "GT 7", - "url": "/v1/smartphones/gt-7" + "slug": "8-5g-premium-edition-dual-sim-td-lte-cn-256gb-in2010", + "name": "8 5G Premium Edition Dual SIM TD-LTE CN 256GB IN2010", + "url": "/v1/smartphones/8-5g-premium-edition-dual-sim-td-lte-cn-256gb-in2010" }, { - "slug": "gt-7-pro", - "name": "GT 7 Pro", - "url": "/v1/smartphones/gt-7-pro" + "slug": "8-5g-premium-edition-dual-sim-td-lte-in-256gb-in2011", + "name": "8 5G Premium Edition Dual SIM TD-LTE IN 256GB IN2011", + "url": "/v1/smartphones/8-5g-premium-edition-dual-sim-td-lte-in-256gb-in2011" }, { - "slug": "galaxy-a04", - "name": "Galaxy A04", - "url": "/v1/smartphones/galaxy-a04" + "slug": "8-5g-premium-edition-dual-sim-td-lte-na-256gb-in2015", + "name": "8 5G Premium Edition Dual SIM TD-LTE NA 256GB IN2015", + "url": "/v1/smartphones/8-5g-premium-edition-dual-sim-td-lte-na-256gb-in2015" }, { - "slug": "galaxy-a05", - "name": "Galaxy A05", - "url": "/v1/smartphones/galaxy-a05" + "slug": "8-5g-premium-edition-global-dual-sim-td-lte-256gb-in2013", + "name": "8 5G Premium Edition Global Dual SIM TD-LTE 256GB IN2013", + "url": "/v1/smartphones/8-5g-premium-edition-global-dual-sim-td-lte-256gb-in2013" }, { - "slug": "galaxy-a06", - "name": "Galaxy A06", - "url": "/v1/smartphones/galaxy-a06" + "slug": "8-5g-standard-edition-dual-sim-td-lte-cn-128gb-in2010", + "name": "8 5G Standard Edition Dual SIM TD-LTE CN 128GB IN2010", + "url": "/v1/smartphones/8-5g-standard-edition-dual-sim-td-lte-cn-128gb-in2010" }, { - "slug": "galaxy-a12", - "name": "Galaxy A12", - "url": "/v1/smartphones/galaxy-a12" + "slug": "8-5g-standard-edition-dual-sim-td-lte-in-128gb-in2011", + "name": "8 5G Standard Edition Dual SIM TD-LTE IN 128GB IN2011", + "url": "/v1/smartphones/8-5g-standard-edition-dual-sim-td-lte-in-128gb-in2011" }, { - "slug": "galaxy-a14", - "name": "Galaxy A14", - "url": "/v1/smartphones/galaxy-a14" + "slug": "8-5g-standard-edition-dual-sim-td-lte-na-128gb-in2015", + "name": "8 5G Standard Edition Dual SIM TD-LTE NA 128GB IN2015", + "url": "/v1/smartphones/8-5g-standard-edition-dual-sim-td-lte-na-128gb-in2015" }, { - "slug": "galaxy-a15", - "name": "Galaxy A15 5G", - "url": "/v1/smartphones/galaxy-a15" + "slug": "8-5g-standard-edition-global-dual-sim-td-lte-128gb-in2013", + "name": "8 5G Standard Edition Global Dual SIM TD-LTE 128GB IN2013", + "url": "/v1/smartphones/8-5g-standard-edition-global-dual-sim-td-lte-128gb-in2013" }, { - "slug": "galaxy-a16", - "name": "Galaxy A16 5G", - "url": "/v1/smartphones/galaxy-a16" + "slug": "8-dual-sim-td-lte-am", + "name": "8 Dual SIM TD-LTE AM", + "url": "/v1/smartphones/8-dual-sim-td-lte-am" }, { - "slug": "galaxy-a24", - "name": "Galaxy A24", - "url": "/v1/smartphones/galaxy-a24" + "slug": "8-pro", + "name": "8 Pro", + "url": "/v1/smartphones/8-pro" }, { - "slug": "galaxy-a26", - "name": "Galaxy A26 5G", - "url": "/v1/smartphones/galaxy-a26" + "slug": "8-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-in2020", + "name": "8 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB IN2020", + "url": "/v1/smartphones/8-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-in2020" }, { - "slug": "galaxy-a34", - "name": "Galaxy A34", - "url": "/v1/smartphones/galaxy-a34" + "slug": "8-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-in2021", + "name": "8 Pro 5G Premium Edition Dual SIM TD-LTE IN 128GB IN2021", + "url": "/v1/smartphones/8-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-in2021" }, { - "slug": "galaxy-a35", - "name": "Galaxy A35 5G", - "url": "/v1/smartphones/galaxy-a35" + "slug": "8-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-in2021", + "name": "8 Pro 5G Premium Edition Dual SIM TD-LTE IN 256GB IN2021", + "url": "/v1/smartphones/8-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-in2021" }, { - "slug": "galaxy-a36", - "name": "Galaxy A36", - "url": "/v1/smartphones/galaxy-a36" + "slug": "8-pro-5g-premium-edition-dual-sim-td-lte-na-256gb-in2025", + "name": "8 Pro 5G Premium Edition Dual SIM TD-LTE NA 256GB IN2025", + "url": "/v1/smartphones/8-pro-5g-premium-edition-dual-sim-td-lte-na-256gb-in2025" }, { - "slug": "galaxy-a37", - "name": "Galaxy A37 5G", - "url": "/v1/smartphones/galaxy-a37" + "slug": "8-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-in2023", + "name": "8 Pro 5G Premium Edition Global Dual SIM TD-LTE 256GB IN2023", + "url": "/v1/smartphones/8-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-in2023" }, { - "slug": "galaxy-a50", - "name": "Galaxy A50", - "url": "/v1/smartphones/galaxy-a50" + "slug": "8-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-in2020", + "name": "8 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB IN2020", + "url": "/v1/smartphones/8-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-in2020" }, { - "slug": "galaxy-a51", - "name": "Galaxy A51", - "url": "/v1/smartphones/galaxy-a51" + "slug": "8-pro-5g-standard-edition-dual-sim-td-lte-na-128gb-in2025", + "name": "8 Pro 5G Standard Edition Dual SIM TD-LTE NA 128GB IN2025", + "url": "/v1/smartphones/8-pro-5g-standard-edition-dual-sim-td-lte-na-128gb-in2025" }, { - "slug": "galaxy-a52", - "name": "Galaxy A52 5G", - "url": "/v1/smartphones/galaxy-a52" + "slug": "8-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-in2023", + "name": "8 Pro 5G Standard Edition Global Dual SIM TD-LTE 128GB IN2023", + "url": "/v1/smartphones/8-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-in2023" }, { - "slug": "galaxy-a53", - "name": "Galaxy A53", - "url": "/v1/smartphones/galaxy-a53" + "slug": "8-v", + "name": "8 V", + "url": "/v1/smartphones/8-v" }, { - "slug": "galaxy-a54", - "name": "Galaxy A54 5G", - "url": "/v1/smartphones/galaxy-a54" + "slug": "8-v-5g-uw-td-lte-us", + "name": "8 V 5G UW TD-LTE US", + "url": "/v1/smartphones/8-v-5g-uw-td-lte-us" }, { - "slug": "galaxy-a55", - "name": "Galaxy A55 5G", - "url": "/v1/smartphones/galaxy-a55" + "slug": "8-1-premium-edition-global-dual-sim-td-lte-64gb", + "name": "8.1 Premium Edition Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/8-1-premium-edition-global-dual-sim-td-lte-64gb" }, { - "slug": "galaxy-a56", - "name": "Galaxy A56", - "url": "/v1/smartphones/galaxy-a56" + "slug": "8-1-standard-edition-global-dual-sim-td-lte-64gb", + "name": "8.1 Standard Edition Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/8-1-standard-edition-global-dual-sim-td-lte-64gb" }, { - "slug": "galaxy-a57", - "name": "Galaxy A57 5G", - "url": "/v1/smartphones/galaxy-a57" + "slug": "8-3-2020", + "name": "8.3 2020", + "url": "/v1/smartphones/8-3-2020" }, { - "slug": "galaxy-a71", - "name": "Galaxy A71", - "url": "/v1/smartphones/galaxy-a71" + "slug": "8-3-2020-5g-premium-edition-global-dual-sim-td-lte-128gb", + "name": "8.3 2020 5G Premium Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/8-3-2020-5g-premium-edition-global-dual-sim-td-lte-128gb" }, { - "slug": "galaxy-a72", - "name": "Galaxy A72", - "url": "/v1/smartphones/galaxy-a72" + "slug": "8-3-2020-5g-standard-edition-global-dual-sim-td-lte-64gb", + "name": "8.3 2020 5G Standard Edition Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/8-3-2020-5g-standard-edition-global-dual-sim-td-lte-64gb" }, { - "slug": "galaxy-a73", - "name": "Galaxy A73", - "url": "/v1/smartphones/galaxy-a73" + "slug": "8-3-2020-5g-standard-edition-global-td-lte-64gb", + "name": "8.3 2020 5G Standard Edition Global TD-LTE 64GB", + "url": "/v1/smartphones/8-3-2020-5g-standard-edition-global-td-lte-64gb" }, { - "slug": "galaxy-a80", - "name": "Galaxy A80", - "url": "/v1/smartphones/galaxy-a80" + "slug": "80-pro", + "name": "80 Pro", + "url": "/v1/smartphones/80-pro" }, { - "slug": "galaxy-f14", - "name": "Galaxy F14", - "url": "/v1/smartphones/galaxy-f14" + "slug": "80-se", + "name": "80 SE", + "url": "/v1/smartphones/80-se" }, { - "slug": "galaxy-f34", - "name": "Galaxy F34", - "url": "/v1/smartphones/galaxy-f34" + "slug": "8t", + "name": "8T", + "url": "/v1/smartphones/8t" }, { - "slug": "galaxy-f54", - "name": "Galaxy F54", - "url": "/v1/smartphones/galaxy-f54" + "slug": "8t-5g-premium-edition-dual-sim-td-lte-cn-256gb-kb2000", + "name": "8T 5G Premium Edition Dual SIM TD-LTE CN 256GB KB2000", + "url": "/v1/smartphones/8t-5g-premium-edition-dual-sim-td-lte-cn-256gb-kb2000" }, { - "slug": "galaxy-fold", - "name": "Galaxy Fold", - "url": "/v1/smartphones/galaxy-fold" + "slug": "8t-5g-premium-edition-dual-sim-td-lte-in-256gb-kb2001", + "name": "8T 5G Premium Edition Dual SIM TD-LTE IN 256GB KB2001", + "url": "/v1/smartphones/8t-5g-premium-edition-dual-sim-td-lte-in-256gb-kb2001" }, { - "slug": "galaxy-m04", - "name": "Galaxy M04", - "url": "/v1/smartphones/galaxy-m04" + "slug": "8t-5g-premium-edition-dual-sim-td-lte-na-256gb-kb2005", + "name": "8T 5G Premium Edition Dual SIM TD-LTE NA 256GB KB2005", + "url": "/v1/smartphones/8t-5g-premium-edition-dual-sim-td-lte-na-256gb-kb2005" }, { - "slug": "galaxy-m14", - "name": "Galaxy M14", - "url": "/v1/smartphones/galaxy-m14" + "slug": "8t-5g-premium-edition-global-dual-sim-td-lte-256gb-kb2003", + "name": "8T 5G Premium Edition Global Dual SIM TD-LTE 256GB KB2003", + "url": "/v1/smartphones/8t-5g-premium-edition-global-dual-sim-td-lte-256gb-kb2003" }, { - "slug": "galaxy-m34", - "name": "Galaxy M34", - "url": "/v1/smartphones/galaxy-m34" + "slug": "8t-5g-standard-edition-dual-sim-td-lte-cn-128gb-kb2000", + "name": "8T 5G Standard Edition Dual SIM TD-LTE CN 128GB KB2000", + "url": "/v1/smartphones/8t-5g-standard-edition-dual-sim-td-lte-cn-128gb-kb2000" }, { - "slug": "galaxy-m54", - "name": "Galaxy M54", - "url": "/v1/smartphones/galaxy-m54" + "slug": "8t-5g-standard-edition-dual-sim-td-lte-in-128gb-kb2001", + "name": "8T 5G Standard Edition Dual SIM TD-LTE IN 128GB KB2001", + "url": "/v1/smartphones/8t-5g-standard-edition-dual-sim-td-lte-in-128gb-kb2001" }, { - "slug": "galaxy-note", - "name": "Galaxy Note", - "url": "/v1/smartphones/galaxy-note" + "slug": "8t-5g-standard-edition-dual-sim-td-lte-na-128gb-kb2005", + "name": "8T 5G Standard Edition Dual SIM TD-LTE NA 128GB KB2005", + "url": "/v1/smartphones/8t-5g-standard-edition-dual-sim-td-lte-na-128gb-kb2005" }, { - "slug": "galaxy-note-10", - "name": "Galaxy Note 10", - "url": "/v1/smartphones/galaxy-note-10" + "slug": "8t-5g-standard-edition-global-dual-sim-td-lte-128gb-kb2003", + "name": "8T 5G Standard Edition Global Dual SIM TD-LTE 128GB KB2003", + "url": "/v1/smartphones/8t-5g-standard-edition-global-dual-sim-td-lte-128gb-kb2003" }, { - "slug": "galaxy-note-10-plus", - "name": "Galaxy Note 10+", - "url": "/v1/smartphones/galaxy-note-10-plus" + "slug": "8t-cyberpunk-2077-edition", + "name": "8T Cyberpunk 2077 Edition", + "url": "/v1/smartphones/8t-cyberpunk-2077-edition" }, { - "slug": "galaxy-note-20", - "name": "Galaxy Note 20", - "url": "/v1/smartphones/galaxy-note-20" + "slug": "8t-5g-premium-edition-dual-sim-td-lte-us-256gb-kb2007", + "name": "8T+ 5G Premium Edition Dual SIM TD-LTE US 256GB KB2007", + "url": "/v1/smartphones/8t-5g-premium-edition-dual-sim-td-lte-us-256gb-kb2007" }, { - "slug": "galaxy-note-20-ultra", - "name": "Galaxy Note 20 Ultra", - "url": "/v1/smartphones/galaxy-note-20-ultra" + "slug": "9", + "name": "9", + "url": "/v1/smartphones/9" }, { - "slug": "galaxy-note-3", - "name": "Galaxy Note 3", - "url": "/v1/smartphones/galaxy-note-3" + "slug": "9-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2110", + "name": "9 5G Premium Edition Dual SIM TD-LTE CN 256GB LE2110", + "url": "/v1/smartphones/9-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2110" }, { - "slug": "galaxy-note-4", - "name": "Galaxy Note 4", - "url": "/v1/smartphones/galaxy-note-4" + "slug": "9-5g-premium-edition-dual-sim-td-lte-in-256gb-le2111", + "name": "9 5G Premium Edition Dual SIM TD-LTE IN 256GB LE2111", + "url": "/v1/smartphones/9-5g-premium-edition-dual-sim-td-lte-in-256gb-le2111" }, { - "slug": "galaxy-note-8", - "name": "Galaxy Note 8", - "url": "/v1/smartphones/galaxy-note-8" + "slug": "9-5g-premium-edition-global-dual-sim-td-lte-256gb-le2113", + "name": "9 5G Premium Edition Global Dual SIM TD-LTE 256GB LE2113", + "url": "/v1/smartphones/9-5g-premium-edition-global-dual-sim-td-lte-256gb-le2113" }, { - "slug": "galaxy-note-9", - "name": "Galaxy Note 9", - "url": "/v1/smartphones/galaxy-note-9" + "slug": "9-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2110", + "name": "9 5G Standard Edition Dual SIM TD-LTE CN 128GB LE2110", + "url": "/v1/smartphones/9-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2110" }, { - "slug": "galaxy-note-2", - "name": "Galaxy Note II", - "url": "/v1/smartphones/galaxy-note-2" + "slug": "9-5g-standard-edition-dual-sim-td-lte-in-128gb-le2111", + "name": "9 5G Standard Edition Dual SIM TD-LTE IN 128GB LE2111", + "url": "/v1/smartphones/9-5g-standard-edition-dual-sim-td-lte-in-128gb-le2111" }, { - "slug": "galaxy-s2", - "name": "Galaxy S II", - "url": "/v1/smartphones/galaxy-s2" + "slug": "9-5g-standard-edition-global-dual-sim-td-lte-128gb-le2113", + "name": "9 5G Standard Edition Global Dual SIM TD-LTE 128GB LE2113", + "url": "/v1/smartphones/9-5g-standard-edition-global-dual-sim-td-lte-128gb-le2113" }, { - "slug": "galaxy-s3", - "name": "Galaxy S III", - "url": "/v1/smartphones/galaxy-s3" + "slug": "9-5g-standard-edition-td-lte-na-128gb-le2115", + "name": "9 5G Standard Edition TD-LTE NA 128GB LE2115", + "url": "/v1/smartphones/9-5g-standard-edition-td-lte-na-128gb-le2115" }, { - "slug": "galaxy-s10", - "name": "Galaxy S10", - "url": "/v1/smartphones/galaxy-s10" + "slug": "9-5g-standard-edition-td-lte-us-128gb-le2117", + "name": "9 5G Standard Edition TD-LTE US 128GB LE2117", + "url": "/v1/smartphones/9-5g-standard-edition-td-lte-us-128gb-le2117" }, { - "slug": "galaxy-s10-plus", - "name": "Galaxy S10+", - "url": "/v1/smartphones/galaxy-s10-plus" + "slug": "9-pro", + "name": "9 Pro", + "url": "/v1/smartphones/9-pro" }, { - "slug": "galaxy-s10e", - "name": "Galaxy S10e", - "url": "/v1/smartphones/galaxy-s10e" + "slug": "9-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2120", + "name": "9 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB LE2120", + "url": "/v1/smartphones/9-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2120" }, { - "slug": "galaxy-s20", - "name": "Galaxy S20", - "url": "/v1/smartphones/galaxy-s20" + "slug": "9-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-le2121", + "name": "9 Pro 5G Premium Edition Dual SIM TD-LTE IN 256GB LE2121", + "url": "/v1/smartphones/9-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-le2121" }, { - "slug": "galaxy-s20-fe", - "name": "Galaxy S20 FE", - "url": "/v1/smartphones/galaxy-s20-fe" + "slug": "9-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-le2123", + "name": "9 Pro 5G Premium Edition Global Dual SIM TD-LTE 256GB LE2123", + "url": "/v1/smartphones/9-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-le2123" }, { - "slug": "galaxy-s20-ultra", - "name": "Galaxy S20 Ultra", - "url": "/v1/smartphones/galaxy-s20-ultra" + "slug": "9-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2120", + "name": "9 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB LE2120", + "url": "/v1/smartphones/9-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2120" }, { - "slug": "galaxy-s20-plus", - "name": "Galaxy S20+", - "url": "/v1/smartphones/galaxy-s20-plus" + "slug": "9-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-le2120", + "name": "9 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB LE2120", + "url": "/v1/smartphones/9-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-le2120" }, { - "slug": "galaxy-s21", - "name": "Galaxy S21 5G", - "url": "/v1/smartphones/galaxy-s21" + "slug": "9-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-le2121", + "name": "9 Pro 5G Standard Edition Dual SIM TD-LTE IN 128GB LE2121", + "url": "/v1/smartphones/9-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-le2121" }, { - "slug": "galaxy-s21-fe", - "name": "Galaxy S21 FE", - "url": "/v1/smartphones/galaxy-s21-fe" + "slug": "9-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-le2123", + "name": "9 Pro 5G Standard Edition Global Dual SIM TD-LTE 128GB LE2123", + "url": "/v1/smartphones/9-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-le2123" }, { - "slug": "galaxy-s21-ultra", - "name": "Galaxy S21 Ultra", - "url": "/v1/smartphones/galaxy-s21-ultra" + "slug": "9-pro-5g-uw-td-lte-na-256gb-le2125", + "name": "9 Pro 5G UW TD-LTE NA 256GB LE2125", + "url": "/v1/smartphones/9-pro-5g-uw-td-lte-na-256gb-le2125" }, { - "slug": "galaxy-s21-plus", - "name": "Galaxy S21+", - "url": "/v1/smartphones/galaxy-s21-plus" + "slug": "9-pro-5g-uw-td-lte-us-256gb-le2127", + "name": "9 Pro 5G UW TD-LTE US 256GB LE2127", + "url": "/v1/smartphones/9-pro-5g-uw-td-lte-us-256gb-le2127" }, { - "slug": "galaxy-s22", - "name": "Galaxy S22", - "url": "/v1/smartphones/galaxy-s22" + "slug": "9-pureview-dual-sim-td-lte-cn", + "name": "9 PureView Dual SIM TD-LTE CN", + "url": "/v1/smartphones/9-pureview-dual-sim-td-lte-cn" }, { - "slug": "galaxy-s22-ultra", - "name": "Galaxy S22 Ultra", - "url": "/v1/smartphones/galaxy-s22-ultra" + "slug": "9-pureview-global-dual-sim-td-lte", + "name": "9 PureView Global Dual SIM TD-LTE", + "url": "/v1/smartphones/9-pureview-global-dual-sim-td-lte" }, { - "slug": "galaxy-s22-plus", - "name": "Galaxy S22+", - "url": "/v1/smartphones/galaxy-s22-plus" + "slug": "9-pureview-td-lte-na", + "name": "9 PureView TD-LTE NA", + "url": "/v1/smartphones/9-pureview-td-lte-na" }, { - "slug": "galaxy-s23", - "name": "Galaxy S23", - "url": "/v1/smartphones/galaxy-s23" + "slug": "90", + "name": "90", + "url": "/v1/smartphones/90" }, { - "slug": "galaxy-s23-fe", - "name": "Galaxy S23 FE", - "url": "/v1/smartphones/galaxy-s23-fe" + "slug": "90-pro", + "name": "90 Pro", + "url": "/v1/smartphones/90-pro" }, { - "slug": "galaxy-s23-ultra", - "name": "Galaxy S23 Ultra", - "url": "/v1/smartphones/galaxy-s23-ultra" + "slug": "90-se", + "name": "90 SE", + "url": "/v1/smartphones/90-se" }, { - "slug": "galaxy-s24", - "name": "Galaxy S24", - "url": "/v1/smartphones/galaxy-s24" + "slug": "9r", + "name": "9R", + "url": "/v1/smartphones/9r" }, { - "slug": "galaxy-s24-fe", - "name": "Galaxy S24 FE", - "url": "/v1/smartphones/galaxy-s24-fe" + "slug": "9r-5g", + "name": "9R 5G", + "url": "/v1/smartphones/9r-5g" }, { - "slug": "galaxy-s24-ultra", - "name": "Galaxy S24 Ultra", - "url": "/v1/smartphones/galaxy-s24-ultra" + "slug": "9r-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2100", + "name": "9R 5G Premium Edition Dual SIM TD-LTE CN 256GB LE2100", + "url": "/v1/smartphones/9r-5g-premium-edition-dual-sim-td-lte-cn-256gb-le2100" }, { - "slug": "galaxy-s24-plus", - "name": "Galaxy S24+", - "url": "/v1/smartphones/galaxy-s24-plus" + "slug": "9r-5g-premium-edition-dual-sim-td-lte-in-256gb-le2101", + "name": "9R 5G Premium Edition Dual SIM TD-LTE IN 256GB LE2101", + "url": "/v1/smartphones/9r-5g-premium-edition-dual-sim-td-lte-in-256gb-le2101" }, { - "slug": "galaxy-s25", - "name": "Galaxy S25", - "url": "/v1/smartphones/galaxy-s25" + "slug": "9r-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2100", + "name": "9R 5G Standard Edition Dual SIM TD-LTE CN 128GB LE2100", + "url": "/v1/smartphones/9r-5g-standard-edition-dual-sim-td-lte-cn-128gb-le2100" }, { - "slug": "galaxy-s25-edge", - "name": "Galaxy S25 Edge", - "url": "/v1/smartphones/galaxy-s25-edge" + "slug": "9r-5g-standard-edition-dual-sim-td-lte-cn-256gb-le2100", + "name": "9R 5G Standard Edition Dual SIM TD-LTE CN 256GB LE2100", + "url": "/v1/smartphones/9r-5g-standard-edition-dual-sim-td-lte-cn-256gb-le2100" }, { - "slug": "galaxy-s25-fe", - "name": "Galaxy S25 FE", - "url": "/v1/smartphones/galaxy-s25-fe" + "slug": "9r-5g-standard-edition-dual-sim-td-lte-in-128gb-le2101", + "name": "9R 5G Standard Edition Dual SIM TD-LTE IN 128GB LE2101", + "url": "/v1/smartphones/9r-5g-standard-edition-dual-sim-td-lte-in-128gb-le2101" }, { - "slug": "galaxy-s25-ultra", - "name": "Galaxy S25 Ultra", - "url": "/v1/smartphones/galaxy-s25-ultra" + "slug": "9rt", + "name": "9RT", + "url": "/v1/smartphones/9rt" }, { - "slug": "galaxy-s25-plus", - "name": "Galaxy S25+", - "url": "/v1/smartphones/galaxy-s25-plus" + "slug": "9rt-5g-premium-edition-dual-sim-td-lte-cn-256gb-mt2110", + "name": "9RT 5G Premium Edition Dual SIM TD-LTE CN 256GB MT2110", + "url": "/v1/smartphones/9rt-5g-premium-edition-dual-sim-td-lte-cn-256gb-mt2110" }, { - "slug": "galaxy-s26", - "name": "Galaxy S26", - "url": "/v1/smartphones/galaxy-s26" + "slug": "9rt-5g-premium-edition-dual-sim-td-lte-in-256gb-mt2111", + "name": "9RT 5G Premium Edition Dual SIM TD-LTE IN 256GB MT2111", + "url": "/v1/smartphones/9rt-5g-premium-edition-dual-sim-td-lte-in-256gb-mt2111" }, { - "slug": "galaxy-s26-ultra", - "name": "Galaxy S26 Ultra", - "url": "/v1/smartphones/galaxy-s26-ultra" + "slug": "9rt-5g-standard-edition-dual-sim-td-lte-cn-128gb-mt2110", + "name": "9RT 5G Standard Edition Dual SIM TD-LTE CN 128GB MT2110", + "url": "/v1/smartphones/9rt-5g-standard-edition-dual-sim-td-lte-cn-128gb-mt2110" }, { - "slug": "galaxy-s26-plus", - "name": "Galaxy S26+", - "url": "/v1/smartphones/galaxy-s26-plus" + "slug": "9rt-5g-standard-edition-dual-sim-td-lte-cn-256gb-mt2110", + "name": "9RT 5G Standard Edition Dual SIM TD-LTE CN 256GB MT2110", + "url": "/v1/smartphones/9rt-5g-standard-edition-dual-sim-td-lte-cn-256gb-mt2110" }, { - "slug": "galaxy-s4", - "name": "Galaxy S4", - "url": "/v1/smartphones/galaxy-s4" + "slug": "9rt-5g-standard-edition-dual-sim-td-lte-in-128gb-mt2111", + "name": "9RT 5G Standard Edition Dual SIM TD-LTE IN 128GB MT2111", + "url": "/v1/smartphones/9rt-5g-standard-edition-dual-sim-td-lte-in-128gb-mt2111" }, { - "slug": "galaxy-s5", - "name": "Galaxy S5", - "url": "/v1/smartphones/galaxy-s5" + "slug": "9x-lite", + "name": "9X Lite", + "url": "/v1/smartphones/9x-lite" }, { - "slug": "galaxy-s6", - "name": "Galaxy S6", - "url": "/v1/smartphones/galaxy-s6" + "slug": "a0722-blade-a7-vita-dual-sim-td-lte-cn-32gb", + "name": "A0722 Blade A7 Vita Dual SIM TD-LTE CN 32GB", + "url": "/v1/smartphones/a0722-blade-a7-vita-dual-sim-td-lte-cn-32gb" }, { - "slug": "galaxy-s6-edge", - "name": "Galaxy S6 Edge", - "url": "/v1/smartphones/galaxy-s6-edge" + "slug": "a0722-blade-a7-vita-global-dual-sim-td-lte-16gb", + "name": "A0722 Blade A7 Vita Global Dual SIM TD-LTE 16GB", + "url": "/v1/smartphones/a0722-blade-a7-vita-global-dual-sim-td-lte-16gb" }, { - "slug": "galaxy-s7", - "name": "Galaxy S7", - "url": "/v1/smartphones/galaxy-s7" + "slug": "a1", + "name": "A1", + "url": "/v1/smartphones/a1" }, { - "slug": "galaxy-s7-edge", - "name": "Galaxy S7 Edge", - "url": "/v1/smartphones/galaxy-s7-edge" + "slug": "a1-alpha-20-dual-sim-lte-emea-5029y", + "name": "A1 Alpha 20 Dual SIM LTE EMEA 5029Y", + "url": "/v1/smartphones/a1-alpha-20-dual-sim-lte-emea-5029y" }, { - "slug": "galaxy-s8", - "name": "Galaxy S8", - "url": "/v1/smartphones/galaxy-s8" + "slug": "a1-dual-sim-td-lte-cn-a83", + "name": "A1 Dual SIM TD-LTE CN / A83", + "url": "/v1/smartphones/a1-dual-sim-td-lte-cn-a83" }, { - "slug": "galaxy-s8-plus", - "name": "Galaxy S8+", - "url": "/v1/smartphones/galaxy-s8-plus" + "slug": "a11-2019-premium-edition-dual-sim-td-lte-cn-256gb-pchm10", + "name": "A11 2019 Premium Edition Dual SIM TD-LTE CN 256GB PCHM10", + "url": "/v1/smartphones/a11-2019-premium-edition-dual-sim-td-lte-cn-256gb-pchm10" }, { - "slug": "galaxy-s9", - "name": "Galaxy S9", - "url": "/v1/smartphones/galaxy-s9" + "slug": "a11-2019-standard-edition-dual-sim-td-lte-cn-128gb-pchm10", + "name": "A11 2019 Standard Edition Dual SIM TD-LTE CN 128GB PCHM10", + "url": "/v1/smartphones/a11-2019-standard-edition-dual-sim-td-lte-cn-128gb-pchm10" }, { - "slug": "galaxy-s9-plus", - "name": "Galaxy S9+", - "url": "/v1/smartphones/galaxy-s9-plus" + "slug": "a11-2019-standard-edition-dual-sim-td-lte-cn-128gb-pcht10", + "name": "A11 2019 Standard Edition Dual SIM TD-LTE CN 128GB PCHT10", + "url": "/v1/smartphones/a11-2019-standard-edition-dual-sim-td-lte-cn-128gb-pcht10" }, { - "slug": "galaxy-w21-5g", - "name": "Galaxy W21 5G", - "url": "/v1/smartphones/galaxy-w21-5g" + "slug": "a11-2019-standard-edition-dual-sim-td-lte-cn-64gb-pchm10", + "name": "A11 2019 Standard Edition Dual SIM TD-LTE CN 64GB PCHM10", + "url": "/v1/smartphones/a11-2019-standard-edition-dual-sim-td-lte-cn-64gb-pchm10" }, { - "slug": "galaxy-w22-5g", - "name": "Galaxy W22 5G", - "url": "/v1/smartphones/galaxy-w22-5g" + "slug": "a11-2019-standard-edition-dual-sim-td-lte-cn-64gb-pcht10", + "name": "A11 2019 Standard Edition Dual SIM TD-LTE CN 64GB PCHT10", + "url": "/v1/smartphones/a11-2019-standard-edition-dual-sim-td-lte-cn-64gb-pcht10" }, { - "slug": "galaxy-xcover-5", - "name": "Galaxy Xcover 5", - "url": "/v1/smartphones/galaxy-xcover-5" + "slug": "a11k-2020", + "name": "A11k 2020", + "url": "/v1/smartphones/a11k-2020" }, { - "slug": "galaxy-xcover-6-pro", - "name": "Galaxy Xcover 6 Pro", - "url": "/v1/smartphones/galaxy-xcover-6-pro" + "slug": "a11k-2020-dual-sim-td-lte-v1-in-pk-32gb-cph2083-cph2071", + "name": "A11k 2020 Dual SIM TD-LTE V1 IN PK 32GB CPH2083 / CPH2071", + "url": "/v1/smartphones/a11k-2020-dual-sim-td-lte-v1-in-pk-32gb-cph2083-cph2071" }, { - "slug": "galaxy-z-flip", - "name": "Galaxy Z Flip", - "url": "/v1/smartphones/galaxy-z-flip" + "slug": "a11x-2019-premium-edition-dual-sim-td-lte-cn-128gb-pchm00", + "name": "A11x 2019 Premium Edition Dual SIM TD-LTE CN 128GB PCHM00", + "url": "/v1/smartphones/a11x-2019-premium-edition-dual-sim-td-lte-cn-128gb-pchm00" }, { - "slug": "galaxy-z-flip-3", - "name": "Galaxy Z Flip 3", - "url": "/v1/smartphones/galaxy-z-flip-3" + "slug": "a11x-2019-premium-edition-dual-sim-td-lte-cn-128gb-pcht00", + "name": "A11x 2019 Premium Edition Dual SIM TD-LTE CN 128GB PCHT00", + "url": "/v1/smartphones/a11x-2019-premium-edition-dual-sim-td-lte-cn-128gb-pcht00" }, { - "slug": "galaxy-z-flip-5g", - "name": "Galaxy Z Flip 5G", - "url": "/v1/smartphones/galaxy-z-flip-5g" + "slug": "a12-2020", + "name": "A12 2020", + "url": "/v1/smartphones/a12-2020" }, { - "slug": "galaxy-z-flip-7", - "name": "Galaxy Z Flip 7", - "url": "/v1/smartphones/galaxy-z-flip-7" + "slug": "a12-2020-dual-sim-td-lte-v1-in-id-pk-bd-32gb-cph2083", + "name": "A12 2020 Dual SIM TD-LTE V1 IN ID PK BD 32GB CPH2083", + "url": "/v1/smartphones/a12-2020-dual-sim-td-lte-v1-in-id-pk-bd-32gb-cph2083" }, { - "slug": "galaxy-z-flip-4", - "name": "Galaxy Z Flip4", - "url": "/v1/smartphones/galaxy-z-flip-4" + "slug": "a12-2020-dual-sim-td-lte-v1-in-id-pk-bd-64gb-cph2083", + "name": "A12 2020 Dual SIM TD-LTE V1 IN ID PK BD 64GB CPH2083", + "url": "/v1/smartphones/a12-2020-dual-sim-td-lte-v1-in-id-pk-bd-64gb-cph2083" }, { - "slug": "galaxy-z-flip-5", - "name": "Galaxy Z Flip5", - "url": "/v1/smartphones/galaxy-z-flip-5" + "slug": "a12-2020-dual-sim-td-lte-v2-th-vn-kh-my-32gb-cph2083", + "name": "A12 2020 Dual SIM TD-LTE V2 TH VN KH MY 32GB CPH2083", + "url": "/v1/smartphones/a12-2020-dual-sim-td-lte-v2-th-vn-kh-my-32gb-cph2083" }, { - "slug": "galaxy-z-flip-6", - "name": "Galaxy Z Flip6", - "url": "/v1/smartphones/galaxy-z-flip-6" + "slug": "a12-2020-dual-sim-td-lte-v4-latam-32gb-cph2083", + "name": "A12 2020 Dual SIM TD-LTE V4 LATAM 32GB CPH2083", + "url": "/v1/smartphones/a12-2020-dual-sim-td-lte-v4-latam-32gb-cph2083" }, { - "slug": "galaxy-z-fold-2", - "name": "Galaxy Z Fold 2", - "url": "/v1/smartphones/galaxy-z-fold-2" + "slug": "a12-2020-global-dual-sim-td-lte-v3-32gb-cph2083", + "name": "A12 2020 Global Dual SIM TD-LTE V3 32GB CPH2083", + "url": "/v1/smartphones/a12-2020-global-dual-sim-td-lte-v3-32gb-cph2083" }, { - "slug": "galaxy-z-fold-7", - "name": "Galaxy Z Fold 7", - "url": "/v1/smartphones/galaxy-z-fold-7" + "slug": "a15-2020-premium-edition", + "name": "A15 2020 Premium Edition", + "url": "/v1/smartphones/a15-2020-premium-edition" }, { - "slug": "galaxy-z-fold-3", - "name": "Galaxy Z Fold3", - "url": "/v1/smartphones/galaxy-z-fold-3" + "slug": "a15-2020-premium-edition-dual-sim-td-lte-in-id-my-pk-v1-32gb-cph2185", + "name": "A15 2020 Premium Edition Dual SIM TD-LTE IN ID MY PK V1 32GB CPH2185", + "url": "/v1/smartphones/a15-2020-premium-edition-dual-sim-td-lte-in-id-my-pk-v1-32gb-cph2185" }, { - "slug": "galaxy-z-fold-4", - "name": "Galaxy Z Fold4", - "url": "/v1/smartphones/galaxy-z-fold-4" + "slug": "a15-2020-premium-edition-dual-sim-td-lte-th-v2-32gb-cph2185", + "name": "A15 2020 Premium Edition Dual SIM TD-LTE TH V2 32GB CPH2185", + "url": "/v1/smartphones/a15-2020-premium-edition-dual-sim-td-lte-th-v2-32gb-cph2185" }, { - "slug": "galaxy-z-fold-5", - "name": "Galaxy Z Fold5", - "url": "/v1/smartphones/galaxy-z-fold-5" + "slug": "a15-2020-premium-edition-global-dual-sim-td-lte-v3-32gb-cph2185", + "name": "A15 2020 Premium Edition Global Dual SIM TD-LTE V3 32GB CPH2185", + "url": "/v1/smartphones/a15-2020-premium-edition-global-dual-sim-td-lte-v3-32gb-cph2185" }, { - "slug": "galaxy-z-fold-6", - "name": "Galaxy Z Fold6", - "url": "/v1/smartphones/galaxy-z-fold-6" + "slug": "a15-2020-standard-edition", + "name": "A15 2020 Standard Edition", + "url": "/v1/smartphones/a15-2020-standard-edition" }, { - "slug": "pixel-4a-5g", - "name": "Google Pixel 4a (5G)", - "url": "/v1/smartphones/pixel-4a-5g" + "slug": "a15-2020-standard-edition-dual-sim-td-lte-in-v1-32gb-cph2185", + "name": "A15 2020 Standard Edition Dual SIM TD-LTE IN V1 32GB CPH2185", + "url": "/v1/smartphones/a15-2020-standard-edition-dual-sim-td-lte-in-v1-32gb-cph2185" }, { - "slug": "pixel-5", - "name": "Google Pixel 5", - "url": "/v1/smartphones/pixel-5" + "slug": "a15-2020-standard-edition-global-dual-sim-td-lte-v3-32gb-cph2185", + "name": "A15 2020 Standard Edition Global Dual SIM TD-LTE V3 32GB CPH2185", + "url": "/v1/smartphones/a15-2020-standard-edition-global-dual-sim-td-lte-v3-32gb-cph2185" }, { - "slug": "pixel-9-pro-fold", - "name": "Google Pixel 9 Pro Fold", - "url": "/v1/smartphones/pixel-9-pro-fold" + "slug": "a15s-2020", + "name": "A15s 2020", + "url": "/v1/smartphones/a15s-2020" }, { - "slug": "pixel-9a", - "name": "Google Pixel 9a", - "url": "/v1/smartphones/pixel-9a" + "slug": "a15s-2020-dual-sim-td-lte-in-v1-64gb-cph2179", + "name": "A15s 2020 Dual SIM TD-LTE IN V1 64GB CPH2179", + "url": "/v1/smartphones/a15s-2020-dual-sim-td-lte-in-v1-64gb-cph2179" }, { - "slug": "pixel-fold", - "name": "Google Pixel Fold", - "url": "/v1/smartphones/pixel-fold" + "slug": "a16-2021-premium-edition", + "name": "A16 2021 Premium Edition", + "url": "/v1/smartphones/a16-2021-premium-edition" }, { - "slug": "honor-200-pro", - "name": "HONOR 200 Pro", - "url": "/v1/smartphones/honor-200-pro" + "slug": "a16-2021-premium-edition-dual-sim-td-lte-v1-in-id-bd-64gb-cph2269", + "name": "A16 2021 Premium Edition Dual SIM TD-LTE V1 IN ID BD 64GB CPH2269", + "url": "/v1/smartphones/a16-2021-premium-edition-dual-sim-td-lte-v1-in-id-bd-64gb-cph2269" }, { - "slug": "honor-90", - "name": "HONOR 90", - "url": "/v1/smartphones/honor-90" + "slug": "a16-2021-premium-edition-dual-sim-td-lte-v2-th-my-sg-vn-ph-kh-64gb-cph2269-cph2275", + "name": "A16 2021 Premium Edition Dual SIM TD-LTE V2 TH MY SG VN PH KH 64GB CPH2269 / CPH2275", + "url": "/v1/smartphones/a16-2021-premium-edition-dual-sim-td-lte-v2-th-my-sg-vn-ph-kh-64gb-cph2269-cph2275" }, { - "slug": "honor-magic-v2", - "name": "HONOR Magic V2", - "url": "/v1/smartphones/honor-magic-v2" + "slug": "a16-2021-standard-edition", + "name": "A16 2021 Standard Edition", + "url": "/v1/smartphones/a16-2021-standard-edition" }, { - "slug": "honor-magic-4-pro", - "name": "HONOR Magic4 Pro", - "url": "/v1/smartphones/honor-magic-4-pro" + "slug": "a16-2021-standard-edition-dual-sim-td-lte-v1-id-pk-bd-np-32gb-cph2269", + "name": "A16 2021 Standard Edition Dual SIM TD-LTE V1 ID PK BD NP 32GB CPH2269", + "url": "/v1/smartphones/a16-2021-standard-edition-dual-sim-td-lte-v1-id-pk-bd-np-32gb-cph2269" }, { - "slug": "honor-magic-5-pro", - "name": "HONOR Magic5 Pro", - "url": "/v1/smartphones/honor-magic-5-pro" + "slug": "a16-2021-standard-edition-dual-sim-td-lte-v2-th-my-vn-ph-kh-32gb-cph2269", + "name": "A16 2021 Standard Edition Dual SIM TD-LTE V2 TH MY VN PH KH 32GB CPH2269", + "url": "/v1/smartphones/a16-2021-standard-edition-dual-sim-td-lte-v2-th-my-vn-ph-kh-32gb-cph2269" }, { - "slug": "honor-magic-6-pro", - "name": "HONOR Magic6 Pro", - "url": "/v1/smartphones/honor-magic-6-pro" + "slug": "a16e-2022-premium-edition", + "name": "A16e 2022 Premium Edition", + "url": "/v1/smartphones/a16e-2022-premium-edition" }, { - "slug": "honor-magic-7-pro", - "name": "HONOR Magic7 Pro", - "url": "/v1/smartphones/honor-magic-7-pro" + "slug": "a16e-2022-standard-edition", + "name": "A16e 2022 Standard Edition", + "url": "/v1/smartphones/a16e-2022-standard-edition" }, { - "slug": "honor-x9b", - "name": "HONOR X9b", - "url": "/v1/smartphones/honor-x9b" + "slug": "a16k-2021-premium-edition", + "name": "A16k 2021 Premium Edition", + "url": "/v1/smartphones/a16k-2021-premium-edition" }, { - "slug": "hot-7-pro", - "name": "HOT 7 Pro", - "url": "/v1/smartphones/hot-7-pro" + "slug": "a16k-2021-standard-edition", + "name": "A16k 2021 Standard Edition", + "url": "/v1/smartphones/a16k-2021-standard-edition" }, { - "slug": "htc-10", - "name": "HTC 10", - "url": "/v1/smartphones/htc-10" + "slug": "a16s-2021", + "name": "A16s 2021", + "url": "/v1/smartphones/a16s-2021" }, { - "slug": "htc-one-m7", - "name": "HTC One (M7)", - "url": "/v1/smartphones/htc-one-m7" + "slug": "a16s-2021-global-dual-sim-td-lte-64gb-cph2271", + "name": "A16s 2021 Global Dual SIM TD-LTE 64GB CPH2271", + "url": "/v1/smartphones/a16s-2021-global-dual-sim-td-lte-64gb-cph2271" }, { - "slug": "htc-one-m8", - "name": "HTC One M8", - "url": "/v1/smartphones/htc-one-m8" + "slug": "a16s-2021-global-td-lte-64gb-cph2271", + "name": "A16s 2021 Global TD-LTE 64GB CPH2271", + "url": "/v1/smartphones/a16s-2021-global-td-lte-64gb-cph2271" }, { - "slug": "htc-one-m9", - "name": "HTC One M9", - "url": "/v1/smartphones/htc-one-m9" + "slug": "a17", + "name": "A17", + "url": "/v1/smartphones/a17" }, { - "slug": "htc-u11", - "name": "HTC U11", - "url": "/v1/smartphones/htc-u11" + "slug": "a17k", + "name": "A17k", + "url": "/v1/smartphones/a17k" }, { - "slug": "honor-30-lite", - "name": "Honor 30 Lite", - "url": "/v1/smartphones/honor-30-lite" + "slug": "a1k", + "name": "A1k", + "url": "/v1/smartphones/a1k" }, { - "slug": "honor-50", - "name": "Honor 50", - "url": "/v1/smartphones/honor-50" + "slug": "a1k-dual-sim-td-lte-in-mn-bd-32gb-cph1923", + "name": "A1k Dual SIM TD-LTE IN MN BD 32GB CPH1923", + "url": "/v1/smartphones/a1k-dual-sim-td-lte-in-mn-bd-32gb-cph1923" }, { - "slug": "honor-50-pro", - "name": "Honor 50 Pro", - "url": "/v1/smartphones/honor-50-pro" + "slug": "a1k-global-dual-sim-td-lte-32gb-cph1923", + "name": "A1k Global Dual SIM TD-LTE 32GB CPH1923", + "url": "/v1/smartphones/a1k-global-dual-sim-td-lte-32gb-cph1923" }, { - "slug": "honor-50-se", - "name": "Honor 50 SE", - "url": "/v1/smartphones/honor-50-se" + "slug": "a3", + "name": "A3", + "url": "/v1/smartphones/a3" }, { - "slug": "honor-60", - "name": "Honor 60", - "url": "/v1/smartphones/honor-60" + "slug": "a3-dual-sim-td-lte-apac-cph1837", + "name": "A3 Dual SIM TD-LTE APAC CPH1837", + "url": "/v1/smartphones/a3-dual-sim-td-lte-apac-cph1837" }, { - "slug": "honor-60-pro", - "name": "Honor 60 Pro", - "url": "/v1/smartphones/honor-60-pro" + "slug": "a3-dual-sim-td-lte-cn-padm00", + "name": "A3 Dual SIM TD-LTE CN PADM00", + "url": "/v1/smartphones/a3-dual-sim-td-lte-cn-padm00" }, { - "slug": "honor-60-se", - "name": "Honor 60 SE", - "url": "/v1/smartphones/honor-60-se" + "slug": "a3-dual-sim-td-lte-cn-padt00", + "name": "A3 Dual SIM TD-LTE CN PADT00", + "url": "/v1/smartphones/a3-dual-sim-td-lte-cn-padt00" }, { - "slug": "honor-70", - "name": "Honor 70", - "url": "/v1/smartphones/honor-70" + "slug": "a30-lte-latam-5102o", + "name": "A30 LTE LATAM 5102O", + "url": "/v1/smartphones/a30-lte-latam-5102o" }, { - "slug": "honor-70-pro", - "name": "Honor 70 Pro+", - "url": "/v1/smartphones/honor-70-pro" + "slug": "a31-2020-premium-edition", + "name": "A31 2020 Premium Edition", + "url": "/v1/smartphones/a31-2020-premium-edition" }, { - "slug": "honor-8a-premium-edition", - "name": "Honor 8A Premium Edition", - "url": "/v1/smartphones/honor-8a-premium-edition" + "slug": "a31-2020-premium-edition-dual-sim-td-lte-v1-in-sg-vn-bd-128gb-cph2015-cph2081", + "name": "A31 2020 Premium Edition Dual SIM TD-LTE V1 IN SG VN BD 128GB CPH2015 / CPH2081", + "url": "/v1/smartphones/a31-2020-premium-edition-dual-sim-td-lte-v1-in-sg-vn-bd-128gb-cph2015-cph2081" }, { - "slug": "honor-8a-standard-edition", - "name": "Honor 8A Standard Edition", - "url": "/v1/smartphones/honor-8a-standard-edition" + "slug": "a31-2020-premium-edition-dual-sim-td-lte-v2-th-ph-128gb-cph2015-cph2031", + "name": "A31 2020 Premium Edition Dual SIM TD-LTE V2 TH PH 128GB CPH2015 / CPH2031", + "url": "/v1/smartphones/a31-2020-premium-edition-dual-sim-td-lte-v2-th-ph-128gb-cph2015-cph2031" }, { - "slug": "honor-8s-2019", - "name": "Honor 8S 2019", - "url": "/v1/smartphones/honor-8s-2019" + "slug": "a31-2020-premium-edition-dual-sim-td-lte-v3-kz-128gb-cph2015", + "name": "A31 2020 Premium Edition Dual SIM TD-LTE V3 KZ 128GB CPH2015", + "url": "/v1/smartphones/a31-2020-premium-edition-dual-sim-td-lte-v3-kz-128gb-cph2015" }, { - "slug": "honor-8s-2019-lte", - "name": "Honor 8S 2019 LTE", - "url": "/v1/smartphones/honor-8s-2019-lte" + "slug": "a31-2020-premium-edition-dual-sim-td-lte-v4-id-128gb-cph2015", + "name": "A31 2020 Premium Edition Dual SIM TD-LTE V4 ID 128GB CPH2015", + "url": "/v1/smartphones/a31-2020-premium-edition-dual-sim-td-lte-v4-id-128gb-cph2015" }, { - "slug": "honor-8s-2020", - "name": "Honor 8S 2020", - "url": "/v1/smartphones/honor-8s-2020" + "slug": "a31-2020-standard-edition", + "name": "A31 2020 Standard Edition", + "url": "/v1/smartphones/a31-2020-standard-edition" }, { - "slug": "honor-9a", - "name": "Honor 9A", - "url": "/v1/smartphones/honor-9a" + "slug": "a31-2020-standard-edition-dual-sim-td-lte-v1-in-sg-64gb-cph2015-cph2073", + "name": "A31 2020 Standard Edition Dual SIM TD-LTE V1 IN SG 64GB CPH2015 / CPH2073", + "url": "/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v1-in-sg-64gb-cph2015-cph2073" }, { - "slug": "honor-9s-2020", - "name": "Honor 9S 2020", - "url": "/v1/smartphones/honor-9s-2020" + "slug": "a31-2020-standard-edition-dual-sim-td-lte-v1-sg-vn-bd-np-128gb-cph2015-cph2073", + "name": "A31 2020 Standard Edition Dual SIM TD-LTE V1 SG VN BD NP 128GB CPH2015 / CPH2073", + "url": "/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v1-sg-vn-bd-np-128gb-cph2015-cph2073" }, { - "slug": "honor-changwan-8a", - "name": "Honor Changwan 8A", - "url": "/v1/smartphones/honor-changwan-8a" + "slug": "a31-2020-standard-edition-dual-sim-td-lte-v2-th-ph-128gb-cph2015-cph2031", + "name": "A31 2020 Standard Edition Dual SIM TD-LTE V2 TH PH 128GB CPH2015 / CPH2031", + "url": "/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v2-th-ph-128gb-cph2015-cph2031" }, { - "slug": "honor-magic-3", - "name": "Honor Magic 3", - "url": "/v1/smartphones/honor-magic-3" + "slug": "a31-2020-standard-edition-dual-sim-td-lte-v2-th-ph-64gb-cph2015-cph2031", + "name": "A31 2020 Standard Edition Dual SIM TD-LTE V2 TH PH 64GB CPH2015 / CPH2031", + "url": "/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v2-th-ph-64gb-cph2015-cph2031" }, { - "slug": "honor-magic-3-pro", - "name": "Honor Magic 3 Pro", - "url": "/v1/smartphones/honor-magic-3-pro" + "slug": "a31-2020-standard-edition-dual-sim-td-lte-v3-kz-sa-ae-128gb-cph2015", + "name": "A31 2020 Standard Edition Dual SIM TD-LTE V3 KZ SA AE 128GB CPH2015", + "url": "/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v3-kz-sa-ae-128gb-cph2015" }, { - "slug": "honor-magic-4", - "name": "Honor Magic 4", - "url": "/v1/smartphones/honor-magic-4" + "slug": "a31-2020-standard-edition-dual-sim-td-lte-v3-ru-pl-kz-tr-64gb-cph2015-cph2029", + "name": "A31 2020 Standard Edition Dual SIM TD-LTE V3 RU PL KZ TR 64GB CPH2015 / CPH2029", + "url": "/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v3-ru-pl-kz-tr-64gb-cph2015-cph2029" }, { - "slug": "honor-honor-magic-4-pro", - "name": "Honor Magic 4 Pro", - "url": "/v1/smartphones/honor-honor-magic-4-pro" + "slug": "a31-2020-standard-edition-dual-sim-td-lte-v4-id-128gb-cph2015", + "name": "A31 2020 Standard Edition Dual SIM TD-LTE V4 ID 128GB CPH2015", + "url": "/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v4-id-128gb-cph2015" }, { - "slug": "honor-magic-5-lite", - "name": "Honor Magic 5 Lite", - "url": "/v1/smartphones/honor-magic-5-lite" + "slug": "a31-2020-standard-edition-dual-sim-td-lte-v5-mx-128gb-cph2015", + "name": "A31 2020 Standard Edition Dual SIM TD-LTE V5 MX 128GB CPH2015", + "url": "/v1/smartphones/a31-2020-standard-edition-dual-sim-td-lte-v5-mx-128gb-cph2015" }, { - "slug": "honor-magic-v", - "name": "Honor Magic V", - "url": "/v1/smartphones/honor-magic-v" + "slug": "a32-2020-premium-edition-dual-sim-td-lte-cn-128gb-pdvm00", + "name": "A32 2020 Premium Edition Dual SIM TD-LTE CN 128GB PDVM00", + "url": "/v1/smartphones/a32-2020-premium-edition-dual-sim-td-lte-cn-128gb-pdvm00" }, { - "slug": "honor-magic-v3", - "name": "Honor Magic V3", - "url": "/v1/smartphones/honor-magic-v3" + "slug": "a32-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdvm00", + "name": "A32 2020 Standard Edition Dual SIM TD-LTE CN 128GB PDVM00", + "url": "/v1/smartphones/a32-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdvm00" }, { - "slug": "honor-magic-vs", - "name": "Honor Magic Vs", - "url": "/v1/smartphones/honor-magic-vs" + "slug": "a33-2020-standard-edition-dual-sim-td-lte-v1-in-32gb-cph2137", + "name": "A33 2020 Standard Edition Dual SIM TD-LTE V1 IN 32GB CPH2137", + "url": "/v1/smartphones/a33-2020-standard-edition-dual-sim-td-lte-v1-in-32gb-cph2137" }, { - "slug": "honor-magic-8", - "name": "Honor Magic8", - "url": "/v1/smartphones/honor-magic-8" + "slug": "a35-2021", + "name": "A35 2021", + "url": "/v1/smartphones/a35-2021" }, { - "slug": "honor-magic-8-pro", - "name": "Honor Magic8 Pro", - "url": "/v1/smartphones/honor-magic-8-pro" + "slug": "a35-2021-dual-sim-td-lte-cn-128gb-pehm00", + "name": "A35 2021 Dual SIM TD-LTE CN 128GB PEHM00", + "url": "/v1/smartphones/a35-2021-dual-sim-td-lte-cn-128gb-pehm00" }, { - "slug": "honor-play-20-premium-edition", - "name": "Honor Play 20 Premium Edition", - "url": "/v1/smartphones/honor-play-20-premium-edition" + "slug": "a35-2021-dual-sim-td-lte-cn-64gb-pehm00", + "name": "A35 2021 Dual SIM TD-LTE CN 64GB PEHM00", + "url": "/v1/smartphones/a35-2021-dual-sim-td-lte-cn-64gb-pehm00" }, { - "slug": "honor-play-20-pro", - "name": "Honor Play 20 Pro", - "url": "/v1/smartphones/honor-play-20-pro" + "slug": "a37-dual-sim-td-lte-emea", + "name": "A37 Dual SIM TD-LTE EMEA", + "url": "/v1/smartphones/a37-dual-sim-td-lte-emea" }, { - "slug": "honor-play-20-standard-edition", - "name": "Honor Play 20 Standard Edition", - "url": "/v1/smartphones/honor-play-20-standard-edition" + "slug": "a37-dual-sim-td-lte-in-kz", + "name": "A37 Dual SIM TD-LTE IN KZ", + "url": "/v1/smartphones/a37-dual-sim-td-lte-in-kz" }, { - "slug": "honor-play-20-top-edition", - "name": "Honor Play 20 Top Edition", - "url": "/v1/smartphones/honor-play-20-top-edition" + "slug": "a37-dual-sim-td-lte-sg", + "name": "A37 Dual SIM TD-LTE SG", + "url": "/v1/smartphones/a37-dual-sim-td-lte-sg" }, { - "slug": "honor-play-20a-premium-edition", - "name": "Honor Play 20a Premium Edition", - "url": "/v1/smartphones/honor-play-20a-premium-edition" + "slug": "a3s-dual-sim-td-lte-in-id-th-pk-np-sg-version-3-16gb-cph1803", + "name": "A3s Dual SIM TD-LTE IN ID TH PK NP SG Version 3 16GB CPH1803", + "url": "/v1/smartphones/a3s-dual-sim-td-lte-in-id-th-pk-np-sg-version-3-16gb-cph1803" }, { - "slug": "honor-play-30", - "name": "Honor Play 30", - "url": "/v1/smartphones/honor-play-30" + "slug": "a3s-dual-sim-td-lte-in-id-th-pk-np-sg-version-3-32gb-cph1805", + "name": "A3s Dual SIM TD-LTE IN ID TH PK NP SG Version 3 32GB CPH1805", + "url": "/v1/smartphones/a3s-dual-sim-td-lte-in-id-th-pk-np-sg-version-3-32gb-cph1805" }, { - "slug": "honor-play-30-plus", - "name": "Honor Play 30 Plus", - "url": "/v1/smartphones/honor-play-30-plus" + "slug": "a3s-dual-sim-td-lte-ph-my-version-1-16gb-cph1803", + "name": "A3s Dual SIM TD-LTE PH MY Version 1 16GB CPH1803", + "url": "/v1/smartphones/a3s-dual-sim-td-lte-ph-my-version-1-16gb-cph1803" }, { - "slug": "honor-play-3e", - "name": "Honor Play 3e", - "url": "/v1/smartphones/honor-play-3e" + "slug": "a3s-dual-sim-td-lte-vn-version-2-16gb-cph1803-a2-pro", + "name": "A3s Dual SIM TD-LTE VN Version 2 16GB CPH1803 / A2 Pro", + "url": "/v1/smartphones/a3s-dual-sim-td-lte-vn-version-2-16gb-cph1803-a2-pro" }, { - "slug": "honor-play-40-plus", - "name": "Honor Play 40 Plus", - "url": "/v1/smartphones/honor-play-40-plus" + "slug": "a49-5g", + "name": "A49 5G", + "url": "/v1/smartphones/a49-5g" }, { - "slug": "honor-play-5t", - "name": "Honor Play 5T", - "url": "/v1/smartphones/honor-play-5t" + "slug": "a5-2020-premium-edition-dual-sim-td-lte-v1-id-bd-np-128gb-cph1933", + "name": "A5 2020 Premium Edition Dual SIM TD-LTE V1 ID BD NP 128GB CPH1933", + "url": "/v1/smartphones/a5-2020-premium-edition-dual-sim-td-lte-v1-id-bd-np-128gb-cph1933" }, { - "slug": "honor-play-5t-pro", - "name": "Honor Play 5T Pro", - "url": "/v1/smartphones/honor-play-5t-pro" + "slug": "a5-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-64gb-cph1933", + "name": "A5 2020 Premium Edition Dual SIM TD-LTE V1 IN ID PK BD NP 64GB CPH1933", + "url": "/v1/smartphones/a5-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-64gb-cph1933" }, { - "slug": "honor-play-5t-youth-edition", - "name": "Honor Play 5T Youth Edition", - "url": "/v1/smartphones/honor-play-5t-youth-edition" + "slug": "a5-2020-premium-edition-dual-sim-td-lte-v2-th-128gb-cph1933", + "name": "A5 2020 Premium Edition Dual SIM TD-LTE V2 TH 128GB CPH1933", + "url": "/v1/smartphones/a5-2020-premium-edition-dual-sim-td-lte-v2-th-128gb-cph1933" }, { - "slug": "honor-play-6c", - "name": "Honor Play 6C", - "url": "/v1/smartphones/honor-play-6c" + "slug": "a5-2020-premium-edition-dual-sim-td-lte-v4-tw-jp-sg-64gb-cph1943", + "name": "A5 2020 Premium Edition Dual SIM TD-LTE V4 TW JP SG 64GB CPH1943", + "url": "/v1/smartphones/a5-2020-premium-edition-dual-sim-td-lte-v4-tw-jp-sg-64gb-cph1943" }, { - "slug": "honor-play-6t", - "name": "Honor Play 6T", - "url": "/v1/smartphones/honor-play-6t" + "slug": "a5-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph1933", + "name": "A5 2020 Premium Edition Global Dual SIM TD-LTE V3 128GB CPH1933", + "url": "/v1/smartphones/a5-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph1933" }, { - "slug": "honor-play-6t-pro", - "name": "Honor Play 6T Pro", - "url": "/v1/smartphones/honor-play-6t-pro" + "slug": "a5-2020-premium-edition-global-dual-sim-td-lte-v3-64gb-cph1933", + "name": "A5 2020 Premium Edition Global Dual SIM TD-LTE V3 64GB CPH1933", + "url": "/v1/smartphones/a5-2020-premium-edition-global-dual-sim-td-lte-v3-64gb-cph1933" }, { - "slug": "honor-play-8", - "name": "Honor Play 8", - "url": "/v1/smartphones/honor-play-8" + "slug": "a5-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-bd-64gb-cph1931", + "name": "A5 2020 Standard Edition Dual SIM TD-LTE V1 IN ID PK BD 64GB CPH1931", + "url": "/v1/smartphones/a5-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-bd-64gb-cph1931" }, { - "slug": "honor-play-9a", - "name": "Honor Play 9A", - "url": "/v1/smartphones/honor-play-9a" + "slug": "a5-2020-standard-edition-dual-sim-td-lte-v2-my-th-64gb-cph1931", + "name": "A5 2020 Standard Edition Dual SIM TD-LTE V2 MY TH 64GB CPH1931", + "url": "/v1/smartphones/a5-2020-standard-edition-dual-sim-td-lte-v2-my-th-64gb-cph1931" }, { - "slug": "honor-play4", - "name": "Honor Play4", - "url": "/v1/smartphones/honor-play4" + "slug": "a5-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph1931", + "name": "A5 2020 Standard Edition Global Dual SIM TD-LTE V3 64GB CPH1931", + "url": "/v1/smartphones/a5-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph1931" }, { - "slug": "honor-play5", - "name": "Honor Play5", - "url": "/v1/smartphones/honor-play5" + "slug": "a5-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph1935", + "name": "A5 2020 Standard Edition Global Dual SIM TD-LTE V3 64GB CPH1935", + "url": "/v1/smartphones/a5-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph1935" }, { - "slug": "honor-v40", - "name": "Honor V40", - "url": "/v1/smartphones/honor-v40" + "slug": "a5-dual-sim-td-lte-cn-32gb-hlte202n", + "name": "A5 Dual SIM TD-LTE CN 32GB HLTE202N", + "url": "/v1/smartphones/a5-dual-sim-td-lte-cn-32gb-hlte202n" }, { - "slug": "honor-v40-lite", - "name": "Honor V40 Lite", - "url": "/v1/smartphones/honor-v40-lite" + "slug": "a5-dual-sim-td-lte-cn-64gb-hlte202n", + "name": "A5 Dual SIM TD-LTE CN 64GB HLTE202N", + "url": "/v1/smartphones/a5-dual-sim-td-lte-cn-64gb-hlte202n" }, { - "slug": "honor-x20", - "name": "Honor X20", - "url": "/v1/smartphones/honor-x20" + "slug": "a5-dual-sim-td-lte-in-pk-bd-32gb-cph1809", + "name": "A5 Dual SIM TD-LTE IN PK BD 32GB CPH1809", + "url": "/v1/smartphones/a5-dual-sim-td-lte-in-pk-bd-32gb-cph1809" }, { - "slug": "honor-x20-se", - "name": "Honor X20 SE", - "url": "/v1/smartphones/honor-x20-se" + "slug": "a5-dual-sim-td-lte-in-pk-bd-64gb-cph1809", + "name": "A5 Dual SIM TD-LTE IN PK BD 64GB CPH1809", + "url": "/v1/smartphones/a5-dual-sim-td-lte-in-pk-bd-64gb-cph1809" }, { - "slug": "honor-x30", - "name": "Honor X30", - "url": "/v1/smartphones/honor-x30" + "slug": "a5-premium-edition-dual-sim-td-lte-cn-pbam00", + "name": "A5 Premium Edition Dual SIM TD-LTE CN PBAM00", + "url": "/v1/smartphones/a5-premium-edition-dual-sim-td-lte-cn-pbam00" }, { - "slug": "honor-x30-max", - "name": "Honor X30 Max", - "url": "/v1/smartphones/honor-x30-max" + "slug": "a5-premium-edition-dual-sim-td-lte-cn-pbat00", + "name": "A5 Premium Edition Dual SIM TD-LTE CN PBAT00", + "url": "/v1/smartphones/a5-premium-edition-dual-sim-td-lte-cn-pbat00" }, { - "slug": "honor-x30i", - "name": "Honor X30i", - "url": "/v1/smartphones/honor-x30i" + "slug": "a5-pro", + "name": "A5 Pro", + "url": "/v1/smartphones/a5-pro" }, { - "slug": "honor-x40", - "name": "Honor X40", - "url": "/v1/smartphones/honor-x40" + "slug": "a5-standard-edition-dual-sim-td-lte-cn-pbam00", + "name": "A5 Standard Edition Dual SIM TD-LTE CN PBAM00", + "url": "/v1/smartphones/a5-standard-edition-dual-sim-td-lte-cn-pbam00" }, { - "slug": "honor-x40i", - "name": "Honor X40i", - "url": "/v1/smartphones/honor-x40i" + "slug": "a50-5g", + "name": "A50 5G", + "url": "/v1/smartphones/a50-5g" }, { - "slug": "honor-x5", - "name": "Honor X5", - "url": "/v1/smartphones/honor-x5" + "slug": "a51-5g", + "name": "A51 5G", + "url": "/v1/smartphones/a51-5g" }, { - "slug": "honor-x6", - "name": "Honor X6", - "url": "/v1/smartphones/honor-x6" + "slug": "a52-2020-dual-sim-td-lte-cn-128gb-pdam10", + "name": "A52 2020 Dual SIM TD-LTE CN 128GB PDAM10", + "url": "/v1/smartphones/a52-2020-dual-sim-td-lte-cn-128gb-pdam10" }, { - "slug": "honor-x6s", - "name": "Honor X6s", - "url": "/v1/smartphones/honor-x6s" + "slug": "a52-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-128gb-cph2061", + "name": "A52 2020 Premium Edition Dual SIM TD-LTE V1 IN ID PK BD NP 128GB CPH2061", + "url": "/v1/smartphones/a52-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-128gb-cph2061" }, { - "slug": "honor-x8", - "name": "Honor X8", - "url": "/v1/smartphones/honor-x8" + "slug": "a52-2020-premium-edition-dual-sim-td-lte-v2-my-vn-th-kh-128gb-cph2061", + "name": "A52 2020 Premium Edition Dual SIM TD-LTE V2 MY VN TH KH 128GB CPH2061", + "url": "/v1/smartphones/a52-2020-premium-edition-dual-sim-td-lte-v2-my-vn-th-kh-128gb-cph2061" }, { - "slug": "honor-x9", - "name": "Honor X9", - "url": "/v1/smartphones/honor-x9" + "slug": "a52-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph2061", + "name": "A52 2020 Premium Edition Global Dual SIM TD-LTE V3 128GB CPH2061", + "url": "/v1/smartphones/a52-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph2061" }, { - "slug": "honor-x9a", - "name": "Honor X9a", - "url": "/v1/smartphones/honor-x9a" + "slug": "a52-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-128gb-cph2061", + "name": "A52 2020 Standard Edition Dual SIM TD-LTE V1 IN ID PK BD NP 128GB CPH2061", + "url": "/v1/smartphones/a52-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-bd-np-128gb-cph2061" }, { - "slug": "hot-10", - "name": "Hot 10", - "url": "/v1/smartphones/hot-10" + "slug": "a52-2020-standard-edition-global-dual-sim-td-lte-v3-128gb-cph2061", + "name": "A52 2020 Standard Edition Global Dual SIM TD-LTE V3 128GB CPH2061", + "url": "/v1/smartphones/a52-2020-standard-edition-global-dual-sim-td-lte-v3-128gb-cph2061" }, { - "slug": "hot-10-lite", - "name": "Hot 10 Lite", - "url": "/v1/smartphones/hot-10-lite" + "slug": "a52-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph2069", + "name": "A52 2020 Standard Edition Global Dual SIM TD-LTE V3 64GB CPH2069", + "url": "/v1/smartphones/a52-2020-standard-edition-global-dual-sim-td-lte-v3-64gb-cph2069" }, { - "slug": "hot-10-play", - "name": "Hot 10 Play", - "url": "/v1/smartphones/hot-10-play" + "slug": "a52-5g", + "name": "A52 5G", + "url": "/v1/smartphones/a52-5g" }, { - "slug": "hot-10s", - "name": "Hot 10S", - "url": "/v1/smartphones/hot-10s" + "slug": "a53", + "name": "A53", + "url": "/v1/smartphones/a53" }, { - "slug": "hot-10s-nfc", - "name": "Hot 10S NFC", - "url": "/v1/smartphones/hot-10s-nfc" + "slug": "a53-2020-premium-edition-dual-sim-td-lte-v1-in-id-bd-128gb-cph2127", + "name": "A53 2020 Premium Edition Dual SIM TD-LTE V1 IN ID BD 128GB CPH2127", + "url": "/v1/smartphones/a53-2020-premium-edition-dual-sim-td-lte-v1-in-id-bd-128gb-cph2127" }, { - "slug": "hot-10t", - "name": "Hot 10T", - "url": "/v1/smartphones/hot-10t" + "slug": "a53-2020-premium-edition-dual-sim-td-lte-v3-sg-ru-pl-128gb-cph2127", + "name": "A53 2020 Premium Edition Dual SIM TD-LTE V3 SG RU PL 128GB CPH2127", + "url": "/v1/smartphones/a53-2020-premium-edition-dual-sim-td-lte-v3-sg-ru-pl-128gb-cph2127" }, { - "slug": "hot-11", - "name": "Hot 11", - "url": "/v1/smartphones/hot-11" + "slug": "a53-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-np-my-64gb-cph2127", + "name": "A53 2020 Standard Edition Dual SIM TD-LTE V1 IN ID PK NP MY 64GB CPH2127", + "url": "/v1/smartphones/a53-2020-standard-edition-dual-sim-td-lte-v1-in-id-pk-np-my-64gb-cph2127" }, { - "slug": "hot-11-play", - "name": "Hot 11 Play", - "url": "/v1/smartphones/hot-11-play" + "slug": "a53-2020-standard-edition-dual-sim-td-lte-v2-th-vn-kh-64gb-cph2127", + "name": "A53 2020 Standard Edition Dual SIM TD-LTE V2 TH VN KH 64GB CPH2127", + "url": "/v1/smartphones/a53-2020-standard-edition-dual-sim-td-lte-v2-th-vn-kh-64gb-cph2127" }, { - "slug": "hot-11s", - "name": "Hot 11s", - "url": "/v1/smartphones/hot-11s" + "slug": "a53-2020-standard-edition-dual-sim-td-lte-v3-ru-ua-kz-128gb-cph2127", + "name": "A53 2020 Standard Edition Dual SIM TD-LTE V3 RU UA KZ 128GB CPH2127", + "url": "/v1/smartphones/a53-2020-standard-edition-dual-sim-td-lte-v3-ru-ua-kz-128gb-cph2127" }, { - "slug": "hot-12", - "name": "Hot 12", - "url": "/v1/smartphones/hot-12" + "slug": "a53-2020-standard-edition-dual-sim-td-lte-v3-ru-ua-kz-64gb-cph2127", + "name": "A53 2020 Standard Edition Dual SIM TD-LTE V3 RU UA KZ 64GB CPH2127", + "url": "/v1/smartphones/a53-2020-standard-edition-dual-sim-td-lte-v3-ru-ua-kz-64gb-cph2127" }, { - "slug": "hot-20", - "name": "Hot 20", - "url": "/v1/smartphones/hot-20" + "slug": "a53-2020-standard-edition-dual-sim-td-lte-v5-mx-64gb-cph2127", + "name": "A53 2020 Standard Edition Dual SIM TD-LTE V5 MX 64GB CPH2127", + "url": "/v1/smartphones/a53-2020-standard-edition-dual-sim-td-lte-v5-mx-64gb-cph2127" }, { - "slug": "hot-20-5g", - "name": "Hot 20 5G", - "url": "/v1/smartphones/hot-20-5g" + "slug": "a53-2020-standard-edition-global-dual-sim-td-lte-v6-64gb-cph2127", + "name": "A53 2020 Standard Edition Global Dual SIM TD-LTE V6 64GB CPH2127", + "url": "/v1/smartphones/a53-2020-standard-edition-global-dual-sim-td-lte-v6-64gb-cph2127" }, { - "slug": "hot-20i", - "name": "Hot 20i", - "url": "/v1/smartphones/hot-20i" + "slug": "a53-5g", + "name": "A53 5G", + "url": "/v1/smartphones/a53-5g" }, { - "slug": "hot-20s", - "name": "Hot 20s", - "url": "/v1/smartphones/hot-20s" + "slug": "a53-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-pecm30", + "name": "A53 5G 2020 Premium Edition Dual SIM TD-LTE CN 128GB PECM30", + "url": "/v1/smartphones/a53-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-pecm30" }, { - "slug": "hot-30", - "name": "Hot 30", - "url": "/v1/smartphones/hot-30" + "slug": "a53-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pecm30", + "name": "A53 5G 2020 Standard Edition Dual SIM TD-LTE CN 128GB PECM30", + "url": "/v1/smartphones/a53-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pecm30" }, { - "slug": "hot-30-5g", - "name": "Hot 30 5G", - "url": "/v1/smartphones/hot-30-5g" + "slug": "a53-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pect30", + "name": "A53 5G 2020 Standard Edition Dual SIM TD-LTE CN 128GB PECT30", + "url": "/v1/smartphones/a53-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pect30" }, { - "slug": "hot-30i", - "name": "Hot 30i", - "url": "/v1/smartphones/hot-30i" + "slug": "a53s-2020-standard-edition-dual-sim-td-lte-v1-my-nz-za-128gb-cph2135", + "name": "A53s 2020 Standard Edition Dual SIM TD-LTE V1 MY NZ ZA 128GB CPH2135", + "url": "/v1/smartphones/a53s-2020-standard-edition-dual-sim-td-lte-v1-my-nz-za-128gb-cph2135" }, { - "slug": "hot-30i-nfc", - "name": "Hot 30i NFC", - "url": "/v1/smartphones/hot-30i-nfc" + "slug": "a53s-2020-standard-edition-global-dual-sim-td-lte-v6-128gb-cph2135", + "name": "A53s 2020 Standard Edition Global Dual SIM TD-LTE V6 128GB CPH2135", + "url": "/v1/smartphones/a53s-2020-standard-edition-global-dual-sim-td-lte-v6-128gb-cph2135" }, { - "slug": "hot-40", - "name": "Hot 40", - "url": "/v1/smartphones/hot-40" + "slug": "a54-2021", + "name": "A54 2021", + "url": "/v1/smartphones/a54-2021" }, { - "slug": "hot-40-pro", - "name": "Hot 40 Pro", - "url": "/v1/smartphones/hot-40-pro" + "slug": "a54-2021-5g-dual-sim-td-lte-jp-64gb-cph2303", + "name": "A54 2021 5G Dual SIM TD-LTE JP 64GB CPH2303", + "url": "/v1/smartphones/a54-2021-5g-dual-sim-td-lte-jp-64gb-cph2303" }, { - "slug": "hot-40i", - "name": "Hot 40i", - "url": "/v1/smartphones/hot-40i" + "slug": "a54-2021-5g-global-dual-sim-td-lte-64gb-cph2195", + "name": "A54 2021 5G Global Dual SIM TD-LTE 64GB CPH2195", + "url": "/v1/smartphones/a54-2021-5g-global-dual-sim-td-lte-64gb-cph2195" }, { - "slug": "hot-50", - "name": "Hot 50", - "url": "/v1/smartphones/hot-50" + "slug": "a54-2021-5g-global-td-lte-64gb-cph2195", + "name": "A54 2021 5G Global TD-LTE 64GB CPH2195", + "url": "/v1/smartphones/a54-2021-5g-global-td-lte-64gb-cph2195" }, { - "slug": "hot-50-5g", - "name": "Hot 50 5G", - "url": "/v1/smartphones/hot-50-5g" + "slug": "a54-2021-5g-td-lte-jp-opg02", + "name": "A54 2021 5G TD-LTE JP OPG02", + "url": "/v1/smartphones/a54-2021-5g-td-lte-jp-opg02" }, { - "slug": "hot-50-pro", - "name": "Hot 50 Pro", - "url": "/v1/smartphones/hot-50-pro" + "slug": "a54-5g", + "name": "A54 5G", + "url": "/v1/smartphones/a54-5g" }, { - "slug": "hot-50i", - "name": "Hot 50i", - "url": "/v1/smartphones/hot-50i" + "slug": "a54s-2021", + "name": "A54s 2021", + "url": "/v1/smartphones/a54s-2021" }, { - "slug": "hot-9", - "name": "Hot 9", - "url": "/v1/smartphones/hot-9" + "slug": "a54s-2021-global-dual-sim-td-lte-128gb-cph2273", + "name": "A54s 2021 Global Dual SIM TD-LTE 128GB CPH2273", + "url": "/v1/smartphones/a54s-2021-global-dual-sim-td-lte-128gb-cph2273" }, { - "slug": "hot-9-pro", - "name": "Hot 9 Pro", - "url": "/v1/smartphones/hot-9-pro" + "slug": "a55", + "name": "A55", + "url": "/v1/smartphones/a55" }, { - "slug": "huawei-mate-20-pro", - "name": "Huawei Mate 20 Pro", - "url": "/v1/smartphones/huawei-mate-20-pro" + "slug": "a55-4g-2021-dual-sim-td-lte-v1-in-128gb-cph2325", + "name": "A55 4G 2021 Dual SIM TD-LTE V1 IN 128GB CPH2325", + "url": "/v1/smartphones/a55-4g-2021-dual-sim-td-lte-v1-in-128gb-cph2325" }, { - "slug": "huawei-mate-30-pro", - "name": "Huawei Mate 30 Pro", - "url": "/v1/smartphones/huawei-mate-30-pro" + "slug": "a55-4g-2021-dual-sim-td-lte-v1-in-64gb-cph2325", + "name": "A55 4G 2021 Dual SIM TD-LTE V1 IN 64GB CPH2325", + "url": "/v1/smartphones/a55-4g-2021-dual-sim-td-lte-v1-in-64gb-cph2325" }, { - "slug": "huawei-mate-40-pro", - "name": "Huawei Mate 40 Pro", - "url": "/v1/smartphones/huawei-mate-40-pro" + "slug": "a55-5g", + "name": "A55 5G", + "url": "/v1/smartphones/a55-5g" }, { - "slug": "huawei-mate-50-pro", - "name": "Huawei Mate 50 Pro", - "url": "/v1/smartphones/huawei-mate-50-pro" + "slug": "a55-5g-2021-dual-sim-td-lte-cn-pemm00", + "name": "A55 5G 2021 Dual SIM TD-LTE CN PEMM00", + "url": "/v1/smartphones/a55-5g-2021-dual-sim-td-lte-cn-pemm00" }, { - "slug": "huawei-mate-60-pro", - "name": "Huawei Mate 60 Pro", - "url": "/v1/smartphones/huawei-mate-60-pro" + "slug": "a55s-2022", + "name": "A55s 2022", + "url": "/v1/smartphones/a55s-2022" }, { - "slug": "huawei-mate-x3", - "name": "Huawei Mate X3", - "url": "/v1/smartphones/huawei-mate-x3" + "slug": "a56", + "name": "A56", + "url": "/v1/smartphones/a56" }, { - "slug": "huawei-mate-x5", - "name": "Huawei Mate X5", - "url": "/v1/smartphones/huawei-mate-x5" + "slug": "a56-5g", + "name": "A56 5G", + "url": "/v1/smartphones/a56-5g" }, { - "slug": "huawei-mate-xt-ultimate", - "name": "Huawei Mate XT Ultimate", - "url": "/v1/smartphones/huawei-mate-xt-ultimate" + "slug": "a56-5g-2021-dual-sim-td-lte-cn-pfvm10", + "name": "A56 5G 2021 Dual SIM TD-LTE CN PFVM10", + "url": "/v1/smartphones/a56-5g-2021-dual-sim-td-lte-cn-pfvm10" }, { - "slug": "huawei-p20-pro", - "name": "Huawei P20 Pro", - "url": "/v1/smartphones/huawei-p20-pro" + "slug": "a56s", + "name": "A56s", + "url": "/v1/smartphones/a56s" }, { - "slug": "huawei-p30-pro", - "name": "Huawei P30 Pro", - "url": "/v1/smartphones/huawei-p30-pro" + "slug": "a57", + "name": "A57", + "url": "/v1/smartphones/a57" }, { - "slug": "huawei-p40-pro", - "name": "Huawei P40 Pro", - "url": "/v1/smartphones/huawei-p40-pro" + "slug": "a57-5g", + "name": "A57 5G", + "url": "/v1/smartphones/a57-5g" }, { - "slug": "huawei-p50-pro", - "name": "Huawei P50 Pro", - "url": "/v1/smartphones/huawei-p50-pro" + "slug": "a57s", + "name": "A57s", + "url": "/v1/smartphones/a57s" }, { - "slug": "huawei-p60-pro", - "name": "Huawei P60 Pro", - "url": "/v1/smartphones/huawei-p60-pro" + "slug": "a58", + "name": "A58", + "url": "/v1/smartphones/a58" }, { - "slug": "huawei-pura-70-ultra", - "name": "Huawei Pura 70 Ultra", - "url": "/v1/smartphones/huawei-pura-70-ultra" + "slug": "a58-5g", + "name": "A58 5G", + "url": "/v1/smartphones/a58-5g" }, { - "slug": "huawei-nova-12-pro", - "name": "Huawei nova 12 Pro", - "url": "/v1/smartphones/huawei-nova-12-pro" + "slug": "a58x", + "name": "A58x", + "url": "/v1/smartphones/a58x" }, { - "slug": "k10", - "name": "K10", - "url": "/v1/smartphones/k10" + "slug": "a5s", + "name": "A5s", + "url": "/v1/smartphones/a5s" }, { - "slug": "k10-2019", - "name": "K10 2019", - "url": "/v1/smartphones/k10-2019" + "slug": "a5s-dual-sim-td-lte-ru-kz-ph-v1-32gb-cph1909", + "name": "A5s Dual SIM TD-LTE RU KZ PH V1 32GB CPH1909", + "url": "/v1/smartphones/a5s-dual-sim-td-lte-ru-kz-ph-v1-32gb-cph1909" }, { - "slug": "k10-note", - "name": "K10 Note", - "url": "/v1/smartphones/k10-note" + "slug": "a5s-premium-edition", + "name": "A5s Premium Edition", + "url": "/v1/smartphones/a5s-premium-edition" }, { - "slug": "k10-plus", - "name": "K10 Plus", - "url": "/v1/smartphones/k10-plus" + "slug": "a5s-premium-edition-dual-sim-td-lte-in-id-bd-th-v3-32gb-cph1909", + "name": "A5s Premium Edition Dual SIM TD-LTE IN ID BD TH V3 32GB CPH1909", + "url": "/v1/smartphones/a5s-premium-edition-dual-sim-td-lte-in-id-bd-th-v3-32gb-cph1909" }, { - "slug": "k10-pro", - "name": "K10 Pro", - "url": "/v1/smartphones/k10-pro" + "slug": "a5s-premium-edition-dual-sim-td-lte-vn-kh-my-v2-32gb-cph1909", + "name": "A5s Premium Edition Dual SIM TD-LTE VN KH MY V2 32GB CPH1909", + "url": "/v1/smartphones/a5s-premium-edition-dual-sim-td-lte-vn-kh-my-v2-32gb-cph1909" }, { - "slug": "k10x", - "name": "K10x", - "url": "/v1/smartphones/k10x" + "slug": "a5s-standard-edition", + "name": "A5s Standard Edition", + "url": "/v1/smartphones/a5s-standard-edition" }, { - "slug": "k11-2020", - "name": "K11 2020", - "url": "/v1/smartphones/k11-2020" + "slug": "a5s-standard-edition-dual-sim-td-lte-in-id-bd-th-v3-32gb-cph1909", + "name": "A5s Standard Edition Dual SIM TD-LTE IN ID BD TH V3 32GB CPH1909", + "url": "/v1/smartphones/a5s-standard-edition-dual-sim-td-lte-in-id-bd-th-v3-32gb-cph1909" }, { - "slug": "k11-power", - "name": "K11 Power", - "url": "/v1/smartphones/k11-power" + "slug": "a6-dual-sim-td-lte-hlte700t", + "name": "A6 Dual SIM TD-LTE HLTE700T", + "url": "/v1/smartphones/a6-dual-sim-td-lte-hlte700t" }, { - "slug": "k11x", - "name": "K11x", - "url": "/v1/smartphones/k11x" + "slug": "a6-note", + "name": "A6 Note", + "url": "/v1/smartphones/a6-note" }, { - "slug": "k12-2020", - "name": "K12 2020", - "url": "/v1/smartphones/k12-2020" + "slug": "a6-note-dual-sim-td-lte-in", + "name": "A6 Note Dual SIM TD-LTE IN", + "url": "/v1/smartphones/a6-note-dual-sim-td-lte-in" }, { - "slug": "k12-plus", - "name": "K12 Plus", - "url": "/v1/smartphones/k12-plus" + "slug": "a6l-dual-sim-td-lte-128gb-hlte730t", + "name": "A6L Dual SIM TD-LTE 128GB HLTE730T", + "url": "/v1/smartphones/a6l-dual-sim-td-lte-128gb-hlte730t" }, { - "slug": "k13-note", - "name": "K13 Note", - "url": "/v1/smartphones/k13-note" + "slug": "a6l-dual-sim-td-lte-64gb-hlte730t", + "name": "A6L Dual SIM TD-LTE 64GB HLTE730T", + "url": "/v1/smartphones/a6l-dual-sim-td-lte-64gb-hlte730t" }, { - "slug": "k13-pro", - "name": "K13 Pro", - "url": "/v1/smartphones/k13-pro" + "slug": "a7-dual-sim-td-lte-cn-64gb-pbfm00", + "name": "A7 Dual SIM TD-LTE CN 64GB PBFM00", + "url": "/v1/smartphones/a7-dual-sim-td-lte-cn-64gb-pbfm00" }, { - "slug": "k14-2021", - "name": "K14 2021", - "url": "/v1/smartphones/k14-2021" + "slug": "a7-dual-sim-td-lte-pk-np-32gb-cph1901", + "name": "A7 Dual SIM TD-LTE PK NP 32GB CPH1901", + "url": "/v1/smartphones/a7-dual-sim-td-lte-pk-np-32gb-cph1901" }, { - "slug": "k14-plus-2021", - "name": "K14 Plus 2021", - "url": "/v1/smartphones/k14-plus-2021" + "slug": "a72", + "name": "A72", + "url": "/v1/smartphones/a72" }, { - "slug": "k15-plus-2022", - "name": "K15 Plus 2022", - "url": "/v1/smartphones/k15-plus-2022" + "slug": "a72-2020-global-dual-sim-td-lte-128gb-cph2067", + "name": "A72 2020 Global Dual SIM TD-LTE 128GB CPH2067", + "url": "/v1/smartphones/a72-2020-global-dual-sim-td-lte-128gb-cph2067" }, { - "slug": "k5-2019-premium-edition", - "name": "K5 2019 Premium Edition", - "url": "/v1/smartphones/k5-2019-premium-edition" + "slug": "a72-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-pdym20", + "name": "A72 5G 2020 Premium Edition Dual SIM TD-LTE CN 128GB PDYM20", + "url": "/v1/smartphones/a72-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-pdym20" }, { - "slug": "k5-2019-standard-edition", - "name": "K5 2019 Standard Edition", - "url": "/v1/smartphones/k5-2019-standard-edition" + "slug": "a72-5g-2020-premium-edition-dual-sim-td-lte-cn-256gb-pdym20", + "name": "A72 5G 2020 Premium Edition Dual SIM TD-LTE CN 256GB PDYM20", + "url": "/v1/smartphones/a72-5g-2020-premium-edition-dual-sim-td-lte-cn-256gb-pdym20" }, { - "slug": "k51s", - "name": "K51S", - "url": "/v1/smartphones/k51s" + "slug": "a72-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdym20", + "name": "A72 5G 2020 Standard Edition Dual SIM TD-LTE CN 128GB PDYM20", + "url": "/v1/smartphones/a72-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdym20" }, { - "slug": "k52", - "name": "K52", - "url": "/v1/smartphones/k52" + "slug": "a72-5g-2020-top-edition-dual-sim-td-lte-cn-128gb-pdym20", + "name": "A72 5G 2020 Top Edition Dual SIM TD-LTE CN 128GB PDYM20", + "url": "/v1/smartphones/a72-5g-2020-top-edition-dual-sim-td-lte-cn-128gb-pdym20" }, { - "slug": "k5s", - "name": "K5s", - "url": "/v1/smartphones/k5s" + "slug": "a73", + "name": "A73", + "url": "/v1/smartphones/a73" }, { - "slug": "k6-enjoy", - "name": "K6 Enjoy", - "url": "/v1/smartphones/k6-enjoy" + "slug": "a73-2020-dual-sim-td-lte-v1-my-vn-th-128gb-cph2095", + "name": "A73 2020 Dual SIM TD-LTE V1 MY VN TH 128GB CPH2095", + "url": "/v1/smartphones/a73-2020-dual-sim-td-lte-v1-my-vn-th-128gb-cph2095" }, { - "slug": "k61", - "name": "K61", - "url": "/v1/smartphones/k61" + "slug": "a73-2020-dual-sim-td-lte-v3-jp-64gb-cph2099", + "name": "A73 2020 Dual SIM TD-LTE V3 JP 64GB CPH2099", + "url": "/v1/smartphones/a73-2020-dual-sim-td-lte-v3-jp-64gb-cph2099" }, { - "slug": "k62", - "name": "K62", - "url": "/v1/smartphones/k62" + "slug": "a73-2020-global-dual-sim-td-lte-v2-128gb-cph2095", + "name": "A73 2020 Global Dual SIM TD-LTE V2 128GB CPH2095", + "url": "/v1/smartphones/a73-2020-global-dual-sim-td-lte-v2-128gb-cph2095" }, { - "slug": "k7-2020", - "name": "K7 2020", - "url": "/v1/smartphones/k7-2020" + "slug": "a73-5g-2020-dual-sim-td-lte-v3-tw-128gb-cph2161", + "name": "A73 5G 2020 Dual SIM TD-LTE V3 TW 128GB CPH2161", + "url": "/v1/smartphones/a73-5g-2020-dual-sim-td-lte-v3-tw-128gb-cph2161" }, { - "slug": "k7-5g", - "name": "K7 5G", - "url": "/v1/smartphones/k7-5g" + "slug": "a73-5g-2020-global-dual-sim-td-lte-v1-128gb-cph2161", + "name": "A73 5G 2020 Global Dual SIM TD-LTE V1 128GB CPH2161", + "url": "/v1/smartphones/a73-5g-2020-global-dual-sim-td-lte-v1-128gb-cph2161" }, { - "slug": "k71", - "name": "K71", - "url": "/v1/smartphones/k71" + "slug": "a73s", + "name": "A73s", + "url": "/v1/smartphones/a73s" }, { - "slug": "k7x", - "name": "K7x", - "url": "/v1/smartphones/k7x" + "slug": "a73s-dual-sim-td-lte-tw-cph1859-f7-youth", + "name": "A73s Dual SIM TD-LTE TW CPH1859 / F7 Youth", + "url": "/v1/smartphones/a73s-dual-sim-td-lte-tw-cph1859-f7-youth" }, { - "slug": "k7x-2020", - "name": "K7x 2020", - "url": "/v1/smartphones/k7x-2020" + "slug": "a74-2021", + "name": "A74 2021", + "url": "/v1/smartphones/a74-2021" }, { - "slug": "k9-2021", - "name": "K9 2021", - "url": "/v1/smartphones/k9-2021" + "slug": "a74-2021-5g-global-dual-sim-td-lte-128gb-cph2197", + "name": "A74 2021 5G Global Dual SIM TD-LTE 128GB CPH2197", + "url": "/v1/smartphones/a74-2021-5g-global-dual-sim-td-lte-128gb-cph2197" }, { - "slug": "k9-5g", - "name": "K9 5G", - "url": "/v1/smartphones/k9-5g" + "slug": "a74-2021-premium-edition-dual-sim-td-lte-v2-au-my-th-128gb-cph2219", + "name": "A74 2021 Premium Edition Dual SIM TD-LTE V2 AU MY TH 128GB CPH2219", + "url": "/v1/smartphones/a74-2021-premium-edition-dual-sim-td-lte-v2-au-my-th-128gb-cph2219" }, { - "slug": "k9-pro", - "name": "K9 Pro", - "url": "/v1/smartphones/k9-pro" + "slug": "a74-2021-standard-edition-dual-sim-td-lte-v2-kz-128gb-cph2219", + "name": "A74 2021 Standard Edition Dual SIM TD-LTE V2 KZ 128GB CPH2219", + "url": "/v1/smartphones/a74-2021-standard-edition-dual-sim-td-lte-v2-kz-128gb-cph2219" }, { - "slug": "k9-pro-5g", - "name": "K9 Pro 5G", - "url": "/v1/smartphones/k9-pro-5g" + "slug": "a74-2021-top-edition-dual-sim-td-lte-v2-vn-128gb-cph2219", + "name": "A74 2021 Top Edition Dual SIM TD-LTE V2 VN 128GB CPH2219", + "url": "/v1/smartphones/a74-2021-top-edition-dual-sim-td-lte-v2-vn-128gb-cph2219" }, { - "slug": "k92-5g", - "name": "K92 5G", - "url": "/v1/smartphones/k92-5g" + "slug": "a76-2022-premium-edition-dual-sim-td-lte-id-in-pk-np-bd-v1-128gb-cph2375", + "name": "A76 2022 Premium Edition Dual SIM TD-LTE ID IN PK NP BD V1 128GB CPH2375", + "url": "/v1/smartphones/a76-2022-premium-edition-dual-sim-td-lte-id-in-pk-np-bd-v1-128gb-cph2375" }, { - "slug": "k9s", - "name": "K9s", - "url": "/v1/smartphones/k9s" + "slug": "a76-2022-premium-edition-global-dual-sim-td-lte-v2-128gb-cph2375", + "name": "A76 2022 Premium Edition Global Dual SIM TD-LTE V2 128GB CPH2375", + "url": "/v1/smartphones/a76-2022-premium-edition-global-dual-sim-td-lte-v2-128gb-cph2375" }, { - "slug": "k9x", - "name": "K9x", - "url": "/v1/smartphones/k9x" + "slug": "a76-2022-standard-edition-global-dual-sim-td-lte-v2-128gb-cph2375", + "name": "A76 2022 Standard Edition Global Dual SIM TD-LTE V2 128GB CPH2375", + "url": "/v1/smartphones/a76-2022-standard-edition-global-dual-sim-td-lte-v2-128gb-cph2375" }, { - "slug": "lg-g2", - "name": "LG G2", - "url": "/v1/smartphones/lg-g2" + "slug": "a76-2022-standard-edition-global-dual-sim-td-lte-v2-256gb-cph2375", + "name": "A76 2022 Standard Edition Global Dual SIM TD-LTE V2 256GB CPH2375", + "url": "/v1/smartphones/a76-2022-standard-edition-global-dual-sim-td-lte-v2-256gb-cph2375" }, { - "slug": "lg-g3", - "name": "LG G3", - "url": "/v1/smartphones/lg-g3" + "slug": "a77", + "name": "A77", + "url": "/v1/smartphones/a77" }, { - "slug": "lg-g4", - "name": "LG G4", - "url": "/v1/smartphones/lg-g4" + "slug": "a78", + "name": "A78", + "url": "/v1/smartphones/a78" }, { - "slug": "lg-g5", - "name": "LG G5", - "url": "/v1/smartphones/lg-g5" + "slug": "a7n", + "name": "A7n", + "url": "/v1/smartphones/a7n" }, { - "slug": "lg-g6", - "name": "LG G6", - "url": "/v1/smartphones/lg-g6" + "slug": "a7n-dual-sim-td-lte-cn-pcdm00", + "name": "A7n Dual SIM TD-LTE CN PCDM00", + "url": "/v1/smartphones/a7n-dual-sim-td-lte-cn-pcdm00" }, { - "slug": "lg-g7-thinq", - "name": "LG G7 ThinQ", - "url": "/v1/smartphones/lg-g7-thinq" + "slug": "a7n-dual-sim-td-lte-cn-pcdt00", + "name": "A7n Dual SIM TD-LTE CN PCDT00", + "url": "/v1/smartphones/a7n-dual-sim-td-lte-cn-pcdt00" }, { - "slug": "lg-g8-thinq", - "name": "LG G8 ThinQ", - "url": "/v1/smartphones/lg-g8-thinq" + "slug": "a7x", + "name": "A7x", + "url": "/v1/smartphones/a7x" }, { - "slug": "lg-v20", - "name": "LG V20", - "url": "/v1/smartphones/lg-v20" + "slug": "a7x-dual-sim-td-lte-cn-128gb-pbbm00", + "name": "A7x Dual SIM TD-LTE CN 128GB PBBM00", + "url": "/v1/smartphones/a7x-dual-sim-td-lte-cn-128gb-pbbm00" }, { - "slug": "lg-v30", - "name": "LG V30", - "url": "/v1/smartphones/lg-v30" + "slug": "a7x-dual-sim-td-lte-cn-64gb-pbbm00", + "name": "A7x Dual SIM TD-LTE CN 64GB PBBM00", + "url": "/v1/smartphones/a7x-dual-sim-td-lte-cn-64gb-pbbm00" }, { - "slug": "lg-v40-thinq", - "name": "LG V40 ThinQ", - "url": "/v1/smartphones/lg-v40-thinq" + "slug": "a7x-dual-sim-td-lte-cn-64gb-pbbt00", + "name": "A7x Dual SIM TD-LTE CN 64GB PBBT00", + "url": "/v1/smartphones/a7x-dual-sim-td-lte-cn-64gb-pbbt00" }, { - "slug": "lg-v50-thinq", - "name": "LG V50 ThinQ 5G", - "url": "/v1/smartphones/lg-v50-thinq" + "slug": "a8-2019", + "name": "A8 2019", + "url": "/v1/smartphones/a8-2019" }, { - "slug": "lg-v60-thinq", - "name": "LG V60 ThinQ 5G", - "url": "/v1/smartphones/lg-v60-thinq" + "slug": "a8-2019-dual-sim-td-lte-cn-pdbm00", + "name": "A8 2019 Dual SIM TD-LTE CN PDBM00", + "url": "/v1/smartphones/a8-2019-dual-sim-td-lte-cn-pdbm00" }, { - "slug": "legion-phone-2-pro", - "name": "Legion Phone 2 Pro", - "url": "/v1/smartphones/legion-phone-2-pro" + "slug": "a80", + "name": "A80", + "url": "/v1/smartphones/a80" }, { - "slug": "legion-phone-duel", - "name": "Legion Phone Duel", - "url": "/v1/smartphones/legion-phone-duel" + "slug": "a83", + "name": "A83", + "url": "/v1/smartphones/a83" }, { - "slug": "legion-phone-duel-2", - "name": "Legion Phone Duel 2", - "url": "/v1/smartphones/legion-phone-duel-2" + "slug": "a83-2018", + "name": "A83 2018", + "url": "/v1/smartphones/a83-2018" }, { - "slug": "legion-phone-pro", - "name": "Legion Phone Pro", - "url": "/v1/smartphones/legion-phone-pro" + "slug": "a83-2018-dual-sim-td-lte-in-id-th-16gb", + "name": "A83 2018 Dual SIM TD-LTE IN ID TH 16GB", + "url": "/v1/smartphones/a83-2018-dual-sim-td-lte-in-id-th-16gb" }, { - "slug": "legion-y70", - "name": "Legion Y70", - "url": "/v1/smartphones/legion-y70" + "slug": "a83-2018-dual-sim-td-lte-in-id-th-64gb", + "name": "A83 2018 Dual SIM TD-LTE IN ID TH 64GB", + "url": "/v1/smartphones/a83-2018-dual-sim-td-lte-in-id-th-64gb" }, { - "slug": "legion-y90", - "name": "Legion Y90", - "url": "/v1/smartphones/legion-y90" + "slug": "a83-dual-sim-td-lte-my-vn-eg-pk", + "name": "A83 Dual SIM TD-LTE MY VN EG PK", + "url": "/v1/smartphones/a83-dual-sim-td-lte-my-vn-eg-pk" }, { - "slug": "m2-pro", - "name": "M2 Pro", - "url": "/v1/smartphones/m2-pro" + "slug": "a83-dual-sim-td-lte-ru-kz-ph-ke", + "name": "A83 Dual SIM TD-LTE RU KZ PH KE", + "url": "/v1/smartphones/a83-dual-sim-td-lte-ru-kz-ph-ke" }, { - "slug": "m3", - "name": "M3", - "url": "/v1/smartphones/m3" + "slug": "a9-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-np-bd-128gb-cph1939", + "name": "A9 2020 Premium Edition Dual SIM TD-LTE V1 IN ID PK NP BD 128GB CPH1939", + "url": "/v1/smartphones/a9-2020-premium-edition-dual-sim-td-lte-v1-in-id-pk-np-bd-128gb-cph1939" }, { - "slug": "m3-pro-5g", - "name": "M3 Pro 5G", - "url": "/v1/smartphones/m3-pro-5g" + "slug": "a9-2020-premium-edition-dual-sim-td-lte-v2-my-vn-th-128gb-cph1939", + "name": "A9 2020 Premium Edition Dual SIM TD-LTE V2 MY VN TH 128GB CPH1939", + "url": "/v1/smartphones/a9-2020-premium-edition-dual-sim-td-lte-v2-my-vn-th-128gb-cph1939" }, { - "slug": "m4-pro", - "name": "M4 Pro", - "url": "/v1/smartphones/m4-pro" + "slug": "a9-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph1939", + "name": "A9 2020 Premium Edition Global Dual SIM TD-LTE V3 128GB CPH1939", + "url": "/v1/smartphones/a9-2020-premium-edition-global-dual-sim-td-lte-v3-128gb-cph1939" }, { - "slug": "m4-pro-5g", - "name": "M4 Pro 5G", - "url": "/v1/smartphones/m4-pro-5g" + "slug": "a9-2020-premium-edition-global-dual-sim-td-lte-v4-128gb-cph1941", + "name": "A9 2020 Premium Edition Global Dual SIM TD-LTE V4 128GB CPH1941", + "url": "/v1/smartphones/a9-2020-premium-edition-global-dual-sim-td-lte-v4-128gb-cph1941" }, { - "slug": "m5", - "name": "M5", - "url": "/v1/smartphones/m5" + "slug": "a9-2020-standard-edition-dual-sim-td-lte-v1-in-pk-128gb-cph1937", + "name": "A9 2020 Standard Edition Dual SIM TD-LTE V1 IN PK 128GB CPH1937", + "url": "/v1/smartphones/a9-2020-standard-edition-dual-sim-td-lte-v1-in-pk-128gb-cph1937" }, { - "slug": "m5s", - "name": "M5s", - "url": "/v1/smartphones/m5s" + "slug": "a9-2020-standard-edition-dual-sim-td-lte-v2-my-vn-th-128gb-cph1937", + "name": "A9 2020 Standard Edition Dual SIM TD-LTE V2 MY VN TH 128GB CPH1937", + "url": "/v1/smartphones/a9-2020-standard-edition-dual-sim-td-lte-v2-my-vn-th-128gb-cph1937" }, { - "slug": "m6", - "name": "M6", - "url": "/v1/smartphones/m6" + "slug": "a9-2020-standard-edition-global-dual-sim-td-lte-v4-128gb-cph1941", + "name": "A9 2020 Standard Edition Global Dual SIM TD-LTE V4 128GB CPH1941", + "url": "/v1/smartphones/a9-2020-standard-edition-global-dual-sim-td-lte-v4-128gb-cph1941" }, { - "slug": "m6-pro", - "name": "M6 Pro", - "url": "/v1/smartphones/m6-pro" + "slug": "a9-premium-edition", + "name": "A9 Premium Edition", + "url": "/v1/smartphones/a9-premium-edition" }, { - "slug": "magic-v", - "name": "Magic V", - "url": "/v1/smartphones/magic-v" + "slug": "a9-premium-edition-dual-sim-td-lte-cn-128gb-pcam10", + "name": "A9 Premium Edition Dual SIM TD-LTE CN 128GB PCAM10", + "url": "/v1/smartphones/a9-premium-edition-dual-sim-td-lte-cn-128gb-pcam10" }, { - "slug": "magic-v2", - "name": "Magic V2", - "url": "/v1/smartphones/magic-v2" + "slug": "a9-premium-edition-dual-sim-td-lte-cn-128gb-pcat10", + "name": "A9 Premium Edition Dual SIM TD-LTE CN 128GB PCAT10", + "url": "/v1/smartphones/a9-premium-edition-dual-sim-td-lte-cn-128gb-pcat10" }, { - "slug": "magic-v3", - "name": "Magic V3", - "url": "/v1/smartphones/magic-v3" + "slug": "a9-standard-edition", + "name": "A9 Standard Edition", + "url": "/v1/smartphones/a9-standard-edition" }, { - "slug": "magic-vs", - "name": "Magic Vs", - "url": "/v1/smartphones/magic-vs" + "slug": "a9-standard-edition-dual-sim-td-lte-cn-128gb-pcam10", + "name": "A9 Standard Edition Dual SIM TD-LTE CN 128GB PCAM10", + "url": "/v1/smartphones/a9-standard-edition-dual-sim-td-lte-cn-128gb-pcam10" }, { - "slug": "magic3", - "name": "Magic3", - "url": "/v1/smartphones/magic3" + "slug": "a91-2019", + "name": "A91 2019", + "url": "/v1/smartphones/a91-2019" }, { - "slug": "magic3-pro", - "name": "Magic3 Pro", - "url": "/v1/smartphones/magic3-pro" + "slug": "a91-2019-dual-sim-td-lte-cn-128gb-pcpm00", + "name": "A91 2019 Dual SIM TD-LTE CN 128GB PCPM00", + "url": "/v1/smartphones/a91-2019-dual-sim-td-lte-cn-128gb-pcpm00" }, { - "slug": "magic4", - "name": "Magic4", - "url": "/v1/smartphones/magic4" + "slug": "a92-2020-dual-sim-td-lte-apac", + "name": "A92 2020 Dual SIM TD-LTE APAC", + "url": "/v1/smartphones/a92-2020-dual-sim-td-lte-apac" }, { - "slug": "magic4-pro", - "name": "Magic4 Pro", - "url": "/v1/smartphones/magic4-pro" + "slug": "a92s", + "name": "A92s", + "url": "/v1/smartphones/a92s" }, { - "slug": "magic4-ultimate", - "name": "Magic4 Ultimate", - "url": "/v1/smartphones/magic4-ultimate" + "slug": "a92s-5g-2020-premum-edition-dual-sim-td-lte-cn-128gb-pdkm00", + "name": "A92s 5G 2020 Premum Edition Dual SIM TD-LTE CN 128GB PDKM00", + "url": "/v1/smartphones/a92s-5g-2020-premum-edition-dual-sim-td-lte-cn-128gb-pdkm00" }, { - "slug": "magic5", - "name": "Magic5", - "url": "/v1/smartphones/magic5" + "slug": "a92s-5g-2020-premum-edition-dual-sim-td-lte-cn-256gb-pdkm00", + "name": "A92s 5G 2020 Premum Edition Dual SIM TD-LTE CN 256GB PDKM00", + "url": "/v1/smartphones/a92s-5g-2020-premum-edition-dual-sim-td-lte-cn-256gb-pdkm00" }, { - "slug": "magic5-pro", - "name": "Magic5 Pro", - "url": "/v1/smartphones/magic5-pro" + "slug": "a92s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdkm00", + "name": "A92s 5G 2020 Standard Edition Dual SIM TD-LTE CN 128GB PDKM00", + "url": "/v1/smartphones/a92s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdkm00" }, { - "slug": "magic5-ultimate", - "name": "Magic5 Ultimate", - "url": "/v1/smartphones/magic5-ultimate" + "slug": "a92s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdkt00", + "name": "A92s 5G 2020 Standard Edition Dual SIM TD-LTE CN 128GB PDKT00", + "url": "/v1/smartphones/a92s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdkt00" }, { - "slug": "magic6", - "name": "Magic6", - "url": "/v1/smartphones/magic6" + "slug": "a93-2020", + "name": "A93 2020", + "url": "/v1/smartphones/a93-2020" }, { - "slug": "magic6-pro", - "name": "Magic6 Pro", - "url": "/v1/smartphones/magic6-pro" + "slug": "a93-2020-dual-sim-td-lte-v2-my-vn-128gb-cph2125-reno4-f", + "name": "A93 2020 Dual SIM TD-LTE V2 MY VN 128GB CPH2125 / Reno4 F", + "url": "/v1/smartphones/a93-2020-dual-sim-td-lte-v2-my-vn-128gb-cph2125-reno4-f" }, { - "slug": "magic6-ultimate", - "name": "Magic6 Ultimate", - "url": "/v1/smartphones/magic6-ultimate" + "slug": "a93-2021", + "name": "A93 2021", + "url": "/v1/smartphones/a93-2021" }, { - "slug": "magic7", - "name": "Magic7", - "url": "/v1/smartphones/magic7" + "slug": "a93-2021-5g-dual-sim-td-lte-cn-128gb-pehm00", + "name": "A93 2021 5G Dual SIM TD-LTE CN 128GB PEHM00", + "url": "/v1/smartphones/a93-2021-5g-dual-sim-td-lte-cn-128gb-pehm00" }, { - "slug": "magic7-pro", - "name": "Magic7 Pro", - "url": "/v1/smartphones/magic7-pro" + "slug": "a93-2021-5g-dual-sim-td-lte-cn-128gb-peht00", + "name": "A93 2021 5G Dual SIM TD-LTE CN 128GB PEHT00", + "url": "/v1/smartphones/a93-2021-5g-dual-sim-td-lte-cn-128gb-peht00" }, { - "slug": "magic7-ultimate", - "name": "Magic7 Ultimate", - "url": "/v1/smartphones/magic7-ultimate" + "slug": "a93-2021-5g-dual-sim-td-lte-cn-256gb-pehm00", + "name": "A93 2021 5G Dual SIM TD-LTE CN 256GB PEHM00", + "url": "/v1/smartphones/a93-2021-5g-dual-sim-td-lte-cn-256gb-pehm00" }, { - "slug": "maimang-10-se", - "name": "Maimang 10 SE", - "url": "/v1/smartphones/maimang-10-se" + "slug": "a93s", + "name": "A93s", + "url": "/v1/smartphones/a93s" }, { - "slug": "maimang-9", - "name": "Maimang 9", - "url": "/v1/smartphones/maimang-9" + "slug": "a93s-5g-2021-dual-sim-td-lte-cn-128gb-pfgm00", + "name": "A93s 5G 2021 Dual SIM TD-LTE CN 128GB PFGM00", + "url": "/v1/smartphones/a93s-5g-2021-dual-sim-td-lte-cn-128gb-pfgm00" }, { - "slug": "mate-50", - "name": "Mate 50", - "url": "/v1/smartphones/mate-50" + "slug": "a93s-5g-2021-dual-sim-td-lte-cn-256gb-pfgm00", + "name": "A93s 5G 2021 Dual SIM TD-LTE CN 256GB PFGM00", + "url": "/v1/smartphones/a93s-5g-2021-dual-sim-td-lte-cn-256gb-pfgm00" }, { - "slug": "mate-50-pro", - "name": "Mate 50 Pro", - "url": "/v1/smartphones/mate-50-pro" + "slug": "a94-2021", + "name": "A94 2021", + "url": "/v1/smartphones/a94-2021" }, { - "slug": "mate-50-rs-porsche-design", - "name": "Mate 50 RS PORSCHE DESIGN", - "url": "/v1/smartphones/mate-50-rs-porsche-design" + "slug": "a94-2021-dual-sim-td-lte-v2-th-ae-128gb-cph2203", + "name": "A94 2021 Dual SIM TD-LTE V2 TH AE 128GB CPH2203", + "url": "/v1/smartphones/a94-2021-dual-sim-td-lte-v2-th-ae-128gb-cph2203" }, { - "slug": "mate-50e", - "name": "Mate 50E", - "url": "/v1/smartphones/mate-50e" + "slug": "a94-2021-dual-sim-td-lte-v3-ph-sg-eg-128gb-cph2203", + "name": "A94 2021 Dual SIM TD-LTE V3 PH SG EG 128GB CPH2203", + "url": "/v1/smartphones/a94-2021-dual-sim-td-lte-v3-ph-sg-eg-128gb-cph2203" }, { - "slug": "mate-60", - "name": "Mate 60", - "url": "/v1/smartphones/mate-60" + "slug": "a95", + "name": "A95", + "url": "/v1/smartphones/a95" }, { - "slug": "mate-60-pro", - "name": "Mate 60 Pro", - "url": "/v1/smartphones/mate-60-pro" + "slug": "a95-5g-2021-dual-sim-td-lte-cn-128gb-pelm00", + "name": "A95 5G 2021 Dual SIM TD-LTE CN 128GB PELM00", + "url": "/v1/smartphones/a95-5g-2021-dual-sim-td-lte-cn-128gb-pelm00" }, { - "slug": "mate-70", - "name": "Mate 70", - "url": "/v1/smartphones/mate-70" + "slug": "a95-5g-2021-dual-sim-td-lte-cn-256gb-pelm00", + "name": "A95 5G 2021 Dual SIM TD-LTE CN 256GB PELM00", + "url": "/v1/smartphones/a95-5g-2021-dual-sim-td-lte-cn-256gb-pelm00" }, { - "slug": "mate-70-pro", - "name": "Mate 70 Pro", - "url": "/v1/smartphones/mate-70-pro" + "slug": "a97", + "name": "A97", + "url": "/v1/smartphones/a97" }, { - "slug": "mate-x6", - "name": "Mate X6", - "url": "/v1/smartphones/mate-x6" + "slug": "a9x", + "name": "A9x", + "url": "/v1/smartphones/a9x" }, { - "slug": "mate-xt", - "name": "Mate XT", - "url": "/v1/smartphones/mate-xt" + "slug": "a9x-dual-sim-td-lte-cn-128gb-pcem00", + "name": "A9x Dual SIM TD-LTE CN 128GB PCEM00", + "url": "/v1/smartphones/a9x-dual-sim-td-lte-cn-128gb-pcem00" }, { - "slug": "mate-xs-2", - "name": "Mate Xs 2", - "url": "/v1/smartphones/mate-xs-2" + "slug": "a9x-dual-sim-td-lte-cn-128gb-pcet00", + "name": "A9x Dual SIM TD-LTE CN 128GB PCET00", + "url": "/v1/smartphones/a9x-dual-sim-td-lte-cn-128gb-pcet00" }, { - "slug": "mi-10", - "name": "Mi 10", - "url": "/v1/smartphones/mi-10" + "slug": "aquos-r2-compact-td-lte-jp-803sh", + "name": "AQUOS R2 Compact TD-LTE JP 803SH", + "url": "/v1/smartphones/aquos-r2-compact-td-lte-jp-803sh" }, { - "slug": "mi-10-lite", - "name": "Mi 10 Lite", - "url": "/v1/smartphones/mi-10-lite" + "slug": "aquos-r2-compact-td-lte-jp-sh-m09", + "name": "AQUOS R2 Compact TD-LTE JP SH-M09", + "url": "/v1/smartphones/aquos-r2-compact-td-lte-jp-sh-m09" }, { - "slug": "mi-10-lite-zoom", - "name": "Mi 10 Lite Zoom", - "url": "/v1/smartphones/mi-10-lite-zoom" + "slug": "aquos-r2-td-lte-jp-706sh", + "name": "AQUOS R2 TD-LTE JP 706SH", + "url": "/v1/smartphones/aquos-r2-td-lte-jp-706sh" }, { - "slug": "mi-10-pro", - "name": "Mi 10 Pro", - "url": "/v1/smartphones/mi-10-pro" + "slug": "aquos-r2-wimax-2-shv42", + "name": "AQUOS R2 WiMAX 2+ SHV42", + "url": "/v1/smartphones/aquos-r2-wimax-2-shv42" }, { - "slug": "mi-10-ultra-premium-edition", - "name": "Mi 10 Ultra Premium Edition", - "url": "/v1/smartphones/mi-10-ultra-premium-edition" + "slug": "aquos-s3-dual-sim-td-lte-128gb-fs8015", + "name": "AQUOS S3 Dual SIM TD-LTE 128GB FS8015", + "url": "/v1/smartphones/aquos-s3-dual-sim-td-lte-128gb-fs8015" }, { - "slug": "mi-10-ultra-standard-edition", - "name": "Mi 10 Ultra Standard Edition", - "url": "/v1/smartphones/mi-10-ultra-standard-edition" + "slug": "aquos-v-global-dual-sim-lte-sh-c02", + "name": "AQUOS V Global Dual SIM LTE SH-C02", + "url": "/v1/smartphones/aquos-v-global-dual-sim-lte-sh-c02" }, { - "slug": "mi-10-youth-premium-edition", - "name": "Mi 10 Youth Premium Edition", - "url": "/v1/smartphones/mi-10-youth-premium-edition" + "slug": "aquos-zero-td-lte-801sh", + "name": "AQUOS zero TD-LTE 801SH", + "url": "/v1/smartphones/aquos-zero-td-lte-801sh" }, { - "slug": "mi-10-youth-standard-edition", - "name": "Mi 10 Youth Standard Edition", - "url": "/v1/smartphones/mi-10-youth-standard-edition" + "slug": "aquos-zero-td-lte-apac-sh-z10", + "name": "AQUOS zero TD-LTE APAC SH-Z10", + "url": "/v1/smartphones/aquos-zero-td-lte-apac-sh-z10" }, { - "slug": "mi-10s", - "name": "Mi 10S", - "url": "/v1/smartphones/mi-10s" + "slug": "aquos-zero-td-lte-jp-sh-m10", + "name": "AQUOS zero TD-LTE JP SH-M10", + "url": "/v1/smartphones/aquos-zero-td-lte-jp-sh-m10" }, { - "slug": "mi-10t", - "name": "Mi 10T", - "url": "/v1/smartphones/mi-10t" + "slug": "aquos-zero2-global-dual-sim-td-lte-sh-m13", + "name": "AQUOS zero2 Global Dual SIM TD-LTE SH-M13", + "url": "/v1/smartphones/aquos-zero2-global-dual-sim-td-lte-sh-m13" }, { - "slug": "mi-10t-lite", - "name": "Mi 10T Lite", - "url": "/v1/smartphones/mi-10t-lite" + "slug": "aquos-zero2-td-lte-jp-sh-01m", + "name": "AQUOS zero2 TD-LTE JP SH-01M", + "url": "/v1/smartphones/aquos-zero2-td-lte-jp-sh-01m" }, { - "slug": "mi-10t-pro", - "name": "Mi 10T Pro", - "url": "/v1/smartphones/mi-10t-pro" + "slug": "aquos-zero2-td-lte-jp-softbank", + "name": "AQUOS zero2 TD-LTE JP SoftBank", + "url": "/v1/smartphones/aquos-zero2-td-lte-jp-softbank" }, { - "slug": "mi-10i", - "name": "Mi 10i", - "url": "/v1/smartphones/mi-10i" + "slug": "aquos-zero2-wimax-2-shv47", + "name": "AQUOS zero2 WiMAX 2+ SHV47", + "url": "/v1/smartphones/aquos-zero2-wimax-2-shv47" }, { - "slug": "mi-11", - "name": "Mi 11", - "url": "/v1/smartphones/mi-11" + "slug": "as110-k-series-k3-2017-lte", + "name": "AS110 K Series K3 2017 LTE", + "url": "/v1/smartphones/as110-k-series-k3-2017-lte" }, { - "slug": "mi-11-lite", - "name": "Mi 11 Lite", - "url": "/v1/smartphones/mi-11-lite" + "slug": "asus-rog-phone-10-pro-edition", + "name": "ASUS ROG Phone 10 Pro Edition", + "url": "/v1/smartphones/asus-rog-phone-10-pro-edition" }, { - "slug": "mi-11-lite-ne", - "name": "Mi 11 Lite NE", - "url": "/v1/smartphones/mi-11-lite-ne" + "slug": "asus-rog-phone-5", + "name": "ASUS ROG Phone 5", + "url": "/v1/smartphones/asus-rog-phone-5" }, { - "slug": "mi-11-pro", - "name": "Mi 11 Pro", - "url": "/v1/smartphones/mi-11-pro" + "slug": "asus-rog-phone-6", + "name": "ASUS ROG Phone 6", + "url": "/v1/smartphones/asus-rog-phone-6" }, { - "slug": "mi-11-ultra", - "name": "Mi 11 Ultra", - "url": "/v1/smartphones/mi-11-ultra" + "slug": "asus-rog-phone-7", + "name": "ASUS ROG Phone 7", + "url": "/v1/smartphones/asus-rog-phone-7" }, { - "slug": "mi-11-youth", - "name": "Mi 11 Youth", - "url": "/v1/smartphones/mi-11-youth" + "slug": "asus-rog-phone-8-pro", + "name": "ASUS ROG Phone 8 Pro", + "url": "/v1/smartphones/asus-rog-phone-8-pro" }, { - "slug": "mi-11-youth-vitality-edition", - "name": "Mi 11 Youth Vitality Edition", - "url": "/v1/smartphones/mi-11-youth-vitality-edition" + "slug": "asus-rog-phone-9", + "name": "ASUS ROG Phone 9", + "url": "/v1/smartphones/asus-rog-phone-9" }, { - "slug": "mi-11t", - "name": "Mi 11T", - "url": "/v1/smartphones/mi-11t" + "slug": "asus-rog-phone-9-pro", + "name": "ASUS ROG Phone 9 Pro", + "url": "/v1/smartphones/asus-rog-phone-9-pro" }, { - "slug": "mi-11t-pro", - "name": "Mi 11T Pro", - "url": "/v1/smartphones/mi-11t-pro" + "slug": "asus-zenfone-7-pro", + "name": "ASUS ZenFone 7 Pro", + "url": "/v1/smartphones/asus-zenfone-7-pro" }, { - "slug": "mi-11x", - "name": "Mi 11X", - "url": "/v1/smartphones/mi-11x" + "slug": "asus-zenfone-8", + "name": "ASUS ZenFone 8", + "url": "/v1/smartphones/asus-zenfone-8" }, { - "slug": "mi-11x-pro", - "name": "Mi 11X Pro", - "url": "/v1/smartphones/mi-11x-pro" + "slug": "asus-zenfone-10", + "name": "ASUS Zenfone 10", + "url": "/v1/smartphones/asus-zenfone-10" }, { - "slug": "mi-11i", - "name": "Mi 11i", - "url": "/v1/smartphones/mi-11i" + "slug": "asus-zenfone-11-ultra", + "name": "ASUS Zenfone 11 Ultra", + "url": "/v1/smartphones/asus-zenfone-11-ultra" }, { - "slug": "mi-12", - "name": "Mi 12", - "url": "/v1/smartphones/mi-12" + "slug": "asus-zenfone-9", + "name": "ASUS Zenfone 9", + "url": "/v1/smartphones/asus-zenfone-9" }, { - "slug": "mi-12-lite", - "name": "Mi 12 Lite", - "url": "/v1/smartphones/mi-12-lite" + "slug": "ax5-dual-sim-td-lte-tw-cph1851", + "name": "AX5 Dual SIM TD-LTE TW CPH1851", + "url": "/v1/smartphones/ax5-dual-sim-td-lte-tw-cph1851" }, { - "slug": "mi-12-pro", - "name": "Mi 12 Pro", - "url": "/v1/smartphones/mi-12-pro" + "slug": "ax5s-standard-edition", + "name": "AX5s Standard Edition", + "url": "/v1/smartphones/ax5s-standard-edition" }, { - "slug": "mi-12s", - "name": "Mi 12S", - "url": "/v1/smartphones/mi-12s" + "slug": "ax5s-standard-edition-dual-sim-td-lte-tw-sg-au-64gb-cph1920", + "name": "AX5s Standard Edition Dual SIM TD-LTE TW SG AU 64GB CPH1920", + "url": "/v1/smartphones/ax5s-standard-edition-dual-sim-td-lte-tw-sg-au-64gb-cph1920" }, { - "slug": "mi-12s-pro", - "name": "Mi 12S Pro", - "url": "/v1/smartphones/mi-12s-pro" + "slug": "ax7-dual-sim-td-lte-jp-64gb-cph1903", + "name": "AX7 Dual SIM TD-LTE JP 64GB CPH1903", + "url": "/v1/smartphones/ax7-dual-sim-td-lte-jp-64gb-cph1903" }, { - "slug": "mi-12s-ultra", - "name": "Mi 12S Ultra", - "url": "/v1/smartphones/mi-12s-ultra" + "slug": "ax7-global-dual-sim-td-lte-64gb-cph1903", + "name": "AX7 Global Dual SIM TD-LTE 64GB CPH1903", + "url": "/v1/smartphones/ax7-global-dual-sim-td-lte-64gb-cph1903" }, { - "slug": "mi-12t", - "name": "Mi 12T", - "url": "/v1/smartphones/mi-12t" + "slug": "ace", + "name": "Ace", + "url": "/v1/smartphones/ace" }, { - "slug": "mi-12t-pro", - "name": "Mi 12T Pro", - "url": "/v1/smartphones/mi-12t-pro" + "slug": "ace-2", + "name": "Ace 2", + "url": "/v1/smartphones/ace-2" }, { - "slug": "mi-12x", - "name": "Mi 12X", - "url": "/v1/smartphones/mi-12x" + "slug": "ace-pro", + "name": "Ace Pro", + "url": "/v1/smartphones/ace-pro" }, { - "slug": "mi-13", - "name": "Mi 13", - "url": "/v1/smartphones/mi-13" + "slug": "ace-racing", + "name": "Ace Racing", + "url": "/v1/smartphones/ace-racing" }, { - "slug": "mi-13-lite", - "name": "Mi 13 Lite", - "url": "/v1/smartphones/mi-13-lite" + "slug": "ace2-2020-eva-limited-edition", + "name": "Ace2 2020 EVA Limited Edition", + "url": "/v1/smartphones/ace2-2020-eva-limited-edition" }, { - "slug": "mi-13-pro", - "name": "Mi 13 Pro", - "url": "/v1/smartphones/mi-13-pro" + "slug": "ace2-2020-eva-limited-edition-dual-sim-td-lte-cn-256gb-pdhm00", + "name": "Ace2 2020 EVA Limited Edition Dual SIM TD-LTE CN 256GB PDHM00", + "url": "/v1/smartphones/ace2-2020-eva-limited-edition-dual-sim-td-lte-cn-256gb-pdhm00" }, { - "slug": "mi-9-pro", - "name": "Mi 9 Pro", - "url": "/v1/smartphones/mi-9-pro" + "slug": "ace2-2020-premium-edition", + "name": "Ace2 2020 Premium Edition", + "url": "/v1/smartphones/ace2-2020-premium-edition" }, { - "slug": "mi-cc9-pro-premium-edition", - "name": "Mi CC9 Pro Premium Edition", - "url": "/v1/smartphones/mi-cc9-pro-premium-edition" + "slug": "ace2-2020-premium-edition-dual-sim-td-lte-cn-256gb-pdhm00", + "name": "Ace2 2020 Premium Edition Dual SIM TD-LTE CN 256GB PDHM00", + "url": "/v1/smartphones/ace2-2020-premium-edition-dual-sim-td-lte-cn-256gb-pdhm00" }, { - "slug": "mi-cc9-pro-standard-edition", - "name": "Mi CC9 Pro Standard Edition", - "url": "/v1/smartphones/mi-cc9-pro-standard-edition" + "slug": "ace2-2020-standard-edition", + "name": "Ace2 2020 Standard Edition", + "url": "/v1/smartphones/ace2-2020-standard-edition" }, { - "slug": "mi-mix-4", - "name": "Mi Mix 4", - "url": "/v1/smartphones/mi-mix-4" + "slug": "ace2-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdhm00", + "name": "Ace2 2020 Standard Edition Dual SIM TD-LTE CN 128GB PDHM00", + "url": "/v1/smartphones/ace2-2020-standard-edition-dual-sim-td-lte-cn-128gb-pdhm00" }, { - "slug": "mi-mix-alpha", - "name": "Mi Mix Alpha", - "url": "/v1/smartphones/mi-mix-alpha" + "slug": "ace2-2020-standard-edition-dual-sim-td-lte-cn-256gb-pdhm00", + "name": "Ace2 2020 Standard Edition Dual SIM TD-LTE CN 256GB PDHM00", + "url": "/v1/smartphones/ace2-2020-standard-edition-dual-sim-td-lte-cn-256gb-pdhm00" }, { - "slug": "mi-mix-fold-2021", - "name": "Mi Mix Fold 2021", - "url": "/v1/smartphones/mi-mix-fold-2021" + "slug": "android-one-s5-td-lte-jp-s5-sh", + "name": "Android One S5 TD-LTE JP S5-SH", + "url": "/v1/smartphones/android-one-s5-td-lte-jp-s5-sh" }, { - "slug": "mi-note-10", - "name": "Mi Note 10", - "url": "/v1/smartphones/mi-note-10" + "slug": "android-one-s6-td-lte-jp-s6-kc", + "name": "Android One S6 TD-LTE JP S6-KC", + "url": "/v1/smartphones/android-one-s6-td-lte-jp-s6-kc" }, { - "slug": "mi-note-10-lite", - "name": "Mi Note 10 Lite", - "url": "/v1/smartphones/mi-note-10-lite" + "slug": "android-one-s7-td-lte-jp-s7-sh", + "name": "Android One S7 TD-LTE JP S7-SH", + "url": "/v1/smartphones/android-one-s7-td-lte-jp-s7-sh" }, { - "slug": "mi-note-10-pro", - "name": "Mi Note 10 Pro", - "url": "/v1/smartphones/mi-note-10-pro" + "slug": "android-one-s8-td-lte-jp-s8-kc", + "name": "Android One S8 TD-LTE JP S8-KC", + "url": "/v1/smartphones/android-one-s8-td-lte-jp-s8-kc" }, { - "slug": "mi-play-standard-edition", - "name": "Mi Play Standard Edition", - "url": "/v1/smartphones/mi-play-standard-edition" + "slug": "android-one-x4-td-lte-jp-x4-sh", + "name": "Android One X4 TD-LTE JP X4-SH", + "url": "/v1/smartphones/android-one-x4-td-lte-jp-x4-sh" }, { - "slug": "mi10-ultra-silver-edition", - "name": "Mi10 Ultra Silver Edition", - "url": "/v1/smartphones/mi10-ultra-silver-edition" + "slug": "android-one-x5-td-lte-jp-x5-lg", + "name": "Android One X5 TD-LTE JP X5-LG", + "url": "/v1/smartphones/android-one-x5-td-lte-jp-x5-lg" }, { - "slug": "moto", - "name": "Moto", - "url": "/v1/smartphones/moto" + "slug": "anshin-smartphone-5g-td-lte-jp-ky-51b", + "name": "Anshin Smartphone 5G TD-LTE JP KY-51B", + "url": "/v1/smartphones/anshin-smartphone-5g-td-lte-jp-ky-51b" }, { - "slug": "moto-e14", - "name": "Moto E14", - "url": "/v1/smartphones/moto-e14" + "slug": "aquaris-x2-lte-dual-sim-32gb", + "name": "Aquaris X2 LTE Dual SIM 32GB", + "url": "/v1/smartphones/aquaris-x2-lte-dual-sim-32gb" }, { - "slug": "moto-e20-2021", - "name": "Moto E20 2021", - "url": "/v1/smartphones/moto-e20-2021" + "slug": "aquaris-x2-lte-dual-sim-64gb", + "name": "Aquaris X2 LTE Dual SIM 64GB", + "url": "/v1/smartphones/aquaris-x2-lte-dual-sim-64gb" }, { - "slug": "moto-e22-2022", - "name": "Moto E22 2022", - "url": "/v1/smartphones/moto-e22-2022" + "slug": "aquaris-x2-pro-lte-dual-sim-128gb", + "name": "Aquaris X2 Pro LTE Dual SIM 128GB", + "url": "/v1/smartphones/aquaris-x2-pro-lte-dual-sim-128gb" }, { - "slug": "moto-e22i-2022", - "name": "Moto E22i 2022", - "url": "/v1/smartphones/moto-e22i-2022" + "slug": "aquaris-x2-pro-lte-dual-sim-64gb", + "name": "Aquaris X2 Pro LTE Dual SIM 64GB", + "url": "/v1/smartphones/aquaris-x2-pro-lte-dual-sim-64gb" }, { - "slug": "moto-e22s-2022", - "name": "Moto E22s 2022", - "url": "/v1/smartphones/moto-e22s-2022" + "slug": "aquos-c10-dual-sim-lte-eu-fs8032", + "name": "Aquos C10 Dual SIM LTE EU FS8032", + "url": "/v1/smartphones/aquos-c10-dual-sim-lte-eu-fs8032" }, { - "slug": "moto-e32-2022", - "name": "Moto E32 2022", - "url": "/v1/smartphones/moto-e32-2022" + "slug": "aquos-d10-dual-sim-lte-eu", + "name": "Aquos D10 Dual SIM LTE EU", + "url": "/v1/smartphones/aquos-d10-dual-sim-lte-eu" }, { - "slug": "moto-e32s-2022", - "name": "Moto E32s 2022", - "url": "/v1/smartphones/moto-e32s-2022" + "slug": "aquos-r2-td-lte-jp-sh-03k", + "name": "Aquos R2 TD-LTE JP SH-03K", + "url": "/v1/smartphones/aquos-r2-td-lte-jp-sh-03k" }, { - "slug": "moto-e40-2021", - "name": "Moto E40 2021", - "url": "/v1/smartphones/moto-e40-2021" + "slug": "aquos-r3-dual-sim-td-lte-tw-sh-r10", + "name": "Aquos R3 Dual SIM TD-LTE TW SH-R10", + "url": "/v1/smartphones/aquos-r3-dual-sim-td-lte-tw-sh-r10" }, { - "slug": "moto-e6-plus", - "name": "Moto E6 Plus", - "url": "/v1/smartphones/moto-e6-plus" + "slug": "aquos-r3-global-dual-sim-lte-sh-r10", + "name": "Aquos R3 Global Dual SIM LTE SH-R10", + "url": "/v1/smartphones/aquos-r3-global-dual-sim-lte-sh-r10" }, { - "slug": "moto-e6s", - "name": "Moto E6s", - "url": "/v1/smartphones/moto-e6s" + "slug": "aquos-r3-td-lte-jp-808sh", + "name": "Aquos R3 TD-LTE JP 808SH", + "url": "/v1/smartphones/aquos-r3-td-lte-jp-808sh" }, { - "slug": "moto-e6s-2020", - "name": "Moto E6s 2020", - "url": "/v1/smartphones/moto-e6s-2020" + "slug": "aquos-r3-td-lte-jp-sh-04l", + "name": "Aquos R3 TD-LTE JP SH-04L", + "url": "/v1/smartphones/aquos-r3-td-lte-jp-sh-04l" }, { - "slug": "moto-e6s-2020-lte", - "name": "Moto E6s 2020 LTE", - "url": "/v1/smartphones/moto-e6s-2020-lte" + "slug": "aquos-r3-wimax-2-shv44", + "name": "Aquos R3 WiMAX 2+ SHV44", + "url": "/v1/smartphones/aquos-r3-wimax-2-shv44" }, { - "slug": "moto-e7-2020", - "name": "Moto E7 2020", - "url": "/v1/smartphones/moto-e7-2020" + "slug": "aquos-r5g-5g-td-lte-jp-908sh", + "name": "Aquos R5G 5G TD-LTE JP 908SH", + "url": "/v1/smartphones/aquos-r5g-5g-td-lte-jp-908sh" }, { - "slug": "moto-e7-2020-lte", - "name": "Moto E7 2020 LTE", - "url": "/v1/smartphones/moto-e7-2020-lte" + "slug": "aquos-r5g-5g-td-lte-jp-sh-51a", + "name": "Aquos R5G 5G TD-LTE JP SH-51A", + "url": "/v1/smartphones/aquos-r5g-5g-td-lte-jp-sh-51a" }, { - "slug": "moto-e7-power-2021", - "name": "Moto E7 Power 2021", - "url": "/v1/smartphones/moto-e7-power-2021" + "slug": "aquos-r5g-5g-td-lte-jp-sh-rm14", + "name": "Aquos R5G 5G TD-LTE JP SH-RM14", + "url": "/v1/smartphones/aquos-r5g-5g-td-lte-jp-sh-rm14" }, { - "slug": "moto-edge", - "name": "Moto Edge", - "url": "/v1/smartphones/moto-edge" + "slug": "aquos-r5g-5g-td-lte-jp-shg01", + "name": "Aquos R5G 5G TD-LTE JP SHG01", + "url": "/v1/smartphones/aquos-r5g-5g-td-lte-jp-shg01" }, { - "slug": "moto-edge-20", - "name": "Moto Edge 20", - "url": "/v1/smartphones/moto-edge-20" + "slug": "aquos-r5g-global-td-lte-sh-r50", + "name": "Aquos R5G Global TD-LTE SH-R50", + "url": "/v1/smartphones/aquos-r5g-global-td-lte-sh-r50" }, { - "slug": "moto-edge-20-fusion", - "name": "Moto Edge 20 Fusion", - "url": "/v1/smartphones/moto-edge-20-fusion" + "slug": "aquos-r6-5g-td-lte-jp-a101sh", + "name": "Aquos R6 5G TD-LTE JP A101SH", + "url": "/v1/smartphones/aquos-r6-5g-td-lte-jp-a101sh" }, { - "slug": "moto-edge-20-lite", - "name": "Moto Edge 20 Lite", - "url": "/v1/smartphones/moto-edge-20-lite" + "slug": "aquos-r6-5g-td-lte-jp-sh-m22", + "name": "Aquos R6 5G TD-LTE JP SH-M22", + "url": "/v1/smartphones/aquos-r6-5g-td-lte-jp-sh-m22" }, { - "slug": "moto-edge-20-pro", - "name": "Moto Edge 20 Pro", - "url": "/v1/smartphones/moto-edge-20-pro" + "slug": "aquos-r6-5g-uw-td-lte-jp-sh-51b", + "name": "Aquos R6 5G UW TD-LTE JP SH-51B", + "url": "/v1/smartphones/aquos-r6-5g-uw-td-lte-jp-sh-51b" }, { - "slug": "moto-edge-2021", - "name": "Moto Edge 2021", - "url": "/v1/smartphones/moto-edge-2021" + "slug": "aquos-sense-2-td-lte-jp-sh-01l", + "name": "Aquos Sense 2 TD-LTE JP SH-01L", + "url": "/v1/smartphones/aquos-sense-2-td-lte-jp-sh-01l" }, { - "slug": "moto-edge-30", - "name": "Moto Edge 30", - "url": "/v1/smartphones/moto-edge-30" + "slug": "aquos-sense-2-td-lte-jp-sh-m08", + "name": "Aquos Sense 2 TD-LTE JP SH-M08", + "url": "/v1/smartphones/aquos-sense-2-td-lte-jp-sh-m08" }, { - "slug": "moto-edge-30-pro", - "name": "Moto Edge 30 Pro", - "url": "/v1/smartphones/moto-edge-30-pro" + "slug": "aquos-sense-2-wimax-2-td-lte-jp-shv43", + "name": "Aquos Sense 2 WiMAX 2+ TD-LTE JP SHV43", + "url": "/v1/smartphones/aquos-sense-2-wimax-2-td-lte-jp-shv43" }, { - "slug": "moto-edge-s-lite", - "name": "Moto Edge S Lite", - "url": "/v1/smartphones/moto-edge-s-lite" + "slug": "aquos-sense-3-lite-td-lte-jp-sh-rm12", + "name": "Aquos Sense 3 Lite TD-LTE JP SH-RM12", + "url": "/v1/smartphones/aquos-sense-3-lite-td-lte-jp-sh-rm12" }, { - "slug": "moto-edge-s-premium-edition", - "name": "Moto Edge S Premium Edition", - "url": "/v1/smartphones/moto-edge-s-premium-edition" + "slug": "aquos-sense-3-plus-td-lte-jp-901sh", + "name": "Aquos Sense 3 Plus TD-LTE JP 901SH", + "url": "/v1/smartphones/aquos-sense-3-plus-td-lte-jp-901sh" }, { - "slug": "moto-edge-s-pro", - "name": "Moto Edge S Pro", - "url": "/v1/smartphones/moto-edge-s-pro" + "slug": "aquos-sense-3-plus-td-lte-jp-sh-rm11", + "name": "Aquos Sense 3 Plus TD-LTE JP SH-RM11", + "url": "/v1/smartphones/aquos-sense-3-plus-td-lte-jp-sh-rm11" }, { - "slug": "moto-edge-s-standard-edition", - "name": "Moto Edge S Standard Edition", - "url": "/v1/smartphones/moto-edge-s-standard-edition" + "slug": "aquos-sense-3-plus-wimax-2-shv46", + "name": "Aquos Sense 3 Plus WiMAX 2+ SHV46", + "url": "/v1/smartphones/aquos-sense-3-plus-wimax-2-shv46" }, { - "slug": "moto-edge-s30", - "name": "Moto Edge S30", - "url": "/v1/smartphones/moto-edge-s30" + "slug": "aquos-sense-3-td-lte-jp-sh-02m", + "name": "Aquos Sense 3 TD-LTE JP SH-02M", + "url": "/v1/smartphones/aquos-sense-3-td-lte-jp-sh-02m" }, { - "slug": "moto-edge-x30", - "name": "Moto Edge X30", - "url": "/v1/smartphones/moto-edge-x30" + "slug": "aquos-sense-3-wimax-2-shv45-shv45-u", + "name": "Aquos Sense 3 WiMAX 2+ SHV45 / SHV45-u", + "url": "/v1/smartphones/aquos-sense-3-wimax-2-shv45-shv45-u" }, { - "slug": "moto-edge-2022", - "name": "Moto Edge+ 2022", - "url": "/v1/smartphones/moto-edge-2022" + "slug": "aquos-sense-6-5g-td-lte-jp-128gb-sh-m19", + "name": "Aquos Sense 6 5G TD-LTE JP 128GB SH-M19", + "url": "/v1/smartphones/aquos-sense-6-5g-td-lte-jp-128gb-sh-m19" }, { - "slug": "moto-g", - "name": "Moto G", - "url": "/v1/smartphones/moto-g" + "slug": "aquos-sense-6-5g-td-lte-jp-64gb-sh-54b", + "name": "Aquos Sense 6 5G TD-LTE JP 64GB SH-54B", + "url": "/v1/smartphones/aquos-sense-6-5g-td-lte-jp-64gb-sh-54b" }, { - "slug": "moto-g-play", - "name": "Moto G Play", - "url": "/v1/smartphones/moto-g-play" + "slug": "aquos-sense-6-5g-td-lte-jp-64gb-sh-m19", + "name": "Aquos Sense 6 5G TD-LTE JP 64GB SH-M19", + "url": "/v1/smartphones/aquos-sense-6-5g-td-lte-jp-64gb-sh-m19" }, { - "slug": "moto-g-power", - "name": "Moto G Power", - "url": "/v1/smartphones/moto-g-power" + "slug": "aquos-sense-6-5g-td-lte-jp-64gb-sh-rm19", + "name": "Aquos Sense 6 5G TD-LTE JP 64GB SH-RM19", + "url": "/v1/smartphones/aquos-sense-6-5g-td-lte-jp-64gb-sh-rm19" }, { - "slug": "moto-g-pure-2021", - "name": "Moto G Pure 2021", - "url": "/v1/smartphones/moto-g-pure-2021" + "slug": "aquos-sense-6-5g-td-lte-jp-64gb-shg05", + "name": "Aquos Sense 6 5G TD-LTE JP 64GB SHG05", + "url": "/v1/smartphones/aquos-sense-6-5g-td-lte-jp-64gb-shg05" }, { - "slug": "moto-g-pure-2021-lte", - "name": "Moto G Pure 2021 LTE", - "url": "/v1/smartphones/moto-g-pure-2021-lte" + "slug": "aquos-sense-plus-td-lte-jp-sh-m07", + "name": "Aquos Sense Plus TD-LTE JP SH-M07", + "url": "/v1/smartphones/aquos-sense-plus-td-lte-jp-sh-m07" }, { - "slug": "moto-g-pure-2021-xlte", - "name": "Moto G Pure 2021 XLTE", - "url": "/v1/smartphones/moto-g-pure-2021-xlte" + "slug": "aquos-sense3-dual-sim-td-lte-jp-sh-m12", + "name": "Aquos Sense3 Dual SIM TD-LTE JP SH-M12", + "url": "/v1/smartphones/aquos-sense3-dual-sim-td-lte-jp-sh-m12" }, { - "slug": "moto-g-stylus", - "name": "Moto G Stylus", - "url": "/v1/smartphones/moto-g-stylus" + "slug": "aquos-sense3-basic-td-lte-jp-907sh", + "name": "Aquos Sense3 basic TD-LTE JP 907SH", + "url": "/v1/smartphones/aquos-sense3-basic-td-lte-jp-907sh" }, { - "slug": "moto-g-stylus-3rd-gen-2022", - "name": "Moto G Stylus 3rd gen 2022", - "url": "/v1/smartphones/moto-g-stylus-3rd-gen-2022" + "slug": "aquos-sense3-basic-wimax-2-shv48", + "name": "Aquos Sense3 basic WiMAX 2+ SHV48", + "url": "/v1/smartphones/aquos-sense3-basic-wimax-2-shv48" }, { - "slug": "moto-g-stylus-5g", - "name": "Moto G Stylus 5G", - "url": "/v1/smartphones/moto-g-stylus-5g" + "slug": "aquos-zero5g-basic-dx-td-lte-jp-128gb-shg02", + "name": "Aquos Zero5G basic DX TD-LTE JP 128GB SHG02", + "url": "/v1/smartphones/aquos-zero5g-basic-dx-td-lte-jp-128gb-shg02" }, { - "slug": "moto-g13-2023", - "name": "Moto G13 2023", - "url": "/v1/smartphones/moto-g13-2023" + "slug": "aquos-zero5g-basic-td-lte-jp-64gb-a002sh", + "name": "Aquos Zero5G basic TD-LTE JP 64GB A002SH", + "url": "/v1/smartphones/aquos-zero5g-basic-td-lte-jp-64gb-a002sh" }, { - "slug": "moto-g14-2023", - "name": "Moto G14 2023", - "url": "/v1/smartphones/moto-g14-2023" + "slug": "aquos-phone-td-lte-jp-sh-02l", + "name": "Aquos phone TD-LTE JP SH-02L", + "url": "/v1/smartphones/aquos-phone-td-lte-jp-sh-02l" }, { - "slug": "moto-g20-2021", - "name": "Moto G20 2021", - "url": "/v1/smartphones/moto-g20-2021" + "slug": "armor-3-global-dual-sim-td-lte", + "name": "Armor 3 Global Dual SIM TD-LTE", + "url": "/v1/smartphones/armor-3-global-dual-sim-td-lte" }, { - "slug": "moto-g23-2023-premium-edition", - "name": "Moto G23 2023 Premium Edition", - "url": "/v1/smartphones/moto-g23-2023-premium-edition" + "slug": "armor-3t-global-dual-sim-td-lte", + "name": "Armor 3T Global Dual SIM TD-LTE", + "url": "/v1/smartphones/armor-3t-global-dual-sim-td-lte" }, { - "slug": "moto-g23-2023-standard-edition", - "name": "Moto G23 2023 Standard Edition", - "url": "/v1/smartphones/moto-g23-2023-standard-edition" + "slug": "armor-3w-global-dual-sim-td-lte", + "name": "Armor 3W Global Dual SIM TD-LTE", + "url": "/v1/smartphones/armor-3w-global-dual-sim-td-lte" }, { - "slug": "moto-g31-2021", - "name": "Moto G31 2021", - "url": "/v1/smartphones/moto-g31-2021" + "slug": "armor-5-dual-sim-lte", + "name": "Armor 5 Dual SIM LTE", + "url": "/v1/smartphones/armor-5-dual-sim-lte" }, { - "slug": "moto-g40-fusion-2021", - "name": "Moto G40 Fusion 2021", - "url": "/v1/smartphones/moto-g40-fusion-2021" + "slug": "armor-5s-global-dual-sim-lte", + "name": "Armor 5S Global Dual SIM LTE", + "url": "/v1/smartphones/armor-5s-global-dual-sim-lte" }, { - "slug": "moto-g41-2021-premium-edition", - "name": "Moto G41 2021 Premium Edition", - "url": "/v1/smartphones/moto-g41-2021-premium-edition" + "slug": "armor-6-global-dual-sim-td-lte", + "name": "Armor 6 Global Dual SIM TD-LTE", + "url": "/v1/smartphones/armor-6-global-dual-sim-td-lte" }, { - "slug": "moto-g41-2021-standard-edition", - "name": "Moto G41 2021 Standard Edition", - "url": "/v1/smartphones/moto-g41-2021-standard-edition" + "slug": "armor-6e-global-dual-sim-td-lte", + "name": "Armor 6E Global Dual SIM TD-LTE", + "url": "/v1/smartphones/armor-6e-global-dual-sim-td-lte" }, { - "slug": "moto-g50", - "name": "Moto G50", - "url": "/v1/smartphones/moto-g50" + "slug": "armor-7-global-dual-sim-td-lte", + "name": "Armor 7 Global Dual SIM TD-LTE", + "url": "/v1/smartphones/armor-7-global-dual-sim-td-lte" }, { - "slug": "moto-g51", - "name": "Moto G51", - "url": "/v1/smartphones/moto-g51" + "slug": "armor-x5-global-dual-sim-lte", + "name": "Armor X5 Global Dual SIM LTE", + "url": "/v1/smartphones/armor-x5-global-dual-sim-lte" }, { - "slug": "moto-g52j", - "name": "Moto G52j", - "url": "/v1/smartphones/moto-g52j" + "slug": "arrows-5g-f-51a-td-lte-jp", + "name": "Arrows 5G F-51A TD-LTE JP", + "url": "/v1/smartphones/arrows-5g-f-51a-td-lte-jp" }, { - "slug": "moto-g52j-ii", - "name": "Moto G52j II", - "url": "/v1/smartphones/moto-g52j-ii" + "slug": "arrows-bz01-td-lte-jp", + "name": "Arrows BZ01 TD-LTE JP", + "url": "/v1/smartphones/arrows-bz01-td-lte-jp" }, { - "slug": "moto-g53", - "name": "Moto G53", - "url": "/v1/smartphones/moto-g53" + "slug": "arrows-bz02-dual-sim-lte-a-jp", + "name": "Arrows BZ02 Dual SIM LTE-A JP", + "url": "/v1/smartphones/arrows-bz02-dual-sim-lte-a-jp" }, { - "slug": "moto-g53j", - "name": "Moto G53j", - "url": "/v1/smartphones/moto-g53j" + "slug": "arrows-be3-f-02l-td-lte-jp", + "name": "Arrows Be3 F-02L TD-LTE JP", + "url": "/v1/smartphones/arrows-be3-f-02l-td-lte-jp" }, { - "slug": "moto-g53s", - "name": "Moto G53s", - "url": "/v1/smartphones/moto-g53s" + "slug": "arrows-be4-f-41a-td-lte-jp", + "name": "Arrows Be4 F-41A TD-LTE JP", + "url": "/v1/smartphones/arrows-be4-f-41a-td-lte-jp" }, { - "slug": "moto-g53y", - "name": "Moto G53y", - "url": "/v1/smartphones/moto-g53y" + "slug": "arrows-be4-plus-f-41b-td-lte-jp", + "name": "Arrows Be4 Plus F-41B TD-LTE JP", + "url": "/v1/smartphones/arrows-be4-plus-f-41b-td-lte-jp" }, { - "slug": "moto-g60-2021", - "name": "Moto G60 2021", - "url": "/v1/smartphones/moto-g60-2021" + "slug": "arrows-j-td-lte-jp-901fj", + "name": "Arrows J TD-LTE JP 901FJ", + "url": "/v1/smartphones/arrows-j-td-lte-jp-901fj" }, { - "slug": "moto-g60s-2021", - "name": "Moto G60s 2021", - "url": "/v1/smartphones/moto-g60s-2021" + "slug": "arrows-m05-td-lte-jp", + "name": "Arrows M05 TD-LTE JP", + "url": "/v1/smartphones/arrows-m05-td-lte-jp" }, { - "slug": "moto-g62", - "name": "Moto G62", - "url": "/v1/smartphones/moto-g62" + "slug": "arrows-nx9-5g-f-52a-td-lte-jp", + "name": "Arrows NX9 5G F-52A TD-LTE JP", + "url": "/v1/smartphones/arrows-nx9-5g-f-52a-td-lte-jp" }, { - "slug": "moto-g71", - "name": "Moto G71", - "url": "/v1/smartphones/moto-g71" + "slug": "arrows-rx-td-lte-jp", + "name": "Arrows RX TD-LTE JP", + "url": "/v1/smartphones/arrows-rx-td-lte-jp" }, { - "slug": "moto-g72-2022-premium-edition", - "name": "Moto G72 2022 Premium Edition", - "url": "/v1/smartphones/moto-g72-2022-premium-edition" + "slug": "arrows-we-td-lte-jp-f-51b", + "name": "Arrows We TD-LTE JP F-51B", + "url": "/v1/smartphones/arrows-we-td-lte-jp-f-51b" }, { - "slug": "moto-g72-2022-standard-edition", - "name": "Moto G72 2022 Standard Edition", - "url": "/v1/smartphones/moto-g72-2022-standard-edition" + "slug": "arrows-we-td-lte-jp-fcg01", + "name": "Arrows We TD-LTE JP FCG01", + "url": "/v1/smartphones/arrows-we-td-lte-jp-fcg01" }, { - "slug": "moto-g73", - "name": "Moto G73", - "url": "/v1/smartphones/moto-g73" + "slug": "arrows-me-f-04k-lte", + "name": "Arrows me F-04K LTE", + "url": "/v1/smartphones/arrows-me-f-04k-lte" }, { - "slug": "moto-g75-5g", - "name": "Moto G75 5G", - "url": "/v1/smartphones/moto-g75-5g" + "slug": "atom-global-dual-sim-td-lte", + "name": "Atom Global Dual SIM TD-LTE", + "url": "/v1/smartphones/atom-global-dual-sim-td-lte" }, { - "slug": "moto-g8-play", - "name": "Moto G8 Play", - "url": "/v1/smartphones/moto-g8-play" + "slug": "axon-10-pro-5g-a2020n2-dual-sim-td-lte-cn-128gb", + "name": "Axon 10 Pro 5G A2020N2 Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/axon-10-pro-5g-a2020n2-dual-sim-td-lte-cn-128gb" }, { - "slug": "moto-g82", - "name": "Moto G82", - "url": "/v1/smartphones/moto-g82" + "slug": "axon-10-pro-5g-a2020n2-dual-sim-td-lte-cn-256gb", + "name": "Axon 10 Pro 5G A2020N2 Dual SIM TD-LTE CN 256GB", + "url": "/v1/smartphones/axon-10-pro-5g-a2020n2-dual-sim-td-lte-cn-256gb" }, { - "slug": "moto-g84", - "name": "Moto G84 5G", - "url": "/v1/smartphones/moto-g84" + "slug": "axon-10-pro-5g-a2020n3-premium-edition-dual-sim-td-lte-emea-128gb", + "name": "Axon 10 Pro 5G A2020N3 Premium Edition Dual SIM TD-LTE EMEA 128GB", + "url": "/v1/smartphones/axon-10-pro-5g-a2020n3-premium-edition-dual-sim-td-lte-emea-128gb" }, { - "slug": "moto-g9-plus-2020", - "name": "Moto G9 Plus 2020", - "url": "/v1/smartphones/moto-g9-plus-2020" + "slug": "axon-10-pro-5g-a2020n3-premium-edition-dual-sim-td-lte-emea-256gb", + "name": "Axon 10 Pro 5G A2020N3 Premium Edition Dual SIM TD-LTE EMEA 256GB", + "url": "/v1/smartphones/axon-10-pro-5g-a2020n3-premium-edition-dual-sim-td-lte-emea-256gb" }, { - "slug": "moto-one", - "name": "Moto One", - "url": "/v1/smartphones/moto-one" + "slug": "axon-10-pro-5g-td-lte-jp-902zt", + "name": "Axon 10 Pro 5G TD-LTE JP 902ZT", + "url": "/v1/smartphones/axon-10-pro-5g-td-lte-jp-902zt" }, { - "slug": "moto-one-fusion", - "name": "Moto One Fusion+", - "url": "/v1/smartphones/moto-one-fusion" + "slug": "axon-10-pro-a2020-premium-edition-dual-sim-td-lte-cn-256gb", + "name": "Axon 10 Pro A2020 Premium Edition Dual SIM TD-LTE CN 256GB", + "url": "/v1/smartphones/axon-10-pro-a2020-premium-edition-dual-sim-td-lte-cn-256gb" }, { - "slug": "moto-one-macro", - "name": "Moto One Macro", - "url": "/v1/smartphones/moto-one-macro" + "slug": "axon-10-pro-a2020-standard-edition-dual-sim-td-lte-cn-128gb", + "name": "Axon 10 Pro A2020 Standard Edition Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/axon-10-pro-a2020-standard-edition-dual-sim-td-lte-cn-128gb" }, { - "slug": "moto-s50", - "name": "Moto S50", - "url": "/v1/smartphones/moto-s50" + "slug": "axon-10-pro-a2020-top-edition-dual-sim-td-lte-cn-256gb", + "name": "Axon 10 Pro A2020 Top Edition Dual SIM TD-LTE CN 256GB", + "url": "/v1/smartphones/axon-10-pro-a2020-top-edition-dual-sim-td-lte-cn-256gb" }, { - "slug": "moto-x50-ultra", - "name": "Moto X50 Ultra", - "url": "/v1/smartphones/moto-x50-ultra" + "slug": "axon-10-pro-a2020g-premium-edition-global-dual-sim-td-lte-256gb", + "name": "Axon 10 Pro A2020G Premium Edition Global Dual SIM TD-LTE 256GB", + "url": "/v1/smartphones/axon-10-pro-a2020g-premium-edition-global-dual-sim-td-lte-256gb" }, { - "slug": "moto-g100", - "name": "Moto g100", - "url": "/v1/smartphones/moto-g100" + "slug": "axon-10-pro-a2020g-standard-edition-global-dual-sim-td-lte-128gb-a2020ru", + "name": "Axon 10 Pro A2020G Standard Edition Global Dual SIM TD-LTE 128GB / A2020RU", + "url": "/v1/smartphones/axon-10-pro-a2020g-standard-edition-global-dual-sim-td-lte-128gb-a2020ru" }, { - "slug": "moto-g22-2022", - "name": "Moto g22 2022", - "url": "/v1/smartphones/moto-g22-2022" + "slug": "axon-10-pro-a2020g-top-edition-global-dual-sim-td-lte-256gb", + "name": "Axon 10 Pro A2020G Top Edition Global Dual SIM TD-LTE 256GB", + "url": "/v1/smartphones/axon-10-pro-a2020g-top-edition-global-dual-sim-td-lte-256gb" }, { - "slug": "motorola-edge-30-ultra", - "name": "Motorola Edge 30 Ultra", - "url": "/v1/smartphones/motorola-edge-30-ultra" + "slug": "axon-10s-pro-5g-a2020-sp-dual-sim-td-lte-cn-128gb", + "name": "Axon 10S Pro 5G A2020 SP Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/axon-10s-pro-5g-a2020-sp-dual-sim-td-lte-cn-128gb" }, { - "slug": "motorola-edge-40-pro", - "name": "Motorola Edge 40 Pro", - "url": "/v1/smartphones/motorola-edge-40-pro" + "slug": "axon-10s-pro-5g-a2020-sp-dual-sim-td-lte-cn-256gb", + "name": "Axon 10S Pro 5G A2020 SP Dual SIM TD-LTE CN 256GB", + "url": "/v1/smartphones/axon-10s-pro-5g-a2020-sp-dual-sim-td-lte-cn-256gb" }, { - "slug": "motorola-edge-50-pro", - "name": "Motorola Edge 50 Pro", - "url": "/v1/smartphones/motorola-edge-50-pro" + "slug": "axon-11-4g-global-dual-sim-lte-a-128gb", + "name": "Axon 11 4G Global Dual SIM LTE-A 128GB", + "url": "/v1/smartphones/axon-11-4g-global-dual-sim-lte-a-128gb" }, { - "slug": "motorola-edge-50-ultra", - "name": "Motorola Edge 50 Ultra", - "url": "/v1/smartphones/motorola-edge-50-ultra" + "slug": "axon-11-5g-premium-edition-a2021-dual-sim-td-lte-cn-128gb", + "name": "Axon 11 5G Premium Edition A2021 Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/axon-11-5g-premium-edition-a2021-dual-sim-td-lte-cn-128gb" }, { - "slug": "motorola-edge-60-pro", - "name": "Motorola Edge 60 Pro", - "url": "/v1/smartphones/motorola-edge-60-pro" + "slug": "axon-11-5g-premium-edition-a2021-dual-sim-td-lte-cn-256gb-a2021h", + "name": "Axon 11 5G Premium Edition A2021 Dual SIM TD-LTE CN 256GB / A2021H", + "url": "/v1/smartphones/axon-11-5g-premium-edition-a2021-dual-sim-td-lte-cn-256gb-a2021h" }, { - "slug": "motorola-razr", - "name": "Motorola Razr (2019)", - "url": "/v1/smartphones/motorola-razr" + "slug": "axon-11-5g-premium-edition-a2021-global-dual-sim-td-lte-256gb", + "name": "Axon 11 5G Premium Edition A2021 Global Dual SIM TD-LTE 256GB", + "url": "/v1/smartphones/axon-11-5g-premium-edition-a2021-global-dual-sim-td-lte-256gb" }, { - "slug": "motorola-razr-40-ultra", - "name": "Motorola Razr 40 Ultra", - "url": "/v1/smartphones/motorola-razr-40-ultra" + "slug": "axon-11-5g-standard-edition-a2021-dual-sim-td-lte-cn-128gb", + "name": "Axon 11 5G Standard Edition A2021 Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/axon-11-5g-standard-edition-a2021-dual-sim-td-lte-cn-128gb" }, { - "slug": "motorola-razr-50-ultra", - "name": "Motorola Razr 50 Ultra", - "url": "/v1/smartphones/motorola-razr-50-ultra" + "slug": "axon-11-5g-standard-edition-a2021-global-dual-sim-td-lte-128gb", + "name": "Axon 11 5G Standard Edition A2021 Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/axon-11-5g-standard-edition-a2021-global-dual-sim-td-lte-128gb" }, { - "slug": "motorola-razr-5g", - "name": "Motorola Razr 5G", - "url": "/v1/smartphones/motorola-razr-5g" + "slug": "axon-20-4g-global-dual-sim-td-lte-128gb-a2121e", + "name": "Axon 20 4G Global Dual SIM TD-LTE 128GB A2121E", + "url": "/v1/smartphones/axon-20-4g-global-dual-sim-td-lte-128gb-a2121e" }, { - "slug": "note-5", - "name": "NOTE 5", - "url": "/v1/smartphones/note-5" + "slug": "axon-20-5g-extreme-edition-dual-sim-td-lte-cn-256gb-a2121", + "name": "Axon 20 5G Extreme Edition Dual SIM TD-LTE CN 256GB A2121", + "url": "/v1/smartphones/axon-20-5g-extreme-edition-dual-sim-td-lte-cn-256gb-a2121" }, { - "slug": "note-5-stylus", - "name": "NOTE 5 Stylus", - "url": "/v1/smartphones/note-5-stylus" + "slug": "axon-20-5g-global-dual-sim-td-lte-128gb-a2121g", + "name": "Axon 20 5G Global Dual SIM TD-LTE 128GB A2121G", + "url": "/v1/smartphones/axon-20-5g-global-dual-sim-td-lte-128gb-a2121g" }, { - "slug": "note-6", - "name": "NOTE 6", - "url": "/v1/smartphones/note-6" + "slug": "axon-20-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2121-a20", + "name": "Axon 20 5G Standard Edition Dual SIM TD-LTE CN 128GB A2121 / A20", + "url": "/v1/smartphones/axon-20-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2121-a20" }, { - "slug": "narzo-70-5g", - "name": "Narzo 70 5G", - "url": "/v1/smartphones/narzo-70-5g" + "slug": "axon-30-5g-premium-edition-dual-sim-td-lte-cn-128gb-a2322", + "name": "Axon 30 5G Premium Edition Dual SIM TD-LTE CN 128GB A2322", + "url": "/v1/smartphones/axon-30-5g-premium-edition-dual-sim-td-lte-cn-128gb-a2322" }, { - "slug": "narzo-70-turbo-5g", - "name": "Narzo 70 Turbo 5G", - "url": "/v1/smartphones/narzo-70-turbo-5g" + "slug": "axon-30-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2322", + "name": "Axon 30 5G Premium Edition Dual SIM TD-LTE CN 256GB A2322", + "url": "/v1/smartphones/axon-30-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2322" }, { - "slug": "narzo-n61", - "name": "Narzo N61", - "url": "/v1/smartphones/narzo-n61" + "slug": "axon-30-5g-premium-edition-global-dual-sim-td-lte-128gb-a2322g", + "name": "Axon 30 5G Premium Edition Global Dual SIM TD-LTE 128GB A2322G", + "url": "/v1/smartphones/axon-30-5g-premium-edition-global-dual-sim-td-lte-128gb-a2322g" }, { - "slug": "narzo-n63", - "name": "Narzo N63", - "url": "/v1/smartphones/narzo-n63" + "slug": "axon-30-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2322", + "name": "Axon 30 5G Standard Edition Dual SIM TD-LTE CN 128GB A2322", + "url": "/v1/smartphones/axon-30-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2322" }, { - "slug": "narzo-n65-5g", - "name": "Narzo N65 5G", - "url": "/v1/smartphones/narzo-n65-5g" + "slug": "axon-30-5g-top-edition-dual-sim-td-lte-cn-256gb-a2322", + "name": "Axon 30 5G Top Edition Dual SIM TD-LTE CN 256GB A2322", + "url": "/v1/smartphones/axon-30-5g-top-edition-dual-sim-td-lte-cn-256gb-a2322" }, { - "slug": "neo-7", - "name": "Neo 7", - "url": "/v1/smartphones/neo-7" + "slug": "axon-30-5g-top-edition-global-dual-sim-td-lte-256gb-a2322g", + "name": "Axon 30 5G Top Edition Global Dual SIM TD-LTE 256GB A2322G", + "url": "/v1/smartphones/axon-30-5g-top-edition-global-dual-sim-td-lte-256gb-a2322g" }, { - "slug": "nord", - "name": "Nord", - "url": "/v1/smartphones/nord" + "slug": "axon-30-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-a2022", + "name": "Axon 30 Pro 5G Premium Edition Dual SIM TD-LTE CN 128GB A2022", + "url": "/v1/smartphones/axon-30-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-a2022" }, { - "slug": "nord-2", - "name": "Nord 2", - "url": "/v1/smartphones/nord-2" + "slug": "axon-30-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2022", + "name": "Axon 30 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB A2022", + "url": "/v1/smartphones/axon-30-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2022" }, { - "slug": "nord-2t", - "name": "Nord 2T", - "url": "/v1/smartphones/nord-2t" + "slug": "axon-30-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2022", + "name": "Axon 30 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB A2022", + "url": "/v1/smartphones/axon-30-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-a2022" }, { - "slug": "nord-ce", - "name": "Nord CE", - "url": "/v1/smartphones/nord-ce" + "slug": "axon-30-ultra-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2022p", + "name": "Axon 30 Ultra 5G Premium Edition Dual SIM TD-LTE CN 256GB A2022P", + "url": "/v1/smartphones/axon-30-ultra-5g-premium-edition-dual-sim-td-lte-cn-256gb-a2022p" }, { - "slug": "nord-ce-2", - "name": "Nord CE 2", - "url": "/v1/smartphones/nord-ce-2" + "slug": "axon-30-ultra-5g-premium-edition-global-dual-sim-td-lte-256gb-a2022pg", + "name": "Axon 30 Ultra 5G Premium Edition Global Dual SIM TD-LTE 256GB A2022PG", + "url": "/v1/smartphones/axon-30-ultra-5g-premium-edition-global-dual-sim-td-lte-256gb-a2022pg" }, { - "slug": "nord-ce-2-lite", - "name": "Nord CE 2 Lite", - "url": "/v1/smartphones/nord-ce-2-lite" + "slug": "axon-30-ultra-5g-standard-edition-dual-sim-td-lte-cn-256gb-a2022p", + "name": "Axon 30 Ultra 5G Standard Edition Dual SIM TD-LTE CN 256GB A2022P", + "url": "/v1/smartphones/axon-30-ultra-5g-standard-edition-dual-sim-td-lte-cn-256gb-a2022p" }, { - "slug": "nord-n10", - "name": "Nord N10", - "url": "/v1/smartphones/nord-n10" + "slug": "axon-30-ultra-5g-standard-edition-global-dual-sim-td-lte-128gb-a2022pg", + "name": "Axon 30 Ultra 5G Standard Edition Global Dual SIM TD-LTE 128GB A2022PG", + "url": "/v1/smartphones/axon-30-ultra-5g-standard-edition-global-dual-sim-td-lte-128gb-a2022pg" }, { - "slug": "nord-n20", - "name": "Nord N20", - "url": "/v1/smartphones/nord-n20" + "slug": "axon-30-ultra-5g-top-edition-dual-sim-td-lte-cn-1tb-a2022p", + "name": "Axon 30 Ultra 5G Top Edition Dual SIM TD-LTE CN 1TB A2022P", + "url": "/v1/smartphones/axon-30-ultra-5g-top-edition-dual-sim-td-lte-cn-1tb-a2022p" }, { - "slug": "note-40", - "name": "Note 40", - "url": "/v1/smartphones/note-40" + "slug": "axon-9-dual-sim-td-lte-cn-64gb-a2019", + "name": "Axon 9 Dual SIM TD-LTE CN 64GB A2019", + "url": "/v1/smartphones/axon-9-dual-sim-td-lte-cn-64gb-a2019" }, { - "slug": "note-40-5g", - "name": "Note 40 5G", - "url": "/v1/smartphones/note-40-5g" + "slug": "axon-9-pro-dual-sim-td-lte-cn-256gb-a2019", + "name": "Axon 9 Pro Dual SIM TD-LTE CN 256GB A2019", + "url": "/v1/smartphones/axon-9-pro-dual-sim-td-lte-cn-256gb-a2019" }, { - "slug": "note-40-pro", - "name": "Note 40 Pro", - "url": "/v1/smartphones/note-40-pro" + "slug": "axon-9-pro-lte-a-emea-64gb-a2019g", + "name": "Axon 9 Pro LTE-A EMEA 64GB A2019G", + "url": "/v1/smartphones/axon-9-pro-lte-a-emea-64gb-a2019g" }, { - "slug": "note-40-pro-5g", - "name": "Note 40 Pro 5G", - "url": "/v1/smartphones/note-40-pro-5g" + "slug": "basio4-wimax-2-kyv47", + "name": "BASIO4 WiMAX 2+ KYV47", + "url": "/v1/smartphones/basio4-wimax-2-kyv47" }, { - "slug": "note-40-racing-edition", - "name": "Note 40 Racing Edition", - "url": "/v1/smartphones/note-40-racing-edition" + "slug": "bl9000-dual-sim-lte-emea", + "name": "BL9000 Dual SIM LTE EMEA", + "url": "/v1/smartphones/bl9000-dual-sim-lte-emea" }, { - "slug": "note-40s", - "name": "Note 40S", - "url": "/v1/smartphones/note-40s" + "slug": "black-shark-2-dual-sim-td-lte-cn-128gb-skw-a0", + "name": "Black Shark 2 Dual SIM TD-LTE CN 128GB SKW-A0", + "url": "/v1/smartphones/black-shark-2-dual-sim-td-lte-cn-128gb-skw-a0" }, { - "slug": "note-40x-5g", - "name": "Note 40X 5G", - "url": "/v1/smartphones/note-40x-5g" + "slug": "black-shark-2-dual-sim-td-lte-cn-256gb-skw-a0", + "name": "Black Shark 2 Dual SIM TD-LTE CN 256GB SKW-A0", + "url": "/v1/smartphones/black-shark-2-dual-sim-td-lte-cn-256gb-skw-a0" }, { - "slug": "note-50", - "name": "Note 50", - "url": "/v1/smartphones/note-50" + "slug": "black-shark-2-global-dual-sim-td-lte-128gb-skw-h0", + "name": "Black Shark 2 Global Dual SIM TD-LTE 128GB SKW-H0", + "url": "/v1/smartphones/black-shark-2-global-dual-sim-td-lte-128gb-skw-h0" }, { - "slug": "note-60", - "name": "Note 60", - "url": "/v1/smartphones/note-60" + "slug": "black-shark-2-global-dual-sim-td-lte-256gb-skw-h0", + "name": "Black Shark 2 Global Dual SIM TD-LTE 256GB SKW-H0", + "url": "/v1/smartphones/black-shark-2-global-dual-sim-td-lte-256gb-skw-h0" }, { - "slug": "note-60x", - "name": "Note 60x", - "url": "/v1/smartphones/note-60x" + "slug": "black-shark-2-pro", + "name": "Black Shark 2 Pro", + "url": "/v1/smartphones/black-shark-2-pro" }, { - "slug": "note-7", - "name": "Note 7", - "url": "/v1/smartphones/note-7" + "slug": "black-shark-2-pro-dual-sim-td-lte-cn-128gb-dlt-a0", + "name": "Black Shark 2 Pro Dual SIM TD-LTE CN 128GB DLT-A0", + "url": "/v1/smartphones/black-shark-2-pro-dual-sim-td-lte-cn-128gb-dlt-a0" }, { - "slug": "note-8", - "name": "Note 8", - "url": "/v1/smartphones/note-8" + "slug": "black-shark-2-pro-dual-sim-td-lte-cn-256gb-dlt-a0", + "name": "Black Shark 2 Pro Dual SIM TD-LTE CN 256GB DLT-A0", + "url": "/v1/smartphones/black-shark-2-pro-dual-sim-td-lte-cn-256gb-dlt-a0" }, { - "slug": "note-8i", - "name": "Note 8i", - "url": "/v1/smartphones/note-8i" + "slug": "black-shark-2-pro-global-dual-sim-td-lte-128gb-dlt-h0", + "name": "Black Shark 2 Pro Global Dual SIM TD-LTE 128GB DLT-H0", + "url": "/v1/smartphones/black-shark-2-pro-global-dual-sim-td-lte-128gb-dlt-h0" }, { - "slug": "nothing-phone-1", - "name": "Nothing Phone (1)", - "url": "/v1/smartphones/nothing-phone-1" + "slug": "black-shark-2-pro-global-dual-sim-td-lte-256gb-dlt-h0", + "name": "Black Shark 2 Pro Global Dual SIM TD-LTE 256GB DLT-H0", + "url": "/v1/smartphones/black-shark-2-pro-global-dual-sim-td-lte-256gb-dlt-h0" }, { - "slug": "nothing-phone-2", - "name": "Nothing Phone (2)", - "url": "/v1/smartphones/nothing-phone-2" + "slug": "black-shark-3", + "name": "Black Shark 3", + "url": "/v1/smartphones/black-shark-3" }, { - "slug": "nothing-phone-2a", - "name": "Nothing Phone (2a)", - "url": "/v1/smartphones/nothing-phone-2a" + "slug": "black-shark-3-5g-premium-edition-dual-sim-td-lte-cn-128gb-kle-a0", + "name": "Black Shark 3 5G Premium Edition Dual SIM TD-LTE CN 128GB KLE-A0", + "url": "/v1/smartphones/black-shark-3-5g-premium-edition-dual-sim-td-lte-cn-128gb-kle-a0" }, { - "slug": "nothing-phone-3", - "name": "Nothing Phone (3)", - "url": "/v1/smartphones/nothing-phone-3" + "slug": "black-shark-3-5g-premium-edition-dual-sim-td-lte-cn-256gb-kle-a0", + "name": "Black Shark 3 5G Premium Edition Dual SIM TD-LTE CN 256GB KLE-A0", + "url": "/v1/smartphones/black-shark-3-5g-premium-edition-dual-sim-td-lte-cn-256gb-kle-a0" }, { - "slug": "nothing-phone-3a", - "name": "Nothing Phone (3a)", - "url": "/v1/smartphones/nothing-phone-3a" + "slug": "black-shark-3-5g-premium-edition-global-dual-sim-td-lte-128gb-kle-h0", + "name": "Black Shark 3 5G Premium Edition Global Dual SIM TD-LTE 128GB KLE-H0", + "url": "/v1/smartphones/black-shark-3-5g-premium-edition-global-dual-sim-td-lte-128gb-kle-h0" }, { - "slug": "nova-12", - "name": "Nova 12", - "url": "/v1/smartphones/nova-12" + "slug": "black-shark-3-5g-premium-edition-global-dual-sim-td-lte-256gb-kle-h0", + "name": "Black Shark 3 5G Premium Edition Global Dual SIM TD-LTE 256GB KLE-H0", + "url": "/v1/smartphones/black-shark-3-5g-premium-edition-global-dual-sim-td-lte-256gb-kle-h0" }, { - "slug": "nova-12-pro", - "name": "Nova 12 Pro", - "url": "/v1/smartphones/nova-12-pro" + "slug": "black-shark-3-5g-standard-edition-dual-sim-td-lte-cn-128gb-kle-a0", + "name": "Black Shark 3 5G Standard Edition Dual SIM TD-LTE CN 128GB KLE-A0", + "url": "/v1/smartphones/black-shark-3-5g-standard-edition-dual-sim-td-lte-cn-128gb-kle-a0" }, { - "slug": "nova-13", - "name": "Nova 13", - "url": "/v1/smartphones/nova-13" + "slug": "black-shark-3-5g-standard-edition-global-dual-sim-td-lte-128gb-kle-h0", + "name": "Black Shark 3 5G Standard Edition Global Dual SIM TD-LTE 128GB KLE-H0", + "url": "/v1/smartphones/black-shark-3-5g-standard-edition-global-dual-sim-td-lte-128gb-kle-h0" }, { - "slug": "nova-13-pro", - "name": "Nova 13 Pro", - "url": "/v1/smartphones/nova-13-pro" + "slug": "black-shark-3-pro", + "name": "Black Shark 3 Pro", + "url": "/v1/smartphones/black-shark-3-pro" }, { - "slug": "nova-7-se", - "name": "Nova 7 SE", - "url": "/v1/smartphones/nova-7-se" + "slug": "black-shark-3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-mbu-a0", + "name": "Black Shark 3 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB MBU-A0", + "url": "/v1/smartphones/black-shark-3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-mbu-a0" }, { - "slug": "nova-8-se", - "name": "Nova 8 SE", - "url": "/v1/smartphones/nova-8-se" + "slug": "black-shark-3-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-mbu-h0", + "name": "Black Shark 3 Pro 5G Premium Edition Global Dual SIM TD-LTE 256GB MBU-H0", + "url": "/v1/smartphones/black-shark-3-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-mbu-h0" }, { - "slug": "oppo-find-n3", - "name": "OPPO Find N3", - "url": "/v1/smartphones/oppo-find-n3" + "slug": "black-shark-3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-mbu-a0", + "name": "Black Shark 3 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB MBU-A0", + "url": "/v1/smartphones/black-shark-3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-mbu-a0" }, { - "slug": "oppo-find-x5-pro", - "name": "OPPO Find X5 Pro", - "url": "/v1/smartphones/oppo-find-x5-pro" + "slug": "black-shark-3-pro-5g-standard-edition-global-dual-sim-td-lte-256gb-mbu-h0", + "name": "Black Shark 3 Pro 5G Standard Edition Global Dual SIM TD-LTE 256GB MBU-H0", + "url": "/v1/smartphones/black-shark-3-pro-5g-standard-edition-global-dual-sim-td-lte-256gb-mbu-h0" }, { - "slug": "oppo-find-x6-pro", - "name": "OPPO Find X6 Pro", - "url": "/v1/smartphones/oppo-find-x6-pro" + "slug": "black-shark-3s", + "name": "Black Shark 3S", + "url": "/v1/smartphones/black-shark-3s" }, { - "slug": "oppo-find-x7-ultra", - "name": "OPPO Find X7 Ultra", - "url": "/v1/smartphones/oppo-find-x7-ultra" + "slug": "black-shark-3s-5g-dual-sim-td-lte-cn-128gb-kpro", + "name": "Black Shark 3S 5G Dual SIM TD-LTE CN 128GB KPRO", + "url": "/v1/smartphones/black-shark-3s-5g-dual-sim-td-lte-cn-128gb-kpro" }, { - "slug": "oppo-find-x8-pro", - "name": "OPPO Find X8 Pro", - "url": "/v1/smartphones/oppo-find-x8-pro" + "slug": "black-shark-3s-5g-dual-sim-td-lte-cn-256gb-kpro", + "name": "Black Shark 3S 5G Dual SIM TD-LTE CN 256GB KPRO", + "url": "/v1/smartphones/black-shark-3s-5g-dual-sim-td-lte-cn-256gb-kpro" }, { - "slug": "oppo-reno-10-pro", - "name": "OPPO Reno 10 Pro", - "url": "/v1/smartphones/oppo-reno-10-pro" + "slug": "black-shark-4", + "name": "Black Shark 4", + "url": "/v1/smartphones/black-shark-4" }, { - "slug": "oppo-reno-11-pro", - "name": "OPPO Reno 11 Pro", - "url": "/v1/smartphones/oppo-reno-11-pro" + "slug": "black-shark-4-5g-premium-edition-dual-sim-td-lte-cn-128gb-prs-a0", + "name": "Black Shark 4 5G Premium Edition Dual SIM TD-LTE CN 128GB PRS-A0", + "url": "/v1/smartphones/black-shark-4-5g-premium-edition-dual-sim-td-lte-cn-128gb-prs-a0" }, { - "slug": "one-vision-3", - "name": "One Vision 3", - "url": "/v1/smartphones/one-vision-3" + "slug": "black-shark-4-5g-premium-edition-dual-sim-td-lte-cn-256gb-prs-a0", + "name": "Black Shark 4 5G Premium Edition Dual SIM TD-LTE CN 256GB PRS-A0", + "url": "/v1/smartphones/black-shark-4-5g-premium-edition-dual-sim-td-lte-cn-256gb-prs-a0" }, { - "slug": "oneplus-10-pro", - "name": "OnePlus 10 Pro", - "url": "/v1/smartphones/oneplus-10-pro" + "slug": "black-shark-4-5g-premium-edition-global-dual-sim-td-lte-128gb-prs-h0", + "name": "Black Shark 4 5G Premium Edition Global Dual SIM TD-LTE 128GB PRS-H0", + "url": "/v1/smartphones/black-shark-4-5g-premium-edition-global-dual-sim-td-lte-128gb-prs-h0" }, { - "slug": "oneplus-10r", - "name": "OnePlus 10R", - "url": "/v1/smartphones/oneplus-10r" + "slug": "black-shark-4-5g-standard-edition-dual-sim-td-lte-cn-128gb-prs-a0", + "name": "Black Shark 4 5G Standard Edition Dual SIM TD-LTE CN 128GB PRS-A0", + "url": "/v1/smartphones/black-shark-4-5g-standard-edition-dual-sim-td-lte-cn-128gb-prs-a0" }, { - "slug": "oneplus-10t", - "name": "OnePlus 10T", - "url": "/v1/smartphones/oneplus-10t" + "slug": "black-shark-4-5g-top-edition-dual-sim-td-lte-cn-128gb-prs-a0", + "name": "Black Shark 4 5G Top Edition Dual SIM TD-LTE CN 128GB PRS-A0", + "url": "/v1/smartphones/black-shark-4-5g-top-edition-dual-sim-td-lte-cn-128gb-prs-a0" }, { - "slug": "oneplus-11", - "name": "OnePlus 11", - "url": "/v1/smartphones/oneplus-11" + "slug": "black-shark-4-5g-top-edition-dual-sim-td-lte-cn-256gb-prs-a0", + "name": "Black Shark 4 5G Top Edition Dual SIM TD-LTE CN 256GB PRS-A0", + "url": "/v1/smartphones/black-shark-4-5g-top-edition-dual-sim-td-lte-cn-256gb-prs-a0" }, { - "slug": "oneplus-11-pro", - "name": "OnePlus 11 Pro", - "url": "/v1/smartphones/oneplus-11-pro" + "slug": "black-shark-4-5g-top-edition-global-dual-sim-td-lte-256gb-prs-h0", + "name": "Black Shark 4 5G Top Edition Global Dual SIM TD-LTE 256GB PRS-H0", + "url": "/v1/smartphones/black-shark-4-5g-top-edition-global-dual-sim-td-lte-256gb-prs-h0" }, { - "slug": "oneplus-11r", - "name": "OnePlus 11R", - "url": "/v1/smartphones/oneplus-11r" + "slug": "black-shark-4-pro", + "name": "Black Shark 4 Pro", + "url": "/v1/smartphones/black-shark-4-pro" }, { - "slug": "oneplus-11t", - "name": "OnePlus 11T", - "url": "/v1/smartphones/oneplus-11t" + "slug": "black-shark-4-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-ksr-a0", + "name": "Black Shark 4 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB KSR-A0", + "url": "/v1/smartphones/black-shark-4-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-ksr-a0" }, { - "slug": "oneplus-12", - "name": "OnePlus 12", - "url": "/v1/smartphones/oneplus-12" + "slug": "black-shark-4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-ksr-a0", + "name": "Black Shark 4 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB KSR-A0", + "url": "/v1/smartphones/black-shark-4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-ksr-a0" }, { - "slug": "oneplus-12r", - "name": "OnePlus 12R", - "url": "/v1/smartphones/oneplus-12r" + "slug": "black-shark-4-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-ksr-a0", + "name": "Black Shark 4 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB KSR-A0", + "url": "/v1/smartphones/black-shark-4-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-ksr-a0" }, { - "slug": "oneplus-12t-5g", - "name": "OnePlus 12T 5G", - "url": "/v1/smartphones/oneplus-12t-5g" + "slug": "black-shark-4-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-ksr-a0", + "name": "Black Shark 4 Pro 5G Top Edition Dual SIM TD-LTE CN 512GB KSR-A0", + "url": "/v1/smartphones/black-shark-4-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-ksr-a0" }, { - "slug": "oneplus-13", - "name": "OnePlus 13", - "url": "/v1/smartphones/oneplus-13" + "slug": "black-shark-4s", + "name": "Black Shark 4S", + "url": "/v1/smartphones/black-shark-4s" }, { - "slug": "oneplus-13-pro", - "name": "OnePlus 13 Pro", - "url": "/v1/smartphones/oneplus-13-pro" + "slug": "black-shark-4s-5g-gundam-limited-edition-dual-sim-td-lte-cn-256gb-prs-a0", + "name": "Black Shark 4S 5G Gundam Limited Edition Dual SIM TD-LTE CN 256GB PRS-A0", + "url": "/v1/smartphones/black-shark-4s-5g-gundam-limited-edition-dual-sim-td-lte-cn-256gb-prs-a0" }, { - "slug": "oneplus-13r", - "name": "OnePlus 13R", - "url": "/v1/smartphones/oneplus-13r" + "slug": "black-shark-4s-5g-standard-edition-dual-sim-td-lte-cn-128gb-prs-a0", + "name": "Black Shark 4S 5G Standard Edition Dual SIM TD-LTE CN 128GB PRS-A0", + "url": "/v1/smartphones/black-shark-4s-5g-standard-edition-dual-sim-td-lte-cn-128gb-prs-a0" }, { - "slug": "oneplus-13s", - "name": "OnePlus 13s", - "url": "/v1/smartphones/oneplus-13s" + "slug": "black-shark-4s-pro", + "name": "Black Shark 4S Pro", + "url": "/v1/smartphones/black-shark-4s-pro" }, { - "slug": "oneplus-14", - "name": "OnePlus 14+", - "url": "/v1/smartphones/oneplus-14" + "slug": "black-shark-4s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-ksr-a0", + "name": "Black Shark 4S Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB KSR-A0", + "url": "/v1/smartphones/black-shark-4s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-ksr-a0" }, { - "slug": "oneplus-15", - "name": "OnePlus 15", - "url": "/v1/smartphones/oneplus-15" + "slug": "black-shark-4s-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-ksr-a0", + "name": "Black Shark 4S Pro 5G Top Edition Dual SIM TD-LTE CN 512GB KSR-A0", + "url": "/v1/smartphones/black-shark-4s-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-ksr-a0" }, { - "slug": "oneplus-15r", - "name": "OnePlus 15R", - "url": "/v1/smartphones/oneplus-15r" + "slug": "black-shark-5", + "name": "Black Shark 5", + "url": "/v1/smartphones/black-shark-5" }, { - "slug": "oneplus-2", - "name": "OnePlus 2", - "url": "/v1/smartphones/oneplus-2" + "slug": "black-shark-5-pro", + "name": "Black Shark 5 Pro", + "url": "/v1/smartphones/black-shark-5-pro" }, { - "slug": "oneplus-3", - "name": "OnePlus 3", - "url": "/v1/smartphones/oneplus-3" + "slug": "black-shark-5-rs", + "name": "Black Shark 5 RS", + "url": "/v1/smartphones/black-shark-5-rs" }, { - "slug": "oneplus-3t", - "name": "OnePlus 3T", - "url": "/v1/smartphones/oneplus-3t" + "slug": "black-shark-dual-sim-td-lte-cn-128gb-skr-a0", + "name": "Black Shark Dual SIM TD-LTE CN 128GB SKR-A0", + "url": "/v1/smartphones/black-shark-dual-sim-td-lte-cn-128gb-skr-a0" }, { - "slug": "oneplus-5", - "name": "OnePlus 5", - "url": "/v1/smartphones/oneplus-5" + "slug": "black-shark-dual-sim-td-lte-cn-256gb-skr-a0", + "name": "Black Shark Dual SIM TD-LTE CN 256GB SKR-A0", + "url": "/v1/smartphones/black-shark-dual-sim-td-lte-cn-256gb-skr-a0" }, { - "slug": "oneplus-5-special-edition", - "name": "OnePlus 5 Special Edition", - "url": "/v1/smartphones/oneplus-5-special-edition" + "slug": "black-shark-dual-sim-td-lte-cn-64gb-skr-a0", + "name": "Black Shark Dual SIM TD-LTE CN 64GB SKR-A0", + "url": "/v1/smartphones/black-shark-dual-sim-td-lte-cn-64gb-skr-a0" }, { - "slug": "oneplus-5t", - "name": "OnePlus 5T", - "url": "/v1/smartphones/oneplus-5t" + "slug": "black-shark-global-dual-sim-td-lte-128gb-skr-h0", + "name": "Black Shark Global Dual SIM TD-LTE 128GB SKR-H0", + "url": "/v1/smartphones/black-shark-global-dual-sim-td-lte-128gb-skr-h0" }, { - "slug": "oneplus-5t-star-wars-edition", - "name": "OnePlus 5T Star Wars Edition", - "url": "/v1/smartphones/oneplus-5t-star-wars-edition" + "slug": "black-shark-global-dual-sim-td-lte-64gb-skr-h0", + "name": "Black Shark Global Dual SIM TD-LTE 64GB SKR-H0", + "url": "/v1/smartphones/black-shark-global-dual-sim-td-lte-64gb-skr-h0" }, { - "slug": "oneplus-6", - "name": "OnePlus 6", - "url": "/v1/smartphones/oneplus-6" + "slug": "black-shark-helo-premium-edition-dual-sim-td-lte-256gb-awm-a0", + "name": "Black Shark Helo Premium Edition Dual SIM TD-LTE 256GB AWM-A0", + "url": "/v1/smartphones/black-shark-helo-premium-edition-dual-sim-td-lte-256gb-awm-a0" }, { - "slug": "oneplus-6-special-edition", - "name": "OnePlus 6 Special Edition", - "url": "/v1/smartphones/oneplus-6-special-edition" + "slug": "black-shark-helo-premium-edition-global-dual-sim-td-lte-128gb-awm-a0", + "name": "Black Shark Helo Premium Edition Global Dual SIM TD-LTE 128GB AWM-A0", + "url": "/v1/smartphones/black-shark-helo-premium-edition-global-dual-sim-td-lte-128gb-awm-a0" }, { - "slug": "oneplus-6t", - "name": "OnePlus 6T", - "url": "/v1/smartphones/oneplus-6t" + "slug": "black-shark-helo-standard-edition-global-dual-sim-td-lte-128gb-awm-a0", + "name": "Black Shark Helo Standard Edition Global Dual SIM TD-LTE 128GB AWM-A0", + "url": "/v1/smartphones/black-shark-helo-standard-edition-global-dual-sim-td-lte-128gb-awm-a0" }, { - "slug": "oneplus-6t-mclaren-edition", - "name": "OnePlus 6T McLaren Edition", - "url": "/v1/smartphones/oneplus-6t-mclaren-edition" + "slug": "black-shark-helo-standard-edition-global-dual-sim-td-lte-64gb-awm-a0", + "name": "Black Shark Helo Standard Edition Global Dual SIM TD-LTE 64GB AWM-A0", + "url": "/v1/smartphones/black-shark-helo-standard-edition-global-dual-sim-td-lte-64gb-awm-a0" }, { - "slug": "oneplus-7", - "name": "OnePlus 7", - "url": "/v1/smartphones/oneplus-7" + "slug": "blackberry-evolve-bbg100-1-dual-sim-td-lte-in", + "name": "BlackBerry Evolve BBG100-1 Dual SIM TD-LTE IN", + "url": "/v1/smartphones/blackberry-evolve-bbg100-1-dual-sim-td-lte-in" }, { - "slug": "oneplus-7-pro", - "name": "OnePlus 7 Pro", - "url": "/v1/smartphones/oneplus-7-pro" + "slug": "blackberry-evolve-x-bbh100-1-dual-sim-td-lte-in", + "name": "BlackBerry Evolve X BBH100-1 Dual SIM TD-LTE IN", + "url": "/v1/smartphones/blackberry-evolve-x-bbh100-1-dual-sim-td-lte-in" }, { - "slug": "oneplus-7r", - "name": "OnePlus 7R", - "url": "/v1/smartphones/oneplus-7r" + "slug": "blackberry-key2-bbf100-1-td-lte-eu-au-jp", + "name": "BlackBerry KEY2 BBF100-1 TD-LTE EU AU JP", + "url": "/v1/smartphones/blackberry-key2-bbf100-1-td-lte-eu-au-jp" }, { - "slug": "oneplus-7t-pro-5g-mclaren-edition", - "name": "OnePlus 7T Pro 5G McLaren Edition", - "url": "/v1/smartphones/oneplus-7t-pro-5g-mclaren-edition" + "slug": "blackberry-key2-bbf100-2-td-lte-am", + "name": "BlackBerry KEY2 BBF100-2 TD-LTE AM", + "url": "/v1/smartphones/blackberry-key2-bbf100-2-td-lte-am" }, { - "slug": "oneplus-8", - "name": "OnePlus 8", - "url": "/v1/smartphones/oneplus-8" + "slug": "blackberry-key2-bbf100-2-td-lte-am-128gb", + "name": "BlackBerry KEY2 BBF100-2 TD-LTE AM 128GB", + "url": "/v1/smartphones/blackberry-key2-bbf100-2-td-lte-am-128gb" }, { - "slug": "oneplus-8-pro", - "name": "OnePlus 8 Pro", - "url": "/v1/smartphones/oneplus-8-pro" + "slug": "blackberry-key2-bbf100-4-td-lte-cn", + "name": "BlackBerry KEY2 BBF100-4 TD-LTE CN", + "url": "/v1/smartphones/blackberry-key2-bbf100-4-td-lte-cn" }, { - "slug": "oneplus-8-pro-mclaren-edition", - "name": "OnePlus 8 Pro McLaren Edition", - "url": "/v1/smartphones/oneplus-8-pro-mclaren-edition" + "slug": "blackberry-key2-bbf100-6-dual-sim-td-lte-apac", + "name": "BlackBerry KEY2 BBF100-6 Dual SIM TD-LTE APAC", + "url": "/v1/smartphones/blackberry-key2-bbf100-6-dual-sim-td-lte-apac" }, { - "slug": "oneplus-8r", - "name": "OnePlus 8R", - "url": "/v1/smartphones/oneplus-8r" + "slug": "blackberry-key2-bbf100-6-dual-sim-td-lte-apac-128gb", + "name": "BlackBerry KEY2 BBF100-6 Dual SIM TD-LTE APAC 128GB", + "url": "/v1/smartphones/blackberry-key2-bbf100-6-dual-sim-td-lte-apac-128gb" }, { - "slug": "oneplus-8t", - "name": "OnePlus 8T", - "url": "/v1/smartphones/oneplus-8t" + "slug": "blackberry-key2-bbf100-8-dual-sim-td-lte-jp-64gb", + "name": "BlackBerry KEY2 BBF100-8 Dual SIM TD-LTE JP 64GB", + "url": "/v1/smartphones/blackberry-key2-bbf100-8-dual-sim-td-lte-jp-64gb" }, { - "slug": "oneplus-8t-cyberpunk-2077-edition", - "name": "OnePlus 8T Cyberpunk 2077 Edition", - "url": "/v1/smartphones/oneplus-8t-cyberpunk-2077-edition" + "slug": "blackberry-key2-bbf100-9-td-lte-jp-128gb", + "name": "BlackBerry KEY2 BBF100-9 TD-LTE JP 128GB", + "url": "/v1/smartphones/blackberry-key2-bbf100-9-td-lte-jp-128gb" }, { - "slug": "oneplus-8t-cyberpunk-edition", - "name": "OnePlus 8T Cyberpunk Edition", - "url": "/v1/smartphones/oneplus-8t-cyberpunk-edition" + "slug": "blackberry-key2-le-bbe100-1-global-td-lte", + "name": "BlackBerry KEY2 LE BBE100-1 Global TD-LTE", + "url": "/v1/smartphones/blackberry-key2-le-bbe100-1-global-td-lte" }, { - "slug": "oneplus-9", - "name": "OnePlus 9", - "url": "/v1/smartphones/oneplus-9" + "slug": "blackberry-key2-le-bbe100-2-td-lte-am-32gb", + "name": "BlackBerry KEY2 LE BBE100-2 TD-LTE AM 32GB", + "url": "/v1/smartphones/blackberry-key2-le-bbe100-2-td-lte-am-32gb" }, { - "slug": "oneplus-9-pro", - "name": "OnePlus 9 Pro", - "url": "/v1/smartphones/oneplus-9-pro" + "slug": "blackberry-key2-le-bbe100-4-global-dual-sim-td-lte-64gb", + "name": "BlackBerry KEY2 LE BBE100-4 Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/blackberry-key2-le-bbe100-4-global-dual-sim-td-lte-64gb" }, { - "slug": "oneplus-9r-5g", - "name": "OnePlus 9R 5G", - "url": "/v1/smartphones/oneplus-9r-5g" + "slug": "blackberry-key2-le-bbe100-5-dual-sim-td-lte-na-64gb", + "name": "BlackBerry KEY2 LE BBE100-5 Dual SIM TD-LTE NA 64GB", + "url": "/v1/smartphones/blackberry-key2-le-bbe100-5-dual-sim-td-lte-na-64gb" }, { - "slug": "oneplus-9t", - "name": "OnePlus 9T", - "url": "/v1/smartphones/oneplus-9t" + "slug": "blackberry-key2-last-edition-bbf100-9-td-lte-jp-128gb", + "name": "BlackBerry KEY2 Last Edition BBF100-9 TD-LTE JP 128GB", + "url": "/v1/smartphones/blackberry-key2-last-edition-bbf100-9-td-lte-jp-128gb" }, { - "slug": "oneplus-nord-1", - "name": "OnePlus Nord 1", - "url": "/v1/smartphones/oneplus-nord-1" + "slug": "blackberry-key2-red-edition-bbf100-1-td-lte-eu-au-jp-128gb", + "name": "BlackBerry KEY2 Red Edition BBF100-1 TD-LTE EU AU JP 128GB", + "url": "/v1/smartphones/blackberry-key2-red-edition-bbf100-1-td-lte-eu-au-jp-128gb" }, { - "slug": "oneplus-nord-2t", - "name": "OnePlus Nord 2T", - "url": "/v1/smartphones/oneplus-nord-2t" + "slug": "blackberry-key2-red-eition-bbf100-2-td-lte-am-128gb", + "name": "BlackBerry KEY2 Red Eition BBF100-2 TD-LTE AM 128GB", + "url": "/v1/smartphones/blackberry-key2-red-eition-bbf100-2-td-lte-am-128gb" }, { - "slug": "oneplus-nord-3", - "name": "OnePlus Nord 3", - "url": "/v1/smartphones/oneplus-nord-3" + "slug": "blackberry-motion-global-dual-sim-td-lte-bbd100-6", + "name": "BlackBerry Motion Global Dual SIm TD-LTE BBD100-6", + "url": "/v1/smartphones/blackberry-motion-global-dual-sim-td-lte-bbd100-6" }, { - "slug": "oneplus-nord-ce-2", - "name": "OnePlus Nord CE 2", - "url": "/v1/smartphones/oneplus-nord-ce-2" + "slug": "blade-10-smart-lte-a-emea-128gb", + "name": "Blade 10 Smart LTE-A EMEA 128GB", + "url": "/v1/smartphones/blade-10-smart-lte-a-emea-128gb" }, { - "slug": "oneplus-nord-ce-2-lite", - "name": "OnePlus Nord CE 2 Lite", - "url": "/v1/smartphones/oneplus-nord-ce-2-lite" + "slug": "blade-11-prime-2020-dual-sim-lte-a-us-z6251vs", + "name": "Blade 11 Prime 2020 Dual SIM LTE-A US Z6251VS", + "url": "/v1/smartphones/blade-11-prime-2020-dual-sim-lte-a-us-z6251vs" }, { - "slug": "oneplus-nord-ce-3-lite", - "name": "OnePlus Nord CE 3 Lite", - "url": "/v1/smartphones/oneplus-nord-ce-3-lite" + "slug": "blade-20-5g-dual-sim-td-lte-cn-128gb-8012n", + "name": "Blade 20 5G Dual SIM TD-LTE CN 128GB 8012N", + "url": "/v1/smartphones/blade-20-5g-dual-sim-td-lte-cn-128gb-8012n" }, { - "slug": "oneplus-nord-ce-5g", - "name": "OnePlus Nord CE 5G", - "url": "/v1/smartphones/oneplus-nord-ce-5g" + "slug": "blade-20-pro-5g-dual-sim-td-lte-cn-128gb", + "name": "Blade 20 Pro 5G Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/blade-20-pro-5g-dual-sim-td-lte-cn-128gb" }, { - "slug": "oneplus-nord-n10-5g", - "name": "OnePlus Nord N10 5G", - "url": "/v1/smartphones/oneplus-nord-n10-5g" + "slug": "blade-20-smart-global-td-lte-128gb", + "name": "Blade 20 Smart Global TD-LTE 128GB", + "url": "/v1/smartphones/blade-20-smart-global-td-lte-128gb" }, { - "slug": "oneplus-nord-n100", - "name": "OnePlus Nord N100", - "url": "/v1/smartphones/oneplus-nord-n100" + "slug": "blade-a3-prime-lte-us-z5157vs", + "name": "Blade A3 Prime LTE US Z5157VS", + "url": "/v1/smartphones/blade-a3-prime-lte-us-z5157vs" }, { - "slug": "oneplus-nord-n100-5g", - "name": "OnePlus Nord N100 5G", - "url": "/v1/smartphones/oneplus-nord-n100-5g" + "slug": "blade-a3y-lte-us-z5157v", + "name": "Blade A3Y LTE US Z5157V", + "url": "/v1/smartphones/blade-a3y-lte-us-z5157v" }, { - "slug": "oneplus-nord-n200", - "name": "OnePlus Nord N200", - "url": "/v1/smartphones/oneplus-nord-n200" + "slug": "blade-a512-global-dual-sim-lte", + "name": "Blade A512 Global Dual SIM LTE", + "url": "/v1/smartphones/blade-a512-global-dual-sim-lte" }, { - "slug": "oneplus-nord-x", - "name": "OnePlus Nord X", - "url": "/v1/smartphones/oneplus-nord-x" + "slug": "blade-a522-global-dual-sim-lte", + "name": "Blade A522 Global Dual SIM LTE", + "url": "/v1/smartphones/blade-a522-global-dual-sim-lte" }, { - "slug": "oneplus-one", - "name": "OnePlus One", - "url": "/v1/smartphones/oneplus-one" + "slug": "blade-a7-2020-dual-sim-td-lte-emea-32gb-ea72020-blade-a7s", + "name": "Blade A7 2020 Dual SIM TD-LTE EMEA 32GB EA72020 / Blade A7s", + "url": "/v1/smartphones/blade-a7-2020-dual-sim-td-lte-emea-32gb-ea72020-blade-a7s" }, { - "slug": "oneplus-open", - "name": "OnePlus Open", - "url": "/v1/smartphones/oneplus-open" + "slug": "blade-a7-2020-dual-sim-td-lte-emea-64gb-ea72020-blade-a7s", + "name": "Blade A7 2020 Dual SIM TD-LTE EMEA 64GB EA72020 / Blade A7s", + "url": "/v1/smartphones/blade-a7-2020-dual-sim-td-lte-emea-64gb-ea72020-blade-a7s" }, { - "slug": "oppo-find-n3-flip", - "name": "Oppo Find N3 Flip", - "url": "/v1/smartphones/oppo-find-n3-flip" + "slug": "blade-a7s-2020-dual-sim-td-lte-cn-64gb-a7010", + "name": "Blade A7s 2020 Dual SIM TD-LTE CN 64GB A7010", + "url": "/v1/smartphones/blade-a7s-2020-dual-sim-td-lte-cn-64gb-a7010" }, { - "slug": "oppo-find-n5", - "name": "Oppo Find N5", - "url": "/v1/smartphones/oppo-find-n5" + "slug": "blade-max-2s-dual-sim-lte-us-z6410s", + "name": "Blade Max 2s Dual SIM LTE US Z6410S", + "url": "/v1/smartphones/blade-max-2s-dual-sim-lte-us-z6410s" }, { - "slug": "oppo-find-x9", - "name": "Oppo Find X9", - "url": "/v1/smartphones/oppo-find-x9" + "slug": "blade-max-view-lte-us-z610dl", + "name": "Blade Max View LTE US Z610DL", + "url": "/v1/smartphones/blade-max-view-lte-us-z610dl" }, { - "slug": "oppo-find-x9-pro", - "name": "Oppo Find X9 Pro", - "url": "/v1/smartphones/oppo-find-x9-pro" + "slug": "blade-v2020-dual-sim-lte-a-eu-p671-a1-alpha-20", + "name": "Blade V2020 Dual SIM LTE-A EU P671 / A1 Alpha 20+", + "url": "/v1/smartphones/blade-v2020-dual-sim-lte-a-eu-p671-a1-alpha-20" }, { - "slug": "oppo-find-x9-ultra", - "name": "Oppo Find X9 Ultra", - "url": "/v1/smartphones/oppo-find-x9-ultra" + "slug": "blade-v2020-lte-a-latam", + "name": "Blade V2020 LTE-A LATAM", + "url": "/v1/smartphones/blade-v2020-lte-a-latam" }, { - "slug": "p1-5g", - "name": "P1 5G", - "url": "/v1/smartphones/p1-5g" + "slug": "blade-v2020-vita-lte-latam", + "name": "Blade V2020 Vita LTE LATAM", + "url": "/v1/smartphones/blade-v2020-vita-lte-latam" }, { - "slug": "p1-speed-5g", - "name": "P1 Speed 5G", - "url": "/v1/smartphones/p1-speed-5g" + "slug": "blade-v2021-5g-dual-sim-td-lte-cn-128gb-8012n", + "name": "Blade V2021 5G Dual SIM TD-LTE CN 128GB 8012N", + "url": "/v1/smartphones/blade-v2021-5g-dual-sim-td-lte-cn-128gb-8012n" }, { - "slug": "p2-pro-5g", - "name": "P2 Pro 5G", - "url": "/v1/smartphones/p2-pro-5g" + "slug": "blade-v220-lte-emea-avea-intouch-4", + "name": "Blade V220 LTE EMEA / Avea inTouch 4", + "url": "/v1/smartphones/blade-v220-lte-emea-avea-intouch-4" }, { - "slug": "p50", - "name": "P50", - "url": "/v1/smartphones/p50" + "slug": "blade-v30-global-dual-sim-td-lte-128gb-a9030", + "name": "Blade V30 Global Dual SIM TD-LTE 128GB A9030", + "url": "/v1/smartphones/blade-v30-global-dual-sim-td-lte-128gb-a9030" }, { - "slug": "p50-pocket", - "name": "P50 Pocket", - "url": "/v1/smartphones/p50-pocket" + "slug": "blade-v30-lte-a-latam-128gb-a9030", + "name": "Blade V30 LTE-A LATAM 128GB A9030", + "url": "/v1/smartphones/blade-v30-lte-a-latam-128gb-a9030" }, { - "slug": "p50-pro", - "name": "P50 Pro", - "url": "/v1/smartphones/p50-pro" + "slug": "blade-v8q-dual-sim-td-lte-jp", + "name": "Blade V8Q Dual SIM TD-LTE JP", + "url": "/v1/smartphones/blade-v8q-dual-sim-td-lte-jp" }, { - "slug": "p50e", - "name": "P50E", - "url": "/v1/smartphones/p50e" + "slug": "blade-v9-dual-sim-lte-a-am-version-2-32gb", + "name": "Blade V9 Dual SIM LTE-A AM Version 2 32GB", + "url": "/v1/smartphones/blade-v9-dual-sim-lte-a-am-version-2-32gb" }, { - "slug": "poco-f3", - "name": "POCO F3", - "url": "/v1/smartphones/poco-f3" + "slug": "blade-v9-dual-sim-td-lte-cn-32gb-v0900", + "name": "Blade V9 Dual SIM TD-LTE CN 32GB V0900", + "url": "/v1/smartphones/blade-v9-dual-sim-td-lte-cn-32gb-v0900" }, { - "slug": "poco-f4", - "name": "POCO F4", - "url": "/v1/smartphones/poco-f4" + "slug": "blade-v9-dual-sim-td-lte-cn-64gb-v0900", + "name": "Blade V9 Dual SIM TD-LTE CN 64GB V0900", + "url": "/v1/smartphones/blade-v9-dual-sim-td-lte-cn-64gb-v0900" }, { - "slug": "poco-f5", - "name": "POCO F5", - "url": "/v1/smartphones/poco-f5" + "slug": "blade-v9-dual-sim-td-lte-version-3-16gb", + "name": "Blade V9 Dual SIM TD-LTE Version 3 16GB", + "url": "/v1/smartphones/blade-v9-dual-sim-td-lte-version-3-16gb" }, { - "slug": "poco-f5-pro", - "name": "POCO F5 Pro", - "url": "/v1/smartphones/poco-f5-pro" + "slug": "blade-v9-vita-dual-sim-lte-am-v0920", + "name": "Blade V9 Vita Dual SIM LTE AM V0920", + "url": "/v1/smartphones/blade-v9-vita-dual-sim-lte-am-v0920" }, { - "slug": "poco-f6", - "name": "POCO F6", - "url": "/v1/smartphones/poco-f6" + "slug": "blade-v9-vita-dual-sim-td-lte-cn-v0920-xiaoxian-5s", + "name": "Blade V9 Vita Dual SIM TD-LTE CN V0920 / Xiaoxian 5S", + "url": "/v1/smartphones/blade-v9-vita-dual-sim-td-lte-cn-v0920-xiaoxian-5s" }, { - "slug": "poco-f7-pro", - "name": "POCO F7 Pro", - "url": "/v1/smartphones/poco-f7-pro" + "slug": "blade-x1-5g-lte-a-us-z6750m-z6750vs", + "name": "Blade X1 5G LTE-A US Z6750M / Z6750VS", + "url": "/v1/smartphones/blade-x1-5g-lte-a-us-z6750m-z6750vs" }, { - "slug": "poco-f7-ultra", - "name": "POCO F7 Ultra", - "url": "/v1/smartphones/poco-f7-ultra" + "slug": "boost-jett-4gx-lte-au-b125", + "name": "Boost Jett 4GX LTE AU B125", + "url": "/v1/smartphones/boost-jett-4gx-lte-au-b125" }, { - "slug": "poco-x4-pro", - "name": "POCO X4 Pro 5G", - "url": "/v1/smartphones/poco-x4-pro" + "slug": "c2-tennen", + "name": "C2 Tennen", + "url": "/v1/smartphones/c2-tennen" }, { - "slug": "poco-x5-pro", - "name": "POCO X5 Pro", - "url": "/v1/smartphones/poco-x5-pro" + "slug": "c2-tennen-lte-a-us-32gb-c2-tava", + "name": "C2 Tennen LTE-A US 32GB / C2 Tava", + "url": "/v1/smartphones/c2-tennen-lte-a-us-32gb-c2-tava" }, { - "slug": "poco-x6", - "name": "POCO X6", - "url": "/v1/smartphones/poco-x6" + "slug": "c5-endi", + "name": "C5 Endi", + "url": "/v1/smartphones/c5-endi" }, { - "slug": "poco-x6-pro", - "name": "POCO X6 Pro", - "url": "/v1/smartphones/poco-x6-pro" + "slug": "c5-endi-lte-a-us", + "name": "C5 Endi LTE-A US", + "url": "/v1/smartphones/c5-endi-lte-a-us" }, { - "slug": "poco-x7-pro", - "name": "POCO X7 Pro", - "url": "/v1/smartphones/poco-x7-pro" + "slug": "c55", + "name": "C55", + "url": "/v1/smartphones/c55" }, { - "slug": "phantom-v-flip2", - "name": "Phantom V Flip2", - "url": "/v1/smartphones/phantom-v-flip2" + "slug": "c61", + "name": "C61", + "url": "/v1/smartphones/c61" }, { - "slug": "phantom-v-fold2", - "name": "Phantom V Fold2", - "url": "/v1/smartphones/phantom-v-fold2" + "slug": "c63", + "name": "C63", + "url": "/v1/smartphones/c63" }, { - "slug": "phone-1", - "name": "Phone (1)", - "url": "/v1/smartphones/phone-1" + "slug": "c65", + "name": "C65", + "url": "/v1/smartphones/c65" }, { - "slug": "pixel-1", - "name": "Pixel", - "url": "/v1/smartphones/pixel-1" + "slug": "realme-c65", + "name": "C65", + "url": "/v1/smartphones/realme-c65" }, { - "slug": "pixel-10", - "name": "Pixel 10", - "url": "/v1/smartphones/pixel-10" + "slug": "c67", + "name": "C67", + "url": "/v1/smartphones/c67" }, { - "slug": "pixel-10-pro", - "name": "Pixel 10 Pro", - "url": "/v1/smartphones/pixel-10-pro" + "slug": "c75", + "name": "C75", + "url": "/v1/smartphones/c75" }, { - "slug": "pixel-10-pro-fold", - "name": "Pixel 10 Pro Fold", - "url": "/v1/smartphones/pixel-10-pro-fold" + "slug": "cat-s61-dual-sim-lte-us", + "name": "CAT S61 Dual SIM LTE US", + "url": "/v1/smartphones/cat-s61-dual-sim-lte-us" }, { - "slug": "pixel-10-pro-xl", - "name": "Pixel 10 Pro XL", - "url": "/v1/smartphones/pixel-10-pro-xl" + "slug": "cat-s61-dual-sim-td-lte-apac", + "name": "CAT S61 Dual SIM TD-LTE APAC", + "url": "/v1/smartphones/cat-s61-dual-sim-td-lte-apac" }, { - "slug": "pixel-10a", - "name": "Pixel 10a", - "url": "/v1/smartphones/pixel-10a" + "slug": "cat-s61-global-dual-sim-td-lte", + "name": "CAT S61 Global Dual SIM TD-LTE", + "url": "/v1/smartphones/cat-s61-global-dual-sim-td-lte" }, { - "slug": "pixel-2", - "name": "Pixel 2", - "url": "/v1/smartphones/pixel-2" + "slug": "cat-s62-pro-dual-sim-lte-a-am", + "name": "CAT S62 Pro Dual SIM LTE-A AM", + "url": "/v1/smartphones/cat-s62-pro-dual-sim-lte-a-am" }, { - "slug": "pixel-2-xl", - "name": "Pixel 2 XL", - "url": "/v1/smartphones/pixel-2-xl" + "slug": "cat-s62-pro-global-dual-sim-td-lte", + "name": "CAT S62 Pro Global Dual SIM TD-LTE", + "url": "/v1/smartphones/cat-s62-pro-global-dual-sim-td-lte" }, { - "slug": "pixel-3", - "name": "Pixel 3", - "url": "/v1/smartphones/pixel-3" + "slug": "cat-s62-pro-lte-a-am", + "name": "CAT S62 Pro LTE-A AM", + "url": "/v1/smartphones/cat-s62-pro-lte-a-am" }, { - "slug": "pixel-3-xl", - "name": "Pixel 3 XL", - "url": "/v1/smartphones/pixel-3-xl" + "slug": "cat-s62-td-lte-am", + "name": "CAT S62 TD-LTE- AM", + "url": "/v1/smartphones/cat-s62-td-lte-am" }, { - "slug": "pixel-3a", - "name": "Pixel 3a", - "url": "/v1/smartphones/pixel-3a" + "slug": "cmf-phone-1", + "name": "CMF Phone 1", + "url": "/v1/smartphones/cmf-phone-1" }, { - "slug": "pixel-3a-xl", - "name": "Pixel 3a XL", - "url": "/v1/smartphones/pixel-3a-xl" + "slug": "nothing-cmf-phone-2-pro", + "name": "CMF Phone 2 Pro", + "url": "/v1/smartphones/nothing-cmf-phone-2-pro" }, { - "slug": "pixel-4", - "name": "Pixel 4", - "url": "/v1/smartphones/pixel-4" + "slug": "camon-15-air-dual-sim-td-lte-cc6-cd6", + "name": "Camon 15 Air Dual SIM TD-LTE CC6 / CD6", + "url": "/v1/smartphones/camon-15-air-dual-sim-td-lte-cc6-cd6" }, { - "slug": "pixel-4-xl", - "name": "Pixel 4 XL", - "url": "/v1/smartphones/pixel-4-xl" + "slug": "camon-15-dual-sim-td-lte-cc7-cd7", + "name": "Camon 15 Dual SIM TD-LTE CC7 / CD7", + "url": "/v1/smartphones/camon-15-dual-sim-td-lte-cc7-cd7" }, { - "slug": "pixel-4a", - "name": "Pixel 4a", - "url": "/v1/smartphones/pixel-4a" + "slug": "camon-15-premier-dual-sim-td-lte-128gb-cc8j-cd8j", + "name": "Camon 15 Premier Dual SIM TD-LTE 128GB CC8j / CD8j", + "url": "/v1/smartphones/camon-15-premier-dual-sim-td-lte-128gb-cc8j-cd8j" }, { - "slug": "google-pixel-5", + "slug": "camon-15-pro-dual-sim-td-lte-128gb-cc8-cd8", + "name": "Camon 15 Pro Dual SIM TD-LTE 128GB CC8 / CD8", + "url": "/v1/smartphones/camon-15-pro-dual-sim-td-lte-128gb-cc8-cd8" + }, + { + "slug": "camon-20", + "name": "Camon 20", + "url": "/v1/smartphones/camon-20" + }, + { + "slug": "camon-20-premier", + "name": "Camon 20 Premier", + "url": "/v1/smartphones/camon-20-premier" + }, + { + "slug": "camon-20-pro", + "name": "Camon 20 Pro", + "url": "/v1/smartphones/camon-20-pro" + }, + { + "slug": "camon-20-pro-5g", + "name": "Camon 20 Pro 5G", + "url": "/v1/smartphones/camon-20-pro-5g" + }, + { + "slug": "camon-20s", + "name": "Camon 20s", + "url": "/v1/smartphones/camon-20s" + }, + { + "slug": "camon-20s-pro", + "name": "Camon 20s Pro", + "url": "/v1/smartphones/camon-20s-pro" + }, + { + "slug": "camon-20s-pro-5g", + "name": "Camon 20s Pro 5G", + "url": "/v1/smartphones/camon-20s-pro-5g" + }, + { + "slug": "camon-30", + "name": "Camon 30", + "url": "/v1/smartphones/camon-30" + }, + { + "slug": "camon-30-5g", + "name": "Camon 30 5G", + "url": "/v1/smartphones/camon-30-5g" + }, + { + "slug": "camon-30-premier", + "name": "Camon 30 Premier", + "url": "/v1/smartphones/camon-30-premier" + }, + { + "slug": "camon-30-pro", + "name": "Camon 30 Pro", + "url": "/v1/smartphones/camon-30-pro" + }, + { + "slug": "camon-30s", + "name": "Camon 30S", + "url": "/v1/smartphones/camon-30s" + }, + { + "slug": "camon-30s-pro", + "name": "Camon 30S Pro", + "url": "/v1/smartphones/camon-30s-pro" + }, + { + "slug": "camon-x-td-lte-dual-sim-16gb", + "name": "Camon X TD-LTE Dual SIM 16GB", + "url": "/v1/smartphones/camon-x-td-lte-dual-sim-16gb" + }, + { + "slug": "canvas-4g-lte-us-3636a", + "name": "Canvas 4G LTE US 3636A", + "url": "/v1/smartphones/canvas-4g-lte-us-3636a" + }, + { + "slug": "cat-s52-global-dual-sim-td-lte", + "name": "Cat S52 Global Dual SIM TD-LTE", + "url": "/v1/smartphones/cat-s52-global-dual-sim-td-lte" + }, + { + "slug": "civi", + "name": "Civi", + "url": "/v1/smartphones/civi" + }, + { + "slug": "civi-1s", + "name": "Civi 1s", + "url": "/v1/smartphones/civi-1s" + }, + { + "slug": "civi-2", + "name": "Civi 2", + "url": "/v1/smartphones/civi-2" + }, + { + "slug": "civi-3", + "name": "Civi 3", + "url": "/v1/smartphones/civi-3" + }, + { + "slug": "cool-20-premium-edition-dual-sim-td-lte-cn-128gb", + "name": "Cool 20 Premium Edition Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/cool-20-premium-edition-dual-sim-td-lte-cn-128gb" + }, + { + "slug": "cool-20-standard-edition-dual-sim-td-lte-cn-128gb", + "name": "Cool 20 Standard Edition Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/cool-20-standard-edition-dual-sim-td-lte-cn-128gb" + }, + { + "slug": "cool-20-standard-edition-dual-sim-td-lte-cn-64gb", + "name": "Cool 20 Standard Edition Dual SIM TD-LTE CN 64GB", + "url": "/v1/smartphones/cool-20-standard-edition-dual-sim-td-lte-cn-64gb" + }, + { + "slug": "cool-5-dual-sim-td-lte-1826-i01", + "name": "Cool 5 Dual SIM TD-LTE 1826-I01", + "url": "/v1/smartphones/cool-5-dual-sim-td-lte-1826-i01" + }, + { + "slug": "cricket-ovation-lte-a-us-u705ac", + "name": "Cricket Ovation LTE-A US U705AC", + "url": "/v1/smartphones/cricket-ovation-lte-a-us-u705ac" + }, + { + "slug": "defiant-3632a-lte-us", + "name": "Defiant 3632A LTE US", + "url": "/v1/smartphones/defiant-3632a-lte-us" + }, + { + "slug": "desire-12-dual-sim-td-lte-apac-32gb", + "name": "Desire 12+ Dual SIM TD-LTE APAC 32GB", + "url": "/v1/smartphones/desire-12-dual-sim-td-lte-apac-32gb" + }, + { + "slug": "desire-12-global-dual-sim-td-lte-32gb", + "name": "Desire 12+ Global Dual SIM TD-LTE 32GB", + "url": "/v1/smartphones/desire-12-global-dual-sim-td-lte-32gb" + }, + { + "slug": "desire-12s-global-dual-sim-td-lte-32gb", + "name": "Desire 12s Global Dual SIM TD-LTE 32GB", + "url": "/v1/smartphones/desire-12s-global-dual-sim-td-lte-32gb" + }, + { + "slug": "desire-12s-global-dual-sim-td-lte-64gb", + "name": "Desire 12s Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/desire-12s-global-dual-sim-td-lte-64gb" + }, + { + "slug": "desire-19", + "name": "Desire 19+", + "url": "/v1/smartphones/desire-19" + }, + { + "slug": "desire-19-global-dual-sim-td-lte-128gb", + "name": "Desire 19+ Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/desire-19-global-dual-sim-td-lte-128gb" + }, + { + "slug": "desire-19-global-dual-sim-td-lte-64gb", + "name": "Desire 19+ Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/desire-19-global-dual-sim-td-lte-64gb" + }, + { + "slug": "desire-19s", + "name": "Desire 19s", + "url": "/v1/smartphones/desire-19s" + }, + { + "slug": "desire-19s-global-dual-sim-td-lte", + "name": "Desire 19s Global Dual SIM TD-LTE", + "url": "/v1/smartphones/desire-19s-global-dual-sim-td-lte" + }, + { + "slug": "desire-20-pro-global-dual-sim-td-lte", + "name": "Desire 20 Pro Global Dual SIM TD-LTE", + "url": "/v1/smartphones/desire-20-pro-global-dual-sim-td-lte" + }, + { + "slug": "desire-20", + "name": "Desire 20+", + "url": "/v1/smartphones/desire-20" + }, + { + "slug": "desire-21-pro", + "name": "Desire 21 Pro", + "url": "/v1/smartphones/desire-21-pro" + }, + { + "slug": "desire-22-pro", + "name": "Desire 22 Pro", + "url": "/v1/smartphones/desire-22-pro" + }, + { + "slug": "diamond-2019-dual-sim-lte", + "name": "Diamond 2019 Dual SIM LTE", + "url": "/v1/smartphones/diamond-2019-dual-sim-lte" + }, + { + "slug": "digno-3-for-biz-td-lte-jp-904kc", + "name": "Digno 3 for Biz TD-LTE JP 904KC", + "url": "/v1/smartphones/digno-3-for-biz-td-lte-jp-904kc" + }, + { + "slug": "digno-bx-td-lte-jp-901kc", + "name": "Digno BX TD-LTE JP 901KC", + "url": "/v1/smartphones/digno-bx-td-lte-jp-901kc" + }, + { + "slug": "digno-j-td-lte-jp-704kc", + "name": "Digno J TD-LTE JP 704KC", + "url": "/v1/smartphones/digno-j-td-lte-jp-704kc" + }, + { + "slug": "duraforce-pro-2-lte-a-us-e6921", + "name": "DuraForce Pro 2 LTE-A US E6921", + "url": "/v1/smartphones/duraforce-pro-2-lte-a-us-e6921" + }, + { + "slug": "duraforce-pro-2-xlte-e6910", + "name": "DuraForce Pro 2 XLTE E6910", + "url": "/v1/smartphones/duraforce-pro-2-xlte-e6910" + }, + { + "slug": "duraforce-ultra-5g-uw-e7110", + "name": "DuraForce Ultra 5G UW E7110", + "url": "/v1/smartphones/duraforce-ultra-5g-uw-e7110" + }, + { + "slug": "durasport-5g-uw-td-lte-us-e6930", + "name": "DuraSport 5G UW TD-LTE US E6930", + "url": "/v1/smartphones/durasport-5g-uw-td-lte-us-e6930" + }, + { + "slug": "edge", + "name": "Edge", + "url": "/v1/smartphones/edge" + }, + { + "slug": "edge-30-fusion", + "name": "Edge 30 Fusion", + "url": "/v1/smartphones/edge-30-fusion" + }, + { + "slug": "edge-30-neo", + "name": "Edge 30 Neo", + "url": "/v1/smartphones/edge-30-neo" + }, + { + "slug": "edge-50", + "name": "Edge 50", + "url": "/v1/smartphones/edge-50" + }, + { + "slug": "edge-50-fusion", + "name": "Edge 50 Fusion", + "url": "/v1/smartphones/edge-50-fusion" + }, + { + "slug": "edge-50-lite", + "name": "Edge 50 Lite", + "url": "/v1/smartphones/edge-50-lite" + }, + { + "slug": "edge-50-neo", + "name": "Edge 50 Neo", + "url": "/v1/smartphones/edge-50-neo" + }, + { + "slug": "edge-50-pro", + "name": "Edge 50 Pro", + "url": "/v1/smartphones/edge-50-pro" + }, + { + "slug": "edge-50-ultra", + "name": "Edge 50 Ultra", + "url": "/v1/smartphones/edge-50-ultra" + }, + { + "slug": "eluga-ray-610-dual-sim-td-lte-in", + "name": "Eluga Ray 610 Dual SIM TD-LTE IN", + "url": "/v1/smartphones/eluga-ray-610-dual-sim-td-lte-in" + }, + { + "slug": "eluga-ray-810-dual-sim-td-lte-in", + "name": "Eluga Ray 810 Dual SIM TD-LTE IN", + "url": "/v1/smartphones/eluga-ray-810-dual-sim-td-lte-in" + }, + { + "slug": "eluga-x1-dual-sim-td-lte-in", + "name": "Eluga X1 Dual SIM TD-LTE IN", + "url": "/v1/smartphones/eluga-x1-dual-sim-td-lte-in" + }, + { + "slug": "eluga-x1-pro-dual-sim-td-lte-in", + "name": "Eluga X1 Pro Dual SIM TD-LTE IN", + "url": "/v1/smartphones/eluga-x1-pro-dual-sim-td-lte-in" + }, + { + "slug": "eluga-y-pro-dual-sim-td-lte-tw", + "name": "Eluga Y Pro Dual SIM TD-LTE TW", + "url": "/v1/smartphones/eluga-y-pro-dual-sim-td-lte-tw" + }, + { + "slug": "eluga-z1-dual-sim-td-lte-in", + "name": "Eluga Z1 Dual SIM TD-LTE IN", + "url": "/v1/smartphones/eluga-z1-dual-sim-td-lte-in" + }, + { + "slug": "eluga-z1-pro-dual-sim-td-lte-in", + "name": "Eluga Z1 Pro Dual SIM TD-LTE IN", + "url": "/v1/smartphones/eluga-z1-pro-dual-sim-td-lte-in" + }, + { + "slug": "enjoy-10-plus-premium-edition-dual-sim-td-lte-cn-128gb-stk-al00", + "name": "Enjoy 10 Plus Premium Edition Dual SIM TD-LTE CN 128GB STK-AL00", + "url": "/v1/smartphones/enjoy-10-plus-premium-edition-dual-sim-td-lte-cn-128gb-stk-al00" + }, + { + "slug": "enjoy-10-plus-premium-edition-dual-sim-td-lte-cn-128gb-stk-tl00", + "name": "Enjoy 10 Plus Premium Edition Dual SIM TD-LTE CN 128GB STK-TL00", + "url": "/v1/smartphones/enjoy-10-plus-premium-edition-dual-sim-td-lte-cn-128gb-stk-tl00" + }, + { + "slug": "enjoy-10-plus-standard-edition-dual-sim-td-lte-cn-128gb-stk-al00", + "name": "Enjoy 10 Plus Standard Edition Dual SIM TD-LTE CN 128GB STK-AL00", + "url": "/v1/smartphones/enjoy-10-plus-standard-edition-dual-sim-td-lte-cn-128gb-stk-al00" + }, + { + "slug": "enjoy-10-plus-standard-edition-dual-sim-td-lte-cn-128gb-stk-tl00", + "name": "Enjoy 10 Plus Standard Edition Dual SIM TD-LTE CN 128GB STK-TL00", + "url": "/v1/smartphones/enjoy-10-plus-standard-edition-dual-sim-td-lte-cn-128gb-stk-tl00" + }, + { + "slug": "enjoy-10-plus-top-edition-dual-sim-td-lte-cn-128gb-stk-al00", + "name": "Enjoy 10 Plus Top Edition Dual SIM TD-LTE CN 128GB STK-AL00", + "url": "/v1/smartphones/enjoy-10-plus-top-edition-dual-sim-td-lte-cn-128gb-stk-al00" + }, + { + "slug": "enjoy-10-plus-top-edition-dual-sim-td-lte-cn-128gb-stk-tl00", + "name": "Enjoy 10 Plus Top Edition Dual SIM TD-LTE CN 128GB STK-TL00", + "url": "/v1/smartphones/enjoy-10-plus-top-edition-dual-sim-td-lte-cn-128gb-stk-tl00" + }, + { + "slug": "enjoy-10-premium-edition-dual-sim-td-lte-cn-64gb-art-al00x", + "name": "Enjoy 10 Premium Edition Dual SIM TD-LTE CN 64GB ART-AL00x", + "url": "/v1/smartphones/enjoy-10-premium-edition-dual-sim-td-lte-cn-64gb-art-al00x" + }, + { + "slug": "enjoy-10-standard-edition-dual-sim-td-lte-cn-128gb-art-al00x", + "name": "Enjoy 10 Standard Edition Dual SIM TD-LTE CN 128GB ART-AL00x", + "url": "/v1/smartphones/enjoy-10-standard-edition-dual-sim-td-lte-cn-128gb-art-al00x" + }, + { + "slug": "enjoy-10-standard-edition-dual-sim-td-lte-cn-128gb-art-tl00x", + "name": "Enjoy 10 Standard Edition Dual SIM TD-LTE CN 128GB ART-TL00x", + "url": "/v1/smartphones/enjoy-10-standard-edition-dual-sim-td-lte-cn-128gb-art-tl00x" + }, + { + "slug": "enjoy-10-standard-edition-dual-sim-td-lte-cn-64gb-art-al00x", + "name": "Enjoy 10 Standard Edition Dual SIM TD-LTE CN 64GB ART-AL00x", + "url": "/v1/smartphones/enjoy-10-standard-edition-dual-sim-td-lte-cn-64gb-art-al00x" + }, + { + "slug": "enjoy-10-standard-edition-dual-sim-td-lte-cn-64gb-art-tl00x", + "name": "Enjoy 10 Standard Edition Dual SIM TD-LTE CN 64GB ART-TL00x", + "url": "/v1/smartphones/enjoy-10-standard-edition-dual-sim-td-lte-cn-64gb-art-tl00x" + }, + { + "slug": "enjoy-10s-premium-edition-dual-sim-td-lte-cn-128gb-aqm-al00", + "name": "Enjoy 10S Premium Edition Dual SIM TD-LTE CN 128GB AQM-AL00", + "url": "/v1/smartphones/enjoy-10s-premium-edition-dual-sim-td-lte-cn-128gb-aqm-al00" + }, + { + "slug": "enjoy-10s-standard-edition-dual-sim-td-lte-cn-128gb-aqm-al00", + "name": "Enjoy 10S Standard Edition Dual SIM TD-LTE CN 128GB AQM-AL00", + "url": "/v1/smartphones/enjoy-10s-standard-edition-dual-sim-td-lte-cn-128gb-aqm-al00" + }, + { + "slug": "enjoy-10s-standard-edition-dual-sim-td-lte-cn-64gb-aqm-al00", + "name": "Enjoy 10S Standard Edition Dual SIM TD-LTE CN 64GB AQM-AL00", + "url": "/v1/smartphones/enjoy-10s-standard-edition-dual-sim-td-lte-cn-64gb-aqm-al00" + }, + { + "slug": "enjoy-10s-standard-edition-dual-sim-td-lte-cn-64gb-aqm-tl00", + "name": "Enjoy 10S Standard Edition Dual SIM TD-LTE CN 64GB AQM-TL00", + "url": "/v1/smartphones/enjoy-10s-standard-edition-dual-sim-td-lte-cn-64gb-aqm-tl00" + }, + { + "slug": "enjoy-10e-premium-edition", + "name": "Enjoy 10e Premium Edition", + "url": "/v1/smartphones/enjoy-10e-premium-edition" + }, + { + "slug": "enjoy-10e-premium-edition-dual-sim-td-lte-cn-128gb-med-al00", + "name": "Enjoy 10e Premium Edition Dual SIM TD-LTE CN 128GB MED-AL00", + "url": "/v1/smartphones/enjoy-10e-premium-edition-dual-sim-td-lte-cn-128gb-med-al00" + }, + { + "slug": "enjoy-10e-premium-edition-dual-sim-td-lte-cn-64gb-med-al00-changxiang-10e", + "name": "Enjoy 10e Premium Edition Dual SIM TD-LTE CN 64GB MED-AL00 / Changxiang 10e", + "url": "/v1/smartphones/enjoy-10e-premium-edition-dual-sim-td-lte-cn-64gb-med-al00-changxiang-10e" + }, + { + "slug": "enjoy-20-plus", + "name": "Enjoy 20 Plus", + "url": "/v1/smartphones/enjoy-20-plus" + }, + { + "slug": "enjoy-20-plus-5g-premium-edition-dual-sim-td-lte-cn-frl-an00a-changxiang-20-plus", + "name": "Enjoy 20 Plus 5G Premium Edition Dual SIM TD-LTE CN FRL-AN00a / Changxiang 20 Plus", + "url": "/v1/smartphones/enjoy-20-plus-5g-premium-edition-dual-sim-td-lte-cn-frl-an00a-changxiang-20-plus" + }, + { + "slug": "enjoy-20-plus-5g-standard-edition-dual-sim-td-lte-cn-frl-an00a-changxiang-20-plus", + "name": "Enjoy 20 Plus 5G Standard Edition Dual SIM TD-LTE CN FRL-AN00a / Changxiang 20 Plus", + "url": "/v1/smartphones/enjoy-20-plus-5g-standard-edition-dual-sim-td-lte-cn-frl-an00a-changxiang-20-plus" + }, + { + "slug": "enjoy-20-plus-5g-standard-edition-dual-sim-td-lte-cn-frl-tn00a-changxiang-20-plus", + "name": "Enjoy 20 Plus 5G Standard Edition Dual SIM TD-LTE CN FRL-TN00a / Changxiang 20 Plus", + "url": "/v1/smartphones/enjoy-20-plus-5g-standard-edition-dual-sim-td-lte-cn-frl-tn00a-changxiang-20-plus" + }, + { + "slug": "enjoy-20-pro", + "name": "Enjoy 20 Pro", + "url": "/v1/smartphones/enjoy-20-pro" + }, + { + "slug": "enjoy-20-pro-5g-dual-sim-td-lte-cn-128gb-dvc-an00-changxiang-20-pro-dvc-an20", + "name": "Enjoy 20 Pro 5G Dual SIM TD-LTE CN 128GB DVC-AN00 / Changxiang 20 Pro DVC-AN20", + "url": "/v1/smartphones/enjoy-20-pro-5g-dual-sim-td-lte-cn-128gb-dvc-an00-changxiang-20-pro-dvc-an20" + }, + { + "slug": "enjoy-20-pro-5g-dual-sim-td-lte-cn-128gb-dvc-tn00-changxiang-20-pro-dvc-tn20", + "name": "Enjoy 20 Pro 5G Dual SIM TD-LTE CN 128GB DVC-TN00 / Changxiang 20 Pro DVC-TN20", + "url": "/v1/smartphones/enjoy-20-pro-5g-dual-sim-td-lte-cn-128gb-dvc-tn00-changxiang-20-pro-dvc-tn20" + }, + { + "slug": "enjoy-20-pro-5g-premium-edition-dual-sim-td-lte-cn-dvc-an00-enjoy-z-5g", + "name": "Enjoy 20 Pro 5G Premium Edition Dual SIM TD-LTE CN DVC-AN00 / Enjoy Z 5G", + "url": "/v1/smartphones/enjoy-20-pro-5g-premium-edition-dual-sim-td-lte-cn-dvc-an00-enjoy-z-5g" + }, + { + "slug": "enjoy-20-se-premium-edition-dual-sim-td-lte-cn-128gb-ppa-al20-changxiang-20-se", + "name": "Enjoy 20 SE Premium Edition Dual SIM TD-LTE CN 128GB PPA-AL20 / Changxiang 20 SE", + "url": "/v1/smartphones/enjoy-20-se-premium-edition-dual-sim-td-lte-cn-128gb-ppa-al20-changxiang-20-se" + }, + { + "slug": "enjoy-20-se-standard-edition-dual-sim-td-lte-cn-128gb-ppa-al20-changxiang-20-se", + "name": "Enjoy 20 SE Standard Edition Dual SIM TD-LTE CN 128GB PPA-AL20 / Changxiang 20 SE", + "url": "/v1/smartphones/enjoy-20-se-standard-edition-dual-sim-td-lte-cn-128gb-ppa-al20-changxiang-20-se" + }, + { + "slug": "enjoy-20e-standard-edition", + "name": "Enjoy 20e Standard Edition", + "url": "/v1/smartphones/enjoy-20e-standard-edition" + }, + { + "slug": "enjoy-8-dual-sim-td-lte-cn-ldn-al00", + "name": "Enjoy 8 Dual SIM TD-LTE CN LDN-AL00", + "url": "/v1/smartphones/enjoy-8-dual-sim-td-lte-cn-ldn-al00" + }, + { + "slug": "enjoy-8-dual-sim-td-lte-cn-ldn-tl10-y7-prime-2018-ldn-tl30-ldn-tl40", + "name": "Enjoy 8 Dual SIM TD-LTE CN LDN-TL10 / Y7 Prime 2018 LDN-TL30 / LDN-TL40", + "url": "/v1/smartphones/enjoy-8-dual-sim-td-lte-cn-ldn-tl10-y7-prime-2018-ldn-tl30-ldn-tl40" + }, + { + "slug": "enjoy-8-plus-dual-sim-td-lte-cn-fla-al00-32gb", + "name": "Enjoy 8 Plus Dual SIM TD-LTE CN FLA-AL00 32GB", + "url": "/v1/smartphones/enjoy-8-plus-dual-sim-td-lte-cn-fla-al00-32gb" + }, + { + "slug": "enjoy-8-plus-dual-sim-td-lte-cn-fla-al10-64gb", + "name": "Enjoy 8 Plus Dual SIM TD-LTE CN FLA-AL10 64GB", + "url": "/v1/smartphones/enjoy-8-plus-dual-sim-td-lte-cn-fla-al10-64gb" + }, + { + "slug": "enjoy-8-plus-dual-sim-td-lte-cn-fla-al20-128gb", + "name": "Enjoy 8 Plus Dual SIM TD-LTE CN FLA-AL20 128GB", + "url": "/v1/smartphones/enjoy-8-plus-dual-sim-td-lte-cn-fla-al20-128gb" + }, + { + "slug": "enjoy-8-plus-dual-sim-td-lte-cn-fla-tl00-32gb", + "name": "Enjoy 8 Plus Dual SIM TD-LTE CN FLA-TL00 32GB", + "url": "/v1/smartphones/enjoy-8-plus-dual-sim-td-lte-cn-fla-tl00-32gb" + }, + { + "slug": "enjoy-8e-dual-sim-td-lte-cn-atu-al10", + "name": "Enjoy 8e Dual SIM TD-LTE CN ATU-AL10", + "url": "/v1/smartphones/enjoy-8e-dual-sim-td-lte-cn-atu-al10" + }, + { + "slug": "enjoy-8e-dual-sim-td-lte-cn-atu-tl10", + "name": "Enjoy 8e Dual SIM TD-LTE CN ATU-TL10", + "url": "/v1/smartphones/enjoy-8e-dual-sim-td-lte-cn-atu-tl10" + }, + { + "slug": "enjoy-9-dual-sim-td-lte-cn-dub-al00", + "name": "Enjoy 9 Dual SIM TD-LTE CN DUB-AL00", + "url": "/v1/smartphones/enjoy-9-dual-sim-td-lte-cn-dub-al00" + }, + { + "slug": "enjoy-9-dual-sim-td-lte-cn-dub-al20-64gb", + "name": "Enjoy 9 Dual SIM TD-LTE CN DUB-AL20 64GB", + "url": "/v1/smartphones/enjoy-9-dual-sim-td-lte-cn-dub-al20-64gb" + }, + { + "slug": "enjoy-9-dual-sim-td-lte-cn-dub-tl00", + "name": "Enjoy 9 Dual SIM TD-LTE CN DUB-TL00", + "url": "/v1/smartphones/enjoy-9-dual-sim-td-lte-cn-dub-tl00" + }, + { + "slug": "enjoy-9-max-dual-sim-td-lte-cn-ars-al00-128gb-changxiang-max", + "name": "Enjoy 9 Max Dual SIM TD-LTE CN ARS-AL00 128GB / Changxiang Max", + "url": "/v1/smartphones/enjoy-9-max-dual-sim-td-lte-cn-ars-al00-128gb-changxiang-max" + }, + { + "slug": "enjoy-9-max-dual-sim-td-lte-cn-ars-al00-64gb-changxiang-max", + "name": "Enjoy 9 Max Dual SIM TD-LTE CN ARS-AL00 64GB / Changxiang Max", + "url": "/v1/smartphones/enjoy-9-max-dual-sim-td-lte-cn-ars-al00-64gb-changxiang-max" + }, + { + "slug": "enjoy-9-max-dual-sim-td-lte-cn-ars-tl00-64gb", + "name": "Enjoy 9 Max Dual SIM TD-LTE CN ARS-TL00 64GB", + "url": "/v1/smartphones/enjoy-9-max-dual-sim-td-lte-cn-ars-tl00-64gb" + }, + { + "slug": "enjoy-9-plus-premium-edition-dual-sim-td-lte-cn-jkm-al00-128gb", + "name": "Enjoy 9 Plus Premium Edition Dual SIM TD-LTE CN JKM-AL00 128GB", + "url": "/v1/smartphones/enjoy-9-plus-premium-edition-dual-sim-td-lte-cn-jkm-al00-128gb" + }, + { + "slug": "enjoy-9-plus-standard-edition-dual-sim-td-lte-cn-128gb-jkm-al00-jkm-al00b", + "name": "Enjoy 9 Plus Standard Edition Dual SIM TD-LTE CN 128GB JKM-AL00 / JKM-AL00B", + "url": "/v1/smartphones/enjoy-9-plus-standard-edition-dual-sim-td-lte-cn-128gb-jkm-al00-jkm-al00b" + }, + { + "slug": "enjoy-9-plus-standard-edition-dual-sim-td-lte-cn-jkm-al00-64gb", + "name": "Enjoy 9 Plus Standard Edition Dual SIM TD-LTE CN JKM-AL00 64GB", + "url": "/v1/smartphones/enjoy-9-plus-standard-edition-dual-sim-td-lte-cn-jkm-al00-64gb" + }, + { + "slug": "enjoy-9s-premium-edition-dual-sim-td-lte-cn-64gb-pot-al00a", + "name": "Enjoy 9S Premium Edition Dual SIM TD-LTE CN 64GB POT-AL00a", + "url": "/v1/smartphones/enjoy-9s-premium-edition-dual-sim-td-lte-cn-64gb-pot-al00a" + }, + { + "slug": "enjoy-9s-standard-edition-dual-sim-td-lte-cn-128gb-pot-al00a", + "name": "Enjoy 9S Standard Edition Dual SIM TD-LTE CN 128GB POT-AL00a", + "url": "/v1/smartphones/enjoy-9s-standard-edition-dual-sim-td-lte-cn-128gb-pot-al00a" + }, + { + "slug": "enjoy-9s-standard-edition-dual-sim-td-lte-cn-128gb-pot-tl00a", + "name": "Enjoy 9S Standard Edition Dual SIM TD-LTE CN 128GB POT-TL00a", + "url": "/v1/smartphones/enjoy-9s-standard-edition-dual-sim-td-lte-cn-128gb-pot-tl00a" + }, + { + "slug": "enjoy-9s-standard-edition-dual-sim-td-lte-cn-64gb-pot-al00a", + "name": "Enjoy 9S Standard Edition Dual SIM TD-LTE CN 64GB POT-AL00a", + "url": "/v1/smartphones/enjoy-9s-standard-edition-dual-sim-td-lte-cn-64gb-pot-al00a" + }, + { + "slug": "enjoy-9e", + "name": "Enjoy 9e", + "url": "/v1/smartphones/enjoy-9e" + }, + { + "slug": "enjoy-9e-dual-sim-td-lte-cn-mrd-al00", + "name": "Enjoy 9e Dual SIM TD-LTE CN MRD-AL00", + "url": "/v1/smartphones/enjoy-9e-dual-sim-td-lte-cn-mrd-al00" + }, + { + "slug": "enjoy-9e-dual-sim-td-lte-cn-mrd-tl00", + "name": "Enjoy 9e Dual SIM TD-LTE CN MRD-TL00", + "url": "/v1/smartphones/enjoy-9e-dual-sim-td-lte-cn-mrd-tl00" + }, + { + "slug": "exodus-1-global-dual-sim-td-lte", + "name": "Exodus 1 Global Dual SIM TD-LTE", + "url": "/v1/smartphones/exodus-1-global-dual-sim-td-lte" + }, + { + "slug": "exodus-1s-global-dual-sim-td-lte", + "name": "Exodus 1s Global Dual SIM TD-LTE", + "url": "/v1/smartphones/exodus-1s-global-dual-sim-td-lte" + }, + { + "slug": "f11", + "name": "F11", + "url": "/v1/smartphones/f11" + }, + { + "slug": "f11-dual-sim-td-lte-in-id-v2-128gb-cph1911", + "name": "F11 Dual SIM TD-LTE IN ID V2 128GB CPH1911", + "url": "/v1/smartphones/f11-dual-sim-td-lte-in-id-v2-128gb-cph1911" + }, + { + "slug": "f11-dual-sim-td-lte-in-id-v2-64gb-cph1911", + "name": "F11 Dual SIM TD-LTE IN ID V2 64GB CPH1911", + "url": "/v1/smartphones/f11-dual-sim-td-lte-in-id-v2-64gb-cph1911" + }, + { + "slug": "f11-premium-edition", + "name": "F11 Premium Edition", + "url": "/v1/smartphones/f11-premium-edition" + }, + { + "slug": "f11-premium-edition-dual-sim-td-lte-ph-v1-64gb-cph1911-cph1913", + "name": "F11 Premium Edition Dual SIM TD-LTE PH V1 64GB CPH1911 / CPH1913", + "url": "/v1/smartphones/f11-premium-edition-dual-sim-td-lte-ph-v1-64gb-cph1911-cph1913" + }, + { + "slug": "f11-premium-edition-dual-sim-td-lte-th-bd-mn-v3-128gb-cph1911-cph1913", + "name": "F11 Premium Edition Dual SIM TD-LTE TH BD MN V3 128GB CPH1911 / CPH1913", + "url": "/v1/smartphones/f11-premium-edition-dual-sim-td-lte-th-bd-mn-v3-128gb-cph1911-cph1913" + }, + { + "slug": "f11-pro", + "name": "F11 Pro", + "url": "/v1/smartphones/f11-pro" + }, + { + "slug": "f11-pro-avengers-limited-edition", + "name": "F11 Pro Avengers Limited Edition", + "url": "/v1/smartphones/f11-pro-avengers-limited-edition" + }, + { + "slug": "f11-pro-avengers-limited-edition-dual-sim-td-lte-in-id-mn-v3-128gb-cph1969", + "name": "F11 Pro Avengers Limited Edition Dual SIM TD-LTE IN ID MN V3 128GB CPH1969", + "url": "/v1/smartphones/f11-pro-avengers-limited-edition-dual-sim-td-lte-in-id-mn-v3-128gb-cph1969" + }, + { + "slug": "f11-pro-avengers-limited-edition-dual-sim-td-lte-ph-v1-128gb-cph1969", + "name": "F11 Pro Avengers Limited Edition Dual SIM TD-LTE PH V1 128GB CPH1969", + "url": "/v1/smartphones/f11-pro-avengers-limited-edition-dual-sim-td-lte-ph-v1-128gb-cph1969" + }, + { + "slug": "f11-pro-dual-sim-td-lte-in-id-bd-th-mn-v3-128gb-cph1969", + "name": "F11 Pro Dual SIM TD-LTE IN ID BD TH MN V3 128GB CPH1969", + "url": "/v1/smartphones/f11-pro-dual-sim-td-lte-in-id-bd-th-mn-v3-128gb-cph1969" + }, + { + "slug": "f11-pro-dual-sim-td-lte-in-id-bd-th-mn-v3-64gb-cph1969", + "name": "F11 Pro Dual SIM TD-LTE IN ID BD TH MN V3 64GB CPH1969", + "url": "/v1/smartphones/f11-pro-dual-sim-td-lte-in-id-bd-th-mn-v3-64gb-cph1969" + }, + { + "slug": "f11-pro-dual-sim-td-lte-kh-v2-128gb-cph1969", + "name": "F11 Pro Dual SIM TD-LTE KH V2 128GB CPH1969", + "url": "/v1/smartphones/f11-pro-dual-sim-td-lte-kh-v2-128gb-cph1969" + }, + { + "slug": "f11-pro-dual-sim-td-lte-kh-v2-64gb-cph1969", + "name": "F11 Pro Dual SIM TD-LTE KH V2 64GB CPH1969", + "url": "/v1/smartphones/f11-pro-dual-sim-td-lte-kh-v2-64gb-cph1969" + }, + { + "slug": "f11-pro-dual-sim-td-lte-ph-v1-64gb-cph1969", + "name": "F11 Pro Dual SIM TD-LTE PH V1 64GB CPH1969", + "url": "/v1/smartphones/f11-pro-dual-sim-td-lte-ph-v1-64gb-cph1969" + }, + { + "slug": "f11-standard-edition", + "name": "F11 Standard Edition", + "url": "/v1/smartphones/f11-standard-edition" + }, + { + "slug": "f11-standard-edition-dual-sim-td-lte-th-bd-mn-v3-64gb-cph1911", + "name": "F11 Standard Edition Dual SIM TD-LTE TH BD MN V3 64GB CPH1911", + "url": "/v1/smartphones/f11-standard-edition-dual-sim-td-lte-th-bd-mn-v3-64gb-cph1911" + }, + { + "slug": "f15-2020", + "name": "F15 2020", + "url": "/v1/smartphones/f15-2020" + }, + { + "slug": "f15-2020-dual-sim-td-lte-in-128gb-cph2001", + "name": "F15 2020 Dual SIM TD-LTE IN 128GB CPH2001", + "url": "/v1/smartphones/f15-2020-dual-sim-td-lte-in-128gb-cph2001" + }, + { + "slug": "f17-2020-premium-edition-dual-sim-td-lte-v1-in-128gb-cph2095", + "name": "F17 2020 Premium Edition Dual SIM TD-LTE V1 IN 128GB CPH2095", + "url": "/v1/smartphones/f17-2020-premium-edition-dual-sim-td-lte-v1-in-128gb-cph2095" + }, + { + "slug": "f17-2020-standard-edition-dual-sim-td-lte-v1-in-128gb-cph2095", + "name": "F17 2020 Standard Edition Dual SIM TD-LTE V1 IN 128GB CPH2095", + "url": "/v1/smartphones/f17-2020-standard-edition-dual-sim-td-lte-v1-in-128gb-cph2095" + }, + { + "slug": "f17-pro-2020", + "name": "F17 Pro 2020", + "url": "/v1/smartphones/f17-pro-2020" + }, + { + "slug": "f17-pro-2020-dual-sim-td-lte-in-v1-128gb-cph2119", + "name": "F17 Pro 2020 Dual SIM TD-LTE IN V1 128GB CPH2119", + "url": "/v1/smartphones/f17-pro-2020-dual-sim-td-lte-in-v1-128gb-cph2119" + }, + { + "slug": "f19-2021-dual-sim-td-lte-v1-in-id-128gb-cph2219-a74", + "name": "F19 2021 Dual SIM TD-LTE V1 IN ID 128GB CPH2219 / A74", + "url": "/v1/smartphones/f19-2021-dual-sim-td-lte-v1-in-id-128gb-cph2219-a74" + }, + { + "slug": "f19-pro-2021", + "name": "F19 Pro 2021", + "url": "/v1/smartphones/f19-pro-2021" + }, + { + "slug": "f19-pro-2021-dual-sim-td-lte-in-v1-128gb-cph2285", + "name": "F19 Pro 2021 Dual SIM TD-LTE IN V1 128GB CPH2285", + "url": "/v1/smartphones/f19-pro-2021-dual-sim-td-lte-in-v1-128gb-cph2285" + }, + { + "slug": "f19-pro-2021-dual-sim-td-lte-in-v1-256gb-cph2285", + "name": "F19 Pro 2021 Dual SIM TD-LTE IN V1 256GB CPH2285", + "url": "/v1/smartphones/f19-pro-2021-dual-sim-td-lte-in-v1-256gb-cph2285" + }, + { + "slug": "f19-pro", + "name": "F19 Pro+", + "url": "/v1/smartphones/f19-pro" + }, + { + "slug": "f19-pro-5g-2021-dual-sim-td-lte-in-v1-128gb-cph2213", + "name": "F19 Pro+ 5G 2021 Dual SIM TD-LTE IN V1 128GB CPH2213", + "url": "/v1/smartphones/f19-pro-5g-2021-dual-sim-td-lte-in-v1-128gb-cph2213" + }, + { + "slug": "f19s-2021-dual-sim-td-lte-v1-in-128gb-cph2223", + "name": "F19s 2021 Dual SIM TD-LTE V1 IN 128GB CPH2223", + "url": "/v1/smartphones/f19s-2021-dual-sim-td-lte-v1-in-128gb-cph2223" + }, + { + "slug": "f2-pro", + "name": "F2 Pro", + "url": "/v1/smartphones/f2-pro" + }, + { + "slug": "f21-pro", + "name": "F21 Pro", + "url": "/v1/smartphones/f21-pro" + }, + { + "slug": "f21s-pro", + "name": "F21s Pro", + "url": "/v1/smartphones/f21s-pro" + }, + { + "slug": "f25-pro", + "name": "F25 Pro", + "url": "/v1/smartphones/f25-pro" + }, + { + "slug": "f3", + "name": "F3", + "url": "/v1/smartphones/f3" + }, + { + "slug": "f3-gt", + "name": "F3 GT", + "url": "/v1/smartphones/f3-gt" + }, + { + "slug": "f4", + "name": "F4", + "url": "/v1/smartphones/f4" + }, + { + "slug": "f4-gt", + "name": "F4 GT", + "url": "/v1/smartphones/f4-gt" + }, + { + "slug": "f40-premium-edition-td-lte-cn-128gb-hlte227t", + "name": "F40 Premium Edition TD-LTE CN 128GB HLTE227T", + "url": "/v1/smartphones/f40-premium-edition-td-lte-cn-128gb-hlte227t" + }, + { + "slug": "f40-premium-edition-td-lte-cn-256gb-hlte227t", + "name": "F40 Premium Edition TD-LTE CN 256GB HLTE227T", + "url": "/v1/smartphones/f40-premium-edition-td-lte-cn-256gb-hlte227t" + }, + { + "slug": "f40-standard-edition-td-lte-cn-128gb-hlte227t", + "name": "F40 Standard Edition TD-LTE CN 128GB HLTE227T", + "url": "/v1/smartphones/f40-standard-edition-td-lte-cn-128gb-hlte227t" + }, + { + "slug": "oppo-f5", + "name": "F5", + "url": "/v1/smartphones/oppo-f5" + }, + { + "slug": "f5", + "name": "F5", + "url": "/v1/smartphones/f5" + }, + { + "slug": "f5-dual-sim-td-lte-in-th-version-1-32gb-cph1727", + "name": "F5 Dual SIM TD-LTE IN TH Version 1 32GB CPH1727", + "url": "/v1/smartphones/f5-dual-sim-td-lte-in-th-version-1-32gb-cph1727" + }, + { + "slug": "f5-pro", + "name": "F5 Pro", + "url": "/v1/smartphones/f5-pro" + }, + { + "slug": "f6", + "name": "F6", + "url": "/v1/smartphones/f6" + }, + { + "slug": "f7", + "name": "F7", + "url": "/v1/smartphones/f7" + }, + { + "slug": "f7-diamond-black-edition", + "name": "F7 Diamond Black Edition", + "url": "/v1/smartphones/f7-diamond-black-edition" + }, + { + "slug": "f7-diamond-black-edition-dual-sim-td-lte-in-id-th-pk-version-1-128gb-cph1821", + "name": "F7 Diamond Black Edition Dual SIM TD-LTE IN ID TH PK Version 1 128GB CPH1821", + "url": "/v1/smartphones/f7-diamond-black-edition-dual-sim-td-lte-in-id-th-pk-version-1-128gb-cph1821" + }, + { + "slug": "f7-dual-sim-td-lte-ae-ph-my-version-3-128gb-cph1821", + "name": "F7 Dual SIM TD-LTE AE PH MY Version 3 128GB CPH1821", + "url": "/v1/smartphones/f7-dual-sim-td-lte-ae-ph-my-version-3-128gb-cph1821" + }, + { + "slug": "f7-dual-sim-td-lte-in-id-th-pk-version-1-64gb-cph1819", + "name": "F7 Dual SIM TD-LTE IN ID TH PK Version 1 64GB CPH1819", + "url": "/v1/smartphones/f7-dual-sim-td-lte-in-id-th-pk-version-1-64gb-cph1819" + }, + { + "slug": "f7-dual-sim-td-lte-my-version-2-64gb-cph1819", + "name": "F7 Dual SIM TD-LTE MY Version 2 64GB CPH1819", + "url": "/v1/smartphones/f7-dual-sim-td-lte-my-version-2-64gb-cph1819" + }, + { + "slug": "f7-dual-sim-td-lte-ru-ae-ph-version-3-64gb-cph1819", + "name": "F7 Dual SIM TD-LTE RU AE PH Version 3 64GB CPH1819", + "url": "/v1/smartphones/f7-dual-sim-td-lte-ru-ae-ph-version-3-64gb-cph1819" + }, + { + "slug": "f7-youth-edition", + "name": "F7 Youth Edition", + "url": "/v1/smartphones/f7-youth-edition" + }, + { + "slug": "f7-youth-edition-dual-sim-td-lte-in-id-my-vn-cph1859", + "name": "F7 Youth Edition Dual SIM TD-LTE IN ID MY VN CPH1859", + "url": "/v1/smartphones/f7-youth-edition-dual-sim-td-lte-in-id-my-vn-cph1859" + }, + { + "slug": "f7-youth-edition-dual-sim-td-lte-ph-cph1859", + "name": "F7 Youth Edition Dual SIM TD-LTE PH CPH1859", + "url": "/v1/smartphones/f7-youth-edition-dual-sim-td-lte-ph-cph1859" + }, + { + "slug": "f9-premium-edition", + "name": "F9 Premium Edition", + "url": "/v1/smartphones/f9-premium-edition" + }, + { + "slug": "f9-premium-edition-dual-sim-td-lte-my-version-2-64gb-cph1823", + "name": "F9 Premium Edition Dual SIM TD-LTE MY Version 2 64GB CPH1823", + "url": "/v1/smartphones/f9-premium-edition-dual-sim-td-lte-my-version-2-64gb-cph1823" + }, + { + "slug": "f9-premium-edition-dual-sim-td-lte-vn-ph-version-1-64gb-cph1823", + "name": "F9 Premium Edition Dual SIM TD-LTE VN PH Version 1 64GB CPH1823", + "url": "/v1/smartphones/f9-premium-edition-dual-sim-td-lte-vn-ph-version-1-64gb-cph1823" + }, + { + "slug": "f9-pro", + "name": "F9 Pro", + "url": "/v1/smartphones/f9-pro" + }, + { + "slug": "f9-pro-dual-sim-td-lte-in-version-3-64gb-cph1823", + "name": "F9 Pro Dual SIM TD-LTE IN Version 3 64GB CPH1823", + "url": "/v1/smartphones/f9-pro-dual-sim-td-lte-in-version-3-64gb-cph1823" + }, + { + "slug": "f9-standard-edition", + "name": "F9 Standard Edition", + "url": "/v1/smartphones/f9-standard-edition" + }, + { + "slug": "f9-standard-edition-dual-sim-td-lte-in-id-pk-np-version-3-64gb-cph1825", + "name": "F9 Standard Edition Dual SIM TD-LTE IN ID PK NP Version 3 64GB CPH1825", + "url": "/v1/smartphones/f9-standard-edition-dual-sim-td-lte-in-id-pk-np-version-3-64gb-cph1825" + }, + { + "slug": "find-n-2021", + "name": "Find N 2021", + "url": "/v1/smartphones/find-n-2021" + }, + { + "slug": "find-n-2021-5g-premium-edition-dual-sim-td-lte-cn-512gb-peum00", + "name": "Find N 2021 5G Premium Edition Dual SIM TD-LTE CN 512GB PEUM00", + "url": "/v1/smartphones/find-n-2021-5g-premium-edition-dual-sim-td-lte-cn-512gb-peum00" + }, + { + "slug": "find-n-2021-5g-standard-edition-dual-sim-td-lte-cn-256gb-peum00", + "name": "Find N 2021 5G Standard Edition Dual SIM TD-LTE CN 256GB PEUM00", + "url": "/v1/smartphones/find-n-2021-5g-standard-edition-dual-sim-td-lte-cn-256gb-peum00" + }, + { + "slug": "find-n2", + "name": "Find N2", + "url": "/v1/smartphones/find-n2" + }, + { + "slug": "find-n2-2022", + "name": "Find N2 2022", + "url": "/v1/smartphones/find-n2-2022" + }, + { + "slug": "find-n2-flip", + "name": "Find N2 Flip", + "url": "/v1/smartphones/find-n2-flip" + }, + { + "slug": "find-n3", + "name": "Find N3", + "url": "/v1/smartphones/find-n3" + }, + { + "slug": "find-n3-flip", + "name": "Find N3 Flip", + "url": "/v1/smartphones/find-n3-flip" + }, + { + "slug": "find-x-automobili-lamborghini-edition-dual-sim-td-lte-cn-512gb-paft10", + "name": "Find X Automobili Lamborghini Edition Dual SIM TD-LTE CN 512GB PAFT10", + "url": "/v1/smartphones/find-x-automobili-lamborghini-edition-dual-sim-td-lte-cn-512gb-paft10" + }, + { + "slug": "find-x-automobili-lamborghini-edition-global-dual-sim-td-lte-512gb-cph1875-cph1871", + "name": "Find X Automobili Lamborghini Edition Global Dual SIM TD-LTE 512GB CPH1875 / CPH1871", + "url": "/v1/smartphones/find-x-automobili-lamborghini-edition-global-dual-sim-td-lte-512gb-cph1875-cph1871" + }, + { + "slug": "find-x-premium-edition-dual-sim-td-lte-cn-256gb-paft10", + "name": "Find X Premium Edition Dual SIM TD-LTE CN 256GB PAFT10", + "url": "/v1/smartphones/find-x-premium-edition-dual-sim-td-lte-cn-256gb-paft10" + }, + { + "slug": "find-x-premium-edition-global-dual-sim-td-lte-256gb-cph1875-cph1871", + "name": "Find X Premium Edition Global Dual SIM TD-LTE 256GB CPH1875 / CPH1871", + "url": "/v1/smartphones/find-x-premium-edition-global-dual-sim-td-lte-256gb-cph1875-cph1871" + }, + { + "slug": "find-x-standard-edition-dual-sim-td-lte-cn-128gb-pafm00", + "name": "Find X Standard Edition Dual SIM TD-LTE CN 128GB PAFM00", + "url": "/v1/smartphones/find-x-standard-edition-dual-sim-td-lte-cn-128gb-pafm00" + }, + { + "slug": "find-x-standard-edition-dual-sim-td-lte-cn-128gb-paft00", + "name": "Find X Standard Edition Dual SIM TD-LTE CN 128GB PAFT00", + "url": "/v1/smartphones/find-x-standard-edition-dual-sim-td-lte-cn-128gb-paft00" + }, + { + "slug": "find-x-standard-edition-global-dual-sim-td-lte-128gb-cph1871", + "name": "Find X Standard Edition Global Dual SIM TD-LTE 128GB CPH1871", + "url": "/v1/smartphones/find-x-standard-edition-global-dual-sim-td-lte-128gb-cph1871" + }, + { + "slug": "find-x2", + "name": "Find X2", + "url": "/v1/smartphones/find-x2" + }, + { + "slug": "find-x2-5g-ceramic-dual-sim-td-lte-cn-256gb-pdem10", + "name": "Find X2 5G Ceramic Dual SIM TD-LTE CN 256GB PDEM10", + "url": "/v1/smartphones/find-x2-5g-ceramic-dual-sim-td-lte-cn-256gb-pdem10" + }, + { + "slug": "find-x2-5g-dual-sim-td-lte-cn-128gb-pdem10", + "name": "Find X2 5G Dual SIM TD-LTE CN 128GB PDEM10", + "url": "/v1/smartphones/find-x2-5g-dual-sim-td-lte-cn-128gb-pdem10" + }, + { + "slug": "find-x2-5g-dual-sim-td-lte-cn-128gb-pdet10", + "name": "Find X2 5G Dual SIM TD-LTE CN 128GB PDET10", + "url": "/v1/smartphones/find-x2-5g-dual-sim-td-lte-cn-128gb-pdet10" + }, + { + "slug": "find-x2-5g-premium-edition-ceramic-global-td-lte-256gb-cph2023", + "name": "Find X2 5G Premium Edition Ceramic Global TD-LTE 256GB CPH2023", + "url": "/v1/smartphones/find-x2-5g-premium-edition-ceramic-global-td-lte-256gb-cph2023" + }, + { + "slug": "find-x2-lite", + "name": "Find X2 Lite", + "url": "/v1/smartphones/find-x2-lite" + }, + { + "slug": "find-x2-lite-5g-global-td-lte-128gb-cph2005", + "name": "Find X2 Lite 5G Global TD-LTE 128GB CPH2005", + "url": "/v1/smartphones/find-x2-lite-5g-global-td-lte-128gb-cph2005" + }, + { + "slug": "find-x2-pro", + "name": "Find X2 Pro", + "url": "/v1/smartphones/find-x2-pro" + }, + { + "slug": "find-x2-pro-5g-premium-edition-ceramic-dual-sim-td-lte-cn-256gb-pdem30", + "name": "Find X2 Pro 5G Premium Edition Ceramic Dual SIM TD-LTE CN 256GB PDEM30", + "url": "/v1/smartphones/find-x2-pro-5g-premium-edition-ceramic-dual-sim-td-lte-cn-256gb-pdem30" + }, + { + "slug": "find-x2-pro-5g-premium-edition-ceramic-global-td-lte-512gb-cph2025", + "name": "Find X2 Pro 5G Premium Edition Ceramic Global TD-LTE 512GB CPH2025", + "url": "/v1/smartphones/find-x2-pro-5g-premium-edition-ceramic-global-td-lte-512gb-cph2025" + }, + { + "slug": "find-x2-pro-5g-premium-edition-ceramic-td-lte-jp-512gb-opg01", + "name": "Find X2 Pro 5G Premium Edition Ceramic TD-LTE JP 512GB OPG01", + "url": "/v1/smartphones/find-x2-pro-5g-premium-edition-ceramic-td-lte-jp-512gb-opg01" + }, + { + "slug": "find-x2-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pdem30", + "name": "Find X2 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB PDEM30", + "url": "/v1/smartphones/find-x2-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pdem30" + }, + { + "slug": "find-x2-pro-5g-premium-edition-global-td-lte-256gb-cph2025", + "name": "Find X2 Pro 5G Premium Edition Global TD-LTE 256GB CPH2025", + "url": "/v1/smartphones/find-x2-pro-5g-premium-edition-global-td-lte-256gb-cph2025" + }, + { + "slug": "find-x3-pro", + "name": "Find X3 Pro", + "url": "/v1/smartphones/find-x3-pro" + }, + { + "slug": "find-x3-pro-5g-global-dual-sim-td-lte-256gb-cph2173", + "name": "Find X3 Pro 5G Global Dual SIM TD-LTE 256GB CPH2173", + "url": "/v1/smartphones/find-x3-pro-5g-global-dual-sim-td-lte-256gb-cph2173" + }, + { + "slug": "find-x3-pro-5g-global-td-lte-256gb-cph2173", + "name": "Find X3 Pro 5G Global TD-LTE 256GB CPH2173", + "url": "/v1/smartphones/find-x3-pro-5g-global-td-lte-256gb-cph2173" + }, + { + "slug": "find-x3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-peem00", + "name": "Find X3 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB PEEM00", + "url": "/v1/smartphones/find-x3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-peem00" + }, + { + "slug": "find-x3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-peem00", + "name": "Find X3 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB PEEM00", + "url": "/v1/smartphones/find-x3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-peem00" + }, + { + "slug": "find-x3-pro-5g-td-lte-jp-256gb-opg03", + "name": "Find X3 Pro 5G TD-LTE JP 256GB OPG03", + "url": "/v1/smartphones/find-x3-pro-5g-td-lte-jp-256gb-opg03" + }, + { + "slug": "find-x5", + "name": "Find X5", + "url": "/v1/smartphones/find-x5" + }, + { + "slug": "find-x5-lite", + "name": "Find X5 Lite", + "url": "/v1/smartphones/find-x5-lite" + }, + { + "slug": "find-x5-pro", + "name": "Find X5 Pro", + "url": "/v1/smartphones/find-x5-pro" + }, + { + "slug": "find-x6", + "name": "Find X6", + "url": "/v1/smartphones/find-x6" + }, + { + "slug": "find-x6-pro", + "name": "Find X6 Pro", + "url": "/v1/smartphones/find-x6-pro" + }, + { + "slug": "find-x7", + "name": "Find X7", + "url": "/v1/smartphones/find-x7" + }, + { + "slug": "find-x7-ultra", + "name": "Find X7 Ultra", + "url": "/v1/smartphones/find-x7-ultra" + }, + { + "slug": "find-x8", + "name": "Find X8", + "url": "/v1/smartphones/find-x8" + }, + { + "slug": "find-x8-pro", + "name": "Find X8 Pro", + "url": "/v1/smartphones/find-x8-pro" + }, + { + "slug": "g-elite-plus-lte-latam-sla-l03", + "name": "G Elite Plus LTE LATAM SLA-L03", + "url": "/v1/smartphones/g-elite-plus-lte-latam-sla-l03" + }, + { + "slug": "g-power-3rd-gen-2022", + "name": "G Power 3rd gen 2022", + "url": "/v1/smartphones/g-power-3rd-gen-2022" + }, + { + "slug": "g-power-3rd-gen-2022-td-lte-na-64gb-xt2165-5", + "name": "G Power 3rd gen 2022 TD-LTE NA 64GB XT2165-5", + "url": "/v1/smartphones/g-power-3rd-gen-2022-td-lte-na-64gb-xt2165-5" + }, + { + "slug": "g0130ww-g9-dual-sim-lte", + "name": "G0130WW G9 Dual SIM LTE", + "url": "/v1/smartphones/g0130ww-g9-dual-sim-lte" + }, + { + "slug": "g0230ww-g9-pro-dual-sim-lte", + "name": "G0230WW G9 Pro Dual SIM LTE", + "url": "/v1/smartphones/g0230ww-g9-pro-dual-sim-lte" + }, + { + "slug": "g0250ww-g70-dual-sim-lte", + "name": "G0250WW G70 Dual SIM LTE", + "url": "/v1/smartphones/g0250ww-g70-dual-sim-lte" + }, + { + "slug": "g0290ww-g80-dual-sim-lte", + "name": "G0290WW G80 Dual SIM LTE", + "url": "/v1/smartphones/g0290ww-g80-dual-sim-lte" + }, + { + "slug": "g0370ww-g90-dual-sim-lte", + "name": "G0370WW G90 Dual SIM LTE", + "url": "/v1/smartphones/g0370ww-g90-dual-sim-lte" + }, + { + "slug": "g08-dual-sim-lte-apac-m2165", + "name": "G08 Dual SIM LTE APAC M2165", + "url": "/v1/smartphones/g08-dual-sim-lte-apac-m2165" + }, + { + "slug": "g10-2021", + "name": "G10 2021", + "url": "/v1/smartphones/g10-2021" + }, + { + "slug": "g10-2021-dual-sim-lte-latam-32gb", + "name": "G10 2021 Dual SIM LTE LATAM 32GB", + "url": "/v1/smartphones/g10-2021-dual-sim-lte-latam-32gb" + }, + { + "slug": "g10-2021-dual-sim-lte-latam-64gb", + "name": "G10 2021 Dual SIM LTE LATAM 64GB", + "url": "/v1/smartphones/g10-2021-dual-sim-lte-latam-64gb" + }, + { + "slug": "g10-2021-global-dual-sim-td-lte-32gb", + "name": "G10 2021 Global Dual SIM TD-LTE 32GB", + "url": "/v1/smartphones/g10-2021-global-dual-sim-td-lte-32gb" + }, + { + "slug": "g10-2021-global-dual-sim-td-lte-64gb", + "name": "G10 2021 Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/g10-2021-global-dual-sim-td-lte-64gb" + }, + { + "slug": "g10-2021-global-td-lte-32gb", + "name": "G10 2021 Global TD-LTE 32GB", + "url": "/v1/smartphones/g10-2021-global-td-lte-32gb" + }, + { + "slug": "g10-2021-lte", + "name": "G10 2021 LTE", + "url": "/v1/smartphones/g10-2021-lte" + }, + { + "slug": "g10-2021-lte-latam-64gb", + "name": "G10 2021 LTE LATAM 64GB", + "url": "/v1/smartphones/g10-2021-lte-latam-64gb" + }, + { + "slug": "g11-2022", + "name": "G11 2022", + "url": "/v1/smartphones/g11-2022" + }, + { + "slug": "g11-2022-nfc", + "name": "G11 2022 NFC", + "url": "/v1/smartphones/g11-2022-nfc" + }, + { + "slug": "g11-plus-2022-premium-edition", + "name": "G11 Plus 2022 Premium Edition", + "url": "/v1/smartphones/g11-plus-2022-premium-edition" + }, + { + "slug": "g11-plus-2022-standard-edition", + "name": "G11 Plus 2022 Standard Edition", + "url": "/v1/smartphones/g11-plus-2022-standard-edition" + }, + { + "slug": "g21", + "name": "G21", + "url": "/v1/smartphones/g21" + }, + { + "slug": "g21-2022-nfc-premium-edition", + "name": "G21 2022 NFC Premium Edition", + "url": "/v1/smartphones/g21-2022-nfc-premium-edition" + }, + { + "slug": "g21-2022-nfc-standard-edition", + "name": "G21 2022 NFC Standard Edition", + "url": "/v1/smartphones/g21-2022-nfc-standard-edition" + }, + { + "slug": "g21-2022-standard-edition", + "name": "G21 2022 Standard Edition", + "url": "/v1/smartphones/g21-2022-standard-edition" + }, + { + "slug": "g400", + "name": "G400", + "url": "/v1/smartphones/g400" + }, + { + "slug": "g42-5g", + "name": "G42 5G", + "url": "/v1/smartphones/g42-5g" + }, + { + "slug": "g50-2021", + "name": "G50 2021", + "url": "/v1/smartphones/g50-2021" + }, + { + "slug": "g50-2021-5g-premium-edition-global-dual-sim-td-lte-128gb", + "name": "G50 2021 5G Premium Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/g50-2021-5g-premium-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "g50-2021-5g-standard-edition-dual-sim-td-lte-latam-128gb", + "name": "G50 2021 5G Standard Edition Dual SIM TD-LTE LATAM 128GB", + "url": "/v1/smartphones/g50-2021-5g-standard-edition-dual-sim-td-lte-latam-128gb" + }, + { + "slug": "g50-2021-5g-standard-edition-global-dual-sim-td-lte-128gb", + "name": "G50 2021 5G Standard Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/g50-2021-5g-standard-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "g50-2021-5g-standard-edition-global-dual-sim-td-lte-64gb", + "name": "G50 2021 5G Standard Edition Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/g50-2021-5g-standard-edition-global-dual-sim-td-lte-64gb" + }, + { + "slug": "g50-2021-5g-standard-edition-td-lte-latam-128gb", + "name": "G50 2021 5G Standard Edition TD-LTE LATAM 128GB", + "url": "/v1/smartphones/g50-2021-5g-standard-edition-td-lte-latam-128gb" + }, + { + "slug": "g50-2021-5g-standard-edition-td-lte-na-128gb", + "name": "G50 2021 5G Standard Edition TD-LTE NA 128GB", + "url": "/v1/smartphones/g50-2021-5g-standard-edition-td-lte-na-128gb" + }, + { + "slug": "g60-2022", + "name": "G60 2022", + "url": "/v1/smartphones/g60-2022" + }, + { + "slug": "g710n-g7-thinq-td-lte-kr", + "name": "G710N G7 ThinQ TD-LTE KR", + "url": "/v1/smartphones/g710n-g7-thinq-td-lte-kr" + }, + { + "slug": "g8-power-lite", + "name": "G8 Power Lite", + "url": "/v1/smartphones/g8-power-lite" + }, + { + "slug": "g8-power-lite-dual-sim-lte-a-latam-apac-xt2055-2", + "name": "G8 Power Lite Dual SIM LTE-A LATAM APAC XT2055-2", + "url": "/v1/smartphones/g8-power-lite-dual-sim-lte-a-latam-apac-xt2055-2" + }, + { + "slug": "g8-power-lite-dual-sim-td-lte-apac-xt2055-4", + "name": "G8 Power Lite Dual SIM TD-LTE APAC XT2055-4", + "url": "/v1/smartphones/g8-power-lite-dual-sim-td-lte-apac-xt2055-4" + }, + { + "slug": "g8-power-lite-dual-sim-td-lte-emea-xt2055-1", + "name": "G8 Power Lite Dual SIM TD-LTE EMEA XT2055-1", + "url": "/v1/smartphones/g8-power-lite-dual-sim-td-lte-emea-xt2055-1" + }, + { + "slug": "g8-power-lite-lte-a-latam-xt2055-2", + "name": "G8 Power Lite LTE-A LATAM XT2055-2", + "url": "/v1/smartphones/g8-power-lite-lte-a-latam-xt2055-2" + }, + { + "slug": "g8-power-lite-td-lte-emea-xt2055-1", + "name": "G8 Power Lite TD-LTE EMEA XT2055-1", + "url": "/v1/smartphones/g8-power-lite-td-lte-emea-xt2055-1" + }, + { + "slug": "g84-5g", + "name": "G84 5G", + "url": "/v1/smartphones/g84-5g" + }, + { + "slug": "g8x-thinq-td-lte-jp-901lg", + "name": "G8X ThinQ TD-LTE JP 901LG", + "url": "/v1/smartphones/g8x-thinq-td-lte-jp-901lg" + }, + { + "slug": "gt-10-pro", + "name": "GT 10 Pro", + "url": "/v1/smartphones/gt-10-pro" + }, + { + "slug": "gt-20-pro", + "name": "GT 20 Pro", + "url": "/v1/smartphones/gt-20-pro" + }, + { + "slug": "gt-6", + "name": "GT 6", + "url": "/v1/smartphones/gt-6" + }, + { + "slug": "gt-6t", + "name": "GT 6T", + "url": "/v1/smartphones/gt-6t" + }, + { + "slug": "gt-7", + "name": "GT 7", + "url": "/v1/smartphones/gt-7" + }, + { + "slug": "gt-7-pro", + "name": "GT 7 Pro", + "url": "/v1/smartphones/gt-7-pro" + }, + { + "slug": "gabb-z2-lte-us", + "name": "Gabb Z2 LTE US", + "url": "/v1/smartphones/gabb-z2-lte-us" + }, + { + "slug": "galaxy-a04", + "name": "Galaxy A04", + "url": "/v1/smartphones/galaxy-a04" + }, + { + "slug": "galaxy-a05", + "name": "Galaxy A05", + "url": "/v1/smartphones/galaxy-a05" + }, + { + "slug": "galaxy-a06", + "name": "Galaxy A06", + "url": "/v1/smartphones/galaxy-a06" + }, + { + "slug": "galaxy-a12", + "name": "Galaxy A12", + "url": "/v1/smartphones/galaxy-a12" + }, + { + "slug": "galaxy-a14", + "name": "Galaxy A14", + "url": "/v1/smartphones/galaxy-a14" + }, + { + "slug": "galaxy-a15", + "name": "Galaxy A15 5G", + "url": "/v1/smartphones/galaxy-a15" + }, + { + "slug": "galaxy-a16", + "name": "Galaxy A16 5G", + "url": "/v1/smartphones/galaxy-a16" + }, + { + "slug": "galaxy-a24", + "name": "Galaxy A24", + "url": "/v1/smartphones/galaxy-a24" + }, + { + "slug": "galaxy-a26", + "name": "Galaxy A26 5G", + "url": "/v1/smartphones/galaxy-a26" + }, + { + "slug": "galaxy-a34", + "name": "Galaxy A34", + "url": "/v1/smartphones/galaxy-a34" + }, + { + "slug": "galaxy-a35", + "name": "Galaxy A35 5G", + "url": "/v1/smartphones/galaxy-a35" + }, + { + "slug": "galaxy-a36", + "name": "Galaxy A36", + "url": "/v1/smartphones/galaxy-a36" + }, + { + "slug": "galaxy-a37", + "name": "Galaxy A37 5G", + "url": "/v1/smartphones/galaxy-a37" + }, + { + "slug": "galaxy-a50", + "name": "Galaxy A50", + "url": "/v1/smartphones/galaxy-a50" + }, + { + "slug": "galaxy-a51", + "name": "Galaxy A51", + "url": "/v1/smartphones/galaxy-a51" + }, + { + "slug": "galaxy-a52", + "name": "Galaxy A52 5G", + "url": "/v1/smartphones/galaxy-a52" + }, + { + "slug": "galaxy-a53", + "name": "Galaxy A53", + "url": "/v1/smartphones/galaxy-a53" + }, + { + "slug": "galaxy-a54", + "name": "Galaxy A54 5G", + "url": "/v1/smartphones/galaxy-a54" + }, + { + "slug": "galaxy-a55", + "name": "Galaxy A55 5G", + "url": "/v1/smartphones/galaxy-a55" + }, + { + "slug": "galaxy-a56", + "name": "Galaxy A56", + "url": "/v1/smartphones/galaxy-a56" + }, + { + "slug": "galaxy-a57", + "name": "Galaxy A57 5G", + "url": "/v1/smartphones/galaxy-a57" + }, + { + "slug": "galaxy-a71", + "name": "Galaxy A71", + "url": "/v1/smartphones/galaxy-a71" + }, + { + "slug": "galaxy-a72", + "name": "Galaxy A72", + "url": "/v1/smartphones/galaxy-a72" + }, + { + "slug": "galaxy-a73", + "name": "Galaxy A73", + "url": "/v1/smartphones/galaxy-a73" + }, + { + "slug": "galaxy-a80", + "name": "Galaxy A80", + "url": "/v1/smartphones/galaxy-a80" + }, + { + "slug": "galaxy-c7-pro", + "name": "Galaxy C7 Pro", + "url": "/v1/smartphones/galaxy-c7-pro" + }, + { + "slug": "galaxy-f14", + "name": "Galaxy F14", + "url": "/v1/smartphones/galaxy-f14" + }, + { + "slug": "galaxy-f34", + "name": "Galaxy F34", + "url": "/v1/smartphones/galaxy-f34" + }, + { + "slug": "galaxy-f54", + "name": "Galaxy F54", + "url": "/v1/smartphones/galaxy-f54" + }, + { + "slug": "galaxy-fold", + "name": "Galaxy Fold", + "url": "/v1/smartphones/galaxy-fold" + }, + { + "slug": "galaxy-j6", + "name": "Galaxy J6+", + "url": "/v1/smartphones/galaxy-j6" + }, + { + "slug": "galaxy-j8", + "name": "Galaxy J8", + "url": "/v1/smartphones/galaxy-j8" + }, + { + "slug": "galaxy-m04", + "name": "Galaxy M04", + "url": "/v1/smartphones/galaxy-m04" + }, + { + "slug": "galaxy-m14", + "name": "Galaxy M14", + "url": "/v1/smartphones/galaxy-m14" + }, + { + "slug": "galaxy-m34", + "name": "Galaxy M34", + "url": "/v1/smartphones/galaxy-m34" + }, + { + "slug": "galaxy-m54", + "name": "Galaxy M54", + "url": "/v1/smartphones/galaxy-m54" + }, + { + "slug": "galaxy-note", + "name": "Galaxy Note", + "url": "/v1/smartphones/galaxy-note" + }, + { + "slug": "galaxy-note-10", + "name": "Galaxy Note 10", + "url": "/v1/smartphones/galaxy-note-10" + }, + { + "slug": "galaxy-note-10-plus", + "name": "Galaxy Note 10+", + "url": "/v1/smartphones/galaxy-note-10-plus" + }, + { + "slug": "galaxy-note-20", + "name": "Galaxy Note 20", + "url": "/v1/smartphones/galaxy-note-20" + }, + { + "slug": "galaxy-note-20-ultra", + "name": "Galaxy Note 20 Ultra", + "url": "/v1/smartphones/galaxy-note-20-ultra" + }, + { + "slug": "galaxy-note-3", + "name": "Galaxy Note 3", + "url": "/v1/smartphones/galaxy-note-3" + }, + { + "slug": "galaxy-note-4", + "name": "Galaxy Note 4", + "url": "/v1/smartphones/galaxy-note-4" + }, + { + "slug": "galaxy-note-8", + "name": "Galaxy Note 8", + "url": "/v1/smartphones/galaxy-note-8" + }, + { + "slug": "galaxy-note-9", + "name": "Galaxy Note 9", + "url": "/v1/smartphones/galaxy-note-9" + }, + { + "slug": "galaxy-note-2", + "name": "Galaxy Note II", + "url": "/v1/smartphones/galaxy-note-2" + }, + { + "slug": "galaxy-s2", + "name": "Galaxy S II", + "url": "/v1/smartphones/galaxy-s2" + }, + { + "slug": "galaxy-s3", + "name": "Galaxy S III", + "url": "/v1/smartphones/galaxy-s3" + }, + { + "slug": "galaxy-s10", + "name": "Galaxy S10", + "url": "/v1/smartphones/galaxy-s10" + }, + { + "slug": "galaxy-s10-plus", + "name": "Galaxy S10+", + "url": "/v1/smartphones/galaxy-s10-plus" + }, + { + "slug": "galaxy-s10e", + "name": "Galaxy S10e", + "url": "/v1/smartphones/galaxy-s10e" + }, + { + "slug": "galaxy-s20", + "name": "Galaxy S20", + "url": "/v1/smartphones/galaxy-s20" + }, + { + "slug": "galaxy-s20-fe", + "name": "Galaxy S20 FE", + "url": "/v1/smartphones/galaxy-s20-fe" + }, + { + "slug": "galaxy-s20-ultra", + "name": "Galaxy S20 Ultra", + "url": "/v1/smartphones/galaxy-s20-ultra" + }, + { + "slug": "galaxy-s20-plus", + "name": "Galaxy S20+", + "url": "/v1/smartphones/galaxy-s20-plus" + }, + { + "slug": "galaxy-s21", + "name": "Galaxy S21 5G", + "url": "/v1/smartphones/galaxy-s21" + }, + { + "slug": "galaxy-s21-fe", + "name": "Galaxy S21 FE", + "url": "/v1/smartphones/galaxy-s21-fe" + }, + { + "slug": "galaxy-s21-ultra", + "name": "Galaxy S21 Ultra", + "url": "/v1/smartphones/galaxy-s21-ultra" + }, + { + "slug": "galaxy-s21-plus", + "name": "Galaxy S21+", + "url": "/v1/smartphones/galaxy-s21-plus" + }, + { + "slug": "galaxy-s22", + "name": "Galaxy S22", + "url": "/v1/smartphones/galaxy-s22" + }, + { + "slug": "galaxy-s22-ultra", + "name": "Galaxy S22 Ultra", + "url": "/v1/smartphones/galaxy-s22-ultra" + }, + { + "slug": "galaxy-s22-plus", + "name": "Galaxy S22+", + "url": "/v1/smartphones/galaxy-s22-plus" + }, + { + "slug": "galaxy-s23", + "name": "Galaxy S23", + "url": "/v1/smartphones/galaxy-s23" + }, + { + "slug": "galaxy-s23-fe", + "name": "Galaxy S23 FE", + "url": "/v1/smartphones/galaxy-s23-fe" + }, + { + "slug": "galaxy-s23-ultra", + "name": "Galaxy S23 Ultra", + "url": "/v1/smartphones/galaxy-s23-ultra" + }, + { + "slug": "galaxy-s24", + "name": "Galaxy S24", + "url": "/v1/smartphones/galaxy-s24" + }, + { + "slug": "galaxy-s24-fe", + "name": "Galaxy S24 FE", + "url": "/v1/smartphones/galaxy-s24-fe" + }, + { + "slug": "galaxy-s24-ultra", + "name": "Galaxy S24 Ultra", + "url": "/v1/smartphones/galaxy-s24-ultra" + }, + { + "slug": "galaxy-s24-plus", + "name": "Galaxy S24+", + "url": "/v1/smartphones/galaxy-s24-plus" + }, + { + "slug": "galaxy-s25", + "name": "Galaxy S25", + "url": "/v1/smartphones/galaxy-s25" + }, + { + "slug": "galaxy-s25-edge", + "name": "Galaxy S25 Edge", + "url": "/v1/smartphones/galaxy-s25-edge" + }, + { + "slug": "galaxy-s25-fe", + "name": "Galaxy S25 FE", + "url": "/v1/smartphones/galaxy-s25-fe" + }, + { + "slug": "galaxy-s25-ultra", + "name": "Galaxy S25 Ultra", + "url": "/v1/smartphones/galaxy-s25-ultra" + }, + { + "slug": "galaxy-s25-plus", + "name": "Galaxy S25+", + "url": "/v1/smartphones/galaxy-s25-plus" + }, + { + "slug": "galaxy-s26", + "name": "Galaxy S26", + "url": "/v1/smartphones/galaxy-s26" + }, + { + "slug": "galaxy-s26-ultra", + "name": "Galaxy S26 Ultra", + "url": "/v1/smartphones/galaxy-s26-ultra" + }, + { + "slug": "galaxy-s26-plus", + "name": "Galaxy S26+", + "url": "/v1/smartphones/galaxy-s26-plus" + }, + { + "slug": "galaxy-s4", + "name": "Galaxy S4", + "url": "/v1/smartphones/galaxy-s4" + }, + { + "slug": "galaxy-s5", + "name": "Galaxy S5", + "url": "/v1/smartphones/galaxy-s5" + }, + { + "slug": "galaxy-s6", + "name": "Galaxy S6", + "url": "/v1/smartphones/galaxy-s6" + }, + { + "slug": "galaxy-s6-edge", + "name": "Galaxy S6 Edge", + "url": "/v1/smartphones/galaxy-s6-edge" + }, + { + "slug": "galaxy-s7", + "name": "Galaxy S7", + "url": "/v1/smartphones/galaxy-s7" + }, + { + "slug": "galaxy-s7-edge", + "name": "Galaxy S7 Edge", + "url": "/v1/smartphones/galaxy-s7-edge" + }, + { + "slug": "galaxy-s8", + "name": "Galaxy S8", + "url": "/v1/smartphones/galaxy-s8" + }, + { + "slug": "galaxy-s8-plus", + "name": "Galaxy S8+", + "url": "/v1/smartphones/galaxy-s8-plus" + }, + { + "slug": "galaxy-s9", + "name": "Galaxy S9", + "url": "/v1/smartphones/galaxy-s9" + }, + { + "slug": "galaxy-s9-plus", + "name": "Galaxy S9+", + "url": "/v1/smartphones/galaxy-s9-plus" + }, + { + "slug": "galaxy-w21-5g", + "name": "Galaxy W21 5G", + "url": "/v1/smartphones/galaxy-w21-5g" + }, + { + "slug": "galaxy-w22-5g", + "name": "Galaxy W22 5G", + "url": "/v1/smartphones/galaxy-w22-5g" + }, + { + "slug": "galaxy-xcover-5", + "name": "Galaxy Xcover 5", + "url": "/v1/smartphones/galaxy-xcover-5" + }, + { + "slug": "galaxy-xcover-6-pro", + "name": "Galaxy Xcover 6 Pro", + "url": "/v1/smartphones/galaxy-xcover-6-pro" + }, + { + "slug": "galaxy-z-flip", + "name": "Galaxy Z Flip", + "url": "/v1/smartphones/galaxy-z-flip" + }, + { + "slug": "galaxy-z-flip-3", + "name": "Galaxy Z Flip 3", + "url": "/v1/smartphones/galaxy-z-flip-3" + }, + { + "slug": "galaxy-z-flip-5g", + "name": "Galaxy Z Flip 5G", + "url": "/v1/smartphones/galaxy-z-flip-5g" + }, + { + "slug": "galaxy-z-flip-7", + "name": "Galaxy Z Flip 7", + "url": "/v1/smartphones/galaxy-z-flip-7" + }, + { + "slug": "galaxy-z-flip-4", + "name": "Galaxy Z Flip4", + "url": "/v1/smartphones/galaxy-z-flip-4" + }, + { + "slug": "galaxy-z-flip-5", + "name": "Galaxy Z Flip5", + "url": "/v1/smartphones/galaxy-z-flip-5" + }, + { + "slug": "galaxy-z-flip-6", + "name": "Galaxy Z Flip6", + "url": "/v1/smartphones/galaxy-z-flip-6" + }, + { + "slug": "galaxy-z-fold-2", + "name": "Galaxy Z Fold 2", + "url": "/v1/smartphones/galaxy-z-fold-2" + }, + { + "slug": "galaxy-z-fold-7", + "name": "Galaxy Z Fold 7", + "url": "/v1/smartphones/galaxy-z-fold-7" + }, + { + "slug": "galaxy-z-fold-3", + "name": "Galaxy Z Fold3", + "url": "/v1/smartphones/galaxy-z-fold-3" + }, + { + "slug": "galaxy-z-fold-4", + "name": "Galaxy Z Fold4", + "url": "/v1/smartphones/galaxy-z-fold-4" + }, + { + "slug": "galaxy-z-fold-5", + "name": "Galaxy Z Fold5", + "url": "/v1/smartphones/galaxy-z-fold-5" + }, + { + "slug": "galaxy-z-fold-6", + "name": "Galaxy Z Fold6", + "url": "/v1/smartphones/galaxy-z-fold-6" + }, + { + "slug": "pixel-4a-5g", + "name": "Google Pixel 4a (5G)", + "url": "/v1/smartphones/pixel-4a-5g" + }, + { + "slug": "pixel-5", + "name": "Google Pixel 5", + "url": "/v1/smartphones/pixel-5" + }, + { + "slug": "pixel-9-pro-fold", + "name": "Google Pixel 9 Pro Fold", + "url": "/v1/smartphones/pixel-9-pro-fold" + }, + { + "slug": "pixel-9a", + "name": "Google Pixel 9a", + "url": "/v1/smartphones/pixel-9a" + }, + { + "slug": "pixel-fold", + "name": "Google Pixel Fold", + "url": "/v1/smartphones/pixel-fold" + }, + { + "slug": "h18-dual-sim-td-lte", + "name": "H18 Dual SIM TD-LTE", + "url": "/v1/smartphones/h18-dual-sim-td-lte" + }, + { + "slug": "h20-dual-sim-td-lte-hlte510t-128gb", + "name": "H20 Dual SIM TD-LTE HLTE510T 128GB", + "url": "/v1/smartphones/h20-dual-sim-td-lte-hlte510t-128gb" + }, + { + "slug": "h20-dual-sim-td-lte-hlte510t-64gb", + "name": "H20 Dual SIM TD-LTE HLTE510T 64GB", + "url": "/v1/smartphones/h20-dual-sim-td-lte-hlte510t-64gb" + }, + { + "slug": "h873u-g6-lte-a-128gb-g6-plus", + "name": "H873U G6+ LTE-A 128GB / G6 Plus", + "url": "/v1/smartphones/h873u-g6-lte-a-128gb-g6-plus" + }, + { + "slug": "homtom-zoji-z9-dual-sim-td-lte-p270", + "name": "HOMTOM Zoji Z9 Dual SIM TD-LTE P270", + "url": "/v1/smartphones/homtom-zoji-z9-dual-sim-td-lte-p270" + }, + { + "slug": "honor-200-pro", + "name": "HONOR 200 Pro", + "url": "/v1/smartphones/honor-200-pro" + }, + { + "slug": "honor-90", + "name": "HONOR 90", + "url": "/v1/smartphones/honor-90" + }, + { + "slug": "honor-magic-v2", + "name": "HONOR Magic V2", + "url": "/v1/smartphones/honor-magic-v2" + }, + { + "slug": "honor-magic-4-pro", + "name": "HONOR Magic4 Pro", + "url": "/v1/smartphones/honor-magic-4-pro" + }, + { + "slug": "honor-magic-5-pro", + "name": "HONOR Magic5 Pro", + "url": "/v1/smartphones/honor-magic-5-pro" + }, + { + "slug": "honor-magic-6-pro", + "name": "HONOR Magic6 Pro", + "url": "/v1/smartphones/honor-magic-6-pro" + }, + { + "slug": "honor-magic-7-pro", + "name": "HONOR Magic7 Pro", + "url": "/v1/smartphones/honor-magic-7-pro" + }, + { + "slug": "honor-x9b", + "name": "HONOR X9b", + "url": "/v1/smartphones/honor-x9b" + }, + { + "slug": "hot-7-pro", + "name": "HOT 7 Pro", + "url": "/v1/smartphones/hot-7-pro" + }, + { + "slug": "hot-7-pro-dual-sim-td-lte-apac-32gb-x625b", + "name": "HOT 7 Pro Dual SIM TD-LTE APAC 32GB X625B", + "url": "/v1/smartphones/hot-7-pro-dual-sim-td-lte-apac-32gb-x625b" + }, + { + "slug": "hot-7-pro-dual-sim-td-lte-apac-64gb-x625d", + "name": "HOT 7 Pro Dual SIM TD-LTE APAC 64GB X625D", + "url": "/v1/smartphones/hot-7-pro-dual-sim-td-lte-apac-64gb-x625d" + }, + { + "slug": "hot-s3-dual-sim-td-lte-32gb-x573", + "name": "HOT S3 Dual SIM TD-LTE 32GB X573", + "url": "/v1/smartphones/hot-s3-dual-sim-td-lte-32gb-x573" + }, + { + "slug": "htc-10", + "name": "HTC 10", + "url": "/v1/smartphones/htc-10" + }, + { + "slug": "htc-one-m7", + "name": "HTC One (M7)", + "url": "/v1/smartphones/htc-one-m7" + }, + { + "slug": "htc-one-m8", + "name": "HTC One M8", + "url": "/v1/smartphones/htc-one-m8" + }, + { + "slug": "htc-one-m9", + "name": "HTC One M9", + "url": "/v1/smartphones/htc-one-m9" + }, + { + "slug": "htc-u11", + "name": "HTC U11", + "url": "/v1/smartphones/htc-u11" + }, + { + "slug": "honor-10-4g-premium-edition-dual-sim-td-lte-cn-col-tl10-128gb", + "name": "Honor 10 4G+ Premium Edition Dual SIM TD-LTE CN COL-TL10 128GB", + "url": "/v1/smartphones/honor-10-4g-premium-edition-dual-sim-td-lte-cn-col-tl10-128gb" + }, + { + "slug": "honor-10-gt-dual-sim-td-lte-cn", + "name": "Honor 10 GT Dual SIM TD-LTE CN", + "url": "/v1/smartphones/honor-10-gt-dual-sim-td-lte-cn" + }, + { + "slug": "honor-10-global-dual-sim-td-lte-128gb-col-l29", + "name": "Honor 10 Global Dual SIM TD-LTE 128GB COL-L29", + "url": "/v1/smartphones/honor-10-global-dual-sim-td-lte-128gb-col-l29" + }, + { + "slug": "honor-10-global-dual-sim-td-lte-64gb-col-l29", + "name": "Honor 10 Global Dual SIM TD-LTE 64GB COL-L29", + "url": "/v1/smartphones/honor-10-global-dual-sim-td-lte-64gb-col-l29" + }, + { + "slug": "honor-10-lite-dual-sim-td-lte-apac-64gb-hry-lx2-hry-l22", + "name": "Honor 10 Lite Dual SIM TD-LTE APAC 64GB HRY-LX2 / HRY-L22", + "url": "/v1/smartphones/honor-10-lite-dual-sim-td-lte-apac-64gb-hry-lx2-hry-l22" + }, + { + "slug": "honor-10-lite-dual-sim-td-lte-emea-64gb-hry-lx1-hry-l21", + "name": "Honor 10 Lite Dual SIM TD-LTE EMEA 64GB HRY-LX1 / HRY-L21", + "url": "/v1/smartphones/honor-10-lite-dual-sim-td-lte-emea-64gb-hry-lx1-hry-l21" + }, + { + "slug": "honor-10-lite-premium-edition-dual-sim-td-lte-cn-128gb-hry-al00", + "name": "Honor 10 Lite Premium Edition Dual SIM TD-LTE CN 128GB HRY-AL00", + "url": "/v1/smartphones/honor-10-lite-premium-edition-dual-sim-td-lte-cn-128gb-hry-al00" + }, + { + "slug": "honor-10-lite-premium-edition-dual-sim-td-lte-cn-64gb-hry-tl00-honor-10-youth", + "name": "Honor 10 Lite Premium Edition Dual SIM TD-LTE CN 64GB HRY-TL00 / Honor 10 Youth", + "url": "/v1/smartphones/honor-10-lite-premium-edition-dual-sim-td-lte-cn-64gb-hry-tl00-honor-10-youth" + }, + { + "slug": "honor-10-lite-premium-edition-dual-sim-td-lte-cn-in-64gb-hry-al00a-honor-10-youth", + "name": "Honor 10 Lite Premium Edition Dual SIM TD-LTE CN IN 64GB HRY-AL00a / Honor 10 Youth", + "url": "/v1/smartphones/honor-10-lite-premium-edition-dual-sim-td-lte-cn-in-64gb-hry-al00a-honor-10-youth" + }, + { + "slug": "honor-10-lite-standard-edition-dual-sim-td-lte-cn-in-32gb-hry-al00", + "name": "Honor 10 Lite Standard Edition Dual SIM TD-LTE CN IN 32GB HRY-AL00", + "url": "/v1/smartphones/honor-10-lite-standard-edition-dual-sim-td-lte-cn-in-32gb-hry-al00" + }, + { + "slug": "honor-10-lite-standard-edition-dual-sim-td-lte-cn-in-64gb-hry-al00", + "name": "Honor 10 Lite Standard Edition Dual SIM TD-LTE CN IN 64GB HRY-AL00", + "url": "/v1/smartphones/honor-10-lite-standard-edition-dual-sim-td-lte-cn-in-64gb-hry-al00" + }, + { + "slug": "honor-10-premium-edition-dual-sim-td-lte-cn-col-al10-128gb", + "name": "Honor 10 Premium Edition Dual SIM TD-LTE CN COL-AL10 128GB", + "url": "/v1/smartphones/honor-10-premium-edition-dual-sim-td-lte-cn-col-al10-128gb" + }, + { + "slug": "honor-10-premium-edition-dual-sim-td-lte-cn-col-al10-64gb", + "name": "Honor 10 Premium Edition Dual SIM TD-LTE CN COL-AL10 64GB", + "url": "/v1/smartphones/honor-10-premium-edition-dual-sim-td-lte-cn-col-al10-64gb" + }, + { + "slug": "honor-10-standard-edition-dual-sim-td-lte-cn-col-al00-64gb", + "name": "Honor 10 Standard Edition Dual SIM TD-LTE CN COL-AL00 64GB", + "url": "/v1/smartphones/honor-10-standard-edition-dual-sim-td-lte-cn-col-al00-64gb" + }, + { + "slug": "honor-10x-lite-dual-sim-td-lte-emea-128gb-dnn-lx9-dnn-l29", + "name": "Honor 10X Lite Dual SIM TD-LTE EMEA 128GB DNN-LX9 / DNN-L29", + "url": "/v1/smartphones/honor-10x-lite-dual-sim-td-lte-emea-128gb-dnn-lx9-dnn-l29" + }, + { + "slug": "honor-10i-dual-sim-lte-a-emea-128gb-hry-lx1t-honor-20-lite-hry-l21t", + "name": "Honor 10i Dual SIM LTE-A EMEA 128GB HRY-LX1T / Honor 20 Lite HRY-L21T", + "url": "/v1/smartphones/honor-10i-dual-sim-lte-a-emea-128gb-hry-lx1t-honor-20-lite-hry-l21t" + }, + { + "slug": "honor-20-4g-dual-sim-td-lte-cn-128gb-yal-tl00", + "name": "Honor 20 4G+ Dual SIM TD-LTE CN 128GB YAL-TL00", + "url": "/v1/smartphones/honor-20-4g-dual-sim-td-lte-cn-128gb-yal-tl00" + }, + { + "slug": "honor-20-dual-sim-td-lte-cn-128gb-yal-al00", + "name": "Honor 20 Dual SIM TD-LTE CN 128GB YAL-AL00", + "url": "/v1/smartphones/honor-20-dual-sim-td-lte-cn-128gb-yal-al00" + }, + { + "slug": "honor-20-dual-sim-td-lte-cn-256gb-yal-al00", + "name": "Honor 20 Dual SIM TD-LTE CN 256GB YAL-AL00", + "url": "/v1/smartphones/honor-20-dual-sim-td-lte-cn-256gb-yal-al00" + }, + { + "slug": "honor-20-pro-4g-dual-sim-td-lte-cn-256gb-yal-tl10", + "name": "Honor 20 Pro 4G+ Dual SIM TD-LTE CN 256GB YAL-TL10", + "url": "/v1/smartphones/honor-20-pro-4g-dual-sim-td-lte-cn-256gb-yal-tl10" + }, + { + "slug": "honor-20-pro-dual-sim-td-lte-cn-128gb-yal-al10", + "name": "Honor 20 Pro Dual SIM TD-LTE CN 128GB YAL-AL10", + "url": "/v1/smartphones/honor-20-pro-dual-sim-td-lte-cn-128gb-yal-al10" + }, + { + "slug": "honor-20-pro-dual-sim-td-lte-cn-256gb-yal-al10", + "name": "Honor 20 Pro Dual SIM TD-LTE CN 256GB YAL-AL10", + "url": "/v1/smartphones/honor-20-pro-dual-sim-td-lte-cn-256gb-yal-al10" + }, + { + "slug": "honor-20-pro-global-dual-sim-td-lte-256gb-yal-l41", + "name": "Honor 20 Pro Global Dual SIM TD-LTE 256GB YAL-L41", + "url": "/v1/smartphones/honor-20-pro-global-dual-sim-td-lte-256gb-yal-l41" + }, + { + "slug": "honor-20-standard-edition-global-dual-sim-td-lte-128gb-yal-l21-nova-5t", + "name": "Honor 20 Standard Edition Global Dual SIM TD-LTE 128GB YAL-L21 / nova 5T", + "url": "/v1/smartphones/honor-20-standard-edition-global-dual-sim-td-lte-128gb-yal-l21-nova-5t" + }, + { + "slug": "honor-20-youth-premium-edition-dual-sim-td-lte-cn-128gb-lra-al00", + "name": "Honor 20 Youth Premium Edition Dual SIM TD-LTE CN 128GB LRA-AL00", + "url": "/v1/smartphones/honor-20-youth-premium-edition-dual-sim-td-lte-cn-128gb-lra-al00" + }, + { + "slug": "honor-20-youth-premium-edition-dual-sim-td-lte-cn-64gb-lra-al00", + "name": "Honor 20 Youth Premium Edition Dual SIM TD-LTE CN 64GB LRA-AL00", + "url": "/v1/smartphones/honor-20-youth-premium-edition-dual-sim-td-lte-cn-64gb-lra-al00" + }, + { + "slug": "honor-20-youth-standard-edition-dual-sim-td-lte-cn-64gb-lra-al00", + "name": "Honor 20 Youth Standard Edition Dual SIM TD-LTE CN 64GB LRA-AL00", + "url": "/v1/smartphones/honor-20-youth-standard-edition-dual-sim-td-lte-cn-64gb-lra-al00" + }, + { + "slug": "honor-20-youth-top-edition-dual-sim-td-lte-cn-128gb-lra-al00", + "name": "Honor 20 Youth Top Edition Dual SIM TD-LTE CN 128GB LRA-AL00", + "url": "/v1/smartphones/honor-20-youth-top-edition-dual-sim-td-lte-cn-128gb-lra-al00" + }, + { + "slug": "honor-20e-dual-sim-lte-a-emea-64gb-hry-lx1t-honor-20-lite-hry-l21t", + "name": "Honor 20E Dual SIM LTE-A EMEA 64GB HRY-LX1T / Honor 20 Lite HRY-L21T", + "url": "/v1/smartphones/honor-20e-dual-sim-lte-a-emea-64gb-hry-lx1t-honor-20-lite-hry-l21t" + }, + { + "slug": "honor-20s-premium-edition-dual-sim-td-lte-cn-128gb-yal-al50", + "name": "Honor 20S Premium Edition Dual SIM TD-LTE CN 128GB YAL-AL50", + "url": "/v1/smartphones/honor-20s-premium-edition-dual-sim-td-lte-cn-128gb-yal-al50" + }, + { + "slug": "honor-20s-standard-edition-dual-sim-td-lte-cn-128gb-yal-al50", + "name": "Honor 20S Standard Edition Dual SIM TD-LTE CN 128GB YAL-AL50", + "url": "/v1/smartphones/honor-20s-standard-edition-dual-sim-td-lte-cn-128gb-yal-al50" + }, + { + "slug": "honor-20s-standard-edition-dual-sim-td-lte-cn-128gb-yal-tl50", + "name": "Honor 20S Standard Edition Dual SIM TD-LTE CN 128GB YAL-TL50", + "url": "/v1/smartphones/honor-20s-standard-edition-dual-sim-td-lte-cn-128gb-yal-tl50" + }, + { + "slug": "honor-20i-premium-edition-dual-sim-td-lte-cn-256gb-hry-al00t-honor-20-lite", + "name": "Honor 20i Premium Edition Dual SIM TD-LTE CN 256GB HRY-AL00T / Honor 20 Lite", + "url": "/v1/smartphones/honor-20i-premium-edition-dual-sim-td-lte-cn-256gb-hry-al00t-honor-20-lite" + }, + { + "slug": "honor-20i-standard-edition-dual-sim-td-lte-cn-128gb-hry-al00t-honor-20-lite", + "name": "Honor 20i Standard Edition Dual SIM TD-LTE CN 128GB HRY-AL00T / Honor 20 Lite", + "url": "/v1/smartphones/honor-20i-standard-edition-dual-sim-td-lte-cn-128gb-hry-al00t-honor-20-lite" + }, + { + "slug": "honor-30-5g-global-dual-sim-td-lte-128gb-bmh-nx9-bmh-n29", + "name": "Honor 30 5G Global Dual SIM TD-LTE 128GB BMH-NX9 / BMH-N29", + "url": "/v1/smartphones/honor-30-5g-global-dual-sim-td-lte-128gb-bmh-nx9-bmh-n29" + }, + { + "slug": "honor-30-5g-global-dual-sim-td-lte-256gb-bmh-nx9-bmh-n29", + "name": "Honor 30 5G Global Dual SIM TD-LTE 256GB BMH-NX9 / BMH-N29", + "url": "/v1/smartphones/honor-30-5g-global-dual-sim-td-lte-256gb-bmh-nx9-bmh-n29" + }, + { + "slug": "honor-30-5g-premium-edition-dual-sim-td-lte-cn-128gb-bmh-an10-bmh-an20", + "name": "Honor 30 5G Premium Edition Dual SIM TD-LTE CN 128GB BMH-AN10 / BMH-AN20", + "url": "/v1/smartphones/honor-30-5g-premium-edition-dual-sim-td-lte-cn-128gb-bmh-an10-bmh-an20" + }, + { + "slug": "honor-30-5g-premium-edition-dual-sim-td-lte-cn-256gb-bmh-an10-bmh-an20", + "name": "Honor 30 5G Premium Edition Dual SIM TD-LTE CN 256GB BMH-AN10 / BMH-AN20", + "url": "/v1/smartphones/honor-30-5g-premium-edition-dual-sim-td-lte-cn-256gb-bmh-an10-bmh-an20" + }, + { + "slug": "honor-30-5g-standard-edition-dual-sim-td-lte-cn-128gb-bmh-an10-bmh-an20", + "name": "Honor 30 5G Standard Edition Dual SIM TD-LTE CN 128GB BMH-AN10 / BMH-AN20", + "url": "/v1/smartphones/honor-30-5g-standard-edition-dual-sim-td-lte-cn-128gb-bmh-an10-bmh-an20" + }, + { + "slug": "honor-30-lite", + "name": "Honor 30 Lite", + "url": "/v1/smartphones/honor-30-lite" + }, + { + "slug": "honor-30-lite-5g-premium-edition-dual-sim-td-lte-cn-128gb-mxw-an00-30-lite-youth", + "name": "Honor 30 Lite 5G Premium Edition Dual SIM TD-LTE CN 128GB MXW-AN00 / 30 Lite Youth", + "url": "/v1/smartphones/honor-30-lite-5g-premium-edition-dual-sim-td-lte-cn-128gb-mxw-an00-30-lite-youth" + }, + { + "slug": "honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-128gb-mxw-an00", + "name": "Honor 30 Lite 5G Standard Edition Dual SIM TD-LTE CN 128GB MXW-AN00", + "url": "/v1/smartphones/honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-128gb-mxw-an00" + }, + { + "slug": "honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-64gb-mxw-an00", + "name": "Honor 30 Lite 5G Standard Edition Dual SIM TD-LTE CN 64GB MXW-AN00", + "url": "/v1/smartphones/honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-64gb-mxw-an00" + }, + { + "slug": "honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-64gb-mxw-tn00", + "name": "Honor 30 Lite 5G Standard Edition Dual SIM TD-LTE CN 64GB MXW-TN00", + "url": "/v1/smartphones/honor-30-lite-5g-standard-edition-dual-sim-td-lte-cn-64gb-mxw-tn00" + }, + { + "slug": "honor-30s-5g-dual-sim-td-lte-cn-128gb-cdy-an90", + "name": "Honor 30S 5G Dual SIM TD-LTE CN 128GB CDY-AN90", + "url": "/v1/smartphones/honor-30s-5g-dual-sim-td-lte-cn-128gb-cdy-an90" + }, + { + "slug": "honor-30s-5g-dual-sim-td-lte-cn-256gb-cdy-an90", + "name": "Honor 30S 5G Dual SIM TD-LTE CN 256GB CDY-AN90", + "url": "/v1/smartphones/honor-30s-5g-dual-sim-td-lte-cn-256gb-cdy-an90" + }, + { + "slug": "honor-30s-5g-dual-sim-td-lte-cn-256gb-cdy-tn90", + "name": "Honor 30S 5G Dual SIM TD-LTE CN 256GB CDY-TN90", + "url": "/v1/smartphones/honor-30s-5g-dual-sim-td-lte-cn-256gb-cdy-tn90" + }, + { + "slug": "honor-50", + "name": "Honor 50", + "url": "/v1/smartphones/honor-50" + }, + { + "slug": "honor-50-pro", + "name": "Honor 50 Pro", + "url": "/v1/smartphones/honor-50-pro" + }, + { + "slug": "honor-50-se", + "name": "Honor 50 SE", + "url": "/v1/smartphones/honor-50-se" + }, + { + "slug": "honor-50-se-5g-dual-sim-td-lte-cn-128gb-jlh-an00", + "name": "Honor 50 SE 5G Dual SIM TD-LTE CN 128GB JLH-AN00", + "url": "/v1/smartphones/honor-50-se-5g-dual-sim-td-lte-cn-128gb-jlh-an00" + }, + { + "slug": "honor-50-se-5g-dual-sim-td-lte-cn-256gb-jlh-an00", + "name": "Honor 50 SE 5G Dual SIM TD-LTE CN 256GB JLH-AN00", + "url": "/v1/smartphones/honor-50-se-5g-dual-sim-td-lte-cn-256gb-jlh-an00" + }, + { + "slug": "honor-60", + "name": "Honor 60", + "url": "/v1/smartphones/honor-60" + }, + { + "slug": "honor-60-pro", + "name": "Honor 60 Pro", + "url": "/v1/smartphones/honor-60-pro" + }, + { + "slug": "honor-60-se", + "name": "Honor 60 SE", + "url": "/v1/smartphones/honor-60-se" + }, + { + "slug": "honor-70", + "name": "Honor 70", + "url": "/v1/smartphones/honor-70" + }, + { + "slug": "honor-70-pro", + "name": "Honor 70 Pro+", + "url": "/v1/smartphones/honor-70-pro" + }, + { + "slug": "honor-7a-pro-dual-sim-lte-emea-aum-l29", + "name": "Honor 7A Pro Dual SIM LTE EMEA AUM-L29", + "url": "/v1/smartphones/honor-7a-pro-dual-sim-lte-emea-aum-l29" + }, + { + "slug": "honor-8a-premium-edition", + "name": "Honor 8A Premium Edition", + "url": "/v1/smartphones/honor-8a-premium-edition" + }, + { + "slug": "honor-8a-premium-edition-global-dual-sim-td-lte-32gb-jat-l29", + "name": "Honor 8A Premium Edition Global Dual SIM TD-LTE 32GB JAT-L29", + "url": "/v1/smartphones/honor-8a-premium-edition-global-dual-sim-td-lte-32gb-jat-l29" + }, + { + "slug": "honor-8a-standard-edition", + "name": "Honor 8A Standard Edition", + "url": "/v1/smartphones/honor-8a-standard-edition" + }, + { + "slug": "honor-8a-standard-edition-global-dual-sim-td-lte-32gb-jat-lx9-jat-l29", + "name": "Honor 8A Standard Edition Global Dual SIM TD-LTE 32GB JAT-LX9 / JAT-L29", + "url": "/v1/smartphones/honor-8a-standard-edition-global-dual-sim-td-lte-32gb-jat-lx9-jat-l29" + }, + { + "slug": "honor-8c-global-dual-sim-td-lte-bkk-lx1-64gb-bkk-l21", + "name": "Honor 8C Global Dual SIM TD-LTE BKK-LX1 64GB / BKK-L21", + "url": "/v1/smartphones/honor-8c-global-dual-sim-td-lte-bkk-lx1-64gb-bkk-l21" + }, + { + "slug": "honor-8s-2019", + "name": "Honor 8S 2019", + "url": "/v1/smartphones/honor-8s-2019" + }, + { + "slug": "honor-8s-2019-dual-sim-lte-emea-32gb-ksa-lx9-ksa-l29", + "name": "Honor 8S 2019 Dual SIM LTE EMEA 32GB KSA-LX9 / KSA-L29", + "url": "/v1/smartphones/honor-8s-2019-dual-sim-lte-emea-32gb-ksa-lx9-ksa-l29" + }, + { + "slug": "honor-8s-2019-dual-sim-lte-latam-32gb-ksa-lx3-ksa-l23", + "name": "Honor 8S 2019 Dual SIM LTE LATAM 32GB KSA-LX3 / KSA-L23", + "url": "/v1/smartphones/honor-8s-2019-dual-sim-lte-latam-32gb-ksa-lx3-ksa-l23" + }, + { + "slug": "honor-8s-2019-dual-sim-td-lte-apac-32gb-ksa-lx2-ksa-l22", + "name": "Honor 8S 2019 Dual SIM TD-LTE APAC 32GB KSA-LX2 / KSA-L22", + "url": "/v1/smartphones/honor-8s-2019-dual-sim-td-lte-apac-32gb-ksa-lx2-ksa-l22" + }, + { + "slug": "honor-8s-2019-lte", + "name": "Honor 8S 2019 LTE", + "url": "/v1/smartphones/honor-8s-2019-lte" + }, + { + "slug": "honor-8s-2019-lte-emea-32gb-ksa-lx9-ksa-l09", + "name": "Honor 8S 2019 LTE EMEA 32GB KSA-LX9 / KSA-L09", + "url": "/v1/smartphones/honor-8s-2019-lte-emea-32gb-ksa-lx9-ksa-l09" + }, + { + "slug": "honor-8s-2019-lte-latam-32gb-ksa-lx3-ksa-l03", + "name": "Honor 8S 2019 LTE LATAM 32GB KSA-LX3 / KSA-L03", + "url": "/v1/smartphones/honor-8s-2019-lte-latam-32gb-ksa-lx3-ksa-l03" + }, + { + "slug": "honor-8s-2020", + "name": "Honor 8S 2020", + "url": "/v1/smartphones/honor-8s-2020" + }, + { + "slug": "honor-8s-2020-dual-sim-lte-emea-64gb-ksa-lx9", + "name": "Honor 8S 2020 Dual SIM LTE EMEA 64GB KSA-LX9", + "url": "/v1/smartphones/honor-8s-2020-dual-sim-lte-emea-64gb-ksa-lx9" + }, + { + "slug": "honor-8x-dual-sim-lte-a-emea-128gb-jsn-l21", + "name": "Honor 8X Dual SIM LTE-A EMEA 128GB JSN-L21", + "url": "/v1/smartphones/honor-8x-dual-sim-lte-a-emea-128gb-jsn-l21" + }, + { + "slug": "honor-8x-dual-sim-lte-a-latam-64gb-jsn-lx3-jsn-l23", + "name": "Honor 8X Dual SIM LTE-A LATAM 64GB JSN-LX3 / JSN-L23", + "url": "/v1/smartphones/honor-8x-dual-sim-lte-a-latam-64gb-jsn-lx3-jsn-l23" + }, + { + "slug": "honor-8x-dual-sim-td-lte-apac-128gb-jsn-lx2-jsn-l22", + "name": "Honor 8X Dual SIM TD-LTE APAC 128GB JSN-LX2 / JSN-L22", + "url": "/v1/smartphones/honor-8x-dual-sim-td-lte-apac-128gb-jsn-lx2-jsn-l22" + }, + { + "slug": "honor-8x-dual-sim-td-lte-in-128gb-jsn-l42", + "name": "Honor 8X Dual SIM TD-LTE IN 128GB JSN-L42", + "url": "/v1/smartphones/honor-8x-dual-sim-td-lte-in-128gb-jsn-l42" + }, + { + "slug": "honor-8x-max-4g-standard-edition-dual-sim-td-lte-cn-128gb-are-tl00", + "name": "Honor 8X Max 4G+ Standard Edition Dual SIM TD-LTE CN 128GB ARE-TL00", + "url": "/v1/smartphones/honor-8x-max-4g-standard-edition-dual-sim-td-lte-cn-128gb-are-tl00" + }, + { + "slug": "honor-8x-max-premium-edition-dual-sim-td-lte-cn-64gb-are-al10", + "name": "Honor 8X Max Premium Edition Dual SIM TD-LTE CN 64GB ARE-AL10", + "url": "/v1/smartphones/honor-8x-max-premium-edition-dual-sim-td-lte-cn-64gb-are-al10" + }, + { + "slug": "honor-8x-max-standard-edition-dual-sim-td-lte-cn-128gb-are-al00", + "name": "Honor 8X Max Standard Edition Dual SIM TD-LTE CN 128GB ARE-AL00", + "url": "/v1/smartphones/honor-8x-max-standard-edition-dual-sim-td-lte-cn-128gb-are-al00" + }, + { + "slug": "honor-8x-max-standard-edition-dual-sim-td-lte-cn-64gb-are-al00", + "name": "Honor 8X Max Standard Edition Dual SIM TD-LTE CN 64GB ARE-AL00", + "url": "/v1/smartphones/honor-8x-max-standard-edition-dual-sim-td-lte-cn-64gb-are-al00" + }, + { + "slug": "honor-8x-premium-edition-dual-sim-td-lte-cn-128gb-jsn-al00a", + "name": "Honor 8X Premium Edition Dual SIM TD-LTE CN 128GB JSN-AL00a", + "url": "/v1/smartphones/honor-8x-premium-edition-dual-sim-td-lte-cn-128gb-jsn-al00a" + }, + { + "slug": "honor-8x-premium-edition-dual-sim-td-lte-cn-64gb-jsn-al00a", + "name": "Honor 8X Premium Edition Dual SIM TD-LTE CN 64GB JSN-AL00a", + "url": "/v1/smartphones/honor-8x-premium-edition-dual-sim-td-lte-cn-64gb-jsn-al00a" + }, + { + "slug": "honor-8x-standard-edition-dual-sim-td-lte-cn-64gb-jsn-al00", + "name": "Honor 8X Standard Edition Dual SIM TD-LTE CN 64GB JSN-AL00", + "url": "/v1/smartphones/honor-8x-standard-edition-dual-sim-td-lte-cn-64gb-jsn-al00" + }, + { + "slug": "honor-8x-standard-edition-dual-sim-td-lte-cn-64gb-jsn-tl00", + "name": "Honor 8X Standard Edition Dual SIM TD-LTE CN 64GB JSN-TL00", + "url": "/v1/smartphones/honor-8x-standard-edition-dual-sim-td-lte-cn-64gb-jsn-tl00" + }, + { + "slug": "honor-9a", + "name": "Honor 9A", + "url": "/v1/smartphones/honor-9a" + }, + { + "slug": "honor-9a-global-dual-sim-td-lte-64gb-moa-lx9-moa-l29", + "name": "Honor 9A Global Dual SIM TD-LTE 64GB MOA-LX9 / MOA-L29", + "url": "/v1/smartphones/honor-9a-global-dual-sim-td-lte-64gb-moa-lx9-moa-l29" + }, + { + "slug": "honor-9a-global-dual-sim-td-lte-64gb-moa-lx9n-moa-l29n", + "name": "Honor 9A Global Dual SIM TD-LTE 64GB MOA-LX9N / MOA-L29N", + "url": "/v1/smartphones/honor-9a-global-dual-sim-td-lte-64gb-moa-lx9n-moa-l29n" + }, + { + "slug": "honor-9c-global-dual-sim-td-lte-64gb-aka-lx9-aka-l29", + "name": "Honor 9C Global Dual SIM TD-LTE 64GB AKA-LX9 / AKA-L29", + "url": "/v1/smartphones/honor-9c-global-dual-sim-td-lte-64gb-aka-lx9-aka-l29" + }, + { + "slug": "honor-9s-2020", + "name": "Honor 9S 2020", + "url": "/v1/smartphones/honor-9s-2020" + }, + { + "slug": "honor-9s-2020-global-dual-sim-td-lte-32gb-dua-lx9-dua-l29", + "name": "Honor 9S 2020 Global Dual SIM TD-LTE 32GB DUA-LX9 / DUA-L29", + "url": "/v1/smartphones/honor-9s-2020-global-dual-sim-td-lte-32gb-dua-lx9-dua-l29" + }, + { + "slug": "honor-9x-lite-dual-sim-lte-a-emea-128gb-jsn-lx1", + "name": "Honor 9X Lite Dual SIM LTE-A EMEA 128GB JSN-LX1", + "url": "/v1/smartphones/honor-9x-lite-dual-sim-lte-a-emea-128gb-jsn-lx1" + }, + { + "slug": "honor-9x-lite-dual-sim-td-lte-apac-128gb-jsn-l22", + "name": "Honor 9X Lite Dual SIM TD-LTE APAC 128GB JSN-L22", + "url": "/v1/smartphones/honor-9x-lite-dual-sim-td-lte-apac-128gb-jsn-l22" + }, + { + "slug": "honor-9x-premium-edition-dual-sim-td-lte-apac-128gb-stk-lx2-stk-l22", + "name": "Honor 9X Premium Edition Dual SIM TD-LTE APAC 128GB STK-LX2 / STK-L22", + "url": "/v1/smartphones/honor-9x-premium-edition-dual-sim-td-lte-apac-128gb-stk-lx2-stk-l22" + }, + { + "slug": "honor-9x-premium-edition-dual-sim-td-lte-cn-128gb-hlk-al00", + "name": "Honor 9X Premium Edition Dual SIM TD-LTE CN 128GB HLK-AL00", + "url": "/v1/smartphones/honor-9x-premium-edition-dual-sim-td-lte-cn-128gb-hlk-al00" + }, + { + "slug": "honor-9x-premium-edition-dual-sim-td-lte-cn-64gb-hlk-al00", + "name": "Honor 9X Premium Edition Dual SIM TD-LTE CN 64GB HLK-AL00", + "url": "/v1/smartphones/honor-9x-premium-edition-dual-sim-td-lte-cn-64gb-hlk-al00" + }, + { + "slug": "honor-9x-premium-edition-dual-sim-td-lte-emea-128gb-hlk-l41", + "name": "Honor 9X Premium Edition Dual SIM TD-LTE EMEA 128GB HLK-L41", + "url": "/v1/smartphones/honor-9x-premium-edition-dual-sim-td-lte-emea-128gb-hlk-l41" + }, + { + "slug": "honor-9x-pro-dual-sim-td-lte-apac-256gb-hlk-l42", + "name": "Honor 9X Pro Dual SIM TD-LTE APAC 256GB HLK-L42", + "url": "/v1/smartphones/honor-9x-pro-dual-sim-td-lte-apac-256gb-hlk-l42" + }, + { + "slug": "honor-9x-pro-dual-sim-td-lte-cn-128gb-hlk-al10", + "name": "Honor 9X Pro Dual SIM TD-LTE CN 128GB HLK-AL10", + "url": "/v1/smartphones/honor-9x-pro-dual-sim-td-lte-cn-128gb-hlk-al10" + }, + { + "slug": "honor-9x-pro-dual-sim-td-lte-cn-256gb-hlk-al10", + "name": "Honor 9X Pro Dual SIM TD-LTE CN 256GB HLK-AL10", + "url": "/v1/smartphones/honor-9x-pro-dual-sim-td-lte-cn-256gb-hlk-al10" + }, + { + "slug": "honor-9x-standard-edition-dual-sim-td-lte-apac-128gb-stk-lx2-y9-prime-2019-stk-l22", + "name": "Honor 9X Standard Edition Dual SIM TD-LTE APAC 128GB STK-LX2 / Y9 Prime 2019 STK-L22", + "url": "/v1/smartphones/honor-9x-standard-edition-dual-sim-td-lte-apac-128gb-stk-lx2-y9-prime-2019-stk-l22" + }, + { + "slug": "honor-9x-standard-edition-dual-sim-td-lte-cn-64gb-hlk-al00", + "name": "Honor 9X Standard Edition Dual SIM TD-LTE CN 64GB HLK-AL00", + "url": "/v1/smartphones/honor-9x-standard-edition-dual-sim-td-lte-cn-64gb-hlk-al00" + }, + { + "slug": "honor-9x-standard-edition-dual-sim-td-lte-cn-64gb-hlk-tl00", + "name": "Honor 9X Standard Edition Dual SIM TD-LTE CN 64GB HLK-TL00", + "url": "/v1/smartphones/honor-9x-standard-edition-dual-sim-td-lte-cn-64gb-hlk-tl00" + }, + { + "slug": "honor-9x-standard-edition-dual-sim-td-lte-emea-128gb-hlk-lx1-hlk-l21", + "name": "Honor 9X Standard Edition Dual SIM TD-LTE EMEA 128GB HLK-LX1 / HLK-L21", + "url": "/v1/smartphones/honor-9x-standard-edition-dual-sim-td-lte-emea-128gb-hlk-lx1-hlk-l21" + }, + { + "slug": "honor-9i-2018-dual-sim-td-lte-cn-128gb-lld-al30-honor-9n", + "name": "Honor 9i 2018 Dual SIM TD-LTE CN 128GB LLD-AL30 / Honor 9N", + "url": "/v1/smartphones/honor-9i-2018-dual-sim-td-lte-cn-128gb-lld-al30-honor-9n" + }, + { + "slug": "honor-9i-2018-dual-sim-td-lte-cn-64gb-lld-al20-honor-9n", + "name": "Honor 9i 2018 Dual SIM TD-LTE CN 64GB LLD-AL20 / Honor 9N", + "url": "/v1/smartphones/honor-9i-2018-dual-sim-td-lte-cn-64gb-lld-al20-honor-9n" + }, + { + "slug": "honor-changwan-7a-dual-sim-td-lte-cn-aum-al00-honor-play-7a", + "name": "Honor Changwan 7A Dual SIM TD-LTE CN AUM-AL00 / Honor Play 7A", + "url": "/v1/smartphones/honor-changwan-7a-dual-sim-td-lte-cn-aum-al00-honor-play-7a" + }, + { + "slug": "honor-changwan-7a-dual-sim-td-lte-cn-aum-al20", + "name": "Honor Changwan 7A Dual SIM TD-LTE CN AUM-AL20", + "url": "/v1/smartphones/honor-changwan-7a-dual-sim-td-lte-cn-aum-al20" + }, + { + "slug": "honor-changwan-7a-dual-sim-td-lte-cn-aum-tl20", + "name": "Honor Changwan 7A Dual SIM TD-LTE CN AUM-TL20", + "url": "/v1/smartphones/honor-changwan-7a-dual-sim-td-lte-cn-aum-tl20" + }, + { + "slug": "honor-changwan-7c-dual-sim-td-lte-cn-lnd-al30-honor-play-7c", + "name": "Honor Changwan 7C Dual SIM TD-LTE CN LND-AL30 / Honor Play 7C", + "url": "/v1/smartphones/honor-changwan-7c-dual-sim-td-lte-cn-lnd-al30-honor-play-7c" + }, + { + "slug": "honor-changwan-7c-dual-sim-td-lte-cn-lnd-al40-honor-play-7c", + "name": "Honor Changwan 7C Dual SIM TD-LTE CN LND-AL40 / Honor Play 7C", + "url": "/v1/smartphones/honor-changwan-7c-dual-sim-td-lte-cn-lnd-al40-honor-play-7c" + }, + { + "slug": "honor-changwan-7c-dual-sim-td-lte-cn-lnd-tl30", + "name": "Honor Changwan 7C Dual SIM TD-LTE CN LND-TL30", + "url": "/v1/smartphones/honor-changwan-7c-dual-sim-td-lte-cn-lnd-tl30" + }, + { + "slug": "honor-changwan-7c-dual-sim-td-lte-cn-lnd-tl40", + "name": "Honor Changwan 7C Dual SIM TD-LTE CN LND-TL40", + "url": "/v1/smartphones/honor-changwan-7c-dual-sim-td-lte-cn-lnd-tl40" + }, + { + "slug": "honor-changwan-8a", + "name": "Honor Changwan 8A", + "url": "/v1/smartphones/honor-changwan-8a" + }, + { + "slug": "honor-changwan-8a-dual-sim-td-lte-cn-32gb-jat-al00-honor-play-8a", + "name": "Honor Changwan 8A Dual SIM TD-LTE CN 32GB JAT-AL00 / Honor Play 8A", + "url": "/v1/smartphones/honor-changwan-8a-dual-sim-td-lte-cn-32gb-jat-al00-honor-play-8a" + }, + { + "slug": "honor-changwan-8a-dual-sim-td-lte-cn-32gb-jat-tl00-honor-glory-8a", + "name": "Honor Changwan 8A Dual SIM TD-LTE CN 32GB JAT-TL00 / Honor Glory 8A", + "url": "/v1/smartphones/honor-changwan-8a-dual-sim-td-lte-cn-32gb-jat-tl00-honor-glory-8a" + }, + { + "slug": "honor-changwan-8a-dual-sim-td-lte-cn-64gb-jat-al00-honor-play-8a", + "name": "Honor Changwan 8A Dual SIM TD-LTE CN 64GB JAT-AL00 / Honor Play 8A", + "url": "/v1/smartphones/honor-changwan-8a-dual-sim-td-lte-cn-64gb-jat-al00-honor-play-8a" + }, + { + "slug": "honor-changwan-8c-dual-sim-td-lte-cn-bkk-al00-64gb", + "name": "Honor Changwan 8C Dual SIM TD-LTE CN BKK-AL00 64GB", + "url": "/v1/smartphones/honor-changwan-8c-dual-sim-td-lte-cn-bkk-al00-64gb" + }, + { + "slug": "honor-changwan-8c-dual-sim-td-lte-cn-bkk-al10-32gb", + "name": "Honor Changwan 8C Dual SIM TD-LTE CN BKK-AL10 32GB", + "url": "/v1/smartphones/honor-changwan-8c-dual-sim-td-lte-cn-bkk-al10-32gb" + }, + { + "slug": "honor-changwan-8c-dual-sim-td-lte-cn-bkk-tl00-64gb", + "name": "Honor Changwan 8C Dual SIM TD-LTE CN BKK-TL00 64GB", + "url": "/v1/smartphones/honor-changwan-8c-dual-sim-td-lte-cn-bkk-tl00-64gb" + }, + { + "slug": "honor-magic-2-premium-edition-dual-sim-td-lte-cn-128gb-tny-al00", + "name": "Honor Magic 2 Premium Edition Dual SIM TD-LTE CN 128GB TNY-AL00", + "url": "/v1/smartphones/honor-magic-2-premium-edition-dual-sim-td-lte-cn-128gb-tny-al00" + }, + { + "slug": "honor-magic-2-premium-edition-dual-sim-td-lte-cn-256gb-tny-al00", + "name": "Honor Magic 2 Premium Edition Dual SIM TD-LTE CN 256GB TNY-AL00", + "url": "/v1/smartphones/honor-magic-2-premium-edition-dual-sim-td-lte-cn-256gb-tny-al00" + }, + { + "slug": "honor-magic-2-standard-edition-dual-sim-td-lte-cn-128gb-tny-al00", + "name": "Honor Magic 2 Standard Edition Dual SIM TD-LTE CN 128GB TNY-AL00", + "url": "/v1/smartphones/honor-magic-2-standard-edition-dual-sim-td-lte-cn-128gb-tny-al00" + }, + { + "slug": "honor-magic-2-standard-edition-dual-sim-td-lte-cn-128gb-tny-tl00", + "name": "Honor Magic 2 Standard Edition Dual SIM TD-LTE CN 128GB TNY-TL00", + "url": "/v1/smartphones/honor-magic-2-standard-edition-dual-sim-td-lte-cn-128gb-tny-tl00" + }, + { + "slug": "honor-magic-3", + "name": "Honor Magic 3", + "url": "/v1/smartphones/honor-magic-3" + }, + { + "slug": "honor-magic-3-5g-dual-sim-td-lte-cn-128gb-elz-an00", + "name": "Honor Magic 3 5G Dual SIM TD-LTE CN 128GB ELZ-AN00", + "url": "/v1/smartphones/honor-magic-3-5g-dual-sim-td-lte-cn-128gb-elz-an00" + }, + { + "slug": "honor-magic-3-5g-dual-sim-td-lte-cn-256gb-elz-an00", + "name": "Honor Magic 3 5G Dual SIM TD-LTE CN 256GB ELZ-AN00", + "url": "/v1/smartphones/honor-magic-3-5g-dual-sim-td-lte-cn-256gb-elz-an00" + }, + { + "slug": "honor-magic-3-5g-ultimate-edition-dual-sim-td-lte-cn-512gb-elz-an20", + "name": "Honor Magic 3 5G Ultimate Edition Dual SIM TD-LTE CN 512GB ELZ-AN20", + "url": "/v1/smartphones/honor-magic-3-5g-ultimate-edition-dual-sim-td-lte-cn-512gb-elz-an20" + }, + { + "slug": "honor-magic-3-pro", + "name": "Honor Magic 3 Pro", + "url": "/v1/smartphones/honor-magic-3-pro" + }, + { + "slug": "honor-magic-3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-elz-an10", + "name": "Honor Magic 3 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB ELZ-AN10", + "url": "/v1/smartphones/honor-magic-3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-elz-an10" + }, + { + "slug": "honor-magic-3-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-elz-an10", + "name": "Honor Magic 3 Pro 5G Premium Edition Dual SIM TD-LTE CN 512GB ELZ-AN10", + "url": "/v1/smartphones/honor-magic-3-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-elz-an10" + }, + { + "slug": "honor-magic-3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-elz-an10", + "name": "Honor Magic 3 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB ELZ-AN10", + "url": "/v1/smartphones/honor-magic-3-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-elz-an10" + }, + { + "slug": "honor-magic-4", + "name": "Honor Magic 4", + "url": "/v1/smartphones/honor-magic-4" + }, + { + "slug": "honor-honor-magic-4-pro", + "name": "Honor Magic 4 Pro", + "url": "/v1/smartphones/honor-honor-magic-4-pro" + }, + { + "slug": "honor-magic-5-lite", + "name": "Honor Magic 5 Lite", + "url": "/v1/smartphones/honor-magic-5-lite" + }, + { + "slug": "honor-magic-v", + "name": "Honor Magic V", + "url": "/v1/smartphones/honor-magic-v" + }, + { + "slug": "honor-magic-v3", + "name": "Honor Magic V3", + "url": "/v1/smartphones/honor-magic-v3" + }, + { + "slug": "honor-magic-vs", + "name": "Honor Magic Vs", + "url": "/v1/smartphones/honor-magic-vs" + }, + { + "slug": "honor-magic-8", + "name": "Honor Magic8", + "url": "/v1/smartphones/honor-magic-8" + }, + { + "slug": "honor-magic-8-pro", + "name": "Honor Magic8 Pro", + "url": "/v1/smartphones/honor-magic-8-pro" + }, + { + "slug": "honor-note-10-premium-edition-dual-sim-td-lte-cn-rvl-al09-128gb", + "name": "Honor Note 10 Premium Edition Dual SIM TD-LTE CN RVL-AL09 128GB", + "url": "/v1/smartphones/honor-note-10-premium-edition-dual-sim-td-lte-cn-rvl-al09-128gb" + }, + { + "slug": "honor-note-10-standard-edition-dual-sim-td-lte-cn-rvl-al09-128gb", + "name": "Honor Note 10 Standard Edition Dual SIM TD-LTE CN RVL-AL09 128GB", + "url": "/v1/smartphones/honor-note-10-standard-edition-dual-sim-td-lte-cn-rvl-al09-128gb" + }, + { + "slug": "honor-note-10-standard-edition-dual-sim-td-lte-cn-rvl-al09-64gb", + "name": "Honor Note 10 Standard Edition Dual SIM TD-LTE CN RVL-AL09 64GB", + "url": "/v1/smartphones/honor-note-10-standard-edition-dual-sim-td-lte-cn-rvl-al09-64gb" + }, + { + "slug": "honor-play-20-premium-edition", + "name": "Honor Play 20 Premium Edition", + "url": "/v1/smartphones/honor-play-20-premium-edition" + }, + { + "slug": "honor-play-20-premium-edition-dual-sim-td-lte-cn-128gb-koz-al00-changwan-20", + "name": "Honor Play 20 Premium Edition Dual SIM TD-LTE CN 128GB KOZ-AL00 / Changwan 20", + "url": "/v1/smartphones/honor-play-20-premium-edition-dual-sim-td-lte-cn-128gb-koz-al00-changwan-20" + }, + { + "slug": "honor-play-20-pro", + "name": "Honor Play 20 Pro", + "url": "/v1/smartphones/honor-play-20-pro" + }, + { + "slug": "honor-play-20-standard-edition", + "name": "Honor Play 20 Standard Edition", + "url": "/v1/smartphones/honor-play-20-standard-edition" + }, + { + "slug": "honor-play-20-standard-edition-dual-sim-td-lte-cn-128gb-koz-al00", + "name": "Honor Play 20 Standard Edition Dual SIM TD-LTE CN 128GB KOZ-AL00", + "url": "/v1/smartphones/honor-play-20-standard-edition-dual-sim-td-lte-cn-128gb-koz-al00" + }, + { + "slug": "honor-play-20-top-edition", + "name": "Honor Play 20 Top Edition", + "url": "/v1/smartphones/honor-play-20-top-edition" + }, + { + "slug": "honor-play-20-top-edition-dual-sim-td-lte-cn-128gb-koz-al00", + "name": "Honor Play 20 Top Edition Dual SIM TD-LTE CN 128GB KOZ-AL00", + "url": "/v1/smartphones/honor-play-20-top-edition-dual-sim-td-lte-cn-128gb-koz-al00" + }, + { + "slug": "honor-play-20a-premium-edition", + "name": "Honor Play 20a Premium Edition", + "url": "/v1/smartphones/honor-play-20a-premium-edition" + }, + { + "slug": "honor-play-3-premium-edition-dual-sim-td-lte-cn-128gb-ask-al00x", + "name": "Honor Play 3 Premium Edition Dual SIM TD-LTE CN 128GB ASK-AL00x", + "url": "/v1/smartphones/honor-play-3-premium-edition-dual-sim-td-lte-cn-128gb-ask-al00x" + }, + { + "slug": "honor-play-3-premium-edition-dual-sim-td-lte-cn-64gb-ask-al00x", + "name": "Honor Play 3 Premium Edition Dual SIM TD-LTE CN 64GB ASK-AL00x", + "url": "/v1/smartphones/honor-play-3-premium-edition-dual-sim-td-lte-cn-64gb-ask-al00x" + }, + { + "slug": "honor-play-3-standard-edition-dual-sim-td-lte-cn-128gb-ask-al00x", + "name": "Honor Play 3 Standard Edition Dual SIM TD-LTE CN 128GB ASK-AL00x", + "url": "/v1/smartphones/honor-play-3-standard-edition-dual-sim-td-lte-cn-128gb-ask-al00x" + }, + { + "slug": "honor-play-3-standard-edition-dual-sim-td-lte-cn-128gb-ask-tl00x", + "name": "Honor Play 3 Standard Edition Dual SIM TD-LTE CN 128GB ASK-TL00x", + "url": "/v1/smartphones/honor-play-3-standard-edition-dual-sim-td-lte-cn-128gb-ask-tl00x" + }, + { + "slug": "honor-play-3-standard-edition-dual-sim-td-lte-cn-64gb-ask-al00x", + "name": "Honor Play 3 Standard Edition Dual SIM TD-LTE CN 64GB ASK-AL00x", + "url": "/v1/smartphones/honor-play-3-standard-edition-dual-sim-td-lte-cn-64gb-ask-al00x" + }, + { + "slug": "honor-play-3-standard-edition-dual-sim-td-lte-cn-64gb-ask-tl00x", + "name": "Honor Play 3 Standard Edition Dual SIM TD-LTE CN 64GB ASK-TL00x", + "url": "/v1/smartphones/honor-play-3-standard-edition-dual-sim-td-lte-cn-64gb-ask-tl00x" + }, + { + "slug": "honor-play-30", + "name": "Honor Play 30", + "url": "/v1/smartphones/honor-play-30" + }, + { + "slug": "honor-play-30-plus", + "name": "Honor Play 30 Plus", + "url": "/v1/smartphones/honor-play-30-plus" + }, + { + "slug": "honor-play-3e", + "name": "Honor Play 3e", + "url": "/v1/smartphones/honor-play-3e" + }, + { + "slug": "honor-play-3e-dual-sim-td-lte-cn-32gb-ksa-al00", + "name": "Honor Play 3e Dual SIM TD-LTE CN 32GB KSA-AL00", + "url": "/v1/smartphones/honor-play-3e-dual-sim-td-lte-cn-32gb-ksa-al00" + }, + { + "slug": "honor-play-3e-dual-sim-td-lte-cn-32gb-ksa-tl00", + "name": "Honor Play 3e Dual SIM TD-LTE CN 32GB KSA-TL00", + "url": "/v1/smartphones/honor-play-3e-dual-sim-td-lte-cn-32gb-ksa-tl00" + }, + { + "slug": "honor-play-3e-dual-sim-td-lte-cn-64gb-ksa-al00", + "name": "Honor Play 3e Dual SIM TD-LTE CN 64GB KSA-AL00", + "url": "/v1/smartphones/honor-play-3e-dual-sim-td-lte-cn-64gb-ksa-al00" + }, + { + "slug": "honor-play-40-plus", + "name": "Honor Play 40 Plus", + "url": "/v1/smartphones/honor-play-40-plus" + }, + { + "slug": "honor-play-4t-dual-sim-td-lte-cn-128gb-aka-al10", + "name": "Honor Play 4T Dual SIM TD-LTE CN 128GB AKA-AL10", + "url": "/v1/smartphones/honor-play-4t-dual-sim-td-lte-cn-128gb-aka-al10" + }, + { + "slug": "honor-play-4t-dual-sim-td-lte-cn-64gb-aka-al10", + "name": "Honor Play 4T Dual SIM TD-LTE CN 64GB AKA-AL10", + "url": "/v1/smartphones/honor-play-4t-dual-sim-td-lte-cn-64gb-aka-al10" + }, + { + "slug": "honor-play-4t-pro-premium-edition-dual-sim-td-lte-cn-128gb-aqm-al10", + "name": "Honor Play 4T Pro Premium Edition Dual SIM TD-LTE CN 128GB AQM-AL10", + "url": "/v1/smartphones/honor-play-4t-pro-premium-edition-dual-sim-td-lte-cn-128gb-aqm-al10" + }, + { + "slug": "honor-play-4t-pro-standard-edition-dual-sim-td-lte-cn-128gb-aqm-al10", + "name": "Honor Play 4T Pro Standard Edition Dual SIM TD-LTE CN 128GB AQM-AL10", + "url": "/v1/smartphones/honor-play-4t-pro-standard-edition-dual-sim-td-lte-cn-128gb-aqm-al10" + }, + { + "slug": "honor-play-5t", + "name": "Honor Play 5T", + "url": "/v1/smartphones/honor-play-5t" + }, + { + "slug": "honor-play-5t-pro", + "name": "Honor Play 5T Pro", + "url": "/v1/smartphones/honor-play-5t-pro" + }, + { + "slug": "honor-play-5t-pro-dual-sim-td-lte-cn-128gb-chl-al00", + "name": "Honor Play 5T Pro Dual SIM TD-LTE CN 128GB CHL-AL00", + "url": "/v1/smartphones/honor-play-5t-pro-dual-sim-td-lte-cn-128gb-chl-al00" + }, + { + "slug": "honor-play-5t-youth-edition", + "name": "Honor Play 5T Youth Edition", + "url": "/v1/smartphones/honor-play-5t-youth-edition" + }, + { + "slug": "honor-play-5t-youth-edition-dual-sim-td-lte-cn-128gb-nza-al00", + "name": "Honor Play 5T Youth Edition Dual SIM TD-LTE CN 128GB NZA-AL00", + "url": "/v1/smartphones/honor-play-5t-youth-edition-dual-sim-td-lte-cn-128gb-nza-al00" + }, + { + "slug": "honor-play-6c", + "name": "Honor Play 6C", + "url": "/v1/smartphones/honor-play-6c" + }, + { + "slug": "honor-play-6t", + "name": "Honor Play 6T", + "url": "/v1/smartphones/honor-play-6t" + }, + { + "slug": "honor-play-6t-pro", + "name": "Honor Play 6T Pro", + "url": "/v1/smartphones/honor-play-6t-pro" + }, + { + "slug": "honor-play-8", + "name": "Honor Play 8", + "url": "/v1/smartphones/honor-play-8" + }, + { + "slug": "honor-play-8-dual-sim-td-lte-cn-32gb-ksa-al00", + "name": "Honor Play 8 Dual SIM TD-LTE CN 32GB KSA-AL00", + "url": "/v1/smartphones/honor-play-8-dual-sim-td-lte-cn-32gb-ksa-al00" + }, + { + "slug": "honor-play-8-dual-sim-td-lte-cn-32gb-ksa-tl00", + "name": "Honor Play 8 Dual SIM TD-LTE CN 32GB KSA-TL00", + "url": "/v1/smartphones/honor-play-8-dual-sim-td-lte-cn-32gb-ksa-tl00" + }, + { + "slug": "honor-play-9a", + "name": "Honor Play 9A", + "url": "/v1/smartphones/honor-play-9a" + }, + { + "slug": "honor-play-9a-dual-sim-td-lte-cn-128gb-moa-al00-honor-changwan-9a", + "name": "Honor Play 9A Dual SIM TD-LTE CN 128GB MOA-AL00 / Honor Changwan 9A", + "url": "/v1/smartphones/honor-play-9a-dual-sim-td-lte-cn-128gb-moa-al00-honor-changwan-9a" + }, + { + "slug": "honor-play-9a-dual-sim-td-lte-cn-64gb-moa-al00-honor-changwan-9a", + "name": "Honor Play 9A Dual SIM TD-LTE CN 64GB MOA-AL00 / Honor Changwan 9A", + "url": "/v1/smartphones/honor-play-9a-dual-sim-td-lte-cn-64gb-moa-al00-honor-changwan-9a" + }, + { + "slug": "honor-play-global-dual-sim-td-lte-cor-l29", + "name": "Honor Play Global Dual SIM TD-LTE COR-L29", + "url": "/v1/smartphones/honor-play-global-dual-sim-td-lte-cor-l29" + }, + { + "slug": "honor-play-premium-edition-dual-sim-td-lte-apac-cor-al10", + "name": "Honor Play Premium Edition Dual SIM TD-LTE APAC COR-AL10", + "url": "/v1/smartphones/honor-play-premium-edition-dual-sim-td-lte-apac-cor-al10" + }, + { + "slug": "honor-play-standard-edition-dual-sim-td-lte-apac-cor-al00", + "name": "Honor Play Standard Edition Dual SIM TD-LTE APAC COR-AL00", + "url": "/v1/smartphones/honor-play-standard-edition-dual-sim-td-lte-apac-cor-al00" + }, + { + "slug": "honor-play4", + "name": "Honor Play4", + "url": "/v1/smartphones/honor-play4" + }, + { + "slug": "honor-play4-5g-premium-edition-dual-sim-td-lte-cn-128gb-tnnh-an00", + "name": "Honor Play4 5G Premium Edition Dual SIM TD-LTE CN 128GB TNNH-AN00", + "url": "/v1/smartphones/honor-play4-5g-premium-edition-dual-sim-td-lte-cn-128gb-tnnh-an00" + }, + { + "slug": "honor-play4-5g-standard-edition-dual-sim-td-lte-cn-128gb-tnnh-an00", + "name": "Honor Play4 5G Standard Edition Dual SIM TD-LTE CN 128GB TNNH-AN00", + "url": "/v1/smartphones/honor-play4-5g-standard-edition-dual-sim-td-lte-cn-128gb-tnnh-an00" + }, + { + "slug": "honor-play5", + "name": "Honor Play5", + "url": "/v1/smartphones/honor-play5" + }, + { + "slug": "honor-play5-5g-dual-sim-td-lte-cn-128gb-hjc-an90", + "name": "Honor Play5 5G Dual SIM TD-LTE CN 128GB HJC-AN90", + "url": "/v1/smartphones/honor-play5-5g-dual-sim-td-lte-cn-128gb-hjc-an90" + }, + { + "slug": "honor-play5-5g-dual-sim-td-lte-cn-256gb-hjc-an90", + "name": "Honor Play5 5G Dual SIM TD-LTE CN 256GB HJC-AN90", + "url": "/v1/smartphones/honor-play5-5g-dual-sim-td-lte-cn-256gb-hjc-an90" + }, + { + "slug": "honor-v10-premium-edition-dual-sim-td-lte-cn-bkl-al20-128gb", + "name": "Honor V10 Premium Edition Dual SIM TD-LTE CN BKL-AL20 128GB", + "url": "/v1/smartphones/honor-v10-premium-edition-dual-sim-td-lte-cn-bkl-al20-128gb" + }, + { + "slug": "honor-v10-standard-edition-dual-sim-td-lte-cn-bkl-tl10-64gb", + "name": "Honor V10 Standard Edition Dual SIM TD-LTE CN BKL-TL10 64GB", + "url": "/v1/smartphones/honor-v10-standard-edition-dual-sim-td-lte-cn-bkl-tl10-64gb" + }, + { + "slug": "honor-v20-moschino-edition-dual-sim-td-lte-cn-pct-al10", + "name": "Honor V20 Moschino Edition Dual SIM TD-LTE CN PCT-AL10", + "url": "/v1/smartphones/honor-v20-moschino-edition-dual-sim-td-lte-cn-pct-al10" + }, + { + "slug": "honor-v20-premium-edition-dual-sim-td-lte-cn-pct-al10-view-20", + "name": "Honor V20 Premium Edition Dual SIM TD-LTE CN PCT-AL10 / View 20", + "url": "/v1/smartphones/honor-v20-premium-edition-dual-sim-td-lte-cn-pct-al10-view-20" + }, + { + "slug": "honor-v20-standard-edition-dual-sim-td-lte-cn-pct-al10-view-20", + "name": "Honor V20 Standard Edition Dual SIM TD-LTE CN PCT-AL10 / View 20", + "url": "/v1/smartphones/honor-v20-standard-edition-dual-sim-td-lte-cn-pct-al10-view-20" + }, + { + "slug": "honor-v20-standard-edition-dual-sim-td-lte-cn-pct-tl10", + "name": "Honor V20 Standard Edition Dual SIM TD-LTE CN PCT-TL10", + "url": "/v1/smartphones/honor-v20-standard-edition-dual-sim-td-lte-cn-pct-tl10" + }, + { + "slug": "honor-v40", + "name": "Honor V40", + "url": "/v1/smartphones/honor-v40" + }, + { + "slug": "honor-v40-5g-dual-sim-td-lte-cn-128gb-yok-an10", + "name": "Honor V40 5G Dual SIM TD-LTE CN 128GB YOK-AN10", + "url": "/v1/smartphones/honor-v40-5g-dual-sim-td-lte-cn-128gb-yok-an10" + }, + { + "slug": "honor-v40-5g-dual-sim-td-lte-cn-256gb-yok-an10", + "name": "Honor V40 5G Dual SIM TD-LTE CN 256GB YOK-AN10", + "url": "/v1/smartphones/honor-v40-5g-dual-sim-td-lte-cn-256gb-yok-an10" + }, + { + "slug": "honor-v40-lite", + "name": "Honor V40 Lite", + "url": "/v1/smartphones/honor-v40-lite" + }, + { + "slug": "honor-v40-lite-5g-dual-sim-td-lte-cn-128gb-ala-an70", + "name": "Honor V40 Lite 5G Dual SIM TD-LTE CN 128GB ALA-AN70", + "url": "/v1/smartphones/honor-v40-lite-5g-dual-sim-td-lte-cn-128gb-ala-an70" + }, + { + "slug": "honor-v40-lite-5g-dual-sim-td-lte-cn-256gb-ala-an70", + "name": "Honor V40 Lite 5G Dual SIM TD-LTE CN 256GB ALA-AN70", + "url": "/v1/smartphones/honor-v40-lite-5g-dual-sim-td-lte-cn-256gb-ala-an70" + }, + { + "slug": "honor-view-20-global-dual-sim-td-lte-pct-lx9-pct-l29", + "name": "Honor View 20 Global Dual SIM TD-LTE PCT-LX9 / PCT-L29", + "url": "/v1/smartphones/honor-view-20-global-dual-sim-td-lte-pct-lx9-pct-l29" + }, + { + "slug": "honor-view-20-moschino-edition-global-dual-sim-td-lte-pct-lx9-pct-l29", + "name": "Honor View 20 Moschino Edition Global Dual SIM TD-LTE PCT-LX9 / PCT-L29", + "url": "/v1/smartphones/honor-view-20-moschino-edition-global-dual-sim-td-lte-pct-lx9-pct-l29" + }, + { + "slug": "honor-x10-5g-premium-edition-dual-sim-td-lte-cn-128gb-tel-an00a", + "name": "Honor X10 5G Premium Edition Dual SIM TD-LTE CN 128GB TEL-AN00a", + "url": "/v1/smartphones/honor-x10-5g-premium-edition-dual-sim-td-lte-cn-128gb-tel-an00a" + }, + { + "slug": "honor-x10-5g-standard-edition-dual-sim-td-lte-cn-128gb-tel-an00", + "name": "Honor X10 5G Standard Edition Dual SIM TD-LTE CN 128GB TEL-AN00", + "url": "/v1/smartphones/honor-x10-5g-standard-edition-dual-sim-td-lte-cn-128gb-tel-an00" + }, + { + "slug": "honor-x10-5g-standard-edition-dual-sim-td-lte-cn-64gb-tel-an00", + "name": "Honor X10 5G Standard Edition Dual SIM TD-LTE CN 64GB TEL-AN00", + "url": "/v1/smartphones/honor-x10-5g-standard-edition-dual-sim-td-lte-cn-64gb-tel-an00" + }, + { + "slug": "honor-x10-5g-standard-edition-dual-sim-td-lte-cn-64gb-tel-tn00", + "name": "Honor X10 5G Standard Edition Dual SIM TD-LTE CN 64GB TEL-TN00", + "url": "/v1/smartphones/honor-x10-5g-standard-edition-dual-sim-td-lte-cn-64gb-tel-tn00" + }, + { + "slug": "honor-x20", + "name": "Honor X20", + "url": "/v1/smartphones/honor-x20" + }, + { + "slug": "honor-x20-5g-premium-edition-dual-sim-td-lte-cn-128gb-ntn-an20", + "name": "Honor X20 5G Premium Edition Dual SIM TD-LTE CN 128GB NTN-AN20", + "url": "/v1/smartphones/honor-x20-5g-premium-edition-dual-sim-td-lte-cn-128gb-ntn-an20" + }, + { + "slug": "honor-x20-5g-premium-edition-dual-sim-td-lte-cn-256gb-ntn-an20", + "name": "Honor X20 5G Premium Edition Dual SIM TD-LTE CN 256GB NTN-AN20", + "url": "/v1/smartphones/honor-x20-5g-premium-edition-dual-sim-td-lte-cn-256gb-ntn-an20" + }, + { + "slug": "honor-x20-5g-standard-edition-dual-sim-td-lte-cn-128gb-ntn-an20", + "name": "Honor X20 5G Standard Edition Dual SIM TD-LTE CN 128GB NTN-AN20", + "url": "/v1/smartphones/honor-x20-5g-standard-edition-dual-sim-td-lte-cn-128gb-ntn-an20" + }, + { + "slug": "honor-x20-se", + "name": "Honor X20 SE", + "url": "/v1/smartphones/honor-x20-se" + }, + { + "slug": "honor-x20-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-chl-an00", + "name": "Honor X20 SE 5G Premium Edition Dual SIM TD-LTE CN 128GB CHL-AN00", + "url": "/v1/smartphones/honor-x20-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-chl-an00" + }, + { + "slug": "honor-x20-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-chl-an00", + "name": "Honor X20 SE 5G Standard Edition Dual SIM TD-LTE CN 128GB CHL-AN00", + "url": "/v1/smartphones/honor-x20-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-chl-an00" + }, + { + "slug": "honor-x30", + "name": "Honor X30", + "url": "/v1/smartphones/honor-x30" + }, + { + "slug": "honor-x30-max", + "name": "Honor X30 Max", + "url": "/v1/smartphones/honor-x30-max" + }, + { + "slug": "honor-x30i", + "name": "Honor X30i", + "url": "/v1/smartphones/honor-x30i" + }, + { + "slug": "honor-x40", + "name": "Honor X40", + "url": "/v1/smartphones/honor-x40" + }, + { + "slug": "honor-x40i", + "name": "Honor X40i", + "url": "/v1/smartphones/honor-x40i" + }, + { + "slug": "honor-x5", + "name": "Honor X5", + "url": "/v1/smartphones/honor-x5" + }, + { + "slug": "honor-x6", + "name": "Honor X6", + "url": "/v1/smartphones/honor-x6" + }, + { + "slug": "honor-x6s", + "name": "Honor X6s", + "url": "/v1/smartphones/honor-x6s" + }, + { + "slug": "honor-x8", + "name": "Honor X8", + "url": "/v1/smartphones/honor-x8" + }, + { + "slug": "honor-x9", + "name": "Honor X9", + "url": "/v1/smartphones/honor-x9" + }, + { + "slug": "honor-x9a", + "name": "Honor X9a", + "url": "/v1/smartphones/honor-x9a" + }, + { + "slug": "hot-10", + "name": "Hot 10", + "url": "/v1/smartphones/hot-10" + }, + { + "slug": "hot-10-lite", + "name": "Hot 10 Lite", + "url": "/v1/smartphones/hot-10-lite" + }, + { + "slug": "hot-10-play", + "name": "Hot 10 Play", + "url": "/v1/smartphones/hot-10-play" + }, + { + "slug": "hot-10s", + "name": "Hot 10S", + "url": "/v1/smartphones/hot-10s" + }, + { + "slug": "hot-10s-nfc", + "name": "Hot 10S NFC", + "url": "/v1/smartphones/hot-10s-nfc" + }, + { + "slug": "hot-10t", + "name": "Hot 10T", + "url": "/v1/smartphones/hot-10t" + }, + { + "slug": "hot-11", + "name": "Hot 11", + "url": "/v1/smartphones/hot-11" + }, + { + "slug": "hot-11-play", + "name": "Hot 11 Play", + "url": "/v1/smartphones/hot-11-play" + }, + { + "slug": "hot-11s", + "name": "Hot 11s", + "url": "/v1/smartphones/hot-11s" + }, + { + "slug": "hot-12", + "name": "Hot 12", + "url": "/v1/smartphones/hot-12" + }, + { + "slug": "hot-12i", + "name": "Hot 12i", + "url": "/v1/smartphones/hot-12i" + }, + { + "slug": "hot-20", + "name": "Hot 20", + "url": "/v1/smartphones/hot-20" + }, + { + "slug": "hot-20-5g", + "name": "Hot 20 5G", + "url": "/v1/smartphones/hot-20-5g" + }, + { + "slug": "hot-20-play", + "name": "Hot 20 Play", + "url": "/v1/smartphones/hot-20-play" + }, + { + "slug": "hot-20i", + "name": "Hot 20i", + "url": "/v1/smartphones/hot-20i" + }, + { + "slug": "hot-20s", + "name": "Hot 20s", + "url": "/v1/smartphones/hot-20s" + }, + { + "slug": "hot-30", + "name": "Hot 30", + "url": "/v1/smartphones/hot-30" + }, + { + "slug": "hot-30-5g", + "name": "Hot 30 5G", + "url": "/v1/smartphones/hot-30-5g" + }, + { + "slug": "hot-30-play", + "name": "Hot 30 Play", + "url": "/v1/smartphones/hot-30-play" + }, + { + "slug": "hot-30i", + "name": "Hot 30i", + "url": "/v1/smartphones/hot-30i" + }, + { + "slug": "hot-30i-nfc", + "name": "Hot 30i NFC", + "url": "/v1/smartphones/hot-30i-nfc" + }, + { + "slug": "hot-40", + "name": "Hot 40", + "url": "/v1/smartphones/hot-40" + }, + { + "slug": "hot-40-pro", + "name": "Hot 40 Pro", + "url": "/v1/smartphones/hot-40-pro" + }, + { + "slug": "hot-40i", + "name": "Hot 40i", + "url": "/v1/smartphones/hot-40i" + }, + { + "slug": "hot-50", + "name": "Hot 50", + "url": "/v1/smartphones/hot-50" + }, + { + "slug": "hot-50-5g", + "name": "Hot 50 5G", + "url": "/v1/smartphones/hot-50-5g" + }, + { + "slug": "hot-50-pro", + "name": "Hot 50 Pro", + "url": "/v1/smartphones/hot-50-pro" + }, + { + "slug": "hot-50i", + "name": "Hot 50i", + "url": "/v1/smartphones/hot-50i" + }, + { + "slug": "hot-9", + "name": "Hot 9", + "url": "/v1/smartphones/hot-9" + }, + { + "slug": "hot-9-dual-sim-lte-emea-32gb-x655", + "name": "Hot 9 Dual SIM LTE EMEA 32GB X655", + "url": "/v1/smartphones/hot-9-dual-sim-lte-emea-32gb-x655" + }, + { + "slug": "hot-9-dual-sim-lte-emea-64gb-x655c", + "name": "Hot 9 Dual SIM LTE EMEA 64GB X655C", + "url": "/v1/smartphones/hot-9-dual-sim-lte-emea-64gb-x655c" + }, + { + "slug": "hot-9-dual-sim-td-lte-apac-64gb-x655d", + "name": "Hot 9 Dual SIM TD-LTE APAC 64GB X655D", + "url": "/v1/smartphones/hot-9-dual-sim-td-lte-apac-64gb-x655d" + }, + { + "slug": "hot-9-pro", + "name": "Hot 9 Pro", + "url": "/v1/smartphones/hot-9-pro" + }, + { + "slug": "hot-9-pro-dual-sim-td-lte-apac-64gb-x655f", + "name": "Hot 9 Pro Dual SIM TD-LTE APAC 64GB X655F", + "url": "/v1/smartphones/hot-9-pro-dual-sim-td-lte-apac-64gb-x655f" + }, + { + "slug": "huawei-mate-20-pro", + "name": "Huawei Mate 20 Pro", + "url": "/v1/smartphones/huawei-mate-20-pro" + }, + { + "slug": "huawei-mate-30-pro", + "name": "Huawei Mate 30 Pro", + "url": "/v1/smartphones/huawei-mate-30-pro" + }, + { + "slug": "huawei-mate-40-pro", + "name": "Huawei Mate 40 Pro", + "url": "/v1/smartphones/huawei-mate-40-pro" + }, + { + "slug": "huawei-mate-50-pro", + "name": "Huawei Mate 50 Pro", + "url": "/v1/smartphones/huawei-mate-50-pro" + }, + { + "slug": "huawei-mate-60-pro", + "name": "Huawei Mate 60 Pro", + "url": "/v1/smartphones/huawei-mate-60-pro" + }, + { + "slug": "huawei-mate-x3", + "name": "Huawei Mate X3", + "url": "/v1/smartphones/huawei-mate-x3" + }, + { + "slug": "huawei-mate-x5", + "name": "Huawei Mate X5", + "url": "/v1/smartphones/huawei-mate-x5" + }, + { + "slug": "huawei-mate-xt-ultimate", + "name": "Huawei Mate XT Ultimate", + "url": "/v1/smartphones/huawei-mate-xt-ultimate" + }, + { + "slug": "huawei-p20-pro", + "name": "Huawei P20 Pro", + "url": "/v1/smartphones/huawei-p20-pro" + }, + { + "slug": "huawei-p30-pro", + "name": "Huawei P30 Pro", + "url": "/v1/smartphones/huawei-p30-pro" + }, + { + "slug": "huawei-p40-pro", + "name": "Huawei P40 Pro", + "url": "/v1/smartphones/huawei-p40-pro" + }, + { + "slug": "huawei-p50-pro", + "name": "Huawei P50 Pro", + "url": "/v1/smartphones/huawei-p50-pro" + }, + { + "slug": "huawei-p60-pro", + "name": "Huawei P60 Pro", + "url": "/v1/smartphones/huawei-p60-pro" + }, + { + "slug": "huawei-pura-70-ultra", + "name": "Huawei Pura 70 Ultra", + "url": "/v1/smartphones/huawei-pura-70-ultra" + }, + { + "slug": "huawei-nova-12-pro", + "name": "Huawei nova 12 Pro", + "url": "/v1/smartphones/huawei-nova-12-pro" + }, + { + "slug": "illumina-lte-us-3310a-legacy-go", + "name": "Illumina LTE US 3310A / Legacy Go", + "url": "/v1/smartphones/illumina-lte-us-3310a-legacy-go" + }, + { + "slug": "infinity-h11-pro-dual-sim-td-lte", + "name": "Infinity H11 Pro Dual SIM TD-LTE", + "url": "/v1/smartphones/infinity-h11-pro-dual-sim-td-lte" + }, + { + "slug": "jianguo-3-dual-sim-td-lte-cn-128gb", + "name": "JianGuo 3 Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/jianguo-3-dual-sim-td-lte-cn-128gb" + }, + { + "slug": "jianguo-pro-2-premium-edition-dual-sim-td-lte-cn-256gb", + "name": "JianGuo Pro 2 Premium Edition Dual SIM TD-LTE CN 256GB", + "url": "/v1/smartphones/jianguo-pro-2-premium-edition-dual-sim-td-lte-cn-256gb" + }, + { + "slug": "jianguo-pro-2-standard-edition-dual-sim-td-lte-cn-64gb", + "name": "JianGuo Pro 2 Standard Edition Dual SIM TD-LTE CN 64GB", + "url": "/v1/smartphones/jianguo-pro-2-standard-edition-dual-sim-td-lte-cn-64gb" + }, + { + "slug": "jianguo-pro-2s-premium-edition-dual-sim-td-lte-cn-64gb", + "name": "JianGuo Pro 2s Premium Edition Dual SIM TD-LTE CN 64GB", + "url": "/v1/smartphones/jianguo-pro-2s-premium-edition-dual-sim-td-lte-cn-64gb" + }, + { + "slug": "jianguo-pro-2s-standard-edition-dual-sim-td-lte-cn-64gb", + "name": "JianGuo Pro 2s Standard Edition Dual SIM TD-LTE CN 64GB", + "url": "/v1/smartphones/jianguo-pro-2s-standard-edition-dual-sim-td-lte-cn-64gb" + }, + { + "slug": "jianguo-pro-3-standard-edition-dual-sim-td-lte-cn", + "name": "JianGuo Pro 3 Standard Edition Dual SIM TD-LTE CN", + "url": "/v1/smartphones/jianguo-pro-3-standard-edition-dual-sim-td-lte-cn" + }, + { + "slug": "jianguo-pro-3-standard-edition-dual-sim-td-lte-cn-128gb", + "name": "JianGuo Pro 3 Standard Edition Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/jianguo-pro-3-standard-edition-dual-sim-td-lte-cn-128gb" + }, + { + "slug": "jianguo-pro-3-standard-edition-dual-sim-td-lte-cn-256gb", + "name": "JianGuo Pro 3 Standard Edition Dual SIM TD-LTE CN 256GB", + "url": "/v1/smartphones/jianguo-pro-3-standard-edition-dual-sim-td-lte-cn-256gb" + }, + { + "slug": "jianguo-r1-premium-edition-dual-sim-td-lte-cn-128gb", + "name": "JianGuo R1 Premium Edition Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/jianguo-r1-premium-edition-dual-sim-td-lte-cn-128gb" + }, + { + "slug": "jianguo-r1-premium-edition-dual-sim-td-lte-cn-1tb", + "name": "JianGuo R1 Premium Edition Dual SIM TD-LTE CN 1TB", + "url": "/v1/smartphones/jianguo-r1-premium-edition-dual-sim-td-lte-cn-1tb" + }, + { + "slug": "jianguo-r1-premium-edition-dual-sim-td-lte-cn-512gb", + "name": "JianGuo R1 Premium Edition Dual SIM TD-LTE CN 512GB", + "url": "/v1/smartphones/jianguo-r1-premium-edition-dual-sim-td-lte-cn-512gb" + }, + { + "slug": "jianguo-r1-standard-edition-dual-sim-td-lte-cn-128gb", + "name": "JianGuo R1 Standard Edition Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/jianguo-r1-standard-edition-dual-sim-td-lte-cn-128gb" + }, + { + "slug": "jianguo-r1-standard-edition-dual-sim-td-lte-cn-64gb", + "name": "JianGuo R1 Standard Edition Dual SIM TD-LTE CN 64GB", + "url": "/v1/smartphones/jianguo-r1-standard-edition-dual-sim-td-lte-cn-64gb" + }, + { + "slug": "jianguo-r2-premium-edition-dual-sim-td-lte-cn-256gb", + "name": "JianGuo R2 Premium Edition Dual SIM TD-LTE CN 256GB", + "url": "/v1/smartphones/jianguo-r2-premium-edition-dual-sim-td-lte-cn-256gb" + }, + { + "slug": "jianguo-r2-standard-edition-dual-sim-td-lte-cn-128gb", + "name": "JianGuo R2 Standard Edition Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/jianguo-r2-standard-edition-dual-sim-td-lte-cn-128gb" + }, + { + "slug": "jianguo-r2-standard-edition-dual-sim-td-lte-cn-256gb", + "name": "JianGuo R2 Standard Edition Dual SIM TD-LTE CN 256GB", + "url": "/v1/smartphones/jianguo-r2-standard-edition-dual-sim-td-lte-cn-256gb" + }, + { + "slug": "jianguo-r2-top-edition-dual-sim-td-lte-cn-512gb", + "name": "JianGuo R2 Top Edition Dual SIM TD-LTE CN 512GB", + "url": "/v1/smartphones/jianguo-r2-top-edition-dual-sim-td-lte-cn-512gb" + }, + { + "slug": "jingang-4-pro-dual-sim-td-lte-cn-hlte311t", + "name": "Jingang 4 PRO Dual SIM TD-LTE CN HLTE311T", + "url": "/v1/smartphones/jingang-4-pro-dual-sim-td-lte-cn-hlte311t" + }, + { + "slug": "k-series-k50-2019-td-lte-jp-802lg", + "name": "K Series K50 2019 TD-LTE JP 802LG", + "url": "/v1/smartphones/k-series-k50-2019-td-lte-jp-802lg" + }, + { + "slug": "k1-dual-sim-td-lte-in-cph1893", + "name": "K1 Dual SIM TD-LTE IN CPH1893", + "url": "/v1/smartphones/k1-dual-sim-td-lte-in-cph1893" + }, + { + "slug": "k1-premium-edition-dual-sim-td-lte-cn-pbcm30", + "name": "K1 Premium Edition Dual SIM TD-LTE CN PBCM30", + "url": "/v1/smartphones/k1-premium-edition-dual-sim-td-lte-cn-pbcm30" + }, + { + "slug": "k1-standard-edition-dual-sim-td-lte-cn-pbcm30", + "name": "K1 Standard Edition Dual SIM TD-LTE CN PBCM30", + "url": "/v1/smartphones/k1-standard-edition-dual-sim-td-lte-cn-pbcm30" + }, + { + "slug": "k10", + "name": "K10", + "url": "/v1/smartphones/k10" + }, + { + "slug": "k10-2019", + "name": "K10 2019", + "url": "/v1/smartphones/k10-2019" + }, + { + "slug": "k10-2019-global-dual-sim-td-lte-64gb-xt2025-3", + "name": "K10 2019 Global Dual SIM TD-LTE 64GB XT2025-3", + "url": "/v1/smartphones/k10-2019-global-dual-sim-td-lte-64gb-xt2025-3" + }, + { + "slug": "k10-note", + "name": "K10 Note", + "url": "/v1/smartphones/k10-note" + }, + { + "slug": "k10-note-dual-sim-td-lte-in", + "name": "K10 Note Dual SIM TD-LTE IN", + "url": "/v1/smartphones/k10-note-dual-sim-td-lte-in" + }, + { + "slug": "k10-plus", + "name": "K10 Plus", + "url": "/v1/smartphones/k10-plus" + }, + { + "slug": "k10-plus-dual-sim-td-lte-in", + "name": "K10 Plus Dual SIM TD-LTE IN", + "url": "/v1/smartphones/k10-plus-dual-sim-td-lte-in" + }, + { + "slug": "k10-pro", + "name": "K10 Pro", + "url": "/v1/smartphones/k10-pro" + }, + { + "slug": "k10x", + "name": "K10x", + "url": "/v1/smartphones/k10x" + }, + { + "slug": "k11-2020", + "name": "K11 2020", + "url": "/v1/smartphones/k11-2020" + }, + { + "slug": "k11-2020-dual-sim-td-lte-apac-32gb-xt2053-3", + "name": "K11 2020 Dual SIM TD-LTE APAC 32GB XT2053-3", + "url": "/v1/smartphones/k11-2020-dual-sim-td-lte-apac-32gb-xt2053-3" + }, + { + "slug": "k11-power", + "name": "K11 Power", + "url": "/v1/smartphones/k11-power" + }, + { + "slug": "k11-power-global-dual-sim-td-lte-64-gb-xt2055-3", + "name": "K11 Power Global Dual SIM TD-LTE 64 GB XT2055-3", + "url": "/v1/smartphones/k11-power-global-dual-sim-td-lte-64-gb-xt2055-3" + }, + { + "slug": "k11x", + "name": "K11x", + "url": "/v1/smartphones/k11x" + }, + { + "slug": "k12-2020", + "name": "K12 2020", + "url": "/v1/smartphones/k12-2020" + }, + { + "slug": "k12-2020-global-dual-sim-td-lte-32gb-xt2095-4", + "name": "K12 2020 Global Dual SIM TD-LTE 32GB XT2095-4", + "url": "/v1/smartphones/k12-2020-global-dual-sim-td-lte-32gb-xt2095-4" + }, + { + "slug": "k12-note-2020-global-dual-sim-td-lte-128gb-xt2083-4", + "name": "K12 Note 2020 Global Dual SIM TD-LTE 128GB XT2083-4", + "url": "/v1/smartphones/k12-note-2020-global-dual-sim-td-lte-128gb-xt2083-4" + }, + { + "slug": "k12-plus", + "name": "K12 Plus", + "url": "/v1/smartphones/k12-plus" + }, + { + "slug": "k12-pro-2020-dual-sim-td-lte-cn-64gb-xt2091-7", + "name": "K12 Pro 2020 Dual SIM TD-LTE CN 64GB XT2091-7", + "url": "/v1/smartphones/k12-pro-2020-dual-sim-td-lte-cn-64gb-xt2091-7" + }, + { + "slug": "k12-pro-2020-global-dual-sim-td-lte-64gb-xt2091-8", + "name": "K12 Pro 2020 Global Dual SIM TD-LTE 64GB XT2091-8", + "url": "/v1/smartphones/k12-pro-2020-global-dual-sim-td-lte-64gb-xt2091-8" + }, + { + "slug": "k13-note", + "name": "K13 Note", + "url": "/v1/smartphones/k13-note" + }, + { + "slug": "k13-note-2021-global-dual-sim-td-lte-128gb-xt2127-3", + "name": "K13 Note 2021 Global Dual SIM TD-LTE 128GB XT2127-3", + "url": "/v1/smartphones/k13-note-2021-global-dual-sim-td-lte-128gb-xt2127-3" + }, + { + "slug": "k13-pro", + "name": "K13 Pro", + "url": "/v1/smartphones/k13-pro" + }, + { + "slug": "k13-pro-2021-global-dual-sim-td-lte-128gb-xt2129-3", + "name": "K13 Pro 2021 Global Dual SIM TD-LTE 128GB XT2129-3", + "url": "/v1/smartphones/k13-pro-2021-global-dual-sim-td-lte-128gb-xt2129-3" + }, + { + "slug": "k14-2021", + "name": "K14 2021", + "url": "/v1/smartphones/k14-2021" + }, + { + "slug": "k14-2021-global-dual-sim-td-lte-32gb-xt2155-4", + "name": "K14 2021 Global Dual SIM TD-LTE 32GB XT2155-4", + "url": "/v1/smartphones/k14-2021-global-dual-sim-td-lte-32gb-xt2155-4" + }, + { + "slug": "k14-plus-2021", + "name": "K14 Plus 2021", + "url": "/v1/smartphones/k14-plus-2021" + }, + { + "slug": "k14-plus-2021-global-dual-sim-td-lte-64gb-xt2159-5-xt2159-8", + "name": "K14 Plus 2021 Global Dual SIM TD-LTE 64GB XT2159-5 / XT2159-8", + "url": "/v1/smartphones/k14-plus-2021-global-dual-sim-td-lte-64gb-xt2159-5-xt2159-8" + }, + { + "slug": "k15-plus-2022", + "name": "K15 Plus 2022", + "url": "/v1/smartphones/k15-plus-2022" + }, + { + "slug": "k3-dual-sim-td-lte-apac-128gb-cph1955", + "name": "K3 Dual SIM TD-LTE APAC 128GB CPH1955", + "url": "/v1/smartphones/k3-dual-sim-td-lte-apac-128gb-cph1955" + }, + { + "slug": "k3-dual-sim-td-lte-apac-64gb-cph1955", + "name": "K3 Dual SIM TD-LTE APAC 64GB CPH1955", + "url": "/v1/smartphones/k3-dual-sim-td-lte-apac-64gb-cph1955" + }, + { + "slug": "k3-premium-edition-dual-sim-td-lte-cn-128gb-pcgm00", + "name": "K3 Premium Edition Dual SIM TD-LTE CN 128GB PCGM00", + "url": "/v1/smartphones/k3-premium-edition-dual-sim-td-lte-cn-128gb-pcgm00" + }, + { + "slug": "k3-premium-edition-dual-sim-td-lte-cn-128gb-pcgt00", + "name": "K3 Premium Edition Dual SIM TD-LTE CN 128GB PCGT00", + "url": "/v1/smartphones/k3-premium-edition-dual-sim-td-lte-cn-128gb-pcgt00" + }, + { + "slug": "k3-premium-edition-dual-sim-td-lte-cn-256gb-pcgm00", + "name": "K3 Premium Edition Dual SIM TD-LTE CN 256GB PCGM00", + "url": "/v1/smartphones/k3-premium-edition-dual-sim-td-lte-cn-256gb-pcgm00" + }, + { + "slug": "k3-standard-edition-dual-sim-td-lte-cn-64gb-pcgm00", + "name": "K3 Standard Edition Dual SIM TD-LTE CN 64GB PCGM00", + "url": "/v1/smartphones/k3-standard-edition-dual-sim-td-lte-cn-64gb-pcgm00" + }, + { + "slug": "k5-2019-premium-edition", + "name": "K5 2019 Premium Edition", + "url": "/v1/smartphones/k5-2019-premium-edition" + }, + { + "slug": "k5-2019-premium-edition-dual-sim-td-lte-cn-128gb-pcnm00", + "name": "K5 2019 Premium Edition Dual SIM TD-LTE CN 128GB PCNM00", + "url": "/v1/smartphones/k5-2019-premium-edition-dual-sim-td-lte-cn-128gb-pcnm00" + }, + { + "slug": "k5-2019-premium-edition-dual-sim-td-lte-cn-256gb-pcnm00", + "name": "K5 2019 Premium Edition Dual SIM TD-LTE CN 256GB PCNM00", + "url": "/v1/smartphones/k5-2019-premium-edition-dual-sim-td-lte-cn-256gb-pcnm00" + }, + { + "slug": "k5-2019-standard-edition", + "name": "K5 2019 Standard Edition", + "url": "/v1/smartphones/k5-2019-standard-edition" + }, + { + "slug": "k5-2019-standard-edition-dual-sim-td-lte-cn-128gb-pcnm00", + "name": "K5 2019 Standard Edition Dual SIM TD-LTE CN 128GB PCNM00", + "url": "/v1/smartphones/k5-2019-standard-edition-dual-sim-td-lte-cn-128gb-pcnm00" + }, + { + "slug": "k5-note-2018-dual-sim-td-lte-cn-32gb", + "name": "K5 Note 2018 Dual SIM TD-LTE CN 32GB", + "url": "/v1/smartphones/k5-note-2018-dual-sim-td-lte-cn-32gb" + }, + { + "slug": "k5-note-2018-dual-sim-td-lte-cn-64gb", + "name": "K5 Note 2018 Dual SIM TD-LTE CN 64GB", + "url": "/v1/smartphones/k5-note-2018-dual-sim-td-lte-cn-64gb" + }, + { + "slug": "k5-play-dual-sim-td-lte-cn-16gb-l38021", + "name": "K5 Play Dual SIM TD-LTE CN 16GB L38021", + "url": "/v1/smartphones/k5-play-dual-sim-td-lte-cn-16gb-l38021" + }, + { + "slug": "k5-play-dual-sim-td-lte-cn-32gb-l38021", + "name": "K5 Play Dual SIM TD-LTE CN 32GB L38021", + "url": "/v1/smartphones/k5-play-dual-sim-td-lte-cn-32gb-l38021" + }, + { + "slug": "k5-pro-premium-edition-td-lte-dual-sim-128gb-paed0001cn", + "name": "K5 Pro Premium Edition TD-LTE Dual SIM 128GB PAED0001CN", + "url": "/v1/smartphones/k5-pro-premium-edition-td-lte-dual-sim-128gb-paed0001cn" + }, + { + "slug": "k5-pro-premium-edition-td-lte-dual-sim-64gb-paed0004cn", + "name": "K5 Pro Premium Edition TD-LTE Dual SIM 64GB PAED0004CN", + "url": "/v1/smartphones/k5-pro-premium-edition-td-lte-dual-sim-64gb-paed0004cn" + }, + { + "slug": "k5-pro-standard-edition-td-lte-dual-sim-64gb-paed0005cn", + "name": "K5 Pro Standard Edition TD-LTE Dual SIM 64GB PAED0005CN", + "url": "/v1/smartphones/k5-pro-standard-edition-td-lte-dual-sim-64gb-paed0005cn" + }, + { + "slug": "k51s", + "name": "K51S", + "url": "/v1/smartphones/k51s" + }, + { + "slug": "k52", + "name": "K52", + "url": "/v1/smartphones/k52" + }, + { + "slug": "k5s", + "name": "K5s", + "url": "/v1/smartphones/k5s" + }, + { + "slug": "k5s-td-lte-dual-sim-padl0006cn", + "name": "K5s TD-LTE Dual SIM PADL0006CN", + "url": "/v1/smartphones/k5s-td-lte-dual-sim-padl0006cn" + }, + { + "slug": "k6-enjoy", + "name": "K6 Enjoy", + "url": "/v1/smartphones/k6-enjoy" + }, + { + "slug": "k6-enjoy-dual-sim-td-lte-cn-128gb-l38082", + "name": "K6 Enjoy Dual SIM TD-LTE CN 128GB L38082", + "url": "/v1/smartphones/k6-enjoy-dual-sim-td-lte-cn-128gb-l38082" + }, + { + "slug": "k6-enjoy-dual-sim-td-lte-cn-64gb-l38082", + "name": "K6 Enjoy Dual SIM TD-LTE CN 64GB L38082", + "url": "/v1/smartphones/k6-enjoy-dual-sim-td-lte-cn-64gb-l38082" + }, + { + "slug": "k61", + "name": "K61", + "url": "/v1/smartphones/k61" + }, + { + "slug": "k62", + "name": "K62", + "url": "/v1/smartphones/k62" + }, + { + "slug": "k7-2020", + "name": "K7 2020", + "url": "/v1/smartphones/k7-2020" + }, + { + "slug": "k7-2020-5g-dual-sim-td-lte-cn-256gb-pcrt01", + "name": "K7 2020 5G Dual SIM TD-LTE CN 256GB PCRT01", + "url": "/v1/smartphones/k7-2020-5g-dual-sim-td-lte-cn-256gb-pcrt01" + }, + { + "slug": "k7-2020-dual-sim-td-lte-cn-128gb-pcrt01", + "name": "K7 2020 Dual SIM TD-LTE CN 128GB PCRT01", + "url": "/v1/smartphones/k7-2020-dual-sim-td-lte-cn-128gb-pcrt01" + }, + { + "slug": "k7-5g", + "name": "K7 5G", + "url": "/v1/smartphones/k7-5g" + }, + { + "slug": "k71", + "name": "K71", + "url": "/v1/smartphones/k71" + }, + { + "slug": "k7x", + "name": "K7x", + "url": "/v1/smartphones/k7x" + }, + { + "slug": "k7x-2020", + "name": "K7x 2020", + "url": "/v1/smartphones/k7x-2020" + }, + { + "slug": "k7x-2020-5g-dual-sim-td-lte-cn-128gb-perm00", + "name": "K7x 2020 5G Dual SIM TD-LTE CN 128GB PERM00", + "url": "/v1/smartphones/k7x-2020-5g-dual-sim-td-lte-cn-128gb-perm00" + }, + { + "slug": "k9-2021", + "name": "K9 2021", + "url": "/v1/smartphones/k9-2021" + }, + { + "slug": "k9-5g", + "name": "K9 5G", + "url": "/v1/smartphones/k9-5g" + }, + { + "slug": "k9-pro", + "name": "K9 Pro", + "url": "/v1/smartphones/k9-pro" + }, + { + "slug": "k9-pro-5g", + "name": "K9 Pro 5G", + "url": "/v1/smartphones/k9-pro-5g" + }, + { + "slug": "k9-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-peym00", + "name": "K9 Pro 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB PEYM00", + "url": "/v1/smartphones/k9-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-peym00" + }, + { + "slug": "k9-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-peym00", + "name": "K9 Pro 5G 2021 Standard Edition Dual SIM TD-LTE CN 128GB PEYM00", + "url": "/v1/smartphones/k9-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-peym00" + }, + { + "slug": "k92-5g", + "name": "K92 5G", + "url": "/v1/smartphones/k92-5g" + }, + { + "slug": "k9s", + "name": "K9s", + "url": "/v1/smartphones/k9s" + }, + { + "slug": "k9x", + "name": "K9x", + "url": "/v1/smartphones/k9x" + }, + { + "slug": "k9x-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-pgcm10", + "name": "K9x 5G 2021 Premium Edition Dual SIM TD-LTE CN 128GB PGCM10", + "url": "/v1/smartphones/k9x-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-pgcm10" + }, + { + "slug": "k9x-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pgcm10", + "name": "K9x 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB PGCM10", + "url": "/v1/smartphones/k9x-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pgcm10" + }, + { + "slug": "k9x-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-pgcm10", + "name": "K9x 5G 2021 Standard Edition Dual SIM TD-LTE CN 128GB PGCM10", + "url": "/v1/smartphones/k9x-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-pgcm10" + }, + { + "slug": "l-03k-style-lte-jp", + "name": "L-03K Style LTE JP", + "url": "/v1/smartphones/l-03k-style-lte-jp" + }, + { + "slug": "l157bl-rebel-3-lte", + "name": "L157BL Rebel 3 LTE", + "url": "/v1/smartphones/l157bl-rebel-3-lte" + }, + { + "slug": "l158vl-rebel-3-lte", + "name": "L158VL Rebel 3 LTE", + "url": "/v1/smartphones/l158vl-rebel-3-lte" + }, + { + "slug": "l163bl-fiesta-2-lte-a", + "name": "L163BL Fiesta 2 LTE-A", + "url": "/v1/smartphones/l163bl-fiesta-2-lte-a" + }, + { + "slug": "l164vl-fiesta-2-lte-a", + "name": "L164VL Fiesta 2 LTE-A", + "url": "/v1/smartphones/l164vl-fiesta-2-lte-a" + }, + { + "slug": "l322dl-journey-lte-us", + "name": "L322DL Journey LTE US", + "url": "/v1/smartphones/l322dl-journey-lte-us" + }, + { + "slug": "l413dl-premier-pro-lte", + "name": "L413DL Premier Pro LTE", + "url": "/v1/smartphones/l413dl-premier-pro-lte" + }, + { + "slug": "l423dl-solo-lte-a-us", + "name": "L423DL Solo LTE-A US", + "url": "/v1/smartphones/l423dl-solo-lte-a-us" + }, + { + "slug": "l713dl-stylo-4-lte-us", + "name": "L713DL Stylo 4 LTE US", + "url": "/v1/smartphones/l713dl-stylo-4-lte-us" + }, + { + "slug": "l722dl-stylo-5-lte-a-us-q720dl", + "name": "L722DL Stylo 5 LTE-A US Q720DL", + "url": "/v1/smartphones/l722dl-stylo-5-lte-a-us-q720dl" + }, + { + "slug": "lg-g2", + "name": "LG G2", + "url": "/v1/smartphones/lg-g2" + }, + { + "slug": "lg-g3", + "name": "LG G3", + "url": "/v1/smartphones/lg-g3" + }, + { + "slug": "lg-g4", + "name": "LG G4", + "url": "/v1/smartphones/lg-g4" + }, + { + "slug": "lg-g5", + "name": "LG G5", + "url": "/v1/smartphones/lg-g5" + }, + { + "slug": "lg-g6", + "name": "LG G6", + "url": "/v1/smartphones/lg-g6" + }, + { + "slug": "lg-g7-thinq", + "name": "LG G7 ThinQ", + "url": "/v1/smartphones/lg-g7-thinq" + }, + { + "slug": "lg-g8-thinq", + "name": "LG G8 ThinQ", + "url": "/v1/smartphones/lg-g8-thinq" + }, + { + "slug": "lg-v20", + "name": "LG V20", + "url": "/v1/smartphones/lg-v20" + }, + { + "slug": "lg-v30", + "name": "LG V30", + "url": "/v1/smartphones/lg-v30" + }, + { + "slug": "lg-v40-thinq", + "name": "LG V40 ThinQ", + "url": "/v1/smartphones/lg-v40-thinq" + }, + { + "slug": "lg-v50-thinq", + "name": "LG V50 ThinQ 5G", + "url": "/v1/smartphones/lg-v50-thinq" + }, + { + "slug": "lg-v60-thinq", + "name": "LG V60 ThinQ 5G", + "url": "/v1/smartphones/lg-v60-thinq" + }, + { + "slug": "lgl355dl-k-series-k31-rebel-2020-td-lte-us-l355dl-a", + "name": "LGL355DL K Series K31 Rebel 2020 TD-LTE US L355DL-A", + "url": "/v1/smartphones/lgl355dl-k-series-k31-rebel-2020-td-lte-us-l355dl-a" + }, + { + "slug": "lgl455dl-premier-pro-plus-2020-td-lte-us-l455dl", + "name": "LGL455DL Premier Pro Plus 2020 TD-LTE US L455DL", + "url": "/v1/smartphones/lgl455dl-premier-pro-plus-2020-td-lte-us-l455dl" + }, + { + "slug": "lgl555dl-reflect-2020-td-lte-us-l555dl", + "name": "LGL555DL Reflect 2020 TD-LTE US L555DL", + "url": "/v1/smartphones/lgl555dl-reflect-2020-td-lte-us-l555dl" + }, + { + "slug": "lmf100emw-wing-5g-global-dual-sim-td-lte-128gb-f100emw", + "name": "LMF100EMW Wing 5G Global Dual SIM TD-LTE 128GB F100EMW", + "url": "/v1/smartphones/lmf100emw-wing-5g-global-dual-sim-td-lte-128gb-f100emw" + }, + { + "slug": "lmf100n-wing-5g-uw-td-lte-kr-128gb-f100n", + "name": "LMF100N Wing 5G UW TD-LTE KR 128GB F100N", + "url": "/v1/smartphones/lmf100n-wing-5g-uw-td-lte-kr-128gb-f100n" + }, + { + "slug": "lmf100tmk-wing-5g-td-lte-us-f100tmk", + "name": "LMF100TMK Wing 5G TD-LTE US F100TMK", + "url": "/v1/smartphones/lmf100tmk-wing-5g-td-lte-us-f100tmk" + }, + { + "slug": "lmf100vm1-wing-5g-td-lte-us-f100vm1", + "name": "LMF100VM1 Wing 5G TD-LTE US F100VM1", + "url": "/v1/smartphones/lmf100vm1-wing-5g-td-lte-us-f100vm1" + }, + { + "slug": "lmf100vmy-wing-5g-uw-td-lte-us-f100vmy", + "name": "LMF100VMY Wing 5G UW TD-LTE US F100VMY", + "url": "/v1/smartphones/lmf100vmy-wing-5g-uw-td-lte-us-f100vmy" + }, + { + "slug": "lmg710awmh-g7-thinq-lte-a-latam", + "name": "LMG710AWMH G7 ThinQ LTE-A LATAM", + "url": "/v1/smartphones/lmg710awmh-g7-thinq-lte-a-latam" + }, + { + "slug": "lmg710eaw-g7-thinq-dual-sim-td-lte-apac", + "name": "LMG710EAW G7+ ThinQ Dual SIM TD-LTE APAC", + "url": "/v1/smartphones/lmg710eaw-g7-thinq-dual-sim-td-lte-apac" + }, + { + "slug": "lmg710em-g7-thinq-td-lte-emea-latam", + "name": "LMG710EM G7 ThinQ TD-LTE EMEA LATAM", + "url": "/v1/smartphones/lmg710em-g7-thinq-td-lte-emea-latam" + }, + { + "slug": "lmg710emw-g7-thinq-dual-sim-td-lte-apac-latam", + "name": "LMG710EMW G7 ThinQ Dual SIM TD-LTE APAC LATAM", + "url": "/v1/smartphones/lmg710emw-g7-thinq-dual-sim-td-lte-apac-latam" + }, + { + "slug": "lmg710pm-g7-thinq-td-lte-us", + "name": "LMG710PM G7 ThinQ TD-LTE US", + "url": "/v1/smartphones/lmg710pm-g7-thinq-td-lte-us" + }, + { + "slug": "lmg710tm-g7-thinq-td-lte-us", + "name": "LMG710TM G7 ThinQ TD-LTE US", + "url": "/v1/smartphones/lmg710tm-g7-thinq-td-lte-us" + }, + { + "slug": "lmg710ulm-g7-thinq-td-lte-na", + "name": "LMG710ULM G7 ThinQ TD-LTE NA", + "url": "/v1/smartphones/lmg710ulm-g7-thinq-td-lte-na" + }, + { + "slug": "lmg710vm-g7-thinq-xlte-us-g710vmp", + "name": "LMG710VM G7 ThinQ XLTE US / G710VMP", + "url": "/v1/smartphones/lmg710vm-g7-thinq-xlte-us-g710vmp" + }, + { + "slug": "lmg710vmx-g7-thinq-lte-a-us-g710vmx", + "name": "LMG710VMX G7 ThinQ LTE-A US G710VMX", + "url": "/v1/smartphones/lmg710vmx-g7-thinq-lte-a-us-g710vmx" + }, + { + "slug": "lmg810ea-g8s-thinq-global-td-lte", + "name": "LMG810EA G8S ThinQ Global TD-LTE", + "url": "/v1/smartphones/lmg810ea-g8s-thinq-global-td-lte" + }, + { + "slug": "lmg810eaw-g8s-thinq-global-dual-sim-td-lte", + "name": "LMG810EAW G8S ThinQ Global Dual SIM TD-LTE", + "url": "/v1/smartphones/lmg810eaw-g8s-thinq-global-dual-sim-td-lte" + }, + { + "slug": "lmg820n-g8-thinq-td-lte-kr-g820n", + "name": "LMG820N G8 ThinQ TD-LTE KR G820N", + "url": "/v1/smartphones/lmg820n-g8-thinq-td-lte-kr-g820n" + }, + { + "slug": "lmg820qm5-g8-thinq-td-lte-us-g820qm-lmg820qm7d", + "name": "LMG820QM5 G8 ThinQ TD-LTE US G820QM / LMG820QM7D", + "url": "/v1/smartphones/lmg820qm5-g8-thinq-td-lte-us-g820qm-lmg820qm7d" + }, + { + "slug": "lmg820qm7-g8-thinq-td-lte-us-g820qm-lmg820qm8", + "name": "LMG820QM7 G8 ThinQ TD-LTE US G820QM / LMG820QM8", + "url": "/v1/smartphones/lmg820qm7-g8-thinq-td-lte-us-g820qm-lmg820qm8" + }, + { + "slug": "lmg820tmb-g8-thinq-td-lte-us-g820tm", + "name": "LMG820TMB G8 ThinQ TD-LTE US G820TM", + "url": "/v1/smartphones/lmg820tmb-g8-thinq-td-lte-us-g820tm" + }, + { + "slug": "lmg820um0-g8-thinq-td-lte-us-g820um", + "name": "LMG820UM0 G8 ThinQ TD-LTE US G820UM", + "url": "/v1/smartphones/lmg820um0-g8-thinq-td-lte-us-g820um" + }, + { + "slug": "lmg820um1-g8-thinq-td-lte-us-g820um", + "name": "LMG820UM1 G8 ThinQ TD-LTE US G820UM", + "url": "/v1/smartphones/lmg820um1-g8-thinq-td-lte-us-g820um" + }, + { + "slug": "lmg820um2-g8-thinq-td-lte-na-g820um", + "name": "LMG820UM2 G8 ThinQ TD-LTE NA G820UM", + "url": "/v1/smartphones/lmg820um2-g8-thinq-td-lte-na-g820um" + }, + { + "slug": "lmg820um3-g8-thinq-td-lte-us-g820um", + "name": "LMG820UM3 G8 ThinQ TD-LTE US G820UM", + "url": "/v1/smartphones/lmg820um3-g8-thinq-td-lte-us-g820um" + }, + { + "slug": "lmg820umb-g8-thinq-lte-a-us-g820um", + "name": "LMG820UMB G8 ThinQ LTE-A US G820UM", + "url": "/v1/smartphones/lmg820umb-g8-thinq-lte-a-us-g820um" + }, + { + "slug": "lmg850em-g8x-thinq-global-td-lte-g850em", + "name": "LMG850EM G8X ThinQ Global TD-LTE G850EM", + "url": "/v1/smartphones/lmg850em-g8x-thinq-global-td-lte-g850em" + }, + { + "slug": "lmg850emw-g8x-thinq-global-dual-sim-td-lte-g850emw", + "name": "LMG850EMW G8X ThinQ Global Dual SIM TD-LTE G850EMW", + "url": "/v1/smartphones/lmg850emw-g8x-thinq-global-dual-sim-td-lte-g850emw" + }, + { + "slug": "lmg850qm-g8x-thinq-td-lte-us-g850qm7x", + "name": "LMG850QM G8X ThinQ TD-LTE US G850QM7X", + "url": "/v1/smartphones/lmg850qm-g8x-thinq-td-lte-us-g850qm7x" + }, + { + "slug": "lmg850um-g8x-thinq-td-lte-na-g850um", + "name": "LMG850UM G8X ThinQ TD-LTE NA G850UM", + "url": "/v1/smartphones/lmg850um-g8x-thinq-td-lte-na-g850um" + }, + { + "slug": "lmg850um1-g8x-thinq-td-lte-us-g850um1", + "name": "LMG850UM1 G8X ThinQ TD-LTE US G850UM1", + "url": "/v1/smartphones/lmg850um1-g8x-thinq-td-lte-us-g850um1" + }, + { + "slug": "lmg850um9-g8x-thinq-td-lte-us-g850um9", + "name": "LMG850UM9 G8X ThinQ TD-LTE US G850UM9", + "url": "/v1/smartphones/lmg850um9-g8x-thinq-td-lte-us-g850um9" + }, + { + "slug": "lmg900em-velvet-5g-global-td-lte-g900em", + "name": "LMG900EM Velvet 5G Global TD-LTE G900EM", + "url": "/v1/smartphones/lmg900em-velvet-5g-global-td-lte-g900em" + }, + { + "slug": "lmg900emw-velvet-5g-global-dual-sim-td-lte-g900emw", + "name": "LMG900EMW Velvet 5G Global Dual SIM TD-LTE G900EMW", + "url": "/v1/smartphones/lmg900emw-velvet-5g-global-dual-sim-td-lte-g900emw" + }, + { + "slug": "lmg900n-velvet-5g-td-lte-kr-g900n", + "name": "LMG900N Velvet 5G TD-LTE KR G900N", + "url": "/v1/smartphones/lmg900n-velvet-5g-td-lte-kr-g900n" + }, + { + "slug": "lmg900qm-velvet-5g-td-lte-us-g900qm", + "name": "LMG900QM Velvet 5G TD-LTE US G900QM", + "url": "/v1/smartphones/lmg900qm-velvet-5g-td-lte-us-g900qm" + }, + { + "slug": "lmg900tm-velvet-5g-td-lte-us-g900tmy", + "name": "LMG900TM Velvet 5G TD-LTE US G900TMY", + "url": "/v1/smartphones/lmg900tm-velvet-5g-td-lte-us-g900tmy" + }, + { + "slug": "lmg900um1-velvet-5g-td-lte-us-g900um", + "name": "LMG900UM1 Velvet 5G TD-LTE US G900UM", + "url": "/v1/smartphones/lmg900um1-velvet-5g-td-lte-us-g900um" + }, + { + "slug": "lmg900um2-velvet-5g-td-lte-ca-g900um", + "name": "LMG900UM2 Velvet 5G TD-LTE CA G900UM", + "url": "/v1/smartphones/lmg900um2-velvet-5g-td-lte-ca-g900um" + }, + { + "slug": "lmg900vm-velvet-5g-uw-td-lte-us-g900vm", + "name": "LMG900VM Velvet 5G UW TD-LTE US G900VM", + "url": "/v1/smartphones/lmg900vm-velvet-5g-uw-td-lte-us-g900vm" + }, + { + "slug": "lmg910emw-velvet-4g-global-dual-sim-td-lte-g910emw", + "name": "LMG910EMW Velvet 4G Global Dual SIM TD-LTE G910EMW", + "url": "/v1/smartphones/lmg910emw-velvet-4g-global-dual-sim-td-lte-g910emw" + }, + { + "slug": "lmg910hm-velvet-4g-td-lte-latam-g910hm", + "name": "LMG910HM Velvet 4G TD-LTE LATAM G910HM", + "url": "/v1/smartphones/lmg910hm-velvet-4g-td-lte-latam-g910hm" + }, + { + "slug": "lmg910hmw-velvet-4g-dual-sim-td-lte-latam-g910hmw", + "name": "LMG910HMW Velvet 4G Dual SIM TD-LTE LATAM G910HMW", + "url": "/v1/smartphones/lmg910hmw-velvet-4g-dual-sim-td-lte-latam-g910hmw" + }, + { + "slug": "lmk200baw-k-series-k22-2020-dual-sim-td-lte-latam-k200baw", + "name": "LMK200BAW K Series K22+ 2020 Dual SIM TD-LTE LATAM K200BAW", + "url": "/v1/smartphones/lmk200baw-k-series-k22-2020-dual-sim-td-lte-latam-k200baw" + }, + { + "slug": "lmk200bmw-k-series-k22-2020-dual-sim-td-lte-latam-k200bmw", + "name": "LMK200BMW K Series K22 2020 Dual SIM TD-LTE LATAM K200BMW", + "url": "/v1/smartphones/lmk200bmw-k-series-k22-2020-dual-sim-td-lte-latam-k200bmw" + }, + { + "slug": "lmk200emw-k-series-k22-2020-dual-sim-td-lte-emea-k200emw", + "name": "LMK200EMW K Series K22 2020 Dual SIM TD-LTE EMEA K200EMW", + "url": "/v1/smartphones/lmk200emw-k-series-k22-2020-dual-sim-td-lte-emea-k200emw" + }, + { + "slug": "lmk200ha-k-series-k22-2020-td-lte-latam-k200ha", + "name": "LMK200HA K Series K22+ 2020 TD-LTE LATAM K200HA", + "url": "/v1/smartphones/lmk200ha-k-series-k22-2020-td-lte-latam-k200ha" + }, + { + "slug": "lmk200haw-k-series-k22-2020-dual-sim-td-lte-latam-k200haw", + "name": "LMK200HAW K Series K22+ 2020 Dual SIM TD-LTE LATAM K200HAW", + "url": "/v1/smartphones/lmk200haw-k-series-k22-2020-dual-sim-td-lte-latam-k200haw" + }, + { + "slug": "lmk200hm-k-series-k22-2020-td-lte-latam-k200hm", + "name": "LMK200HM K Series K22 2020 TD-LTE LATAM K200HM", + "url": "/v1/smartphones/lmk200hm-k-series-k22-2020-td-lte-latam-k200hm" + }, + { + "slug": "lmk200hmw-k-series-k22-2020-dual-sim-td-lte-latam-k200hmw", + "name": "LMK200HMW K Series K22 2020 Dual SIM TD-LTE LATAM K200HMW", + "url": "/v1/smartphones/lmk200hmw-k-series-k22-2020-dual-sim-td-lte-latam-k200hmw" + }, + { + "slug": "lmk200qm-k-series-k32-2020-lte-ca-k200qm", + "name": "LMK200QM K Series K32 2020 LTE CA K200QM", + "url": "/v1/smartphones/lmk200qm-k-series-k32-2020-lte-ca-k200qm" + }, + { + "slug": "lmk200qm0-k-series-k22-2020-lte-us-k200qm0", + "name": "LMK200QM0 K Series K22 2020 LTE US K200QM0", + "url": "/v1/smartphones/lmk200qm0-k-series-k22-2020-lte-us-k200qm0" + }, + { + "slug": "lmk200tm-k-series-k22-2020-td-lte-us-k200tm9", + "name": "LMK200TM K Series K22 2020 TD-LTE US K200TM9", + "url": "/v1/smartphones/lmk200tm-k-series-k22-2020-td-lte-us-k200tm9" + }, + { + "slug": "lmk300am-phoenix-5-td-lte-us-k300ama", + "name": "LMK300AM Phoenix 5 TD-LTE US K300AMA", + "url": "/v1/smartphones/lmk300am-phoenix-5-td-lte-us-k300ama" + }, + { + "slug": "lmk300am4-fortune-3-lte-us-k300am4", + "name": "LMK300AM4 Fortune 3 LTE US K300AM4", + "url": "/v1/smartphones/lmk300am4-fortune-3-lte-us-k300am4" + }, + { + "slug": "lmk300cm-risio-4-lte-us-k300cmr", + "name": "LMK300CM Risio 4 LTE US K300CMR", + "url": "/v1/smartphones/lmk300cm-risio-4-lte-us-k300cmr" + }, + { + "slug": "lmk300mm-aristo-5-td-lte-us-k300mm", + "name": "LMK300MM Aristo 5 TD-LTE US K300MM", + "url": "/v1/smartphones/lmk300mm-aristo-5-td-lte-us-k300mm" + }, + { + "slug": "lmk300qm-k-series-k31-2020-td-lte-us-k300qm", + "name": "LMK300QM K Series K31 2020 TD-LTE US K300QM", + "url": "/v1/smartphones/lmk300qm-k-series-k31-2020-td-lte-us-k300qm" + }, + { + "slug": "lmk300qm6-k-series-k31-2020-lte-us-k300qm6", + "name": "LMK300QM6 K Series K31 2020 LTE US K300QM6", + "url": "/v1/smartphones/lmk300qm6-k-series-k31-2020-lte-us-k300qm6" + }, + { + "slug": "lmk300tm-aristo-5-td-lte-us-k300tms", + "name": "LMK300TM Aristo 5 TD-LTE US K300TMS", + "url": "/v1/smartphones/lmk300tm-aristo-5-td-lte-us-k300tms" + }, + { + "slug": "lmk300tm3-tribute-monarch-td-lte-us-k300tm3", + "name": "LMK300TM3 Tribute Monarch TD-LTE US K300TM3", + "url": "/v1/smartphones/lmk300tm3-tribute-monarch-td-lte-us-k300tm3" + }, + { + "slug": "lmk300um-k-series-k8x-2020-lte-a-us-k300um", + "name": "LMK300UM K Series K8X 2020 LTE-A US K300UM", + "url": "/v1/smartphones/lmk300um-k-series-k8x-2020-lte-a-us-k300um" + }, + { + "slug": "lmk300wm-k-series-k31-2020-lte-ca-k300wm", + "name": "LMK300WM K Series K31 2020 LTE CA K300WM", + "url": "/v1/smartphones/lmk300wm-k-series-k31-2020-lte-ca-k300wm" + }, + { + "slug": "lmk310im-w-series-w11-2020-dual-sim-td-lte-in-k310im", + "name": "LMK310IM W Series W11 2020 Dual SIM TD-LTE IN K310IM", + "url": "/v1/smartphones/lmk310im-w-series-w11-2020-dual-sim-td-lte-in-k310im" + }, + { + "slug": "lmk315im-w-series-w31-2020-dual-sim-td-lte-in-64gb-k315im", + "name": "LMK315IM W Series W31 2020 Dual SIM TD-LTE IN 64GB K315IM", + "url": "/v1/smartphones/lmk315im-w-series-w31-2020-dual-sim-td-lte-in-64gb-k315im" + }, + { + "slug": "lmk315im-w-series-w31-2020-dual-sim-td-lte-in-128gb-k315im", + "name": "LMK315IM W Series W31+ 2020 Dual SIM TD-LTE IN 128GB K315IM", + "url": "/v1/smartphones/lmk315im-w-series-w31-2020-dual-sim-td-lte-in-128gb-k315im" + }, + { + "slug": "lmk400a-xpression-plus-3-2020-lte-a-us-k400akr", + "name": "LMK400A Xpression Plus 3 2020 LTE-A US K400AKR", + "url": "/v1/smartphones/lmk400a-xpression-plus-3-2020-lte-a-us-k400akr" + }, + { + "slug": "lmk400am-harmony-4-2020-lte-a-us-k400am", + "name": "LMK400AM Harmony 4 2020 LTE-A US K400AM", + "url": "/v1/smartphones/lmk400am-harmony-4-2020-lte-a-us-k400am" + }, + { + "slug": "lmk410emw-k-series-k41s-2020-dual-sim-td-lte-emea-k410emw", + "name": "LMK410EMW K Series K41S 2020 Dual SIM TD-LTE EMEA K410EMW", + "url": "/v1/smartphones/lmk410emw-k-series-k41s-2020-dual-sim-td-lte-emea-k410emw" + }, + { + "slug": "lmk410fmw-k-series-k41s-2020-dual-sim-lte-latam-k410fmw", + "name": "LMK410FMW K Series K41S 2020 Dual SIM LTE LATAM K410FMW", + "url": "/v1/smartphones/lmk410fmw-k-series-k41s-2020-dual-sim-lte-latam-k410fmw" + }, + { + "slug": "lmk410hm-k-series-k41s-2020-td-lte-latam-k410hm", + "name": "LMK410HM K Series K41S 2020 TD-LTE LATAM K410HM", + "url": "/v1/smartphones/lmk410hm-k-series-k41s-2020-td-lte-latam-k410hm" + }, + { + "slug": "lmk410wm-k-series-k41s-2020-lte-ca-k410wm", + "name": "LMK410WM K Series K41S 2020 LTE CA K410WM", + "url": "/v1/smartphones/lmk410wm-k-series-k41s-2020-lte-ca-k410wm" + }, + { + "slug": "lmk420bmw-k-series-k52-2020-dual-sim-td-lte-latam-k420bmw", + "name": "LMK420BMW K Series K52 2020 Dual SIM TD-LTE LATAM K420BMW", + "url": "/v1/smartphones/lmk420bmw-k-series-k52-2020-dual-sim-td-lte-latam-k420bmw" + }, + { + "slug": "lmk420emw-k-series-k42-2020-dual-sim-td-lte-emea-k420emw", + "name": "LMK420EMW K Series K42 2020 Dual SIM TD-LTE EMEA K420EMW", + "url": "/v1/smartphones/lmk420emw-k-series-k42-2020-dual-sim-td-lte-emea-k420emw" + }, + { + "slug": "lmk420hm-k-series-k42-2020-td-lte-latam-k420hm", + "name": "LMK420HM K Series K42 2020 TD-LTE LATAM K420HM", + "url": "/v1/smartphones/lmk420hm-k-series-k42-2020-td-lte-latam-k420hm" + }, + { + "slug": "lmk420hmw-k-series-k42-2020-dual-sim-td-lte-latam-k420hmw", + "name": "LMK420HMW K Series K42 2020 Dual SIM TD-LTE LATAM K420HMW", + "url": "/v1/smartphones/lmk420hmw-k-series-k42-2020-dual-sim-td-lte-latam-k420hmw" + }, + { + "slug": "lmk420ym-k-series-k42-2020-td-lte-apac-k420ym", + "name": "LMK420YM K Series K42 2020 TD-LTE APAC K420YM", + "url": "/v1/smartphones/lmk420ym-k-series-k42-2020-td-lte-apac-k420ym" + }, + { + "slug": "lmk420ymw-k-series-k42-2020-dual-sim-td-lte-apac-k420ymw", + "name": "LMK420YMW K Series K42 2020 Dual SIM TD-LTE APAC K420YMW", + "url": "/v1/smartphones/lmk420ymw-k-series-k42-2020-dual-sim-td-lte-apac-k420ymw" + }, + { + "slug": "lmk500mm-k-series-k51-2020-td-lte-us-k500mm", + "name": "LMK500MM K Series K51 2020 TD-LTE US K500MM", + "url": "/v1/smartphones/lmk500mm-k-series-k51-2020-td-lte-us-k500mm" + }, + { + "slug": "lmk500qm5-k-series-k51-2020-lte-us-k500qm5", + "name": "LMK500QM5 K Series K51 2020 LTE US K500QM5", + "url": "/v1/smartphones/lmk500qm5-k-series-k51-2020-lte-us-k500qm5" + }, + { + "slug": "lmk500qm6-k-series-k51-2020-lte-us-k500qm6", + "name": "LMK500QM6 K Series K51 2020 LTE US K500QM6", + "url": "/v1/smartphones/lmk500qm6-k-series-k51-2020-lte-us-k500qm6" + }, + { + "slug": "lmk500qm7-k-series-k51-2020-td-lte-us-k500qm7", + "name": "LMK500QM7 K Series K51 2020 TD-LTE US K500QM7", + "url": "/v1/smartphones/lmk500qm7-k-series-k51-2020-td-lte-us-k500qm7" + }, + { + "slug": "lmk500qn-k-series-k51-2020-td-lte-latam-k500qn", + "name": "LMK500QN K Series K51 2020 TD-LTE LATAM K500QN", + "url": "/v1/smartphones/lmk500qn-k-series-k51-2020-td-lte-latam-k500qn" + }, + { + "slug": "lmk500um3-k-series-k51-2020-td-lte-us-k500um3", + "name": "LMK500UM3 K Series K51 2020 TD-LTE US K500UM3", + "url": "/v1/smartphones/lmk500um3-k-series-k51-2020-td-lte-us-k500um3" + }, + { + "slug": "lmk500umt-k-series-k51-2020-lte-us-k500umt", + "name": "LMK500UMT K Series K51 2020 LTE US K500UMT", + "url": "/v1/smartphones/lmk500umt-k-series-k51-2020-lte-us-k500umt" + }, + { + "slug": "lmk500umt3-k-series-k51-2020-td-lte-us-k500umt3", + "name": "LMK500UMT3 K Series K51 2020 TD-LTE US K500UMT3", + "url": "/v1/smartphones/lmk500umt3-k-series-k51-2020-td-lte-us-k500umt3" + }, + { + "slug": "lmk510bmw-k-series-k51s-2020-dual-sim-td-lte-latam-k510bmw", + "name": "LMK510BMW K Series K51S 2020 Dual SIM TD-LTE LATAM K510BMW", + "url": "/v1/smartphones/lmk510bmw-k-series-k51s-2020-dual-sim-td-lte-latam-k510bmw" + }, + { + "slug": "lmk510emw-k-series-k51s-2020-dual-sim-td-lte-emea-k510emw", + "name": "LMK510EMW K Series K51S 2020 Dual SIM TD-LTE EMEA K510EMW", + "url": "/v1/smartphones/lmk510emw-k-series-k51s-2020-dual-sim-td-lte-emea-k510emw" + }, + { + "slug": "lmk510hm-k-series-k51s-2020-td-lte-latam-k510hm", + "name": "LMK510HM K Series K51S 2020 TD-LTE LATAM K510HM", + "url": "/v1/smartphones/lmk510hm-k-series-k51s-2020-td-lte-latam-k510hm" + }, + { + "slug": "lmk510zmw-k-series-k51s-2020-dual-sim-td-lte-apac-k510zmw", + "name": "LMK510ZMW K Series K51S 2020 Dual SIM TD-LTE APAC K510ZMW", + "url": "/v1/smartphones/lmk510zmw-k-series-k51s-2020-dual-sim-td-lte-apac-k510zmw" + }, + { + "slug": "lmk520bmw-k-series-k62-2020-dual-sim-td-lte-latam-k520bmw", + "name": "LMK520BMW K Series K62 2020 Dual SIM TD-LTE LATAM K520BMW", + "url": "/v1/smartphones/lmk520bmw-k-series-k62-2020-dual-sim-td-lte-latam-k520bmw" + }, + { + "slug": "lmk520emw-k-series-k52-2020-dual-sim-td-lte-emea-k520emw", + "name": "LMK520EMW K Series K52 2020 Dual SIM TD-LTE EMEA K520EMW", + "url": "/v1/smartphones/lmk520emw-k-series-k52-2020-dual-sim-td-lte-emea-k520emw" + }, + { + "slug": "lmk525bmw-k-series-k62-2020-dual-sim-td-lte-latam-128gb-k525bmw", + "name": "LMK525BMW K Series K62+ 2020 Dual SIM TD-LTE LATAM 128GB K525BMW", + "url": "/v1/smartphones/lmk525bmw-k-series-k62-2020-dual-sim-td-lte-latam-128gb-k525bmw" + }, + { + "slug": "lmk525hm-k-series-k62-2020-td-lte-latam-128gb-k525hm", + "name": "LMK525HM K Series K62 2020 TD-LTE LATAM 128GB K525HM", + "url": "/v1/smartphones/lmk525hm-k-series-k62-2020-td-lte-latam-128gb-k525hm" + }, + { + "slug": "lmk610im-w-series-w41-2021-dual-sim-td-lte-in-64gb-k610im", + "name": "LMK610IM W Series W41 2021 Dual SIM TD-LTE IN 64GB K610IM", + "url": "/v1/smartphones/lmk610im-w-series-w41-2021-dual-sim-td-lte-in-64gb-k610im" + }, + { + "slug": "lmk610im-w-series-w41-pro-2021-dual-sim-td-lte-in-128gb-k610im", + "name": "LMK610IM W Series W41 Pro 2021 Dual SIM TD-LTE IN 128GB K610IM", + "url": "/v1/smartphones/lmk610im-w-series-w41-pro-2021-dual-sim-td-lte-in-128gb-k610im" + }, + { + "slug": "lmk610im-w-series-w41-2021-dual-sim-td-lte-in-128gb-k610im-w41-plus", + "name": "LMK610IM W Series W41+ 2021 Dual SIM TD-LTE IN 128GB K610IM / W41 Plus", + "url": "/v1/smartphones/lmk610im-w-series-w41-2021-dual-sim-td-lte-in-128gb-k610im-w41-plus" + }, + { + "slug": "lmk920am-k-series-k92-5g-td-lte-us-k920am1", + "name": "LMK920AM K Series K92 5G TD-LTE US K920AM1", + "url": "/v1/smartphones/lmk920am-k-series-k92-5g-td-lte-us-k920am1" + }, + { + "slug": "lmk920am-k-series-k92-5g-td-lte-us-k920am4", + "name": "LMK920AM K Series K92 5G TD-LTE US K920AM4", + "url": "/v1/smartphones/lmk920am-k-series-k92-5g-td-lte-us-k920am4" + }, + { + "slug": "lmk920tm-k-series-k92-5g-td-lte-us-k920tm0", + "name": "LMK920TM K Series K92 5G TD-LTE US K920TM0", + "url": "/v1/smartphones/lmk920tm-k-series-k92-5g-td-lte-us-k920tm0" + }, + { + "slug": "lmq310n-q-series-q31-2020-td-lte-kr-q310n", + "name": "LMQ310N Q Series Q31 2020 TD-LTE KR Q310N", + "url": "/v1/smartphones/lmq310n-q-series-q31-2020-td-lte-kr-q310n" + }, + { + "slug": "lmq520n-q-series-q52-2020-td-lte-kr-q520n", + "name": "LMQ520N Q Series Q52 2020 TD-LTE KR Q520N", + "url": "/v1/smartphones/lmq520n-q-series-q52-2020-td-lte-kr-q520n" + }, + { + "slug": "lmq620qm-q-series-q70-td-lte-us-q620qm", + "name": "LMQ620QM Q Series Q70 TD-LTE US Q620QM", + "url": "/v1/smartphones/lmq620qm-q-series-q70-td-lte-us-q620qm" + }, + { + "slug": "lmq620qm5-q-series-q70-lte-a-us-q620qm5", + "name": "LMQ620QM5 Q Series Q70 LTE-A US Q620QM5", + "url": "/v1/smartphones/lmq620qm5-q-series-q70-lte-a-us-q620qm5" + }, + { + "slug": "lmq620qm6-q-series-q70-lte-a-us-q620qm6", + "name": "LMQ620QM6 Q Series Q70 LTE-A US Q620QM6", + "url": "/v1/smartphones/lmq620qm6-q-series-q70-lte-a-us-q620qm6" + }, + { + "slug": "lmq620vab-q-series-q70-lte-a-us-q620vab", + "name": "LMQ620VAB Q Series Q70 LTE-A US Q620VAB", + "url": "/v1/smartphones/lmq620vab-q-series-q70-lte-a-us-q620vab" + }, + { + "slug": "lmq620wa-q-series-q70-lte-a-ca-q620wa", + "name": "LMQ620WA Q Series Q70 LTE-A CA Q620WA", + "url": "/v1/smartphones/lmq620wa-q-series-q70-lte-a-ca-q620wa" + }, + { + "slug": "lmq630baw-k-series-k61-2020-dual-sim-td-lte-latam-q630baw", + "name": "LMQ630BAW K Series K61 2020 Dual SIM TD-LTE LATAM Q630BAW", + "url": "/v1/smartphones/lmq630baw-k-series-k61-2020-dual-sim-td-lte-latam-q630baw" + }, + { + "slug": "lmq630eaw-k-series-k61-2020-dual-sim-td-lte-emea-q630eaw", + "name": "LMQ630EAW K Series K61 2020 Dual SIM TD-LTE EMEA Q630EAW", + "url": "/v1/smartphones/lmq630eaw-k-series-k61-2020-dual-sim-td-lte-emea-q630eaw" + }, + { + "slug": "lmq630ha-k-series-k61-2020-td-lte-latam-q630ha", + "name": "LMQ630HA K Series K61 2020 TD-LTE LATAM Q630HA", + "url": "/v1/smartphones/lmq630ha-k-series-k61-2020-td-lte-latam-q630ha" + }, + { + "slug": "lmq630um-k-series-k61-2020-lte-a-ca-q630um", + "name": "LMQ630UM K Series K61 2020 LTE-A CA Q630UM", + "url": "/v1/smartphones/lmq630um-k-series-k61-2020-lte-a-ca-q630um" + }, + { + "slug": "lmq710wa-q-stylo-4-lte-a-ca", + "name": "LMQ710WA Q Stylo+ 4 LTE-A CA", + "url": "/v1/smartphones/lmq710wa-q-stylo-4-lte-a-ca" + }, + { + "slug": "lmq710xm-q-stylus-td-lte-jp", + "name": "LMQ710XM Q Stylus TD-LTE JP", + "url": "/v1/smartphones/lmq710xm-q-stylus-td-lte-jp" + }, + { + "slug": "lmq720am-stylo-5-lte-a-us-q720a", + "name": "LMQ720AM Stylo 5+ LTE-A US Q720A", + "url": "/v1/smartphones/lmq720am-stylo-5-lte-a-us-q720a" + }, + { + "slug": "lmq720cs-stylo-5-lte-a-us-q720cs", + "name": "LMQ720CS Stylo 5 LTE-A US Q720CS", + "url": "/v1/smartphones/lmq720cs-stylo-5-lte-a-us-q720cs" + }, + { + "slug": "lmq720ms-stylo-5-td-lte-us-q720ms", + "name": "LMQ720MS Stylo 5 TD-LTE US Q720MS", + "url": "/v1/smartphones/lmq720ms-stylo-5-td-lte-us-q720ms" + }, + { + "slug": "lmq720ps-stylo-5-td-lte-us-q720p", + "name": "LMQ720PS Stylo 5 TD-LTE US Q720P", + "url": "/v1/smartphones/lmq720ps-stylo-5-td-lte-us-q720p" + }, + { + "slug": "lmq720qm-stylo-5-lte-a-us-q720qm", + "name": "LMQ720QM Stylo 5 LTE-A US Q720QM", + "url": "/v1/smartphones/lmq720qm-stylo-5-lte-a-us-q720qm" + }, + { + "slug": "lmq720qm5-stylo-5-lte-a-us-q720qm5", + "name": "LMQ720QM5 Stylo 5 LTE-A US Q720QM5", + "url": "/v1/smartphones/lmq720qm5-stylo-5-lte-a-us-q720qm5" + }, + { + "slug": "lmq720qm6-stylo-5-lte-a-us-q720qm6", + "name": "LMQ720QM6 Stylo 5 LTE-A US Q720QM6", + "url": "/v1/smartphones/lmq720qm6-stylo-5-lte-a-us-q720qm6" + }, + { + "slug": "lmq720ts3-stylo-5x-td-lte-us-q720ts", + "name": "LMQ720TS3 Stylo 5x TD-LTE US Q720TS", + "url": "/v1/smartphones/lmq720ts3-stylo-5x-td-lte-us-q720ts" + }, + { + "slug": "lmq720tsw-stylo-5-td-lte-us-q720ts", + "name": "LMQ720TSW Stylo 5 TD-LTE US Q720TS", + "url": "/v1/smartphones/lmq720tsw-stylo-5-td-lte-us-q720ts" + }, + { + "slug": "lmq720vsp-stylo-5-lte-a-us-q720v", + "name": "LMQ720VSP Stylo 5 LTE-A US Q720V", + "url": "/v1/smartphones/lmq720vsp-stylo-5-lte-a-us-q720v" + }, + { + "slug": "lmq730am4-stylo-6-lte-a-us-q730am4", + "name": "LMQ730AM4 Stylo 6 LTE-A US Q730AM4", + "url": "/v1/smartphones/lmq730am4-stylo-6-lte-a-us-q730am4" + }, + { + "slug": "lmq730baw-k-series-k71-dual-sim-td-lte-latam-128gb-q730baw", + "name": "LMQ730BAW K Series K71 Dual SIM TD-LTE LATAM 128GB Q730BAW", + "url": "/v1/smartphones/lmq730baw-k-series-k71-dual-sim-td-lte-latam-128gb-q730baw" + }, + { + "slug": "lmq730ha-k-series-k71-td-lte-latam-128gb-q730ha", + "name": "LMQ730HA K Series K71 TD-LTE LATAM 128GB Q730HA", + "url": "/v1/smartphones/lmq730ha-k-series-k71-td-lte-latam-128gb-q730ha" + }, + { + "slug": "lmq730mm-stylo-6-td-lte-us-q730mm", + "name": "LMQ730MM Stylo 6 TD-LTE US Q730MM", + "url": "/v1/smartphones/lmq730mm-stylo-6-td-lte-us-q730mm" + }, + { + "slug": "lmq730n-q-series-q70-td-lte-kr-q730n", + "name": "LMQ730N Q Series Q70 TD-LTE KR Q730N", + "url": "/v1/smartphones/lmq730n-q-series-q70-td-lte-kr-q730n" + }, + { + "slug": "lmq730qm0-stylo-6-lte-a-us-q730qm0", + "name": "LMQ730QM0 Stylo 6 LTE-A US Q730QM0", + "url": "/v1/smartphones/lmq730qm0-stylo-6-lte-a-us-q730qm0" + }, + { + "slug": "lmq730qm5-stylo-6-lte-a-us-q730qm5", + "name": "LMQ730QM5 Stylo 6 LTE-A US Q730QM5", + "url": "/v1/smartphones/lmq730qm5-stylo-6-lte-a-us-q730qm5" + }, + { + "slug": "lmq730qm6-stylo-6-lte-a-us-q730qm6", + "name": "LMQ730QM6 Stylo 6 LTE-A US Q730QM6", + "url": "/v1/smartphones/lmq730qm6-stylo-6-lte-a-us-q730qm6" + }, + { + "slug": "lmq730qm7-stylo-6-lte-a-us-q730qm7", + "name": "LMQ730QM7 Stylo 6 LTE-A US Q730QM7", + "url": "/v1/smartphones/lmq730qm7-stylo-6-lte-a-us-q730qm7" + }, + { + "slug": "lmq730qn-stylo-6-lte-a-latam-q730qn", + "name": "LMQ730QN Stylo 6 LTE-A LATAM Q730QN", + "url": "/v1/smartphones/lmq730qn-stylo-6-lte-a-latam-q730qn" + }, + { + "slug": "lmq730tm3-stylo-6-td-lte-us-q730tm3", + "name": "LMQ730TM3 Stylo 6 TD-LTE US Q730TM3", + "url": "/v1/smartphones/lmq730tm3-stylo-6-td-lte-us-q730tm3" + }, + { + "slug": "lmq730tmw-stylo-6-td-lte-us-q730tmw", + "name": "LMQ730TMW Stylo 6 TD-LTE US Q730TMW", + "url": "/v1/smartphones/lmq730tmw-stylo-6-td-lte-us-q730tmw" + }, + { + "slug": "lmq730vmw-stylo-6-lte-a-us-q730vmw", + "name": "LMQ730VMW Stylo 6 LTE-A US Q730VMW", + "url": "/v1/smartphones/lmq730vmw-stylo-6-lte-a-us-q730vmw" + }, + { + "slug": "lmq850ea-g7-fit-td-lte-apac-latam-64gb-q850ea", + "name": "LMQ850EA G7 Fit TD-LTE APAC LATAM 64GB Q850EA", + "url": "/v1/smartphones/lmq850ea-g7-fit-td-lte-apac-latam-64gb-q850ea" + }, + { + "slug": "lmq850eaw-g7-fit-dual-sim-td-lte-apac-latam-64gb-q850eaw", + "name": "LMQ850EAW G7 Fit Dual SIM TD-LTE APAC LATAM 64GB Q850EAW", + "url": "/v1/smartphones/lmq850eaw-g7-fit-dual-sim-td-lte-apac-latam-64gb-q850eaw" + }, + { + "slug": "lmq850em-g7-fit-td-lte-emea", + "name": "LMQ850EM G7 Fit TD-LTE EMEA", + "url": "/v1/smartphones/lmq850em-g7-fit-td-lte-emea" + }, + { + "slug": "lmq850emw-g7-fit-dual-sim-td-lte-emea", + "name": "LMQ850EMW G7 Fit Dual SIM TD-LTE EMEA", + "url": "/v1/smartphones/lmq850emw-g7-fit-dual-sim-td-lte-emea" + }, + { + "slug": "lmq850qm-g7-fit-td-lte-us-lmq850qm5-lmq850qm6", + "name": "LMQ850QM G7 Fit TD-LTE US / LMQ850QM5 / LMQ850QM6", + "url": "/v1/smartphones/lmq850qm-g7-fit-td-lte-us-lmq850qm5-lmq850qm6" + }, + { + "slug": "lmq850qmd-g7-fit-td-lte-us-q850qmd", + "name": "LMQ850QMD G7 Fit TD-LTE US Q850QMD", + "url": "/v1/smartphones/lmq850qmd-g7-fit-td-lte-us-q850qmd" + }, + { + "slug": "lmq910um-g7-one-td-lte-na", + "name": "LMQ910UM G7 One TD-LTE NA", + "url": "/v1/smartphones/lmq910um-g7-one-td-lte-na" + }, + { + "slug": "lmq920n-q-series-q92-5g-td-lte-kr-q920n", + "name": "LMQ920N Q Series Q92 5G TD-LTE KR Q920N", + "url": "/v1/smartphones/lmq920n-q-series-q92-5g-td-lte-kr-q920n" + }, + { + "slug": "lmv350awmh-v35-thinq-dual-sim-td-lte-latam", + "name": "LMV350AWMH V35 ThinQ Dual SIM TD-LTE LATAM", + "url": "/v1/smartphones/lmv350awmh-v35-thinq-dual-sim-td-lte-latam" + }, + { + "slug": "lmv350eaw-v35-thinq-dual-sim-lte-a-latam-128gb", + "name": "LMV350EAW V35 ThinQ Dual SIM LTE-A LATAM 128GB", + "url": "/v1/smartphones/lmv350eaw-v35-thinq-dual-sim-lte-a-latam-128gb" + }, + { + "slug": "lmv350em-v35-thinq-dual-sim-lte-a-latam", + "name": "LMV350EM V35 ThinQ Dual SIM LTE-A LATAM", + "url": "/v1/smartphones/lmv350em-v35-thinq-dual-sim-lte-a-latam" + }, + { + "slug": "lmv405eb-v40-thinq-td-lte-emea", + "name": "LMV405EB V40 ThinQ TD-LTE EMEA", + "url": "/v1/smartphones/lmv405eb-v40-thinq-td-lte-emea" + }, + { + "slug": "lmv405ebw-v40-thinq-global-dual-sim-td-lte-128gb", + "name": "LMV405EBW V40 ThinQ Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/lmv405ebw-v40-thinq-global-dual-sim-td-lte-128gb" + }, + { + "slug": "lmv450pm-v50-thinq-5g-td-lte-us-v450pm", + "name": "LMV450PM V50 ThinQ 5G TD-LTE US V450PM", + "url": "/v1/smartphones/lmv450pm-v50-thinq-5g-td-lte-us-v450pm" + }, + { + "slug": "lmv450vmb-v50-thinq-5g-td-lte-us-v450vmb-g450vm", + "name": "LMV450VMB V50 ThinQ 5G TD-LTE US V450VMB / G450VM", + "url": "/v1/smartphones/lmv450vmb-v50-thinq-5g-td-lte-us-v450vmb-g450vm" + }, + { + "slug": "lmv500em-v50-thinq-global-5g-td-lte", + "name": "LMV500EM V50 ThinQ Global 5G TD-LTE", + "url": "/v1/smartphones/lmv500em-v50-thinq-global-5g-td-lte" + }, + { + "slug": "lmv600am-v60-thinq-5g-td-lte-us-v600am", + "name": "LMV600AM V60 ThinQ 5G TD-LTE US V600AM", + "url": "/v1/smartphones/lmv600am-v60-thinq-5g-td-lte-us-v600am" + }, + { + "slug": "lmv600ea-v60-thinq-5g-global-td-lte-256gb-v600ea", + "name": "LMV600EA V60 ThinQ 5G Global TD-LTE 256GB V600EA", + "url": "/v1/smartphones/lmv600ea-v60-thinq-5g-global-td-lte-256gb-v600ea" + }, + { + "slug": "lmv600qm-v60-thinq-5g-td-lte-us-v600qm5-v600qm6", + "name": "LMV600QM V60 ThinQ 5G TD-lTE US V600QM5 / V600QM6", + "url": "/v1/smartphones/lmv600qm-v60-thinq-5g-td-lte-us-v600qm5-v600qm6" + }, + { + "slug": "lmv600tm0-v60-thinq-5g-td-lte-us-v600tm", + "name": "LMV600TM0 V60 ThinQ 5G TD-LTE US V600TM", + "url": "/v1/smartphones/lmv600tm0-v60-thinq-5g-td-lte-us-v600tm" + }, + { + "slug": "lmv600tm2x-v60-thinq-5g-td-lte-ca-v600tm2x", + "name": "LMV600TM2X V60 ThinQ 5G TD-LTE CA V600TM2X", + "url": "/v1/smartphones/lmv600tm2x-v60-thinq-5g-td-lte-ca-v600tm2x" + }, + { + "slug": "lmv600tml-v60-thinq-5g-td-lte-us-v600tm", + "name": "LMV600TML V60 ThinQ 5G TD-LTE US V600TM", + "url": "/v1/smartphones/lmv600tml-v60-thinq-5g-td-lte-us-v600tm" + }, + { + "slug": "lmv600vm-v60-thinq-5g-uw-td-lte-us-v600vm", + "name": "LMV600VM V60 ThinQ 5G UW TD-LTE US V600VM", + "url": "/v1/smartphones/lmv600vm-v60-thinq-5g-uw-td-lte-us-v600vm" + }, + { + "slug": "lmv605n-v60-thinq-5g-td-lte-kr-v605n", + "name": "LMV605N V60 ThinQ 5G TD-LTE KR V605N", + "url": "/v1/smartphones/lmv605n-v60-thinq-5g-td-lte-kr-v605n" + }, + { + "slug": "lmx130im-w-series-w10-2019-dual-sim-td-lte-in-x130im", + "name": "LMX130IM W Series W10 2019 Dual SIM TD-LTE IN X130IM", + "url": "/v1/smartphones/lmx130im-w-series-w10-2019-dual-sim-td-lte-in-x130im" + }, + { + "slug": "lmx210ap-phoenix-4-lte-us-x210apm", + "name": "LMX210AP Phoenix 4 LTE US X210APM", + "url": "/v1/smartphones/lmx210ap-phoenix-4-lte-us-x210apm" + }, + { + "slug": "lmx210bm-k-series-k9-2018-dual-sim-lte-latam", + "name": "LMX210BM K Series K9 2018 Dual SIM LTE LATAM", + "url": "/v1/smartphones/lmx210bm-k-series-k9-2018-dual-sim-lte-latam" + }, + { + "slug": "lmx210bmw-k-series-k9-tv-2018-dual-sim-lte-latam", + "name": "LMX210BMW K Series K9 TV 2018 Dual SIM LTE LATAM", + "url": "/v1/smartphones/lmx210bmw-k-series-k9-tv-2018-dual-sim-lte-latam" + }, + { + "slug": "lmx210cm-fortune-2-lte-us-k-series-k8-2018", + "name": "LMX210CM Fortune 2 LTE US / K Series K8 2018", + "url": "/v1/smartphones/lmx210cm-fortune-2-lte-us-k-series-k8-2018" + }, + { + "slug": "lmx210cmr-risio-3-lte-us", + "name": "LMX210CMR Risio 3 LTE US", + "url": "/v1/smartphones/lmx210cmr-risio-3-lte-us" + }, + { + "slug": "lmx210em-k-series-k9-2018-lte-emea", + "name": "LMX210EM K Series K9 2018 LTE EMEA", + "url": "/v1/smartphones/lmx210em-k-series-k9-2018-lte-emea" + }, + { + "slug": "lmx210emw-k-series-k9-2018-dual-sim-lte-emea", + "name": "LMX210EMW K Series K9 2018 Dual SIM LTE EMEA", + "url": "/v1/smartphones/lmx210emw-k-series-k9-2018-dual-sim-lte-emea" + }, + { + "slug": "lmx210fm-k-series-k9-2018-dual-sim-lte-latam", + "name": "LMX210FM K Series K9 2018 Dual SIM LTE LATAM", + "url": "/v1/smartphones/lmx210fm-k-series-k9-2018-dual-sim-lte-latam" + }, + { + "slug": "lmx210hm-k-series-k9-2018-lte-latam-16gb", + "name": "LMX210HM K Series K9 2018 LTE LATAM 16GB", + "url": "/v1/smartphones/lmx210hm-k-series-k9-2018-lte-latam-16gb" + }, + { + "slug": "lmx210hm-k-series-k9-2018-lte-latam-32gb-lmx210rm", + "name": "LMX210HM K Series K9 2018 LTE LATAM 32GB / LMX210RM", + "url": "/v1/smartphones/lmx210hm-k-series-k9-2018-lte-latam-32gb-lmx210rm" + }, + { + "slug": "lmx210imw-k-series-k9-2018-candy-dual-sim-td-lte-in", + "name": "LMX210IMW K Series K9 2018 Candy Dual SIM TD-LTE IN", + "url": "/v1/smartphones/lmx210imw-k-series-k9-2018-candy-dual-sim-td-lte-in" + }, + { + "slug": "lmx210jm-k-series-k9-2018-td-lte-au", + "name": "LMX210JM K Series K9 2018 TD-LTE AU", + "url": "/v1/smartphones/lmx210jm-k-series-k9-2018-td-lte-au" + }, + { + "slug": "lmx210nmw-k-series-k9-2018-dual-sim-lte-emea", + "name": "LMX210NMW K Series K9 2018 Dual SIM LTE EMEA", + "url": "/v1/smartphones/lmx210nmw-k-series-k9-2018-dual-sim-lte-emea" + }, + { + "slug": "lmx210wm-k-series-k9-2018-lte-ca-16gb-x210wm", + "name": "LMX210WM K Series K9 2018 LTE CA 16GB X210WM", + "url": "/v1/smartphones/lmx210wm-k-series-k9-2018-lte-ca-16gb-x210wm" + }, + { + "slug": "lmx210ymw-k-series-k9-2018-dual-sim-td-lte-apac", + "name": "LMX210YMW K Series K9 2018 Dual SIM TD-LTE APAC", + "url": "/v1/smartphones/lmx210ymw-k-series-k9-2018-dual-sim-td-lte-apac" + }, + { + "slug": "lmx210zm-k-series-k9-2018-td-lte-emea-x210zm", + "name": "LMX210ZM K Series K9 2018 TD-LTE EMEA X210ZM", + "url": "/v1/smartphones/lmx210zm-k-series-k9-2018-td-lte-emea-x210zm" + }, + { + "slug": "lmx212tal-k-series-k9-2018-lte-latam-16gb", + "name": "LMX212TAL K Series K9 2018 LTE LATAM 16GB", + "url": "/v1/smartphones/lmx212tal-k-series-k9-2018-lte-latam-16gb" + }, + { + "slug": "lmx220n-x-series-x2-2019-td-lte-kr-x220n", + "name": "LMX220N X Series X2 2019 TD-LTE KR X220N", + "url": "/v1/smartphones/lmx220n-x-series-x2-2019-td-lte-kr-x220n" + }, + { + "slug": "lmx320aa-prime-2-lte-us-x320aa", + "name": "LMX320AA Prime 2 LTE US X320AA", + "url": "/v1/smartphones/lmx320aa-prime-2-lte-us-x320aa" + }, + { + "slug": "lmx320am8-neon-plus-lte-us-x320am", + "name": "LMX320AM8 Neon Plus LTE US X320AM", + "url": "/v1/smartphones/lmx320am8-neon-plus-lte-us-x320am" + }, + { + "slug": "lmx320apm-arena-2-lte-us-x320ap", + "name": "LMX320APM Arena 2 LTE US X320AP", + "url": "/v1/smartphones/lmx320apm-arena-2-lte-us-x320ap" + }, + { + "slug": "lmx320cm-escape-plus-lte-us-x320cm", + "name": "LMX320CM Escape Plus LTE US X320CM", + "url": "/v1/smartphones/lmx320cm-escape-plus-lte-us-x320cm" + }, + { + "slug": "lmx320pm-tribute-royal-td-lte-us-x320pm", + "name": "LMX320PM Tribute Royal TD-LTE US X320PM", + "url": "/v1/smartphones/lmx320pm-tribute-royal-td-lte-us-x320pm" + }, + { + "slug": "lmx320qm-k-series-k30-2019-lte-us-x320qm", + "name": "LMX320QM K Series K30 2019 LTE US X320QM", + "url": "/v1/smartphones/lmx320qm-k-series-k30-2019-lte-us-x320qm" + }, + { + "slug": "lmx320ta-aristo-4-td-lte-us-x320ta", + "name": "LMX320TA Aristo 4+ TD-LTE US X320TA", + "url": "/v1/smartphones/lmx320ta-aristo-4-td-lte-us-x320ta" + }, + { + "slug": "lmx320wm-k-series-k30-2019-lte-ca-x320wm", + "name": "LMX320WM K Series K30 2019 LTE CA X320WM", + "url": "/v1/smartphones/lmx320wm-k-series-k30-2019-lte-ca-x320wm" + }, + { + "slug": "lmx410tk-k-series-k30-lte", + "name": "LMX410TK K Series K30 LTE", + "url": "/v1/smartphones/lmx410tk-k-series-k30-lte" + }, + { + "slug": "lmx410um-k-series-k30-xfinity-mobile-lte", + "name": "LMX410UM K Series K30 Xfinity Mobile LTE", + "url": "/v1/smartphones/lmx410um-k-series-k30-xfinity-mobile-lte" + }, + { + "slug": "lmx420as-k-series-k40-2019-lte-a-us-x420as", + "name": "LMX420AS K Series K40 2019 LTE-A US X420AS", + "url": "/v1/smartphones/lmx420as-k-series-k40-2019-lte-a-us-x420as" + }, + { + "slug": "lmx420as8-xpression-plus-2-lte-a-us-x420as8", + "name": "LMX420AS8 Xpression Plus 2 LTE-A US X420AS8", + "url": "/v1/smartphones/lmx420as8-xpression-plus-2-lte-a-us-x420as8" + }, + { + "slug": "lmx420bmw-k-series-k40-2019-dual-sim-lte-a-latam-x420bmw-k12", + "name": "LMX420BMW K Series K40 2019 Dual SIM LTE-A LATAM X420BMW / K12+", + "url": "/v1/smartphones/lmx420bmw-k-series-k40-2019-dual-sim-lte-a-latam-x420bmw-k12" + }, + { + "slug": "lmx420em-k-series-k40-2019-td-lte-emea", + "name": "LMX420EM K Series K40 2019 TD-LTE EMEA", + "url": "/v1/smartphones/lmx420em-k-series-k40-2019-td-lte-emea" + }, + { + "slug": "lmx420emw-k-series-k40-2019-dual-sim-td-lte-emea", + "name": "LMX420EMW K Series K40 2019 Dual SIM TD-LTE EMEA", + "url": "/v1/smartphones/lmx420emw-k-series-k40-2019-dual-sim-td-lte-emea" + }, + { + "slug": "lmx420hm-k-series-k40-2019-lte-a-latam-x420hm", + "name": "LMX420HM K Series K40 2019 LTE-A LATAM X420HM", + "url": "/v1/smartphones/lmx420hm-k-series-k40-2019-lte-a-latam-x420hm" + }, + { + "slug": "lmx420mm-k-series-k40-2019-lte-a-us-x420mm", + "name": "LMX420MM K Series K40 2019 LTE-A US X420MM", + "url": "/v1/smartphones/lmx420mm-k-series-k40-2019-lte-a-us-x420mm" + }, + { + "slug": "lmx420n-x-series-x4-2019-td-lte-kr-x420n", + "name": "LMX420N X Series X4 2019 TD-LTE KR X420N", + "url": "/v1/smartphones/lmx420n-x-series-x4-2019-td-lte-kr-x420n" + }, + { + "slug": "lmx420pr-k-series-k40-2019-lte-a-latam-x420pr", + "name": "LMX420PR K Series K40 2019 LTE-A LATAM X420PR", + "url": "/v1/smartphones/lmx420pr-k-series-k40-2019-lte-a-latam-x420pr" + }, + { + "slug": "lmx420qm-k-series-k40-2019-lte-a-us-x420qm", + "name": "LMX420QM K Series K40 2019 LTE-A US X420QM", + "url": "/v1/smartphones/lmx420qm-k-series-k40-2019-lte-a-us-x420qm" + }, + { + "slug": "lmx420qm6-k-series-k40-2019-lte-a-us-x420qm6", + "name": "LMX420QM6 K Series K40 2019 LTE-A US X420QM6", + "url": "/v1/smartphones/lmx420qm6-k-series-k40-2019-lte-a-us-x420qm6" + }, + { + "slug": "lmx420qn-k-series-k40-2019-lte-a-us-x420qn", + "name": "LMX420QN K Series K40 2019 LTE-A US X420QN", + "url": "/v1/smartphones/lmx420qn-k-series-k40-2019-lte-a-us-x420qn" + }, + { + "slug": "lmx420tm-k-series-k40-2019-lte-a-us-x420tm", + "name": "LMX420TM K Series K40 2019 LTE-A US X420TM", + "url": "/v1/smartphones/lmx420tm-k-series-k40-2019-lte-a-us-x420tm" + }, + { + "slug": "lmx430bmw-k-series-k40s-2019-dual-sim-lte-a-latam-x430bmw", + "name": "LMX430BMW K Series K40S 2019 Dual SIM LTE-A LATAM X430BMW", + "url": "/v1/smartphones/lmx430bmw-k-series-k40s-2019-dual-sim-lte-a-latam-x430bmw" + }, + { + "slug": "lmx430emw-k-series-k40s-2019-dual-sim-lte-emea-x430emw", + "name": "LMX430EMW K Series K40S 2019 Dual SIM LTE EMEA X430EMW", + "url": "/v1/smartphones/lmx430emw-k-series-k40s-2019-dual-sim-lte-emea-x430emw" + }, + { + "slug": "lmx430fmw-k-series-k40s-2019-dual-sim-lte-a-latam-x430fmw", + "name": "LMX430FMW K Series K40S 2019 Dual SIM LTE-A LATAM X430FMW", + "url": "/v1/smartphones/lmx430fmw-k-series-k40s-2019-dual-sim-lte-a-latam-x430fmw" + }, + { + "slug": "lmx430hm-k-series-k40s-2019-td-lte-latam-x430hm", + "name": "LMX430HM K Series K40S 2019 TD-LTE LATAM X430HM", + "url": "/v1/smartphones/lmx430hm-k-series-k40s-2019-td-lte-latam-x430hm" + }, + { + "slug": "lmx430zmw-k-series-k40s-2019-dual-sim-td-lte-apac-x430zmw", + "name": "LMX430ZMW K Series K40S 2019 Dual SIM TD-LTE APAC X430ZMW", + "url": "/v1/smartphones/lmx430zmw-k-series-k40s-2019-dual-sim-td-lte-apac-x430zmw" + }, + { + "slug": "lmx440im-w-series-w30-2019-dual-sim-td-lte-in-x440im", + "name": "LMX440IM W Series W30 2019 Dual SIM TD-LTE IN X440IM", + "url": "/v1/smartphones/lmx440im-w-series-w30-2019-dual-sim-td-lte-in-x440im" + }, + { + "slug": "lmx440im-w-series-w30-2019-dual-sim-td-lte-in-x440im-w30-plus", + "name": "LMX440IM W Series W30+ 2019 Dual SIM TD-LTE IN X440IM / W30 Plus", + "url": "/v1/smartphones/lmx440im-w-series-w30-2019-dual-sim-td-lte-in-x440im-w30-plus" + }, + { + "slug": "lmx510wm-x-series-x-power-3-2018-lte-ca", + "name": "LMX510WM X Series X Power 3 2018 LTE CA", + "url": "/v1/smartphones/lmx510wm-x-series-x-power-3-2018-lte-ca" + }, + { + "slug": "lmx520bmw-k-series-k50-2019-dual-sim-lte-a-latam-x520bmw-k12-max", + "name": "LMX520BMW K Series K50 2019 Dual SIM LTE-A LATAM X520BMW / K12 Max", + "url": "/v1/smartphones/lmx520bmw-k-series-k50-2019-dual-sim-lte-a-latam-x520bmw-k12-max" + }, + { + "slug": "lmx520emw-k-series-k50-2019-dual-sim-td-lte-emea-x520emw", + "name": "LMX520EMW K Series K50 2019 Dual SIM TD-LTE EMEA X520EMW", + "url": "/v1/smartphones/lmx520emw-k-series-k50-2019-dual-sim-td-lte-emea-x520emw" + }, + { + "slug": "lmx520hm-k-series-k50-2019-lte-a-latam-x520hm", + "name": "LMX520HM K Series K50 2019 LTE-A LATAM X520HM", + "url": "/v1/smartphones/lmx520hm-k-series-k50-2019-lte-a-latam-x520hm" + }, + { + "slug": "lmx525baw-q-series-q60-2019-dual-sim-lte-a-latam-x525baw", + "name": "LMX525BAW Q Series Q60 2019 Dual SIM LTE-A LATAM X525BAW", + "url": "/v1/smartphones/lmx525baw-q-series-q60-2019-dual-sim-lte-a-latam-x525baw" + }, + { + "slug": "lmx525eaw-q-series-q60-2019-dual-sim-td-lte-emea-x525eaw", + "name": "LMX525EAW Q Series Q60 2019 Dual SIM TD-LTE EMEA X525EAW", + "url": "/v1/smartphones/lmx525eaw-q-series-q60-2019-dual-sim-td-lte-emea-x525eaw" + }, + { + "slug": "lmx525ha-q-series-q60-2019-lte-a-latam-x525ha", + "name": "LMX525HA Q Series Q60 2019 LTE-A LATAM X525HA", + "url": "/v1/smartphones/lmx525ha-q-series-q60-2019-lte-a-latam-x525ha" + }, + { + "slug": "lmx525pr-q-series-q60-2019-lte-a-latam-x525pr", + "name": "LMX525PR Q Series Q60 2019 LTE-A LATAM X525PR", + "url": "/v1/smartphones/lmx525pr-q-series-q60-2019-lte-a-latam-x525pr" + }, + { + "slug": "lmx525wa-q-series-q60-2019-lte-a-ca-x525wa", + "name": "LMX525WA Q Series Q60 2019 LTE-A CA X525WA", + "url": "/v1/smartphones/lmx525wa-q-series-q60-2019-lte-a-ca-x525wa" + }, + { + "slug": "lmx525za-q-series-q60-2019-td-lte-apac-x525za", + "name": "LMX525ZA Q Series Q60 2019 TD-LTE APAC X525ZA", + "url": "/v1/smartphones/lmx525za-q-series-q60-2019-td-lte-apac-x525za" + }, + { + "slug": "lmx525zaw-q-series-q60-2019-dual-sim-td-lte-apac-x525zaw", + "name": "LMX525ZAW Q Series Q60 2019 Dual SIM TD-LTE APAC X525ZAW", + "url": "/v1/smartphones/lmx525zaw-q-series-q60-2019-dual-sim-td-lte-apac-x525zaw" + }, + { + "slug": "lmx540bmw-k-series-k50s-2019-dual-sim-lte-a-latam-x540bmw", + "name": "LMX540BMW K Series K50S 2019 Dual SIM LTE-A LATAM X540BMW", + "url": "/v1/smartphones/lmx540bmw-k-series-k50s-2019-dual-sim-lte-a-latam-x540bmw" + }, + { + "slug": "lmx540emw-k-series-k50s-2019-dual-sim-td-lte-emea-x540emw", + "name": "LMX540EMW K Series K50S 2019 Dual SIM TD-LTE EMEA X540EMW", + "url": "/v1/smartphones/lmx540emw-k-series-k50s-2019-dual-sim-td-lte-emea-x540emw" + }, + { + "slug": "lmx540hm-k-series-k50s-2019-td-lte-latam-x540hm", + "name": "LMX540HM K Series K50S 2019 TD-LTE LATAM X540HM", + "url": "/v1/smartphones/lmx540hm-k-series-k50s-2019-td-lte-latam-x540hm" + }, + { + "slug": "lmx540zmw-k-series-k50s-2019-dual-sim-td-lte-apac-x540zmw", + "name": "LMX540ZMW K Series K50S 2019 Dual SIM TD-LTE APAC X540ZMW", + "url": "/v1/smartphones/lmx540zmw-k-series-k50s-2019-dual-sim-td-lte-apac-x540zmw" + }, + { + "slug": "lmx600im-w-series-w30-pro-dual-sim-td-lte-in-x600im", + "name": "LMX600IM W Series W30 Pro Dual SIM TD-LTE IN X600IM", + "url": "/v1/smartphones/lmx600im-w-series-w30-pro-dual-sim-td-lte-in-x600im" + }, + { + "slug": "lmx625n-x-series-x6-2019-td-lte-kr-x625n", + "name": "LMX625N X Series X6 2019 TD-LTE KR X625N", + "url": "/v1/smartphones/lmx625n-x-series-x6-2019-td-lte-kr-x625n" + }, + { + "slug": "legacy-lte-a-us-3705a", + "name": "Legacy LTE-A US 3705A", + "url": "/v1/smartphones/legacy-lte-a-us-3705a" + }, + { + "slug": "legacy-s-td-lte-us-3648a", + "name": "Legacy S TD-LTE US 3648A", + "url": "/v1/smartphones/legacy-s-td-lte-us-3648a" + }, + { + "slug": "legacy-td-lte-us-3705as", + "name": "Legacy TD-LTE US 3705AS", + "url": "/v1/smartphones/legacy-td-lte-us-3705as" + }, + { + "slug": "legion-phone-2-pro", + "name": "Legion Phone 2 Pro", + "url": "/v1/smartphones/legion-phone-2-pro" + }, + { + "slug": "legion-phone-2-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l70081", + "name": "Legion Phone 2 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB L70081", + "url": "/v1/smartphones/legion-phone-2-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l70081" + }, + { + "slug": "legion-phone-2-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-l70081", + "name": "Legion Phone 2 Pro 5G Premium Edition Dual SIM TD-LTE CN 512GB L70081", + "url": "/v1/smartphones/legion-phone-2-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-l70081" + }, + { + "slug": "legion-phone-2-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-l70081", + "name": "Legion Phone 2 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB L70081", + "url": "/v1/smartphones/legion-phone-2-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-l70081" + }, + { + "slug": "legion-phone-2-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-l70081", + "name": "Legion Phone 2 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB L70081", + "url": "/v1/smartphones/legion-phone-2-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-l70081" + }, + { + "slug": "legion-phone-2-pro-5g-top-edition-dual-sim-td-lte-cn-256gb-l70081", + "name": "Legion Phone 2 Pro 5G Top Edition Dual SIM TD-LTE CN 256GB L70081", + "url": "/v1/smartphones/legion-phone-2-pro-5g-top-edition-dual-sim-td-lte-cn-256gb-l70081" + }, + { + "slug": "legion-phone-2-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-l70081", + "name": "Legion Phone 2 Pro 5G Top Edition Dual SIM TD-LTE CN 512GB L70081", + "url": "/v1/smartphones/legion-phone-2-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-l70081" + }, + { + "slug": "legion-phone-duel", + "name": "Legion Phone Duel", + "url": "/v1/smartphones/legion-phone-duel" + }, + { + "slug": "legion-phone-duel-2", + "name": "Legion Phone Duel 2", + "url": "/v1/smartphones/legion-phone-duel-2" + }, + { + "slug": "legion-phone-duel-2-5g-premium-edition-global-dual-sim-td-lte-512gb-l70081", + "name": "Legion Phone Duel 2 5G Premium Edition Global Dual SIM TD-LTE 512GB L70081", + "url": "/v1/smartphones/legion-phone-duel-2-5g-premium-edition-global-dual-sim-td-lte-512gb-l70081" + }, + { + "slug": "legion-phone-duel-2-5g-standard-edition-global-dual-sim-td-lte-256gb-l70081", + "name": "Legion Phone Duel 2 5G Standard Edition Global Dual SIM TD-LTE 256GB L70081", + "url": "/v1/smartphones/legion-phone-duel-2-5g-standard-edition-global-dual-sim-td-lte-256gb-l70081" + }, + { + "slug": "legion-phone-duel-5g-premium-edition-global-dual-sim-td-lte-256gb-l79031", + "name": "Legion Phone Duel 5G Premium Edition Global Dual SIM TD-LTE 256GB L79031", + "url": "/v1/smartphones/legion-phone-duel-5g-premium-edition-global-dual-sim-td-lte-256gb-l79031" + }, + { + "slug": "legion-phone-duel-5g-top-edition-global-dual-sim-td-lte-256gb-l79031", + "name": "Legion Phone Duel 5G Top Edition Global Dual SIM TD-LTE 256GB L79031", + "url": "/v1/smartphones/legion-phone-duel-5g-top-edition-global-dual-sim-td-lte-256gb-l79031" + }, + { + "slug": "legion-phone-pro", + "name": "Legion Phone Pro", + "url": "/v1/smartphones/legion-phone-pro" + }, + { + "slug": "legion-phone-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-l79031", + "name": "Legion Phone Pro 5G Premium Edition Dual SIM TD-LTE CN 128GB L79031", + "url": "/v1/smartphones/legion-phone-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-l79031" + }, + { + "slug": "legion-phone-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l79031", + "name": "Legion Phone Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB L79031", + "url": "/v1/smartphones/legion-phone-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l79031" + }, + { + "slug": "legion-phone-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-l79031", + "name": "Legion Phone Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB L79031", + "url": "/v1/smartphones/legion-phone-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-l79031" + }, + { + "slug": "legion-phone-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-l79031", + "name": "Legion Phone Pro 5G Top Edition Dual SIM TD-LTE CN 512GB L79031", + "url": "/v1/smartphones/legion-phone-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-l79031" + }, + { + "slug": "legion-y70", + "name": "Legion Y70", + "url": "/v1/smartphones/legion-y70" + }, + { + "slug": "legion-y90", + "name": "Legion Y90", + "url": "/v1/smartphones/legion-y90" + }, + { + "slug": "leica-leitz-phone-1-5g-td-lte-jp-lp-01", + "name": "Leica Leitz Phone 1 5G TD-LTE JP LP-01", + "url": "/v1/smartphones/leica-leitz-phone-1-5g-td-lte-jp-lp-01" + }, + { + "slug": "lemon-k12-dual-sim-td-lte-cn-xt2081-4", + "name": "Lemon K12 Dual SIM TD-LTE CN XT2081-4", + "url": "/v1/smartphones/lemon-k12-dual-sim-td-lte-cn-xt2081-4" + }, + { + "slug": "libero-3-td-lte-a001zt", + "name": "Libero 3 TD-LTE A001ZT", + "url": "/v1/smartphones/libero-3-td-lte-a001zt" + }, + { + "slug": "libero-s10-td-lte-jp-901zt", + "name": "Libero S10 TD-LTE JP 901ZT", + "url": "/v1/smartphones/libero-s10-td-lte-jp-901zt" + }, + { + "slug": "m2-pro", + "name": "M2 Pro", + "url": "/v1/smartphones/m2-pro" + }, + { + "slug": "m3", + "name": "M3", + "url": "/v1/smartphones/m3" + }, + { + "slug": "m3-pro-5g", + "name": "M3 Pro 5G", + "url": "/v1/smartphones/m3-pro-5g" + }, + { + "slug": "m4-pro", + "name": "M4 Pro", + "url": "/v1/smartphones/m4-pro" + }, + { + "slug": "m4-pro-5g", + "name": "M4 Pro 5G", + "url": "/v1/smartphones/m4-pro-5g" + }, + { + "slug": "m5", + "name": "M5", + "url": "/v1/smartphones/m5" + }, + { + "slug": "m5s", + "name": "M5s", + "url": "/v1/smartphones/m5s" + }, + { + "slug": "m6", + "name": "M6", + "url": "/v1/smartphones/m6" + }, + { + "slug": "m6-pro", + "name": "M6 Pro", + "url": "/v1/smartphones/m6-pro" + }, + { + "slug": "m6s-premium-edition-dual-sim-td-lte-cn-64gb-m712q-b", + "name": "M6S Premium Edition Dual SIM TD-LTE CN 64GB M712Q-B", + "url": "/v1/smartphones/m6s-premium-edition-dual-sim-td-lte-cn-64gb-m712q-b" + }, + { + "slug": "m700an-q6-dual-sim-lte-a-64gb", + "name": "M700AN Q6+ Dual SIM LTE-A 64GB", + "url": "/v1/smartphones/m700an-q6-dual-sim-lte-a-64gb" + }, + { + "slug": "m8-global-dual-sim-td-lte-m813h", + "name": "M8 Global Dual SIM TD-LTE M813H", + "url": "/v1/smartphones/m8-global-dual-sim-td-lte-m813h" + }, + { + "slug": "magic-v", + "name": "Magic V", + "url": "/v1/smartphones/magic-v" + }, + { + "slug": "magic-v2", + "name": "Magic V2", + "url": "/v1/smartphones/magic-v2" + }, + { + "slug": "magic-v3", + "name": "Magic V3", + "url": "/v1/smartphones/magic-v3" + }, + { + "slug": "magic-vs", + "name": "Magic Vs", + "url": "/v1/smartphones/magic-vs" + }, + { + "slug": "magic3", + "name": "Magic3", + "url": "/v1/smartphones/magic3" + }, + { + "slug": "magic3-pro", + "name": "Magic3 Pro", + "url": "/v1/smartphones/magic3-pro" + }, + { + "slug": "magic4", + "name": "Magic4", + "url": "/v1/smartphones/magic4" + }, + { + "slug": "magic4-pro", + "name": "Magic4 Pro", + "url": "/v1/smartphones/magic4-pro" + }, + { + "slug": "magic4-ultimate", + "name": "Magic4 Ultimate", + "url": "/v1/smartphones/magic4-ultimate" + }, + { + "slug": "magic5", + "name": "Magic5", + "url": "/v1/smartphones/magic5" + }, + { + "slug": "magic5-pro", + "name": "Magic5 Pro", + "url": "/v1/smartphones/magic5-pro" + }, + { + "slug": "magic5-ultimate", + "name": "Magic5 Ultimate", + "url": "/v1/smartphones/magic5-ultimate" + }, + { + "slug": "magic6", + "name": "Magic6", + "url": "/v1/smartphones/magic6" + }, + { + "slug": "magic6-pro", + "name": "Magic6 Pro", + "url": "/v1/smartphones/magic6-pro" + }, + { + "slug": "magic6-ultimate", + "name": "Magic6 Ultimate", + "url": "/v1/smartphones/magic6-ultimate" + }, + { + "slug": "magic7", + "name": "Magic7", + "url": "/v1/smartphones/magic7" + }, + { + "slug": "magic7-pro", + "name": "Magic7 Pro", + "url": "/v1/smartphones/magic7-pro" + }, + { + "slug": "magic7-ultimate", + "name": "Magic7 Ultimate", + "url": "/v1/smartphones/magic7-ultimate" + }, + { + "slug": "maimang-10-se", + "name": "Maimang 10 SE", + "url": "/v1/smartphones/maimang-10-se" + }, + { + "slug": "maimang-10-se-5g-dual-sim-td-lte-cn-128gb-tyh611m", + "name": "Maimang 10 SE 5G Dual SIM TD-LTE CN 128GB TYH611M", + "url": "/v1/smartphones/maimang-10-se-5g-dual-sim-td-lte-cn-128gb-tyh611m" + }, + { + "slug": "maimang-7-dual-sim-td-lte-cn-sne-al00", + "name": "Maimang 7 Dual SIM TD-LTE CN SNE-AL00", + "url": "/v1/smartphones/maimang-7-dual-sim-td-lte-cn-sne-al00" + }, + { + "slug": "maimang-8-dual-sim-td-lte-cn-128gb-pot-al10", + "name": "Maimang 8 Dual SIM TD-LTE CN 128GB POT-AL10", + "url": "/v1/smartphones/maimang-8-dual-sim-td-lte-cn-128gb-pot-al10" + }, + { + "slug": "maimang-9", + "name": "Maimang 9", + "url": "/v1/smartphones/maimang-9" + }, + { + "slug": "maimang-9-5g-premium-edition-dual-sim-td-lte-cn-128gb-tnn-an00", + "name": "Maimang 9 5G Premium Edition Dual SIM TD-LTE CN 128GB TNN-AN00", + "url": "/v1/smartphones/maimang-9-5g-premium-edition-dual-sim-td-lte-cn-128gb-tnn-an00" + }, + { + "slug": "maimang-9-5g-standard-edition-dual-sim-td-lte-cn-128gb-tnn-an00", + "name": "Maimang 9 5G Standard Edition Dual SIM TD-LTE CN 128GB TNN-AN00", + "url": "/v1/smartphones/maimang-9-5g-standard-edition-dual-sim-td-lte-cn-128gb-tnn-an00" + }, + { + "slug": "mate-10-pro-dual-sim-td-lte-703hw", + "name": "Mate 10 Pro Dual SIM TD-LTE 703HW", + "url": "/v1/smartphones/mate-10-pro-dual-sim-td-lte-703hw" + }, + { + "slug": "mate-10-pro-standard-edition-dual-sim-td-lte-bla-l29", + "name": "Mate 10 Pro Standard Edition Dual SIM TD-LTE BLA-L29", + "url": "/v1/smartphones/mate-10-pro-standard-edition-dual-sim-td-lte-bla-l29" + }, + { + "slug": "mate-20-dual-sim-td-lte-cn-128gb-hma-al00", + "name": "Mate 20 Dual SIM TD-LTE CN 128GB HMA-AL00", + "url": "/v1/smartphones/mate-20-dual-sim-td-lte-cn-128gb-hma-al00" + }, + { + "slug": "mate-20-dual-sim-td-lte-cn-64gb-hma-tl00", + "name": "Mate 20 Dual SIM TD-LTE CN 64GB HMA-TL00", + "url": "/v1/smartphones/mate-20-dual-sim-td-lte-cn-64gb-hma-tl00" + }, + { + "slug": "mate-20-lite-dual-sim-lte-a-emea-sne-lx1-sne-l21", + "name": "Mate 20 Lite Dual SIM LTE-A EMEA SNE-LX1 / SNE-L21", + "url": "/v1/smartphones/mate-20-lite-dual-sim-lte-a-emea-sne-lx1-sne-l21" + }, + { + "slug": "mate-20-lite-dual-sim-lte-a-latam-sne-lx3-sne-l23", + "name": "Mate 20 Lite Dual SIM LTE-A LATAM SNE-LX3 / SNE-L23", + "url": "/v1/smartphones/mate-20-lite-dual-sim-lte-a-latam-sne-lx3-sne-l23" + }, + { + "slug": "mate-20-lite-dual-sim-td-lte-apac-sne-lx2-sne-l22", + "name": "Mate 20 Lite Dual SIM TD-LTE APAC SNE-LX2 / SNE-L22", + "url": "/v1/smartphones/mate-20-lite-dual-sim-td-lte-apac-sne-lx2-sne-l22" + }, + { + "slug": "mate-20-lite-lte-a-emea-sne-l01", + "name": "Mate 20 Lite LTE-A EMEA SNE-L01", + "url": "/v1/smartphones/mate-20-lite-lte-a-emea-sne-l01" + }, + { + "slug": "mate-20-lite-lte-a-latam-sne-l03", + "name": "Mate 20 Lite LTE-A LATAM SNE-L03", + "url": "/v1/smartphones/mate-20-lite-lte-a-latam-sne-l03" + }, + { + "slug": "mate-20-premium-edition-global-dual-sim-td-lte-hma-lx9-hma-l29", + "name": "Mate 20 Premium Edition Global Dual SIM TD-LTE HMA-LX9 / HMA-L29", + "url": "/v1/smartphones/mate-20-premium-edition-global-dual-sim-td-lte-hma-lx9-hma-l29" + }, + { + "slug": "mate-20-pro-global-dual-sim-td-lte-128gb-lya-lx9-lya-l29", + "name": "Mate 20 Pro Global Dual SIM TD-LTE 128GB LYA-LX9 / LYA-L29", + "url": "/v1/smartphones/mate-20-pro-global-dual-sim-td-lte-128gb-lya-lx9-lya-l29" + }, + { + "slug": "mate-20-pro-global-td-lte-128gb-lya-l09", + "name": "Mate 20 Pro Global TD-LTE 128GB LYA-L09", + "url": "/v1/smartphones/mate-20-pro-global-td-lte-128gb-lya-l09" + }, + { + "slug": "mate-20-pro-premium-edition-dual-sim-td-lte-cn-256gb-lya-al00", + "name": "Mate 20 Pro Premium Edition Dual SIM TD-LTE CN 256GB LYA-AL00", + "url": "/v1/smartphones/mate-20-pro-premium-edition-dual-sim-td-lte-cn-256gb-lya-al00" + }, + { + "slug": "mate-20-pro-premium-edition-dual-sim-td-lte-cn-256gb-lya-tl00", + "name": "Mate 20 Pro Premium Edition Dual SIM TD-LTE CN 256GB LYA-TL00", + "url": "/v1/smartphones/mate-20-pro-premium-edition-dual-sim-td-lte-cn-256gb-lya-tl00" + }, + { + "slug": "mate-20-pro-standard-edition-dual-sim-td-lte-cn-128gb-lya-al10", + "name": "Mate 20 Pro Standard Edition Dual SIM TD-LTE CN 128GB LYA-AL10", + "url": "/v1/smartphones/mate-20-pro-standard-edition-dual-sim-td-lte-cn-128gb-lya-al10" + }, + { + "slug": "mate-20-pro-td-lte-na-128gb-lya-l0c", + "name": "Mate 20 Pro TD-LTE NA 128GB LYA-L0C", + "url": "/v1/smartphones/mate-20-pro-td-lte-na-128gb-lya-l0c" + }, + { + "slug": "mate-20-rs-porsche-design-dual-sim-td-lte-256gb-lya-al00p", + "name": "Mate 20 RS Porsche Design Dual SIM TD-LTE 256GB LYA-AL00P", + "url": "/v1/smartphones/mate-20-rs-porsche-design-dual-sim-td-lte-256gb-lya-al00p" + }, + { + "slug": "mate-20-rs-porsche-design-global-dual-sim-td-lte-256gb-lya-l29", + "name": "Mate 20 RS Porsche Design Global Dual SIM TD-LTE 256GB LYA-L29", + "url": "/v1/smartphones/mate-20-rs-porsche-design-global-dual-sim-td-lte-256gb-lya-l29" + }, + { + "slug": "mate-20-x-dual-sim-td-lte-cn-128gb-evr-al00", + "name": "Mate 20 X Dual SIM TD-LTE CN 128GB EVR-AL00", + "url": "/v1/smartphones/mate-20-x-dual-sim-td-lte-cn-128gb-evr-al00" + }, + { + "slug": "mate-20-x-dual-sim-td-lte-cn-256gb-evr-al00", + "name": "Mate 20 X Dual SIM TD-LTE CN 256GB EVR-AL00", + "url": "/v1/smartphones/mate-20-x-dual-sim-td-lte-cn-256gb-evr-al00" + }, + { + "slug": "mate-20-x-global-dual-sim-td-lte-128gb-evr-l29", + "name": "Mate 20 X Global Dual SIM TD-LTE 128GB EVR-L29", + "url": "/v1/smartphones/mate-20-x-global-dual-sim-td-lte-128gb-evr-l29" + }, + { + "slug": "mate-40-5g-global-dual-sim-td-lte-128gb-oce-an10", + "name": "Mate 40 5G Global Dual SIM TD-LTE 128GB OCE-AN10", + "url": "/v1/smartphones/mate-40-5g-global-dual-sim-td-lte-128gb-oce-an10" + }, + { + "slug": "mate-40-5g-global-dual-sim-td-lte-256gb-oce-an10", + "name": "Mate 40 5G Global Dual SIM TD-LTE 256GB OCE-AN10", + "url": "/v1/smartphones/mate-40-5g-global-dual-sim-td-lte-256gb-oce-an10" + }, + { + "slug": "mate-40-pro-5g-dual-sim-td-lte-cn-128gb-noh-an00", + "name": "Mate 40 Pro 5G Dual SIM TD-LTE CN 128GB NOH-AN00", + "url": "/v1/smartphones/mate-40-pro-5g-dual-sim-td-lte-cn-128gb-noh-an00" + }, + { + "slug": "mate-40-pro-5g-dual-sim-td-lte-cn-256gb-noh-an00", + "name": "Mate 40 Pro 5G Dual SIM TD-LTE CN 256GB NOH-AN00", + "url": "/v1/smartphones/mate-40-pro-5g-dual-sim-td-lte-cn-256gb-noh-an00" + }, + { + "slug": "mate-40-pro-5g-dual-sim-td-lte-cn-256gb-noh-tn00", + "name": "Mate 40 Pro 5G Dual SIM TD-LTE CN 256GB NOH-TN00", + "url": "/v1/smartphones/mate-40-pro-5g-dual-sim-td-lte-cn-256gb-noh-tn00" + }, + { + "slug": "mate-40-pro-5g-dual-sim-td-lte-cn-512gb-noh-an00", + "name": "Mate 40 Pro 5G Dual SIM TD-LTE CN 512GB NOH-AN00", + "url": "/v1/smartphones/mate-40-pro-5g-dual-sim-td-lte-cn-512gb-noh-an00" + }, + { + "slug": "mate-40-pro-5g-global-dual-sim-td-lte-256gb-noh-nx9-noh-n29", + "name": "Mate 40 Pro 5G Global Dual SIM TD-LTE 256GB NOH-NX9 / NOH-N29", + "url": "/v1/smartphones/mate-40-pro-5g-global-dual-sim-td-lte-256gb-noh-nx9-noh-n29" + }, + { + "slug": "mate-40-pro-5g-global-td-lte-256gb-noh-nx9-noh-n09", + "name": "Mate 40 Pro 5G Global TD-LTE 256GB NOH-NX9 / NOH-N09", + "url": "/v1/smartphones/mate-40-pro-5g-global-td-lte-256gb-noh-nx9-noh-n09" + }, + { + "slug": "mate-40-pro-5g-global-dual-sim-td-lte-256gb-nop-an00", + "name": "Mate 40 Pro+ 5G Global Dual SIM TD-LTE 256GB NOP-AN00", + "url": "/v1/smartphones/mate-40-pro-5g-global-dual-sim-td-lte-256gb-nop-an00" + }, + { + "slug": "mate-40-rs-5g-porsche-design-collector-edition-global-dual-sim-td-lte-512gb-nop-an00", + "name": "Mate 40 RS 5G PORSCHE DESIGN Collector Edition Global Dual SIM TD-LTE 512GB NOP-AN00", + "url": "/v1/smartphones/mate-40-rs-5g-porsche-design-collector-edition-global-dual-sim-td-lte-512gb-nop-an00" + }, + { + "slug": "mate-40-rs-5g-porsche-design-global-dual-sim-td-lte-256gb-nop-an00p", + "name": "Mate 40 RS 5G PORSCHE DESIGN Global Dual SIM TD-LTE 256GB NOP-AN00P", + "url": "/v1/smartphones/mate-40-rs-5g-porsche-design-global-dual-sim-td-lte-256gb-nop-an00p" + }, + { + "slug": "mate-40-rs-5g-porsche-design-global-dual-sim-td-lte-512gb-nop-an00p", + "name": "Mate 40 RS 5G PORSCHE DESIGN Global Dual SIM TD-LTE 512GB NOP-AN00P", + "url": "/v1/smartphones/mate-40-rs-5g-porsche-design-global-dual-sim-td-lte-512gb-nop-an00p" + }, + { + "slug": "mate-50", + "name": "Mate 50", + "url": "/v1/smartphones/mate-50" + }, + { + "slug": "mate-50-pro", + "name": "Mate 50 Pro", + "url": "/v1/smartphones/mate-50-pro" + }, + { + "slug": "mate-50-rs-porsche-design", + "name": "Mate 50 RS PORSCHE DESIGN", + "url": "/v1/smartphones/mate-50-rs-porsche-design" + }, + { + "slug": "mate-50e", + "name": "Mate 50E", + "url": "/v1/smartphones/mate-50e" + }, + { + "slug": "mate-60", + "name": "Mate 60", + "url": "/v1/smartphones/mate-60" + }, + { + "slug": "mate-60-pro", + "name": "Mate 60 Pro", + "url": "/v1/smartphones/mate-60-pro" + }, + { + "slug": "mate-70", + "name": "Mate 70", + "url": "/v1/smartphones/mate-70" + }, + { + "slug": "mate-70-pro", + "name": "Mate 70 Pro", + "url": "/v1/smartphones/mate-70-pro" + }, + { + "slug": "mate-rs-porsche-design-dual-sim-td-lte-256gb-neo-al00", + "name": "Mate RS Porsche Design Dual SIM TD-LTE 256GB NEO-AL00", + "url": "/v1/smartphones/mate-rs-porsche-design-dual-sim-td-lte-256gb-neo-al00" + }, + { + "slug": "mate-rs-porsche-design-dual-sim-td-lte-512gb-neo-al00", + "name": "Mate RS Porsche Design Dual SIM TD-LTE 512GB NEO-AL00", + "url": "/v1/smartphones/mate-rs-porsche-design-dual-sim-td-lte-512gb-neo-al00" + }, + { + "slug": "mate-x-dual-sim-5g-td-lte-cn-512gb-tah-an00-tah-tn00", + "name": "Mate X Dual SIM 5G TD-LTE CN 512GB TAH-AN00 / TAH-TN00", + "url": "/v1/smartphones/mate-x-dual-sim-5g-td-lte-cn-512gb-tah-an00-tah-tn00" + }, + { + "slug": "mate-x-global-dual-sim-5g-td-lte-512gb-tah-n29", + "name": "Mate X Global Dual SIM 5G TD-LTE 512GB TAH-N29", + "url": "/v1/smartphones/mate-x-global-dual-sim-5g-td-lte-512gb-tah-n29" + }, + { + "slug": "mate-x2", + "name": "Mate X2", + "url": "/v1/smartphones/mate-x2" + }, + { + "slug": "mate-x2-global-dual-sim-5g-td-lte-256gb-tet-an00", + "name": "Mate X2 Global Dual SIM 5G TD-LTE 256GB TET-AN00", + "url": "/v1/smartphones/mate-x2-global-dual-sim-5g-td-lte-256gb-tet-an00" + }, + { + "slug": "mate-x2-global-dual-sim-5g-td-lte-512gb-tet-an00", + "name": "Mate X2 Global Dual SIM 5G TD-LTE 512GB TET-AN00", + "url": "/v1/smartphones/mate-x2-global-dual-sim-5g-td-lte-512gb-tet-an00" + }, + { + "slug": "mate-x6", + "name": "Mate X6", + "url": "/v1/smartphones/mate-x6" + }, + { + "slug": "mate-xt", + "name": "Mate XT", + "url": "/v1/smartphones/mate-xt" + }, + { + "slug": "mate-xs-2", + "name": "Mate Xs 2", + "url": "/v1/smartphones/mate-xs-2" + }, + { + "slug": "mi-10", + "name": "Mi 10", + "url": "/v1/smartphones/mi-10" + }, + { + "slug": "mi-10-5g-dual-sim-td-lte-in-128gb-m2001j2i", + "name": "Mi 10 5G Dual SIM TD-LTE IN 128GB M2001J2I", + "url": "/v1/smartphones/mi-10-5g-dual-sim-td-lte-in-128gb-m2001j2i" + }, + { + "slug": "mi-10-5g-dual-sim-td-lte-in-256gb-m2001j2i", + "name": "Mi 10 5G Dual SIM TD-LTE IN 256GB M2001J2I", + "url": "/v1/smartphones/mi-10-5g-dual-sim-td-lte-in-256gb-m2001j2i" + }, + { + "slug": "mi-10-5g-global-td-lte-128gb-m2001j2g", + "name": "Mi 10 5G Global TD-LTE 128GB M2001J2G", + "url": "/v1/smartphones/mi-10-5g-global-td-lte-128gb-m2001j2g" + }, + { + "slug": "mi-10-5g-global-td-lte-256gb-m2001j2g", + "name": "Mi 10 5G Global TD-LTE 256GB M2001J2G", + "url": "/v1/smartphones/mi-10-5g-global-td-lte-256gb-m2001j2g" + }, + { + "slug": "mi-10-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001j2e-m2001j2c", + "name": "Mi 10 5G Premium Edition Dual SIM TD-LTE CN 256GB M2001J2E / M2001J2C", + "url": "/v1/smartphones/mi-10-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001j2e-m2001j2c" + }, + { + "slug": "mi-10-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2001j2e-m2001j2c", + "name": "Mi 10 5G Standard Edition Dual SIM TD-LTE CN 128GB M2001J2E / M2001J2C", + "url": "/v1/smartphones/mi-10-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2001j2e-m2001j2c" + }, + { + "slug": "mi-10-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2001j2e-m2001j2c", + "name": "Mi 10 5G Standard Edition Dual SIM TD-LTE CN 256GB M2001J2E / M2001J2C", + "url": "/v1/smartphones/mi-10-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2001j2e-m2001j2c" + }, + { + "slug": "mi-10-lite", + "name": "Mi 10 Lite", + "url": "/v1/smartphones/mi-10-lite" + }, + { + "slug": "mi-10-lite-5g-premium-edition-global-dual-sim-td-lte-256gb-m2002j9g", + "name": "Mi 10 Lite 5G Premium Edition Global Dual SIM TD-LTE 256GB M2002J9G", + "url": "/v1/smartphones/mi-10-lite-5g-premium-edition-global-dual-sim-td-lte-256gb-m2002j9g" + }, + { + "slug": "mi-10-lite-5g-standard-edition-global-dual-sim-td-lte-128gb-m2002j9g", + "name": "Mi 10 Lite 5G Standard Edition Global Dual SIM TD-LTE 128GB M2002J9G", + "url": "/v1/smartphones/mi-10-lite-5g-standard-edition-global-dual-sim-td-lte-128gb-m2002j9g" + }, + { + "slug": "mi-10-lite-5g-standard-edition-global-dual-sim-td-lte-64gb-m2002j9g", + "name": "Mi 10 Lite 5G Standard Edition Global Dual SIM TD-LTE 64GB M2002J9G", + "url": "/v1/smartphones/mi-10-lite-5g-standard-edition-global-dual-sim-td-lte-64gb-m2002j9g" + }, + { + "slug": "mi-10-lite-5g-td-lte-kr-128gb-m2002j9s", + "name": "Mi 10 Lite 5G TD-LTE KR 128GB M2002J9S", + "url": "/v1/smartphones/mi-10-lite-5g-td-lte-kr-128gb-m2002j9s" + }, + { + "slug": "mi-10-lite-5g-xig01-td-lte-jp-128gb-m2002j9r", + "name": "Mi 10 Lite 5G XIG01 TD-LTE JP 128GB M2002J9R", + "url": "/v1/smartphones/mi-10-lite-5g-xig01-td-lte-jp-128gb-m2002j9r" + }, + { + "slug": "mi-10-lite-zoom", + "name": "Mi 10 Lite Zoom", + "url": "/v1/smartphones/mi-10-lite-zoom" + }, + { + "slug": "mi-10-lite-zoom-5g-dual-sim-td-lte-cn-64gb-m2002j9c", + "name": "Mi 10 Lite Zoom 5G Dual SIM TD-LTE CN 64GB M2002J9C", + "url": "/v1/smartphones/mi-10-lite-zoom-5g-dual-sim-td-lte-cn-64gb-m2002j9c" + }, + { + "slug": "mi-10-pro", + "name": "Mi 10 Pro", + "url": "/v1/smartphones/mi-10-pro" + }, + { + "slug": "mi-10-pro-5g-global-td-lte-256gb-m2001j1g", + "name": "Mi 10 Pro 5G Global TD-LTE 256GB M2001J1G", + "url": "/v1/smartphones/mi-10-pro-5g-global-td-lte-256gb-m2001j1g" + }, + { + "slug": "mi-10-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001j1e-m2001j1c", + "name": "Mi 10 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB M2001J1E / M2001J1C", + "url": "/v1/smartphones/mi-10-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001j1e-m2001j1c" + }, + { + "slug": "mi-10-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2001j1e-m2001j1c", + "name": "Mi 10 Pro 5G Premium Edition Dual SIM TD-LTE CN 512GB M2001J1E / M2001J1C", + "url": "/v1/smartphones/mi-10-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2001j1e-m2001j1c" + }, + { + "slug": "mi-10-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2001j1e-m2001j1c", + "name": "Mi 10 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB M2001J1E / M2001J1C", + "url": "/v1/smartphones/mi-10-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2001j1e-m2001j1c" + }, + { + "slug": "mi-10-ultra-premium-edition", + "name": "Mi 10 Ultra Premium Edition", + "url": "/v1/smartphones/mi-10-ultra-premium-edition" + }, + { + "slug": "mi-10-ultra-premium-edition-dual-sim-td-lte-cn-256gb-m2007j1sc", + "name": "Mi 10 Ultra Premium Edition Dual SIM TD-LTE CN 256GB M2007J1SC", + "url": "/v1/smartphones/mi-10-ultra-premium-edition-dual-sim-td-lte-cn-256gb-m2007j1sc" + }, + { + "slug": "mi-10-ultra-standard-edition", + "name": "Mi 10 Ultra Standard Edition", + "url": "/v1/smartphones/mi-10-ultra-standard-edition" + }, + { + "slug": "mi-10-ultra-standard-edition-dual-sim-td-lte-cn-128gb-m2007j1sc", + "name": "Mi 10 Ultra Standard Edition Dual SIM TD-LTE CN 128GB M2007J1SC", + "url": "/v1/smartphones/mi-10-ultra-standard-edition-dual-sim-td-lte-cn-128gb-m2007j1sc" + }, + { + "slug": "mi-10-ultra-standard-edition-dual-sim-td-lte-cn-256gb-m2007j1sc", + "name": "Mi 10 Ultra Standard Edition Dual SIM TD-LTE CN 256GB M2007J1SC", + "url": "/v1/smartphones/mi-10-ultra-standard-edition-dual-sim-td-lte-cn-256gb-m2007j1sc" + }, + { + "slug": "mi-10-youth-premium-edition", + "name": "Mi 10 Youth Premium Edition", + "url": "/v1/smartphones/mi-10-youth-premium-edition" + }, + { + "slug": "mi-10-youth-premium-edition-5g-dual-sim-td-lte-cn-128gb-m2002j9e", + "name": "Mi 10 Youth Premium Edition 5G Dual SIM TD-LTE CN 128GB M2002J9E", + "url": "/v1/smartphones/mi-10-youth-premium-edition-5g-dual-sim-td-lte-cn-128gb-m2002j9e" + }, + { + "slug": "mi-10-youth-premium-edition-5g-dual-sim-td-lte-cn-256gb-m2002j9e-mi-10-lite", + "name": "Mi 10 Youth Premium Edition 5G Dual SIM TD-LTE CN 256GB M2002J9E / Mi 10 Lite", + "url": "/v1/smartphones/mi-10-youth-premium-edition-5g-dual-sim-td-lte-cn-256gb-m2002j9e-mi-10-lite" + }, + { + "slug": "mi-10-youth-standard-edition", + "name": "Mi 10 Youth Standard Edition", + "url": "/v1/smartphones/mi-10-youth-standard-edition" + }, + { + "slug": "mi-10-youth-standard-edition-5g-dual-sim-td-lte-cn-128gb-m2002j9e", + "name": "Mi 10 Youth Standard Edition 5G Dual SIM TD-LTE CN 128GB M2002J9E", + "url": "/v1/smartphones/mi-10-youth-standard-edition-5g-dual-sim-td-lte-cn-128gb-m2002j9e" + }, + { + "slug": "mi-10-youth-standard-edition-5g-dual-sim-td-lte-cn-64gb-m2002j9e", + "name": "Mi 10 Youth Standard Edition 5G Dual SIM TD-LTE CN 64GB M2002J9E", + "url": "/v1/smartphones/mi-10-youth-standard-edition-5g-dual-sim-td-lte-cn-64gb-m2002j9e" + }, + { + "slug": "mi-10s", + "name": "Mi 10S", + "url": "/v1/smartphones/mi-10s" + }, + { + "slug": "mi-10s-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102j2sc", + "name": "Mi 10S 5G Premium Edition Dual SIM TD-LTE CN 256GB M2102J2SC", + "url": "/v1/smartphones/mi-10s-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102j2sc" + }, + { + "slug": "mi-10s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2102j2sc", + "name": "Mi 10S 5G Standard Edition Dual SIM TD-LTE CN 128GB M2102J2SC", + "url": "/v1/smartphones/mi-10s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2102j2sc" + }, + { + "slug": "mi-10s-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102j2sc", + "name": "Mi 10S 5G Standard Edition Dual SIM TD-LTE CN 256GB M2102J2SC", + "url": "/v1/smartphones/mi-10s-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102j2sc" + }, + { + "slug": "mi-10t", + "name": "Mi 10T", + "url": "/v1/smartphones/mi-10t" + }, + { + "slug": "mi-10t-5g-premium-edition-dual-sim-td-lte-in-128gb-m2007j3sp", + "name": "Mi 10T 5G Premium Edition Dual SIM TD-LTE IN 128GB M2007J3SP", + "url": "/v1/smartphones/mi-10t-5g-premium-edition-dual-sim-td-lte-in-128gb-m2007j3sp" + }, + { + "slug": "mi-10t-5g-premium-edition-global-dual-sim-td-lte-128gb-m2007j3sy", + "name": "Mi 10T 5G Premium Edition Global Dual SIM TD-LTE 128GB M2007J3SY", + "url": "/v1/smartphones/mi-10t-5g-premium-edition-global-dual-sim-td-lte-128gb-m2007j3sy" + }, + { + "slug": "mi-10t-5g-standard-edition-dual-sim-td-lte-in-128gb-m2007j3sp", + "name": "Mi 10T 5G Standard Edition Dual SIM TD-LTE IN 128GB M2007J3SP", + "url": "/v1/smartphones/mi-10t-5g-standard-edition-dual-sim-td-lte-in-128gb-m2007j3sp" + }, + { + "slug": "mi-10t-5g-standard-edition-global-dual-sim-td-lte-128gb-m2007j3sy", + "name": "Mi 10T 5G Standard Edition Global Dual SIM TD-LTE 128GB M2007J3SY", + "url": "/v1/smartphones/mi-10t-5g-standard-edition-global-dual-sim-td-lte-128gb-m2007j3sy" + }, + { + "slug": "mi-10t-lite", + "name": "Mi 10T Lite", + "url": "/v1/smartphones/mi-10t-lite" + }, + { + "slug": "mi-10t-pro", + "name": "Mi 10T Pro", + "url": "/v1/smartphones/mi-10t-pro" + }, + { + "slug": "mi-10t-pro-5g-dual-sim-td-lte-in-128gb-m2007j3si", + "name": "Mi 10T Pro 5G Dual SIM TD-LTE IN 128GB M2007J3SI", + "url": "/v1/smartphones/mi-10t-pro-5g-dual-sim-td-lte-in-128gb-m2007j3si" + }, + { + "slug": "mi-10t-pro-5g-global-dual-sim-td-lte-128gb-m2007j3sg", + "name": "Mi 10T Pro 5G Global Dual SIM TD-LTE 128GB M2007J3SG", + "url": "/v1/smartphones/mi-10t-pro-5g-global-dual-sim-td-lte-128gb-m2007j3sg" + }, + { + "slug": "mi-10t-pro-5g-global-dual-sim-td-lte-256gb-m2007j3sg", + "name": "Mi 10T Pro 5G Global Dual SIM TD-LTE 256GB M2007J3SG", + "url": "/v1/smartphones/mi-10t-pro-5g-global-dual-sim-td-lte-256gb-m2007j3sg" + }, + { + "slug": "mi-10i", + "name": "Mi 10i", + "url": "/v1/smartphones/mi-10i" + }, + { + "slug": "mi-11", + "name": "Mi 11", + "url": "/v1/smartphones/mi-11" + }, + { + "slug": "mi-11-5g-global-dual-sim-td-lte-128gb-m2011k2g", + "name": "Mi 11 5G Global Dual SIM TD-LTE 128GB M2011K2G", + "url": "/v1/smartphones/mi-11-5g-global-dual-sim-td-lte-128gb-m2011k2g" + }, + { + "slug": "mi-11-5g-global-dual-sim-td-lte-256gb-m2011k2g", + "name": "Mi 11 5G Global Dual SIM TD-LTE 256GB M2011K2G", + "url": "/v1/smartphones/mi-11-5g-global-dual-sim-td-lte-256gb-m2011k2g" + }, + { + "slug": "mi-11-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2011k2c", + "name": "Mi 11 5G Premium Edition Dual SIM TD-LTE CN 256GB M2011K2C", + "url": "/v1/smartphones/mi-11-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2011k2c" + }, + { + "slug": "mi-11-5g-special-edition-dual-sim-td-lte-cn-256gb-m2011k2c", + "name": "Mi 11 5G Special Edition Dual SIM TD-LTE CN 256GB M2011K2C", + "url": "/v1/smartphones/mi-11-5g-special-edition-dual-sim-td-lte-cn-256gb-m2011k2c" + }, + { + "slug": "mi-11-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2011k2c", + "name": "Mi 11 5G Standard Edition Dual SIM TD-LTE CN 128GB M2011K2C", + "url": "/v1/smartphones/mi-11-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2011k2c" + }, + { + "slug": "mi-11-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2011k2c", + "name": "Mi 11 5G Standard Edition Dual SIM TD-LTE CN 256GB M2011K2C", + "url": "/v1/smartphones/mi-11-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2011k2c" + }, + { + "slug": "mi-11-lite", + "name": "Mi 11 Lite", + "url": "/v1/smartphones/mi-11-lite" + }, + { + "slug": "mi-11-lite-ne", + "name": "Mi 11 Lite NE", + "url": "/v1/smartphones/mi-11-lite-ne" + }, + { + "slug": "mi-11-pro", + "name": "Mi 11 Pro", + "url": "/v1/smartphones/mi-11-pro" + }, + { + "slug": "mi-11-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102k1ac", + "name": "Mi 11 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB M2102K1AC", + "url": "/v1/smartphones/mi-11-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102k1ac" + }, + { + "slug": "mi-11-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2102k1ac", + "name": "Mi 11 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB M2102K1AC", + "url": "/v1/smartphones/mi-11-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2102k1ac" + }, + { + "slug": "mi-11-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102k1ac", + "name": "Mi 11 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB M2102K1AC", + "url": "/v1/smartphones/mi-11-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102k1ac" + }, + { + "slug": "mi-11-ultra", + "name": "Mi 11 Ultra", + "url": "/v1/smartphones/mi-11-ultra" + }, + { + "slug": "mi-11-ultra-5g-global-dual-sim-td-lte-256gb-m2102k1g", + "name": "Mi 11 Ultra 5G Global Dual SIM TD-LTE 256GB M2102K1G", + "url": "/v1/smartphones/mi-11-ultra-5g-global-dual-sim-td-lte-256gb-m2102k1g" + }, + { + "slug": "mi-11-ultra-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102k1c", + "name": "Mi 11 Ultra 5G Premium Edition Dual SIM TD-LTE CN 256GB M2102K1C", + "url": "/v1/smartphones/mi-11-ultra-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102k1c" + }, + { + "slug": "mi-11-ultra-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2102k1c", + "name": "Mi 11 Ultra 5G Premium Edition Dual SIM TD-LTE CN 512GB M2102K1C", + "url": "/v1/smartphones/mi-11-ultra-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2102k1c" + }, + { + "slug": "mi-11-ultra-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102k1c", + "name": "Mi 11 Ultra 5G Standard Edition Dual SIM TD-LTE CN 256GB M2102K1C", + "url": "/v1/smartphones/mi-11-ultra-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102k1c" + }, + { + "slug": "mi-11-youth", + "name": "Mi 11 Youth", + "url": "/v1/smartphones/mi-11-youth" + }, + { + "slug": "mi-11-youth-vitality-edition", + "name": "Mi 11 Youth Vitality Edition", + "url": "/v1/smartphones/mi-11-youth-vitality-edition" + }, + { + "slug": "mi-11t", + "name": "Mi 11T", + "url": "/v1/smartphones/mi-11t" + }, + { + "slug": "mi-11t-5g-global-dual-sim-td-lte-128gb-21081111rg", + "name": "Mi 11T 5G Global Dual SIM TD-LTE 128GB 21081111RG", + "url": "/v1/smartphones/mi-11t-5g-global-dual-sim-td-lte-128gb-21081111rg" + }, + { + "slug": "mi-11t-5g-global-dual-sim-td-lte-256gb-21081111rg", + "name": "Mi 11T 5G Global Dual SIM TD-LTE 256GB 21081111RG", + "url": "/v1/smartphones/mi-11t-5g-global-dual-sim-td-lte-256gb-21081111rg" + }, + { + "slug": "mi-11t-pro", + "name": "Mi 11T Pro", + "url": "/v1/smartphones/mi-11t-pro" + }, + { + "slug": "mi-11t-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-2107113si", + "name": "Mi 11T Pro 5G Premium Edition Dual SIM TD-LTE IN 256GB 2107113SI", + "url": "/v1/smartphones/mi-11t-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-2107113si" + }, + { + "slug": "mi-11t-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-2107113sg", + "name": "Mi 11T Pro 5G Premium Edition Global Dual SIM TD-LTE 256GB 2107113SG", + "url": "/v1/smartphones/mi-11t-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-2107113sg" + }, + { + "slug": "mi-11t-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-2107113si", + "name": "Mi 11T Pro 5G Standard Edition Dual SIM TD-LTE IN 128GB 2107113SI", + "url": "/v1/smartphones/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-2107113si" + }, + { + "slug": "mi-11t-pro-5g-standard-edition-dual-sim-td-lte-in-256gb-2107113si", + "name": "Mi 11T Pro 5G Standard Edition Dual SIM TD-LTE IN 256GB 2107113SI", + "url": "/v1/smartphones/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-in-256gb-2107113si" + }, + { + "slug": "mi-11t-pro-5g-standard-edition-dual-sim-td-lte-jp-128gb-2107113sr", + "name": "Mi 11T Pro 5G Standard Edition Dual SIM TD-LTE JP 128GB 2107113SR", + "url": "/v1/smartphones/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-jp-128gb-2107113sr" + }, + { + "slug": "mi-11t-pro-5g-standard-edition-dual-sim-td-lte-jp-256gb-2107113sr", + "name": "Mi 11T Pro 5G Standard Edition Dual SIM TD-LTE JP 256GB 2107113SR", + "url": "/v1/smartphones/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-jp-256gb-2107113sr" + }, + { + "slug": "mi-11t-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-2107113sg", + "name": "Mi 11T Pro 5G Standard Edition Global Dual SIM TD-LTE 128GB 2107113SG", + "url": "/v1/smartphones/mi-11t-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-2107113sg" + }, + { + "slug": "mi-11t-pro-5g-standard-edition-global-dual-sim-td-lte-256gb-2107113sg", + "name": "Mi 11T Pro 5G Standard Edition Global Dual SIM TD-LTE 256GB 2107113SG", + "url": "/v1/smartphones/mi-11t-pro-5g-standard-edition-global-dual-sim-td-lte-256gb-2107113sg" + }, + { + "slug": "mi-11x", + "name": "Mi 11X", + "url": "/v1/smartphones/mi-11x" + }, + { + "slug": "mi-11x-5g-premium-edition-dual-sim-td-lte-in-128gb-m2012k11ai", + "name": "Mi 11X 5G Premium Edition Dual SIM TD-LTE IN 128GB M2012K11AI", + "url": "/v1/smartphones/mi-11x-5g-premium-edition-dual-sim-td-lte-in-128gb-m2012k11ai" + }, + { + "slug": "mi-11x-5g-standard-edition-dual-sim-td-lte-in-128gb-m2012k11ai", + "name": "Mi 11X 5G Standard Edition Dual SIM TD-LTE IN 128GB M2012K11AI", + "url": "/v1/smartphones/mi-11x-5g-standard-edition-dual-sim-td-lte-in-128gb-m2012k11ai" + }, + { + "slug": "mi-11x-pro", + "name": "Mi 11X Pro", + "url": "/v1/smartphones/mi-11x-pro" + }, + { + "slug": "mi-11x-pro-5g-dual-sim-td-lte-in-128gb-m2012k11i", + "name": "Mi 11X Pro 5G Dual SIM TD-LTE IN 128GB M2012K11I", + "url": "/v1/smartphones/mi-11x-pro-5g-dual-sim-td-lte-in-128gb-m2012k11i" + }, + { + "slug": "mi-11x-pro-5g-dual-sim-td-lte-in-256gb-m2012k11i", + "name": "Mi 11X Pro 5G Dual SIM TD-LTE IN 256GB M2012K11I", + "url": "/v1/smartphones/mi-11x-pro-5g-dual-sim-td-lte-in-256gb-m2012k11i" + }, + { + "slug": "mi-11i", + "name": "Mi 11i", + "url": "/v1/smartphones/mi-11i" + }, + { + "slug": "mi-11i-5g-global-dual-sim-td-lte-128gb-m2012k11g", + "name": "Mi 11i 5G Global Dual SIM TD-LTE 128GB M2012K11G", + "url": "/v1/smartphones/mi-11i-5g-global-dual-sim-td-lte-128gb-m2012k11g" + }, + { + "slug": "mi-11i-5g-global-dual-sim-td-lte-256gb-m2012k11g", + "name": "Mi 11i 5G Global Dual SIM TD-LTE 256GB M2012K11G", + "url": "/v1/smartphones/mi-11i-5g-global-dual-sim-td-lte-256gb-m2012k11g" + }, + { + "slug": "mi-12", + "name": "Mi 12", + "url": "/v1/smartphones/mi-12" + }, + { + "slug": "mi-12-lite", + "name": "Mi 12 Lite", + "url": "/v1/smartphones/mi-12-lite" + }, + { + "slug": "mi-12-pro", + "name": "Mi 12 Pro", + "url": "/v1/smartphones/mi-12-pro" + }, + { + "slug": "mi-12s", + "name": "Mi 12S", + "url": "/v1/smartphones/mi-12s" + }, + { + "slug": "mi-12s-pro", + "name": "Mi 12S Pro", + "url": "/v1/smartphones/mi-12s-pro" + }, + { + "slug": "mi-12s-ultra", + "name": "Mi 12S Ultra", + "url": "/v1/smartphones/mi-12s-ultra" + }, + { + "slug": "mi-12t", + "name": "Mi 12T", + "url": "/v1/smartphones/mi-12t" + }, + { + "slug": "mi-12t-pro", + "name": "Mi 12T Pro", + "url": "/v1/smartphones/mi-12t-pro" + }, + { + "slug": "mi-12x", + "name": "Mi 12X", + "url": "/v1/smartphones/mi-12x" + }, + { + "slug": "mi-13", + "name": "Mi 13", + "url": "/v1/smartphones/mi-13" + }, + { + "slug": "mi-13-lite", + "name": "Mi 13 Lite", + "url": "/v1/smartphones/mi-13-lite" + }, + { + "slug": "mi-13-pro", + "name": "Mi 13 Pro", + "url": "/v1/smartphones/mi-13-pro" + }, + { + "slug": "mi-6x-dual-sim-td-lte-cn-128gb-m1804d2se-m1804d2sc", + "name": "Mi 6X Dual SIM TD-LTE CN 128GB M1804D2SE / M1804D2SC", + "url": "/v1/smartphones/mi-6x-dual-sim-td-lte-cn-128gb-m1804d2se-m1804d2sc" + }, + { + "slug": "mi-6x-dual-sim-td-lte-cn-128gb-m1804d2st", + "name": "Mi 6X Dual SIM TD-LTE CN 128GB M1804D2ST", + "url": "/v1/smartphones/mi-6x-dual-sim-td-lte-cn-128gb-m1804d2st" + }, + { + "slug": "mi-6x-dual-sim-td-lte-cn-32gb-m1804d2se-m1804d2sc", + "name": "Mi 6X Dual SIM TD-LTE CN 32GB M1804D2SE / M1804D2SC", + "url": "/v1/smartphones/mi-6x-dual-sim-td-lte-cn-32gb-m1804d2se-m1804d2sc" + }, + { + "slug": "mi-6x-dual-sim-td-lte-cn-64gb-m1804d2se-m1804d2sc", + "name": "Mi 6X Dual SIM TD-LTE CN 64GB M1804D2SE / M1804D2SC", + "url": "/v1/smartphones/mi-6x-dual-sim-td-lte-cn-64gb-m1804d2se-m1804d2sc" + }, + { + "slug": "mi-6x-dual-sim-td-lte-cn-64gb-m1804d2st", + "name": "Mi 6X Dual SIM TD-LTE CN 64GB M1804D2ST", + "url": "/v1/smartphones/mi-6x-dual-sim-td-lte-cn-64gb-m1804d2st" + }, + { + "slug": "mi-8-dual-sim-td-lte-cn-128gb-m1803e1a", + "name": "Mi 8 Dual SIM TD-LTE CN 128GB M1803E1A", + "url": "/v1/smartphones/mi-8-dual-sim-td-lte-cn-128gb-m1803e1a" + }, + { + "slug": "mi-8-dual-sim-td-lte-cn-128gb-m1803e1c", + "name": "Mi 8 Dual SIM TD-LTE CN 128GB M1803E1C", + "url": "/v1/smartphones/mi-8-dual-sim-td-lte-cn-128gb-m1803e1c" + }, + { + "slug": "mi-8-dual-sim-td-lte-cn-128gb-m1803e1t", + "name": "Mi 8 Dual SIM TD-LTE CN 128GB M1803E1T", + "url": "/v1/smartphones/mi-8-dual-sim-td-lte-cn-128gb-m1803e1t" + }, + { + "slug": "mi-8-dual-sim-td-lte-cn-256gb-m1803e1a", + "name": "Mi 8 Dual SIM TD-LTE CN 256GB M1803E1A", + "url": "/v1/smartphones/mi-8-dual-sim-td-lte-cn-256gb-m1803e1a" + }, + { + "slug": "mi-8-dual-sim-td-lte-cn-64gb-m1803e1a", + "name": "Mi 8 Dual SIM TD-LTE CN 64GB M1803E1A", + "url": "/v1/smartphones/mi-8-dual-sim-td-lte-cn-64gb-m1803e1a" + }, + { + "slug": "mi-8-explorer-edition-dual-sim-td-lte-m1807e8s-mi-8-ud", + "name": "Mi 8 Explorer Edition Dual SIM TD-LTE M1807E8S / Mi 8 UD", + "url": "/v1/smartphones/mi-8-explorer-edition-dual-sim-td-lte-m1807e8s-mi-8-ud" + }, + { + "slug": "mi-8-lite-global-dual-sim-td-lte-128gb-m1808d2tg", + "name": "Mi 8 Lite Global Dual SIM TD-LTE 128GB M1808D2TG", + "url": "/v1/smartphones/mi-8-lite-global-dual-sim-td-lte-128gb-m1808d2tg" + }, + { + "slug": "mi-8-lite-global-dual-sim-td-lte-64gb-m1808d2tg", + "name": "Mi 8 Lite Global Dual SIM TD-LTE 64GB M1808D2TG", + "url": "/v1/smartphones/mi-8-lite-global-dual-sim-td-lte-64gb-m1808d2tg" + }, + { + "slug": "mi-8-premium-edition-dual-sim-td-lte-cn-128gb-m1803e1a", + "name": "Mi 8 Premium Edition Dual SIM TD-LTE CN 128GB M1803E1A", + "url": "/v1/smartphones/mi-8-premium-edition-dual-sim-td-lte-cn-128gb-m1803e1a" + }, + { + "slug": "mi-8-pro-global-dual-sim-td-lte-m1807e8a", + "name": "Mi 8 Pro Global Dual SIM TD-LTE M1807E8A", + "url": "/v1/smartphones/mi-8-pro-global-dual-sim-td-lte-m1807e8a" + }, + { + "slug": "mi-8-se-premium-dual-sim-td-lte-cn-m1805e2a", + "name": "Mi 8 SE Premium Dual SIM TD-LTE CN M1805E2A", + "url": "/v1/smartphones/mi-8-se-premium-dual-sim-td-lte-cn-m1805e2a" + }, + { + "slug": "mi-8-se-standard-dual-sim-td-lte-cn-m1805e2a", + "name": "Mi 8 SE Standard Dual SIM TD-LTE CN M1805E2A", + "url": "/v1/smartphones/mi-8-se-standard-dual-sim-td-lte-cn-m1805e2a" + }, + { + "slug": "mi-8-ud-dual-sim-td-lte-m1807e8s", + "name": "Mi 8 UD Dual SIM TD-LTE M1807E8S", + "url": "/v1/smartphones/mi-8-ud-dual-sim-td-lte-m1807e8s" + }, + { + "slug": "mi-8-youth-premium-edition-dual-sim-td-lte-cn-128gb-m1808d2te-m1808d2tc", + "name": "Mi 8 Youth Premium Edition Dual SIM TD-LTE CN 128GB M1808D2TE / M1808D2TC", + "url": "/v1/smartphones/mi-8-youth-premium-edition-dual-sim-td-lte-cn-128gb-m1808d2te-m1808d2tc" + }, + { + "slug": "mi-8-youth-premium-edition-dual-sim-td-lte-cn-128gb-m1808d2tt", + "name": "Mi 8 Youth Premium Edition Dual SIM TD-LTE CN 128GB M1808D2TT", + "url": "/v1/smartphones/mi-8-youth-premium-edition-dual-sim-td-lte-cn-128gb-m1808d2tt" + }, + { + "slug": "mi-8-youth-standard-edition-dual-sim-td-lte-cn-128gb-m1808d2te-m1808d2tc", + "name": "Mi 8 Youth Standard Edition Dual SIM TD-LTE CN 128GB M1808D2TE / M1808D2TC", + "url": "/v1/smartphones/mi-8-youth-standard-edition-dual-sim-td-lte-cn-128gb-m1808d2te-m1808d2tc" + }, + { + "slug": "mi-8-youth-standard-edition-dual-sim-td-lte-cn-64gb-m1808d2te-m1808d2tc", + "name": "Mi 8 Youth Standard Edition Dual SIM TD-LTE CN 64GB M1808D2TE / M1808D2TC", + "url": "/v1/smartphones/mi-8-youth-standard-edition-dual-sim-td-lte-cn-64gb-m1808d2te-m1808d2tc" + }, + { + "slug": "mi-9-global-dual-sim-td-lte-128gb-m1902f1g", + "name": "Mi 9 Global Dual SIM TD-LTE 128GB M1902F1G", + "url": "/v1/smartphones/mi-9-global-dual-sim-td-lte-128gb-m1902f1g" + }, + { + "slug": "mi-9-global-dual-sim-td-lte-64gb-m1902f1g", + "name": "Mi 9 Global Dual SIM TD-LTE 64GB M1902F1G", + "url": "/v1/smartphones/mi-9-global-dual-sim-td-lte-64gb-m1902f1g" + }, + { + "slug": "mi-9-lite-global-dual-sim-td-lte-128gb-m1904f3bg", + "name": "Mi 9 Lite Global Dual SIM TD-LTE 128GB M1904F3BG", + "url": "/v1/smartphones/mi-9-lite-global-dual-sim-td-lte-128gb-m1904f3bg" + }, + { + "slug": "mi-9-lite-global-dual-sim-td-lte-64gb-m1904f3bg", + "name": "Mi 9 Lite Global Dual SIM TD-LTE 64GB M1904F3BG", + "url": "/v1/smartphones/mi-9-lite-global-dual-sim-td-lte-64gb-m1904f3bg" + }, + { + "slug": "mi-9-premium-edition-dual-sim-td-lte-cn-256gb-m1902f1a-m1902f1c", + "name": "Mi 9 Premium Edition Dual SIM TD-LTE CN 256GB M1902F1A / M1902F1C", + "url": "/v1/smartphones/mi-9-premium-edition-dual-sim-td-lte-cn-256gb-m1902f1a-m1902f1c" + }, + { + "slug": "mi-9-premium-edition-dual-sim-td-lte-cn-m1902f1a-m1902f1c", + "name": "Mi 9 Premium Edition Dual SIM TD-LTE CN M1902F1A / M1902F1C", + "url": "/v1/smartphones/mi-9-premium-edition-dual-sim-td-lte-cn-m1902f1a-m1902f1c" + }, + { + "slug": "mi-9-pro", + "name": "Mi 9 Pro", + "url": "/v1/smartphones/mi-9-pro" + }, + { + "slug": "mi-9-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m1908f1xe", + "name": "Mi 9 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB M1908F1XE", + "url": "/v1/smartphones/mi-9-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m1908f1xe" + }, + { + "slug": "mi-9-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-m1908f1xe", + "name": "Mi 9 Pro 5G Premium Edition Dual SIM TD-LTE CN 512GB M1908F1XE", + "url": "/v1/smartphones/mi-9-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-m1908f1xe" + }, + { + "slug": "mi-9-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m1908f1xe", + "name": "Mi 9 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB M1908F1XE", + "url": "/v1/smartphones/mi-9-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m1908f1xe" + }, + { + "slug": "mi-9-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m1908f1xe", + "name": "Mi 9 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB M1908F1XE", + "url": "/v1/smartphones/mi-9-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m1908f1xe" + }, + { + "slug": "mi-9-se-dual-sim-td-lte-cn-m1903f2a-128gb", + "name": "Mi 9 SE Dual SIM TD-LTE CN M1903F2A 128GB", + "url": "/v1/smartphones/mi-9-se-dual-sim-td-lte-cn-m1903f2a-128gb" + }, + { + "slug": "mi-9-se-dual-sim-td-lte-cn-m1903f2a-64gb", + "name": "Mi 9 SE Dual SIM TD-LTE CN M1903F2A 64GB", + "url": "/v1/smartphones/mi-9-se-dual-sim-td-lte-cn-m1903f2a-64gb" + }, + { + "slug": "mi-9-se-global-dual-sim-td-lte-m1903f2g-128gb-mi-9-lite", + "name": "Mi 9 SE Global Dual SIM TD-LTE M1903F2G 128GB / Mi 9 Lite", + "url": "/v1/smartphones/mi-9-se-global-dual-sim-td-lte-m1903f2g-128gb-mi-9-lite" + }, + { + "slug": "mi-9-se-global-dual-sim-td-lte-m1903f2g-64gb", + "name": "Mi 9 SE Global Dual SIM TD-LTE M1903F2G 64GB", + "url": "/v1/smartphones/mi-9-se-global-dual-sim-td-lte-m1903f2g-64gb" + }, + { + "slug": "mi-9-standard-edition-dual-sim-td-lte-cn-m1902f1a-m1902f1c", + "name": "Mi 9 Standard Edition Dual SIM TD-LTE CN M1902F1A / M1902F1C", + "url": "/v1/smartphones/mi-9-standard-edition-dual-sim-td-lte-cn-m1902f1a-m1902f1c" + }, + { + "slug": "mi-9-standard-edition-dual-sim-td-lte-cn-m1902f1t", + "name": "Mi 9 Standard Edition Dual SIM TD-LTE CN M1902F1T", + "url": "/v1/smartphones/mi-9-standard-edition-dual-sim-td-lte-cn-m1902f1t" + }, + { + "slug": "mi-9-transparent-premium-edition-dual-sim-td-lte-cn-256gb-m1902f1a", + "name": "Mi 9 Transparent Premium Edition Dual SIM TD-LTE CN 256GB M1902F1A", + "url": "/v1/smartphones/mi-9-transparent-premium-edition-dual-sim-td-lte-cn-256gb-m1902f1a" + }, + { + "slug": "mi-9-transparent-standard-edition-dual-sim-td-lte-cn-256gb-m1902f1a", + "name": "Mi 9 Transparent Standard Edition Dual SIM TD-LTE CN 256GB M1902F1A", + "url": "/v1/smartphones/mi-9-transparent-standard-edition-dual-sim-td-lte-cn-256gb-m1902f1a" + }, + { + "slug": "mi-9t-global-dual-sim-td-lte-128gb-m1903f10g", + "name": "Mi 9T Global Dual SIM TD-LTE 128GB M1903F10G", + "url": "/v1/smartphones/mi-9t-global-dual-sim-td-lte-128gb-m1903f10g" + }, + { + "slug": "mi-9t-global-dual-sim-td-lte-64gb-m1903f10g", + "name": "Mi 9T Global Dual SIM TD-LTE 64GB M1903F10G", + "url": "/v1/smartphones/mi-9t-global-dual-sim-td-lte-64gb-m1903f10g" + }, + { + "slug": "mi-9t-pro-global-dual-sim-td-lte-128gb-m1903f11g", + "name": "Mi 9T Pro Global Dual SIM TD-LTE 128GB M1903F11G", + "url": "/v1/smartphones/mi-9t-pro-global-dual-sim-td-lte-128gb-m1903f11g" + }, + { + "slug": "mi-9t-pro-global-dual-sim-td-lte-64gb-m1903f11g", + "name": "Mi 9T Pro Global Dual SIM TD-LTE 64GB M1903F11G", + "url": "/v1/smartphones/mi-9t-pro-global-dual-sim-td-lte-64gb-m1903f11g" + }, + { + "slug": "mi-a2-dual-sim-global-td-lte-128gb-m1804d2sg", + "name": "Mi A2 Dual SIM Global TD-LTE 128GB M1804D2SG", + "url": "/v1/smartphones/mi-a2-dual-sim-global-td-lte-128gb-m1804d2sg" + }, + { + "slug": "mi-a2-dual-sim-global-td-lte-32gb-m1804d2sg", + "name": "Mi A2 Dual SIM Global TD-LTE 32GB M1804D2SG", + "url": "/v1/smartphones/mi-a2-dual-sim-global-td-lte-32gb-m1804d2sg" + }, + { + "slug": "mi-a2-dual-sim-global-td-lte-64gb-m1804d2sg", + "name": "Mi A2 Dual SIM Global TD-LTE 64GB M1804D2SG", + "url": "/v1/smartphones/mi-a2-dual-sim-global-td-lte-64gb-m1804d2sg" + }, + { + "slug": "mi-a2-lite-premium-edition-global-dual-sim-td-lte-32gb-m1805d1sg", + "name": "Mi A2 Lite Premium Edition Global Dual SIM TD-LTE 32GB M1805D1SG", + "url": "/v1/smartphones/mi-a2-lite-premium-edition-global-dual-sim-td-lte-32gb-m1805d1sg" + }, + { + "slug": "mi-a2-lite-premium-edition-global-dual-sim-td-lte-64gb-m1805d1sg", + "name": "Mi A2 Lite Premium Edition Global Dual SIM TD-LTE 64GB M1805D1SG", + "url": "/v1/smartphones/mi-a2-lite-premium-edition-global-dual-sim-td-lte-64gb-m1805d1sg" + }, + { + "slug": "mi-a2-lite-standard-edition-global-dual-sim-td-lte-32gb-m1805d1sg", + "name": "Mi A2 Lite Standard Edition Global Dual SIM TD-LTE 32GB M1805D1SG", + "url": "/v1/smartphones/mi-a2-lite-standard-edition-global-dual-sim-td-lte-32gb-m1805d1sg" + }, + { + "slug": "mi-a3-dual-sim-td-lte-in-128gb-m1906f9si", + "name": "Mi A3 Dual SIM TD-LTE IN 128GB M1906F9SI", + "url": "/v1/smartphones/mi-a3-dual-sim-td-lte-in-128gb-m1906f9si" + }, + { + "slug": "mi-a3-dual-sim-td-lte-in-64gb-m1906f9si", + "name": "Mi A3 Dual SIM TD-LTE IN 64GB M1906F9SI", + "url": "/v1/smartphones/mi-a3-dual-sim-td-lte-in-64gb-m1906f9si" + }, + { + "slug": "mi-a3-global-dual-sim-td-lte-128gb-m1906f9sh", + "name": "Mi A3 Global Dual SIM TD-LTE 128GB M1906F9SH", + "url": "/v1/smartphones/mi-a3-global-dual-sim-td-lte-128gb-m1906f9sh" + }, + { + "slug": "mi-a3-global-dual-sim-td-lte-64gb-m1906f9sh", + "name": "Mi A3 Global Dual SIM TD-LTE 64GB M1906F9SH", + "url": "/v1/smartphones/mi-a3-global-dual-sim-td-lte-64gb-m1906f9sh" + }, + { + "slug": "mi-cc9-dual-sim-td-lte-cn-m1904f3bc-128gb", + "name": "Mi CC9 Dual SIM TD-LTE CN M1904F3BC 128GB", + "url": "/v1/smartphones/mi-cc9-dual-sim-td-lte-cn-m1904f3bc-128gb" + }, + { + "slug": "mi-cc9-dual-sim-td-lte-cn-m1904f3bc-64gb", + "name": "Mi CC9 Dual SIM TD-LTE CN M1904F3BC 64GB", + "url": "/v1/smartphones/mi-cc9-dual-sim-td-lte-cn-m1904f3bc-64gb" + }, + { + "slug": "mi-cc9-dual-sim-td-lte-cn-m1904f3bt-128gb", + "name": "Mi CC9 Dual SIM TD-LTE CN M1904F3BT 128GB", + "url": "/v1/smartphones/mi-cc9-dual-sim-td-lte-cn-m1904f3bt-128gb" + }, + { + "slug": "mi-cc9-dual-sim-td-lte-cn-m1904f3bt-64gb", + "name": "Mi CC9 Dual SIM TD-LTE CN M1904F3BT 64GB", + "url": "/v1/smartphones/mi-cc9-dual-sim-td-lte-cn-m1904f3bt-64gb" + }, + { + "slug": "mi-cc9-meitu-edition-dual-sim-td-lte-cn-m1904f3bc-256gb", + "name": "Mi CC9 Meitu Edition Dual SIM TD-LTE CN M1904F3BC 256GB", + "url": "/v1/smartphones/mi-cc9-meitu-edition-dual-sim-td-lte-cn-m1904f3bc-256gb" + }, + { + "slug": "mi-cc9-pro-premium-edition", + "name": "Mi CC9 Pro Premium Edition", + "url": "/v1/smartphones/mi-cc9-pro-premium-edition" + }, + { + "slug": "mi-cc9-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1910f4e", + "name": "Mi CC9 Pro Premium Edition Dual SIM TD-LTE CN 128GB M1910F4E", + "url": "/v1/smartphones/mi-cc9-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1910f4e" + }, + { + "slug": "mi-cc9-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1910f4e", + "name": "Mi CC9 Pro Premium Edition Dual SIM TD-LTE CN 256GB M1910F4E", + "url": "/v1/smartphones/mi-cc9-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1910f4e" + }, + { + "slug": "mi-cc9-pro-standard-edition", + "name": "Mi CC9 Pro Standard Edition", + "url": "/v1/smartphones/mi-cc9-pro-standard-edition" + }, + { + "slug": "mi-cc9-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1910f4e", + "name": "Mi CC9 Pro Standard Edition Dual SIM TD-LTE CN 128GB M1910F4E", + "url": "/v1/smartphones/mi-cc9-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1910f4e" + }, + { + "slug": "mi-cc9e-premium-edition-dual-sim-td-lte-cn-m1906f9sc-128gb", + "name": "Mi CC9e Premium Edition Dual SIM TD-LTE CN M1906F9SC 128GB", + "url": "/v1/smartphones/mi-cc9e-premium-edition-dual-sim-td-lte-cn-m1906f9sc-128gb" + }, + { + "slug": "mi-cc9e-premium-edition-dual-sim-td-lte-cn-m1906f9sc-64gb", + "name": "Mi CC9e Premium Edition Dual SIM TD-LTE CN M1906F9SC 64GB", + "url": "/v1/smartphones/mi-cc9e-premium-edition-dual-sim-td-lte-cn-m1906f9sc-64gb" + }, + { + "slug": "mi-cc9e-standard-edition-dual-sim-td-lte-cn-m1906f9sc-64gb", + "name": "Mi CC9e Standard Edition Dual SIM TD-LTE CN M1906F9SC 64GB", + "url": "/v1/smartphones/mi-cc9e-standard-edition-dual-sim-td-lte-cn-m1906f9sc-64gb" + }, + { + "slug": "mi-max-3-dual-sim-td-lte-128gb-m1804e4a-m1804e4c", + "name": "Mi Max 3 Dual SIM TD-LTE 128GB M1804E4A / M1804E4C", + "url": "/v1/smartphones/mi-max-3-dual-sim-td-lte-128gb-m1804e4a-m1804e4c" + }, + { + "slug": "mi-max-3-dual-sim-td-lte-64gb-m1804e4a-m1804e4c", + "name": "Mi Max 3 Dual SIM TD-LTE 64GB M1804E4A / M1804E4C", + "url": "/v1/smartphones/mi-max-3-dual-sim-td-lte-64gb-m1804e4a-m1804e4c" + }, + { + "slug": "mi-max-3-dual-sim-td-lte-64gb-m1804e4t", + "name": "Mi Max 3 Dual SIM TD-LTE 64GB M1804E4T", + "url": "/v1/smartphones/mi-max-3-dual-sim-td-lte-64gb-m1804e4t" + }, + { + "slug": "mi-mix-2s-premium-edition-global-dual-sim-td-lte-256gb-m1803d5xa", + "name": "Mi Mix 2S Premium Edition Global Dual SIM TD-LTE 256GB M1803D5XA", + "url": "/v1/smartphones/mi-mix-2s-premium-edition-global-dual-sim-td-lte-256gb-m1803d5xa" + }, + { + "slug": "mi-mix-2s-standard-edition-dual-sim-td-lte-cn-128gb-m1803d5xe-m1803d5xc", + "name": "Mi Mix 2S Standard Edition Dual SIM TD-LTE CN 128GB M1803D5XE / M1803D5XC", + "url": "/v1/smartphones/mi-mix-2s-standard-edition-dual-sim-td-lte-cn-128gb-m1803d5xe-m1803d5xc" + }, + { + "slug": "mi-mix-2s-standard-edition-dual-sim-td-lte-cn-64gb-m1803d5xe-m1803d5xc", + "name": "Mi Mix 2S Standard Edition Dual SIM TD-LTE CN 64GB M1803D5XE / M1803D5XC", + "url": "/v1/smartphones/mi-mix-2s-standard-edition-dual-sim-td-lte-cn-64gb-m1803d5xe-m1803d5xc" + }, + { + "slug": "mi-mix-2s-standard-edition-dual-sim-td-lte-cn-64gb-m1803d5xt", + "name": "Mi Mix 2S Standard Edition Dual SIM TD-LTE CN 64GB M1803D5XT", + "url": "/v1/smartphones/mi-mix-2s-standard-edition-dual-sim-td-lte-cn-64gb-m1803d5xt" + }, + { + "slug": "mi-mix-2s-standard-edition-global-dual-sim-td-lte-128gb-m1803d5xa", + "name": "Mi Mix 2S Standard Edition Global Dual SIM TD-LTE 128GB M1803D5XA", + "url": "/v1/smartphones/mi-mix-2s-standard-edition-global-dual-sim-td-lte-128gb-m1803d5xa" + }, + { + "slug": "mi-mix-2s-standard-edition-global-dual-sim-td-lte-64gb-m1803d5xa", + "name": "Mi Mix 2S Standard Edition Global Dual SIM TD-LTE 64GB M1803D5XA", + "url": "/v1/smartphones/mi-mix-2s-standard-edition-global-dual-sim-td-lte-64gb-m1803d5xa" + }, + { + "slug": "mi-mix-3-5g-global-td-lte-128gb-m1810e5gg", + "name": "Mi Mix 3 5G Global TD-LTE 128GB M1810E5GG", + "url": "/v1/smartphones/mi-mix-3-5g-global-td-lte-128gb-m1810e5gg" + }, + { + "slug": "mi-mix-3-5g-global-td-lte-64gb-m1810e5gg", + "name": "Mi Mix 3 5G Global TD-LTE 64GB M1810E5GG", + "url": "/v1/smartphones/mi-mix-3-5g-global-td-lte-64gb-m1810e5gg" + }, + { + "slug": "mi-mix-3-forbidden-city-special-edition-dual-sim-td-lte-cn-256gb-m1810e5ec", + "name": "Mi Mix 3 Forbidden City Special Edition Dual SIM TD-LTE CN 256GB M1810E5EC", + "url": "/v1/smartphones/mi-mix-3-forbidden-city-special-edition-dual-sim-td-lte-cn-256gb-m1810e5ec" + }, + { + "slug": "mi-mix-3-premium-edition-dual-sim-td-lte-cn-128gb-m1810e5e-m1810e5c", + "name": "Mi Mix 3 Premium Edition Dual SIM TD-LTE CN 128GB M1810E5E / M1810E5C", + "url": "/v1/smartphones/mi-mix-3-premium-edition-dual-sim-td-lte-cn-128gb-m1810e5e-m1810e5c" + }, + { + "slug": "mi-mix-3-premium-edition-dual-sim-td-lte-cn-256gb-m1810e5e-m1810e5c", + "name": "Mi Mix 3 Premium Edition Dual SIM TD-LTE CN 256GB M1810E5E / M1810E5C", + "url": "/v1/smartphones/mi-mix-3-premium-edition-dual-sim-td-lte-cn-256gb-m1810e5e-m1810e5c" + }, + { + "slug": "mi-mix-3-standard-edition-dual-sim-td-lte-cn-128gb-m1810e5e-m1810e5c", + "name": "Mi Mix 3 Standard Edition Dual SIM TD-LTE CN 128GB M1810E5E / M1810E5C", + "url": "/v1/smartphones/mi-mix-3-standard-edition-dual-sim-td-lte-cn-128gb-m1810e5e-m1810e5c" + }, + { + "slug": "mi-mix-3-standard-edition-dual-sim-td-lte-cn-128gb-m1810e5t", + "name": "Mi Mix 3 Standard Edition Dual SIM TD-LTE CN 128GB M1810E5T", + "url": "/v1/smartphones/mi-mix-3-standard-edition-dual-sim-td-lte-cn-128gb-m1810e5t" + }, + { + "slug": "mi-mix-3-standard-edition-global-dual-sim-td-lte-128gb-m1810e5a", + "name": "Mi Mix 3 Standard Edition Global Dual SIM TD-LTE 128GB M1810E5A", + "url": "/v1/smartphones/mi-mix-3-standard-edition-global-dual-sim-td-lte-128gb-m1810e5a" + }, + { + "slug": "mi-mix-4", + "name": "Mi Mix 4", + "url": "/v1/smartphones/mi-mix-4" + }, + { + "slug": "mi-mix-4-5g-premium-edition-dual-sim-td-lte-cn-256gb-2106118c", + "name": "Mi Mix 4 5G Premium Edition Dual SIM TD-LTE CN 256GB 2106118C", + "url": "/v1/smartphones/mi-mix-4-5g-premium-edition-dual-sim-td-lte-cn-256gb-2106118c" + }, + { + "slug": "mi-mix-4-5g-premium-edition-dual-sim-td-lte-cn-512gb-2106118c", + "name": "Mi Mix 4 5G Premium Edition Dual SIM TD-LTE CN 512GB 2106118C", + "url": "/v1/smartphones/mi-mix-4-5g-premium-edition-dual-sim-td-lte-cn-512gb-2106118c" + }, + { + "slug": "mi-mix-4-5g-standard-edition-dual-sim-td-lte-cn-128gb-2106118c", + "name": "Mi Mix 4 5G Standard Edition Dual SIM TD-LTE CN 128GB 2106118C", + "url": "/v1/smartphones/mi-mix-4-5g-standard-edition-dual-sim-td-lte-cn-128gb-2106118c" + }, + { + "slug": "mi-mix-4-5g-standard-edition-dual-sim-td-lte-cn-256gb-2106118c", + "name": "Mi Mix 4 5G Standard Edition Dual SIM TD-LTE CN 256GB 2106118C", + "url": "/v1/smartphones/mi-mix-4-5g-standard-edition-dual-sim-td-lte-cn-256gb-2106118c" + }, + { + "slug": "mi-mix-alpha", + "name": "Mi Mix Alpha", + "url": "/v1/smartphones/mi-mix-alpha" + }, + { + "slug": "mi-mix-alpha-5g-dual-sim-td-lte-cn-512gb", + "name": "Mi Mix Alpha 5G Dual SIM TD-LTE CN 512GB", + "url": "/v1/smartphones/mi-mix-alpha-5g-dual-sim-td-lte-cn-512gb" + }, + { + "slug": "mi-mix-fold-2021", + "name": "Mi Mix Fold 2021", + "url": "/v1/smartphones/mi-mix-fold-2021" + }, + { + "slug": "mi-mix-fold-2021-5g-ceramic-special-edition-dual-sim-td-lte-cn-512gb", + "name": "Mi Mix Fold 2021 5G Ceramic Special Edition Dual SIM TD-LTE CN 512GB", + "url": "/v1/smartphones/mi-mix-fold-2021-5g-ceramic-special-edition-dual-sim-td-lte-cn-512gb" + }, + { + "slug": "mi-mix-fold-2021-5g-premium-edition-dual-sim-td-lte-cn-256gb", + "name": "Mi Mix Fold 2021 5G Premium Edition Dual SIM TD-LTE CN 256GB", + "url": "/v1/smartphones/mi-mix-fold-2021-5g-premium-edition-dual-sim-td-lte-cn-256gb" + }, + { + "slug": "mi-mix-fold-2021-5g-premium-edition-dual-sim-td-lte-cn-512gb", + "name": "Mi Mix Fold 2021 5G Premium Edition Dual SIM TD-LTE CN 512GB", + "url": "/v1/smartphones/mi-mix-fold-2021-5g-premium-edition-dual-sim-td-lte-cn-512gb" + }, + { + "slug": "mi-note-10", + "name": "Mi Note 10", + "url": "/v1/smartphones/mi-note-10" + }, + { + "slug": "mi-note-10-global-dual-sim-td-lte-128gb-m1910f4g", + "name": "Mi Note 10 Global Dual SIM TD-LTE 128GB M1910F4G", + "url": "/v1/smartphones/mi-note-10-global-dual-sim-td-lte-128gb-m1910f4g" + }, + { + "slug": "mi-note-10-lite", + "name": "Mi Note 10 Lite", + "url": "/v1/smartphones/mi-note-10-lite" + }, + { + "slug": "mi-note-10-lite-global-dual-sim-td-lte-128gb-m2002f4lg", + "name": "Mi Note 10 Lite Global Dual SIM TD-LTE 128GB M2002F4LG", + "url": "/v1/smartphones/mi-note-10-lite-global-dual-sim-td-lte-128gb-m2002f4lg" + }, + { + "slug": "mi-note-10-lite-global-dual-sim-td-lte-64gb-m2002f4lg", + "name": "Mi Note 10 Lite Global Dual SIM TD-LTE 64GB M2002F4LG", + "url": "/v1/smartphones/mi-note-10-lite-global-dual-sim-td-lte-64gb-m2002f4lg" + }, + { + "slug": "mi-note-10-pro", + "name": "Mi Note 10 Pro", + "url": "/v1/smartphones/mi-note-10-pro" + }, + { + "slug": "mi-note-10-pro-global-dual-sim-td-lte-128gb-m1910f4s", + "name": "Mi Note 10 Pro Global Dual SIM TD-LTE 128GB M1910F4S", + "url": "/v1/smartphones/mi-note-10-pro-global-dual-sim-td-lte-128gb-m1910f4s" + }, + { + "slug": "mi-play-standard-edition", + "name": "Mi Play Standard Edition", + "url": "/v1/smartphones/mi-play-standard-edition" + }, + { + "slug": "mi-play-standard-edition-dual-sim-td-lte-cn-64gb-m1901f9e", + "name": "Mi Play Standard Edition Dual SIM TD-LTE CN 64GB M1901F9E", + "url": "/v1/smartphones/mi-play-standard-edition-dual-sim-td-lte-cn-64gb-m1901f9e" + }, + { + "slug": "mi-play-standard-edition-dual-sim-td-lte-cn-64gb-m1901f9t", + "name": "Mi Play Standard Edition Dual SIM TD-LTE CN 64GB M1901F9T", + "url": "/v1/smartphones/mi-play-standard-edition-dual-sim-td-lte-cn-64gb-m1901f9t" + }, + { + "slug": "mi10-ultra-silver-edition", + "name": "Mi10 Ultra Silver Edition", + "url": "/v1/smartphones/mi10-ultra-silver-edition" + }, + { + "slug": "mi10-ultra-silver-edition-dual-sim-td-lte-cn-512gb-m2007j1sc-extreme-commemorative", + "name": "Mi10 Ultra Silver Edition Dual SIM TD-LTE CN 512GB M2007J1SC / Extreme Commemorative", + "url": "/v1/smartphones/mi10-ultra-silver-edition-dual-sim-td-lte-cn-512gb-m2007j1sc-extreme-commemorative" + }, + { + "slug": "moto", + "name": "Moto", + "url": "/v1/smartphones/moto" + }, + { + "slug": "moto-e-7th-gen-2020-lte-us-32gb-xt2052-2-xt2052-2pp", + "name": "Moto E 7th gen 2020 LTE US 32GB XT2052-2 / XT2052-2PP", + "url": "/v1/smartphones/moto-e-7th-gen-2020-lte-us-32gb-xt2052-2-xt2052-2pp" + }, + { + "slug": "moto-e-7th-gen-2020-td-lte-na-32gb-xt2052-1", + "name": "Moto E 7th gen 2020 TD-LTE NA 32GB XT2052-1", + "url": "/v1/smartphones/moto-e-7th-gen-2020-td-lte-na-32gb-xt2052-1" + }, + { + "slug": "moto-e-7th-gen-2020-td-lte-us-32gb-xt2052-5", + "name": "Moto E 7th gen 2020 TD-LTE US 32GB XT2052-5", + "url": "/v1/smartphones/moto-e-7th-gen-2020-td-lte-us-32gb-xt2052-5" + }, + { + "slug": "moto-e-7th-gen-2020-td-lte-us-32gb-xt2052-6", + "name": "Moto E 7th gen 2020 TD-LTE US 32GB XT2052-6", + "url": "/v1/smartphones/moto-e-7th-gen-2020-td-lte-us-32gb-xt2052-6" + }, + { + "slug": "moto-e-7th-gen-2020-td-lte-us-32gb-xt2052dl-moto-e7", + "name": "Moto E 7th gen 2020 TD-LTE US 32GB XT2052DL / Moto e7", + "url": "/v1/smartphones/moto-e-7th-gen-2020-td-lte-us-32gb-xt2052dl-moto-e7" + }, + { + "slug": "moto-e14", + "name": "Moto E14", + "url": "/v1/smartphones/moto-e14" + }, + { + "slug": "moto-e20-2021", + "name": "Moto E20 2021", + "url": "/v1/smartphones/moto-e20-2021" + }, + { + "slug": "moto-e20-2021-dual-sim-td-lte-latam-32gb-xt2155-1", + "name": "Moto E20 2021 Dual SIM TD-LTE LATAM 32GB XT2155-1", + "url": "/v1/smartphones/moto-e20-2021-dual-sim-td-lte-latam-32gb-xt2155-1" + }, + { + "slug": "moto-e20-2021-global-dual-sim-td-lte-32gb-xt2155-3", + "name": "Moto E20 2021 Global Dual SIM TD-LTE 32GB XT2155-3", + "url": "/v1/smartphones/moto-e20-2021-global-dual-sim-td-lte-32gb-xt2155-3" + }, + { + "slug": "moto-e22", + "name": "Moto E22", + "url": "/v1/smartphones/moto-e22" + }, + { + "slug": "moto-e22-2022", + "name": "Moto E22 2022", + "url": "/v1/smartphones/moto-e22-2022" + }, + { + "slug": "moto-e22i", + "name": "Moto E22i", + "url": "/v1/smartphones/moto-e22i" + }, + { + "slug": "moto-e22i-2022", + "name": "Moto E22i 2022", + "url": "/v1/smartphones/moto-e22i-2022" + }, + { + "slug": "moto-e22s-2022", + "name": "Moto E22s 2022", + "url": "/v1/smartphones/moto-e22s-2022" + }, + { + "slug": "moto-e32-2022", + "name": "Moto E32 2022", + "url": "/v1/smartphones/moto-e32-2022" + }, + { + "slug": "moto-e32s", + "name": "Moto E32s", + "url": "/v1/smartphones/moto-e32s" + }, + { + "slug": "moto-e32s-2022", + "name": "Moto E32s 2022", + "url": "/v1/smartphones/moto-e32s-2022" + }, + { + "slug": "moto-e40-2021", + "name": "Moto E40 2021", + "url": "/v1/smartphones/moto-e40-2021" + }, + { + "slug": "moto-e40-2021-dual-sim-td-lte-latam-apac-64gb-xt2159-1-xt2159-2", + "name": "Moto E40 2021 Dual SIM TD-LTE LATAM APAC 64GB XT2159-1 / XT2159-2", + "url": "/v1/smartphones/moto-e40-2021-dual-sim-td-lte-latam-apac-64gb-xt2159-1-xt2159-2" + }, + { + "slug": "moto-e40-2021-global-dual-sim-td-lte-64gb-xt2159-3-xt2159-6", + "name": "Moto E40 2021 Global Dual SIM TD-LTE 64GB XT2159-3 / XT2159-6", + "url": "/v1/smartphones/moto-e40-2021-global-dual-sim-td-lte-64gb-xt2159-3-xt2159-6" + }, + { + "slug": "moto-e5-dual-sim-lte-latam-16gb-xt1944-4", + "name": "Moto E5 Dual SIM LTE LATAM 16GB XT1944-4", + "url": "/v1/smartphones/moto-e5-dual-sim-lte-latam-16gb-xt1944-4" + }, + { + "slug": "moto-e5-dual-sim-lte-latam-32gb-xt1944-4", + "name": "Moto E5 Dual SIM LTE LATAM 32GB XT1944-4", + "url": "/v1/smartphones/moto-e5-dual-sim-lte-latam-32gb-xt1944-4" + }, + { + "slug": "moto-e5-dual-sim-td-lte-apac-16gb-xt1944-6", + "name": "Moto E5 Dual SIM TD-LTE APAC 16GB XT1944-6", + "url": "/v1/smartphones/moto-e5-dual-sim-td-lte-apac-16gb-xt1944-6" + }, + { + "slug": "moto-e5-dual-sim-td-lte-emea-16gb-xt1944-2", + "name": "Moto E5 Dual SIM TD-LTE EMEA 16GB XT1944-2", + "url": "/v1/smartphones/moto-e5-dual-sim-td-lte-emea-16gb-xt1944-2" + }, + { + "slug": "moto-e5-dual-sim-td-lte-in-16gb-xt1944-5", + "name": "Moto E5 Dual SIM TD-LTE IN 16GB XT1944-5", + "url": "/v1/smartphones/moto-e5-dual-sim-td-lte-in-16gb-xt1944-5" + }, + { + "slug": "moto-e5-lte-latam-16gb-xt1944-3-moto-e-gen-5", + "name": "Moto E5 LTE LATAM 16GB XT1944-3 / Moto E Gen 5", + "url": "/v1/smartphones/moto-e5-lte-latam-16gb-xt1944-3-moto-e-gen-5" + }, + { + "slug": "moto-e5-play-go-edition-dual-sim-lte-latam-xt1920-19", + "name": "Moto E5 Play Go Edition Dual SIM LTE LATAM XT1920-19", + "url": "/v1/smartphones/moto-e5-play-go-edition-dual-sim-lte-latam-xt1920-19" + }, + { + "slug": "moto-e5-play-go-edition-global-dual-sim-td-lte-xt1920-16", + "name": "Moto E5 Play Go Edition Global Dual SIM TD-LTE XT1920-16", + "url": "/v1/smartphones/moto-e5-play-go-edition-global-dual-sim-td-lte-xt1920-16" + }, + { + "slug": "moto-e5-play-go-edition-lte-latam-xt1920-18", + "name": "Moto E5 Play Go Edition LTE LATAM XT1920-18", + "url": "/v1/smartphones/moto-e5-play-go-edition-lte-latam-xt1920-18" + }, + { + "slug": "moto-e5-play-go-edition-td-lte-emea-xt1920-15", + "name": "Moto E5 Play Go Edition TD-LTE EMEA XT1920-15", + "url": "/v1/smartphones/moto-e5-play-go-edition-td-lte-emea-xt1920-15" + }, + { + "slug": "moto-e5-play-go-td-lte-us-16gb-xt1921-7-xt1921-8", + "name": "Moto E5 Play Go TD-LTE US 16GB XT1921-7 / XT1921-8", + "url": "/v1/smartphones/moto-e5-play-go-td-lte-us-16gb-xt1921-7-xt1921-8" + }, + { + "slug": "moto-e5-play-lte-us-16gb-xt1921-2-moto-e5-cruise", + "name": "Moto E5 Play LTE US 16GB XT1921-2 / Moto E5 Cruise", + "url": "/v1/smartphones/moto-e5-play-lte-us-16gb-xt1921-2-moto-e5-cruise" + }, + { + "slug": "moto-e5-play-td-lte-na-16gb-xt1921-1-moto-e-play-gen-5-xt1921-7", + "name": "Moto E5 Play TD-LTE NA 16GB XT1921-1 / Moto E Play Gen 5 XT1921-7", + "url": "/v1/smartphones/moto-e5-play-td-lte-na-16gb-xt1921-1-moto-e-play-gen-5-xt1921-7" + }, + { + "slug": "moto-e5-play-td-lte-us-16gb-xt1921-3", + "name": "Moto E5 Play TD-LTE US 16GB XT1921-3", + "url": "/v1/smartphones/moto-e5-play-td-lte-us-16gb-xt1921-3" + }, + { + "slug": "moto-e5-play-td-lte-us-16gb-xt1921-5", + "name": "Moto E5 Play TD-LTE US 16GB XT1921-5", + "url": "/v1/smartphones/moto-e5-play-td-lte-us-16gb-xt1921-5" + }, + { + "slug": "moto-e5-play-td-lte-us-16gb-xt1921-6", + "name": "Moto E5 Play TD-LTE US 16GB XT1921-6", + "url": "/v1/smartphones/moto-e5-play-td-lte-us-16gb-xt1921-6" + }, + { + "slug": "moto-e5-plus-dual-sim-lte-emea-16gb-xt1924-1", + "name": "Moto E5 Plus Dual SIM LTE EMEA 16GB XT1924-1", + "url": "/v1/smartphones/moto-e5-plus-dual-sim-lte-emea-16gb-xt1924-1" + }, + { + "slug": "moto-e5-plus-dual-sim-lte-latam-16gb-xt1924-4", + "name": "Moto E5 Plus Dual SIM LTE LATAM 16GB XT1924-4", + "url": "/v1/smartphones/moto-e5-plus-dual-sim-lte-latam-16gb-xt1924-4" + }, + { + "slug": "moto-e5-plus-dual-sim-td-lte-cn-32gb-xt1924-9", + "name": "Moto E5 Plus Dual SIM TD-LTE CN 32GB XT1924-9", + "url": "/v1/smartphones/moto-e5-plus-dual-sim-td-lte-cn-32gb-xt1924-9" + }, + { + "slug": "moto-e5-plus-dual-sim-td-lte-cn-64gb-xt1924-9", + "name": "Moto E5 Plus Dual SIM TD-LTE CN 64GB XT1924-9", + "url": "/v1/smartphones/moto-e5-plus-dual-sim-td-lte-cn-64gb-xt1924-9" + }, + { + "slug": "moto-e5-plus-dual-sim-td-lte-in-32gb-xt1924-3", + "name": "Moto E5 Plus Dual SIM TD-LTE IN 32GB XT1924-3", + "url": "/v1/smartphones/moto-e5-plus-dual-sim-td-lte-in-32gb-xt1924-3" + }, + { + "slug": "moto-e5-plus-lte-emea-32gb-xt1924-2", + "name": "Moto E5 Plus LTE EMEA 32GB XT1924-2", + "url": "/v1/smartphones/moto-e5-plus-lte-emea-32gb-xt1924-2" + }, + { + "slug": "moto-e5-plus-lte-latam-16gb-xt1924-5-moto-e-plus-gen-5", + "name": "Moto E5 Plus LTE LATAM 16GB XT1924-5 / Moto E Plus Gen 5", + "url": "/v1/smartphones/moto-e5-plus-lte-latam-16gb-xt1924-5-moto-e-plus-gen-5" + }, + { + "slug": "moto-e5-plus-td-lte-us-32gb-xt1924-7-moto-e-plus-5th-gen", + "name": "Moto E5 Plus TD-LTE US 32GB XT1924-7 / Moto E Plus 5th gen", + "url": "/v1/smartphones/moto-e5-plus-td-lte-us-32gb-xt1924-7-moto-e-plus-5th-gen" + }, + { + "slug": "moto-e5-plus-td-lte-us-32gb-xt1924-8", + "name": "Moto E5 Plus TD-LTE US 32GB XT1924-8", + "url": "/v1/smartphones/moto-e5-plus-td-lte-us-32gb-xt1924-8" + }, + { + "slug": "moto-e5-supra-lte-a-us-32gb-xt1924-6", + "name": "Moto E5 Supra LTE-A US 32GB XT1924-6", + "url": "/v1/smartphones/moto-e5-supra-lte-a-us-32gb-xt1924-6" + }, + { + "slug": "moto-e5-td-lte-emea-16gb-xt1944-1", + "name": "Moto E5 TD-LTE EMEA 16GB XT1944-1", + "url": "/v1/smartphones/moto-e5-td-lte-emea-16gb-xt1944-1" + }, + { + "slug": "moto-e5-td-lte-us-16gb-xt1920dl", + "name": "Moto E5 TD-LTE US 16GB XT1920DL", + "url": "/v1/smartphones/moto-e5-td-lte-us-16gb-xt1920dl" + }, + { + "slug": "moto-e6-lte-a-na-xt2005-1-xt2005-1pp", + "name": "Moto E6 LTE-A NA XT2005-1 / XT2005-1PP", + "url": "/v1/smartphones/moto-e6-lte-a-na-xt2005-1-xt2005-1pp" + }, + { + "slug": "moto-e6-plus", + "name": "Moto E6 Plus", + "url": "/v1/smartphones/moto-e6-plus" + }, + { + "slug": "moto-e6-plus-dual-sim-lte-a-latam-au-32gb-xt2025-1", + "name": "Moto E6 Plus Dual SIM LTE-A LATAM AU 32GB XT2025-1", + "url": "/v1/smartphones/moto-e6-plus-dual-sim-lte-a-latam-au-32gb-xt2025-1" + }, + { + "slug": "moto-e6-plus-dual-sim-lte-a-latam-au-64gb-xt2025-1", + "name": "Moto E6 Plus Dual SIM LTE-A LATAM AU 64GB XT2025-1", + "url": "/v1/smartphones/moto-e6-plus-dual-sim-lte-a-latam-au-64gb-xt2025-1" + }, + { + "slug": "moto-e6-plus-global-dual-sim-td-lte-32gb-xt2025-2", + "name": "Moto E6 Plus Global Dual SIM TD-LTE 32GB XT2025-2", + "url": "/v1/smartphones/moto-e6-plus-global-dual-sim-td-lte-32gb-xt2025-2" + }, + { + "slug": "moto-e6-plus-global-dual-sim-td-lte-64gb-xt2025-2", + "name": "Moto E6 Plus Global Dual SIM TD-LTE 64GB XT2025-2", + "url": "/v1/smartphones/moto-e6-plus-global-dual-sim-td-lte-64gb-xt2025-2" + }, + { + "slug": "moto-e6-plus-lte-a-latam-au-32gb-xt2025-1", + "name": "Moto E6 Plus LTE-A LATAM AU 32GB XT2025-1", + "url": "/v1/smartphones/moto-e6-plus-lte-a-latam-au-32gb-xt2025-1" + }, + { + "slug": "moto-e6-plus-lte-a-latam-au-64gb-xt2025-1", + "name": "Moto E6 Plus LTE-A LATAM AU 64GB XT2025-1", + "url": "/v1/smartphones/moto-e6-plus-lte-a-latam-au-64gb-xt2025-1" + }, + { + "slug": "moto-e6-plus-td-lte-eu-32gb-xt2025-2", + "name": "Moto E6 Plus TD-LTE EU 32GB XT2025-2", + "url": "/v1/smartphones/moto-e6-plus-td-lte-eu-32gb-xt2025-2" + }, + { + "slug": "moto-e6-plus-td-lte-eu-64gb-xt2025-2", + "name": "Moto E6 Plus TD-LTE EU 64GB XT2025-2", + "url": "/v1/smartphones/moto-e6-plus-td-lte-eu-64gb-xt2025-2" + }, + { + "slug": "moto-e6-td-lte-na-xt2005-3", + "name": "Moto E6 TD-LTE NA XT2005-3", + "url": "/v1/smartphones/moto-e6-td-lte-na-xt2005-3" + }, + { + "slug": "moto-e6-td-lte-na-xt2005-4", + "name": "Moto E6 TD-LTE NA XT2005-4", + "url": "/v1/smartphones/moto-e6-td-lte-na-xt2005-4" + }, + { + "slug": "moto-e6-td-lte-na-xt2005-5", + "name": "Moto E6 TD-LTE NA XT2005-5", + "url": "/v1/smartphones/moto-e6-td-lte-na-xt2005-5" + }, + { + "slug": "moto-e6-td-lte-na-xt2005dl", + "name": "Moto E6 TD-LTE NA XT2005DL", + "url": "/v1/smartphones/moto-e6-td-lte-na-xt2005dl" + }, + { + "slug": "moto-e6s", + "name": "Moto E6s", + "url": "/v1/smartphones/moto-e6s" + }, + { + "slug": "moto-e6s-2020", + "name": "Moto E6s 2020", + "url": "/v1/smartphones/moto-e6s-2020" + }, + { + "slug": "moto-e6s-2020-dual-sim-lte-latam-32gb-xt2053-2-moto-e6-s", + "name": "Moto E6s 2020 Dual SIM LTE LATAM 32GB XT2053-2 / Moto E6 S", + "url": "/v1/smartphones/moto-e6s-2020-dual-sim-lte-latam-32gb-xt2053-2-moto-e6-s" + }, + { + "slug": "moto-e6s-2020-dual-sim-td-lte-au-jp-32gb-xt2053-4", + "name": "Moto E6s 2020 Dual SIM TD-LTE AU JP 32GB XT2053-4", + "url": "/v1/smartphones/moto-e6s-2020-dual-sim-td-lte-au-jp-32gb-xt2053-4" + }, + { + "slug": "moto-e6s-2020-global-dual-sim-td-lte-32gb-xt2053-1", + "name": "Moto E6s 2020 Global Dual SIM TD-LTE 32GB XT2053-1", + "url": "/v1/smartphones/moto-e6s-2020-global-dual-sim-td-lte-32gb-xt2053-1" + }, + { + "slug": "moto-e6s-2020-lte", + "name": "Moto E6s 2020 LTE", + "url": "/v1/smartphones/moto-e6s-2020-lte" + }, + { + "slug": "moto-e6s-2020-lte-latam-32gb-xt2053-2-moto-e6-s", + "name": "Moto E6s 2020 LTE LATAM 32GB XT2053-2 / Moto E6 S", + "url": "/v1/smartphones/moto-e6s-2020-lte-latam-32gb-xt2053-2-moto-e6-s" + }, + { + "slug": "moto-e6s-2020-td-lte-eu-16gb-xt2053-1", + "name": "Moto E6s 2020 TD-LTE EU 16GB XT2053-1", + "url": "/v1/smartphones/moto-e6s-2020-td-lte-eu-16gb-xt2053-1" + }, + { + "slug": "moto-e6s-dual-sim-td-lte-in-64gb-xt2025-2-moto-e6-plus", + "name": "Moto E6s Dual SIM TD-LTE IN 64GB XT2025-2 / Moto E6 Plus", + "url": "/v1/smartphones/moto-e6s-dual-sim-td-lte-in-64gb-xt2025-2-moto-e6-plus" + }, + { + "slug": "moto-e7-2020", + "name": "Moto E7 2020", + "url": "/v1/smartphones/moto-e7-2020" + }, + { + "slug": "moto-e7-2020-dual-sim-lte-latam-32gb-xt2095-1", + "name": "Moto E7 2020 Dual SIM LTE LATAM 32GB XT2095-1", + "url": "/v1/smartphones/moto-e7-2020-dual-sim-lte-latam-32gb-xt2095-1" + }, + { + "slug": "moto-e7-2020-dual-sim-lte-latam-64gb-xt2095-1", + "name": "Moto E7 2020 Dual SIM LTE LATAM 64GB XT2095-1", + "url": "/v1/smartphones/moto-e7-2020-dual-sim-lte-latam-64gb-xt2095-1" + }, + { + "slug": "moto-e7-2020-dual-sim-td-lte-apac-64gb-xt2095-3", + "name": "Moto E7 2020 Dual SIM TD-LTE APAC 64GB XT2095-3", + "url": "/v1/smartphones/moto-e7-2020-dual-sim-td-lte-apac-64gb-xt2095-3" + }, + { + "slug": "moto-e7-2020-dual-sim-td-lte-emea-32gb-xt2095-2", + "name": "Moto E7 2020 Dual SIM TD-LTE EMEA 32GB XT2095-2", + "url": "/v1/smartphones/moto-e7-2020-dual-sim-td-lte-emea-32gb-xt2095-2" + }, + { + "slug": "moto-e7-2020-lte", + "name": "Moto E7 2020 LTE", + "url": "/v1/smartphones/moto-e7-2020-lte" + }, + { + "slug": "moto-e7-2020-lte-latam-32gb-xt2095-1", + "name": "Moto E7 2020 LTE LATAM 32GB XT2095-1", + "url": "/v1/smartphones/moto-e7-2020-lte-latam-32gb-xt2095-1" + }, + { + "slug": "moto-e7-2020-td-lte-emea-32gb-xt2095-2", + "name": "Moto E7 2020 TD-LTE EMEA 32GB XT2095-2", + "url": "/v1/smartphones/moto-e7-2020-td-lte-emea-32gb-xt2095-2" + }, + { + "slug": "moto-e7-plus-2020-dual-sim-lte-a-latam-xt2081-1", + "name": "Moto E7 Plus 2020 Dual SIM LTE-A LATAM XT2081-1", + "url": "/v1/smartphones/moto-e7-plus-2020-dual-sim-lte-a-latam-xt2081-1" + }, + { + "slug": "moto-e7-plus-2020-global-dual-sim-td-lte-xt2081-2", + "name": "Moto E7 Plus 2020 Global Dual SIM TD-LTE XT2081-2", + "url": "/v1/smartphones/moto-e7-plus-2020-global-dual-sim-td-lte-xt2081-2" + }, + { + "slug": "moto-e7-plus-2020-lte-a-latam-xt2081-1", + "name": "Moto E7 Plus 2020 LTE-A LATAM XT2081-1", + "url": "/v1/smartphones/moto-e7-plus-2020-lte-a-latam-xt2081-1" + }, + { + "slug": "moto-e7-power-2021", + "name": "Moto E7 Power 2021", + "url": "/v1/smartphones/moto-e7-power-2021" + }, + { + "slug": "moto-e7-power-2021-dual-sim-lte-latam-32gb-xt2097-5", + "name": "Moto E7 Power 2021 Dual SIM LTE LATAM 32GB XT2097-5", + "url": "/v1/smartphones/moto-e7-power-2021-dual-sim-lte-latam-32gb-xt2097-5" + }, + { + "slug": "moto-e7-power-2021-dual-sim-td-lte-apac-32gb-xt2097-7", + "name": "Moto E7 Power 2021 Dual SIM TD-LTE APAC 32GB XT2097-7", + "url": "/v1/smartphones/moto-e7-power-2021-dual-sim-td-lte-apac-32gb-xt2097-7" + }, + { + "slug": "moto-e7-power-2021-global-dual-sim-td-lte-32gb-xt2097-6", + "name": "Moto E7 Power 2021 Global Dual SIM TD-LTE 32GB XT2097-6", + "url": "/v1/smartphones/moto-e7-power-2021-global-dual-sim-td-lte-32gb-xt2097-6" + }, + { + "slug": "moto-edge", + "name": "Moto Edge", + "url": "/v1/smartphones/moto-edge" + }, + { + "slug": "moto-edge-20", + "name": "Moto Edge 20", + "url": "/v1/smartphones/moto-edge-20" + }, + { + "slug": "moto-edge-20-fusion", + "name": "Moto Edge 20 Fusion", + "url": "/v1/smartphones/moto-edge-20-fusion" + }, + { + "slug": "moto-edge-20-fusion-5g-premium-edition-2021-global-dual-sim-td-lte-128gb-xt2139-2", + "name": "Moto Edge 20 Fusion 5G Premium Edition 2021 Global Dual SIM TD-LTE 128GB XT2139-2", + "url": "/v1/smartphones/moto-edge-20-fusion-5g-premium-edition-2021-global-dual-sim-td-lte-128gb-xt2139-2" + }, + { + "slug": "moto-edge-20-fusion-5g-standard-edition-2021-global-dual-sim-td-lte-128gb-xt2139-2", + "name": "Moto Edge 20 Fusion 5G Standard Edition 2021 Global Dual SIM TD-LTE 128GB XT2139-2", + "url": "/v1/smartphones/moto-edge-20-fusion-5g-standard-edition-2021-global-dual-sim-td-lte-128gb-xt2139-2" + }, + { + "slug": "moto-edge-20-lite", + "name": "Moto Edge 20 Lite", + "url": "/v1/smartphones/moto-edge-20-lite" + }, + { + "slug": "moto-edge-20-lite-5g-2021-dual-sim-td-lte-latam-128gb-xt2139-1", + "name": "Moto Edge 20 Lite 5G 2021 Dual SIM TD-LTE LATAM 128GB XT2139-1", + "url": "/v1/smartphones/moto-edge-20-lite-5g-2021-dual-sim-td-lte-latam-128gb-xt2139-1" + }, + { + "slug": "moto-edge-20-lite-5g-2021-global-dual-sim-td-lte-128gb-xt2139-1", + "name": "Moto Edge 20 Lite 5G 2021 Global Dual SIM TD-LTE 128GB XT2139-1", + "url": "/v1/smartphones/moto-edge-20-lite-5g-2021-global-dual-sim-td-lte-128gb-xt2139-1" + }, + { + "slug": "moto-edge-20-lite-5g-2021-td-lte-latam-128gb-xt2139-1", + "name": "Moto Edge 20 Lite 5G 2021 TD-LTE LATAM 128GB XT2139-1", + "url": "/v1/smartphones/moto-edge-20-lite-5g-2021-td-lte-latam-128gb-xt2139-1" + }, + { + "slug": "moto-edge-20-pro", + "name": "Moto Edge 20 Pro", + "url": "/v1/smartphones/moto-edge-20-pro" + }, + { + "slug": "moto-edge-20-pro-5g-2021-global-dual-sim-td-lte-256gb-xt2153-1", + "name": "Moto Edge 20 Pro 5G 2021 Global Dual SIM TD-LTE 256GB XT2153-1", + "url": "/v1/smartphones/moto-edge-20-pro-5g-2021-global-dual-sim-td-lte-256gb-xt2153-1" + }, + { + "slug": "moto-edge-20-pro-5g-2021-global-td-lte-256gb-xt2153-1", + "name": "Moto Edge 20 Pro 5G 2021 Global TD-LTE 256GB XT2153-1", + "url": "/v1/smartphones/moto-edge-20-pro-5g-2021-global-td-lte-256gb-xt2153-1" + }, + { + "slug": "moto-edge-2021", + "name": "Moto Edge 2021", + "url": "/v1/smartphones/moto-edge-2021" + }, + { + "slug": "moto-edge-30", + "name": "Moto Edge 30", + "url": "/v1/smartphones/moto-edge-30" + }, + { + "slug": "moto-edge-30-pro", + "name": "Moto Edge 30 Pro", + "url": "/v1/smartphones/moto-edge-30-pro" + }, + { + "slug": "moto-edge-30-pro-5g-2022-global-dual-sim-td-lte-128gb-xt2201-1", + "name": "Moto Edge 30 Pro 5G 2022 Global Dual SIM TD-LTE 128GB XT2201-1", + "url": "/v1/smartphones/moto-edge-30-pro-5g-2022-global-dual-sim-td-lte-128gb-xt2201-1" + }, + { + "slug": "moto-edge-5g-dual-sim-td-lte-emea-xt2063-4", + "name": "Moto Edge 5G Dual SIM TD-LTE EMEA XT2063-4", + "url": "/v1/smartphones/moto-edge-5g-dual-sim-td-lte-emea-xt2063-4" + }, + { + "slug": "moto-edge-5g-global-dual-sim-td-lte-xt2063-3", + "name": "Moto Edge 5G Global Dual SIM TD-LTE XT2063-3", + "url": "/v1/smartphones/moto-edge-5g-global-dual-sim-td-lte-xt2063-3" + }, + { + "slug": "moto-edge-5g-global-td-lte-xt2063-3", + "name": "Moto Edge 5G Global TD-LTE XT2063-3", + "url": "/v1/smartphones/moto-edge-5g-global-td-lte-xt2063-3" + }, + { + "slug": "moto-edge-5g-td-lte-us-xt2063-2", + "name": "Moto Edge 5G TD-LTE US XT2063-2", + "url": "/v1/smartphones/moto-edge-5g-td-lte-us-xt2063-2" + }, + { + "slug": "moto-edge-s-lite", + "name": "Moto Edge S Lite", + "url": "/v1/smartphones/moto-edge-s-lite" + }, + { + "slug": "moto-edge-s-premium-edition", + "name": "Moto Edge S Premium Edition", + "url": "/v1/smartphones/moto-edge-s-premium-edition" + }, + { + "slug": "moto-edge-s-premium-edition-dual-sim-td-lte-cn-128gb-xt2125-4", + "name": "Moto Edge S Premium Edition Dual SIM TD-LTE CN 128GB XT2125-4", + "url": "/v1/smartphones/moto-edge-s-premium-edition-dual-sim-td-lte-cn-128gb-xt2125-4" + }, + { + "slug": "moto-edge-s-premium-edition-dual-sim-td-lte-cn-256gb-xt2125-4", + "name": "Moto Edge S Premium Edition Dual SIM TD-LTE CN 256GB XT2125-4", + "url": "/v1/smartphones/moto-edge-s-premium-edition-dual-sim-td-lte-cn-256gb-xt2125-4" + }, + { + "slug": "moto-edge-s-pro", + "name": "Moto Edge S Pro", + "url": "/v1/smartphones/moto-edge-s-pro" + }, + { + "slug": "moto-edge-s-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-xt2153-1", + "name": "Moto Edge S Pro 5G 2021 Premium Edition Dual SIM TD-LTE CN 128GB XT2153-1", + "url": "/v1/smartphones/moto-edge-s-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-xt2153-1" + }, + { + "slug": "moto-edge-s-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2153-1", + "name": "Moto Edge S Pro 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB XT2153-1", + "url": "/v1/smartphones/moto-edge-s-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2153-1" + }, + { + "slug": "moto-edge-s-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2153-1", + "name": "Moto Edge S Pro 5G 2021 Standard Edition Dual SIM TD-LTE CN 128GB XT2153-1", + "url": "/v1/smartphones/moto-edge-s-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2153-1" + }, + { + "slug": "moto-edge-s-pro-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-xt2153-1", + "name": "Moto Edge S Pro 5G 2021 Top Edition Dual SIM TD-LTE CN 256GB XT2153-1", + "url": "/v1/smartphones/moto-edge-s-pro-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-xt2153-1" + }, + { + "slug": "moto-edge-s-standard-edition", + "name": "Moto Edge S Standard Edition", + "url": "/v1/smartphones/moto-edge-s-standard-edition" + }, + { + "slug": "moto-edge-s-standard-edition-dual-sim-td-lte-cn-128gb-xt2125-4", + "name": "Moto Edge S Standard Edition Dual SIM TD-LTE CN 128GB XT2125-4", + "url": "/v1/smartphones/moto-edge-s-standard-edition-dual-sim-td-lte-cn-128gb-xt2125-4" + }, + { + "slug": "moto-edge-s30", + "name": "Moto Edge S30", + "url": "/v1/smartphones/moto-edge-s30" + }, + { + "slug": "moto-edge-s30-5g-2021-base-edition-dual-sim-td-lte-cn-128gb-xt2175-2", + "name": "Moto Edge S30 5G 2021 Base Edition Dual SIM TD-LTE CN 128GB XT2175-2", + "url": "/v1/smartphones/moto-edge-s30-5g-2021-base-edition-dual-sim-td-lte-cn-128gb-xt2175-2" + }, + { + "slug": "moto-edge-s30-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2175-2", + "name": "Moto Edge S30 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB XT2175-2", + "url": "/v1/smartphones/moto-edge-s30-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2175-2" + }, + { + "slug": "moto-edge-s30-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2175-2", + "name": "Moto Edge S30 5G 2021 Standard Edition Dual SIM TD-LTE CN 128GB XT2175-2", + "url": "/v1/smartphones/moto-edge-s30-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2175-2" + }, + { + "slug": "moto-edge-s30-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-xt2175-2", + "name": "Moto Edge S30 5G 2021 Standard Edition Dual SIM TD-LTE CN 256GB XT2175-2", + "url": "/v1/smartphones/moto-edge-s30-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-xt2175-2" + }, + { + "slug": "moto-edge-x30", + "name": "Moto Edge X30", + "url": "/v1/smartphones/moto-edge-x30" + }, + { + "slug": "moto-edge-x30-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2201-2", + "name": "Moto Edge X30 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB XT2201-2", + "url": "/v1/smartphones/moto-edge-x30-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2201-2" + }, + { + "slug": "moto-edge-x30-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2201-2", + "name": "Moto Edge X30 5G 2021 Standard Edition Dual SIM TD-LTE CN 128GB XT2201-2", + "url": "/v1/smartphones/moto-edge-x30-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2201-2" + }, + { + "slug": "moto-edge-x30-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-xt2201-2", + "name": "Moto Edge X30 5G 2021 Standard Edition Dual SIM TD-LTE CN 256GB XT2201-2", + "url": "/v1/smartphones/moto-edge-x30-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-xt2201-2" + }, + { + "slug": "moto-edge-2022", + "name": "Moto Edge+ 2022", + "url": "/v1/smartphones/moto-edge-2022" + }, + { + "slug": "moto-edge-5g-global-td-lte-xt2061-3", + "name": "Moto Edge+ 5G Global TD-LTE XT2061-3", + "url": "/v1/smartphones/moto-edge-5g-global-td-lte-xt2061-3" + }, + { + "slug": "moto-edge-5g-uw-global-td-lte-xt2061-1", + "name": "Moto Edge+ 5G UW Global TD-LTE XT2061-1", + "url": "/v1/smartphones/moto-edge-5g-uw-global-td-lte-xt2061-1" + }, + { + "slug": "moto-g", + "name": "Moto G", + "url": "/v1/smartphones/moto-g" + }, + { + "slug": "moto-g-5g-plus-2020-global-dual-sim-td-lte-128gb-xt2075-3-moto-g8-plus-5g", + "name": "Moto G 5G Plus 2020 Global Dual SIM TD-LTE 128GB XT2075-3 / Moto G8 Plus 5G", + "url": "/v1/smartphones/moto-g-5g-plus-2020-global-dual-sim-td-lte-128gb-xt2075-3-moto-g8-plus-5g" + }, + { + "slug": "moto-g-5g-plus-2020-global-dual-sim-td-lte-64gb-xt2075-3", + "name": "Moto G 5G Plus 2020 Global Dual SIM TD-LTE 64GB XT2075-3", + "url": "/v1/smartphones/moto-g-5g-plus-2020-global-dual-sim-td-lte-64gb-xt2075-3" + }, + { + "slug": "moto-g-5g-plus-2020-global-td-lte-128gb-xt2075-3", + "name": "Moto G 5G Plus 2020 Global TD-LTE 128GB XT2075-3", + "url": "/v1/smartphones/moto-g-5g-plus-2020-global-td-lte-128gb-xt2075-3" + }, + { + "slug": "moto-g-5g-plus-2020-sim-td-lte-latam-128gb-xt2075-3", + "name": "Moto G 5G Plus 2020 SIM TD-LTE LATAM 128GB XT2075-3", + "url": "/v1/smartphones/moto-g-5g-plus-2020-sim-td-lte-latam-128gb-xt2075-3" + }, + { + "slug": "moto-g-fast-td-lte-na-xt2045-3-moto-g8", + "name": "Moto G Fast TD-LTE NA XT2045-3 / Moto G8", + "url": "/v1/smartphones/moto-g-fast-td-lte-na-xt2045-3-moto-g8" + }, + { + "slug": "moto-g-play", + "name": "Moto G Play", + "url": "/v1/smartphones/moto-g-play" + }, + { + "slug": "moto-g-play-2021-td-lte-na-32gb-xt2093-4", + "name": "Moto G Play 2021 TD-LTE NA 32GB XT2093-4", + "url": "/v1/smartphones/moto-g-play-2021-td-lte-na-32gb-xt2093-4" + }, + { + "slug": "moto-g-play-2021-td-lte-us-32gb-xt2093-1", + "name": "Moto G Play 2021 TD-LTE US 32GB XT2093-1", + "url": "/v1/smartphones/moto-g-play-2021-td-lte-us-32gb-xt2093-1" + }, + { + "slug": "moto-g-play-2021-td-lte-us-32gb-xt2093-2-xt2093-2pp", + "name": "Moto G Play 2021 TD-LTE US 32GB XT2093-2 / XT2093-2PP", + "url": "/v1/smartphones/moto-g-play-2021-td-lte-us-32gb-xt2093-2-xt2093-2pp" + }, + { + "slug": "moto-g-play-2021-td-lte-us-32gb-xt2093-3", + "name": "Moto G Play 2021 TD-LTE US 32GB XT2093-3", + "url": "/v1/smartphones/moto-g-play-2021-td-lte-us-32gb-xt2093-3" + }, + { + "slug": "moto-g-play-2021-td-lte-us-32gb-xt2093-7", + "name": "Moto G Play 2021 TD-LTE US 32GB XT2093-7", + "url": "/v1/smartphones/moto-g-play-2021-td-lte-us-32gb-xt2093-7" + }, + { + "slug": "moto-g-play-2021-td-lte-us-32gb-xt2093dl", + "name": "Moto G Play 2021 TD-LTE US 32GB XT2093DL", + "url": "/v1/smartphones/moto-g-play-2021-td-lte-us-32gb-xt2093dl" + }, + { + "slug": "moto-g-power", + "name": "Moto G Power", + "url": "/v1/smartphones/moto-g-power" + }, + { + "slug": "moto-g-power-2020-td-lte-na-64gb-xt2041-4-g8-power", + "name": "Moto G Power 2020 TD-LTE NA 64GB XT2041-4 / G8 Power", + "url": "/v1/smartphones/moto-g-power-2020-td-lte-na-64gb-xt2041-4-g8-power" + }, + { + "slug": "moto-g-power-2020-td-lte-us-64gb-xt2041-6-g8-power", + "name": "Moto G Power 2020 TD-LTE US 64GB XT2041-6 / G8 Power", + "url": "/v1/smartphones/moto-g-power-2020-td-lte-us-64gb-xt2041-6-g8-power" + }, + { + "slug": "moto-g-power-2020-td-lte-us-64gb-xt2041-7-g8-power", + "name": "Moto G Power 2020 TD-LTE US 64GB XT2041-7 / G8 Power", + "url": "/v1/smartphones/moto-g-power-2020-td-lte-us-64gb-xt2041-7-g8-power" + }, + { + "slug": "moto-g-power-2021-td-lte-na-32gb-xt2117-4", + "name": "Moto G Power 2021 TD-LTE NA 32GB XT2117-4", + "url": "/v1/smartphones/moto-g-power-2021-td-lte-na-32gb-xt2117-4" + }, + { + "slug": "moto-g-power-2021-td-lte-na-64gb-xt2117-4", + "name": "Moto G Power 2021 TD-LTE NA 64GB XT2117-4", + "url": "/v1/smartphones/moto-g-power-2021-td-lte-na-64gb-xt2117-4" + }, + { + "slug": "moto-g-power-2021-td-lte-us-32gb-xt2117dl", + "name": "Moto G Power 2021 TD-LTE US 32GB XT2117DL", + "url": "/v1/smartphones/moto-g-power-2021-td-lte-us-32gb-xt2117dl" + }, + { + "slug": "moto-g-power-2021-td-lte-us-64gb-xt2117-1", + "name": "Moto G Power 2021 TD-LTE US 64GB XT2117-1", + "url": "/v1/smartphones/moto-g-power-2021-td-lte-us-64gb-xt2117-1" + }, + { + "slug": "moto-g-power-2021-td-lte-us-64gb-xt2117-2", + "name": "Moto G Power 2021 TD-LTE US 64GB XT2117-2", + "url": "/v1/smartphones/moto-g-power-2021-td-lte-us-64gb-xt2117-2" + }, + { + "slug": "moto-g-power-2021-td-lte-us-64gb-xt2117-3", + "name": "Moto G Power 2021 TD-LTE US 64GB XT2117-3", + "url": "/v1/smartphones/moto-g-power-2021-td-lte-us-64gb-xt2117-3" + }, + { + "slug": "moto-g-pro-2020-global-dual-sim-td-lte-128gb-xt2043-7-moto-g8-pro", + "name": "Moto G Pro 2020 Global Dual SIM TD-LTE 128GB XT2043-7 / Moto G8 Pro", + "url": "/v1/smartphones/moto-g-pro-2020-global-dual-sim-td-lte-128gb-xt2043-7-moto-g8-pro" + }, + { + "slug": "moto-g-pro-2020-global-td-lte-128gb-xt2043-7-g8-pro", + "name": "Moto G Pro 2020 Global TD-LTE 128GB XT2043-7 / G8 Pro", + "url": "/v1/smartphones/moto-g-pro-2020-global-td-lte-128gb-xt2043-7-g8-pro" + }, + { + "slug": "moto-g-pure-2021", + "name": "Moto G Pure 2021", + "url": "/v1/smartphones/moto-g-pure-2021" + }, + { + "slug": "moto-g-pure-2021-lte", + "name": "Moto G Pure 2021 LTE", + "url": "/v1/smartphones/moto-g-pure-2021-lte" + }, + { + "slug": "moto-g-pure-2021-lte-na-32gb-xt2163-4", + "name": "Moto G Pure 2021 LTE NA 32GB XT2163-4", + "url": "/v1/smartphones/moto-g-pure-2021-lte-na-32gb-xt2163-4" + }, + { + "slug": "moto-g-pure-2021-lte-us-32gb-xt2163dl", + "name": "Moto G Pure 2021 LTE US 32GB XT2163DL", + "url": "/v1/smartphones/moto-g-pure-2021-lte-us-32gb-xt2163dl" + }, + { + "slug": "moto-g-pure-2021-xlte", + "name": "Moto G Pure 2021 XLTE", + "url": "/v1/smartphones/moto-g-pure-2021-xlte" + }, + { + "slug": "moto-g-stylus", + "name": "Moto G Stylus", + "url": "/v1/smartphones/moto-g-stylus" + }, + { + "slug": "moto-g-stylus-2020-td-lte-na-128gb-xt2043-4-g8-stylus-xt2043-6", + "name": "Moto G Stylus 2020 TD-LTE NA 128GB XT2043-4 / G8 Stylus XT2043-6", + "url": "/v1/smartphones/moto-g-stylus-2020-td-lte-na-128gb-xt2043-4-g8-stylus-xt2043-6" + }, + { + "slug": "moto-g-stylus-2020-td-lte-us-128gb-xt2043-5-g8-stylus", + "name": "Moto G Stylus 2020 TD-LTE US 128GB XT2043-5 / G8 Stylus", + "url": "/v1/smartphones/moto-g-stylus-2020-td-lte-us-128gb-xt2043-5-g8-stylus" + }, + { + "slug": "moto-g-stylus-2020-td-lte-us-128gb-xt2043-8-g8-stylus", + "name": "Moto G Stylus 2020 TD-LTE US 128GB XT2043-8 / G8 Stylus", + "url": "/v1/smartphones/moto-g-stylus-2020-td-lte-us-128gb-xt2043-8-g8-stylus" + }, + { + "slug": "moto-g-stylus-2021-td-lte-us-128gb-xt2115-1-g9-stylus", + "name": "Moto G Stylus 2021 TD-LTE US 128GB XT2115-1 / G9 Stylus", + "url": "/v1/smartphones/moto-g-stylus-2021-td-lte-us-128gb-xt2115-1-g9-stylus" + }, + { + "slug": "moto-g-stylus-2021-td-lte-us-128gb-xt2115dl", + "name": "Moto G Stylus 2021 TD-LTE US 128GB XT2115DL", + "url": "/v1/smartphones/moto-g-stylus-2021-td-lte-us-128gb-xt2115dl" + }, + { + "slug": "moto-g-stylus-3rd-gen-2022", + "name": "Moto G Stylus 3rd gen 2022", + "url": "/v1/smartphones/moto-g-stylus-3rd-gen-2022" + }, + { + "slug": "moto-g-stylus-5g", + "name": "Moto G Stylus 5G", + "url": "/v1/smartphones/moto-g-stylus-5g" + }, + { + "slug": "moto-g-stylus-5g-2021-td-lte-us-128gb-xt2131-3", + "name": "Moto G Stylus 5G 2021 TD-LTE US 128GB XT2131-3", + "url": "/v1/smartphones/moto-g-stylus-5g-2021-td-lte-us-128gb-xt2131-3" + }, + { + "slug": "moto-g-stylus-5g-2021-td-lte-us-128gb-xt2131-4", + "name": "Moto G Stylus 5G 2021 TD-LTE US 128GB XT2131-4", + "url": "/v1/smartphones/moto-g-stylus-5g-2021-td-lte-us-128gb-xt2131-4" + }, + { + "slug": "moto-g-stylus-5g-2021-td-lte-us-256gb-xt2131-1", + "name": "Moto G Stylus 5G 2021 TD-LTE US 256GB XT2131-1", + "url": "/v1/smartphones/moto-g-stylus-5g-2021-td-lte-us-256gb-xt2131-1" + }, + { + "slug": "moto-g-stylus-5g-2021-td-lte-us-256gb-xt2131dl", + "name": "Moto G Stylus 5G 2021 TD-LTE US 256GB XT2131DL", + "url": "/v1/smartphones/moto-g-stylus-5g-2021-td-lte-us-256gb-xt2131dl" + }, + { + "slug": "moto-g10-2021-dual-sim-td-lte-latam-128gb-xt2127-1", + "name": "Moto G10 2021 Dual SIM TD-LTE LATAM 128GB XT2127-1", + "url": "/v1/smartphones/moto-g10-2021-dual-sim-td-lte-latam-128gb-xt2127-1" + }, + { + "slug": "moto-g10-2021-global-dual-sim-td-lte-64gb-xt2127-2", + "name": "Moto G10 2021 Global Dual SIM TD-LTE 64GB XT2127-2", + "url": "/v1/smartphones/moto-g10-2021-global-dual-sim-td-lte-64gb-xt2127-2" + }, + { + "slug": "moto-g10-power-2021-dual-sim-td-lte-in-64gb-xt2127-4", + "name": "Moto G10 Power 2021 Dual SIM TD-LTE IN 64GB XT2127-4", + "url": "/v1/smartphones/moto-g10-power-2021-dual-sim-td-lte-in-64gb-xt2127-4" + }, + { + "slug": "moto-g13-2023", + "name": "Moto G13 2023", + "url": "/v1/smartphones/moto-g13-2023" + }, + { + "slug": "moto-g14-2023", + "name": "Moto G14 2023", + "url": "/v1/smartphones/moto-g14-2023" + }, + { + "slug": "moto-g20-2021", + "name": "Moto G20 2021", + "url": "/v1/smartphones/moto-g20-2021" + }, + { + "slug": "moto-g20-2021-dual-sim-td-lte-latam-128gb-xt2128-1", + "name": "Moto G20 2021 Dual SIM TD-LTE LATAM 128GB XT2128-1", + "url": "/v1/smartphones/moto-g20-2021-dual-sim-td-lte-latam-128gb-xt2128-1" + }, + { + "slug": "moto-g20-2021-dual-sim-td-lte-latam-64gb-xt2128-1", + "name": "Moto G20 2021 Dual SIM TD-LTE LATAM 64GB XT2128-1", + "url": "/v1/smartphones/moto-g20-2021-dual-sim-td-lte-latam-64gb-xt2128-1" + }, + { + "slug": "moto-g20-2021-global-dual-sim-td-lte-128gb-xt2128-2", + "name": "Moto G20 2021 Global Dual SIM TD-LTE 128GB XT2128-2", + "url": "/v1/smartphones/moto-g20-2021-global-dual-sim-td-lte-128gb-xt2128-2" + }, + { + "slug": "moto-g20-2021-global-dual-sim-td-lte-64gb-xt2128-2", + "name": "Moto G20 2021 Global Dual SIM TD-LTE 64GB XT2128-2", + "url": "/v1/smartphones/moto-g20-2021-global-dual-sim-td-lte-64gb-xt2128-2" + }, + { + "slug": "moto-g20-2021-td-lte-latam-128gb-xt2128-1", + "name": "Moto G20 2021 TD-LTE LATAM 128GB XT2128-1", + "url": "/v1/smartphones/moto-g20-2021-td-lte-latam-128gb-xt2128-1" + }, + { + "slug": "moto-g20-2021-td-lte-latam-64gb-xt2128-1", + "name": "Moto G20 2021 TD-LTE LATAM 64GB XT2128-1", + "url": "/v1/smartphones/moto-g20-2021-td-lte-latam-64gb-xt2128-1" + }, + { + "slug": "moto-g200-5g-2021-global-dual-sim-td-lte-128gb-xt2175-1", + "name": "Moto G200 5G 2021 Global Dual SIM TD-LTE 128GB XT2175-1", + "url": "/v1/smartphones/moto-g200-5g-2021-global-dual-sim-td-lte-128gb-xt2175-1" + }, + { + "slug": "moto-g22", + "name": "Moto G22", + "url": "/v1/smartphones/moto-g22" + }, + { + "slug": "moto-g23-2023-premium-edition", + "name": "Moto G23 2023 Premium Edition", + "url": "/v1/smartphones/moto-g23-2023-premium-edition" + }, + { + "slug": "moto-g23-2023-standard-edition", + "name": "Moto G23 2023 Standard Edition", + "url": "/v1/smartphones/moto-g23-2023-standard-edition" + }, + { + "slug": "moto-g30-2021-premium-edition-global-dual-sim-td-lte-128gb-xt2129-2", + "name": "Moto G30 2021 Premium Edition Global Dual SIM TD-LTE 128GB XT2129-2", + "url": "/v1/smartphones/moto-g30-2021-premium-edition-global-dual-sim-td-lte-128gb-xt2129-2" + }, + { + "slug": "moto-g30-2021-standard-edition-dual-sim-td-lte-apac-64gb-xt2129-2", + "name": "Moto G30 2021 Standard Edition Dual SIM TD-LTE APAC 64GB XT2129-2", + "url": "/v1/smartphones/moto-g30-2021-standard-edition-dual-sim-td-lte-apac-64gb-xt2129-2" + }, + { + "slug": "moto-g30-2021-standard-edition-dual-sim-td-lte-latam-128gb-xt2129-1", + "name": "Moto G30 2021 Standard Edition Dual SIM TD-LTE LATAM 128GB XT2129-1", + "url": "/v1/smartphones/moto-g30-2021-standard-edition-dual-sim-td-lte-latam-128gb-xt2129-1" + }, + { + "slug": "moto-g30-2021-standard-edition-global-dual-sim-td-lte-128gb-xt2129-2", + "name": "Moto G30 2021 Standard Edition Global Dual SIM TD-LTE 128GB XT2129-2", + "url": "/v1/smartphones/moto-g30-2021-standard-edition-global-dual-sim-td-lte-128gb-xt2129-2" + }, + { + "slug": "moto-g30-2021-standard-edition-td-lte-latam-128gb-xt2129-1", + "name": "Moto G30 2021 Standard Edition TD-LTE LATAM 128GB XT2129-1", + "url": "/v1/smartphones/moto-g30-2021-standard-edition-td-lte-latam-128gb-xt2129-1" + }, + { + "slug": "moto-g31-2021", + "name": "Moto G31 2021", + "url": "/v1/smartphones/moto-g31-2021" + }, + { + "slug": "moto-g31-2021-dual-sim-td-lte-apac-128gb-xt2173-2", + "name": "Moto G31 2021 Dual SIM TD-LTE APAC 128GB XT2173-2", + "url": "/v1/smartphones/moto-g31-2021-dual-sim-td-lte-apac-128gb-xt2173-2" + }, + { + "slug": "moto-g31-2021-dual-sim-td-lte-apac-64gb-xt2173-2", + "name": "Moto G31 2021 Dual SIM TD-LTE APAC 64GB XT2173-2", + "url": "/v1/smartphones/moto-g31-2021-dual-sim-td-lte-apac-64gb-xt2173-2" + }, + { + "slug": "moto-g31-2021-dual-sim-td-lte-latam-128gb-xt2173-1", + "name": "Moto G31 2021 Dual SIM TD-LTE LATAM 128GB XT2173-1", + "url": "/v1/smartphones/moto-g31-2021-dual-sim-td-lte-latam-128gb-xt2173-1" + }, + { + "slug": "moto-g31-2021-global-dual-sim-td-lte-128gb-xt2173-3", + "name": "Moto G31 2021 Global Dual SIM TD-LTE 128GB XT2173-3", + "url": "/v1/smartphones/moto-g31-2021-global-dual-sim-td-lte-128gb-xt2173-3" + }, + { + "slug": "moto-g31-2021-global-dual-sim-td-lte-64gb-xt2173-3", + "name": "Moto G31 2021 Global Dual SIM TD-LTE 64GB XT2173-3", + "url": "/v1/smartphones/moto-g31-2021-global-dual-sim-td-lte-64gb-xt2173-3" + }, + { + "slug": "moto-g31-2021-td-lte-latam-128gb-xt2173-1", + "name": "Moto G31 2021 TD-LTE LATAM 128GB XT2173-1", + "url": "/v1/smartphones/moto-g31-2021-td-lte-latam-128gb-xt2173-1" + }, + { + "slug": "moto-g40-fusion-2021", + "name": "Moto G40 Fusion 2021", + "url": "/v1/smartphones/moto-g40-fusion-2021" + }, + { + "slug": "moto-g41-2021-premium-edition", + "name": "Moto G41 2021 Premium Edition", + "url": "/v1/smartphones/moto-g41-2021-premium-edition" + }, + { + "slug": "moto-g41-2021-premium-edition-global-dual-sim-td-lte-128gb-xt2167-2", + "name": "Moto G41 2021 Premium Edition Global Dual SIM TD-LTE 128GB XT2167-2", + "url": "/v1/smartphones/moto-g41-2021-premium-edition-global-dual-sim-td-lte-128gb-xt2167-2" + }, + { + "slug": "moto-g41-2021-standard-edition", + "name": "Moto G41 2021 Standard Edition", + "url": "/v1/smartphones/moto-g41-2021-standard-edition" + }, + { + "slug": "moto-g41-2021-standard-edition-dual-sim-td-lte-latam-128gb-xt2167-1", + "name": "Moto G41 2021 Standard Edition Dual SIM TD-LTE LATAM 128GB XT2167-1", + "url": "/v1/smartphones/moto-g41-2021-standard-edition-dual-sim-td-lte-latam-128gb-xt2167-1" + }, + { + "slug": "moto-g41-2021-standard-edition-global-dual-sim-td-lte-128gb-xt2167-2", + "name": "Moto G41 2021 Standard Edition Global Dual SIM TD-LTE 128GB XT2167-2", + "url": "/v1/smartphones/moto-g41-2021-standard-edition-global-dual-sim-td-lte-128gb-xt2167-2" + }, + { + "slug": "moto-g41-2021-standard-edition-td-lte-latam-128gb-xt2167-1", + "name": "Moto G41 2021 Standard Edition TD-LTE LATAM 128GB XT2167-1", + "url": "/v1/smartphones/moto-g41-2021-standard-edition-td-lte-latam-128gb-xt2167-1" + }, + { + "slug": "moto-g50", + "name": "Moto G50", + "url": "/v1/smartphones/moto-g50" + }, + { + "slug": "moto-g50-5g-2021-dual-sim-td-lte-cn-128gb-xt2137-2", + "name": "Moto G50 5G 2021 Dual SIM TD-LTE CN 128GB XT2137-2", + "url": "/v1/smartphones/moto-g50-5g-2021-dual-sim-td-lte-cn-128gb-xt2137-2" + }, + { + "slug": "moto-g50-5g-2021-global-dual-sim-td-lte-128gb-xt2137-1", + "name": "Moto G50 5G 2021 Global Dual SIM TD-LTE 128GB XT2137-1", + "url": "/v1/smartphones/moto-g50-5g-2021-global-dual-sim-td-lte-128gb-xt2137-1" + }, + { + "slug": "moto-g50-5g-2021-global-dual-sim-td-lte-128gb-xt2149-1", + "name": "Moto G50 5G 2021 Global Dual SIM TD-LTE 128GB XT2149-1", + "url": "/v1/smartphones/moto-g50-5g-2021-global-dual-sim-td-lte-128gb-xt2149-1" + }, + { + "slug": "moto-g50-5g-2021-global-dual-sim-td-lte-64gb-xt2137-1", + "name": "Moto G50 5G 2021 Global Dual SIM TD-LTE 64GB XT2137-1", + "url": "/v1/smartphones/moto-g50-5g-2021-global-dual-sim-td-lte-64gb-xt2137-1" + }, + { + "slug": "moto-g50-5g-2021-global-td-lte-128gb-xt2149-1", + "name": "Moto G50 5G 2021 Global TD-LTE 128GB XT2149-1", + "url": "/v1/smartphones/moto-g50-5g-2021-global-td-lte-128gb-xt2149-1" + }, + { + "slug": "moto-g51", + "name": "Moto G51", + "url": "/v1/smartphones/moto-g51" + }, + { + "slug": "moto-g52j", + "name": "Moto G52j", + "url": "/v1/smartphones/moto-g52j" + }, + { + "slug": "moto-g52j-ii", + "name": "Moto G52j II", + "url": "/v1/smartphones/moto-g52j-ii" + }, + { + "slug": "moto-g53", + "name": "Moto G53", + "url": "/v1/smartphones/moto-g53" + }, + { + "slug": "moto-g53j", + "name": "Moto G53j", + "url": "/v1/smartphones/moto-g53j" + }, + { + "slug": "moto-g53s", + "name": "Moto G53s", + "url": "/v1/smartphones/moto-g53s" + }, + { + "slug": "moto-g53y", + "name": "Moto G53y", + "url": "/v1/smartphones/moto-g53y" + }, + { + "slug": "moto-g6-dual-sim-lte-a-latam-32gb-xt1925-2", + "name": "Moto G6 Dual SIM LTE-A LATAM 32GB XT1925-2", + "url": "/v1/smartphones/moto-g6-dual-sim-lte-a-latam-32gb-xt1925-2" + }, + { + "slug": "moto-g6-dual-sim-lte-a-latam-32gb-xt1925-3", + "name": "Moto G6 Dual SIM LTE-A LATAM 32GB XT1925-3", + "url": "/v1/smartphones/moto-g6-dual-sim-lte-a-latam-32gb-xt1925-3" + }, + { + "slug": "moto-g6-dual-sim-lte-a-latam-64gb-xt1925-3", + "name": "Moto G6 Dual SIM LTE-A LATAM 64GB XT1925-3", + "url": "/v1/smartphones/moto-g6-dual-sim-lte-a-latam-64gb-xt1925-3" + }, + { + "slug": "moto-g6-dual-sim-td-lte-apac-32gb-xt1925-7-xt1925-13", + "name": "Moto G6 Dual SIM TD-LTE APAC 32GB XT1925-7 / XT1925-13", + "url": "/v1/smartphones/moto-g6-dual-sim-td-lte-apac-32gb-xt1925-7-xt1925-13" + }, + { + "slug": "moto-g6-dual-sim-td-lte-emea-32gb-xt1925-5", + "name": "Moto G6 Dual SIM TD-LTE EMEA 32GB XT1925-5", + "url": "/v1/smartphones/moto-g6-dual-sim-td-lte-emea-32gb-xt1925-5" + }, + { + "slug": "moto-g6-dual-sim-td-lte-in-64gb-xt1925-13", + "name": "Moto G6 Dual SIM TD-LTE IN 64GB XT1925-13", + "url": "/v1/smartphones/moto-g6-dual-sim-td-lte-in-64gb-xt1925-13" + }, + { + "slug": "moto-g6-forge-td-lte-na-xt1922-9-16gb-moto-g6-play", + "name": "Moto G6 Forge TD-LTE NA XT1922-9 16GB / Moto G6 Play", + "url": "/v1/smartphones/moto-g6-forge-td-lte-na-xt1922-9-16gb-moto-g6-play" + }, + { + "slug": "moto-g6-lte-a-latam-32gb-xt1925-1", + "name": "Moto G6 LTE-A LATAM 32GB XT1925-1", + "url": "/v1/smartphones/moto-g6-lte-a-latam-32gb-xt1925-1" + }, + { + "slug": "moto-g6-play-dual-sim-lte-a-latam-xt1922-5-32gb", + "name": "Moto G6 Play Dual SIM LTE-A LATAM XT1922-5 32GB", + "url": "/v1/smartphones/moto-g6-play-dual-sim-lte-a-latam-xt1922-5-32gb" + }, + { + "slug": "moto-g6-play-dual-sim-td-lte-apac-xt1922-1-32gb", + "name": "Moto G6 Play Dual SIM TD-LTE APAC XT1922-1 32GB", + "url": "/v1/smartphones/moto-g6-play-dual-sim-td-lte-apac-xt1922-1-32gb" + }, + { + "slug": "moto-g6-play-dual-sim-td-lte-emea-xt1922-3-32gb", + "name": "Moto G6 Play Dual SIM TD-LTE EMEA XT1922-3 32GB", + "url": "/v1/smartphones/moto-g6-play-dual-sim-td-lte-emea-xt1922-3-32gb" + }, + { + "slug": "moto-g6-play-dual-sim-td-lte-in-xt1922-10-32gb", + "name": "Moto G6 Play Dual SIM TD-LTE IN XT1922-10 32GB", + "url": "/v1/smartphones/moto-g6-play-dual-sim-td-lte-in-xt1922-10-32gb" + }, + { + "slug": "moto-g6-play-lte-a-latam-xt1922-4-32gb", + "name": "Moto G6 Play LTE-A LATAM XT1922-4 32GB", + "url": "/v1/smartphones/moto-g6-play-lte-a-latam-xt1922-4-32gb" + }, + { + "slug": "moto-g6-play-td-lte-emea-xt1922-2-32gb", + "name": "Moto G6 Play TD-LTE EMEA XT1922-2 32GB", + "url": "/v1/smartphones/moto-g6-play-td-lte-emea-xt1922-2-32gb" + }, + { + "slug": "moto-g6-play-td-lte-na-xt1922-6-16gb", + "name": "Moto G6 Play TD-LTE NA XT1922-6 16GB", + "url": "/v1/smartphones/moto-g6-play-td-lte-na-xt1922-6-16gb" + }, + { + "slug": "moto-g6-play-td-lte-na-xt1922-7-16gb", + "name": "Moto G6 Play TD-LTE NA XT1922-7 16GB", + "url": "/v1/smartphones/moto-g6-play-td-lte-na-xt1922-7-16gb" + }, + { + "slug": "moto-g6-play-td-lte-na-xt1922-9-32gb-moto-g-play-gen-6-xt1922-6", + "name": "Moto G6 Play TD-LTE NA XT1922-9 32GB / Moto G Play Gen 6 XT1922-6", + "url": "/v1/smartphones/moto-g6-play-td-lte-na-xt1922-9-32gb-moto-g-play-gen-6-xt1922-6" + }, + { + "slug": "moto-g6-plus-dual-sim-lte-a-latam-xt1926-7-64gb", + "name": "Moto G6 Plus Dual SIM LTE-A LATAM XT1926-7 64GB", + "url": "/v1/smartphones/moto-g6-plus-dual-sim-lte-a-latam-xt1926-7-64gb" + }, + { + "slug": "moto-g6-plus-dual-sim-td-lte-apac-xt1926-5-64gb", + "name": "Moto G6 Plus Dual SIM TD-LTE APAC XT1926-5 64GB", + "url": "/v1/smartphones/moto-g6-plus-dual-sim-td-lte-apac-xt1926-5-64gb" + }, + { + "slug": "moto-g6-plus-dual-sim-td-lte-emea-xt1926-3-64gb", + "name": "Moto G6 Plus Dual SIM TD-LTE EMEA XT1926-3 64GB", + "url": "/v1/smartphones/moto-g6-plus-dual-sim-td-lte-emea-xt1926-3-64gb" + }, + { + "slug": "moto-g6-plus-dual-sim-td-lte-in-xt1926-9-64gb", + "name": "Moto G6 Plus Dual SIM TD-LTE IN XT1926-9 64GB", + "url": "/v1/smartphones/moto-g6-plus-dual-sim-td-lte-in-xt1926-9-64gb" + }, + { + "slug": "moto-g6-plus-hdtv-dual-sim-lte-a-br-xt1926-8-64gb", + "name": "Moto G6 Plus HDTV Dual SIM LTE-A BR XT1926-8 64GB", + "url": "/v1/smartphones/moto-g6-plus-hdtv-dual-sim-lte-a-br-xt1926-8-64gb" + }, + { + "slug": "moto-g6-plus-lte-a-latam-xt1926-6-64gb", + "name": "Moto G6 Plus LTE-A LATAM XT1926-6 64GB", + "url": "/v1/smartphones/moto-g6-plus-lte-a-latam-xt1926-6-64gb" + }, + { + "slug": "moto-g6-plus-td-lte-emea-xt1926-2-64gb-moto-g-plus-gen-6", + "name": "Moto G6 Plus TD-LTE EMEA XT1926-2 64GB / Moto G Plus Gen 6", + "url": "/v1/smartphones/moto-g6-plus-td-lte-emea-xt1926-2-64gb-moto-g-plus-gen-6" + }, + { + "slug": "moto-g6-plus-td-lte-na-xt1926-1-64gb", + "name": "Moto G6 Plus TD-LTE NA XT1926-1 64GB", + "url": "/v1/smartphones/moto-g6-plus-td-lte-na-xt1926-1-64gb" + }, + { + "slug": "moto-g6-td-lte-emea-32gb-xt1925-4", + "name": "Moto G6 TD-LTE EMEA 32GB XT1925-4", + "url": "/v1/smartphones/moto-g6-td-lte-emea-32gb-xt1925-4" + }, + { + "slug": "moto-g6-td-lte-na-32gb-xt1925-12-moto-g-gen-6", + "name": "Moto G6 TD-LTE NA 32GB XT1925-12 / Moto G Gen 6", + "url": "/v1/smartphones/moto-g6-td-lte-na-32gb-xt1925-12-moto-g-gen-6" + }, + { + "slug": "moto-g6-td-lte-na-32gb-xt1925-6-moto-g-gen-6", + "name": "Moto G6 TD-LTE NA 32GB XT1925-6 / Moto G Gen 6", + "url": "/v1/smartphones/moto-g6-td-lte-na-32gb-xt1925-6-moto-g-gen-6" + }, + { + "slug": "moto-g6-td-lte-na-32gb-xt1925dl", + "name": "Moto G6 TD-LTE NA 32GB XT1925DL", + "url": "/v1/smartphones/moto-g6-td-lte-na-32gb-xt1925dl" + }, + { + "slug": "moto-g60-2021", + "name": "Moto G60 2021", + "url": "/v1/smartphones/moto-g60-2021" + }, + { + "slug": "moto-g60s-2021", + "name": "Moto G60s 2021", + "url": "/v1/smartphones/moto-g60s-2021" + }, + { + "slug": "moto-g60s-2021-dual-sim-td-lte-latam-128gb-xt2133-1", + "name": "Moto G60s 2021 Dual SIM TD-LTE LATAM 128GB XT2133-1", + "url": "/v1/smartphones/moto-g60s-2021-dual-sim-td-lte-latam-128gb-xt2133-1" + }, + { + "slug": "moto-g60s-2021-global-dual-sim-td-lte-128gb-xt2133-2", + "name": "Moto G60s 2021 Global Dual SIM TD-LTE 128GB XT2133-2", + "url": "/v1/smartphones/moto-g60s-2021-global-dual-sim-td-lte-128gb-xt2133-2" + }, + { + "slug": "moto-g60s-2021-td-lte-latam-128gb-xt2133-1", + "name": "Moto G60s 2021 TD-LTE LATAM 128GB XT2133-1", + "url": "/v1/smartphones/moto-g60s-2021-td-lte-latam-128gb-xt2133-1" + }, + { + "slug": "moto-g62", + "name": "Moto G62", + "url": "/v1/smartphones/moto-g62" + }, + { + "slug": "moto-g62-5g", + "name": "Moto G62 5G", + "url": "/v1/smartphones/moto-g62-5g" + }, + { + "slug": "moto-g7-dual-sim-lte-a-latam-64gb-xt1962-4", + "name": "Moto G7 Dual SIM LTE-A LATAM 64GB XT1962-4", + "url": "/v1/smartphones/moto-g7-dual-sim-lte-a-latam-64gb-xt1962-4" + }, + { + "slug": "moto-g7-dual-sim-td-lte-in-64gb-xt1962-6", + "name": "Moto G7 Dual SIM TD-LTE IN 64GB XT1962-6", + "url": "/v1/smartphones/moto-g7-dual-sim-td-lte-in-64gb-xt1962-6" + }, + { + "slug": "moto-g7-global-dual-sim-td-lte-64gb-xt1962-5", + "name": "Moto G7 Global Dual SIM TD-LTE 64GB XT1962-5", + "url": "/v1/smartphones/moto-g7-global-dual-sim-td-lte-64gb-xt1962-5" + }, + { + "slug": "moto-g7-global-td-lte-64gb-xt1962-5", + "name": "Moto G7 Global TD-LTE 64GB XT1962-5", + "url": "/v1/smartphones/moto-g7-global-td-lte-64gb-xt1962-5" + }, + { + "slug": "moto-g7-lte-a-latam-64gb-xt1962-4", + "name": "Moto G7 LTE-A LATAM 64GB XT1962-4", + "url": "/v1/smartphones/moto-g7-lte-a-latam-64gb-xt1962-4" + }, + { + "slug": "moto-g7-optimo-maxx-td-lte-us-32gb-xt1955dl", + "name": "Moto G7 Optimo Maxx TD-LTE US 32GB XT1955DL", + "url": "/v1/smartphones/moto-g7-optimo-maxx-td-lte-us-32gb-xt1955dl" + }, + { + "slug": "moto-g7-optimo-td-lte-us-32gb-xt1952dl", + "name": "Moto G7 Optimo TD-LTE US 32GB XT1952DL", + "url": "/v1/smartphones/moto-g7-optimo-td-lte-us-32gb-xt1952dl" + }, + { + "slug": "moto-g7-play-dual-sim-lte-a-latam-32gb-xt1952-2", + "name": "Moto G7 Play Dual SIM LTE-A LATAM 32GB XT1952-2", + "url": "/v1/smartphones/moto-g7-play-dual-sim-lte-a-latam-32gb-xt1952-2" + }, + { + "slug": "moto-g7-play-global-dual-sim-td-lte-32gb-xt1952-1", + "name": "Moto G7 Play Global Dual SIM TD-LTE 32GB XT1952-1", + "url": "/v1/smartphones/moto-g7-play-global-dual-sim-td-lte-32gb-xt1952-1" + }, + { + "slug": "moto-g7-play-global-td-lte-32gb-xt1952-1", + "name": "Moto G7 Play Global TD-LTE 32GB XT1952-1", + "url": "/v1/smartphones/moto-g7-play-global-td-lte-32gb-xt1952-1" + }, + { + "slug": "moto-g7-play-lte-a-latam-32gb-xt1952-2", + "name": "Moto G7 Play LTE-A LATAM 32GB XT1952-2", + "url": "/v1/smartphones/moto-g7-play-lte-a-latam-32gb-xt1952-2" + }, + { + "slug": "moto-g7-play-lte-a-us-32gb-xt1952-6", + "name": "Moto G7 Play LTE-A US 32GB XT1952-6", + "url": "/v1/smartphones/moto-g7-play-lte-a-us-32gb-xt1952-6" + }, + { + "slug": "moto-g7-play-td-lte-na-32gb-xt1952-3-xt1952-4", + "name": "Moto G7 Play TD-LTE NA 32GB XT1952-3 / XT1952-4", + "url": "/v1/smartphones/moto-g7-play-td-lte-na-32gb-xt1952-3-xt1952-4" + }, + { + "slug": "moto-g7-play-td-lte-us-32gb-xt1952-5", + "name": "Moto G7 Play TD-LTE US 32GB XT1952-5", + "url": "/v1/smartphones/moto-g7-play-td-lte-us-32gb-xt1952-5" + }, + { + "slug": "moto-g7-plus-dual-sim-lte-a-latam-64gb-xt1965-2", + "name": "Moto G7 Plus Dual SIM LTE-A LATAM 64GB XT1965-2", + "url": "/v1/smartphones/moto-g7-plus-dual-sim-lte-a-latam-64gb-xt1965-2" + }, + { + "slug": "moto-g7-plus-dual-sim-td-lte-cn-64gb-xt1965-6", + "name": "Moto G7 Plus Dual SIM TD-LTE CN 64GB XT1965-6", + "url": "/v1/smartphones/moto-g7-plus-dual-sim-td-lte-cn-64gb-xt1965-6" + }, + { + "slug": "moto-g7-plus-global-dual-sim-td-lte-64gb-xt1965-3", + "name": "Moto G7 Plus Global Dual SIM TD-LTE 64GB XT1965-3", + "url": "/v1/smartphones/moto-g7-plus-global-dual-sim-td-lte-64gb-xt1965-3" + }, + { + "slug": "moto-g7-plus-global-td-lte-64gb-xt1965-3", + "name": "Moto G7 Plus Global TD-LTE 64GB XT1965-3", + "url": "/v1/smartphones/moto-g7-plus-global-td-lte-64gb-xt1965-3" + }, + { + "slug": "moto-g7-plus-lte-a-latam-64gb-xt1965-2", + "name": "Moto G7 Plus LTE-A LATAM 64GB XT1965-2", + "url": "/v1/smartphones/moto-g7-plus-lte-a-latam-64gb-xt1965-2" + }, + { + "slug": "moto-g7-power-dtv-dual-sim-lte-a-br-32gb-xt1955-1", + "name": "Moto G7 Power DTV Dual SIM LTE-A BR 32GB XT1955-1", + "url": "/v1/smartphones/moto-g7-power-dtv-dual-sim-lte-a-br-32gb-xt1955-1" + }, + { + "slug": "moto-g7-power-dual-sim-lte-a-latam-64gb-xt1955-2", + "name": "Moto G7 Power Dual SIM LTE-A LATAM 64GB XT1955-2", + "url": "/v1/smartphones/moto-g7-power-dual-sim-lte-a-latam-64gb-xt1955-2" + }, + { + "slug": "moto-g7-power-global-dual-sim-td-lte-64gb-xt1955-4", + "name": "Moto G7 Power Global Dual SIM TD-LTE 64GB XT1955-4", + "url": "/v1/smartphones/moto-g7-power-global-dual-sim-td-lte-64gb-xt1955-4" + }, + { + "slug": "moto-g7-power-global-dual-sim-td-lte-64gb-xt1955-7", + "name": "Moto G7 Power Global Dual SIM TD-LTE 64GB XT1955-7", + "url": "/v1/smartphones/moto-g7-power-global-dual-sim-td-lte-64gb-xt1955-7" + }, + { + "slug": "moto-g7-power-global-td-lte-64gb-xt1955-4", + "name": "Moto G7 Power Global TD-LTE 64GB XT1955-4", + "url": "/v1/smartphones/moto-g7-power-global-td-lte-64gb-xt1955-4" + }, + { + "slug": "moto-g7-power-global-td-lte-64gb-xt1955-7", + "name": "Moto G7 Power Global TD-LTE 64GB XT1955-7", + "url": "/v1/smartphones/moto-g7-power-global-td-lte-64gb-xt1955-7" + }, + { + "slug": "moto-g7-power-lte-a-latam-64gb-xt1955-2", + "name": "Moto G7 Power LTE-A LATAM 64GB XT1955-2", + "url": "/v1/smartphones/moto-g7-power-lte-a-latam-64gb-xt1955-2" + }, + { + "slug": "moto-g7-power-td-lte-na-32gb-xt1955-5-xt1955-6", + "name": "Moto G7 Power TD-LTE NA 32GB XT1955-5 / XT1955-6", + "url": "/v1/smartphones/moto-g7-power-td-lte-na-32gb-xt1955-5-xt1955-6" + }, + { + "slug": "moto-g7-td-lte-na-64gb-xt1962-1", + "name": "Moto G7 TD-LTE NA 64GB XT1962-1", + "url": "/v1/smartphones/moto-g7-td-lte-na-64gb-xt1962-1" + }, + { + "slug": "moto-g71", + "name": "Moto G71", + "url": "/v1/smartphones/moto-g71" + }, + { + "slug": "moto-g72-2022-premium-edition", + "name": "Moto G72 2022 Premium Edition", + "url": "/v1/smartphones/moto-g72-2022-premium-edition" + }, + { + "slug": "moto-g72-2022-standard-edition", + "name": "Moto G72 2022 Standard Edition", + "url": "/v1/smartphones/moto-g72-2022-standard-edition" + }, + { + "slug": "moto-g73", + "name": "Moto G73", + "url": "/v1/smartphones/moto-g73" + }, + { + "slug": "moto-g75-5g", + "name": "Moto G75 5G", + "url": "/v1/smartphones/moto-g75-5g" + }, + { + "slug": "moto-g8-dual-sim-lte-a-latam-xt2045-1", + "name": "Moto G8 Dual SIM LTE-A LATAM XT2045-1", + "url": "/v1/smartphones/moto-g8-dual-sim-lte-a-latam-xt2045-1" + }, + { + "slug": "moto-g8-dual-sim-td-lte-apac-xt2045-6", + "name": "Moto G8 Dual SIM TD-LTE APAC XT2045-6", + "url": "/v1/smartphones/moto-g8-dual-sim-td-lte-apac-xt2045-6" + }, + { + "slug": "moto-g8-dual-sim-td-lte-emea-xt2045-2", + "name": "Moto G8 Dual SIM TD-LTE EMEA XT2045-2", + "url": "/v1/smartphones/moto-g8-dual-sim-td-lte-emea-xt2045-2" + }, + { + "slug": "moto-g8-lte-a-latam-xt2045-1", + "name": "Moto G8 LTE-A LATAM XT2045-1", + "url": "/v1/smartphones/moto-g8-lte-a-latam-xt2045-1" + }, + { + "slug": "moto-g8-optimo-maxx-td-lte-us-xt2041dl-g8-power", + "name": "Moto G8 Optimo Maxx TD-LTE US XT2041DL / G8 Power", + "url": "/v1/smartphones/moto-g8-optimo-maxx-td-lte-us-xt2041dl-g8-power" + }, + { + "slug": "moto-g8-play", + "name": "Moto G8 Play", + "url": "/v1/smartphones/moto-g8-play" + }, + { + "slug": "moto-g8-play-dual-sim-lte-a-latam-xt2015-2", + "name": "Moto G8 Play Dual SIM LTE-A LATAM XT2015-2", + "url": "/v1/smartphones/moto-g8-play-dual-sim-lte-a-latam-xt2015-2" + }, + { + "slug": "moto-g8-play-lte-a-latam-xt2015-2", + "name": "Moto G8 Play LTE-A LATAM XT2015-2", + "url": "/v1/smartphones/moto-g8-play-lte-a-latam-xt2015-2" + }, + { + "slug": "moto-g8-plus-dual-sim-lte-a-latam-xt2019-2", + "name": "Moto G8 Plus Dual SIM LTE-A LATAM XT2019-2", + "url": "/v1/smartphones/moto-g8-plus-dual-sim-lte-a-latam-xt2019-2" + }, + { + "slug": "moto-g8-plus-global-dual-sim-td-lte-xt2019-1-one-vision-plus", + "name": "Moto G8 Plus Global Dual SIM TD-LTE XT2019-1 / One Vision Plus", + "url": "/v1/smartphones/moto-g8-plus-global-dual-sim-td-lte-xt2019-1-one-vision-plus" + }, + { + "slug": "moto-g8-plus-global-td-lte-xt2019-1", + "name": "Moto G8 Plus Global TD-LTE XT2019-1", + "url": "/v1/smartphones/moto-g8-plus-global-td-lte-xt2019-1" + }, + { + "slug": "moto-g8-plus-lte-a-latam-xt2019-2", + "name": "Moto G8 Plus LTE-A LATAM XT2019-2", + "url": "/v1/smartphones/moto-g8-plus-lte-a-latam-xt2019-2" + }, + { + "slug": "moto-g8-power-dual-sim-lte-a-latam-xt2041-1", + "name": "Moto G8 Power Dual SIM LTE-A LATAM XT2041-1", + "url": "/v1/smartphones/moto-g8-power-dual-sim-lte-a-latam-xt2041-1" + }, + { + "slug": "moto-g8-power-global-dual-sim-td-lte-xt2041-3", + "name": "Moto G8 Power Global Dual SIM TD-LTE XT2041-3", + "url": "/v1/smartphones/moto-g8-power-global-dual-sim-td-lte-xt2041-3" + }, + { + "slug": "moto-g8-power-global-td-lte-xt2041-3", + "name": "Moto G8 Power Global TD-LTE XT2041-3", + "url": "/v1/smartphones/moto-g8-power-global-td-lte-xt2041-3" + }, + { + "slug": "moto-g8-power-lte-a-latam-xt2041-1", + "name": "Moto G8 Power LTE-A LATAM XT2041-1", + "url": "/v1/smartphones/moto-g8-power-lte-a-latam-xt2041-1" + }, + { + "slug": "moto-g8-td-lte-apac-xt2045-6", + "name": "Moto G8 TD-LTE APAC XT2045-6", + "url": "/v1/smartphones/moto-g8-td-lte-apac-xt2045-6" + }, + { + "slug": "moto-g82", + "name": "Moto G82", + "url": "/v1/smartphones/moto-g82" + }, + { + "slug": "moto-g82-5g", + "name": "Moto G82 5G", + "url": "/v1/smartphones/moto-g82-5g" + }, + { + "slug": "moto-g84", + "name": "Moto G84 5G", + "url": "/v1/smartphones/moto-g84" + }, + { + "slug": "moto-g9-play-2020-dual-sim-lte-a-latam-64gb-xt2083-1-moto-g9", + "name": "Moto G9 Play 2020 Dual SIM LTE-A LATAM 64GB XT2083-1 / Moto G9", + "url": "/v1/smartphones/moto-g9-play-2020-dual-sim-lte-a-latam-64gb-xt2083-1-moto-g9" + }, + { + "slug": "moto-g9-play-2020-dual-sim-td-lte-apac-128gb-xt2083-5", + "name": "Moto G9 Play 2020 Dual SIM TD-LTE APAC 128GB XT2083-5", + "url": "/v1/smartphones/moto-g9-play-2020-dual-sim-td-lte-apac-128gb-xt2083-5" + }, + { + "slug": "moto-g9-play-2020-global-dual-sim-td-lte-64gb-xt2083-3-xt2083-6", + "name": "Moto G9 Play 2020 Global Dual SIM TD-LTE 64GB XT2083-3 / XT2083-6", + "url": "/v1/smartphones/moto-g9-play-2020-global-dual-sim-td-lte-64gb-xt2083-3-xt2083-6" + }, + { + "slug": "moto-g9-play-2020-lte-a-latam-64gb-xt2083-1", + "name": "Moto G9 Play 2020 LTE-A LATAM 64GB XT2083-1", + "url": "/v1/smartphones/moto-g9-play-2020-lte-a-latam-64gb-xt2083-1" + }, + { + "slug": "moto-g9-plus-2020", + "name": "Moto G9 Plus 2020", + "url": "/v1/smartphones/moto-g9-plus-2020" + }, + { + "slug": "moto-g9-plus-2020-dual-sim-latam-lte-a-xt2087-1", + "name": "Moto G9 Plus 2020 Dual SIM LATAM LTE-A XT2087-1", + "url": "/v1/smartphones/moto-g9-plus-2020-dual-sim-latam-lte-a-xt2087-1" + }, + { + "slug": "moto-g9-plus-2020-global-dual-sim-lte-a-xt2087-2", + "name": "Moto G9 Plus 2020 Global Dual SIM LTE-A XT2087-2", + "url": "/v1/smartphones/moto-g9-plus-2020-global-dual-sim-lte-a-xt2087-2" + }, + { + "slug": "moto-g9-plus-2020-latam-lte-a-xt2087-1", + "name": "Moto G9 Plus 2020 LATAM LTE-A XT2087-1", + "url": "/v1/smartphones/moto-g9-plus-2020-latam-lte-a-xt2087-1" + }, + { + "slug": "moto-g9-power-2020-dual-sim-lte-a-latam-128gb-xt2091-4", + "name": "Moto G9 Power 2020 Dual SIM LTE-A LATAM 128GB XT2091-4", + "url": "/v1/smartphones/moto-g9-power-2020-dual-sim-lte-a-latam-128gb-xt2091-4" + }, + { + "slug": "moto-g9-power-2020-global-dual-sim-td-lte-128gb-xt2091-3", + "name": "Moto G9 Power 2020 Global Dual SIM TD-LTE 128GB XT2091-3", + "url": "/v1/smartphones/moto-g9-power-2020-global-dual-sim-td-lte-128gb-xt2091-3" + }, + { + "slug": "moto-g9-power-2020-global-td-lte-128gb-xt2091-3", + "name": "Moto G9 Power 2020 Global TD-LTE 128GB XT2091-3", + "url": "/v1/smartphones/moto-g9-power-2020-global-td-lte-128gb-xt2091-3" + }, + { + "slug": "moto-g9-power-2020-latam-128gb-xt2091-4", + "name": "Moto G9 Power 2020 LATAM 128GB XT2091-4", + "url": "/v1/smartphones/moto-g9-power-2020-latam-128gb-xt2091-4" + }, + { + "slug": "moto-one", + "name": "Moto One", + "url": "/v1/smartphones/moto-one" + }, + { + "slug": "moto-one-5g-2020-td-lte-us-128gb-xt2075-2", + "name": "Moto One 5G 2020 TD-LTE US 128GB XT2075-2", + "url": "/v1/smartphones/moto-one-5g-2020-td-lte-us-128gb-xt2075-2" + }, + { + "slug": "moto-one-5g-uw-2020-lte-a-us-128gb-xt2075-1", + "name": "Moto One 5G UW 2020 LTE-A US 128GB XT2075-1", + "url": "/v1/smartphones/moto-one-5g-uw-2020-lte-a-us-128gb-xt2075-1" + }, + { + "slug": "moto-one-action-dual-sim-lte-a-latam-apac-128gb-xt2013-1", + "name": "Moto One Action Dual SIM LTE-A LATAM APAC 128GB XT2013-1", + "url": "/v1/smartphones/moto-one-action-dual-sim-lte-a-latam-apac-128gb-xt2013-1" + }, + { + "slug": "moto-one-action-global-dual-sim-td-lte-128gb-xt2013-2", + "name": "Moto One Action Global Dual SIM TD-LTE 128GB XT2013-2", + "url": "/v1/smartphones/moto-one-action-global-dual-sim-td-lte-128gb-xt2013-2" + }, + { + "slug": "moto-one-action-lte-a-latam-128gb-xt2013-1", + "name": "Moto One Action LTE-A LATAM 128GB XT2013-1", + "url": "/v1/smartphones/moto-one-action-lte-a-latam-128gb-xt2013-1" + }, + { + "slug": "moto-one-action-td-lte-na-128gb-xt2013-4", + "name": "Moto One Action TD-LTE NA 128GB XT2013-4", + "url": "/v1/smartphones/moto-one-action-td-lte-na-128gb-xt2013-4" + }, + { + "slug": "moto-one-fusion", + "name": "Moto One Fusion+", + "url": "/v1/smartphones/moto-one-fusion" + }, + { + "slug": "moto-one-fusion-dual-sim-latam-lte-a-xt2067-2", + "name": "Moto One Fusion+ Dual SIM LATAM LTE-A XT2067-2", + "url": "/v1/smartphones/moto-one-fusion-dual-sim-latam-lte-a-xt2067-2" + }, + { + "slug": "moto-one-fusion-dual-sim-td-lte-apac-xt2067-3", + "name": "Moto One Fusion+ Dual SIM TD-LTE APAC XT2067-3", + "url": "/v1/smartphones/moto-one-fusion-dual-sim-td-lte-apac-xt2067-3" + }, + { + "slug": "moto-one-fusion-dual-sim-td-lte-emea-xt2067-1", + "name": "Moto One Fusion+ Dual SIM TD-LTE EMEA XT2067-1", + "url": "/v1/smartphones/moto-one-fusion-dual-sim-td-lte-emea-xt2067-1" + }, + { + "slug": "moto-one-fusion-latam-lte-a-xt2067-2", + "name": "Moto One Fusion+ LATAM LTE-A XT2067-2", + "url": "/v1/smartphones/moto-one-fusion-latam-lte-a-xt2067-2" + }, + { + "slug": "moto-one-hyper-dual-sim-lte-a-am-xt2027-1", + "name": "Moto One Hyper Dual SIM LTE-A AM XT2027-1", + "url": "/v1/smartphones/moto-one-hyper-dual-sim-lte-a-am-xt2027-1" + }, + { + "slug": "moto-one-hyper-global-dual-sim-td-lte-xt2027-3", + "name": "Moto One Hyper Global Dual SIM TD-LTE XT2027-3", + "url": "/v1/smartphones/moto-one-hyper-global-dual-sim-td-lte-xt2027-3" + }, + { + "slug": "moto-one-hyper-global-td-lte-xt2027-3", + "name": "Moto One Hyper Global TD-LTE XT2027-3", + "url": "/v1/smartphones/moto-one-hyper-global-td-lte-xt2027-3" + }, + { + "slug": "moto-one-hyper-lte-a-am-xt2027-1", + "name": "Moto One Hyper LTE-A AM XT2027-1", + "url": "/v1/smartphones/moto-one-hyper-lte-a-am-xt2027-1" + }, + { + "slug": "moto-one-macro", + "name": "Moto One Macro", + "url": "/v1/smartphones/moto-one-macro" + }, + { + "slug": "moto-one-macro-dual-sim-latam-lte-a-xt2016-2", + "name": "Moto One Macro Dual SIM LATAM LTE-A XT2016-2", + "url": "/v1/smartphones/moto-one-macro-dual-sim-latam-lte-a-xt2016-2" + }, + { + "slug": "moto-one-macro-global-dual-sim-td-lte-xt2016-1", + "name": "Moto One Macro Global Dual SIM TD-LTE XT2016-1", + "url": "/v1/smartphones/moto-one-macro-global-dual-sim-td-lte-xt2016-1" + }, + { + "slug": "moto-one-vision-dual-sim-lte-a-latam-au-128gb-xt1970-1", + "name": "Moto One Vision Dual SIM LTE-A LATAM AU 128GB XT1970-1", + "url": "/v1/smartphones/moto-one-vision-dual-sim-lte-a-latam-au-128gb-xt1970-1" + }, + { + "slug": "moto-one-vision-dual-sim-td-lte-emea-apac-128gb-xt1970-3", + "name": "Moto One Vision Dual SIM TD-LTE EMEA APAC 128GB XT1970-3", + "url": "/v1/smartphones/moto-one-vision-dual-sim-td-lte-emea-apac-128gb-xt1970-3" + }, + { + "slug": "moto-one-vision-lte-a-am-128gb-xt1970-2", + "name": "Moto One Vision LTE-A AM 128GB XT1970-2", + "url": "/v1/smartphones/moto-one-vision-lte-a-am-128gb-xt1970-2" + }, + { + "slug": "moto-one-vision-td-lte-emea-128gb-xt1970-3", + "name": "Moto One Vision TD-LTE EMEA 128GB XT1970-3", + "url": "/v1/smartphones/moto-one-vision-td-lte-emea-128gb-xt1970-3" + }, + { + "slug": "moto-one-zoom-global-dual-sim-td-lte-128gb-xt2010-1", + "name": "Moto One Zoom Global Dual SIM TD-LTE 128GB XT2010-1", + "url": "/v1/smartphones/moto-one-zoom-global-dual-sim-td-lte-128gb-xt2010-1" + }, + { + "slug": "moto-one-zoom-global-td-lte-128gb-xt2010-1", + "name": "Moto One Zoom Global TD-LTE 128GB XT2010-1", + "url": "/v1/smartphones/moto-one-zoom-global-td-lte-128gb-xt2010-1" + }, + { + "slug": "moto-s50", + "name": "Moto S50", + "url": "/v1/smartphones/moto-s50" + }, + { + "slug": "moto-x50-ultra", + "name": "Moto X50 Ultra", + "url": "/v1/smartphones/moto-x50-ultra" + }, + { + "slug": "moto-z3-dual-sim-td-lte-cn-128gb-xt1929-15", + "name": "Moto Z3 Dual SIM TD-LTE CN 128GB XT1929-15", + "url": "/v1/smartphones/moto-z3-dual-sim-td-lte-cn-128gb-xt1929-15" + }, + { + "slug": "moto-z3-play-dual-sim-lte-a-am-64gb-xt1929-6-ds", + "name": "Moto Z3 Play Dual SIM LTE-A AM 64GB XT1929-6 DS", + "url": "/v1/smartphones/moto-z3-play-dual-sim-lte-a-am-64gb-xt1929-6-ds" + }, + { + "slug": "moto-z3-play-dual-sim-lte-a-latam-128gb-xt1929-5", + "name": "Moto Z3 Play Dual SIM LTE-A LATAM 128GB XT1929-5", + "url": "/v1/smartphones/moto-z3-play-dual-sim-lte-a-latam-128gb-xt1929-5" + }, + { + "slug": "moto-z3-play-dual-sim-lte-a-latam-64gb-xt1929-5", + "name": "Moto Z3 Play Dual SIM LTE-A LATAM 64GB XT1929-5", + "url": "/v1/smartphones/moto-z3-play-dual-sim-lte-a-latam-64gb-xt1929-5" + }, + { + "slug": "moto-z3-play-dual-sim-td-lte-emea-apac-64gb-xt1929-8-ds", + "name": "Moto Z3 Play Dual SIM TD-LTE EMEA APAC 64GB XT1929-8 DS", + "url": "/v1/smartphones/moto-z3-play-dual-sim-td-lte-emea-apac-64gb-xt1929-8-ds" + }, + { + "slug": "moto-z3-play-lte-a-latam-128gb-xt1929-6m", + "name": "Moto Z3 Play LTE-A LATAM 128GB XT1929-6M", + "url": "/v1/smartphones/moto-z3-play-lte-a-latam-128gb-xt1929-6m" + }, + { + "slug": "moto-z3-play-lte-a-latam-64gb-xt1929-6", + "name": "Moto Z3 Play LTE-A LATAM 64GB XT1929-6", + "url": "/v1/smartphones/moto-z3-play-lte-a-latam-64gb-xt1929-6" + }, + { + "slug": "moto-z3-play-td-lte-emea-apac-64gb-xt1929-8-moto-z-play-3rd-edition", + "name": "Moto Z3 Play TD-LTE EMEA APAC 64GB XT1929-8 / Moto Z Play 3rd Edition", + "url": "/v1/smartphones/moto-z3-play-td-lte-emea-apac-64gb-xt1929-8-moto-z-play-3rd-edition" + }, + { + "slug": "moto-z3-play-td-lte-na-32gb-xt1929-4-xt1929-1", + "name": "Moto Z3 Play TD-LTE NA 32GB XT1929-4 / XT1929-1", + "url": "/v1/smartphones/moto-z3-play-td-lte-na-32gb-xt1929-4-xt1929-1" + }, + { + "slug": "moto-z3-play-td-lte-na-64gb-xt1929-4", + "name": "Moto Z3 Play TD-LTE NA 64GB XT1929-4", + "url": "/v1/smartphones/moto-z3-play-td-lte-na-64gb-xt1929-4" + }, + { + "slug": "moto-z3-play-td-lte-us-32gb-xt1929-3", + "name": "Moto Z3 Play TD-LTE US 32GB XT1929-3", + "url": "/v1/smartphones/moto-z3-play-td-lte-us-32gb-xt1929-3" + }, + { + "slug": "moto-z3-td-lte-us-64gb-xt1929-17-moto-z-3rd-gen", + "name": "Moto Z3 TD-LTE US 64GB XT1929-17 / Moto Z 3rd gen", + "url": "/v1/smartphones/moto-z3-td-lte-us-64gb-xt1929-17-moto-z-3rd-gen" + }, + { + "slug": "moto-z4-lte-a-us-xt1980-4", + "name": "Moto Z4 LTE-A US XT1980-4", + "url": "/v1/smartphones/moto-z4-lte-a-us-xt1980-4" + }, + { + "slug": "moto-z4-td-lte-na-xt1980-3", + "name": "Moto Z4 TD-LTE NA XT1980-3", + "url": "/v1/smartphones/moto-z4-td-lte-na-xt1980-3" + }, + { + "slug": "moto-g100", + "name": "Moto g100", + "url": "/v1/smartphones/moto-g100" + }, + { + "slug": "moto-g100-global-dual-sim-td-lte-128gb-xt2125-4", + "name": "Moto g100 Global Dual SIM TD-LTE 128GB XT2125-4", + "url": "/v1/smartphones/moto-g100-global-dual-sim-td-lte-128gb-xt2125-4" + }, + { + "slug": "moto-g100-global-dual-sim-td-lte-256gb-xt2125-4", + "name": "Moto g100 Global Dual SIM TD-LTE 256GB XT2125-4", + "url": "/v1/smartphones/moto-g100-global-dual-sim-td-lte-256gb-xt2125-4" + }, + { + "slug": "moto-g100-global-td-lte-128gb-xt2125-4", + "name": "Moto g100 Global TD-LTE 128GB XT2125-4", + "url": "/v1/smartphones/moto-g100-global-td-lte-128gb-xt2125-4" + }, + { + "slug": "moto-g22-2022", + "name": "Moto g22 2022", + "url": "/v1/smartphones/moto-g22-2022" + }, + { + "slug": "motorola-edge-30-ultra", + "name": "Motorola Edge 30 Ultra", + "url": "/v1/smartphones/motorola-edge-30-ultra" + }, + { + "slug": "motorola-edge-40-pro", + "name": "Motorola Edge 40 Pro", + "url": "/v1/smartphones/motorola-edge-40-pro" + }, + { + "slug": "motorola-edge-50-pro", + "name": "Motorola Edge 50 Pro", + "url": "/v1/smartphones/motorola-edge-50-pro" + }, + { + "slug": "motorola-edge-50-ultra", + "name": "Motorola Edge 50 Ultra", + "url": "/v1/smartphones/motorola-edge-50-ultra" + }, + { + "slug": "motorola-edge-60-pro", + "name": "Motorola Edge 60 Pro", + "url": "/v1/smartphones/motorola-edge-60-pro" + }, + { + "slug": "motorola-razr", + "name": "Motorola Razr (2019)", + "url": "/v1/smartphones/motorola-razr" + }, + { + "slug": "motorola-razr-40-ultra", + "name": "Motorola Razr 40 Ultra", + "url": "/v1/smartphones/motorola-razr-40-ultra" + }, + { + "slug": "motorola-razr-50-ultra", + "name": "Motorola Razr 50 Ultra", + "url": "/v1/smartphones/motorola-razr-50-ultra" + }, + { + "slug": "motorola-razr-5g", + "name": "Motorola Razr 5G", + "url": "/v1/smartphones/motorola-razr-5g" + }, + { + "slug": "n0030ww-bold-n1-dual-sim-lte", + "name": "N0030WW BOLD N1 Dual SIM LTE", + "url": "/v1/smartphones/n0030ww-bold-n1-dual-sim-lte" + }, + { + "slug": "n10-pro-dual-sim-td-lte-cn-128gb-sac-a0", + "name": "N10 Pro Dual SIM TD-LTE CN 128GB SAC-A0", + "url": "/v1/smartphones/n10-pro-dual-sim-td-lte-cn-128gb-sac-a0" + }, + { + "slug": "n100-dual-sim-lte-a-emea", + "name": "N100 Dual SIM LTE-A EMEA", + "url": "/v1/smartphones/n100-dual-sim-lte-a-emea" + }, + { + "slug": "n20-dual-sim-lte-a-emea", + "name": "N20 Dual SIM LTE-A EMEA", + "url": "/v1/smartphones/n20-dual-sim-lte-a-emea" + }, + { + "slug": "note-5", + "name": "NOTE 5", + "url": "/v1/smartphones/note-5" + }, + { + "slug": "note-5-dual-sim-td-lte", + "name": "NOTE 5 Dual SIM TD-LTE", + "url": "/v1/smartphones/note-5-dual-sim-td-lte" + }, + { + "slug": "note-5-stylus", + "name": "NOTE 5 Stylus", + "url": "/v1/smartphones/note-5-stylus" + }, + { + "slug": "note-5-stylus-dual-sim-td-lte", + "name": "NOTE 5 Stylus Dual SIM TD-LTE", + "url": "/v1/smartphones/note-5-stylus-dual-sim-td-lte" + }, + { + "slug": "note-6", + "name": "NOTE 6", + "url": "/v1/smartphones/note-6" + }, + { + "slug": "note-6-dual-sim-td-lte-x610", + "name": "NOTE 6 Dual SIM TD-LTE X610", + "url": "/v1/smartphones/note-6-dual-sim-td-lte-x610" + }, + { + "slug": "narzo-70-5g", + "name": "Narzo 70 5G", + "url": "/v1/smartphones/narzo-70-5g" + }, + { + "slug": "narzo-70-turbo-5g", + "name": "Narzo 70 Turbo 5G", + "url": "/v1/smartphones/narzo-70-turbo-5g" + }, + { + "slug": "narzo-n61", + "name": "Narzo N61", + "url": "/v1/smartphones/narzo-n61" + }, + { + "slug": "narzo-n63", + "name": "Narzo N63", + "url": "/v1/smartphones/narzo-n63" + }, + { + "slug": "narzo-n65-5g", + "name": "Narzo N65 5G", + "url": "/v1/smartphones/narzo-n65-5g" + }, + { + "slug": "neo-7", + "name": "Neo 7", + "url": "/v1/smartphones/neo-7" + }, + { + "slug": "nord", + "name": "Nord", + "url": "/v1/smartphones/nord" + }, + { + "slug": "nord-2", + "name": "Nord 2", + "url": "/v1/smartphones/nord-2" + }, + { + "slug": "nord-2-5g-premium-edition-dual-sim-td-lte-in-128gb-dn2101", + "name": "Nord 2 5G Premium Edition Dual SIM TD-LTE IN 128GB DN2101", + "url": "/v1/smartphones/nord-2-5g-premium-edition-dual-sim-td-lte-in-128gb-dn2101" + }, + { + "slug": "nord-2-5g-premium-edition-global-dual-sim-td-lte-128gb-dn2103", + "name": "Nord 2 5G Premium Edition Global Dual SIM TD-LTE 128GB DN2103", + "url": "/v1/smartphones/nord-2-5g-premium-edition-global-dual-sim-td-lte-128gb-dn2103" + }, + { + "slug": "nord-2-5g-standard-edition-dual-sim-td-lte-in-128gb-dn2101", + "name": "Nord 2 5G Standard Edition Dual SIM TD-LTE IN 128GB DN2101", + "url": "/v1/smartphones/nord-2-5g-standard-edition-dual-sim-td-lte-in-128gb-dn2101" + }, + { + "slug": "nord-2-5g-top-edition-dual-sim-td-lte-in-256gb-dn2101", + "name": "Nord 2 5G Top Edition Dual SIM TD-LTE IN 256GB DN2101", + "url": "/v1/smartphones/nord-2-5g-top-edition-dual-sim-td-lte-in-256gb-dn2101" + }, + { + "slug": "nord-2-5g-top-edition-global-dual-sim-td-lte-256gb-dn2103", + "name": "Nord 2 5G Top Edition Global Dual SIM TD-LTE 256GB DN2103", + "url": "/v1/smartphones/nord-2-5g-top-edition-global-dual-sim-td-lte-256gb-dn2103" + }, + { + "slug": "nord-2t", + "name": "Nord 2T", + "url": "/v1/smartphones/nord-2t" + }, + { + "slug": "nord-3", + "name": "Nord 3", + "url": "/v1/smartphones/nord-3" + }, + { + "slug": "nord-5g-dual-sim-td-lte-in-128gb-ac2001", + "name": "Nord 5G Dual SIM TD-LTE IN 128GB AC2001", + "url": "/v1/smartphones/nord-5g-dual-sim-td-lte-in-128gb-ac2001" + }, + { + "slug": "nord-5g-dual-sim-td-lte-in-256gb-ac2001", + "name": "Nord 5G Dual SIM TD-LTE IN 256GB AC2001", + "url": "/v1/smartphones/nord-5g-dual-sim-td-lte-in-256gb-ac2001" + }, + { + "slug": "nord-5g-dual-sim-td-lte-in-64gb-ac2001", + "name": "Nord 5G Dual SIM TD-LTE IN 64GB AC2001", + "url": "/v1/smartphones/nord-5g-dual-sim-td-lte-in-64gb-ac2001" + }, + { + "slug": "nord-5g-global-dual-sim-td-lte-128gb-ac2003-oneplus-z", + "name": "Nord 5G Global Dual SIM TD-LTE 128GB AC2003 / OnePlus Z", + "url": "/v1/smartphones/nord-5g-global-dual-sim-td-lte-128gb-ac2003-oneplus-z" + }, + { + "slug": "nord-5g-global-dual-sim-td-lte-256gb-ac2003", + "name": "Nord 5G Global Dual SIM TD-LTE 256GB AC2003", + "url": "/v1/smartphones/nord-5g-global-dual-sim-td-lte-256gb-ac2003" + }, + { + "slug": "nord-ce", + "name": "Nord CE", + "url": "/v1/smartphones/nord-ce" + }, + { + "slug": "nord-ce-2", + "name": "Nord CE 2", + "url": "/v1/smartphones/nord-ce-2" + }, + { + "slug": "nord-ce-2-lite", + "name": "Nord CE 2 Lite", + "url": "/v1/smartphones/nord-ce-2-lite" + }, + { + "slug": "nord-ce-3-lite", + "name": "Nord CE 3 Lite", + "url": "/v1/smartphones/nord-ce-3-lite" + }, + { + "slug": "nord-ce-5g", + "name": "Nord CE 5G", + "url": "/v1/smartphones/nord-ce-5g" + }, + { + "slug": "nord-n10", + "name": "Nord N10", + "url": "/v1/smartphones/nord-n10" + }, + { + "slug": "nord-n10-5g", + "name": "Nord N10 5G", + "url": "/v1/smartphones/nord-n10-5g" + }, + { + "slug": "nord-n10-5g-global-dual-sim-td-lte-128gb-be2029", + "name": "Nord N10 5G Global Dual SIM TD-LTE 128GB BE2029", + "url": "/v1/smartphones/nord-n10-5g-global-dual-sim-td-lte-128gb-be2029" + }, + { + "slug": "nord-n10-5g-td-lte-na-128gb-be2026", + "name": "Nord N10 5G TD-LTE NA 128GB BE2026", + "url": "/v1/smartphones/nord-n10-5g-td-lte-na-128gb-be2026" + }, + { + "slug": "nord-n10-5g-td-lte-us-128gb-be2028", + "name": "Nord N10 5G TD-LTE US 128GB BE2028", + "url": "/v1/smartphones/nord-n10-5g-td-lte-us-128gb-be2028" + }, + { + "slug": "nord-n100", + "name": "Nord N100", + "url": "/v1/smartphones/nord-n100" + }, + { + "slug": "nord-n100-global-dual-sim-td-lte-64gb-be2013", + "name": "Nord N100 Global Dual SIM TD-LTE 64GB BE2013", + "url": "/v1/smartphones/nord-n100-global-dual-sim-td-lte-64gb-be2013" + }, + { + "slug": "nord-n100-td-lte-na-64gb-be2011", + "name": "Nord N100 TD-LTE NA 64GB BE2011", + "url": "/v1/smartphones/nord-n100-td-lte-na-64gb-be2011" + }, + { + "slug": "nord-n100-td-lte-us-64gb-be2015", + "name": "Nord N100 TD-LTE US 64GB BE2015", + "url": "/v1/smartphones/nord-n100-td-lte-us-64gb-be2015" + }, + { + "slug": "nord-n20", + "name": "Nord N20", + "url": "/v1/smartphones/nord-n20" + }, + { + "slug": "nord-n200", + "name": "Nord N200", + "url": "/v1/smartphones/nord-n200" + }, + { + "slug": "nord-n200-5g-td-lte-na-64gb-de2117", + "name": "Nord N200 5G TD-LTE NA 64GB DE2117", + "url": "/v1/smartphones/nord-n200-5g-td-lte-na-64gb-de2117" + }, + { + "slug": "nord-n200-5g-td-lte-us-64gb-de2118", + "name": "Nord N200 5G TD-LTE US 64GB DE2118", + "url": "/v1/smartphones/nord-n200-5g-td-lte-us-64gb-de2118" + }, + { + "slug": "note-40", + "name": "Note 40", + "url": "/v1/smartphones/note-40" + }, + { + "slug": "note-40-5g", + "name": "Note 40 5G", + "url": "/v1/smartphones/note-40-5g" + }, + { + "slug": "note-40-pro", + "name": "Note 40 Pro", + "url": "/v1/smartphones/note-40-pro" + }, + { + "slug": "note-40-pro-5g", + "name": "Note 40 Pro 5G", + "url": "/v1/smartphones/note-40-pro-5g" + }, + { + "slug": "note-40-racing-edition", + "name": "Note 40 Racing Edition", + "url": "/v1/smartphones/note-40-racing-edition" + }, + { + "slug": "note-40s", + "name": "Note 40S", + "url": "/v1/smartphones/note-40s" + }, + { + "slug": "note-40x-5g", + "name": "Note 40X 5G", + "url": "/v1/smartphones/note-40x-5g" + }, + { + "slug": "note-50", + "name": "Note 50", + "url": "/v1/smartphones/note-50" + }, + { + "slug": "note-6-td-lte-dual-sim-32gb", + "name": "Note 6 TD-LTE Dual SIM 32GB", + "url": "/v1/smartphones/note-6-td-lte-dual-sim-32gb" + }, + { + "slug": "note-6-td-lte-dual-sim-64gb", + "name": "Note 6 TD-LTE Dual SIM 64GB", + "url": "/v1/smartphones/note-6-td-lte-dual-sim-64gb" + }, + { + "slug": "note-60", + "name": "Note 60", + "url": "/v1/smartphones/note-60" + }, + { + "slug": "note-60x", + "name": "Note 60x", + "url": "/v1/smartphones/note-60x" + }, + { + "slug": "note-7", + "name": "Note 7", + "url": "/v1/smartphones/note-7" + }, + { + "slug": "note-7-dual-sim-lte-a-emea", + "name": "Note 7 Dual SIM LTE-A EMEA", + "url": "/v1/smartphones/note-7-dual-sim-lte-a-emea" + }, + { + "slug": "note-7-dual-sim-td-lte-apac", + "name": "Note 7 Dual SIM TD-LTE APAC", + "url": "/v1/smartphones/note-7-dual-sim-td-lte-apac" + }, + { + "slug": "note-7p-dual-sim-lte", + "name": "Note 7P Dual SIM LTE", + "url": "/v1/smartphones/note-7p-dual-sim-lte" + }, + { + "slug": "note-8", + "name": "Note 8", + "url": "/v1/smartphones/note-8" + }, + { + "slug": "note-8-dual-sim-td-lte-cn-32gb-m822q", + "name": "Note 8 Dual SIM TD-LTE CN 32GB M822Q", + "url": "/v1/smartphones/note-8-dual-sim-td-lte-cn-32gb-m822q" + }, + { + "slug": "note-8-dual-sim-td-lte-cn-64gb-m822q", + "name": "Note 8 Dual SIM TD-LTE CN 64GB M822Q", + "url": "/v1/smartphones/note-8-dual-sim-td-lte-cn-64gb-m822q" + }, + { + "slug": "note-8-global-dual-sim-td-lte-64gb-m822h", + "name": "Note 8 Global Dual SIM TD-LTE 64GB M822H", + "url": "/v1/smartphones/note-8-global-dual-sim-td-lte-64gb-m822h" + }, + { + "slug": "note-8i", + "name": "Note 8i", + "url": "/v1/smartphones/note-8i" + }, + { + "slug": "note-9-premium-edition-dual-sim-td-lte-cn-64gb-m923q", + "name": "Note 9 Premium Edition Dual SIM TD-LTE CN 64GB M923Q", + "url": "/v1/smartphones/note-9-premium-edition-dual-sim-td-lte-cn-64gb-m923q" + }, + { + "slug": "note-9-standard-edition-dual-sim-td-lte-cn-128gb-m923q", + "name": "Note 9 Standard Edition Dual SIM TD-LTE CN 128GB M923Q", + "url": "/v1/smartphones/note-9-standard-edition-dual-sim-td-lte-cn-128gb-m923q" + }, + { + "slug": "note-9-standard-edition-dual-sim-td-lte-cn-64gb-m923q", + "name": "Note 9 Standard Edition Dual SIM TD-LTE CN 64GB M923Q", + "url": "/v1/smartphones/note-9-standard-edition-dual-sim-td-lte-cn-64gb-m923q" + }, + { + "slug": "nothing-phone-1", + "name": "Nothing Phone (1)", + "url": "/v1/smartphones/nothing-phone-1" + }, + { + "slug": "nothing-phone-2", + "name": "Nothing Phone (2)", + "url": "/v1/smartphones/nothing-phone-2" + }, + { + "slug": "nothing-phone-2a", + "name": "Nothing Phone (2a)", + "url": "/v1/smartphones/nothing-phone-2a" + }, + { + "slug": "nothing-phone-3", + "name": "Nothing Phone (3)", + "url": "/v1/smartphones/nothing-phone-3" + }, + { + "slug": "nothing-phone-3a", + "name": "Nothing Phone (3a)", + "url": "/v1/smartphones/nothing-phone-3a" + }, + { + "slug": "nova-12", + "name": "Nova 12", + "url": "/v1/smartphones/nova-12" + }, + { + "slug": "nova-12-pro", + "name": "Nova 12 Pro", + "url": "/v1/smartphones/nova-12-pro" + }, + { + "slug": "nova-13", + "name": "Nova 13", + "url": "/v1/smartphones/nova-13" + }, + { + "slug": "nova-13-pro", + "name": "Nova 13 Pro", + "url": "/v1/smartphones/nova-13-pro" + }, + { + "slug": "nova-2-lite-dual-sim-td-lte-apac-ldn-lx2-y7-pro-2018-ldn-l22", + "name": "Nova 2 Lite Dual SIM TD-LTE APAC LDN-LX2 / Y7 Pro 2018 LDN-L22", + "url": "/v1/smartphones/nova-2-lite-dual-sim-td-lte-apac-ldn-lx2-y7-pro-2018-ldn-l22" + }, + { + "slug": "nova-2-plus-dual-sim-lte-a-emea-bac-l21", + "name": "Nova 2 Plus Dual SIM LTE-A EMEA BAC-L21", + "url": "/v1/smartphones/nova-2-plus-dual-sim-lte-a-emea-bac-l21" + }, + { + "slug": "nova-2-plus-dual-sim-td-lte-apac-128gb-bac-l22", + "name": "Nova 2 Plus Dual SIM TD-LTE APAC 128GB BAC-L22", + "url": "/v1/smartphones/nova-2-plus-dual-sim-td-lte-apac-128gb-bac-l22" + }, + { + "slug": "nova-2-plus-lte-a-emea-bac-l01", + "name": "Nova 2 Plus LTE-A EMEA BAC-L01", + "url": "/v1/smartphones/nova-2-plus-lte-a-emea-bac-l01" + }, + { + "slug": "nova-3-dual-sim-lte-a-emea-par-lx1-par-l21", + "name": "Nova 3 Dual SIM LTE-A EMEA PAR-LX1 / PAR-L21", + "url": "/v1/smartphones/nova-3-dual-sim-lte-a-emea-par-lx1-par-l21" + }, + { + "slug": "nova-3-dual-sim-lte-a-emea-par-lx1m-par-l21m", + "name": "Nova 3 Dual SIM LTE-A EMEA PAR-LX1M / PAR-L21M", + "url": "/v1/smartphones/nova-3-dual-sim-lte-a-emea-par-lx1m-par-l21m" + }, + { + "slug": "nova-3-dual-sim-td-lte-apac-par-lx9-par-l29", + "name": "Nova 3 Dual SIM TD-LTE APAC PAR-LX9 / PAR-L29", + "url": "/v1/smartphones/nova-3-dual-sim-td-lte-apac-par-lx9-par-l29" + }, + { + "slug": "nova-3-dual-sim-td-lte-cn-par-al00", + "name": "Nova 3 Dual SIM TD-LTE CN PAR-AL00", + "url": "/v1/smartphones/nova-3-dual-sim-td-lte-cn-par-al00" + }, + { + "slug": "nova-3-dual-sim-td-lte-cn-par-tl20", + "name": "Nova 3 Dual SIM TD-LTE CN PAR-TL20", + "url": "/v1/smartphones/nova-3-dual-sim-td-lte-cn-par-tl20" + }, + { + "slug": "nova-3-lte-a-emea-par-l11", + "name": "Nova 3 LTE-A EMEA PAR-L11", + "url": "/v1/smartphones/nova-3-lte-a-emea-par-l11" + }, + { + "slug": "nova-3e-dual-sim-td-lte-apac-ane-lx2-ane-l22-ane-lx2j", + "name": "Nova 3e Dual SIM TD-LTE APAC ANE-LX2 / ANE-L22 / ANE-LX2J", + "url": "/v1/smartphones/nova-3e-dual-sim-td-lte-apac-ane-lx2-ane-l22-ane-lx2j" + }, + { + "slug": "nova-3e-dual-sim-td-lte-cn-128gb-ane-al00", + "name": "Nova 3e Dual SIM TD-LTE CN 128GB ANE-AL00", + "url": "/v1/smartphones/nova-3e-dual-sim-td-lte-cn-128gb-ane-al00" + }, + { + "slug": "nova-3e-dual-sim-td-lte-cn-64gb-ane-al00-p20-lite", + "name": "Nova 3e Dual SIM TD-LTE CN 64GB ANE-AL00 / P20 Lite", + "url": "/v1/smartphones/nova-3e-dual-sim-td-lte-cn-64gb-ane-al00-p20-lite" + }, + { + "slug": "nova-3e-dual-sim-td-lte-cn-64gb-ane-tl00", + "name": "Nova 3e Dual SIM TD-LTE CN 64GB ANE-TL00", + "url": "/v1/smartphones/nova-3e-dual-sim-td-lte-cn-64gb-ane-tl00" + }, + { + "slug": "nova-3i-dual-sim-td-lte-apac-ine-lx2-128gb", + "name": "Nova 3i Dual SIM TD-LTE APAC INE-LX2 128GB", + "url": "/v1/smartphones/nova-3i-dual-sim-td-lte-apac-ine-lx2-128gb" + }, + { + "slug": "nova-3i-dual-sim-td-lte-cn-ine-al00-128gb", + "name": "Nova 3i Dual SIM TD-LTE CN INE-AL00 128GB", + "url": "/v1/smartphones/nova-3i-dual-sim-td-lte-cn-ine-al00-128gb" + }, + { + "slug": "nova-3i-dual-sim-td-lte-cn-ine-tl00-128gb", + "name": "Nova 3i Dual SIM TD-LTE CN INE-TL00 128GB", + "url": "/v1/smartphones/nova-3i-dual-sim-td-lte-cn-ine-tl00-128gb" + }, + { + "slug": "nova-4-premium-edition-20mp-dual-sim-td-lte-apac-vce-lx2-vce-l22", + "name": "Nova 4 Premium Edition 20MP Dual SIM TD-LTE APAC VCE-LX2 / VCE-L22", + "url": "/v1/smartphones/nova-4-premium-edition-20mp-dual-sim-td-lte-apac-vce-lx2-vce-l22" + }, + { + "slug": "nova-4-premium-edition-20mp-dual-sim-td-lte-cn-vce-al00", + "name": "Nova 4 Premium Edition 20MP Dual SIM TD-LTE CN VCE-AL00", + "url": "/v1/smartphones/nova-4-premium-edition-20mp-dual-sim-td-lte-cn-vce-al00" + }, + { + "slug": "nova-4-premium-edition-20mp-dual-sim-td-lte-cn-vce-tl00", + "name": "Nova 4 Premium Edition 20MP Dual SIM TD-LTE CN VCE-TL00", + "url": "/v1/smartphones/nova-4-premium-edition-20mp-dual-sim-td-lte-cn-vce-tl00" + }, + { + "slug": "nova-4-premium-edition-48mp-dual-sim-td-lte-cn-vce-al00", + "name": "Nova 4 Premium Edition 48MP Dual SIM TD-LTE CN VCE-AL00", + "url": "/v1/smartphones/nova-4-premium-edition-48mp-dual-sim-td-lte-cn-vce-al00" + }, + { + "slug": "nova-4-standard-edition-20mp-dual-sim-td-lte-cn-vce-al00", + "name": "Nova 4 Standard Edition 20MP Dual SIM TD-LTE CN VCE-AL00", + "url": "/v1/smartphones/nova-4-standard-edition-20mp-dual-sim-td-lte-cn-vce-al00" + }, + { + "slug": "nova-4e-premium-edition-dual-sim-td-lte-apac-128gb-mar-lx2-p30-lite-mar-l22", + "name": "Nova 4e Premium Edition Dual SIM TD-LTE APAC 128GB MAR-LX2 / P30 Lite MAR-L22", + "url": "/v1/smartphones/nova-4e-premium-edition-dual-sim-td-lte-apac-128gb-mar-lx2-p30-lite-mar-l22" + }, + { + "slug": "nova-4e-premium-edition-dual-sim-td-lte-cn-128gb-mar-al00", + "name": "Nova 4e Premium Edition Dual SIM TD-LTE CN 128GB MAR-AL00", + "url": "/v1/smartphones/nova-4e-premium-edition-dual-sim-td-lte-cn-128gb-mar-al00" + }, + { + "slug": "nova-4e-standard-edition-dual-sim-td-lte-cn-128gb-mar-tl00", + "name": "Nova 4e Standard Edition Dual SIM TD-LTE CN 128GB MAR-TL00", + "url": "/v1/smartphones/nova-4e-standard-edition-dual-sim-td-lte-cn-128gb-mar-tl00" + }, + { + "slug": "nova-5-dual-sim-td-lte-cn-128gb-sea-al00", + "name": "Nova 5 Dual SIM TD-LTE CN 128GB SEA-AL00", + "url": "/v1/smartphones/nova-5-dual-sim-td-lte-cn-128gb-sea-al00" + }, + { + "slug": "nova-5-dual-sim-td-lte-cn-128gb-sea-tl00", + "name": "Nova 5 Dual SIM TD-LTE CN 128GB SEA-TL00", + "url": "/v1/smartphones/nova-5-dual-sim-td-lte-cn-128gb-sea-tl00" + }, + { + "slug": "nova-5-pro-dual-sim-td-lte-cn-128gb-sea-al10", + "name": "Nova 5 Pro Dual SIM TD-LTE CN 128GB SEA-AL10", + "url": "/v1/smartphones/nova-5-pro-dual-sim-td-lte-cn-128gb-sea-al10" + }, + { + "slug": "nova-5-pro-dual-sim-td-lte-cn-128gb-sea-tl10", + "name": "Nova 5 Pro Dual SIM TD-LTE CN 128GB SEA-TL10", + "url": "/v1/smartphones/nova-5-pro-dual-sim-td-lte-cn-128gb-sea-tl10" + }, + { + "slug": "nova-5-pro-dual-sim-td-lte-cn-256gb-sea-al10", + "name": "Nova 5 Pro Dual SIM TD-LTE CN 256GB SEA-AL10", + "url": "/v1/smartphones/nova-5-pro-dual-sim-td-lte-cn-256gb-sea-al10" + }, + { + "slug": "nova-5t-premium-edition-global-dual-sim-td-lte-128gb-yal-l21", + "name": "Nova 5T Premium Edition Global Dual SIM TD-LTE 128GB YAL-L21", + "url": "/v1/smartphones/nova-5t-premium-edition-global-dual-sim-td-lte-128gb-yal-l21" + }, + { + "slug": "nova-5t-premium-edition-global-dual-sim-td-lte-128gb-yal-l61d", + "name": "Nova 5T Premium Edition Global Dual SIM TD-LTE 128GB YAL-L61D", + "url": "/v1/smartphones/nova-5t-premium-edition-global-dual-sim-td-lte-128gb-yal-l61d" + }, + { + "slug": "nova-5t-standard-edition-global-dual-sim-td-lte-128gb-yal-l61a", + "name": "Nova 5T Standard Edition Global Dual SIM TD-LTE 128GB YAL-L61A", + "url": "/v1/smartphones/nova-5t-standard-edition-global-dual-sim-td-lte-128gb-yal-l61a" + }, + { + "slug": "nova-5t-standard-edition-global-td-lte-128gb-yal-l71a", + "name": "Nova 5T Standard Edition Global TD-LTE 128GB YAL-L71A", + "url": "/v1/smartphones/nova-5t-standard-edition-global-td-lte-128gb-yal-l71a" + }, + { + "slug": "nova-5t-standard-edition-global-td-lte-128gb-yal-lx1", + "name": "Nova 5T Standard Edition Global TD-LTE 128GB YAL-LX1", + "url": "/v1/smartphones/nova-5t-standard-edition-global-td-lte-128gb-yal-lx1" + }, + { + "slug": "nova-5i-premium-edition-dual-sim-td-lte-cn-128gb-glk-al00", + "name": "Nova 5i Premium Edition Dual SIM TD-LTE CN 128GB GLK-AL00", + "url": "/v1/smartphones/nova-5i-premium-edition-dual-sim-td-lte-cn-128gb-glk-al00" + }, + { + "slug": "nova-5i-pro-premium-edition-dual-sim-td-lte-cn-128gb-spn-al00", + "name": "Nova 5i Pro Premium Edition Dual SIM TD-LTE CN 128GB SPN-AL00", + "url": "/v1/smartphones/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-128gb-spn-al00" + }, + { + "slug": "nova-5i-pro-premium-edition-dual-sim-td-lte-cn-128gb-spn-tl00", + "name": "Nova 5i Pro Premium Edition Dual SIM TD-LTE CN 128GB SPN-TL00", + "url": "/v1/smartphones/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-128gb-spn-tl00" + }, + { + "slug": "nova-5i-pro-premium-edition-dual-sim-td-lte-cn-256gb-spn-al00", + "name": "Nova 5i Pro Premium Edition Dual SIM TD-LTE CN 256GB SPN-AL00", + "url": "/v1/smartphones/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-256gb-spn-al00" + }, + { + "slug": "nova-5i-pro-premium-edition-dual-sim-td-lte-cn-256gb-spn-tl00", + "name": "Nova 5i Pro Premium Edition Dual SIM TD-LTE CN 256GB SPN-TL00", + "url": "/v1/smartphones/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-256gb-spn-tl00" + }, + { + "slug": "nova-5i-pro-standard-edition-dual-sim-td-lte-cn-128gb-spn-al00-nova-5z", + "name": "Nova 5i Pro Standard Edition Dual SIM TD-LTE CN 128GB SPN-AL00 / nova 5z", + "url": "/v1/smartphones/nova-5i-pro-standard-edition-dual-sim-td-lte-cn-128gb-spn-al00-nova-5z" + }, + { + "slug": "nova-5i-pro-standard-edition-dual-sim-td-lte-cn-128gb-spn-tl00-nova-5z", + "name": "Nova 5i Pro Standard Edition Dual SIM TD-LTE CN 128GB SPN-TL00 / nova 5z", + "url": "/v1/smartphones/nova-5i-pro-standard-edition-dual-sim-td-lte-cn-128gb-spn-tl00-nova-5z" + }, + { + "slug": "nova-5i-standard-edition-dual-sim-td-lte-cn-128gb-glk-al00", + "name": "Nova 5i Standard Edition Dual SIM TD-LTE CN 128GB GLK-AL00", + "url": "/v1/smartphones/nova-5i-standard-edition-dual-sim-td-lte-cn-128gb-glk-al00" + }, + { + "slug": "nova-5i-standard-edition-dual-sim-td-lte-cn-128gb-glk-tl00", + "name": "Nova 5i Standard Edition Dual SIM TD-LTE CN 128GB GLK-TL00", + "url": "/v1/smartphones/nova-5i-standard-edition-dual-sim-td-lte-cn-128gb-glk-tl00" + }, + { + "slug": "nova-5z-dual-sim-td-lte-cn-64gb-spn-al00", + "name": "Nova 5z Dual SIM TD-LTE CN 64GB SPN-AL00", + "url": "/v1/smartphones/nova-5z-dual-sim-td-lte-cn-64gb-spn-al00" + }, + { + "slug": "nova-5z-dual-sim-td-lte-cn-64gb-spn-tl00", + "name": "Nova 5z Dual SIM TD-LTE CN 64GB SPN-TL00", + "url": "/v1/smartphones/nova-5z-dual-sim-td-lte-cn-64gb-spn-tl00" + }, + { + "slug": "nova-6-se-dual-sim-td-lte-cn-128gb-jny-al10", + "name": "Nova 6 SE Dual SIM TD-LTE CN 128GB JNY-AL10", + "url": "/v1/smartphones/nova-6-se-dual-sim-td-lte-cn-128gb-jny-al10" + }, + { + "slug": "nova-6-se-dual-sim-td-lte-cn-128gb-jny-tl10", + "name": "Nova 6 SE Dual SIM TD-LTE CN 128GB JNY-TL10", + "url": "/v1/smartphones/nova-6-se-dual-sim-td-lte-cn-128gb-jny-tl10" + }, + { + "slug": "nova-7-5g-dual-sim-td-lte-cn-128gb-jef-an00-jef-an20", + "name": "Nova 7 5G Dual SIM TD-LTE CN 128GB JEF-AN00 / JEF-AN20", + "url": "/v1/smartphones/nova-7-5g-dual-sim-td-lte-cn-128gb-jef-an00-jef-an20" + }, + { + "slug": "nova-7-5g-dual-sim-td-lte-cn-128gb-jef-tn00-jef-tn20", + "name": "Nova 7 5G Dual SIM TD-LTE CN 128GB JEF-TN00 / JEF-TN20", + "url": "/v1/smartphones/nova-7-5g-dual-sim-td-lte-cn-128gb-jef-tn00-jef-tn20" + }, + { + "slug": "nova-7-5g-dual-sim-td-lte-cn-256gb-jef-an00-jef-an20", + "name": "Nova 7 5G Dual SIM TD-LTE CN 256GB JEF-AN00 / JEF-AN20", + "url": "/v1/smartphones/nova-7-5g-dual-sim-td-lte-cn-256gb-jef-an00-jef-an20" + }, + { + "slug": "nova-7-5g-global-dual-sim-td-lte-256gb-jef-nx9-jef-n29", + "name": "Nova 7 5G Global Dual SIM TD-LTE 256GB JEF-NX9 / JEF-N29", + "url": "/v1/smartphones/nova-7-5g-global-dual-sim-td-lte-256gb-jef-nx9-jef-n29" + }, + { + "slug": "nova-7-pro-5g-dual-sim-td-lte-cn-128gb-jer-an10-jer-an20", + "name": "Nova 7 Pro 5G Dual SIM TD-LTE CN 128GB JER-AN10 / JER-AN20", + "url": "/v1/smartphones/nova-7-pro-5g-dual-sim-td-lte-cn-128gb-jer-an10-jer-an20" + }, + { + "slug": "nova-7-pro-5g-dual-sim-td-lte-cn-128gb-jer-tn10-jer-tn20", + "name": "Nova 7 Pro 5G Dual SIM TD-LTE CN 128GB JER-TN10 / JER-TN20", + "url": "/v1/smartphones/nova-7-pro-5g-dual-sim-td-lte-cn-128gb-jer-tn10-jer-tn20" + }, + { + "slug": "nova-7-pro-5g-dual-sim-td-lte-cn-256gb-jer-an10-jer-an20", + "name": "Nova 7 Pro 5G Dual SIM TD-LTE CN 256GB JER-AN10 / JER-AN20", + "url": "/v1/smartphones/nova-7-pro-5g-dual-sim-td-lte-cn-256gb-jer-an10-jer-an20" + }, + { + "slug": "nova-7-se", + "name": "Nova 7 SE", + "url": "/v1/smartphones/nova-7-se" + }, + { + "slug": "nova-7-se-5g-global-dual-sim-td-lte-128gb-cdy-nx9b-cdy-n29b", + "name": "Nova 7 SE 5G Global Dual SIM TD-LTE 128GB CDY-NX9B / CDY-N29B", + "url": "/v1/smartphones/nova-7-se-5g-global-dual-sim-td-lte-128gb-cdy-nx9b-cdy-n29b" + }, + { + "slug": "nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-cdy-an00-cdy-an20", + "name": "Nova 7 SE 5G Premium Edition Dual SIM TD-LTE CN 128GB CDY-AN00 / CDY-AN20", + "url": "/v1/smartphones/nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-cdy-an00-cdy-an20" + }, + { + "slug": "nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-cdy-tn00-cdy-tn20", + "name": "Nova 7 SE 5G Premium Edition Dual SIM TD-LTE CN 128GB CDY-TN00 / CDY-TN20", + "url": "/v1/smartphones/nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-cdy-tn00-cdy-tn20" + }, + { + "slug": "nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-256gb-cdy-an00-cdy-an20", + "name": "Nova 7 SE 5G Premium Edition Dual SIM TD-LTE CN 256GB CDY-AN00 / CDY-AN20", + "url": "/v1/smartphones/nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-256gb-cdy-an00-cdy-an20" + }, + { + "slug": "nova-7-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-cdy-an00-cdy-an20", + "name": "Nova 7 SE 5G Standard Edition Dual SIM TD-LTE CN 128GB CDY-AN00 / CDY-AN20", + "url": "/v1/smartphones/nova-7-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-cdy-an00-cdy-an20" + }, + { + "slug": "nova-7-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-cdy-tn00-cdy-tn20", + "name": "Nova 7 SE 5G Standard Edition Dual SIM TD-LTE CN 128GB CDY-TN00 / CDY-TN20", + "url": "/v1/smartphones/nova-7-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-cdy-tn00-cdy-tn20" + }, + { + "slug": "nova-7-se-5g-vitality-edition-dual-sim-td-lte-cn-128gb-cnd-an00-nova-7-se-5g-huoli", + "name": "Nova 7 SE 5G Vitality Edition Dual SIM TD-LTE CN 128GB CND-AN00 / Nova 7 SE 5G Huoli", + "url": "/v1/smartphones/nova-7-se-5g-vitality-edition-dual-sim-td-lte-cn-128gb-cnd-an00-nova-7-se-5g-huoli" + }, + { + "slug": "nova-7i-dual-sim-td-lte-apac-128gb-jny-lx2-jny-l22b", + "name": "Nova 7i Dual SIM TD-LTE APAC 128GB JNY-LX2 / JNY-L22B", + "url": "/v1/smartphones/nova-7i-dual-sim-td-lte-apac-128gb-jny-lx2-jny-l22b" + }, + { + "slug": "nova-7i-global-dual-sim-td-lte-128gb-jny-l21b-p40-lite-4g", + "name": "Nova 7i Global Dual SIM TD-LTE 128GB JNY-L21B / P40 Lite 4G", + "url": "/v1/smartphones/nova-7i-global-dual-sim-td-lte-128gb-jny-l21b-p40-lite-4g" + }, + { + "slug": "nova-8-5g-dual-sim-td-lte-cn-128gb-ang-an00", + "name": "Nova 8 5G Dual SIM TD-LTE CN 128GB ANG-AN00", + "url": "/v1/smartphones/nova-8-5g-dual-sim-td-lte-cn-128gb-ang-an00" + }, + { + "slug": "nova-8-5g-dual-sim-td-lte-cn-256gb-ang-an00", + "name": "Nova 8 5G Dual SIM TD-LTE CN 256GB ANG-AN00", + "url": "/v1/smartphones/nova-8-5g-dual-sim-td-lte-cn-256gb-ang-an00" + }, + { + "slug": "nova-8-pro-5g-dual-sim-td-lte-cn-128gb-brq-an00", + "name": "Nova 8 Pro 5G Dual SIM TD-LTE CN 128GB BRQ-AN00", + "url": "/v1/smartphones/nova-8-pro-5g-dual-sim-td-lte-cn-128gb-brq-an00" + }, + { + "slug": "nova-8-pro-5g-dual-sim-td-lte-cn-256gb-brq-an00", + "name": "Nova 8 Pro 5G Dual SIM TD-LTE CN 256GB BRQ-AN00", + "url": "/v1/smartphones/nova-8-pro-5g-dual-sim-td-lte-cn-256gb-brq-an00" + }, + { + "slug": "nova-8-se", + "name": "Nova 8 SE", + "url": "/v1/smartphones/nova-8-se" + }, + { + "slug": "nova-8-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-jsc-an00", + "name": "Nova 8 SE 5G Premium Edition Dual SIM TD-LTE CN 128GB JSC-AN00", + "url": "/v1/smartphones/nova-8-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-jsc-an00" + }, + { + "slug": "nova-8-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-jsc-an00", + "name": "Nova 8 SE 5G Standard Edition Dual SIM TD-LTE CN 128GB JSC-AN00", + "url": "/v1/smartphones/nova-8-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-jsc-an00" + }, + { + "slug": "nova-8-se-youth-edition-dual-sim-td-lte-cn-128gb-chl-al60", + "name": "Nova 8 SE Youth Edition Dual SIM TD-LTE CN 128GB CHL-AL60", + "url": "/v1/smartphones/nova-8-se-youth-edition-dual-sim-td-lte-cn-128gb-chl-al60" + }, + { + "slug": "nova-8i-dual-sim-td-lte-apac-128gb-nen-l22f", + "name": "Nova 8i Dual SIM TD-LTE APAC 128GB NEN-L22F", + "url": "/v1/smartphones/nova-8i-dual-sim-td-lte-apac-128gb-nen-l22f" + }, + { + "slug": "nova-lite-2-dual-sim-td-lte-jp-704hw", + "name": "Nova Lite 2 Dual SIM TD-LTE JP 704HW", + "url": "/v1/smartphones/nova-lite-2-dual-sim-td-lte-jp-704hw" + }, + { + "slug": "nova-lite-3-dual-sim-td-lte-jp-32gb-pot-lx2j-pot-l62j-pot-l72j", + "name": "Nova Lite 3 Dual SIM TD-LTE JP 32GB POT-LX2J / POT-L62J / POT-L72J", + "url": "/v1/smartphones/nova-lite-3-dual-sim-td-lte-jp-32gb-pot-lx2j-pot-l62j-pot-l72j" + }, + { + "slug": "nubia-m3-dual-sim-td-lte-64gb-nx611j", + "name": "Nubia M3 Dual SIM TD-LTE 64GB NX611J", + "url": "/v1/smartphones/nubia-m3-dual-sim-td-lte-64gb-nx611j" + }, + { + "slug": "nubia-play-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx651j", + "name": "Nubia Play 5G Premium Edition Dual SIM TD-LTE CN 128GB NX651J", + "url": "/v1/smartphones/nubia-play-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx651j" + }, + { + "slug": "nubia-play-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx651j", + "name": "Nubia Play 5G Premium Edition Dual SIM TD-LTE CN 256GB NX651J", + "url": "/v1/smartphones/nubia-play-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx651j" + }, + { + "slug": "nubia-red-magic-3-premium-edition-dual-sim-td-lte-na-128gb-nx629j", + "name": "Nubia Red Magic 3 Premium Edition Dual SIM TD-LTE NA 128GB NX629J", + "url": "/v1/smartphones/nubia-red-magic-3-premium-edition-dual-sim-td-lte-na-128gb-nx629j" + }, + { + "slug": "nubia-red-magic-3-premium-edition-dual-sim-td-lte-na-256gb-nx629j", + "name": "Nubia Red Magic 3 Premium Edition Dual SIM TD-LTE NA 256GB NX629J", + "url": "/v1/smartphones/nubia-red-magic-3-premium-edition-dual-sim-td-lte-na-256gb-nx629j" + }, + { + "slug": "nubia-red-magic-3-premium-edition-global-dual-sim-td-lte-128gb-nx629j", + "name": "Nubia Red Magic 3 Premium Edition Global Dual SIM TD-LTE 128GB NX629J", + "url": "/v1/smartphones/nubia-red-magic-3-premium-edition-global-dual-sim-td-lte-128gb-nx629j" + }, + { + "slug": "nubia-red-magic-3-premium-edition-global-dual-sim-td-lte-256gb-nx629j", + "name": "Nubia Red Magic 3 Premium Edition Global Dual SIM TD-LTE 256GB NX629J", + "url": "/v1/smartphones/nubia-red-magic-3-premium-edition-global-dual-sim-td-lte-256gb-nx629j" + }, + { + "slug": "nubia-red-magic-3-standard-edition-global-dual-sim-td-lte-128gb-nx629j", + "name": "Nubia Red Magic 3 Standard Edition Global Dual SIM TD-LTE 128GB NX629J", + "url": "/v1/smartphones/nubia-red-magic-3-standard-edition-global-dual-sim-td-lte-128gb-nx629j" + }, + { + "slug": "nubia-red-magic-3-standard-edition-global-dual-sim-td-lte-64gb-nx629j", + "name": "Nubia Red Magic 3 Standard Edition Global Dual SIM TD-LTE 64GB NX629J", + "url": "/v1/smartphones/nubia-red-magic-3-standard-edition-global-dual-sim-td-lte-64gb-nx629j" + }, + { + "slug": "nubia-red-magic-3s-premium-edition-global-dual-sim-td-lte-256gb-nx629j", + "name": "Nubia Red Magic 3S Premium Edition Global Dual SIM TD-LTE 256GB NX629J", + "url": "/v1/smartphones/nubia-red-magic-3s-premium-edition-global-dual-sim-td-lte-256gb-nx629j" + }, + { + "slug": "nubia-red-magic-3s-standard-edition-global-dual-sim-td-lte-128gb-nx629j", + "name": "Nubia Red Magic 3S Standard Edition Global Dual SIM TD-LTE 128GB NX629J", + "url": "/v1/smartphones/nubia-red-magic-3s-standard-edition-global-dual-sim-td-lte-128gb-nx629j" + }, + { + "slug": "nubia-red-magic-5g-lite-premium-edition-global-dual-sim-td-lte-256gb-nx651j", + "name": "Nubia Red Magic 5G Lite Premium Edition Global Dual SIM TD-LTE 256GB NX651J", + "url": "/v1/smartphones/nubia-red-magic-5g-lite-premium-edition-global-dual-sim-td-lte-256gb-nx651j" + }, + { + "slug": "nubia-red-magic-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx659j", + "name": "Nubia Red Magic 5G Premium Edition Dual SIM TD-LTE CN 128GB NX659J", + "url": "/v1/smartphones/nubia-red-magic-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx659j" + }, + { + "slug": "nubia-red-magic-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx659j", + "name": "Nubia Red Magic 5G Premium Edition Dual SIM TD-LTE CN 256GB NX659J", + "url": "/v1/smartphones/nubia-red-magic-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx659j" + }, + { + "slug": "nubia-red-magic-5g-premium-edition-global-dual-sim-td-lte-128gb-nx659j", + "name": "Nubia Red Magic 5G Premium Edition Global Dual SIM TD-LTE 128GB NX659J", + "url": "/v1/smartphones/nubia-red-magic-5g-premium-edition-global-dual-sim-td-lte-128gb-nx659j" + }, + { + "slug": "nubia-red-magic-5g-premium-edition-global-dual-sim-td-lte-256gb-nx659j", + "name": "Nubia Red Magic 5G Premium Edition Global Dual SIM TD-LTE 256GB NX659J", + "url": "/v1/smartphones/nubia-red-magic-5g-premium-edition-global-dual-sim-td-lte-256gb-nx659j" + }, + { + "slug": "nubia-red-magic-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx659j", + "name": "Nubia Red Magic 5G Standard Edition Dual SIM TD-LTE CN 128GB NX659J", + "url": "/v1/smartphones/nubia-red-magic-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx659j" + }, + { + "slug": "nubia-red-magic-5g-standard-edition-global-dual-sim-td-lte-128gb-nx659j", + "name": "Nubia Red Magic 5G Standard Edition Global Dual SIM TD-LTE 128GB NX659J", + "url": "/v1/smartphones/nubia-red-magic-5g-standard-edition-global-dual-sim-td-lte-128gb-nx659j" + }, + { + "slug": "nubia-red-magic-5g-top-edition-dual-sim-td-lte-cn-256gb-nx659j", + "name": "Nubia Red Magic 5G Top Edition Dual SIM TD-LTE CN 256GB NX659J", + "url": "/v1/smartphones/nubia-red-magic-5g-top-edition-dual-sim-td-lte-cn-256gb-nx659j" + }, + { + "slug": "nubia-red-magic-5g-transparent-edition-dual-sim-td-lte-cn-256gb-nx659j", + "name": "Nubia Red Magic 5G Transparent Edition Dual SIM TD-LTE CN 256GB NX659J", + "url": "/v1/smartphones/nubia-red-magic-5g-transparent-edition-dual-sim-td-lte-cn-256gb-nx659j" + }, + { + "slug": "nubia-red-magic-5s-premium-edition-dual-sim-td-lte-cn-256gb-nx659j", + "name": "Nubia Red Magic 5S Premium Edition Dual SIM TD-LTE CN 256GB NX659J", + "url": "/v1/smartphones/nubia-red-magic-5s-premium-edition-dual-sim-td-lte-cn-256gb-nx659j" + }, + { + "slug": "nubia-red-magic-5s-premium-edition-global-dual-sim-td-lte-256gb-nx659j", + "name": "Nubia Red Magic 5S Premium Edition Global Dual SIM TD-LTE 256GB NX659J", + "url": "/v1/smartphones/nubia-red-magic-5s-premium-edition-global-dual-sim-td-lte-256gb-nx659j" + }, + { + "slug": "nubia-red-magic-5s-standard-edition-dual-sim-td-lte-cn-128gb-nx659j", + "name": "Nubia Red Magic 5S Standard Edition Dual SIM TD-LTE CN 128GB NX659J", + "url": "/v1/smartphones/nubia-red-magic-5s-standard-edition-dual-sim-td-lte-cn-128gb-nx659j" + }, + { + "slug": "nubia-red-magic-5s-standard-edition-global-dual-sim-td-lte-128gb-nx659j", + "name": "Nubia Red Magic 5S Standard Edition Global Dual SIM TD-LTE 128GB NX659J", + "url": "/v1/smartphones/nubia-red-magic-5s-standard-edition-global-dual-sim-td-lte-128gb-nx659j" + }, + { + "slug": "nubia-red-magic-5s-top-edition-dual-sim-td-lte-cn-256gb-nx659j", + "name": "Nubia Red Magic 5S Top Edition Dual SIM TD-LTE CN 256GB NX659J", + "url": "/v1/smartphones/nubia-red-magic-5s-top-edition-dual-sim-td-lte-cn-256gb-nx659j" + }, + { + "slug": "nubia-red-magic-6-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx669j", + "name": "Nubia Red Magic 6 5G Premium Edition Dual SIM TD-LTE CN 128GB NX669J", + "url": "/v1/smartphones/nubia-red-magic-6-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx669j" + }, + { + "slug": "nubia-red-magic-6-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j", + "name": "Nubia Red Magic 6 5G Premium Edition Dual SIM TD-LTE CN 256GB NX669J", + "url": "/v1/smartphones/nubia-red-magic-6-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j" + }, + { + "slug": "nubia-red-magic-6-5g-premium-edition-global-dual-sim-td-lte-128gb-nx669j", + "name": "Nubia Red Magic 6 5G Premium Edition Global Dual SIM TD-LTE 128GB NX669J", + "url": "/v1/smartphones/nubia-red-magic-6-5g-premium-edition-global-dual-sim-td-lte-128gb-nx669j" + }, + { + "slug": "nubia-red-magic-6-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx669j", + "name": "Nubia Red Magic 6 5G Standard Edition Dual SIM TD-LTE CN 128GB NX669J", + "url": "/v1/smartphones/nubia-red-magic-6-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx669j" + }, + { + "slug": "nubia-red-magic-6-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j-p", + "name": "Nubia Red Magic 6 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB NX669J-P", + "url": "/v1/smartphones/nubia-red-magic-6-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j-p" + }, + { + "slug": "nubia-red-magic-6-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-nx669j-p", + "name": "Nubia Red Magic 6 Pro 5G Premium Edition Global Dual SIM TD-LTE 256GB NX669J-P", + "url": "/v1/smartphones/nubia-red-magic-6-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-nx669j-p" + }, + { + "slug": "nubia-red-magic-6-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-nx669j-p", + "name": "Nubia Red Magic 6 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB NX669J-P", + "url": "/v1/smartphones/nubia-red-magic-6-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-nx669j-p" + }, + { + "slug": "nubia-red-magic-6r-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx666j", + "name": "Nubia Red Magic 6R 5G Premium Edition Dual SIM TD-LTE CN 256GB NX666J", + "url": "/v1/smartphones/nubia-red-magic-6r-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx666j" + }, + { + "slug": "nubia-red-magic-6r-5g-premium-edition-global-dual-sim-td-lte-256gb-nx666j", + "name": "Nubia Red Magic 6R 5G Premium Edition Global Dual SIM TD-LTE 256GB NX666J", + "url": "/v1/smartphones/nubia-red-magic-6r-5g-premium-edition-global-dual-sim-td-lte-256gb-nx666j" + }, + { + "slug": "nubia-red-magic-6r-5g-satndard-edition-global-dual-sim-td-lte-128gb-nx666j", + "name": "Nubia Red Magic 6R 5G Satndard Edition Global Dual SIM TD-LTE 128GB NX666J", + "url": "/v1/smartphones/nubia-red-magic-6r-5g-satndard-edition-global-dual-sim-td-lte-128gb-nx666j" + }, + { + "slug": "nubia-red-magic-6s-pro-5g-basic-edition-dual-sim-td-lte-cn-128gb-nx669j-s", + "name": "Nubia Red Magic 6S Pro 5G Basic Edition Dual SIM TD-LTE CN 128GB NX669J-S", + "url": "/v1/smartphones/nubia-red-magic-6s-pro-5g-basic-edition-dual-sim-td-lte-cn-128gb-nx669j-s" + }, + { + "slug": "nubia-red-magic-6s-pro-5g-camouflage-edition-dual-sim-td-lte-cn-512gb-nx669j-s", + "name": "Nubia Red Magic 6S Pro 5G Camouflage Edition Dual SIM TD-LTE CN 512GB NX669J-S", + "url": "/v1/smartphones/nubia-red-magic-6s-pro-5g-camouflage-edition-dual-sim-td-lte-cn-512gb-nx669j-s" + }, + { + "slug": "nubia-red-magic-6s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j-s", + "name": "Nubia Red Magic 6S Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB NX669J-S", + "url": "/v1/smartphones/nubia-red-magic-6s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j-s" + }, + { + "slug": "nubia-red-magic-6s-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-nx669j-s", + "name": "Nubia Red Magic 6S Pro 5G Premium Edition Global Dual SIM TD-LTE 256GB NX669J-S", + "url": "/v1/smartphones/nubia-red-magic-6s-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-nx669j-s" + }, + { + "slug": "nubia-red-magic-6s-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx669j-s", + "name": "Nubia Red Magic 6S Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB NX669J-S", + "url": "/v1/smartphones/nubia-red-magic-6s-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx669j-s" + }, + { + "slug": "nubia-red-magic-6s-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-nx669j-s", + "name": "Nubia Red Magic 6S Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB NX669J-S", + "url": "/v1/smartphones/nubia-red-magic-6s-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-nx669j-s" + }, + { + "slug": "nubia-red-magic-6s-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-nx669j-s", + "name": "Nubia Red Magic 6S Pro 5G Standard Edition Global Dual SIM TD-LTE 128GB NX669J-S", + "url": "/v1/smartphones/nubia-red-magic-6s-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-nx669j-s" + }, + { + "slug": "nubia-red-magic-6s-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-nx669j-s", + "name": "Nubia Red Magic 6S Pro 5G Top Edition Dual SIM TD-LTE CN 512GB NX669J-S", + "url": "/v1/smartphones/nubia-red-magic-6s-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-nx669j-s" + }, + { + "slug": "nubia-red-magic-dual-sim-td-lte-128gb-nx609j", + "name": "Nubia Red Magic Dual SIM TD-LTE 128GB NX609J", + "url": "/v1/smartphones/nubia-red-magic-dual-sim-td-lte-128gb-nx609j" + }, + { + "slug": "nubia-red-magic-dual-sim-td-lte-64gb-nx609j", + "name": "Nubia Red Magic Dual SIM TD-LTE 64GB NX609J", + "url": "/v1/smartphones/nubia-red-magic-dual-sim-td-lte-64gb-nx609j" + }, + { + "slug": "nubia-red-magic-mars-global-dual-sim-td-lte-128gb-nx619j", + "name": "Nubia Red Magic Mars Global Dual SIM TD-LTE 128GB NX619J", + "url": "/v1/smartphones/nubia-red-magic-mars-global-dual-sim-td-lte-128gb-nx619j" + }, + { + "slug": "nubia-red-magic-mars-global-dual-sim-td-lte-256gb-nx619j", + "name": "Nubia Red Magic Mars Global Dual SIM TD-LTE 256GB NX619J", + "url": "/v1/smartphones/nubia-red-magic-mars-global-dual-sim-td-lte-256gb-nx619j" + }, + { + "slug": "nubia-red-magic-mars-global-dual-sim-td-lte-64gb-nx619j", + "name": "Nubia Red Magic Mars Global Dual SIM TD-LTE 64GB NX619J", + "url": "/v1/smartphones/nubia-red-magic-mars-global-dual-sim-td-lte-64gb-nx619j" + }, + { + "slug": "nubia-v18-dual-sim-td-lte-cn", + "name": "Nubia V18 Dual SIM TD-LTE CN", + "url": "/v1/smartphones/nubia-v18-dual-sim-td-lte-cn" + }, + { + "slug": "nubia-x-premium-edition-dual-sim-td-lte-cn-128gb-nx616j", + "name": "Nubia X Premium Edition Dual SIM TD-LTE CN 128GB NX616J", + "url": "/v1/smartphones/nubia-x-premium-edition-dual-sim-td-lte-cn-128gb-nx616j" + }, + { + "slug": "nubia-x-premium-edition-dual-sim-td-lte-cn-256gb-nx616j", + "name": "Nubia X Premium Edition Dual SIM TD-LTE CN 256GB NX616J", + "url": "/v1/smartphones/nubia-x-premium-edition-dual-sim-td-lte-cn-256gb-nx616j" + }, + { + "slug": "nubia-x-standard-edition-dual-sim-td-lte-cn-64gb-nx616j", + "name": "Nubia X Standard Edition Dual SIM TD-LTE CN 64GB NX616J", + "url": "/v1/smartphones/nubia-x-standard-edition-dual-sim-td-lte-cn-64gb-nx616j" + }, + { + "slug": "nubia-x-starry-night-collector-edition-dual-sim-td-lte-cn-512gb-nx616j", + "name": "Nubia X Starry Night Collector Edition Dual SIM TD-LTE CN 512GB NX616J", + "url": "/v1/smartphones/nubia-x-starry-night-collector-edition-dual-sim-td-lte-cn-512gb-nx616j" + }, + { + "slug": "nubia-z18-dual-sim-td-lte-64gb-nx606j", + "name": "Nubia Z18 Dual SIM TD-LTE 64GB NX606J", + "url": "/v1/smartphones/nubia-z18-dual-sim-td-lte-64gb-nx606j" + }, + { + "slug": "nubia-z18-van-gogh-edition-dual-sim-td-lte-128gb-nx606j", + "name": "Nubia Z18 Van Gogh Edition Dual SIM TD-LTE 128GB NX606J", + "url": "/v1/smartphones/nubia-z18-van-gogh-edition-dual-sim-td-lte-128gb-nx606j" + }, + { + "slug": "nubia-z18-mini-dual-sim-td-lte-128gb-nx611j", + "name": "Nubia Z18 mini Dual SIM TD-LTE 128GB NX611J", + "url": "/v1/smartphones/nubia-z18-mini-dual-sim-td-lte-128gb-nx611j" + }, + { + "slug": "nubia-z18-mini-dual-sim-td-lte-64gb-nx611j", + "name": "Nubia Z18 mini Dual SIM TD-LTE 64GB NX611J", + "url": "/v1/smartphones/nubia-z18-mini-dual-sim-td-lte-64gb-nx611j" + }, + { + "slug": "nubia-z18s-premium-edition-dual-sim-td-lte-128gb", + "name": "Nubia Z18s Premium Edition Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/nubia-z18s-premium-edition-dual-sim-td-lte-128gb" + }, + { + "slug": "nubia-z20-premium-edition-dual-sim-td-lte-na-128gb-nx627j", + "name": "Nubia Z20 Premium Edition Dual SIM TD-LTE NA 128GB NX627J", + "url": "/v1/smartphones/nubia-z20-premium-edition-dual-sim-td-lte-na-128gb-nx627j" + }, + { + "slug": "nubia-z20-premium-edition-global-dual-sim-td-lte-128gb-nx627j", + "name": "Nubia Z20 Premium Edition Global Dual SIM TD-LTE 128GB NX627J", + "url": "/v1/smartphones/nubia-z20-premium-edition-global-dual-sim-td-lte-128gb-nx627j" + }, + { + "slug": "nubia-z20-premium-edition-global-dual-sim-td-lte-512gb-nx627j", + "name": "Nubia Z20 Premium Edition Global Dual SIM TD-LTE 512GB NX627J", + "url": "/v1/smartphones/nubia-z20-premium-edition-global-dual-sim-td-lte-512gb-nx627j" + }, + { + "slug": "nubia-z20-standard-edition-dual-sim-td-lte-na-128gb-nx627j", + "name": "Nubia Z20 Standard Edition Dual SIM TD-LTE NA 128GB NX627J", + "url": "/v1/smartphones/nubia-z20-standard-edition-dual-sim-td-lte-na-128gb-nx627j" + }, + { + "slug": "nubia-z20-standard-edition-global-dual-sim-td-lte-128gb-nx627j", + "name": "Nubia Z20 Standard Edition Global Dual SIM TD-LTE 128GB NX627J", + "url": "/v1/smartphones/nubia-z20-standard-edition-global-dual-sim-td-lte-128gb-nx627j" + }, + { + "slug": "oppo-find-n3", + "name": "OPPO Find N3", + "url": "/v1/smartphones/oppo-find-n3" + }, + { + "slug": "oppo-find-x5-pro", + "name": "OPPO Find X5 Pro", + "url": "/v1/smartphones/oppo-find-x5-pro" + }, + { + "slug": "oppo-find-x6-pro", + "name": "OPPO Find X6 Pro", + "url": "/v1/smartphones/oppo-find-x6-pro" + }, + { + "slug": "oppo-find-x7-ultra", + "name": "OPPO Find X7 Ultra", + "url": "/v1/smartphones/oppo-find-x7-ultra" + }, + { + "slug": "oppo-find-x8-pro", + "name": "OPPO Find X8 Pro", + "url": "/v1/smartphones/oppo-find-x8-pro" + }, + { + "slug": "oppo-reno-10-pro", + "name": "OPPO Reno 10 Pro", + "url": "/v1/smartphones/oppo-reno-10-pro" + }, + { + "slug": "oppo-reno-11-pro", + "name": "OPPO Reno 11 Pro", + "url": "/v1/smartphones/oppo-reno-11-pro" + }, + { + "slug": "one-dual-sim-lte-latam-xt1941-3", + "name": "One Dual SIM LTE LATAM XT1941-3", + "url": "/v1/smartphones/one-dual-sim-lte-latam-xt1941-3" + }, + { + "slug": "one-global-dual-sim-td-lte-xt1941-4", + "name": "One Global Dual SIM TD-LTE XT1941-4", + "url": "/v1/smartphones/one-global-dual-sim-td-lte-xt1941-4" + }, + { + "slug": "one-global-td-lte-xt1941-1", + "name": "One Global TD-LTE XT1941-1", + "url": "/v1/smartphones/one-global-td-lte-xt1941-1" + }, + { + "slug": "one-lte-latam-xt1941-5", + "name": "One LTE LATAM XT1941-5", + "url": "/v1/smartphones/one-lte-latam-xt1941-5" + }, + { + "slug": "one-power-dual-sim-td-lte-in-64gb-xt1942-2", + "name": "One Power Dual SIM TD-LTE IN 64GB XT1942-2", + "url": "/v1/smartphones/one-power-dual-sim-td-lte-in-64gb-xt1942-2" + }, + { + "slug": "one-touch-pop-4-plus-dual-sim-lte-am-5056e-pop-4", + "name": "One Touch Pop 4 Plus Dual SIM LTE AM 5056E / Pop 4+", + "url": "/v1/smartphones/one-touch-pop-4-plus-dual-sim-lte-am-5056e-pop-4" + }, + { + "slug": "one-touch-pop-4-plus-lte-am-5056g-pop-4", + "name": "One Touch Pop 4 Plus LTE AM 5056G / Pop 4+", + "url": "/v1/smartphones/one-touch-pop-4-plus-lte-am-5056g-pop-4" + }, + { + "slug": "one-touch-pop-4-global-dual-sim-lte-5056d-pop-4-plus", + "name": "One Touch Pop 4+ Global Dual SIM LTE 5056D / Pop 4 Plus", + "url": "/v1/smartphones/one-touch-pop-4-global-dual-sim-lte-5056d-pop-4-plus" + }, + { + "slug": "one-touch-pop-4-lte-latam-5056a-pop-4-plus", + "name": "One Touch Pop 4+ LTE LATAM 5056A / Pop 4 Plus", + "url": "/v1/smartphones/one-touch-pop-4-lte-latam-5056a-pop-4-plus" + }, + { + "slug": "one-vision-3", + "name": "One Vision 3", + "url": "/v1/smartphones/one-vision-3" + }, + { + "slug": "oneplus-10-pro", + "name": "OnePlus 10 Pro", + "url": "/v1/smartphones/oneplus-10-pro" + }, + { + "slug": "oneplus-10r", + "name": "OnePlus 10R", + "url": "/v1/smartphones/oneplus-10r" + }, + { + "slug": "oneplus-10t", + "name": "OnePlus 10T", + "url": "/v1/smartphones/oneplus-10t" + }, + { + "slug": "oneplus-11", + "name": "OnePlus 11", + "url": "/v1/smartphones/oneplus-11" + }, + { + "slug": "oneplus-11-pro", + "name": "OnePlus 11 Pro", + "url": "/v1/smartphones/oneplus-11-pro" + }, + { + "slug": "oneplus-11r", + "name": "OnePlus 11R", + "url": "/v1/smartphones/oneplus-11r" + }, + { + "slug": "oneplus-11t", + "name": "OnePlus 11T", + "url": "/v1/smartphones/oneplus-11t" + }, + { + "slug": "oneplus-12", + "name": "OnePlus 12", + "url": "/v1/smartphones/oneplus-12" + }, + { + "slug": "oneplus-12r", + "name": "OnePlus 12R", + "url": "/v1/smartphones/oneplus-12r" + }, + { + "slug": "oneplus-12t-5g", + "name": "OnePlus 12T 5G", + "url": "/v1/smartphones/oneplus-12t-5g" + }, + { + "slug": "oneplus-13", + "name": "OnePlus 13", + "url": "/v1/smartphones/oneplus-13" + }, + { + "slug": "oneplus-13-pro", + "name": "OnePlus 13 Pro", + "url": "/v1/smartphones/oneplus-13-pro" + }, + { + "slug": "oneplus-13r", + "name": "OnePlus 13R", + "url": "/v1/smartphones/oneplus-13r" + }, + { + "slug": "oneplus-13s", + "name": "OnePlus 13s", + "url": "/v1/smartphones/oneplus-13s" + }, + { + "slug": "oneplus-14", + "name": "OnePlus 14+", + "url": "/v1/smartphones/oneplus-14" + }, + { + "slug": "oneplus-15", + "name": "OnePlus 15", + "url": "/v1/smartphones/oneplus-15" + }, + { + "slug": "oneplus-15r", + "name": "OnePlus 15R", + "url": "/v1/smartphones/oneplus-15r" + }, + { + "slug": "oneplus-2", + "name": "OnePlus 2", + "url": "/v1/smartphones/oneplus-2" + }, + { + "slug": "oneplus-3", + "name": "OnePlus 3", + "url": "/v1/smartphones/oneplus-3" + }, + { + "slug": "oneplus-3t", + "name": "OnePlus 3T", + "url": "/v1/smartphones/oneplus-3t" + }, + { + "slug": "oneplus-5", + "name": "OnePlus 5", + "url": "/v1/smartphones/oneplus-5" + }, + { + "slug": "oneplus-5-special-edition", + "name": "OnePlus 5 Special Edition", + "url": "/v1/smartphones/oneplus-5-special-edition" + }, + { + "slug": "oneplus-5t", + "name": "OnePlus 5T", + "url": "/v1/smartphones/oneplus-5t" + }, + { + "slug": "oneplus-5t-star-wars-edition", + "name": "OnePlus 5T Star Wars Edition", + "url": "/v1/smartphones/oneplus-5t-star-wars-edition" + }, + { + "slug": "oneplus-6", + "name": "OnePlus 6", + "url": "/v1/smartphones/oneplus-6" + }, + { + "slug": "oneplus-6-special-edition", + "name": "OnePlus 6 Special Edition", + "url": "/v1/smartphones/oneplus-6-special-edition" + }, + { + "slug": "oneplus-6t", + "name": "OnePlus 6T", + "url": "/v1/smartphones/oneplus-6t" + }, + { + "slug": "oneplus-6t-mclaren-edition", + "name": "OnePlus 6T McLaren Edition", + "url": "/v1/smartphones/oneplus-6t-mclaren-edition" + }, + { + "slug": "oneplus-7", + "name": "OnePlus 7", + "url": "/v1/smartphones/oneplus-7" + }, + { + "slug": "oneplus-7-pro", + "name": "OnePlus 7 Pro", + "url": "/v1/smartphones/oneplus-7-pro" + }, + { + "slug": "oneplus-7r", + "name": "OnePlus 7R", + "url": "/v1/smartphones/oneplus-7r" + }, + { + "slug": "oneplus-7t-pro-5g-mclaren-edition", + "name": "OnePlus 7T Pro 5G McLaren Edition", + "url": "/v1/smartphones/oneplus-7t-pro-5g-mclaren-edition" + }, + { + "slug": "oneplus-8", + "name": "OnePlus 8", + "url": "/v1/smartphones/oneplus-8" + }, + { + "slug": "oneplus-8-pro", + "name": "OnePlus 8 Pro", + "url": "/v1/smartphones/oneplus-8-pro" + }, + { + "slug": "oneplus-8-pro-mclaren-edition", + "name": "OnePlus 8 Pro McLaren Edition", + "url": "/v1/smartphones/oneplus-8-pro-mclaren-edition" + }, + { + "slug": "oneplus-8r", + "name": "OnePlus 8R", + "url": "/v1/smartphones/oneplus-8r" + }, + { + "slug": "oneplus-8t", + "name": "OnePlus 8T", + "url": "/v1/smartphones/oneplus-8t" + }, + { + "slug": "oneplus-8t-cyberpunk-2077-edition", + "name": "OnePlus 8T Cyberpunk 2077 Edition", + "url": "/v1/smartphones/oneplus-8t-cyberpunk-2077-edition" + }, + { + "slug": "oneplus-8t-cyberpunk-edition", + "name": "OnePlus 8T Cyberpunk Edition", + "url": "/v1/smartphones/oneplus-8t-cyberpunk-edition" + }, + { + "slug": "oneplus-9", + "name": "OnePlus 9", + "url": "/v1/smartphones/oneplus-9" + }, + { + "slug": "oneplus-9-pro", + "name": "OnePlus 9 Pro", + "url": "/v1/smartphones/oneplus-9-pro" + }, + { + "slug": "oneplus-9r-5g", + "name": "OnePlus 9R 5G", + "url": "/v1/smartphones/oneplus-9r-5g" + }, + { + "slug": "oneplus-9t", + "name": "OnePlus 9T", + "url": "/v1/smartphones/oneplus-9t" + }, + { + "slug": "oneplus-nord-1", + "name": "OnePlus Nord 1", + "url": "/v1/smartphones/oneplus-nord-1" + }, + { + "slug": "oneplus-nord-2t", + "name": "OnePlus Nord 2T", + "url": "/v1/smartphones/oneplus-nord-2t" + }, + { + "slug": "oneplus-nord-3", + "name": "OnePlus Nord 3", + "url": "/v1/smartphones/oneplus-nord-3" + }, + { + "slug": "oneplus-nord-ce-2", + "name": "OnePlus Nord CE 2", + "url": "/v1/smartphones/oneplus-nord-ce-2" + }, + { + "slug": "oneplus-nord-ce-2-lite", + "name": "OnePlus Nord CE 2 Lite", + "url": "/v1/smartphones/oneplus-nord-ce-2-lite" + }, + { + "slug": "oneplus-nord-ce-3-lite", + "name": "OnePlus Nord CE 3 Lite", + "url": "/v1/smartphones/oneplus-nord-ce-3-lite" + }, + { + "slug": "oneplus-nord-ce-5g", + "name": "OnePlus Nord CE 5G", + "url": "/v1/smartphones/oneplus-nord-ce-5g" + }, + { + "slug": "oneplus-nord-n10-5g", + "name": "OnePlus Nord N10 5G", + "url": "/v1/smartphones/oneplus-nord-n10-5g" + }, + { + "slug": "oneplus-nord-n100", + "name": "OnePlus Nord N100", + "url": "/v1/smartphones/oneplus-nord-n100" + }, + { + "slug": "oneplus-nord-n100-5g", + "name": "OnePlus Nord N100 5G", + "url": "/v1/smartphones/oneplus-nord-n100-5g" + }, + { + "slug": "oneplus-nord-n200", + "name": "OnePlus Nord N200", + "url": "/v1/smartphones/oneplus-nord-n200" + }, + { + "slug": "oneplus-nord-x", + "name": "OnePlus Nord X", + "url": "/v1/smartphones/oneplus-nord-x" + }, + { + "slug": "oneplus-one", + "name": "OnePlus One", + "url": "/v1/smartphones/oneplus-one" + }, + { + "slug": "oneplus-open", + "name": "OnePlus Open", + "url": "/v1/smartphones/oneplus-open" + }, + { + "slug": "open", + "name": "Open", + "url": "/v1/smartphones/open" + }, + { + "slug": "oppo-find-n3-flip", + "name": "Oppo Find N3 Flip", + "url": "/v1/smartphones/oppo-find-n3-flip" + }, + { + "slug": "oppo-find-n5", + "name": "Oppo Find N5", + "url": "/v1/smartphones/oppo-find-n5" + }, + { + "slug": "oppo-find-x9", + "name": "Oppo Find X9", + "url": "/v1/smartphones/oppo-find-x9" + }, + { + "slug": "oppo-find-x9-pro", + "name": "Oppo Find X9 Pro", + "url": "/v1/smartphones/oppo-find-x9-pro" + }, + { + "slug": "oppo-find-x9-ultra", + "name": "Oppo Find X9 Ultra", + "url": "/v1/smartphones/oppo-find-x9-ultra" + }, + { + "slug": "optus-x-go-td-lte-au-5007u", + "name": "Optus X Go TD-LTE AU 5007U", + "url": "/v1/smartphones/optus-x-go-td-lte-au-5007u" + }, + { + "slug": "optus-x-sight-td-lte-au-5002i", + "name": "Optus X Sight TD-LTE AU 5002I", + "url": "/v1/smartphones/optus-x-sight-td-lte-au-5002i" + }, + { + "slug": "optus-x-smart-4g-td-lte-au-5056i", + "name": "Optus X Smart 4G TD-LTE AU 5056I", + "url": "/v1/smartphones/optus-x-smart-4g-td-lte-au-5056i" + }, + { + "slug": "optus-x-wave-td-lte-au", + "name": "Optus X Wave TD-LTE AU", + "url": "/v1/smartphones/optus-x-wave-td-lte-au" + }, + { + "slug": "oxygen-68-xl-dual-sim-lte", + "name": "Oxygen 68 XL Dual SIM LTE", + "url": "/v1/smartphones/oxygen-68-xl-dual-sim-lte" + }, + { + "slug": "p-smart-2019-dual-sim-lte-a-emea-32gb-pot-lx1rua", + "name": "P Smart 2019 Dual SIM LTE-A EMEA 32GB POT-LX1RUA", + "url": "/v1/smartphones/p-smart-2019-dual-sim-lte-a-emea-32gb-pot-lx1rua" + }, + { + "slug": "p-smart-2019-dual-sim-lte-a-emea-64gb-pot-lx1-pot-l21-pot-lx1af", + "name": "P Smart 2019 Dual SIM LTE-A EMEA 64GB POT-LX1 / POT-L21 / POT-LX1AF", + "url": "/v1/smartphones/p-smart-2019-dual-sim-lte-a-emea-64gb-pot-lx1-pot-l21-pot-lx1af" + }, + { + "slug": "p-smart-2019-dual-sim-lte-a-latam-64gb-pot-lx3-pot-l23", + "name": "P Smart 2019 Dual SIM LTE-A LATAM 64GB POT-LX3 / POT-L23", + "url": "/v1/smartphones/p-smart-2019-dual-sim-lte-a-latam-64gb-pot-lx3-pot-l23" + }, + { + "slug": "p-smart-2020-dual-sim-lte-a-emea-128gb-pot-lx1a-pot-l21a", + "name": "P Smart 2020 Dual SIM LTE-A EMEA 128GB POT-LX1A / POT-L21A", + "url": "/v1/smartphones/p-smart-2020-dual-sim-lte-a-emea-128gb-pot-lx1a-pot-l21a" + }, + { + "slug": "p-smart-2021-dual-sim-td-lte-emea-128gb-ppa-lx2-ppa-l22", + "name": "P Smart 2021 Dual SIM TD-LTE EMEA 128GB PPA-LX2 / PPA-L22", + "url": "/v1/smartphones/p-smart-2021-dual-sim-td-lte-emea-128gb-ppa-lx2-ppa-l22" + }, + { + "slug": "p-smart-dual-sim-lte-a-latam-fig-lx3-fig-l23", + "name": "P Smart Dual SIM LTE-A LATAM FIG-LX3 / FIG-L23", + "url": "/v1/smartphones/p-smart-dual-sim-lte-a-latam-fig-lx3-fig-l23" + }, + { + "slug": "p-smart-lte-a-latam-fig-l03", + "name": "P Smart LTE-A LATAM FIG-L03", + "url": "/v1/smartphones/p-smart-lte-a-latam-fig-l03" + }, + { + "slug": "p-smart-z-dual-sim-lte-a-emea-stk-lx1", + "name": "P Smart Z Dual SIM LTE-A EMEA STK-LX1", + "url": "/v1/smartphones/p-smart-z-dual-sim-lte-a-emea-stk-lx1" + }, + { + "slug": "p-smart-2019-global-dual-sim-td-lte-64gb-pot-al00", + "name": "P Smart+ 2019 Global Dual SIM TD-LTE 64GB POT-AL00", + "url": "/v1/smartphones/p-smart-2019-global-dual-sim-td-lte-64gb-pot-al00" + }, + { + "slug": "p-smart-dual-sim-lte-emea-ine-lx1-64gb-p-smart-plus-ine-l21", + "name": "P Smart+ Dual SIM LTE EMEA INE-LX1 64GB / P smart Plus INE-L21", + "url": "/v1/smartphones/p-smart-dual-sim-lte-emea-ine-lx1-64gb-p-smart-plus-ine-l21" + }, + { + "slug": "p-smart-lte-emea-ine-lx1-128gb-nova-3i", + "name": "P Smart+ LTE EMEA INE-LX1 128GB / Nova 3i", + "url": "/v1/smartphones/p-smart-lte-emea-ine-lx1-128gb-nova-3i" + }, + { + "slug": "p1-5g", + "name": "P1 5G", + "url": "/v1/smartphones/p1-5g" + }, + { + "slug": "p1-speed-5g", + "name": "P1 Speed 5G", + "url": "/v1/smartphones/p1-speed-5g" + }, + { + "slug": "p10-selfie-lte-a-latam-bac-l03", + "name": "P10 Selfie LTE-A LATAM BAC-L03", + "url": "/v1/smartphones/p10-selfie-lte-a-latam-bac-l03" + }, + { + "slug": "p2-pro-5g", + "name": "P2 Pro 5G", + "url": "/v1/smartphones/p2-pro-5g" + }, + { + "slug": "p20-global-dual-sim-td-lte-eml-l29-eml-l29c", + "name": "P20 Global Dual SIM TD-LTE EML-L29 / EML-L29C", + "url": "/v1/smartphones/p20-global-dual-sim-td-lte-eml-l29-eml-l29c" + }, + { + "slug": "p20-global-dual-sim-td-lte-eml-l29-64gb", + "name": "P20 Global Dual SIM TD-LTE EML-L29 64GB", + "url": "/v1/smartphones/p20-global-dual-sim-td-lte-eml-l29-64gb" + }, + { + "slug": "p20-global-td-lte-eml-l09-eml-l09c", + "name": "P20 Global TD-LTE EML-L09 / EML-L09C", + "url": "/v1/smartphones/p20-global-td-lte-eml-l09-eml-l09c" + }, + { + "slug": "p20-lite-2019-dual-sim-td-lte-emea-64gb-glk-lx1u", + "name": "P20 Lite 2019 Dual SIM TD-LTE EMEA 64GB GLK-LX1U", + "url": "/v1/smartphones/p20-lite-2019-dual-sim-td-lte-emea-64gb-glk-lx1u" + }, + { + "slug": "p20-lite-dual-sim-lte-a-am-ane-lx3-ane-l23", + "name": "P20 Lite Dual SIM LTE-A AM ANE-LX3 / ANE-L23", + "url": "/v1/smartphones/p20-lite-dual-sim-lte-a-am-ane-lx3-ane-l23" + }, + { + "slug": "p20-lite-dual-sim-lte-a-emea-ane-lx1-nova-3e-ane-l21", + "name": "P20 Lite Dual SIM LTE-A EMEA ANE-LX1 / Nova 3e ANE-L21", + "url": "/v1/smartphones/p20-lite-dual-sim-lte-a-emea-ane-lx1-nova-3e-ane-l21" + }, + { + "slug": "p20-lite-lte-a-emea-ane-l01", + "name": "P20 Lite LTE-A EMEA ANE-L01", + "url": "/v1/smartphones/p20-lite-lte-a-emea-ane-l01" + }, + { + "slug": "p20-lite-wimax-2-hwv32", + "name": "P20 Lite WiMAX 2+ HWV32", + "url": "/v1/smartphones/p20-lite-wimax-2-hwv32" + }, + { + "slug": "p20-pro-dual-sim-td-lte-clt-al00-128gb", + "name": "P20 Pro Dual SIM TD-LTE CLT-AL00 128GB", + "url": "/v1/smartphones/p20-pro-dual-sim-td-lte-clt-al00-128gb" + }, + { + "slug": "p20-pro-dual-sim-td-lte-clt-al00-256gb", + "name": "P20 Pro Dual SIM TD-LTE CLT-AL00 256GB", + "url": "/v1/smartphones/p20-pro-dual-sim-td-lte-clt-al00-256gb" + }, + { + "slug": "p20-pro-dual-sim-td-lte-clt-al01-64gb", + "name": "P20 Pro Dual SIM TD-LTE CLT-AL01 64GB", + "url": "/v1/smartphones/p20-pro-dual-sim-td-lte-clt-al01-64gb" + }, + { + "slug": "p20-pro-dual-sim-td-lte-clt-tl01-64gb", + "name": "P20 Pro Dual SIM TD-LTE CLT-TL01 64GB", + "url": "/v1/smartphones/p20-pro-dual-sim-td-lte-clt-tl01-64gb" + }, + { + "slug": "p20-pro-global-dual-sim-td-lte-clt-l29-clt-l29c", + "name": "P20 Pro Global Dual SIM TD-LTE CLT-L29 / CLT-L29C", + "url": "/v1/smartphones/p20-pro-global-dual-sim-td-lte-clt-l29-clt-l29c" + }, + { + "slug": "p20-pro-global-td-lte-clt-l09-clt-l09c", + "name": "P20 Pro Global TD-LTE CLT-L09 / CLT-L09C", + "url": "/v1/smartphones/p20-pro-global-td-lte-clt-l09-clt-l09c" + }, + { + "slug": "p20-pro-td-lte-jp-hw-01k-clt-l0j-clt-l01j", + "name": "P20 Pro TD-LTE JP HW-01K CLT-L0J / CLT-L01J", + "url": "/v1/smartphones/p20-pro-td-lte-jp-hw-01k-clt-l0j-clt-l01j" + }, + { + "slug": "p20-pro-td-lte-na-clt-l04-clt-l04c", + "name": "P20 Pro TD-LTE NA CLT-L04 / CLT-L04C", + "url": "/v1/smartphones/p20-pro-td-lte-na-clt-l04-clt-l04c" + }, + { + "slug": "p20-standard-edition-dual-sim-td-lte-cn-eml-al00", + "name": "P20 Standard Edition Dual SIM TD-LTE CN EML-AL00", + "url": "/v1/smartphones/p20-standard-edition-dual-sim-td-lte-cn-eml-al00" + }, + { + "slug": "p20-standard-edition-dual-sim-td-lte-cn-eml-tl00", + "name": "P20 Standard Edition Dual SIM TD-LTE CN EML-TL00", + "url": "/v1/smartphones/p20-standard-edition-dual-sim-td-lte-cn-eml-tl00" + }, + { + "slug": "p30-global-td-lte-ele-l09-128gb", + "name": "P30 Global TD-LTE ELE-L09 128GB", + "url": "/v1/smartphones/p30-global-td-lte-ele-l09-128gb" + }, + { + "slug": "p30-lite-dual-sim-lte-a-am-128gb-mar-lx3-mar-lx3a-mar-l23-mar-l23a", + "name": "P30 Lite Dual SIM LTE-A AM 128GB MAR-LX3 / MAR-LX3A / MAR-L23 / MAR-L23A", + "url": "/v1/smartphones/p30-lite-dual-sim-lte-a-am-128gb-mar-lx3-mar-lx3a-mar-l23-mar-l23a" + }, + { + "slug": "p30-lite-dual-sim-td-lte-emea-128gb-mar-lx1-mar-lx1m-mar-l21-mar-l21m", + "name": "P30 Lite Dual SIM TD-LTE EMEA 128GB MAR-LX1 / MAR-LX1M / MAR-L21 / MAR-L21M", + "url": "/v1/smartphones/p30-lite-dual-sim-td-lte-emea-128gb-mar-lx1-mar-lx1m-mar-l21-mar-l21m" + }, + { + "slug": "p30-lite-dual-sim-td-lte-emea-128gb-mar-lx1a-mar-lx21a", + "name": "P30 Lite Dual SIM TD-LTE EMEA 128GB MAR-LX1A / MAR-LX21A", + "url": "/v1/smartphones/p30-lite-dual-sim-td-lte-emea-128gb-mar-lx1a-mar-lx21a" + }, + { + "slug": "p30-lite-dual-sim-td-lte-jp-64gb-mar-lx2j", + "name": "P30 Lite Dual SIM TD-LTE JP 64GB MAR-LX2J", + "url": "/v1/smartphones/p30-lite-dual-sim-td-lte-jp-64gb-mar-lx2j" + }, + { + "slug": "p30-lite-new-edition-dual-sim-td-lte-emea-256gb-mar-l21bx", + "name": "P30 Lite New Edition Dual SIM TD-LTE EMEA 256GB MAR-L21BX", + "url": "/v1/smartphones/p30-lite-new-edition-dual-sim-td-lte-emea-256gb-mar-l21bx" + }, + { + "slug": "p30-lite-premium-dual-sim-wimax-2-128gb-hwv33", + "name": "P30 Lite Premium Dual SIM WiMAX 2+ 128GB HWV33", + "url": "/v1/smartphones/p30-lite-premium-dual-sim-wimax-2-128gb-hwv33" + }, + { + "slug": "p30-lite-td-lte-emea-128gb-mar-l01-mar-l01m", + "name": "P30 Lite TD-LTE EMEA 128GB MAR-L01 / MAR-L01M", + "url": "/v1/smartphones/p30-lite-td-lte-emea-128gb-mar-l01-mar-l01m" + }, + { + "slug": "p30-lite-td-lte-emea-128gb-mar-l01a", + "name": "P30 Lite TD-LTE EMEA 128GB MAR-L01A", + "url": "/v1/smartphones/p30-lite-td-lte-emea-128gb-mar-l01a" + }, + { + "slug": "p30-note-premium-edition-dual-sim-td-lte-cn-xt1942-1-64gb", + "name": "P30 Note Premium Edition Dual SIM TD-LTE CN XT1942-1 64GB", + "url": "/v1/smartphones/p30-note-premium-edition-dual-sim-td-lte-cn-xt1942-1-64gb" + }, + { + "slug": "p30-note-standard-edition-dual-sim-td-lte-cn-xt1942-1-64gb", + "name": "P30 Note Standard Edition Dual SIM TD-LTE CN XT1942-1 64GB", + "url": "/v1/smartphones/p30-note-standard-edition-dual-sim-td-lte-cn-xt1942-1-64gb" + }, + { + "slug": "p30-play-dual-sim-td-lte-cn-64gb-xt1941-2", + "name": "P30 Play Dual SIM TD-LTE CN 64GB XT1941-2", + "url": "/v1/smartphones/p30-play-dual-sim-td-lte-cn-64gb-xt1941-2" + }, + { + "slug": "p30-premium-edition-dual-sim-td-lte-cn-128gb-ele-al00", + "name": "P30 Premium Edition Dual SIM TD-LTE CN 128GB ELE-AL00", + "url": "/v1/smartphones/p30-premium-edition-dual-sim-td-lte-cn-128gb-ele-al00" + }, + { + "slug": "p30-premium-edition-dual-sim-td-lte-cn-128gb-ele-tl00", + "name": "P30 Premium Edition Dual SIM TD-LTE CN 128GB ELE-TL00", + "url": "/v1/smartphones/p30-premium-edition-dual-sim-td-lte-cn-128gb-ele-tl00" + }, + { + "slug": "p30-premium-edition-dual-sim-td-lte-cn-256gb-ele-al00-ele-al10", + "name": "P30 Premium Edition Dual SIM TD-LTE CN 256GB ELE-AL00 / ELE-AL10", + "url": "/v1/smartphones/p30-premium-edition-dual-sim-td-lte-cn-256gb-ele-al00-ele-al10" + }, + { + "slug": "p30-premium-edition-dual-sim-td-lte-cn-64gb-ele-al00", + "name": "P30 Premium Edition Dual SIM TD-LTE CN 64GB ELE-AL00", + "url": "/v1/smartphones/p30-premium-edition-dual-sim-td-lte-cn-64gb-ele-al00" + }, + { + "slug": "p30-premium-edition-global-dual-sim-td-lte-ele-l29-128gb", + "name": "P30 Premium Edition Global Dual SIM TD-LTE ELE-L29 128GB", + "url": "/v1/smartphones/p30-premium-edition-global-dual-sim-td-lte-ele-l29-128gb" + }, + { + "slug": "p30-pro-new-edition-2020-global-dual-sim-td-lte-vog-l29-256gb", + "name": "P30 Pro New Edition 2020 Global Dual SIM TD-LTE VOG-L29 256GB", + "url": "/v1/smartphones/p30-pro-new-edition-2020-global-dual-sim-td-lte-vog-l29-256gb" + }, + { + "slug": "p30-pro-premium-edition-dual-sim-td-lte-cn-512gb-vog-al00-vog-al10", + "name": "P30 Pro Premium Edition Dual SIM TD-LTE CN 512GB VOG-AL00 / VOG-AL10", + "url": "/v1/smartphones/p30-pro-premium-edition-dual-sim-td-lte-cn-512gb-vog-al00-vog-al10" + }, + { + "slug": "p30-pro-premium-edition-dual-sim-td-lte-cn-vog-al00-128gb", + "name": "P30 Pro Premium Edition Dual SIM TD-LTE CN VOG-AL00 128GB", + "url": "/v1/smartphones/p30-pro-premium-edition-dual-sim-td-lte-cn-vog-al00-128gb" + }, + { + "slug": "p30-pro-premium-edition-dual-sim-td-lte-cn-vog-al00-256gb", + "name": "P30 Pro Premium Edition Dual SIM TD-LTE CN VOG-AL00 256GB", + "url": "/v1/smartphones/p30-pro-premium-edition-dual-sim-td-lte-cn-vog-al00-256gb" + }, + { + "slug": "p30-pro-premium-edition-dual-sim-td-lte-cn-vog-tl00-128gb", + "name": "P30 Pro Premium Edition Dual SIM TD-LTE CN VOG-TL00 128GB", + "url": "/v1/smartphones/p30-pro-premium-edition-dual-sim-td-lte-cn-vog-tl00-128gb" + }, + { + "slug": "p30-pro-premium-edition-global-dual-sim-td-lte-vog-l29-128gb", + "name": "P30 Pro Premium Edition Global Dual SIM TD-LTE VOG-L29 128GB", + "url": "/v1/smartphones/p30-pro-premium-edition-global-dual-sim-td-lte-vog-l29-128gb" + }, + { + "slug": "p30-pro-premium-edition-global-dual-sim-td-lte-vog-l29-256gb", + "name": "P30 Pro Premium Edition Global Dual SIM TD-LTE VOG-L29 256GB", + "url": "/v1/smartphones/p30-pro-premium-edition-global-dual-sim-td-lte-vog-l29-256gb" + }, + { + "slug": "p30-pro-premium-edition-global-td-lte-vog-l09-128gb", + "name": "P30 Pro Premium Edition Global TD-LTE VOG-L09 128GB", + "url": "/v1/smartphones/p30-pro-premium-edition-global-td-lte-vog-l09-128gb" + }, + { + "slug": "p30-pro-premium-edition-global-td-lte-vog-l09-256gb", + "name": "P30 Pro Premium Edition Global TD-LTE VOG-L09 256GB", + "url": "/v1/smartphones/p30-pro-premium-edition-global-td-lte-vog-l09-256gb" + }, + { + "slug": "p30-pro-premium-edition-td-lte-na-vog-l04-256gb", + "name": "P30 Pro Premium Edition TD-LTE NA VOG-L04 256GB", + "url": "/v1/smartphones/p30-pro-premium-edition-td-lte-na-vog-l04-256gb" + }, + { + "slug": "p30-pro-standard-edition-global-dual-sim-td-lte-vog-l29-128gb", + "name": "P30 Pro Standard Edition Global Dual SIM TD-LTE VOG-L29 128GB", + "url": "/v1/smartphones/p30-pro-standard-edition-global-dual-sim-td-lte-vog-l29-128gb" + }, + { + "slug": "p30-pro-standard-edition-td-lte-na-vog-l04-128gb", + "name": "P30 Pro Standard Edition TD-LTE NA VOG-L04 128GB", + "url": "/v1/smartphones/p30-pro-standard-edition-td-lte-na-vog-l04-128gb" + }, + { + "slug": "p30-pro-td-lte-jp-128gb-hw-02l-vog-l0j-vog-l01j", + "name": "P30 Pro TD-LTE JP 128GB HW-02L VOG-L0J / VOG-L01J", + "url": "/v1/smartphones/p30-pro-td-lte-jp-128gb-hw-02l-vog-l0j-vog-l01j" + }, + { + "slug": "p30-standard-edition-global-dual-sim-td-lte-ele-l29-128gb", + "name": "P30 Standard Edition Global Dual SIM TD-LTE ELE-L29 128GB", + "url": "/v1/smartphones/p30-standard-edition-global-dual-sim-td-lte-ele-l29-128gb" + }, + { + "slug": "p30-td-lte-cn-xt1943-1-128gb", + "name": "P30 TD-LTE CN XT1943-1 128GB", + "url": "/v1/smartphones/p30-td-lte-cn-xt1943-1-128gb" + }, + { + "slug": "p30-td-lte-cn-xt1943-1-64gb", + "name": "P30 TD-LTE CN XT1943-1 64GB", + "url": "/v1/smartphones/p30-td-lte-cn-xt1943-1-64gb" + }, + { + "slug": "p30-td-lte-na-ele-l04-128gb", + "name": "P30 TD-LTE NA ELE-L04 128GB", + "url": "/v1/smartphones/p30-td-lte-na-ele-l04-128gb" + }, + { + "slug": "p40-lite-4g-global-dual-sim-td-lte-128gb-jny-lx1-jny-l21a", + "name": "P40 Lite 4G Global Dual SIM TD-LTE 128GB JNY-LX1 / JNY-L21A", + "url": "/v1/smartphones/p40-lite-4g-global-dual-sim-td-lte-128gb-jny-lx1-jny-l21a" + }, + { + "slug": "p40-lite-4g-global-td-lte-128gb-jny-l01a", + "name": "P40 Lite 4G Global TD-LTE 128GB JNY-L01A", + "url": "/v1/smartphones/p40-lite-4g-global-td-lte-128gb-jny-l01a" + }, + { + "slug": "p40-lite-5g-global-dual-sim-td-lte-128gb-cdy-nx9a-cdy-n29a", + "name": "P40 Lite 5G Global Dual SIM TD-LTE 128GB CDY-NX9A / CDY-N29A", + "url": "/v1/smartphones/p40-lite-5g-global-dual-sim-td-lte-128gb-cdy-nx9a-cdy-n29a" + }, + { + "slug": "p40-lite-dual-sim-td-lte-latam-128gb-jny-l22a", + "name": "P40 Lite Dual SIM TD-LTE LATAM 128GB JNY-L22A", + "url": "/v1/smartphones/p40-lite-dual-sim-td-lte-latam-128gb-jny-l22a" + }, + { + "slug": "p40-lite-e-dual-sim-td-lte-emea-64gb-art-l29-y7p-2020", + "name": "P40 Lite E Dual SIM TD-LTE EMEA 64GB ART-L29 / Y7p 2020", + "url": "/v1/smartphones/p40-lite-e-dual-sim-td-lte-emea-64gb-art-l29-y7p-2020" + }, + { + "slug": "p40-lite-td-lte-latam-128gb-jny-l02a", + "name": "P40 Lite TD-LTE LATAM 128GB JNY-L02A", + "url": "/v1/smartphones/p40-lite-td-lte-latam-128gb-jny-l02a" + }, + { + "slug": "p50", + "name": "P50", + "url": "/v1/smartphones/p50" + }, + { + "slug": "p50-4g-global-dual-sim-td-lte-128gb-abr-al00", + "name": "P50 4G Global Dual SIM TD-LTE 128GB ABR-AL00", + "url": "/v1/smartphones/p50-4g-global-dual-sim-td-lte-128gb-abr-al00" + }, + { + "slug": "p50-4g-global-dual-sim-td-lte-256gb-abr-al00", + "name": "P50 4G Global Dual SIM TD-LTE 256GB ABR-AL00", + "url": "/v1/smartphones/p50-4g-global-dual-sim-td-lte-256gb-abr-al00" + }, + { + "slug": "p50-dual-sim-td-lte-cn-128gb-xt1970-5", + "name": "P50 Dual SIM TD-LTE CN 128GB XT1970-5", + "url": "/v1/smartphones/p50-dual-sim-td-lte-cn-128gb-xt1970-5" + }, + { + "slug": "p50-pocket", + "name": "P50 Pocket", + "url": "/v1/smartphones/p50-pocket" + }, + { + "slug": "p50-pocket-4g-premium-art-edition-dual-sim-td-lte-cn-512gb-bal-al00", + "name": "P50 Pocket 4G Premium Art Edition Dual SIM TD-LTE CN 512GB BAL-AL00", + "url": "/v1/smartphones/p50-pocket-4g-premium-art-edition-dual-sim-td-lte-cn-512gb-bal-al00" + }, + { + "slug": "p50-pocket-4g-premium-edition-global-dual-sim-td-lte-512gb-bal-l49", + "name": "P50 Pocket 4G Premium Edition Global Dual SIM TD-LTE 512GB BAL-L49", + "url": "/v1/smartphones/p50-pocket-4g-premium-edition-global-dual-sim-td-lte-512gb-bal-l49" + }, + { + "slug": "p50-pocket-4g-standard-edition-dual-sim-td-lte-cn-256gb-bal-al00", + "name": "P50 Pocket 4G Standard Edition Dual SIM TD-LTE CN 256GB BAL-AL00", + "url": "/v1/smartphones/p50-pocket-4g-standard-edition-dual-sim-td-lte-cn-256gb-bal-al00" + }, + { + "slug": "p50-pocket-4g-standard-edition-global-dual-sim-td-lte-256gb-bal-l49", + "name": "P50 Pocket 4G Standard Edition Global Dual SIM TD-LTE 256GB BAL-L49", + "url": "/v1/smartphones/p50-pocket-4g-standard-edition-global-dual-sim-td-lte-256gb-bal-l49" + }, + { + "slug": "p50-pro", + "name": "P50 Pro", + "url": "/v1/smartphones/p50-pro" + }, + { + "slug": "p50-pro-4g-dual-sim-td-lte-cn-256gb-jad-al50", + "name": "P50 Pro 4G Dual SIM TD-LTE CN 256GB JAD-AL50", + "url": "/v1/smartphones/p50-pro-4g-dual-sim-td-lte-cn-256gb-jad-al50" + }, + { + "slug": "p50-pro-4g-dual-sim-td-lte-cn-512gb-jad-al50", + "name": "P50 Pro 4G Dual SIM TD-LTE CN 512GB JAD-AL50", + "url": "/v1/smartphones/p50-pro-4g-dual-sim-td-lte-cn-512gb-jad-al50" + }, + { + "slug": "p50-pro-4g-global-dual-sim-td-lte-256gb-jad-lx9-jad-l29", + "name": "P50 Pro 4G Global Dual SIM TD-LTE 256GB JAD-LX9 / JAD-L29", + "url": "/v1/smartphones/p50-pro-4g-global-dual-sim-td-lte-256gb-jad-lx9-jad-l29" + }, + { + "slug": "p50-pro-4g-global-td-lte-256gb-jad-lx9-jad-l09", + "name": "P50 Pro 4G Global TD-LTE 256GB JAD-LX9 / JAD-L09", + "url": "/v1/smartphones/p50-pro-4g-global-td-lte-256gb-jad-lx9-jad-l09" + }, + { + "slug": "p50e", + "name": "P50E", + "url": "/v1/smartphones/p50e" + }, + { + "slug": "p85-nxt-dual-sim-td-lte-in-eb-90s50p8n", + "name": "P85 NXT Dual SIM TD-LTE IN EB-90S50P8N", + "url": "/v1/smartphones/p85-nxt-dual-sim-td-lte-in-eb-90s50p8n" + }, + { + "slug": "p9-lite-mini-dual-sim-lte-latam-sla-l23", + "name": "P9 lite mini Dual SIM LTE LATAM SLA-L23", + "url": "/v1/smartphones/p9-lite-mini-dual-sim-lte-latam-sla-l23" + }, + { + "slug": "p95-dual-sim-td-lte-eb-90s50p95b", + "name": "P95 Dual SIM TD-LTE EB-90S50P95B", + "url": "/v1/smartphones/p95-dual-sim-td-lte-eb-90s50p95b" + }, + { + "slug": "poco-f3", + "name": "POCO F3", + "url": "/v1/smartphones/poco-f3" + }, + { + "slug": "poco-f4", + "name": "POCO F4", + "url": "/v1/smartphones/poco-f4" + }, + { + "slug": "poco-f5", + "name": "POCO F5", + "url": "/v1/smartphones/poco-f5" + }, + { + "slug": "poco-f5-pro", + "name": "POCO F5 Pro", + "url": "/v1/smartphones/poco-f5-pro" + }, + { + "slug": "poco-f6", + "name": "POCO F6", + "url": "/v1/smartphones/poco-f6" + }, + { + "slug": "poco-f7-pro", + "name": "POCO F7 Pro", + "url": "/v1/smartphones/poco-f7-pro" + }, + { + "slug": "poco-f7-ultra", + "name": "POCO F7 Ultra", + "url": "/v1/smartphones/poco-f7-ultra" + }, + { + "slug": "poco-x4-pro", + "name": "POCO X4 Pro 5G", + "url": "/v1/smartphones/poco-x4-pro" + }, + { + "slug": "poco-x5-pro", + "name": "POCO X5 Pro", + "url": "/v1/smartphones/poco-x5-pro" + }, + { + "slug": "poco-x6", + "name": "POCO X6", + "url": "/v1/smartphones/poco-x6" + }, + { + "slug": "poco-x6-pro", + "name": "POCO X6 Pro", + "url": "/v1/smartphones/poco-x6-pro" + }, + { + "slug": "poco-x7-pro", + "name": "POCO X7 Pro", + "url": "/v1/smartphones/poco-x7-pro" + }, + { + "slug": "palm-phone-2018-global-lte-pvg100e-pvg100eu", + "name": "Palm Phone 2018 Global LTE PVG100E / PVG100EU", + "url": "/v1/smartphones/palm-phone-2018-global-lte-pvg100e-pvg100eu" + }, + { + "slug": "palm-phone-2018-lte-us-pvg100", + "name": "Palm Phone 2018 LTE US PVG100", + "url": "/v1/smartphones/palm-phone-2018-lte-us-pvg100" + }, + { + "slug": "phantom-9-dual-sim-td-lte-128gb-ab7", + "name": "Phantom 9 Dual SIM TD-LTE 128GB AB7", + "url": "/v1/smartphones/phantom-9-dual-sim-td-lte-128gb-ab7" + }, + { + "slug": "phantom-v-flip2", + "name": "Phantom V Flip2", + "url": "/v1/smartphones/phantom-v-flip2" + }, + { + "slug": "phantom-v-fold2", + "name": "Phantom V Fold2", + "url": "/v1/smartphones/phantom-v-fold2" + }, + { + "slug": "phone-1", + "name": "Phone (1)", + "url": "/v1/smartphones/phone-1" + }, + { + "slug": "phone-2-global-td-lte-rz35-0259", + "name": "Phone 2 Global TD-LTE RZ35-0259", + "url": "/v1/smartphones/phone-2-global-td-lte-rz35-0259" + }, + { + "slug": "pixel-1", + "name": "Pixel", + "url": "/v1/smartphones/pixel-1" + }, + { + "slug": "pixel-10", + "name": "Pixel 10", + "url": "/v1/smartphones/pixel-10" + }, + { + "slug": "pixel-10-pro", + "name": "Pixel 10 Pro", + "url": "/v1/smartphones/pixel-10-pro" + }, + { + "slug": "pixel-10-pro-fold", + "name": "Pixel 10 Pro Fold", + "url": "/v1/smartphones/pixel-10-pro-fold" + }, + { + "slug": "pixel-10-pro-xl", + "name": "Pixel 10 Pro XL", + "url": "/v1/smartphones/pixel-10-pro-xl" + }, + { + "slug": "pixel-10a", + "name": "Pixel 10a", + "url": "/v1/smartphones/pixel-10a" + }, + { + "slug": "pixel-2", + "name": "Pixel 2", + "url": "/v1/smartphones/pixel-2" + }, + { + "slug": "pixel-2-xl", + "name": "Pixel 2 XL", + "url": "/v1/smartphones/pixel-2-xl" + }, + { + "slug": "pixel-3", + "name": "Pixel 3", + "url": "/v1/smartphones/pixel-3" + }, + { + "slug": "pixel-3-phone-global-td-lte-128gb-g013a", + "name": "Pixel 3 Phone Global TD-LTE 128GB G013A", + "url": "/v1/smartphones/pixel-3-phone-global-td-lte-128gb-g013a" + }, + { + "slug": "pixel-3-phone-global-td-lte-64gb-g013a", + "name": "Pixel 3 Phone Global TD-LTE 64GB G013A", + "url": "/v1/smartphones/pixel-3-phone-global-td-lte-64gb-g013a" + }, + { + "slug": "pixel-3-phone-td-lte-jp-64gb-g013b", + "name": "Pixel 3 Phone TD-LTE JP 64GB G013B", + "url": "/v1/smartphones/pixel-3-phone-td-lte-jp-64gb-g013b" + }, + { + "slug": "pixel-3-xl", + "name": "Pixel 3 XL", + "url": "/v1/smartphones/pixel-3-xl" + }, + { + "slug": "pixel-3a", + "name": "Pixel 3a", + "url": "/v1/smartphones/pixel-3a" + }, + { + "slug": "pixel-3a-global-td-lte-g020f", + "name": "Pixel 3a Global TD-LTE G020F", + "url": "/v1/smartphones/pixel-3a-global-td-lte-g020f" + }, + { + "slug": "pixel-3a-td-lte-jp-g020h", + "name": "Pixel 3a TD-LTE JP G020H", + "url": "/v1/smartphones/pixel-3a-td-lte-jp-g020h" + }, + { + "slug": "pixel-3a-td-lte-na-g020e", + "name": "Pixel 3a TD-LTE NA G020E", + "url": "/v1/smartphones/pixel-3a-td-lte-na-g020e" + }, + { + "slug": "pixel-3a-td-lte-na-g020g", + "name": "Pixel 3a TD-LTE NA G020G", + "url": "/v1/smartphones/pixel-3a-td-lte-na-g020g" + }, + { + "slug": "pixel-3a-xl", + "name": "Pixel 3a XL", + "url": "/v1/smartphones/pixel-3a-xl" + }, + { + "slug": "pixel-3a-xl-global-td-lte-g020b", + "name": "Pixel 3a XL Global TD-LTE G020B", + "url": "/v1/smartphones/pixel-3a-xl-global-td-lte-g020b" + }, + { + "slug": "pixel-3a-xl-td-lte-jp-g020d", + "name": "Pixel 3a XL TD-LTE JP G020D", + "url": "/v1/smartphones/pixel-3a-xl-td-lte-jp-g020d" + }, + { + "slug": "pixel-3a-xl-td-lte-na-g020a", + "name": "Pixel 3a XL TD-LTE NA G020A", + "url": "/v1/smartphones/pixel-3a-xl-td-lte-na-g020a" + }, + { + "slug": "pixel-3a-xl-td-lte-na-g020c", + "name": "Pixel 3a XL TD-LTE NA G020C", + "url": "/v1/smartphones/pixel-3a-xl-td-lte-na-g020c" + }, + { + "slug": "pixel-4", + "name": "Pixel 4", + "url": "/v1/smartphones/pixel-4" + }, + { + "slug": "pixel-4-global-td-lte-128gb-g020m", + "name": "Pixel 4 Global TD-LTE 128GB G020M", + "url": "/v1/smartphones/pixel-4-global-td-lte-128gb-g020m" + }, + { + "slug": "pixel-4-global-td-lte-64gb-g020m", + "name": "Pixel 4 Global TD-LTE 64GB G020M", + "url": "/v1/smartphones/pixel-4-global-td-lte-64gb-g020m" + }, + { + "slug": "pixel-4-jp-td-lte-64gb-g020n", + "name": "Pixel 4 JP TD-LTE 64GB G020N", + "url": "/v1/smartphones/pixel-4-jp-td-lte-64gb-g020n" + }, + { + "slug": "pixel-4-us-td-lte-128gb-g020i", + "name": "Pixel 4 US TD-LTE 128GB G020I", + "url": "/v1/smartphones/pixel-4-us-td-lte-128gb-g020i" + }, + { + "slug": "pixel-4-us-td-lte-64gb-g020i", + "name": "Pixel 4 US TD-LTE 64GB G020I", + "url": "/v1/smartphones/pixel-4-us-td-lte-64gb-g020i" + }, + { + "slug": "pixel-4-xl", + "name": "Pixel 4 XL", + "url": "/v1/smartphones/pixel-4-xl" + }, + { + "slug": "pixel-4-xl-global-td-lte-128gb-g020p", + "name": "Pixel 4 XL Global TD-LTE 128GB G020P", + "url": "/v1/smartphones/pixel-4-xl-global-td-lte-128gb-g020p" + }, + { + "slug": "pixel-4-xl-global-td-lte-64gb-g020p", + "name": "Pixel 4 XL Global TD-LTE 64GB G020P", + "url": "/v1/smartphones/pixel-4-xl-global-td-lte-64gb-g020p" + }, + { + "slug": "pixel-4-xl-jp-td-lte-64gb-g020q", + "name": "Pixel 4 XL JP TD-LTE 64GB G020Q", + "url": "/v1/smartphones/pixel-4-xl-jp-td-lte-64gb-g020q" + }, + { + "slug": "pixel-4-xl-us-td-lte-128gb-g020j", + "name": "Pixel 4 XL US TD-LTE 128GB G020J", + "url": "/v1/smartphones/pixel-4-xl-us-td-lte-128gb-g020j" + }, + { + "slug": "pixel-4-xl-us-td-lte-64gb-g020j", + "name": "Pixel 4 XL US TD-LTE 64GB G020J", + "url": "/v1/smartphones/pixel-4-xl-us-td-lte-64gb-g020j" + }, + { + "slug": "pixel-4a", + "name": "Pixel 4a", + "url": "/v1/smartphones/pixel-4a" + }, + { + "slug": "pixel-4a-5g-global-td-lte-128gb-g025i", + "name": "Pixel 4a 5G Global TD-LTE 128GB G025I", + "url": "/v1/smartphones/pixel-4a-5g-global-td-lte-128gb-g025i" + }, + { + "slug": "pixel-4a-5g-td-lte-jp-128gb-g025h", + "name": "Pixel 4a 5G TD-LTE JP 128GB G025H", + "url": "/v1/smartphones/pixel-4a-5g-td-lte-jp-128gb-g025h" + }, + { + "slug": "pixel-4a-5g-td-lte-us-128gb-g025e", + "name": "Pixel 4a 5G TD-LTE US 128GB G025E", + "url": "/v1/smartphones/pixel-4a-5g-td-lte-us-128gb-g025e" + }, + { + "slug": "pixel-4a-5g-uw-td-lte-us-128gb-g6qu3", + "name": "Pixel 4a 5G UW TD-LTE US 128GB G6QU3", + "url": "/v1/smartphones/pixel-4a-5g-uw-td-lte-us-128gb-g6qu3" + }, + { + "slug": "pixel-4a-global-td-lte-128gb-g025n", + "name": "Pixel 4a Global TD-LTE 128GB G025N", + "url": "/v1/smartphones/pixel-4a-global-td-lte-128gb-g025n" + }, + { + "slug": "pixel-4a-td-lte-us-128gb-g025j", + "name": "Pixel 4a TD-LTE US 128GB G025J", + "url": "/v1/smartphones/pixel-4a-td-lte-us-128gb-g025j" + }, + { + "slug": "google-pixel-5", "name": "Pixel 5", "url": "/v1/smartphones/google-pixel-5" }, { - "slug": "pixel-5a", - "name": "Pixel 5a", - "url": "/v1/smartphones/pixel-5a" + "slug": "pixel-5-5g-global-td-lte-128gb-gtt9q", + "name": "Pixel 5 5G Global TD-LTE 128GB GTT9Q", + "url": "/v1/smartphones/pixel-5-5g-global-td-lte-128gb-gtt9q" + }, + { + "slug": "pixel-5-5g-td-lte-jp-128gb-g5nz6", + "name": "Pixel 5 5G TD-LTE JP 128GB G5NZ6", + "url": "/v1/smartphones/pixel-5-5g-td-lte-jp-128gb-g5nz6" + }, + { + "slug": "pixel-5-5g-uw-td-lte-us-128gb-gd1yq", + "name": "Pixel 5 5G UW TD-LTE US 128GB GD1YQ", + "url": "/v1/smartphones/pixel-5-5g-uw-td-lte-us-128gb-gd1yq" + }, + { + "slug": "pixel-5a", + "name": "Pixel 5a", + "url": "/v1/smartphones/pixel-5a" + }, + { + "slug": "pixel-5a-5g-td-lte-jp-128gb-g4s1m", + "name": "Pixel 5a 5G TD-LTE JP 128GB G4S1M", + "url": "/v1/smartphones/pixel-5a-5g-td-lte-jp-128gb-g4s1m" + }, + { + "slug": "pixel-5a-5g-td-lte-us-128gb-g1f8f", + "name": "Pixel 5a 5G TD-LTE US 128GB G1F8F", + "url": "/v1/smartphones/pixel-5a-5g-td-lte-us-128gb-g1f8f" + }, + { + "slug": "pixel-6", + "name": "Pixel 6", + "url": "/v1/smartphones/pixel-6" + }, + { + "slug": "pixel-6-5g-global-td-lte-128gb-gb7n6", + "name": "Pixel 6 5G Global TD-LTE 128GB GB7N6", + "url": "/v1/smartphones/pixel-6-5g-global-td-lte-128gb-gb7n6" + }, + { + "slug": "pixel-6-5g-global-td-lte-256gb-gb7n6", + "name": "Pixel 6 5G Global TD-LTE 256GB GB7N6", + "url": "/v1/smartphones/pixel-6-5g-global-td-lte-256gb-gb7n6" + }, + { + "slug": "pixel-6-5g-uw-td-lte-jp-128gb-gr1yh", + "name": "Pixel 6 5G UW TD-LTE JP 128GB GR1YH", + "url": "/v1/smartphones/pixel-6-5g-uw-td-lte-jp-128gb-gr1yh" + }, + { + "slug": "pixel-6-5g-uw-td-lte-jp-256gb-gr1yh", + "name": "Pixel 6 5G UW TD-LTE JP 256GB GR1YH", + "url": "/v1/smartphones/pixel-6-5g-uw-td-lte-jp-256gb-gr1yh" + }, + { + "slug": "pixel-6-5g-uw-td-lte-us-128gb-g9s9b", + "name": "Pixel 6 5G UW TD-LTE US 128GB G9S9B", + "url": "/v1/smartphones/pixel-6-5g-uw-td-lte-us-128gb-g9s9b" + }, + { + "slug": "pixel-6-5g-uw-td-lte-us-256gb-g9s9b", + "name": "Pixel 6 5G UW TD-LTE US 256GB G9S9B", + "url": "/v1/smartphones/pixel-6-5g-uw-td-lte-us-256gb-g9s9b" + }, + { + "slug": "pixel-6-pro", + "name": "Pixel 6 Pro", + "url": "/v1/smartphones/pixel-6-pro" + }, + { + "slug": "pixel-6-pro-5g-global-td-lte-128gb-gluog", + "name": "Pixel 6 Pro 5G Global TD-LTE 128GB GLUOG", + "url": "/v1/smartphones/pixel-6-pro-5g-global-td-lte-128gb-gluog" + }, + { + "slug": "pixel-6-pro-5g-global-td-lte-256gb-gluog", + "name": "Pixel 6 Pro 5G Global TD-LTE 256GB GLUOG", + "url": "/v1/smartphones/pixel-6-pro-5g-global-td-lte-256gb-gluog" + }, + { + "slug": "pixel-6-pro-5g-global-td-lte-512gb-gluog", + "name": "Pixel 6 Pro 5G Global TD-LTE 512GB GLUOG", + "url": "/v1/smartphones/pixel-6-pro-5g-global-td-lte-512gb-gluog" + }, + { + "slug": "pixel-6-pro-5g-uw-td-lte-jp-128gb-gf5kq", + "name": "Pixel 6 Pro 5G UW TD-LTE JP 128GB GF5KQ", + "url": "/v1/smartphones/pixel-6-pro-5g-uw-td-lte-jp-128gb-gf5kq" + }, + { + "slug": "pixel-6-pro-5g-uw-td-lte-jp-256gb-gf5kq", + "name": "Pixel 6 Pro 5G UW TD-LTE JP 256GB GF5KQ", + "url": "/v1/smartphones/pixel-6-pro-5g-uw-td-lte-jp-256gb-gf5kq" + }, + { + "slug": "pixel-6-pro-5g-uw-td-lte-us-128gb-g8vou", + "name": "Pixel 6 Pro 5G UW TD-LTE US 128GB G8VOU", + "url": "/v1/smartphones/pixel-6-pro-5g-uw-td-lte-us-128gb-g8vou" + }, + { + "slug": "pixel-6-pro-5g-uw-td-lte-us-256gb-g8vou", + "name": "Pixel 6 Pro 5G UW TD-LTE US 256GB G8VOU", + "url": "/v1/smartphones/pixel-6-pro-5g-uw-td-lte-us-256gb-g8vou" + }, + { + "slug": "pixel-6a", + "name": "Pixel 6a", + "url": "/v1/smartphones/pixel-6a" + }, + { + "slug": "pixel-7", + "name": "Pixel 7", + "url": "/v1/smartphones/pixel-7" + }, + { + "slug": "pixel-7-pro", + "name": "Pixel 7 Pro", + "url": "/v1/smartphones/pixel-7-pro" + }, + { + "slug": "pixel-7a", + "name": "Pixel 7a", + "url": "/v1/smartphones/pixel-7a" + }, + { + "slug": "pixel-8", + "name": "Pixel 8", + "url": "/v1/smartphones/pixel-8" + }, + { + "slug": "pixel-8-pro", + "name": "Pixel 8 Pro", + "url": "/v1/smartphones/pixel-8-pro" + }, + { + "slug": "pixel-8a", + "name": "Pixel 8a", + "url": "/v1/smartphones/pixel-8a" + }, + { + "slug": "pixel-9", + "name": "Pixel 9", + "url": "/v1/smartphones/pixel-9" + }, + { + "slug": "pixel-9-pro", + "name": "Pixel 9 Pro", + "url": "/v1/smartphones/pixel-9-pro" + }, + { + "slug": "pixel-9-pro-xl", + "name": "Pixel 9 Pro XL", + "url": "/v1/smartphones/pixel-9-pro-xl" + }, + { + "slug": "pixel-xl", + "name": "Pixel XL", + "url": "/v1/smartphones/pixel-xl" + }, + { + "slug": "pixel-xl-3-phone-global-td-lte-128gb-g013c", + "name": "Pixel XL 3 Phone Global TD-LTE 128GB G013C", + "url": "/v1/smartphones/pixel-xl-3-phone-global-td-lte-128gb-g013c" + }, + { + "slug": "pixel-xl-3-phone-global-td-lte-64gb-g013c", + "name": "Pixel XL 3 Phone Global TD-LTE 64GB G013C", + "url": "/v1/smartphones/pixel-xl-3-phone-global-td-lte-64gb-g013c" + }, + { + "slug": "pixel-xl-3-phone-td-lte-jp-128gb-g013d", + "name": "Pixel XL 3 Phone TD-LTE JP 128GB G013D", + "url": "/v1/smartphones/pixel-xl-3-phone-td-lte-jp-128gb-g013d" + }, + { + "slug": "play-4", + "name": "Play 4", + "url": "/v1/smartphones/play-4" + }, + { + "slug": "play-4-pro", + "name": "Play 4 Pro", + "url": "/v1/smartphones/play-4-pro" + }, + { + "slug": "play-5", + "name": "Play 5", + "url": "/v1/smartphones/play-5" + }, + { + "slug": "play-6t", + "name": "Play 6T", + "url": "/v1/smartphones/play-6t" + }, + { + "slug": "play-7", + "name": "Play 7", + "url": "/v1/smartphones/play-7" + }, + { + "slug": "play-8t", + "name": "Play 8T", + "url": "/v1/smartphones/play-8t" + }, + { + "slug": "play-9t", + "name": "Play 9T", + "url": "/v1/smartphones/play-9t" + }, + { + "slug": "plex-global-dual-sim-td-lte-t780h", + "name": "Plex Global Dual SIM TD-LTE T780H", + "url": "/v1/smartphones/plex-global-dual-sim-td-lte-t780h" + }, + { + "slug": "poco-c50-premium-edition", + "name": "Poco C50 Premium Edition", + "url": "/v1/smartphones/poco-c50-premium-edition" + }, + { + "slug": "poco-c50-standard-edition", + "name": "Poco C50 Standard Edition", + "url": "/v1/smartphones/poco-c50-standard-edition" + }, + { + "slug": "poco-c55-premium-edition", + "name": "Poco C55 Premium Edition", + "url": "/v1/smartphones/poco-c55-premium-edition" + }, + { + "slug": "poco-c55-top-edition", + "name": "Poco C55 Top Edition", + "url": "/v1/smartphones/poco-c55-top-edition" + }, + { + "slug": "poco-poco-f3", + "name": "Poco F3", + "url": "/v1/smartphones/poco-poco-f3" + }, + { + "slug": "poco-f3-5g-premium-edition-global-dual-sim-td-lte-256gb-m2012k11ag", + "name": "Poco F3 5G Premium Edition Global Dual SIM TD-LTE 256GB M2012K11AG", + "url": "/v1/smartphones/poco-f3-5g-premium-edition-global-dual-sim-td-lte-256gb-m2012k11ag" + }, + { + "slug": "poco-f3-5g-standard-edition-global-dual-sim-td-lte-128gb-m2012k11ag", + "name": "Poco F3 5G Standard Edition Global Dual SIM TD-LTE 128GB M2012K11AG", + "url": "/v1/smartphones/poco-f3-5g-standard-edition-global-dual-sim-td-lte-128gb-m2012k11ag" + }, + { + "slug": "poco-f3-gt", + "name": "Poco F3 GT", + "url": "/v1/smartphones/poco-f3-gt" + }, + { + "slug": "poco-f3-gt-5g-premium-edition-dual-sim-td-lte-in-128gb-m2104k10i", + "name": "Poco F3 GT 5G Premium Edition Dual SIM TD-LTE IN 128GB M2104K10I", + "url": "/v1/smartphones/poco-f3-gt-5g-premium-edition-dual-sim-td-lte-in-128gb-m2104k10i" + }, + { + "slug": "poco-f3-gt-5g-premium-edition-dual-sim-td-lte-in-256gb-m2104k10i", + "name": "Poco F3 GT 5G Premium Edition Dual SIM TD-LTE IN 256GB M2104K10I", + "url": "/v1/smartphones/poco-f3-gt-5g-premium-edition-dual-sim-td-lte-in-256gb-m2104k10i" + }, + { + "slug": "poco-f3-gt-5g-standard-edition-dual-sim-td-lte-in-128gb-m2104k10i", + "name": "Poco F3 GT 5G Standard Edition Dual SIM TD-LTE IN 128GB M2104K10I", + "url": "/v1/smartphones/poco-f3-gt-5g-standard-edition-dual-sim-td-lte-in-128gb-m2104k10i" + }, + { + "slug": "poco-poco-f4", + "name": "Poco F4", + "url": "/v1/smartphones/poco-poco-f4" + }, + { + "slug": "poco-f4-gt", + "name": "Poco F4 GT", + "url": "/v1/smartphones/poco-f4-gt" + }, + { + "slug": "poco-poco-f5-pro", + "name": "Poco F5 Pro", + "url": "/v1/smartphones/poco-poco-f5-pro" + }, + { + "slug": "poco-m2-premium-edition", + "name": "Poco M2 Premium Edition", + "url": "/v1/smartphones/poco-m2-premium-edition" + }, + { + "slug": "poco-m2-premium-edition-dual-sim-td-lte-in-128gb-m2004j19pi", + "name": "Poco M2 Premium Edition Dual SIM TD-LTE IN 128GB M2004J19PI", + "url": "/v1/smartphones/poco-m2-premium-edition-dual-sim-td-lte-in-128gb-m2004j19pi" + }, + { + "slug": "poco-m2-premium-edition-dual-sim-td-lte-in-64gb-m2004j19pi", + "name": "Poco M2 Premium Edition Dual SIM TD-LTE IN 64GB M2004J19PI", + "url": "/v1/smartphones/poco-m2-premium-edition-dual-sim-td-lte-in-64gb-m2004j19pi" + }, + { + "slug": "poco-m2-reloaded", + "name": "Poco M2 Reloaded", + "url": "/v1/smartphones/poco-m2-reloaded" + }, + { + "slug": "poco-m2-reloaded-dual-sim-td-lte-in-64gb-m2004j19pi", + "name": "Poco M2 Reloaded Dual SIM TD-LTE IN 64GB M2004J19PI", + "url": "/v1/smartphones/poco-m2-reloaded-dual-sim-td-lte-in-64gb-m2004j19pi" + }, + { + "slug": "poco-m2-standard-edition", + "name": "Poco M2 Standard Edition", + "url": "/v1/smartphones/poco-m2-standard-edition" + }, + { + "slug": "poco-m2-standard-edition-dual-sim-td-lte-in-64gb-m2004j19pi", + "name": "Poco M2 Standard Edition Dual SIM TD-LTE IN 64GB M2004J19PI", + "url": "/v1/smartphones/poco-m2-standard-edition-dual-sim-td-lte-in-64gb-m2004j19pi" + }, + { + "slug": "poco-m3-premium-edition-dual-sim-td-lte-in-128gb-m2010j19ci", + "name": "Poco M3 Premium Edition Dual SIM TD-LTE IN 128GB M2010J19CI", + "url": "/v1/smartphones/poco-m3-premium-edition-dual-sim-td-lte-in-128gb-m2010j19ci" + }, + { + "slug": "poco-m3-premium-edition-dual-sim-td-lte-in-64gb-m2010j19ci", + "name": "Poco M3 Premium Edition Dual SIM TD-LTE IN 64GB M2010J19CI", + "url": "/v1/smartphones/poco-m3-premium-edition-dual-sim-td-lte-in-64gb-m2010j19ci" + }, + { + "slug": "poco-m3-pro", + "name": "Poco M3 Pro", + "url": "/v1/smartphones/poco-m3-pro" + }, + { + "slug": "poco-m3-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-m2103k19pi", + "name": "Poco M3 Pro 5G Premium Edition Dual SIM TD-LTE IN 128GB M2103K19PI", + "url": "/v1/smartphones/poco-m3-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-m2103k19pi" + }, + { + "slug": "poco-m3-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-m2103k19pg", + "name": "Poco M3 Pro 5G Premium Edition Global Dual SIM TD-LTE 128GB M2103K19PG", + "url": "/v1/smartphones/poco-m3-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-m2103k19pg" + }, + { + "slug": "poco-m3-pro-5g-standard-edition-dual-sim-td-lte-in-64gb-m2103k19pi", + "name": "Poco M3 Pro 5G Standard Edition Dual SIM TD-LTE IN 64GB M2103K19PI", + "url": "/v1/smartphones/poco-m3-pro-5g-standard-edition-dual-sim-td-lte-in-64gb-m2103k19pi" + }, + { + "slug": "poco-m3-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-m2103k19pg", + "name": "Poco M3 Pro 5G Standard Edition Global Dual SIM TD-LTE 64GB M2103K19PG", + "url": "/v1/smartphones/poco-m3-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-m2103k19pg" + }, + { + "slug": "poco-m3-standard-edition-dual-sim-td-lte-in-64gb-m2010j19ci", + "name": "Poco M3 Standard Edition Dual SIM TD-LTE IN 64GB M2010J19CI", + "url": "/v1/smartphones/poco-m3-standard-edition-dual-sim-td-lte-in-64gb-m2010j19ci" + }, + { + "slug": "poco-m3-standard-edition-global-dual-sim-td-lte-128gb-m2010j19cg", + "name": "Poco M3 Standard Edition Global Dual SIM TD-LTE 128GB M2010J19CG", + "url": "/v1/smartphones/poco-m3-standard-edition-global-dual-sim-td-lte-128gb-m2010j19cg" + }, + { + "slug": "poco-m3-standard-edition-global-dual-sim-td-lte-64gb-m2010j19cg", + "name": "Poco M3 Standard Edition Global Dual SIM TD-LTE 64GB M2010J19CG", + "url": "/v1/smartphones/poco-m3-standard-edition-global-dual-sim-td-lte-64gb-m2010j19cg" + }, + { + "slug": "poco-m4", + "name": "Poco M4", + "url": "/v1/smartphones/poco-m4" + }, + { + "slug": "poco-m4-pro", + "name": "Poco M4 Pro", + "url": "/v1/smartphones/poco-m4-pro" + }, + { + "slug": "poco-m4-pro-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117pi", + "name": "Poco M4 Pro 4G Premium Edition Dual SIM TD-LTE IN 128GB 2201117PI", + "url": "/v1/smartphones/poco-m4-pro-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117pi" + }, + { + "slug": "poco-m4-pro-4g-premium-edition-global-dual-sim-td-lte-256gb-2201117pg", + "name": "Poco M4 Pro 4G Premium Edition Global Dual SIM TD-LTE 256GB 2201117PG", + "url": "/v1/smartphones/poco-m4-pro-4g-premium-edition-global-dual-sim-td-lte-256gb-2201117pg" + }, + { + "slug": "poco-m4-pro-4g-standard-edition-dual-sim-td-lte-in-128gb-2201117pi", + "name": "Poco M4 Pro 4G Standard Edition Dual SIM TD-LTE IN 128GB 2201117PI", + "url": "/v1/smartphones/poco-m4-pro-4g-standard-edition-dual-sim-td-lte-in-128gb-2201117pi" + }, + { + "slug": "poco-m4-pro-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117pi", + "name": "Poco M4 Pro 4G Standard Edition Dual SIM TD-LTE IN 64GB 2201117PI", + "url": "/v1/smartphones/poco-m4-pro-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117pi" + }, + { + "slug": "poco-m4-pro-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117pg", + "name": "Poco M4 Pro 4G Standard Edition Global Dual SIM TD-LTE 128GB 2201117PG", + "url": "/v1/smartphones/poco-m4-pro-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117pg" + }, + { + "slug": "poco-m4-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-21091116ag", + "name": "Poco M4 Pro 5G Premium Edition Global Dual SIM TD-LTE 128GB 21091116AG", + "url": "/v1/smartphones/poco-m4-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-21091116ag" + }, + { + "slug": "poco-m4-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-21091116ag", + "name": "Poco M4 Pro 5G Standard Edition Global Dual SIM TD-LTE 64GB 21091116AG", + "url": "/v1/smartphones/poco-m4-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-21091116ag" + }, + { + "slug": "poco-m5-premium-edition", + "name": "Poco M5 Premium Edition", + "url": "/v1/smartphones/poco-m5-premium-edition" + }, + { + "slug": "poco-m5-standard-edition", + "name": "Poco M5 Standard Edition", + "url": "/v1/smartphones/poco-m5-standard-edition" + }, + { + "slug": "poco-m5s-premium-edition", + "name": "Poco M5s Premium Edition", + "url": "/v1/smartphones/poco-m5s-premium-edition" + }, + { + "slug": "poco-m5s-standard-edition", + "name": "Poco M5s Standard Edition", + "url": "/v1/smartphones/poco-m5s-standard-edition" + }, + { + "slug": "poco-x3-gt", + "name": "Poco X3 GT", + "url": "/v1/smartphones/poco-x3-gt" + }, + { + "slug": "poco-x3-gt-5g-global-dual-sim-td-lte-128gb-21061110ag", + "name": "Poco X3 GT 5G Global Dual SIM TD-LTE 128GB 21061110AG", + "url": "/v1/smartphones/poco-x3-gt-5g-global-dual-sim-td-lte-128gb-21061110ag" + }, + { + "slug": "poco-x3-gt-5g-global-dual-sim-td-lte-256gb-21061110ag", + "name": "Poco X3 GT 5G Global Dual SIM TD-LTE 256GB 21061110AG", + "url": "/v1/smartphones/poco-x3-gt-5g-global-dual-sim-td-lte-256gb-21061110ag" + }, + { + "slug": "poco-x3-nfc-standard-edition", + "name": "Poco X3 NFC Standard Edition", + "url": "/v1/smartphones/poco-x3-nfc-standard-edition" + }, + { + "slug": "poco-x3-premium-edition", + "name": "Poco X3 Premium Edition", + "url": "/v1/smartphones/poco-x3-premium-edition" + }, + { + "slug": "poco-x3-pro-premium-edition-dual-sim-td-lte-in-128gb-m2102j20si", + "name": "Poco X3 Pro Premium Edition Dual SIM TD-LTE IN 128GB M2102J20SI", + "url": "/v1/smartphones/poco-x3-pro-premium-edition-dual-sim-td-lte-in-128gb-m2102j20si" + }, + { + "slug": "poco-x3-pro-premium-edition-global-dual-sim-td-lte-256gb-m2102j20sg", + "name": "Poco X3 Pro Premium Edition Global Dual SIM TD-LTE 256GB M2102J20SG", + "url": "/v1/smartphones/poco-x3-pro-premium-edition-global-dual-sim-td-lte-256gb-m2102j20sg" + }, + { + "slug": "poco-x3-pro-standard-edition-dual-sim-td-lte-in-128gb-m2102j20si", + "name": "Poco X3 Pro Standard Edition Dual SIM TD-LTE IN 128GB M2102J20SI", + "url": "/v1/smartphones/poco-x3-pro-standard-edition-dual-sim-td-lte-in-128gb-m2102j20si" + }, + { + "slug": "poco-x3-pro-standard-edition-global-dual-sim-td-lte-128gb-m2102j20sg", + "name": "Poco X3 Pro Standard Edition Global Dual SIM TD-LTE 128GB M2102J20SG", + "url": "/v1/smartphones/poco-x3-pro-standard-edition-global-dual-sim-td-lte-128gb-m2102j20sg" + }, + { + "slug": "poco-x3-standard-edition", + "name": "Poco X3 Standard Edition", + "url": "/v1/smartphones/poco-x3-standard-edition" + }, + { + "slug": "poco-x4-gt", + "name": "Poco X4 GT", + "url": "/v1/smartphones/poco-x4-gt" + }, + { + "slug": "poco-poco-x4-pro", + "name": "Poco X4 Pro", + "url": "/v1/smartphones/poco-poco-x4-pro" + }, + { + "slug": "poco-x5", + "name": "Poco X5", + "url": "/v1/smartphones/poco-x5" + }, + { + "slug": "poco-poco-x5-pro", + "name": "Poco X5 Pro", + "url": "/v1/smartphones/poco-poco-x5-pro" + }, + { + "slug": "pocophone-poco-c3", + "name": "Pocophone Poco C3", + "url": "/v1/smartphones/pocophone-poco-c3" + }, + { + "slug": "pocophone-poco-c3-dual-sim-td-lte-in-32gb-m2006c3mi", + "name": "Pocophone Poco C3 Dual SIM TD-LTE IN 32GB M2006C3MI", + "url": "/v1/smartphones/pocophone-poco-c3-dual-sim-td-lte-in-32gb-m2006c3mi" + }, + { + "slug": "pocophone-poco-c3-dual-sim-td-lte-in-64gb-m2006c3mi", + "name": "Pocophone Poco C3 Dual SIM TD-LTE IN 64GB M2006C3MI", + "url": "/v1/smartphones/pocophone-poco-c3-dual-sim-td-lte-in-64gb-m2006c3mi" + }, + { + "slug": "pocophone-poco-c31", + "name": "Pocophone Poco C31", + "url": "/v1/smartphones/pocophone-poco-c31" + }, + { + "slug": "pocophone-poco-c31-dual-sim-td-lte-in-32gb", + "name": "Pocophone Poco C31 Dual SIM TD-LTE IN 32GB", + "url": "/v1/smartphones/pocophone-poco-c31-dual-sim-td-lte-in-32gb" + }, + { + "slug": "pocophone-poco-c31-dual-sim-td-lte-in-64gb", + "name": "Pocophone Poco C31 Dual SIM TD-LTE IN 64GB", + "url": "/v1/smartphones/pocophone-poco-c31-dual-sim-td-lte-in-64gb" + }, + { + "slug": "pocophone-poco-f1-armoured-edition-global-dual-sim-td-lte-128gb-m1805e10a", + "name": "Pocophone Poco F1 Armoured Edition Global Dual SIM TD-LTE 128GB M1805E10A", + "url": "/v1/smartphones/pocophone-poco-f1-armoured-edition-global-dual-sim-td-lte-128gb-m1805e10a" + }, + { + "slug": "pocophone-poco-f1-armoured-edition-global-dual-sim-td-lte-256gb-m1805e10a", + "name": "Pocophone Poco F1 Armoured Edition Global Dual SIM TD-LTE 256GB M1805E10A", + "url": "/v1/smartphones/pocophone-poco-f1-armoured-edition-global-dual-sim-td-lte-256gb-m1805e10a" + }, + { + "slug": "pocophone-poco-f1-dual-sim-td-lte-256gb-m1805e10a", + "name": "Pocophone Poco F1 Dual SIM TD-LTE 256GB M1805E10A", + "url": "/v1/smartphones/pocophone-poco-f1-dual-sim-td-lte-256gb-m1805e10a" + }, + { + "slug": "pocophone-poco-f1-global-dual-sim-td-lte-128gb-m1805e10a", + "name": "Pocophone Poco F1 Global Dual SIM TD-LTE 128GB M1805E10A", + "url": "/v1/smartphones/pocophone-poco-f1-global-dual-sim-td-lte-128gb-m1805e10a" + }, + { + "slug": "pocophone-poco-f1-global-dual-sim-td-lte-64gb-m1805e10a", + "name": "Pocophone Poco F1 Global Dual SIM TD-LTE 64GB M1805E10A", + "url": "/v1/smartphones/pocophone-poco-f1-global-dual-sim-td-lte-64gb-m1805e10a" + }, + { + "slug": "pocophone-poco-f2-pro", + "name": "Pocophone Poco F2 Pro", + "url": "/v1/smartphones/pocophone-poco-f2-pro" + }, + { + "slug": "pocophone-poco-f2-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-m2004j11g", + "name": "Pocophone Poco F2 Pro 5G Premium Edition Global Dual SIM TD-LTE 256GB M2004J11G", + "url": "/v1/smartphones/pocophone-poco-f2-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-m2004j11g" + }, + { + "slug": "pocophone-poco-f2-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-m2004j11g", + "name": "Pocophone Poco F2 Pro 5G Standard Edition Global Dual SIM TD-LTE 128GB M2004J11G", + "url": "/v1/smartphones/pocophone-poco-f2-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-m2004j11g" + }, + { + "slug": "pocophone-poco-m2-pro-premium-edition", + "name": "Pocophone Poco M2 Pro Premium Edition", + "url": "/v1/smartphones/pocophone-poco-m2-pro-premium-edition" + }, + { + "slug": "pocophone-poco-m2-pro-standard-edition", + "name": "Pocophone Poco M2 Pro Standard Edition", + "url": "/v1/smartphones/pocophone-poco-m2-pro-standard-edition" + }, + { + "slug": "pocophone-poco-x2-premium-edition", + "name": "Pocophone Poco X2 Premium Edition", + "url": "/v1/smartphones/pocophone-poco-x2-premium-edition" + }, + { + "slug": "pocophone-poco-x2-premium-edition-dual-sim-td-lte-in-256gb-m1912g7bi", + "name": "Pocophone Poco X2 Premium Edition Dual SIM TD-LTE IN 256GB M1912G7BI", + "url": "/v1/smartphones/pocophone-poco-x2-premium-edition-dual-sim-td-lte-in-256gb-m1912g7bi" + }, + { + "slug": "pocophone-poco-x2-standard-edition", + "name": "Pocophone Poco X2 Standard Edition", + "url": "/v1/smartphones/pocophone-poco-x2-standard-edition" + }, + { + "slug": "pocophone-poco-x2-standard-edition-dual-sim-td-lte-in-128gb-m1912g7bi", + "name": "Pocophone Poco X2 Standard Edition Dual SIM TD-LTE IN 128GB M1912G7BI", + "url": "/v1/smartphones/pocophone-poco-x2-standard-edition-dual-sim-td-lte-in-128gb-m1912g7bi" + }, + { + "slug": "pocophone-poco-x2-standard-edition-dual-sim-td-lte-in-64gb", + "name": "Pocophone Poco X2 Standard Edition Dual SIM TD-LTE IN 64GB", + "url": "/v1/smartphones/pocophone-poco-x2-standard-edition-dual-sim-td-lte-in-64gb" + }, + { + "slug": "pouvoir-4-pro-dual-sim-td-lte-128gb", + "name": "Pouvoir 4 Pro Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/pouvoir-4-pro-dual-sim-td-lte-128gb" + }, + { + "slug": "pova-5", + "name": "Pova 5", + "url": "/v1/smartphones/pova-5" + }, + { + "slug": "pova-5g", + "name": "Pova 5G", + "url": "/v1/smartphones/pova-5g" + }, + { + "slug": "pova-6-neo", + "name": "Pova 6 Neo", + "url": "/v1/smartphones/pova-6-neo" + }, + { + "slug": "pova-6-neo-5g", + "name": "Pova 6 Neo 5G", + "url": "/v1/smartphones/pova-6-neo-5g" + }, + { + "slug": "pova-6-pro", + "name": "Pova 6 Pro", + "url": "/v1/smartphones/pova-6-pro" + }, + { + "slug": "power-3-dual-sim-lte", + "name": "Power 3 Dual SIM LTE", + "url": "/v1/smartphones/power-3-dual-sim-lte" + }, + { + "slug": "power-3s-dual-sim-lte", + "name": "Power 3s Dual SIM LTE", + "url": "/v1/smartphones/power-3s-dual-sim-lte" + }, + { + "slug": "power-6-dual-sim-td-lte", + "name": "Power 6 Dual SIM TD-LTE", + "url": "/v1/smartphones/power-6-dual-sim-td-lte" + }, + { + "slug": "pura-70", + "name": "Pura 70", + "url": "/v1/smartphones/pura-70" + }, + { + "slug": "pura-70-pro", + "name": "Pura 70 Pro", + "url": "/v1/smartphones/pura-70-pro" + }, + { + "slug": "pura-70-ultra", + "name": "Pura 70 Ultra", + "url": "/v1/smartphones/pura-70-ultra" + }, + { + "slug": "q52", + "name": "Q52", + "url": "/v1/smartphones/q52" + }, + { + "slug": "q610ma-q7-td-lte-us", + "name": "Q610MA Q7+ TD-LTE US", + "url": "/v1/smartphones/q610ma-q7-td-lte-us" + }, + { + "slug": "q610ta-q7-td-lte-us", + "name": "Q610TA Q7+ TD-LTE US", + "url": "/v1/smartphones/q610ta-q7-td-lte-us" + }, + { + "slug": "q710cs-stylo-4-lte-us", + "name": "Q710CS Stylo 4 LTE US", + "url": "/v1/smartphones/q710cs-stylo-4-lte-us" + }, + { + "slug": "q710ms-stylo-4-td-lte-us", + "name": "Q710MS Stylo 4 TD-LTE US", + "url": "/v1/smartphones/q710ms-stylo-4-td-lte-us" + }, + { + "slug": "q710ts-stylo-4-td-lte-us-q710pr", + "name": "Q710TS Stylo 4 TD-LTE US / Q710PR", + "url": "/v1/smartphones/q710ts-stylo-4-td-lte-us-q710pr" + }, + { + "slug": "q710ulm-stylo-4-lte-us", + "name": "Q710ULM Stylo 4 LTE US", + "url": "/v1/smartphones/q710ulm-stylo-4-lte-us" + }, + { + "slug": "q710uls-stylo-4-lte-us", + "name": "Q710ULS Stylo 4 LTE US", + "url": "/v1/smartphones/q710uls-stylo-4-lte-us" + }, + { + "slug": "q710us-stylo-4-lte-us", + "name": "Q710US Stylo 4 LTE US", + "url": "/v1/smartphones/q710us-stylo-4-lte-us" + }, + { + "slug": "q720k-q7-td-lte-kr", + "name": "Q720K Q7 TD-LTE KR", + "url": "/v1/smartphones/q720k-q7-td-lte-kr" + }, + { + "slug": "q720l-q7-td-lte-kr", + "name": "Q720L Q7 TD-LTE KR", + "url": "/v1/smartphones/q720l-q7-td-lte-kr" + }, + { + "slug": "q720s-q7-td-lte-kr", + "name": "Q720S Q7 TD-LTE KR", + "url": "/v1/smartphones/q720s-q7-td-lte-kr" + }, + { + "slug": "q725k-q7-td-lte-kr", + "name": "Q725K Q7+ TD-LTE KR", + "url": "/v1/smartphones/q725k-q7-td-lte-kr" + }, + { + "slug": "q725l-q7-td-lte-kr", + "name": "Q725L Q7+ TD-LTE KR", + "url": "/v1/smartphones/q725l-q7-td-lte-kr" + }, + { + "slug": "q725s-q7-td-lte-kr", + "name": "Q725S Q7+ TD-LTE KR", + "url": "/v1/smartphones/q725s-q7-td-lte-kr" + }, + { + "slug": "q727k-q7-bts-edition-td-lte-kr", + "name": "Q727K Q7 BTS Edition TD-LTE KR", + "url": "/v1/smartphones/q727k-q7-bts-edition-td-lte-kr" + }, + { + "slug": "q815l-q-series-q8-2018-td-lte-kr", + "name": "Q815L Q Series Q8 2018 TD-LTE KR", + "url": "/v1/smartphones/q815l-q-series-q8-2018-td-lte-kr" + }, + { + "slug": "q815s-q-series-q8-2018-td-lte-kr", + "name": "Q815S Q Series Q8 2018 TD-LTE KR", + "url": "/v1/smartphones/q815s-q-series-q8-2018-td-lte-kr" + }, + { + "slug": "q92-5g", + "name": "Q92 5G", + "url": "/v1/smartphones/q92-5g" + }, + { + "slug": "q925k-q9-td-lte-kr", + "name": "Q925K Q9 TD-LTE KR", + "url": "/v1/smartphones/q925k-q9-td-lte-kr" + }, + { + "slug": "q925l-q9-lte-a-kr", + "name": "Q925L Q9 LTE-A KR", + "url": "/v1/smartphones/q925l-q9-lte-a-kr" + }, + { + "slug": "q925s-q9-td-lte-kr", + "name": "Q925S Q9 TD-LTE KR", + "url": "/v1/smartphones/q925s-q9-td-lte-kr" + }, + { + "slug": "q927l-q9-one-td-lte-kr", + "name": "Q927L Q9 One TD-LTE KR", + "url": "/v1/smartphones/q927l-q9-one-td-lte-kr" + }, + { + "slug": "qingyou-1s-dual-sim-td-lte-cn-64gb-xt1925-10-moto-g6", + "name": "Qingyou 1s Dual SIM TD-LTE CN 64GB XT1925-10 / Moto G6", + "url": "/v1/smartphones/qingyou-1s-dual-sim-td-lte-cn-64gb-xt1925-10-moto-g6" + }, + { + "slug": "r15", + "name": "R15", + "url": "/v1/smartphones/r15" + }, + { + "slug": "r15-dream-mirror-edition-dual-sim-td-lte-cn-paam00", + "name": "R15 Dream Mirror Edition Dual SIM TD-LTE CN PAAM00", + "url": "/v1/smartphones/r15-dream-mirror-edition-dual-sim-td-lte-cn-paam00" + }, + { + "slug": "r15-dream-mirror-edition-dual-sim-td-lte-cn-paat00-r15-dme-4g", + "name": "R15 Dream Mirror Edition Dual SIM TD-LTE CN PAAT00 / R15 DME 4G+", + "url": "/v1/smartphones/r15-dream-mirror-edition-dual-sim-td-lte-cn-paat00-r15-dme-4g" + }, + { + "slug": "r15-dual-sim-td-lte-cn-pacm00", + "name": "R15 Dual SIM TD-LTE CN PACM00", + "url": "/v1/smartphones/r15-dual-sim-td-lte-cn-pacm00" + }, + { + "slug": "r15-dual-sim-td-lte-cn-pact00", + "name": "R15 Dual SIM TD-LTE CN PACT00", + "url": "/v1/smartphones/r15-dual-sim-td-lte-cn-pact00" + }, + { + "slug": "r15-dual-sim-td-lte-tw-cph1835", + "name": "R15 Dual SIM TD-LTE TW CPH1835", + "url": "/v1/smartphones/r15-dual-sim-td-lte-tw-cph1835" + }, + { + "slug": "r15-neo-dual-sim-td-lte-jp-au-cph1851", + "name": "R15 Neo Dual SIM TD-LTE JP AU CPH1851", + "url": "/v1/smartphones/r15-neo-dual-sim-td-lte-jp-au-cph1851" + }, + { + "slug": "r15-pro-dual-sim-td-lte-au-my-sg-th-eu-version-1-cph1831", + "name": "R15 Pro Dual SIM TD-LTE AU MY SG TH EU Version 1 CPH1831", + "url": "/v1/smartphones/r15-pro-dual-sim-td-lte-au-my-sg-th-eu-version-1-cph1831" + }, + { + "slug": "r15-pro-dual-sim-td-lte-jp-version-2-cph1833", + "name": "R15 Pro Dual SIM TD-LTE JP Version 2 CPH1833", + "url": "/v1/smartphones/r15-pro-dual-sim-td-lte-jp-version-2-cph1833" + }, + { + "slug": "r15-pro-dual-sim-td-lte-tw-cph1831", + "name": "R15 Pro Dual SIM TD-LTE TW CPH1831", + "url": "/v1/smartphones/r15-pro-dual-sim-td-lte-tw-cph1831" + }, + { + "slug": "r15-pro-td-lte-au-cph1831", + "name": "R15 Pro TD-LTE AU CPH1831", + "url": "/v1/smartphones/r15-pro-td-lte-au-cph1831" + }, + { + "slug": "r15x-dual-sim-td-lte-cn-pbcm10", + "name": "R15x Dual SIM TD-LTE CN PBCM10", + "url": "/v1/smartphones/r15x-dual-sim-td-lte-cn-pbcm10" + }, + { + "slug": "r15x-dual-sim-td-lte-cn-pbct10", + "name": "R15x Dual SIM TD-LTE CN PBCT10", + "url": "/v1/smartphones/r15x-dual-sim-td-lte-cn-pbct10" + }, + { + "slug": "r17-dual-sim-td-lte-in-version-2-cph1879", + "name": "R17 Dual SIM TD-LTE IN Version 2 CPH1879", + "url": "/v1/smartphones/r17-dual-sim-td-lte-in-version-2-cph1879" + }, + { + "slug": "r17-dual-sim-td-lte-sg-tw-version-1-cph1879", + "name": "R17 Dual SIM TD-LTE SG TW Version 1 CPH1879", + "url": "/v1/smartphones/r17-dual-sim-td-lte-sg-tw-version-1-cph1879" + }, + { + "slug": "r17-premium-edition-dual-sim-td-lte-cn-pagm00", + "name": "R17 Premium Edition Dual SIM TD-LTE CN PAGM00", + "url": "/v1/smartphones/r17-premium-edition-dual-sim-td-lte-cn-pagm00" + }, + { + "slug": "r17-pro-dual-sim-td-lte-cn-pbdm00", + "name": "R17 Pro Dual SIM TD-LTE CN PBDM00", + "url": "/v1/smartphones/r17-pro-dual-sim-td-lte-cn-pbdm00" + }, + { + "slug": "r17-pro-dual-sim-td-lte-cn-pbdt00", + "name": "R17 Pro Dual SIM TD-LTE CN PBDT00", + "url": "/v1/smartphones/r17-pro-dual-sim-td-lte-cn-pbdt00" + }, + { + "slug": "r17-pro-premium-edition-global-dual-sim-td-lte-version-1-cph1877", + "name": "R17 Pro Premium Edition Global Dual SIM TD-LTE Version 1 CPH1877", + "url": "/v1/smartphones/r17-pro-premium-edition-global-dual-sim-td-lte-version-1-cph1877" + }, + { + "slug": "r17-pro-standard-edition-dual-sim-td-lte-apac-version-2-cph1877", + "name": "R17 Pro Standard Edition Dual SIM TD-LTE APAC Version 2 CPH1877", + "url": "/v1/smartphones/r17-pro-standard-edition-dual-sim-td-lte-apac-version-2-cph1877" + }, + { + "slug": "r17-standard-edition-dual-sim-td-lte-cn-pagm00", + "name": "R17 Standard Edition Dual SIM TD-LTE CN PAGM00", + "url": "/v1/smartphones/r17-standard-edition-dual-sim-td-lte-cn-pagm00" + }, + { + "slug": "r17-standard-edition-dual-sim-td-lte-cn-pagt00", + "name": "R17 Standard Edition Dual SIM TD-LTE CN PAGT00", + "url": "/v1/smartphones/r17-standard-edition-dual-sim-td-lte-cn-pagt00" + }, + { + "slug": "razr-1st-gen-2019-global-td-lte-xt2000-2", + "name": "RAZR 1st gen 2019 Global TD-LTE XT2000-2", + "url": "/v1/smartphones/razr-1st-gen-2019-global-td-lte-xt2000-2" + }, + { + "slug": "razr-1st-gen-2019-lte-a-na-xt2000-1", + "name": "RAZR 1st gen 2019 LTE-A NA XT2000-1", + "url": "/v1/smartphones/razr-1st-gen-2019-lte-a-na-xt2000-1" + }, + { + "slug": "razr-5g-2nd-gen-2020-dual-sim-td-lte-na-xt2071-3", + "name": "RAZR 5G 2nd gen 2020 Dual SIM TD-LTE NA XT2071-3", + "url": "/v1/smartphones/razr-5g-2nd-gen-2020-dual-sim-td-lte-na-xt2071-3" + }, + { + "slug": "razr-5g-2nd-gen-2020-dual-sim-td-lte-us-xt2071-2", + "name": "RAZR 5G 2nd gen 2020 Dual SIM TD-LTE US XT2071-2", + "url": "/v1/smartphones/razr-5g-2nd-gen-2020-dual-sim-td-lte-us-xt2071-2" + }, + { + "slug": "razr-5g-2nd-gen-2020-dual-sim-td-lte-us-xt2071-5", + "name": "RAZR 5G 2nd gen 2020 Dual SIM TD-LTE US XT2071-5", + "url": "/v1/smartphones/razr-5g-2nd-gen-2020-dual-sim-td-lte-us-xt2071-5" + }, + { + "slug": "razr-5g-2nd-gen-2020-global-dual-sim-td-lte-xt2071-4", + "name": "RAZR 5G 2nd gen 2020 Global Dual SIM TD-LTE XT2071-4", + "url": "/v1/smartphones/razr-5g-2nd-gen-2020-global-dual-sim-td-lte-xt2071-4" + }, + { + "slug": "rog-phone-3", + "name": "ROG Phone 3", + "url": "/v1/smartphones/rog-phone-3" + }, + { + "slug": "rog-phone-3-5g-classic-edition-dual-sim-td-lte-cn-version-c-256gb-zs661ks", + "name": "ROG Phone 3 5G Classic Edition Dual SIM TD-LTE CN Version C 256GB ZS661KS", + "url": "/v1/smartphones/rog-phone-3-5g-classic-edition-dual-sim-td-lte-cn-version-c-256gb-zs661ks" + }, + { + "slug": "rog-phone-3-5g-elite-edition-dual-sim-td-lte-cn-version-c-128gb-zs661ks", + "name": "ROG Phone 3 5G Elite Edition Dual SIM TD-LTE CN Version C 128GB ZS661KS", + "url": "/v1/smartphones/rog-phone-3-5g-elite-edition-dual-sim-td-lte-cn-version-c-128gb-zs661ks" + }, + { + "slug": "rog-phone-3-5g-extreme-edition-dual-sim-td-lte-cn-version-c-512gb-zs661ks", + "name": "ROG Phone 3 5G Extreme Edition Dual SIM TD-LTE CN Version C 512GB ZS661KS", + "url": "/v1/smartphones/rog-phone-3-5g-extreme-edition-dual-sim-td-lte-cn-version-c-512gb-zs661ks" + }, + { + "slug": "rog-phone-3-5g-extreme-edition-global-dual-sim-td-lte-version-a-512gb-zs661ks", + "name": "ROG Phone 3 5G Extreme Edition Global Dual SIM TD-LTE Version A 512GB ZS661KS", + "url": "/v1/smartphones/rog-phone-3-5g-extreme-edition-global-dual-sim-td-lte-version-a-512gb-zs661ks" + }, + { + "slug": "rog-phone-3-5g-premium-edition-dual-sim-td-lte-in-version-b-256gb-zs661ks", + "name": "ROG Phone 3 5G Premium Edition Dual SIM TD-LTE IN Version B 256GB ZS661KS", + "url": "/v1/smartphones/rog-phone-3-5g-premium-edition-dual-sim-td-lte-in-version-b-256gb-zs661ks" + }, + { + "slug": "rog-phone-3-5g-standard-edition-dual-sim-td-lte-in-version-b-128gb-zs661ks", + "name": "ROG Phone 3 5G Standard Edition Dual SIM TD-LTE IN Version B 128GB ZS661KS", + "url": "/v1/smartphones/rog-phone-3-5g-standard-edition-dual-sim-td-lte-in-version-b-128gb-zs661ks" + }, + { + "slug": "rog-phone-3-5g-strix-edition-global-dual-sim-td-lte-version-b-128gb-zs661ks", + "name": "ROG Phone 3 5G Strix Edition Global Dual SIM TD-LTE Version B 128GB ZS661KS", + "url": "/v1/smartphones/rog-phone-3-5g-strix-edition-global-dual-sim-td-lte-version-b-128gb-zs661ks" + }, + { + "slug": "rog-phone-3-5g-ultimate-edition-dual-sim-td-lte-cn-version-c-512gb-zs661ks", + "name": "ROG Phone 3 5G Ultimate Edition Dual SIM TD-LTE CN Version C 512GB ZS661KS", + "url": "/v1/smartphones/rog-phone-3-5g-ultimate-edition-dual-sim-td-lte-cn-version-c-512gb-zs661ks" + }, + { + "slug": "rog-phone-5", + "name": "ROG Phone 5", + "url": "/v1/smartphones/rog-phone-5" + }, + { + "slug": "rog-phone-5-5g-base-edition-dual-sim-td-lte-apac-version-f-h-128gb-zs673ks", + "name": "ROG Phone 5 5G Base Edition Dual SIM TD-LTE APAC Version F H 128GB ZS673KS", + "url": "/v1/smartphones/rog-phone-5-5g-base-edition-dual-sim-td-lte-apac-version-f-h-128gb-zs673ks" + }, + { + "slug": "rog-phone-5-5g-base-edition-dual-sim-td-lte-cn-version-c-g-128gb-zs673ks", + "name": "ROG Phone 5 5G Base Edition Dual SIM TD-LTE CN Version C G 128GB ZS673KS", + "url": "/v1/smartphones/rog-phone-5-5g-base-edition-dual-sim-td-lte-cn-version-c-g-128gb-zs673ks" + }, + { + "slug": "rog-phone-5-5g-base-edition-global-dual-sim-td-lte-version-a-d-128gb-zs673ks", + "name": "ROG Phone 5 5G Base Edition Global Dual SIM TD-LTE Version A D 128GB ZS673KS", + "url": "/v1/smartphones/rog-phone-5-5g-base-edition-global-dual-sim-td-lte-version-a-d-128gb-zs673ks" + }, + { + "slug": "rog-phone-5-5g-premium-edition-dual-sim-td-lte-apac-version-f-h-256gb-zs673ks", + "name": "ROG Phone 5 5G Premium Edition Dual SIM TD-LTE APAC Version F H 256GB ZS673KS", + "url": "/v1/smartphones/rog-phone-5-5g-premium-edition-dual-sim-td-lte-apac-version-f-h-256gb-zs673ks" + }, + { + "slug": "rog-phone-5-5g-premium-edition-dual-sim-td-lte-cn-version-c-g-256gb-zs673ks", + "name": "ROG Phone 5 5G Premium Edition Dual SIM TD-LTE CN Version C G 256GB ZS673KS", + "url": "/v1/smartphones/rog-phone-5-5g-premium-edition-dual-sim-td-lte-cn-version-c-g-256gb-zs673ks" + }, + { + "slug": "rog-phone-5-5g-premium-edition-dual-sim-td-lte-na-version-b-e-256gb-zs673ks", + "name": "ROG Phone 5 5G Premium Edition Dual SIM TD-LTE NA Version B E 256GB ZS673KS", + "url": "/v1/smartphones/rog-phone-5-5g-premium-edition-dual-sim-td-lte-na-version-b-e-256gb-zs673ks" + }, + { + "slug": "rog-phone-5-5g-premium-edition-global-dual-sim-td-lte-version-a-d-256gb-zs673ks", + "name": "ROG Phone 5 5G Premium Edition Global Dual SIM TD-LTE Version A D 256GB ZS673KS", + "url": "/v1/smartphones/rog-phone-5-5g-premium-edition-global-dual-sim-td-lte-version-a-d-256gb-zs673ks" + }, + { + "slug": "rog-phone-5-5g-pro-global-dual-sim-td-lte-version-a-d-512gb-zs673ks", + "name": "ROG Phone 5 5G Pro Global Dual SIM TD-LTE Version A D 512GB ZS673KS", + "url": "/v1/smartphones/rog-phone-5-5g-pro-global-dual-sim-td-lte-version-a-d-512gb-zs673ks" + }, + { + "slug": "rog-phone-5-5g-standard-edition-dual-sim-td-lte-apac-version-f-h-256gb-zs673ks", + "name": "ROG Phone 5 5G Standard Edition Dual SIM TD-LTE APAC Version F H 256GB ZS673KS", + "url": "/v1/smartphones/rog-phone-5-5g-standard-edition-dual-sim-td-lte-apac-version-f-h-256gb-zs673ks" + }, + { + "slug": "rog-phone-5-5g-standard-edition-dual-sim-td-lte-cn-version-c-g-256gb-zs673ks", + "name": "ROG Phone 5 5G Standard Edition Dual SIM TD-LTE CN Version C G 256GB ZS673KS", + "url": "/v1/smartphones/rog-phone-5-5g-standard-edition-dual-sim-td-lte-cn-version-c-g-256gb-zs673ks" + }, + { + "slug": "rog-phone-5-5g-standard-edition-global-dual-sim-td-lte-version-a-d-256gb-zs673ks", + "name": "ROG Phone 5 5G Standard Edition Global Dual SIM TD-LTE Version A D 256GB ZS673KS", + "url": "/v1/smartphones/rog-phone-5-5g-standard-edition-global-dual-sim-td-lte-version-a-d-256gb-zs673ks" + }, + { + "slug": "rog-phone-5-5g-ultimate-dual-sim-td-lte-cn-version-c-g-512gb-zs673ks", + "name": "ROG Phone 5 5G Ultimate Dual SIM TD-LTE CN Version C G 512GB ZS673KS", + "url": "/v1/smartphones/rog-phone-5-5g-ultimate-dual-sim-td-lte-cn-version-c-g-512gb-zs673ks" + }, + { + "slug": "rog-phone-5-5g-ultimate-dual-sim-td-lte-na-version-b-e-512gb-zs673ks", + "name": "ROG Phone 5 5G Ultimate Dual SIM TD-LTE NA Version B E 512GB ZS673KS", + "url": "/v1/smartphones/rog-phone-5-5g-ultimate-dual-sim-td-lte-na-version-b-e-512gb-zs673ks" + }, + { + "slug": "rog-phone-5-5g-ultimate-global-dual-sim-td-lte-version-a-d-512gb-zs673ks", + "name": "ROG Phone 5 5G Ultimate Global Dual SIM TD-LTE Version A D 512GB ZS673KS", + "url": "/v1/smartphones/rog-phone-5-5g-ultimate-global-dual-sim-td-lte-version-a-d-512gb-zs673ks" + }, + { + "slug": "rog-phone-5s", + "name": "ROG Phone 5s", + "url": "/v1/smartphones/rog-phone-5s" + }, + { + "slug": "rog-phone-5s-5g-base-edition-dual-sim-td-lte-cn-version-c-256gb-zs676ks", + "name": "ROG Phone 5s 5G Base Edition Dual SIM TD-LTE CN Version C 256GB ZS676KS", + "url": "/v1/smartphones/rog-phone-5s-5g-base-edition-dual-sim-td-lte-cn-version-c-256gb-zs676ks" + }, + { + "slug": "rog-phone-5s-5g-base-edition-dual-sim-td-lte-na-version-b-512gb-zs676ks", + "name": "ROG Phone 5s 5G Base Edition Dual SIM TD-LTE NA Version B 512GB ZS676KS", + "url": "/v1/smartphones/rog-phone-5s-5g-base-edition-dual-sim-td-lte-na-version-b-512gb-zs676ks" + }, + { + "slug": "rog-phone-5s-5g-premium-edition-dual-sim-td-lte-cn-version-c-512gb-zs676ks", + "name": "ROG Phone 5s 5G Premium Edition Dual SIM TD-LTE CN Version C 512GB ZS676KS", + "url": "/v1/smartphones/rog-phone-5s-5g-premium-edition-dual-sim-td-lte-cn-version-c-512gb-zs676ks" + }, + { + "slug": "rog-phone-5s-5g-premium-edition-global-dual-sim-td-lte-version-a-d-512gb-zs676ks", + "name": "ROG Phone 5s 5G Premium Edition Global Dual SIM TD-LTE Version A D 512GB ZS676KS", + "url": "/v1/smartphones/rog-phone-5s-5g-premium-edition-global-dual-sim-td-lte-version-a-d-512gb-zs676ks" + }, + { + "slug": "rog-phone-5s-5g-standard-edition-dual-sim-td-lte-na-version-b-512gb-zs676ks", + "name": "ROG Phone 5s 5G Standard Edition Dual SIM TD-LTE NA Version B 512GB ZS676KS", + "url": "/v1/smartphones/rog-phone-5s-5g-standard-edition-dual-sim-td-lte-na-version-b-512gb-zs676ks" + }, + { + "slug": "rog-phone-5s-5g-standard-edition-global-dual-sim-td-lte-version-a-d-256gb-zs676ks", + "name": "ROG Phone 5s 5G Standard Edition Global Dual SIM TD-LTE Version A D 256GB ZS676KS", + "url": "/v1/smartphones/rog-phone-5s-5g-standard-edition-global-dual-sim-td-lte-version-a-d-256gb-zs676ks" + }, + { + "slug": "rog-phone-5s-5g-standard-edition-global-dual-sim-td-lte-version-a-d-512gb-zs676ks", + "name": "ROG Phone 5s 5G Standard Edition Global Dual SIM TD-LTE Version A D 512GB ZS676KS", + "url": "/v1/smartphones/rog-phone-5s-5g-standard-edition-global-dual-sim-td-lte-version-a-d-512gb-zs676ks" + }, + { + "slug": "rog-phone-5s-pro", + "name": "ROG Phone 5s Pro", + "url": "/v1/smartphones/rog-phone-5s-pro" + }, + { + "slug": "rog-phone-5s-pro-5g-dual-sim-td-lte-cn-version-c-512gb-zs676ks", + "name": "ROG Phone 5s Pro 5G Dual SIM TD-LTE CN Version C 512GB ZS676KS", + "url": "/v1/smartphones/rog-phone-5s-pro-5g-dual-sim-td-lte-cn-version-c-512gb-zs676ks" + }, + { + "slug": "rog-phone-5s-pro-5g-global-dual-sim-td-lte-version-a-d-512gb-zs676ks", + "name": "ROG Phone 5s Pro 5G Global Dual SIM TD-LTE Version A D 512GB ZS676KS", + "url": "/v1/smartphones/rog-phone-5s-pro-5g-global-dual-sim-td-lte-version-a-d-512gb-zs676ks" + }, + { + "slug": "rog-phone-6", + "name": "ROG Phone 6", + "url": "/v1/smartphones/rog-phone-6" + }, + { + "slug": "rog-phone-6-pro", + "name": "ROG Phone 6 Pro", + "url": "/v1/smartphones/rog-phone-6-pro" + }, + { + "slug": "rog-phone-6d", + "name": "ROG Phone 6D", + "url": "/v1/smartphones/rog-phone-6d" + }, + { + "slug": "rog-phone-6d-ultimate", + "name": "ROG Phone 6D Ultimate", + "url": "/v1/smartphones/rog-phone-6d-ultimate" + }, + { + "slug": "rog-phone-7", + "name": "ROG Phone 7", + "url": "/v1/smartphones/rog-phone-7" + }, + { + "slug": "rog-phone-7-pro", + "name": "ROG Phone 7 Pro", + "url": "/v1/smartphones/rog-phone-7-pro" + }, + { + "slug": "rog-phone-7-ultimate", + "name": "ROG Phone 7 Ultimate", + "url": "/v1/smartphones/rog-phone-7-ultimate" + }, + { + "slug": "rog-phone-dual-sim-td-lte-cn-version-b-zs600kl-128gb", + "name": "ROG Phone Dual SIM TD-LTE CN Version B ZS600KL 128GB", + "url": "/v1/smartphones/rog-phone-dual-sim-td-lte-cn-version-b-zs600kl-128gb" + }, + { + "slug": "rog-phone-global-dual-sim-td-lte-version-a-zs600kl-128gb", + "name": "ROG Phone Global Dual SIM TD-LTE Version A ZS600KL 128GB", + "url": "/v1/smartphones/rog-phone-global-dual-sim-td-lte-version-a-zs600kl-128gb" + }, + { + "slug": "rog-phone-global-dual-sim-td-lte-version-a-zs600kl-512gb", + "name": "ROG Phone Global Dual SIM TD-LTE Version A ZS600KL 512GB", + "url": "/v1/smartphones/rog-phone-global-dual-sim-td-lte-version-a-zs600kl-512gb" + }, + { + "slug": "rog-phone-ii", + "name": "ROG Phone II", + "url": "/v1/smartphones/rog-phone-ii" + }, + { + "slug": "rog-phone-ii-dual-sim-td-lte-cn-128gb-zs660kl", + "name": "ROG Phone II Dual SIM TD-LTE CN 128GB ZS660KL", + "url": "/v1/smartphones/rog-phone-ii-dual-sim-td-lte-cn-128gb-zs660kl" + }, + { + "slug": "rog-phone-ii-dual-sim-td-lte-cn-512gb-zs660kl", + "name": "ROG Phone II Dual SIM TD-LTE CN 512GB ZS660KL", + "url": "/v1/smartphones/rog-phone-ii-dual-sim-td-lte-cn-512gb-zs660kl" + }, + { + "slug": "rog-phone-ii-global-dual-sim-td-lte-512gb-zs660kl", + "name": "ROG Phone II Global Dual SIM TD-LTE 512GB ZS660KL", + "url": "/v1/smartphones/rog-phone-ii-global-dual-sim-td-lte-512gb-zs660kl" + }, + { + "slug": "rog-phone-ii-strix-edition", + "name": "ROG Phone II Strix Edition", + "url": "/v1/smartphones/rog-phone-ii-strix-edition" + }, + { + "slug": "rog-phone-ii-strix-edition-global-dual-sim-td-lte-128gb-zs660kl", + "name": "ROG Phone II Strix Edition Global Dual SIM TD-LTE 128GB ZS660KL", + "url": "/v1/smartphones/rog-phone-ii-strix-edition-global-dual-sim-td-lte-128gb-zs660kl" + }, + { + "slug": "rog-phone-ii-ultimate-edition", + "name": "ROG Phone II Ultimate Edition", + "url": "/v1/smartphones/rog-phone-ii-ultimate-edition" + }, + { + "slug": "rog-phone-ii-ultimate-edition-global-dual-sim-td-lte-1tb-zs660kl", + "name": "ROG Phone II Ultimate Edition Global Dual SIM TD-LTE 1TB ZS660KL", + "url": "/v1/smartphones/rog-phone-ii-ultimate-edition-global-dual-sim-td-lte-1tb-zs660kl" + }, + { + "slug": "rs501-k-series-k20-lra-2017-lte", + "name": "RS501 K Series K20 LRA 2017 LTE", + "url": "/v1/smartphones/rs501-k-series-k20-lra-2017-lte" + }, + { + "slug": "rx17-neo-global-dual-sim-td-lte-cph1893-r17-neo", + "name": "RX17 Neo Global Dual SIM TD-LTE CPH1893 / R17 Neo", + "url": "/v1/smartphones/rx17-neo-global-dual-sim-td-lte-cph1893-r17-neo" + }, + { + "slug": "rx17-pro-standard-edition-global-dual-sim-td-lte-version-1-cph1877-r17-pro", + "name": "RX17 Pro Standard Edition Global Dual SIM TD-LTE Version 1 CPH1877 / R17 Pro", + "url": "/v1/smartphones/rx17-pro-standard-edition-global-dual-sim-td-lte-version-1-cph1877-r17-pro" + }, + { + "slug": "radiant-max-lte-a-us-u705aa", + "name": "Radiant Max LTE-A US U705AA", + "url": "/v1/smartphones/radiant-max-lte-a-us-u705aa" + }, + { + "slug": "raku-raku-easy-smartphone-td-lte-jp-f-52b", + "name": "Raku-Raku Easy Smartphone TD-LTE JP F-52B", + "url": "/v1/smartphones/raku-raku-easy-smartphone-td-lte-jp-f-52b" + }, + { + "slug": "raku-raku-me-f-01l-lte", + "name": "Raku-Raku me F-01L LTE", + "url": "/v1/smartphones/raku-raku-me-f-01l-lte" + }, + { + "slug": "rakuten-big-5g-td-lte-jp", + "name": "Rakuten BIG 5G TD-LTE JP", + "url": "/v1/smartphones/rakuten-big-5g-td-lte-jp" + }, + { + "slug": "rakuten-big-s-5g-uw-td-lte-jp-3917jr", + "name": "Rakuten BIG s 5G UW TD-LTE JP 3917JR", + "url": "/v1/smartphones/rakuten-big-s-5g-uw-td-lte-jp-3917jr" + }, + { + "slug": "rakuten-hand-5g-dual-sim-td-lte-jp-p780", + "name": "Rakuten Hand 5G Dual SIM TD-LTE JP P780", + "url": "/v1/smartphones/rakuten-hand-5g-dual-sim-td-lte-jp-p780" + }, + { + "slug": "rakuten-mini-final-edition-td-lte-jp-c330", + "name": "Rakuten Mini Final Edition TD-LTE JP C330", + "url": "/v1/smartphones/rakuten-mini-final-edition-td-lte-jp-c330" + }, + { + "slug": "rakuten-mini-initial-edition-td-lte-jp-c330", + "name": "Rakuten Mini Initial Edition TD-LTE JP C330", + "url": "/v1/smartphones/rakuten-mini-initial-edition-td-lte-jp-c330" + }, + { + "slug": "razr", + "name": "Razr", + "url": "/v1/smartphones/razr" + }, + { + "slug": "razr-50", + "name": "Razr 50", + "url": "/v1/smartphones/razr-50" + }, + { + "slug": "razr-50-ultra", + "name": "Razr 50 Ultra", + "url": "/v1/smartphones/razr-50-ultra" + }, + { + "slug": "realme-10", + "name": "Realme 10", + "url": "/v1/smartphones/realme-10" + }, + { + "slug": "realme-10-pro", + "name": "Realme 10 Pro", + "url": "/v1/smartphones/realme-10-pro" + }, + { + "slug": "realme-10s", + "name": "Realme 10s", + "url": "/v1/smartphones/realme-10s" + }, + { + "slug": "realme-2-dual-sim-td-lte-in-id-32gb", + "name": "Realme 2 Dual SIM TD-LTE IN ID 32GB", + "url": "/v1/smartphones/realme-2-dual-sim-td-lte-in-id-32gb" + }, + { + "slug": "realme-2-dual-sim-td-lte-in-id-64gb", + "name": "Realme 2 Dual SIM TD-LTE IN ID 64GB", + "url": "/v1/smartphones/realme-2-dual-sim-td-lte-in-id-64gb" + }, + { + "slug": "realme-2-pro-global-dual-sim-td-lte-128gb-rmx1807", + "name": "Realme 2 Pro Global Dual SIM TD-LTE 128GB RMX1807", + "url": "/v1/smartphones/realme-2-pro-global-dual-sim-td-lte-128gb-rmx1807" + }, + { + "slug": "realme-2-pro-premium-edition-dual-sim-td-lte-in-id-64gb-rmx1801", + "name": "Realme 2 Pro Premium Edition Dual SIM TD-LTE IN ID 64GB RMX1801", + "url": "/v1/smartphones/realme-2-pro-premium-edition-dual-sim-td-lte-in-id-64gb-rmx1801" + }, + { + "slug": "realme-2-pro-standard-edition-dual-sim-td-lte-in-id-64gb-rmx1801", + "name": "Realme 2 Pro Standard Edition Dual SIM TD-LTE IN ID 64GB RMX1801", + "url": "/v1/smartphones/realme-2-pro-standard-edition-dual-sim-td-lte-in-id-64gb-rmx1801" + }, + { + "slug": "realme-3", + "name": "Realme 3", + "url": "/v1/smartphones/realme-3" + }, + { + "slug": "realme-3-global-dual-sim-td-lte-32gb-rmx1821", + "name": "Realme 3 Global Dual SIM TD-LTE 32GB RMX1821", + "url": "/v1/smartphones/realme-3-global-dual-sim-td-lte-32gb-rmx1821" + }, + { + "slug": "realme-3-global-dual-sim-td-lte-64gb-rmx1821", + "name": "Realme 3 Global Dual SIM TD-LTE 64GB RMX1821", + "url": "/v1/smartphones/realme-3-global-dual-sim-td-lte-64gb-rmx1821" + }, + { + "slug": "realme-3-premium-edition", + "name": "Realme 3 Premium Edition", + "url": "/v1/smartphones/realme-3-premium-edition" + }, + { + "slug": "realme-3-premium-edition-dual-sim-td-lte-in-32gb-rmx1825", + "name": "Realme 3 Premium Edition Dual SIM TD-LTE IN 32GB RMX1825", + "url": "/v1/smartphones/realme-3-premium-edition-dual-sim-td-lte-in-32gb-rmx1825" + }, + { + "slug": "realme-3-premium-edition-dual-sim-td-lte-in-64gb-rmx1825", + "name": "Realme 3 Premium Edition Dual SIM TD-LTE IN 64GB RMX1825", + "url": "/v1/smartphones/realme-3-premium-edition-dual-sim-td-lte-in-64gb-rmx1825" + }, + { + "slug": "realme-3-pro-global-dual-sim-td-lte-128gb-rmx1853", + "name": "Realme 3 Pro Global Dual SIM TD-LTE 128GB RMX1853", + "url": "/v1/smartphones/realme-3-pro-global-dual-sim-td-lte-128gb-rmx1853" + }, + { + "slug": "realme-3-pro-global-dual-sim-td-lte-64gb-rmx1853", + "name": "Realme 3 Pro Global Dual SIM TD-LTE 64GB RMX1853", + "url": "/v1/smartphones/realme-3-pro-global-dual-sim-td-lte-64gb-rmx1853" + }, + { + "slug": "realme-3-pro-premium-edition-dual-sim-td-lte-apac-128gb-rmx1851", + "name": "Realme 3 Pro Premium Edition Dual SIM TD-LTE APAC 128GB RMX1851", + "url": "/v1/smartphones/realme-3-pro-premium-edition-dual-sim-td-lte-apac-128gb-rmx1851" + }, + { + "slug": "realme-3-pro-premium-edition-dual-sim-td-lte-apac-64gb-rmx1851", + "name": "Realme 3 Pro Premium Edition Dual SIM TD-LTE APAC 64GB RMX1851", + "url": "/v1/smartphones/realme-3-pro-premium-edition-dual-sim-td-lte-apac-64gb-rmx1851" + }, + { + "slug": "realme-3-pro-standard-edition-dual-sim-td-lte-apac-64gb-rmx1851", + "name": "Realme 3 Pro Standard Edition Dual SIM TD-LTE APAC 64GB RMX1851", + "url": "/v1/smartphones/realme-3-pro-standard-edition-dual-sim-td-lte-apac-64gb-rmx1851" + }, + { + "slug": "realme-3-standard-edition", + "name": "Realme 3 Standard Edition", + "url": "/v1/smartphones/realme-3-standard-edition" + }, + { + "slug": "realme-3-standard-edition-dual-sim-td-lte-in-32gb-rmx1825", + "name": "Realme 3 Standard Edition Dual SIM TD-LTE IN 32GB RMX1825", + "url": "/v1/smartphones/realme-3-standard-edition-dual-sim-td-lte-in-32gb-rmx1825" + }, + { + "slug": "realme-3i", + "name": "Realme 3i", + "url": "/v1/smartphones/realme-3i" + }, + { + "slug": "realme-3i-dual-sim-td-lte-in-32gb-rmx1827", + "name": "Realme 3i Dual SIM TD-LTE IN 32GB RMX1827", + "url": "/v1/smartphones/realme-3i-dual-sim-td-lte-in-32gb-rmx1827" + }, + { + "slug": "realme-3i-dual-sim-td-lte-in-64gb-rmx1827", + "name": "Realme 3i Dual SIM TD-LTE IN 64GB RMX1827", + "url": "/v1/smartphones/realme-3i-dual-sim-td-lte-in-64gb-rmx1827" + }, + { + "slug": "realme-5-premium-edition-dual-sim-td-lte-v1-in-id-ph-pk-th-vn-128gb-rmx1911", + "name": "Realme 5 Premium Edition Dual SIM TD-LTE V1 IN ID PH PK TH VN 128GB RMX1911", + "url": "/v1/smartphones/realme-5-premium-edition-dual-sim-td-lte-v1-in-id-ph-pk-th-vn-128gb-rmx1911" + }, + { + "slug": "realme-5-premium-edition-dual-sim-td-lte-v1-in-th-64gb-rmx1911", + "name": "Realme 5 Premium Edition Dual SIM TD-LTE V1 IN TH 64GB RMX1911", + "url": "/v1/smartphones/realme-5-premium-edition-dual-sim-td-lte-v1-in-th-64gb-rmx1911" + }, + { + "slug": "realme-5-premium-edition-dual-sim-td-lte-v2-eg-v2-64gb-rmx1911", + "name": "Realme 5 Premium Edition Dual SIM TD-LTE V2 EG V2 64GB RMX1911", + "url": "/v1/smartphones/realme-5-premium-edition-dual-sim-td-lte-v2-eg-v2-64gb-rmx1911" + }, + { + "slug": "realme-5-premium-edition-dual-sim-td-lte-v2-eu-au-sg-my-eg-128gb-rmx1911", + "name": "Realme 5 Premium Edition Dual SIM TD-LTE V2 EU AU SG MY EG 128GB RMX1911", + "url": "/v1/smartphones/realme-5-premium-edition-dual-sim-td-lte-v2-eu-au-sg-my-eg-128gb-rmx1911" + }, + { + "slug": "realme-5-pro-premium-edition-dual-sim-td-lte-in-64gb-rmx1971", + "name": "Realme 5 Pro Premium Edition Dual SIM TD-LTE IN 64GB RMX1971", + "url": "/v1/smartphones/realme-5-pro-premium-edition-dual-sim-td-lte-in-64gb-rmx1971" + }, + { + "slug": "realme-5-pro-premium-edition-dual-sim-td-lte-in-th-128gb-rmx1971", + "name": "Realme 5 Pro Premium Edition Dual SIM TD-LTE IN TH 128GB RMX1971", + "url": "/v1/smartphones/realme-5-pro-premium-edition-dual-sim-td-lte-in-th-128gb-rmx1971" + }, + { + "slug": "realme-5-pro-premium-edition-global-dual-sim-td-lte-128gb-rmx1971", + "name": "Realme 5 Pro Premium Edition Global Dual SIM TD-LTE 128GB RMX1971", + "url": "/v1/smartphones/realme-5-pro-premium-edition-global-dual-sim-td-lte-128gb-rmx1971" + }, + { + "slug": "realme-5-pro-standard-edition-dual-sim-td-lte-in-64gb-rmx1971", + "name": "Realme 5 Pro Standard Edition Dual SIM TD-LTE IN 64GB RMX1971", + "url": "/v1/smartphones/realme-5-pro-standard-edition-dual-sim-td-lte-in-64gb-rmx1971" + }, + { + "slug": "realme-5-pro-standard-edition-dual-sim-td-lte-th-128gb-rmx1971", + "name": "Realme 5 Pro Standard Edition Dual SIM TD-LTE TH 128GB RMX1971", + "url": "/v1/smartphones/realme-5-pro-standard-edition-dual-sim-td-lte-th-128gb-rmx1971" + }, + { + "slug": "realme-5-pro-standard-edition-global-dual-sim-td-lte-128gb-rmx1971", + "name": "Realme 5 Pro Standard Edition Global Dual SIM TD-LTE 128GB RMX1971", + "url": "/v1/smartphones/realme-5-pro-standard-edition-global-dual-sim-td-lte-128gb-rmx1971" + }, + { + "slug": "realme-5-standard-edition-dual-sim-td-lte-v1-id-ph-64gb-rmx1911", + "name": "Realme 5 Standard Edition Dual SIM TD-LTE V1 ID PH 64GB RMX1911", + "url": "/v1/smartphones/realme-5-standard-edition-dual-sim-td-lte-v1-id-ph-64gb-rmx1911" + }, + { + "slug": "realme-5-standard-edition-dual-sim-td-lte-v1-in-id-ph-th-vn-32gb-rmx1911", + "name": "Realme 5 Standard Edition Dual SIM TD-LTE V1 IN ID PH TH VN 32GB RMX1911", + "url": "/v1/smartphones/realme-5-standard-edition-dual-sim-td-lte-v1-in-id-ph-th-vn-32gb-rmx1911" + }, + { + "slug": "realme-5-standard-edition-dual-sim-td-lte-v2-my-32gb-rmx1911", + "name": "Realme 5 Standard Edition Dual SIM TD-LTE V2 MY 32GB RMX1911", + "url": "/v1/smartphones/realme-5-standard-edition-dual-sim-td-lte-v2-my-32gb-rmx1911" + }, + { + "slug": "realme-5-standard-edition-dual-sim-td-lte-v2-ru-64gb-rmx1911", + "name": "Realme 5 Standard Edition Dual SIM TD-LTE V2 RU 64GB RMX1911", + "url": "/v1/smartphones/realme-5-standard-edition-dual-sim-td-lte-v2-ru-64gb-rmx1911" + }, + { + "slug": "realme-5-standard-edition-dual-sim-td-lte-v2-sg-my-64gb-rmx1911", + "name": "Realme 5 Standard Edition Dual SIM TD-LTE V2 SG MY 64GB RMX1911", + "url": "/v1/smartphones/realme-5-standard-edition-dual-sim-td-lte-v2-sg-my-64gb-rmx1911" + }, + { + "slug": "realme-5i-global-dual-sim-td-lte-v3-64gb-rmx2030", + "name": "Realme 5i Global Dual SIM TD-LTE V3 64GB RMX2030", + "url": "/v1/smartphones/realme-5i-global-dual-sim-td-lte-v3-64gb-rmx2030" + }, + { + "slug": "realme-5i-premium-edition-dual-sim-td-lte-v1-id-128gb-rmx2030", + "name": "Realme 5i Premium Edition Dual SIM TD-LTE V1 ID 128GB RMX2030", + "url": "/v1/smartphones/realme-5i-premium-edition-dual-sim-td-lte-v1-id-128gb-rmx2030" + }, + { + "slug": "realme-5i-premium-edition-dual-sim-td-lte-v1-in-id-vn-th-sg-tr-64gb-rmx2030", + "name": "Realme 5i Premium Edition Dual SIM TD-LTE V1 IN ID VN TH SG TR 64GB RMX2030", + "url": "/v1/smartphones/realme-5i-premium-edition-dual-sim-td-lte-v1-in-id-vn-th-sg-tr-64gb-rmx2030" + }, + { + "slug": "realme-5i-premium-edition-dual-sim-td-lte-v2-my-pk-64gb-rmx2030", + "name": "Realme 5i Premium Edition Dual SIM TD-LTE V2 MY PK 64GB RMX2030", + "url": "/v1/smartphones/realme-5i-premium-edition-dual-sim-td-lte-v2-my-pk-64gb-rmx2030" + }, + { + "slug": "realme-5i-standard-edition-dual-sim-td-lte-v1-id-vn-th-tr-32gb-rmx2030", + "name": "Realme 5i Standard Edition Dual SIM TD-LTE V1 ID VN TH TR 32GB RMX2030", + "url": "/v1/smartphones/realme-5i-standard-edition-dual-sim-td-lte-v1-id-vn-th-tr-32gb-rmx2030" + }, + { + "slug": "realme-5i-standard-edition-dual-sim-td-lte-v2-ph-64gb-rmx2030", + "name": "Realme 5i Standard Edition Dual SIM TD-LTE V2 PH 64GB RMX2030", + "url": "/v1/smartphones/realme-5i-standard-edition-dual-sim-td-lte-v2-ph-64gb-rmx2030" + }, + { + "slug": "realme-5s-dual-sim-td-lte-v1-in-id-th-128gb-rmx1925", + "name": "Realme 5s Dual SIM TD-LTE V1 IN ID TH 128GB RMX1925", + "url": "/v1/smartphones/realme-5s-dual-sim-td-lte-v1-in-id-th-128gb-rmx1925" + }, + { + "slug": "realme-5s-dual-sim-td-lte-v1-in-th-64gb-rmx1925", + "name": "Realme 5s Dual SIM TD-LTE V1 IN TH 64GB RMX1925", + "url": "/v1/smartphones/realme-5s-dual-sim-td-lte-v1-in-th-64gb-rmx1925" + }, + { + "slug": "realme-6-premium-edition", + "name": "Realme 6 Premium Edition", + "url": "/v1/smartphones/realme-6-premium-edition" + }, + { + "slug": "realme-6-premium-edition-dual-sim-td-lte-v1-in-id-sg-th-tr-128gb-rmx2001", + "name": "Realme 6 Premium Edition Dual SIM TD-LTE V1 IN ID SG TH TR 128GB RMX2001", + "url": "/v1/smartphones/realme-6-premium-edition-dual-sim-td-lte-v1-in-id-sg-th-tr-128gb-rmx2001" + }, + { + "slug": "realme-6-premium-edition-dual-sim-td-lte-v1-it-pl-cz-128gb-rmx2001", + "name": "Realme 6 Premium Edition Dual SIM TD-LTE V1 IT PL CZ 128GB RMX2001", + "url": "/v1/smartphones/realme-6-premium-edition-dual-sim-td-lte-v1-it-pl-cz-128gb-rmx2001" + }, + { + "slug": "realme-6-premium-edition-dual-sim-td-lte-v2-my-ph-sg-128gb-rmx2001", + "name": "Realme 6 Premium Edition Dual SIM TD-LTE V2 MY PH SG 128GB RMX2001", + "url": "/v1/smartphones/realme-6-premium-edition-dual-sim-td-lte-v2-my-ph-sg-128gb-rmx2001" + }, + { + "slug": "realme-6-premium-edition-dual-sim-td-lte-v4-ru-128gb-rmx2001", + "name": "Realme 6 Premium Edition Dual SIM TD-LTE V4 RU 128GB RMX2001", + "url": "/v1/smartphones/realme-6-premium-edition-dual-sim-td-lte-v4-ru-128gb-rmx2001" + }, + { + "slug": "realme-6-premium-edition-global-dual-sim-td-lte-v3-128gb-rmx2001", + "name": "Realme 6 Premium Edition Global Dual SIM TD-LTE V3 128GB RMX2001", + "url": "/v1/smartphones/realme-6-premium-edition-global-dual-sim-td-lte-v3-128gb-rmx2001" + }, + { + "slug": "realme-6-pro-premium-edition", + "name": "Realme 6 Pro Premium Edition", + "url": "/v1/smartphones/realme-6-pro-premium-edition" + }, + { + "slug": "realme-6-pro-standard-edition", + "name": "Realme 6 Pro Standard Edition", + "url": "/v1/smartphones/realme-6-pro-standard-edition" + }, + { + "slug": "realme-6-standard-edition", + "name": "Realme 6 Standard Edition", + "url": "/v1/smartphones/realme-6-standard-edition" + }, + { + "slug": "realme-6-standard-edition-dual-sim-td-lte-v1-in-64gb-rmx2001", + "name": "Realme 6 Standard Edition Dual SIM TD-LTE V1 IN 64GB RMX2001", + "url": "/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v1-in-64gb-rmx2001" + }, + { + "slug": "realme-6-standard-edition-dual-sim-td-lte-v1-in-id-sg-th-tr-128gb-rmx2001", + "name": "Realme 6 Standard Edition Dual SIM TD-LTE V1 IN ID SG TH TR 128GB RMX2001", + "url": "/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v1-in-id-sg-th-tr-128gb-rmx2001" + }, + { + "slug": "realme-6-standard-edition-dual-sim-td-lte-v1-it-pl-cz-128gb-rmx2001", + "name": "Realme 6 Standard Edition Dual SIM TD-LTE V1 IT PL CZ 128GB RMX2001", + "url": "/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v1-it-pl-cz-128gb-rmx2001" + }, + { + "slug": "realme-6-standard-edition-dual-sim-td-lte-v1-it-pl-cz-64gb-rmx2001", + "name": "Realme 6 Standard Edition Dual SIM TD-LTE V1 IT PL CZ 64GB RMX2001", + "url": "/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v1-it-pl-cz-64gb-rmx2001" + }, + { + "slug": "realme-6-standard-edition-dual-sim-td-lte-v2-my-ph-sg-128gb-rmx2001", + "name": "Realme 6 Standard Edition Dual SIM TD-LTE V2 MY PH SG 128GB RMX2001", + "url": "/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v2-my-ph-sg-128gb-rmx2001" + }, + { + "slug": "realme-6-standard-edition-dual-sim-td-lte-v4-ru-128gb-rmx2001", + "name": "Realme 6 Standard Edition Dual SIM TD-LTE V4 RU 128GB RMX2001", + "url": "/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v4-ru-128gb-rmx2001" + }, + { + "slug": "realme-6-standard-edition-global-dual-sim-td-lte-v3-128gb-rmx2001", + "name": "Realme 6 Standard Edition Global Dual SIM TD-LTE V3 128GB RMX2001", + "url": "/v1/smartphones/realme-6-standard-edition-global-dual-sim-td-lte-v3-128gb-rmx2001" + }, + { + "slug": "realme-6-standard-edition-global-dual-sim-td-lte-v3-64gb-rmx2001", + "name": "Realme 6 Standard Edition Global Dual SIM TD-LTE V3 64GB RMX2001", + "url": "/v1/smartphones/realme-6-standard-edition-global-dual-sim-td-lte-v3-64gb-rmx2001" + }, + { + "slug": "realme-6i", + "name": "Realme 6i", + "url": "/v1/smartphones/realme-6i" + }, + { + "slug": "realme-6i-dual-sim-td-lte-v1-pl-128gb-rmx2040", + "name": "Realme 6i Dual SIM TD-LTE V1 PL 128GB RMX2040", + "url": "/v1/smartphones/realme-6i-dual-sim-td-lte-v1-pl-128gb-rmx2040" + }, + { + "slug": "realme-6i-dual-sim-td-lte-v1-th-pk-tr-128gb-rmx2040", + "name": "Realme 6i Dual SIM TD-LTE V1 TH PK TR 128GB RMX2040", + "url": "/v1/smartphones/realme-6i-dual-sim-td-lte-v1-th-pk-tr-128gb-rmx2040" + }, + { + "slug": "realme-6i-dual-sim-td-lte-v1-th-pk-tr-64gb-rmx2040", + "name": "Realme 6i Dual SIM TD-LTE V1 TH PK TR 64GB RMX2040", + "url": "/v1/smartphones/realme-6i-dual-sim-td-lte-v1-th-pk-tr-64gb-rmx2040" + }, + { + "slug": "realme-6i-dual-sim-td-lte-v2-ph-my-sg-128gb-rmx2040", + "name": "Realme 6i Dual SIM TD-LTE V2 PH MY SG 128GB RMX2040", + "url": "/v1/smartphones/realme-6i-dual-sim-td-lte-v2-ph-my-sg-128gb-rmx2040" + }, + { + "slug": "realme-6i-dual-sim-td-lte-v2-ph-my-sg-64gb-rmx2040", + "name": "Realme 6i Dual SIM TD-LTE V2 PH MY SG 64GB RMX2040", + "url": "/v1/smartphones/realme-6i-dual-sim-td-lte-v2-ph-my-sg-64gb-rmx2040" + }, + { + "slug": "realme-6i-dual-sim-td-lte-v2-ru-128gb-rmx2040", + "name": "Realme 6i Dual SIM TD-LTE V2 RU 128GB RMX2040", + "url": "/v1/smartphones/realme-6i-dual-sim-td-lte-v2-ru-128gb-rmx2040" + }, + { + "slug": "realme-6i-global-dual-sim-td-lte-v3-128gb-rmx2040", + "name": "Realme 6i Global Dual SIM TD-LTE V3 128GB RMX2040", + "url": "/v1/smartphones/realme-6i-global-dual-sim-td-lte-v3-128gb-rmx2040" + }, + { + "slug": "realme-6s", + "name": "Realme 6s", + "url": "/v1/smartphones/realme-6s" + }, + { + "slug": "realme-6s-global-dual-sim-td-lte-v3-64gb-rmx2002", + "name": "Realme 6s Global Dual SIM TD-LTE V3 64GB RMX2002", + "url": "/v1/smartphones/realme-6s-global-dual-sim-td-lte-v3-64gb-rmx2002" + }, + { + "slug": "realme-7", + "name": "Realme 7", + "url": "/v1/smartphones/realme-7" + }, + { + "slug": "realme-7-5g-global-dual-sim-td-lte-128gb-rmx2111", + "name": "Realme 7 5G Global Dual SIM TD-LTE 128GB RMX2111", + "url": "/v1/smartphones/realme-7-5g-global-dual-sim-td-lte-128gb-rmx2111" + }, + { + "slug": "realme-7-dual-sim-td-lte-v1-in-64gb-rmx2151", + "name": "Realme 7 Dual SIM TD-LTE V1 IN 64GB RMX2151", + "url": "/v1/smartphones/realme-7-dual-sim-td-lte-v1-in-64gb-rmx2151" + }, + { + "slug": "realme-7-dual-sim-td-lte-v1-in-vn-ph-tr-128gb-rmx2151", + "name": "Realme 7 Dual SIM TD-LTE V1 IN VN PH TR 128GB RMX2151", + "url": "/v1/smartphones/realme-7-dual-sim-td-lte-v1-in-vn-ph-tr-128gb-rmx2151" + }, + { + "slug": "realme-7-dual-sim-td-lte-v2-my-128gb-rmx2151", + "name": "Realme 7 Dual SIM TD-LTE V2 MY 128GB RMX2151", + "url": "/v1/smartphones/realme-7-dual-sim-td-lte-v2-my-128gb-rmx2151" + }, + { + "slug": "realme-7-nfc", + "name": "Realme 7 NFC", + "url": "/v1/smartphones/realme-7-nfc" + }, + { + "slug": "realme-7-nfc-dual-sim-td-lte-v1-id-128gb-rmx2155", + "name": "Realme 7 NFC Dual SIM TD-LTE V1 ID 128GB RMX2155", + "url": "/v1/smartphones/realme-7-nfc-dual-sim-td-lte-v1-id-128gb-rmx2155" + }, + { + "slug": "realme-7-nfc-dual-sim-td-lte-v2-latam-128gb-rmx2155", + "name": "Realme 7 NFC Dual SIM TD-LTE V2 LATAM 128GB RMX2155", + "url": "/v1/smartphones/realme-7-nfc-dual-sim-td-lte-v2-latam-128gb-rmx2155" + }, + { + "slug": "realme-7-nfc-premium-edition", + "name": "Realme 7 NFC Premium Edition", + "url": "/v1/smartphones/realme-7-nfc-premium-edition" + }, + { + "slug": "realme-7-nfc-premium-edition-dual-sim-td-lte-v3-eu-64gb-rmx2155", + "name": "Realme 7 NFC Premium Edition Dual SIM TD-LTE V3 EU 64GB RMX2155", + "url": "/v1/smartphones/realme-7-nfc-premium-edition-dual-sim-td-lte-v3-eu-64gb-rmx2155" + }, + { + "slug": "realme-7-nfc-standard-edition", + "name": "Realme 7 NFC Standard Edition", + "url": "/v1/smartphones/realme-7-nfc-standard-edition" + }, + { + "slug": "realme-7-nfc-standard-edition-dual-sim-td-lte-v3-eu-64gb-rmx2155", + "name": "Realme 7 NFC Standard Edition Dual SIM TD-LTE V3 EU 64GB RMX2155", + "url": "/v1/smartphones/realme-7-nfc-standard-edition-dual-sim-td-lte-v3-eu-64gb-rmx2155" + }, + { + "slug": "realme-7-pro-nfc-premium-edition", + "name": "Realme 7 Pro NFC Premium Edition", + "url": "/v1/smartphones/realme-7-pro-nfc-premium-edition" + }, + { + "slug": "realme-7-pro-premium-edition", + "name": "Realme 7 Pro Premium Edition", + "url": "/v1/smartphones/realme-7-pro-premium-edition" + }, + { + "slug": "realme-7-pro-standard-edition", + "name": "Realme 7 Pro Standard Edition", + "url": "/v1/smartphones/realme-7-pro-standard-edition" + }, + { + "slug": "realme-7i-dual-sim-td-lte-v1-id-128gb-rmx2103", + "name": "Realme 7i Dual SIM TD-LTE V1 ID 128GB RMX2103", + "url": "/v1/smartphones/realme-7i-dual-sim-td-lte-v1-id-128gb-rmx2103" + }, + { + "slug": "realme-7i-dual-sim-td-lte-v1-in-128gb-rmx2103", + "name": "Realme 7i Dual SIM TD-LTE V1 IN 128GB RMX2103", + "url": "/v1/smartphones/realme-7i-dual-sim-td-lte-v1-in-128gb-rmx2103" + }, + { + "slug": "realme-7i-dual-sim-td-lte-v1-in-64gb-rmx2103", + "name": "Realme 7i Dual SIM TD-LTE V1 IN 64GB RMX2103", + "url": "/v1/smartphones/realme-7i-dual-sim-td-lte-v1-in-64gb-rmx2103" + }, + { + "slug": "realme-8", + "name": "Realme 8", + "url": "/v1/smartphones/realme-8" + }, + { + "slug": "realme-8-5g-2021-dual-sim-td-lte-v1-apac-128gb-rmx3241", + "name": "Realme 8 5G 2021 Dual SIM TD-LTE V1 APAC 128GB RMX3241", + "url": "/v1/smartphones/realme-8-5g-2021-dual-sim-td-lte-v1-apac-128gb-rmx3241" + }, + { + "slug": "realme-8-5g-2021-dual-sim-td-lte-v1-apac-64gb-rmx3241", + "name": "Realme 8 5G 2021 Dual SIM TD-LTE V1 APAC 64GB RMX3241", + "url": "/v1/smartphones/realme-8-5g-2021-dual-sim-td-lte-v1-apac-64gb-rmx3241" + }, + { + "slug": "realme-8-5g-2021-global-dual-sim-td-lte-v2-128gb-rmx3241", + "name": "Realme 8 5G 2021 Global Dual SIM TD-LTE V2 128GB RMX3241", + "url": "/v1/smartphones/realme-8-5g-2021-global-dual-sim-td-lte-v2-128gb-rmx3241" + }, + { + "slug": "realme-8-5g-2021-global-dual-sim-td-lte-v2-64gb-rmx3241", + "name": "Realme 8 5G 2021 Global Dual SIM TD-LTE V2 64GB RMX3241", + "url": "/v1/smartphones/realme-8-5g-2021-global-dual-sim-td-lte-v2-64gb-rmx3241" + }, + { + "slug": "realme-8i-2021-nfc-standard-edition", + "name": "Realme 8i 2021 NFC Standard Edition", + "url": "/v1/smartphones/realme-8i-2021-nfc-standard-edition" + }, + { + "slug": "realme-8i-2021-premium-edition", + "name": "Realme 8i 2021 Premium Edition", + "url": "/v1/smartphones/realme-8i-2021-premium-edition" + }, + { + "slug": "realme-8i-2021-standard-edition", + "name": "Realme 8i 2021 Standard Edition", + "url": "/v1/smartphones/realme-8i-2021-standard-edition" + }, + { + "slug": "realme-8s", + "name": "Realme 8s", + "url": "/v1/smartphones/realme-8s" + }, + { + "slug": "realme-8s-5g-2021-premium-edition-dual-sim-td-lte-in-128gb-rmx3381", + "name": "Realme 8s 5G 2021 Premium Edition Dual SIM TD-LTE IN 128GB RMX3381", + "url": "/v1/smartphones/realme-8s-5g-2021-premium-edition-dual-sim-td-lte-in-128gb-rmx3381" + }, + { + "slug": "realme-8s-5g-2021-standard-edition-dual-sim-td-lte-in-128gb-rmx3381", + "name": "Realme 8s 5G 2021 Standard Edition Dual SIM TD-LTE IN 128GB RMX3381", + "url": "/v1/smartphones/realme-8s-5g-2021-standard-edition-dual-sim-td-lte-in-128gb-rmx3381" + }, + { + "slug": "realme-9", + "name": "Realme 9", + "url": "/v1/smartphones/realme-9" + }, + { + "slug": "realme-9-pro", + "name": "Realme 9 Pro", + "url": "/v1/smartphones/realme-9-pro" + }, + { + "slug": "realme-9i", + "name": "Realme 9i", + "url": "/v1/smartphones/realme-9i" + }, + { + "slug": "realme-c1-2019-premium-edition-dual-sim-td-lte-in-32gb-rmx1811", + "name": "Realme C1 2019 Premium Edition Dual SIM TD-LTE IN 32GB RMX1811", + "url": "/v1/smartphones/realme-c1-2019-premium-edition-dual-sim-td-lte-in-32gb-rmx1811" + }, + { + "slug": "realme-c1-2019-standard-edition-dual-sim-td-lte-in-32gb-rmx1811", + "name": "Realme C1 2019 Standard Edition Dual SIM TD-LTE IN 32GB RMX1811", + "url": "/v1/smartphones/realme-c1-2019-standard-edition-dual-sim-td-lte-in-32gb-rmx1811" + }, + { + "slug": "realme-c1-dual-sim-td-lte-in-id-16gb-rmx1811", + "name": "Realme C1 Dual SIM TD-LTE IN ID 16GB RMX1811", + "url": "/v1/smartphones/realme-c1-dual-sim-td-lte-in-id-16gb-rmx1811" + }, + { + "slug": "realme-c11-2020", + "name": "Realme C11 2020", + "url": "/v1/smartphones/realme-c11-2020" + }, + { + "slug": "realme-c11-2020-dual-sim-td-lte-v2-my-32gb-rmx2185", + "name": "Realme C11 2020 Dual SIM TD-LTE V2 MY 32GB RMX2185", + "url": "/v1/smartphones/realme-c11-2020-dual-sim-td-lte-v2-my-32gb-rmx2185" + }, + { + "slug": "realme-c11-2020-premium-edition", + "name": "Realme C11 2020 Premium Edition", + "url": "/v1/smartphones/realme-c11-2020-premium-edition" + }, + { + "slug": "realme-c11-2020-premium-edition-dual-sim-td-lte-v1-id-32gb-rmx2185", + "name": "Realme C11 2020 Premium Edition Dual SIM TD-LTE V1 ID 32GB RMX2185", + "url": "/v1/smartphones/realme-c11-2020-premium-edition-dual-sim-td-lte-v1-id-32gb-rmx2185" + }, + { + "slug": "realme-c11-2020-standard-edition", + "name": "Realme C11 2020 Standard Edition", + "url": "/v1/smartphones/realme-c11-2020-standard-edition" + }, + { + "slug": "realme-c11-2020-standard-edition-dual-sim-td-lte-v1-id-32gb-rmx2185", + "name": "Realme C11 2020 Standard Edition Dual SIM TD-LTE V1 ID 32GB RMX2185", + "url": "/v1/smartphones/realme-c11-2020-standard-edition-dual-sim-td-lte-v1-id-32gb-rmx2185" + }, + { + "slug": "realme-c12-2020", + "name": "Realme C12 2020", + "url": "/v1/smartphones/realme-c12-2020" + }, + { + "slug": "realme-c12-2020-dual-sim-td-lte-v1-in-id-32gb-rmx2189", + "name": "Realme C12 2020 Dual SIM TD-LTE V1 IN ID 32GB RMX2189", + "url": "/v1/smartphones/realme-c12-2020-dual-sim-td-lte-v1-in-id-32gb-rmx2189" + }, + { + "slug": "realme-c15-2020-premium-edition", + "name": "Realme C15 2020 Premium Edition", + "url": "/v1/smartphones/realme-c15-2020-premium-edition" + }, + { + "slug": "realme-c15-2020-premium-edition-dual-sim-td-lte-v1-in-id-128gb-rmx2186", + "name": "Realme C15 2020 Premium Edition Dual SIM TD-LTE V1 IN ID 128GB RMX2186", + "url": "/v1/smartphones/realme-c15-2020-premium-edition-dual-sim-td-lte-v1-in-id-128gb-rmx2186" + }, + { + "slug": "realme-c15-2020-premium-edition-dual-sim-td-lte-v1-in-id-64gb-rmx2186", + "name": "Realme C15 2020 Premium Edition Dual SIM TD-LTE V1 IN ID 64GB RMX2186", + "url": "/v1/smartphones/realme-c15-2020-premium-edition-dual-sim-td-lte-v1-in-id-64gb-rmx2186" + }, + { + "slug": "realme-c15-2020-standard-edition", + "name": "Realme C15 2020 Standard Edition", + "url": "/v1/smartphones/realme-c15-2020-standard-edition" + }, + { + "slug": "realme-c15-2020-standard-edition-dual-sim-td-lte-v1-in-id-64gb-rmx2186", + "name": "Realme C15 2020 Standard Edition Dual SIM TD-LTE V1 IN ID 64GB RMX2186", + "url": "/v1/smartphones/realme-c15-2020-standard-edition-dual-sim-td-lte-v1-in-id-64gb-rmx2186" + }, + { + "slug": "realme-c17-2020-dual-sim-td-lte-v1-id-pk-256gb-rmx2101", + "name": "Realme C17 2020 Dual SIM TD-LTE V1 ID PK 256GB RMX2101", + "url": "/v1/smartphones/realme-c17-2020-dual-sim-td-lte-v1-id-pk-256gb-rmx2101" + }, + { + "slug": "realme-c17-2020-dual-sim-td-lte-v1-vn-bd-eg-128gb-rmx2101", + "name": "Realme C17 2020 Dual SIM TD-LTE V1 VN BD EG 128GB RMX2101", + "url": "/v1/smartphones/realme-c17-2020-dual-sim-td-lte-v1-vn-bd-eg-128gb-rmx2101" + }, + { + "slug": "realme-c17-2020-dual-sim-td-lte-v2-my-256gb-rmx2101", + "name": "Realme C17 2020 Dual SIM TD-LTE V2 MY 256GB RMX2101", + "url": "/v1/smartphones/realme-c17-2020-dual-sim-td-lte-v2-my-256gb-rmx2101" + }, + { + "slug": "realme-c17-2020-dual-sim-td-lte-v2-sg-128gb-rmx2101", + "name": "Realme C17 2020 Dual SIM TD-LTE V2 SG 128GB RMX2101", + "url": "/v1/smartphones/realme-c17-2020-dual-sim-td-lte-v2-sg-128gb-rmx2101" + }, + { + "slug": "realme-c17-2020-dual-sim-td-lte-v2-th-64gb-rmx2101", + "name": "Realme C17 2020 Dual SIM TD-LTE V2 TH 64GB RMX2101", + "url": "/v1/smartphones/realme-c17-2020-dual-sim-td-lte-v2-th-64gb-rmx2101" + }, + { + "slug": "realme-c2-premium-edition", + "name": "Realme C2 Premium Edition", + "url": "/v1/smartphones/realme-c2-premium-edition" + }, + { + "slug": "realme-c2-premium-edition-dual-sim-td-lte-in-32gb-rmx1941", + "name": "Realme C2 Premium Edition Dual SIM TD-LTE IN 32GB RMX1941", + "url": "/v1/smartphones/realme-c2-premium-edition-dual-sim-td-lte-in-32gb-rmx1941" + }, + { + "slug": "realme-c2-premium-edition-dual-sim-td-lte-vn-my-32gb-rmx1941", + "name": "Realme C2 Premium Edition Dual SIM TD-LTE VN MY 32GB RMX1941", + "url": "/v1/smartphones/realme-c2-premium-edition-dual-sim-td-lte-vn-my-32gb-rmx1941" + }, + { + "slug": "realme-c2-standard-edition", + "name": "Realme C2 Standard Edition", + "url": "/v1/smartphones/realme-c2-standard-edition" + }, + { + "slug": "realme-c2-standard-edition-dual-sim-td-lte-in-32gb-rmx1941", + "name": "Realme C2 Standard Edition Dual SIM TD-LTE IN 32GB RMX1941", + "url": "/v1/smartphones/realme-c2-standard-edition-dual-sim-td-lte-in-32gb-rmx1941" + }, + { + "slug": "realme-c2-standard-edition-dual-sim-td-lte-in-id-16gb-rmx1945", + "name": "Realme C2 Standard Edition Dual SIM TD-LTE IN ID 16GB RMX1945", + "url": "/v1/smartphones/realme-c2-standard-edition-dual-sim-td-lte-in-id-16gb-rmx1945" + }, + { + "slug": "realme-c2-standard-edition-dual-sim-td-lte-ru-16gb-rmx1945", + "name": "Realme C2 Standard Edition Dual SIM TD-LTE RU 16GB RMX1945", + "url": "/v1/smartphones/realme-c2-standard-edition-dual-sim-td-lte-ru-16gb-rmx1945" + }, + { + "slug": "realme-c2-standard-edition-dual-sim-td-lte-vn-my-16gb-rmx1945", + "name": "Realme C2 Standard Edition Dual SIM TD-LTE VN MY 16GB RMX1945", + "url": "/v1/smartphones/realme-c2-standard-edition-dual-sim-td-lte-vn-my-16gb-rmx1945" + }, + { + "slug": "realme-c2-standard-edition-dual-sim-td-lte-vn-my-32gb-rmx1941", + "name": "Realme C2 Standard Edition Dual SIM TD-LTE VN MY 32GB RMX1941", + "url": "/v1/smartphones/realme-c2-standard-edition-dual-sim-td-lte-vn-my-32gb-rmx1941" + }, + { + "slug": "realme-c20-2021", + "name": "Realme C20 2021", + "url": "/v1/smartphones/realme-c20-2021" + }, + { + "slug": "realme-c20-2021-dual-sim-td-lte-v1-in-32gb-rmx3063", + "name": "Realme C20 2021 Dual SIM TD-LTE V1 IN 32GB RMX3063", + "url": "/v1/smartphones/realme-c20-2021-dual-sim-td-lte-v1-in-32gb-rmx3063" + }, + { + "slug": "realme-c20-2021-dual-sim-td-lte-v2-id-vn-bd-32gb-rmx3061-c20a", + "name": "Realme C20 2021 Dual SIM TD-LTE V2 ID VN BD 32GB RMX3061 / C20A", + "url": "/v1/smartphones/realme-c20-2021-dual-sim-td-lte-v2-id-vn-bd-32gb-rmx3061-c20a" + }, + { + "slug": "realme-c20-2021-dual-sim-td-lte-v3-latam-32gb-rmx3061-c20a", + "name": "Realme C20 2021 Dual SIM TD-LTE V3 LATAM 32GB RMX3061 / C20A", + "url": "/v1/smartphones/realme-c20-2021-dual-sim-td-lte-v3-latam-32gb-rmx3061-c20a" + }, + { + "slug": "realme-c21-2021", + "name": "Realme C21 2021", + "url": "/v1/smartphones/realme-c21-2021" + }, + { + "slug": "realme-c21-2021-global-dual-sim-td-lte-v2-32gb-rmx3201", + "name": "Realme C21 2021 Global Dual SIM TD-LTE V2 32GB RMX3201", + "url": "/v1/smartphones/realme-c21-2021-global-dual-sim-td-lte-v2-32gb-rmx3201" + }, + { + "slug": "realme-c21-2021-global-dual-sim-td-lte-v2-64gb-rmx3201", + "name": "Realme C21 2021 Global Dual SIM TD-LTE V2 64GB RMX3201", + "url": "/v1/smartphones/realme-c21-2021-global-dual-sim-td-lte-v2-64gb-rmx3201" + }, + { + "slug": "realme-c21-2021-td-lte-latam-v3-64gb-rmx3203", + "name": "Realme C21 2021 TD-LTE LATAM V3 64GB RMX3203", + "url": "/v1/smartphones/realme-c21-2021-td-lte-latam-v3-64gb-rmx3203" + }, + { + "slug": "realme-c21y-2021", + "name": "Realme C21Y 2021", + "url": "/v1/smartphones/realme-c21y-2021" + }, + { + "slug": "realme-c21y-2021-dual-sim-td-lte-v2-apac-32gb-rmx3261", + "name": "Realme C21Y 2021 Dual SIM TD-LTE V2 APAC 32GB RMX3261", + "url": "/v1/smartphones/realme-c21y-2021-dual-sim-td-lte-v2-apac-32gb-rmx3261" + }, + { + "slug": "realme-c21y-2021-dual-sim-td-lte-v2-apac-64gb-rmx3261", + "name": "Realme C21Y 2021 Dual SIM TD-LTE V2 APAC 64GB RMX3261", + "url": "/v1/smartphones/realme-c21y-2021-dual-sim-td-lte-v2-apac-64gb-rmx3261" + }, + { + "slug": "realme-c25", + "name": "Realme C25", + "url": "/v1/smartphones/realme-c25" + }, + { + "slug": "realme-c25-dual-sim-td-lte-v1-id-pk-th-ph-64gb-rmx31391", + "name": "Realme C25 Dual SIM TD-LTE V1 ID PK TH PH 64GB RMX31391", + "url": "/v1/smartphones/realme-c25-dual-sim-td-lte-v1-id-pk-th-ph-64gb-rmx31391" + }, + { + "slug": "realme-c25-dual-sim-td-lte-v1-id-pk-vn-ph-128gb-rmx31391", + "name": "Realme C25 Dual SIM TD-LTE V1 ID PK VN PH 128GB RMX31391", + "url": "/v1/smartphones/realme-c25-dual-sim-td-lte-v1-id-pk-vn-ph-128gb-rmx31391" + }, + { + "slug": "realme-c25-dual-sim-td-lte-v1-in-128gb-rmx3193", + "name": "Realme C25 Dual SIM TD-LTE V1 IN 128GB RMX3193", + "url": "/v1/smartphones/realme-c25-dual-sim-td-lte-v1-in-128gb-rmx3193" + }, + { + "slug": "realme-c25-dual-sim-td-lte-v1-in-64gb-rmx3193", + "name": "Realme C25 Dual SIM TD-LTE V1 IN 64GB RMX3193", + "url": "/v1/smartphones/realme-c25-dual-sim-td-lte-v1-in-64gb-rmx3193" + }, + { + "slug": "realme-c25y-2021", + "name": "Realme C25Y 2021", + "url": "/v1/smartphones/realme-c25y-2021" + }, + { + "slug": "realme-c25-y-2021", + "name": "Realme C25_Y 2021", + "url": "/v1/smartphones/realme-c25-y-2021" + }, + { + "slug": "realme-c25s-2021", + "name": "Realme C25s 2021", + "url": "/v1/smartphones/realme-c25s-2021" + }, + { + "slug": "realme-c25s-2021-dual-sim-td-lte-v1-in-128gb-rmx3197", + "name": "Realme C25s 2021 Dual SIM TD-LTE V1 IN 128GB RMX3197", + "url": "/v1/smartphones/realme-c25s-2021-dual-sim-td-lte-v1-in-128gb-rmx3197" + }, + { + "slug": "realme-c25s-2021-dual-sim-td-lte-v1-in-64gb-rmx3197", + "name": "Realme C25s 2021 Dual SIM TD-LTE V1 IN 64GB RMX3197", + "url": "/v1/smartphones/realme-c25s-2021-dual-sim-td-lte-v1-in-64gb-rmx3197" + }, + { + "slug": "realme-c25s-2021-dual-sim-td-lte-v2-apac-128gb-rmx3195", + "name": "Realme C25s 2021 Dual SIM TD-LTE V2 APAC 128GB RMX3195", + "url": "/v1/smartphones/realme-c25s-2021-dual-sim-td-lte-v2-apac-128gb-rmx3195" + }, + { + "slug": "realme-c25s-2021-dual-sim-td-lte-v2-apac-64gb-rmx3195", + "name": "Realme C25s 2021 Dual SIM TD-LTE V2 APAC 64GB RMX3195", + "url": "/v1/smartphones/realme-c25s-2021-dual-sim-td-lte-v2-apac-64gb-rmx3195" + }, + { + "slug": "realme-c2s", + "name": "Realme C2s", + "url": "/v1/smartphones/realme-c2s" + }, + { + "slug": "realme-c2s-dual-sim-td-lte-th-32gb", + "name": "Realme C2s Dual SIM TD-LTE TH 32GB", + "url": "/v1/smartphones/realme-c2s-dual-sim-td-lte-th-32gb" + }, + { + "slug": "realme-c3-premium-edition", + "name": "Realme C3 Premium Edition", + "url": "/v1/smartphones/realme-c3-premium-edition" + }, + { + "slug": "realme-c3-premium-edition-dual-sim-td-lte-id-pk-vn-ph-64gb-rmx2020", + "name": "Realme C3 Premium Edition Dual SIM TD-LTE ID PK VN PH 64GB RMX2020", + "url": "/v1/smartphones/realme-c3-premium-edition-dual-sim-td-lte-id-pk-vn-ph-64gb-rmx2020" + }, + { + "slug": "realme-c3-standard-edition", + "name": "Realme C3 Standard Edition", + "url": "/v1/smartphones/realme-c3-standard-edition" + }, + { + "slug": "realme-c3-standard-edition-dual-sim-td-lte-id-pk-vn-ph-32gb-rmx2020", + "name": "Realme C3 Standard Edition Dual SIM TD-LTE ID PK VN PH 32GB RMX2020", + "url": "/v1/smartphones/realme-c3-standard-edition-dual-sim-td-lte-id-pk-vn-ph-32gb-rmx2020" + }, + { + "slug": "realme-c3-standard-edition-dual-sim-td-lte-in-32gb-rmx2027-c3i", + "name": "Realme C3 Standard Edition Dual SIM TD-LTE IN 32GB RMX2027 / C3i", + "url": "/v1/smartphones/realme-c3-standard-edition-dual-sim-td-lte-in-32gb-rmx2027-c3i" + }, + { + "slug": "realme-c3-standard-edition-dual-sim-td-lte-in-64gb-rmx2027-c3i", + "name": "Realme C3 Standard Edition Dual SIM TD-LTE IN 64GB RMX2027 / C3i", + "url": "/v1/smartphones/realme-c3-standard-edition-dual-sim-td-lte-in-64gb-rmx2027-c3i" + }, + { + "slug": "realme-c3-standard-edition-dual-sim-td-lte-my-32gb-rmx2020", + "name": "Realme C3 Standard Edition Dual SIM TD-LTE MY 32GB RMX2020", + "url": "/v1/smartphones/realme-c3-standard-edition-dual-sim-td-lte-my-32gb-rmx2020" + }, + { + "slug": "realme-c3-standard-edition-dual-sim-td-lte-th-32gb-rmx2020", + "name": "Realme C3 Standard Edition Dual SIM TD-LTE TH 32GB RMX2020", + "url": "/v1/smartphones/realme-c3-standard-edition-dual-sim-td-lte-th-32gb-rmx2020" + }, + { + "slug": "realme-c30-2022-premium-edition", + "name": "Realme C30 2022 Premium Edition", + "url": "/v1/smartphones/realme-c30-2022-premium-edition" + }, + { + "slug": "realme-c30-2022-standard-edition", + "name": "Realme C30 2022 Standard Edition", + "url": "/v1/smartphones/realme-c30-2022-standard-edition" + }, + { + "slug": "realme-c30-2022-top-edition", + "name": "Realme C30 2022 Top Edition", + "url": "/v1/smartphones/realme-c30-2022-top-edition" + }, + { + "slug": "realme-c33-2022-premium-edition", + "name": "Realme C33 2022 Premium Edition", + "url": "/v1/smartphones/realme-c33-2022-premium-edition" + }, + { + "slug": "realme-c33-2022-standard-edition", + "name": "Realme C33 2022 Standard Edition", + "url": "/v1/smartphones/realme-c33-2022-standard-edition" + }, + { + "slug": "realme-c35-2022-premium-edition", + "name": "Realme C35 2022 Premium Edition", + "url": "/v1/smartphones/realme-c35-2022-premium-edition" + }, + { + "slug": "realme-c35-2022-standard-edition", + "name": "Realme C35 2022 Standard Edition", + "url": "/v1/smartphones/realme-c35-2022-standard-edition" + }, + { + "slug": "realme-c3i-standard-edition", + "name": "Realme C3i Standard Edition", + "url": "/v1/smartphones/realme-c3i-standard-edition" + }, + { + "slug": "realme-c3i-standard-edition-dual-sim-td-lte-vn-32gb-rmx2027", + "name": "Realme C3i Standard Edition Dual SIM TD-LTE VN 32GB RMX2027", + "url": "/v1/smartphones/realme-c3i-standard-edition-dual-sim-td-lte-vn-32gb-rmx2027" + }, + { + "slug": "realme-gt", + "name": "Realme GT", + "url": "/v1/smartphones/realme-gt" + }, + { + "slug": "realme-gt-3", + "name": "Realme GT 3", + "url": "/v1/smartphones/realme-gt-3" + }, + { + "slug": "realme-gt-5g-2021-leather-edition-dual-sim-td-lte-cn-256gb-rmx2202", + "name": "Realme GT 5G 2021 Leather Edition Dual SIM TD-LTE CN 256GB RMX2202", + "url": "/v1/smartphones/realme-gt-5g-2021-leather-edition-dual-sim-td-lte-cn-256gb-rmx2202" + }, + { + "slug": "realme-gt-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-rmx2202", + "name": "Realme GT 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB RMX2202", + "url": "/v1/smartphones/realme-gt-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-rmx2202" + }, + { + "slug": "realme-gt-5g-2021-premium-edition-global-dual-sim-td-lte-256gb-rmx2202", + "name": "Realme GT 5G 2021 Premium Edition Global Dual SIM TD-LTE 256GB RMX2202", + "url": "/v1/smartphones/realme-gt-5g-2021-premium-edition-global-dual-sim-td-lte-256gb-rmx2202" + }, + { + "slug": "realme-gt-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-rmx2202", + "name": "Realme GT 5G 2021 Standard Edition Dual SIM TD-LTE CN 256GB RMX2202", + "url": "/v1/smartphones/realme-gt-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-rmx2202" + }, + { + "slug": "realme-gt-5g-2021-standard-edition-global-dual-sim-td-lte-128gb-rmx2202", + "name": "Realme GT 5G 2021 Standard Edition Global Dual SIM TD-LTE 128GB RMX2202", + "url": "/v1/smartphones/realme-gt-5g-2021-standard-edition-global-dual-sim-td-lte-128gb-rmx2202" + }, + { + "slug": "realme-gt-8-pro", + "name": "Realme GT 8 Pro", + "url": "/v1/smartphones/realme-gt-8-pro" + }, + { + "slug": "realme-gt-master-edition", + "name": "Realme GT Master Edition", + "url": "/v1/smartphones/realme-gt-master-edition" + }, + { + "slug": "realme-gt-master-explorer-edition", + "name": "Realme GT Master Explorer Edition", + "url": "/v1/smartphones/realme-gt-master-explorer-edition" + }, + { + "slug": "realme-gt-master-explorer-edition-5g-dual-sim-td-lte-cn-256gb-rmx3366", + "name": "Realme GT Master Explorer Edition 5G Dual SIM TD-LTE CN 256GB RMX3366", + "url": "/v1/smartphones/realme-gt-master-explorer-edition-5g-dual-sim-td-lte-cn-256gb-rmx3366" + }, + { + "slug": "realme-gt-master-premium-edition", + "name": "Realme GT Master Premium Edition", + "url": "/v1/smartphones/realme-gt-master-premium-edition" + }, + { + "slug": "realme-gt-master-standard-edition", + "name": "Realme GT Master Standard Edition", + "url": "/v1/smartphones/realme-gt-master-standard-edition" + }, + { + "slug": "realme-gt-neo", + "name": "Realme GT Neo", + "url": "/v1/smartphones/realme-gt-neo" + }, + { + "slug": "realme-gt-neo-2", + "name": "Realme GT Neo 2", + "url": "/v1/smartphones/realme-gt-neo-2" + }, + { + "slug": "realme-gt-neo-2-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx3370", + "name": "Realme GT Neo 2 5G Premium Edition Dual SIM TD-LTE CN 256GB RMX3370", + "url": "/v1/smartphones/realme-gt-neo-2-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx3370" + }, + { + "slug": "realme-gt-neo-2-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx3370", + "name": "Realme GT Neo 2 5G Standard Edition Dual SIM TD-LTE CN 128GB RMX3370", + "url": "/v1/smartphones/realme-gt-neo-2-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx3370" + }, + { + "slug": "realme-gt-neo-2-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx3370", + "name": "Realme GT Neo 2 5G Standard Edition Dual SIM TD-LTE CN 256GB RMX3370", + "url": "/v1/smartphones/realme-gt-neo-2-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx3370" + }, + { + "slug": "realme-gt-neo-2t", + "name": "Realme GT Neo 2T", + "url": "/v1/smartphones/realme-gt-neo-2t" + }, + { + "slug": "realme-gt-neo-3", + "name": "Realme GT Neo 3", + "url": "/v1/smartphones/realme-gt-neo-3" + }, + { + "slug": "realme-gt-neo-3t", + "name": "Realme GT Neo 3T", + "url": "/v1/smartphones/realme-gt-neo-3t" + }, + { + "slug": "realme-gt-neo-3t-g-2022-premium-edition", + "name": "Realme GT Neo 3T G 2022 Premium Edition", + "url": "/v1/smartphones/realme-gt-neo-3t-g-2022-premium-edition" + }, + { + "slug": "realme-gt-neo-3t-g-2022-standard-edition", + "name": "Realme GT Neo 3T G 2022 Standard Edition", + "url": "/v1/smartphones/realme-gt-neo-3t-g-2022-standard-edition" + }, + { + "slug": "realme-gt-neo-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-rmx3031", + "name": "Realme GT Neo 5G 2021 Premium Edition Dual SIM TD-LTE CN 128GB RMX3031", + "url": "/v1/smartphones/realme-gt-neo-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-rmx3031" + }, + { + "slug": "realme-gt-neo-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-rmx3031", + "name": "Realme GT Neo 5G 2021 Standard Edition Dual SIM TD-LTE CN 128GB RMX3031", + "url": "/v1/smartphones/realme-gt-neo-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-rmx3031" + }, + { + "slug": "realme-gt-neo-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-rmx3031", + "name": "Realme GT Neo 5G 2021 Top Edition Dual SIM TD-LTE CN 256GB RMX3031", + "url": "/v1/smartphones/realme-gt-neo-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-rmx3031" + }, + { + "slug": "realme-gt-neo-flash", + "name": "Realme GT Neo Flash", + "url": "/v1/smartphones/realme-gt-neo-flash" + }, + { + "slug": "realme-gt-neo-flash-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-rmx3350", + "name": "Realme GT Neo Flash 5G 2021 Premium Edition Dual SIM TD-LTE CN 128GB RMX3350", + "url": "/v1/smartphones/realme-gt-neo-flash-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-rmx3350" + }, + { + "slug": "realme-gt-neo-flash-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-rmx3350", + "name": "Realme GT Neo Flash 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB RMX3350", + "url": "/v1/smartphones/realme-gt-neo-flash-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-rmx3350" + }, + { + "slug": "realme-gt-neo-flash-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-rmx3350", + "name": "Realme GT Neo Flash 5G 2021 Top Edition Dual SIM TD-LTE CN 256GB RMX3350", + "url": "/v1/smartphones/realme-gt-neo-flash-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-rmx3350" + }, + { + "slug": "realme-gt-neo3", + "name": "Realme GT Neo3", + "url": "/v1/smartphones/realme-gt-neo3" + }, + { + "slug": "realme-gt2", + "name": "Realme GT2", + "url": "/v1/smartphones/realme-gt2" + }, + { + "slug": "realme-gt2-pro", + "name": "Realme GT2 Pro", + "url": "/v1/smartphones/realme-gt2-pro" + }, + { + "slug": "realme-narzo", + "name": "Realme Narzo", + "url": "/v1/smartphones/realme-narzo" + }, + { + "slug": "realme-narzo-10", + "name": "Realme Narzo 10", + "url": "/v1/smartphones/realme-narzo-10" + }, + { + "slug": "realme-narzo-10-dual-sim-td-lte-in-128gb-rmx2040", + "name": "Realme Narzo 10 Dual SIM TD-LTE IN 128GB RMX2040", + "url": "/v1/smartphones/realme-narzo-10-dual-sim-td-lte-in-128gb-rmx2040" + }, + { + "slug": "realme-narzo-10a", + "name": "Realme Narzo 10A", + "url": "/v1/smartphones/realme-narzo-10a" + }, + { + "slug": "realme-narzo-10a-dual-sim-td-lte-in-32-gb-rmx2020", + "name": "Realme Narzo 10A Dual SIM TD-LTE IN 32 GB RMX2020", + "url": "/v1/smartphones/realme-narzo-10a-dual-sim-td-lte-in-32-gb-rmx2020" + }, + { + "slug": "realme-narzo-20", + "name": "Realme Narzo 20", + "url": "/v1/smartphones/realme-narzo-20" + }, + { + "slug": "realme-narzo-20-dual-sim-td-lte-in-id-128gb-rmx2193", + "name": "Realme Narzo 20 Dual SIM TD-LTE IN ID 128GB RMX2193", + "url": "/v1/smartphones/realme-narzo-20-dual-sim-td-lte-in-id-128gb-rmx2193" + }, + { + "slug": "realme-narzo-20-dual-sim-td-lte-in-id-64gb-rmx2193", + "name": "Realme Narzo 20 Dual SIM TD-LTE IN ID 64GB RMX2193", + "url": "/v1/smartphones/realme-narzo-20-dual-sim-td-lte-in-id-64gb-rmx2193" + }, + { + "slug": "realme-narzo-20-pro", + "name": "Realme Narzo 20 Pro", + "url": "/v1/smartphones/realme-narzo-20-pro" + }, + { + "slug": "realme-narzo-20-pro-dual-sim-td-lte-v1-in-id-128gb-rmx2161", + "name": "Realme Narzo 20 Pro Dual SIM TD-LTE V1 IN ID 128GB RMX2161", + "url": "/v1/smartphones/realme-narzo-20-pro-dual-sim-td-lte-v1-in-id-128gb-rmx2161" + }, + { + "slug": "realme-narzo-20-pro-dual-sim-td-lte-v1-in-id-64gb-rmx2161-rmx2163", + "name": "Realme Narzo 20 Pro Dual SIM TD-LTE V1 IN ID 64GB RMX2161 / RMX2163", + "url": "/v1/smartphones/realme-narzo-20-pro-dual-sim-td-lte-v1-in-id-64gb-rmx2161-rmx2163" + }, + { + "slug": "realme-narzo-20a-dual-sim-td-lte-v1-in-32gb-rmx2050", + "name": "Realme Narzo 20A Dual SIM TD-LTE V1 IN 32GB RMX2050", + "url": "/v1/smartphones/realme-narzo-20a-dual-sim-td-lte-v1-in-32gb-rmx2050" + }, + { + "slug": "realme-narzo-20a-dual-sim-td-lte-v1-in-64gb-rmx2050", + "name": "Realme Narzo 20A Dual SIM TD-LTE V1 IN 64GB RMX2050", + "url": "/v1/smartphones/realme-narzo-20a-dual-sim-td-lte-v1-in-64gb-rmx2050" + }, + { + "slug": "realme-narzo-30", + "name": "Realme Narzo 30", + "url": "/v1/smartphones/realme-narzo-30" + }, + { + "slug": "realme-narzo-30-5g-2021-premium-edition-dual-sim-td-lte-in-128gb-rmx3242", + "name": "Realme Narzo 30 5G 2021 Premium Edition Dual SIM TD-LTE IN 128GB RMX3242", + "url": "/v1/smartphones/realme-narzo-30-5g-2021-premium-edition-dual-sim-td-lte-in-128gb-rmx3242" + }, + { + "slug": "realme-narzo-30-5g-2021-standard-edition-dual-sim-td-lte-in-64gb-rmx3242", + "name": "Realme Narzo 30 5G 2021 Standard Edition Dual SIM TD-LTE IN 64GB RMX3242", + "url": "/v1/smartphones/realme-narzo-30-5g-2021-standard-edition-dual-sim-td-lte-in-64gb-rmx3242" + }, + { + "slug": "realme-narzo-30-5g-2021-standard-edition-global-dual-sim-td-lte-128gb-rmx3242", + "name": "Realme Narzo 30 5G 2021 Standard Edition Global Dual SIM TD-LTE 128GB RMX3242", + "url": "/v1/smartphones/realme-narzo-30-5g-2021-standard-edition-global-dual-sim-td-lte-128gb-rmx3242" + }, + { + "slug": "realme-narzo-50", + "name": "Realme Narzo 50", + "url": "/v1/smartphones/realme-narzo-50" + }, + { + "slug": "realme-narzo-50-2022-premium-edition", + "name": "Realme Narzo 50 2022 Premium Edition", + "url": "/v1/smartphones/realme-narzo-50-2022-premium-edition" + }, + { + "slug": "realme-narzo-50-2022-standard-edition", + "name": "Realme Narzo 50 2022 Standard Edition", + "url": "/v1/smartphones/realme-narzo-50-2022-standard-edition" + }, + { + "slug": "realme-narzo-50-pro", + "name": "Realme Narzo 50 Pro", + "url": "/v1/smartphones/realme-narzo-50-pro" + }, + { + "slug": "realme-narzo-50a", + "name": "Realme Narzo 50A", + "url": "/v1/smartphones/realme-narzo-50a" + }, + { + "slug": "realme-narzo-50a-dual-sim-td-lte-in-id-128gb-rmx3430", + "name": "Realme Narzo 50A Dual SIM TD-LTE IN ID 128GB ‎RMX3430", + "url": "/v1/smartphones/realme-narzo-50a-dual-sim-td-lte-in-id-128gb-rmx3430" + }, + { + "slug": "realme-narzo-50a-dual-sim-td-lte-in-id-64gb-rmx3430", + "name": "Realme Narzo 50A Dual SIM TD-LTE IN ID 64GB ‎RMX3430", + "url": "/v1/smartphones/realme-narzo-50a-dual-sim-td-lte-in-id-64gb-rmx3430" + }, + { + "slug": "realme-narzo-50a-prime-2022", + "name": "Realme Narzo 50A Prime 2022", + "url": "/v1/smartphones/realme-narzo-50a-prime-2022" + }, + { + "slug": "realme-narzo-dual-sim-td-lte-v1-id-128gb-rmx2002", + "name": "Realme Narzo Dual SIM TD-LTE V1 ID 128GB RMX2002", + "url": "/v1/smartphones/realme-narzo-dual-sim-td-lte-v1-id-128gb-rmx2002" + }, + { + "slug": "realme-q-premium-edition-dual-sim-td-lte-cn-128gb-rmx1971", + "name": "Realme Q Premium Edition Dual SIM TD-LTE CN 128GB RMX1971", + "url": "/v1/smartphones/realme-q-premium-edition-dual-sim-td-lte-cn-128gb-rmx1971" + }, + { + "slug": "realme-q-premium-edition-dual-sim-td-lte-cn-64gb-rmx1971", + "name": "Realme Q Premium Edition Dual SIM TD-LTE CN 64GB RMX1971", + "url": "/v1/smartphones/realme-q-premium-edition-dual-sim-td-lte-cn-64gb-rmx1971" + }, + { + "slug": "realme-q-standard-edition-dual-sim-td-lte-cn-64gb-rmx1971", + "name": "Realme Q Standard Edition Dual SIM TD-LTE CN 64GB RMX1971", + "url": "/v1/smartphones/realme-q-standard-edition-dual-sim-td-lte-cn-64gb-rmx1971" + }, + { + "slug": "realme-q2", + "name": "Realme Q2", + "url": "/v1/smartphones/realme-q2" + }, + { + "slug": "realme-q2-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2117", + "name": "Realme Q2 5G Premium Edition Dual SIM TD-LTE CN 128GB RMX2117", + "url": "/v1/smartphones/realme-q2-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2117" + }, + { + "slug": "realme-q2-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2117", + "name": "Realme Q2 5G Standard Edition Dual SIM TD-LTE CN 128GB RMX2117", + "url": "/v1/smartphones/realme-q2-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2117" + }, + { + "slug": "realme-q2-pro", + "name": "Realme Q2 Pro", + "url": "/v1/smartphones/realme-q2-pro" + }, + { + "slug": "realme-q2-pro-5g-dual-sim-td-lte-cn-128gb-rmx2173", + "name": "Realme Q2 Pro 5G Dual SIM TD-LTE CN 128GB RMX2173", + "url": "/v1/smartphones/realme-q2-pro-5g-dual-sim-td-lte-cn-128gb-rmx2173" + }, + { + "slug": "realme-q2i", + "name": "Realme Q2i", + "url": "/v1/smartphones/realme-q2i" + }, + { + "slug": "realme-q2i-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-rmx2201", + "name": "Realme Q2i 5G 2020 Standard Edition Dual SIM TD-LTE CN 128GB RMX2201", + "url": "/v1/smartphones/realme-q2i-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-rmx2201" + }, + { + "slug": "realme-q3", + "name": "Realme Q3", + "url": "/v1/smartphones/realme-q3" + }, + { + "slug": "realme-q3i", + "name": "Realme Q3i", + "url": "/v1/smartphones/realme-q3i" + }, + { + "slug": "realme-q3i-5g-premium-edition-2021-dual-sim-td-lte-cn-128gb-rmx3042", + "name": "Realme Q3i 5G Premium Edition 2021 Dual SIM TD-LTE CN 128GB RMX3042", + "url": "/v1/smartphones/realme-q3i-5g-premium-edition-2021-dual-sim-td-lte-cn-128gb-rmx3042" + }, + { + "slug": "realme-q3i-5g-standard-edition-2021-dual-sim-td-lte-cn-128gb-rmx3042", + "name": "Realme Q3i 5G Standard Edition 2021 Dual SIM TD-LTE CN 128GB RMX3042", + "url": "/v1/smartphones/realme-q3i-5g-standard-edition-2021-dual-sim-td-lte-cn-128gb-rmx3042" + }, + { + "slug": "realme-q5", + "name": "Realme Q5", + "url": "/v1/smartphones/realme-q5" + }, + { + "slug": "realme-q5-2022-premium-edition", + "name": "Realme Q5 2022 Premium Edition", + "url": "/v1/smartphones/realme-q5-2022-premium-edition" + }, + { + "slug": "realme-q5-pro", + "name": "Realme Q5 Pro", + "url": "/v1/smartphones/realme-q5-pro" + }, + { + "slug": "realme-u1", + "name": "Realme U1", + "url": "/v1/smartphones/realme-u1" + }, + { + "slug": "realme-u1-dual-sim-td-lte-in-32gb-rmx1833", + "name": "Realme U1 Dual SIM TD-LTE IN 32GB RMX1833", + "url": "/v1/smartphones/realme-u1-dual-sim-td-lte-in-32gb-rmx1833" + }, + { + "slug": "realme-u1-dual-sim-td-lte-in-64gb-rmx1833", + "name": "Realme U1 Dual SIM TD-LTE IN 64GB RMX1833", + "url": "/v1/smartphones/realme-u1-dual-sim-td-lte-in-64gb-rmx1833" + }, + { + "slug": "realme-v11", + "name": "Realme V11", + "url": "/v1/smartphones/realme-v11" + }, + { + "slug": "realme-v11-5g-2021-dual-sim-td-lte-cn-128gb-rmx3121", + "name": "Realme V11 5G 2021 Dual SIM TD-LTE CN 128GB RMX3121", + "url": "/v1/smartphones/realme-v11-5g-2021-dual-sim-td-lte-cn-128gb-rmx3121" + }, + { + "slug": "realme-v13", + "name": "Realme V13", + "url": "/v1/smartphones/realme-v13" + }, + { + "slug": "realme-v13-5g-2021-dual-sim-td-lte-cn-128gb-rmx3041", + "name": "Realme V13 5G 2021 Dual SIM TD-LTE CN 128GB RMX3041", + "url": "/v1/smartphones/realme-v13-5g-2021-dual-sim-td-lte-cn-128gb-rmx3041" + }, + { + "slug": "realme-v13-5g-2021-dual-sim-td-lte-cn-256gb-rmx3041", + "name": "Realme V13 5G 2021 Dual SIM TD-LTE CN 256GB RMX3041", + "url": "/v1/smartphones/realme-v13-5g-2021-dual-sim-td-lte-cn-256gb-rmx3041" + }, + { + "slug": "realme-v15", + "name": "Realme V15", + "url": "/v1/smartphones/realme-v15" + }, + { + "slug": "realme-v15-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx3092", + "name": "Realme V15 5G Premium Edition Dual SIM TD-LTE CN 128GB RMX3092", + "url": "/v1/smartphones/realme-v15-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx3092" + }, + { + "slug": "realme-v15-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx3092", + "name": "Realme V15 5G Standard Edition Dual SIM TD-LTE CN 128GB RMX3092", + "url": "/v1/smartphones/realme-v15-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx3092" + }, + { + "slug": "realme-v3", + "name": "Realme V3", + "url": "/v1/smartphones/realme-v3" + }, + { + "slug": "realme-v3-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-rmx2200", + "name": "Realme V3 5G 2020 Premium Edition Dual SIM TD-LTE CN 128GB RMX2200", + "url": "/v1/smartphones/realme-v3-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-rmx2200" + }, + { + "slug": "realme-v3-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-rmx2200", + "name": "Realme V3 5G 2020 Standard Edition Dual SIM TD-LTE CN 128GB RMX2200", + "url": "/v1/smartphones/realme-v3-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-rmx2200" + }, + { + "slug": "realme-v3-5g-2020-standard-edition-dual-sim-td-lte-cn-64gb-rmx2200", + "name": "Realme V3 5G 2020 Standard Edition Dual SIM TD-LTE CN 64GB RMX2200", + "url": "/v1/smartphones/realme-v3-5g-2020-standard-edition-dual-sim-td-lte-cn-64gb-rmx2200" + }, + { + "slug": "realme-v5", + "name": "Realme V5", + "url": "/v1/smartphones/realme-v5" + }, + { + "slug": "realme-v5-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2111-rmx2112", + "name": "Realme V5 5G Premium Edition Dual SIM TD-LTE CN 128GB RMX2111 / RMX2112", + "url": "/v1/smartphones/realme-v5-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2111-rmx2112" + }, + { + "slug": "realme-v5-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2111-rmx2112", + "name": "Realme V5 5G Standard Edition Dual SIM TD-LTE CN 128GB RMX2111 / RMX2112", + "url": "/v1/smartphones/realme-v5-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2111-rmx2112" + }, + { + "slug": "realme-x-lite-premium-edition-dual-sim-td-lte-cn-128gb-rmx1851", + "name": "Realme X Lite Premium Edition Dual SIM TD-LTE CN 128GB RMX1851", + "url": "/v1/smartphones/realme-x-lite-premium-edition-dual-sim-td-lte-cn-128gb-rmx1851" + }, + { + "slug": "realme-x-lite-premium-edition-dual-sim-td-lte-cn-64gb-rmx1851", + "name": "Realme X Lite Premium Edition Dual SIM TD-LTE CN 64GB RMX1851", + "url": "/v1/smartphones/realme-x-lite-premium-edition-dual-sim-td-lte-cn-64gb-rmx1851" + }, + { + "slug": "realme-x-lite-standard-edition-dual-sim-td-lte-cn-64gb-rmx1851-realme-x-youth-edit", + "name": "Realme X Lite Standard Edition Dual SIM TD-LTE CN 64GB RMX1851 / Realme X Youth Edit", + "url": "/v1/smartphones/realme-x-lite-standard-edition-dual-sim-td-lte-cn-64gb-rmx1851-realme-x-youth-edit" + }, + { + "slug": "realme-x-master-edition-dual-sim-td-lte-cn-128gb-rmx1903", + "name": "Realme X Master Edition Dual SIM TD-LTE CN 128GB RMX1903", + "url": "/v1/smartphones/realme-x-master-edition-dual-sim-td-lte-cn-128gb-rmx1903" + }, + { + "slug": "realme-x-premium-edition-dual-sim-td-lte-apac-128gb-rmx1903", + "name": "Realme X Premium Edition Dual SIM TD-LTE APAC 128GB RMX1903", + "url": "/v1/smartphones/realme-x-premium-edition-dual-sim-td-lte-apac-128gb-rmx1903" + }, + { + "slug": "realme-x-premium-edition-dual-sim-td-lte-cn-128gb-rmx1903", + "name": "Realme X Premium Edition Dual SIM TD-LTE CN 128GB RMX1903", + "url": "/v1/smartphones/realme-x-premium-edition-dual-sim-td-lte-cn-128gb-rmx1903" + }, + { + "slug": "realme-x-premium-edition-dual-sim-td-lte-cn-256gb-rmx1903", + "name": "Realme X Premium Edition Dual SIM TD-LTE CN 256GB RMX1903", + "url": "/v1/smartphones/realme-x-premium-edition-dual-sim-td-lte-cn-256gb-rmx1903" + }, + { + "slug": "realme-x-premium-edition-dual-sim-td-lte-cn-64gb-rmx1901", + "name": "Realme X Premium Edition Dual SIM TD-LTE CN 64GB RMX1901", + "url": "/v1/smartphones/realme-x-premium-edition-dual-sim-td-lte-cn-64gb-rmx1901" + }, + { + "slug": "realme-x-standard-edition-dual-sim-td-lte-apac-128gb-rmx1901", + "name": "Realme X Standard Edition Dual SIM TD-LTE APAC 128GB RMX1901", + "url": "/v1/smartphones/realme-x-standard-edition-dual-sim-td-lte-apac-128gb-rmx1901" + }, + { + "slug": "realme-x-standard-edition-dual-sim-td-lte-cn-64gb-rmx1901", + "name": "Realme X Standard Edition Dual SIM TD-LTE CN 64GB RMX1901", + "url": "/v1/smartphones/realme-x-standard-edition-dual-sim-td-lte-cn-64gb-rmx1901" + }, + { + "slug": "realme-x2-premium-edition", + "name": "Realme X2 Premium Edition", + "url": "/v1/smartphones/realme-x2-premium-edition" + }, + { + "slug": "realme-x2-premium-edition-dual-sim-td-lte-cn-128gb-rmx1991", + "name": "Realme X2 Premium Edition Dual SIM TD-LTE CN 128GB RMX1991", + "url": "/v1/smartphones/realme-x2-premium-edition-dual-sim-td-lte-cn-128gb-rmx1991" + }, + { + "slug": "realme-x2-premium-edition-dual-sim-td-lte-cn-256gb-rmx1991", + "name": "Realme X2 Premium Edition Dual SIM TD-LTE CN 256GB RMX1991", + "url": "/v1/smartphones/realme-x2-premium-edition-dual-sim-td-lte-cn-256gb-rmx1991" + }, + { + "slug": "realme-x2-premium-edition-global-dual-sim-td-lte-128gb-rmx1991", + "name": "Realme X2 Premium Edition Global Dual SIM TD-LTE 128GB RMX1991", + "url": "/v1/smartphones/realme-x2-premium-edition-global-dual-sim-td-lte-128gb-rmx1991" + }, + { + "slug": "realme-x2-standard-edition", + "name": "Realme X2 Standard Edition", + "url": "/v1/smartphones/realme-x2-standard-edition" + }, + { + "slug": "realme-x2-standard-edition-dual-sim-td-lte-cn-128gb-rmx1991", + "name": "Realme X2 Standard Edition Dual SIM TD-LTE CN 128GB RMX1991", + "url": "/v1/smartphones/realme-x2-standard-edition-dual-sim-td-lte-cn-128gb-rmx1991" + }, + { + "slug": "realme-x2-standard-edition-dual-sim-td-lte-cn-64gb-rmx1991", + "name": "Realme X2 Standard Edition Dual SIM TD-LTE CN 64GB RMX1991", + "url": "/v1/smartphones/realme-x2-standard-edition-dual-sim-td-lte-cn-64gb-rmx1991" + }, + { + "slug": "realme-x2-standard-edition-global-dual-sim-td-lte-128gb-rmx1991", + "name": "Realme X2 Standard Edition Global Dual SIM TD-LTE 128GB RMX1991", + "url": "/v1/smartphones/realme-x2-standard-edition-global-dual-sim-td-lte-128gb-rmx1991" + }, + { + "slug": "realme-x2-standard-edition-global-dual-sim-td-lte-64gb-rmx1991", + "name": "Realme X2 Standard Edition Global Dual SIM TD-LTE 64GB RMX1991", + "url": "/v1/smartphones/realme-x2-standard-edition-global-dual-sim-td-lte-64gb-rmx1991" + }, + { + "slug": "realme-x3-premium-edition", + "name": "Realme X3 Premium Edition", + "url": "/v1/smartphones/realme-x3-premium-edition" + }, + { + "slug": "realme-x3-premium-edition-dual-sim-td-lte-v2-in-128gb-rmx2081", + "name": "Realme X3 Premium Edition Dual SIM TD-LTE V2 IN 128GB RMX2081", + "url": "/v1/smartphones/realme-x3-premium-edition-dual-sim-td-lte-v2-in-128gb-rmx2081" + }, + { + "slug": "realme-x3-standard-edition", + "name": "Realme X3 Standard Edition", + "url": "/v1/smartphones/realme-x3-standard-edition" + }, + { + "slug": "realme-x3-standard-edition-dual-sim-td-lte-v2-in-128gb-rmx2081", + "name": "Realme X3 Standard Edition Dual SIM TD-LTE V2 IN 128GB RMX2081", + "url": "/v1/smartphones/realme-x3-standard-edition-dual-sim-td-lte-v2-in-128gb-rmx2081" + }, + { + "slug": "realme-x3-superzoom", + "name": "Realme X3 SuperZoom", + "url": "/v1/smartphones/realme-x3-superzoom" + }, + { + "slug": "realme-x3-superzoom-dual-sim-td-lte-v2-id-th-pl-128gb-rmx2085", + "name": "Realme X3 SuperZoom Dual SIM TD-LTE V2 ID TH PL 128GB RMX2085", + "url": "/v1/smartphones/realme-x3-superzoom-dual-sim-td-lte-v2-id-th-pl-128gb-rmx2085" + }, + { + "slug": "realme-x3-superzoom-dual-sim-td-lte-v2-id-th-pl-256gb-rmx2085", + "name": "Realme X3 SuperZoom Dual SIM TD-LTE V2 ID TH PL 256GB RMX2085", + "url": "/v1/smartphones/realme-x3-superzoom-dual-sim-td-lte-v2-id-th-pl-256gb-rmx2085" + }, + { + "slug": "realme-x3-superzoom-global-dual-sim-td-lte-v1-128gb-rmx2086", + "name": "Realme X3 SuperZoom Global Dual SIM TD-LTE V1 128GB RMX2086", + "url": "/v1/smartphones/realme-x3-superzoom-global-dual-sim-td-lte-v1-128gb-rmx2086" + }, + { + "slug": "realme-x3-superzoom-global-dual-sim-td-lte-v1-256gb-rmx2086", + "name": "Realme X3 SuperZoom Global Dual SIM TD-LTE V1 256GB RMX2086", + "url": "/v1/smartphones/realme-x3-superzoom-global-dual-sim-td-lte-v1-256gb-rmx2086" + }, + { + "slug": "realme-x50", + "name": "Realme X50", + "url": "/v1/smartphones/realme-x50" + }, + { + "slug": "realme-x50-5g-master-edition-dual-sim-td-lte-cn-256gb-rmx2025", + "name": "Realme X50 5G Master Edition Dual SIM TD-LTE CN 256GB RMX2025", + "url": "/v1/smartphones/realme-x50-5g-master-edition-dual-sim-td-lte-cn-256gb-rmx2025" + }, + { + "slug": "realme-x50-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx2025-rmx2025cn", + "name": "Realme X50 5G Premium Edition Dual SIM TD-LTE CN 256GB RMX2025 / RMX2025CN", + "url": "/v1/smartphones/realme-x50-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx2025-rmx2025cn" + }, + { + "slug": "realme-x50-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2025-rmx2051", + "name": "Realme X50 5G Standard Edition Dual SIM TD-LTE CN 128GB RMX2025 / RMX2051", + "url": "/v1/smartphones/realme-x50-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2025-rmx2051" + }, + { + "slug": "realme-x50-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx2025", + "name": "Realme X50 5G Standard Edition Dual SIM TD-LTE CN 256GB RMX2025", + "url": "/v1/smartphones/realme-x50-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx2025" + }, + { + "slug": "realme-x50-5g-standard-edition-dual-sim-td-lte-cn-64gb-rmx2025", + "name": "Realme X50 5G Standard Edition Dual SIM TD-LTE CN 64GB RMX2025", + "url": "/v1/smartphones/realme-x50-5g-standard-edition-dual-sim-td-lte-cn-64gb-rmx2025" + }, + { + "slug": "realme-x50-pro", + "name": "Realme X50 Pro", + "url": "/v1/smartphones/realme-x50-pro" + }, + { + "slug": "realme-x50-pro-5g-player-premium-edition-dual-sim-td-lte-cn-128gb-rmx2072", + "name": "Realme X50 Pro 5G Player Premium Edition Dual SIM TD-LTE CN 128GB RMX2072", + "url": "/v1/smartphones/realme-x50-pro-5g-player-premium-edition-dual-sim-td-lte-cn-128gb-rmx2072" + }, + { + "slug": "realme-x50-pro-5g-player-standard-edition-dual-sim-td-lte-cn-128gb-rmx2072", + "name": "Realme X50 Pro 5G Player Standard Edition Dual SIM TD-LTE CN 128GB RMX2072", + "url": "/v1/smartphones/realme-x50-pro-5g-player-standard-edition-dual-sim-td-lte-cn-128gb-rmx2072" + }, + { + "slug": "realme-x50-pro-5g-player-top-edition-dual-sim-td-lte-cn-128gb-rmx2072", + "name": "Realme X50 Pro 5G Player Top Edition Dual SIM TD-LTE CN 128GB RMX2072", + "url": "/v1/smartphones/realme-x50-pro-5g-player-top-edition-dual-sim-td-lte-cn-128gb-rmx2072" + }, + { + "slug": "realme-x50-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx2071", + "name": "Realme X50 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB RMX2071", + "url": "/v1/smartphones/realme-x50-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx2071" + }, + { + "slug": "realme-x50-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-rmx2076", + "name": "Realme X50 Pro 5G Premium Edition Dual SIM TD-LTE IN 256GB RMX2076", + "url": "/v1/smartphones/realme-x50-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-rmx2076" + }, + { + "slug": "realme-x50-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-rmx2075", + "name": "Realme X50 Pro 5G Premium Edition Global Dual SIM TD-LTE 128GB RMX2075", + "url": "/v1/smartphones/realme-x50-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-rmx2075" + }, + { + "slug": "realme-x50-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-rmx2075", + "name": "Realme X50 Pro 5G Premium Edition Global Dual SIM TD-LTE 256GB RMX2075", + "url": "/v1/smartphones/realme-x50-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-rmx2075" + }, + { + "slug": "realme-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2071", + "name": "Realme X50 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB RMX2071", + "url": "/v1/smartphones/realme-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2071" + }, + { + "slug": "realme-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx2071", + "name": "Realme X50 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB RMX2071", + "url": "/v1/smartphones/realme-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx2071" + }, + { + "slug": "realme-x50-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-rmx2076", + "name": "Realme X50 Pro 5G Standard Edition Dual SIM TD-LTE IN 128GB RMX2076", + "url": "/v1/smartphones/realme-x50-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-rmx2076" + }, + { + "slug": "realme-x50-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-rmx2075", + "name": "Realme X50 Pro 5G Standard Edition Global Dual SIM TD-LTE 128GB RMX2075", + "url": "/v1/smartphones/realme-x50-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-rmx2075" + }, + { + "slug": "realme-x50m", + "name": "Realme X50m", + "url": "/v1/smartphones/realme-x50m" + }, + { + "slug": "realme-x50m-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2142", + "name": "Realme X50m 5G Premium Edition Dual SIM TD-LTE CN 128GB RMX2142", + "url": "/v1/smartphones/realme-x50m-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2142" + }, + { + "slug": "realme-x50m-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2142", + "name": "Realme X50m 5G Standard Edition Dual SIM TD-LTE CN 128GB RMX2142", + "url": "/v1/smartphones/realme-x50m-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2142" + }, + { + "slug": "realme-x50t", + "name": "Realme X50t", + "url": "/v1/smartphones/realme-x50t" + }, + { + "slug": "realme-x50t-5g-dual-sim-td-lte-cn-128gb-rmx2052-rmx2052cn", + "name": "Realme X50t 5G Dual SIM TD-LTE CN 128GB RMX2052 / RMX2052CN", + "url": "/v1/smartphones/realme-x50t-5g-dual-sim-td-lte-cn-128gb-rmx2052-rmx2052cn" + }, + { + "slug": "realme-x7", + "name": "Realme X7", + "url": "/v1/smartphones/realme-x7" + }, + { + "slug": "realme-x7-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2176", + "name": "Realme X7 5G Premium Edition Dual SIM TD-LTE CN 128GB RMX2176", + "url": "/v1/smartphones/realme-x7-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2176" + }, + { + "slug": "realme-x7-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2176", + "name": "Realme X7 5G Standard Edition Dual SIM TD-LTE CN 128GB RMX2176", + "url": "/v1/smartphones/realme-x7-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2176" + }, + { + "slug": "realme-x7-max", + "name": "Realme X7 Max", + "url": "/v1/smartphones/realme-x7-max" + }, + { + "slug": "realme-x7-max-5g-2021-premium-edition-dual-sim-td-lte-in-128gb", + "name": "Realme X7 Max 5G 2021 Premium Edition Dual SIM TD-LTE IN 128GB", + "url": "/v1/smartphones/realme-x7-max-5g-2021-premium-edition-dual-sim-td-lte-in-128gb" + }, + { + "slug": "realme-x7-max-5g-2021-top-edition-dual-sim-td-lte-in-256gb-rmx3031", + "name": "Realme X7 Max 5G 2021 Top Edition Dual SIM TD-LTE IN 256GB RMX3031", + "url": "/v1/smartphones/realme-x7-max-5g-2021-top-edition-dual-sim-td-lte-in-256gb-rmx3031" + }, + { + "slug": "realme-x7-pro", + "name": "Realme X7 Pro", + "url": "/v1/smartphones/realme-x7-pro" + }, + { + "slug": "realme-x7-pro-5g-dual-sim-td-lte-cn-128gb-rmx2121", + "name": "Realme X7 Pro 5G Dual SIM TD-LTE CN 128GB RMX2121", + "url": "/v1/smartphones/realme-x7-pro-5g-dual-sim-td-lte-cn-128gb-rmx2121" + }, + { + "slug": "realme-x7-pro-5g-dual-sim-td-lte-cn-256gb-rmx2121", + "name": "Realme X7 Pro 5G Dual SIM TD-LTE CN 256GB RMX2121", + "url": "/v1/smartphones/realme-x7-pro-5g-dual-sim-td-lte-cn-256gb-rmx2121" + }, + { + "slug": "realme-xt-premium-edition-dual-sim-td-lte-v1-in-id-pk-th-vn-ph-128gb-rmx1921", + "name": "Realme XT Premium Edition Dual SIM TD-LTE V1 IN ID PK TH VN PH 128GB RMX1921", + "url": "/v1/smartphones/realme-xt-premium-edition-dual-sim-td-lte-v1-in-id-pk-th-vn-ph-128gb-rmx1921" + }, + { + "slug": "realme-xt-premium-edition-dual-sim-td-lte-v1-in-vn-64gb-rmx1921", + "name": "Realme XT Premium Edition Dual SIM TD-LTE V1 IN VN 64GB RMX1921", + "url": "/v1/smartphones/realme-xt-premium-edition-dual-sim-td-lte-v1-in-vn-64gb-rmx1921" + }, + { + "slug": "realme-xt-premium-edition-dual-sim-td-lte-v2-ru-128gb-rmx1921", + "name": "Realme XT Premium Edition Dual SIM TD-LTE V2 RU 128GB RMX1921", + "url": "/v1/smartphones/realme-xt-premium-edition-dual-sim-td-lte-v2-ru-128gb-rmx1921" + }, + { + "slug": "realme-xt-premium-edition-global-dual-sim-td-lte-v2-128gb-rmx1921", + "name": "Realme XT Premium Edition Global Dual SIM TD-LTE V2 128GB RMX1921", + "url": "/v1/smartphones/realme-xt-premium-edition-global-dual-sim-td-lte-v2-128gb-rmx1921" + }, + { + "slug": "realme-xt-standard-edition-dual-sim-td-lte-v1-id-128gb-rmx1921", + "name": "Realme XT Standard Edition Dual SIM TD-LTE V1 ID 128GB RMX1921", + "url": "/v1/smartphones/realme-xt-standard-edition-dual-sim-td-lte-v1-id-128gb-rmx1921" + }, + { + "slug": "realme-xt-standard-edition-dual-sim-td-lte-v1-in-vn-64gb-rmx1921", + "name": "Realme XT Standard Edition Dual SIM TD-LTE V1 IN VN 64GB RMX1921", + "url": "/v1/smartphones/realme-xt-standard-edition-dual-sim-td-lte-v1-in-vn-64gb-rmx1921" + }, + { + "slug": "redmi-10", + "name": "Redmi 10", + "url": "/v1/smartphones/redmi-10" + }, + { + "slug": "redmi-10-2021-premium-edition", + "name": "Redmi 10 2021 Premium Edition", + "url": "/v1/smartphones/redmi-10-2021-premium-edition" + }, + { + "slug": "redmi-10-2021-premium-edition-dual-sim-td-lte-latam-128gb-21061119al", + "name": "Redmi 10 2021 Premium Edition Dual SIM TD-LTE LATAM 128GB 21061119AL", + "url": "/v1/smartphones/redmi-10-2021-premium-edition-dual-sim-td-lte-latam-128gb-21061119al" + }, + { + "slug": "redmi-10-2021-premium-edition-global-dual-sim-td-lte-128gb-21061119ag", + "name": "Redmi 10 2021 Premium Edition Global Dual SIM TD-LTE 128GB 21061119AG", + "url": "/v1/smartphones/redmi-10-2021-premium-edition-global-dual-sim-td-lte-128gb-21061119ag" + }, + { + "slug": "redmi-10-2021-premium-edition-global-dual-sim-td-lte-128gb-21061119dg", + "name": "Redmi 10 2021 Premium Edition Global Dual SIM TD-LTE 128GB 21061119DG", + "url": "/v1/smartphones/redmi-10-2021-premium-edition-global-dual-sim-td-lte-128gb-21061119dg" + }, + { + "slug": "redmi-10-2021-standard-edition", + "name": "Redmi 10 2021 Standard Edition", + "url": "/v1/smartphones/redmi-10-2021-standard-edition" + }, + { + "slug": "redmi-10-2021-standard-edition-dual-sim-td-lte-latam-128gb-21061119al", + "name": "Redmi 10 2021 Standard Edition Dual SIM TD-LTE LATAM 128GB 21061119AL", + "url": "/v1/smartphones/redmi-10-2021-standard-edition-dual-sim-td-lte-latam-128gb-21061119al" + }, + { + "slug": "redmi-10-2021-standard-edition-dual-sim-td-lte-latam-64gb-21061119al", + "name": "Redmi 10 2021 Standard Edition Dual SIM TD-LTE LATAM 64GB 21061119AL", + "url": "/v1/smartphones/redmi-10-2021-standard-edition-dual-sim-td-lte-latam-64gb-21061119al" + }, + { + "slug": "redmi-10-2021-standard-edition-global-dual-sim-td-lte-128gb-21061119ag", + "name": "Redmi 10 2021 Standard Edition Global Dual SIM TD-LTE 128GB 21061119AG", + "url": "/v1/smartphones/redmi-10-2021-standard-edition-global-dual-sim-td-lte-128gb-21061119ag" + }, + { + "slug": "redmi-10-2021-standard-edition-global-dual-sim-td-lte-128gb-21061119dg", + "name": "Redmi 10 2021 Standard Edition Global Dual SIM TD-LTE 128GB 21061119DG", + "url": "/v1/smartphones/redmi-10-2021-standard-edition-global-dual-sim-td-lte-128gb-21061119dg" + }, + { + "slug": "redmi-10-2021-standard-edition-global-dual-sim-td-lte-64gb-21061119ag", + "name": "Redmi 10 2021 Standard Edition Global Dual SIM TD-LTE 64GB 21061119AG", + "url": "/v1/smartphones/redmi-10-2021-standard-edition-global-dual-sim-td-lte-64gb-21061119ag" + }, + { + "slug": "redmi-10-2021-standard-edition-global-dual-sim-td-lte-64gb-21061119dg", + "name": "Redmi 10 2021 Standard Edition Global Dual SIM TD-LTE 64GB 21061119DG", + "url": "/v1/smartphones/redmi-10-2021-standard-edition-global-dual-sim-td-lte-64gb-21061119dg" + }, + { + "slug": "redmi-10-2022-premium-edition", + "name": "Redmi 10 2022 Premium Edition", + "url": "/v1/smartphones/redmi-10-2022-premium-edition" + }, + { + "slug": "redmi-10-2022-premium-edition-global-dual-sim-td-lte-128gb-21121119sg", + "name": "Redmi 10 2022 Premium Edition Global Dual SIM TD-LTE 128GB 21121119SG", + "url": "/v1/smartphones/redmi-10-2022-premium-edition-global-dual-sim-td-lte-128gb-21121119sg" + }, + { + "slug": "redmi-10-2022-standard-edition", + "name": "Redmi 10 2022 Standard Edition", + "url": "/v1/smartphones/redmi-10-2022-standard-edition" + }, + { + "slug": "redmi-10-2022-standard-edition-global-dual-sim-td-lte-128gb-21121119sg", + "name": "Redmi 10 2022 Standard Edition Global Dual SIM TD-LTE 128GB 21121119SG", + "url": "/v1/smartphones/redmi-10-2022-standard-edition-global-dual-sim-td-lte-128gb-21121119sg" + }, + { + "slug": "redmi-10-2022-standard-edition-global-dual-sim-td-lte-64gb-21121119sg", + "name": "Redmi 10 2022 Standard Edition Global Dual SIM TD-LTE 64GB 21121119SG", + "url": "/v1/smartphones/redmi-10-2022-standard-edition-global-dual-sim-td-lte-64gb-21121119sg" + }, + { + "slug": "redmi-10-prime-2021-premium-edition", + "name": "Redmi 10 Prime 2021 Premium Edition", + "url": "/v1/smartphones/redmi-10-prime-2021-premium-edition" + }, + { + "slug": "redmi-10-prime-2021-premium-edition-dual-sim-td-lte-in-128gb-21061119bi", + "name": "Redmi 10 Prime 2021 Premium Edition Dual SIM TD-LTE IN 128GB 21061119BI", + "url": "/v1/smartphones/redmi-10-prime-2021-premium-edition-dual-sim-td-lte-in-128gb-21061119bi" + }, + { + "slug": "redmi-10-prime-2021-standard-edition", + "name": "Redmi 10 Prime 2021 Standard Edition", + "url": "/v1/smartphones/redmi-10-prime-2021-standard-edition" + }, + { + "slug": "redmi-10-prime-2021-standard-edition-dual-sim-td-lte-in-64gb-21061119bi", + "name": "Redmi 10 Prime 2021 Standard Edition Dual SIM TD-LTE IN 64GB 21061119BI", + "url": "/v1/smartphones/redmi-10-prime-2021-standard-edition-dual-sim-td-lte-in-64gb-21061119bi" + }, + { + "slug": "redmi-10-prime-2022-premium-edition", + "name": "Redmi 10 Prime 2022 Premium Edition", + "url": "/v1/smartphones/redmi-10-prime-2022-premium-edition" + }, + { + "slug": "redmi-10-prime-2022-standard-edition", + "name": "Redmi 10 Prime 2022 Standard Edition", + "url": "/v1/smartphones/redmi-10-prime-2022-standard-edition" + }, + { + "slug": "redmi-10a-base-edition", + "name": "Redmi 10A Base Edition", + "url": "/v1/smartphones/redmi-10a-base-edition" + }, + { + "slug": "redmi-10a-premium-edition", + "name": "Redmi 10A Premium Edition", + "url": "/v1/smartphones/redmi-10a-premium-edition" + }, + { + "slug": "redmi-10a-standard-edition", + "name": "Redmi 10A Standard Edition", + "url": "/v1/smartphones/redmi-10a-standard-edition" + }, + { + "slug": "redmi-10a-top-edition", + "name": "Redmi 10A Top Edition", + "url": "/v1/smartphones/redmi-10a-top-edition" + }, + { + "slug": "redmi-10x", + "name": "Redmi 10X", + "url": "/v1/smartphones/redmi-10x" + }, + { + "slug": "redmi-10x-4g-premium-edition-dual-sim-td-lte-cn-128gb-m2003j15sc", + "name": "Redmi 10X 4G Premium Edition Dual SIM TD-LTE CN 128GB M2003J15SC", + "url": "/v1/smartphones/redmi-10x-4g-premium-edition-dual-sim-td-lte-cn-128gb-m2003j15sc" + }, + { + "slug": "redmi-10x-4g-standard-edition-dual-sim-td-lte-cn-128gb-m2003j15sc", + "name": "Redmi 10X 4G Standard Edition Dual SIM TD-LTE CN 128GB M2003J15SC", + "url": "/v1/smartphones/redmi-10x-4g-standard-edition-dual-sim-td-lte-cn-128gb-m2003j15sc" + }, + { + "slug": "redmi-10x-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2004j7ac", + "name": "Redmi 10X 5G Premium Edition Dual SIM TD-LTE CN 128GB M2004J7AC", + "url": "/v1/smartphones/redmi-10x-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2004j7ac" + }, + { + "slug": "redmi-10x-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2004j7ac", + "name": "Redmi 10X 5G Standard Edition Dual SIM TD-LTE CN 128GB M2004J7AC", + "url": "/v1/smartphones/redmi-10x-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2004j7ac" + }, + { + "slug": "redmi-10x-pro", + "name": "Redmi 10X Pro", + "url": "/v1/smartphones/redmi-10x-pro" + }, + { + "slug": "redmi-10x-pro-5g-dual-sim-td-lte-cn-128gb-m2004j7bc", + "name": "Redmi 10X Pro 5G Dual SIM TD-LTE CN 128GB M2004J7BC", + "url": "/v1/smartphones/redmi-10x-pro-5g-dual-sim-td-lte-cn-128gb-m2004j7bc" + }, + { + "slug": "redmi-10x-pro-5g-dual-sim-td-lte-cn-256gb-m2004j7bc", + "name": "Redmi 10X Pro 5G Dual SIM TD-LTE CN 256GB M2004J7BC", + "url": "/v1/smartphones/redmi-10x-pro-5g-dual-sim-td-lte-cn-256gb-m2004j7bc" + }, + { + "slug": "redmi-11-prime", + "name": "Redmi 11 Prime", + "url": "/v1/smartphones/redmi-11-prime" + }, + { + "slug": "redmi-11-prime-2022", + "name": "Redmi 11 Prime 2022", + "url": "/v1/smartphones/redmi-11-prime-2022" + }, + { + "slug": "redmi-12c-nfc-premium-edition", + "name": "Redmi 12C NFC Premium Edition", + "url": "/v1/smartphones/redmi-12c-nfc-premium-edition" + }, + { + "slug": "redmi-12c-nfc-standard-edition", + "name": "Redmi 12C NFC Standard Edition", + "url": "/v1/smartphones/redmi-12c-nfc-standard-edition" + }, + { + "slug": "redmi-12c-premium-edition", + "name": "Redmi 12C Premium Edition", + "url": "/v1/smartphones/redmi-12c-premium-edition" + }, + { + "slug": "redmi-12c-standard-edition", + "name": "Redmi 12C Standard Edition", + "url": "/v1/smartphones/redmi-12c-standard-edition" + }, + { + "slug": "redmi-12c-top-edition", + "name": "Redmi 12C Top Edition", + "url": "/v1/smartphones/redmi-12c-top-edition" + }, + { + "slug": "redmi-13c", + "name": "Redmi 13C", + "url": "/v1/smartphones/redmi-13c" + }, + { + "slug": "redmi-14c-5g", + "name": "Redmi 14C 5G", + "url": "/v1/smartphones/redmi-14c-5g" + }, + { + "slug": "redmi-6", + "name": "Redmi 6", + "url": "/v1/smartphones/redmi-6" + }, + { + "slug": "redmi-6-dual-sim-global-td-lte-32gb-m1804c3dg", + "name": "Redmi 6 Dual SIM Global TD-LTE 32GB M1804C3DG", + "url": "/v1/smartphones/redmi-6-dual-sim-global-td-lte-32gb-m1804c3dg" + }, + { + "slug": "redmi-6-dual-sim-global-td-lte-64gb-m1804c3dg", + "name": "Redmi 6 Dual SIM Global TD-LTE 64GB M1804C3DG", + "url": "/v1/smartphones/redmi-6-dual-sim-global-td-lte-64gb-m1804c3dg" + }, + { + "slug": "redmi-6-dual-sim-td-lte-apac-32gb-m1804c3dh", + "name": "Redmi 6 Dual SIM TD-LTE APAC 32GB M1804C3DH", + "url": "/v1/smartphones/redmi-6-dual-sim-td-lte-apac-32gb-m1804c3dh" + }, + { + "slug": "redmi-6-dual-sim-td-lte-cn-32gb-m1804c3dc-m1804c3de", + "name": "Redmi 6 Dual SIM TD-LTE CN 32GB M1804C3DC / M1804C3DE", + "url": "/v1/smartphones/redmi-6-dual-sim-td-lte-cn-32gb-m1804c3dc-m1804c3de" + }, + { + "slug": "redmi-6-dual-sim-td-lte-cn-32gb-m1804c3dt", + "name": "Redmi 6 Dual SIM TD-LTE CN 32GB M1804C3DT", + "url": "/v1/smartphones/redmi-6-dual-sim-td-lte-cn-32gb-m1804c3dt" + }, + { + "slug": "redmi-6-dual-sim-td-lte-cn-64gb-m1804c3dc-m1804c3de", + "name": "Redmi 6 Dual SIM TD-LTE CN 64GB M1804C3DC / M1804C3DE", + "url": "/v1/smartphones/redmi-6-dual-sim-td-lte-cn-64gb-m1804c3dc-m1804c3de" + }, + { + "slug": "redmi-6-dual-sim-td-lte-cn-64gb-m1804c3dt", + "name": "Redmi 6 Dual SIM TD-LTE CN 64GB M1804C3DT", + "url": "/v1/smartphones/redmi-6-dual-sim-td-lte-cn-64gb-m1804c3dt" + }, + { + "slug": "redmi-6-pro-dual-sim-td-lte-in-32gb-m1805d1sh", + "name": "Redmi 6 Pro Dual SIM TD-LTE IN 32GB M1805D1SH", + "url": "/v1/smartphones/redmi-6-pro-dual-sim-td-lte-in-32gb-m1805d1sh" + }, + { + "slug": "redmi-6-pro-dual-sim-td-lte-in-64gb-m1805d1sh", + "name": "Redmi 6 Pro Dual SIM TD-LTE IN 64GB M1805D1SH", + "url": "/v1/smartphones/redmi-6-pro-dual-sim-td-lte-in-64gb-m1805d1sh" + }, + { + "slug": "redmi-6-pro-pemium-edition-dual-sim-td-lte-64gb-cn-m1805d1se-m1805d1sc", + "name": "Redmi 6 Pro Pemium Edition Dual SIM TD-LTE 64GB CN M1805D1SE / M1805D1SC", + "url": "/v1/smartphones/redmi-6-pro-pemium-edition-dual-sim-td-lte-64gb-cn-m1805d1se-m1805d1sc" + }, + { + "slug": "redmi-6-pro-premium-edition-dual-sim-td-lte-32gb-cn-m1805d1se-m1805d1sc", + "name": "Redmi 6 Pro Premium Edition Dual SIM TD-LTE 32GB CN M1805D1SE / M1805D1SC", + "url": "/v1/smartphones/redmi-6-pro-premium-edition-dual-sim-td-lte-32gb-cn-m1805d1se-m1805d1sc" + }, + { + "slug": "redmi-6-pro-premium-edition-dual-sim-td-lte-64gb-cn-m1805d1st", + "name": "Redmi 6 Pro Premium Edition Dual SIM TD-LTE 64GB CN M1805D1ST", + "url": "/v1/smartphones/redmi-6-pro-premium-edition-dual-sim-td-lte-64gb-cn-m1805d1st" + }, + { + "slug": "redmi-6-pro-standard-edition-dual-sim-td-lte-32gb-cn-m1805d1se-m1805d1sc", + "name": "Redmi 6 Pro Standard Edition Dual SIM TD-LTE 32GB CN M1805D1SE / M1805D1SC", + "url": "/v1/smartphones/redmi-6-pro-standard-edition-dual-sim-td-lte-32gb-cn-m1805d1se-m1805d1sc" + }, + { + "slug": "redmi-6-pro-stardard-edition-dual-sim-td-lte-32gb-cn-m1805d1st", + "name": "Redmi 6 Pro Stardard Edition Dual SIM TD-LTE 32GB CN M1805D1ST", + "url": "/v1/smartphones/redmi-6-pro-stardard-edition-dual-sim-td-lte-32gb-cn-m1805d1st" + }, + { + "slug": "redmi-6a", + "name": "Redmi 6A", + "url": "/v1/smartphones/redmi-6a" + }, + { + "slug": "redmi-6a-dual-sim-global-td-lte-16gb-m1804c3cg", + "name": "Redmi 6A Dual SIM Global TD-LTE 16GB M1804C3CG", + "url": "/v1/smartphones/redmi-6a-dual-sim-global-td-lte-16gb-m1804c3cg" + }, + { + "slug": "redmi-6a-dual-sim-td-lte-apac-16gb-m1804c3ch", + "name": "Redmi 6A Dual SIM TD-LTE APAC 16GB M1804C3CH", + "url": "/v1/smartphones/redmi-6a-dual-sim-td-lte-apac-16gb-m1804c3ch" + }, + { + "slug": "redmi-6a-dual-sim-td-lte-cn-16gb-m1804c3cc-m1804c3ce", + "name": "Redmi 6A Dual SIM TD-LTE CN 16GB M1804C3CC / M1804C3CE", + "url": "/v1/smartphones/redmi-6a-dual-sim-td-lte-cn-16gb-m1804c3cc-m1804c3ce" + }, + { + "slug": "redmi-6a-dual-sim-td-lte-cn-16gb-m1804c3ct", + "name": "Redmi 6A Dual SIM TD-LTE CN 16GB M1804C3CT", + "url": "/v1/smartphones/redmi-6a-dual-sim-td-lte-cn-16gb-m1804c3ct" + }, + { + "slug": "redmi-6a-dual-sim-td-lte-cn-32gb-m1804c3cc-m1804c3ce", + "name": "Redmi 6A Dual SIM TD-LTE CN 32GB M1804C3CC / M1804C3CE", + "url": "/v1/smartphones/redmi-6a-dual-sim-td-lte-cn-32gb-m1804c3cc-m1804c3ce" + }, + { + "slug": "redmi-6a-dual-sim-td-lte-cn-32gb-m1804c3ct", + "name": "Redmi 6A Dual SIM TD-LTE CN 32GB M1804C3CT", + "url": "/v1/smartphones/redmi-6a-dual-sim-td-lte-cn-32gb-m1804c3ct" + }, + { + "slug": "redmi-7-dual-sim-td-lte-apac-64gb-m1810f6lh", + "name": "Redmi 7 Dual SIM TD-LTE APAC 64GB M1810F6LH", + "url": "/v1/smartphones/redmi-7-dual-sim-td-lte-apac-64gb-m1810f6lh" + }, + { + "slug": "redmi-7-dual-sim-td-lte-cn-16gb-m1810f6le", + "name": "Redmi 7 Dual SIM TD-LTE CN 16GB M1810F6LE", + "url": "/v1/smartphones/redmi-7-dual-sim-td-lte-cn-16gb-m1810f6le" + }, + { + "slug": "redmi-7-dual-sim-td-lte-cn-32gb-m1810f6le", + "name": "Redmi 7 Dual SIM TD-LTE CN 32GB M1810F6LE", + "url": "/v1/smartphones/redmi-7-dual-sim-td-lte-cn-32gb-m1810f6le" + }, + { + "slug": "redmi-7-dual-sim-td-lte-cn-64gb-m1810f6le", + "name": "Redmi 7 Dual SIM TD-LTE CN 64GB M1810F6LE", + "url": "/v1/smartphones/redmi-7-dual-sim-td-lte-cn-64gb-m1810f6le" + }, + { + "slug": "redmi-7-global-dual-sim-td-lte-16gb-m1810f6lg", + "name": "Redmi 7 Global Dual SIM TD-LTE 16GB M1810F6LG", + "url": "/v1/smartphones/redmi-7-global-dual-sim-td-lte-16gb-m1810f6lg" + }, + { + "slug": "redmi-7-global-dual-sim-td-lte-32gb-m1810f6lg", + "name": "Redmi 7 Global Dual SIM TD-LTE 32GB M1810F6LG", + "url": "/v1/smartphones/redmi-7-global-dual-sim-td-lte-32gb-m1810f6lg" + }, + { + "slug": "redmi-7-global-dual-sim-td-lte-64gb-m1810f6lg", + "name": "Redmi 7 Global Dual SIM TD-LTE 64GB M1810F6LG", + "url": "/v1/smartphones/redmi-7-global-dual-sim-td-lte-64gb-m1810f6lg" + }, + { + "slug": "redmi-7-premium-edition-dual-sim-td-lte-in-32gb-m1810f6li", + "name": "Redmi 7 Premium Edition Dual SIM TD-LTE IN 32GB M1810F6LI", + "url": "/v1/smartphones/redmi-7-premium-edition-dual-sim-td-lte-in-32gb-m1810f6li" + }, + { + "slug": "redmi-7-standard-edition-dual-sim-td-lte-in-32gb-m1810f6li", + "name": "Redmi 7 Standard Edition Dual SIM TD-LTE IN 32GB M1810F6LI", + "url": "/v1/smartphones/redmi-7-standard-edition-dual-sim-td-lte-in-32gb-m1810f6li" + }, + { + "slug": "redmi-7a-dual-sim-td-lte-apac-16gb-m1903c3eh", + "name": "Redmi 7A Dual SIM TD-LTE APAC 16GB M1903C3EH", + "url": "/v1/smartphones/redmi-7a-dual-sim-td-lte-apac-16gb-m1903c3eh" + }, + { + "slug": "redmi-7a-dual-sim-td-lte-apac-32gb-m1903c3eh", + "name": "Redmi 7A Dual SIM TD-LTE APAC 32GB M1903C3EH", + "url": "/v1/smartphones/redmi-7a-dual-sim-td-lte-apac-32gb-m1903c3eh" + }, + { + "slug": "redmi-7a-dual-sim-td-lte-in-16gb-m1903c3ei-mzb7995in-mzb7798in-mzb7799in", + "name": "Redmi 7A Dual SIM TD-LTE IN 16GB M1903C3EI / MZB7995IN / MZB7798IN / MZB7799IN", + "url": "/v1/smartphones/redmi-7a-dual-sim-td-lte-in-16gb-m1903c3ei-mzb7995in-mzb7798in-mzb7799in" + }, + { + "slug": "redmi-7a-dual-sim-td-lte-in-32gb-m1903c3ei-mzb7989in-mzb7800in-mzb8008in", + "name": "Redmi 7A Dual SIM TD-LTE IN 32GB M1903C3EI / MZB7989IN / MZB7800IN / MZB8008IN", + "url": "/v1/smartphones/redmi-7a-dual-sim-td-lte-in-32gb-m1903c3ei-mzb7989in-mzb7800in-mzb8008in" + }, + { + "slug": "redmi-7a-global-dual-sim-td-lte-16gb-m1903c3eg", + "name": "Redmi 7A Global Dual SIM TD-LTE 16GB M1903C3EG", + "url": "/v1/smartphones/redmi-7a-global-dual-sim-td-lte-16gb-m1903c3eg" + }, + { + "slug": "redmi-7a-global-dual-sim-td-lte-32gb-m1903c3eg", + "name": "Redmi 7A Global Dual SIM TD-LTE 32GB M1903C3EG", + "url": "/v1/smartphones/redmi-7a-global-dual-sim-td-lte-32gb-m1903c3eg" + }, + { + "slug": "redmi-7a-premium-edition-dual-sim-td-lte-32gb-cn-m1903c3ee-m1903c3ec", + "name": "Redmi 7A Premium Edition Dual SIM TD-LTE 32GB CN M1903C3EE / M1903C3EC", + "url": "/v1/smartphones/redmi-7a-premium-edition-dual-sim-td-lte-32gb-cn-m1903c3ee-m1903c3ec" + }, + { + "slug": "redmi-7a-premium-edition-dual-sim-td-lte-32gb-cn-m1903c3et", + "name": "Redmi 7A Premium Edition Dual SIM TD-LTE 32GB CN M1903C3ET", + "url": "/v1/smartphones/redmi-7a-premium-edition-dual-sim-td-lte-32gb-cn-m1903c3et" + }, + { + "slug": "redmi-7a-standard-edition-dual-sim-td-lte-16gb-cn-m1903c3ee-m1903c3ec", + "name": "Redmi 7A Standard Edition Dual SIM TD-LTE 16GB CN M1903C3EE / M1903C3EC", + "url": "/v1/smartphones/redmi-7a-standard-edition-dual-sim-td-lte-16gb-cn-m1903c3ee-m1903c3ec" + }, + { + "slug": "redmi-7a-standard-edition-dual-sim-td-lte-32gb-cn-m1903c3ee-m1903c3ec", + "name": "Redmi 7A Standard Edition Dual SIM TD-LTE 32GB CN M1903C3EE / M1903C3EC", + "url": "/v1/smartphones/redmi-7a-standard-edition-dual-sim-td-lte-32gb-cn-m1903c3ee-m1903c3ec" + }, + { + "slug": "redmi-8-dual-sim-td-lte-apac-64gb-m1908c3ih", + "name": "Redmi 8 Dual SIM TD-LTE APAC 64GB M1908C3IH", + "url": "/v1/smartphones/redmi-8-dual-sim-td-lte-apac-64gb-m1908c3ih" + }, + { + "slug": "redmi-8-dual-sim-td-lte-cn-32gb-m1908c3ie-m1908c3ic", + "name": "Redmi 8 Dual SIM TD-LTE CN 32GB M1908C3IE / M1908C3IC", + "url": "/v1/smartphones/redmi-8-dual-sim-td-lte-cn-32gb-m1908c3ie-m1908c3ic" + }, + { + "slug": "redmi-8-dual-sim-td-lte-cn-64gb-m1908c3ie-m1908c3ic", + "name": "Redmi 8 Dual SIM TD-LTE CN 64GB M1908C3IE / M1908C3IC", + "url": "/v1/smartphones/redmi-8-dual-sim-td-lte-cn-64gb-m1908c3ie-m1908c3ic" + }, + { + "slug": "redmi-8-dual-sim-td-lte-in-64gb-mzb8254in-mzb8255in-mzb8256in-mzb8257in", + "name": "Redmi 8 Dual SIM TD-LTE IN 64GB MZB8254IN / MZB8255IN / MZB8256IN / MZB8257IN", + "url": "/v1/smartphones/redmi-8-dual-sim-td-lte-in-64gb-mzb8254in-mzb8255in-mzb8256in-mzb8257in" + }, + { + "slug": "redmi-8-global-dual-sim-td-lte-32gb-m1908c3ig", + "name": "Redmi 8 Global Dual SIM TD-LTE 32GB M1908C3IG", + "url": "/v1/smartphones/redmi-8-global-dual-sim-td-lte-32gb-m1908c3ig" + }, + { + "slug": "redmi-8a-dual-premium-edition-dual-sim-td-lte-in-32gb-m2001c3k3i-redmi-8a-pro", + "name": "Redmi 8A Dual Premium Edition Dual SIM TD-LTE IN 32GB M2001C3K3I / Redmi 8A Pro", + "url": "/v1/smartphones/redmi-8a-dual-premium-edition-dual-sim-td-lte-in-32gb-m2001c3k3i-redmi-8a-pro" + }, + { + "slug": "redmi-8a-dual-standard-edition-dual-sim-td-lte-in-32gb-m2001c3k3i-redmi-8a-pro", + "name": "Redmi 8A Dual Standard Edition Dual SIM TD-LTE IN 32GB M2001C3K3I / Redmi 8A Pro", + "url": "/v1/smartphones/redmi-8a-dual-standard-edition-dual-sim-td-lte-in-32gb-m2001c3k3i-redmi-8a-pro" + }, + { + "slug": "redmi-8a-premium-edition-dual-sim-td-lte-cn-32gb-m1908c3ke-m1908c3kc", + "name": "Redmi 8A Premium Edition Dual SIM TD-LTE CN 32GB M1908C3KE / M1908C3KC", + "url": "/v1/smartphones/redmi-8a-premium-edition-dual-sim-td-lte-cn-32gb-m1908c3ke-m1908c3kc" + }, + { + "slug": "redmi-8a-premium-edition-dual-sim-td-lte-cn-64gb-m1908c3ke-m1908c3kc", + "name": "Redmi 8A Premium Edition Dual SIM TD-LTE CN 64GB M1908C3KE / M1908C3KC", + "url": "/v1/smartphones/redmi-8a-premium-edition-dual-sim-td-lte-cn-64gb-m1908c3ke-m1908c3kc" + }, + { + "slug": "redmi-8a-premium-edition-dual-sim-td-lte-in-32gb-m1908c3ki", + "name": "Redmi 8A Premium Edition Dual SIM TD-LTE IN 32GB M1908C3KI", + "url": "/v1/smartphones/redmi-8a-premium-edition-dual-sim-td-lte-in-32gb-m1908c3ki" + }, + { + "slug": "redmi-8a-standard-edition-dual-sim-td-lte-in-32gb-m1908c3ki", + "name": "Redmi 8A Standard Edition Dual SIM TD-LTE IN 32GB M1908C3KI", + "url": "/v1/smartphones/redmi-8a-standard-edition-dual-sim-td-lte-in-32gb-m1908c3ki" + }, + { + "slug": "redmi-8a-standard-edition-global-dual-sim-td-lte-32gb-m1908c3kg", + "name": "Redmi 8A Standard Edition Global Dual SIM TD-LTE 32GB M1908C3KG", + "url": "/v1/smartphones/redmi-8a-standard-edition-global-dual-sim-td-lte-32gb-m1908c3kg" + }, + { + "slug": "redmi-9", + "name": "Redmi 9", + "url": "/v1/smartphones/redmi-9" + }, + { + "slug": "redmi-9-activ-premium-edition", + "name": "Redmi 9 Activ Premium Edition", + "url": "/v1/smartphones/redmi-9-activ-premium-edition" + }, + { + "slug": "redmi-9-activ-standard-edition", + "name": "Redmi 9 Activ Standard Edition", + "url": "/v1/smartphones/redmi-9-activ-standard-edition" + }, + { + "slug": "redmi-9-dual-sim-td-lte-in-128gb-m2006c3mii-redmi-9c", + "name": "Redmi 9 Dual SIM TD-LTE IN 128GB M2006C3MII / Redmi 9C", + "url": "/v1/smartphones/redmi-9-dual-sim-td-lte-in-128gb-m2006c3mii-redmi-9c" + }, + { + "slug": "redmi-9-dual-sim-td-lte-in-64gb-m2006c3mii-redmi-9c", + "name": "Redmi 9 Dual SIM TD-LTE IN 64GB M2006C3MII / Redmi 9C", + "url": "/v1/smartphones/redmi-9-dual-sim-td-lte-in-64gb-m2006c3mii-redmi-9c" + }, + { + "slug": "redmi-9-global-dual-sim-td-lte-32gb-m2004j19g", + "name": "Redmi 9 Global Dual SIM TD-LTE 32GB M2004J19G", + "url": "/v1/smartphones/redmi-9-global-dual-sim-td-lte-32gb-m2004j19g" + }, + { + "slug": "redmi-9-global-dual-sim-td-lte-64gb-m2004j19g", + "name": "Redmi 9 Global Dual SIM TD-LTE 64GB M2004J19G", + "url": "/v1/smartphones/redmi-9-global-dual-sim-td-lte-64gb-m2004j19g" + }, + { + "slug": "redmi-9-power-4g-premium-edition-dual-sim-td-lte-in-128gb-m2010j19si", + "name": "Redmi 9 Power 4G Premium Edition Dual SIM TD-LTE IN 128GB M2010J19SI", + "url": "/v1/smartphones/redmi-9-power-4g-premium-edition-dual-sim-td-lte-in-128gb-m2010j19si" + }, + { + "slug": "redmi-9-power-4g-standard-edition-dual-sim-td-lte-in-128gb-m2010j19si", + "name": "Redmi 9 Power 4G Standard Edition Dual SIM TD-LTE IN 128GB M2010J19SI", + "url": "/v1/smartphones/redmi-9-power-4g-standard-edition-dual-sim-td-lte-in-128gb-m2010j19si" + }, + { + "slug": "redmi-9-power-4g-standard-edition-dual-sim-td-lte-in-64gb-m2010j19si", + "name": "Redmi 9 Power 4G Standard Edition Dual SIM TD-LTE IN 64GB M2010J19SI", + "url": "/v1/smartphones/redmi-9-power-4g-standard-edition-dual-sim-td-lte-in-64gb-m2010j19si" + }, + { + "slug": "redmi-9-premium-edition", + "name": "Redmi 9 Premium Edition", + "url": "/v1/smartphones/redmi-9-premium-edition" + }, + { + "slug": "redmi-9-premium-edition-dual-sim-td-lte-cn-128gb-m2004j19c", + "name": "Redmi 9 Premium Edition Dual SIM TD-LTE CN 128GB M2004J19C", + "url": "/v1/smartphones/redmi-9-premium-edition-dual-sim-td-lte-cn-128gb-m2004j19c" + }, + { + "slug": "redmi-9-prime", + "name": "Redmi 9 Prime", + "url": "/v1/smartphones/redmi-9-prime" + }, + { + "slug": "redmi-9-prime-dual-sim-td-lte-in-128gb-m2004j19i", + "name": "Redmi 9 Prime Dual SIM TD-LTE IN 128GB M2004J19I", + "url": "/v1/smartphones/redmi-9-prime-dual-sim-td-lte-in-128gb-m2004j19i" + }, + { + "slug": "redmi-9-prime-dual-sim-td-lte-in-64gb-m2004j19i", + "name": "Redmi 9 Prime Dual SIM TD-LTE IN 64GB M2004J19I", + "url": "/v1/smartphones/redmi-9-prime-dual-sim-td-lte-in-64gb-m2004j19i" + }, + { + "slug": "redmi-9-standard-edition", + "name": "Redmi 9 Standard Edition", + "url": "/v1/smartphones/redmi-9-standard-edition" + }, + { + "slug": "redmi-9-standard-edition-dual-sim-td-lte-cn-128gb-m2004j19c", + "name": "Redmi 9 Standard Edition Dual SIM TD-LTE CN 128GB M2004J19C", + "url": "/v1/smartphones/redmi-9-standard-edition-dual-sim-td-lte-cn-128gb-m2004j19c" + }, + { + "slug": "redmi-9-standard-edition-dual-sim-td-lte-cn-64gb-m2004j19c", + "name": "Redmi 9 Standard Edition Dual SIM TD-LTE CN 64GB M2004J19C", + "url": "/v1/smartphones/redmi-9-standard-edition-dual-sim-td-lte-cn-64gb-m2004j19c" + }, + { + "slug": "redmi-9a", + "name": "Redmi 9A", + "url": "/v1/smartphones/redmi-9a" + }, + { + "slug": "redmi-9a-dual-sim-td-lte-cn-32gb-m2006c3lc", + "name": "Redmi 9A Dual SIM TD-LTE CN 32GB M2006C3LC", + "url": "/v1/smartphones/redmi-9a-dual-sim-td-lte-cn-32gb-m2006c3lc" + }, + { + "slug": "redmi-9a-global-dual-sim-td-lte-32gb-m2006c3lg", + "name": "Redmi 9A Global Dual SIM TD-LTE 32GB M2006C3LG", + "url": "/v1/smartphones/redmi-9a-global-dual-sim-td-lte-32gb-m2006c3lg" + }, + { + "slug": "redmi-9a-premium-edition", + "name": "Redmi 9A Premium Edition", + "url": "/v1/smartphones/redmi-9a-premium-edition" + }, + { + "slug": "redmi-9a-premium-edition-dual-sim-td-lte-in-32gb-m2006c3li", + "name": "Redmi 9A Premium Edition Dual SIM TD-LTE IN 32GB M2006C3LI", + "url": "/v1/smartphones/redmi-9a-premium-edition-dual-sim-td-lte-in-32gb-m2006c3li" + }, + { + "slug": "redmi-9a-sport-premium-edition", + "name": "Redmi 9A Sport Premium Edition", + "url": "/v1/smartphones/redmi-9a-sport-premium-edition" + }, + { + "slug": "redmi-9a-sport-premium-edition-dual-sim-td-lte-in-32gb-m2006c3li", + "name": "Redmi 9A Sport Premium Edition Dual SIM TD-LTE IN 32GB M2006C3LI", + "url": "/v1/smartphones/redmi-9a-sport-premium-edition-dual-sim-td-lte-in-32gb-m2006c3li" + }, + { + "slug": "redmi-9a-sport-standard-edition", + "name": "Redmi 9A Sport Standard Edition", + "url": "/v1/smartphones/redmi-9a-sport-standard-edition" + }, + { + "slug": "redmi-9a-sport-standard-edition-dual-sim-td-lte-in-32gb-m2006c3li", + "name": "Redmi 9A Sport Standard Edition Dual SIM TD-LTE IN 32GB M2006C3LI", + "url": "/v1/smartphones/redmi-9a-sport-standard-edition-dual-sim-td-lte-in-32gb-m2006c3li" + }, + { + "slug": "redmi-9a-standard-edition", + "name": "Redmi 9A Standard Edition", + "url": "/v1/smartphones/redmi-9a-standard-edition" + }, + { + "slug": "redmi-9a-standard-edition-dual-sim-td-lte-in-32gb-m2006c3li", + "name": "Redmi 9A Standard Edition Dual SIM TD-LTE IN 32GB M2006C3LI", + "url": "/v1/smartphones/redmi-9a-standard-edition-dual-sim-td-lte-in-32gb-m2006c3li" + }, + { + "slug": "redmi-9at-standard-edition", + "name": "Redmi 9AT Standard Edition", + "url": "/v1/smartphones/redmi-9at-standard-edition" + }, + { + "slug": "redmi-9at-standard-edition-global-dual-sim-td-lte-32gb-m2006c3lvg", + "name": "Redmi 9AT Standard Edition Global Dual SIM TD-LTE 32GB M2006C3LVG", + "url": "/v1/smartphones/redmi-9at-standard-edition-global-dual-sim-td-lte-32gb-m2006c3lvg" + }, + { + "slug": "redmi-9c", + "name": "Redmi 9C", + "url": "/v1/smartphones/redmi-9c" + }, + { + "slug": "redmi-9c-global-dual-sim-td-lte-32gb-m2006c3mg", + "name": "Redmi 9C Global Dual SIM TD-LTE 32GB M2006C3MG", + "url": "/v1/smartphones/redmi-9c-global-dual-sim-td-lte-32gb-m2006c3mg" + }, + { + "slug": "redmi-9c-global-dual-sim-td-lte-64gb-m2006c3mg", + "name": "Redmi 9C Global Dual SIM TD-LTE 64GB M2006C3MG", + "url": "/v1/smartphones/redmi-9c-global-dual-sim-td-lte-64gb-m2006c3mg" + }, + { + "slug": "redmi-9c-nfc", + "name": "Redmi 9C NFC", + "url": "/v1/smartphones/redmi-9c-nfc" + }, + { + "slug": "redmi-9c-nfc-global-dual-sim-td-lte-32gb-m2006c3mng", + "name": "Redmi 9C NFC Global Dual SIM TD-LTE 32GB M2006C3MNG", + "url": "/v1/smartphones/redmi-9c-nfc-global-dual-sim-td-lte-32gb-m2006c3mng" + }, + { + "slug": "redmi-9c-nfc-global-dual-sim-td-lte-64gb-m2006c3mng", + "name": "Redmi 9C NFC Global Dual SIM TD-LTE 64GB M2006C3MNG", + "url": "/v1/smartphones/redmi-9c-nfc-global-dual-sim-td-lte-64gb-m2006c3mng" + }, + { + "slug": "redmi-9t-premium-edition-global-dual-sim-td-lte-128gb-m2010j19sg", + "name": "Redmi 9T Premium Edition Global Dual SIM TD-LTE 128GB M2010J19SG", + "url": "/v1/smartphones/redmi-9t-premium-edition-global-dual-sim-td-lte-128gb-m2010j19sg" + }, + { + "slug": "redmi-9t-standard-edition-dual-sim-td-lte-jp-64gb-m2010j19sr", + "name": "Redmi 9T Standard Edition Dual SIM TD-LTE JP 64GB M2010J19SR", + "url": "/v1/smartphones/redmi-9t-standard-edition-dual-sim-td-lte-jp-64gb-m2010j19sr" + }, + { + "slug": "redmi-9t-standard-edition-dual-sim-td-lte-latam-128gb-m2010j19sl", + "name": "Redmi 9T Standard Edition Dual SIM TD-LTE LATAM 128GB M2010J19SL", + "url": "/v1/smartphones/redmi-9t-standard-edition-dual-sim-td-lte-latam-128gb-m2010j19sl" + }, + { + "slug": "redmi-9t-standard-edition-dual-sim-td-lte-ru-128gb-m2010j19sy", + "name": "Redmi 9T Standard Edition Dual SIM TD-LTE RU 128GB M2010J19SY", + "url": "/v1/smartphones/redmi-9t-standard-edition-dual-sim-td-lte-ru-128gb-m2010j19sy" + }, + { + "slug": "redmi-9t-standard-edition-dual-sim-td-lte-ru-64gb-m2010j19sy", + "name": "Redmi 9T Standard Edition Dual SIM TD-LTE RU 64GB M2010J19SY", + "url": "/v1/smartphones/redmi-9t-standard-edition-dual-sim-td-lte-ru-64gb-m2010j19sy" + }, + { + "slug": "redmi-9t-standard-edition-global-dual-sim-td-lte-128gb-m2010j19sg", + "name": "Redmi 9T Standard Edition Global Dual SIM TD-LTE 128GB M2010J19SG", + "url": "/v1/smartphones/redmi-9t-standard-edition-global-dual-sim-td-lte-128gb-m2010j19sg" + }, + { + "slug": "redmi-9t-standard-edition-global-dual-sim-td-lte-64gb-m2010j19sg", + "name": "Redmi 9T Standard Edition Global Dual SIM TD-LTE 64GB M2010J19SG", + "url": "/v1/smartphones/redmi-9t-standard-edition-global-dual-sim-td-lte-64gb-m2010j19sg" + }, + { + "slug": "redmi-9i", + "name": "Redmi 9i", + "url": "/v1/smartphones/redmi-9i" + }, + { + "slug": "redmi-9i-dual-sim-td-lte-in-128gb-m2006c3lii", + "name": "Redmi 9i Dual SIM TD-LTE IN 128GB M2006C3LII", + "url": "/v1/smartphones/redmi-9i-dual-sim-td-lte-in-128gb-m2006c3lii" + }, + { + "slug": "redmi-9i-dual-sim-td-lte-in-64gb-m2006c3lii", + "name": "Redmi 9i Dual SIM TD-LTE IN 64GB M2006C3LII", + "url": "/v1/smartphones/redmi-9i-dual-sim-td-lte-in-64gb-m2006c3lii" + }, + { + "slug": "redmi-9i-sport", + "name": "Redmi 9i Sport", + "url": "/v1/smartphones/redmi-9i-sport" + }, + { + "slug": "redmi-9i-sport-dual-sim-td-lte-in-128gb-m2006c3lii", + "name": "Redmi 9i Sport Dual SIM TD-LTE IN 128GB M2006C3LII", + "url": "/v1/smartphones/redmi-9i-sport-dual-sim-td-lte-in-128gb-m2006c3lii" + }, + { + "slug": "redmi-9i-sport-dual-sim-td-lte-in-64gb-m2006c3lii", + "name": "Redmi 9i Sport Dual SIM TD-LTE IN 64GB M2006C3LII", + "url": "/v1/smartphones/redmi-9i-sport-dual-sim-td-lte-in-64gb-m2006c3lii" + }, + { + "slug": "redmi-a1-premium-edition", + "name": "Redmi A1 Premium Edition", + "url": "/v1/smartphones/redmi-a1-premium-edition" + }, + { + "slug": "redmi-a1-standard-edition", + "name": "Redmi A1 Standard Edition", + "url": "/v1/smartphones/redmi-a1-standard-edition" + }, + { + "slug": "redmi-go-dual-sim-td-lte-apac-latam-m1903c3gh", + "name": "Redmi Go Dual SIM TD-LTE APAC LATAM M1903C3GH", + "url": "/v1/smartphones/redmi-go-dual-sim-td-lte-apac-latam-m1903c3gh" + }, + { + "slug": "redmi-go-global-dual-sim-td-lte-m1903c3gg", + "name": "Redmi Go Global Dual SIM TD-LTE M1903C3GG", + "url": "/v1/smartphones/redmi-go-global-dual-sim-td-lte-m1903c3gg" + }, + { + "slug": "redmi-k20-dual-sim-td-lte-in-128gb-mzb7757in-mzb7758in-mzb7759in", + "name": "Redmi K20 Dual SIM TD-LTE IN 128GB MZB7757IN / MZB7758IN / MZB7759IN", + "url": "/v1/smartphones/redmi-k20-dual-sim-td-lte-in-128gb-mzb7757in-mzb7758in-mzb7759in" + }, + { + "slug": "redmi-k20-dual-sim-td-lte-in-64gb-mzb7754in-mzb7755in-mzb7756in", + "name": "Redmi K20 Dual SIM TD-LTE IN 64GB MZB7754IN / MZB7755IN / MZB7756IN", + "url": "/v1/smartphones/redmi-k20-dual-sim-td-lte-in-64gb-mzb7754in-mzb7755in-mzb7756in" + }, + { + "slug": "redmi-k20-premium-edition-dual-sim-td-lte-cn-256gb-m1903f10a-m1903f10c", + "name": "Redmi K20 Premium Edition Dual SIM TD-LTE CN 256GB M1903F10A / M1903F10C", + "url": "/v1/smartphones/redmi-k20-premium-edition-dual-sim-td-lte-cn-256gb-m1903f10a-m1903f10c" + }, + { + "slug": "redmi-k20-pro-dual-sim-td-lte-in-128gb-mzb7748in-mzb7749in-mzb7750in", + "name": "Redmi K20 Pro Dual SIM TD-LTE IN 128GB MZB7748IN / MZB7749IN / MZB7750IN", + "url": "/v1/smartphones/redmi-k20-pro-dual-sim-td-lte-in-128gb-mzb7748in-mzb7749in-mzb7750in" + }, + { + "slug": "redmi-k20-pro-dual-sim-td-lte-in-256gb-mzb7751in-mzb7752in-mzb7753in", + "name": "Redmi K20 Pro Dual SIM TD-LTE IN 256GB MZB7751IN / MZB7752IN / MZB7753IN", + "url": "/v1/smartphones/redmi-k20-pro-dual-sim-td-lte-in-256gb-mzb7751in-mzb7752in-mzb7753in" + }, + { + "slug": "redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1903f11a-m1903f11c", + "name": "Redmi K20 Pro Premium Edition Dual SIM TD-LTE CN 128GB M1903F11A / M1903F11C", + "url": "/v1/smartphones/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1903f11a-m1903f11c" + }, + { + "slug": "redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1903f11t", + "name": "Redmi K20 Pro Premium Edition Dual SIM TD-LTE CN 128GB M1903F11T", + "url": "/v1/smartphones/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1903f11t" + }, + { + "slug": "redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1903f11a-m1903f11c", + "name": "Redmi K20 Pro Premium Edition Dual SIM TD-LTE CN 256GB M1903F11A / M1903F11C", + "url": "/v1/smartphones/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1903f11a-m1903f11c" + }, + { + "slug": "redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1903f11t", + "name": "Redmi K20 Pro Premium Edition Dual SIM TD-LTE CN 256GB M1903F11T", + "url": "/v1/smartphones/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1903f11t" + }, + { + "slug": "redmi-k20-pro-prime-premium-edition", + "name": "Redmi K20 Pro Prime Premium Edition", + "url": "/v1/smartphones/redmi-k20-pro-prime-premium-edition" + }, + { + "slug": "redmi-k20-pro-prime-premium-edition-dual-sim-td-lte-cn-512gb-m1903f11a", + "name": "Redmi K20 Pro Prime Premium Edition Dual SIM TD-LTE CN 512GB M1903F11A", + "url": "/v1/smartphones/redmi-k20-pro-prime-premium-edition-dual-sim-td-lte-cn-512gb-m1903f11a" + }, + { + "slug": "redmi-k20-pro-prime-standard-edition", + "name": "Redmi K20 Pro Prime Standard Edition", + "url": "/v1/smartphones/redmi-k20-pro-prime-standard-edition" + }, + { + "slug": "redmi-k20-pro-prime-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11a", + "name": "Redmi K20 Pro Prime Standard Edition Dual SIM TD-LTE CN 128GB M1903F11A", + "url": "/v1/smartphones/redmi-k20-pro-prime-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11a" + }, + { + "slug": "redmi-k20-pro-prime-standard-edition-dual-sim-td-lte-cn-512gb-m1903f11a", + "name": "Redmi K20 Pro Prime Standard Edition Dual SIM TD-LTE CN 512GB M1903F11A", + "url": "/v1/smartphones/redmi-k20-pro-prime-standard-edition-dual-sim-td-lte-cn-512gb-m1903f11a" + }, + { + "slug": "redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11a-m1903f11c", + "name": "Redmi K20 Pro Standard Edition Dual SIM TD-LTE CN 128GB M1903F11A / M1903F11C", + "url": "/v1/smartphones/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11a-m1903f11c" + }, + { + "slug": "redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11t", + "name": "Redmi K20 Pro Standard Edition Dual SIM TD-LTE CN 128GB M1903F11T", + "url": "/v1/smartphones/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11t" + }, + { + "slug": "redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1903f11a-m1903f11c", + "name": "Redmi K20 Pro Standard Edition Dual SIM TD-LTE CN 64GB M1903F11A / M1903F11C", + "url": "/v1/smartphones/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1903f11a-m1903f11c" + }, + { + "slug": "redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1903f11t", + "name": "Redmi K20 Pro Standard Edition Dual SIM TD-LTE CN 64GB M1903F11T", + "url": "/v1/smartphones/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1903f11t" + }, + { + "slug": "redmi-k20-standard-edition-dual-sim-td-lte-cn-128gb-m1903f10a-m1903f10c", + "name": "Redmi K20 Standard Edition Dual SIM TD-LTE CN 128GB M1903F10A / M1903F10C", + "url": "/v1/smartphones/redmi-k20-standard-edition-dual-sim-td-lte-cn-128gb-m1903f10a-m1903f10c" + }, + { + "slug": "redmi-k20-standard-edition-dual-sim-td-lte-cn-128gb-m1903f10t", + "name": "Redmi K20 Standard Edition Dual SIM TD-LTE CN 128GB M1903F10T", + "url": "/v1/smartphones/redmi-k20-standard-edition-dual-sim-td-lte-cn-128gb-m1903f10t" + }, + { + "slug": "redmi-k20-standard-edition-dual-sim-td-lte-cn-256gb-m1903f10t", + "name": "Redmi K20 Standard Edition Dual SIM TD-LTE CN 256GB M1903F10T", + "url": "/v1/smartphones/redmi-k20-standard-edition-dual-sim-td-lte-cn-256gb-m1903f10t" + }, + { + "slug": "redmi-k20-standard-edition-dual-sim-td-lte-cn-64gb-m1903f10a-m1903f10c", + "name": "Redmi K20 Standard Edition Dual SIM TD-LTE CN 64GB M1903F10A / M1903F10C", + "url": "/v1/smartphones/redmi-k20-standard-edition-dual-sim-td-lte-cn-64gb-m1903f10a-m1903f10c" + }, + { + "slug": "redmi-k20-standard-edition-dual-sim-td-lte-cn-64gb-m1903f10t", + "name": "Redmi K20 Standard Edition Dual SIM TD-LTE CN 64GB M1903F10T", + "url": "/v1/smartphones/redmi-k20-standard-edition-dual-sim-td-lte-cn-64gb-m1903f10t" + }, + { + "slug": "redmi-k30", + "name": "Redmi K30", + "url": "/v1/smartphones/redmi-k30" + }, + { + "slug": "redmi-k30-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2001g7ae-m2001g7ac", + "name": "Redmi K30 5G Premium Edition Dual SIM TD-LTE CN 128GB M2001G7AE / M2001G7AC", + "url": "/v1/smartphones/redmi-k30-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2001g7ae-m2001g7ac" + }, + { + "slug": "redmi-k30-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001g7ae-m2001g7ac", + "name": "Redmi K30 5G Premium Edition Dual SIM TD-LTE CN 256GB M2001G7AE / M2001G7AC", + "url": "/v1/smartphones/redmi-k30-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001g7ae-m2001g7ac" + }, + { + "slug": "redmi-k30-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2001g7ae-m2001g7ac", + "name": "Redmi K30 5G Standard Edition Dual SIM TD-LTE CN 128GB M2001G7AE / M2001G7AC", + "url": "/v1/smartphones/redmi-k30-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2001g7ae-m2001g7ac" + }, + { + "slug": "redmi-k30-5g-standard-edition-dual-sim-td-lte-cn-64gb-m2001g7ae-m2001g7ac", + "name": "Redmi K30 5G Standard Edition Dual SIM TD-LTE CN 64GB M2001G7AE / M2001G7AC", + "url": "/v1/smartphones/redmi-k30-5g-standard-edition-dual-sim-td-lte-cn-64gb-m2001g7ae-m2001g7ac" + }, + { + "slug": "redmi-k30-premium-edition", + "name": "Redmi K30 Premium Edition", + "url": "/v1/smartphones/redmi-k30-premium-edition" + }, + { + "slug": "redmi-k30-premium-edition-dual-sim-td-lte-cn-128gb-m1912g7be-m1912g7bc", + "name": "Redmi K30 Premium Edition Dual SIM TD-LTE CN 128GB M1912G7BE / M1912G7BC", + "url": "/v1/smartphones/redmi-k30-premium-edition-dual-sim-td-lte-cn-128gb-m1912g7be-m1912g7bc" + }, + { + "slug": "redmi-k30-premium-edition-dual-sim-td-lte-cn-256gb-m1912g7be-m1912g7bc", + "name": "Redmi K30 Premium Edition Dual SIM TD-LTE CN 256GB M1912G7BE / M1912G7BC", + "url": "/v1/smartphones/redmi-k30-premium-edition-dual-sim-td-lte-cn-256gb-m1912g7be-m1912g7bc" + }, + { + "slug": "redmi-k30-pro", + "name": "Redmi K30 Pro", + "url": "/v1/smartphones/redmi-k30-pro" + }, + { + "slug": "redmi-k30-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2006j10c", + "name": "Redmi K30 Pro 5G Premium Edition Dual SIM TD-LTE CN 128GB M2006J10C", + "url": "/v1/smartphones/redmi-k30-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2006j10c" + }, + { + "slug": "redmi-k30-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2006j10c", + "name": "Redmi K30 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB M2006J10C", + "url": "/v1/smartphones/redmi-k30-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2006j10c" + }, + { + "slug": "redmi-k30-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2006j10c", + "name": "Redmi K30 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB M2006J10C", + "url": "/v1/smartphones/redmi-k30-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2006j10c" + }, + { + "slug": "redmi-k30-pro-zoom", + "name": "Redmi K30 Pro Zoom", + "url": "/v1/smartphones/redmi-k30-pro-zoom" + }, + { + "slug": "redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-128gb-m2001j11e-m2001j11c", + "name": "Redmi K30 Pro Zoom 5G Dual SIM TD-LTE CN 128GB M2001J11E / M2001J11C", + "url": "/v1/smartphones/redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-128gb-m2001j11e-m2001j11c" + }, + { + "slug": "redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-256gb-m2001j11e-m2001j11c", + "name": "Redmi K30 Pro Zoom 5G Dual SIM TD-LTE CN 256GB M2001J11E / M2001J11C", + "url": "/v1/smartphones/redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-256gb-m2001j11e-m2001j11c" + }, + { + "slug": "redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-512gb-m2001j11e-m2001j11c", + "name": "Redmi K30 Pro Zoom 5G Dual SIM TD-LTE CN 512GB M2001J11E / M2001J11C", + "url": "/v1/smartphones/redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-512gb-m2001j11e-m2001j11c" + }, + { + "slug": "redmi-k30-standard-edition", + "name": "Redmi K30 Standard Edition", + "url": "/v1/smartphones/redmi-k30-standard-edition" + }, + { + "slug": "redmi-k30-standard-edition-dual-sim-td-lte-cn-128gb-m1912g7be-m1912g7bc", + "name": "Redmi K30 Standard Edition Dual SIM TD-LTE CN 128GB M1912G7BE / M1912G7BC", + "url": "/v1/smartphones/redmi-k30-standard-edition-dual-sim-td-lte-cn-128gb-m1912g7be-m1912g7bc" + }, + { + "slug": "redmi-k30-standard-edition-dual-sim-td-lte-cn-64gb-m1912g7be-m1912g7bc", + "name": "Redmi K30 Standard Edition Dual SIM TD-LTE CN 64GB M1912G7BE / M1912G7BC", + "url": "/v1/smartphones/redmi-k30-standard-edition-dual-sim-td-lte-cn-64gb-m1912g7be-m1912g7bc" + }, + { + "slug": "redmi-k30-ultra", + "name": "Redmi K30 Ultra", + "url": "/v1/smartphones/redmi-k30-ultra" + }, + { + "slug": "redmi-k30-ultra-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2006j10c", + "name": "Redmi K30 Ultra 5G Premium Edition Dual SIM TD-LTE CN 128GB M2006J10C", + "url": "/v1/smartphones/redmi-k30-ultra-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2006j10c" + }, + { + "slug": "redmi-k30-ultra-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2006j10c", + "name": "Redmi K30 Ultra 5G Premium Edition Dual SIM TD-LTE CN 512GB M2006J10C", + "url": "/v1/smartphones/redmi-k30-ultra-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2006j10c" + }, + { + "slug": "redmi-k30-ultra-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2006j10c", + "name": "Redmi K30 Ultra 5G Standard Edition Dual SIM TD-LTE CN 128GB M2006J10C", + "url": "/v1/smartphones/redmi-k30-ultra-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2006j10c" + }, + { + "slug": "redmi-k30s", + "name": "Redmi K30S", + "url": "/v1/smartphones/redmi-k30s" + }, + { + "slug": "redmi-k30s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2007j3sc", + "name": "Redmi K30S 5G Standard Edition Dual SIM TD-LTE CN 128GB M2007J3SC", + "url": "/v1/smartphones/redmi-k30s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2007j3sc" + }, + { + "slug": "redmi-k30s-5g-supreme-edition-dual-sim-td-lte-cn-256gb-m2007j3sc", + "name": "Redmi K30S 5G Supreme Edition Dual SIM TD-LTE CN 256GB M2007J3SC", + "url": "/v1/smartphones/redmi-k30s-5g-supreme-edition-dual-sim-td-lte-cn-256gb-m2007j3sc" + }, + { + "slug": "redmi-k40", + "name": "Redmi K40", + "url": "/v1/smartphones/redmi-k40" + }, + { + "slug": "redmi-k40-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2012k11ac", + "name": "Redmi K40 5G Premium Edition Dual SIM TD-LTE CN 128GB M2012K11AC", + "url": "/v1/smartphones/redmi-k40-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2012k11ac" + }, + { + "slug": "redmi-k40-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2012k11ac", + "name": "Redmi K40 5G Premium Edition Dual SIM TD-LTE CN 256GB M2012K11AC", + "url": "/v1/smartphones/redmi-k40-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2012k11ac" + }, + { + "slug": "redmi-k40-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2012k11ac", + "name": "Redmi K40 5G Standard Edition Dual SIM TD-LTE CN 128GB M2012K11AC", + "url": "/v1/smartphones/redmi-k40-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2012k11ac" + }, + { + "slug": "redmi-k40-5g-top-edition-dual-sim-td-lte-cn-256gb-m2012k11ac", + "name": "Redmi K40 5G Top Edition Dual SIM TD-LTE CN 256GB M2012K11AC", + "url": "/v1/smartphones/redmi-k40-5g-top-edition-dual-sim-td-lte-cn-256gb-m2012k11ac" + }, + { + "slug": "redmi-k40-game-enhanced-edition", + "name": "Redmi K40 Game Enhanced Edition", + "url": "/v1/smartphones/redmi-k40-game-enhanced-edition" + }, + { + "slug": "redmi-k40-game-enhanced-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c", + "name": "Redmi K40 Game Enhanced Edition 5G Dual SIM TD-LTE CN 128GB M2104K10C", + "url": "/v1/smartphones/redmi-k40-game-enhanced-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c" + }, + { + "slug": "redmi-k40-game-enhanced-edition-5g-dual-sim-td-lte-cn-256gb-m2104k10c", + "name": "Redmi K40 Game Enhanced Edition 5G Dual SIM TD-LTE CN 256GB M2104K10C", + "url": "/v1/smartphones/redmi-k40-game-enhanced-edition-5g-dual-sim-td-lte-cn-256gb-m2104k10c" + }, + { + "slug": "redmi-k40-game-premium-edition", + "name": "Redmi K40 Game Premium Edition", + "url": "/v1/smartphones/redmi-k40-game-premium-edition" + }, + { + "slug": "redmi-k40-game-premium-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c", + "name": "Redmi K40 Game Premium Edition 5G Dual SIM TD-LTE CN 128GB M2104K10C", + "url": "/v1/smartphones/redmi-k40-game-premium-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c" + }, + { + "slug": "redmi-k40-game-premium-edition-5g-dual-sim-td-lte-cn-256gb-m2104k10c", + "name": "Redmi K40 Game Premium Edition 5G Dual SIM TD-LTE CN 256GB M2104K10C", + "url": "/v1/smartphones/redmi-k40-game-premium-edition-5g-dual-sim-td-lte-cn-256gb-m2104k10c" + }, + { + "slug": "redmi-k40-game-standard-edition", + "name": "Redmi K40 Game Standard Edition", + "url": "/v1/smartphones/redmi-k40-game-standard-edition" + }, + { + "slug": "redmi-k40-game-standard-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c", + "name": "Redmi K40 Game Standard Edition 5G Dual SIM TD-LTE CN 128GB M2104K10C", + "url": "/v1/smartphones/redmi-k40-game-standard-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c" + }, + { + "slug": "redmi-k40-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2012k11c", + "name": "Redmi K40 Pro 5G Premium Edition Dual SIM TD-LTE CN 128GB M2012K11C", + "url": "/v1/smartphones/redmi-k40-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2012k11c" + }, + { + "slug": "redmi-k40-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2012k11c", + "name": "Redmi K40 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB M2012K11C", + "url": "/v1/smartphones/redmi-k40-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2012k11c" + }, + { + "slug": "redmi-k40-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2012k11c", + "name": "Redmi K40 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB M2012K11C", + "url": "/v1/smartphones/redmi-k40-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2012k11c" + }, + { + "slug": "redmi-k40-pro", + "name": "Redmi K40 Pro+", + "url": "/v1/smartphones/redmi-k40-pro" + }, + { + "slug": "redmi-k40-pro-5g-dual-sim-td-lte-cn-256gb-m2012k11q-redmi-k40-ulta", + "name": "Redmi K40 Pro+ 5G Dual SIM TD-LTE CN 256GB M2012K11Q / Redmi K40 Ulta", + "url": "/v1/smartphones/redmi-k40-pro-5g-dual-sim-td-lte-cn-256gb-m2012k11q-redmi-k40-ulta" + }, + { + "slug": "redmi-k50", + "name": "Redmi K50", + "url": "/v1/smartphones/redmi-k50" + }, + { + "slug": "redmi-k50-extreme-edition-premium", + "name": "Redmi K50 Extreme Edition Premium", + "url": "/v1/smartphones/redmi-k50-extreme-edition-premium" + }, + { + "slug": "redmi-k50-extreme-edition-standard", + "name": "Redmi K50 Extreme Edition Standard", + "url": "/v1/smartphones/redmi-k50-extreme-edition-standard" + }, + { + "slug": "redmi-k50-extreme-mercedes-amg-f1-team-edition", + "name": "Redmi K50 Extreme Mercedes-AMG F1 Team Edition", + "url": "/v1/smartphones/redmi-k50-extreme-mercedes-amg-f1-team-edition" + }, + { + "slug": "redmi-k50-gaming", + "name": "Redmi K50 Gaming", + "url": "/v1/smartphones/redmi-k50-gaming" + }, + { + "slug": "redmi-k50-pro", + "name": "Redmi K50 Pro", + "url": "/v1/smartphones/redmi-k50-pro" + }, + { + "slug": "redmi-k50g", + "name": "Redmi K50G", + "url": "/v1/smartphones/redmi-k50g" + }, + { + "slug": "redmi-k50i", + "name": "Redmi K50i", + "url": "/v1/smartphones/redmi-k50i" + }, + { + "slug": "redmi-k60", + "name": "Redmi K60", + "url": "/v1/smartphones/redmi-k60" + }, + { + "slug": "redmi-k60-pro", + "name": "Redmi K60 Pro", + "url": "/v1/smartphones/redmi-k60-pro" + }, + { + "slug": "redmi-k60e", + "name": "Redmi K60E", + "url": "/v1/smartphones/redmi-k60e" + }, + { + "slug": "redmi-note-10", + "name": "Redmi Note 10", + "url": "/v1/smartphones/redmi-note-10" + }, + { + "slug": "redmi-note-10-4g-premium-edition-dual-sim-td-lte-in-128gb-m2101k7ai", + "name": "Redmi Note 10 4G Premium Edition Dual SIM TD-LTE IN 128GB M2101K7AI", + "url": "/v1/smartphones/redmi-note-10-4g-premium-edition-dual-sim-td-lte-in-128gb-m2101k7ai" + }, + { + "slug": "redmi-note-10-4g-premium-edition-global-dual-sim-td-lte-128gb-m2101k7ag", + "name": "Redmi Note 10 4G Premium Edition Global Dual SIM TD-LTE 128GB M2101K7AG", + "url": "/v1/smartphones/redmi-note-10-4g-premium-edition-global-dual-sim-td-lte-128gb-m2101k7ag" + }, + { + "slug": "redmi-note-10-4g-standard-edition-dual-sim-td-lte-in-64gb-m2101k7ai", + "name": "Redmi Note 10 4G Standard Edition Dual SIM TD-LTE IN 64GB M2101K7AI", + "url": "/v1/smartphones/redmi-note-10-4g-standard-edition-dual-sim-td-lte-in-64gb-m2101k7ai" + }, + { + "slug": "redmi-note-10-4g-standard-edition-global-dual-sim-td-lte-128gb-m2101k7ag", + "name": "Redmi Note 10 4G Standard Edition Global Dual SIM TD-LTE 128GB M2101K7AG", + "url": "/v1/smartphones/redmi-note-10-4g-standard-edition-global-dual-sim-td-lte-128gb-m2101k7ag" + }, + { + "slug": "redmi-note-10-4g-standard-edition-global-dual-sim-td-lte-64gb-m2101k7ag", + "name": "Redmi Note 10 4G Standard Edition Global Dual SIM TD-LTE 64GB M2101K7AG", + "url": "/v1/smartphones/redmi-note-10-4g-standard-edition-global-dual-sim-td-lte-64gb-m2101k7ag" + }, + { + "slug": "redmi-note-10-5g-premium-edition-global-dual-sim-td-lte-128gb-m2103k19g", + "name": "Redmi Note 10 5G Premium Edition Global Dual SIM TD-LTE 128GB M2103K19G", + "url": "/v1/smartphones/redmi-note-10-5g-premium-edition-global-dual-sim-td-lte-128gb-m2103k19g" + }, + { + "slug": "redmi-note-10-5g-standard-edition-global-dual-sim-td-lte-128gb-m2103k19g", + "name": "Redmi Note 10 5G Standard Edition Global Dual SIM TD-LTE 128GB M2103K19G", + "url": "/v1/smartphones/redmi-note-10-5g-standard-edition-global-dual-sim-td-lte-128gb-m2103k19g" + }, + { + "slug": "redmi-note-10-5g-standard-edition-global-dual-sim-td-lte-64gb-m2103k19g", + "name": "Redmi Note 10 5G Standard Edition Global Dual SIM TD-LTE 64GB M2103K19G", + "url": "/v1/smartphones/redmi-note-10-5g-standard-edition-global-dual-sim-td-lte-64gb-m2103k19g" + }, + { + "slug": "redmi-note-10-je-xig02", + "name": "Redmi Note 10 JE XIG02", + "url": "/v1/smartphones/redmi-note-10-je-xig02" + }, + { + "slug": "redmi-note-10-je-xig02-td-lte-jp-64gb", + "name": "Redmi Note 10 JE XIG02 TD-LTE JP 64GB", + "url": "/v1/smartphones/redmi-note-10-je-xig02-td-lte-jp-64gb" + }, + { + "slug": "redmi-note-10-lite-premium-edition", + "name": "Redmi Note 10 Lite Premium Edition", + "url": "/v1/smartphones/redmi-note-10-lite-premium-edition" + }, + { + "slug": "redmi-note-10-lite-standard-edition", + "name": "Redmi Note 10 Lite Standard Edition", + "url": "/v1/smartphones/redmi-note-10-lite-standard-edition" + }, + { + "slug": "redmi-note-10-pro", + "name": "Redmi Note 10 Pro", + "url": "/v1/smartphones/redmi-note-10-pro" + }, + { + "slug": "redmi-note-10-pro-max", + "name": "Redmi Note 10 Pro Max", + "url": "/v1/smartphones/redmi-note-10-pro-max" + }, + { + "slug": "redmi-note-10s-nfc-premium-edition", + "name": "Redmi Note 10S NFC Premium Edition", + "url": "/v1/smartphones/redmi-note-10s-nfc-premium-edition" + }, + { + "slug": "redmi-note-10s-nfc-standard-edition", + "name": "Redmi Note 10S NFC Standard Edition", + "url": "/v1/smartphones/redmi-note-10s-nfc-standard-edition" + }, + { + "slug": "redmi-note-10s-premium-edition", + "name": "Redmi Note 10S Premium Edition", + "url": "/v1/smartphones/redmi-note-10s-premium-edition" + }, + { + "slug": "redmi-note-10s-premium-edition-global-dual-sim-td-lte-128gb-m2101k7bg", + "name": "Redmi Note 10S Premium Edition Global Dual SIM TD-LTE 128GB M2101K7BG", + "url": "/v1/smartphones/redmi-note-10s-premium-edition-global-dual-sim-td-lte-128gb-m2101k7bg" + }, + { + "slug": "redmi-note-10s-standard-edition", + "name": "Redmi Note 10S Standard Edition", + "url": "/v1/smartphones/redmi-note-10s-standard-edition" + }, + { + "slug": "redmi-note-10s-standard-edition-global-dual-sim-td-lte-128gb-m2101k7bg", + "name": "Redmi Note 10S Standard Edition Global Dual SIM TD-LTE 128GB M2101K7BG", + "url": "/v1/smartphones/redmi-note-10s-standard-edition-global-dual-sim-td-lte-128gb-m2101k7bg" + }, + { + "slug": "redmi-note-10s-standard-edition-global-dual-sim-td-lte-64gb-m2101k7bg", + "name": "Redmi Note 10S Standard Edition Global Dual SIM TD-LTE 64GB M2101K7BG", + "url": "/v1/smartphones/redmi-note-10s-standard-edition-global-dual-sim-td-lte-64gb-m2101k7bg" + }, + { + "slug": "redmi-note-10t", + "name": "Redmi Note 10T", + "url": "/v1/smartphones/redmi-note-10t" + }, + { + "slug": "redmi-note-10t-5g-premium-edition-dual-sim-td-lte-in-128gb-m2103k19i", + "name": "Redmi Note 10T 5G Premium Edition Dual SIM TD-LTE IN 128GB M2103K19I", + "url": "/v1/smartphones/redmi-note-10t-5g-premium-edition-dual-sim-td-lte-in-128gb-m2103k19i" + }, + { + "slug": "redmi-note-10t-5g-standard-edition-dual-sim-td-lte-in-64gb-m2103k19i", + "name": "Redmi Note 10T 5G Standard Edition Dual SIM TD-LTE IN 64GB M2103K19I", + "url": "/v1/smartphones/redmi-note-10t-5g-standard-edition-dual-sim-td-lte-in-64gb-m2103k19i" + }, + { + "slug": "redmi-note-11", + "name": "Redmi Note 11", + "url": "/v1/smartphones/redmi-note-11" + }, + { + "slug": "redmi-note-11-4g-premium-edition-dual-sim-td-lte-cn-128gb-21121119sc", + "name": "Redmi Note 11 4G Premium Edition Dual SIM TD-LTE CN 128GB 21121119SC", + "url": "/v1/smartphones/redmi-note-11-4g-premium-edition-dual-sim-td-lte-cn-128gb-21121119sc" + }, + { + "slug": "redmi-note-11-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117ti", + "name": "Redmi Note 11 4G Premium Edition Dual SIM TD-LTE IN 128GB 2201117TI", + "url": "/v1/smartphones/redmi-note-11-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117ti" + }, + { + "slug": "redmi-note-11-4g-premium-edition-dual-sim-td-lte-in-64gb-2201117ti", + "name": "Redmi Note 11 4G Premium Edition Dual SIM TD-LTE IN 64GB 2201117TI", + "url": "/v1/smartphones/redmi-note-11-4g-premium-edition-dual-sim-td-lte-in-64gb-2201117ti" + }, + { + "slug": "redmi-note-11-4g-premium-edition-global-dual-sim-td-lte-128gb-2201117tg", + "name": "Redmi Note 11 4G Premium Edition Global Dual SIM TD-LTE 128GB 2201117TG", + "url": "/v1/smartphones/redmi-note-11-4g-premium-edition-global-dual-sim-td-lte-128gb-2201117tg" + }, + { + "slug": "redmi-note-11-4g-standard-edition-dual-sim-td-lte-cn-128gb-21121119sc", + "name": "Redmi Note 11 4G Standard Edition Dual SIM TD-LTE CN 128GB 21121119SC", + "url": "/v1/smartphones/redmi-note-11-4g-standard-edition-dual-sim-td-lte-cn-128gb-21121119sc" + }, + { + "slug": "redmi-note-11-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117ti", + "name": "Redmi Note 11 4G Standard Edition Dual SIM TD-LTE IN 64GB 2201117TI", + "url": "/v1/smartphones/redmi-note-11-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117ti" + }, + { + "slug": "redmi-note-11-4g-standard-edition-dual-sim-td-lte-latam-jp-64gb-2201117tl", + "name": "Redmi Note 11 4G Standard Edition Dual SIM TD-LTE LATAM JP 64GB 2201117TL", + "url": "/v1/smartphones/redmi-note-11-4g-standard-edition-dual-sim-td-lte-latam-jp-64gb-2201117tl" + }, + { + "slug": "redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117tg", + "name": "Redmi Note 11 4G Standard Edition Global Dual SIM TD-LTE 128GB 2201117TG", + "url": "/v1/smartphones/redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117tg" + }, + { + "slug": "redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117ty", + "name": "Redmi Note 11 4G Standard Edition Global Dual SIM TD-LTE 128GB 2201117TY", + "url": "/v1/smartphones/redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117ty" + }, + { + "slug": "redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-64gb-2201117ty", + "name": "Redmi Note 11 4G Standard Edition Global Dual SIM TD-LTE 64GB 2201117TY", + "url": "/v1/smartphones/redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-64gb-2201117ty" + }, + { + "slug": "redmi-note-11-5g-premium-edition-dual-sim-td-lte-cn-128gb-21091116ac", + "name": "Redmi Note 11 5G Premium Edition Dual SIM TD-LTE CN 128GB 21091116AC", + "url": "/v1/smartphones/redmi-note-11-5g-premium-edition-dual-sim-td-lte-cn-128gb-21091116ac" + }, + { + "slug": "redmi-note-11-5g-standard-edition-dual-sim-td-lte-cn-128gb-21091116ac", + "name": "Redmi Note 11 5G Standard Edition Dual SIM TD-LTE CN 128GB 21091116AC", + "url": "/v1/smartphones/redmi-note-11-5g-standard-edition-dual-sim-td-lte-cn-128gb-21091116ac" + }, + { + "slug": "redmi-note-11-5g-top-edition-dual-sim-td-lte-cn-128gb-21091116ac", + "name": "Redmi Note 11 5G Top Edition Dual SIM TD-LTE CN 128GB 21091116AC", + "url": "/v1/smartphones/redmi-note-11-5g-top-edition-dual-sim-td-lte-cn-128gb-21091116ac" + }, + { + "slug": "redmi-note-11-5g-top-edition-dual-sim-td-lte-cn-256gb-21091116ac", + "name": "Redmi Note 11 5G Top Edition Dual SIM TD-LTE CN 256GB 21091116AC", + "url": "/v1/smartphones/redmi-note-11-5g-top-edition-dual-sim-td-lte-cn-256gb-21091116ac" + }, + { + "slug": "redmi-note-11-pro", + "name": "Redmi Note 11 Pro", + "url": "/v1/smartphones/redmi-note-11-pro" + }, + { + "slug": "redmi-note-11-pro-4g-premium-edition-global-dual-sim-td-lte-128gb-2201116tg", + "name": "Redmi Note 11 Pro 4G Premium Edition Global Dual SIM TD-LTE 128GB 2201116TG", + "url": "/v1/smartphones/redmi-note-11-pro-4g-premium-edition-global-dual-sim-td-lte-128gb-2201116tg" + }, + { + "slug": "redmi-note-11-pro-4g-standard-edition-global-dual-sim-td-lte-128gb-2201116tg", + "name": "Redmi Note 11 Pro 4G Standard Edition Global Dual SIM TD-LTE 128GB 2201116TG", + "url": "/v1/smartphones/redmi-note-11-pro-4g-standard-edition-global-dual-sim-td-lte-128gb-2201116tg" + }, + { + "slug": "redmi-note-11-pro-4g-standard-edition-global-dual-sim-td-lte-64gb-2201116tg", + "name": "Redmi Note 11 Pro 4G Standard Edition Global Dual SIM TD-LTE 64GB 2201116TG", + "url": "/v1/smartphones/redmi-note-11-pro-4g-standard-edition-global-dual-sim-td-lte-64gb-2201116tg" + }, + { + "slug": "redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-2201116sg", + "name": "Redmi Note 11 Pro 5G Premium Edition Global Dual SIM TD-LTE 128GB 2201116SG", + "url": "/v1/smartphones/redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-2201116sg" + }, + { + "slug": "redmi-note-11-pro-5g-standard-edition-dual-sim-td-lte-jp-128gb-2201116sr", + "name": "Redmi Note 11 Pro 5G Standard Edition Dual SIM TD-LTE JP 128GB 2201116SR", + "url": "/v1/smartphones/redmi-note-11-pro-5g-standard-edition-dual-sim-td-lte-jp-128gb-2201116sr" + }, + { + "slug": "redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-2201116sg", + "name": "Redmi Note 11 Pro 5G Standard Edition Global Dual SIM TD-LTE 128GB 2201116SG", + "url": "/v1/smartphones/redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-2201116sg" + }, + { + "slug": "redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-2201116sg", + "name": "Redmi Note 11 Pro 5G Standard Edition Global Dual SIM TD-LTE 64GB 2201116SG", + "url": "/v1/smartphones/redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-2201116sg" + }, + { + "slug": "redmi-note-11-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-2201116si", + "name": "Redmi Note 11 Pro+ 5G Premium Edition Dual SIM TD-LTE IN 128GB 2201116SI", + "url": "/v1/smartphones/redmi-note-11-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-2201116si" + }, + { + "slug": "redmi-note-11-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-2201116si", + "name": "Redmi Note 11 Pro+ 5G Premium Edition Dual SIM TD-LTE IN 256GB 2201116SI", + "url": "/v1/smartphones/redmi-note-11-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-2201116si" + }, + { + "slug": "redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-21091116ug", + "name": "Redmi Note 11 Pro+ 5G Premium Edition Global Dual SIM TD-LTE 128GB 21091116UG", + "url": "/v1/smartphones/redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-21091116ug" + }, + { + "slug": "redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-21091116ug", + "name": "Redmi Note 11 Pro+ 5G Premium Edition Global Dual SIM TD-LTE 256GB 21091116UG", + "url": "/v1/smartphones/redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-21091116ug" + }, + { + "slug": "redmi-note-11-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-2201116si", + "name": "Redmi Note 11 Pro+ 5G Standard Edition Dual SIM TD-LTE IN 128GB 2201116SI", + "url": "/v1/smartphones/redmi-note-11-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-2201116si" + }, + { + "slug": "redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-21091116ug", + "name": "Redmi Note 11 Pro+ 5G Standard Edition Global Dual SIM TD-LTE 128GB 21091116UG", + "url": "/v1/smartphones/redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-21091116ug" + }, + { + "slug": "redmi-note-11-se", + "name": "Redmi Note 11 SE", + "url": "/v1/smartphones/redmi-note-11-se" + }, + { + "slug": "redmi-note-11e", + "name": "Redmi Note 11E", + "url": "/v1/smartphones/redmi-note-11e" + }, + { + "slug": "redmi-note-11r", + "name": "Redmi Note 11R", + "url": "/v1/smartphones/redmi-note-11r" + }, + { + "slug": "redmi-note-11s", + "name": "Redmi Note 11S", + "url": "/v1/smartphones/redmi-note-11s" + }, + { + "slug": "redmi-note-11s-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117si", + "name": "Redmi Note 11S 4G Premium Edition Dual SIM TD-LTE IN 128GB 2201117SI", + "url": "/v1/smartphones/redmi-note-11s-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117si" + }, + { + "slug": "redmi-note-11s-4g-premium-edition-global-dual-sim-td-lte-128gb-2201117sy", + "name": "Redmi Note 11S 4G Premium Edition Global Dual SIM TD-LTE 128GB 2201117SY", + "url": "/v1/smartphones/redmi-note-11s-4g-premium-edition-global-dual-sim-td-lte-128gb-2201117sy" + }, + { + "slug": "redmi-note-11s-4g-standard-edition-dual-sim-td-lte-in-128gb-2201117si", + "name": "Redmi Note 11S 4G Standard Edition Dual SIM TD-LTE IN 128GB 2201117SI", + "url": "/v1/smartphones/redmi-note-11s-4g-standard-edition-dual-sim-td-lte-in-128gb-2201117si" + }, + { + "slug": "redmi-note-11s-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117si", + "name": "Redmi Note 11S 4G Standard Edition Dual SIM TD-LTE IN 64GB 2201117SI", + "url": "/v1/smartphones/redmi-note-11s-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117si" + }, + { + "slug": "redmi-note-11s-4g-standard-edition-dual-sim-td-lte-latam-128gb-2201117sl", + "name": "Redmi Note 11S 4G Standard Edition Dual SIM TD-LTE LATAM 128GB 2201117SL", + "url": "/v1/smartphones/redmi-note-11s-4g-standard-edition-dual-sim-td-lte-latam-128gb-2201117sl" + }, + { + "slug": "redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117sg", + "name": "Redmi Note 11S 4G Standard Edition Global Dual SIM TD-LTE 128GB 2201117SG", + "url": "/v1/smartphones/redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117sg" + }, + { + "slug": "redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117sy", + "name": "Redmi Note 11S 4G Standard Edition Global Dual SIM TD-LTE 128GB 2201117SY", + "url": "/v1/smartphones/redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117sy" + }, + { + "slug": "redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-64gb-2201117sy", + "name": "Redmi Note 11S 4G Standard Edition Global Dual SIM TD-LTE 64GB 2201117SY", + "url": "/v1/smartphones/redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-64gb-2201117sy" + }, + { + "slug": "redmi-note-11se", + "name": "Redmi Note 11SE", + "url": "/v1/smartphones/redmi-note-11se" + }, + { + "slug": "redmi-note-11t", + "name": "Redmi Note 11T", + "url": "/v1/smartphones/redmi-note-11t" + }, + { + "slug": "redmi-note-11t-5g-premium-edition-dual-sim-td-lte-in-128gb-21091116ai", + "name": "Redmi Note 11T 5G Premium Edition Dual SIM TD-LTE IN 128GB 21091116AI", + "url": "/v1/smartphones/redmi-note-11t-5g-premium-edition-dual-sim-td-lte-in-128gb-21091116ai" + }, + { + "slug": "redmi-note-11t-5g-standard-edition-dual-sim-td-lte-in-128gb-21091116ai", + "name": "Redmi Note 11T 5G Standard Edition Dual SIM TD-LTE IN 128GB 21091116AI", + "url": "/v1/smartphones/redmi-note-11t-5g-standard-edition-dual-sim-td-lte-in-128gb-21091116ai" + }, + { + "slug": "redmi-note-11t-5g-standard-edition-dual-sim-td-lte-in-64gb-21091116ai", + "name": "Redmi Note 11T 5G Standard Edition Dual SIM TD-LTE IN 64GB 21091116AI", + "url": "/v1/smartphones/redmi-note-11t-5g-standard-edition-dual-sim-td-lte-in-64gb-21091116ai" + }, + { + "slug": "redmi-note-11t-pro", + "name": "Redmi Note 11T Pro", + "url": "/v1/smartphones/redmi-note-11t-pro" + }, + { + "slug": "redmi-note-11i", + "name": "Redmi Note 11i", + "url": "/v1/smartphones/redmi-note-11i" + }, + { + "slug": "redmi-note-11i-hypercharge", + "name": "Redmi Note 11i Hypercharge", + "url": "/v1/smartphones/redmi-note-11i-hypercharge" + }, + { + "slug": "redmi-note-11i-hypercharge-5g-premium-edition-dual-sim-td-lte-in-128gb-21091116ui", + "name": "Redmi Note 11i Hypercharge 5G Premium Edition Dual SIM TD-LTE IN 128GB 21091116UI", + "url": "/v1/smartphones/redmi-note-11i-hypercharge-5g-premium-edition-dual-sim-td-lte-in-128gb-21091116ui" + }, + { + "slug": "redmi-note-11i-hypercharge-5g-standard-edition-dual-sim-td-lte-in-128gb-21091116ui", + "name": "Redmi Note 11i Hypercharge 5G Standard Edition Dual SIM TD-LTE IN 128GB 21091116UI", + "url": "/v1/smartphones/redmi-note-11i-hypercharge-5g-standard-edition-dual-sim-td-lte-in-128gb-21091116ui" + }, + { + "slug": "redmi-note-12", + "name": "Redmi Note 12", + "url": "/v1/smartphones/redmi-note-12" + }, + { + "slug": "redmi-note-12-pro", + "name": "Redmi Note 12 Pro", + "url": "/v1/smartphones/redmi-note-12-pro" + }, + { + "slug": "redmi-note-12-pro-speed", + "name": "Redmi Note 12 Pro Speed", + "url": "/v1/smartphones/redmi-note-12-pro-speed" + }, + { + "slug": "redmi-note-12-pro-plus", + "name": "Redmi Note 12 Pro+", + "url": "/v1/smartphones/redmi-note-12-pro-plus" + }, + { + "slug": "redmi-note-12-turbo", + "name": "Redmi Note 12 Turbo", + "url": "/v1/smartphones/redmi-note-12-turbo" + }, + { + "slug": "redmi-note-12r", + "name": "Redmi Note 12R", + "url": "/v1/smartphones/redmi-note-12r" + }, + { + "slug": "redmi-note-12r-pro", + "name": "Redmi Note 12R Pro", + "url": "/v1/smartphones/redmi-note-12r-pro" + }, + { + "slug": "redmi-note-12t-pro", + "name": "Redmi Note 12T Pro", + "url": "/v1/smartphones/redmi-note-12t-pro" + }, + { + "slug": "redmi-note-13-pro", + "name": "Redmi Note 13 Pro", + "url": "/v1/smartphones/redmi-note-13-pro" + }, + { + "slug": "redmi-note-13-pro-plus", + "name": "Redmi Note 13 Pro+", + "url": "/v1/smartphones/redmi-note-13-pro-plus" + }, + { + "slug": "redmi-note-14-4g", + "name": "Redmi Note 14 4G", + "url": "/v1/smartphones/redmi-note-14-4g" + }, + { + "slug": "redmi-note-14-pro-4g", + "name": "Redmi Note 14 Pro 4G", + "url": "/v1/smartphones/redmi-note-14-pro-4g" + }, + { + "slug": "redmi-note-14-pro-5g", + "name": "Redmi Note 14 Pro+ 5G", + "url": "/v1/smartphones/redmi-note-14-pro-5g" + }, + { + "slug": "redmi-note-5-premium-edition-dual-sim-td-lte-cn-64gb-mec7s-m1803e7sc", + "name": "Redmi Note 5 Premium Edition Dual SIM TD-LTE CN 64GB MEC7S / M1803E7SC", + "url": "/v1/smartphones/redmi-note-5-premium-edition-dual-sim-td-lte-cn-64gb-mec7s-m1803e7sc" + }, + { + "slug": "redmi-note-5-premium-edition-global-dual-sim-td-lte-64gb-meg7s-m1803e7sg", + "name": "Redmi Note 5 Premium Edition Global Dual SIM TD-LTE 64GB MEG7S / M1803E7SG", + "url": "/v1/smartphones/redmi-note-5-premium-edition-global-dual-sim-td-lte-64gb-meg7s-m1803e7sg" + }, + { + "slug": "redmi-note-5-pro-standard-edition-dual-sim-td-lte-in-mzb6079in-m1803e7sh", + "name": "Redmi Note 5 Pro Standard Edition Dual SIM TD-LTE IN MZB6079IN / M1803E7SH", + "url": "/v1/smartphones/redmi-note-5-pro-standard-edition-dual-sim-td-lte-in-mzb6079in-m1803e7sh" + }, + { + "slug": "redmi-note-5-standard-edition-dual-sim-td-lte-cn-32gb-mee7s", + "name": "Redmi Note 5 Standard Edition Dual SIM TD-LTE CN 32GB MEE7S", + "url": "/v1/smartphones/redmi-note-5-standard-edition-dual-sim-td-lte-cn-32gb-mee7s" + }, + { + "slug": "redmi-note-5-standard-edition-dual-sim-td-lte-cn-64gb-mee7s-m1803e7se", + "name": "Redmi Note 5 Standard Edition Dual SIM TD-LTE CN 64GB MEE7S / M1803E7SE", + "url": "/v1/smartphones/redmi-note-5-standard-edition-dual-sim-td-lte-cn-64gb-mee7s-m1803e7se" + }, + { + "slug": "redmi-note-5-standard-edition-global-dual-sim-td-lte-32gb-meg7s-m1803e7sg", + "name": "Redmi Note 5 Standard Edition Global Dual SIM TD-LTE 32GB MEG7S / M1803E7SG", + "url": "/v1/smartphones/redmi-note-5-standard-edition-global-dual-sim-td-lte-32gb-meg7s-m1803e7sg" + }, + { + "slug": "redmi-note-5-standard-edition-global-dual-sim-td-lte-64gb-meg7s-m1803e7sg", + "name": "Redmi Note 5 Standard Edition Global Dual SIM TD-LTE 64GB MEG7S / M1803E7SG", + "url": "/v1/smartphones/redmi-note-5-standard-edition-global-dual-sim-td-lte-64gb-meg7s-m1803e7sg" + }, + { + "slug": "redmi-note-6-pro-dual-sim-td-lte-apac-32gb-m1806e7th", + "name": "Redmi Note 6 Pro Dual SIM TD-LTE APAC 32GB M1806E7TH", + "url": "/v1/smartphones/redmi-note-6-pro-dual-sim-td-lte-apac-32gb-m1806e7th" + }, + { + "slug": "redmi-note-6-pro-dual-sim-td-lte-apac-64gb-m1806e7th", + "name": "Redmi Note 6 Pro Dual SIM TD-LTE APAC 64GB M1806E7TH", + "url": "/v1/smartphones/redmi-note-6-pro-dual-sim-td-lte-apac-64gb-m1806e7th" + }, + { + "slug": "redmi-note-6-pro-dual-sim-td-lte-cn-32gb-m1806e7te-m1806e7tc", + "name": "Redmi Note 6 Pro Dual SIM TD-LTE CN 32GB M1806E7TE / M1806E7TC", + "url": "/v1/smartphones/redmi-note-6-pro-dual-sim-td-lte-cn-32gb-m1806e7te-m1806e7tc" + }, + { + "slug": "redmi-note-6-pro-dual-sim-td-lte-in-my-mzb6876in-mzb6877in-mzb6878in-mzb6882in", + "name": "Redmi Note 6 Pro Dual SIM TD-LTE IN MY MZB6876IN / MZB6877IN / MZB6878IN / MZB6882IN", + "url": "/v1/smartphones/redmi-note-6-pro-dual-sim-td-lte-in-my-mzb6876in-mzb6877in-mzb6878in-mzb6882in" + }, + { + "slug": "redmi-note-6-pro-dual-sim-td-lte-in-my-mzb6879in-mzb6880in-mzb6881in-mzb6883in", + "name": "Redmi Note 6 Pro Dual SIM TD-LTE IN MY MZB6879IN / MZB6880IN / MZB6881IN / MZB6883IN", + "url": "/v1/smartphones/redmi-note-6-pro-dual-sim-td-lte-in-my-mzb6879in-mzb6880in-mzb6881in-mzb6883in" + }, + { + "slug": "redmi-note-6-pro-global-dual-sim-td-lte-32gb-m1806e7tg", + "name": "Redmi Note 6 Pro Global Dual SIM TD-LTE 32GB M1806E7TG", + "url": "/v1/smartphones/redmi-note-6-pro-global-dual-sim-td-lte-32gb-m1806e7tg" + }, + { + "slug": "redmi-note-6-pro-global-dual-sim-td-lte-64gb-m1806e7tg", + "name": "Redmi Note 6 Pro Global Dual SIM TD-LTE 64GB M1806E7TG", + "url": "/v1/smartphones/redmi-note-6-pro-global-dual-sim-td-lte-64gb-m1806e7tg" + }, + { + "slug": "redmi-note-7-dual-sim-td-lte-apac-latam-128gb-m1901f7h", + "name": "Redmi Note 7 Dual SIM TD-LTE APAC LATAM 128GB M1901F7H", + "url": "/v1/smartphones/redmi-note-7-dual-sim-td-lte-apac-latam-128gb-m1901f7h" + }, + { + "slug": "redmi-note-7-dual-sim-td-lte-apac-latam-32gb-m1901f7h", + "name": "Redmi Note 7 Dual SIM TD-LTE APAC LATAM 32GB M1901F7H", + "url": "/v1/smartphones/redmi-note-7-dual-sim-td-lte-apac-latam-32gb-m1901f7h" + }, + { + "slug": "redmi-note-7-dual-sim-td-lte-apac-latam-64gb-m1901f7h", + "name": "Redmi Note 7 Dual SIM TD-LTE APAC LATAM 64GB M1901F7H", + "url": "/v1/smartphones/redmi-note-7-dual-sim-td-lte-apac-latam-64gb-m1901f7h" + }, + { + "slug": "redmi-note-7-dual-sim-td-lte-in-32gb-m1901f7i-mzb7411in-mzb7263in-mzb7264in", + "name": "Redmi Note 7 Dual SIM TD-LTE IN 32GB M1901F7I / MZB7411IN / MZB7263IN / MZB7264IN", + "url": "/v1/smartphones/redmi-note-7-dual-sim-td-lte-in-32gb-m1901f7i-mzb7411in-mzb7263in-mzb7264in" + }, + { + "slug": "redmi-note-7-dual-sim-td-lte-in-64gb-m1901f7i-mzb7412in-mzb7265in-mzb7266in", + "name": "Redmi Note 7 Dual SIM TD-LTE IN 64GB M1901F7I / MZB7412IN / MZB7265IN / MZB7266IN", + "url": "/v1/smartphones/redmi-note-7-dual-sim-td-lte-in-64gb-m1901f7i-mzb7412in-mzb7265in-mzb7266in" + }, + { + "slug": "redmi-note-7-dual-sim-td-lte-th-64gb-m1901f7i", + "name": "Redmi Note 7 Dual SIM TD-LTE TH 64GB M1901F7I", + "url": "/v1/smartphones/redmi-note-7-dual-sim-td-lte-th-64gb-m1901f7i" + }, + { + "slug": "redmi-note-7-global-dual-sim-td-lte-128gb-m1901f7g-redmi-note-seven", + "name": "Redmi Note 7 Global Dual SIM TD-LTE 128GB M1901F7G / Redmi Note Seven", + "url": "/v1/smartphones/redmi-note-7-global-dual-sim-td-lte-128gb-m1901f7g-redmi-note-seven" + }, + { + "slug": "redmi-note-7-global-dual-sim-td-lte-32gb-m1901f7g", + "name": "Redmi Note 7 Global Dual SIM TD-LTE 32GB M1901F7G", + "url": "/v1/smartphones/redmi-note-7-global-dual-sim-td-lte-32gb-m1901f7g" + }, + { + "slug": "redmi-note-7-global-dual-sim-td-lte-64gb-m1901f7g-redmi-note-seven", + "name": "Redmi Note 7 Global Dual SIM TD-LTE 64GB M1901F7G / Redmi Note Seven", + "url": "/v1/smartphones/redmi-note-7-global-dual-sim-td-lte-64gb-m1901f7g-redmi-note-seven" + }, + { + "slug": "redmi-note-7-premium-edition-dual-sim-td-lte-cn-64gb-m1901f7e-m1901f7c", + "name": "Redmi Note 7 Premium Edition Dual SIM TD-LTE CN 64GB M1901F7E / M1901F7C", + "url": "/v1/smartphones/redmi-note-7-premium-edition-dual-sim-td-lte-cn-64gb-m1901f7e-m1901f7c" + }, + { + "slug": "redmi-note-7-pro-dual-sim-td-lte-cn-128gb-m1901f7be", + "name": "Redmi Note 7 Pro Dual SIM TD-LTE CN 128GB M1901F7BE", + "url": "/v1/smartphones/redmi-note-7-pro-dual-sim-td-lte-cn-128gb-m1901f7be" + }, + { + "slug": "redmi-note-7-pro-dual-sim-td-lte-in-128gb-m1901f7s", + "name": "Redmi Note 7 Pro Dual SIM TD-LTE IN 128GB M1901F7S", + "url": "/v1/smartphones/redmi-note-7-pro-dual-sim-td-lte-in-128gb-m1901f7s" + }, + { + "slug": "redmi-note-7-pro-dual-sim-td-lte-in-64gb-m1901f7s-mzb7462in-mzb7464in", + "name": "Redmi Note 7 Pro Dual SIM TD-LTE IN 64GB M1901F7S / MZB7462IN / MZB7464IN", + "url": "/v1/smartphones/redmi-note-7-pro-dual-sim-td-lte-in-64gb-m1901f7s-mzb7462in-mzb7464in" + }, + { + "slug": "redmi-note-7-standard-edition-dual-sim-td-lte-cn-32gb-m1901f7e-m1901f7c", + "name": "Redmi Note 7 Standard Edition Dual SIM TD-LTE CN 32GB M1901F7E / M1901F7C", + "url": "/v1/smartphones/redmi-note-7-standard-edition-dual-sim-td-lte-cn-32gb-m1901f7e-m1901f7c" + }, + { + "slug": "redmi-note-7-standard-edition-dual-sim-td-lte-cn-64gb-m1901f7e-m1901f7c", + "name": "Redmi Note 7 Standard Edition Dual SIM TD-LTE CN 64GB M1901F7E / M1901F7C", + "url": "/v1/smartphones/redmi-note-7-standard-edition-dual-sim-td-lte-cn-64gb-m1901f7e-m1901f7c" + }, + { + "slug": "redmi-note-7s-dual-sim-td-lte-in-32gb-mzb7744in-mzb7745in-mzb7746in", + "name": "Redmi Note 7S Dual SIM TD-LTE IN 32GB MZB7744IN / MZB7745IN / MZB7746IN", + "url": "/v1/smartphones/redmi-note-7s-dual-sim-td-lte-in-32gb-mzb7744in-mzb7745in-mzb7746in" + }, + { + "slug": "redmi-note-7s-dual-sim-td-lte-in-64gb-mzb7741in-mzb7742in-mzb7743in", + "name": "Redmi Note 7S Dual SIM TD-LTE IN 64GB MZB7741IN / MZB7742IN / MZB7743IN", + "url": "/v1/smartphones/redmi-note-7s-dual-sim-td-lte-in-64gb-mzb7741in-mzb7742in-mzb7743in" + }, + { + "slug": "redmi-note-8-2021", + "name": "Redmi Note 8 2021", + "url": "/v1/smartphones/redmi-note-8-2021" + }, + { + "slug": "redmi-note-8-2021-global-dual-sim-td-lte-128gb-m1908c3jgg", + "name": "Redmi Note 8 2021 Global Dual SIM TD-LTE 128GB M1908C3JGG", + "url": "/v1/smartphones/redmi-note-8-2021-global-dual-sim-td-lte-128gb-m1908c3jgg" + }, + { + "slug": "redmi-note-8-2021-global-dual-sim-td-lte-64gb-m1908c3jgg", + "name": "Redmi Note 8 2021 Global Dual SIM TD-LTE 64GB M1908C3JGG", + "url": "/v1/smartphones/redmi-note-8-2021-global-dual-sim-td-lte-64gb-m1908c3jgg" + }, + { + "slug": "redmi-note-8-dual-sim-td-lte-apac-64gb-m1908c3jh", + "name": "Redmi Note 8 Dual SIM TD-LTE APAC 64GB M1908C3JH", + "url": "/v1/smartphones/redmi-note-8-dual-sim-td-lte-apac-64gb-m1908c3jh" + }, + { + "slug": "redmi-note-8-global-dual-sim-td-lte-64gb-m1908c3jg", + "name": "Redmi Note 8 Global Dual SIM TD-LTE 64GB M1908C3JG", + "url": "/v1/smartphones/redmi-note-8-global-dual-sim-td-lte-64gb-m1908c3jg" + }, + { + "slug": "redmi-note-8-premium-edition-dual-sim-td-lte-cn-128gb-m1908c3je", + "name": "Redmi Note 8 Premium Edition Dual SIM TD-LTE CN 128GB M1908C3JE", + "url": "/v1/smartphones/redmi-note-8-premium-edition-dual-sim-td-lte-cn-128gb-m1908c3je" + }, + { + "slug": "redmi-note-8-premium-edition-dual-sim-td-lte-cn-64gb-m1908c3je", + "name": "Redmi Note 8 Premium Edition Dual SIM TD-LTE CN 64GB M1908C3JE", + "url": "/v1/smartphones/redmi-note-8-premium-edition-dual-sim-td-lte-cn-64gb-m1908c3je" + }, + { + "slug": "redmi-note-8-pro", + "name": "Redmi Note 8 Pro", + "url": "/v1/smartphones/redmi-note-8-pro" + }, + { + "slug": "redmi-note-8-pro-global-dual-sim-td-lte-128gb-m1906g7g", + "name": "Redmi Note 8 Pro Global Dual SIM TD-LTE 128GB M1906G7G", + "url": "/v1/smartphones/redmi-note-8-pro-global-dual-sim-td-lte-128gb-m1906g7g" + }, + { + "slug": "redmi-note-8-pro-global-dual-sim-td-lte-64gb-m1906g7g", + "name": "Redmi Note 8 Pro Global Dual SIM TD-LTE 64GB M1906G7G", + "url": "/v1/smartphones/redmi-note-8-pro-global-dual-sim-td-lte-64gb-m1906g7g" + }, + { + "slug": "redmi-note-8-pro-premium-edition", + "name": "Redmi Note 8 Pro Premium Edition", + "url": "/v1/smartphones/redmi-note-8-pro-premium-edition" + }, + { + "slug": "redmi-note-8-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1906g7e", + "name": "Redmi Note 8 Pro Premium Edition Dual SIM TD-LTE CN 128GB M1906G7E", + "url": "/v1/smartphones/redmi-note-8-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1906g7e" + }, + { + "slug": "redmi-note-8-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1906g7t", + "name": "Redmi Note 8 Pro Premium Edition Dual SIM TD-LTE CN 128GB M1906G7T", + "url": "/v1/smartphones/redmi-note-8-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1906g7t" + }, + { + "slug": "redmi-note-8-pro-premium-edition-dual-sim-td-lte-in-128gb-m1906g7i", + "name": "Redmi Note 8 Pro Premium Edition Dual SIM TD-LTE IN 128GB M1906G7I", + "url": "/v1/smartphones/redmi-note-8-pro-premium-edition-dual-sim-td-lte-in-128gb-m1906g7i" + }, + { + "slug": "redmi-note-8-pro-standard-edition", + "name": "Redmi Note 8 Pro Standard Edition", + "url": "/v1/smartphones/redmi-note-8-pro-standard-edition" + }, + { + "slug": "redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1906g7e", + "name": "Redmi Note 8 Pro Standard Edition Dual SIM TD-LTE CN 128GB M1906G7E", + "url": "/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1906g7e" + }, + { + "slug": "redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1906g7t", + "name": "Redmi Note 8 Pro Standard Edition Dual SIM TD-LTE CN 128GB M1906G7T", + "url": "/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1906g7t" + }, + { + "slug": "redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1906g7e", + "name": "Redmi Note 8 Pro Standard Edition Dual SIM TD-LTE CN 64GB M1906G7E", + "url": "/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1906g7e" + }, + { + "slug": "redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1906g7t", + "name": "Redmi Note 8 Pro Standard Edition Dual SIM TD-LTE CN 64GB M1906G7T", + "url": "/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1906g7t" + }, + { + "slug": "redmi-note-8-pro-standard-edition-dual-sim-td-lte-in-128gb-m1906g7i", + "name": "Redmi Note 8 Pro Standard Edition Dual SIM TD-LTE IN 128GB M1906G7I", + "url": "/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-in-128gb-m1906g7i" + }, + { + "slug": "redmi-note-8-pro-standard-edition-dual-sim-td-lte-in-64gb-m1906g7i", + "name": "Redmi Note 8 Pro Standard Edition Dual SIM TD-LTE IN 64GB M1906G7I", + "url": "/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-in-64gb-m1906g7i" + }, + { + "slug": "redmi-note-8-standard-edition-dual-sim-td-lte-cn-64gb-m1908c3je", + "name": "Redmi Note 8 Standard Edition Dual SIM TD-LTE CN 64GB M1908C3JE", + "url": "/v1/smartphones/redmi-note-8-standard-edition-dual-sim-td-lte-cn-64gb-m1908c3je" + }, + { + "slug": "redmi-note-8t-premium-edition-global-dual-sim-td-lte-128gb-m1908c3xg", + "name": "Redmi Note 8T Premium Edition Global Dual SIM TD-LTE 128GB M1908C3XG", + "url": "/v1/smartphones/redmi-note-8t-premium-edition-global-dual-sim-td-lte-128gb-m1908c3xg" + }, + { + "slug": "redmi-note-8t-premium-edition-global-dual-sim-td-lte-64gb-m1908c3xg", + "name": "Redmi Note 8T Premium Edition Global Dual SIM TD-LTE 64GB M1908C3XG", + "url": "/v1/smartphones/redmi-note-8t-premium-edition-global-dual-sim-td-lte-64gb-m1908c3xg" + }, + { + "slug": "redmi-note-8t-standard-edition-global-dual-sim-td-lte-32gb-m1908c3xg", + "name": "Redmi Note 8T Standard Edition Global Dual SIM TD-LTE 32GB M1908C3XG", + "url": "/v1/smartphones/redmi-note-8t-standard-edition-global-dual-sim-td-lte-32gb-m1908c3xg" + }, + { + "slug": "redmi-note-9", + "name": "Redmi Note 9", + "url": "/v1/smartphones/redmi-note-9" + }, + { + "slug": "redmi-note-9-4g-premium-edition-dual-sim-td-lte-cn-128gb-m2010j19ct", + "name": "Redmi Note 9 4G Premium Edition Dual SIM TD-LTE CN 128GB M2010J19CT", + "url": "/v1/smartphones/redmi-note-9-4g-premium-edition-dual-sim-td-lte-cn-128gb-m2010j19ct" + }, + { + "slug": "redmi-note-9-4g-standard-edition-dual-sim-td-lte-cn-128gb-m2010j19ct", + "name": "Redmi Note 9 4G Standard Edition Dual SIM TD-LTE CN 128GB M2010J19CT", + "url": "/v1/smartphones/redmi-note-9-4g-standard-edition-dual-sim-td-lte-cn-128gb-m2010j19ct" + }, + { + "slug": "redmi-note-9-4g-top-edition-dual-sim-td-lte-cn-128gb-m2010j19ct", + "name": "Redmi Note 9 4G Top Edition Dual SIM TD-LTE CN 128GB M2010J19CT", + "url": "/v1/smartphones/redmi-note-9-4g-top-edition-dual-sim-td-lte-cn-128gb-m2010j19ct" + }, + { + "slug": "redmi-note-9-4g-top-edition-dual-sim-td-lte-cn-256gb-m2010j19ct", + "name": "Redmi Note 9 4G Top Edition Dual SIM TD-LTE CN 256GB M2010J19CT", + "url": "/v1/smartphones/redmi-note-9-4g-top-edition-dual-sim-td-lte-cn-256gb-m2010j19ct" + }, + { + "slug": "redmi-note-9-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2007j22c", + "name": "Redmi Note 9 5G Premium Edition Dual SIM TD-LTE CN 128GB M2007J22C", + "url": "/v1/smartphones/redmi-note-9-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2007j22c" + }, + { + "slug": "redmi-note-9-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2007j22c", + "name": "Redmi Note 9 5G Premium Edition Dual SIM TD-LTE CN 256GB M2007J22C", + "url": "/v1/smartphones/redmi-note-9-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2007j22c" + }, + { + "slug": "redmi-note-9-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2007j22c", + "name": "Redmi Note 9 5G Standard Edition Dual SIM TD-LTE CN 128GB M2007J22C", + "url": "/v1/smartphones/redmi-note-9-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2007j22c" + }, + { + "slug": "redmi-note-9-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2007j22c", + "name": "Redmi Note 9 5G Standard Edition Dual SIM TD-LTE CN 256GB M2007J22C", + "url": "/v1/smartphones/redmi-note-9-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2007j22c" + }, + { + "slug": "redmi-note-9-global-dual-sim-td-lte-128gb-m2003j15sg", + "name": "Redmi Note 9 Global Dual SIM TD-LTE 128GB M2003J15SG", + "url": "/v1/smartphones/redmi-note-9-global-dual-sim-td-lte-128gb-m2003j15sg" + }, + { + "slug": "redmi-note-9-global-dual-sim-td-lte-128gb-m2003j15ss", + "name": "Redmi Note 9 Global Dual SIM TD-LTE 128GB M2003J15SS", + "url": "/v1/smartphones/redmi-note-9-global-dual-sim-td-lte-128gb-m2003j15ss" + }, + { + "slug": "redmi-note-9-global-dual-sim-td-lte-64gb-m2003j15sg", + "name": "Redmi Note 9 Global Dual SIM TD-LTE 64GB M2003J15SG", + "url": "/v1/smartphones/redmi-note-9-global-dual-sim-td-lte-64gb-m2003j15sg" + }, + { + "slug": "redmi-note-9-global-dual-sim-td-lte-64gb-m2003j15ss", + "name": "Redmi Note 9 Global Dual SIM TD-LTE 64GB M2003J15SS", + "url": "/v1/smartphones/redmi-note-9-global-dual-sim-td-lte-64gb-m2003j15ss" + }, + { + "slug": "redmi-note-9-pro", + "name": "Redmi Note 9 Pro", + "url": "/v1/smartphones/redmi-note-9-pro" + }, + { + "slug": "redmi-note-9-pro-max-premium-edition", + "name": "Redmi Note 9 Pro Max Premium Edition", + "url": "/v1/smartphones/redmi-note-9-pro-max-premium-edition" + }, + { + "slug": "redmi-note-9-pro-max-standard-edition", + "name": "Redmi Note 9 Pro Max Standard Edition", + "url": "/v1/smartphones/redmi-note-9-pro-max-standard-edition" + }, + { + "slug": "redmi-note-9-pro-premium-edition", + "name": "Redmi Note 9 Pro Premium Edition", + "url": "/v1/smartphones/redmi-note-9-pro-premium-edition" + }, + { + "slug": "redmi-note-9-pro-standard-edition", + "name": "Redmi Note 9 Pro Standard Edition", + "url": "/v1/smartphones/redmi-note-9-pro-standard-edition" + }, + { + "slug": "redmi-note-9s", + "name": "Redmi Note 9S", + "url": "/v1/smartphones/redmi-note-9s" + }, + { + "slug": "redmi-note-9t", + "name": "Redmi Note 9T", + "url": "/v1/smartphones/redmi-note-9t" + }, + { + "slug": "redmi-note-9t-5g-a001xm-dual-sim-td-lte-jp-64gb-m2007j22r", + "name": "Redmi Note 9T 5G A001XM Dual SIM TD-LTE JP 64GB M2007J22R", + "url": "/v1/smartphones/redmi-note-9t-5g-a001xm-dual-sim-td-lte-jp-64gb-m2007j22r" + }, + { + "slug": "redmi-note-9t-5g-global-dual-sim-td-lte-128gb-m2007j22g", + "name": "Redmi Note 9T 5G Global Dual SIM TD-LTE 128GB M2007J22G", + "url": "/v1/smartphones/redmi-note-9t-5g-global-dual-sim-td-lte-128gb-m2007j22g" + }, + { + "slug": "redmi-note-9t-5g-global-dual-sim-td-lte-64gb-m2007j22g", + "name": "Redmi Note 9T 5G Global Dual SIM TD-LTE 64GB M2007J22G", + "url": "/v1/smartphones/redmi-note-9t-5g-global-dual-sim-td-lte-64gb-m2007j22g" + }, + { + "slug": "redmi-s2-dual-sim-global-td-lte-32gb-m1803e6g", + "name": "Redmi S2 Dual SIM Global TD-LTE 32GB M1803E6G", + "url": "/v1/smartphones/redmi-s2-dual-sim-global-td-lte-32gb-m1803e6g" + }, + { + "slug": "redmi-s2-dual-sim-global-td-lte-64gb-m1803e6g", + "name": "Redmi S2 Dual SIM Global TD-LTE 64GB M1803E6G", + "url": "/v1/smartphones/redmi-s2-dual-sim-global-td-lte-64gb-m1803e6g" + }, + { + "slug": "redmi-s2-dual-sim-td-lte-cn-32gb-m1803e6e-m1803e6c", + "name": "Redmi S2 Dual SIM TD-LTE CN 32GB M1803E6E / M1803E6C", + "url": "/v1/smartphones/redmi-s2-dual-sim-td-lte-cn-32gb-m1803e6e-m1803e6c" + }, + { + "slug": "redmi-s2-dual-sim-td-lte-cn-32gb-m1803e6t", + "name": "Redmi S2 Dual SIM TD-LTE CN 32GB M1803E6T", + "url": "/v1/smartphones/redmi-s2-dual-sim-td-lte-cn-32gb-m1803e6t" + }, + { + "slug": "redmi-s2-dual-sim-td-lte-cn-64gb-m1803e6e-m1803e6c", + "name": "Redmi S2 Dual SIM TD-LTE CN 64GB M1803E6E / M1803E6C", + "url": "/v1/smartphones/redmi-s2-dual-sim-td-lte-cn-64gb-m1803e6e-m1803e6c" + }, + { + "slug": "redmi-s2-dual-sim-td-lte-cn-64gb-m1803e6t", + "name": "Redmi S2 Dual SIM TD-LTE CN 64GB M1803E6T", + "url": "/v1/smartphones/redmi-s2-dual-sim-td-lte-cn-64gb-m1803e6t" + }, + { + "slug": "redmi-s2-dual-sim-td-lte-eg-bd-mx-32gb-m1803e6h", + "name": "Redmi S2 Dual SIM TD-LTE EG BD MX 32GB M1803E6H", + "url": "/v1/smartphones/redmi-s2-dual-sim-td-lte-eg-bd-mx-32gb-m1803e6h" + }, + { + "slug": "redmi-s2-dual-sim-td-lte-eg-bd-mx-64gb-m1803e6h", + "name": "Redmi S2 Dual SIM TD-LTE EG BD MX 64GB M1803E6H", + "url": "/v1/smartphones/redmi-s2-dual-sim-td-lte-eg-bd-mx-64gb-m1803e6h" + }, + { + "slug": "redmi-y2-dual-sim-td-lte-in-32gb-mzb6144in-mzb6145in-mzb6783in-mzb6784in", + "name": "Redmi Y2 Dual SIM TD-LTE IN 32GB MZB6144IN / MZB6145IN / MZB6783IN / MZB6784IN", + "url": "/v1/smartphones/redmi-y2-dual-sim-td-lte-in-32gb-mzb6144in-mzb6145in-mzb6783in-mzb6784in" + }, + { + "slug": "redmi-y2-dual-sim-td-lte-in-64gb-mzb6305in-mzb6306in-mzb6307in", + "name": "Redmi Y2 Dual SIM TD-LTE IN 64GB MZB6305IN / MZB6306IN / MZB6307IN", + "url": "/v1/smartphones/redmi-y2-dual-sim-td-lte-in-64gb-mzb6305in-mzb6306in-mzb6307in" + }, + { + "slug": "redmi-y3-global-dual-sim-td-lte-32gb-m1810f6g", + "name": "Redmi Y3 Global Dual SIM TD-LTE 32GB M1810F6G", + "url": "/v1/smartphones/redmi-y3-global-dual-sim-td-lte-32gb-m1810f6g" + }, + { + "slug": "redmi-y3-premium-edition-dual-sim-td-lte-in-32gb-m1810f6i", + "name": "Redmi Y3 Premium Edition Dual SIM TD-LTE IN 32GB M1810F6I", + "url": "/v1/smartphones/redmi-y3-premium-edition-dual-sim-td-lte-in-32gb-m1810f6i" + }, + { + "slug": "redmi-y3-standard-edition-dual-sim-td-lte-in-32gb-m1810f6i", + "name": "Redmi Y3 Standard Edition Dual SIM TD-LTE IN 32GB M1810F6I", + "url": "/v1/smartphones/redmi-y3-standard-edition-dual-sim-td-lte-in-32gb-m1810f6i" + }, + { + "slug": "reno-10x-zoom-edition-dual-sim-td-lte-id-my-v3-256gb-cph1919", + "name": "Reno 10x Zoom Edition Dual SIM TD-LTE ID MY V3 256GB CPH1919", + "url": "/v1/smartphones/reno-10x-zoom-edition-dual-sim-td-lte-id-my-v3-256gb-cph1919" + }, + { + "slug": "reno-10x-zoom-edition-dual-sim-td-lte-tw-v2-256gb-cph1919", + "name": "Reno 10x Zoom Edition Dual SIM TD-LTE TW V2 256GB CPH1919", + "url": "/v1/smartphones/reno-10x-zoom-edition-dual-sim-td-lte-tw-v2-256gb-cph1919" + }, + { + "slug": "reno-10x-zoom-edition-global-dual-sim-td-lte-v1-128gb-cph1919", + "name": "Reno 10x Zoom Edition Global Dual SIM TD-LTE V1 128GB CPH1919", + "url": "/v1/smartphones/reno-10x-zoom-edition-global-dual-sim-td-lte-v1-128gb-cph1919" + }, + { + "slug": "reno-10x-zoom-edition-global-dual-sim-td-lte-v1-256gb-cph1919", + "name": "Reno 10x Zoom Edition Global Dual SIM TD-LTE V1 256GB CPH1919", + "url": "/v1/smartphones/reno-10x-zoom-edition-global-dual-sim-td-lte-v1-256gb-cph1919" + }, + { + "slug": "reno-10x-zoom-premium-edition-dual-sim-td-lte-cn-256gb-pccm00", + "name": "Reno 10x Zoom Premium Edition Dual SIM TD-LTE CN 256GB PCCM00", + "url": "/v1/smartphones/reno-10x-zoom-premium-edition-dual-sim-td-lte-cn-256gb-pccm00" + }, + { + "slug": "reno-10x-zoom-special-edition-dual-sim-td-lte-id-my-v3-256gb", + "name": "Reno 10x Zoom Special Edition Dual SIM TD-LTE ID MY V3 256GB", + "url": "/v1/smartphones/reno-10x-zoom-special-edition-dual-sim-td-lte-id-my-v3-256gb" + }, + { + "slug": "reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-128gb-pccm00", + "name": "Reno 10x Zoom Standard Edition Dual SIM TD-LTE CN 128GB PCCM00", + "url": "/v1/smartphones/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-128gb-pccm00" + }, + { + "slug": "reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-128gb-pcct00", + "name": "Reno 10x Zoom Standard Edition Dual SIM TD-LTE CN 128GB PCCT00", + "url": "/v1/smartphones/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-128gb-pcct00" + }, + { + "slug": "reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-256gb-pccm00", + "name": "Reno 10x Zoom Standard Edition Dual SIM TD-LTE CN 256GB PCCM00", + "url": "/v1/smartphones/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-256gb-pccm00" + }, + { + "slug": "reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-256gb-pcct00", + "name": "Reno 10x Zoom Standard Edition Dual SIM TD-LTE CN 256GB PCCT00", + "url": "/v1/smartphones/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-256gb-pcct00" + }, + { + "slug": "reno-5f-2021", + "name": "Reno 5F 2021", + "url": "/v1/smartphones/reno-5f-2021" + }, + { + "slug": "reno-5f-2021-dual-sim-td-lte-v1-id-128gb-cph2217", + "name": "Reno 5F 2021 Dual SIM TD-LTE V1 ID 128GB CPH2217", + "url": "/v1/smartphones/reno-5f-2021-dual-sim-td-lte-v1-id-128gb-cph2217" + }, + { + "slug": "reno-5f-2021-dual-sim-td-lte-v2-my-ke-128gb-cph2217", + "name": "Reno 5F 2021 Dual SIM TD-LTE V2 MY KE 128GB CPH2217", + "url": "/v1/smartphones/reno-5f-2021-dual-sim-td-lte-v2-my-ke-128gb-cph2217" + }, + { + "slug": "reno-5g-global-td-lte-256gb-cph1921", + "name": "Reno 5G Global TD-LTE 256GB CPH1921", + "url": "/v1/smartphones/reno-5g-global-td-lte-256gb-cph1921" + }, + { + "slug": "reno-5z", + "name": "Reno 5Z", + "url": "/v1/smartphones/reno-5z" + }, + { + "slug": "reno-5z-5g-2021-dual-sim-td-lte-eu-v1-128gb-cph2211", + "name": "Reno 5Z 5G 2021 Dual SIM TD-LTE EU V1 128GB CPH2211", + "url": "/v1/smartphones/reno-5z-5g-2021-dual-sim-td-lte-eu-v1-128gb-cph2211" + }, + { + "slug": "reno-5z-5g-2021-global-dual-sim-td-lte-v2-128gb-cph2211-a94-5g", + "name": "Reno 5Z 5G 2021 Global Dual SIM TD-LTE V2 128GB CPH2211 / A94 5G", + "url": "/v1/smartphones/reno-5z-5g-2021-global-dual-sim-td-lte-v2-128gb-cph2211-a94-5g" + }, + { + "slug": "reno-6", + "name": "Reno 6", + "url": "/v1/smartphones/reno-6" + }, + { + "slug": "reno-6-5g-2021-dual-sim-td-lte-cn-128gb-peqm00", + "name": "Reno 6 5G 2021 Dual SIM TD-LTE CN 128GB PEQM00", + "url": "/v1/smartphones/reno-6-5g-2021-dual-sim-td-lte-cn-128gb-peqm00" + }, + { + "slug": "reno-6-5g-2021-dual-sim-td-lte-cn-256gb-peqm00", + "name": "Reno 6 5G 2021 Dual SIM TD-LTE CN 256GB PEQM00", + "url": "/v1/smartphones/reno-6-5g-2021-dual-sim-td-lte-cn-256gb-peqm00" + }, + { + "slug": "reno-6-5g-2021-global-dual-sim-td-lte-128gb-cph2215", + "name": "Reno 6 5G 2021 Global Dual SIM TD-LTE 128GB CPH2215", + "url": "/v1/smartphones/reno-6-5g-2021-global-dual-sim-td-lte-128gb-cph2215" + }, + { + "slug": "reno-6-pro", + "name": "Reno 6 Pro", + "url": "/v1/smartphones/reno-6-pro" + }, + { + "slug": "reno-6-pro-5g-2021-dual-sim-td-lte-apac-256gb-cph2249", + "name": "Reno 6 Pro 5G 2021 Dual SIM TD-LTE APAC 256GB CPH2249", + "url": "/v1/smartphones/reno-6-pro-5g-2021-dual-sim-td-lte-apac-256gb-cph2249" + }, + { + "slug": "reno-6-pro-5g-2021-global-dual-sim-td-lte-256gb-cph2247", + "name": "Reno 6 Pro 5G 2021 Global Dual SIM TD-LTE 256GB CPH2247", + "url": "/v1/smartphones/reno-6-pro-5g-2021-global-dual-sim-td-lte-256gb-cph2247" + }, + { + "slug": "reno-6-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pepm00", + "name": "Reno 6 Pro 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB PEPM00", + "url": "/v1/smartphones/reno-6-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pepm00" + }, + { + "slug": "reno-6-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-pepm00", + "name": "Reno 6 Pro 5G 2021 Standard Edition Dual SIM TD-LTE CN 128GB PEPM00", + "url": "/v1/smartphones/reno-6-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-pepm00" + }, + { + "slug": "reno-6-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-penm00", + "name": "Reno 6 Pro+ 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB PENM00", + "url": "/v1/smartphones/reno-6-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-penm00" + }, + { + "slug": "reno-6-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-penm00", + "name": "Reno 6 Pro+ 5G 2021 Standard Edition Dual SIM TD-LTE CN 128GB PENM00", + "url": "/v1/smartphones/reno-6-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-penm00" + }, + { + "slug": "reno-6z", + "name": "Reno 6Z", + "url": "/v1/smartphones/reno-6z" + }, + { + "slug": "reno-6z-5g-2021-global-dual-sim-td-lte-v1-128gb-cph2237", + "name": "Reno 6Z 5G 2021 Global Dual SIM TD-LTE V1 128GB CPH2237", + "url": "/v1/smartphones/reno-6z-5g-2021-global-dual-sim-td-lte-v1-128gb-cph2237" + }, + { + "slug": "reno-7", + "name": "Reno 7", + "url": "/v1/smartphones/reno-7" + }, + { + "slug": "reno-7-a", + "name": "Reno 7 A", + "url": "/v1/smartphones/reno-7-a" + }, + { + "slug": "reno-7-pro", + "name": "Reno 7 Pro", + "url": "/v1/smartphones/reno-7-pro" + }, + { + "slug": "reno-7-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pfdm00", + "name": "Reno 7 Pro 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB PFDM00", + "url": "/v1/smartphones/reno-7-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pfdm00" + }, + { + "slug": "reno-7-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-pfdm00", + "name": "Reno 7 Pro 5G 2021 Standard Edition Dual SIM TD-LTE CN 256GB PFDM00", + "url": "/v1/smartphones/reno-7-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-pfdm00" + }, + { + "slug": "reno-7-se", + "name": "Reno 7 SE", + "url": "/v1/smartphones/reno-7-se" + }, + { + "slug": "reno-7-se-5g-2021-dual-sim-td-lte-cn-128gb-pfcm00", + "name": "Reno 7 SE 5G 2021 Dual SIM TD-LTE CN 128GB PFCM00", + "url": "/v1/smartphones/reno-7-se-5g-2021-dual-sim-td-lte-cn-128gb-pfcm00" + }, + { + "slug": "reno-7-se-5g-2021-dual-sim-td-lte-cn-256gb-pfcm00", + "name": "Reno 7 SE 5G 2021 Dual SIM TD-LTE CN 256GB PFCM00", + "url": "/v1/smartphones/reno-7-se-5g-2021-dual-sim-td-lte-cn-256gb-pfcm00" + }, + { + "slug": "reno-7-z", + "name": "Reno 7 Z", + "url": "/v1/smartphones/reno-7-z" + }, + { + "slug": "reno-8-lite", + "name": "Reno 8 Lite", + "url": "/v1/smartphones/reno-8-lite" + }, + { + "slug": "reno-8-pro", + "name": "Reno 8 Pro", + "url": "/v1/smartphones/reno-8-pro" + }, + { + "slug": "reno-a-dual-sim-td-lte-apac-128gb-cph1983", + "name": "Reno A Dual SIM TD-LTE APAC 128GB CPH1983", + "url": "/v1/smartphones/reno-a-dual-sim-td-lte-apac-128gb-cph1983" + }, + { + "slug": "reno-a-dual-sim-td-lte-apac-64gb-cph1983", + "name": "Reno A Dual SIM TD-LTE APAC 64GB CPH1983", + "url": "/v1/smartphones/reno-a-dual-sim-td-lte-apac-64gb-cph1983" + }, + { + "slug": "reno-ace-premium-edition", + "name": "Reno Ace Premium Edition", + "url": "/v1/smartphones/reno-ace-premium-edition" + }, + { + "slug": "reno-ace-premium-edition-dual-sim-td-lte-cn-256gb-pclm10", + "name": "Reno Ace Premium Edition Dual SIM TD-LTE CN 256GB PCLM10", + "url": "/v1/smartphones/reno-ace-premium-edition-dual-sim-td-lte-cn-256gb-pclm10" + }, + { + "slug": "reno-ace-standard-edition", + "name": "Reno Ace Standard Edition", + "url": "/v1/smartphones/reno-ace-standard-edition" + }, + { + "slug": "reno-ace-standard-edition-dual-sim-td-lte-cn-128gb-pclm10", + "name": "Reno Ace Standard Edition Dual SIM TD-LTE CN 128GB PCLM10", + "url": "/v1/smartphones/reno-ace-standard-edition-dual-sim-td-lte-cn-128gb-pclm10" + }, + { + "slug": "reno-ace-standard-edition-dual-sim-td-lte-cn-256gb-pclm10", + "name": "Reno Ace Standard Edition Dual SIM TD-LTE CN 256GB PCLM10", + "url": "/v1/smartphones/reno-ace-standard-edition-dual-sim-td-lte-cn-256gb-pclm10" + }, + { + "slug": "reno-premium-edition-dual-sim-td-lte-cn-256gb-pcam00", + "name": "Reno Premium Edition Dual SIM TD-LTE CN 256GB PCAM00", + "url": "/v1/smartphones/reno-premium-edition-dual-sim-td-lte-cn-256gb-pcam00" + }, + { + "slug": "reno-premium-edition-dual-sim-td-lte-in-id-th-pk-bd-np-v3-256gb-cph1917", + "name": "Reno Premium Edition Dual SIM TD-LTE IN ID TH PK BD NP V3 256GB CPH1917", + "url": "/v1/smartphones/reno-premium-edition-dual-sim-td-lte-in-id-th-pk-bd-np-v3-256gb-cph1917" + }, + { + "slug": "reno-premium-edition-dual-sim-td-lte-tw-sg-v4-256gb-cph1917", + "name": "Reno Premium Edition Dual SIM TD-LTE TW SG V4 256GB CPH1917", + "url": "/v1/smartphones/reno-premium-edition-dual-sim-td-lte-tw-sg-v4-256gb-cph1917" + }, + { + "slug": "reno-premium-edition-dual-sim-td-lte-vn-kh-my-v2-256gb-cph1917", + "name": "Reno Premium Edition Dual SIM TD-LTE VN KH MY V2 256GB CPH1917", + "url": "/v1/smartphones/reno-premium-edition-dual-sim-td-lte-vn-kh-my-v2-256gb-cph1917" + }, + { + "slug": "reno-premium-edition-global-dual-sim-td-lte-v1-256gb-cph1917", + "name": "Reno Premium Edition Global Dual SIM TD-LTE V1 256GB CPH1917", + "url": "/v1/smartphones/reno-premium-edition-global-dual-sim-td-lte-v1-256gb-cph1917" + }, + { + "slug": "reno-standard-edition-dual-sim-td-lte-cn-128gb-pcam00", + "name": "Reno Standard Edition Dual SIM TD-LTE CN 128GB PCAM00", + "url": "/v1/smartphones/reno-standard-edition-dual-sim-td-lte-cn-128gb-pcam00" + }, + { + "slug": "reno-standard-edition-dual-sim-td-lte-cn-256gb-pcam00", + "name": "Reno Standard Edition Dual SIM TD-LTE CN 256GB PCAM00", + "url": "/v1/smartphones/reno-standard-edition-dual-sim-td-lte-cn-256gb-pcam00" + }, + { + "slug": "reno-standard-edition-dual-sim-td-lte-cn-256gb-pcat00", + "name": "Reno Standard Edition Dual SIM TD-LTE CN 256GB PCAT00", + "url": "/v1/smartphones/reno-standard-edition-dual-sim-td-lte-cn-256gb-pcat00" + }, + { + "slug": "reno-z", + "name": "Reno Z", + "url": "/v1/smartphones/reno-z" + }, + { + "slug": "reno-z-dual-sim-td-lte-cn-128gb-pcdm10", + "name": "Reno Z Dual SIM TD-LTE CN 128GB PCDM10", + "url": "/v1/smartphones/reno-z-dual-sim-td-lte-cn-128gb-pcdm10" + }, + { + "slug": "reno-z-dual-sim-td-lte-cn-128gb-pcdt10", + "name": "Reno Z Dual SIM TD-LTE CN 128GB PCDT10", + "url": "/v1/smartphones/reno-z-dual-sim-td-lte-cn-128gb-pcdt10" + }, + { + "slug": "reno-z-dual-sim-td-lte-cn-256gb-pcdm10", + "name": "Reno Z Dual SIM TD-LTE CN 256GB PCDM10", + "url": "/v1/smartphones/reno-z-dual-sim-td-lte-cn-256gb-pcdm10" + }, + { + "slug": "reno-z-dual-sim-td-lte-cn-256gb-pcdt10", + "name": "Reno Z Dual SIM TD-LTE CN 256GB PCDT10", + "url": "/v1/smartphones/reno-z-dual-sim-td-lte-cn-256gb-pcdt10" + }, + { + "slug": "reno-z-dual-sim-td-lte-tw-128gb-cph1979", + "name": "Reno Z Dual SIM TD-LTE TW 128GB CPH1979", + "url": "/v1/smartphones/reno-z-dual-sim-td-lte-tw-128gb-cph1979" + }, + { + "slug": "reno-z-global-dual-sim-td-lte-128gb-cph1979", + "name": "Reno Z Global Dual SIM TD-LTE 128GB CPH1979", + "url": "/v1/smartphones/reno-z-global-dual-sim-td-lte-128gb-cph1979" + }, + { + "slug": "reno10-pro-5g", + "name": "Reno10 Pro 5G", + "url": "/v1/smartphones/reno10-pro-5g" + }, + { + "slug": "reno11-pro", + "name": "Reno11 Pro", + "url": "/v1/smartphones/reno11-pro" + }, + { + "slug": "reno12-pro", + "name": "Reno12 Pro", + "url": "/v1/smartphones/reno12-pro" + }, + { + "slug": "reno13", + "name": "Reno13", + "url": "/v1/smartphones/reno13" + }, + { + "slug": "reno13-pro", + "name": "Reno13 Pro", + "url": "/v1/smartphones/reno13-pro" + }, + { + "slug": "reno2", + "name": "Reno2", + "url": "/v1/smartphones/reno2" + }, + { + "slug": "reno2-dual-sim-td-lte-cn-256gb-pckm00", + "name": "Reno2 Dual SIM TD-LTE CN 256GB PCKM00", + "url": "/v1/smartphones/reno2-dual-sim-td-lte-cn-256gb-pckm00" + }, + { + "slug": "reno2-dual-sim-td-lte-cn-256gb-pckt00", + "name": "Reno2 Dual SIM TD-LTE CN 256GB PCKT00", + "url": "/v1/smartphones/reno2-dual-sim-td-lte-cn-256gb-pckt00" + }, + { + "slug": "reno2-dual-sim-td-lte-id-v3-256gb-cph1907", + "name": "Reno2 Dual SIM TD-LTE ID V3 256GB CPH1907", + "url": "/v1/smartphones/reno2-dual-sim-td-lte-id-v3-256gb-cph1907" + }, + { + "slug": "reno2-dual-sim-td-lte-tw-v2-256gb-cph1907", + "name": "Reno2 Dual SIM TD-LTE TW V2 256GB CPH1907", + "url": "/v1/smartphones/reno2-dual-sim-td-lte-tw-v2-256gb-cph1907" + }, + { + "slug": "reno2-f", + "name": "Reno2 F", + "url": "/v1/smartphones/reno2-f" + }, + { + "slug": "reno2-f-dual-sim-td-lte-in-id-pk-np-v1-128gb-cph1989", + "name": "Reno2 F Dual SIM TD-LTE IN ID PK NP V1 128GB CPH1989", + "url": "/v1/smartphones/reno2-f-dual-sim-td-lte-in-id-pk-np-v1-128gb-cph1989" + }, + { + "slug": "reno2-f-dual-sim-td-lte-vn-th-v2-128gb-cph1989", + "name": "Reno2 F Dual SIM TD-LTE VN TH V2 128GB CPH1989", + "url": "/v1/smartphones/reno2-f-dual-sim-td-lte-vn-th-v2-128gb-cph1989" + }, + { + "slug": "reno2-f-global-dual-sim-td-lte-v3-128gb-cph1989", + "name": "Reno2 F Global Dual SIM TD-LTE V3 128GB CPH1989", + "url": "/v1/smartphones/reno2-f-global-dual-sim-td-lte-v3-128gb-cph1989" + }, + { + "slug": "reno2-global-dual-sim-td-lte-v1-256gb-cph1907", + "name": "Reno2 Global Dual SIM TD-LTE V1 256GB CPH1907", + "url": "/v1/smartphones/reno2-global-dual-sim-td-lte-v1-256gb-cph1907" + }, + { + "slug": "reno2-z", + "name": "Reno2 Z", + "url": "/v1/smartphones/reno2-z" + }, + { + "slug": "reno2-z-dual-sim-td-lte-cn-128gb-pckm80", + "name": "Reno2 Z Dual SIM TD-LTE CN 128GB PCKM80", + "url": "/v1/smartphones/reno2-z-dual-sim-td-lte-cn-128gb-pckm80" + }, + { + "slug": "reno2-z-dual-sim-td-lte-in-v1-256gb-cph1945", + "name": "Reno2 Z Dual SIM TD-LTE IN V1 256GB CPH1945", + "url": "/v1/smartphones/reno2-z-dual-sim-td-lte-in-v1-256gb-cph1945" + }, + { + "slug": "reno2-z-global-dual-sim-td-lte-v2-128gb-cph1951", + "name": "Reno2 Z Global Dual SIM TD-LTE V2 128GB CPH1951", + "url": "/v1/smartphones/reno2-z-global-dual-sim-td-lte-v2-128gb-cph1951" + }, + { + "slug": "reno3", + "name": "Reno3", + "url": "/v1/smartphones/reno3" + }, + { + "slug": "reno3-5g", + "name": "Reno3 5G", + "url": "/v1/smartphones/reno3-5g" + }, + { + "slug": "reno3-5g-aura-edition-dual-sim-td-lte-cn-128gb-pclm50", + "name": "Reno3 5G Aura Edition Dual SIM TD-LTE CN 128GB PCLM50", + "url": "/v1/smartphones/reno3-5g-aura-edition-dual-sim-td-lte-cn-128gb-pclm50" + }, + { + "slug": "reno3-5g-premium-edition-dual-sim-td-lte-cn-128gb-pdcm00", + "name": "Reno3 5G Premium Edition Dual SIM TD-LTE CN 128GB PDCM00", + "url": "/v1/smartphones/reno3-5g-premium-edition-dual-sim-td-lte-cn-128gb-pdcm00" + }, + { + "slug": "reno3-5g-premium-edition-dual-sim-td-lte-cn-128gb-pdct00", + "name": "Reno3 5G Premium Edition Dual SIM TD-LTE CN 128GB PDCT00", + "url": "/v1/smartphones/reno3-5g-premium-edition-dual-sim-td-lte-cn-128gb-pdct00" + }, + { + "slug": "reno3-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdcm00", + "name": "Reno3 5G Standard Edition Dual SIM TD-LTE CN 128GB PDCM00", + "url": "/v1/smartphones/reno3-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdcm00" + }, + { + "slug": "reno3-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdct00", + "name": "Reno3 5G Standard Edition Dual SIM TD-LTE CN 128GB PDCT00", + "url": "/v1/smartphones/reno3-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdct00" + }, + { + "slug": "reno3-5g-td-lte-jp-a001op", + "name": "Reno3 5G TD-LTE JP A001OP", + "url": "/v1/smartphones/reno3-5g-td-lte-jp-a001op" + }, + { + "slug": "reno3-a-2020-global-dual-sim-td-lte-128gb-cph2013-a002op", + "name": "Reno3 A 2020 Global Dual SIM TD-LTE 128GB CPH2013 / A002OP", + "url": "/v1/smartphones/reno3-a-2020-global-dual-sim-td-lte-128gb-cph2013-a002op" + }, + { + "slug": "reno3-pro", + "name": "Reno3 Pro", + "url": "/v1/smartphones/reno3-pro" + }, + { + "slug": "reno3-pro-5g", + "name": "Reno3 Pro 5G", + "url": "/v1/smartphones/reno3-pro-5g" + }, + { + "slug": "reno3-pro-5g-global-dual-sim-td-lte-256gb-cph2009-find-x2-neo", + "name": "Reno3 Pro 5G Global Dual SIM TD-LTE 256GB CPH2009 / Find X2 Neo", + "url": "/v1/smartphones/reno3-pro-5g-global-dual-sim-td-lte-256gb-cph2009-find-x2-neo" + }, + { + "slug": "reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-pcrm00", + "name": "Reno3 Pro 5G Premium Edition Dual SIM TD-LTE CN 128GB PCRM00", + "url": "/v1/smartphones/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-pcrm00" + }, + { + "slug": "reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-pcrt00", + "name": "Reno3 Pro 5G Premium Edition Dual SIM TD-LTE CN 128GB PCRT00", + "url": "/v1/smartphones/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-pcrt00" + }, + { + "slug": "reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pcrm00", + "name": "Reno3 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB PCRM00", + "url": "/v1/smartphones/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pcrm00" + }, + { + "slug": "reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pcrt00", + "name": "Reno3 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB PCRT00", + "url": "/v1/smartphones/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pcrt00" + }, + { + "slug": "reno3-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pcrm00", + "name": "Reno3 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB PCRM00", + "url": "/v1/smartphones/reno3-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pcrm00" + }, + { + "slug": "reno3-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pcrt00", + "name": "Reno3 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB PCRT00", + "url": "/v1/smartphones/reno3-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pcrt00" + }, + { + "slug": "reno3-pro-dual-sim-td-lte-in-128gb-cph2035", + "name": "Reno3 Pro Dual SIM TD-LTE IN 128GB CPH2035", + "url": "/v1/smartphones/reno3-pro-dual-sim-td-lte-in-128gb-cph2035" + }, + { + "slug": "reno3-pro-dual-sim-td-lte-in-256gb-cph2035", + "name": "Reno3 Pro Dual SIM TD-LTE IN 256GB CPH2035", + "url": "/v1/smartphones/reno3-pro-dual-sim-td-lte-in-256gb-cph2035" + }, + { + "slug": "reno3-td-lte-apac-128gb-cph2043", + "name": "Reno3 TD-LTE APAC 128GB CPH2043", + "url": "/v1/smartphones/reno3-td-lte-apac-128gb-cph2043" + }, + { + "slug": "reno4", + "name": "Reno4", + "url": "/v1/smartphones/reno4" + }, + { + "slug": "reno4-5g", + "name": "Reno4 5G", + "url": "/v1/smartphones/reno4-5g" + }, + { + "slug": "reno4-5g-dual-sim-td-lte-cn-128gb-pdpm00", + "name": "Reno4 5G Dual SIM TD-LTE CN 128GB PDPM00", + "url": "/v1/smartphones/reno4-5g-dual-sim-td-lte-cn-128gb-pdpm00" + }, + { + "slug": "reno4-5g-dual-sim-td-lte-cn-128gb-pdpt00", + "name": "Reno4 5G Dual SIM TD-LTE CN 128GB PDPT00", + "url": "/v1/smartphones/reno4-5g-dual-sim-td-lte-cn-128gb-pdpt00" + }, + { + "slug": "reno4-5g-dual-sim-td-lte-cn-256gb-pdpm00", + "name": "Reno4 5G Dual SIM TD-LTE CN 256GB PDPM00", + "url": "/v1/smartphones/reno4-5g-dual-sim-td-lte-cn-256gb-pdpm00" + }, + { + "slug": "reno4-lite", + "name": "Reno4 Lite", + "url": "/v1/smartphones/reno4-lite" + }, + { + "slug": "reno4-lite-global-dual-sim-td-lte-v4-128gb-cph2125", + "name": "Reno4 Lite Global Dual SIM TD-LTE V4 128GB CPH2125", + "url": "/v1/smartphones/reno4-lite-global-dual-sim-td-lte-v4-128gb-cph2125" + }, + { + "slug": "reno4-pro", + "name": "Reno4 Pro", + "url": "/v1/smartphones/reno4-pro" + }, + { + "slug": "reno4-pro-5g", + "name": "Reno4 Pro 5G", + "url": "/v1/smartphones/reno4-pro-5g" + }, + { + "slug": "reno4-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pdnm00", + "name": "Reno4 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB PDNM00", + "url": "/v1/smartphones/reno4-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pdnm00" + }, + { + "slug": "reno4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdnm00", + "name": "Reno4 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB PDNM00", + "url": "/v1/smartphones/reno4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdnm00" + }, + { + "slug": "reno4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdnt00", + "name": "Reno4 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB PDNT00", + "url": "/v1/smartphones/reno4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdnt00" + }, + { + "slug": "reno4-se", + "name": "Reno4 SE", + "url": "/v1/smartphones/reno4-se" + }, + { + "slug": "reno4-se-5g-dual-sim-td-lte-cn-128gb-peam00", + "name": "Reno4 SE 5G Dual SIM TD-LTE CN 128GB PEAM00", + "url": "/v1/smartphones/reno4-se-5g-dual-sim-td-lte-cn-128gb-peam00" + }, + { + "slug": "reno4-se-5g-dual-sim-td-lte-cn-128gb-peat00", + "name": "Reno4 SE 5G Dual SIM TD-LTE CN 128GB PEAT00", + "url": "/v1/smartphones/reno4-se-5g-dual-sim-td-lte-cn-128gb-peat00" + }, + { + "slug": "reno4-se-5g-dual-sim-td-lte-cn-256gb-peam00", + "name": "Reno4 SE 5G Dual SIM TD-LTE CN 256GB PEAM00", + "url": "/v1/smartphones/reno4-se-5g-dual-sim-td-lte-cn-256gb-peam00" + }, + { + "slug": "reno5", + "name": "Reno5", + "url": "/v1/smartphones/reno5" + }, + { + "slug": "reno5-5g", + "name": "Reno5 5G", + "url": "/v1/smartphones/reno5-5g" + }, + { + "slug": "reno5-5g-dual-sim-td-lte-cn-128gb-pegm00", + "name": "Reno5 5G Dual SIM TD-LTE CN 128GB PEGM00", + "url": "/v1/smartphones/reno5-5g-dual-sim-td-lte-cn-128gb-pegm00" + }, + { + "slug": "reno5-5g-dual-sim-td-lte-cn-128gb-pegt00", + "name": "Reno5 5G Dual SIM TD-LTE CN 128GB PEGT00", + "url": "/v1/smartphones/reno5-5g-dual-sim-td-lte-cn-128gb-pegt00" + }, + { + "slug": "reno5-5g-dual-sim-td-lte-cn-256gb-pegm00", + "name": "Reno5 5G Dual SIM TD-LTE CN 256GB PEGM00", + "url": "/v1/smartphones/reno5-5g-dual-sim-td-lte-cn-256gb-pegm00" + }, + { + "slug": "reno5-5g-global-dual-sim-td-lte-128gb-cph2145", + "name": "Reno5 5G Global Dual SIM TD-LTE 128GB CPH2145", + "url": "/v1/smartphones/reno5-5g-global-dual-sim-td-lte-128gb-cph2145" + }, + { + "slug": "reno5-a", + "name": "Reno5 A", + "url": "/v1/smartphones/reno5-a" + }, + { + "slug": "reno5-a-5g-dual-sim-td-lte-jp-cph2199", + "name": "Reno5 A 5G Dual SIM TD-LTE JP CPH2199", + "url": "/v1/smartphones/reno5-a-5g-dual-sim-td-lte-jp-cph2199" + }, + { + "slug": "reno5-a-5g-td-lte-jp-a101op", + "name": "Reno5 A 5G TD-LTE JP A101OP", + "url": "/v1/smartphones/reno5-a-5g-td-lte-jp-a101op" + }, + { + "slug": "reno5-k", + "name": "Reno5 K", + "url": "/v1/smartphones/reno5-k" + }, + { + "slug": "reno5-pro", + "name": "Reno5 Pro", + "url": "/v1/smartphones/reno5-pro" + }, + { + "slug": "reno5-pro-5g", + "name": "Reno5 Pro 5G", + "url": "/v1/smartphones/reno5-pro-5g" + }, + { + "slug": "reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdsm00", + "name": "Reno5 Pro 5G Dual SIM TD-LTE CN 128GB PDSM00", + "url": "/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdsm00" + }, + { + "slug": "reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdst00", + "name": "Reno5 Pro 5G Dual SIM TD-LTE CN 128GB PDST00", + "url": "/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdst00" + }, + { + "slug": "reno5-pro-5g-dual-sim-td-lte-cn-256gb-pdsm00", + "name": "Reno5 Pro 5G Dual SIM TD-LTE CN 256GB PDSM00", + "url": "/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-256gb-pdsm00" + }, + { + "slug": "reno5-pro-5g-global-dual-sim-td-lte-256gb-cph2201", + "name": "Reno5 Pro 5G Global Dual SIM TD-LTE 256GB CPH2201", + "url": "/v1/smartphones/reno5-pro-5g-global-dual-sim-td-lte-256gb-cph2201" + }, + { + "slug": "reno5-pro-5g-artist-limited-edition-dual-sim-td-lte-cn-256gb-pdrm00", + "name": "Reno5 Pro+ 5G Artist Limited Edition Dual SIM TD-LTE CN 256GB PDRM00", + "url": "/v1/smartphones/reno5-pro-5g-artist-limited-edition-dual-sim-td-lte-cn-256gb-pdrm00" + }, + { + "slug": "reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdrm00", + "name": "Reno5 Pro+ 5G Dual SIM TD-LTE CN 128GB PDRM00", + "url": "/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdrm00" + }, + { + "slug": "reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdrt00", + "name": "Reno5 Pro+ 5G Dual SIM TD-LTE CN 128GB PDRT00", + "url": "/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdrt00" + }, + { + "slug": "reno5-pro-5g-dual-sim-td-lte-cn-256gb-pdrm00", + "name": "Reno5 Pro+ 5G Dual SIM TD-LTE CN 256GB PDRM00", + "url": "/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-256gb-pdrm00" + }, + { + "slug": "reno6", + "name": "Reno6", + "url": "/v1/smartphones/reno6" + }, + { + "slug": "reno6-5g", + "name": "Reno6 5G", + "url": "/v1/smartphones/reno6-5g" + }, + { + "slug": "reno6-pro-5g", + "name": "Reno6 Pro 5G", + "url": "/v1/smartphones/reno6-pro-5g" + }, + { + "slug": "reno7-5g", + "name": "Reno7 5G", + "url": "/v1/smartphones/reno7-5g" + }, + { + "slug": "reno7-pro-5g", + "name": "Reno7 Pro 5G", + "url": "/v1/smartphones/reno7-pro-5g" + }, + { + "slug": "reno8", + "name": "Reno8", + "url": "/v1/smartphones/reno8" + }, + { + "slug": "reno8-5g", + "name": "Reno8 5G", + "url": "/v1/smartphones/reno8-5g" + }, + { + "slug": "reno8-pro", + "name": "Reno8 Pro", + "url": "/v1/smartphones/reno8-pro" + }, + { + "slug": "reno8-pro-5g", + "name": "Reno8 Pro 5G", + "url": "/v1/smartphones/reno8-pro-5g" + }, + { + "slug": "reno8-z", + "name": "Reno8 Z", + "url": "/v1/smartphones/reno8-z" + }, + { + "slug": "reno9", + "name": "Reno9", + "url": "/v1/smartphones/reno9" + }, + { + "slug": "reno9-5g", + "name": "Reno9 5G", + "url": "/v1/smartphones/reno9-5g" + }, + { + "slug": "reno9-pro-5g", + "name": "Reno9 Pro 5G", + "url": "/v1/smartphones/reno9-pro-5g" + }, + { + "slug": "reno9-pro", + "name": "Reno9 Pro+", + "url": "/v1/smartphones/reno9-pro" + }, + { + "slug": "robby-2-dual-sim-m1853", + "name": "Robby 2 Dual SIM M1853", + "url": "/v1/smartphones/robby-2-dual-sim-m1853" + }, + { + "slug": "s1-pro", + "name": "S1 Pro", + "url": "/v1/smartphones/s1-pro" + }, + { + "slug": "s18-pro", + "name": "S18 Pro", + "url": "/v1/smartphones/s18-pro" + }, + { + "slug": "s30-5g-dual-sim-td-lte-cn-128gb-9030n", + "name": "S30 5G Dual SIM TD-LTE CN 128GB 9030N", + "url": "/v1/smartphones/s30-5g-dual-sim-td-lte-cn-128gb-9030n" + }, + { + "slug": "s30-5g-dual-sim-td-lte-cn-256gb-9030n", + "name": "S30 5G Dual SIM TD-LTE CN 256GB 9030N", + "url": "/v1/smartphones/s30-5g-dual-sim-td-lte-cn-256gb-9030n" + }, + { + "slug": "s30-se-5g-dual-sim-td-lte-cn-128gb-8030n", + "name": "S30 SE 5G Dual SIM TD-LTE CN 128GB 8030N", + "url": "/v1/smartphones/s30-se-5g-dual-sim-td-lte-cn-128gb-8030n" + }, + { + "slug": "s5-dual-sim-td-lte-apac-x652", + "name": "S5 Dual SIM TD-LTE APAC X652", + "url": "/v1/smartphones/s5-dual-sim-td-lte-apac-x652" + }, + { + "slug": "s5-dual-sim-td-lte-cn-128gb-pabx0010cn-pabx0011cn", + "name": "S5 Dual SIM TD-LTE CN 128GB PABX0010CN / PABX0011CN", + "url": "/v1/smartphones/s5-dual-sim-td-lte-cn-128gb-pabx0010cn-pabx0011cn" + }, + { + "slug": "s5-dual-sim-td-lte-cn-32gb-pabx0000cn-pabx0001cn", + "name": "S5 Dual SIM TD-LTE CN 32GB PABX0000CN / PABX0001CN", + "url": "/v1/smartphones/s5-dual-sim-td-lte-cn-32gb-pabx0000cn-pabx0001cn" + }, + { + "slug": "s5-dual-sim-td-lte-cn-64gb-pabx0002cn-pabx0003cn", + "name": "S5 Dual SIM TD-LTE CN 64GB PABX0002CN / PABX0003CN", + "url": "/v1/smartphones/s5-dual-sim-td-lte-cn-64gb-pabx0002cn-pabx0003cn" + }, + { + "slug": "s5-dual-sim-td-lte-emea-x652", + "name": "S5 Dual SIM TD-LTE EMEA X652", + "url": "/v1/smartphones/s5-dual-sim-td-lte-emea-x652" + }, + { + "slug": "s5-pro", + "name": "S5 Pro", + "url": "/v1/smartphones/s5-pro" + }, + { + "slug": "s5-pro-dual-sim-lte-emea", + "name": "S5 Pro Dual SIM LTE EMEA", + "url": "/v1/smartphones/s5-pro-dual-sim-lte-emea" + }, + { + "slug": "s5-pro-dual-sim-td-lte-apac", + "name": "S5 Pro Dual SIM TD-LTE APAC", + "url": "/v1/smartphones/s5-pro-dual-sim-td-lte-apac" + }, + { + "slug": "s5-pro-td-lte-dual-sim-paeg0005cn", + "name": "S5 Pro TD-LTE Dual SIM PAEG0005CN", + "url": "/v1/smartphones/s5-pro-td-lte-dual-sim-paeg0005cn" + }, + { + "slug": "s50-neo", + "name": "S50 Neo", + "url": "/v1/smartphones/s50-neo" + }, + { + "slug": "s70-global-dual-sim-td-lte", + "name": "S70 Global Dual SIM TD-LTE", + "url": "/v1/smartphones/s70-global-dual-sim-td-lte" + }, + { + "slug": "s70-lite-global-dual-sim-td-lte", + "name": "S70 Lite Global Dual SIM TD-LTE", + "url": "/v1/smartphones/s70-lite-global-dual-sim-td-lte" + }, + { + "slug": "s80-global-dual-sim-td-lte", + "name": "S80 Global Dual SIM TD-LTE", + "url": "/v1/smartphones/s80-global-dual-sim-td-lte" + }, + { + "slug": "s80-lite-global-dual-sim-td-lte", + "name": "S80 Lite Global Dual SIM TD-LTE", + "url": "/v1/smartphones/s80-lite-global-dual-sim-td-lte" + }, + { + "slug": "s90-global-dual-sim-td-lte", + "name": "S90 Global Dual SIM TD-LTE", + "url": "/v1/smartphones/s90-global-dual-sim-td-lte" + }, + { + "slug": "s90-pro-global-dual-sim-td-lte", + "name": "S90 Pro Global Dual SIM TD-LTE", + "url": "/v1/smartphones/s90-pro-global-dual-sim-td-lte" + }, + { + "slug": "s90c-global-dual-sim-td-lte", + "name": "S90C Global Dual SIM TD-LTE", + "url": "/v1/smartphones/s90c-global-dual-sim-td-lte" + }, + { + "slug": "s95-pro-global-dual-sim-td-lte", + "name": "S95 Pro Global Dual SIM TD-LTE", + "url": "/v1/smartphones/s95-pro-global-dual-sim-td-lte" + }, + { + "slug": "sm-a015f-galaxy-a01-2019-global-td-lte", + "name": "SM-A015F Galaxy A01 2019 Global TD-LTE", + "url": "/v1/smartphones/sm-a015f-galaxy-a01-2019-global-td-lte" + }, + { + "slug": "sm-a015f-ds-galaxy-a01-2019-global-dual-sim-td-lte", + "name": "SM-A015F/DS Galaxy A01 2019 Global Dual SIM TD-LTE", + "url": "/v1/smartphones/sm-a015f-ds-galaxy-a01-2019-global-dual-sim-td-lte" + }, + { + "slug": "sm-a015g-ds-galaxy-a01-2019-dual-sim-td-lte-apac", + "name": "SM-A015G/DS Galaxy A01 2019 Dual SIM TD-LTE APAC", + "url": "/v1/smartphones/sm-a015g-ds-galaxy-a01-2019-dual-sim-td-lte-apac" + }, + { + "slug": "sm-a015m-galaxy-a01-2019-lte-latam", + "name": "SM-A015M Galaxy A01 2019 LTE LATAM", + "url": "/v1/smartphones/sm-a015m-galaxy-a01-2019-lte-latam" + }, + { + "slug": "sm-a015m-ds-galaxy-a01-2019-dual-sim-lte-latam", + "name": "SM-A015M/DS Galaxy A01 2019 Dual SIM LTE LATAM", + "url": "/v1/smartphones/sm-a015m-ds-galaxy-a01-2019-dual-sim-lte-latam" + }, + { + "slug": "sm-a015v-galaxy-a01-2019-lte-us", + "name": "SM-A015V Galaxy A01 2019 LTE US", + "url": "/v1/smartphones/sm-a015v-galaxy-a01-2019-lte-us" + }, + { + "slug": "sm-a025f-galaxy-a02s-2020-global-td-lte-32gb", + "name": "SM-A025F Galaxy A02s 2020 Global TD-LTE 32GB", + "url": "/v1/smartphones/sm-a025f-galaxy-a02s-2020-global-td-lte-32gb" + }, + { + "slug": "sm-a025f-ds-galaxy-a02s-2020-global-dual-sim-td-lte-32gb", + "name": "SM-A025F/DS Galaxy A02s 2020 Global Dual SIM TD-LTE 32GB", + "url": "/v1/smartphones/sm-a025f-ds-galaxy-a02s-2020-global-dual-sim-td-lte-32gb" + }, + { + "slug": "sm-a025f-ds-galaxy-a02s-2020-global-dual-sim-td-lte-64gb", + "name": "SM-A025F/DS Galaxy A02s 2020 Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/sm-a025f-ds-galaxy-a02s-2020-global-dual-sim-td-lte-64gb" + }, + { + "slug": "sm-a025g-dsn-galaxy-a02s-2020-global-dual-sim-td-lte-32gb", + "name": "SM-A025G/DSN Galaxy A02s 2020 Global Dual SIM TD-LTE 32GB", + "url": "/v1/smartphones/sm-a025g-dsn-galaxy-a02s-2020-global-dual-sim-td-lte-32gb" + }, + { + "slug": "sm-a025m-galaxy-a02s-2020-lte-a-latam-64gb", + "name": "SM-A025M Galaxy A02s 2020 LTE-A LATAM 64GB", + "url": "/v1/smartphones/sm-a025m-galaxy-a02s-2020-lte-a-latam-64gb" + }, + { + "slug": "sm-a025m-ds-galaxy-a02s-2020-dual-sim-lte-a-latam-32gb", + "name": "SM-A025M/DS Galaxy A02s 2020 Dual SIM LTE-A LATAM 32GB", + "url": "/v1/smartphones/sm-a025m-ds-galaxy-a02s-2020-dual-sim-lte-a-latam-32gb" + }, + { + "slug": "sm-a025m-ds-galaxy-a02s-2020-dual-sim-lte-a-latam-64gb", + "name": "SM-A025M/DS Galaxy A02s 2020 Dual SIM LTE-A LATAM 64GB", + "url": "/v1/smartphones/sm-a025m-ds-galaxy-a02s-2020-dual-sim-lte-a-latam-64gb" + }, + { + "slug": "sm-a025u-galaxy-a02s-2020-td-lte-us-32gb-sm-a025r4", + "name": "SM-A025U Galaxy A02s 2020 TD-LTE US 32GB / SM-A025R4", + "url": "/v1/smartphones/sm-a025u-galaxy-a02s-2020-td-lte-us-32gb-sm-a025r4" + }, + { + "slug": "sm-a025u-galaxy-a02s-2020-td-lte-us-32gb-sm-a025t", + "name": "SM-A025U Galaxy A02s 2020 TD-LTE US 32GB / SM-A025T", + "url": "/v1/smartphones/sm-a025u-galaxy-a02s-2020-td-lte-us-32gb-sm-a025t" + }, + { + "slug": "sm-a025u1-ds-galaxy-a02s-2020-dual-sim-td-lte-us-32gb", + "name": "SM-A025U1/DS Galaxy A02s 2020 Dual SIM TD-LTE US 32GB", + "url": "/v1/smartphones/sm-a025u1-ds-galaxy-a02s-2020-dual-sim-td-lte-us-32gb" + }, + { + "slug": "sm-a025v-galaxy-a02s-2020-lte-a-us-32gb-sm-a025u", + "name": "SM-A025V Galaxy A02s 2020 LTE-A US 32GB / SM-A025U", + "url": "/v1/smartphones/sm-a025v-galaxy-a02s-2020-lte-a-us-32gb-sm-a025u" + }, + { + "slug": "sm-a035g-dsn-galaxy-a03-2021-premium-edition-global-dual-sim-td-lte-64gb", + "name": "SM-A035G/DSN Galaxy A03 2021 Premium Edition Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/sm-a035g-dsn-galaxy-a03-2021-premium-edition-global-dual-sim-td-lte-64gb" + }, + { + "slug": "sm-a037f-ds-galaxy-a03s-2021-premium-edition-global-dual-sim-td-lte-64gb", + "name": "SM-A037F/DS Galaxy A03s 2021 Premium Edition Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/sm-a037f-ds-galaxy-a03s-2021-premium-edition-global-dual-sim-td-lte-64gb" + }, + { + "slug": "sm-a037f-ds-galaxy-a03s-2021-standard-edition-global-dual-sim-td-lte-32gb", + "name": "SM-A037F/DS Galaxy A03s 2021 Standard Edition Global Dual SIM TD-LTE 32GB", + "url": "/v1/smartphones/sm-a037f-ds-galaxy-a03s-2021-standard-edition-global-dual-sim-td-lte-32gb" + }, + { + "slug": "sm-a037g-dsn-galaxy-a03s-2021-standard-edition-global-dual-sim-td-lte-32gb", + "name": "SM-A037G/DSN Galaxy A03s 2021 Standard Edition Global Dual SIM TD-LTE 32GB", + "url": "/v1/smartphones/sm-a037g-dsn-galaxy-a03s-2021-standard-edition-global-dual-sim-td-lte-32gb" + }, + { + "slug": "sm-a037m-galaxy-a03s-2021-premium-edition-lte-latam-64gb", + "name": "SM-A037M Galaxy A03s 2021 Premium Edition LTE LATAM 64GB", + "url": "/v1/smartphones/sm-a037m-galaxy-a03s-2021-premium-edition-lte-latam-64gb" + }, + { + "slug": "sm-a037m-ds-galaxy-a03s-2021-premium-edition-dual-sim-lte-latam-64gb", + "name": "SM-A037M/DS Galaxy A03s 2021 Premium Edition Dual SIM LTE LATAM 64GB", + "url": "/v1/smartphones/sm-a037m-ds-galaxy-a03s-2021-premium-edition-dual-sim-lte-latam-64gb" + }, + { + "slug": "sm-a037m-ds-galaxy-a03s-2021-standard-edition-dual-sim-lte-latam-32gb", + "name": "SM-A037M/DS Galaxy A03s 2021 Standard Edition Dual SIM LTE LATAM 32GB", + "url": "/v1/smartphones/sm-a037m-ds-galaxy-a03s-2021-standard-edition-dual-sim-lte-latam-32gb" + }, + { + "slug": "sm-a037u-galaxy-a03s-2021-standard-edition-td-lte-us-32gb-sm-a037t", + "name": "SM-A037U Galaxy A03s 2021 Standard Edition TD-LTE US 32GB / SM-A037T", + "url": "/v1/smartphones/sm-a037u-galaxy-a03s-2021-standard-edition-td-lte-us-32gb-sm-a037t" + }, + { + "slug": "sm-a107f-galaxy-a10s-2019-standard-edition-global-td-lte", + "name": "SM-A107F Galaxy A10s 2019 Standard Edition Global TD-LTE", + "url": "/v1/smartphones/sm-a107f-galaxy-a10s-2019-standard-edition-global-td-lte" + }, + { + "slug": "sm-a107f-ds-galaxy-a10s-2019-premium-edition-global-dual-sim-td-lte", + "name": "SM-A107F/DS Galaxy A10s 2019 Premium Edition Global Dual SIM TD-LTE", + "url": "/v1/smartphones/sm-a107f-ds-galaxy-a10s-2019-premium-edition-global-dual-sim-td-lte" + }, + { + "slug": "sm-a107f-ds-galaxy-a10s-2019-standard-edition-global-dual-sim-td-lte", + "name": "SM-A107F/DS Galaxy A10s 2019 Standard Edition Global Dual SIM TD-LTE", + "url": "/v1/smartphones/sm-a107f-ds-galaxy-a10s-2019-standard-edition-global-dual-sim-td-lte" + }, + { + "slug": "sm-a107m-galaxy-a10s-2019-standard-edition-lte-latam", + "name": "SM-A107M Galaxy A10s 2019 Standard Edition LTE LATAM", + "url": "/v1/smartphones/sm-a107m-galaxy-a10s-2019-standard-edition-lte-latam" + }, + { + "slug": "sm-a107m-ds-galaxy-a10s-2019-standard-edition-dual-sim-lte-latam", + "name": "SM-A107M/DS Galaxy A10s 2019 Standard Edition Dual SIM LTE LATAM", + "url": "/v1/smartphones/sm-a107m-ds-galaxy-a10s-2019-standard-edition-dual-sim-lte-latam" + }, + { + "slug": "sm-a115f-galaxy-a11-2020-global-td-lte-32gb", + "name": "SM-A115F Galaxy A11 2020 Global TD-LTE 32GB", + "url": "/v1/smartphones/sm-a115f-galaxy-a11-2020-global-td-lte-32gb" + }, + { + "slug": "sm-a115f-ds-galaxy-a11-2020-global-dual-sim-td-lte-32gb", + "name": "SM-A115F/DS Galaxy A11 2020 Global Dual SIM TD-LTE 32GB", + "url": "/v1/smartphones/sm-a115f-ds-galaxy-a11-2020-global-dual-sim-td-lte-32gb" + }, + { + "slug": "sm-a115f-dsn-galaxy-a11-2020-global-dual-sim-td-lte-32gb", + "name": "SM-A115F/DSN Galaxy A11 2020 Global Dual SIM TD-LTE 32GB", + "url": "/v1/smartphones/sm-a115f-dsn-galaxy-a11-2020-global-dual-sim-td-lte-32gb" + }, + { + "slug": "sm-a115m-galaxy-a11-2020-lte-latam-32gb", + "name": "SM-A115M Galaxy A11 2020 LTE LATAM 32GB", + "url": "/v1/smartphones/sm-a115m-galaxy-a11-2020-lte-latam-32gb" + }, + { + "slug": "sm-a115m-galaxy-a11-2020-lte-latam-64gb", + "name": "SM-A115M Galaxy A11 2020 LTE LATAM 64GB", + "url": "/v1/smartphones/sm-a115m-galaxy-a11-2020-lte-latam-64gb" + }, + { + "slug": "sm-a115m-ds-galaxy-a11-2020-dual-sim-lte-apac-latam-32gb", + "name": "SM-A115M/DS Galaxy A11 2020 Dual SIM LTE APAC LATAM 32GB", + "url": "/v1/smartphones/sm-a115m-ds-galaxy-a11-2020-dual-sim-lte-apac-latam-32gb" + }, + { + "slug": "sm-a115u-galaxy-a11-2020-lte-us-32gb-sm-a115r4", + "name": "SM-A115U Galaxy A11 2020 LTE US 32GB / SM-A115R4", + "url": "/v1/smartphones/sm-a115u-galaxy-a11-2020-lte-us-32gb-sm-a115r4" + }, + { + "slug": "sm-a115u-galaxy-a11-2020-lte-us-32gb-sm-a115v", + "name": "SM-A115U Galaxy A11 2020 LTE US 32GB / SM-A115V", + "url": "/v1/smartphones/sm-a115u-galaxy-a11-2020-lte-us-32gb-sm-a115v" + }, + { + "slug": "sm-a115u-galaxy-a11-2020-td-lte-us-32gb-sm-a115a", + "name": "SM-A115U Galaxy A11 2020 TD-LTE US 32GB / SM-A115A", + "url": "/v1/smartphones/sm-a115u-galaxy-a11-2020-td-lte-us-32gb-sm-a115a" + }, + { + "slug": "sm-a115u-galaxy-a11-2020-td-lte-us-32gb-sm-a115t", + "name": "SM-A115U Galaxy A11 2020 TD-LTE US 32GB / SM-A115T", + "url": "/v1/smartphones/sm-a115u-galaxy-a11-2020-td-lte-us-32gb-sm-a115t" + }, + { + "slug": "sm-a115u1-galaxy-a11-2020-td-lte-us-32gb", + "name": "SM-A115U1 Galaxy A11 2020 TD-LTE US 32GB", + "url": "/v1/smartphones/sm-a115u1-galaxy-a11-2020-td-lte-us-32gb" + }, + { + "slug": "sm-a115w-galaxy-a11-2020-td-lte-ca-32gb", + "name": "SM-A115W Galaxy A11 2020 TD-LTE CA 32GB", + "url": "/v1/smartphones/sm-a115w-galaxy-a11-2020-td-lte-ca-32gb" + }, + { + "slug": "sm-a125f-galaxy-a12-2020-standard-edition-global-td-lte-128gb", + "name": "SM-A125F Galaxy A12 2020 Standard Edition Global TD-LTE 128GB", + "url": "/v1/smartphones/sm-a125f-galaxy-a12-2020-standard-edition-global-td-lte-128gb" + }, + { + "slug": "sm-a125f-ds-galaxy-a12-2020-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A125F/DS Galaxy A12 2020 Premium Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-a125f-ds-galaxy-a12-2020-premium-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-a125f-ds-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A125F/DS Galaxy A12 2020 Standard Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-a125f-ds-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-a125f-ds-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-64gb", + "name": "SM-A125F/DS Galaxy A12 2020 Standard Edition Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/sm-a125f-ds-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-64gb" + }, + { + "slug": "sm-a125f-dsn-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-64gb", + "name": "SM-A125F/DSN Galaxy A12 2020 Standard Edition Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/sm-a125f-dsn-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-64gb" + }, + { + "slug": "sm-a125m-galaxy-a12-2020-standard-edition-td-lte-latam-64gb", + "name": "SM-A125M Galaxy A12 2020 Standard Edition TD-LTE LATAM 64GB", + "url": "/v1/smartphones/sm-a125m-galaxy-a12-2020-standard-edition-td-lte-latam-64gb" + }, + { + "slug": "sm-a125m-ds-galaxy-a12-2020-standard-edition-dual-sim-td-lte-latam-32gb", + "name": "SM-A125M/DS Galaxy A12 2020 Standard Edition Dual SIM TD-LTE LATAM 32GB", + "url": "/v1/smartphones/sm-a125m-ds-galaxy-a12-2020-standard-edition-dual-sim-td-lte-latam-32gb" + }, + { + "slug": "sm-a125m-ds-galaxy-a12-2020-standard-edition-dual-sim-td-lte-latam-64gb", + "name": "SM-A125M/DS Galaxy A12 2020 Standard Edition Dual SIM TD-LTE LATAM 64GB", + "url": "/v1/smartphones/sm-a125m-ds-galaxy-a12-2020-standard-edition-dual-sim-td-lte-latam-64gb" + }, + { + "slug": "sm-a125n-galaxy-a12-2020-td-lte-kr-32gb", + "name": "SM-A125N Galaxy A12 2020 TD-LTE KR 32GB", + "url": "/v1/smartphones/sm-a125n-galaxy-a12-2020-td-lte-kr-32gb" + }, + { + "slug": "sm-a125u-galaxy-a12-2020-lte-a-us-32gb-sm-a125v", + "name": "SM-A125U Galaxy A12 2020 LTE-A US 32GB / SM-A125V", + "url": "/v1/smartphones/sm-a125u-galaxy-a12-2020-lte-a-us-32gb-sm-a125v" + }, + { + "slug": "sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125a", + "name": "SM-A125U Galaxy A12 2020 TD-LTE US 32GB / SM-A125A", + "url": "/v1/smartphones/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125a" + }, + { + "slug": "sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125az", + "name": "SM-A125U Galaxy A12 2020 TD-LTE US 32GB / SM-A125AZ", + "url": "/v1/smartphones/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125az" + }, + { + "slug": "sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125r4", + "name": "SM-A125U Galaxy A12 2020 TD-LTE US 32GB / SM-A125R4", + "url": "/v1/smartphones/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125r4" + }, + { + "slug": "sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125t-sm-a125p", + "name": "SM-A125U Galaxy A12 2020 TD-LTE US 32GB / SM-A125T / SM-A125P", + "url": "/v1/smartphones/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125t-sm-a125p" + }, + { + "slug": "sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-s127dl", + "name": "SM-A125U Galaxy A12 2020 TD-LTE US 32GB / SM-S127DL", + "url": "/v1/smartphones/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-s127dl" + }, + { + "slug": "sm-a125u1-ds-galaxy-a12-2020-dual-sim-td-lte-us", + "name": "SM-A125U1/DS Galaxy A12 2020 Dual SIM TD-LTE US", + "url": "/v1/smartphones/sm-a125u1-ds-galaxy-a12-2020-dual-sim-td-lte-us" + }, + { + "slug": "sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-128gb", + "name": "SM-A127F/DSN Galaxy A12 Nacho 2021 Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-32gb", + "name": "SM-A127F/DSN Galaxy A12 Nacho 2021 Global Dual SIM TD-LTE 32GB", + "url": "/v1/smartphones/sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-32gb" + }, + { + "slug": "sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-64gb", + "name": "SM-A127F/DSN Galaxy A12 Nacho 2021 Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-64gb" + }, + { + "slug": "sm-a127m-ds-galaxy-a12-nacho-2021-dual-sim-td-lte-latam-64gb", + "name": "SM-A127M/DS Galaxy A12 Nacho 2021 Dual SIM TD-LTE LATAM 64GB", + "url": "/v1/smartphones/sm-a127m-ds-galaxy-a12-nacho-2021-dual-sim-td-lte-latam-64gb" + }, + { + "slug": "sm-a136u-galaxy-a13-5g-2021-td-lte-us-64gb-sm-a136a", + "name": "SM-A136U Galaxy A13 5G 2021 TD-LTE US 64GB / SM-A136A", + "url": "/v1/smartphones/sm-a136u-galaxy-a13-5g-2021-td-lte-us-64gb-sm-a136a" + }, + { + "slug": "sm-a136u-galaxy-a13-5g-2021-td-lte-us-64gb-sm-s136dl", + "name": "SM-A136U Galaxy A13 5G 2021 TD-LTE US 64GB / SM-S136DL", + "url": "/v1/smartphones/sm-a136u-galaxy-a13-5g-2021-td-lte-us-64gb-sm-s136dl" + }, + { + "slug": "sm-a136u1-galaxy-a13-5g-2021-td-lte-us-64gb", + "name": "SM-A136U1 Galaxy A13 5G 2021 TD-LTE US 64GB", + "url": "/v1/smartphones/sm-a136u1-galaxy-a13-5g-2021-td-lte-us-64gb" + }, + { + "slug": "sm-a136w-galaxy-a13-5g-2021-td-lte-ca-64gb", + "name": "SM-A136W Galaxy A13 5G 2021 TD-LTE CA 64GB", + "url": "/v1/smartphones/sm-a136w-galaxy-a13-5g-2021-td-lte-ca-64gb" + }, + { + "slug": "sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205p", + "name": "SM-A205U Galaxy A20 2019 TD-LTE US / SM-A205P", + "url": "/v1/smartphones/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205p" + }, + { + "slug": "sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205r4", + "name": "SM-A205U Galaxy A20 2019 TD-LTE US / SM-A205R4", + "url": "/v1/smartphones/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205r4" + }, + { + "slug": "sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205t", + "name": "SM-A205U Galaxy A20 2019 TD-LTE US / SM-A205T", + "url": "/v1/smartphones/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205t" + }, + { + "slug": "sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205v", + "name": "SM-A205U Galaxy A20 2019 TD-LTE US / SM-A205V", + "url": "/v1/smartphones/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205v" + }, + { + "slug": "sm-a205u1-galaxy-a20-2019-td-lte-us", + "name": "SM-A205U1 Galaxy A20 2019 TD-LTE US", + "url": "/v1/smartphones/sm-a205u1-galaxy-a20-2019-td-lte-us" + }, + { + "slug": "sm-a2070-galaxy-a20s-2019-dual-sim-td-lte-cn-64gb", + "name": "SM-A2070 Galaxy A20s 2019 Dual SIM TD-LTE CN 64GB", + "url": "/v1/smartphones/sm-a2070-galaxy-a20s-2019-dual-sim-td-lte-cn-64gb" + }, + { + "slug": "sm-a207f-galaxy-a20s-2019-global-td-lte-32gb", + "name": "SM-A207F Galaxy A20s 2019 Global TD-LTE 32GB", + "url": "/v1/smartphones/sm-a207f-galaxy-a20s-2019-global-td-lte-32gb" + }, + { + "slug": "sm-a207f-ds-galaxy-a20s-2019-global-dual-sim-td-lte-32gb", + "name": "SM-A207F/DS Galaxy A20s 2019 Global Dual SIM TD-LTE 32GB", + "url": "/v1/smartphones/sm-a207f-ds-galaxy-a20s-2019-global-dual-sim-td-lte-32gb" + }, + { + "slug": "sm-a207f-ds-galaxy-a20s-2019-global-dual-sim-td-lte-64gb", + "name": "SM-A207F/DS Galaxy A20s 2019 Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/sm-a207f-ds-galaxy-a20s-2019-global-dual-sim-td-lte-64gb" + }, + { + "slug": "sm-a207m-galaxy-a20s-2019-td-lte-latam-32gb", + "name": "SM-A207M Galaxy A20s 2019 TD-LTE LATAM 32GB", + "url": "/v1/smartphones/sm-a207m-galaxy-a20s-2019-td-lte-latam-32gb" + }, + { + "slug": "sm-a207m-ds-galaxy-a20s-2019-dual-sim-td-lte-latam-32gb", + "name": "SM-A207M/DS Galaxy A20s 2019 Dual SIM TD-LTE LATAM 32GB", + "url": "/v1/smartphones/sm-a207m-ds-galaxy-a20s-2019-dual-sim-td-lte-latam-32gb" + }, + { + "slug": "sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215p", + "name": "SM-A215U Galaxy A21 2020 TD-LTE US / SM-A215P", + "url": "/v1/smartphones/sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215p" + }, + { + "slug": "sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215r4", + "name": "SM-A215U Galaxy A21 2020 TD-LTE US / SM-A215R4", + "url": "/v1/smartphones/sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215r4" + }, + { + "slug": "sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215t", + "name": "SM-A215U Galaxy A21 2020 TD-LTE US / SM-A215T", + "url": "/v1/smartphones/sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215t" + }, + { + "slug": "sm-a215u1-galaxy-a21-2020-td-lte-us", + "name": "SM-A215U1 Galaxy A21 2020 TD-LTE US", + "url": "/v1/smartphones/sm-a215u1-galaxy-a21-2020-td-lte-us" + }, + { + "slug": "sm-a215w-galaxy-a21-2020-td-lte-ca", + "name": "SM-A215W Galaxy A21 2020 TD-LTE CA", + "url": "/v1/smartphones/sm-a215w-galaxy-a21-2020-td-lte-ca" + }, + { + "slug": "sm-a217f-galaxy-a21s-2020-premium-edition-global-td-lte-128gb", + "name": "SM-A217F Galaxy A21s 2020 Premium Edition Global TD-LTE 128GB", + "url": "/v1/smartphones/sm-a217f-galaxy-a21s-2020-premium-edition-global-td-lte-128gb" + }, + { + "slug": "sm-a217f-galaxy-a21s-2020-standard-edition-global-td-lte-32gb", + "name": "SM-A217F Galaxy A21s 2020 Standard Edition Global TD-LTE 32GB", + "url": "/v1/smartphones/sm-a217f-galaxy-a21s-2020-standard-edition-global-td-lte-32gb" + }, + { + "slug": "sm-a217f-ds-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A217F/DS Galaxy A21s 2020 Premium Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-a217f-ds-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-a217f-ds-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-64gb", + "name": "SM-A217F/DS Galaxy A21s 2020 Premium Edition Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/sm-a217f-ds-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-64gb" + }, + { + "slug": "sm-a217f-ds-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-32gb", + "name": "SM-A217F/DS Galaxy A21s 2020 Standard Edition Global Dual SIM TD-LTE 32GB", + "url": "/v1/smartphones/sm-a217f-ds-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-32gb" + }, + { + "slug": "sm-a217f-ds-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-64gb", + "name": "SM-A217F/DS Galaxy A21s 2020 Standard Edition Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/sm-a217f-ds-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-64gb" + }, + { + "slug": "sm-a217f-dsn-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-64gb", + "name": "SM-A217F/DSN Galaxy A21s 2020 Premium Edition Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/sm-a217f-dsn-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-64gb" + }, + { + "slug": "sm-a217f-dsn-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-32gb", + "name": "SM-A217F/DSN Galaxy A21s 2020 Standard Edition Global Dual SIM TD-LTE 32GB", + "url": "/v1/smartphones/sm-a217f-dsn-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-32gb" + }, + { + "slug": "sm-a217m-galaxy-a21s-2020-standard-edition-td-lte-latam-64gb", + "name": "SM-A217M Galaxy A21s 2020 Standard Edition TD-LTE LATAM 64GB", + "url": "/v1/smartphones/sm-a217m-galaxy-a21s-2020-standard-edition-td-lte-latam-64gb" + }, + { + "slug": "sm-a217m-ds-galaxy-a21s-2020-standard-edition-dual-sim-td-lte-latam-64gb", + "name": "SM-A217M/DS Galaxy A21s 2020 Standard Edition Dual SIM TD-LTE LATAM 64GB", + "url": "/v1/smartphones/sm-a217m-ds-galaxy-a21s-2020-standard-edition-dual-sim-td-lte-latam-64gb" + }, + { + "slug": "sm-a217n-galaxy-a21s-2020-standard-edition-td-lte-kr-32gb", + "name": "SM-A217N Galaxy A21s 2020 Standard Edition TD-LTE KR 32GB", + "url": "/v1/smartphones/sm-a217n-galaxy-a21s-2020-standard-edition-td-lte-kr-32gb" + }, + { + "slug": "sm-a223d-galaxy-a22-5g-2021-td-lte-jp-64gb-sc-56b", + "name": "SM-A223D Galaxy A22 5G 2021 TD-LTE JP 64GB SC-56B", + "url": "/v1/smartphones/sm-a223d-galaxy-a22-5g-2021-td-lte-jp-64gb-sc-56b" + }, + { + "slug": "sm-a225f-ds-galaxy-a22-4g-2021-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A225F/DS Galaxy A22 4G 2021 Premium Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-a225f-ds-galaxy-a22-4g-2021-premium-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-a225f-dsn-galaxy-a22-4g-2021-standard-edition-global-dual-sim-td-lte-64gb", + "name": "SM-A225F/DSN Galaxy A22 4G 2021 Standard Edition Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/sm-a225f-dsn-galaxy-a22-4g-2021-standard-edition-global-dual-sim-td-lte-64gb" + }, + { + "slug": "sm-a225m-dsn-galaxy-a22-4g-2021-standard-edition-dual-sim-td-lte-latam-128gb", + "name": "SM-A225M/DSN Galaxy A22 4G 2021 Standard Edition Dual SIM TD-LTE LATAM 128GB", + "url": "/v1/smartphones/sm-a225m-dsn-galaxy-a22-4g-2021-standard-edition-dual-sim-td-lte-latam-128gb" + }, + { + "slug": "sm-a225m-n-galaxy-a22-4g-2021-standard-edition-td-lte-latam-128gb", + "name": "SM-A225M/N Galaxy A22 4G 2021 Standard Edition TD-LTE LATAM 128GB", + "url": "/v1/smartphones/sm-a225m-n-galaxy-a22-4g-2021-standard-edition-td-lte-latam-128gb" + }, + { + "slug": "sm-a225m-n-galaxy-a22-4g-2021-standard-edition-td-lte-latam-64gb", + "name": "SM-A225M/N Galaxy A22 4G 2021 Standard Edition TD-LTE LATAM 64GB", + "url": "/v1/smartphones/sm-a225m-n-galaxy-a22-4g-2021-standard-edition-td-lte-latam-64gb" + }, + { + "slug": "sm-a226b-ds-galaxy-a22-5g-2021-global-dual-sim-td-lte-128gb", + "name": "SM-A226B/DS Galaxy A22 5G 2021 Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-a226b-ds-galaxy-a22-5g-2021-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-a226b-ds-galaxy-a22-5g-2021-global-dual-sim-td-lte-64gb", + "name": "SM-A226B/DS Galaxy A22 5G 2021 Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/sm-a226b-ds-galaxy-a22-5g-2021-global-dual-sim-td-lte-64gb" + }, + { + "slug": "sm-a226b-dsn-galaxy-a22-5g-2021-global-dual-sim-td-lte-128gb", + "name": "SM-A226B/DSN Galaxy A22 5G 2021 Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-a226b-dsn-galaxy-a22-5g-2021-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-a226b-dsn-galaxy-a22-5g-2021-global-dual-sim-td-lte-64gb-galaxy-a22s", + "name": "SM-A226B/DSN Galaxy A22 5G 2021 Global Dual SIM TD-LTE 64GB / Galaxy A22s", + "url": "/v1/smartphones/sm-a226b-dsn-galaxy-a22-5g-2021-global-dual-sim-td-lte-64gb-galaxy-a22s" + }, + { + "slug": "sm-a226l-galaxy-buddy-5g-2021-td-lte-kr-128gb", + "name": "SM-A226L Galaxy Buddy 5G 2021 TD-LTE KR 128GB", + "url": "/v1/smartphones/sm-a226l-galaxy-buddy-5g-2021-td-lte-kr-128gb" + }, + { + "slug": "sm-a3050-ds-galaxy-a40s-2019-dual-sim-td-lte-cn", + "name": "SM-A3050/DS Galaxy A40s 2019 Dual SIM TD-LTE CN", + "url": "/v1/smartphones/sm-a3050-ds-galaxy-a40s-2019-dual-sim-td-lte-cn" + }, + { + "slug": "sm-a3058-ds-galaxy-a40s-4g-2019-dual-sim-td-lte-cn", + "name": "SM-A3058/DS Galaxy A40s 4G+ 2019 Dual SIM TD-LTE CN", + "url": "/v1/smartphones/sm-a3058-ds-galaxy-a40s-4g-2019-dual-sim-td-lte-cn" + }, + { + "slug": "sm-a305f-ds-galaxy-a30-2019-global-dual-sim-td-lte-64gb", + "name": "SM-A305F/DS Galaxy A30 2019 Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/sm-a305f-ds-galaxy-a30-2019-global-dual-sim-td-lte-64gb" + }, + { + "slug": "sm-a305fn-galaxy-a30-2019-td-lte-emea-64gb", + "name": "SM-A305FN Galaxy A30 2019 TD-LTE EMEA 64GB", + "url": "/v1/smartphones/sm-a305fn-galaxy-a30-2019-td-lte-emea-64gb" + }, + { + "slug": "sm-a305g-galaxy-a30-2019-td-lte-latam-32gb", + "name": "SM-A305G Galaxy A30 2019 TD-LTE LATAM 32GB", + "url": "/v1/smartphones/sm-a305g-galaxy-a30-2019-td-lte-latam-32gb" + }, + { + "slug": "sm-a305g-ds-galaxy-a30-2019-dual-sim-td-lte-latam-32gb", + "name": "SM-A305G/DS Galaxy A30 2019 Dual SIM TD-LTE LATAM 32GB", + "url": "/v1/smartphones/sm-a305g-ds-galaxy-a30-2019-dual-sim-td-lte-latam-32gb" + }, + { + "slug": "sm-a305j-galaxy-a30-2019-td-lte-jp-64gb-scv43-sm-a305jx", + "name": "SM-A305J Galaxy A30 2019 TD-LTE JP 64GB SCV43 / SM-A305JX", + "url": "/v1/smartphones/sm-a305j-galaxy-a30-2019-td-lte-jp-64gb-scv43-sm-a305jx" + }, + { + "slug": "sm-a305n-galaxy-a30-2019-td-lte-kr-32gb", + "name": "SM-A305N Galaxy A30 2019 TD-LTE KR 32GB", + "url": "/v1/smartphones/sm-a305n-galaxy-a30-2019-td-lte-kr-32gb" + }, + { + "slug": "sm-a307fn-ds-galaxy-a30s-2019-dual-sim-td-lte-emea-in-128gb", + "name": "SM-A307FN/DS Galaxy A30s 2019 Dual SIM TD-LTE EMEA IN 128GB", + "url": "/v1/smartphones/sm-a307fn-ds-galaxy-a30s-2019-dual-sim-td-lte-emea-in-128gb" + }, + { + "slug": "sm-a307fn-ds-galaxy-a30s-2019-dual-sim-td-lte-emea-in-64gb", + "name": "SM-A307FN/DS Galaxy A30s 2019 Dual SIM TD-LTE EMEA IN 64GB", + "url": "/v1/smartphones/sm-a307fn-ds-galaxy-a30s-2019-dual-sim-td-lte-emea-in-64gb" + }, + { + "slug": "sm-a307g-galaxy-a30s-2019-td-lte-latam", + "name": "SM-A307G Galaxy A30s 2019 TD-LTE LATAM", + "url": "/v1/smartphones/sm-a307g-galaxy-a30s-2019-td-lte-latam" + }, + { + "slug": "sm-a307g-ds-galaxy-a30s-2019-dual-sim-td-lte-latam", + "name": "SM-A307G/DS Galaxy A30s 2019 Dual SIM TD-LTE LATAM", + "url": "/v1/smartphones/sm-a307g-ds-galaxy-a30s-2019-dual-sim-td-lte-latam" + }, + { + "slug": "sm-a307gn-ds-galaxy-a30s-2019-dual-sim-td-lte-apac-na-128gb", + "name": "SM-A307GN/DS Galaxy A30s 2019 Dual SIM TD-LTE APAC NA 128GB", + "url": "/v1/smartphones/sm-a307gn-ds-galaxy-a30s-2019-dual-sim-td-lte-apac-na-128gb" + }, + { + "slug": "sm-a307gn-ds-galaxy-a30s-2019-dual-sim-td-lte-apac-na-64gb", + "name": "SM-A307GN/DS Galaxy A30s 2019 Dual SIM TD-LTE APAC NA 64GB", + "url": "/v1/smartphones/sm-a307gn-ds-galaxy-a30s-2019-dual-sim-td-lte-apac-na-64gb" + }, + { + "slug": "sm-a307gt-ds-galaxy-a30s-dtv-2019-dual-sim-td-lte-br-64gb", + "name": "SM-A307GT/DS Galaxy A30s DTV 2019 Dual SIM TD-LTE BR 64GB", + "url": "/v1/smartphones/sm-a307gt-ds-galaxy-a30s-dtv-2019-dual-sim-td-lte-br-64gb" + }, + { + "slug": "sm-a315f-galaxy-a31-2020-standard-edition-td-lte-emea-128gb", + "name": "SM-A315F Galaxy A31 2020 Standard Edition TD-LTE EMEA 128GB", + "url": "/v1/smartphones/sm-a315f-galaxy-a31-2020-standard-edition-td-lte-emea-128gb" + }, + { + "slug": "sm-a315f-ds-galaxy-a31-2020-premium-edition-dual-sim-td-lte-in-128gb", + "name": "SM-A315F/DS Galaxy A31 2020 Premium Edition Dual SIM TD-LTE IN 128GB", + "url": "/v1/smartphones/sm-a315f-ds-galaxy-a31-2020-premium-edition-dual-sim-td-lte-in-128gb" + }, + { + "slug": "sm-a315f-ds-galaxy-a31-2020-standard-edition-dual-sim-td-lte-emea-128gb", + "name": "SM-A315F/DS Galaxy A31 2020 Standard Edition Dual SIM TD-LTE EMEA 128GB", + "url": "/v1/smartphones/sm-a315f-ds-galaxy-a31-2020-standard-edition-dual-sim-td-lte-emea-128gb" + }, + { + "slug": "sm-a315g-galaxy-a31-2020-standard-edition-global-td-lte-128gb", + "name": "SM-A315G Galaxy A31 2020 Standard Edition Global TD-LTE 128GB", + "url": "/v1/smartphones/sm-a315g-galaxy-a31-2020-standard-edition-global-td-lte-128gb" + }, + { + "slug": "sm-a315g-ds-galaxy-a31-2020-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A315G/DS Galaxy A31 2020 Premium Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-a315g-ds-galaxy-a31-2020-premium-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-a315g-ds-galaxy-a31-2020-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A315G/DS Galaxy A31 2020 Standard Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-a315g-ds-galaxy-a31-2020-standard-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-a315g-ds-galaxy-a31-2020-standard-edition-global-dual-sim-td-lte-64gb", + "name": "SM-A315G/DS Galaxy A31 2020 Standard Edition Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/sm-a315g-ds-galaxy-a31-2020-standard-edition-global-dual-sim-td-lte-64gb" + }, + { + "slug": "sm-a315g-dsl-galaxy-a31-2020-standard-edition-dual-sim-td-lte-latam-128gb", + "name": "SM-A315G/DSL Galaxy A31 2020 Standard Edition Dual SIM TD-LTE LATAM 128GB", + "url": "/v1/smartphones/sm-a315g-dsl-galaxy-a31-2020-standard-edition-dual-sim-td-lte-latam-128gb" + }, + { + "slug": "sm-a315g-dsl-galaxy-a31-2020-standard-edition-dual-sim-td-lte-latam-64gb", + "name": "SM-A315G/DSL Galaxy A31 2020 Standard Edition Dual SIM TD-LTE LATAM 64GB", + "url": "/v1/smartphones/sm-a315g-dsl-galaxy-a31-2020-standard-edition-dual-sim-td-lte-latam-64gb" + }, + { + "slug": "sm-a315g-l-galaxy-a31-2020-standard-edition-td-lte-latam-128gb", + "name": "SM-A315G/L Galaxy A31 2020 Standard Edition TD-LTE LATAM 128GB", + "url": "/v1/smartphones/sm-a315g-l-galaxy-a31-2020-standard-edition-td-lte-latam-128gb" + }, + { + "slug": "sm-a315g-l-galaxy-a31-2020-standard-edition-td-lte-latam-64gb", + "name": "SM-A315G/L Galaxy A31 2020 Standard Edition TD-LTE LATAM 64GB", + "url": "/v1/smartphones/sm-a315g-l-galaxy-a31-2020-standard-edition-td-lte-latam-64gb" + }, + { + "slug": "sm-a315n-galaxy-a31-2020-standard-edition-td-lte-kr-64gb", + "name": "SM-A315N Galaxy A31 2020 Standard Edition TD-LTE KR 64GB", + "url": "/v1/smartphones/sm-a315n-galaxy-a31-2020-standard-edition-td-lte-kr-64gb" + }, + { + "slug": "sm-a325f-ds-galaxy-a32-4g-2021-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A325F/DS Galaxy A32 4G 2021 Premium Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-a325f-ds-galaxy-a32-4g-2021-premium-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-a325f-ds-galaxy-a32-4g-2021-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A325F/DS Galaxy A32 4G 2021 Standard Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-a325f-ds-galaxy-a32-4g-2021-standard-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-a325m-ds-galaxy-a32-4g-2021-standard-edition-dual-sim-td-lte-latam-128gb", + "name": "SM-A325M/DS Galaxy A32 4G 2021 Standard Edition Dual SIM TD-LTE LATAM 128GB", + "url": "/v1/smartphones/sm-a325m-ds-galaxy-a32-4g-2021-standard-edition-dual-sim-td-lte-latam-128gb" + }, + { + "slug": "sm-a325n-galaxy-a32-4g-2021-standard-edition-td-lte-kr-64gb", + "name": "SM-A325N Galaxy A32 4G 2021 Standard Edition TD-LTE KR 64GB", + "url": "/v1/smartphones/sm-a325n-galaxy-a32-4g-2021-standard-edition-td-lte-kr-64gb" + }, + { + "slug": "sm-a326b-ds-galaxy-a32-5g-2021-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A326B/DS Galaxy A32 5G 2021 Premium Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-a326b-ds-galaxy-a32-5g-2021-premium-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-a326b-ds-galaxy-a32-5g-2021-standard-edition-global-dual-sim-td-lte-64gb", + "name": "SM-A326B/DS Galaxy A32 5G 2021 Standard Edition Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/sm-a326b-ds-galaxy-a32-5g-2021-standard-edition-global-dual-sim-td-lte-64gb" + }, + { + "slug": "sm-a326j-galaxy-a32-5g-2021-td-lte-jp-scg08", + "name": "SM-A326J Galaxy A32 5G 2021 TD-LTE JP SCG08", + "url": "/v1/smartphones/sm-a326j-galaxy-a32-5g-2021-td-lte-jp-scg08" + }, + { + "slug": "sm-a326k-galaxy-jump-5g-2021-td-lte-kr-128gb", + "name": "SM-A326K Galaxy Jump 5G 2021 TD-LTE KR 128GB", + "url": "/v1/smartphones/sm-a326k-galaxy-jump-5g-2021-td-lte-kr-128gb" + }, + { + "slug": "sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326a", + "name": "SM-A326U Galaxy A32 5G 2021 TD-LTE US 64GB / SM-A326A", + "url": "/v1/smartphones/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326a" + }, + { + "slug": "sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326r4", + "name": "SM-A326U Galaxy A32 5G 2021 TD-LTE US 64GB / SM-A326R4", + "url": "/v1/smartphones/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326r4" + }, + { + "slug": "sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326t-sm-a326p", + "name": "SM-A326U Galaxy A32 5G 2021 TD-LTE US 64GB / SM-A326T / SM-A326P", + "url": "/v1/smartphones/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326t-sm-a326p" + }, + { + "slug": "sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-s326dl", + "name": "SM-A326U Galaxy A32 5G 2021 TD-LTE US 64GB / SM-S326DL", + "url": "/v1/smartphones/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-s326dl" + }, + { + "slug": "sm-a326u1-galaxy-a32-5g-2021-td-lte-us-64gb", + "name": "SM-A326U1 Galaxy A32 5G 2021 TD-LTE US 64GB", + "url": "/v1/smartphones/sm-a326u1-galaxy-a32-5g-2021-td-lte-us-64gb" + }, + { + "slug": "sm-a326w-galaxy-a32-5g-2021-td-lte-ca-64gb", + "name": "SM-A326W Galaxy A32 5G 2021 TD-LTE CA 64GB", + "url": "/v1/smartphones/sm-a326w-galaxy-a32-5g-2021-td-lte-ca-64gb" + }, + { + "slug": "sm-a3360-galaxy-a33-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-128gb", + "name": "SM-A3360 Galaxy A33 5G 2022 Premium Edition Dual SIM TD-LTE CN HK 128GB", + "url": "/v1/smartphones/sm-a3360-galaxy-a33-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-128gb" + }, + { + "slug": "sm-a336b-dsn-galaxy-a33-5g-2022-standard-edition-dual-sim-td-lte-eu-latam-128gb", + "name": "SM-A336B/DSN Galaxy A33 5G 2022 Standard Edition Dual SIM TD-LTE EU LATAM 128GB", + "url": "/v1/smartphones/sm-a336b-dsn-galaxy-a33-5g-2022-standard-edition-dual-sim-td-lte-eu-latam-128gb" + }, + { + "slug": "sm-a336e-galaxy-a33-5g-2022-standard-edition-global-td-lte-128gb", + "name": "SM-A336E Galaxy A33 5G 2022 Standard Edition Global TD-LTE 128GB", + "url": "/v1/smartphones/sm-a336e-galaxy-a33-5g-2022-standard-edition-global-td-lte-128gb" + }, + { + "slug": "sm-a336e-ds-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A336E/DS Galaxy A33 5G 2022 Premium Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-a336e-ds-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-a336e-ds-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-256gb", + "name": "SM-A336E/DS Galaxy A33 5G 2022 Premium Edition Global Dual SIM TD-LTE 256GB", + "url": "/v1/smartphones/sm-a336e-ds-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-256gb" + }, + { + "slug": "sm-a336e-ds-galaxy-a33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A336E/DS Galaxy A33 5G 2022 Standard Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-a336e-ds-galaxy-a33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-a336e-dsn-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A336E/DSN Galaxy A33 5G 2022 Premium Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-a336e-dsn-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-a336e-dsn-galaxy-a33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A336E/DSN Galaxy A33 5G 2022 Standard Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-a336e-dsn-galaxy-a33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-a405fm-ds-galaxy-a40-2019-global-dual-sim-td-lte-64gb", + "name": "SM-A405FM/DS Galaxy A40 2019 Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/sm-a405fm-ds-galaxy-a40-2019-global-dual-sim-td-lte-64gb" + }, + { + "slug": "sm-a405fn-ds-galaxy-a40-2019-global-dual-sim-td-lte-64gb", + "name": "SM-A405FN/DS Galaxy A40 2019 Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/sm-a405fn-ds-galaxy-a40-2019-global-dual-sim-td-lte-64gb" + }, + { + "slug": "sm-a415f-dsn-galaxy-a41-2020-global-dual-sim-td-lte-sm-a415f-ds", + "name": "SM-A415F/DSN Galaxy A41 2020 Global Dual SIM TD-LTE / SM-A415F/DS", + "url": "/v1/smartphones/sm-a415f-dsn-galaxy-a41-2020-global-dual-sim-td-lte-sm-a415f-ds" + }, + { + "slug": "sm-a505f-galaxy-a50-2019-global-td-lte-128gb", + "name": "SM-A505F Galaxy A50 2019 Global TD-LTE 128GB", + "url": "/v1/smartphones/sm-a505f-galaxy-a50-2019-global-td-lte-128gb" + }, + { + "slug": "sm-a505f-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb", + "name": "SM-A505F/DS Galaxy A50 2019 Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-a505f-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-a505fm-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb", + "name": "SM-A505FM/DS Galaxy A50 2019 Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-a505fm-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-a505fm-ds-galaxy-a50-2019-global-dual-sim-td-lte-64gb", + "name": "SM-A505FM/DS Galaxy A50 2019 Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/sm-a505fm-ds-galaxy-a50-2019-global-dual-sim-td-lte-64gb" + }, + { + "slug": "sm-a505fn-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb", + "name": "SM-A505FN/DS Galaxy A50 2019 Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-a505fn-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-a505g-galaxy-a50-2019-td-lte-latam-128gb", + "name": "SM-A505G Galaxy A50 2019 TD-LTE LATAM 128GB", + "url": "/v1/smartphones/sm-a505g-galaxy-a50-2019-td-lte-latam-128gb" + }, + { + "slug": "sm-a505g-galaxy-a50-2019-td-lte-latam-64gb", + "name": "SM-A505G Galaxy A50 2019 TD-LTE LATAM 64GB", + "url": "/v1/smartphones/sm-a505g-galaxy-a50-2019-td-lte-latam-64gb" + }, + { + "slug": "sm-a505g-ds-galaxy-a50-2019-dual-sim-td-lte-latam-64gb", + "name": "SM-A505G/DS Galaxy A50 2019 Dual SIM TD-LTE LATAM 64GB", + "url": "/v1/smartphones/sm-a505g-ds-galaxy-a50-2019-dual-sim-td-lte-latam-64gb" + }, + { + "slug": "sm-a505gn-ds-galaxy-a50-2019-dual-sim-td-lte-apac-128gb-sm-a505yn-ds", + "name": "SM-A505GN/DS Galaxy A50 2019 Dual SIM TD-LTE APAC 128GB / SM-A505YN/DS", + "url": "/v1/smartphones/sm-a505gn-ds-galaxy-a50-2019-dual-sim-td-lte-apac-128gb-sm-a505yn-ds" + }, + { + "slug": "sm-a505n-galaxy-a50-2019-td-lte-kr-64gb", + "name": "SM-A505N Galaxy A50 2019 TD-LTE KR 64GB", + "url": "/v1/smartphones/sm-a505n-galaxy-a50-2019-td-lte-kr-64gb" + }, + { + "slug": "sm-a505u-galaxy-a50-2019-lte-a-us-64gb-sm-a505v", + "name": "SM-A505U Galaxy A50 2019 LTE-A US 64GB / SM-A505V", + "url": "/v1/smartphones/sm-a505u-galaxy-a50-2019-lte-a-us-64gb-sm-a505v" + }, + { + "slug": "sm-a505u-galaxy-a50-2019-td-lte-us-64gb-sm-a505p", + "name": "SM-A505U Galaxy A50 2019 TD-LTE US 64GB / SM-A505P", + "url": "/v1/smartphones/sm-a505u-galaxy-a50-2019-td-lte-us-64gb-sm-a505p" + }, + { + "slug": "sm-a505u-galaxy-a50-2019-td-lte-us-64gb-sm-a505r4", + "name": "SM-A505U Galaxy A50 2019 TD-LTE US 64GB / SM-A505R4", + "url": "/v1/smartphones/sm-a505u-galaxy-a50-2019-td-lte-us-64gb-sm-a505r4" + }, + { + "slug": "sm-a505u1-galaxy-a50-2019-td-lte-us-64gb", + "name": "SM-A505U1 Galaxy A50 2019 TD-LTE US 64GB", + "url": "/v1/smartphones/sm-a505u1-galaxy-a50-2019-td-lte-us-64gb" + }, + { + "slug": "sm-a505w-galaxy-a50-2019-td-lte-ca-64gb", + "name": "SM-A505W Galaxy A50 2019 TD-LTE CA 64GB", + "url": "/v1/smartphones/sm-a505w-galaxy-a50-2019-td-lte-ca-64gb" + }, + { + "slug": "sm-a505yn-galaxy-a50-2019-td-lte-au-64gb-sm-a505gn", + "name": "SM-A505YN Galaxy A50 2019 TD-LTE AU 64GB / SM-A505GN", + "url": "/v1/smartphones/sm-a505yn-galaxy-a50-2019-td-lte-au-64gb-sm-a505gn" + }, + { + "slug": "sm-a5070-galaxy-a50s-2019-dual-sim-td-lte-cn-128gb", + "name": "SM-A5070 Galaxy A50s 2019 Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/sm-a5070-galaxy-a50s-2019-dual-sim-td-lte-cn-128gb" + }, + { + "slug": "sm-a507fn-ds-galaxy-a50s-2019-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A507FN/DS Galaxy A50s 2019 Premium Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-a507fn-ds-galaxy-a50s-2019-premium-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-a507fn-ds-galaxy-a50s-2019-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A507FN/DS Galaxy A50s 2019 Standard Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-a507fn-ds-galaxy-a50s-2019-standard-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-a515f-galaxy-a51-2019-global-td-lte-128gb", + "name": "SM-A515F Galaxy A51 2019 Global TD-LTE 128GB", + "url": "/v1/smartphones/sm-a515f-galaxy-a51-2019-global-td-lte-128gb" + }, + { + "slug": "sm-a515f-ds-galaxy-a51-2019-global-dual-sim-td-lte-128gb", + "name": "SM-A515F/DS Galaxy A51 2019 Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-a515f-ds-galaxy-a51-2019-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-a515f-dsm-galaxy-a51-2019-global-dual-sim-td-lte-128gb", + "name": "SM-A515F/DSM Galaxy A51 2019 Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-a515f-dsm-galaxy-a51-2019-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-a515f-dsm-galaxy-a51-2019-global-dual-sim-td-lte-64gb", + "name": "SM-A515F/DSM Galaxy A51 2019 Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/sm-a515f-dsm-galaxy-a51-2019-global-dual-sim-td-lte-64gb" + }, + { + "slug": "sm-a515f-dsn-galaxy-a51-2019-global-dual-sim-td-lte-128gb", + "name": "SM-A515F/DSN Galaxy A51 2019 Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-a515f-dsn-galaxy-a51-2019-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-a515f-dst-galaxy-a51-2019-dual-sim-td-lte-latam-128gb", + "name": "SM-A515F/DST Galaxy A51 2019 Dual SIM TD-LTE LATAM 128GB", + "url": "/v1/smartphones/sm-a515f-dst-galaxy-a51-2019-dual-sim-td-lte-latam-128gb" + }, + { + "slug": "sm-a515f-n-galaxy-a51-2019-global-td-lte-128gb", + "name": "SM-A515F/N Galaxy A51 2019 Global TD-LTE 128GB", + "url": "/v1/smartphones/sm-a515f-n-galaxy-a51-2019-global-td-lte-128gb" + }, + { + "slug": "sm-a515u-galaxy-a51-2019-lte-a-us-128gb-sm-a515v", + "name": "SM-A515U Galaxy A51 2019 LTE-A US 128GB / SM-A515V", + "url": "/v1/smartphones/sm-a515u-galaxy-a51-2019-lte-a-us-128gb-sm-a515v" + }, + { + "slug": "sm-a515u-galaxy-a51-2019-td-lte-us-128gb-sm-a515a", + "name": "SM-A515U Galaxy A51 2019 TD-LTE US 128GB / SM-A515A", + "url": "/v1/smartphones/sm-a515u-galaxy-a51-2019-td-lte-us-128gb-sm-a515a" + }, + { + "slug": "sm-a515u-galaxy-a51-2019-td-lte-us-128gb-sm-a515p", + "name": "SM-A515U Galaxy A51 2019 TD-LTE US 128GB / SM-A515P", + "url": "/v1/smartphones/sm-a515u-galaxy-a51-2019-td-lte-us-128gb-sm-a515p" + }, + { + "slug": "sm-a515u1-galaxy-a51-2019-td-lte-us-128gb", + "name": "SM-A515U1 Galaxy A51 2019 TD-LTE US 128GB", + "url": "/v1/smartphones/sm-a515u1-galaxy-a51-2019-td-lte-us-128gb" + }, + { + "slug": "sm-a515w-galaxy-a51-2019-td-lte-ca-64gb", + "name": "SM-A515W Galaxy A51 2019 TD-LTE CA 64GB", + "url": "/v1/smartphones/sm-a515w-galaxy-a51-2019-td-lte-ca-64gb" + }, + { + "slug": "sm-a5160-galaxy-a51-5g-dual-sim-td-lte-cn", + "name": "SM-A5160 Galaxy A51 5G Dual SIM TD-LTE CN", + "url": "/v1/smartphones/sm-a5160-galaxy-a51-5g-dual-sim-td-lte-cn" + }, + { + "slug": "sm-a516b-galaxy-a51-5g-global-td-lte-128gb", + "name": "SM-A516B Galaxy A51 5G Global TD-LTE 128GB", + "url": "/v1/smartphones/sm-a516b-galaxy-a51-5g-global-td-lte-128gb" + }, + { + "slug": "sm-a516b-ds-galaxy-a51-5g-global-dual-sim-td-lte-128gb", + "name": "SM-A516B/DS Galaxy A51 5G Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-a516b-ds-galaxy-a51-5g-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-a516d-galaxy-a51-5g-td-lte-jp-sc-54a", + "name": "SM-A516D Galaxy A51 5G TD-LTE JP SC-54A", + "url": "/v1/smartphones/sm-a516d-galaxy-a51-5g-td-lte-jp-sc-54a" + }, + { + "slug": "sm-a516j-galaxy-a51-5g-td-lte-jp-scg07", + "name": "SM-A516J Galaxy A51 5G TD-LTE JP SCG07", + "url": "/v1/smartphones/sm-a516j-galaxy-a51-5g-td-lte-jp-scg07" + }, + { + "slug": "sm-a516n-galaxy-a51-5g-td-lte-kr", + "name": "SM-A516N Galaxy A51 5G TD-LTE KR", + "url": "/v1/smartphones/sm-a516n-galaxy-a51-5g-td-lte-kr" + }, + { + "slug": "sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516a", + "name": "SM-A516U Galaxy A51 5G TD-LTE US / SM-A516A", + "url": "/v1/smartphones/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516a" + }, + { + "slug": "sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516p", + "name": "SM-A516U Galaxy A51 5G TD-LTE US / SM-A516P", + "url": "/v1/smartphones/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516p" + }, + { + "slug": "sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516r4", + "name": "SM-A516U Galaxy A51 5G TD-LTE US / SM-A516R4", + "url": "/v1/smartphones/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516r4" + }, + { + "slug": "sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516t", + "name": "SM-A516U Galaxy A51 5G TD-LTE US / SM-A516T", + "url": "/v1/smartphones/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516t" + }, + { + "slug": "sm-a516u-galaxy-a51-uw-5g-td-lte-us-sm-a516v", + "name": "SM-A516U Galaxy A51 UW 5G TD-LTE US / SM-A516V", + "url": "/v1/smartphones/sm-a516u-galaxy-a51-uw-5g-td-lte-us-sm-a516v" + }, + { + "slug": "sm-a530d-galaxy-feel-2-lte-jp-sc-02l-sgh-n767", + "name": "SM-A530D Galaxy Feel 2 LTE JP SC-02L / SGH-N767", + "url": "/v1/smartphones/sm-a530d-galaxy-feel-2-lte-jp-sc-02l-sgh-n767" + }, + { + "slug": "sm-a5360-galaxy-a53-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-tw-128gb", + "name": "SM-A5360 Galaxy A53 5G 2022 Premium Edition Dual SIM TD-LTE CN HK TW 128GB", + "url": "/v1/smartphones/sm-a5360-galaxy-a53-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-tw-128gb" + }, + { + "slug": "sm-a5360-galaxy-a53-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-tw-256gb", + "name": "SM-A5360 Galaxy A53 5G 2022 Premium Edition Dual SIM TD-LTE CN HK TW 256GB", + "url": "/v1/smartphones/sm-a5360-galaxy-a53-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-tw-256gb" + }, + { + "slug": "sm-a536b-ds-galaxy-a53-5g-2022-standard-edition-dual-sim-td-lte-eu-128gb", + "name": "SM-A536B/DS Galaxy A53 5G 2022 Standard Edition Dual SIM TD-LTE EU 128GB", + "url": "/v1/smartphones/sm-a536b-ds-galaxy-a53-5g-2022-standard-edition-dual-sim-td-lte-eu-128gb" + }, + { + "slug": "sm-a536d-galaxy-a53-5g-2022-standard-edition-td-lte-jp-128gb-sc-53c", + "name": "SM-A536D Galaxy A53 5G 2022 Standard Edition TD-LTE JP 128GB SC-53C", + "url": "/v1/smartphones/sm-a536d-galaxy-a53-5g-2022-standard-edition-td-lte-jp-128gb-sc-53c" + }, + { + "slug": "sm-a536e-galaxy-a53-5g-2022-standard-edition-global-td-lte-128gb", + "name": "SM-A536E Galaxy A53 5G 2022 Standard Edition Global TD-LTE 128GB", + "url": "/v1/smartphones/sm-a536e-galaxy-a53-5g-2022-standard-edition-global-td-lte-128gb" + }, + { + "slug": "sm-a536e-ds-galaxy-a53-5g-2022-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A536E/DS Galaxy A53 5G 2022 Premium Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-a536e-ds-galaxy-a53-5g-2022-premium-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-a536e-ds-galaxy-a53-5g-2022-premium-edition-global-dual-sim-td-lte-256gb", + "name": "SM-A536E/DS Galaxy A53 5G 2022 Premium Edition Global Dual SIM TD-LTE 256GB", + "url": "/v1/smartphones/sm-a536e-ds-galaxy-a53-5g-2022-premium-edition-global-dual-sim-td-lte-256gb" + }, + { + "slug": "sm-a536e-ds-galaxy-a53-5g-2022-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A536E/DS Galaxy A53 5G 2022 Standard Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-a536e-ds-galaxy-a53-5g-2022-standard-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-a536j-galaxy-a53-5g-2022-standard-edition-td-lte-jp-128gb-scg15", + "name": "SM-A536J Galaxy A53 5G 2022 Standard Edition TD-LTE JP 128GB SCG15", + "url": "/v1/smartphones/sm-a536j-galaxy-a53-5g-2022-standard-edition-td-lte-jp-128gb-scg15" + }, + { + "slug": "sm-a536n-galaxy-a53-5g-2022-standard-edition-td-lte-kr-128gb", + "name": "SM-A536N Galaxy A53 5G 2022 Standard Edition TD-LTE KR 128GB", + "url": "/v1/smartphones/sm-a536n-galaxy-a53-5g-2022-standard-edition-td-lte-kr-128gb" + }, + { + "slug": "sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536a", + "name": "SM-A536U Galaxy A53 5G 2022 Standard Edition TD-LTE US 128GB / SM-A536A", + "url": "/v1/smartphones/sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536a" + }, + { + "slug": "sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536r4", + "name": "SM-A536U Galaxy A53 5G 2022 Standard Edition TD-LTE US 128GB / SM-A536R4", + "url": "/v1/smartphones/sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536r4" + }, + { + "slug": "sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536t", + "name": "SM-A536U Galaxy A53 5G 2022 Standard Edition TD-LTE US 128GB / SM-A536T", + "url": "/v1/smartphones/sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536t" + }, + { + "slug": "sm-a536u-galaxy-a53-5g-uw-2022-standard-edition-td-lte-us-128gb-sm-a536v", + "name": "SM-A536U Galaxy A53 5G UW 2022 Standard Edition TD-LTE US 128GB / SM-A536V", + "url": "/v1/smartphones/sm-a536u-galaxy-a53-5g-uw-2022-standard-edition-td-lte-us-128gb-sm-a536v" + }, + { + "slug": "sm-a536u1-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb", + "name": "SM-A536U1 Galaxy A53 5G 2022 Standard Edition TD-LTE US 128GB", + "url": "/v1/smartphones/sm-a536u1-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb" + }, + { + "slug": "sm-a6050-galaxy-a9-star-lite-2018-duos-td-lte-cn-64gb", + "name": "SM-A6050 Galaxy A9 Star Lite 2018 Duos TD-LTE CN 64GB", + "url": "/v1/smartphones/sm-a6050-galaxy-a9-star-lite-2018-duos-td-lte-cn-64gb" + }, + { + "slug": "sm-a6058-galaxy-a9-star-lite-4g-2018-duos-td-lte-cn-64gb", + "name": "SM-A6058 Galaxy A9 Star Lite 4G+ 2018 Duos TD-LTE CN 64GB", + "url": "/v1/smartphones/sm-a6058-galaxy-a9-star-lite-4g-2018-duos-td-lte-cn-64gb" + }, + { + "slug": "sm-a605f-ds-galaxy-a6-2018-duos-global-td-lte-64gb", + "name": "SM-A605F/DS Galaxy A6+ 2018 Duos Global TD-LTE 64GB", + "url": "/v1/smartphones/sm-a605f-ds-galaxy-a6-2018-duos-global-td-lte-64gb" + }, + { + "slug": "sm-a605fn-galaxy-a6-2018-global-td-lte-32gb", + "name": "SM-A605FN Galaxy A6+ 2018 Global TD-LTE 32GB", + "url": "/v1/smartphones/sm-a605fn-galaxy-a6-2018-global-td-lte-32gb" + }, + { + "slug": "sm-a605fn-ds-galaxy-a6-2018-duos-global-td-lte-32gb", + "name": "SM-A605FN/DS Galaxy A6+ 2018 Duos Global TD-LTE 32GB", + "url": "/v1/smartphones/sm-a605fn-ds-galaxy-a6-2018-duos-global-td-lte-32gb" + }, + { + "slug": "sm-a605g-ds-galaxy-a6-2018-duos-td-lte-apac-64gb", + "name": "SM-A605G/DS Galaxy A6+ 2018 Duos TD-LTE APAC 64GB", + "url": "/v1/smartphones/sm-a605g-ds-galaxy-a6-2018-duos-td-lte-apac-64gb" + }, + { + "slug": "sm-a605gn-galaxy-a6-2018-td-lte-latam-32gb", + "name": "SM-A605GN Galaxy A6+ 2018 TD-LTE LATAM 32GB", + "url": "/v1/smartphones/sm-a605gn-galaxy-a6-2018-td-lte-latam-32gb" + }, + { + "slug": "sm-a605gn-ds-galaxy-a6-2018-duos-td-lte-latam-32gb", + "name": "SM-A605GN/DS Galaxy A6+ 2018 Duos TD-LTE LATAM 32GB", + "url": "/v1/smartphones/sm-a605gn-ds-galaxy-a6-2018-duos-td-lte-latam-32gb" + }, + { + "slug": "sm-a605k-galaxy-jean-td-lte-kr-32gb", + "name": "SM-A605K Galaxy Jean TD-LTE KR 32GB", + "url": "/v1/smartphones/sm-a605k-galaxy-jean-td-lte-kr-32gb" + }, + { + "slug": "sm-a6060-ds-galaxy-a60-2019-dual-sim-td-lte-cn-128gb", + "name": "SM-A6060/DS Galaxy A60 2019 Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/sm-a6060-ds-galaxy-a60-2019-dual-sim-td-lte-cn-128gb" + }, + { + "slug": "sm-a6060-ds-galaxy-a60-2019-dual-sim-td-lte-cn-64gb", + "name": "SM-A6060/DS Galaxy A60 2019 Dual SIM TD-LTE CN 64GB", + "url": "/v1/smartphones/sm-a6060-ds-galaxy-a60-2019-dual-sim-td-lte-cn-64gb" + }, + { + "slug": "sm-a7050-galaxy-a70-2019-premium-edition-dual-sim-td-lte-apac-128gb", + "name": "SM-A7050 Galaxy A70 2019 Premium Edition Dual SIM TD-LTE APAC 128GB", + "url": "/v1/smartphones/sm-a7050-galaxy-a70-2019-premium-edition-dual-sim-td-lte-apac-128gb" + }, + { + "slug": "sm-a7050-galaxy-a70-2019-standard-edition-dual-sim-td-lte-apac-128gb", + "name": "SM-A7050 Galaxy A70 2019 Standard Edition Dual SIM TD-LTE APAC 128GB", + "url": "/v1/smartphones/sm-a7050-galaxy-a70-2019-standard-edition-dual-sim-td-lte-apac-128gb" + }, + { + "slug": "sm-a705f-ds-galaxy-a70-2019-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A705F/DS Galaxy A70 2019 Standard Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-a705f-ds-galaxy-a70-2019-standard-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-a705fn-galaxy-a70-2019-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A705FN Galaxy A70 2019 Standard Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-a705fn-galaxy-a70-2019-standard-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-a705fn-ds-galaxy-a70-2019-premium-edition-dual-sim-td-lte-emea-128gb", + "name": "SM-A705FN/DS Galaxy A70 2019 Premium Edition Dual SIM TD-LTE EMEA 128GB", + "url": "/v1/smartphones/sm-a705fn-ds-galaxy-a70-2019-premium-edition-dual-sim-td-lte-emea-128gb" + }, + { + "slug": "sm-a705fn-ds-galaxy-a70-2019-standard-edition-dual-sim-td-lte-emea-128gb", + "name": "SM-A705FN/DS Galaxy A70 2019 Standard Edition Dual SIM TD-LTE EMEA 128GB", + "url": "/v1/smartphones/sm-a705fn-ds-galaxy-a70-2019-standard-edition-dual-sim-td-lte-emea-128gb" + }, + { + "slug": "sm-a705gm-ds-galaxy-a70-2019-standard-edition-dual-sim-td-lte-in-128gb", + "name": "SM-A705GM/DS Galaxy A70 2019 Standard Edition Dual SIM TD-LTE IN 128GB", + "url": "/v1/smartphones/sm-a705gm-ds-galaxy-a70-2019-standard-edition-dual-sim-td-lte-in-128gb" + }, + { + "slug": "sm-a705mn-galaxy-a70-2019-td-lte-am-128gb", + "name": "SM-A705MN Galaxy A70 2019 TD-LTE AM 128GB", + "url": "/v1/smartphones/sm-a705mn-galaxy-a70-2019-td-lte-am-128gb" + }, + { + "slug": "sm-a705mn-ds-galaxy-a70-2019-dual-sim-td-lte-apac-am-128gb", + "name": "SM-A705MN/DS Galaxy A70 2019 Dual SIM TD-LTE APAC AM 128GB", + "url": "/v1/smartphones/sm-a705mn-ds-galaxy-a70-2019-dual-sim-td-lte-apac-am-128gb" + }, + { + "slug": "sm-a705w-galaxy-a70-2019-td-lte-ca-128gb", + "name": "SM-A705W Galaxy A70 2019 TD-LTE CA 128GB", + "url": "/v1/smartphones/sm-a705w-galaxy-a70-2019-td-lte-ca-128gb" + }, + { + "slug": "sm-a705yn-galaxy-a70-2019-td-lte-au-128gb", + "name": "SM-A705YN Galaxy A70 2019 TD-LTE AU 128GB", + "url": "/v1/smartphones/sm-a705yn-galaxy-a70-2019-td-lte-au-128gb" + }, + { + "slug": "sm-a7070-galaxy-a70s-2019-dual-sim-td-lte-cn", + "name": "SM-A7070 Galaxy A70s 2019 Dual SIM TD-LTE CN", + "url": "/v1/smartphones/sm-a7070-galaxy-a70s-2019-dual-sim-td-lte-cn" + }, + { + "slug": "sm-a707f-dsm-galaxy-a70s-2019-premium-edition-global-dual-sim-td-lte", + "name": "SM-A707F/DSM Galaxy A70s 2019 Premium Edition Global Dual SIM TD-LTE", + "url": "/v1/smartphones/sm-a707f-dsm-galaxy-a70s-2019-premium-edition-global-dual-sim-td-lte" + }, + { + "slug": "sm-a707f-dsm-galaxy-a70s-2019-standard-edition-global-dual-sim-td-lte", + "name": "SM-A707F/DSM Galaxy A70s 2019 Standard Edition Global Dual SIM TD-LTE", + "url": "/v1/smartphones/sm-a707f-dsm-galaxy-a70s-2019-standard-edition-global-dual-sim-td-lte" + }, + { + "slug": "sm-a715f-galaxy-a71-2019-premium-edition-global-td-lte-128gb", + "name": "SM-A715F Galaxy A71 2019 Premium Edition Global TD-LTE 128GB", + "url": "/v1/smartphones/sm-a715f-galaxy-a71-2019-premium-edition-global-td-lte-128gb" + }, + { + "slug": "sm-a715f-ds-galaxy-a71-2019-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A715F/DS Galaxy A71 2019 Standard Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-a715f-ds-galaxy-a71-2019-standard-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-a715f-dsm-galaxy-a71-2019-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A715F/DSM Galaxy A71 2019 Premium Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-a715f-dsm-galaxy-a71-2019-premium-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-a715f-dsm-galaxy-a71-2019-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A715F/DSM Galaxy A71 2019 Standard Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-a715f-dsm-galaxy-a71-2019-standard-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-a715w-galaxy-a71-2019-td-lte-ca-128gb", + "name": "SM-A715W Galaxy A71 2019 TD-LTE CA 128GB", + "url": "/v1/smartphones/sm-a715w-galaxy-a71-2019-td-lte-ca-128gb" + }, + { + "slug": "sm-a7160-galaxy-a71-5g-dual-sim-td-lte-cn", + "name": "SM-A7160 Galaxy A71 5G Dual SIM TD-LTE CN", + "url": "/v1/smartphones/sm-a7160-galaxy-a71-5g-dual-sim-td-lte-cn" + }, + { + "slug": "sm-a716b-galaxy-a71-5g-global-td-lte-128gb", + "name": "SM-A716B Galaxy A71 5G Global TD-LTE 128GB", + "url": "/v1/smartphones/sm-a716b-galaxy-a71-5g-global-td-lte-128gb" + }, + { + "slug": "sm-a716b-ds-galaxy-a71-5g-global-dual-sim-td-lte-128gb", + "name": "SM-A716B/DS Galaxy A71 5G Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-a716b-ds-galaxy-a71-5g-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716a", + "name": "SM-A716U Galaxy A71 5G TD-LTE US / SM-A716A", + "url": "/v1/smartphones/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716a" + }, + { + "slug": "sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716p", + "name": "SM-A716U Galaxy A71 5G TD-LTE US / SM-A716P", + "url": "/v1/smartphones/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716p" + }, + { + "slug": "sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716r4", + "name": "SM-A716U Galaxy A71 5G TD-LTE US / SM-A716R4", + "url": "/v1/smartphones/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716r4" + }, + { + "slug": "sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716t", + "name": "SM-A716U Galaxy A71 5G TD-LTE US / SM-A716T", + "url": "/v1/smartphones/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716t" + }, + { + "slug": "sm-a716u-galaxy-a71-uw-5g-lte-a-us-sm-a716v", + "name": "SM-A716U Galaxy A71 UW 5G LTE-A US / SM-A716V", + "url": "/v1/smartphones/sm-a716u-galaxy-a71-uw-5g-lte-a-us-sm-a716v" + }, + { + "slug": "sm-a716u1-galaxy-a71-5g-td-lte-us", + "name": "SM-A716U1 Galaxy A71 5G TD-LTE US", + "url": "/v1/smartphones/sm-a716u1-galaxy-a71-5g-td-lte-us" + }, + { + "slug": "sm-a730f-galaxy-a8-2018-standard-edition-global-td-lte-64gb", + "name": "SM-A730F Galaxy A8+ 2018 Standard Edition Global TD-LTE 64GB", + "url": "/v1/smartphones/sm-a730f-galaxy-a8-2018-standard-edition-global-td-lte-64gb" + }, + { + "slug": "sm-a730f-ds-galaxy-a8-2018-standard-edition-duos-global-td-lte-64gb", + "name": "SM-A730F/DS Galaxy A8+ 2018 Standard Edition Duos Global TD-LTE 64GB", + "url": "/v1/smartphones/sm-a730f-ds-galaxy-a8-2018-standard-edition-duos-global-td-lte-64gb" + }, + { + "slug": "sm-a750c-galaxy-a7-2018-duos-td-lte-jp-64gb", + "name": "SM-A750C Galaxy A7 2018 Duos TD-LTE JP 64GB", + "url": "/v1/smartphones/sm-a750c-galaxy-a7-2018-duos-td-lte-jp-64gb" + }, + { + "slug": "sm-a750f-ds-galaxy-a7-2018-duos-global-td-lte-128gb", + "name": "SM-A750F/DS Galaxy A7 2018 Duos Global TD-LTE 128GB", + "url": "/v1/smartphones/sm-a750f-ds-galaxy-a7-2018-duos-global-td-lte-128gb" + }, + { + "slug": "sm-a750f-ds-galaxy-a7-2018-duos-global-td-lte-64gb", + "name": "SM-A750F/DS Galaxy A7 2018 Duos Global TD-LTE 64GB", + "url": "/v1/smartphones/sm-a750f-ds-galaxy-a7-2018-duos-global-td-lte-64gb" + }, + { + "slug": "sm-a750fn-galaxy-a7-2018-td-lte-emea-64gb", + "name": "SM-A750FN Galaxy A7 2018 TD-LTE EMEA 64GB", + "url": "/v1/smartphones/sm-a750fn-galaxy-a7-2018-td-lte-emea-64gb" + }, + { + "slug": "sm-a750fn-ds-galaxy-a7-2018-duos-global-td-lte-64gb", + "name": "SM-A750FN/DS Galaxy A7 2018 Duos Global TD-LTE 64GB", + "url": "/v1/smartphones/sm-a750fn-ds-galaxy-a7-2018-duos-global-td-lte-64gb" + }, + { + "slug": "sm-a750g-galaxy-a7-2018-td-lte-latam-64gb", + "name": "SM-A750G Galaxy A7 2018 TD-LTE LATAM 64GB", + "url": "/v1/smartphones/sm-a750g-galaxy-a7-2018-td-lte-latam-64gb" + }, + { + "slug": "sm-a750g-ds-galaxy-a7-2018-duos-td-lte-latam-64gb", + "name": "SM-A750G/DS Galaxy A7 2018 Duos TD-LTE LATAM 64GB", + "url": "/v1/smartphones/sm-a750g-ds-galaxy-a7-2018-duos-td-lte-latam-64gb" + }, + { + "slug": "sm-a750gn-ds-galaxy-a7-2018-duos-td-lte-apac-128gb", + "name": "SM-A750GN/DS Galaxy A7 2018 Duos TD-LTE APAC 128GB", + "url": "/v1/smartphones/sm-a750gn-ds-galaxy-a7-2018-duos-td-lte-apac-128gb" + }, + { + "slug": "sm-a750gn-ds-galaxy-a7-2018-duos-td-lte-apac-64gb", + "name": "SM-A750GN/DS Galaxy A7 2018 Duos TD-LTE APAC 64GB", + "url": "/v1/smartphones/sm-a750gn-ds-galaxy-a7-2018-duos-td-lte-apac-64gb" + }, + { + "slug": "sm-a750n-galaxy-a7-2018-td-lte-kr", + "name": "SM-A750N Galaxy A7 2018 TD-LTE KR", + "url": "/v1/smartphones/sm-a750n-galaxy-a7-2018-td-lte-kr" + }, + { + "slug": "sm-a8050-galaxy-a80-2019-dual-sim-td-lte-cn", + "name": "SM-A8050 Galaxy A80 2019 Dual SIM TD-LTE CN", + "url": "/v1/smartphones/sm-a8050-galaxy-a80-2019-dual-sim-td-lte-cn" + }, + { + "slug": "sm-a805f-galaxy-a80-2019-global-td-lte", + "name": "SM-A805F Galaxy A80 2019 Global TD-LTE", + "url": "/v1/smartphones/sm-a805f-galaxy-a80-2019-global-td-lte" + }, + { + "slug": "sm-a805f-ds-galaxy-a80-2019-global-dual-sim-td-lte", + "name": "SM-A805F/DS Galaxy A80 2019 Global Dual SIM TD-LTE", + "url": "/v1/smartphones/sm-a805f-ds-galaxy-a80-2019-global-dual-sim-td-lte" + }, + { + "slug": "sm-a805n-galaxy-a80-2019-td-lte-kr", + "name": "SM-A805N Galaxy A80 2019 TD-LTE KR", + "url": "/v1/smartphones/sm-a805n-galaxy-a80-2019-td-lte-kr" + }, + { + "slug": "sm-a826s-galaxy-quantum-2-5g-td-lte-kr-128gb", + "name": "SM-A826S Galaxy Quantum 2 5G TD-LTE KR 128GB", + "url": "/v1/smartphones/sm-a826s-galaxy-quantum-2-5g-td-lte-kr-128gb" + }, + { + "slug": "sm-a9080-galaxy-a90-2019-5g-dual-sim-td-lte-cn-128gb", + "name": "SM-A9080 Galaxy A90 2019 5G Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/sm-a9080-galaxy-a90-2019-5g-dual-sim-td-lte-cn-128gb" + }, + { + "slug": "sm-a908b-galaxy-a90-2019-5g-global-td-lte-128gb", + "name": "SM-A908B Galaxy A90 2019 5G Global TD-LTE 128GB", + "url": "/v1/smartphones/sm-a908b-galaxy-a90-2019-5g-global-td-lte-128gb" + }, + { + "slug": "sm-a908n-galaxy-a90-2019-5g-td-lte-kr-128gb", + "name": "SM-A908N Galaxy A90 2019 5G TD-LTE KR 128GB", + "url": "/v1/smartphones/sm-a908n-galaxy-a90-2019-5g-td-lte-kr-128gb" + }, + { + "slug": "sm-a9200-galaxy-a9s-2018-dual-sim-td-lte-cn-128gb", + "name": "SM-A9200 Galaxy A9s 2018 Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/sm-a9200-galaxy-a9s-2018-dual-sim-td-lte-cn-128gb" + }, + { + "slug": "sm-a9200-galaxy-a9s-2018-dual-sim-td-lte-cn-64gb", + "name": "SM-A9200 Galaxy A9s 2018 Dual SIM TD-LTE CN 64GB", + "url": "/v1/smartphones/sm-a9200-galaxy-a9s-2018-dual-sim-td-lte-cn-64gb" + }, + { + "slug": "sm-a920f-galaxy-a9-2018-global-td-lte", + "name": "SM-A920F Galaxy A9 2018 Global TD-LTE", + "url": "/v1/smartphones/sm-a920f-galaxy-a9-2018-global-td-lte" + }, + { + "slug": "sm-a920f-ds-galaxy-a9-2018-duos-global-td-lte", + "name": "SM-A920F/DS Galaxy A9 2018 Duos Global TD-LTE", + "url": "/v1/smartphones/sm-a920f-ds-galaxy-a9-2018-duos-global-td-lte" + }, + { + "slug": "sm-a920f-ds-galaxy-a9-2018-premium-edition-duos-global-td-lte", + "name": "SM-A920F/DS Galaxy A9 2018 Premium Edition Duos Global TD-LTE", + "url": "/v1/smartphones/sm-a920f-ds-galaxy-a9-2018-premium-edition-duos-global-td-lte" + }, + { + "slug": "sm-a920n-galaxy-a9-2018-td-lte-kr", + "name": "SM-A920N Galaxy A9 2018 TD-LTE KR", + "url": "/v1/smartphones/sm-a920n-galaxy-a9-2018-td-lte-kr" + }, + { + "slug": "sm-e025f-ds-galaxy-f02s-2021-global-dual-sim-td-lte-32gb", + "name": "SM-E025F/DS Galaxy F02s 2021 Global Dual SIM TD-LTE 32GB", + "url": "/v1/smartphones/sm-e025f-ds-galaxy-f02s-2021-global-dual-sim-td-lte-32gb" + }, + { + "slug": "sm-e025f-ds-galaxy-f02s-2021-global-dual-sim-td-lte-64gb", + "name": "SM-E025F/DS Galaxy F02s 2021 Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/sm-e025f-ds-galaxy-f02s-2021-global-dual-sim-td-lte-64gb" + }, + { + "slug": "sm-e225f-ds-galaxy-f22-4g-2021-premium-edition-dual-sim-td-lte-in-128gb", + "name": "SM-E225F/DS Galaxy F22 4G 2021 Premium Edition Dual SIM TD-LTE IN 128GB", + "url": "/v1/smartphones/sm-e225f-ds-galaxy-f22-4g-2021-premium-edition-dual-sim-td-lte-in-128gb" + }, + { + "slug": "sm-e225f-ds-galaxy-f22-4g-2021-standard-edition-dual-sim-td-lte-in-64gb", + "name": "SM-E225F/DS Galaxy F22 4G 2021 Standard Edition Dual SIM TD-LTE IN 64GB", + "url": "/v1/smartphones/sm-e225f-ds-galaxy-f22-4g-2021-standard-edition-dual-sim-td-lte-in-64gb" + }, + { + "slug": "sm-e426b-ds-galaxy-f42-5g-2021-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-E426B/DS Galaxy F42 5G 2021 Premium Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-e426b-ds-galaxy-f42-5g-2021-premium-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-e426b-ds-galaxy-f42-5g-2021-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-E426B/DS Galaxy F42 5G 2021 Standard Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-e426b-ds-galaxy-f42-5g-2021-standard-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-e426s-galaxy-wide5-5g-2021-td-lte-kr-64gb", + "name": "SM-E426S Galaxy Wide5 5G 2021 TD-LTE KR 64GB", + "url": "/v1/smartphones/sm-e426s-galaxy-wide5-5g-2021-td-lte-kr-64gb" + }, + { + "slug": "sm-e625f-ds-galaxy-f62-2021-premium-edition-global-dual-sim-td-lte", + "name": "SM-E625F/DS Galaxy F62 2021 Premium Edition Global Dual SIM TD-LTE", + "url": "/v1/smartphones/sm-e625f-ds-galaxy-f62-2021-premium-edition-global-dual-sim-td-lte" + }, + { + "slug": "sm-e625f-ds-galaxy-f62-2021-standard-edition-global-dual-sim-td-lte", + "name": "SM-E625F/DS Galaxy F62 2021 Standard Edition Global Dual SIM TD-LTE", + "url": "/v1/smartphones/sm-e625f-ds-galaxy-f62-2021-standard-edition-global-dual-sim-td-lte" + }, + { + "slug": "sm-f415f-ds-galaxy-f41-global-dual-sim-td-lte-128gb", + "name": "SM-F415F/DS Galaxy F41 Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-f415f-ds-galaxy-f41-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-f415f-ds-galaxy-f41-global-dual-sim-td-lte-64gb", + "name": "SM-F415F/DS Galaxy F41 Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/sm-f415f-ds-galaxy-f41-global-dual-sim-td-lte-64gb" + }, + { + "slug": "sm-f415f-ds-galaxy-m21s-2020-global-dual-sim-td-lte-64gb", + "name": "SM-F415F/DS Galaxy M21s 2020 Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/sm-f415f-ds-galaxy-m21s-2020-global-dual-sim-td-lte-64gb" + }, + { + "slug": "sm-f7000-galaxy-z-flip-td-lte-cn-256gb", + "name": "SM-F7000 Galaxy Z Flip TD-LTE CN 256GB", + "url": "/v1/smartphones/sm-f7000-galaxy-z-flip-td-lte-cn-256gb" + }, + { + "slug": "sm-f7000-galaxy-z-flip-thom-browne-edition-td-lte-cn-256gb", + "name": "SM-F7000 Galaxy Z Flip Thom Browne Edition TD-LTE CN 256GB", + "url": "/v1/smartphones/sm-f7000-galaxy-z-flip-thom-browne-edition-td-lte-cn-256gb" + }, + { + "slug": "sm-f700f-ds-galaxy-z-flip-global-td-lte-256gb-sm-f700f", + "name": "SM-F700F/DS Galaxy Z Flip Global TD-LTE 256GB / SM-F700F", + "url": "/v1/smartphones/sm-f700f-ds-galaxy-z-flip-global-td-lte-256gb-sm-f700f" + }, + { + "slug": "sm-f700j-ds-galaxy-z-flip-td-lte-jp-scv47-sm-f700j", + "name": "SM-F700J/DS Galaxy Z Flip TD-LTE JP SCV47 / SM-F700J", + "url": "/v1/smartphones/sm-f700j-ds-galaxy-z-flip-td-lte-jp-scv47-sm-f700j" + }, + { + "slug": "sm-f700n-galaxy-z-flip-td-lte-kr-256gb", + "name": "SM-F700N Galaxy Z Flip TD-LTE KR 256GB", + "url": "/v1/smartphones/sm-f700n-galaxy-z-flip-td-lte-kr-256gb" + }, + { + "slug": "sm-f700u-ds-galaxy-z-flip-td-lte-us-256gb-sm-f700u", + "name": "SM-F700U/DS Galaxy Z Flip TD-LTE US 256GB / SM-F700U", + "url": "/v1/smartphones/sm-f700u-ds-galaxy-z-flip-td-lte-us-256gb-sm-f700u" + }, + { + "slug": "sm-f700u-ds-galaxy-z-flip-thom-browne-edition-td-lte-us-256gb-sm-f700u", + "name": "SM-F700U/DS Galaxy Z Flip Thom Browne Edition TD-LTE US 256GB / SM-F700U", + "url": "/v1/smartphones/sm-f700u-ds-galaxy-z-flip-thom-browne-edition-td-lte-us-256gb-sm-f700u" + }, + { + "slug": "sm-f700w-ds-galaxy-z-flip-td-lte-ca-256gb", + "name": "SM-F700W/DS Galaxy Z Flip TD-LTE CA 256GB", + "url": "/v1/smartphones/sm-f700w-ds-galaxy-z-flip-td-lte-ca-256gb" + }, + { + "slug": "sm-f7070-galaxy-z-flip-5g-td-lte-cn-256gb", + "name": "SM-F7070 Galaxy Z Flip 5G TD-LTE CN 256GB", + "url": "/v1/smartphones/sm-f7070-galaxy-z-flip-5g-td-lte-cn-256gb" + }, + { + "slug": "sm-f707b-galaxy-z-flip-5g-global-dual-sim-td-lte-256gb", + "name": "SM-F707B Galaxy Z Flip 5G Global Dual SIM TD-LTE 256GB", + "url": "/v1/smartphones/sm-f707b-galaxy-z-flip-5g-global-dual-sim-td-lte-256gb" + }, + { + "slug": "sm-f707j-galaxy-z-flip-5g-td-lte-jp-scg04", + "name": "SM-F707J Galaxy Z Flip 5G TD-LTE JP SCG04", + "url": "/v1/smartphones/sm-f707j-galaxy-z-flip-5g-td-lte-jp-scg04" + }, + { + "slug": "sm-f707n-galaxy-z-flip-5g-td-lte-kr-256gb", + "name": "SM-F707N Galaxy Z Flip 5G TD-LTE KR 256GB", + "url": "/v1/smartphones/sm-f707n-galaxy-z-flip-5g-td-lte-kr-256gb" + }, + { + "slug": "sm-f707w-galaxy-z-flip-5g-td-lte-ca-256gb", + "name": "SM-F707W Galaxy Z Flip 5G TD-LTE CA 256GB", + "url": "/v1/smartphones/sm-f707w-galaxy-z-flip-5g-td-lte-ca-256gb" + }, + { + "slug": "sm-f7110-galaxy-z-flip-3-5g-olympic-games-edition-td-lte-cn-256gb", + "name": "SM-F7110 Galaxy Z Flip 3 5G Olympic Games Edition TD-LTE CN 256GB", + "url": "/v1/smartphones/sm-f7110-galaxy-z-flip-3-5g-olympic-games-edition-td-lte-cn-256gb" + }, + { + "slug": "sm-f7110-galaxy-z-flip-3-5g-td-lte-cn-hk-tw-128gb", + "name": "SM-F7110 Galaxy Z Flip 3 5G TD-LTE CN HK TW 128GB", + "url": "/v1/smartphones/sm-f7110-galaxy-z-flip-3-5g-td-lte-cn-hk-tw-128gb" + }, + { + "slug": "sm-f7110-galaxy-z-flip-3-5g-td-lte-cn-hk-tw-256gb", + "name": "SM-F7110 Galaxy Z Flip 3 5G TD-LTE CN HK TW 256GB", + "url": "/v1/smartphones/sm-f7110-galaxy-z-flip-3-5g-td-lte-cn-hk-tw-256gb" + }, + { + "slug": "sm-f7110-galaxy-z-flip-3-5g-thom-browne-limited-edition-td-lte-cn-hk-tw-256gb", + "name": "SM-F7110 Galaxy Z Flip 3 5G Thom Browne Limited Edition TD-LTE CN HK TW 256GB", + "url": "/v1/smartphones/sm-f7110-galaxy-z-flip-3-5g-thom-browne-limited-edition-td-lte-cn-hk-tw-256gb" + }, + { + "slug": "sm-f711b-galaxy-z-flip-3-5g-global-td-lte-128gb", + "name": "SM-F711B Galaxy Z Flip 3 5G Global TD-LTE 128GB", + "url": "/v1/smartphones/sm-f711b-galaxy-z-flip-3-5g-global-td-lte-128gb" + }, + { + "slug": "sm-f711b-galaxy-z-flip-3-5g-global-td-lte-256gb", + "name": "SM-F711B Galaxy Z Flip 3 5G Global TD-LTE 256GB", + "url": "/v1/smartphones/sm-f711b-galaxy-z-flip-3-5g-global-td-lte-256gb" + }, + { + "slug": "sm-f711b-galaxy-z-flip-3-5g-thom-browne-edition-global-td-lte-256gb", + "name": "SM-F711B Galaxy Z Flip 3 5G Thom Browne Edition Global TD-LTE 256GB", + "url": "/v1/smartphones/sm-f711b-galaxy-z-flip-3-5g-thom-browne-edition-global-td-lte-256gb" + }, + { + "slug": "sm-f711d-galaxy-z-flip-3-5g-td-lte-jp-128gb-sc-54b", + "name": "SM-F711D Galaxy Z Flip 3 5G TD-LTE JP 128GB SC-54B", + "url": "/v1/smartphones/sm-f711d-galaxy-z-flip-3-5g-td-lte-jp-128gb-sc-54b" + }, + { + "slug": "sm-f711j-galaxy-z-flip-3-5g-td-lte-jp-128gb-scg12", + "name": "SM-F711J Galaxy Z Flip 3 5G TD-LTE JP 128GB SCG12", + "url": "/v1/smartphones/sm-f711j-galaxy-z-flip-3-5g-td-lte-jp-128gb-scg12" + }, + { + "slug": "sm-f711n-galaxy-z-flip-3-5g-td-lte-kr-256gb", + "name": "SM-F711N Galaxy Z Flip 3 5G TD-LTE KR 256GB", + "url": "/v1/smartphones/sm-f711n-galaxy-z-flip-3-5g-td-lte-kr-256gb" + }, + { + "slug": "sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711a", + "name": "SM-F711U Galaxy Z Flip 3 5G UW TD-LTE US 128GB / SM-F711A", + "url": "/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711a" + }, + { + "slug": "sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711r4", + "name": "SM-F711U Galaxy Z Flip 3 5G UW TD-LTE US 128GB / SM-F711R4", + "url": "/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711r4" + }, + { + "slug": "sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711t", + "name": "SM-F711U Galaxy Z Flip 3 5G UW TD-LTE US 128GB / SM-F711T", + "url": "/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711t" + }, + { + "slug": "sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711v", + "name": "SM-F711U Galaxy Z Flip 3 5G UW TD-LTE US 128GB / SM-F711V", + "url": "/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711v" + }, + { + "slug": "sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711a", + "name": "SM-F711U Galaxy Z Flip 3 5G UW TD-LTE US 256GB / SM-F711A", + "url": "/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711a" + }, + { + "slug": "sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711r4", + "name": "SM-F711U Galaxy Z Flip 3 5G UW TD-LTE US 256GB / SM-F711R4", + "url": "/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711r4" + }, + { + "slug": "sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711t", + "name": "SM-F711U Galaxy Z Flip 3 5G UW TD-LTE US 256GB / SM-F711T", + "url": "/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711t" + }, + { + "slug": "sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711v", + "name": "SM-F711U Galaxy Z Flip 3 5G UW TD-LTE US 256GB / SM-F711V", + "url": "/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711v" + }, + { + "slug": "sm-f711u1-galaxy-z-flip-3-5g-uw-bespoke-edition-td-lte-us-256gb", + "name": "SM-F711U1 Galaxy Z Flip 3 5G UW Bespoke Edition TD-LTE US 256GB", + "url": "/v1/smartphones/sm-f711u1-galaxy-z-flip-3-5g-uw-bespoke-edition-td-lte-us-256gb" + }, + { + "slug": "sm-f711u1-galaxy-z-flip-3-5g-uw-td-lte-us-128gb", + "name": "SM-F711U1 Galaxy Z Flip 3 5G UW TD-LTE US 128GB", + "url": "/v1/smartphones/sm-f711u1-galaxy-z-flip-3-5g-uw-td-lte-us-128gb" + }, + { + "slug": "sm-f711u1-galaxy-z-flip-3-5g-uw-td-lte-us-256gb", + "name": "SM-F711U1 Galaxy Z Flip 3 5G UW TD-LTE US 256GB", + "url": "/v1/smartphones/sm-f711u1-galaxy-z-flip-3-5g-uw-td-lte-us-256gb" + }, + { + "slug": "sm-f711w-galaxy-z-flip-3-5g-bespoke-edition-td-lte-ca-256gb", + "name": "SM-F711W Galaxy Z Flip 3 5G Bespoke Edition TD-LTE CA 256GB", + "url": "/v1/smartphones/sm-f711w-galaxy-z-flip-3-5g-bespoke-edition-td-lte-ca-256gb" + }, + { + "slug": "sm-f711w-galaxy-z-flip-3-5g-td-lte-ca-128gb", + "name": "SM-F711W Galaxy Z Flip 3 5G TD-LTE CA 128GB", + "url": "/v1/smartphones/sm-f711w-galaxy-z-flip-3-5g-td-lte-ca-128gb" + }, + { + "slug": "sm-f711w-galaxy-z-flip-3-5g-td-lte-ca-256gb", + "name": "SM-F711W Galaxy Z Flip 3 5G TD-LTE CA 256GB", + "url": "/v1/smartphones/sm-f711w-galaxy-z-flip-3-5g-td-lte-ca-256gb" + }, + { + "slug": "sm-f9000-galaxy-fold-td-lte-cn-512gb", + "name": "SM-F9000 Galaxy Fold TD-LTE CN 512GB", + "url": "/v1/smartphones/sm-f9000-galaxy-fold-td-lte-cn-512gb" + }, + { + "slug": "sm-f900f-galaxy-fold-global-td-lte-512gb", + "name": "SM-F900F Galaxy Fold Global TD-LTE 512GB", + "url": "/v1/smartphones/sm-f900f-galaxy-fold-global-td-lte-512gb" + }, + { + "slug": "sm-f900j-galaxy-fold-wimax-2-512gb-scv44", + "name": "SM-F900J Galaxy Fold WiMAX 2+ 512GB SCV44", + "url": "/v1/smartphones/sm-f900j-galaxy-fold-wimax-2-512gb-scv44" + }, + { + "slug": "sm-f900u-galaxy-fold-td-lte-us-512gb", + "name": "SM-F900U Galaxy Fold TD-LTE US 512GB", + "url": "/v1/smartphones/sm-f900u-galaxy-fold-td-lte-us-512gb" + }, + { + "slug": "sm-f900u1-galaxy-fold-td-lte-us-512gb", + "name": "SM-F900U1 Galaxy Fold TD-LTE US 512GB", + "url": "/v1/smartphones/sm-f900u1-galaxy-fold-td-lte-us-512gb" + }, + { + "slug": "sm-f907b-galaxy-fold-5g-global-td-lte-512gb", + "name": "SM-F907B Galaxy Fold 5G Global TD-LTE 512GB", + "url": "/v1/smartphones/sm-f907b-galaxy-fold-5g-global-td-lte-512gb" + }, + { + "slug": "sm-f907n-galaxy-fold-5g-td-lte-kr-512gb", + "name": "SM-F907N Galaxy Fold 5G TD-LTE KR 512GB", + "url": "/v1/smartphones/sm-f907n-galaxy-fold-5g-td-lte-kr-512gb" + }, + { + "slug": "sm-f9160-galaxy-z-fold2-5g-td-lte-cn-hk-512gb", + "name": "SM-F9160 Galaxy Z Fold2 5G TD-LTE CN HK 512GB", + "url": "/v1/smartphones/sm-f9160-galaxy-z-fold2-5g-td-lte-cn-hk-512gb" + }, + { + "slug": "sm-f9160-galaxy-z-fold2-5g-thom-browne-edition-td-lte-cn-hk-512gb", + "name": "SM-F9160 Galaxy Z Fold2 5G Thom Browne Edition TD-LTE CN HK 512GB", + "url": "/v1/smartphones/sm-f9160-galaxy-z-fold2-5g-thom-browne-edition-td-lte-cn-hk-512gb" + }, + { + "slug": "sm-f916b-galaxy-z-fold2-5g-global-dual-sim-td-lte-256gb", + "name": "SM-F916B Galaxy Z Fold2 5G Global Dual SIM TD-LTE 256GB", + "url": "/v1/smartphones/sm-f916b-galaxy-z-fold2-5g-global-dual-sim-td-lte-256gb" + }, + { + "slug": "sm-f916b-galaxy-z-fold2-5g-thom-browne-edition-global-dual-sim-td-lte-256gb", + "name": "SM-F916B Galaxy Z Fold2 5G Thom Browne Edition Global Dual SIM TD-LTE 256GB", + "url": "/v1/smartphones/sm-f916b-galaxy-z-fold2-5g-thom-browne-edition-global-dual-sim-td-lte-256gb" + }, + { + "slug": "sm-f916j-galaxy-z-fold2-uw-5g-td-lte-jp-256gb-scg05-sm-f916q", + "name": "SM-F916J Galaxy Z Fold2 UW 5G TD-LTE JP 256GB SCG05 / SM-F916Q", + "url": "/v1/smartphones/sm-f916j-galaxy-z-fold2-uw-5g-td-lte-jp-256gb-scg05-sm-f916q" + }, + { + "slug": "sm-f916n-galaxy-z-fold2-uw-5g-td-lte-kr-256gb", + "name": "SM-F916N Galaxy Z Fold2 UW 5G TD-LTE KR 256GB", + "url": "/v1/smartphones/sm-f916n-galaxy-z-fold2-uw-5g-td-lte-kr-256gb" + }, + { + "slug": "sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916a", + "name": "SM-F916U Galaxy Z Fold2 5G TD-LTE US 256GB / SM-F916A", + "url": "/v1/smartphones/sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916a" + }, + { + "slug": "sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916p", + "name": "SM-F916U Galaxy Z Fold2 5G TD-LTE US 256GB / SM-F916P", + "url": "/v1/smartphones/sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916p" + }, + { + "slug": "sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916r4", + "name": "SM-F916U Galaxy Z Fold2 5G TD-LTE US 256GB / SM-F916R4", + "url": "/v1/smartphones/sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916r4" + }, + { + "slug": "sm-f916u-galaxy-z-fold2-5g-uw-td-lte-us-256gb-sm-f916t", + "name": "SM-F916U Galaxy Z Fold2 5G UW TD-LTE US 256GB / SM-F916T", + "url": "/v1/smartphones/sm-f916u-galaxy-z-fold2-5g-uw-td-lte-us-256gb-sm-f916t" + }, + { + "slug": "sm-f916u-galaxy-z-fold2-uw-5g-td-lte-us-256gb-sm-f916v", + "name": "SM-F916U Galaxy Z Fold2 UW 5G TD-LTE US 256GB / SM-F916V", + "url": "/v1/smartphones/sm-f916u-galaxy-z-fold2-uw-5g-td-lte-us-256gb-sm-f916v" + }, + { + "slug": "sm-f916u1-galaxy-z-fold2-uw-5g-td-lte-us-256gb", + "name": "SM-F916U1 Galaxy Z Fold2 UW 5G TD-LTE US 256GB", + "url": "/v1/smartphones/sm-f916u1-galaxy-z-fold2-uw-5g-td-lte-us-256gb" + }, + { + "slug": "sm-f916u1-galaxy-z-fold2-uw-5g-thom-browne-edition-td-lte-us-256gb", + "name": "SM-F916U1 Galaxy Z Fold2 UW 5G Thom Browne Edition TD-LTE US 256GB", + "url": "/v1/smartphones/sm-f916u1-galaxy-z-fold2-uw-5g-thom-browne-edition-td-lte-us-256gb" + }, + { + "slug": "sm-f916w-galaxy-z-fold2-5g-td-lte-ca-256gb", + "name": "SM-F916W Galaxy Z Fold2 5G TD-LTE CA 256GB", + "url": "/v1/smartphones/sm-f916w-galaxy-z-fold2-5g-td-lte-ca-256gb" + }, + { + "slug": "sm-f9260-galaxy-z-fold3-5g-dual-sim-td-lte-cn-hk-tw-512gb", + "name": "SM-F9260 Galaxy Z Fold3 5G Dual SIM TD-LTE CN HK TW 512GB", + "url": "/v1/smartphones/sm-f9260-galaxy-z-fold3-5g-dual-sim-td-lte-cn-hk-tw-512gb" + }, + { + "slug": "sm-f9260-galaxy-z-fold3-5g-thom-browne-edition-dual-sim-td-lte-cn-hk-tw-512gb", + "name": "SM-F9260 Galaxy Z Fold3 5G Thom Browne Edition Dual SIM TD-LTE CN HK TW 512GB", + "url": "/v1/smartphones/sm-f9260-galaxy-z-fold3-5g-thom-browne-edition-dual-sim-td-lte-cn-hk-tw-512gb" + }, + { + "slug": "sm-f926b-galaxy-z-fold3-5g-global-td-lte-256gb", + "name": "SM-F926B Galaxy Z Fold3 5G Global TD-LTE 256GB", + "url": "/v1/smartphones/sm-f926b-galaxy-z-fold3-5g-global-td-lte-256gb" + }, + { + "slug": "sm-f926b-galaxy-z-fold3-5g-global-td-lte-512gb", + "name": "SM-F926B Galaxy Z Fold3 5G Global TD-LTE 512GB", + "url": "/v1/smartphones/sm-f926b-galaxy-z-fold3-5g-global-td-lte-512gb" + }, + { + "slug": "sm-f926b-galaxy-z-fold3-5g-thom-browne-edition-global-td-lte-512gb", + "name": "SM-F926B Galaxy Z Fold3 5G Thom Browne Edition Global TD-LTE 512GB", + "url": "/v1/smartphones/sm-f926b-galaxy-z-fold3-5g-thom-browne-edition-global-td-lte-512gb" + }, + { + "slug": "sm-f926b-ds-galaxy-z-fold3-5g-global-dual-sim-td-lte-256gb", + "name": "SM-F926B/DS Galaxy Z Fold3 5G Global Dual SIM TD-LTE 256GB", + "url": "/v1/smartphones/sm-f926b-ds-galaxy-z-fold3-5g-global-dual-sim-td-lte-256gb" + }, + { + "slug": "sm-f926b-ds-galaxy-z-fold3-5g-global-dual-sim-td-lte-512gb", + "name": "SM-F926B/DS Galaxy Z Fold3 5G Global Dual SIM TD-LTE 512GB", + "url": "/v1/smartphones/sm-f926b-ds-galaxy-z-fold3-5g-global-dual-sim-td-lte-512gb" + }, + { + "slug": "sm-f926d-galaxy-z-fold3-5g-uw-td-lte-jp-256gb-sc-55b", + "name": "SM-F926D Galaxy Z Fold3 5G UW TD-LTE JP 256GB SC-55B", + "url": "/v1/smartphones/sm-f926d-galaxy-z-fold3-5g-uw-td-lte-jp-256gb-sc-55b" + }, + { + "slug": "sm-f926j-galaxy-z-fold3-5g-uw-td-lte-jp-256gb-scg11", + "name": "SM-F926J Galaxy Z Fold3 5G UW TD-LTE JP 256GB SCG11", + "url": "/v1/smartphones/sm-f926j-galaxy-z-fold3-5g-uw-td-lte-jp-256gb-scg11" + }, + { + "slug": "sm-f926n-galaxy-z-fold3-5g-uw-td-lte-kr-256gb", + "name": "SM-F926N Galaxy Z Fold3 5G UW TD-LTE KR 256GB", + "url": "/v1/smartphones/sm-f926n-galaxy-z-fold3-5g-uw-td-lte-kr-256gb" + }, + { + "slug": "sm-f926n-galaxy-z-fold3-5g-uw-td-lte-kr-512gb", + "name": "SM-F926N Galaxy Z Fold3 5G UW TD-LTE KR 512GB", + "url": "/v1/smartphones/sm-f926n-galaxy-z-fold3-5g-uw-td-lte-kr-512gb" + }, + { + "slug": "sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926a", + "name": "SM-F926U Galaxy Z Fold3 5G UW TD-LTE US 256GB / SM-F926A", + "url": "/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926a" + }, + { + "slug": "sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926r4", + "name": "SM-F926U Galaxy Z Fold3 5G UW TD-LTE US 256GB / SM-F926R4", + "url": "/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926r4" + }, + { + "slug": "sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926t", + "name": "SM-F926U Galaxy Z Fold3 5G UW TD-LTE US 256GB / SM-F926T", + "url": "/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926t" + }, + { + "slug": "sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926v", + "name": "SM-F926U Galaxy Z Fold3 5G UW TD-LTE US 256GB / SM-F926V", + "url": "/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926v" + }, + { + "slug": "sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926a", + "name": "SM-F926U Galaxy Z Fold3 5G UW TD-LTE US 512GB / SM-F926A", + "url": "/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926a" + }, + { + "slug": "sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926r4", + "name": "SM-F926U Galaxy Z Fold3 5G UW TD-LTE US 512GB / SM-F926R4", + "url": "/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926r4" + }, + { + "slug": "sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926t", + "name": "SM-F926U Galaxy Z Fold3 5G UW TD-LTE US 512GB / SM-F926T", + "url": "/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926t" + }, + { + "slug": "sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926v", + "name": "SM-F926U Galaxy Z Fold3 5G UW TD-LTE US 512GB / SM-F926V", + "url": "/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926v" + }, + { + "slug": "sm-f926u1-galaxy-z-fold3-5g-uw-td-lte-us-256gb", + "name": "SM-F926U1 Galaxy Z Fold3 5G UW TD-LTE US 256GB", + "url": "/v1/smartphones/sm-f926u1-galaxy-z-fold3-5g-uw-td-lte-us-256gb" + }, + { + "slug": "sm-f926u1-galaxy-z-fold3-5g-uw-td-lte-us-512gb", + "name": "SM-F926U1 Galaxy Z Fold3 5G UW TD-LTE US 512GB", + "url": "/v1/smartphones/sm-f926u1-galaxy-z-fold3-5g-uw-td-lte-us-512gb" + }, + { + "slug": "sm-f926u1-galaxy-z-fold3-5g-uw-thom-browne-edition-td-lte-us-512gb", + "name": "SM-F926U1 Galaxy Z Fold3 5G UW Thom Browne Edition TD-LTE US 512GB", + "url": "/v1/smartphones/sm-f926u1-galaxy-z-fold3-5g-uw-thom-browne-edition-td-lte-us-512gb" + }, + { + "slug": "sm-f926w-galaxy-z-fold3-5g-td-lte-ca-256gb", + "name": "SM-F926W Galaxy Z Fold3 5G TD-LTE CA 256GB", + "url": "/v1/smartphones/sm-f926w-galaxy-z-fold3-5g-td-lte-ca-256gb" + }, + { + "slug": "sm-f926w-galaxy-z-fold3-5g-td-lte-ca-512gb", + "name": "SM-F926W Galaxy Z Fold3 5G TD-LTE CA 512GB", + "url": "/v1/smartphones/sm-f926w-galaxy-z-fold3-5g-td-lte-ca-512gb" + }, + { + "slug": "sm-g398fn-galaxy-xcover-4s-2019-global-td-lte", + "name": "SM-G398FN Galaxy Xcover 4s 2019 Global TD-LTE", + "url": "/v1/smartphones/sm-g398fn-galaxy-xcover-4s-2019-global-td-lte" + }, + { + "slug": "sm-g398fn-ds-galaxy-xcover-4s-2019-global-dual-sim-td-lte", + "name": "SM-G398FN/DS Galaxy Xcover 4s 2019 Global Dual SIM TD-LTE", + "url": "/v1/smartphones/sm-g398fn-ds-galaxy-xcover-4s-2019-global-dual-sim-td-lte" + }, + { + "slug": "sm-g525f-galaxy-xcover-5-2021-global-td-lte", + "name": "SM-G525F Galaxy XCover 5 2021 Global TD-LTE", + "url": "/v1/smartphones/sm-g525f-galaxy-xcover-5-2021-global-td-lte" + }, + { + "slug": "sm-g525f-ds-galaxy-xcover-5-2021-global-dual-sim-td-lte", + "name": "SM-G525F/DS Galaxy XCover 5 2021 Global Dual SIM TD-LTE", + "url": "/v1/smartphones/sm-g525f-ds-galaxy-xcover-5-2021-global-dual-sim-td-lte" + }, + { + "slug": "sm-g525n-galaxy-xcover-5-2021-td-lte-kr", + "name": "SM-G525N Galaxy XCover 5 2021 TD-LTE KR", + "url": "/v1/smartphones/sm-g525n-galaxy-xcover-5-2021-td-lte-kr" + }, + { + "slug": "sm-g6200-galaxy-a6s-dual-sim-td-lte-cn-128gb", + "name": "SM-G6200 Galaxy A6s Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/sm-g6200-galaxy-a6s-dual-sim-td-lte-cn-128gb" + }, + { + "slug": "sm-g6200-galaxy-a6s-dual-sim-td-lte-cn-64gb-galaxy-p30", + "name": "SM-G6200 Galaxy A6s Dual SIM TD-LTE CN 64GB / Galaxy P30", + "url": "/v1/smartphones/sm-g6200-galaxy-a6s-dual-sim-td-lte-cn-64gb-galaxy-p30" + }, + { + "slug": "sm-g715fn-galaxy-xcover-pro-2020-global-td-lte", + "name": "SM-G715FN Galaxy XCover Pro 2020 Global TD-LTE", + "url": "/v1/smartphones/sm-g715fn-galaxy-xcover-pro-2020-global-td-lte" + }, + { + "slug": "sm-g715fn-ds-galaxy-xcover-pro-2020-global-dual-sim-td-lte", + "name": "SM-G715FN/DS Galaxy XCover Pro 2020 Global Dual SIM TD-LTE", + "url": "/v1/smartphones/sm-g715fn-ds-galaxy-xcover-pro-2020-global-dual-sim-td-lte" + }, + { + "slug": "sm-g715u-galaxy-xcover-pro-2020-dual-sim-td-lte-us-sm-g715a", + "name": "SM-G715U Galaxy XCover Pro 2020 Dual SIM TD-LTE US / SM-G715A", + "url": "/v1/smartphones/sm-g715u-galaxy-xcover-pro-2020-dual-sim-td-lte-us-sm-g715a" + }, + { + "slug": "sm-g715u-galaxy-xcover-pro-2020-dual-sim-td-lte-us-sm-g715v", + "name": "SM-G715U Galaxy XCover Pro 2020 Dual SIM TD-LTE US / SM-G715V", + "url": "/v1/smartphones/sm-g715u-galaxy-xcover-pro-2020-dual-sim-td-lte-us-sm-g715v" + }, + { + "slug": "sm-g715u1-galaxy-xcover-pro-2020-dual-sim-td-lte-us", + "name": "SM-G715U1 Galaxy XCover Pro 2020 Dual SIM TD-LTE US", + "url": "/v1/smartphones/sm-g715u1-galaxy-xcover-pro-2020-dual-sim-td-lte-us" + }, + { + "slug": "sm-g715w-galaxy-xcover-pro-2020-dual-sim-td-lte-ca", + "name": "SM-G715W Galaxy XCover Pro 2020 Dual SIM TD-LTE CA", + "url": "/v1/smartphones/sm-g715w-galaxy-xcover-pro-2020-dual-sim-td-lte-ca" + }, + { + "slug": "sm-g770f-galaxy-s10-lite-global-td-lte-128gb", + "name": "SM-G770F Galaxy S10 Lite Global TD-LTE 128GB", + "url": "/v1/smartphones/sm-g770f-galaxy-s10-lite-global-td-lte-128gb" + }, + { + "slug": "sm-g770f-ds-galaxy-s10-lite-global-dual-sim-td-lte-128gb", + "name": "SM-G770F/DS Galaxy S10 Lite Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-g770f-ds-galaxy-s10-lite-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-g770f-dsm-galaxy-s10-lite-dual-sim-td-lte-in-128gb", + "name": "SM-G770F/DSM Galaxy S10 Lite Dual SIM TD-LTE IN 128GB", + "url": "/v1/smartphones/sm-g770f-dsm-galaxy-s10-lite-dual-sim-td-lte-in-128gb" + }, + { + "slug": "sm-g770f-dsm-galaxy-s10-lite-dual-sim-td-lte-in-512gb", + "name": "SM-G770F/DSM Galaxy S10 Lite Dual SIM TD-LTE IN 512GB", + "url": "/v1/smartphones/sm-g770f-dsm-galaxy-s10-lite-dual-sim-td-lte-in-512gb" + }, + { + "slug": "sm-g770u1-galaxy-s10-lite-td-lte-us-128gb", + "name": "SM-G770U1 Galaxy S10 Lite TD-LTE US 128GB", + "url": "/v1/smartphones/sm-g770u1-galaxy-s10-lite-td-lte-us-128gb" + }, + { + "slug": "sm-g780f-ds-galaxy-s20-fe-premium-edition-dual-sim-td-lte-256gb-s20-fan-edition", + "name": "SM-G780F/DS Galaxy S20 FE Premium Edition Dual SIM TD-LTE 256GB / S20 Fan Edition", + "url": "/v1/smartphones/sm-g780f-ds-galaxy-s20-fe-premium-edition-dual-sim-td-lte-256gb-s20-fan-edition" + }, + { + "slug": "sm-g780f-ds-galaxy-s20-fe-standard-edition-dual-sim-td-lte-128gb", + "name": "SM-G780F/DS Galaxy S20 FE Standard Edition Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-g780f-ds-galaxy-s20-fe-standard-edition-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-g7810-galaxy-s20-fe-5g-standard-dual-sim-td-lte-cn-128gb", + "name": "SM-G7810 Galaxy S20 FE 5G Standard Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/sm-g7810-galaxy-s20-fe-5g-standard-dual-sim-td-lte-cn-128gb" + }, + { + "slug": "sm-g781b-ds-galaxy-s20-fe-5g-standard-global-dual-sim-td-lte-128gb-s20-fan-edition", + "name": "SM-G781B/DS Galaxy S20 FE 5G Standard Global Dual SIM TD-LTE 128GB / S20 Fan Edition", + "url": "/v1/smartphones/sm-g781b-ds-galaxy-s20-fe-5g-standard-global-dual-sim-td-lte-128gb-s20-fan-edition" + }, + { + "slug": "sm-g781n-galaxy-s20-fe-5g-standard-td-lte-kr-128gb", + "name": "SM-G781N Galaxy S20 FE 5G Standard TD-LTE KR 128GB", + "url": "/v1/smartphones/sm-g781n-galaxy-s20-fe-5g-standard-td-lte-kr-128gb" + }, + { + "slug": "sm-g781u-galaxy-s20-fe-5g-standard-td-lte-us-256gb-sm-g781t", + "name": "SM-G781U Galaxy S20 FE 5G Standard TD-LTE US 256GB / SM-G781T", + "url": "/v1/smartphones/sm-g781u-galaxy-s20-fe-5g-standard-td-lte-us-256gb-sm-g781t" + }, + { + "slug": "sm-g781u1-galaxy-s20-fe-5g-uw-standard-td-lte-us-128gb", + "name": "SM-G781U1 Galaxy S20 FE 5G UW Standard TD-LTE US 128GB", + "url": "/v1/smartphones/sm-g781u1-galaxy-s20-fe-5g-uw-standard-td-lte-us-128gb" + }, + { + "slug": "sm-g781w-galaxy-s20-fe-5g-standard-td-lte-ca-128gb", + "name": "SM-G781W Galaxy S20 FE 5G Standard TD-LTE CA 128GB", + "url": "/v1/smartphones/sm-g781w-galaxy-s20-fe-5g-standard-td-lte-ca-128gb" + }, + { + "slug": "sm-g8750-galaxy-s-lite-luxury-edition-duos-td-lte-cn", + "name": "SM-G8750 Galaxy S Lite Luxury Edition Duos TD-LTE CN", + "url": "/v1/smartphones/sm-g8750-galaxy-s-lite-luxury-edition-duos-td-lte-cn" + }, + { + "slug": "sm-g8850-galaxy-a9-star-duos-td-lte-cn", + "name": "SM-G8850 Galaxy A9 Star Duos TD-LTE CN", + "url": "/v1/smartphones/sm-g8850-galaxy-a9-star-duos-td-lte-cn" + }, + { + "slug": "sm-g8858-galaxy-a9-star-4g-duos-td-lte-cn", + "name": "SM-G8858 Galaxy A9 Star 4G+ Duos TD-LTE CN", + "url": "/v1/smartphones/sm-g8858-galaxy-a9-star-4g-duos-td-lte-cn" + }, + { + "slug": "sm-g885f-ds-galaxy-a8-star-duos-global-td-lte", + "name": "SM-G885F/DS Galaxy A8 Star Duos Global TD-LTE", + "url": "/v1/smartphones/sm-g885f-ds-galaxy-a8-star-duos-global-td-lte" + }, + { + "slug": "sm-g885s-galaxy-a9-star-duos-td-lte-kr", + "name": "SM-G885S Galaxy A9 Star Duos TD-LTE KR", + "url": "/v1/smartphones/sm-g885s-galaxy-a9-star-duos-td-lte-kr" + }, + { + "slug": "sm-g885y-ds-galaxy-a8-star-duos-td-lte-apac-galaxy-a9-star", + "name": "SM-G885Y/DS Galaxy A8 Star Duos TD-LTE APAC / Galaxy A9 Star", + "url": "/v1/smartphones/sm-g885y-ds-galaxy-a8-star-duos-td-lte-apac-galaxy-a9-star" + }, + { + "slug": "sm-g8870-galaxy-a8s-2018-standard-edition-duos-td-lte-cn-128gb", + "name": "SM-G8870 Galaxy A8s 2018 Standard Edition Duos TD-LTE CN 128GB", + "url": "/v1/smartphones/sm-g8870-galaxy-a8s-2018-standard-edition-duos-td-lte-cn-128gb" + }, + { + "slug": "sm-g887f-ds-galaxy-a9-pro-2018-duos-global-td-lte-128gb", + "name": "SM-G887F/DS Galaxy A9 Pro 2018 Duos Global TD-LTE 128GB", + "url": "/v1/smartphones/sm-g887f-ds-galaxy-a9-pro-2018-duos-global-td-lte-128gb" + }, + { + "slug": "sm-g887n-galaxy-a9-pro-2018-td-lte-kr-128gb", + "name": "SM-G887N Galaxy A9 Pro 2018 TD-LTE KR 128GB", + "url": "/v1/smartphones/sm-g887n-galaxy-a9-pro-2018-td-lte-kr-128gb" + }, + { + "slug": "sm-g889f-galaxy-xcover-fieldpro-global-dual-sim-td-lte", + "name": "SM-G889F Galaxy Xcover FieldPro Global Dual SIM TD-LTE", + "url": "/v1/smartphones/sm-g889f-galaxy-xcover-fieldpro-global-dual-sim-td-lte" + }, + { + "slug": "sm-g930k-galaxy-s7-td-lte", + "name": "SM-G930K Galaxy S7 TD-LTE", + "url": "/v1/smartphones/sm-g930k-galaxy-s7-td-lte" + }, + { + "slug": "sm-g930l-galaxy-s7-td-lte", + "name": "SM-G930L Galaxy S7 TD-LTE", + "url": "/v1/smartphones/sm-g930l-galaxy-s7-td-lte" + }, + { + "slug": "sm-g935k-galaxy-s7-edge-td-lte-128gb", + "name": "SM-G935K Galaxy S7 Edge TD-LTE 128GB", + "url": "/v1/smartphones/sm-g935k-galaxy-s7-edge-td-lte-128gb" + }, + { + "slug": "sm-g935l-galaxy-s7-edge-td-lte", + "name": "SM-G935L Galaxy S7 Edge TD-LTE", + "url": "/v1/smartphones/sm-g935l-galaxy-s7-edge-td-lte" + }, + { + "slug": "sm-g935l-galaxy-s7-edge-td-lte-128gb", + "name": "SM-G935L Galaxy S7 Edge TD-LTE 128GB", + "url": "/v1/smartphones/sm-g935l-galaxy-s7-edge-td-lte-128gb" + }, + { + "slug": "sm-g935s-galaxy-s7-edge-td-lte-128gb", + "name": "SM-G935S Galaxy S7 Edge TD-LTE 128GB", + "url": "/v1/smartphones/sm-g935s-galaxy-s7-edge-td-lte-128gb" + }, + { + "slug": "sm-g9600-ds-galaxy-s9-duos-td-lte-cn", + "name": "SM-G9600/DS Galaxy S9 Duos TD-LTE CN", + "url": "/v1/smartphones/sm-g9600-ds-galaxy-s9-duos-td-lte-cn" + }, + { + "slug": "sm-g9600-ds-galaxy-s9-duos-td-lte-cn-128gb", + "name": "SM-G9600/DS Galaxy S9 Duos TD-LTE CN 128GB", + "url": "/v1/smartphones/sm-g9600-ds-galaxy-s9-duos-td-lte-cn-128gb" + }, + { + "slug": "sm-g9608-ds-galaxy-s9-duos-4g-td-lte-cn", + "name": "SM-G9608/DS Galaxy S9 Duos 4G+ TD-LTE CN", + "url": "/v1/smartphones/sm-g9608-ds-galaxy-s9-duos-4g-td-lte-cn" + }, + { + "slug": "sm-g960d-galaxy-s9-td-lte-jp-sc-02k-sgh-n327", + "name": "SM-G960D Galaxy S9 TD-LTE JP SC-02K / SGH-N327", + "url": "/v1/smartphones/sm-g960d-galaxy-s9-td-lte-jp-sc-02k-sgh-n327" + }, + { + "slug": "sm-g960f-galaxy-s9-td-lte", + "name": "SM-G960F Galaxy S9 TD-LTE", + "url": "/v1/smartphones/sm-g960f-galaxy-s9-td-lte" + }, + { + "slug": "sm-g960f-ds-galaxy-s9-duos-td-lte-128gb", + "name": "SM-G960F/DS Galaxy S9 Duos TD-LTE 128GB", + "url": "/v1/smartphones/sm-g960f-ds-galaxy-s9-duos-td-lte-128gb" + }, + { + "slug": "sm-g960f-ds-galaxy-s9-duos-td-lte-256gb", + "name": "SM-G960F/DS Galaxy S9 Duos TD-LTE 256GB", + "url": "/v1/smartphones/sm-g960f-ds-galaxy-s9-duos-td-lte-256gb" + }, + { + "slug": "sm-g960j-galaxy-s9-wimax-2-scv38", + "name": "SM-G960J Galaxy S9 WiMAX 2+ SCV38", + "url": "/v1/smartphones/sm-g960j-galaxy-s9-wimax-2-scv38" + }, + { + "slug": "sm-g960n-galaxy-s9-td-lte", + "name": "SM-G960N Galaxy S9 TD-LTE", + "url": "/v1/smartphones/sm-g960n-galaxy-s9-td-lte" + }, + { + "slug": "sm-g960u-galaxy-s9-td-lte-us", + "name": "SM-G960U Galaxy S9 TD-LTE US", + "url": "/v1/smartphones/sm-g960u-galaxy-s9-td-lte-us" + }, + { + "slug": "sm-g960u1-galaxy-s9-td-lte-us", + "name": "SM-G960U1 Galaxy S9 TD-LTE US", + "url": "/v1/smartphones/sm-g960u1-galaxy-s9-td-lte-us" + }, + { + "slug": "sm-g960u1-galaxy-s9-td-lte-us-128gb", + "name": "SM-G960U1 Galaxy S9 TD-LTE US 128GB", + "url": "/v1/smartphones/sm-g960u1-galaxy-s9-td-lte-us-128gb" + }, + { + "slug": "sm-g960u1-galaxy-s9-td-lte-us-256gb", + "name": "SM-G960U1 Galaxy S9 TD-LTE US 256GB", + "url": "/v1/smartphones/sm-g960u1-galaxy-s9-td-lte-us-256gb" + }, + { + "slug": "sm-g960w-galaxy-s9-td-lte", + "name": "SM-G960W Galaxy S9 TD-LTE", + "url": "/v1/smartphones/sm-g960w-galaxy-s9-td-lte" + }, + { + "slug": "sm-g9650-ds-galaxy-s9-duos-td-lte-cn", + "name": "SM-G9650/DS Galaxy S9+ Duos TD-LTE CN", + "url": "/v1/smartphones/sm-g9650-ds-galaxy-s9-duos-td-lte-cn" + }, + { + "slug": "sm-g9650-ds-galaxy-s9-duos-td-lte-cn-128gb", + "name": "SM-G9650/DS Galaxy S9+ Duos TD-LTE CN 128GB", + "url": "/v1/smartphones/sm-g9650-ds-galaxy-s9-duos-td-lte-cn-128gb" + }, + { + "slug": "sm-g9650-ds-galaxy-s9-duos-td-lte-cn-256gb", + "name": "SM-G9650/DS Galaxy S9+ Duos TD-LTE CN 256GB", + "url": "/v1/smartphones/sm-g9650-ds-galaxy-s9-duos-td-lte-cn-256gb" + }, + { + "slug": "sm-g965d-galaxy-s9-td-lte-jp-sc-03k-sgh-n943", + "name": "SM-G965D Galaxy S9+ TD-LTE JP SC-03K / SGH-N943", + "url": "/v1/smartphones/sm-g965d-galaxy-s9-td-lte-jp-sc-03k-sgh-n943" + }, + { + "slug": "sm-g965f-galaxy-s9-td-lte-galaxy-s9-plus", + "name": "SM-G965F Galaxy S9+ TD-LTE / Galaxy S9 Plus", + "url": "/v1/smartphones/sm-g965f-galaxy-s9-td-lte-galaxy-s9-plus" + }, + { + "slug": "sm-g965f-ds-galaxy-s9-duos-td-lte-128gb", + "name": "SM-G965F/DS Galaxy S9+ Duos TD-LTE 128GB", + "url": "/v1/smartphones/sm-g965f-ds-galaxy-s9-duos-td-lte-128gb" + }, + { + "slug": "sm-g965f-ds-galaxy-s9-duos-td-lte-256gb", + "name": "SM-G965F/DS Galaxy S9+ Duos TD-LTE 256GB", + "url": "/v1/smartphones/sm-g965f-ds-galaxy-s9-duos-td-lte-256gb" + }, + { + "slug": "sm-g965f-ds-galaxy-s9-duos-td-lte-64gb", + "name": "SM-G965F/DS Galaxy S9+ Duos TD-LTE 64GB", + "url": "/v1/smartphones/sm-g965f-ds-galaxy-s9-duos-td-lte-64gb" + }, + { + "slug": "sm-g965j-galaxy-s9-wimax-2-scv39", + "name": "SM-G965J Galaxy S9+ WiMAX 2+ SCV39", + "url": "/v1/smartphones/sm-g965j-galaxy-s9-wimax-2-scv39" + }, + { + "slug": "sm-g965n-galaxy-s9-td-lte-256gb", + "name": "SM-G965N Galaxy S9+ TD-LTE 256GB", + "url": "/v1/smartphones/sm-g965n-galaxy-s9-td-lte-256gb" + }, + { + "slug": "sm-g965n-galaxy-s9-td-lte-64gb", + "name": "SM-G965N Galaxy S9+ TD-LTE 64GB", + "url": "/v1/smartphones/sm-g965n-galaxy-s9-td-lte-64gb" + }, + { + "slug": "sm-g965u1-galaxy-s9-td-lte-us", + "name": "SM-G965U1 Galaxy S9+ TD-LTE US", + "url": "/v1/smartphones/sm-g965u1-galaxy-s9-td-lte-us" + }, + { + "slug": "sm-g965u1-galaxy-s9-td-lte-us-128gb", + "name": "SM-G965U1 Galaxy S9+ TD-LTE US 128GB", + "url": "/v1/smartphones/sm-g965u1-galaxy-s9-td-lte-us-128gb" + }, + { + "slug": "sm-g965u1-galaxy-s9-td-lte-us-256gb", + "name": "SM-G965U1 Galaxy S9+ TD-LTE US 256GB", + "url": "/v1/smartphones/sm-g965u1-galaxy-s9-td-lte-us-256gb" + }, + { + "slug": "sm-g965w-galaxy-s9-td-lte", + "name": "SM-G965W Galaxy S9+ TD-LTE", + "url": "/v1/smartphones/sm-g965w-galaxy-s9-td-lte" + }, + { + "slug": "sm-g9700-ds-galaxy-s10e-dual-sim-td-lte-cn-128gb", + "name": "SM-G9700/DS Galaxy S10E Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/sm-g9700-ds-galaxy-s10e-dual-sim-td-lte-cn-128gb" + }, + { + "slug": "sm-g9708-ds-galaxy-s10e-4g-dual-sim-td-lte-cn-128gb", + "name": "SM-G9708/DS Galaxy S10E 4G+ Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/sm-g9708-ds-galaxy-s10e-4g-dual-sim-td-lte-cn-128gb" + }, + { + "slug": "sm-g970f-galaxy-s10e-global-td-lte-128gb", + "name": "SM-G970F Galaxy S10E Global TD-LTE 128GB", + "url": "/v1/smartphones/sm-g970f-galaxy-s10e-global-td-lte-128gb" + }, + { + "slug": "sm-g970f-ds-galaxy-s10e-global-dual-sim-td-lte-128gb", + "name": "SM-G970F/DS Galaxy S10E Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-g970f-ds-galaxy-s10e-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-g970f-ds-galaxy-s10e-global-dual-sim-td-lte-256gb", + "name": "SM-G970F/DS Galaxy S10E Global Dual SIM TD-LTE 256GB", + "url": "/v1/smartphones/sm-g970f-ds-galaxy-s10e-global-dual-sim-td-lte-256gb" + }, + { + "slug": "sm-g970n-galaxy-s10e-td-lte-kr-128gb", + "name": "SM-G970N Galaxy S10E TD-LTE KR 128GB", + "url": "/v1/smartphones/sm-g970n-galaxy-s10e-td-lte-kr-128gb" + }, + { + "slug": "sm-g970n-galaxy-s10e-td-lte-kr-256gb", + "name": "SM-G970N Galaxy S10E TD-LTE KR 256GB", + "url": "/v1/smartphones/sm-g970n-galaxy-s10e-td-lte-kr-256gb" + }, + { + "slug": "sm-g970u-galaxy-s10e-td-lte-us-128gb", + "name": "SM-G970U Galaxy S10E TD-LTE US 128GB", + "url": "/v1/smartphones/sm-g970u-galaxy-s10e-td-lte-us-128gb" + }, + { + "slug": "sm-g970u-galaxy-s10e-td-lte-us-256gb", + "name": "SM-G970U Galaxy S10E TD-LTE US 256GB", + "url": "/v1/smartphones/sm-g970u-galaxy-s10e-td-lte-us-256gb" + }, + { + "slug": "sm-g970u1-galaxy-s10e-td-lte-us-128gb", + "name": "SM-G970U1 Galaxy S10E TD-LTE US 128GB", + "url": "/v1/smartphones/sm-g970u1-galaxy-s10e-td-lte-us-128gb" + }, + { + "slug": "sm-g970u1-galaxy-s10e-td-lte-us-256gb", + "name": "SM-G970U1 Galaxy S10E TD-LTE US 256GB", + "url": "/v1/smartphones/sm-g970u1-galaxy-s10e-td-lte-us-256gb" + }, + { + "slug": "sm-g970w-galaxy-s10e-td-lte-ca-128gb", + "name": "SM-G970W Galaxy S10E TD-LTE CA 128GB", + "url": "/v1/smartphones/sm-g970w-galaxy-s10e-td-lte-ca-128gb" + }, + { + "slug": "sm-g970w-galaxy-s10e-td-lte-ca-256gb", + "name": "SM-G970W Galaxy S10E TD-LTE CA 256GB", + "url": "/v1/smartphones/sm-g970w-galaxy-s10e-td-lte-ca-256gb" + }, + { + "slug": "sm-g9730-ds-galaxy-s10-dual-sim-td-lte-cn-128gb", + "name": "SM-G9730/DS Galaxy S10 Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/sm-g9730-ds-galaxy-s10-dual-sim-td-lte-cn-128gb" + }, + { + "slug": "sm-g9730-ds-galaxy-s10-dual-sim-td-lte-cn-512gb", + "name": "SM-G9730/DS Galaxy S10 Dual SIM TD-LTE CN 512GB", + "url": "/v1/smartphones/sm-g9730-ds-galaxy-s10-dual-sim-td-lte-cn-512gb" + }, + { + "slug": "sm-g9738-ds-galaxy-s10-4g-dual-sim-td-lte-cn-128gb", + "name": "SM-G9738/DS Galaxy S10 4G+ Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/sm-g9738-ds-galaxy-s10-4g-dual-sim-td-lte-cn-128gb" + }, + { + "slug": "sm-g973c-galaxy-s10-td-lte-jp", + "name": "SM-G973C Galaxy S10 TD-LTE JP", + "url": "/v1/smartphones/sm-g973c-galaxy-s10-td-lte-jp" + }, + { + "slug": "sm-g973d-galaxy-s10-td-lte-jp-sc-03l-sgh-n794", + "name": "SM-G973D Galaxy S10 TD-LTE JP SC-03L / SGH-N794", + "url": "/v1/smartphones/sm-g973d-galaxy-s10-td-lte-jp-sc-03l-sgh-n794" + }, + { + "slug": "sm-g973f-galaxy-s10-global-td-lte-128gb", + "name": "SM-G973F Galaxy S10 Global TD-LTE 128GB", + "url": "/v1/smartphones/sm-g973f-galaxy-s10-global-td-lte-128gb" + }, + { + "slug": "sm-g973f-ds-galaxy-s10-global-dual-sim-td-lte-128gb", + "name": "SM-G973F/DS Galaxy S10 Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-g973f-ds-galaxy-s10-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-g973f-ds-galaxy-s10-global-dual-sim-td-lte-512gb", + "name": "SM-G973F/DS Galaxy S10 Global Dual SIM TD-LTE 512GB", + "url": "/v1/smartphones/sm-g973f-ds-galaxy-s10-global-dual-sim-td-lte-512gb" + }, + { + "slug": "sm-g973j-galaxy-s10-wimax-2-jp-scv41", + "name": "SM-G973J Galaxy S10 WiMAX 2+ JP SCV41", + "url": "/v1/smartphones/sm-g973j-galaxy-s10-wimax-2-jp-scv41" + }, + { + "slug": "sm-g973n-galaxy-s10-td-lte-kr-128gb", + "name": "SM-G973N Galaxy S10 TD-LTE KR 128GB", + "url": "/v1/smartphones/sm-g973n-galaxy-s10-td-lte-kr-128gb" + }, + { + "slug": "sm-g973n-galaxy-s10-td-lte-kr-512gb", + "name": "SM-G973N Galaxy S10 TD-LTE KR 512GB", + "url": "/v1/smartphones/sm-g973n-galaxy-s10-td-lte-kr-512gb" + }, + { + "slug": "sm-g973u-galaxy-s10-td-lte-us-128gb", + "name": "SM-G973U Galaxy S10 TD-LTE US 128GB", + "url": "/v1/smartphones/sm-g973u-galaxy-s10-td-lte-us-128gb" + }, + { + "slug": "sm-g973u-galaxy-s10-td-lte-us-512gb", + "name": "SM-G973U Galaxy S10 TD-LTE US 512GB", + "url": "/v1/smartphones/sm-g973u-galaxy-s10-td-lte-us-512gb" + }, + { + "slug": "sm-g973u1-galaxy-s10-td-lte-us-128gb", + "name": "SM-G973U1 Galaxy S10 TD-LTE US 128GB", + "url": "/v1/smartphones/sm-g973u1-galaxy-s10-td-lte-us-128gb" + }, + { + "slug": "sm-g973u1-galaxy-s10-td-lte-us-512gb", + "name": "SM-G973U1 Galaxy S10 TD-LTE US 512GB", + "url": "/v1/smartphones/sm-g973u1-galaxy-s10-td-lte-us-512gb" + }, + { + "slug": "sm-g973w-galaxy-s10-td-lte-ca-128gb", + "name": "SM-G973W Galaxy S10 TD-LTE CA 128GB", + "url": "/v1/smartphones/sm-g973w-galaxy-s10-td-lte-ca-128gb" + }, + { + "slug": "sm-g973w-galaxy-s10-td-lte-ca-512gb", + "name": "SM-G973W Galaxy S10 TD-LTE CA 512GB", + "url": "/v1/smartphones/sm-g973w-galaxy-s10-td-lte-ca-512gb" + }, + { + "slug": "sm-g9750-ds-galaxy-s10-dual-sim-td-lte-cn-128gb", + "name": "SM-G9750/DS Galaxy S10+ Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/sm-g9750-ds-galaxy-s10-dual-sim-td-lte-cn-128gb" + }, + { + "slug": "sm-g9750-ds-galaxy-s10-dual-sim-td-lte-cn-512gb", + "name": "SM-G9750/DS Galaxy S10+ Dual SIM TD-LTE CN 512GB", + "url": "/v1/smartphones/sm-g9750-ds-galaxy-s10-dual-sim-td-lte-cn-512gb" + }, + { + "slug": "sm-g9750-ds-galaxy-s10-performance-edition-ceramic-dual-sim-td-lte-cn-1tb", + "name": "SM-G9750/DS Galaxy S10+ Performance Edition Ceramic Dual SIM TD-LTE CN 1TB", + "url": "/v1/smartphones/sm-g9750-ds-galaxy-s10-performance-edition-ceramic-dual-sim-td-lte-cn-1tb" + }, + { + "slug": "sm-g9758-ds-galaxy-s10-dual-sim-td-lte-cn-128gb", + "name": "SM-G9758/DS Galaxy S10+ Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/sm-g9758-ds-galaxy-s10-dual-sim-td-lte-cn-128gb" + }, + { + "slug": "sm-g975d-galaxy-s10-olympic-games-edition-td-lte-jp-128gb-sc-05l", + "name": "SM-G975D Galaxy S10+ Olympic Games Edition TD-LTE JP 128GB SC-05L", + "url": "/v1/smartphones/sm-g975d-galaxy-s10-olympic-games-edition-td-lte-jp-128gb-sc-05l" + }, + { + "slug": "sm-g975d-galaxy-s10-td-lte-jp-128gb-sc-04l-sgh-n936", + "name": "SM-G975D Galaxy S10+ TD-LTE JP 128GB SC-04L / SGH-N936", + "url": "/v1/smartphones/sm-g975d-galaxy-s10-td-lte-jp-128gb-sc-04l-sgh-n936" + }, + { + "slug": "sm-g975f-galaxy-s10-global-td-lte-128gb", + "name": "SM-G975F Galaxy S10+ Global TD-LTE 128GB", + "url": "/v1/smartphones/sm-g975f-galaxy-s10-global-td-lte-128gb" + }, + { + "slug": "sm-g975f-ds-galaxy-s10-ceramic-edition-global-dual-sim-td-lte-512gb", + "name": "SM-G975F/DS Galaxy S10+ Ceramic Edition Global Dual SIM TD-LTE 512GB", + "url": "/v1/smartphones/sm-g975f-ds-galaxy-s10-ceramic-edition-global-dual-sim-td-lte-512gb" + }, + { + "slug": "sm-g975f-ds-galaxy-s10-global-dual-sim-td-lte-128gb", + "name": "SM-G975F/DS Galaxy S10+ Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-g975f-ds-galaxy-s10-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-g975f-ds-galaxy-s10-global-dual-sim-td-lte-512gb", + "name": "SM-G975F/DS Galaxy S10+ Global Dual SIM TD-LTE 512GB", + "url": "/v1/smartphones/sm-g975f-ds-galaxy-s10-global-dual-sim-td-lte-512gb" + }, + { + "slug": "sm-g975f-ds-galaxy-s10-performance-edition-ceramic-global-dual-sim-td-lte-1tb", + "name": "SM-G975F/DS Galaxy S10+ Performance Edition Ceramic Global Dual SIM TD-LTE 1TB", + "url": "/v1/smartphones/sm-g975f-ds-galaxy-s10-performance-edition-ceramic-global-dual-sim-td-lte-1tb" + }, + { + "slug": "sm-g975j-galaxy-s10-wimax-2-jp-scv42", + "name": "SM-G975J Galaxy S10+ WiMAX 2+ JP SCV42", + "url": "/v1/smartphones/sm-g975j-galaxy-s10-wimax-2-jp-scv42" + }, + { + "slug": "sm-g975n-galaxy-s10-td-lte-kr-128gb", + "name": "SM-G975N Galaxy S10+ TD-LTE KR 128GB", + "url": "/v1/smartphones/sm-g975n-galaxy-s10-td-lte-kr-128gb" + }, + { + "slug": "sm-g975n-galaxy-s10-td-lte-kr-1tb", + "name": "SM-G975N Galaxy S10+ TD-LTE KR 1TB", + "url": "/v1/smartphones/sm-g975n-galaxy-s10-td-lte-kr-1tb" + }, + { + "slug": "sm-g975n-galaxy-s10-td-lte-kr-512gb", + "name": "SM-G975N Galaxy S10+ TD-LTE KR 512GB", + "url": "/v1/smartphones/sm-g975n-galaxy-s10-td-lte-kr-512gb" + }, + { + "slug": "sm-g975u-galaxy-s10-performance-edition-ceramic-td-lte-us-1tb", + "name": "SM-G975U Galaxy S10+ Performance Edition Ceramic TD-LTE US 1TB", + "url": "/v1/smartphones/sm-g975u-galaxy-s10-performance-edition-ceramic-td-lte-us-1tb" + }, + { + "slug": "sm-g975u-galaxy-s10-td-lte-us-128gb", + "name": "SM-G975U Galaxy S10+ TD-LTE US 128GB", + "url": "/v1/smartphones/sm-g975u-galaxy-s10-td-lte-us-128gb" + }, + { + "slug": "sm-g975u-galaxy-s10-td-lte-us-512gb", + "name": "SM-G975U Galaxy S10+ TD-LTE US 512GB", + "url": "/v1/smartphones/sm-g975u-galaxy-s10-td-lte-us-512gb" + }, + { + "slug": "sm-g975u1-galaxy-s10-performance-edition-ceramic-td-lte-us-1tb", + "name": "SM-G975U1 Galaxy S10+ Performance Edition Ceramic TD-LTE US 1TB", + "url": "/v1/smartphones/sm-g975u1-galaxy-s10-performance-edition-ceramic-td-lte-us-1tb" + }, + { + "slug": "sm-g975u1-galaxy-s10-td-lte-us-128gb", + "name": "SM-G975U1 Galaxy S10+ TD-LTE US 128GB", + "url": "/v1/smartphones/sm-g975u1-galaxy-s10-td-lte-us-128gb" + }, + { + "slug": "sm-g975u1-galaxy-s10-td-lte-us-512gb", + "name": "SM-G975U1 Galaxy S10+ TD-LTE US 512GB", + "url": "/v1/smartphones/sm-g975u1-galaxy-s10-td-lte-us-512gb" + }, + { + "slug": "sm-g975w-galaxy-s10-performance-edition-ceramic-td-lte-ca-1tb", + "name": "SM-G975W Galaxy S10+ Performance Edition Ceramic TD-LTE CA 1TB", + "url": "/v1/smartphones/sm-g975w-galaxy-s10-performance-edition-ceramic-td-lte-ca-1tb" + }, + { + "slug": "sm-g975w-galaxy-s10-td-lte-ca-128gb", + "name": "SM-G975W Galaxy S10+ TD-LTE CA 128GB", + "url": "/v1/smartphones/sm-g975w-galaxy-s10-td-lte-ca-128gb" + }, + { + "slug": "sm-g975w-galaxy-s10-td-lte-ca-512gb", + "name": "SM-G975W Galaxy S10+ TD-LTE CA 512GB", + "url": "/v1/smartphones/sm-g975w-galaxy-s10-td-lte-ca-512gb" + }, + { + "slug": "sm-g977b-galaxy-s10-5g-global-td-lte-256gb", + "name": "SM-G977B Galaxy S10 5G Global TD-LTE 256GB", + "url": "/v1/smartphones/sm-g977b-galaxy-s10-5g-global-td-lte-256gb" + }, + { + "slug": "sm-g977d-galaxy-s10-5g-td-lte-jp-256gb", + "name": "SM-G977D Galaxy S10 5G TD-LTE JP 256GB", + "url": "/v1/smartphones/sm-g977d-galaxy-s10-5g-td-lte-jp-256gb" + }, + { + "slug": "sm-g977n-galaxy-s10-5g-td-lte-kr-256gb", + "name": "SM-G977N Galaxy S10 5G TD-LTE KR 256GB", + "url": "/v1/smartphones/sm-g977n-galaxy-s10-5g-td-lte-kr-256gb" + }, + { + "slug": "sm-g977n-galaxy-s10-5g-td-lte-kr-512gb", + "name": "SM-G977N Galaxy S10 5G TD-LTE KR 512GB", + "url": "/v1/smartphones/sm-g977n-galaxy-s10-5g-td-lte-kr-512gb" + }, + { + "slug": "sm-g977p-galaxy-s10-5g-td-lte-us-256gb", + "name": "SM-G977P Galaxy S10 5G TD-LTE US 256GB", + "url": "/v1/smartphones/sm-g977p-galaxy-s10-5g-td-lte-us-256gb" + }, + { + "slug": "sm-g977u-galaxy-s10-5g-td-lte-us-256gb-sm-g977t", + "name": "SM-G977U Galaxy S10 5G TD-LTE US 256GB / SM-G977T", + "url": "/v1/smartphones/sm-g977u-galaxy-s10-5g-td-lte-us-256gb-sm-g977t" + }, + { + "slug": "sm-g977u-galaxy-s10-5g-td-lte-us-256gb-sm-g977v", + "name": "SM-G977U Galaxy S10 5G TD-LTE US 256GB / SM-G977V", + "url": "/v1/smartphones/sm-g977u-galaxy-s10-5g-td-lte-us-256gb-sm-g977v" + }, + { + "slug": "sm-g977u-galaxy-s10-5g-td-lte-us-512gb-sm-g977v", + "name": "SM-G977U Galaxy S10 5G TD-LTE US 512GB / SM-G977V", + "url": "/v1/smartphones/sm-g977u-galaxy-s10-5g-td-lte-us-512gb-sm-g977v" + }, + { + "slug": "sm-g980f-galaxy-s20-global-td-lte-128gb", + "name": "SM-G980F Galaxy S20 Global TD-LTE 128GB", + "url": "/v1/smartphones/sm-g980f-galaxy-s20-global-td-lte-128gb" + }, + { + "slug": "sm-g980f-ds-galaxy-s20-global-dual-sim-td-lte-128gb-galaxy-s11", + "name": "SM-G980F/DS Galaxy S20 Global Dual SIM TD-LTE 128GB / Galaxy S11", + "url": "/v1/smartphones/sm-g980f-ds-galaxy-s20-global-dual-sim-td-lte-128gb-galaxy-s11" + }, + { + "slug": "sm-g9810-galaxy-s20-5g-dual-sim-td-lte-cn-hk-128gb", + "name": "SM-G9810 Galaxy S20 5G Dual SIM TD-LTE CN HK 128GB", + "url": "/v1/smartphones/sm-g9810-galaxy-s20-5g-dual-sim-td-lte-cn-hk-128gb" + }, + { + "slug": "sm-g981b-galaxy-s20-5g-global-td-lte-128gb", + "name": "SM-G981B Galaxy S20 5G Global TD-LTE 128GB", + "url": "/v1/smartphones/sm-g981b-galaxy-s20-5g-global-td-lte-128gb" + }, + { + "slug": "sm-g981b-ds-galaxy-s20-5g-global-dual-sim-td-lte-128gb", + "name": "SM-G981B/DS Galaxy S20 5G Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-g981b-ds-galaxy-s20-5g-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-g981d-galaxy-s20-5g-td-lte-jp-128gb-sc-51a-sgh-n410", + "name": "SM-G981D Galaxy S20 5G TD-LTE JP 128GB SC-51A / SGH-N410", + "url": "/v1/smartphones/sm-g981d-galaxy-s20-5g-td-lte-jp-128gb-sc-51a-sgh-n410" + }, + { + "slug": "sm-g981j-galaxy-s20-5g-td-lte-jp-128gb-scg01", + "name": "SM-G981J Galaxy S20 5G TD-LTE JP 128GB SCG01", + "url": "/v1/smartphones/sm-g981j-galaxy-s20-5g-td-lte-jp-128gb-scg01" + }, + { + "slug": "sm-g981n-galaxy-s20-5g-td-lte-kr-128gb", + "name": "SM-G981N Galaxy S20 5G TD-LTE KR 128GB", + "url": "/v1/smartphones/sm-g981n-galaxy-s20-5g-td-lte-kr-128gb" + }, + { + "slug": "sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981a", + "name": "SM-G981U Galaxy S20 5G TD-LTE US 128GB / SM-G981A", + "url": "/v1/smartphones/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981a" + }, + { + "slug": "sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981p", + "name": "SM-G981U Galaxy S20 5G TD-LTE US 128GB / SM-G981P", + "url": "/v1/smartphones/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981p" + }, + { + "slug": "sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981r4", + "name": "SM-G981U Galaxy S20 5G TD-LTE US 128GB / SM-G981R4", + "url": "/v1/smartphones/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981r4" + }, + { + "slug": "sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981t", + "name": "SM-G981U Galaxy S20 5G TD-LTE US 128GB / SM-G981T", + "url": "/v1/smartphones/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981t" + }, + { + "slug": "sm-g981u-galaxy-s20-5g-uw-td-lte-us-128gb-sm-g981v", + "name": "SM-G981U Galaxy S20 5G UW TD-LTE US 128GB / SM-G981V", + "url": "/v1/smartphones/sm-g981u-galaxy-s20-5g-uw-td-lte-us-128gb-sm-g981v" + }, + { + "slug": "sm-g981u1-galaxy-s20-5g-td-lte-us-128gb", + "name": "SM-G981U1 Galaxy S20 5G TD-LTE US 128GB", + "url": "/v1/smartphones/sm-g981u1-galaxy-s20-5g-td-lte-us-128gb" + }, + { + "slug": "sm-g981w-galaxy-s20-5g-td-lte-ca-128gb", + "name": "SM-G981W Galaxy S20 5G TD-LTE CA 128GB", + "url": "/v1/smartphones/sm-g981w-galaxy-s20-5g-td-lte-ca-128gb" + }, + { + "slug": "sm-g985f-galaxy-s20-global-td-lte-128gb", + "name": "SM-G985F Galaxy S20+ Global TD-LTE 128GB", + "url": "/v1/smartphones/sm-g985f-galaxy-s20-global-td-lte-128gb" + }, + { + "slug": "sm-g985f-ds-galaxy-s20-bts-edition-global-dual-sim-td-lte-128gb", + "name": "SM-G985F/DS Galaxy S20+ BTS Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-g985f-ds-galaxy-s20-bts-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-g985f-ds-galaxy-s20-global-dual-sim-td-lte-128gb-galaxy-s11", + "name": "SM-G985F/DS Galaxy S20+ Global Dual SIM TD-LTE 128GB / Galaxy S11+", + "url": "/v1/smartphones/sm-g985f-ds-galaxy-s20-global-dual-sim-td-lte-128gb-galaxy-s11" + }, + { + "slug": "sm-g9860-galaxy-s20-5g-dual-sim-td-lte-cn-hk-128gb", + "name": "SM-G9860 Galaxy S20+ 5G Dual SIM TD-LTE CN HK 128GB", + "url": "/v1/smartphones/sm-g9860-galaxy-s20-5g-dual-sim-td-lte-cn-hk-128gb" + }, + { + "slug": "sm-g986b-galaxy-s20-5g-global-td-lte-128gb", + "name": "SM-G986B Galaxy S20+ 5G Global TD-LTE 128GB", + "url": "/v1/smartphones/sm-g986b-galaxy-s20-5g-global-td-lte-128gb" + }, + { + "slug": "sm-g986b-ds-bts-edition-galaxy-s20-5g-global-dual-sim-td-lte-128gb", + "name": "SM-G986B/DS BTS Edition Galaxy S20+ 5G Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-g986b-ds-bts-edition-galaxy-s20-5g-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-g986b-ds-galaxy-s20-5g-global-dual-sim-td-lte-128gb", + "name": "SM-G986B/DS Galaxy S20+ 5G Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-g986b-ds-galaxy-s20-5g-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-g986ds-galaxy-s20-5g-uw-olympic-games-edition-td-lte-jp-128gb-sc-52a", + "name": "SM-G986DS Galaxy S20+ 5G UW Olympic Games Edition TD-LTE JP 128GB SC-52A", + "url": "/v1/smartphones/sm-g986ds-galaxy-s20-5g-uw-olympic-games-edition-td-lte-jp-128gb-sc-52a" + }, + { + "slug": "sm-g986ds-galaxy-s20-5g-uw-td-lte-jp-128gb-sc-52a-sgh-n805", + "name": "SM-G986DS Galaxy S20+ 5G UW TD-LTE JP 128GB SC-52A / SGH-N805", + "url": "/v1/smartphones/sm-g986ds-galaxy-s20-5g-uw-td-lte-jp-128gb-sc-52a-sgh-n805" + }, + { + "slug": "sm-g986j-galaxy-s20-5g-bts-edition-td-lte-jp-128gb-scg02", + "name": "SM-G986J Galaxy S20+ 5G BTS Edition TD-LTE JP 128GB SCG02", + "url": "/v1/smartphones/sm-g986j-galaxy-s20-5g-bts-edition-td-lte-jp-128gb-scg02" + }, + { + "slug": "sm-g986j-galaxy-s20-5g-td-lte-jp-128gb-scg02", + "name": "SM-G986J Galaxy S20+ 5G TD-LTE JP 128GB SCG02", + "url": "/v1/smartphones/sm-g986j-galaxy-s20-5g-td-lte-jp-128gb-scg02" + }, + { + "slug": "sm-g986n-galaxy-s20-5g-bts-edition-td-lte-kr-256gb", + "name": "SM-G986N Galaxy S20+ 5G BTS Edition TD-LTE KR 256GB", + "url": "/v1/smartphones/sm-g986n-galaxy-s20-5g-bts-edition-td-lte-kr-256gb" + }, + { + "slug": "sm-g986n-galaxy-s20-5g-td-lte-kr-256gb", + "name": "SM-G986N Galaxy S20+ 5G TD-LTE KR 256GB", + "url": "/v1/smartphones/sm-g986n-galaxy-s20-5g-td-lte-kr-256gb" + }, + { + "slug": "sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986a", + "name": "SM-G986U Galaxy S20+ 5G TD-LTE US 128GB / SM-G986A", + "url": "/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986a" + }, + { + "slug": "sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986p", + "name": "SM-G986U Galaxy S20+ 5G TD-LTE US 128GB / SM-G986P", + "url": "/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986p" + }, + { + "slug": "sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986r4", + "name": "SM-G986U Galaxy S20+ 5G TD-LTE US 128GB / SM-G986R4", + "url": "/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986r4" + }, + { + "slug": "sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986t", + "name": "SM-G986U Galaxy S20+ 5G TD-LTE US 128GB / SM-G986T", + "url": "/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986t" + }, + { + "slug": "sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986a", + "name": "SM-G986U Galaxy S20+ 5G TD-LTE US 512GB / SM-G986A", + "url": "/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986a" + }, + { + "slug": "sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986r4", + "name": "SM-G986U Galaxy S20+ 5G TD-LTE US 512GB / SM-G986R4", + "url": "/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986r4" + }, + { + "slug": "sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986t", + "name": "SM-G986U Galaxy S20+ 5G TD-LTE US 512GB / SM-G986T", + "url": "/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986t" + }, + { + "slug": "sm-g986u-galaxy-s20-uw-5g-td-lte-us-128gb-sm-g986v", + "name": "SM-G986U Galaxy S20+ UW 5G TD-LTE US 128GB / SM-G986V", + "url": "/v1/smartphones/sm-g986u-galaxy-s20-uw-5g-td-lte-us-128gb-sm-g986v" + }, + { + "slug": "sm-g986u-galaxy-s20-uw-5g-td-lte-us-512gb-sm-g986v", + "name": "SM-G986U Galaxy S20+ UW 5G TD-LTE US 512GB / SM-G986V", + "url": "/v1/smartphones/sm-g986u-galaxy-s20-uw-5g-td-lte-us-512gb-sm-g986v" + }, + { + "slug": "sm-g986u1-galaxy-s20-5g-bts-edition-td-lte-us-128gb", + "name": "SM-G986U1 Galaxy S20+ 5G BTS Edition TD-LTE US 128GB", + "url": "/v1/smartphones/sm-g986u1-galaxy-s20-5g-bts-edition-td-lte-us-128gb" + }, + { + "slug": "sm-g986u1-galaxy-s20-5g-td-lte-us-128gb", + "name": "SM-G986U1 Galaxy S20+ 5G TD-LTE US 128GB", + "url": "/v1/smartphones/sm-g986u1-galaxy-s20-5g-td-lte-us-128gb" + }, + { + "slug": "sm-g986u1-galaxy-s20-5g-td-lte-us-512gb", + "name": "SM-G986U1 Galaxy S20+ 5G TD-LTE US 512GB", + "url": "/v1/smartphones/sm-g986u1-galaxy-s20-5g-td-lte-us-512gb" + }, + { + "slug": "sm-g986w-galaxy-s20-5g-td-lte-ca-128gb", + "name": "SM-G986W Galaxy S20+ 5G TD-LTE CA 128GB", + "url": "/v1/smartphones/sm-g986w-galaxy-s20-5g-td-lte-ca-128gb" + }, + { + "slug": "sm-g9880-galaxy-s20-ultra-5g-dual-sim-td-lte-cn-hk-256gb", + "name": "SM-G9880 Galaxy S20 Ultra 5G Dual SIM TD-LTE CN HK 256GB", + "url": "/v1/smartphones/sm-g9880-galaxy-s20-ultra-5g-dual-sim-td-lte-cn-hk-256gb" + }, + { + "slug": "sm-g9880-galaxy-s20-ultra-5g-dual-sim-td-lte-cn-hk-512gb", + "name": "SM-G9880 Galaxy S20 Ultra 5G Dual SIM TD-LTE CN HK 512GB", + "url": "/v1/smartphones/sm-g9880-galaxy-s20-ultra-5g-dual-sim-td-lte-cn-hk-512gb" + }, + { + "slug": "sm-g988b-ds-galaxy-s20-ultra-5g-global-dual-sim-td-lte-128gb", + "name": "SM-G988B/DS Galaxy S20 Ultra 5G Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-g988b-ds-galaxy-s20-ultra-5g-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-g988b-ds-galaxy-s20-ultra-5g-global-dual-sim-td-lte-512gb", + "name": "SM-G988B/DS Galaxy S20 Ultra 5G Global Dual SIM TD-LTE 512GB", + "url": "/v1/smartphones/sm-g988b-ds-galaxy-s20-ultra-5g-global-dual-sim-td-lte-512gb" + }, + { + "slug": "sm-g988n-galaxy-s20-ultra-5g-td-lte-kr-256gb", + "name": "SM-G988N Galaxy S20 Ultra 5G TD-LTE KR 256GB", + "url": "/v1/smartphones/sm-g988n-galaxy-s20-ultra-5g-td-lte-kr-256gb" + }, + { + "slug": "sm-g988n-galaxy-s20-ultra-5g-td-lte-kr-512gb", + "name": "SM-G988N Galaxy S20 Ultra 5G TD-LTE KR 512GB", + "url": "/v1/smartphones/sm-g988n-galaxy-s20-ultra-5g-td-lte-kr-512gb" + }, + { + "slug": "sm-g988q-galaxy-s20-ultra-5g-td-lte-jp-128gb-scg03", + "name": "SM-G988Q Galaxy S20 Ultra 5G TD-LTE JP 128GB SCG03", + "url": "/v1/smartphones/sm-g988q-galaxy-s20-ultra-5g-td-lte-jp-128gb-scg03" + }, + { + "slug": "sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988a", + "name": "SM-G988U Galaxy S20 Ultra 5G TD-LTE US 128GB / SM-G988A", + "url": "/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988a" + }, + { + "slug": "sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988p", + "name": "SM-G988U Galaxy S20 Ultra 5G TD-LTE US 128GB / SM-G988P", + "url": "/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988p" + }, + { + "slug": "sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988r4", + "name": "SM-G988U Galaxy S20 Ultra 5G TD-LTE US 128GB / SM-G988R4", + "url": "/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988r4" + }, + { + "slug": "sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988a", + "name": "SM-G988U Galaxy S20 Ultra 5G TD-LTE US 512GB / SM-G988A", + "url": "/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988a" + }, + { + "slug": "sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988p", + "name": "SM-G988U Galaxy S20 Ultra 5G TD-LTE US 512GB / SM-G988P", + "url": "/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988p" + }, + { + "slug": "sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988r4", + "name": "SM-G988U Galaxy S20 Ultra 5G TD-LTE US 512GB / SM-G988R4", + "url": "/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988r4" + }, + { + "slug": "sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-128gb-sm-g988t", + "name": "SM-G988U Galaxy S20 Ultra 5G UW TD-LTE US 128GB / SM-G988T", + "url": "/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-128gb-sm-g988t" + }, + { + "slug": "sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-128gb-sm-g988v", + "name": "SM-G988U Galaxy S20 Ultra 5G UW TD-LTE US 128GB / SM-G988V", + "url": "/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-128gb-sm-g988v" + }, + { + "slug": "sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-512gb-sm-g988t", + "name": "SM-G988U Galaxy S20 Ultra 5G UW TD-LTE US 512GB / SM-G988T", + "url": "/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-512gb-sm-g988t" + }, + { + "slug": "sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-512gb-sm-g988v", + "name": "SM-G988U Galaxy S20 Ultra 5G UW TD-LTE US 512GB / SM-G988V", + "url": "/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-512gb-sm-g988v" + }, + { + "slug": "sm-g988u1-galaxy-s20-ultra-5g-td-lte-us-128gb", + "name": "SM-G988U1 Galaxy S20 Ultra 5G TD-LTE US 128GB", + "url": "/v1/smartphones/sm-g988u1-galaxy-s20-ultra-5g-td-lte-us-128gb" + }, + { + "slug": "sm-g988u1-galaxy-s20-ultra-5g-td-lte-us-512gb", + "name": "SM-G988U1 Galaxy S20 Ultra 5G TD-LTE US 512GB", + "url": "/v1/smartphones/sm-g988u1-galaxy-s20-ultra-5g-td-lte-us-512gb" + }, + { + "slug": "sm-g988w-galaxy-s20-ultra-5g-td-lte-ca-128gb", + "name": "SM-G988W Galaxy S20 Ultra 5G TD-LTE CA 128GB", + "url": "/v1/smartphones/sm-g988w-galaxy-s20-ultra-5g-td-lte-ca-128gb" + }, + { + "slug": "sm-g988w-galaxy-s20-ultra-5g-td-lte-ca-512gb", + "name": "SM-G988W Galaxy S20 Ultra 5G TD-LTE CA 512GB", + "url": "/v1/smartphones/sm-g988w-galaxy-s20-ultra-5g-td-lte-ca-512gb" + }, + { + "slug": "sm-g9900-galaxy-s21-fe-5g-dual-sim-td-lte-cn-tw-hk-128gb", + "name": "SM-G9900 Galaxy S21 FE 5G Dual SIM TD-LTE CN TW HK 128GB", + "url": "/v1/smartphones/sm-g9900-galaxy-s21-fe-5g-dual-sim-td-lte-cn-tw-hk-128gb" + }, + { + "slug": "sm-g9900-galaxy-s21-fe-5g-dual-sim-td-lte-cn-tw-hk-256gb", + "name": "SM-G9900 Galaxy S21 FE 5G Dual SIM TD-LTE CN TW HK 256GB", + "url": "/v1/smartphones/sm-g9900-galaxy-s21-fe-5g-dual-sim-td-lte-cn-tw-hk-256gb" + }, + { + "slug": "sm-g990b-ds-galaxy-s21-fe-5g-global-dual-sim-td-lte-128gb-sm-g990b2-ds", + "name": "SM-G990B/DS Galaxy S21 FE 5G Global Dual SIM TD-LTE 128GB / SM-G990B2/DS", + "url": "/v1/smartphones/sm-g990b-ds-galaxy-s21-fe-5g-global-dual-sim-td-lte-128gb-sm-g990b2-ds" + }, + { + "slug": "sm-g990b-ds-galaxy-s21-fe-5g-global-dual-sim-td-lte-256gb-sm-g990b2-ds", + "name": "SM-G990B/DS Galaxy S21 FE 5G Global Dual SIM TD-LTE 256GB / SM-G990B2/DS", + "url": "/v1/smartphones/sm-g990b-ds-galaxy-s21-fe-5g-global-dual-sim-td-lte-256gb-sm-g990b2-ds" + }, + { + "slug": "sm-g990e-galaxy-s21-fe-5g-td-lte-apac-mea-128gb", + "name": "SM-G990E Galaxy S21 FE 5G TD-LTE APAC MEA 128GB", + "url": "/v1/smartphones/sm-g990e-galaxy-s21-fe-5g-td-lte-apac-mea-128gb" + }, + { + "slug": "sm-g990e-ds-galaxy-s21-fe-5g-dual-sim-td-lte-apac-mea-128gb", + "name": "SM-G990E/DS Galaxy S21 FE 5G Dual SIM TD-LTE APAC MEA 128GB", + "url": "/v1/smartphones/sm-g990e-ds-galaxy-s21-fe-5g-dual-sim-td-lte-apac-mea-128gb" + }, + { + "slug": "sm-g990e-ds-galaxy-s21-fe-5g-dual-sim-td-lte-apac-mea-256gb", + "name": "SM-G990E/DS Galaxy S21 FE 5G Dual SIM TD-LTE APAC MEA 256GB", + "url": "/v1/smartphones/sm-g990e-ds-galaxy-s21-fe-5g-dual-sim-td-lte-apac-mea-256gb" + }, + { + "slug": "sm-g990n-galaxy-s21-fe-5g-uw-td-lte-kr-128gb", + "name": "SM-G990N Galaxy S21 FE 5G UW TD-LTE KR 128GB", + "url": "/v1/smartphones/sm-g990n-galaxy-s21-fe-5g-uw-td-lte-kr-128gb" + }, + { + "slug": "sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990a-sm-g990u2", + "name": "SM-G990U Galaxy S21 FE 5G UW TD-LTE US 128GB / SM-G990A / SM-G990U2", + "url": "/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990a-sm-g990u2" + }, + { + "slug": "sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990r4-sm-g990u2", + "name": "SM-G990U Galaxy S21 FE 5G UW TD-LTE US 128GB / SM-G990R4 / SM-G990U2", + "url": "/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990r4-sm-g990u2" + }, + { + "slug": "sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990t-sm-g990u2", + "name": "SM-G990U Galaxy S21 FE 5G UW TD-LTE US 128GB / SM-G990T / SM-G990U2", + "url": "/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990t-sm-g990u2" + }, + { + "slug": "sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990v-sm-g990u2", + "name": "SM-G990U Galaxy S21 FE 5G UW TD-LTE US 128GB / SM-G990V / SM-G990U2", + "url": "/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990v-sm-g990u2" + }, + { + "slug": "sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990a-sm-g990u2", + "name": "SM-G990U Galaxy S21 FE 5G UW TD-LTE US 256GB / SM-G990A / SM-G990U2", + "url": "/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990a-sm-g990u2" + }, + { + "slug": "sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990r4-sm-g990u2", + "name": "SM-G990U Galaxy S21 FE 5G UW TD-LTE US 256GB / SM-G990R4 / SM-G990U2", + "url": "/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990r4-sm-g990u2" + }, + { + "slug": "sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990t-sm-g990u2", + "name": "SM-G990U Galaxy S21 FE 5G UW TD-LTE US 256GB / SM-G990T / SM-G990U2", + "url": "/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990t-sm-g990u2" + }, + { + "slug": "sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990v-sm-g990u2", + "name": "SM-G990U Galaxy S21 FE 5G UW TD-LTE US 256GB / SM-G990V / SM-G990U2", + "url": "/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990v-sm-g990u2" + }, + { + "slug": "sm-g990u1-galaxy-s21-fe-5g-uw-dual-sim-td-lte-us-128gb-sm-g990u3-ds", + "name": "SM-G990U1 Galaxy S21 FE 5G UW Dual SIM TD-LTE US 128GB / SM-G990U3/DS", + "url": "/v1/smartphones/sm-g990u1-galaxy-s21-fe-5g-uw-dual-sim-td-lte-us-128gb-sm-g990u3-ds" + }, + { + "slug": "sm-g990u1-galaxy-s21-fe-5g-uw-dual-sim-td-lte-us-256gb-sm-g990u3-ds", + "name": "SM-G990U1 Galaxy S21 FE 5G UW Dual SIM TD-LTE US 256GB / SM-G990U3/DS", + "url": "/v1/smartphones/sm-g990u1-galaxy-s21-fe-5g-uw-dual-sim-td-lte-us-256gb-sm-g990u3-ds" + }, + { + "slug": "sm-g990w-galaxy-s21-fe-5g-td-lte-ca-128gb-sm-g990w2", + "name": "SM-G990W Galaxy S21 FE 5G TD-LTE CA 128GB / SM-G990W2", + "url": "/v1/smartphones/sm-g990w-galaxy-s21-fe-5g-td-lte-ca-128gb-sm-g990w2" + }, + { + "slug": "sm-g990w-galaxy-s21-fe-5g-td-lte-ca-256gb-sm-g990w2", + "name": "SM-G990W Galaxy S21 FE 5G TD-LTE CA 256GB / SM-G990W2", + "url": "/v1/smartphones/sm-g990w-galaxy-s21-fe-5g-td-lte-ca-256gb-sm-g990w2" + }, + { + "slug": "sm-g9910-galaxy-s21-5g-dual-sim-td-lte-cn-hk-128gb", + "name": "SM-G9910 Galaxy S21 5G Dual SIM TD-LTE CN HK 128GB", + "url": "/v1/smartphones/sm-g9910-galaxy-s21-5g-dual-sim-td-lte-cn-hk-128gb" + }, + { + "slug": "sm-g9910-galaxy-s21-5g-dual-sim-td-lte-cn-hk-256gb", + "name": "SM-G9910 Galaxy S21 5G Dual SIM TD-LTE CN HK 256GB", + "url": "/v1/smartphones/sm-g9910-galaxy-s21-5g-dual-sim-td-lte-cn-hk-256gb" + }, + { + "slug": "sm-g991b-ds-galaxy-s21-5g-global-dual-sim-td-lte-128gb", + "name": "SM-G991B/DS Galaxy S21 5G Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-g991b-ds-galaxy-s21-5g-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-g991b-ds-galaxy-s21-5g-global-dual-sim-td-lte-256gb", + "name": "SM-G991B/DS Galaxy S21 5G Global Dual SIM TD-LTE 256GB", + "url": "/v1/smartphones/sm-g991b-ds-galaxy-s21-5g-global-dual-sim-td-lte-256gb" + }, + { + "slug": "sm-g991d-galaxy-s21-5g-uw-olympic-games-edition-td-lte-jp-256gb-sc-51b", + "name": "SM-G991D Galaxy S21 5G UW Olympic Games Edition TD-LTE JP 256GB SC-51B", + "url": "/v1/smartphones/sm-g991d-galaxy-s21-5g-uw-olympic-games-edition-td-lte-jp-256gb-sc-51b" + }, + { + "slug": "sm-g991d-galaxy-s21-5g-uw-td-lte-jp-256gb-sc-51b-sgh-n649", + "name": "SM-G991D Galaxy S21 5G UW TD-LTE JP 256GB SC-51B / SGH-N649", + "url": "/v1/smartphones/sm-g991d-galaxy-s21-5g-uw-td-lte-jp-256gb-sc-51b-sgh-n649" + }, + { + "slug": "sm-g991j-galaxy-s21-5g-uw-td-lte-jp-256gb-scg09", + "name": "SM-G991J Galaxy S21 5G UW TD-LTE JP 256GB SCG09", + "url": "/v1/smartphones/sm-g991j-galaxy-s21-5g-uw-td-lte-jp-256gb-scg09" + }, + { + "slug": "sm-g991n-galaxy-s21-5g-td-lte-kr-256gb", + "name": "SM-G991N Galaxy S21 5G TD-LTE KR 256GB", + "url": "/v1/smartphones/sm-g991n-galaxy-s21-5g-td-lte-kr-256gb" + }, + { + "slug": "sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991a", + "name": "SM-G991U Galaxy S21 5G UW Dual SIM TD-LTE US 128GB / SM-G991A", + "url": "/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991a" + }, + { + "slug": "sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991p", + "name": "SM-G991U Galaxy S21 5G UW Dual SIM TD-LTE US 128GB / SM-G991P", + "url": "/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991p" + }, + { + "slug": "sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991r4", + "name": "SM-G991U Galaxy S21 5G UW Dual SIM TD-LTE US 128GB / SM-G991R4", + "url": "/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991r4" + }, + { + "slug": "sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991t", + "name": "SM-G991U Galaxy S21 5G UW Dual SIM TD-LTE US 128GB / SM-G991T", + "url": "/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991t" + }, + { + "slug": "sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991v", + "name": "SM-G991U Galaxy S21 5G UW Dual SIM TD-LTE US 128GB / SM-G991V", + "url": "/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991v" + }, + { + "slug": "sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991a", + "name": "SM-G991U Galaxy S21 5G UW Dual SIM TD-LTE US 256GB / SM-G991A", + "url": "/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991a" + }, + { + "slug": "sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991p", + "name": "SM-G991U Galaxy S21 5G UW Dual SIM TD-LTE US 256GB / SM-G991P", + "url": "/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991p" + }, + { + "slug": "sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991r4", + "name": "SM-G991U Galaxy S21 5G UW Dual SIM TD-LTE US 256GB / SM-G991R4", + "url": "/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991r4" + }, + { + "slug": "sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991t", + "name": "SM-G991U Galaxy S21 5G UW Dual SIM TD-LTE US 256GB / SM-G991T", + "url": "/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991t" + }, + { + "slug": "sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991v", + "name": "SM-G991U Galaxy S21 5G UW Dual SIM TD-LTE US 256GB / SM-G991V", + "url": "/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991v" + }, + { + "slug": "sm-g991u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb", + "name": "SM-G991U1 Galaxy S21 5G UW Dual SIM TD-LTE US 128GB", + "url": "/v1/smartphones/sm-g991u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb" + }, + { + "slug": "sm-g991u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb", + "name": "SM-G991U1 Galaxy S21 5G UW Dual SIM TD-LTE US 256GB", + "url": "/v1/smartphones/sm-g991u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb" + }, + { + "slug": "sm-g991w-galaxy-s21-5g-dual-sim-td-lte-ca-128gb", + "name": "SM-G991W Galaxy S21 5G Dual SIM TD-LTE CA 128GB", + "url": "/v1/smartphones/sm-g991w-galaxy-s21-5g-dual-sim-td-lte-ca-128gb" + }, + { + "slug": "sm-g991w-galaxy-s21-5g-dual-sim-td-lte-ca-256gb", + "name": "SM-G991W Galaxy S21 5G Dual SIM TD-LTE CA 256GB", + "url": "/v1/smartphones/sm-g991w-galaxy-s21-5g-dual-sim-td-lte-ca-256gb" + }, + { + "slug": "sm-g9960-galaxy-s21-5g-dual-sim-td-lte-cn-hk-128gb", + "name": "SM-G9960 Galaxy S21+ 5G Dual SIM TD-LTE CN HK 128GB", + "url": "/v1/smartphones/sm-g9960-galaxy-s21-5g-dual-sim-td-lte-cn-hk-128gb" + }, + { + "slug": "sm-g9960-galaxy-s21-5g-dual-sim-td-lte-cn-hk-256gb", + "name": "SM-G9960 Galaxy S21+ 5G Dual SIM TD-LTE CN HK 256GB", + "url": "/v1/smartphones/sm-g9960-galaxy-s21-5g-dual-sim-td-lte-cn-hk-256gb" + }, + { + "slug": "sm-g996b-ds-galaxy-s21-5g-global-dual-sim-td-lte-128gb", + "name": "SM-G996B/DS Galaxy S21+ 5G Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-g996b-ds-galaxy-s21-5g-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-g996b-ds-galaxy-s21-5g-global-dual-sim-td-lte-256gb", + "name": "SM-G996B/DS Galaxy S21+ 5G Global Dual SIM TD-LTE 256GB", + "url": "/v1/smartphones/sm-g996b-ds-galaxy-s21-5g-global-dual-sim-td-lte-256gb" + }, + { + "slug": "sm-g996j-galaxy-s21-5g-td-lte-jp-256gb-scg10", + "name": "SM-G996J Galaxy S21+ 5G TD-LTE JP 256GB SCG10", + "url": "/v1/smartphones/sm-g996j-galaxy-s21-5g-td-lte-jp-256gb-scg10" + }, + { + "slug": "sm-g996n-galaxy-s21-5g-uw-td-lte-kr-256gb", + "name": "SM-G996N Galaxy S21+ 5G UW TD-LTE KR 256GB", + "url": "/v1/smartphones/sm-g996n-galaxy-s21-5g-uw-td-lte-kr-256gb" + }, + { + "slug": "sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996a", + "name": "SM-G996U Galaxy S21+ 5G UW Dual SIM TD-LTE US 128GB / SM-G996A", + "url": "/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996a" + }, + { + "slug": "sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996p", + "name": "SM-G996U Galaxy S21+ 5G UW Dual SIM TD-LTE US 128GB / SM-G996P", + "url": "/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996p" + }, + { + "slug": "sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996r4", + "name": "SM-G996U Galaxy S21+ 5G UW Dual SIM TD-LTE US 128GB / SM-G996R4", + "url": "/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996r4" + }, + { + "slug": "sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996t", + "name": "SM-G996U Galaxy S21+ 5G UW Dual SIM TD-LTE US 128GB / SM-G996T", + "url": "/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996t" + }, + { + "slug": "sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996v", + "name": "SM-G996U Galaxy S21+ 5G UW Dual SIM TD-LTE US 128GB / SM-G996V", + "url": "/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996v" + }, + { + "slug": "sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996a", + "name": "SM-G996U Galaxy S21+ 5G UW Dual SIM TD-LTE US 256GB / SM-G996A", + "url": "/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996a" + }, + { + "slug": "sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996p", + "name": "SM-G996U Galaxy S21+ 5G UW Dual SIM TD-LTE US 256GB / SM-G996P", + "url": "/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996p" + }, + { + "slug": "sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996r4", + "name": "SM-G996U Galaxy S21+ 5G UW Dual SIM TD-LTE US 256GB / SM-G996R4", + "url": "/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996r4" + }, + { + "slug": "sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996t", + "name": "SM-G996U Galaxy S21+ 5G UW Dual SIM TD-LTE US 256GB / SM-G996T", + "url": "/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996t" + }, + { + "slug": "sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996v", + "name": "SM-G996U Galaxy S21+ 5G UW Dual SIM TD-LTE US 256GB / SM-G996V", + "url": "/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996v" + }, + { + "slug": "sm-g996u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb", + "name": "SM-G996U1 Galaxy S21+ 5G UW Dual SIM TD-LTE US 128GB", + "url": "/v1/smartphones/sm-g996u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb" + }, + { + "slug": "sm-g996u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb", + "name": "SM-G996U1 Galaxy S21+ 5G UW Dual SIM TD-LTE US 256GB", + "url": "/v1/smartphones/sm-g996u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb" + }, + { + "slug": "sm-g996w-galaxy-s21-5g-dual-sim-td-lte-ca-128gb", + "name": "SM-G996W Galaxy S21+ 5G Dual SIM TD-LTE CA 128GB", + "url": "/v1/smartphones/sm-g996w-galaxy-s21-5g-dual-sim-td-lte-ca-128gb" + }, + { + "slug": "sm-g996w-galaxy-s21-5g-dual-sim-td-lte-ca-256gb", + "name": "SM-G996W Galaxy S21+ 5G Dual SIM TD-LTE CA 256GB", + "url": "/v1/smartphones/sm-g996w-galaxy-s21-5g-dual-sim-td-lte-ca-256gb" + }, + { + "slug": "sm-g9980-galaxy-s21-ultra-5g-dual-sim-td-lte-cn-hk-256gb", + "name": "SM-G9980 Galaxy S21 Ultra 5G Dual SIM TD-LTE CN HK 256GB", + "url": "/v1/smartphones/sm-g9980-galaxy-s21-ultra-5g-dual-sim-td-lte-cn-hk-256gb" + }, + { + "slug": "sm-g9980-galaxy-s21-ultra-5g-dual-sim-td-lte-cn-hk-512gb", + "name": "SM-G9980 Galaxy S21 Ultra 5G Dual SIM TD-LTE CN HK 512GB", + "url": "/v1/smartphones/sm-g9980-galaxy-s21-ultra-5g-dual-sim-td-lte-cn-hk-512gb" + }, + { + "slug": "sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-128gb", + "name": "SM-G998B/DS Galaxy S21 Ultra 5G Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-256gb", + "name": "SM-G998B/DS Galaxy S21 Ultra 5G Global Dual SIM TD-LTE 256GB", + "url": "/v1/smartphones/sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-256gb" + }, + { + "slug": "sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-512gb", + "name": "SM-G998B/DS Galaxy S21 Ultra 5G Global Dual SIM TD-LTE 512GB", + "url": "/v1/smartphones/sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-512gb" + }, + { + "slug": "sm-g998d-galaxy-s21-ultra-5g-uw-td-lte-jp-256gb-sc-52b-sgh-n748", + "name": "SM-G998D Galaxy S21 Ultra 5G UW TD-LTE JP 256GB SC-52B / SGH-N748", + "url": "/v1/smartphones/sm-g998d-galaxy-s21-ultra-5g-uw-td-lte-jp-256gb-sc-52b-sgh-n748" + }, + { + "slug": "sm-g998n-galaxy-s21-ultra-5g-uw-td-lte-kr-256gb", + "name": "SM-G998N Galaxy S21 Ultra 5G UW TD-LTE KR 256GB", + "url": "/v1/smartphones/sm-g998n-galaxy-s21-ultra-5g-uw-td-lte-kr-256gb" + }, + { + "slug": "sm-g998n-galaxy-s21-ultra-5g-uw-td-lte-kr-512gb", + "name": "SM-G998N Galaxy S21 Ultra 5G UW TD-LTE KR 512GB", + "url": "/v1/smartphones/sm-g998n-galaxy-s21-ultra-5g-uw-td-lte-kr-512gb" + }, + { + "slug": "sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998a", + "name": "SM-G998U Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 128GB / SM-G998A", + "url": "/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998a" + }, + { + "slug": "sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998p", + "name": "SM-G998U Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 128GB / SM-G998P", + "url": "/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998p" + }, + { + "slug": "sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998r4", + "name": "SM-G998U Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 128GB / SM-G998R4", + "url": "/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998r4" + }, + { + "slug": "sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998t", + "name": "SM-G998U Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 128GB / SM-G998T", + "url": "/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998t" + }, + { + "slug": "sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998v", + "name": "SM-G998U Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 128GB / SM-G998V", + "url": "/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998v" + }, + { + "slug": "sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998a", + "name": "SM-G998U Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 256GB / SM-G998A", + "url": "/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998a" + }, + { + "slug": "sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998p", + "name": "SM-G998U Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 256GB / SM-G998P", + "url": "/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998p" + }, + { + "slug": "sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998r4", + "name": "SM-G998U Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 256GB / SM-G998R4", + "url": "/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998r4" + }, + { + "slug": "sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998t", + "name": "SM-G998U Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 256GB / SM-G998T", + "url": "/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998t" + }, + { + "slug": "sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998v", + "name": "SM-G998U Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 256GB / SM-G998V", + "url": "/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998v" + }, + { + "slug": "sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-g998v", + "name": "SM-G998U Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 512GB / SM-G998V", + "url": "/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-g998v" + }, + { + "slug": "sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb", + "name": "SM-G998U1 Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 128GB", + "url": "/v1/smartphones/sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb" + }, + { + "slug": "sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb", + "name": "SM-G998U1 Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 256GB", + "url": "/v1/smartphones/sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb" + }, + { + "slug": "sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-512gb", + "name": "SM-G998U1 Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 512GB", + "url": "/v1/smartphones/sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-512gb" + }, + { + "slug": "sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-128gb", + "name": "SM-G998W Galaxy S21 Ultra 5G Dual SIM TD-LTE CA 128GB", + "url": "/v1/smartphones/sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-128gb" + }, + { + "slug": "sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-256gb", + "name": "SM-G998W Galaxy S21 Ultra 5G Dual SIM TD-LTE CA 256GB", + "url": "/v1/smartphones/sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-256gb" + }, + { + "slug": "sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-512gb", + "name": "SM-G998W Galaxy S21 Ultra 5G Dual SIM TD-LTE CA 512GB", + "url": "/v1/smartphones/sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-512gb" + }, + { + "slug": "sm-j410f-ds-galaxy-j4-core-duos-td-lte-global", + "name": "SM-J410F/DS Galaxy J4 Core Duos TD-LTE Global", + "url": "/v1/smartphones/sm-j410f-ds-galaxy-j4-core-duos-td-lte-global" + }, + { + "slug": "sm-j410g-galaxy-j4-core-td-lte-latam", + "name": "SM-J410G Galaxy J4 Core TD-LTE LATAM", + "url": "/v1/smartphones/sm-j410g-galaxy-j4-core-td-lte-latam" + }, + { + "slug": "sm-j410g-ds-galaxy-j4-core-duos-td-lte-latam", + "name": "SM-J410G/DS Galaxy J4 Core Duos TD-LTE LATAM", + "url": "/v1/smartphones/sm-j410g-ds-galaxy-j4-core-duos-td-lte-latam" + }, + { + "slug": "sm-j415f-galaxy-j4-2018-td-lte-emea-32gb", + "name": "SM-J415F Galaxy J4+ 2018 TD-LTE EMEA 32GB", + "url": "/v1/smartphones/sm-j415f-galaxy-j4-2018-td-lte-emea-32gb" + }, + { + "slug": "sm-j415f-ds-galaxy-j4-2018-duos-global-td-lte-16gb", + "name": "SM-J415F/DS Galaxy J4+ 2018 Duos Global TD-LTE 16GB", + "url": "/v1/smartphones/sm-j415f-ds-galaxy-j4-2018-duos-global-td-lte-16gb" + }, + { + "slug": "sm-j415f-ds-galaxy-j4-2018-duos-global-td-lte-32gb", + "name": "SM-J415F/DS Galaxy J4+ 2018 Duos Global TD-LTE 32GB", + "url": "/v1/smartphones/sm-j415f-ds-galaxy-j4-2018-duos-global-td-lte-32gb" + }, + { + "slug": "sm-j415fn-galaxy-j4-2018-td-lte-emea-16gb", + "name": "SM-J415FN Galaxy J4+ 2018 TD-LTE EMEA 16GB", + "url": "/v1/smartphones/sm-j415fn-galaxy-j4-2018-td-lte-emea-16gb" + }, + { + "slug": "sm-j415fn-galaxy-j4-2018-td-lte-emea-32gb", + "name": "SM-J415FN Galaxy J4+ 2018 TD-LTE EMEA 32GB", + "url": "/v1/smartphones/sm-j415fn-galaxy-j4-2018-td-lte-emea-32gb" + }, + { + "slug": "sm-j415fn-ds-galaxy-j4-2018-duos-td-lte-emea-32gb", + "name": "SM-J415FN/DS Galaxy J4+ 2018 Duos TD-LTE EMEA 32GB", + "url": "/v1/smartphones/sm-j415fn-ds-galaxy-j4-2018-duos-td-lte-emea-32gb" + }, + { + "slug": "sm-j415g-galaxy-j4-2018-td-lte-latam-16gb", + "name": "SM-J415G Galaxy J4+ 2018 TD-LTE LATAM 16GB", + "url": "/v1/smartphones/sm-j415g-galaxy-j4-2018-td-lte-latam-16gb" + }, + { + "slug": "sm-j415g-galaxy-j4-2018-td-lte-latam-32gb", + "name": "SM-J415G Galaxy J4+ 2018 TD-LTE LATAM 32GB", + "url": "/v1/smartphones/sm-j415g-galaxy-j4-2018-td-lte-latam-32gb" + }, + { + "slug": "sm-j415g-ds-galaxy-j4-2018-duos-td-lte-latam-32gb", + "name": "SM-J415G/DS Galaxy J4+ 2018 Duos TD-LTE LATAM 32GB", + "url": "/v1/smartphones/sm-j415g-ds-galaxy-j4-2018-duos-td-lte-latam-32gb" + }, + { + "slug": "sm-j415gn-galaxy-j4-2018-td-lte-apac-16gb", + "name": "SM-J415GN Galaxy J4+ 2018 TD-LTE APAC 16GB", + "url": "/v1/smartphones/sm-j415gn-galaxy-j4-2018-td-lte-apac-16gb" + }, + { + "slug": "sm-j415gn-ds-galaxy-j4-2018-duos-td-lte-apac-16gb", + "name": "SM-J415GN/DS Galaxy J4+ 2018 Duos TD-LTE APAC 16GB", + "url": "/v1/smartphones/sm-j415gn-ds-galaxy-j4-2018-duos-td-lte-apac-16gb" + }, + { + "slug": "sm-j415gn-ds-galaxy-j4-2018-duos-td-lte-apac-32gb", + "name": "SM-J415GN/DS Galaxy J4+ 2018 Duos TD-LTE APAC 32GB", + "url": "/v1/smartphones/sm-j415gn-ds-galaxy-j4-2018-duos-td-lte-apac-32gb" + }, + { + "slug": "sm-j415n-galaxy-j4-plus-2018-td-lte-kr-32gb", + "name": "SM-J415N Galaxy J4 Plus 2018 TD-LTE KR 32GB", + "url": "/v1/smartphones/sm-j415n-galaxy-j4-plus-2018-td-lte-kr-32gb" + }, + { + "slug": "sm-j610f-ds-galaxy-j6-2018-duos-td-lte-emea-apac-32gb", + "name": "SM-J610F/DS Galaxy J6+ 2018 Duos TD-LTE EMEA APAC 32GB", + "url": "/v1/smartphones/sm-j610f-ds-galaxy-j6-2018-duos-td-lte-emea-apac-32gb" + }, + { + "slug": "sm-j610f-ds-galaxy-j6-2018-duos-td-lte-emea-apac-64gb", + "name": "SM-J610F/DS Galaxy J6+ 2018 Duos TD-LTE EMEA APAC 64GB", + "url": "/v1/smartphones/sm-j610f-ds-galaxy-j6-2018-duos-td-lte-emea-apac-64gb" + }, + { + "slug": "sm-j610fn-ds-galaxy-j6-2018-duos-td-lte-emea-32gb", + "name": "SM-J610FN/DS Galaxy J6+ 2018 Duos TD-LTE EMEA 32GB", + "url": "/v1/smartphones/sm-j610fn-ds-galaxy-j6-2018-duos-td-lte-emea-32gb" + }, + { + "slug": "sm-j610g-galaxy-j6-spark-2018-td-lte-latam-au-32gb", + "name": "SM-J610G Galaxy J6+ Spark 2018 TD-LTE LATAM AU 32GB", + "url": "/v1/smartphones/sm-j610g-galaxy-j6-spark-2018-td-lte-latam-au-32gb" + }, + { + "slug": "sm-j610g-ds-galaxy-j6-2018-duos-td-lte-apac-64gb", + "name": "SM-J610G/DS Galaxy J6+ 2018 Duos TD-LTE APAC 64GB", + "url": "/v1/smartphones/sm-j610g-ds-galaxy-j6-2018-duos-td-lte-apac-64gb" + }, + { + "slug": "sm-j610g-ds-galaxy-j6-2018-duos-td-lte-latam-apac-32gb", + "name": "SM-J610G/DS Galaxy J6+ 2018 Duos TD-LTE LATAM APAC 32GB", + "url": "/v1/smartphones/sm-j610g-ds-galaxy-j6-2018-duos-td-lte-latam-apac-32gb" + }, + { + "slug": "sm-j810g-ds-galaxy-on8-2018-duos-td-lte-in-64gb-galaxy-j8-2018", + "name": "SM-J810G/DS Galaxy On8 2018 Duos TD-LTE IN 64GB / Galaxy J8 2018", + "url": "/v1/smartphones/sm-j810g-ds-galaxy-on8-2018-duos-td-lte-in-64gb-galaxy-j8-2018" + }, + { + "slug": "sm-j810m-galaxy-j8-2018-td-lte-latam-32gb", + "name": "SM-J810M Galaxy J8 2018 TD-LTE LATAM 32GB", + "url": "/v1/smartphones/sm-j810m-galaxy-j8-2018-td-lte-latam-32gb" + }, + { + "slug": "sm-j810m-galaxy-j8-2018-td-lte-latam-64gb", + "name": "SM-J810M Galaxy J8 2018 TD-LTE LATAM 64GB", + "url": "/v1/smartphones/sm-j810m-galaxy-j8-2018-td-lte-latam-64gb" + }, + { + "slug": "sm-j810m-ds-galaxy-j8-2018-duos-td-lte-latam-32gb", + "name": "SM-J810M/DS Galaxy J8 2018 Duos TD-LTE LATAM 32GB", + "url": "/v1/smartphones/sm-j810m-ds-galaxy-j8-2018-duos-td-lte-latam-32gb" + }, + { + "slug": "sm-j810m-ds-galaxy-j8-2018-duos-td-lte-latam-64gb", + "name": "SM-J810M/DS Galaxy J8 2018 Duos TD-LTE LATAM 64GB", + "url": "/v1/smartphones/sm-j810m-ds-galaxy-j8-2018-duos-td-lte-latam-64gb" + }, + { + "slug": "sm-m015f-ds-galaxy-m01-2020-global-dual-sim-td-lte-32gb", + "name": "SM-M015F/DS Galaxy M01 2020 Global Dual SIM TD-LTE 32GB", + "url": "/v1/smartphones/sm-m015f-ds-galaxy-m01-2020-global-dual-sim-td-lte-32gb" + }, + { + "slug": "sm-m015g-ds-galaxy-m01-2020-dual-sim-td-lte-apac-32gb", + "name": "SM-M015G/DS Galaxy M01 2020 Dual SIM TD-LTE APAC 32GB", + "url": "/v1/smartphones/sm-m015g-ds-galaxy-m01-2020-dual-sim-td-lte-apac-32gb" + }, + { + "slug": "sm-m017f-ds-galaxy-m01s-2020-global-dual-sim-td-lte", + "name": "SM-M017F/DS Galaxy M01s 2020 Global Dual SIM TD-LTE", + "url": "/v1/smartphones/sm-m017f-ds-galaxy-m01s-2020-global-dual-sim-td-lte" + }, + { + "slug": "sm-m025f-ds-galaxy-m02s-2021-global-dual-sim-td-lte-32gb", + "name": "SM-M025F/DS Galaxy M02s 2021 Global Dual SIM TD-LTE 32GB", + "url": "/v1/smartphones/sm-m025f-ds-galaxy-m02s-2021-global-dual-sim-td-lte-32gb" + }, + { + "slug": "sm-m025f-ds-galaxy-m02s-2021-global-dual-sim-td-lte-64gb", + "name": "SM-M025F/DS Galaxy M02s 2021 Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/sm-m025f-ds-galaxy-m02s-2021-global-dual-sim-td-lte-64gb" + }, + { + "slug": "sm-m115f-ds-galaxy-m11-2020-global-dual-sim-td-lte-32gb", + "name": "SM-M115F/DS Galaxy M11 2020 Global Dual SIM TD-LTE 32GB", + "url": "/v1/smartphones/sm-m115f-ds-galaxy-m11-2020-global-dual-sim-td-lte-32gb" + }, + { + "slug": "sm-m115f-ds-galaxy-m11-2020-global-dual-sim-td-lte-64gb", + "name": "SM-M115F/DS Galaxy M11 2020 Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/sm-m115f-ds-galaxy-m11-2020-global-dual-sim-td-lte-64gb" + }, + { + "slug": "sm-m115f-dsn-galaxy-m11-2020-global-dual-sim-td-lte-32gb", + "name": "SM-M115F/DSN Galaxy M11 2020 Global Dual SIM TD-LTE 32GB", + "url": "/v1/smartphones/sm-m115f-dsn-galaxy-m11-2020-global-dual-sim-td-lte-32gb" + }, + { + "slug": "sm-m115m-ds-galaxy-m11-2020-dual-sim-td-lte-latam-32gb", + "name": "SM-M115M/DS Galaxy M11 2020 Dual SIM TD-LTE LATAM 32GB", + "url": "/v1/smartphones/sm-m115m-ds-galaxy-m11-2020-dual-sim-td-lte-latam-32gb" + }, + { + "slug": "sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M127F/DS Galaxy M12 2021 Standard Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-32gb", + "name": "SM-M127F/DS Galaxy M12 2021 Standard Edition Global Dual SIM TD-LTE 32GB", + "url": "/v1/smartphones/sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-32gb" + }, + { + "slug": "sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-64gb", + "name": "SM-M127F/DS Galaxy M12 2021 Standard Edition Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-64gb" + }, + { + "slug": "sm-m127f-dsn-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-64gb", + "name": "SM-M127F/DSN Galaxy M12 2021 Standard Edition Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/sm-m127f-dsn-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-64gb" + }, + { + "slug": "sm-m127g-ds-galaxy-m12-2021-premium-edition-dual-sim-td-lte-in-128gb", + "name": "SM-M127G/DS Galaxy M12 2021 Premium Edition Dual SIM TD-LTE IN 128GB", + "url": "/v1/smartphones/sm-m127g-ds-galaxy-m12-2021-premium-edition-dual-sim-td-lte-in-128gb" + }, + { + "slug": "sm-m127g-ds-galaxy-m12-2021-standard-edition-dual-sim-td-lte-in-64gb", + "name": "SM-M127G/DS Galaxy M12 2021 Standard Edition Dual SIM TD-LTE IN 64GB", + "url": "/v1/smartphones/sm-m127g-ds-galaxy-m12-2021-standard-edition-dual-sim-td-lte-in-64gb" + }, + { + "slug": "sm-m127n-galaxy-m12-2021-standard-edition-td-lte-kr-32gb", + "name": "SM-M127N Galaxy M12 2021 Standard Edition TD-LTE KR 32GB", + "url": "/v1/smartphones/sm-m127n-galaxy-m12-2021-standard-edition-td-lte-kr-32gb" + }, + { + "slug": "sm-m205f-ds-galaxy-m20-duos-global-td-lte-32gb", + "name": "SM-M205F/DS Galaxy M20 Duos Global TD-LTE 32GB", + "url": "/v1/smartphones/sm-m205f-ds-galaxy-m20-duos-global-td-lte-32gb" + }, + { + "slug": "sm-m205f-ds-galaxy-m20-duos-global-td-lte-64gb", + "name": "SM-M205F/DS Galaxy M20 Duos Global TD-LTE 64GB", + "url": "/v1/smartphones/sm-m205f-ds-galaxy-m20-duos-global-td-lte-64gb" + }, + { + "slug": "sm-m205g-ds-galaxy-m20-duos-td-lte-apac-32gb", + "name": "SM-M205G/DS Galaxy M20 Duos TD-LTE APAC 32GB", + "url": "/v1/smartphones/sm-m205g-ds-galaxy-m20-duos-td-lte-apac-32gb" + }, + { + "slug": "sm-m205g-ds-galaxy-m20-duos-td-lte-apac-64gb", + "name": "SM-M205G/DS Galaxy M20 Duos TD-LTE APAC 64GB", + "url": "/v1/smartphones/sm-m205g-ds-galaxy-m20-duos-td-lte-apac-64gb" + }, + { + "slug": "sm-m205m-galaxy-m20-td-lte-latam-32gb", + "name": "SM-M205M Galaxy M20 TD-LTE LATAM 32GB", + "url": "/v1/smartphones/sm-m205m-galaxy-m20-td-lte-latam-32gb" + }, + { + "slug": "sm-m205m-ds-galaxy-m20-duos-td-lte-latam-32gb", + "name": "SM-M205M/DS Galaxy M20 Duos TD-LTE LATAM 32GB", + "url": "/v1/smartphones/sm-m205m-ds-galaxy-m20-duos-td-lte-latam-32gb" + }, + { + "slug": "sm-m205m-ds-galaxy-m20-duos-td-lte-latam-64gb", + "name": "SM-M205M/DS Galaxy M20 Duos TD-LTE LATAM 64GB", + "url": "/v1/smartphones/sm-m205m-ds-galaxy-m20-duos-td-lte-latam-64gb" + }, + { + "slug": "sm-m215f-ds-galaxy-m21-global-dual-sim-td-lte-128gb", + "name": "SM-M215F/DS Galaxy M21 Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-m215f-ds-galaxy-m21-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-m215f-ds-galaxy-m21-global-dual-sim-td-lte-64gb", + "name": "SM-M215F/DS Galaxy M21 Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/sm-m215f-ds-galaxy-m21-global-dual-sim-td-lte-64gb" + }, + { + "slug": "sm-m215f-dsn-galaxy-m21-global-dual-sim-td-lte-64gb", + "name": "SM-M215F/DSN Galaxy M21 Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/sm-m215f-dsn-galaxy-m21-global-dual-sim-td-lte-64gb" + }, + { + "slug": "sm-m215g-ds-galaxy-m21-2021-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M215G/DS Galaxy M21 2021 Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-m215g-ds-galaxy-m21-2021-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-m215g-ds-galaxy-m21-2021-edition-global-dual-sim-td-lte-64gb", + "name": "SM-M215G/DS Galaxy M21 2021 Edition Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/sm-m215g-ds-galaxy-m21-2021-edition-global-dual-sim-td-lte-64gb" + }, + { + "slug": "sm-m225fv-ds-galaxy-m22-4g-2021-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M225FV/DS Galaxy M22 4G 2021 Premium Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-m225fv-ds-galaxy-m22-4g-2021-premium-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-m225fv-ds-galaxy-m22-4g-2021-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M225FV/DS Galaxy M22 4G 2021 Standard Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-m225fv-ds-galaxy-m22-4g-2021-standard-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-m305f-ds-galaxy-m30-global-dual-sim-td-lte-128gb", + "name": "SM-M305F/DS Galaxy M30 Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-m305f-ds-galaxy-m30-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-m305f-ds-galaxy-m30-global-dual-sim-td-lte-64gb", + "name": "SM-M305F/DS Galaxy M30 Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/sm-m305f-ds-galaxy-m30-global-dual-sim-td-lte-64gb" + }, + { + "slug": "sm-m305m-galaxy-m30-td-lte-latam-64gb", + "name": "SM-M305M Galaxy M30 TD-LTE LATAM 64GB", + "url": "/v1/smartphones/sm-m305m-galaxy-m30-td-lte-latam-64gb" + }, + { + "slug": "sm-m305m-ds-galaxy-m30-dual-sim-td-lte-latam-64gb", + "name": "SM-M305M/DS Galaxy M30 Dual SIM TD-LTE LATAM 64GB", + "url": "/v1/smartphones/sm-m305m-ds-galaxy-m30-dual-sim-td-lte-latam-64gb" + }, + { + "slug": "sm-m3070-galaxy-m30s-dual-sim-td-lte-cn-128gb", + "name": "SM-M3070 Galaxy M30s Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/sm-m3070-galaxy-m30s-dual-sim-td-lte-cn-128gb" + }, + { + "slug": "sm-m307f-ds-galaxy-m30s-global-dual-sim-td-lte-128gb", + "name": "SM-M307F/DS Galaxy M30s Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-m307f-ds-galaxy-m30s-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-m307f-ds-galaxy-m30s-global-dual-sim-td-lte-64gb", + "name": "SM-M307F/DS Galaxy M30s Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/sm-m307f-ds-galaxy-m30s-global-dual-sim-td-lte-64gb" + }, + { + "slug": "sm-m315f-ds-galaxy-m31-global-dual-sim-td-lte-128gb", + "name": "SM-M315F/DS Galaxy M31 Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-m315f-ds-galaxy-m31-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-m315f-ds-galaxy-m31-global-dual-sim-td-lte-64gb", + "name": "SM-M315F/DS Galaxy M31 Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/sm-m315f-ds-galaxy-m31-global-dual-sim-td-lte-64gb" + }, + { + "slug": "sm-m315f-ds-galaxy-m31-prime-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M315F/DS Galaxy M31 Prime Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-m315f-ds-galaxy-m31-prime-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-m315f-dsn-galaxy-m31-global-dual-sim-td-lte-128gb", + "name": "SM-M315F/DSN Galaxy M31 Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-m315f-dsn-galaxy-m31-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-m315f-dsn-galaxy-m31-global-dual-sim-td-lte-64gb", + "name": "SM-M315F/DSN Galaxy M31 Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/sm-m315f-dsn-galaxy-m31-global-dual-sim-td-lte-64gb" + }, + { + "slug": "sm-m317f-ds-galaxy-m31s-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M317F/DS Galaxy M31s Premium Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-m317f-ds-galaxy-m31s-premium-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-m317f-ds-galaxy-m31s-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M317F/DS Galaxy M31s Standard Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-m317f-ds-galaxy-m31s-standard-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-m317f-dsn-galaxy-m31s-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M317F/DSN Galaxy M31s Standard Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-m317f-dsn-galaxy-m31s-standard-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-m325f-ds-galaxy-m32-4g-2021-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M325F/DS Galaxy M32 4G 2021 Premium Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-m325f-ds-galaxy-m32-4g-2021-premium-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-m325f-ds-galaxy-m32-4g-2021-standard-edition-global-dual-sim-td-lte-64gb", + "name": "SM-M325F/DS Galaxy M32 4G 2021 Standard Edition Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/sm-m325f-ds-galaxy-m32-4g-2021-standard-edition-global-dual-sim-td-lte-64gb" + }, + { + "slug": "sm-m325fv-ds-galaxy-m32-4g-2021-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M325FV/DS Galaxy M32 4G 2021 Standard Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-m325fv-ds-galaxy-m32-4g-2021-standard-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-m336b-galaxy-m33-5g-2022-standard-edition-global-td-lte-128gb", + "name": "SM-M336B Galaxy M33 5G 2022 Standard Edition Global TD-LTE 128GB", + "url": "/v1/smartphones/sm-m336b-galaxy-m33-5g-2022-standard-edition-global-td-lte-128gb" + }, + { + "slug": "sm-m336b-ds-galaxy-m33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M336B/DS Galaxy M33 5G 2022 Standard Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-m336b-ds-galaxy-m33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-m336bu-ds-galaxy-m33-5g-2022-premium-edition-dual-sim-td-lte-in-128gb", + "name": "SM-M336BU/DS Galaxy M33 5G 2022 Premium Edition Dual SIM TD-LTE IN 128GB", + "url": "/v1/smartphones/sm-m336bu-ds-galaxy-m33-5g-2022-premium-edition-dual-sim-td-lte-in-128gb" + }, + { + "slug": "sm-m336bu-ds-galaxy-m33-5g-2022-standard-edition-dual-sim-td-lte-in-128gb", + "name": "SM-M336BU/DS Galaxy M33 5G 2022 Standard Edition Dual SIM TD-LTE IN 128GB", + "url": "/v1/smartphones/sm-m336bu-ds-galaxy-m33-5g-2022-standard-edition-dual-sim-td-lte-in-128gb" + }, + { + "slug": "sm-m405f-ds-galaxy-m40-2019-dual-sim-td-lte-in-128gb", + "name": "SM-M405F/DS Galaxy M40 2019 Dual SIM TD-LTE IN 128GB", + "url": "/v1/smartphones/sm-m405f-ds-galaxy-m40-2019-dual-sim-td-lte-in-128gb" + }, + { + "slug": "sm-m515f-dsn-galaxy-m51-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M515F/DSN Galaxy M51 Premium Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-m515f-dsn-galaxy-m51-premium-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-m515f-dsn-galaxy-m51-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M515F/DSN Galaxy M51 Standard Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-m515f-dsn-galaxy-m51-standard-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-m625f-ds-galaxy-m62-2021-global-dual-sim-td-lte", + "name": "SM-M625F/DS Galaxy M62 2021 Global Dual SIM TD-LTE", + "url": "/v1/smartphones/sm-m625f-ds-galaxy-m62-2021-global-dual-sim-td-lte" + }, + { + "slug": "sm-n770f-ds-galaxy-note-10-lite-global-dual-sim-td-lte-128gb", + "name": "SM-N770F/DS Galaxy Note 10 Lite Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-n770f-ds-galaxy-note-10-lite-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-n770f-dsm-galaxy-note-10-lite-premium-edition-dual-sim-td-lte-apac", + "name": "SM-N770F/DSM Galaxy Note 10 Lite Premium Edition Dual SIM TD-LTE APAC", + "url": "/v1/smartphones/sm-n770f-dsm-galaxy-note-10-lite-premium-edition-dual-sim-td-lte-apac" + }, + { + "slug": "sm-n770f-dsm-galaxy-note-10-lite-standard-edition-dual-sim-td-lte-apac", + "name": "SM-N770F/DSM Galaxy Note 10 Lite Standard Edition Dual SIM TD-LTE APAC", + "url": "/v1/smartphones/sm-n770f-dsm-galaxy-note-10-lite-standard-edition-dual-sim-td-lte-apac" + }, + { + "slug": "sm-n9600-galaxy-note-9-duos-td-lte-cn-128gb", + "name": "SM-N9600 Galaxy Note 9 Duos TD-LTE CN 128GB", + "url": "/v1/smartphones/sm-n9600-galaxy-note-9-duos-td-lte-cn-128gb" + }, + { + "slug": "sm-n9600-galaxy-note-9-special-edition-duos-td-lte-cn-512gb", + "name": "SM-N9600 Galaxy Note 9 Special Edition Duos TD-LTE CN 512GB", + "url": "/v1/smartphones/sm-n9600-galaxy-note-9-special-edition-duos-td-lte-cn-512gb" + }, + { + "slug": "sm-n960d-galaxy-note-9-td-lte-jp-sc-01l-sgh-n058", + "name": "SM-N960D Galaxy Note 9 TD-LTE JP SC-01L / SGH-N058", + "url": "/v1/smartphones/sm-n960d-galaxy-note-9-td-lte-jp-sc-01l-sgh-n058" + }, + { + "slug": "sm-n960f-galaxy-note9-global-td-lte-128gb", + "name": "SM-N960F Galaxy Note9 Global TD-LTE 128GB", + "url": "/v1/smartphones/sm-n960f-galaxy-note9-global-td-lte-128gb" + }, + { + "slug": "sm-n960f-ds-galaxy-note9-global-dual-sim-td-lte-128gb", + "name": "SM-N960F/DS Galaxy Note9 Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-n960f-ds-galaxy-note9-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-n960f-ds-galaxy-note9-global-dual-sim-td-lte-512gb", + "name": "SM-N960F/DS Galaxy Note9 Global Dual SIM TD-LTE 512GB", + "url": "/v1/smartphones/sm-n960f-ds-galaxy-note9-global-dual-sim-td-lte-512gb" + }, + { + "slug": "sm-n960j-galaxy-note-9-wimax-2-scv40", + "name": "SM-N960J Galaxy Note 9 WiMAX 2+ SCV40", + "url": "/v1/smartphones/sm-n960j-galaxy-note-9-wimax-2-scv40" + }, + { + "slug": "sm-n960n-galaxy-note9-special-edition-td-lte-kr-512gb", + "name": "SM-N960N Galaxy Note9 Special Edition TD-LTE KR 512GB", + "url": "/v1/smartphones/sm-n960n-galaxy-note9-special-edition-td-lte-kr-512gb" + }, + { + "slug": "sm-n960n-galaxy-note9-td-lte-kr-128gb", + "name": "SM-N960N Galaxy Note9 TD-LTE KR 128GB", + "url": "/v1/smartphones/sm-n960n-galaxy-note9-td-lte-kr-128gb" + }, + { + "slug": "sm-n960u-galaxy-note-9-td-lte-us-128gb", + "name": "SM-N960U Galaxy Note 9 TD-LTE US 128GB", + "url": "/v1/smartphones/sm-n960u-galaxy-note-9-td-lte-us-128gb" + }, + { + "slug": "sm-n960u-galaxy-note-9-td-lte-us-512gb", + "name": "SM-N960U Galaxy Note 9 TD-LTE US 512GB", + "url": "/v1/smartphones/sm-n960u-galaxy-note-9-td-lte-us-512gb" + }, + { + "slug": "sm-n960u1-galaxy-note-9-td-lte-us-128gb", + "name": "SM-N960U1 Galaxy Note 9 TD-LTE US 128GB", + "url": "/v1/smartphones/sm-n960u1-galaxy-note-9-td-lte-us-128gb" + }, + { + "slug": "sm-n960u1-galaxy-note-9-td-lte-us-512gb", + "name": "SM-N960U1 Galaxy Note 9 TD-LTE US 512GB", + "url": "/v1/smartphones/sm-n960u1-galaxy-note-9-td-lte-us-512gb" + }, + { + "slug": "sm-n960w-galaxy-note-9-td-lte-ca-128gb", + "name": "SM-N960W Galaxy Note 9 TD-LTE CA 128GB", + "url": "/v1/smartphones/sm-n960w-galaxy-note-9-td-lte-ca-128gb" + }, + { + "slug": "sm-n9700-galaxy-note-10-dual-sim-td-lte-cn-tw-256gb", + "name": "SM-N9700 Galaxy Note 10 Dual SIM TD-LTE CN TW 256GB", + "url": "/v1/smartphones/sm-n9700-galaxy-note-10-dual-sim-td-lte-cn-tw-256gb" + }, + { + "slug": "sm-n970f-galaxy-note-10-global-td-lte-256gb", + "name": "SM-N970F Galaxy Note 10 Global TD-LTE 256GB", + "url": "/v1/smartphones/sm-n970f-galaxy-note-10-global-td-lte-256gb" + }, + { + "slug": "sm-n970f-ds-galaxy-note-10-global-dual-sim-td-lte-256gb", + "name": "SM-N970F/DS Galaxy Note 10 Global Dual SIM TD-LTE 256GB", + "url": "/v1/smartphones/sm-n970f-ds-galaxy-note-10-global-dual-sim-td-lte-256gb" + }, + { + "slug": "sm-n970u-galaxy-note-10-td-lte-us-256gb", + "name": "SM-N970U Galaxy Note 10 TD-LTE US 256GB", + "url": "/v1/smartphones/sm-n970u-galaxy-note-10-td-lte-us-256gb" + }, + { + "slug": "sm-n970u1-galaxy-note-10-td-lte-us-256gb", + "name": "SM-N970U1 Galaxy Note 10 TD-LTE US 256GB", + "url": "/v1/smartphones/sm-n970u1-galaxy-note-10-td-lte-us-256gb" + }, + { + "slug": "sm-n970w-galaxy-note-10-td-lte-ca-256gb", + "name": "SM-N970W Galaxy Note 10 TD-LTE CA 256GB", + "url": "/v1/smartphones/sm-n970w-galaxy-note-10-td-lte-ca-256gb" + }, + { + "slug": "sm-n971n-galaxy-note-10-5g-td-lte-kr-256gb", + "name": "SM-N971N Galaxy Note 10 5G TD-LTE KR 256GB", + "url": "/v1/smartphones/sm-n971n-galaxy-note-10-5g-td-lte-kr-256gb" + }, + { + "slug": "sm-n9750-galaxy-note-10-dual-sim-td-lte-cn-256gb", + "name": "SM-N9750 Galaxy Note 10+ Dual SIM TD-LTE CN 256GB", + "url": "/v1/smartphones/sm-n9750-galaxy-note-10-dual-sim-td-lte-cn-256gb" + }, + { + "slug": "sm-n975c-galaxy-note-10-td-lte-jp-256gb", + "name": "SM-N975C Galaxy Note 10+ TD-LTE JP 256GB", + "url": "/v1/smartphones/sm-n975c-galaxy-note-10-td-lte-jp-256gb" + }, + { + "slug": "sm-n975d-galaxy-note-10-star-wars-special-edition-td-lte-jp-256gb-sc-01m", + "name": "SM-N975D Galaxy Note 10+ Star Wars Special Edition TD-LTE JP 256GB SC-01M", + "url": "/v1/smartphones/sm-n975d-galaxy-note-10-star-wars-special-edition-td-lte-jp-256gb-sc-01m" + }, + { + "slug": "sm-n975d-galaxy-note-10-td-lte-jp-256gb-sc-01m", + "name": "SM-N975D Galaxy Note 10+ TD-LTE JP 256GB SC-01M", + "url": "/v1/smartphones/sm-n975d-galaxy-note-10-td-lte-jp-256gb-sc-01m" + }, + { + "slug": "sm-n975f-galaxy-note-10-global-td-lte-512gb", + "name": "SM-N975F Galaxy Note 10+ Global TD-LTE 512GB", + "url": "/v1/smartphones/sm-n975f-galaxy-note-10-global-td-lte-512gb" + }, + { + "slug": "sm-n975f-ds-galaxy-note-10-global-dual-sim-td-lte-256gb", + "name": "SM-N975F/DS Galaxy Note 10+ Global Dual SIM TD-LTE 256GB", + "url": "/v1/smartphones/sm-n975f-ds-galaxy-note-10-global-dual-sim-td-lte-256gb" + }, + { + "slug": "sm-n975f-ds-galaxy-note-10-global-dual-sim-td-lte-512gb", + "name": "SM-N975F/DS Galaxy Note 10+ Global Dual SIM TD-LTE 512GB", + "url": "/v1/smartphones/sm-n975f-ds-galaxy-note-10-global-dual-sim-td-lte-512gb" + }, + { + "slug": "sm-n975j-galaxy-note-10-wimax-2-256gb-scv45", + "name": "SM-N975J Galaxy Note 10+ WiMAX 2+ 256GB SCV45", + "url": "/v1/smartphones/sm-n975j-galaxy-note-10-wimax-2-256gb-scv45" + }, + { + "slug": "sm-n975u-galaxy-note-10-td-lte-us-512gb", + "name": "SM-N975U Galaxy Note 10+ TD-LTE US 512GB", + "url": "/v1/smartphones/sm-n975u-galaxy-note-10-td-lte-us-512gb" + }, + { + "slug": "sm-n975u1-galaxy-note-10-star-wars-special-edition-td-lte-us-512gb", + "name": "SM-N975U1 Galaxy Note 10+ Star Wars Special Edition TD-LTE US 512GB", + "url": "/v1/smartphones/sm-n975u1-galaxy-note-10-star-wars-special-edition-td-lte-us-512gb" + }, + { + "slug": "sm-n975u1-galaxy-note-10-td-lte-us-256gb", + "name": "SM-N975U1 Galaxy Note 10+ TD-LTE US 256GB", + "url": "/v1/smartphones/sm-n975u1-galaxy-note-10-td-lte-us-256gb" + }, + { + "slug": "sm-n975u1-galaxy-note-10-td-lte-us-512gb", + "name": "SM-N975U1 Galaxy Note 10+ TD-LTE US 512GB", + "url": "/v1/smartphones/sm-n975u1-galaxy-note-10-td-lte-us-512gb" + }, + { + "slug": "sm-n975w-galaxy-note-10-td-lte-ca-256gb", + "name": "SM-N975W Galaxy Note 10+ TD-LTE CA 256GB", + "url": "/v1/smartphones/sm-n975w-galaxy-note-10-td-lte-ca-256gb" + }, + { + "slug": "sm-n9760-galaxy-note-10-5g-dual-sim-td-lte-cn-256gb", + "name": "SM-N9760 Galaxy Note 10+ 5G Dual SIM TD-LTE CN 256GB", + "url": "/v1/smartphones/sm-n9760-galaxy-note-10-5g-dual-sim-td-lte-cn-256gb" + }, + { + "slug": "sm-n976b-galaxy-note-10-5g-global-td-lte-256gb", + "name": "SM-N976B Galaxy Note 10+ 5G Global TD-LTE 256GB", + "url": "/v1/smartphones/sm-n976b-galaxy-note-10-5g-global-td-lte-256gb" + }, + { + "slug": "sm-n976n-galaxy-note-10-5g-td-lte-kr-256gb", + "name": "SM-N976N Galaxy Note 10+ 5G TD-LTE KR 256GB", + "url": "/v1/smartphones/sm-n976n-galaxy-note-10-5g-td-lte-kr-256gb" + }, + { + "slug": "sm-n976n-galaxy-note-10-5g-td-lte-kr-512gb", + "name": "SM-N976N Galaxy Note 10+ 5G TD-LTE KR 512GB", + "url": "/v1/smartphones/sm-n976n-galaxy-note-10-5g-td-lte-kr-512gb" + }, + { + "slug": "sm-n976t-galaxy-note-10-5g-td-lte-us-256gb-sm-n976u", + "name": "SM-N976T Galaxy Note 10+ 5G TD-LTE US 256GB / SM-N976U", + "url": "/v1/smartphones/sm-n976t-galaxy-note-10-5g-td-lte-us-256gb-sm-n976u" + }, + { + "slug": "sm-n976v-galaxy-note-10-5g-td-lte-us-256gb-sm-n976u", + "name": "SM-N976V Galaxy Note 10+ 5G TD-LTE US 256GB / SM-N976U", + "url": "/v1/smartphones/sm-n976v-galaxy-note-10-5g-td-lte-us-256gb-sm-n976u" + }, + { + "slug": "sm-n976v-galaxy-note-10-5g-td-lte-us-512gb-sm-n976u", + "name": "SM-N976V Galaxy Note 10+ 5G TD-LTE US 512GB / SM-N976U", + "url": "/v1/smartphones/sm-n976v-galaxy-note-10-5g-td-lte-us-512gb-sm-n976u" + }, + { + "slug": "sm-n980f-ds-galaxy-note-20-global-dual-sim-td-lte-256gb", + "name": "SM-N980F/DS Galaxy Note 20 Global Dual SIM TD-LTE 256GB", + "url": "/v1/smartphones/sm-n980f-ds-galaxy-note-20-global-dual-sim-td-lte-256gb" + }, + { + "slug": "sm-n9810-galaxy-note-20-5g-dual-sim-td-lte-cn-256gb", + "name": "SM-N9810 Galaxy Note 20 5G Dual SIM TD-LTE CN 256GB", + "url": "/v1/smartphones/sm-n9810-galaxy-note-20-5g-dual-sim-td-lte-cn-256gb" + }, + { + "slug": "sm-n981b-ds-galaxy-note-20-5g-global-dual-sim-td-lte-128gb", + "name": "SM-N981B/DS Galaxy Note 20 5G Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-n981b-ds-galaxy-note-20-5g-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-n981n-galaxy-note-20-5g-td-lte-kr-256gb", + "name": "SM-N981N Galaxy Note 20 5G TD-LTE KR 256GB", + "url": "/v1/smartphones/sm-n981n-galaxy-note-20-5g-td-lte-kr-256gb" + }, + { + "slug": "sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981a", + "name": "SM-N981U Galaxy Note 20 5G TD-LTE US 128GB / SM-N981A", + "url": "/v1/smartphones/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981a" + }, + { + "slug": "sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981p", + "name": "SM-N981U Galaxy Note 20 5G TD-LTE US 128GB / SM-N981P", + "url": "/v1/smartphones/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981p" + }, + { + "slug": "sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981r4", + "name": "SM-N981U Galaxy Note 20 5G TD-LTE US 128GB / SM-N981R4", + "url": "/v1/smartphones/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981r4" + }, + { + "slug": "sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981t", + "name": "SM-N981U Galaxy Note 20 5G TD-LTE US 128GB / SM-N981T", + "url": "/v1/smartphones/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981t" + }, + { + "slug": "sm-n981u-galaxy-note-20-uw-5g-td-lte-us-128gb-sm-n981v", + "name": "SM-N981U Galaxy Note 20 UW 5G TD-LTE US 128GB / SM-N981V", + "url": "/v1/smartphones/sm-n981u-galaxy-note-20-uw-5g-td-lte-us-128gb-sm-n981v" + }, + { + "slug": "sm-n981u1-galaxy-note-20-5g-td-lte-us-128gb", + "name": "SM-N981U1 Galaxy Note 20 5G TD-LTE US 128GB", + "url": "/v1/smartphones/sm-n981u1-galaxy-note-20-5g-td-lte-us-128gb" + }, + { + "slug": "sm-n981w-galaxy-note-20-5g-td-lte-ca-128gb", + "name": "SM-N981W Galaxy Note 20 5G TD-LTE CA 128GB", + "url": "/v1/smartphones/sm-n981w-galaxy-note-20-5g-td-lte-ca-128gb" + }, + { + "slug": "sm-n985f-ds-galaxy-note-20-ultra-global-dual-sim-td-lte-256gb", + "name": "SM-N985F/DS Galaxy Note 20 Ultra Global Dual SIM TD-LTE 256GB", + "url": "/v1/smartphones/sm-n985f-ds-galaxy-note-20-ultra-global-dual-sim-td-lte-256gb" + }, + { + "slug": "sm-n9860-galaxy-note-20-ultra-5g-dual-sim-td-lte-cn-256gb", + "name": "SM-N9860 Galaxy Note 20 Ultra 5G Dual SIM TD-LTE CN 256GB", + "url": "/v1/smartphones/sm-n9860-galaxy-note-20-ultra-5g-dual-sim-td-lte-cn-256gb" + }, + { + "slug": "sm-n9860-galaxy-note-20-ultra-5g-dual-sim-td-lte-cn-512gb", + "name": "SM-N9860 Galaxy Note 20 Ultra 5G Dual SIM TD-LTE CN 512GB", + "url": "/v1/smartphones/sm-n9860-galaxy-note-20-ultra-5g-dual-sim-td-lte-cn-512gb" + }, + { + "slug": "sm-n986b-ds-galaxy-note-20-ultra-5g-global-dual-sim-td-lte-128gb", + "name": "SM-N986B/DS Galaxy Note 20 Ultra 5G Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-n986b-ds-galaxy-note-20-ultra-5g-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-n986c-galaxy-note-20-ultra-5g-td-lte-jp-256gb-sgh-n219", + "name": "SM-N986C Galaxy Note 20 Ultra 5G TD-LTE JP 256GB / SGH-N219", + "url": "/v1/smartphones/sm-n986c-galaxy-note-20-ultra-5g-td-lte-jp-256gb-sgh-n219" + }, + { + "slug": "sm-n986d-galaxy-note-20-ultra-uw-5g-td-lte-jp-256gb-sc-53a-sgh-n323", + "name": "SM-N986D Galaxy Note 20 Ultra UW 5G TD-LTE JP 256GB SC-53A / SGH-N323", + "url": "/v1/smartphones/sm-n986d-galaxy-note-20-ultra-uw-5g-td-lte-jp-256gb-sc-53a-sgh-n323" + }, + { + "slug": "sm-n986j-galaxy-note-20-ultra-uw-5g-td-lte-jp-256gb-scg06", + "name": "SM-N986J Galaxy Note 20 Ultra UW 5G TD-LTE JP 256GB SCG06", + "url": "/v1/smartphones/sm-n986j-galaxy-note-20-ultra-uw-5g-td-lte-jp-256gb-scg06" + }, + { + "slug": "sm-n986n-galaxy-note-20-ultra-uw-5g-td-lte-kr-256gb", + "name": "SM-N986N Galaxy Note 20 Ultra UW 5G TD-LTE KR 256GB", + "url": "/v1/smartphones/sm-n986n-galaxy-note-20-ultra-uw-5g-td-lte-kr-256gb" + }, + { + "slug": "sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986a", + "name": "SM-N986U Galaxy Note 20 Ultra 5G TD-LTE US 128GB / SM-N986A", + "url": "/v1/smartphones/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986a" + }, + { + "slug": "sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986p", + "name": "SM-N986U Galaxy Note 20 Ultra 5G TD-LTE US 128GB / SM-N986P", + "url": "/v1/smartphones/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986p" + }, + { + "slug": "sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986r4", + "name": "SM-N986U Galaxy Note 20 Ultra 5G TD-LTE US 128GB / SM-N986R4", + "url": "/v1/smartphones/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986r4" + }, + { + "slug": "sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986t", + "name": "SM-N986U Galaxy Note 20 Ultra 5G TD-LTE US 128GB / SM-N986T", + "url": "/v1/smartphones/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986t" + }, + { + "slug": "sm-n986u-galaxy-note-20-ultra-uw-5g-td-lte-us-128gb-sm-n986v", + "name": "SM-N986U Galaxy Note 20 Ultra UW 5G TD-LTE US 128GB / SM-N986V", + "url": "/v1/smartphones/sm-n986u-galaxy-note-20-ultra-uw-5g-td-lte-us-128gb-sm-n986v" + }, + { + "slug": "sm-n986u-galaxy-note-20-ultra-uw-5g-td-lte-us-512gb-sm-n986v", + "name": "SM-N986U Galaxy Note 20 Ultra UW 5G TD-LTE US 512GB / SM-N986V", + "url": "/v1/smartphones/sm-n986u-galaxy-note-20-ultra-uw-5g-td-lte-us-512gb-sm-n986v" + }, + { + "slug": "sm-n986u1-galaxy-note-20-ultra-5g-td-lte-us-128gb", + "name": "SM-N986U1 Galaxy Note 20 Ultra 5G TD-LTE US 128GB", + "url": "/v1/smartphones/sm-n986u1-galaxy-note-20-ultra-5g-td-lte-us-128gb" + }, + { + "slug": "sm-n986w-galaxy-note-20-ultra-5g-td-lte-ca-128gb", + "name": "SM-N986W Galaxy Note 20 Ultra 5G TD-LTE CA 128GB", + "url": "/v1/smartphones/sm-n986w-galaxy-note-20-ultra-5g-td-lte-ca-128gb" + }, + { + "slug": "sm-n986w-galaxy-note-20-ultra-5g-td-lte-ca-512gb", + "name": "SM-N986W Galaxy Note 20 Ultra 5G TD-LTE CA 512GB", + "url": "/v1/smartphones/sm-n986w-galaxy-note-20-ultra-5g-td-lte-ca-512gb" + }, + { + "slug": "sm-s9010-galaxy-s22-5g-dual-sim-td-lte-cn-hk-tw-128gb", + "name": "SM-S9010 Galaxy S22 5G Dual SIM TD-LTE CN HK TW 128GB", + "url": "/v1/smartphones/sm-s9010-galaxy-s22-5g-dual-sim-td-lte-cn-hk-tw-128gb" + }, + { + "slug": "sm-s9010-galaxy-s22-5g-dual-sim-td-lte-cn-hk-tw-256gb", + "name": "SM-S9010 Galaxy S22 5G Dual SIM TD-LTE CN HK TW 256GB", + "url": "/v1/smartphones/sm-s9010-galaxy-s22-5g-dual-sim-td-lte-cn-hk-tw-256gb" + }, + { + "slug": "sm-s901b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-128gb", + "name": "SM-S901B/DS Galaxy S22 5G Dual SIM TD-LTE EU 128GB", + "url": "/v1/smartphones/sm-s901b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-128gb" + }, + { + "slug": "sm-s901b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-256gb", + "name": "SM-S901B/DS Galaxy S22 5G Dual SIM TD-LTE EU 256GB", + "url": "/v1/smartphones/sm-s901b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-256gb" + }, + { + "slug": "sm-s901d-galaxy-s22-5g-uw-td-lte-jp-256gb-sc-51c", + "name": "SM-S901D Galaxy S22 5G UW TD-LTE JP 256GB SC-51C", + "url": "/v1/smartphones/sm-s901d-galaxy-s22-5g-uw-td-lte-jp-256gb-sc-51c" + }, + { + "slug": "sm-s901e-ds-galaxy-s22-5g-global-dual-sim-td-lte-128gb", + "name": "SM-S901E/DS Galaxy S22 5G Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-s901e-ds-galaxy-s22-5g-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-s901e-ds-galaxy-s22-5g-global-dual-sim-td-lte-256gb", + "name": "SM-S901E/DS Galaxy S22 5G Global Dual SIM TD-LTE 256GB", + "url": "/v1/smartphones/sm-s901e-ds-galaxy-s22-5g-global-dual-sim-td-lte-256gb" + }, + { + "slug": "sm-s901j-galaxy-s22-5g-uw-td-lte-jp-128gb-scg13", + "name": "SM-S901J Galaxy S22 5G UW TD-LTE JP 128GB SCG13", + "url": "/v1/smartphones/sm-s901j-galaxy-s22-5g-uw-td-lte-jp-128gb-scg13" + }, + { + "slug": "sm-s901n-galaxy-s22-5g-td-lte-kr-256gb", + "name": "SM-S901N Galaxy S22 5G TD-LTE KR 256GB", + "url": "/v1/smartphones/sm-s901n-galaxy-s22-5g-td-lte-kr-256gb" + }, + { + "slug": "sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901a", + "name": "SM-S901U Galaxy S22 5G UW Dual SIM TD-LTE US 128GB / SM-S901A", + "url": "/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901a" + }, + { + "slug": "sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901r4", + "name": "SM-S901U Galaxy S22 5G UW Dual SIM TD-LTE US 128GB / SM-S901R4", + "url": "/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901r4" + }, + { + "slug": "sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901t", + "name": "SM-S901U Galaxy S22 5G UW Dual SIM TD-LTE US 128GB / SM-S901T", + "url": "/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901t" + }, + { + "slug": "sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901v", + "name": "SM-S901U Galaxy S22 5G UW Dual SIM TD-LTE US 128GB / SM-S901V", + "url": "/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901v" + }, + { + "slug": "sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901a", + "name": "SM-S901U Galaxy S22 5G UW Dual SIM TD-LTE US 256GB / SM-S901A", + "url": "/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901a" + }, + { + "slug": "sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901r4", + "name": "SM-S901U Galaxy S22 5G UW Dual SIM TD-LTE US 256GB / SM-S901R4", + "url": "/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901r4" + }, + { + "slug": "sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901t", + "name": "SM-S901U Galaxy S22 5G UW Dual SIM TD-LTE US 256GB / SM-S901T", + "url": "/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901t" + }, + { + "slug": "sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901v", + "name": "SM-S901U Galaxy S22 5G UW Dual SIM TD-LTE US 256GB / SM-S901V", + "url": "/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901v" + }, + { + "slug": "sm-s901u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb", + "name": "SM-S901U1 Galaxy S22 5G UW Dual SIM TD-LTE US 128GB", + "url": "/v1/smartphones/sm-s901u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb" + }, + { + "slug": "sm-s901u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb", + "name": "SM-S901U1 Galaxy S22 5G UW Dual SIM TD-LTE US 256GB", + "url": "/v1/smartphones/sm-s901u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb" + }, + { + "slug": "sm-s901w-galaxy-s22-5g-dual-sim-td-lte-ca-128gb", + "name": "SM-S901W Galaxy S22 5G Dual SIM TD-LTE CA 128GB", + "url": "/v1/smartphones/sm-s901w-galaxy-s22-5g-dual-sim-td-lte-ca-128gb" + }, + { + "slug": "sm-s901w-galaxy-s22-5g-dual-sim-td-lte-ca-256gb", + "name": "SM-S901W Galaxy S22 5G Dual SIM TD-LTE CA 256GB", + "url": "/v1/smartphones/sm-s901w-galaxy-s22-5g-dual-sim-td-lte-ca-256gb" + }, + { + "slug": "sm-s9060-galaxy-s22-5g-uw-dual-sim-td-lte-cn-hk-tw-128gb", + "name": "SM-S9060 Galaxy S22+ 5G UW Dual SIM TD-LTE CN HK TW 128GB", + "url": "/v1/smartphones/sm-s9060-galaxy-s22-5g-uw-dual-sim-td-lte-cn-hk-tw-128gb" + }, + { + "slug": "sm-s9060-galaxy-s22-5g-uw-dual-sim-td-lte-cn-hk-tw-256gb", + "name": "SM-S9060 Galaxy S22+ 5G UW Dual SIM TD-LTE CN HK TW 256GB", + "url": "/v1/smartphones/sm-s9060-galaxy-s22-5g-uw-dual-sim-td-lte-cn-hk-tw-256gb" + }, + { + "slug": "sm-s906b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-128gb", + "name": "SM-S906B/DS Galaxy S22+ 5G Dual SIM TD-LTE EU 128GB", + "url": "/v1/smartphones/sm-s906b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-128gb" + }, + { + "slug": "sm-s906b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-256gb", + "name": "SM-S906B/DS Galaxy S22+ 5G Dual SIM TD-LTE EU 256GB", + "url": "/v1/smartphones/sm-s906b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-256gb" + }, + { + "slug": "sm-s906e-ds-galaxy-s22-5g-global-dual-sim-td-lte-128gb", + "name": "SM-S906E/DS Galaxy S22+ 5G Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/sm-s906e-ds-galaxy-s22-5g-global-dual-sim-td-lte-128gb" + }, + { + "slug": "sm-s906e-ds-galaxy-s22-5g-global-dual-sim-td-lte-256gb", + "name": "SM-S906E/DS Galaxy S22+ 5G Global Dual SIM TD-LTE 256GB", + "url": "/v1/smartphones/sm-s906e-ds-galaxy-s22-5g-global-dual-sim-td-lte-256gb" + }, + { + "slug": "sm-s906n-galaxy-s22-5g-uw-td-lte-kr-256gb", + "name": "SM-S906N Galaxy S22+ 5G UW TD-LTE KR 256GB", + "url": "/v1/smartphones/sm-s906n-galaxy-s22-5g-uw-td-lte-kr-256gb" + }, + { + "slug": "sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906a", + "name": "SM-S906U Galaxy S22+ 5G UW Dual SIM TD-LTE US 128GB / SM-S906A", + "url": "/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906a" + }, + { + "slug": "sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906r4", + "name": "SM-S906U Galaxy S22+ 5G UW Dual SIM TD-LTE US 128GB / SM-S906R4", + "url": "/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906r4" + }, + { + "slug": "sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906t", + "name": "SM-S906U Galaxy S22+ 5G UW Dual SIM TD-LTE US 128GB / SM-S906T", + "url": "/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906t" + }, + { + "slug": "sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906v", + "name": "SM-S906U Galaxy S22+ 5G UW Dual SIM TD-LTE US 128GB / SM-S906V", + "url": "/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906v" + }, + { + "slug": "sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906a", + "name": "SM-S906U Galaxy S22+ 5G UW Dual SIM TD-LTE US 256GB / SM-S906A", + "url": "/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906a" + }, + { + "slug": "sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906r4", + "name": "SM-S906U Galaxy S22+ 5G UW Dual SIM TD-LTE US 256GB / SM-S906R4", + "url": "/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906r4" + }, + { + "slug": "sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906t", + "name": "SM-S906U Galaxy S22+ 5G UW Dual SIM TD-LTE US 256GB / SM-S906T", + "url": "/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906t" + }, + { + "slug": "sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906v", + "name": "SM-S906U Galaxy S22+ 5G UW Dual SIM TD-LTE US 256GB / SM-S906V", + "url": "/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906v" + }, + { + "slug": "sm-s906u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb", + "name": "SM-S906U1 Galaxy S22+ 5G UW Dual SIM TD-LTE US 128GB", + "url": "/v1/smartphones/sm-s906u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb" + }, + { + "slug": "sm-s906u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb", + "name": "SM-S906U1 Galaxy S22+ 5G UW Dual SIM TD-LTE US 256GB", + "url": "/v1/smartphones/sm-s906u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb" + }, + { + "slug": "sm-s906w-galaxy-s22-5g-dual-sim-td-lte-ca-128gb", + "name": "SM-S906W Galaxy S22+ 5G Dual SIM TD-LTE CA 128GB", + "url": "/v1/smartphones/sm-s906w-galaxy-s22-5g-dual-sim-td-lte-ca-128gb" + }, + { + "slug": "sm-s906w-galaxy-s22-5g-dual-sim-td-lte-ca-256gb", + "name": "SM-S906W Galaxy S22+ 5G Dual SIM TD-LTE CA 256GB", + "url": "/v1/smartphones/sm-s906w-galaxy-s22-5g-dual-sim-td-lte-ca-256gb" + }, + { + "slug": "sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-1tb", + "name": "SM-S9080 Galaxy S22 Ultra 5G UW Dual SIM TD-LTE CN HK TW 1TB", + "url": "/v1/smartphones/sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-1tb" + }, + { + "slug": "sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-256gb", + "name": "SM-S9080 Galaxy S22 Ultra 5G UW Dual SIM TD-LTE CN HK TW 256GB", + "url": "/v1/smartphones/sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-256gb" + }, + { + "slug": "sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-512gb", + "name": "SM-S9080 Galaxy S22 Ultra 5G UW Dual SIM TD-LTE CN HK TW 512GB", + "url": "/v1/smartphones/sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-512gb" + }, + { + "slug": "sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-128gb", + "name": "SM-S908B/DS Galaxy S22 Ultra 5G Dual SIM TD-LTE EU 128GB", + "url": "/v1/smartphones/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-128gb" + }, + { + "slug": "sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-1tb", + "name": "SM-S908B/DS Galaxy S22 Ultra 5G Dual SIM TD-LTE EU 1TB", + "url": "/v1/smartphones/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-1tb" + }, + { + "slug": "sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-256gb", + "name": "SM-S908B/DS Galaxy S22 Ultra 5G Dual SIM TD-LTE EU 256GB", + "url": "/v1/smartphones/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-256gb" + }, + { + "slug": "sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-512gb", + "name": "SM-S908B/DS Galaxy S22 Ultra 5G Dual SIM TD-LTE EU 512GB", + "url": "/v1/smartphones/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-512gb" + }, + { + "slug": "sm-s908d-galaxy-s22-ultra-5g-uw-td-lte-jp-256gb-sc-52c", + "name": "SM-S908D Galaxy S22 Ultra 5G UW TD-LTE JP 256GB SC-52C", + "url": "/v1/smartphones/sm-s908d-galaxy-s22-ultra-5g-uw-td-lte-jp-256gb-sc-52c" + }, + { + "slug": "sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-1tb", + "name": "SM-S908E/DS Galaxy S22 Ultra 5G Global Dual SIM TD-LTE 1TB", + "url": "/v1/smartphones/sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-1tb" + }, + { + "slug": "sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-256gb", + "name": "SM-S908E/DS Galaxy S22 Ultra 5G Global Dual SIM TD-LTE 256GB", + "url": "/v1/smartphones/sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-256gb" + }, + { + "slug": "sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-512gb", + "name": "SM-S908E/DS Galaxy S22 Ultra 5G Global Dual SIM TD-LTE 512GB", + "url": "/v1/smartphones/sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-512gb" + }, + { + "slug": "sm-s908j-galaxy-s22-ultra-5g-uw-td-lte-jp-256gb-scg14", + "name": "SM-S908J Galaxy S22 Ultra 5G UW TD-LTE JP 256GB SCG14", + "url": "/v1/smartphones/sm-s908j-galaxy-s22-ultra-5g-uw-td-lte-jp-256gb-scg14" + }, + { + "slug": "sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-1tb", + "name": "SM-S908N Galaxy S22 Ultra 5G UW TD-LTE KR 1TB", + "url": "/v1/smartphones/sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-1tb" + }, + { + "slug": "sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-256gb", + "name": "SM-S908N Galaxy S22 Ultra 5G UW TD-LTE KR 256GB", + "url": "/v1/smartphones/sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-256gb" + }, + { + "slug": "sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-512gb", + "name": "SM-S908N Galaxy S22 Ultra 5G UW TD-LTE KR 512GB", + "url": "/v1/smartphones/sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-512gb" + }, + { + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908a", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 128GB / SM-S908A", + "url": "/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908a" + }, + { + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908r4", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 128GB / SM-S908R4", + "url": "/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908r4" + }, + { + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908t", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 128GB / SM-S908T", + "url": "/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908t" + }, + { + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908v", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 128GB / SM-S908V", + "url": "/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908v" + }, + { + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908a", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 256GB / SM-S908A", + "url": "/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908a" + }, + { + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908r4", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 256GB / SM-S908R4", + "url": "/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908r4" + }, + { + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908t", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 256GB / SM-S908T", + "url": "/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908t" + }, + { + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908v", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 256GB / SM-S908V", + "url": "/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908v" + }, + { + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908a", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 512GB / SM-S908A", + "url": "/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908a" + }, + { + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908r4", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 512GB / SM-S908R4", + "url": "/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908r4" + }, + { + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908t", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 512GB / SM-S908T", + "url": "/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908t" + }, + { + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908v", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 512GB / SM-S908V", + "url": "/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908v" + }, + { + "slug": "sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb", + "name": "SM-S908U1 Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 128GB", + "url": "/v1/smartphones/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb" + }, + { + "slug": "sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-1tb", + "name": "SM-S908U1 Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 1TB", + "url": "/v1/smartphones/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-1tb" + }, + { + "slug": "sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb", + "name": "SM-S908U1 Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 256GB", + "url": "/v1/smartphones/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb" + }, + { + "slug": "sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb", + "name": "SM-S908U1 Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 512GB", + "url": "/v1/smartphones/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb" + }, + { + "slug": "sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-128gb", + "name": "SM-S908W Galaxy S22 Ultra 5G Dual SIM TD-LTE CA 128GB", + "url": "/v1/smartphones/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-128gb" + }, + { + "slug": "sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-1tb", + "name": "SM-S908W Galaxy S22 Ultra 5G Dual SIM TD-LTE CA 1TB", + "url": "/v1/smartphones/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-1tb" + }, + { + "slug": "sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-256gb", + "name": "SM-S908W Galaxy S22 Ultra 5G Dual SIM TD-LTE CA 256GB", + "url": "/v1/smartphones/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-256gb" + }, + { + "slug": "sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-512gb", + "name": "SM-S908W Galaxy S22 Ultra 5G Dual SIM TD-LTE CA 512GB", + "url": "/v1/smartphones/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-512gb" + }, + { + "slug": "sm-w2019-world-flagship-2019-dual-sim-td-lte-cn-128gb", + "name": "SM-W2019 World Flagship 2019 Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/sm-w2019-world-flagship-2019-dual-sim-td-lte-cn-128gb" + }, + { + "slug": "sm-w2019-world-flagship-2019-dual-sim-td-lte-cn-256gb", + "name": "SM-W2019 World Flagship 2019 Dual SIM TD-LTE CN 256GB", + "url": "/v1/smartphones/sm-w2019-world-flagship-2019-dual-sim-td-lte-cn-256gb" + }, + { + "slug": "sm-w2020-w20-5g-td-lte-cn-512gb", + "name": "SM-W2020 W20 5G TD-LTE CN 512GB", + "url": "/v1/smartphones/sm-w2020-w20-5g-td-lte-cn-512gb" + }, + { + "slug": "sm-w2021-w21-5g-dual-sim-td-lte-cn-512gb", + "name": "SM-W2021 W21 5G Dual SIM TD-LTE CN 512GB", + "url": "/v1/smartphones/sm-w2021-w21-5g-dual-sim-td-lte-cn-512gb" + }, + { + "slug": "sm-w2022-w22-5g-dual-sim-td-lte-cn-512gb", + "name": "SM-W2022 W22 5G Dual SIM TD-LTE CN 512GB", + "url": "/v1/smartphones/sm-w2022-w22-5g-dual-sim-td-lte-cn-512gb" + }, + { + "slug": "ss1805-q-stylus-td-lte-jp-801lg", + "name": "SS1805 Q Stylus TD-LTE JP 801LG", + "url": "/v1/smartphones/ss1805-q-stylus-td-lte-jp-801lg" + }, + { + "slug": "smart-3", + "name": "Smart 3", + "url": "/v1/smartphones/smart-3" + }, + { + "slug": "smart-3-dual-sim-lte-emea-x5516b", + "name": "Smart 3 Dual SIM LTE EMEA X5516B", + "url": "/v1/smartphones/smart-3-dual-sim-lte-emea-x5516b" + }, + { + "slug": "smart-3-dual-sim-td-lte-apac-x5516", + "name": "Smart 3 Dual SIM TD-LTE APAC X5516", + "url": "/v1/smartphones/smart-3-dual-sim-td-lte-apac-x5516" + }, + { + "slug": "smart-3-dual-sim-td-lte-apac-x5516b", + "name": "Smart 3 Dual SIM TD-LTE APAC X5516B", + "url": "/v1/smartphones/smart-3-dual-sim-td-lte-apac-x5516b" + }, + { + "slug": "smart-3-global-dual-sim-lte-x5516", + "name": "Smart 3 Global Dual SIM LTE X5516", + "url": "/v1/smartphones/smart-3-global-dual-sim-lte-x5516" + }, + { + "slug": "smart-3-plus", + "name": "Smart 3 Plus", + "url": "/v1/smartphones/smart-3-plus" + }, + { + "slug": "smart-3-plus-dual-sim-lte-emea-16gb", + "name": "Smart 3 Plus Dual SIM LTE EMEA 16GB", + "url": "/v1/smartphones/smart-3-plus-dual-sim-lte-emea-16gb" + }, + { + "slug": "smart-3-plus-dual-sim-td-lte-apac-32gb-x627", + "name": "Smart 3 Plus Dual SIM TD-LTE APAC 32GB X627", + "url": "/v1/smartphones/smart-3-plus-dual-sim-td-lte-apac-32gb-x627" + }, + { + "slug": "smart-3-plus-dual-sim-td-lte-apac-32gb-x627v", + "name": "Smart 3 Plus Dual SIM TD-LTE APAC 32GB X627V", + "url": "/v1/smartphones/smart-3-plus-dual-sim-td-lte-apac-32gb-x627v" + }, + { + "slug": "smart-3-plus-global-dual-sim-td-lte-32gb-x627", + "name": "Smart 3 Plus Global Dual SIM TD-LTE 32GB X627", + "url": "/v1/smartphones/smart-3-plus-global-dual-sim-td-lte-32gb-x627" + }, + { + "slug": "sony-xperia-1-ii", + "name": "Sony Xperia 1 II", + "url": "/v1/smartphones/sony-xperia-1-ii" + }, + { + "slug": "sony-xperia-1-iii", + "name": "Sony Xperia 1 III", + "url": "/v1/smartphones/sony-xperia-1-iii" + }, + { + "slug": "sony-xperia-1-iv", + "name": "Sony Xperia 1 IV", + "url": "/v1/smartphones/sony-xperia-1-iv" + }, + { + "slug": "sony-xperia-1-vii", + "name": "Sony Xperia 1 VII", + "url": "/v1/smartphones/sony-xperia-1-vii" + }, + { + "slug": "sony-xperia-5-ii", + "name": "Sony Xperia 5 II", + "url": "/v1/smartphones/sony-xperia-5-ii" + }, + { + "slug": "sony-xperia-5-iii", + "name": "Sony Xperia 5 III", + "url": "/v1/smartphones/sony-xperia-5-iii" + }, + { + "slug": "sony-xperia-5-iv", + "name": "Sony Xperia 5 IV", + "url": "/v1/smartphones/sony-xperia-5-iv" + }, + { + "slug": "sony-xperia-pro-i", + "name": "Sony Xperia Pro-I", + "url": "/v1/smartphones/sony-xperia-pro-i" + }, + { + "slug": "sony-xperia-xz1", + "name": "Sony Xperia XZ1", + "url": "/v1/smartphones/sony-xperia-xz1" + }, + { + "slug": "sony-xperia-xz2", + "name": "Sony Xperia XZ2", + "url": "/v1/smartphones/sony-xperia-xz2" + }, + { + "slug": "sony-xperia-xz3", + "name": "Sony Xperia XZ3", + "url": "/v1/smartphones/sony-xperia-xz3" + }, + { + "slug": "sony-xperia-z", + "name": "Sony Xperia Z", + "url": "/v1/smartphones/sony-xperia-z" + }, + { + "slug": "sony-xperia-z1", + "name": "Sony Xperia Z1", + "url": "/v1/smartphones/sony-xperia-z1" + }, + { + "slug": "sony-xperia-z2", + "name": "Sony Xperia Z2", + "url": "/v1/smartphones/sony-xperia-z2" + }, + { + "slug": "sony-xperia-z3", + "name": "Sony Xperia Z3", + "url": "/v1/smartphones/sony-xperia-z3" + }, + { + "slug": "sony-xperia-z5", + "name": "Sony Xperia Z5", + "url": "/v1/smartphones/sony-xperia-z5" + }, + { + "slug": "spark-20", + "name": "Spark 20", + "url": "/v1/smartphones/spark-20" + }, + { + "slug": "spark-20-pro-5g", + "name": "Spark 20 Pro 5G", + "url": "/v1/smartphones/spark-20-pro-5g" + }, + { + "slug": "spark-20-pro", + "name": "Spark 20 Pro+", + "url": "/v1/smartphones/spark-20-pro" + }, + { + "slug": "spark-20c", + "name": "Spark 20C", + "url": "/v1/smartphones/spark-20c" + }, + { + "slug": "spark-20p", + "name": "Spark 20P", + "url": "/v1/smartphones/spark-20p" + }, + { + "slug": "spark-30", + "name": "Spark 30", + "url": "/v1/smartphones/spark-30" + }, + { + "slug": "spark-30-pro", + "name": "Spark 30 Pro", + "url": "/v1/smartphones/spark-30-pro" + }, + { + "slug": "spark-30c", + "name": "Spark 30C", + "url": "/v1/smartphones/spark-30c" + }, + { + "slug": "spark-30c-5g", + "name": "Spark 30C 5G", + "url": "/v1/smartphones/spark-30c-5g" + }, + { + "slug": "spark-5-dual-sim-td-lte", + "name": "Spark 5 Dual SIM TD-LTE", + "url": "/v1/smartphones/spark-5-dual-sim-td-lte" + }, + { + "slug": "spark-5-pro-dual-sim-td-lte", + "name": "Spark 5 Pro Dual SIM TD-LTE", + "url": "/v1/smartphones/spark-5-pro-dual-sim-td-lte" + }, + { + "slug": "spark-go-1s", + "name": "Spark Go 1S", + "url": "/v1/smartphones/spark-go-1s" + }, + { + "slug": "spark-power-2-dual-sim-td-lte-lc8", + "name": "Spark Power 2 Dual SIM TD-LTE LC8", + "url": "/v1/smartphones/spark-power-2-dual-sim-td-lte-lc8" + }, + { + "slug": "stylo-6", + "name": "Stylo 6", + "url": "/v1/smartphones/stylo-6" + }, + { + "slug": "surface-duo-2-5g-global-td-lte-128gb-1968", + "name": "Surface Duo 2 5G Global TD-LTE 128GB 1968", + "url": "/v1/smartphones/surface-duo-2-5g-global-td-lte-128gb-1968" + }, + { + "slug": "surface-duo-2-5g-global-td-lte-256gb-1968", + "name": "Surface Duo 2 5G Global TD-LTE 256GB 1968", + "url": "/v1/smartphones/surface-duo-2-5g-global-td-lte-256gb-1968" + }, + { + "slug": "surface-duo-2-5g-global-td-lte-512gb-1968", + "name": "Surface Duo 2 5G Global TD-LTE 512GB 1968", + "url": "/v1/smartphones/surface-duo-2-5g-global-td-lte-512gb-1968" + }, + { + "slug": "surface-duo-global-td-lte-128gb", + "name": "Surface Duo Global TD-LTE 128GB", + "url": "/v1/smartphones/surface-duo-global-td-lte-128gb" + }, + { + "slug": "surface-duo-global-td-lte-256gb", + "name": "Surface Duo Global TD-LTE 256GB", + "url": "/v1/smartphones/surface-duo-global-td-lte-256gb" + }, + { + "slug": "surface-duo-td-lte-us-128gb", + "name": "Surface Duo TD-LTE US 128GB", + "url": "/v1/smartphones/surface-duo-td-lte-us-128gb" + }, + { + "slug": "surface-duo-td-lte-us-256gb", + "name": "Surface Duo TD-LTE US 256GB", + "url": "/v1/smartphones/surface-duo-td-lte-us-256gb" + }, + { + "slug": "t1-5g", + "name": "T1 5G", + "url": "/v1/smartphones/t1-5g" + }, + { + "slug": "t2-global-dual-sim-lte", + "name": "T2 Global Dual SIM LTE", + "url": "/v1/smartphones/t2-global-dual-sim-lte" + }, + { + "slug": "t2-series", + "name": "T2 Series", + "url": "/v1/smartphones/t2-series" + }, + { + "slug": "t3-5g", + "name": "T3 5G", + "url": "/v1/smartphones/t3-5g" + }, + { + "slug": "td-tech-m40", + "name": "TD Tech M40", + "url": "/v1/smartphones/td-tech-m40" + }, + { + "slug": "td-tech-p50", + "name": "TD Tech P50", + "url": "/v1/smartphones/td-tech-p50" + }, + { + "slug": "tempo-go-td-lte-n9137go", + "name": "Tempo Go TD-LTE N9137GO", + "url": "/v1/smartphones/tempo-go-td-lte-n9137go" + }, + { + "slug": "tianji-a31-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb", + "name": "Tianji A31 Pro 5G Premium Edition Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/tianji-a31-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb" + }, + { + "slug": "tianji-a31-ultra-5g-dual-sim-td-lte-cn-512gb", + "name": "Tianji A31 Ultra 5G Dual SIM TD-LTE CN 512GB", + "url": "/v1/smartphones/tianji-a31-ultra-5g-dual-sim-td-lte-cn-512gb" + }, + { + "slug": "titan-global-dual-sim-td-lte", + "name": "Titan Global Dual SIM TD-LTE", + "url": "/v1/smartphones/titan-global-dual-sim-td-lte" + }, + { + "slug": "tommy-lte-apac-m1563", + "name": "Tommy LTE APAC M1563", + "url": "/v1/smartphones/tommy-lte-apac-m1563" + }, + { + "slug": "torque-g04-wimax-2-kyv46", + "name": "Torque G04 WiMAX 2+ KYV46", + "url": "/v1/smartphones/torque-g04-wimax-2-kyv46" + }, + { + "slug": "u11-td-lte-64gb-u-3u", + "name": "U11 TD-LTE 64GB U-3u", + "url": "/v1/smartphones/u11-td-lte-64gb-u-3u" + }, + { + "slug": "u12-life-global-dual-sim-td-lte", + "name": "U12 life Global Dual SIM TD-LTE", + "url": "/v1/smartphones/u12-life-global-dual-sim-td-lte" + }, + { + "slug": "u12-dual-sim-td-lte-128gb", + "name": "U12+ Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/u12-dual-sim-td-lte-128gb" + }, + { + "slug": "u12-dual-sim-td-lte-64gb", + "name": "U12+ Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/u12-dual-sim-td-lte-64gb" + }, + { + "slug": "u12-dual-sim-td-lte-cn-128gb", + "name": "U12+ Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/u12-dual-sim-td-lte-cn-128gb" + }, + { + "slug": "u12-mayday-limited-edition-dual-sim-td-lte", + "name": "U12+ Mayday Limited Edition Dual SIM TD-LTE", + "url": "/v1/smartphones/u12-mayday-limited-edition-dual-sim-td-lte" + }, + { + "slug": "u12-td-lte-jp-128gb", + "name": "U12+ TD-LTE JP 128GB", + "url": "/v1/smartphones/u12-td-lte-jp-128gb" + }, + { + "slug": "u12-td-lte-na-128gb", + "name": "U12+ TD-LTE NA 128GB", + "url": "/v1/smartphones/u12-td-lte-na-128gb" + }, + { + "slug": "u12-td-lte-na-64gb", + "name": "U12+ TD-LTE NA 64GB", + "url": "/v1/smartphones/u12-td-lte-na-64gb" + }, + { + "slug": "u19e-global-dual-sim-td-lte", + "name": "U19e Global Dual SIM TD-LTE", + "url": "/v1/smartphones/u19e-global-dual-sim-td-lte" + }, + { + "slug": "u20", + "name": "U20", + "url": "/v1/smartphones/u20" + }, + { + "slug": "u20-5g-dual-sim-lte-global", + "name": "U20 5G Dual SIM LTE Global", + "url": "/v1/smartphones/u20-5g-dual-sim-lte-global" + }, + { + "slug": "u30-dual-sim-td-lte", + "name": "U30 Dual SIM TD-LTE", + "url": "/v1/smartphones/u30-dual-sim-td-lte" + }, + { + "slug": "us998r-v30s-thinq-td-lte-us", + "name": "US998R V30S ThinQ TD-LTE US", + "url": "/v1/smartphones/us998r-v30s-thinq-td-lte-us" + }, + { + "slug": "urbano-v04-wimax-2-kyv45", + "name": "Urbano V04 WiMAX 2+ KYV45", + "url": "/v1/smartphones/urbano-v04-wimax-2-kyv45" + }, + { + "slug": "v0210ww-vivo-xl-3-plus-dual-sim-lte", + "name": "V0210WW Vivo XL 3 Plus Dual SIM LTE", + "url": "/v1/smartphones/v0210ww-vivo-xl-3-plus-dual-sim-lte" + }, + { + "slug": "v0350ww-vivo-xl-4-dual-sim-lte", + "name": "V0350WW Vivo XL 4 Dual SIM LTE", + "url": "/v1/smartphones/v0350ww-vivo-xl-4-dual-sim-lte" + }, + { + "slug": "v1010-blade-v10-dual-sim-td-lte-cn-128gb", + "name": "V1010 Blade V10 Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/v1010-blade-v10-dual-sim-td-lte-cn-128gb" + }, + { + "slug": "v1010-blade-v10-dual-sim-td-lte-cn-32gb", + "name": "V1010 Blade V10 Dual SIM TD-LTE CN 32GB", + "url": "/v1/smartphones/v1010-blade-v10-dual-sim-td-lte-cn-32gb" + }, + { + "slug": "v1010-blade-v10-dual-sim-td-lte-cn-64gb", + "name": "V1010 Blade V10 Dual SIM TD-LTE CN 64GB", + "url": "/v1/smartphones/v1010-blade-v10-dual-sim-td-lte-cn-64gb" + }, + { + "slug": "v1010-blade-v10-global-dual-sim-td-lte-64gb-blade-10", + "name": "V1010 Blade V10 Global Dual SIM TD-LTE 64GB / Blade 10", + "url": "/v1/smartphones/v1010-blade-v10-global-dual-sim-td-lte-64gb-blade-10" + }, + { + "slug": "v1050-blade-20-smart-td-lte-cn-128gb", + "name": "V1050 Blade 20 Smart TD-LTE CN 128GB", + "url": "/v1/smartphones/v1050-blade-20-smart-td-lte-cn-128gb" + }, + { + "slug": "v15", + "name": "V15", + "url": "/v1/smartphones/v15" + }, + { + "slug": "v15-pro", + "name": "V15 Pro", + "url": "/v1/smartphones/v15-pro" + }, + { + "slug": "v17-pro", + "name": "V17 Pro", + "url": "/v1/smartphones/v17-pro" + }, + { + "slug": "v19", + "name": "V19", + "url": "/v1/smartphones/v19" + }, + { + "slug": "v20-pro", + "name": "V20 Pro", + "url": "/v1/smartphones/v20-pro" + }, + { + "slug": "v23-5g", + "name": "V23 5G", + "url": "/v1/smartphones/v23-5g" + }, + { + "slug": "v23e", + "name": "V23e", + "url": "/v1/smartphones/v23e" + }, + { + "slug": "v25-pro", + "name": "V25 Pro", + "url": "/v1/smartphones/v25-pro" + }, + { + "slug": "v27", + "name": "V27", + "url": "/v1/smartphones/v27" + }, + { + "slug": "v27-pro", + "name": "V27 Pro", + "url": "/v1/smartphones/v27-pro" + }, + { + "slug": "v30-pro", + "name": "V30 Pro", + "url": "/v1/smartphones/v30-pro" + }, + { + "slug": "v300k-v30-signature-edition-td-lte-256gb", + "name": "V300K V30 Signature Edition TD-LTE 256GB", + "url": "/v1/smartphones/v300k-v30-signature-edition-td-lte-256gb" + }, + { + "slug": "v300k-v30-td-lte", + "name": "V300K V30+ TD-LTE", + "url": "/v1/smartphones/v300k-v30-td-lte" + }, + { + "slug": "v300kr-v30s-thinq-td-lte", + "name": "V300KR V30S ThinQ TD-LTE", + "url": "/v1/smartphones/v300kr-v30s-thinq-td-lte" + }, + { + "slug": "v300kw-v30s-thinq-td-lte", + "name": "V300KW V30S+ ThinQ TD-LTE", + "url": "/v1/smartphones/v300kw-v30s-thinq-td-lte" + }, + { + "slug": "v300l-v30-td-lte", + "name": "V300L V30+ TD-LTE", + "url": "/v1/smartphones/v300l-v30-td-lte" + }, + { + "slug": "v300l-v30s-thinq-td-lte", + "name": "V300L V30S ThinQ TD-LTE", + "url": "/v1/smartphones/v300l-v30s-thinq-td-lte" + }, + { + "slug": "v300lw-v30s-thinq-td-lte", + "name": "V300LW V30S+ ThinQ TD-LTE", + "url": "/v1/smartphones/v300lw-v30s-thinq-td-lte" + }, + { + "slug": "v300s-v30-signature-edition-td-lte-256gb", + "name": "V300S V30 Signature Edition TD-LTE 256GB", + "url": "/v1/smartphones/v300s-v30-signature-edition-td-lte-256gb" + }, + { + "slug": "v300s-v30s-thinq-td-lte", + "name": "V300S V30S ThinQ TD-LTE", + "url": "/v1/smartphones/v300s-v30s-thinq-td-lte" + }, + { + "slug": "v300sw-v30s-thinq-td-lte", + "name": "V300SW V30S+ ThinQ TD-LTE", + "url": "/v1/smartphones/v300sw-v30s-thinq-td-lte" + }, + { + "slug": "v350awm-v35-thinq-td-lte-us-lmv350awm-lmv350awa-lmv350aws", + "name": "V350AWM V35 ThinQ TD-LTE US / LMV350AWM / LMV350AWA / LMV350AWS", + "url": "/v1/smartphones/v350awm-v35-thinq-td-lte-us-lmv350awm-lmv350awa-lmv350aws" + }, + { + "slug": "v350n-v35-signature-edition-td-lte-kr-lmv350nos", + "name": "V350N V35 Signature Edition TD-LTE KR / LMV350NOS", + "url": "/v1/smartphones/v350n-v35-signature-edition-td-lte-kr-lmv350nos" + }, + { + "slug": "v350n-v35-thinq-td-lte-kr-lmv350no", + "name": "V350N V35 ThinQ TD-LTE KR / LMV350NO", + "url": "/v1/smartphones/v350n-v35-thinq-td-lte-kr-lmv350no" + }, + { + "slug": "v350ulm-v35-thinq-td-lte-us-lmv350ulm-lmv350ula-lmv350uls", + "name": "V350ULM V35 ThinQ TD-LTE US / LMV350ULM / LMV350ULA / LMV350ULS", + "url": "/v1/smartphones/v350ulm-v35-thinq-td-lte-us-lmv350ulm-lmv350ula-lmv350uls" + }, + { + "slug": "v40", + "name": "V40", + "url": "/v1/smartphones/v40" + }, + { + "slug": "v405qa7-v40-thinq-td-lte-us", + "name": "V405QA7 V40 ThinQ TD-LTE US", + "url": "/v1/smartphones/v405qa7-v40-thinq-td-lte-us" + }, + { + "slug": "v405tab-v40-thinq-td-lte-us-v405ta", + "name": "V405TAB V40 ThinQ TD-LTE US / V405TA", + "url": "/v1/smartphones/v405tab-v40-thinq-td-lte-us-v405ta" + }, + { + "slug": "v405ua-v40-thinq-sprint-td-lte-us", + "name": "V405UA V40 ThinQ Sprint TD-LTE US", + "url": "/v1/smartphones/v405ua-v40-thinq-sprint-td-lte-us" + }, + { + "slug": "v405ua-v40-thinq-td-lte-us", + "name": "V405UA V40 ThinQ TD-LTE US", + "url": "/v1/smartphones/v405ua-v40-thinq-td-lte-us" + }, + { + "slug": "v405ua0-v40-thinq-usc-lte-a-us", + "name": "V405UA0 V40 ThinQ USC LTE-A US", + "url": "/v1/smartphones/v405ua0-v40-thinq-usc-lte-a-us" + }, + { + "slug": "v405uab-v40-thinq-vzw-lte-a-us", + "name": "V405UAB V40 ThinQ VZW LTE-A US", + "url": "/v1/smartphones/v405uab-v40-thinq-vzw-lte-a-us" + }, + { + "slug": "v409n-v40-thinq-td-lte-kr-128gb", + "name": "V409N V40 ThinQ TD-LTE KR 128GB", + "url": "/v1/smartphones/v409n-v40-thinq-td-lte-kr-128gb" + }, + { + "slug": "v40e", + "name": "V40e", + "url": "/v1/smartphones/v40e" + }, + { + "slug": "v5-plus", + "name": "V5 Plus", + "url": "/v1/smartphones/v5-plus" + }, + { + "slug": "v500n-v50-thinq-5g-td-lte-kr", + "name": "V500N V50 ThinQ 5G TD-LTE KR", + "url": "/v1/smartphones/v500n-v50-thinq-5g-td-lte-kr" + }, + { + "slug": "v510n-v50s-thinq-5g-uw-td-lte-kr", + "name": "V510N V50S ThinQ 5G UW TD-LTE KR", + "url": "/v1/smartphones/v510n-v50s-thinq-5g-uw-td-lte-kr" + }, + { + "slug": "v60-thinq-5g", + "name": "V60 ThinQ 5G", + "url": "/v1/smartphones/v60-thinq-5g" + }, + { + "slug": "v60-thinq-5g-td-lte-jp-a001lg", + "name": "V60 ThinQ 5G TD-LTE JP A001LG", + "url": "/v1/smartphones/v60-thinq-5g-td-lte-jp-a001lg" + }, + { + "slug": "v60-thinq-5g-td-lte-jp-l-51a", + "name": "V60 ThinQ 5G TD-LTE JP L-51A", + "url": "/v1/smartphones/v60-thinq-5g-td-lte-jp-l-51a" + }, + { + "slug": "v8-pro-dual-sim-td-lte-cn-m813q", + "name": "V8 Pro Dual SIM TD-LTE CN M813Q", + "url": "/v1/smartphones/v8-pro-dual-sim-td-lte-cn-m813q" + }, + { + "slug": "velvet-5g", + "name": "Velvet 5G", + "url": "/v1/smartphones/velvet-5g" + }, + { + "slug": "velvet-5g-td-lte-jp-l-52a", + "name": "Velvet 5G TD-LTE JP L-52A", + "url": "/v1/smartphones/velvet-5g-td-lte-jp-l-52a" + }, + { + "slug": "view-2-dual-sim-lte-a-m2124", + "name": "View 2 Dual SIM LTE-A M2124", + "url": "/v1/smartphones/view-2-dual-sim-lte-a-m2124" + }, + { + "slug": "view-2-go-dual-sim-lte-a-m2354", + "name": "View 2 GO Dual SIM LTE-A M2354", + "url": "/v1/smartphones/view-2-go-dual-sim-lte-a-m2354" + }, + { + "slug": "view-2-plus-dual-sim-td-lte-m2356", + "name": "View 2 Plus Dual SIM TD-LTE M2356", + "url": "/v1/smartphones/view-2-plus-dual-sim-td-lte-m2356" + }, + { + "slug": "view-2-pro-dual-sim-lte-a-m2123", + "name": "View 2 Pro Dual SIM LTE-A M2123", + "url": "/v1/smartphones/view-2-pro-dual-sim-lte-a-m2123" + }, + { + "slug": "view-3-dual-sim-td-lte-m2684", + "name": "View 3 Dual SIM TD-LTE M2684", + "url": "/v1/smartphones/view-3-dual-sim-td-lte-m2684" + }, + { + "slug": "view-3-pro-dual-sim-td-lte-128gb-m2766", + "name": "View 3 Pro Dual SIM TD-LTE 128GB M2766", + "url": "/v1/smartphones/view-3-pro-dual-sim-td-lte-128gb-m2766" + }, + { + "slug": "view-3-pro-dual-sim-td-lte-64gb-m2766", + "name": "View 3 Pro Dual SIM TD-LTE 64GB M2766", + "url": "/v1/smartphones/view-3-pro-dual-sim-td-lte-64gb-m2766" + }, + { + "slug": "view-4-lite-global-dual-sim-td-lte-m2902-m2937", + "name": "View 4 Lite Global Dual SIM TD-LTE M2902 / M2937", + "url": "/v1/smartphones/view-4-lite-global-dual-sim-td-lte-m2902-m2937" + }, + { + "slug": "view-5-dual-sim-td-lte-64gb-m2976", + "name": "View 5 Dual SIM TD-LTE 64GB M2976", + "url": "/v1/smartphones/view-5-dual-sim-td-lte-64gb-m2976" + }, + { + "slug": "view-5-plus-dual-sim-td-lte-128gb-m2907", + "name": "View 5 Plus Dual SIM TD-LTE 128GB M2907", + "url": "/v1/smartphones/view-5-plus-dual-sim-td-lte-128gb-m2907" + }, + { + "slug": "view-dual-sim-lte-16gb-m1825", + "name": "View Dual SIM LTE 16GB M1825", + "url": "/v1/smartphones/view-dual-sim-lte-16gb-m1825" + }, + { + "slug": "vivo-g1-5g-dual-sim-td-lte-cn-128gb-v1962ba", + "name": "Vivo G1 5G Dual SIM TD-LTE CN 128GB V1962BA", + "url": "/v1/smartphones/vivo-g1-5g-dual-sim-td-lte-cn-128gb-v1962ba" + }, + { + "slug": "vivo-nex-3-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1924a", + "name": "Vivo Nex 3 5G Premium Edition Dual SIM TD-LTE CN 256GB V1924A", + "url": "/v1/smartphones/vivo-nex-3-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1924a" + }, + { + "slug": "vivo-nex-3-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1924a", + "name": "Vivo Nex 3 5G Standard Edition Dual SIM TD-LTE CN 256GB V1924A", + "url": "/v1/smartphones/vivo-nex-3-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1924a" + }, + { + "slug": "vivo-nex-3-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1924t", + "name": "Vivo Nex 3 5G Standard Edition Dual SIM TD-LTE CN 256GB V1924T", + "url": "/v1/smartphones/vivo-nex-3-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1924t" + }, + { + "slug": "vivo-nex-3-5g-standard-edition-global-dual-sim-td-lte-256gb-1913", + "name": "Vivo Nex 3 5G Standard Edition Global Dual SIM TD-LTE 256GB 1913", + "url": "/v1/smartphones/vivo-nex-3-5g-standard-edition-global-dual-sim-td-lte-256gb-1913" + }, + { + "slug": "vivo-nex-3-dual-sim-td-lte-cn-128gb-v1923a", + "name": "Vivo Nex 3 Dual SIM TD-LTE CN 128GB V1923A", + "url": "/v1/smartphones/vivo-nex-3-dual-sim-td-lte-cn-128gb-v1923a" + }, + { + "slug": "vivo-nex-3-dual-sim-td-lte-cn-128gb-v1923t", + "name": "Vivo Nex 3 Dual SIM TD-LTE CN 128GB V1923T", + "url": "/v1/smartphones/vivo-nex-3-dual-sim-td-lte-cn-128gb-v1923t" + }, + { + "slug": "vivo-nex-3-global-dual-sim-td-lte-128gb-1912", + "name": "Vivo Nex 3 Global Dual SIM TD-LTE 128GB 1912", + "url": "/v1/smartphones/vivo-nex-3-global-dual-sim-td-lte-128gb-1912" + }, + { + "slug": "vivo-nex-3-global-dual-sim-td-lte-256gb-1912", + "name": "Vivo Nex 3 Global Dual SIM TD-LTE 256GB 1912", + "url": "/v1/smartphones/vivo-nex-3-global-dual-sim-td-lte-256gb-1912" + }, + { + "slug": "vivo-nex-3s-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1950a", + "name": "Vivo Nex 3S 5G Premium Edition Dual SIM TD-LTE CN 256GB V1950A", + "url": "/v1/smartphones/vivo-nex-3s-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1950a" + }, + { + "slug": "vivo-nex-3s-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1950a", + "name": "Vivo Nex 3S 5G Standard Edition Dual SIM TD-LTE CN 256GB V1950A", + "url": "/v1/smartphones/vivo-nex-3s-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1950a" + }, + { + "slug": "vivo-nex-a-dual-sim-td-lte-cn-128gb", + "name": "Vivo Nex A Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/vivo-nex-a-dual-sim-td-lte-cn-128gb" + }, + { + "slug": "vivo-nex-dual-display-edition-dual-sim-td-lte-cn-128gb-v1821a", + "name": "Vivo Nex Dual Display Edition Dual SIM TD-LTE CN 128GB V1821A", + "url": "/v1/smartphones/vivo-nex-dual-display-edition-dual-sim-td-lte-cn-128gb-v1821a" + }, + { + "slug": "vivo-nex-dual-display-edition-dual-sim-td-lte-cn-128gb-v1821t", + "name": "Vivo Nex Dual Display Edition Dual SIM TD-LTE CN 128GB V1821T", + "url": "/v1/smartphones/vivo-nex-dual-display-edition-dual-sim-td-lte-cn-128gb-v1821t" + }, + { + "slug": "vivo-nex-dual-display-edition-dual-sim-td-lte-tw-hk-my-128gb-1813", + "name": "Vivo Nex Dual Display Edition Dual SIM TD-LTE TW HK MY 128GB 1813", + "url": "/v1/smartphones/vivo-nex-dual-display-edition-dual-sim-td-lte-tw-hk-my-128gb-1813" + }, + { + "slug": "vivo-nex-dual-sim-td-lte-cn-128gb", + "name": "Vivo Nex Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/vivo-nex-dual-sim-td-lte-cn-128gb" + }, + { + "slug": "vivo-nex-global-dual-sim-td-lte-128gb-1805", + "name": "Vivo Nex Global Dual SIM TD-LTE 128GB 1805", + "url": "/v1/smartphones/vivo-nex-global-dual-sim-td-lte-128gb-1805" + }, + { + "slug": "vivo-nex-s-dual-sim-td-lte-cn-128gb", + "name": "Vivo Nex S Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/vivo-nex-s-dual-sim-td-lte-cn-128gb" + }, + { + "slug": "vivo-nex-s-dual-sim-td-lte-cn-256gb-nex-ultimate", + "name": "Vivo Nex S Dual SIM TD-LTE CN 256GB / NEX Ultimate", + "url": "/v1/smartphones/vivo-nex-s-dual-sim-td-lte-cn-256gb-nex-ultimate" + }, + { + "slug": "vivo-s1-dual-sim-td-lte-au-ph-sg-128gb-1907", + "name": "Vivo S1 Dual SIM TD-LTE AU PH SG 128GB 1907", + "url": "/v1/smartphones/vivo-s1-dual-sim-td-lte-au-ph-sg-128gb-1907" + }, + { + "slug": "vivo-s1-dual-sim-td-lte-cn-128gb-v1831a-vivo-z5", + "name": "Vivo S1 Dual SIM TD-LTE CN 128GB V1831A / Vivo Z5", + "url": "/v1/smartphones/vivo-s1-dual-sim-td-lte-cn-128gb-v1831a-vivo-z5" + }, + { + "slug": "vivo-s1-dual-sim-td-lte-cn-128gb-v1831t", + "name": "Vivo S1 Dual SIM TD-LTE CN 128GB V1831T", + "url": "/v1/smartphones/vivo-s1-dual-sim-td-lte-cn-128gb-v1831t" + }, + { + "slug": "vivo-s1-dual-sim-td-lte-hk-128gb-1907", + "name": "Vivo S1 Dual SIM TD-LTE HK 128GB 1907", + "url": "/v1/smartphones/vivo-s1-dual-sim-td-lte-hk-128gb-1907" + }, + { + "slug": "vivo-s1-dual-sim-td-lte-id-128gb-1907", + "name": "Vivo S1 Dual SIM TD-LTE ID 128GB 1907", + "url": "/v1/smartphones/vivo-s1-dual-sim-td-lte-id-128gb-1907" + }, + { + "slug": "vivo-s1-dual-sim-td-lte-in-128gb-1907", + "name": "Vivo S1 Dual SIM TD-LTE IN 128GB 1907", + "url": "/v1/smartphones/vivo-s1-dual-sim-td-lte-in-128gb-1907" + }, + { + "slug": "vivo-s1-dual-sim-td-lte-in-64gb-1907", + "name": "Vivo S1 Dual SIM TD-LTE IN 64GB 1907", + "url": "/v1/smartphones/vivo-s1-dual-sim-td-lte-in-64gb-1907" + }, + { + "slug": "vivo-s1-dual-sim-td-lte-th-vn-my-128gb-1907", + "name": "Vivo S1 Dual SIM TD-LTE TH VN MY 128GB 1907", + "url": "/v1/smartphones/vivo-s1-dual-sim-td-lte-th-vn-my-128gb-1907" + }, + { + "slug": "vivo-s1-prime-dual-sim-td-lte-apac-128gb-v1937", + "name": "Vivo S1 Prime Dual SIM TD-LTE APAC 128GB V1937", + "url": "/v1/smartphones/vivo-s1-prime-dual-sim-td-lte-apac-128gb-v1937" + }, + { + "slug": "vivo-s1-pro-dual-sim-td-lte-id-bd-np-128gb-1920", + "name": "Vivo S1 Pro Dual SIM TD-LTE ID BD NP 128GB 1920", + "url": "/v1/smartphones/vivo-s1-pro-dual-sim-td-lte-id-bd-np-128gb-1920" + }, + { + "slug": "vivo-s1-pro-dual-sim-td-lte-my-vn-in-128gb-1920", + "name": "Vivo S1 Pro Dual SIM TD-LTE MY VN IN 128GB 1920", + "url": "/v1/smartphones/vivo-s1-pro-dual-sim-td-lte-my-vn-in-128gb-1920" + }, + { + "slug": "vivo-s1-pro-dual-sim-td-lte-th-ph-128gb-1920", + "name": "Vivo S1 Pro Dual SIM TD-LTE TH PH 128GB 1920", + "url": "/v1/smartphones/vivo-s1-pro-dual-sim-td-lte-th-ph-128gb-1920" + }, + { + "slug": "vivo-s1-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1832a", + "name": "Vivo S1 Pro Premium Edition Dual SIM TD-LTE CN 128GB V1832A", + "url": "/v1/smartphones/vivo-s1-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1832a" + }, + { + "slug": "vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1832a", + "name": "Vivo S1 Pro Standard Edition Dual SIM TD-LTE CN 128GB V1832A", + "url": "/v1/smartphones/vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1832a" + }, + { + "slug": "vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1832t", + "name": "Vivo S1 Pro Standard Edition Dual SIM TD-LTE CN 128GB V1832T", + "url": "/v1/smartphones/vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1832t" + }, + { + "slug": "vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-256gb-v1832a", + "name": "Vivo S1 Pro Standard Edition Dual SIM TD-LTE CN 256GB V1832A", + "url": "/v1/smartphones/vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-256gb-v1832a" + }, + { + "slug": "vivo-s10-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2121a", + "name": "Vivo S10 5G 2021 Standard Edition Dual SIM TD-LTE CN 128GB V2121A", + "url": "/v1/smartphones/vivo-s10-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2121a" + }, + { + "slug": "vivo-s10-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-v2121a", + "name": "Vivo S10 5G 2021 Standard Edition Dual SIM TD-LTE CN 256GB V2121A", + "url": "/v1/smartphones/vivo-s10-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-v2121a" + }, + { + "slug": "vivo-s10-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-v2121a", + "name": "Vivo S10 Pro 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB V2121A", + "url": "/v1/smartphones/vivo-s10-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-v2121a" + }, + { + "slug": "vivo-s10-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2121a", + "name": "Vivo S10 Pro 5G 2021 Standard Edition Dual SIM TD-LTE CN 128GB V2121A", + "url": "/v1/smartphones/vivo-s10-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2121a" + }, + { + "slug": "vivo-s5-dual-sim-td-lte-cn-128gb-v1932a", + "name": "Vivo S5 Dual SIM TD-LTE CN 128GB V1932A", + "url": "/v1/smartphones/vivo-s5-dual-sim-td-lte-cn-128gb-v1932a" + }, + { + "slug": "vivo-s5-dual-sim-td-lte-cn-128gb-v1932t", + "name": "Vivo S5 Dual SIM TD-LTE CN 128GB V1932T", + "url": "/v1/smartphones/vivo-s5-dual-sim-td-lte-cn-128gb-v1932t" + }, + { + "slug": "vivo-s6-5g-dual-sim-td-lte-cn-128gb-v1962a", + "name": "Vivo S6 5G Dual SIM TD-LTE CN 128GB V1962A", + "url": "/v1/smartphones/vivo-s6-5g-dual-sim-td-lte-cn-128gb-v1962a" + }, + { + "slug": "vivo-s6-5g-dual-sim-td-lte-cn-256gb-v1962a", + "name": "Vivo S6 5G Dual SIM TD-LTE CN 256GB V1962A", + "url": "/v1/smartphones/vivo-s6-5g-dual-sim-td-lte-cn-256gb-v1962a" + }, + { + "slug": "vivo-s7-5g-dual-sim-td-lte-cn-128gb-v2020a-v2020ca", + "name": "Vivo S7 5G Dual SIM TD-LTE CN 128GB V2020A / V2020CA", + "url": "/v1/smartphones/vivo-s7-5g-dual-sim-td-lte-cn-128gb-v2020a-v2020ca" + }, + { + "slug": "vivo-s7-5g-dual-sim-td-lte-cn-256gb-v2020a", + "name": "Vivo S7 5G Dual SIM TD-LTE CN 256GB V2020A", + "url": "/v1/smartphones/vivo-s7-5g-dual-sim-td-lte-cn-256gb-v2020a" + }, + { + "slug": "vivo-s7e-5g-2020-dual-sim-td-lte-cn-128gb-v2031ea", + "name": "Vivo S7e 5G 2020 Dual SIM TD-LTE CN 128GB V2031EA", + "url": "/v1/smartphones/vivo-s7e-5g-2020-dual-sim-td-lte-cn-128gb-v2031ea" + }, + { + "slug": "vivo-s9-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-v2072a", + "name": "Vivo S9 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB V2072A", + "url": "/v1/smartphones/vivo-s9-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-v2072a" + }, + { + "slug": "vivo-s9-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2072a", + "name": "Vivo S9 5G 2021 Standard Edition Dual SIM TD-LTE CN 128GB V2072A", + "url": "/v1/smartphones/vivo-s9-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2072a" + }, + { + "slug": "vivo-s9e-5g-2020-dual-sim-td-lte-cn-128gb-v2048a", + "name": "Vivo S9e 5G 2020 Dual SIM TD-LTE CN 128GB V2048A", + "url": "/v1/smartphones/vivo-s9e-5g-2020-dual-sim-td-lte-cn-128gb-v2048a" + }, + { + "slug": "vivo-s9e-5g-2020-dual-sim-td-lte-cn-256gb-v2048a", + "name": "Vivo S9e 5G 2020 Dual SIM TD-LTE CN 256GB V2048A", + "url": "/v1/smartphones/vivo-s9e-5g-2020-dual-sim-td-lte-cn-256gb-v2048a" + }, + { + "slug": "vivo-u1-premium-edition-dual-sim-td-lte-cn-64gb-v1818a", + "name": "Vivo U1 Premium Edition Dual SIM TD-LTE CN 64GB V1818A", + "url": "/v1/smartphones/vivo-u1-premium-edition-dual-sim-td-lte-cn-64gb-v1818a" + }, + { + "slug": "vivo-u1-standard-edition-dual-sim-td-lte-cn-32gb-v1818a", + "name": "Vivo U1 Standard Edition Dual SIM TD-LTE CN 32GB V1818A", + "url": "/v1/smartphones/vivo-u1-standard-edition-dual-sim-td-lte-cn-32gb-v1818a" + }, + { + "slug": "vivo-u1-standard-edition-dual-sim-td-lte-cn-64gb-v1818a", + "name": "Vivo U1 Standard Edition Dual SIM TD-LTE CN 64GB V1818A", + "url": "/v1/smartphones/vivo-u1-standard-edition-dual-sim-td-lte-cn-64gb-v1818a" + }, + { + "slug": "vivo-u10-premium-edition-dual-sim-td-lte-in-64gb-1916", + "name": "Vivo U10 Premium Edition Dual SIM TD-LTE IN 64GB 1916", + "url": "/v1/smartphones/vivo-u10-premium-edition-dual-sim-td-lte-in-64gb-1916" + }, + { + "slug": "vivo-u10-premium-edition-dual-sim-td-lte-vn-64gb-1916", + "name": "Vivo U10 Premium Edition Dual SIM TD-LTE VN 64GB 1916", + "url": "/v1/smartphones/vivo-u10-premium-edition-dual-sim-td-lte-vn-64gb-1916" + }, + { + "slug": "vivo-u10-standard-edition-dual-sim-td-lte-in-32gb-1916", + "name": "Vivo U10 Standard Edition Dual SIM TD-LTE IN 32GB 1916", + "url": "/v1/smartphones/vivo-u10-standard-edition-dual-sim-td-lte-in-32gb-1916" + }, + { + "slug": "vivo-u10-standard-edition-dual-sim-td-lte-in-64gb-1916", + "name": "Vivo U10 Standard Edition Dual SIM TD-LTE IN 64GB 1916", + "url": "/v1/smartphones/vivo-u10-standard-edition-dual-sim-td-lte-in-64gb-1916" + }, + { + "slug": "vivo-u20-standard-edition-dual-sim-td-lte-in-64gb-1921", + "name": "Vivo U20 Standard Edition Dual SIM TD-LTE IN 64GB 1921", + "url": "/v1/smartphones/vivo-u20-standard-edition-dual-sim-td-lte-in-64gb-1921" + }, + { + "slug": "vivo-u3-premium-edition-dual-sim-td-lte-cn-64gb-v1941a", + "name": "Vivo U3 Premium Edition Dual SIM TD-LTE CN 64GB V1941A", + "url": "/v1/smartphones/vivo-u3-premium-edition-dual-sim-td-lte-cn-64gb-v1941a" + }, + { + "slug": "vivo-u3-premium-edition-dual-sim-td-lte-cn-64gb-v1941t", + "name": "Vivo U3 Premium Edition Dual SIM TD-LTE CN 64GB V1941T", + "url": "/v1/smartphones/vivo-u3-premium-edition-dual-sim-td-lte-cn-64gb-v1941t" + }, + { + "slug": "vivo-u3-standard-edition-dual-sim-td-lte-cn-64gb-v1941a", + "name": "Vivo U3 Standard Edition Dual SIM TD-LTE CN 64GB V1941A", + "url": "/v1/smartphones/vivo-u3-standard-edition-dual-sim-td-lte-cn-64gb-v1941a" + }, + { + "slug": "vivo-u3-standard-edition-dual-sim-td-lte-cn-64gb-v1941t", + "name": "Vivo U3 Standard Edition Dual SIM TD-LTE CN 64GB V1941T", + "url": "/v1/smartphones/vivo-u3-standard-edition-dual-sim-td-lte-cn-64gb-v1941t" + }, + { + "slug": "vivo-u3x-premium-edition-dual-sim-td-lte-cn-64gb-v1928a", + "name": "Vivo U3x Premium Edition Dual SIM TD-LTE CN 64GB V1928A", + "url": "/v1/smartphones/vivo-u3x-premium-edition-dual-sim-td-lte-cn-64gb-v1928a" + }, + { + "slug": "vivo-u3x-premium-edition-dual-sim-td-lte-cn-64gb-v1928t", + "name": "Vivo U3x Premium Edition Dual SIM TD-LTE CN 64GB V1928T", + "url": "/v1/smartphones/vivo-u3x-premium-edition-dual-sim-td-lte-cn-64gb-v1928t" + }, + { + "slug": "vivo-u3x-standard-edition-dual-sim-td-lte-cn-32gb-v1928a", + "name": "Vivo U3x Standard Edition Dual SIM TD-LTE CN 32GB V1928A", + "url": "/v1/smartphones/vivo-u3x-standard-edition-dual-sim-td-lte-cn-32gb-v1928a" + }, + { + "slug": "vivo-u3x-standard-edition-dual-sim-td-lte-cn-32gb-v1928t", + "name": "Vivo U3x Standard Edition Dual SIM TD-LTE CN 32GB V1928T", + "url": "/v1/smartphones/vivo-u3x-standard-edition-dual-sim-td-lte-cn-32gb-v1928t" + }, + { + "slug": "vivo-u3x-standard-edition-dual-sim-td-lte-cn-64gb-v1928a", + "name": "Vivo U3x Standard Edition Dual SIM TD-LTE CN 64GB V1928A", + "url": "/v1/smartphones/vivo-u3x-standard-edition-dual-sim-td-lte-cn-64gb-v1928a" + }, + { + "slug": "vivo-u3x-standard-edition-dual-sim-td-lte-cn-64gb-v1928t", + "name": "Vivo U3x Standard Edition Dual SIM TD-LTE CN 64GB V1928T", + "url": "/v1/smartphones/vivo-u3x-standard-edition-dual-sim-td-lte-cn-64gb-v1928t" + }, + { + "slug": "vivo-v11-dual-sim-td-lte-in-id-64gb-1806", + "name": "Vivo V11 Dual SIM TD-LTE IN ID 64GB 1806", + "url": "/v1/smartphones/vivo-v11-dual-sim-td-lte-in-id-64gb-1806" + }, + { + "slug": "vivo-v11-dual-sim-td-lte-my-vn-bd-128gb-1806-v11i", + "name": "Vivo V11 Dual SIM TD-LTE MY VN BD 128GB 1806 / V11i", + "url": "/v1/smartphones/vivo-v11-dual-sim-td-lte-my-vn-bd-128gb-1806-v11i" + }, + { + "slug": "vivo-v11-dual-sim-td-lte-my-vn-hk-bd-128gb-1804-v11-pro", + "name": "Vivo V11 Dual SIM TD-LTE MY VN HK BD 128GB 1804 / V11 Pro", + "url": "/v1/smartphones/vivo-v11-dual-sim-td-lte-my-vn-hk-bd-128gb-1804-v11-pro" + }, + { + "slug": "vivo-v11-dual-sim-td-lte-ph-64gb-1804", + "name": "Vivo V11 Dual SIM TD-LTE PH 64GB 1804", + "url": "/v1/smartphones/vivo-v11-dual-sim-td-lte-ph-64gb-1804" + }, + { + "slug": "vivo-v11-dual-sim-td-lte-ru-128gb-1804", + "name": "Vivo V11 Dual SIM TD-LTE RU 128GB 1804", + "url": "/v1/smartphones/vivo-v11-dual-sim-td-lte-ru-128gb-1804" + }, + { + "slug": "vivo-v11-dual-sim-td-lte-sg-128gb-1804", + "name": "Vivo V11 Dual SIM TD-LTE SG 128GB 1804", + "url": "/v1/smartphones/vivo-v11-dual-sim-td-lte-sg-128gb-1804" + }, + { + "slug": "vivo-v11-dual-sim-td-lte-th-pk-np-128gb-1806-v11i", + "name": "Vivo V11 Dual SIM TD-LTE TH PK NP 128GB 1806 / V11i", + "url": "/v1/smartphones/vivo-v11-dual-sim-td-lte-th-pk-np-128gb-1806-v11i" + }, + { + "slug": "vivo-v11-dual-sim-td-lte-tw-128gb-1806", + "name": "Vivo V11 Dual SIM TD-LTE TW 128GB 1806", + "url": "/v1/smartphones/vivo-v11-dual-sim-td-lte-tw-128gb-1806" + }, + { + "slug": "vivo-v11-pro-dual-sim-td-lte-id-64gb-1804", + "name": "Vivo V11 Pro Dual SIM TD-LTE ID 64GB 1804", + "url": "/v1/smartphones/vivo-v11-pro-dual-sim-td-lte-id-64gb-1804" + }, + { + "slug": "vivo-v11-pro-dual-sim-td-lte-in-64gb-1804", + "name": "Vivo V11 Pro Dual SIM TD-LTE IN 64GB 1804", + "url": "/v1/smartphones/vivo-v11-pro-dual-sim-td-lte-in-64gb-1804" + }, + { + "slug": "vivo-v11-pro-dual-sim-td-lte-th-pk-np-128gb-1804-v11-v11pro", + "name": "Vivo V11 Pro Dual SIM TD-LTE TH PK NP 128GB 1804 / V11 / V11Pro", + "url": "/v1/smartphones/vivo-v11-pro-dual-sim-td-lte-th-pk-np-128gb-1804-v11-v11pro" + }, + { + "slug": "vivo-v11i-dual-sim-td-lte-ru-128gb-1806", + "name": "Vivo V11i Dual SIM TD-LTE RU 128GB 1806", + "url": "/v1/smartphones/vivo-v11i-dual-sim-td-lte-ru-128gb-1806" + }, + { + "slug": "vivo-v11i-dual-sim-td-lte-tw-ph-128gb-1806", + "name": "Vivo V11i Dual SIM TD-LTE TW PH 128GB 1806", + "url": "/v1/smartphones/vivo-v11i-dual-sim-td-lte-tw-ph-128gb-1806" + }, + { + "slug": "vivo-v15-dual-sim-td-lte-in-id-th-np-128gb", + "name": "Vivo V15 Dual SIM TD-LTE IN ID TH NP 128GB", + "url": "/v1/smartphones/vivo-v15-dual-sim-td-lte-in-id-th-np-128gb" + }, + { + "slug": "vivo-v15-dual-sim-td-lte-my-ph-128gb", + "name": "Vivo V15 Dual SIM TD-LTE MY PH 128GB", + "url": "/v1/smartphones/vivo-v15-dual-sim-td-lte-my-ph-128gb" + }, + { + "slug": "vivo-v15-pro-premium-edition-dual-sim-td-lte-ph-128gb", + "name": "Vivo V15 Pro Premium Edition Dual SIM TD-LTE PH 128GB", + "url": "/v1/smartphones/vivo-v15-pro-premium-edition-dual-sim-td-lte-ph-128gb" + }, + { + "slug": "vivo-v15-pro-standard-edition-dual-sim-td-lte-in-id-np-th-128gb-1818", + "name": "Vivo V15 Pro Standard Edition Dual SIM TD-LTE IN ID NP TH 128GB 1818", + "url": "/v1/smartphones/vivo-v15-pro-standard-edition-dual-sim-td-lte-in-id-np-th-128gb-1818" + }, + { + "slug": "vivo-v15-pro-standard-edition-dual-sim-td-lte-my-hk-128gb", + "name": "Vivo V15 Pro Standard Edition Dual SIM TD-LTE MY HK 128GB", + "url": "/v1/smartphones/vivo-v15-pro-standard-edition-dual-sim-td-lte-my-hk-128gb" + }, + { + "slug": "vivo-v17-dual-sim-td-lte-in-128gb-1919", + "name": "Vivo V17 Dual SIM TD-LTE IN 128GB 1919", + "url": "/v1/smartphones/vivo-v17-dual-sim-td-lte-in-128gb-1919" + }, + { + "slug": "vivo-v17-dual-sim-td-lte-my-ph-128gb-1919-vivo-v19-neo", + "name": "Vivo V17 Dual SIM TD-LTE MY PH 128GB 1919 / Vivo V19 Neo", + "url": "/v1/smartphones/vivo-v17-dual-sim-td-lte-my-ph-128gb-1919-vivo-v19-neo" + }, + { + "slug": "vivo-v17-dual-sim-td-lte-my-ph-256gb-1919-vivo-v19-neo", + "name": "Vivo V17 Dual SIM TD-LTE MY PH 256GB 1919 / Vivo V19 Neo", + "url": "/v1/smartphones/vivo-v17-dual-sim-td-lte-my-ph-256gb-1919-vivo-v19-neo" + }, + { + "slug": "vivo-v17-dual-sim-td-lte-pk-id-128gb-1919-v19", + "name": "Vivo V17 Dual SIM TD-LTE PK ID 128GB 1919 / V19", + "url": "/v1/smartphones/vivo-v17-dual-sim-td-lte-pk-id-128gb-1919-v19" + }, + { + "slug": "vivo-v17-dual-sim-td-lte-pk-id-256gb-1919-v19", + "name": "Vivo V17 Dual SIM TD-LTE PK ID 256GB 1919 / V19", + "url": "/v1/smartphones/vivo-v17-dual-sim-td-lte-pk-id-256gb-1919-v19" + }, + { + "slug": "vivo-v17-dual-sim-td-lte-ru-128gb-1920", + "name": "Vivo V17 Dual SIM TD-LTE RU 128GB 1920", + "url": "/v1/smartphones/vivo-v17-dual-sim-td-lte-ru-128gb-1920" + }, + { + "slug": "vivo-v17-neo-dual-sim-td-lte-ru-np-pk-bd-128gb-1907-s1", + "name": "Vivo V17 Neo Dual SIM TD-LTE RU NP PK BD 128GB 1907 / S1", + "url": "/v1/smartphones/vivo-v17-neo-dual-sim-td-lte-ru-np-pk-bd-128gb-1907-s1" + }, + { + "slug": "vivo-v17-pro-dual-sim-td-lte-hk-128gb-1910", + "name": "Vivo V17 Pro Dual SIM TD-LTE HK 128GB 1910", + "url": "/v1/smartphones/vivo-v17-pro-dual-sim-td-lte-hk-128gb-1910" + }, + { + "slug": "vivo-v17-pro-dual-sim-td-lte-in-pk-np-bd-mn-128gb-1909", + "name": "Vivo V17 Pro Dual SIM TD-LTE IN PK NP BD MN 128GB 1909", + "url": "/v1/smartphones/vivo-v17-pro-dual-sim-td-lte-in-pk-np-bd-mn-128gb-1909" + }, + { + "slug": "vivo-v17-pro-dual-sim-td-lte-my-vn-128gb-1910", + "name": "Vivo V17 Pro Dual SIM TD-LTE MY VN 128GB 1910", + "url": "/v1/smartphones/vivo-v17-pro-dual-sim-td-lte-my-vn-128gb-1910" + }, + { + "slug": "vivo-v17-pro-dual-sim-td-lte-th-id-128gb-1910", + "name": "Vivo V17 Pro Dual SIM TD-LTE TH ID 128GB 1910", + "url": "/v1/smartphones/vivo-v17-pro-dual-sim-td-lte-th-id-128gb-1910" + }, + { + "slug": "vivo-v17-pro-dual-sim-td-lte-tw-sg-128gb-1910", + "name": "Vivo V17 Pro Dual SIM TD-LTE TW SG 128GB 1910", + "url": "/v1/smartphones/vivo-v17-pro-dual-sim-td-lte-tw-sg-128gb-1910" + }, + { + "slug": "vivo-v17-pro-global-dual-sim-td-lte-128gb-1910", + "name": "Vivo V17 Pro Global Dual SIM TD-LTE 128GB 1910", + "url": "/v1/smartphones/vivo-v17-pro-global-dual-sim-td-lte-128gb-1910" + }, + { + "slug": "vivo-v19-dual-sim-td-lte-v1-in-128gb-1933", + "name": "Vivo V19 Dual SIM TD-LTE V1 IN 128GB 1933", + "url": "/v1/smartphones/vivo-v19-dual-sim-td-lte-v1-in-128gb-1933" + }, + { + "slug": "vivo-v19-dual-sim-td-lte-v1-in-256gb-1933", + "name": "Vivo V19 Dual SIM TD-LTE V1 IN 256GB 1933", + "url": "/v1/smartphones/vivo-v19-dual-sim-td-lte-v1-in-256gb-1933" + }, + { + "slug": "vivo-v19-global-dual-sim-td-lte-v4-128gb-1933", + "name": "Vivo V19 Global Dual SIM TD-LTE V4 128GB 1933", + "url": "/v1/smartphones/vivo-v19-global-dual-sim-td-lte-v4-128gb-1933" + }, + { + "slug": "vivo-v20-pro-5g-global-dual-sim-td-lte-128gb-2018", + "name": "Vivo V20 Pro 5G Global Dual SIM TD-LTE 128GB 2018", + "url": "/v1/smartphones/vivo-v20-pro-5g-global-dual-sim-td-lte-128gb-2018" + }, + { + "slug": "vivo-v20-se-dual-sim-td-lte-v1-my-128gb-2022", + "name": "Vivo V20 SE Dual SIM TD-LTE V1 MY 128GB 2022", + "url": "/v1/smartphones/vivo-v20-se-dual-sim-td-lte-v1-my-128gb-2022" + }, + { + "slug": "vivo-v20-se-dual-sim-td-lte-v2-id-128gb-2022", + "name": "Vivo V20 SE Dual SIM TD-LTE V2 ID 128GB 2022", + "url": "/v1/smartphones/vivo-v20-se-dual-sim-td-lte-v2-id-128gb-2022" + }, + { + "slug": "vivo-v21e-5g-dual-sim-td-lte-v1-in-128gb-v2055", + "name": "Vivo V21e 5G Dual SIM TD-LTE V1 IN 128GB V2055", + "url": "/v1/smartphones/vivo-v21e-5g-dual-sim-td-lte-v1-in-128gb-v2055" + }, + { + "slug": "vivo-v9-6gb-dual-sim-td-lte-id-v9-pro", + "name": "Vivo V9 6GB Dual SIM TD-LTE ID / V9 Pro", + "url": "/v1/smartphones/vivo-v9-6gb-dual-sim-td-lte-id-v9-pro" + }, + { + "slug": "vivo-v9-pro-6gb-dual-sim-td-lte-in-1851", + "name": "Vivo V9 Pro 6GB Dual SIM TD-LTE IN 1851", + "url": "/v1/smartphones/vivo-v9-pro-6gb-dual-sim-td-lte-in-1851" + }, + { + "slug": "vivo-v9-pro-dual-sim-td-lte-in-1851", + "name": "Vivo V9 Pro Dual SIM TD-LTE IN 1851", + "url": "/v1/smartphones/vivo-v9-pro-dual-sim-td-lte-in-1851" + }, + { + "slug": "vivo-v9-youth-edition-dual-sim-td-lte-in-pk-np-1727", + "name": "Vivo V9 Youth Edition Dual SIM TD-LTE IN PK NP 1727", + "url": "/v1/smartphones/vivo-v9-youth-edition-dual-sim-td-lte-in-pk-np-1727" + }, + { + "slug": "vivo-v9-youth-edition-dual-sim-td-lte-ru-1727", + "name": "Vivo V9 Youth Edition Dual SIM TD-LTE RU 1727", + "url": "/v1/smartphones/vivo-v9-youth-edition-dual-sim-td-lte-ru-1727" + }, + { + "slug": "vivo-v9-youth-edition-dual-sim-td-lte-tw-1727", + "name": "Vivo V9 Youth Edition Dual SIM TD-LTE TW 1727", + "url": "/v1/smartphones/vivo-v9-youth-edition-dual-sim-td-lte-tw-1727" + }, + { + "slug": "vivo-v9-youth-edition-dual-sim-td-lte-vn-bd-1727", + "name": "Vivo V9 Youth Edition Dual SIM TD-LTE VN BD 1727", + "url": "/v1/smartphones/vivo-v9-youth-edition-dual-sim-td-lte-vn-bd-1727" + }, + { + "slug": "vivo-x-fold-3-pro", + "name": "Vivo X Fold 3 Pro", + "url": "/v1/smartphones/vivo-x-fold-3-pro" + }, + { + "slug": "vivo-x21-dual-sim-td-lte-cn-128gb-x21a", + "name": "Vivo X21 Dual SIM TD-LTE CN 128GB X21A", + "url": "/v1/smartphones/vivo-x21-dual-sim-td-lte-cn-128gb-x21a" + }, + { + "slug": "vivo-x21-dual-sim-td-lte-cn-64gb", + "name": "Vivo X21 Dual SIM TD-LTE CN 64GB", + "url": "/v1/smartphones/vivo-x21-dual-sim-td-lte-cn-64gb" + }, + { + "slug": "vivo-x21-dual-sim-td-lte-tw-hk-sg-128gb", + "name": "Vivo X21 Dual SIM TD-LTE TW HK SG 128GB", + "url": "/v1/smartphones/vivo-x21-dual-sim-td-lte-tw-hk-sg-128gb" + }, + { + "slug": "vivo-x21-ud-dual-sim-td-lte-cn-128gb-x21ud-a", + "name": "Vivo X21 UD Dual SIM TD-LTE CN 128GB X21UD A", + "url": "/v1/smartphones/vivo-x21-ud-dual-sim-td-lte-cn-128gb-x21ud-a" + }, + { + "slug": "vivo-x21-ud-dual-sim-td-lte-hk-sg-tw-my-1725", + "name": "Vivo X21 UD Dual SIM TD-LTE HK SG TW MY 1725", + "url": "/v1/smartphones/vivo-x21-ud-dual-sim-td-lte-hk-sg-tw-my-1725" + }, + { + "slug": "vivo-x21-ud-dual-sim-td-lte-in-1728-x21", + "name": "Vivo X21 UD Dual SIM TD-LTE IN 1728 / X21", + "url": "/v1/smartphones/vivo-x21-ud-dual-sim-td-lte-in-1728-x21" + }, + { + "slug": "vivo-x21i-dual-sim-td-lte-cn-128gb", + "name": "Vivo X21i Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/vivo-x21i-dual-sim-td-lte-cn-128gb" + }, + { + "slug": "vivo-x21i-dual-sim-td-lte-cn-64gb", + "name": "Vivo X21i Dual SIM TD-LTE CN 64GB", + "url": "/v1/smartphones/vivo-x21i-dual-sim-td-lte-cn-64gb" + }, + { + "slug": "vivo-x21ia-dual-sim-td-lte-cn-128gb", + "name": "Vivo X21iA Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/vivo-x21ia-dual-sim-td-lte-cn-128gb" + }, + { + "slug": "vivo-x21ia-dual-sim-td-lte-cn-64gb", + "name": "Vivo X21iA Dual SIM TD-LTE CN 64GB", + "url": "/v1/smartphones/vivo-x21ia-dual-sim-td-lte-cn-64gb" + }, + { + "slug": "vivo-x23-dual-sim-td-lte-cn-v1809a", + "name": "Vivo X23 Dual SIM TD-LTE CN V1809A", + "url": "/v1/smartphones/vivo-x23-dual-sim-td-lte-cn-v1809a" + }, + { + "slug": "vivo-x23-dual-sim-td-lte-cn-v1809t", + "name": "Vivo X23 Dual SIM TD-LTE CN V1809T", + "url": "/v1/smartphones/vivo-x23-dual-sim-td-lte-cn-v1809t" + }, + { + "slug": "vivo-x23-symphony-edition-dual-sim-td-lte-cn-v1816a", + "name": "Vivo X23 Symphony Edition Dual SIM TD-LTE CN V1816A", + "url": "/v1/smartphones/vivo-x23-symphony-edition-dual-sim-td-lte-cn-v1816a" + }, + { + "slug": "vivo-x23-symphony-edition-dual-sim-td-lte-cn-v1816t", + "name": "Vivo X23 Symphony Edition Dual SIM TD-LTE CN V1816T", + "url": "/v1/smartphones/vivo-x23-symphony-edition-dual-sim-td-lte-cn-v1816t" + }, + { + "slug": "vivo-x27-premium-edition-dual-sim-td-lte-cn-128gb-v1829a", + "name": "Vivo X27 Premium Edition Dual SIM TD-LTE CN 128GB V1829A", + "url": "/v1/smartphones/vivo-x27-premium-edition-dual-sim-td-lte-cn-128gb-v1829a" + }, + { + "slug": "vivo-x27-premium-edition-dual-sim-td-lte-cn-128gb-v1829t", + "name": "Vivo X27 Premium Edition Dual SIM TD-LTE CN 128GB V1829T", + "url": "/v1/smartphones/vivo-x27-premium-edition-dual-sim-td-lte-cn-128gb-v1829t" + }, + { + "slug": "vivo-x27-premium-edition-dual-sim-td-lte-cn-256gb-v1829a", + "name": "Vivo X27 Premium Edition Dual SIM TD-LTE CN 256GB V1829A", + "url": "/v1/smartphones/vivo-x27-premium-edition-dual-sim-td-lte-cn-256gb-v1829a" + }, + { + "slug": "vivo-x27-premium-edition-dual-sim-td-lte-cn-256gb-v1829t", + "name": "Vivo X27 Premium Edition Dual SIM TD-LTE CN 256GB V1829T", + "url": "/v1/smartphones/vivo-x27-premium-edition-dual-sim-td-lte-cn-256gb-v1829t" + }, + { + "slug": "vivo-x27-pro-dual-sim-td-lte-cn-256gb-v1836a", + "name": "Vivo X27 Pro Dual SIM TD-LTE CN 256GB V1836A", + "url": "/v1/smartphones/vivo-x27-pro-dual-sim-td-lte-cn-256gb-v1836a" + }, + { + "slug": "vivo-x27-pro-dual-sim-td-lte-cn-256gb-v1836t", + "name": "Vivo X27 Pro Dual SIM TD-LTE CN 256GB V1836T", + "url": "/v1/smartphones/vivo-x27-pro-dual-sim-td-lte-cn-256gb-v1836t" + }, + { + "slug": "vivo-x27-standard-edition-dual-sim-td-lte-cn-128gb-v1838a", + "name": "Vivo X27 Standard Edition Dual SIM TD-LTE CN 128GB V1838A", + "url": "/v1/smartphones/vivo-x27-standard-edition-dual-sim-td-lte-cn-128gb-v1838a" + }, + { + "slug": "vivo-x27-standard-edition-dual-sim-td-lte-cn-128gb-v1838t", + "name": "Vivo X27 Standard Edition Dual SIM TD-LTE CN 128GB V1838T", + "url": "/v1/smartphones/vivo-x27-standard-edition-dual-sim-td-lte-cn-128gb-v1838t" + }, + { + "slug": "vivo-x30-5g-dual-sim-td-lte-cn-128gb-v1938ca", + "name": "Vivo X30 5G Dual SIM TD-LTE CN 128GB V1938CA", + "url": "/v1/smartphones/vivo-x30-5g-dual-sim-td-lte-cn-128gb-v1938ca" + }, + { + "slug": "vivo-x30-5g-dual-sim-td-lte-cn-128gb-v1938ct", + "name": "Vivo X30 5G Dual SIM TD-LTE CN 128GB V1938CT", + "url": "/v1/smartphones/vivo-x30-5g-dual-sim-td-lte-cn-128gb-v1938ct" + }, + { + "slug": "vivo-x30-5g-dual-sim-td-lte-cn-256gb-v1938ca", + "name": "Vivo X30 5G Dual SIM TD-LTE CN 256GB V1938CA", + "url": "/v1/smartphones/vivo-x30-5g-dual-sim-td-lte-cn-256gb-v1938ca" + }, + { + "slug": "vivo-x30-5g-dual-sim-td-lte-cn-256gb-v1938ct", + "name": "Vivo X30 5G Dual SIM TD-LTE CN 256GB V1938CT", + "url": "/v1/smartphones/vivo-x30-5g-dual-sim-td-lte-cn-256gb-v1938ct" + }, + { + "slug": "vivo-x30-pro-5g-dual-sim-td-lte-cn-128gb-v1938a", + "name": "Vivo X30 Pro 5G Dual SIM TD-LTE CN 128GB V1938A", + "url": "/v1/smartphones/vivo-x30-pro-5g-dual-sim-td-lte-cn-128gb-v1938a" + }, + { + "slug": "vivo-x30-pro-5g-dual-sim-td-lte-cn-128gb-v1938t", + "name": "Vivo X30 Pro 5G Dual SIM TD-LTE CN 128GB V1938T", + "url": "/v1/smartphones/vivo-x30-pro-5g-dual-sim-td-lte-cn-128gb-v1938t" + }, + { + "slug": "vivo-x30-pro-5g-dual-sim-td-lte-cn-256gb-v1938a", + "name": "Vivo X30 Pro 5G Dual SIM TD-LTE CN 256GB V1938A", + "url": "/v1/smartphones/vivo-x30-pro-5g-dual-sim-td-lte-cn-256gb-v1938a" + }, + { + "slug": "vivo-x30-pro-5g-dual-sim-td-lte-cn-256gb-v1938t", + "name": "Vivo X30 Pro 5G Dual SIM TD-LTE CN 256GB V1938T", + "url": "/v1/smartphones/vivo-x30-pro-5g-dual-sim-td-lte-cn-256gb-v1938t" + }, + { + "slug": "vivo-x300", + "name": "Vivo X300", + "url": "/v1/smartphones/vivo-x300" + }, + { + "slug": "vivo-x300-pro", + "name": "Vivo X300 Pro", + "url": "/v1/smartphones/vivo-x300-pro" + }, + { + "slug": "vivo-x300-ultra", + "name": "Vivo X300 Ultra", + "url": "/v1/smartphones/vivo-x300-ultra" + }, + { + "slug": "vivo-x300s", + "name": "Vivo X300s", + "url": "/v1/smartphones/vivo-x300s" + }, + { + "slug": "vivo-x50-4g-dual-sim-td-lte-v1-in-128gb-2004", + "name": "Vivo X50 4G Dual SIM TD-LTE V1 IN 128GB 2004", + "url": "/v1/smartphones/vivo-x50-4g-dual-sim-td-lte-v1-in-128gb-2004" + }, + { + "slug": "vivo-x50-4g-dual-sim-td-lte-v1-in-256gb-2004", + "name": "Vivo X50 4G Dual SIM TD-LTE V1 IN 256GB 2004", + "url": "/v1/smartphones/vivo-x50-4g-dual-sim-td-lte-v1-in-256gb-2004" + }, + { + "slug": "vivo-x50-4g-dual-sim-td-lte-v2-id-128gb-2004", + "name": "Vivo X50 4G Dual SIM TD-LTE V2 ID 128GB 2004", + "url": "/v1/smartphones/vivo-x50-4g-dual-sim-td-lte-v2-id-128gb-2004" + }, + { + "slug": "vivo-x50-4g-dual-sim-td-lte-v3-ru-128gb-2004", + "name": "Vivo X50 4G Dual SIM TD-LTE V3 RU 128GB 2004", + "url": "/v1/smartphones/vivo-x50-4g-dual-sim-td-lte-v3-ru-128gb-2004" + }, + { + "slug": "vivo-x50-4g-dual-sim-td-lte-v3-vn-kh-128gb-2004", + "name": "Vivo X50 4G Dual SIM TD-LTE V3 VN KH 128GB 2004", + "url": "/v1/smartphones/vivo-x50-4g-dual-sim-td-lte-v3-vn-kh-128gb-2004" + }, + { + "slug": "vivo-x50-5g-dual-sim-td-lte-cn-128gb-v2001a", + "name": "Vivo X50 5G Dual SIM TD-LTE CN 128GB V2001A", + "url": "/v1/smartphones/vivo-x50-5g-dual-sim-td-lte-cn-128gb-v2001a" + }, + { + "slug": "vivo-x50-5g-dual-sim-td-lte-cn-256gb-v2001a", + "name": "Vivo X50 5G Dual SIM TD-LTE CN 256GB V2001A", + "url": "/v1/smartphones/vivo-x50-5g-dual-sim-td-lte-cn-256gb-v2001a" + }, + { + "slug": "vivo-x50-5g-dual-sim-td-lte-my-hk-128gb-v2001a", + "name": "Vivo X50 5G Dual SIM TD-LTE MY HK 128GB V2001A", + "url": "/v1/smartphones/vivo-x50-5g-dual-sim-td-lte-my-hk-128gb-v2001a" + }, + { + "slug": "vivo-x50-lite-dual-sim-td-lte-au-128gb-v1937", + "name": "Vivo X50 Lite Dual SIM TD-LTE AU 128GB V1937", + "url": "/v1/smartphones/vivo-x50-lite-dual-sim-td-lte-au-128gb-v1937" + }, + { + "slug": "vivo-x50-pro-5g-dual-sim-td-lte-au-256gb-2006", + "name": "Vivo X50 Pro 5G Dual SIM TD-LTE AU 256GB 2006", + "url": "/v1/smartphones/vivo-x50-pro-5g-dual-sim-td-lte-au-256gb-2006" + }, + { + "slug": "vivo-x50-pro-5g-dual-sim-td-lte-cn-128gb-v2005a", + "name": "Vivo X50 Pro 5G Dual SIM TD-LTE CN 128GB V2005A", + "url": "/v1/smartphones/vivo-x50-pro-5g-dual-sim-td-lte-cn-128gb-v2005a" + }, + { + "slug": "vivo-x50-pro-5g-dual-sim-td-lte-cn-256gb-v2005a", + "name": "Vivo X50 Pro 5G Dual SIM TD-LTE CN 256GB V2005A", + "url": "/v1/smartphones/vivo-x50-pro-5g-dual-sim-td-lte-cn-256gb-v2005a" + }, + { + "slug": "vivo-x50-pro-5g-global-dual-sim-td-lte-256gb-2006", + "name": "Vivo X50 Pro 5G Global Dual SIM TD-LTE 256GB 2006", + "url": "/v1/smartphones/vivo-x50-pro-5g-global-dual-sim-td-lte-256gb-2006" + }, + { + "slug": "vivo-x50-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2011a", + "name": "Vivo X50 Pro+ 5G Premium Edition Dual SIM TD-LTE CN 256GB V2011A", + "url": "/v1/smartphones/vivo-x50-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2011a" + }, + { + "slug": "vivo-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2011a", + "name": "Vivo X50 Pro+ 5G Standard Edition Dual SIM TD-LTE CN 128GB V2011A", + "url": "/v1/smartphones/vivo-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2011a" + }, + { + "slug": "vivo-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2011a", + "name": "Vivo X50 Pro+ 5G Standard Edition Dual SIM TD-LTE CN 256GB V2011A", + "url": "/v1/smartphones/vivo-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2011a" + }, + { + "slug": "vivo-x51-5g-global-dual-sim-td-lte-256gb", + "name": "Vivo X51 5G Global Dual SIM TD-LTE 256GB", + "url": "/v1/smartphones/vivo-x51-5g-global-dual-sim-td-lte-256gb" + }, + { + "slug": "vivo-x60-5g-premium-edition-dual-sim-td-lte-apac-v3-256gb-v2045", + "name": "Vivo X60 5G Premium Edition Dual SIM TD-LTE APAC V3 256GB V2045", + "url": "/v1/smartphones/vivo-x60-5g-premium-edition-dual-sim-td-lte-apac-v3-256gb-v2045" + }, + { + "slug": "vivo-x60-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2046a", + "name": "Vivo X60 5G Premium Edition Dual SIM TD-LTE CN 256GB V2046A", + "url": "/v1/smartphones/vivo-x60-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2046a" + }, + { + "slug": "vivo-x60-5g-premium-edition-dual-sim-td-lte-in-v1-256gb-v2045", + "name": "Vivo X60 5G Premium Edition Dual SIM TD-LTE IN V1 256GB V2045", + "url": "/v1/smartphones/vivo-x60-5g-premium-edition-dual-sim-td-lte-in-v1-256gb-v2045" + }, + { + "slug": "vivo-x60-5g-standard-edition-dual-sim-td-lte-apac-v3-128gb-v2045", + "name": "Vivo X60 5G Standard Edition Dual SIM TD-LTE APAC V3 128GB V2045", + "url": "/v1/smartphones/vivo-x60-5g-standard-edition-dual-sim-td-lte-apac-v3-128gb-v2045" + }, + { + "slug": "vivo-x60-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2046a", + "name": "Vivo X60 5G Standard Edition Dual SIM TD-LTE CN 128GB V2046A", + "url": "/v1/smartphones/vivo-x60-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2046a" + }, + { + "slug": "vivo-x60-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2046a", + "name": "Vivo X60 5G Standard Edition Dual SIM TD-LTE CN 256GB V2046A", + "url": "/v1/smartphones/vivo-x60-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2046a" + }, + { + "slug": "vivo-x60-5g-standard-edition-dual-sim-td-lte-id-v2-128gb-v2045", + "name": "Vivo X60 5G Standard Edition Dual SIM TD-LTE ID V2 128GB V2045", + "url": "/v1/smartphones/vivo-x60-5g-standard-edition-dual-sim-td-lte-id-v2-128gb-v2045" + }, + { + "slug": "vivo-x60-5g-standard-edition-dual-sim-td-lte-in-v1-128gb-v2045", + "name": "Vivo X60 5G Standard Edition Dual SIM TD-LTE IN V1 128GB V2045", + "url": "/v1/smartphones/vivo-x60-5g-standard-edition-dual-sim-td-lte-in-v1-128gb-v2045" + }, + { + "slug": "vivo-x60-curved-screen-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2059a", + "name": "Vivo X60 Curved Screen 5G Premium Edition Dual SIM TD-LTE CN 256GB V2059A", + "url": "/v1/smartphones/vivo-x60-curved-screen-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2059a" + }, + { + "slug": "vivo-x60-curved-screen-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2059a", + "name": "Vivo X60 Curved Screen 5G Standard Edition Dual SIM TD-LTE CN 128GB V2059A", + "url": "/v1/smartphones/vivo-x60-curved-screen-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2059a" + }, + { + "slug": "vivo-x60-curved-screen-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2059a", + "name": "Vivo X60 Curved Screen 5G Standard Edition Dual SIM TD-LTE CN 256GB V2059A", + "url": "/v1/smartphones/vivo-x60-curved-screen-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2059a" + }, + { + "slug": "vivo-x60-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2047a", + "name": "Vivo X60 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB V2047A", + "url": "/v1/smartphones/vivo-x60-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2047a" + }, + { + "slug": "vivo-x60-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2056a", + "name": "Vivo X60 Pro+ 5G Premium Edition Dual SIM TD-LTE CN 256GB V2056A", + "url": "/v1/smartphones/vivo-x60-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2056a" + }, + { + "slug": "vivo-x60-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2056a", + "name": "Vivo X60 Pro+ 5G Standard Edition Dual SIM TD-LTE CN 128GB V2056A", + "url": "/v1/smartphones/vivo-x60-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2056a" + }, + { + "slug": "vivo-x60t-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2056a", + "name": "Vivo X60t Pro+ 5G Premium Edition Dual SIM TD-LTE CN 256GB V2056A", + "url": "/v1/smartphones/vivo-x60t-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2056a" + }, + { + "slug": "vivo-x60t-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2056a", + "name": "Vivo X60t Pro+ 5G Standard Edition Dual SIM TD-LTE CN 128GB V2056A", + "url": "/v1/smartphones/vivo-x60t-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2056a" + }, + { + "slug": "vivo-x70-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2133a", + "name": "Vivo X70 5G Premium Edition Dual SIM TD-LTE CN 256GB V2133A", + "url": "/v1/smartphones/vivo-x70-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2133a" + }, + { + "slug": "vivo-x70-5g-premium-edition-global-dual-sim-td-lte-v2-128gb-v2104", + "name": "Vivo X70 5G Premium Edition Global Dual SIM TD-LTE V2 128GB V2104", + "url": "/v1/smartphones/vivo-x70-5g-premium-edition-global-dual-sim-td-lte-v2-128gb-v2104" + }, + { + "slug": "vivo-x70-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2133a", + "name": "Vivo X70 5G Standard Edition Dual SIM TD-LTE CN 128GB V2133A", + "url": "/v1/smartphones/vivo-x70-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2133a" + }, + { + "slug": "vivo-x70-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2133a", + "name": "Vivo X70 5G Standard Edition Dual SIM TD-LTE CN 256GB V2133A", + "url": "/v1/smartphones/vivo-x70-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2133a" + }, + { + "slug": "vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2134a", + "name": "Vivo X70 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB V2134A", + "url": "/v1/smartphones/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2134a" + }, + { + "slug": "vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2134a", + "name": "Vivo X70 Pro 5G Premium Edition Dual SIM TD-LTE CN 512GB V2134A", + "url": "/v1/smartphones/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2134a" + }, + { + "slug": "vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-v1-in-256gb-v2105", + "name": "Vivo X70 Pro 5G Premium Edition Dual SIM TD-LTE V1 IN 256GB V2105", + "url": "/v1/smartphones/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-v1-in-256gb-v2105" + }, + { + "slug": "vivo-x70-pro-5g-premium-edition-global-dual-sim-td-lte-v2-256gb-v2105", + "name": "Vivo X70 Pro 5G Premium Edition Global Dual SIM TD-LTE V2 256GB V2105", + "url": "/v1/smartphones/vivo-x70-pro-5g-premium-edition-global-dual-sim-td-lte-v2-256gb-v2105" + }, + { + "slug": "vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2134a", + "name": "Vivo X70 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB V2134A", + "url": "/v1/smartphones/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2134a" + }, + { + "slug": "vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2134a", + "name": "Vivo X70 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB V2134A", + "url": "/v1/smartphones/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2134a" + }, + { + "slug": "vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-v1-in-128gb-v2105", + "name": "Vivo X70 Pro 5G Standard Edition Dual SIM TD-LTE V1 IN 128GB V2105", + "url": "/v1/smartphones/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-v1-in-128gb-v2105" + }, + { + "slug": "vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-v1-in-256gb-v2105", + "name": "Vivo X70 Pro 5G Standard Edition Dual SIM TD-LTE V1 IN 256GB V2105", + "url": "/v1/smartphones/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-v1-in-256gb-v2105" + }, + { + "slug": "vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2145a", + "name": "Vivo X70 Pro+ 5G Premium Edition Dual SIM TD-LTE CN 256GB V2145A", + "url": "/v1/smartphones/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2145a" + }, + { + "slug": "vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2145a", + "name": "Vivo X70 Pro+ 5G Premium Edition Dual SIM TD-LTE CN 512GB V2145A", + "url": "/v1/smartphones/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2145a" + }, + { + "slug": "vivo-x70-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-v2114", + "name": "Vivo X70 Pro+ 5G Premium Edition Global Dual SIM TD-LTE 256GB V2114", + "url": "/v1/smartphones/vivo-x70-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-v2114" + }, + { + "slug": "vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2145a", + "name": "Vivo X70 Pro+ 5G Standard Edition Dual SIM TD-LTE CN 256GB V2145A", + "url": "/v1/smartphones/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2145a" + }, + { + "slug": "vivo-xi-dual-sim-lte-a-v0330ww", + "name": "Vivo XI Dual SIM LTE-A V0330WW", + "url": "/v1/smartphones/vivo-xi-dual-sim-lte-a-v0330ww" + }, + { + "slug": "vivo-xi-dual-sim-lte-a-v0311ww", + "name": "Vivo XI+ Dual SIM LTE-A V0311WW", + "url": "/v1/smartphones/vivo-xi-dual-sim-lte-a-v0311ww" + }, + { + "slug": "vivo-y11-2019-dual-sim-td-lte-my-bd", + "name": "Vivo Y11 2019 Dual SIM TD-LTE MY BD", + "url": "/v1/smartphones/vivo-y11-2019-dual-sim-td-lte-my-bd" + }, + { + "slug": "vivo-y11-2019-dual-sim-td-lte-ph", + "name": "Vivo Y11 2019 Dual SIM TD-LTE PH", + "url": "/v1/smartphones/vivo-y11-2019-dual-sim-td-lte-ph" + }, + { + "slug": "vivo-y11-2019-dual-sim-td-lte-pk-th-np", + "name": "Vivo Y11 2019 Dual SIM TD-LTE PK TH NP", + "url": "/v1/smartphones/vivo-y11-2019-dual-sim-td-lte-pk-th-np" + }, + { + "slug": "vivo-y11-2019-dual-sim-td-lte-ru", + "name": "Vivo Y11 2019 Dual SIM TD-LTE RU", + "url": "/v1/smartphones/vivo-y11-2019-dual-sim-td-lte-ru" + }, + { + "slug": "vivo-y11s-2020-global-dual-sim-td-lte-32gb", + "name": "Vivo Y11s 2020 Global Dual SIM TD-LTE 32GB", + "url": "/v1/smartphones/vivo-y11s-2020-global-dual-sim-td-lte-32gb" + }, + { + "slug": "vivo-y12-2019-premium-edition-dual-sim-td-lte-in-32gb-1904", + "name": "Vivo Y12 2019 Premium Edition Dual SIM TD-LTE IN 32GB 1904", + "url": "/v1/smartphones/vivo-y12-2019-premium-edition-dual-sim-td-lte-in-32gb-1904" + }, + { + "slug": "vivo-y12-2019-standard-edition-dual-sim-td-lte-id-32gb-1904", + "name": "Vivo Y12 2019 Standard Edition Dual SIM TD-LTE ID 32GB 1904", + "url": "/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-id-32gb-1904" + }, + { + "slug": "vivo-y12-2019-standard-edition-dual-sim-td-lte-id-pk-np-64gb-1904", + "name": "Vivo Y12 2019 Standard Edition Dual SIM TD-LTE ID PK NP 64GB 1904", + "url": "/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-id-pk-np-64gb-1904" + }, + { + "slug": "vivo-y12-2019-standard-edition-dual-sim-td-lte-in-ph-64gb-1904", + "name": "Vivo Y12 2019 Standard Edition Dual SIM TD-LTE IN PH 64GB 1904", + "url": "/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-in-ph-64gb-1904" + }, + { + "slug": "vivo-y12-2019-standard-edition-dual-sim-td-lte-my-th-32gb-1904", + "name": "Vivo Y12 2019 Standard Edition Dual SIM TD-LTE MY TH 32GB 1904", + "url": "/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-my-th-32gb-1904" + }, + { + "slug": "vivo-y12-2019-standard-edition-dual-sim-td-lte-my-th-vn-sg-hk-64gb-1904", + "name": "Vivo Y12 2019 Standard Edition Dual SIM TD-LTE MY TH VN SG HK 64GB 1904", + "url": "/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-my-th-vn-sg-hk-64gb-1904" + }, + { + "slug": "vivo-y12-2019-standard-edition-dual-sim-td-lte-tw-au-64gb-1904", + "name": "Vivo Y12 2019 Standard Edition Dual SIM TD-LTE TW AU 64GB 1904", + "url": "/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-tw-au-64gb-1904" + }, + { + "slug": "vivo-y12-2019-standard-edition-global-dual-sim-td-lte-64gb-1904", + "name": "Vivo Y12 2019 Standard Edition Global Dual SIM TD-LTE 64GB 1904", + "url": "/v1/smartphones/vivo-y12-2019-standard-edition-global-dual-sim-td-lte-64gb-1904" + }, + { + "slug": "vivo-y12g-2021-dual-sim-td-lte-v1-in-64gb-v2068", + "name": "Vivo Y12G 2021 Dual SIM TD-LTE V1 IN 64GB V2068", + "url": "/v1/smartphones/vivo-y12g-2021-dual-sim-td-lte-v1-in-64gb-v2068" + }, + { + "slug": "vivo-y12g-2021-dual-sim-td-lte-v1-in-id-32gb-v2068", + "name": "Vivo Y12G 2021 Dual SIM TD-LTE V1 IN ID 32GB V2068", + "url": "/v1/smartphones/vivo-y12g-2021-dual-sim-td-lte-v1-in-id-32gb-v2068" + }, + { + "slug": "vivo-y12a-2021-dual-sim-td-lte-v1-my-bd-v2102", + "name": "Vivo Y12a 2021 Dual SIM TD-LTE V1 MY BD V2102", + "url": "/v1/smartphones/vivo-y12a-2021-dual-sim-td-lte-v1-my-bd-v2102" + }, + { + "slug": "vivo-y12a-2021-dual-sim-td-lte-v2-th-ph-v2102", + "name": "Vivo Y12a 2021 Dual SIM TD-LTE V2 TH PH V2102", + "url": "/v1/smartphones/vivo-y12a-2021-dual-sim-td-lte-v2-th-ph-v2102" + }, + { + "slug": "vivo-y12i-dual-sim-td-lte-v1-id-2007", + "name": "Vivo Y12i Dual SIM TD-LTE V1 ID 2007", + "url": "/v1/smartphones/vivo-y12i-dual-sim-td-lte-v1-id-2007" + }, + { + "slug": "vivo-y12s-2021-dual-sim-td-lte-v1-in-32gb-v2033-v2069", + "name": "Vivo Y12s 2021 Dual SIM TD-LTE V1 IN 32GB V2033 / V2069", + "url": "/v1/smartphones/vivo-y12s-2021-dual-sim-td-lte-v1-in-32gb-v2033-v2069" + }, + { + "slug": "vivo-y12s-dual-sim-td-lte-v1-np-bd-mn-pk-32gb-v2026", + "name": "Vivo Y12s Dual SIM TD-LTE V1 NP BD MN PK 32GB V2026", + "url": "/v1/smartphones/vivo-y12s-dual-sim-td-lte-v1-np-bd-mn-pk-32gb-v2026" + }, + { + "slug": "vivo-y12s-dual-sim-td-lte-v2-th-kz-ph-32gb-v2026", + "name": "Vivo Y12s Dual SIM TD-LTE V2 TH KZ PH 32GB V2026", + "url": "/v1/smartphones/vivo-y12s-dual-sim-td-lte-v2-th-kz-ph-32gb-v2026" + }, + { + "slug": "vivo-y12s-dual-sim-td-lte-v3-my-vn-sg-128gb-v2026", + "name": "Vivo Y12s Dual SIM TD-LTE V3 MY VN SG 128GB V2026", + "url": "/v1/smartphones/vivo-y12s-dual-sim-td-lte-v3-my-vn-sg-128gb-v2026" + }, + { + "slug": "vivo-y12s-dual-sim-td-lte-v3-my-vn-sg-32gb-v2026-v2042", + "name": "Vivo Y12s Dual SIM TD-LTE V3 MY VN SG 32GB V2026 / V2042", + "url": "/v1/smartphones/vivo-y12s-dual-sim-td-lte-v3-my-vn-sg-32gb-v2026-v2042" + }, + { + "slug": "vivo-y12s-dual-sim-td-lte-v4-cn-hk-32gb-v2026", + "name": "Vivo Y12s Dual SIM TD-LTE V4 CN HK 32GB V2026", + "url": "/v1/smartphones/vivo-y12s-dual-sim-td-lte-v4-cn-hk-32gb-v2026" + }, + { + "slug": "vivo-y15-2019-dual-sim-td-lte-id-pk-np-mn-64gb-1901", + "name": "Vivo Y15 2019 Dual SIM TD-LTE ID PK NP MN 64GB 1901", + "url": "/v1/smartphones/vivo-y15-2019-dual-sim-td-lte-id-pk-np-mn-64gb-1901" + }, + { + "slug": "vivo-y15-2019-dual-sim-td-lte-in-ph-64gb-1901", + "name": "Vivo Y15 2019 Dual SIM TD-LTE IN PH 64GB 1901", + "url": "/v1/smartphones/vivo-y15-2019-dual-sim-td-lte-in-ph-64gb-1901" + }, + { + "slug": "vivo-y15-2019-dual-sim-td-lte-vn-64gb-1901", + "name": "Vivo Y15 2019 Dual SIM TD-LTE VN 64GB 1901", + "url": "/v1/smartphones/vivo-y15-2019-dual-sim-td-lte-vn-64gb-1901" + }, + { + "slug": "vivo-y15-2019-global-dual-sim-td-lte-64gb-1901", + "name": "Vivo Y15 2019 Global Dual SIM TD-LTE 64GB 1901", + "url": "/v1/smartphones/vivo-y15-2019-global-dual-sim-td-lte-64gb-1901" + }, + { + "slug": "vivo-y15-2020-dual-sim-td-lte-hk-128gb-1901", + "name": "Vivo Y15 2020 Dual SIM TD-LTE HK 128GB 1901", + "url": "/v1/smartphones/vivo-y15-2020-dual-sim-td-lte-hk-128gb-1901" + }, + { + "slug": "vivo-y15-2020-dual-sim-td-lte-th-my-vn-64gb-1901", + "name": "Vivo Y15 2020 Dual SIM TD-LTE TH MY VN 64GB 1901", + "url": "/v1/smartphones/vivo-y15-2020-dual-sim-td-lte-th-my-vn-64gb-1901" + }, + { + "slug": "vivo-y17-2019-dual-sim-td-lte-au-hk-ph-128gb-1902", + "name": "Vivo Y17 2019 Dual SIM TD-LTE AU HK PH 128GB 1902", + "url": "/v1/smartphones/vivo-y17-2019-dual-sim-td-lte-au-hk-ph-128gb-1902" + }, + { + "slug": "vivo-y17-2019-dual-sim-td-lte-in-id-np-pk-128gb-1902", + "name": "Vivo Y17 2019 Dual SIM TD-LTE IN ID NP PK 128GB 1902", + "url": "/v1/smartphones/vivo-y17-2019-dual-sim-td-lte-in-id-np-pk-128gb-1902" + }, + { + "slug": "vivo-y17-2019-dual-sim-td-lte-ru-kz-64gb-1902", + "name": "Vivo Y17 2019 Dual SIM TD-LTE RU KZ 64GB 1902", + "url": "/v1/smartphones/vivo-y17-2019-dual-sim-td-lte-ru-kz-64gb-1902" + }, + { + "slug": "vivo-y17-2019-dual-sim-td-lte-sg-vn-my-th-128gb-1902", + "name": "Vivo Y17 2019 Dual SIM TD-LTE SG VN MY TH 128GB 1902", + "url": "/v1/smartphones/vivo-y17-2019-dual-sim-td-lte-sg-vn-my-th-128gb-1902" + }, + { + "slug": "vivo-y17-2019-dual-sim-td-lte-sg-vn-my-th-64gb-1902", + "name": "Vivo Y17 2019 Dual SIM TD-LTE SG VN MY TH 64GB 1902", + "url": "/v1/smartphones/vivo-y17-2019-dual-sim-td-lte-sg-vn-my-th-64gb-1902" + }, + { + "slug": "vivo-y19-2019-dual-sim-td-lte-id-128gb-1915", + "name": "Vivo Y19 2019 Dual SIM TD-LTE ID 128GB 1915", + "url": "/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-id-128gb-1915" + }, + { + "slug": "vivo-y19-2019-dual-sim-td-lte-in-pk-128gb-1915", + "name": "Vivo Y19 2019 Dual SIM TD-LTE IN PK 128GB 1915", + "url": "/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-in-pk-128gb-1915" + }, + { + "slug": "vivo-y19-2019-dual-sim-td-lte-km-128gb-1915", + "name": "Vivo Y19 2019 Dual SIM TD-LTE KM 128GB 1915", + "url": "/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-km-128gb-1915" + }, + { + "slug": "vivo-y19-2019-dual-sim-td-lte-my-np-bd-128gb-1915", + "name": "Vivo Y19 2019 Dual SIM TD-LTE MY NP BD 128GB 1915", + "url": "/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-my-np-bd-128gb-1915" + }, + { + "slug": "vivo-y19-2019-dual-sim-td-lte-th-ph-128gb-1915", + "name": "Vivo Y19 2019 Dual SIM TD-LTE TH PH 128GB 1915", + "url": "/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-th-ph-128gb-1915" + }, + { + "slug": "vivo-y19-2019-dual-sim-td-lte-tw-sg-128gb-1915", + "name": "Vivo Y19 2019 Dual SIM TD-LTE TW SG 128GB 1915", + "url": "/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-tw-sg-128gb-1915" + }, + { + "slug": "vivo-y19-2019-dual-sim-td-lte-vn-128gb-1915", + "name": "Vivo Y19 2019 Dual SIM TD-LTE VN 128GB 1915", + "url": "/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-vn-128gb-1915" + }, + { + "slug": "vivo-y19-2019-global-dual-sim-td-lte-128gb-1915", + "name": "Vivo Y19 2019 Global Dual SIM TD-LTE 128GB 1915", + "url": "/v1/smartphones/vivo-y19-2019-global-dual-sim-td-lte-128gb-1915" + }, + { + "slug": "vivo-y1s-2020-premium-edition-global-dual-sim-td-lte-v3-32gb", + "name": "Vivo Y1s 2020 Premium Edition Global Dual SIM TD-LTE V3 32GB", + "url": "/v1/smartphones/vivo-y1s-2020-premium-edition-global-dual-sim-td-lte-v3-32gb" + }, + { + "slug": "vivo-y1s-2020-standard-edition-dual-sim-td-lte-v1-kh-32gb", + "name": "Vivo Y1s 2020 Standard Edition Dual SIM TD-LTE V1 KH 32GB", + "url": "/v1/smartphones/vivo-y1s-2020-standard-edition-dual-sim-td-lte-v1-kh-32gb" + }, + { + "slug": "vivo-y1s-2020-standard-edition-dual-sim-td-lte-v2-vn-32gb", + "name": "Vivo Y1s 2020 Standard Edition Dual SIM TD-LTE V2 VN 32GB", + "url": "/v1/smartphones/vivo-y1s-2020-standard-edition-dual-sim-td-lte-v2-vn-32gb" + }, + { + "slug": "vivo-y20-2021-dual-sim-td-lte-v2-my-bd-64gb", + "name": "Vivo Y20 2021 Dual SIM TD-LTE V2 MY BD 64GB", + "url": "/v1/smartphones/vivo-y20-2021-dual-sim-td-lte-v2-my-bd-64gb" + }, + { + "slug": "vivo-y20a-dual-sim-td-lte-v1-in-v2052-v2034", + "name": "Vivo Y20A Dual SIM TD-LTE V1 IN V2052 / V2034", + "url": "/v1/smartphones/vivo-y20a-dual-sim-td-lte-v1-in-v2052-v2034" + }, + { + "slug": "vivo-y20g-2021-dual-sim-td-lte-in-64gb-v2065", + "name": "Vivo Y20G 2021 Dual SIM TD-LTE IN 64GB V2065", + "url": "/v1/smartphones/vivo-y20g-2021-dual-sim-td-lte-in-64gb-v2065" + }, + { + "slug": "vivo-y20g-dual-sim-td-lte-in-128gb-v2037", + "name": "Vivo Y20G Dual SIM TD-LTE IN 128GB V2037", + "url": "/v1/smartphones/vivo-y20g-dual-sim-td-lte-in-128gb-v2037" + }, + { + "slug": "vivo-y20g-dual-sim-td-lte-in-64gb-v2037", + "name": "Vivo Y20G Dual SIM TD-LTE IN 64GB V2037", + "url": "/v1/smartphones/vivo-y20g-dual-sim-td-lte-in-64gb-v2037" + }, + { + "slug": "vivo-y20i-2020-dual-sim-td-lte-v1-in-64gb-v2027", + "name": "Vivo Y20i 2020 Dual SIM TD-LTE V1 IN 64GB V2027", + "url": "/v1/smartphones/vivo-y20i-2020-dual-sim-td-lte-v1-in-64gb-v2027" + }, + { + "slug": "vivo-y20i-2020-dual-sim-td-lte-v2-ph-64gb", + "name": "Vivo Y20i 2020 Dual SIM TD-LTE V2 PH 64GB", + "url": "/v1/smartphones/vivo-y20i-2020-dual-sim-td-lte-v2-ph-64gb" + }, + { + "slug": "vivo-y20s-2020-global-dual-sim-td-lte-128gb", + "name": "Vivo Y20s 2020 Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/vivo-y20s-2020-global-dual-sim-td-lte-128gb" + }, + { + "slug": "vivo-y21-2021-dual-sim-td-lte-in-128gb-v2111", + "name": "Vivo Y21 2021 Dual SIM TD-LTE IN 128GB V2111", + "url": "/v1/smartphones/vivo-y21-2021-dual-sim-td-lte-in-128gb-v2111" + }, + { + "slug": "vivo-y21-2021-dual-sim-td-lte-in-64gb-v2111", + "name": "Vivo Y21 2021 Dual SIM TD-LTE IN 64GB V2111", + "url": "/v1/smartphones/vivo-y21-2021-dual-sim-td-lte-in-64gb-v2111" + }, + { + "slug": "vivo-y21s-2021-premium-edition-dual-sim-td-lte-vn-v3-v2110", + "name": "Vivo Y21s 2021 Premium Edition Dual SIM TD-LTE VN V3 V2110", + "url": "/v1/smartphones/vivo-y21s-2021-premium-edition-dual-sim-td-lte-vn-v3-v2110" + }, + { + "slug": "vivo-y21s-2021-standard-edition-dual-sim-td-lte-au-v4-v2110", + "name": "Vivo Y21s 2021 Standard Edition Dual SIM TD-LTE AU V4 V2110", + "url": "/v1/smartphones/vivo-y21s-2021-standard-edition-dual-sim-td-lte-au-v4-v2110" + }, + { + "slug": "vivo-y21s-2021-standard-edition-dual-sim-td-lte-id-v1-v2110", + "name": "Vivo Y21s 2021 Standard Edition Dual SIM TD-LTE ID V1 V2110", + "url": "/v1/smartphones/vivo-y21s-2021-standard-edition-dual-sim-td-lte-id-v1-v2110" + }, + { + "slug": "vivo-y21s-2021-standard-edition-dual-sim-td-lte-vn-sg-v3-v2110", + "name": "Vivo Y21s 2021 Standard Edition Dual SIM TD-LTE VN SG V3 V2110", + "url": "/v1/smartphones/vivo-y21s-2021-standard-edition-dual-sim-td-lte-vn-sg-v3-v2110" + }, + { + "slug": "vivo-y3-2019-dual-sim-td-lte-cn-128gb-v1901a", + "name": "Vivo Y3 2019 Dual SIM TD-LTE CN 128GB V1901A", + "url": "/v1/smartphones/vivo-y3-2019-dual-sim-td-lte-cn-128gb-v1901a" + }, + { + "slug": "vivo-y3-2019-dual-sim-td-lte-cn-128gb-v1901t", + "name": "Vivo Y3 2019 Dual SIM TD-LTE CN 128GB V1901T", + "url": "/v1/smartphones/vivo-y3-2019-dual-sim-td-lte-cn-128gb-v1901t" + }, + { + "slug": "vivo-y30-2020-dual-sim-td-lte-v1-in-id-pk-mn-128gb-1938", + "name": "Vivo Y30 2020 Dual SIM TD-LTE V1 IN ID PK MN 128GB 1938", + "url": "/v1/smartphones/vivo-y30-2020-dual-sim-td-lte-v1-in-id-pk-mn-128gb-1938" + }, + { + "slug": "vivo-y30-2020-dual-sim-td-lte-v1-in-id-pk-mn-64gb-1938", + "name": "Vivo Y30 2020 Dual SIM TD-LTE V1 IN ID PK MN 64GB 1938", + "url": "/v1/smartphones/vivo-y30-2020-dual-sim-td-lte-v1-in-id-pk-mn-64gb-1938" + }, + { + "slug": "vivo-y30-2020-dual-sim-td-lte-v2-my-sg-vn-np-bd-128gb-1938", + "name": "Vivo Y30 2020 Dual SIM TD-LTE V2 MY SG VN NP BD 128GB 1938", + "url": "/v1/smartphones/vivo-y30-2020-dual-sim-td-lte-v2-my-sg-vn-np-bd-128gb-1938" + }, + { + "slug": "vivo-y30-2020-dual-sim-td-lte-v2-my-sg-vn-np-bd-64gb-1938", + "name": "Vivo Y30 2020 Dual SIM TD-LTE V2 MY SG VN NP BD 64GB 1938", + "url": "/v1/smartphones/vivo-y30-2020-dual-sim-td-lte-v2-my-sg-vn-np-bd-64gb-1938" + }, + { + "slug": "vivo-y30-2020-dual-sim-td-lte-v3-th-128gb-1938", + "name": "Vivo Y30 2020 Dual SIM TD-LTE V3 TH 128GB 1938", + "url": "/v1/smartphones/vivo-y30-2020-dual-sim-td-lte-v3-th-128gb-1938" + }, + { + "slug": "vivo-y30-2020-global-dual-sim-td-lte-v4-128gb-1938", + "name": "Vivo Y30 2020 Global Dual SIM TD-LTE V4 128GB 1938", + "url": "/v1/smartphones/vivo-y30-2020-global-dual-sim-td-lte-v4-128gb-1938" + }, + { + "slug": "vivo-y30-2021-premium-edition-dual-sim-td-lte-cn-128gb-v2099a", + "name": "Vivo Y30 2021 Premium Edition Dual SIM TD-LTE CN 128GB V2099A", + "url": "/v1/smartphones/vivo-y30-2021-premium-edition-dual-sim-td-lte-cn-128gb-v2099a" + }, + { + "slug": "vivo-y30-standard-2020-dual-sim-td-lte-cn-v2036a", + "name": "Vivo Y30 Standard 2020 Dual SIM TD-LTE CN V2036A", + "url": "/v1/smartphones/vivo-y30-standard-2020-dual-sim-td-lte-cn-v2036a" + }, + { + "slug": "vivo-y30i-2020-dual-sim-td-lte-v1-id-64gb-2019", + "name": "Vivo Y30i 2020 Dual SIM TD-LTE V1 ID 64GB 2019", + "url": "/v1/smartphones/vivo-y30i-2020-dual-sim-td-lte-v1-id-64gb-2019" + }, + { + "slug": "vivo-y31s-standard-version-5g-dual-sim-td-lte-cn-128gb-v2068a-y31s-t2", + "name": "Vivo Y31s standard version 5G Dual SIM TD-LTE CN 128GB V2068A / Y31s t2", + "url": "/v1/smartphones/vivo-y31s-standard-version-5g-dual-sim-td-lte-cn-128gb-v2068a-y31s-t2" + }, + { + "slug": "vivo-y31s-t1-version-5g-dual-sim-td-lte-cn-64gb-v2068a", + "name": "Vivo Y31s t1 version 5G Dual SIM TD-LTE CN 64GB V2068A", + "url": "/v1/smartphones/vivo-y31s-t1-version-5g-dual-sim-td-lte-cn-64gb-v2068a" + }, + { + "slug": "vivo-y33s-2021-premium-edition-dual-sim-td-lte-in-v2-v2109", + "name": "Vivo Y33s 2021 Premium Edition Dual SIM TD-LTE IN V2 V2109", + "url": "/v1/smartphones/vivo-y33s-2021-premium-edition-dual-sim-td-lte-in-v2-v2109" + }, + { + "slug": "vivo-y3n-2019-standard-edition-dual-sim-td-lte-cn-64gb-v1930a", + "name": "Vivo Y3N 2019 Standard Edition Dual SIM TD-LTE CN 64GB V1930A", + "url": "/v1/smartphones/vivo-y3n-2019-standard-edition-dual-sim-td-lte-cn-64gb-v1930a" + }, + { + "slug": "vivo-y3n-2019-standard-edition-dual-sim-td-lte-cn-64gb-v1930t", + "name": "Vivo Y3N 2019 Standard Edition Dual SIM TD-LTE CN 64GB V1930T", + "url": "/v1/smartphones/vivo-y3n-2019-standard-edition-dual-sim-td-lte-cn-64gb-v1930t" + }, + { + "slug": "vivo-y3s-2019-dual-sim-td-lte-cn-128gb-v1901a", + "name": "Vivo Y3s 2019 Dual SIM TD-LTE CN 128GB V1901A", + "url": "/v1/smartphones/vivo-y3s-2019-dual-sim-td-lte-cn-128gb-v1901a" + }, + { + "slug": "vivo-y3s-2019-dual-sim-td-lte-cn-128gb-v1901t", + "name": "Vivo Y3s 2019 Dual SIM TD-LTE CN 128GB V1901T", + "url": "/v1/smartphones/vivo-y3s-2019-dual-sim-td-lte-cn-128gb-v1901t" + }, + { + "slug": "vivo-y3s-2019-dual-sim-td-lte-cn-64gb-v1901a", + "name": "Vivo Y3s 2019 Dual SIM TD-LTE CN 64GB V1901A", + "url": "/v1/smartphones/vivo-y3s-2019-dual-sim-td-lte-cn-64gb-v1901a" + }, + { + "slug": "vivo-y3s-2019-dual-sim-td-lte-cn-64gb-v1901t", + "name": "Vivo Y3s 2019 Dual SIM TD-LTE CN 64GB V1901T", + "url": "/v1/smartphones/vivo-y3s-2019-dual-sim-td-lte-cn-64gb-v1901t" + }, + { + "slug": "vivo-y50-2020-dual-sim-td-lte-v1-in-id-128gb-1935", + "name": "Vivo Y50 2020 Dual SIM TD-LTE V1 IN ID 128GB 1935", + "url": "/v1/smartphones/vivo-y50-2020-dual-sim-td-lte-v1-in-id-128gb-1935" + }, + { + "slug": "vivo-y50-2020-dual-sim-td-lte-v2-my-vn-bd-128gb-1935", + "name": "Vivo Y50 2020 Dual SIM TD-LTE V2 MY VN BD 128GB 1935", + "url": "/v1/smartphones/vivo-y50-2020-dual-sim-td-lte-v2-my-vn-bd-128gb-1935" + }, + { + "slug": "vivo-y50-2020-dual-sim-td-lte-v4-cn-hk-128gb-1935", + "name": "Vivo Y50 2020 Dual SIM TD-LTE V4 CN HK 128GB 1935", + "url": "/v1/smartphones/vivo-y50-2020-dual-sim-td-lte-v4-cn-hk-128gb-1935" + }, + { + "slug": "vivo-y50-2020-premium-edition-dual-sim-td-lte-v3-th-sg-128gb-1935", + "name": "Vivo Y50 2020 Premium Edition Dual SIM TD-LTE V3 TH SG 128GB 1935", + "url": "/v1/smartphones/vivo-y50-2020-premium-edition-dual-sim-td-lte-v3-th-sg-128gb-1935" + }, + { + "slug": "vivo-y50-2020-standard-edition-dual-sim-td-lte-v3-th-sg-128gb-1935", + "name": "Vivo Y50 2020 Standard Edition Dual SIM TD-LTE V3 TH SG 128GB 1935", + "url": "/v1/smartphones/vivo-y50-2020-standard-edition-dual-sim-td-lte-v3-th-sg-128gb-1935" + }, + { + "slug": "vivo-y51s-5g-dual-sim-td-lte-cn-128gb-v2002a", + "name": "Vivo Y51s 5G Dual SIM TD-LTE CN 128GB V2002A", + "url": "/v1/smartphones/vivo-y51s-5g-dual-sim-td-lte-cn-128gb-v2002a" + }, + { + "slug": "vivo-y52-5g-dual-sim-td-lte-v1-th-128gb-v2053", + "name": "Vivo Y52 5G Dual SIM TD-LTE V1 TH 128GB V2053", + "url": "/v1/smartphones/vivo-y52-5g-dual-sim-td-lte-v1-th-128gb-v2053" + }, + { + "slug": "vivo-y52-5g-dual-sim-td-lte-v2-tw-128gb-v2053", + "name": "Vivo Y52 5G Dual SIM TD-LTE V2 TW 128GB V2053", + "url": "/v1/smartphones/vivo-y52-5g-dual-sim-td-lte-v2-tw-128gb-v2053" + }, + { + "slug": "vivo-y52-5g-global-dual-sim-td-lte-v3-128gb-v2053", + "name": "Vivo Y52 5G Global Dual SIM TD-LTE V3 128GB V2053", + "url": "/v1/smartphones/vivo-y52-5g-global-dual-sim-td-lte-v3-128gb-v2053" + }, + { + "slug": "vivo-y52s-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-v2057a", + "name": "Vivo Y52s 5G 2020 Premium Edition Dual SIM TD-LTE CN 128GB V2057A", + "url": "/v1/smartphones/vivo-y52s-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-v2057a" + }, + { + "slug": "vivo-y52s-5g-2020-premium-edition-dual-sim-td-lte-cn-256gb-v2057a", + "name": "Vivo Y52s 5G 2020 Premium Edition Dual SIM TD-LTE CN 256GB V2057A", + "url": "/v1/smartphones/vivo-y52s-5g-2020-premium-edition-dual-sim-td-lte-cn-256gb-v2057a" + }, + { + "slug": "vivo-y52s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-v2057a", + "name": "Vivo Y52s 5G 2020 Standard Edition Dual SIM TD-LTE CN 128GB V2057A", + "url": "/v1/smartphones/vivo-y52s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-v2057a" + }, + { + "slug": "vivo-y53s-4g-dual-sim-td-lte-in-v2058", + "name": "Vivo Y53s 4G Dual SIM TD-LTE IN V2058", + "url": "/v1/smartphones/vivo-y53s-4g-dual-sim-td-lte-in-v2058" + }, + { + "slug": "vivo-y5s-2019-premium-edition-dual-sim-td-lte-cn-128gb-v1934a", + "name": "Vivo Y5s 2019 Premium Edition Dual SIM TD-LTE CN 128GB V1934A", + "url": "/v1/smartphones/vivo-y5s-2019-premium-edition-dual-sim-td-lte-cn-128gb-v1934a" + }, + { + "slug": "vivo-y5s-2019-premium-edition-dual-sim-td-lte-cn-128gb-v1934t", + "name": "Vivo Y5s 2019 Premium Edition Dual SIM TD-LTE CN 128GB V1934T", + "url": "/v1/smartphones/vivo-y5s-2019-premium-edition-dual-sim-td-lte-cn-128gb-v1934t" + }, + { + "slug": "vivo-y5s-2019-standard-edition-dual-sim-td-lte-cn-128gb-v1934a", + "name": "Vivo Y5s 2019 Standard Edition Dual SIM TD-LTE CN 128GB V1934A", + "url": "/v1/smartphones/vivo-y5s-2019-standard-edition-dual-sim-td-lte-cn-128gb-v1934a" + }, + { + "slug": "vivo-y5s-2019-standard-edition-dual-sim-td-lte-cn-128gb-v1934t", + "name": "Vivo Y5s 2019 Standard Edition Dual SIM TD-LTE CN 128GB V1934T", + "url": "/v1/smartphones/vivo-y5s-2019-standard-edition-dual-sim-td-lte-cn-128gb-v1934t" + }, + { + "slug": "vivo-y65-dual-sim-lte-my-vn-1719", + "name": "Vivo Y65 Dual SIM LTE MY VN 1719", + "url": "/v1/smartphones/vivo-y65-dual-sim-lte-my-vn-1719" + }, + { + "slug": "vivo-y65-dual-sim-td-lte-kh-1719", + "name": "Vivo Y65 Dual SIM TD-LTE KH 1719", + "url": "/v1/smartphones/vivo-y65-dual-sim-td-lte-kh-1719" + }, + { + "slug": "vivo-y66-dual-sim-td-lte-cn", + "name": "Vivo Y66 Dual SIM TD-LTE CN", + "url": "/v1/smartphones/vivo-y66-dual-sim-td-lte-cn" + }, + { + "slug": "vivo-y66i-a-dual-sim-td-lte-cn", + "name": "Vivo Y66i A Dual SIM TD-LTE CN", + "url": "/v1/smartphones/vivo-y66i-a-dual-sim-td-lte-cn" + }, + { + "slug": "vivo-y66i-dual-sim-td-lte-cn", + "name": "Vivo Y66i Dual SIM TD-LTE CN", + "url": "/v1/smartphones/vivo-y66i-dual-sim-td-lte-cn" + }, + { + "slug": "vivo-y70-2020-global-dual-sim-td-lte-v4-128gb", + "name": "Vivo Y70 2020 Global Dual SIM TD-LTE V4 128GB", + "url": "/v1/smartphones/vivo-y70-2020-global-dual-sim-td-lte-v4-128gb" + }, + { + "slug": "vivo-y70s-premium-edition-5g-dual-sim-td-lte-cn-128gb-v2002a", + "name": "Vivo Y70S Premium Edition 5G Dual SIM TD-LTE CN 128GB V2002A", + "url": "/v1/smartphones/vivo-y70s-premium-edition-5g-dual-sim-td-lte-cn-128gb-v2002a" + }, + { + "slug": "vivo-y70s-premium-edition-5g-dual-sim-td-lte-cn-256gb-v2002a", + "name": "Vivo Y70S Premium Edition 5G Dual SIM TD-LTE CN 256GB V2002A", + "url": "/v1/smartphones/vivo-y70s-premium-edition-5g-dual-sim-td-lte-cn-256gb-v2002a" + }, + { + "slug": "vivo-y70s-standard-edition-5g-dual-sim-td-lte-cn-128gb-v2002a", + "name": "Vivo Y70S Standard Edition 5G Dual SIM TD-LTE CN 128GB V2002A", + "url": "/v1/smartphones/vivo-y70s-standard-edition-5g-dual-sim-td-lte-cn-128gb-v2002a" + }, + { + "slug": "vivo-y70t-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2002a", + "name": "Vivo Y70t 5G Premium Edition Dual SIM TD-LTE CN 128GB V2002A", + "url": "/v1/smartphones/vivo-y70t-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2002a" + }, + { + "slug": "vivo-y70t-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2002a", + "name": "Vivo Y70t 5G Premium Edition Dual SIM TD-LTE CN 256GB V2002A", + "url": "/v1/smartphones/vivo-y70t-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2002a" + }, + { + "slug": "vivo-y70t-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2002a", + "name": "Vivo Y70t 5G Standard Edition Dual SIM TD-LTE CN 128GB V2002A", + "url": "/v1/smartphones/vivo-y70t-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2002a" + }, + { + "slug": "vivo-y71-dual-sim-td-lte-bd-np-1801-y71i", + "name": "Vivo Y71 Dual SIM TD-LTE BD NP 1801 / Y71i", + "url": "/v1/smartphones/vivo-y71-dual-sim-td-lte-bd-np-1801-y71i" + }, + { + "slug": "vivo-y71-dual-sim-td-lte-in-16gb-1724", + "name": "Vivo Y71 Dual SIM TD-LTE IN 16GB 1724", + "url": "/v1/smartphones/vivo-y71-dual-sim-td-lte-in-16gb-1724" + }, + { + "slug": "vivo-y71-dual-sim-td-lte-in-32gb-1724", + "name": "Vivo Y71 Dual SIM TD-LTE IN 32GB 1724", + "url": "/v1/smartphones/vivo-y71-dual-sim-td-lte-in-32gb-1724" + }, + { + "slug": "vivo-y71-dual-sim-td-lte-ru-16gb-1801", + "name": "Vivo Y71 Dual SIM TD-LTE RU 16GB 1801", + "url": "/v1/smartphones/vivo-y71-dual-sim-td-lte-ru-16gb-1801" + }, + { + "slug": "vivo-y71-dual-sim-td-lte-vn-16gb-1724", + "name": "Vivo Y71 Dual SIM TD-LTE VN 16GB 1724", + "url": "/v1/smartphones/vivo-y71-dual-sim-td-lte-vn-16gb-1724" + }, + { + "slug": "vivo-y71i-dual-sim-td-lte-in-1801", + "name": "Vivo Y71i Dual SIM TD-LTE IN 1801", + "url": "/v1/smartphones/vivo-y71i-dual-sim-td-lte-in-1801" + }, + { + "slug": "vivo-y72-5g-premium-edition-dual-sim-td-lte-in-128gb-v2060", + "name": "Vivo Y72 5G Premium Edition Dual SIM TD-LTE IN 128GB V2060", + "url": "/v1/smartphones/vivo-y72-5g-premium-edition-dual-sim-td-lte-in-128gb-v2060" + }, + { + "slug": "vivo-y72-5g-premium-edition-dual-sim-td-lte-v1-th-vn-128gb-v2041", + "name": "Vivo Y72 5G Premium Edition Dual SIM TD-LTE V1 TH VN 128GB V2041", + "url": "/v1/smartphones/vivo-y72-5g-premium-edition-dual-sim-td-lte-v1-th-vn-128gb-v2041" + }, + { + "slug": "vivo-y72-5g-premium-edition-dual-sim-td-lte-v2-tw-128gb-v2041", + "name": "Vivo Y72 5G Premium Edition Dual SIM TD-LTE V2 TW 128GB V2041", + "url": "/v1/smartphones/vivo-y72-5g-premium-edition-dual-sim-td-lte-v2-tw-128gb-v2041" + }, + { + "slug": "vivo-y72-5g-premium-edition-global-dual-sim-td-lte-v3-128gb-v2041", + "name": "Vivo Y72 5G Premium Edition Global Dual SIM TD-LTE V3 128GB V2041", + "url": "/v1/smartphones/vivo-y72-5g-premium-edition-global-dual-sim-td-lte-v3-128gb-v2041" + }, + { + "slug": "vivo-y72-5g-standard-edition-dual-sim-td-lte-v1-th-vn-128gb-v2041", + "name": "Vivo Y72 5G Standard Edition Dual SIM TD-LTE V1 TH VN 128GB V2041", + "url": "/v1/smartphones/vivo-y72-5g-standard-edition-dual-sim-td-lte-v1-th-vn-128gb-v2041" + }, + { + "slug": "vivo-y73-premium-edition-dual-sim-td-lte-cn-64gb-v1731ca", + "name": "Vivo Y73 Premium Edition Dual SIM TD-LTE CN 64GB V1731CA", + "url": "/v1/smartphones/vivo-y73-premium-edition-dual-sim-td-lte-cn-64gb-v1731ca" + }, + { + "slug": "vivo-y73-standard-edition-dual-sim-td-lte-cn-32gb-v1731ca", + "name": "Vivo Y73 Standard Edition Dual SIM TD-LTE CN 32GB V1731CA", + "url": "/v1/smartphones/vivo-y73-standard-edition-dual-sim-td-lte-cn-32gb-v1731ca" + }, + { + "slug": "vivo-y73-standard-edition-dual-sim-td-lte-cn-64gb-v1731ca", + "name": "Vivo Y73 Standard Edition Dual SIM TD-LTE CN 64GB V1731CA", + "url": "/v1/smartphones/vivo-y73-standard-edition-dual-sim-td-lte-cn-64gb-v1731ca" + }, + { + "slug": "vivo-y73s-5g-2020-dual-sim-td-lte-cn-128gb-v2031a", + "name": "Vivo Y73s 5G 2020 Dual SIM TD-LTE CN 128GB V2031A", + "url": "/v1/smartphones/vivo-y73s-5g-2020-dual-sim-td-lte-cn-128gb-v2031a" + }, + { + "slug": "vivo-y75-premium-edition-dual-sim-lte-cn-32gb", + "name": "Vivo Y75 Premium Edition Dual SIM LTE CN 32GB", + "url": "/v1/smartphones/vivo-y75-premium-edition-dual-sim-lte-cn-32gb" + }, + { + "slug": "vivo-y75-premium-edition-dual-sim-lte-cn-64gb", + "name": "Vivo Y75 Premium Edition Dual SIM LTE CN 64GB", + "url": "/v1/smartphones/vivo-y75-premium-edition-dual-sim-lte-cn-64gb" + }, + { + "slug": "vivo-y75-standard-edition-dual-sim-lte-cn-32gb", + "name": "Vivo Y75 Standard Edition Dual SIM LTE CN 32GB", + "url": "/v1/smartphones/vivo-y75-standard-edition-dual-sim-lte-cn-32gb" + }, + { + "slug": "vivo-y75a-premium-edition-dual-sim-lte-cn-64gb", + "name": "Vivo Y75A Premium Edition Dual SIM LTE CN 64GB", + "url": "/v1/smartphones/vivo-y75a-premium-edition-dual-sim-lte-cn-64gb" + }, + { + "slug": "vivo-y75a-standard-edition-dual-sim-lte-cn-32gb", + "name": "Vivo Y75A Standard Edition Dual SIM LTE CN 32GB", + "url": "/v1/smartphones/vivo-y75a-standard-edition-dual-sim-lte-cn-32gb" + }, + { + "slug": "vivo-y75s-dual-sim-lte-cn-32gb", + "name": "Vivo Y75s Dual SIM LTE CN 32GB", + "url": "/v1/smartphones/vivo-y75s-dual-sim-lte-cn-32gb" + }, + { + "slug": "vivo-y75s-dual-sim-lte-cn-64gb", + "name": "Vivo Y75s Dual SIM LTE CN 64GB", + "url": "/v1/smartphones/vivo-y75s-dual-sim-lte-cn-64gb" + }, + { + "slug": "vivo-y7s-2019-dual-sim-td-lte-cn-128gb-v1913a", + "name": "Vivo Y7s 2019 Dual SIM TD-LTE CN 128GB V1913A", + "url": "/v1/smartphones/vivo-y7s-2019-dual-sim-td-lte-cn-128gb-v1913a" + }, + { + "slug": "vivo-y7s-2019-dual-sim-td-lte-cn-128gb-v1913t", + "name": "Vivo Y7s 2019 Dual SIM TD-LTE CN 128GB V1913T", + "url": "/v1/smartphones/vivo-y7s-2019-dual-sim-td-lte-cn-128gb-v1913t" + }, + { + "slug": "vivo-y81-dual-sim-td-lte-in-id-pk-th-1808", + "name": "Vivo Y81 Dual SIM TD-LTE IN ID PK TH 1808", + "url": "/v1/smartphones/vivo-y81-dual-sim-td-lte-in-id-pk-th-1808" + }, + { + "slug": "vivo-y81-dual-sim-td-lte-ru-1808", + "name": "Vivo Y81 Dual SIM TD-LTE RU 1808", + "url": "/v1/smartphones/vivo-y81-dual-sim-td-lte-ru-1808" + }, + { + "slug": "vivo-y81-dual-sim-td-lte-sg-hk-1808", + "name": "Vivo Y81 Dual SIM TD-LTE SG HK 1808", + "url": "/v1/smartphones/vivo-y81-dual-sim-td-lte-sg-hk-1808" + }, + { + "slug": "vivo-y81-dual-sim-td-lte-tw-my-vn-ph-1808", + "name": "Vivo Y81 Dual SIM TD-LTE TW MY VN PH 1808", + "url": "/v1/smartphones/vivo-y81-dual-sim-td-lte-tw-my-vn-ph-1808" + }, + { + "slug": "vivo-y81-premium-edition-dual-sim-td-lte-cn-64gb-v1732a-y81s", + "name": "Vivo Y81 Premium Edition Dual SIM TD-LTE CN 64GB V1732A / Y81s", + "url": "/v1/smartphones/vivo-y81-premium-edition-dual-sim-td-lte-cn-64gb-v1732a-y81s" + }, + { + "slug": "vivo-y81-standard-edition-dual-sim-td-lte-cn-32gb-v1732a-y81s", + "name": "Vivo Y81 Standard Edition Dual SIM TD-LTE CN 32GB V1732A / Y81s", + "url": "/v1/smartphones/vivo-y81-standard-edition-dual-sim-td-lte-cn-32gb-v1732a-y81s" + }, + { + "slug": "vivo-y81-standard-edition-dual-sim-td-lte-cn-32gb-v1732t-y81s", + "name": "Vivo Y81 Standard Edition Dual SIM TD-LTE CN 32GB V1732T / Y81s", + "url": "/v1/smartphones/vivo-y81-standard-edition-dual-sim-td-lte-cn-32gb-v1732t-y81s" + }, + { + "slug": "vivo-y81-standard-edition-dual-sim-td-lte-cn-64gb-v1732a-y81s", + "name": "Vivo Y81 Standard Edition Dual SIM TD-LTE CN 64GB V1732A / Y81s", + "url": "/v1/smartphones/vivo-y81-standard-edition-dual-sim-td-lte-cn-64gb-v1732a-y81s" + }, + { + "slug": "vivo-y81i-dual-sim-td-lte-in-pk-th-id-y81", + "name": "Vivo Y81i Dual SIM TD-LTE IN PK TH ID / Y81", + "url": "/v1/smartphones/vivo-y81i-dual-sim-td-lte-in-pk-th-id-y81" + }, + { + "slug": "vivo-y81i-dual-sim-td-lte-my-bd", + "name": "Vivo Y81i Dual SIM TD-LTE MY BD", + "url": "/v1/smartphones/vivo-y81i-dual-sim-td-lte-my-bd" + }, + { + "slug": "vivo-y83-dual-sim-td-lte-cn", + "name": "Vivo Y83 Dual SIM TD-LTE CN", + "url": "/v1/smartphones/vivo-y83-dual-sim-td-lte-cn" + }, + { + "slug": "vivo-y83-dual-sim-td-lte-in-id-1802", + "name": "Vivo Y83 Dual SIM TD-LTE IN ID 1802", + "url": "/v1/smartphones/vivo-y83-dual-sim-td-lte-in-id-1802" + }, + { + "slug": "vivo-y83-pro-dual-sim-td-lte-in-1803", + "name": "Vivo Y83 Pro Dual SIM TD-LTE IN 1803", + "url": "/v1/smartphones/vivo-y83-pro-dual-sim-td-lte-in-1803" + }, + { + "slug": "vivo-y83a-dual-sim-td-lte-cn", + "name": "Vivo Y83A Dual SIM TD-LTE CN", + "url": "/v1/smartphones/vivo-y83a-dual-sim-td-lte-cn" + }, + { + "slug": "vivo-y85-dual-sim-td-lte-cn-64gb", + "name": "Vivo Y85 Dual SIM TD-LTE CN 64GB", + "url": "/v1/smartphones/vivo-y85-dual-sim-td-lte-cn-64gb" + }, + { + "slug": "vivo-y85-dual-sim-td-lte-ru-64gb-1726", + "name": "Vivo Y85 Dual SIM TD-LTE RU 64GB 1726", + "url": "/v1/smartphones/vivo-y85-dual-sim-td-lte-ru-64gb-1726" + }, + { + "slug": "vivo-y85-dual-sim-td-lte-th-1726", + "name": "Vivo Y85 Dual SIM TD-LTE TH 1726", + "url": "/v1/smartphones/vivo-y85-dual-sim-td-lte-th-1726" + }, + { + "slug": "vivo-y85-dual-sim-td-lte-vn-sg-hk-bd-1726", + "name": "Vivo Y85 Dual SIM TD-LTE VN SG HK BD 1726", + "url": "/v1/smartphones/vivo-y85-dual-sim-td-lte-vn-sg-hk-bd-1726" + }, + { + "slug": "vivo-y85a-dual-sim-td-lte-cn-32gb", + "name": "Vivo Y85A Dual SIM TD-LTE CN 32GB", + "url": "/v1/smartphones/vivo-y85a-dual-sim-td-lte-cn-32gb" + }, + { + "slug": "vivo-y90-dual-sim-td-lte-bd-eg-ke-32gb-1908", + "name": "Vivo Y90 Dual SIM TD-LTE BD EG KE 32GB 1908", + "url": "/v1/smartphones/vivo-y90-dual-sim-td-lte-bd-eg-ke-32gb-1908" + }, + { + "slug": "vivo-y90-dual-sim-td-lte-in-16gb-1908", + "name": "Vivo Y90 Dual SIM TD-LTE IN 16GB 1908", + "url": "/v1/smartphones/vivo-y90-dual-sim-td-lte-in-16gb-1908" + }, + { + "slug": "vivo-y90-dual-sim-td-lte-pk-np-mn-32gb-1908", + "name": "Vivo Y90 Dual SIM TD-LTE PK NP MN 32GB 1908", + "url": "/v1/smartphones/vivo-y90-dual-sim-td-lte-pk-np-mn-32gb-1908" + }, + { + "slug": "vivo-y91-2019-dual-sim-td-lte-id-th-y91i-32gb", + "name": "Vivo Y91 2019 Dual SIM TD-LTE ID TH / Y91i 32GB", + "url": "/v1/smartphones/vivo-y91-2019-dual-sim-td-lte-id-th-y91i-32gb" + }, + { + "slug": "vivo-y91-dual-sim-td-lte-cn-v1818ca", + "name": "Vivo Y91 Dual SIM TD-LTE CN V1818CA", + "url": "/v1/smartphones/vivo-y91-dual-sim-td-lte-cn-v1818ca" + }, + { + "slug": "vivo-y91-dual-sim-td-lte-cn-v1818ct", + "name": "Vivo Y91 Dual SIM TD-LTE CN V1818CT", + "url": "/v1/smartphones/vivo-y91-dual-sim-td-lte-cn-v1818ct" + }, + { + "slug": "vivo-y91-dual-sim-td-lte-ph-1817", + "name": "Vivo Y91 Dual SIM TD-LTE PH 1817", + "url": "/v1/smartphones/vivo-y91-dual-sim-td-lte-ph-1817" + }, + { + "slug": "vivo-y91-dual-sim-td-lte-pk-1814", + "name": "Vivo Y91 Dual SIM TD-LTE PK 1814", + "url": "/v1/smartphones/vivo-y91-dual-sim-td-lte-pk-1814" + }, + { + "slug": "vivo-y91c-dual-sim-td-lte-v1-pk-th-bd-1820-y91c-2020", + "name": "Vivo Y91c Dual SIM TD-LTE V1 PK TH BD 1820 / Y91c 2020", + "url": "/v1/smartphones/vivo-y91c-dual-sim-td-lte-v1-pk-th-bd-1820-y91c-2020" + }, + { + "slug": "vivo-y91c-dual-sim-td-lte-v2-vn-ph-my-1820", + "name": "Vivo Y91c Dual SIM TD-LTE V2 VN PH MY 1820", + "url": "/v1/smartphones/vivo-y91c-dual-sim-td-lte-v2-vn-ph-my-1820" + }, + { + "slug": "vivo-y91c-dual-sim-td-lte-v3-eg-1820", + "name": "Vivo Y91c Dual SIM TD-LTE V3 EG 1820", + "url": "/v1/smartphones/vivo-y91c-dual-sim-td-lte-v3-eg-1820" + }, + { + "slug": "vivo-y91c-global-dual-sim-td-lte-v4-1820", + "name": "Vivo Y91c Global Dual SIM TD-LTE V4 1820", + "url": "/v1/smartphones/vivo-y91c-global-dual-sim-td-lte-v4-1820" + }, + { + "slug": "vivo-y91i-dual-sim-td-lte-my-1816", + "name": "Vivo Y91i Dual SIM TD-LTE MY 1816", + "url": "/v1/smartphones/vivo-y91i-dual-sim-td-lte-my-1816" + }, + { + "slug": "vivo-y91i-dual-sim-td-lte-my-32gb", + "name": "Vivo Y91i Dual SIM TD-LTE MY 32GB", + "url": "/v1/smartphones/vivo-y91i-dual-sim-td-lte-my-32gb" + }, + { + "slug": "vivo-y91i-dual-sim-td-lte-ph-id-1817", + "name": "Vivo Y91i Dual SIM TD-LTE PH ID 1817", + "url": "/v1/smartphones/vivo-y91i-dual-sim-td-lte-ph-id-1817" + }, + { + "slug": "vivo-y91i-dual-sim-td-lte-th-1816", + "name": "Vivo Y91i Dual SIM TD-LTE TH 1816", + "url": "/v1/smartphones/vivo-y91i-dual-sim-td-lte-th-1816" + }, + { + "slug": "vivo-y93-dual-sim-td-lte-in-1815", + "name": "Vivo Y93 Dual SIM TD-LTE IN 1815", + "url": "/v1/smartphones/vivo-y93-dual-sim-td-lte-in-1815" + }, + { + "slug": "vivo-y93-lite-dual-sim-td-lte-ru-1817", + "name": "Vivo Y93 Lite Dual SIM TD-LTE RU 1817", + "url": "/v1/smartphones/vivo-y93-lite-dual-sim-td-lte-ru-1817" + }, + { + "slug": "vivo-y93-premium-edition-dual-sim-td-lte-cn-v1818a", + "name": "Vivo Y93 Premium Edition Dual SIM TD-LTE CN V1818A", + "url": "/v1/smartphones/vivo-y93-premium-edition-dual-sim-td-lte-cn-v1818a" + }, + { + "slug": "vivo-y93-premium-edition-dual-sim-td-lte-cn-v1818t", + "name": "Vivo Y93 Premium Edition Dual SIM TD-LTE CN V1818T", + "url": "/v1/smartphones/vivo-y93-premium-edition-dual-sim-td-lte-cn-v1818t" + }, + { + "slug": "vivo-y93-standard-edition-dual-sim-td-lte-cn-v1818a", + "name": "Vivo Y93 Standard Edition Dual SIM TD-LTE CN V1818A", + "url": "/v1/smartphones/vivo-y93-standard-edition-dual-sim-td-lte-cn-v1818a" + }, + { + "slug": "vivo-y93-standard-edition-dual-sim-td-lte-cn-v1818t", + "name": "Vivo Y93 Standard Edition Dual SIM TD-LTE CN V1818T", + "url": "/v1/smartphones/vivo-y93-standard-edition-dual-sim-td-lte-cn-v1818t" + }, + { + "slug": "vivo-y93s-dual-sim-td-lte-cn-v1818ca", + "name": "Vivo Y93s Dual SIM TD-LTE CN V1818CA", + "url": "/v1/smartphones/vivo-y93s-dual-sim-td-lte-cn-v1818ca" + }, + { + "slug": "vivo-y93s-dual-sim-td-lte-cn-v1818ct", + "name": "Vivo Y93s Dual SIM TD-LTE CN V1818CT", + "url": "/v1/smartphones/vivo-y93s-dual-sim-td-lte-cn-v1818ct" + }, + { + "slug": "vivo-y93st-standard-edition-dual-sim-td-lte-cn-v1818ca", + "name": "Vivo Y93st Standard Edition Dual SIM TD-LTE CN V1818CA", + "url": "/v1/smartphones/vivo-y93st-standard-edition-dual-sim-td-lte-cn-v1818ca" + }, + { + "slug": "vivo-y93st-standard-edition-dual-sim-td-lte-cn-v1818ct", + "name": "Vivo Y93st Standard Edition Dual SIM TD-LTE CN V1818CT", + "url": "/v1/smartphones/vivo-y93st-standard-edition-dual-sim-td-lte-cn-v1818ct" + }, + { + "slug": "vivo-y95-dual-sim-td-lte-in-1807", + "name": "Vivo Y95 Dual SIM TD-LTE IN 1807", + "url": "/v1/smartphones/vivo-y95-dual-sim-td-lte-in-1807" + }, + { + "slug": "vivo-y95-dual-sim-td-lte-ru-1807", + "name": "Vivo Y95 Dual SIM TD-LTE RU 1807", + "url": "/v1/smartphones/vivo-y95-dual-sim-td-lte-ru-1807" + }, + { + "slug": "vivo-y95-dual-sim-td-lte-tw-ph-1807", + "name": "Vivo Y95 Dual SIM TD-LTE TW PH 1807", + "url": "/v1/smartphones/vivo-y95-dual-sim-td-lte-tw-ph-1807" + }, + { + "slug": "vivo-y97-dual-sim-td-lte-cn-v1813a", + "name": "Vivo Y97 Dual SIM TD-LTE CN V1813A", + "url": "/v1/smartphones/vivo-y97-dual-sim-td-lte-cn-v1813a" + }, + { + "slug": "vivo-y97-dual-sim-td-lte-cn-v1813t", + "name": "Vivo Y97 Dual SIM TD-LTE CN V1813T", + "url": "/v1/smartphones/vivo-y97-dual-sim-td-lte-cn-v1813t" + }, + { + "slug": "vivo-y9s-2019-dual-sim-td-lte-cn-128gb-v1945a", + "name": "Vivo Y9s 2019 Dual SIM TD-LTE CN 128GB V1945A", + "url": "/v1/smartphones/vivo-y9s-2019-dual-sim-td-lte-cn-128gb-v1945a" + }, + { + "slug": "vivo-y9s-2019-dual-sim-td-lte-cn-128gb-v1945t", + "name": "Vivo Y9s 2019 Dual SIM TD-LTE CN 128GB V1945T", + "url": "/v1/smartphones/vivo-y9s-2019-dual-sim-td-lte-cn-128gb-v1945t" + }, + { + "slug": "vivo-z1-pro-premium-edition-dual-sim-td-lte-in-128gb-1951", + "name": "Vivo Z1 Pro Premium Edition Dual SIM TD-LTE IN 128GB 1951", + "url": "/v1/smartphones/vivo-z1-pro-premium-edition-dual-sim-td-lte-in-128gb-1951" + }, + { + "slug": "vivo-z1-pro-premium-edition-dual-sim-td-lte-in-64gb-1951", + "name": "Vivo Z1 Pro Premium Edition Dual SIM TD-LTE IN 64GB 1951", + "url": "/v1/smartphones/vivo-z1-pro-premium-edition-dual-sim-td-lte-in-64gb-1951" + }, + { + "slug": "vivo-z1-pro-standard-edition-dual-sim-td-lte-in-64gb-1951", + "name": "Vivo Z1 Pro Standard Edition Dual SIM TD-LTE IN 64GB 1951", + "url": "/v1/smartphones/vivo-z1-pro-standard-edition-dual-sim-td-lte-in-64gb-1951" + }, + { + "slug": "vivo-z1-standard-edition-dual-sim-td-lte-cn-128gb-v1801a0", + "name": "Vivo Z1 Standard Edition Dual SIM TD-LTE CN 128GB V1801A0", + "url": "/v1/smartphones/vivo-z1-standard-edition-dual-sim-td-lte-cn-128gb-v1801a0" + }, + { + "slug": "vivo-z1-standard-edition-dual-sim-td-lte-cn-64gb-v1801a0", + "name": "Vivo Z1 Standard Edition Dual SIM TD-LTE CN 64GB V1801A0", + "url": "/v1/smartphones/vivo-z1-standard-edition-dual-sim-td-lte-cn-64gb-v1801a0" + }, + { + "slug": "vivo-z10-dual-sim-td-lte-in-1716", + "name": "Vivo Z10 Dual SIM TD-LTE IN 1716", + "url": "/v1/smartphones/vivo-z10-dual-sim-td-lte-in-1716" + }, + { + "slug": "vivo-z1i-dual-sim-td-lte-cn-v1730da", + "name": "Vivo Z1i Dual SIM TD-LTE CN V1730DA", + "url": "/v1/smartphones/vivo-z1i-dual-sim-td-lte-cn-v1730da" + }, + { + "slug": "vivo-z1i-dual-sim-td-lte-cn-v1730dt", + "name": "Vivo Z1i Dual SIM TD-LTE CN V1730DT", + "url": "/v1/smartphones/vivo-z1i-dual-sim-td-lte-cn-v1730dt" + }, + { + "slug": "vivo-z1x-dual-sim-td-lte-in-128gb-1917", + "name": "Vivo Z1x Dual SIM TD-LTE IN 128GB 1917", + "url": "/v1/smartphones/vivo-z1x-dual-sim-td-lte-in-128gb-1917" + }, + { + "slug": "vivo-z1x-dual-sim-td-lte-in-64gb-1917", + "name": "Vivo Z1x Dual SIM TD-LTE IN 64GB 1917", + "url": "/v1/smartphones/vivo-z1x-dual-sim-td-lte-in-64gb-1917" + }, + { + "slug": "vivo-z3-dual-sim-td-lte-cn-128gb-v1813da-v1813bt", + "name": "Vivo Z3 Dual SIM TD-LTE CN 128GB V1813DA / V1813BT", + "url": "/v1/smartphones/vivo-z3-dual-sim-td-lte-cn-128gb-v1813da-v1813bt" + }, + { + "slug": "vivo-z3-dual-sim-td-lte-cn-64gb-v1813ba", + "name": "Vivo Z3 Dual SIM TD-LTE CN 64GB V1813BA", + "url": "/v1/smartphones/vivo-z3-dual-sim-td-lte-cn-64gb-v1813ba" + }, + { + "slug": "vivo-z3-dual-sim-td-lte-cn-64gb-v1813da", + "name": "Vivo Z3 Dual SIM TD-LTE CN 64GB V1813DA", + "url": "/v1/smartphones/vivo-z3-dual-sim-td-lte-cn-64gb-v1813da" + }, + { + "slug": "vivo-z3i-dual-sim-td-lte-cn-128gb-v1813a-z3is-standard-edition", + "name": "Vivo Z3i Dual SIM TD-LTE CN 128GB V1813A / Z3is Standard Edition", + "url": "/v1/smartphones/vivo-z3i-dual-sim-td-lte-cn-128gb-v1813a-z3is-standard-edition" + }, + { + "slug": "vivo-z3i-dual-sim-td-lte-cn-128gb-v1813t-z3is-standard-edition", + "name": "Vivo Z3i Dual SIM TD-LTE CN 128GB V1813T / Z3is Standard Edition", + "url": "/v1/smartphones/vivo-z3i-dual-sim-td-lte-cn-128gb-v1813t-z3is-standard-edition" + }, + { + "slug": "vivo-z5-premium-edition-dual-sim-td-lte-cn-128gb-v1921a", + "name": "Vivo Z5 Premium Edition Dual SIM TD-LTE CN 128GB V1921A", + "url": "/v1/smartphones/vivo-z5-premium-edition-dual-sim-td-lte-cn-128gb-v1921a" + }, + { + "slug": "vivo-z5-standard-edition-dual-sim-td-lte-cn-128gb-v1921a", + "name": "Vivo Z5 Standard Edition Dual SIM TD-LTE CN 128GB V1921A", + "url": "/v1/smartphones/vivo-z5-standard-edition-dual-sim-td-lte-cn-128gb-v1921a" + }, + { + "slug": "vivo-z5-standard-edition-dual-sim-td-lte-cn-128gb-v1921t", + "name": "Vivo Z5 Standard Edition Dual SIM TD-LTE CN 128GB V1921T", + "url": "/v1/smartphones/vivo-z5-standard-edition-dual-sim-td-lte-cn-128gb-v1921t" + }, + { + "slug": "vivo-z5-standard-edition-dual-sim-td-lte-cn-256gb-v1921a", + "name": "Vivo Z5 Standard Edition Dual SIM TD-LTE CN 256GB V1921A", + "url": "/v1/smartphones/vivo-z5-standard-edition-dual-sim-td-lte-cn-256gb-v1921a" + }, + { + "slug": "vivo-z5-standard-edition-dual-sim-td-lte-cn-256gb-v1921t", + "name": "Vivo Z5 Standard Edition Dual SIM TD-LTE CN 256GB V1921T", + "url": "/v1/smartphones/vivo-z5-standard-edition-dual-sim-td-lte-cn-256gb-v1921t" + }, + { + "slug": "vivo-z5-standard-edition-dual-sim-td-lte-cn-64gb-v1921a", + "name": "Vivo Z5 Standard Edition Dual SIM TD-LTE CN 64GB V1921A", + "url": "/v1/smartphones/vivo-z5-standard-edition-dual-sim-td-lte-cn-64gb-v1921a" + }, + { + "slug": "vivo-z5x-2020-premium-edition-dual-sim-td-lte-cn-128gb-v1990a", + "name": "Vivo Z5x 2020 Premium Edition Dual SIM TD-LTE CN 128GB V1990A", + "url": "/v1/smartphones/vivo-z5x-2020-premium-edition-dual-sim-td-lte-cn-128gb-v1990a" + }, + { + "slug": "vivo-z5x-2020-standard-edition-dual-sim-td-lte-cn-128gb-v1990a", + "name": "Vivo Z5x 2020 Standard Edition Dual SIM TD-LTE CN 128GB V1990A", + "url": "/v1/smartphones/vivo-z5x-2020-standard-edition-dual-sim-td-lte-cn-128gb-v1990a" + }, + { + "slug": "vivo-z5x-premium-edition-dual-sim-td-lte-cn-128gb-v1911a", + "name": "Vivo Z5x Premium Edition Dual SIM TD-LTE CN 128GB V1911A", + "url": "/v1/smartphones/vivo-z5x-premium-edition-dual-sim-td-lte-cn-128gb-v1911a" + }, + { + "slug": "vivo-z5x-premium-edition-dual-sim-td-lte-cn-64gb-v1911a", + "name": "Vivo Z5x Premium Edition Dual SIM TD-LTE CN 64GB V1911A", + "url": "/v1/smartphones/vivo-z5x-premium-edition-dual-sim-td-lte-cn-64gb-v1911a" + }, + { + "slug": "vivo-z5x-standard-edition-dual-sim-td-lte-cn-64gb-v1911a", + "name": "Vivo Z5x Standard Edition Dual SIM TD-LTE CN 64GB V1911A", + "url": "/v1/smartphones/vivo-z5x-standard-edition-dual-sim-td-lte-cn-64gb-v1911a" + }, + { + "slug": "vivo-z5x-top-edition-dual-sim-td-lte-cn-128gb-v1919a", + "name": "Vivo Z5x Top Edition Dual SIM TD-LTE CN 128GB V1919A", + "url": "/v1/smartphones/vivo-z5x-top-edition-dual-sim-td-lte-cn-128gb-v1919a" + }, + { + "slug": "vivo-z6-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1963a", + "name": "Vivo Z6 5G Premium Edition Dual SIM TD-LTE CN 128GB V1963A", + "url": "/v1/smartphones/vivo-z6-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1963a" + }, + { + "slug": "vivo-z6-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1963a", + "name": "Vivo Z6 5G Standard Edition Dual SIM TD-LTE CN 128GB V1963A", + "url": "/v1/smartphones/vivo-z6-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1963a" + }, + { + "slug": "vivo-iqoo-3-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1955a", + "name": "Vivo iQOO 3 5G Premium Edition Dual SIM TD-LTE CN 128GB V1955A", + "url": "/v1/smartphones/vivo-iqoo-3-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1955a" + }, + { + "slug": "vivo-iqoo-3-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1955a", + "name": "Vivo iQOO 3 5G Standard Edition Dual SIM TD-LTE CN 128GB V1955A", + "url": "/v1/smartphones/vivo-iqoo-3-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1955a" + }, + { + "slug": "vivo-iqoo-3-5g-top-edition-dual-sim-td-lte-cn-128gb-v1955a", + "name": "Vivo iQOO 3 5G Top Edition Dual SIM TD-LTE CN 128GB V1955A", + "url": "/v1/smartphones/vivo-iqoo-3-5g-top-edition-dual-sim-td-lte-cn-128gb-v1955a" + }, + { + "slug": "vivo-iqoo-3-5g-top-edition-dual-sim-td-lte-cn-256gb-v1955a", + "name": "Vivo iQOO 3 5G Top Edition Dual SIM TD-LTE CN 256GB V1955A", + "url": "/v1/smartphones/vivo-iqoo-3-5g-top-edition-dual-sim-td-lte-cn-256gb-v1955a" + }, + { + "slug": "vivo-iqoo-3-5g-top-edition-global-dual-sim-td-lte-256gb-i1928", + "name": "Vivo iQOO 3 5G Top Edition Global Dual SIM TD-LTE 256GB I1928", + "url": "/v1/smartphones/vivo-iqoo-3-5g-top-edition-global-dual-sim-td-lte-256gb-i1928" + }, + { + "slug": "vivo-iqoo-3-5g-transformers-limited-edition-dual-sim-td-lte-cn-256gb-v1955a", + "name": "Vivo iQOO 3 5G Transformers Limited Edition Dual SIM TD-LTE CN 256GB V1955A", + "url": "/v1/smartphones/vivo-iqoo-3-5g-transformers-limited-edition-dual-sim-td-lte-cn-256gb-v1955a" + }, + { + "slug": "vivo-iqoo-3-premium-edition-global-dual-sim-td-lte-128gb-i1927", + "name": "Vivo iQOO 3 Premium Edition Global Dual SIM TD-LTE 128GB I1927", + "url": "/v1/smartphones/vivo-iqoo-3-premium-edition-global-dual-sim-td-lte-128gb-i1927" + }, + { + "slug": "vivo-iqoo-3-premium-edition-global-dual-sim-td-lte-256gb-i1927", + "name": "Vivo iQOO 3 Premium Edition Global Dual SIM TD-LTE 256GB I1927", + "url": "/v1/smartphones/vivo-iqoo-3-premium-edition-global-dual-sim-td-lte-256gb-i1927" + }, + { + "slug": "vivo-iqoo-5-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2024a", + "name": "Vivo iQOO 5 5G Premium Edition Dual SIM TD-LTE CN 128GB V2024A", + "url": "/v1/smartphones/vivo-iqoo-5-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2024a" + }, + { + "slug": "vivo-iqoo-5-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2024a", + "name": "Vivo iQOO 5 5G Premium Edition Dual SIM TD-LTE CN 256GB V2024A", + "url": "/v1/smartphones/vivo-iqoo-5-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2024a" + }, + { + "slug": "vivo-iqoo-5-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2024a", + "name": "Vivo iQOO 5 5G Standard Edition Dual SIM TD-LTE CN 128GB V2024A", + "url": "/v1/smartphones/vivo-iqoo-5-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2024a" + }, + { + "slug": "vivo-iqoo-5-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2025a", + "name": "Vivo iQOO 5 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB V2025A", + "url": "/v1/smartphones/vivo-iqoo-5-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2025a" + }, + { + "slug": "vivo-iqoo-5-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2025a", + "name": "Vivo iQOO 5 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB V2025A", + "url": "/v1/smartphones/vivo-iqoo-5-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2025a" + }, + { + "slug": "vivo-iqoo-7-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2049a", + "name": "Vivo iQOO 7 5G Premium Edition Dual SIM TD-LTE CN 256GB V2049A", + "url": "/v1/smartphones/vivo-iqoo-7-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2049a" + }, + { + "slug": "vivo-iqoo-7-5g-premium-edition-dual-sim-td-lte-in-256gb-i2012", + "name": "Vivo iQOO 7 5G Premium Edition Dual SIM TD-LTE IN 256GB I2012", + "url": "/v1/smartphones/vivo-iqoo-7-5g-premium-edition-dual-sim-td-lte-in-256gb-i2012" + }, + { + "slug": "vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2049a", + "name": "Vivo iQOO 7 5G Standard Edition Dual SIM TD-LTE CN 128GB V2049A", + "url": "/v1/smartphones/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2049a" + }, + { + "slug": "vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2049a", + "name": "Vivo iQOO 7 5G Standard Edition Dual SIM TD-LTE CN 256GB V2049A", + "url": "/v1/smartphones/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2049a" + }, + { + "slug": "vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-in-128gb-i2012", + "name": "Vivo iQOO 7 5G Standard Edition Dual SIM TD-LTE IN 128GB I2012", + "url": "/v1/smartphones/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-in-128gb-i2012" + }, + { + "slug": "vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-in-256gb-i2012", + "name": "Vivo iQOO 7 5G Standard Edition Dual SIM TD-LTE IN 256GB I2012", + "url": "/v1/smartphones/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-in-256gb-i2012" + }, + { + "slug": "vivo-iqoo-7-legend-5g-premium-edition-dual-sim-td-lte-in-256gb-i2009", + "name": "Vivo iQOO 7 Legend 5G Premium Edition Dual SIM TD-LTE IN 256GB I2009", + "url": "/v1/smartphones/vivo-iqoo-7-legend-5g-premium-edition-dual-sim-td-lte-in-256gb-i2009" + }, + { + "slug": "vivo-iqoo-7-legend-5g-standard-edition-dual-sim-td-lte-in-128gb-i2009", + "name": "Vivo iQOO 7 Legend 5G Standard Edition Dual SIM TD-LTE IN 128GB I2009", + "url": "/v1/smartphones/vivo-iqoo-7-legend-5g-standard-edition-dual-sim-td-lte-in-128gb-i2009" + }, + { + "slug": "vivo-iqoo-monster-edition-dual-sim-td-lte-cn-128gb-v1824a", + "name": "Vivo iQOO Monster Edition Dual SIM TD-LTE CN 128GB V1824A", + "url": "/v1/smartphones/vivo-iqoo-monster-edition-dual-sim-td-lte-cn-128gb-v1824a" + }, + { + "slug": "vivo-iqoo-monster-edition-dual-sim-td-lte-cn-256gb-v1824a", + "name": "Vivo iQOO Monster Edition Dual SIM TD-LTE CN 256GB V1824A", + "url": "/v1/smartphones/vivo-iqoo-monster-edition-dual-sim-td-lte-cn-256gb-v1824a" + }, + { + "slug": "vivo-iqoo-neo5-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2055a", + "name": "Vivo iQOO Neo5 5G Premium Edition Dual SIM TD-LTE CN 256GB V2055A", + "url": "/v1/smartphones/vivo-iqoo-neo5-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2055a" + }, + { + "slug": "vivo-iqoo-neo5-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2055a", + "name": "Vivo iQOO Neo5 5G Standard Edition Dual SIM TD-LTE CN 128GB V2055A", + "url": "/v1/smartphones/vivo-iqoo-neo5-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2055a" + }, + { + "slug": "vivo-iqoo-neo5-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2055a", + "name": "Vivo iQOO Neo5 5G Standard Edition Dual SIM TD-LTE CN 256GB V2055A", + "url": "/v1/smartphones/vivo-iqoo-neo5-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2055a" + }, + { + "slug": "vivo-iqoo-premium-edition-dual-sim-td-lte-cn-128gb-v1824a", + "name": "Vivo iQOO Premium Edition Dual SIM TD-LTE CN 128GB V1824A", + "url": "/v1/smartphones/vivo-iqoo-premium-edition-dual-sim-td-lte-cn-128gb-v1824a" + }, + { + "slug": "vivo-iqoo-premium-edition-dual-sim-td-lte-cn-256gb-v1824a", + "name": "Vivo iQOO Premium Edition Dual SIM TD-LTE CN 256GB V1824A", + "url": "/v1/smartphones/vivo-iqoo-premium-edition-dual-sim-td-lte-cn-256gb-v1824a" + }, + { + "slug": "vivo-iqoo-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1916a", + "name": "Vivo iQOO Pro 5G Premium Edition Dual SIM TD-LTE CN 128GB V1916A", + "url": "/v1/smartphones/vivo-iqoo-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1916a" + }, + { + "slug": "vivo-iqoo-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1916a", + "name": "Vivo iQOO Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB V1916A", + "url": "/v1/smartphones/vivo-iqoo-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1916a" + }, + { + "slug": "vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1916a", + "name": "Vivo iQOO Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB V1916A", + "url": "/v1/smartphones/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1916a" + }, + { + "slug": "vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1916t", + "name": "Vivo iQOO Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB V1916T", + "url": "/v1/smartphones/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1916t" + }, + { + "slug": "vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1916a", + "name": "Vivo iQOO Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB V1916A", + "url": "/v1/smartphones/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1916a" + }, + { + "slug": "vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1916t", + "name": "Vivo iQOO Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB V1916T", + "url": "/v1/smartphones/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1916t" + }, + { + "slug": "vivo-iqoo-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1922a", + "name": "Vivo iQOO Pro Premium Edition Dual SIM TD-LTE CN 128GB V1922A", + "url": "/v1/smartphones/vivo-iqoo-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1922a" + }, + { + "slug": "vivo-iqoo-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1922t", + "name": "Vivo iQOO Pro Premium Edition Dual SIM TD-LTE CN 128GB V1922T", + "url": "/v1/smartphones/vivo-iqoo-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1922t" + }, + { + "slug": "vivo-iqoo-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1922a", + "name": "Vivo iQOO Pro Standard Edition Dual SIM TD-LTE CN 128GB V1922A", + "url": "/v1/smartphones/vivo-iqoo-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1922a" + }, + { + "slug": "vivo-iqoo-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1922t", + "name": "Vivo iQOO Pro Standard Edition Dual SIM TD-LTE CN 128GB V1922T", + "url": "/v1/smartphones/vivo-iqoo-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1922t" + }, + { + "slug": "vivo-iqoo-standard-edition-dual-sim-td-lte-cn-128gb-v1824ba", + "name": "Vivo iQOO Standard Edition Dual SIM TD-LTE CN 128GB V1824BA", + "url": "/v1/smartphones/vivo-iqoo-standard-edition-dual-sim-td-lte-cn-128gb-v1824ba" + }, + { + "slug": "vivo-iqoo-u1x-premium-edition-dual-sim-td-lte-cn-128gb-v2065a", + "name": "Vivo iQOO U1x Premium Edition Dual SIM TD-LTE CN 128GB V2065A", + "url": "/v1/smartphones/vivo-iqoo-u1x-premium-edition-dual-sim-td-lte-cn-128gb-v2065a" + }, + { + "slug": "vivo-iqoo-u1x-premium-edition-dual-sim-td-lte-cn-64gb-v2065a", + "name": "Vivo iQOO U1x Premium Edition Dual SIM TD-LTE CN 64GB V2065A", + "url": "/v1/smartphones/vivo-iqoo-u1x-premium-edition-dual-sim-td-lte-cn-64gb-v2065a" + }, + { + "slug": "vivo-iqoo-u1x-standard-edition-dual-sim-td-lte-cn-64gb-v2065a", + "name": "Vivo iQOO U1x Standard Edition Dual SIM TD-LTE CN 64GB V2065A", + "url": "/v1/smartphones/vivo-iqoo-u1x-standard-edition-dual-sim-td-lte-cn-64gb-v2065a" + }, + { + "slug": "vivo-iqoo-u3-5g-premium-edition-dual-sim-td-lte-cn-v2061a", + "name": "Vivo iQOO U3 5G Premium Edition Dual SIM TD-LTE CN V2061A", + "url": "/v1/smartphones/vivo-iqoo-u3-5g-premium-edition-dual-sim-td-lte-cn-v2061a" + }, + { + "slug": "vivo-iqoo-u3-5g-standard-edition-dual-sim-td-lte-cn-v2061a", + "name": "Vivo iQOO U3 5G Standard Edition Dual SIM TD-LTE CN V2061A", + "url": "/v1/smartphones/vivo-iqoo-u3-5g-standard-edition-dual-sim-td-lte-cn-v2061a" + }, + { + "slug": "vivo-iqoo-u3x-5g-premium-edition-dual-sim-td-lte-cn-64gb-v2106a", + "name": "Vivo iQOO U3x 5G Premium Edition Dual SIM TD-LTE CN 64GB V2106A", + "url": "/v1/smartphones/vivo-iqoo-u3x-5g-premium-edition-dual-sim-td-lte-cn-64gb-v2106a" + }, + { + "slug": "vivo-iqoo-u3x-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2106a", + "name": "Vivo iQOO U3x 5G Standard Edition Dual SIM TD-LTE CN 128GB V2106A", + "url": "/v1/smartphones/vivo-iqoo-u3x-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2106a" + }, + { + "slug": "vivo-iqoo-u3x-5g-top-edition-dual-sim-td-lte-cn-128gb-v2106a", + "name": "Vivo iQOO U3x 5G Top Edition Dual SIM TD-LTE CN 128GB V2106A", + "url": "/v1/smartphones/vivo-iqoo-u3x-5g-top-edition-dual-sim-td-lte-cn-128gb-v2106a" + }, + { + "slug": "vivo-iqoo-u3x-normal-2021-premium-edition-dual-sim-td-lte-cn-v2143a", + "name": "Vivo iQOO U3x Normal 2021 Premium Edition Dual SIM TD-LTE CN V2143A", + "url": "/v1/smartphones/vivo-iqoo-u3x-normal-2021-premium-edition-dual-sim-td-lte-cn-v2143a" + }, + { + "slug": "vivo-iqoo-u3x-normal-2021-standard-edition-dual-sim-td-lte-cn-v2143a", + "name": "Vivo iQOO U3x Normal 2021 Standard Edition Dual SIM TD-LTE CN V2143A", + "url": "/v1/smartphones/vivo-iqoo-u3x-normal-2021-standard-edition-dual-sim-td-lte-cn-v2143a" + }, + { + "slug": "vivo-iqoo-z1-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1986a", + "name": "Vivo iQOO Z1 5G Premium Edition Dual SIM TD-LTE CN 128GB V1986A", + "url": "/v1/smartphones/vivo-iqoo-z1-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1986a" + }, + { + "slug": "vivo-iqoo-z1-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1986a", + "name": "Vivo iQOO Z1 5G Premium Edition Dual SIM TD-LTE CN 256GB V1986A", + "url": "/v1/smartphones/vivo-iqoo-z1-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1986a" + }, + { + "slug": "vivo-iqoo-z1-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1986a", + "name": "Vivo iQOO Z1 5G Standard Edition Dual SIM TD-LTE CN 128GB V1986A", + "url": "/v1/smartphones/vivo-iqoo-z1-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1986a" + }, + { + "slug": "vivo-iqoo-z1x-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2012a", + "name": "Vivo iQOO Z1x 5G Premium Edition Dual SIM TD-LTE CN 128GB V2012A", + "url": "/v1/smartphones/vivo-iqoo-z1x-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2012a" + }, + { + "slug": "vivo-iqoo-z1x-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2012a", + "name": "Vivo iQOO Z1x 5G Premium Edition Dual SIM TD-LTE CN 256GB V2012A", + "url": "/v1/smartphones/vivo-iqoo-z1x-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2012a" + }, + { + "slug": "vivo-iqoo-z1x-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2012a", + "name": "Vivo iQOO Z1x 5G Standard Edition Dual SIM TD-LTE CN 128GB V2012A", + "url": "/v1/smartphones/vivo-iqoo-z1x-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2012a" + }, + { + "slug": "w41", + "name": "W41", + "url": "/v1/smartphones/w41" + }, + { + "slug": "w41-plus", + "name": "W41 Plus", + "url": "/v1/smartphones/w41-plus" + }, + { + "slug": "w41-pro", + "name": "W41 Pro", + "url": "/v1/smartphones/w41-pro" + }, + { + "slug": "wildfire-e1", + "name": "Wildfire E1", + "url": "/v1/smartphones/wildfire-e1" + }, + { + "slug": "wildfire-e1-dual-sim-td-lte", + "name": "Wildfire E1 Dual SIM TD-LTE", + "url": "/v1/smartphones/wildfire-e1-dual-sim-td-lte" + }, + { + "slug": "wildfire-e1-plus", + "name": "Wildfire E1 Plus", + "url": "/v1/smartphones/wildfire-e1-plus" + }, + { + "slug": "wildfire-e1-plus-dual-sim-td-lte", + "name": "Wildfire E1 Plus Dual SIM TD-LTE", + "url": "/v1/smartphones/wildfire-e1-plus-dual-sim-td-lte" + }, + { + "slug": "wildfire-e2", + "name": "Wildfire E2", + "url": "/v1/smartphones/wildfire-e2" + }, + { + "slug": "wildfire-e2-dual-sim-td-lte-32gb", + "name": "Wildfire E2 Dual SIM TD-LTE 32GB", + "url": "/v1/smartphones/wildfire-e2-dual-sim-td-lte-32gb" + }, + { + "slug": "wildfire-e2-dual-sim-td-lte-64gb", + "name": "Wildfire E2 Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/wildfire-e2-dual-sim-td-lte-64gb" + }, + { + "slug": "wildfire-r70", + "name": "Wildfire R70", + "url": "/v1/smartphones/wildfire-r70" + }, + { + "slug": "wildfire-r70-dual-sim-lte-global", + "name": "Wildfire R70 Dual SIM LTE Global", + "url": "/v1/smartphones/wildfire-r70-dual-sim-lte-global" + }, + { + "slug": "wildfire-r70-dual-sim-td-lte-in", + "name": "Wildfire R70 Dual SIM TD-LTE IN", + "url": "/v1/smartphones/wildfire-r70-dual-sim-td-lte-in" + }, + { + "slug": "wildfire-x", + "name": "Wildfire X", + "url": "/v1/smartphones/wildfire-x" + }, + { + "slug": "wildfire-x-dual-sim-td-lte-in-128gb", + "name": "Wildfire X Dual SIM TD-LTE IN 128GB", + "url": "/v1/smartphones/wildfire-x-dual-sim-td-lte-in-128gb" + }, + { + "slug": "wildfire-x-dual-sim-td-lte-in-32gb", + "name": "Wildfire X Dual SIM TD-LTE IN 32GB", + "url": "/v1/smartphones/wildfire-x-dual-sim-td-lte-in-32gb" + }, + { + "slug": "wing-5g", + "name": "Wing 5G", + "url": "/v1/smartphones/wing-5g" + }, + { + "slug": "x-dual-sim-lte", + "name": "X Dual SIM LTE", + "url": "/v1/smartphones/x-dual-sim-lte" + }, + { + "slug": "x10", + "name": "X10", + "url": "/v1/smartphones/x10" + }, + { + "slug": "x10-2021", + "name": "X10 2021", + "url": "/v1/smartphones/x10-2021" + }, + { + "slug": "x10-2021-5g-premium-edition-global-dual-sim-td-lte-128gb", + "name": "X10 2021 5G Premium Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/x10-2021-5g-premium-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "x10-2021-5g-premium-edition-global-dual-sim-td-lte-64gb", + "name": "X10 2021 5G Premium Edition Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/x10-2021-5g-premium-edition-global-dual-sim-td-lte-64gb" + }, + { + "slug": "x10-2021-5g-standard-edition-global-dual-sim-td-lte-128gb", + "name": "X10 2021 5G Standard Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/x10-2021-5g-standard-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "x10-max", + "name": "X10 Max", + "url": "/v1/smartphones/x10-max" + }, + { + "slug": "x20", + "name": "X20", + "url": "/v1/smartphones/x20" + }, + { + "slug": "x20-2021", + "name": "X20 2021", + "url": "/v1/smartphones/x20-2021" + }, + { + "slug": "x20-2021-5g-premium-edition-global-dual-sim-td-lte-128gb", + "name": "X20 2021 5G Premium Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/x20-2021-5g-premium-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "x20-2021-5g-standard-edition-global-dual-sim-td-lte-128gb", + "name": "X20 2021 5G Standard Edition Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/x20-2021-5g-standard-edition-global-dual-sim-td-lte-128gb" + }, + { + "slug": "x20-2021-5g-standard-edition-global-td-lte-128gb", + "name": "X20 2021 5G Standard Edition Global TD-LTE 128GB", + "url": "/v1/smartphones/x20-2021-5g-standard-edition-global-td-lte-128gb" + }, + { + "slug": "x20-se", + "name": "X20 SE", + "url": "/v1/smartphones/x20-se" + }, + { + "slug": "x200", + "name": "X200", + "url": "/v1/smartphones/x200" + }, + { + "slug": "x200-pro", + "name": "X200 Pro", + "url": "/v1/smartphones/x200-pro" + }, + { + "slug": "x200-pro-mini", + "name": "X200 Pro Mini", + "url": "/v1/smartphones/x200-pro-mini" + }, + { + "slug": "x21", + "name": "X21", + "url": "/v1/smartphones/x21" + }, + { + "slug": "x210k-x-series-x2-2018-lte-kr", + "name": "X210K X Series X2 2018 LTE KR", + "url": "/v1/smartphones/x210k-x-series-x2-2018-lte-kr" + }, + { + "slug": "x210l-x-series-x2-2018-lte-kr", + "name": "X210L X Series X2 2018 LTE KR", + "url": "/v1/smartphones/x210l-x-series-x2-2018-lte-kr" + }, + { + "slug": "x210s-x-series-x2-2018-lte-kr", + "name": "X210S X Series X2 2018 LTE KR", + "url": "/v1/smartphones/x210s-x-series-x2-2018-lte-kr" + }, + { + "slug": "x210ulm-k-series-k8-2018-lte-us", + "name": "X210ULM K Series K8+ 2018 LTE US", + "url": "/v1/smartphones/x210ulm-k-series-k8-2018-lte-us" + }, + { + "slug": "x210ulma-k-series-k8-2018-acg-lte-us", + "name": "X210ULMA K Series K8+ 2018 ACG LTE US", + "url": "/v1/smartphones/x210ulma-k-series-k8-2018-acg-lte-us" + }, + { + "slug": "x210ulmg-k-series-k8-2018-lte-us", + "name": "X210ULMG K Series K8 2018 LTE US", + "url": "/v1/smartphones/x210ulmg-k-series-k8-2018-lte-us" + }, + { + "slug": "x210vpp-zone-4-lte-us", + "name": "X210VPP Zone 4 LTE US", + "url": "/v1/smartphones/x210vpp-zone-4-lte-us" + }, + { + "slug": "x212tal-aristo-2-plus-lte-us", + "name": "X212TAL Aristo 2 Plus LTE US", + "url": "/v1/smartphones/x212tal-aristo-2-plus-lte-us" + }, + { + "slug": "x21s-dual-sim-td-lte-cn-v1814a", + "name": "X21s Dual SIM TD-LTE CN V1814A", + "url": "/v1/smartphones/x21s-dual-sim-td-lte-cn-v1814a" + }, + { + "slug": "x21s-dual-sim-td-lte-cn-v1814t", + "name": "X21s Dual SIM TD-LTE CN V1814T", + "url": "/v1/smartphones/x21s-dual-sim-td-lte-cn-v1814t" + }, + { + "slug": "x27-pro", + "name": "X27 Pro", + "url": "/v1/smartphones/x27-pro" + }, + { + "slug": "x3-gt", + "name": "X3 GT", + "url": "/v1/smartphones/x3-gt" + }, + { + "slug": "x3-nfc", + "name": "X3 NFC", + "url": "/v1/smartphones/x3-nfc" + }, + { + "slug": "x3-pro", + "name": "X3 Pro", + "url": "/v1/smartphones/x3-pro" }, { - "slug": "pixel-6", - "name": "Pixel 6", - "url": "/v1/smartphones/pixel-6" + "slug": "x30", + "name": "X30", + "url": "/v1/smartphones/x30" }, { - "slug": "pixel-6-pro", - "name": "Pixel 6 Pro", - "url": "/v1/smartphones/pixel-6-pro" + "slug": "x30-max", + "name": "X30 Max", + "url": "/v1/smartphones/x30-max" }, { - "slug": "pixel-6a", - "name": "Pixel 6a", - "url": "/v1/smartphones/pixel-6a" + "slug": "x30-pro", + "name": "X30 Pro", + "url": "/v1/smartphones/x30-pro" }, { - "slug": "pixel-7", - "name": "Pixel 7", - "url": "/v1/smartphones/pixel-7" + "slug": "x30i", + "name": "X30i", + "url": "/v1/smartphones/x30i" }, { - "slug": "pixel-7-pro", - "name": "Pixel 7 Pro", - "url": "/v1/smartphones/pixel-7-pro" + "slug": "x4-pro-5g", + "name": "X4 Pro 5G", + "url": "/v1/smartphones/x4-pro-5g" }, { - "slug": "pixel-7a", - "name": "Pixel 7a", - "url": "/v1/smartphones/pixel-7a" + "slug": "x40", + "name": "X40", + "url": "/v1/smartphones/x40" }, { - "slug": "pixel-8", - "name": "Pixel 8", - "url": "/v1/smartphones/pixel-8" + "slug": "x40i", + "name": "X40i", + "url": "/v1/smartphones/x40i" }, { - "slug": "pixel-8-pro", - "name": "Pixel 8 Pro", - "url": "/v1/smartphones/pixel-8-pro" + "slug": "x410as-phoenix-plus-lte-a-us", + "name": "X410AS Phoenix Plus LTE-A US", + "url": "/v1/smartphones/x410as-phoenix-plus-lte-a-us" }, { - "slug": "pixel-8a", - "name": "Pixel 8a", - "url": "/v1/smartphones/pixel-8a" + "slug": "x410cs-harmony-2-lte-a-us", + "name": "X410CS Harmony 2 LTE-A US", + "url": "/v1/smartphones/x410cs-harmony-2-lte-a-us" }, { - "slug": "pixel-9", - "name": "Pixel 9", - "url": "/v1/smartphones/pixel-9" + "slug": "x410k-x-series-x4-lte", + "name": "X410K X Series X4 LTE", + "url": "/v1/smartphones/x410k-x-series-x4-lte" }, { - "slug": "pixel-9-pro", - "name": "Pixel 9 Pro", - "url": "/v1/smartphones/pixel-9-pro" + "slug": "x410l-x-series-x4-lte", + "name": "X410L X Series X4 LTE", + "url": "/v1/smartphones/x410l-x-series-x4-lte" }, { - "slug": "pixel-9-pro-xl", - "name": "Pixel 9 Pro XL", - "url": "/v1/smartphones/pixel-9-pro-xl" + "slug": "x410s-x-series-x4-lte", + "name": "X410S X Series X4 LTE", + "url": "/v1/smartphones/x410s-x-series-x4-lte" }, { - "slug": "pixel-xl", - "name": "Pixel XL", - "url": "/v1/smartphones/pixel-xl" + "slug": "x410ulmg-k-series-k30-lte-us", + "name": "X410ULMG K Series K30 LTE US", + "url": "/v1/smartphones/x410ulmg-k-series-k30-lte-us" }, { - "slug": "play-4", - "name": "Play 4", - "url": "/v1/smartphones/play-4" + "slug": "x410ulml-k-series-k30-lra-lte-us", + "name": "X410ULML K Series K30 LRA LTE US", + "url": "/v1/smartphones/x410ulml-k-series-k30-lra-lte-us" }, { - "slug": "play-4-pro", - "name": "Play 4 Pro", - "url": "/v1/smartphones/play-4-pro" + "slug": "x5", + "name": "X5", + "url": "/v1/smartphones/x5" }, { - "slug": "play-5", - "name": "Play 5", - "url": "/v1/smartphones/play-5" + "slug": "x5-2018", + "name": "X5 2018", + "url": "/v1/smartphones/x5-2018" }, { - "slug": "play-6t", - "name": "Play 6T", - "url": "/v1/smartphones/play-6t" + "slug": "x5-2018-dual-sim-td-lte-cn-32gb", + "name": "X5 2018 Dual SIM TD-LTE CN 32GB", + "url": "/v1/smartphones/x5-2018-dual-sim-td-lte-cn-32gb" }, { - "slug": "play-8t", - "name": "Play 8T", - "url": "/v1/smartphones/play-8t" + "slug": "x5-2018-dual-sim-td-lte-cn-64gb", + "name": "X5 2018 Dual SIM TD-LTE CN 64GB", + "url": "/v1/smartphones/x5-2018-dual-sim-td-lte-cn-64gb" }, { - "slug": "play-9t", - "name": "Play 9T", - "url": "/v1/smartphones/play-9t" + "slug": "x5-pro", + "name": "X5 Pro", + "url": "/v1/smartphones/x5-pro" }, { - "slug": "poco-c50-premium-edition", - "name": "Poco C50 Premium Edition", - "url": "/v1/smartphones/poco-c50-premium-edition" + "slug": "x50", + "name": "X50", + "url": "/v1/smartphones/x50" }, { - "slug": "poco-c50-standard-edition", - "name": "Poco C50 Standard Edition", - "url": "/v1/smartphones/poco-c50-standard-edition" + "slug": "x6", + "name": "X6", + "url": "/v1/smartphones/x6" }, { - "slug": "poco-c55-premium-edition", - "name": "Poco C55 Premium Edition", - "url": "/v1/smartphones/poco-c55-premium-edition" + "slug": "x6-2018-dual-sim-td-lte-cn-32gb", + "name": "X6 2018 Dual SIM TD-LTE CN 32GB", + "url": "/v1/smartphones/x6-2018-dual-sim-td-lte-cn-32gb" }, { - "slug": "poco-c55-top-edition", - "name": "Poco C55 Top Edition", - "url": "/v1/smartphones/poco-c55-top-edition" + "slug": "x6-2018-dual-sim-td-lte-cn-64gb", + "name": "X6 2018 Dual SIM TD-LTE CN 64GB", + "url": "/v1/smartphones/x6-2018-dual-sim-td-lte-cn-64gb" }, { - "slug": "poco-poco-f3", - "name": "Poco F3", - "url": "/v1/smartphones/poco-poco-f3" + "slug": "x6-pro", + "name": "X6 Pro", + "url": "/v1/smartphones/x6-pro" }, { - "slug": "poco-f3-gt", - "name": "Poco F3 GT", - "url": "/v1/smartphones/poco-f3-gt" + "slug": "x60", + "name": "X60", + "url": "/v1/smartphones/x60" }, { - "slug": "poco-poco-f4", - "name": "Poco F4", - "url": "/v1/smartphones/poco-poco-f4" + "slug": "x60-pro", + "name": "X60 Pro", + "url": "/v1/smartphones/x60-pro" }, { - "slug": "poco-f4-gt", - "name": "Poco F4 GT", - "url": "/v1/smartphones/poco-f4-gt" + "slug": "x67-5g-global-dual-sim-lte", + "name": "X67 5G Global Dual SIM LTE", + "url": "/v1/smartphones/x67-5g-global-dual-sim-lte" }, { - "slug": "poco-poco-f5-pro", - "name": "Poco F5 Pro", - "url": "/v1/smartphones/poco-poco-f5-pro" + "slug": "x7", + "name": "X7", + "url": "/v1/smartphones/x7" }, { - "slug": "poco-m2-premium-edition", - "name": "Poco M2 Premium Edition", - "url": "/v1/smartphones/poco-m2-premium-edition" + "slug": "x7-2018-dual-sim-td-lte-cn-128gb", + "name": "X7 2018 Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/x7-2018-dual-sim-td-lte-cn-128gb" }, { - "slug": "poco-m2-reloaded", - "name": "Poco M2 Reloaded", - "url": "/v1/smartphones/poco-m2-reloaded" + "slug": "x7-pro", + "name": "X7 Pro", + "url": "/v1/smartphones/x7-pro" }, { - "slug": "poco-m2-standard-edition", - "name": "Poco M2 Standard Edition", - "url": "/v1/smartphones/poco-m2-standard-edition" + "slug": "x70-pro", + "name": "X70 Pro", + "url": "/v1/smartphones/x70-pro" }, { - "slug": "poco-m3-pro", - "name": "Poco M3 Pro", - "url": "/v1/smartphones/poco-m3-pro" + "slug": "x71-dual-sim-td-lte-cn-128gb", + "name": "X71 Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/x71-dual-sim-td-lte-cn-128gb" }, { - "slug": "poco-m4", - "name": "Poco M4", - "url": "/v1/smartphones/poco-m4" + "slug": "x71-dual-sim-td-lte-cn-64gb", + "name": "X71 Dual SIM TD-LTE CN 64GB", + "url": "/v1/smartphones/x71-dual-sim-td-lte-cn-64gb" }, { - "slug": "poco-m4-pro", - "name": "Poco M4 Pro", - "url": "/v1/smartphones/poco-m4-pro" + "slug": "x71-global-dual-sim-td-lte-8-1-plus", + "name": "X71 Global Dual SIM TD-LTE / 8.1 Plus", + "url": "/v1/smartphones/x71-global-dual-sim-td-lte-8-1-plus" }, { - "slug": "poco-m5-premium-edition", - "name": "Poco M5 Premium Edition", - "url": "/v1/smartphones/poco-m5-premium-edition" + "slug": "x8-global-dual-sim-td-lte-128gb-m852h", + "name": "X8 Global Dual SIM TD-LTE 128GB M852H", + "url": "/v1/smartphones/x8-global-dual-sim-td-lte-128gb-m852h" }, { - "slug": "poco-m5-standard-edition", - "name": "Poco M5 Standard Edition", - "url": "/v1/smartphones/poco-m5-standard-edition" + "slug": "x8-global-dual-sim-td-lte-64gb-m852h", + "name": "X8 Global Dual SIM TD-LTE 64GB M852H", + "url": "/v1/smartphones/x8-global-dual-sim-td-lte-64gb-m852h" }, { - "slug": "poco-m5s-premium-edition", - "name": "Poco M5s Premium Edition", - "url": "/v1/smartphones/poco-m5s-premium-edition" + "slug": "x8-premium-edition-dual-sim-td-lte-cn-128gb-m852q", + "name": "X8 Premium Edition Dual SIM TD-LTE CN 128GB M852Q", + "url": "/v1/smartphones/x8-premium-edition-dual-sim-td-lte-cn-128gb-m852q" }, { - "slug": "poco-m5s-standard-edition", - "name": "Poco M5s Standard Edition", - "url": "/v1/smartphones/poco-m5s-standard-edition" + "slug": "x8-premium-edition-dual-sim-td-lte-cn-64gb-m852q", + "name": "X8 Premium Edition Dual SIM TD-LTE CN 64GB M852Q", + "url": "/v1/smartphones/x8-premium-edition-dual-sim-td-lte-cn-64gb-m852q" }, { - "slug": "poco-x3-gt", - "name": "Poco X3 GT", - "url": "/v1/smartphones/poco-x3-gt" + "slug": "x8-standard-edition-dual-sim-td-lte-cn-64gb-m852q", + "name": "X8 Standard Edition Dual SIM TD-LTE CN 64GB M852Q", + "url": "/v1/smartphones/x8-standard-edition-dual-sim-td-lte-cn-64gb-m852q" }, { - "slug": "poco-x3-nfc-standard-edition", - "name": "Poco X3 NFC Standard Edition", - "url": "/v1/smartphones/poco-x3-nfc-standard-edition" + "slug": "x80", + "name": "X80", + "url": "/v1/smartphones/x80" }, { - "slug": "poco-x3-premium-edition", - "name": "Poco X3 Premium Edition", - "url": "/v1/smartphones/poco-x3-premium-edition" + "slug": "x90-pro", + "name": "X90 Pro", + "url": "/v1/smartphones/x90-pro" }, { - "slug": "poco-x3-standard-edition", - "name": "Poco X3 Standard Edition", - "url": "/v1/smartphones/poco-x3-standard-edition" + "slug": "xenium-x596-dual-sim-td-lte-cn", + "name": "Xenium X596 Dual SIM TD-LTE CN", + "url": "/v1/smartphones/xenium-x596-dual-sim-td-lte-cn" }, { - "slug": "poco-x4-gt", - "name": "Poco X4 GT", - "url": "/v1/smartphones/poco-x4-gt" + "slug": "xiaomi-11-lite-5g-ne", + "name": "Xiaomi 11 Lite 5G NE", + "url": "/v1/smartphones/xiaomi-11-lite-5g-ne" }, { - "slug": "poco-poco-x4-pro", - "name": "Poco X4 Pro", - "url": "/v1/smartphones/poco-poco-x4-pro" + "slug": "xiaomi-11t-pro", + "name": "Xiaomi 11T Pro", + "url": "/v1/smartphones/xiaomi-11t-pro" }, { - "slug": "poco-x5", - "name": "Poco X5", - "url": "/v1/smartphones/poco-x5" + "slug": "xiaomi-12", + "name": "Xiaomi 12", + "url": "/v1/smartphones/xiaomi-12" }, { - "slug": "poco-poco-x5-pro", - "name": "Poco X5 Pro", - "url": "/v1/smartphones/poco-poco-x5-pro" + "slug": "xiaomi-12-pro", + "name": "Xiaomi 12 Pro", + "url": "/v1/smartphones/xiaomi-12-pro" }, { - "slug": "pocophone-poco-c3", - "name": "Pocophone Poco C3", - "url": "/v1/smartphones/pocophone-poco-c3" + "slug": "xiaomi-12s-ultra", + "name": "Xiaomi 12S Ultra", + "url": "/v1/smartphones/xiaomi-12s-ultra" }, { - "slug": "pocophone-poco-c31", - "name": "Pocophone Poco C31", - "url": "/v1/smartphones/pocophone-poco-c31" + "slug": "xiaomi-12t-pro", + "name": "Xiaomi 12T Pro", + "url": "/v1/smartphones/xiaomi-12t-pro" + }, + { + "slug": "xiaomi-12x", + "name": "Xiaomi 12X", + "url": "/v1/smartphones/xiaomi-12x" + }, + { + "slug": "xiaomi-13", + "name": "Xiaomi 13", + "url": "/v1/smartphones/xiaomi-13" + }, + { + "slug": "xiaomi-13-pro", + "name": "Xiaomi 13 Pro", + "url": "/v1/smartphones/xiaomi-13-pro" + }, + { + "slug": "xiaomi-13t-pro", + "name": "Xiaomi 13T Pro", + "url": "/v1/smartphones/xiaomi-13t-pro" + }, + { + "slug": "xiaomi-14", + "name": "Xiaomi 14", + "url": "/v1/smartphones/xiaomi-14" + }, + { + "slug": "xiaomi-14-pro", + "name": "Xiaomi 14 Pro", + "url": "/v1/smartphones/xiaomi-14-pro" }, { - "slug": "pocophone-poco-f2-pro", - "name": "Pocophone Poco F2 Pro", - "url": "/v1/smartphones/pocophone-poco-f2-pro" + "slug": "xiaomi-14-ultra", + "name": "Xiaomi 14 Ultra", + "url": "/v1/smartphones/xiaomi-14-ultra" }, { - "slug": "pocophone-poco-m2-pro-premium-edition", - "name": "Pocophone Poco M2 Pro Premium Edition", - "url": "/v1/smartphones/pocophone-poco-m2-pro-premium-edition" + "slug": "xiaomi-14t", + "name": "Xiaomi 14T", + "url": "/v1/smartphones/xiaomi-14t" }, { - "slug": "pocophone-poco-m2-pro-standard-edition", - "name": "Pocophone Poco M2 Pro Standard Edition", - "url": "/v1/smartphones/pocophone-poco-m2-pro-standard-edition" + "slug": "xiaomi-14t-pro", + "name": "Xiaomi 14T Pro", + "url": "/v1/smartphones/xiaomi-14t-pro" }, { - "slug": "pocophone-poco-x2-premium-edition", - "name": "Pocophone Poco X2 Premium Edition", - "url": "/v1/smartphones/pocophone-poco-x2-premium-edition" + "slug": "xiaomi-15", + "name": "Xiaomi 15", + "url": "/v1/smartphones/xiaomi-15" }, { - "slug": "pocophone-poco-x2-standard-edition", - "name": "Pocophone Poco X2 Standard Edition", - "url": "/v1/smartphones/pocophone-poco-x2-standard-edition" + "slug": "xiaomi-15-pro", + "name": "Xiaomi 15 Pro", + "url": "/v1/smartphones/xiaomi-15-pro" }, { - "slug": "pova-5", - "name": "Pova 5", - "url": "/v1/smartphones/pova-5" + "slug": "xiaomi-15-ultra", + "name": "Xiaomi 15 Ultra", + "url": "/v1/smartphones/xiaomi-15-ultra" }, { - "slug": "pova-5g", - "name": "Pova 5G", - "url": "/v1/smartphones/pova-5g" + "slug": "xiaomi-17", + "name": "Xiaomi 17", + "url": "/v1/smartphones/xiaomi-17" }, { - "slug": "pova-6-neo", - "name": "Pova 6 Neo", - "url": "/v1/smartphones/pova-6-neo" + "slug": "xiaomi-17-pro", + "name": "Xiaomi 17 Pro", + "url": "/v1/smartphones/xiaomi-17-pro" }, { - "slug": "pova-6-neo-5g", - "name": "Pova 6 Neo 5G", - "url": "/v1/smartphones/pova-6-neo-5g" + "slug": "xiaomi-17-pro-max", + "name": "Xiaomi 17 Pro Max", + "url": "/v1/smartphones/xiaomi-17-pro-max" }, { - "slug": "pova-6-pro", - "name": "Pova 6 Pro", - "url": "/v1/smartphones/pova-6-pro" + "slug": "xiaomi-mi-10", + "name": "Xiaomi Mi 10", + "url": "/v1/smartphones/xiaomi-mi-10" }, { - "slug": "pura-70", - "name": "Pura 70", - "url": "/v1/smartphones/pura-70" + "slug": "xiaomi-mi-10-pro", + "name": "Xiaomi Mi 10 Pro", + "url": "/v1/smartphones/xiaomi-mi-10-pro" }, { - "slug": "pura-70-pro", - "name": "Pura 70 Pro", - "url": "/v1/smartphones/pura-70-pro" + "slug": "xiaomi-mi-10-ultra", + "name": "Xiaomi Mi 10 Ultra", + "url": "/v1/smartphones/xiaomi-mi-10-ultra" }, { - "slug": "pura-70-ultra", - "name": "Pura 70 Ultra", - "url": "/v1/smartphones/pura-70-ultra" + "slug": "xiaomi-11-ultra", + "name": "Xiaomi Mi 11 Ultra", + "url": "/v1/smartphones/xiaomi-11-ultra" }, { - "slug": "q52", - "name": "Q52", - "url": "/v1/smartphones/q52" + "slug": "xiaomi-mi-5", + "name": "Xiaomi Mi 5", + "url": "/v1/smartphones/xiaomi-mi-5" }, { - "slug": "q92-5g", - "name": "Q92 5G", - "url": "/v1/smartphones/q92-5g" + "slug": "xiaomi-mi-6", + "name": "Xiaomi Mi 6", + "url": "/v1/smartphones/xiaomi-mi-6" }, { - "slug": "r15", - "name": "R15", - "url": "/v1/smartphones/r15" + "slug": "xiaomi-mi-8", + "name": "Xiaomi Mi 8", + "url": "/v1/smartphones/xiaomi-mi-8" }, { - "slug": "rog-phone-3", - "name": "ROG Phone 3", - "url": "/v1/smartphones/rog-phone-3" + "slug": "xiaomi-mi-9", + "name": "Xiaomi Mi 9", + "url": "/v1/smartphones/xiaomi-mi-9" }, { - "slug": "rog-phone-5", - "name": "ROG Phone 5", - "url": "/v1/smartphones/rog-phone-5" + "slug": "xolo-era-5x-dual-sim-td-lte-in-16gb", + "name": "Xolo Era 5X Dual SIM TD-LTE IN 16GB", + "url": "/v1/smartphones/xolo-era-5x-dual-sim-td-lte-in-16gb" }, { - "slug": "rog-phone-5s", - "name": "ROG Phone 5s", - "url": "/v1/smartphones/rog-phone-5s" + "slug": "xolo-era-5x-dual-sim-td-lte-in-32gb", + "name": "Xolo Era 5X Dual SIM TD-LTE IN 32GB", + "url": "/v1/smartphones/xolo-era-5x-dual-sim-td-lte-in-32gb" }, { - "slug": "rog-phone-5s-pro", - "name": "ROG Phone 5s Pro", - "url": "/v1/smartphones/rog-phone-5s-pro" + "slug": "xperia-1-global-dual-sim-td-lte-j9110", + "name": "Xperia 1 Global Dual SIM TD-LTE J9110", + "url": "/v1/smartphones/xperia-1-global-dual-sim-td-lte-j9110" }, { - "slug": "rog-phone-6", - "name": "ROG Phone 6", - "url": "/v1/smartphones/rog-phone-6" + "slug": "xperia-1-global-td-lte-j8110-pf13", + "name": "Xperia 1 Global TD-LTE J8110 / PF13", + "url": "/v1/smartphones/xperia-1-global-td-lte-j8110-pf13" }, { - "slug": "rog-phone-6-pro", - "name": "ROG Phone 6 Pro", - "url": "/v1/smartphones/rog-phone-6-pro" + "slug": "xperia-1-global-td-lte-j8170", + "name": "Xperia 1 Global TD-LTE J8170", + "url": "/v1/smartphones/xperia-1-global-td-lte-j8170" }, { - "slug": "rog-phone-6d", - "name": "ROG Phone 6D", - "url": "/v1/smartphones/rog-phone-6d" + "slug": "xperia-1-ii", + "name": "Xperia 1 II", + "url": "/v1/smartphones/xperia-1-ii" }, { - "slug": "rog-phone-6d-ultimate", - "name": "ROG Phone 6D Ultimate", - "url": "/v1/smartphones/rog-phone-6d-ultimate" + "slug": "xperia-1-ii-5g-dual-sim-td-lte-cn-xq-at72", + "name": "Xperia 1 II 5G Dual SIM TD-LTE CN XQ-AT72", + "url": "/v1/smartphones/xperia-1-ii-5g-dual-sim-td-lte-cn-xq-at72" }, { - "slug": "rog-phone-7", - "name": "ROG Phone 7", - "url": "/v1/smartphones/rog-phone-7" + "slug": "xperia-1-ii-5g-dual-sim-td-lte-jp-xq-at42", + "name": "Xperia 1 II 5G Dual SIM TD-LTE JP XQ-AT42", + "url": "/v1/smartphones/xperia-1-ii-5g-dual-sim-td-lte-jp-xq-at42" }, { - "slug": "rog-phone-7-pro", - "name": "ROG Phone 7 Pro", - "url": "/v1/smartphones/rog-phone-7-pro" + "slug": "xperia-1-ii-5g-global-dual-sim-td-lte-xq-at52", + "name": "Xperia 1 II 5G Global Dual SIM TD-LTE XQ-AT52", + "url": "/v1/smartphones/xperia-1-ii-5g-global-dual-sim-td-lte-xq-at52" }, { - "slug": "rog-phone-7-ultimate", - "name": "ROG Phone 7 Ultimate", - "url": "/v1/smartphones/rog-phone-7-ultimate" + "slug": "xperia-1-ii-5g-global-td-lte-xq-at51", + "name": "Xperia 1 II 5G Global TD-LTE XQ-AT51", + "url": "/v1/smartphones/xperia-1-ii-5g-global-td-lte-xq-at51" }, { - "slug": "rog-phone-ii", - "name": "ROG Phone II", - "url": "/v1/smartphones/rog-phone-ii" + "slug": "xperia-1-ii-5g-green-edition-global-dual-sim-td-lte-xq-at52-g", + "name": "Xperia 1 II 5G Green Edition Global Dual SIM TD-LTE XQ-AT52/G", + "url": "/v1/smartphones/xperia-1-ii-5g-green-edition-global-dual-sim-td-lte-xq-at52-g" }, { - "slug": "rog-phone-ii-strix-edition", - "name": "ROG Phone II Strix Edition", - "url": "/v1/smartphones/rog-phone-ii-strix-edition" + "slug": "xperia-1-ii-5g-td-lte-jp-so-51a", + "name": "Xperia 1 II 5G TD-LTE JP SO-51A", + "url": "/v1/smartphones/xperia-1-ii-5g-td-lte-jp-so-51a" }, { - "slug": "rog-phone-ii-ultimate-edition", - "name": "ROG Phone II Ultimate Edition", - "url": "/v1/smartphones/rog-phone-ii-ultimate-edition" + "slug": "xperia-1-ii-5g-td-lte-jp-sog01", + "name": "Xperia 1 II 5G TD-LTE JP SOG01", + "url": "/v1/smartphones/xperia-1-ii-5g-td-lte-jp-sog01" }, { - "slug": "razr", - "name": "Razr", - "url": "/v1/smartphones/razr" + "slug": "xperia-1-iii", + "name": "Xperia 1 III", + "url": "/v1/smartphones/xperia-1-iii" }, { - "slug": "razr-50", - "name": "Razr 50", - "url": "/v1/smartphones/razr-50" + "slug": "xperia-1-iii-5g-dual-sim-td-lte-apac-256gb-xq-bc72", + "name": "Xperia 1 III 5G Dual SIM TD-LTE APAC 256GB XQ-BC72", + "url": "/v1/smartphones/xperia-1-iii-5g-dual-sim-td-lte-apac-256gb-xq-bc72" }, { - "slug": "razr-50-ultra", - "name": "Razr 50 Ultra", - "url": "/v1/smartphones/razr-50-ultra" + "slug": "xperia-1-iii-5g-dual-sim-td-lte-apac-512gb-xq-bc72", + "name": "Xperia 1 III 5G Dual SIM TD-LTE APAC 512GB XQ-BC72", + "url": "/v1/smartphones/xperia-1-iii-5g-dual-sim-td-lte-apac-512gb-xq-bc72" }, { - "slug": "realme-10", - "name": "Realme 10", - "url": "/v1/smartphones/realme-10" + "slug": "xperia-1-iii-5g-dual-sim-td-lte-emea-xq-bc52-xq-ac52", + "name": "Xperia 1 III 5G Dual SIM TD-LTE EMEA XQ-BC52 / XQ-AC52", + "url": "/v1/smartphones/xperia-1-iii-5g-dual-sim-td-lte-emea-xq-bc52-xq-ac52" }, { - "slug": "realme-10-pro", - "name": "Realme 10 Pro", - "url": "/v1/smartphones/realme-10-pro" + "slug": "xperia-1-iii-5g-dual-sim-td-lte-jp-512gb-xq-bc42", + "name": "Xperia 1 III 5G Dual SIM TD-LTE JP 512GB XQ-BC42", + "url": "/v1/smartphones/xperia-1-iii-5g-dual-sim-td-lte-jp-512gb-xq-bc42" }, { - "slug": "realme-10s", - "name": "Realme 10s", - "url": "/v1/smartphones/realme-10s" + "slug": "xperia-1-iii-5g-dual-sim-td-lte-na-256gb-xq-bc62", + "name": "Xperia 1 III 5G Dual SIM TD-LTE NA 256GB XQ-BC62", + "url": "/v1/smartphones/xperia-1-iii-5g-dual-sim-td-lte-na-256gb-xq-bc62" }, { - "slug": "realme-3", - "name": "Realme 3", - "url": "/v1/smartphones/realme-3" + "slug": "xperia-1-iii-5g-uw-td-lte-jp-a101so", + "name": "Xperia 1 III 5G UW TD-LTE JP A101SO", + "url": "/v1/smartphones/xperia-1-iii-5g-uw-td-lte-jp-a101so" }, { - "slug": "realme-3-premium-edition", - "name": "Realme 3 Premium Edition", - "url": "/v1/smartphones/realme-3-premium-edition" + "slug": "xperia-1-iii-5g-uw-td-lte-jp-so-51b", + "name": "Xperia 1 III 5G UW TD-LTE JP SO-51B", + "url": "/v1/smartphones/xperia-1-iii-5g-uw-td-lte-jp-so-51b" }, { - "slug": "realme-3-standard-edition", - "name": "Realme 3 Standard Edition", - "url": "/v1/smartphones/realme-3-standard-edition" + "slug": "xperia-1-iii-5g-uw-td-lte-jp-sog03", + "name": "Xperia 1 III 5G UW TD-LTE JP SOG03", + "url": "/v1/smartphones/xperia-1-iii-5g-uw-td-lte-jp-sog03" }, { - "slug": "realme-3i", - "name": "Realme 3i", - "url": "/v1/smartphones/realme-3i" + "slug": "xperia-1-iv", + "name": "Xperia 1 IV", + "url": "/v1/smartphones/xperia-1-iv" }, { - "slug": "realme-6-premium-edition", - "name": "Realme 6 Premium Edition", - "url": "/v1/smartphones/realme-6-premium-edition" + "slug": "xperia-1-professional-edition-global-dual-sim-td-lte-j9150", + "name": "Xperia 1 Professional Edition Global Dual SIM TD-LTE J9150", + "url": "/v1/smartphones/xperia-1-professional-edition-global-dual-sim-td-lte-j9150" }, { - "slug": "realme-6-pro-premium-edition", - "name": "Realme 6 Pro Premium Edition", - "url": "/v1/smartphones/realme-6-pro-premium-edition" + "slug": "xperia-1-td-lte-jp-802so", + "name": "Xperia 1 TD-LTE JP 802SO", + "url": "/v1/smartphones/xperia-1-td-lte-jp-802so" }, { - "slug": "realme-6-pro-standard-edition", - "name": "Realme 6 Pro Standard Edition", - "url": "/v1/smartphones/realme-6-pro-standard-edition" + "slug": "xperia-1-td-lte-jp-so-03l", + "name": "Xperia 1 TD-LTE JP SO-03L", + "url": "/v1/smartphones/xperia-1-td-lte-jp-so-03l" }, { - "slug": "realme-6-standard-edition", - "name": "Realme 6 Standard Edition", - "url": "/v1/smartphones/realme-6-standard-edition" + "slug": "xperia-1-v", + "name": "Xperia 1 V", + "url": "/v1/smartphones/xperia-1-v" }, { - "slug": "realme-6i", - "name": "Realme 6i", - "url": "/v1/smartphones/realme-6i" + "slug": "xperia-1-vi", + "name": "Xperia 1 VI", + "url": "/v1/smartphones/xperia-1-vi" }, { - "slug": "realme-6s", - "name": "Realme 6s", - "url": "/v1/smartphones/realme-6s" + "slug": "xperia-1-wimax-2-jp-sov40", + "name": "Xperia 1 WiMAX 2+ JP SOV40", + "url": "/v1/smartphones/xperia-1-wimax-2-jp-sov40" }, { - "slug": "realme-7", - "name": "Realme 7", - "url": "/v1/smartphones/realme-7" + "slug": "xperia-10-global-dual-sim-td-lte-i4113", + "name": "Xperia 10 Global Dual SIM TD-LTE I4113", + "url": "/v1/smartphones/xperia-10-global-dual-sim-td-lte-i4113" }, { - "slug": "realme-7-nfc", - "name": "Realme 7 NFC", - "url": "/v1/smartphones/realme-7-nfc" + "slug": "xperia-10-global-td-lte-i3113", + "name": "Xperia 10 Global TD-LTE I3113", + "url": "/v1/smartphones/xperia-10-global-td-lte-i3113" }, { - "slug": "realme-7-nfc-premium-edition", - "name": "Realme 7 NFC Premium Edition", - "url": "/v1/smartphones/realme-7-nfc-premium-edition" + "slug": "xperia-10-ii-dual-sim-td-lte-jp-xq-au42", + "name": "Xperia 10 II Dual SIM TD-LTE JP XQ-AU42", + "url": "/v1/smartphones/xperia-10-ii-dual-sim-td-lte-jp-xq-au42" }, { - "slug": "realme-7-nfc-standard-edition", - "name": "Realme 7 NFC Standard Edition", - "url": "/v1/smartphones/realme-7-nfc-standard-edition" + "slug": "xperia-10-ii-global-dual-sim-td-lte-sony-xq-au52-xperia-10-mk-2", + "name": "Xperia 10 II Global Dual SIM TD-LTE Sony XQ-AU52 / Xperia 10 Mk. 2", + "url": "/v1/smartphones/xperia-10-ii-global-dual-sim-td-lte-sony-xq-au52-xperia-10-mk-2" }, { - "slug": "realme-7-pro-nfc-premium-edition", - "name": "Realme 7 Pro NFC Premium Edition", - "url": "/v1/smartphones/realme-7-pro-nfc-premium-edition" + "slug": "xperia-10-ii-global-td-lte-xq-au51-xperia-10-mk-2", + "name": "Xperia 10 II Global TD-LTE XQ-AU51 / Xperia 10 Mk. 2", + "url": "/v1/smartphones/xperia-10-ii-global-td-lte-xq-au51-xperia-10-mk-2" }, { - "slug": "realme-7-pro-premium-edition", - "name": "Realme 7 Pro Premium Edition", - "url": "/v1/smartphones/realme-7-pro-premium-edition" + "slug": "xperia-10-ii-td-lte-jp-a001so", + "name": "Xperia 10 II TD-LTE JP A001SO", + "url": "/v1/smartphones/xperia-10-ii-td-lte-jp-a001so" }, { - "slug": "realme-7-pro-standard-edition", - "name": "Realme 7 Pro Standard Edition", - "url": "/v1/smartphones/realme-7-pro-standard-edition" + "slug": "xperia-10-ii-td-lte-jp-so-41a", + "name": "Xperia 10 II TD-LTE JP SO-41A", + "url": "/v1/smartphones/xperia-10-ii-td-lte-jp-so-41a" }, { - "slug": "realme-8", - "name": "Realme 8", - "url": "/v1/smartphones/realme-8" + "slug": "xperia-10-ii-wimax-2-sov43", + "name": "Xperia 10 II WiMAX 2 + SOV43", + "url": "/v1/smartphones/xperia-10-ii-wimax-2-sov43" }, { - "slug": "realme-8i-2021-nfc-standard-edition", - "name": "Realme 8i 2021 NFC Standard Edition", - "url": "/v1/smartphones/realme-8i-2021-nfc-standard-edition" + "slug": "xperia-10-iii", + "name": "Xperia 10 III", + "url": "/v1/smartphones/xperia-10-iii" }, { - "slug": "realme-8i-2021-premium-edition", - "name": "Realme 8i 2021 Premium Edition", - "url": "/v1/smartphones/realme-8i-2021-premium-edition" + "slug": "xperia-10-iii-5g-global-dual-sim-td-lte-128gb-xq-bt52", + "name": "Xperia 10 III 5G Global Dual SIM TD-LTE 128GB XQ-BT52", + "url": "/v1/smartphones/xperia-10-iii-5g-global-dual-sim-td-lte-128gb-xq-bt52" }, { - "slug": "realme-8i-2021-standard-edition", - "name": "Realme 8i 2021 Standard Edition", - "url": "/v1/smartphones/realme-8i-2021-standard-edition" + "slug": "xperia-10-iii-5g-td-lte-jp-128gb-a102so", + "name": "Xperia 10 III 5G TD-LTE JP 128GB A102SO", + "url": "/v1/smartphones/xperia-10-iii-5g-td-lte-jp-128gb-a102so" }, { - "slug": "realme-8s", - "name": "Realme 8s", - "url": "/v1/smartphones/realme-8s" + "slug": "xperia-10-iii-5g-td-lte-jp-128gb-so-52b", + "name": "Xperia 10 III 5G TD-LTE JP 128GB SO-52B", + "url": "/v1/smartphones/xperia-10-iii-5g-td-lte-jp-128gb-so-52b" }, { - "slug": "realme-9", - "name": "Realme 9", - "url": "/v1/smartphones/realme-9" + "slug": "xperia-10-iii-5g-td-lte-jp-128gb-sog04", + "name": "Xperia 10 III 5G TD-LTE JP 128GB SOG04", + "url": "/v1/smartphones/xperia-10-iii-5g-td-lte-jp-128gb-sog04" }, { - "slug": "realme-9-pro", - "name": "Realme 9 Pro", - "url": "/v1/smartphones/realme-9-pro" + "slug": "xperia-10-iii-lite", + "name": "Xperia 10 III Lite", + "url": "/v1/smartphones/xperia-10-iii-lite" }, { - "slug": "realme-9i", - "name": "Realme 9i", - "url": "/v1/smartphones/realme-9i" + "slug": "xperia-10-iii-lite-5g-dual-sim-td-lte-jp-64gb-xq-bt44", + "name": "Xperia 10 III Lite 5G Dual SIM TD-LTE JP 64GB XQ-BT44", + "url": "/v1/smartphones/xperia-10-iii-lite-5g-dual-sim-td-lte-jp-64gb-xq-bt44" }, { - "slug": "realme-c11-2020", - "name": "Realme C11 2020", - "url": "/v1/smartphones/realme-c11-2020" + "slug": "xperia-10-iv", + "name": "Xperia 10 IV", + "url": "/v1/smartphones/xperia-10-iv" }, { - "slug": "realme-c11-2020-premium-edition", - "name": "Realme C11 2020 Premium Edition", - "url": "/v1/smartphones/realme-c11-2020-premium-edition" + "slug": "xperia-10-lte-a-na-i3123", + "name": "Xperia 10 LTE-A NA I3123", + "url": "/v1/smartphones/xperia-10-lte-a-na-i3123" }, { - "slug": "realme-c11-2020-standard-edition", - "name": "Realme C11 2020 Standard Edition", - "url": "/v1/smartphones/realme-c11-2020-standard-edition" + "slug": "xperia-10-plus-global-dual-sim-td-lte-i4213", + "name": "Xperia 10 Plus Global Dual SIM TD-LTE I4213", + "url": "/v1/smartphones/xperia-10-plus-global-dual-sim-td-lte-i4213" }, { - "slug": "realme-c12-2020", - "name": "Realme C12 2020", - "url": "/v1/smartphones/realme-c12-2020" + "slug": "xperia-10-plus-global-td-lte-i3213", + "name": "Xperia 10 Plus Global TD-LTE I3213", + "url": "/v1/smartphones/xperia-10-plus-global-td-lte-i3213" }, { - "slug": "realme-c15-2020-premium-edition", - "name": "Realme C15 2020 Premium Edition", - "url": "/v1/smartphones/realme-c15-2020-premium-edition" + "slug": "xperia-10-plus-lte-a-na-i3223", + "name": "Xperia 10 Plus LTE-A NA I3223", + "url": "/v1/smartphones/xperia-10-plus-lte-a-na-i3223" }, { - "slug": "realme-c15-2020-standard-edition", - "name": "Realme C15 2020 Standard Edition", - "url": "/v1/smartphones/realme-c15-2020-standard-edition" + "slug": "xperia-10-plus-premium-edition-global-dual-sim-td-lte-i4293", + "name": "Xperia 10 Plus Premium Edition Global Dual SIM TD-LTE I4293", + "url": "/v1/smartphones/xperia-10-plus-premium-edition-global-dual-sim-td-lte-i4293" }, { - "slug": "realme-c2-premium-edition", - "name": "Realme C2 Premium Edition", - "url": "/v1/smartphones/realme-c2-premium-edition" + "slug": "xperia-10-premium-edition-global-dual-sim-td-lte-i4193", + "name": "Xperia 10 Premium Edition Global Dual SIM TD-LTE I4193", + "url": "/v1/smartphones/xperia-10-premium-edition-global-dual-sim-td-lte-i4193" }, { - "slug": "realme-c2-standard-edition", - "name": "Realme C2 Standard Edition", - "url": "/v1/smartphones/realme-c2-standard-edition" + "slug": "xperia-10-v", + "name": "Xperia 10 V", + "url": "/v1/smartphones/xperia-10-v" }, { - "slug": "realme-c20-2021", - "name": "Realme C20 2021", - "url": "/v1/smartphones/realme-c20-2021" + "slug": "xperia-10-vi", + "name": "Xperia 10 VI", + "url": "/v1/smartphones/xperia-10-vi" }, { - "slug": "realme-c21-2021", - "name": "Realme C21 2021", - "url": "/v1/smartphones/realme-c21-2021" + "slug": "xperia-5-global-dual-sim-td-lte-j9210", + "name": "Xperia 5 Global Dual SIM TD-LTE J9210", + "url": "/v1/smartphones/xperia-5-global-dual-sim-td-lte-j9210" }, { - "slug": "realme-c21y-2021", - "name": "Realme C21Y 2021", - "url": "/v1/smartphones/realme-c21y-2021" + "slug": "xperia-5-global-td-lte-j8210", + "name": "Xperia 5 Global TD-LTE J8210", + "url": "/v1/smartphones/xperia-5-global-td-lte-j8210" }, { - "slug": "realme-c25", - "name": "Realme C25", - "url": "/v1/smartphones/realme-c25" + "slug": "xperia-5-global-td-lte-j8270", + "name": "Xperia 5 Global TD-LTE J8270", + "url": "/v1/smartphones/xperia-5-global-td-lte-j8270" }, { - "slug": "realme-c25y-2021", - "name": "Realme C25Y 2021", - "url": "/v1/smartphones/realme-c25y-2021" + "slug": "xperia-5-ii", + "name": "Xperia 5 II", + "url": "/v1/smartphones/xperia-5-ii" }, { - "slug": "realme-c25-y-2021", - "name": "Realme C25_Y 2021", - "url": "/v1/smartphones/realme-c25-y-2021" + "slug": "xperia-5-ii-5g-dual-sim-td-lte-apac-256gb-xq-as72", + "name": "Xperia 5 II 5G Dual SIM TD-LTE APAC 256GB XQ-AS72", + "url": "/v1/smartphones/xperia-5-ii-5g-dual-sim-td-lte-apac-256gb-xq-as72" }, { - "slug": "realme-c25s-2021", - "name": "Realme C25s 2021", - "url": "/v1/smartphones/realme-c25s-2021" + "slug": "xperia-5-ii-5g-dual-sim-td-lte-jp-256gb-xq-as42", + "name": "Xperia 5 II 5G Dual SIM TD-LTE JP 256GB XQ-AS42", + "url": "/v1/smartphones/xperia-5-ii-5g-dual-sim-td-lte-jp-256gb-xq-as42" }, { - "slug": "realme-c2s", - "name": "Realme C2s", - "url": "/v1/smartphones/realme-c2s" + "slug": "xperia-5-ii-5g-global-dual-sim-td-lte-xq-as52", + "name": "Xperia 5 II 5G Global Dual SIM TD-LTE XQ-AS52", + "url": "/v1/smartphones/xperia-5-ii-5g-global-dual-sim-td-lte-xq-as52" }, { - "slug": "realme-c3-premium-edition", - "name": "Realme C3 Premium Edition", - "url": "/v1/smartphones/realme-c3-premium-edition" + "slug": "xperia-5-ii-5g-td-lte-jp-a002so", + "name": "Xperia 5 II 5G TD-LTE JP A002SO", + "url": "/v1/smartphones/xperia-5-ii-5g-td-lte-jp-a002so" }, { - "slug": "realme-c3-standard-edition", - "name": "Realme C3 Standard Edition", - "url": "/v1/smartphones/realme-c3-standard-edition" + "slug": "xperia-5-ii-5g-td-lte-jp-so-52a", + "name": "Xperia 5 II 5G TD-LTE JP SO-52A", + "url": "/v1/smartphones/xperia-5-ii-5g-td-lte-jp-so-52a" }, { - "slug": "realme-c30-2022-premium-edition", - "name": "Realme C30 2022 Premium Edition", - "url": "/v1/smartphones/realme-c30-2022-premium-edition" + "slug": "xperia-5-ii-5g-td-lte-jp-sog02", + "name": "Xperia 5 II 5G TD-LTE JP SOG02", + "url": "/v1/smartphones/xperia-5-ii-5g-td-lte-jp-sog02" }, { - "slug": "realme-c30-2022-standard-edition", - "name": "Realme C30 2022 Standard Edition", - "url": "/v1/smartphones/realme-c30-2022-standard-edition" + "slug": "xperia-5-iii", + "name": "Xperia 5 III", + "url": "/v1/smartphones/xperia-5-iii" }, { - "slug": "realme-c30-2022-top-edition", - "name": "Realme C30 2022 Top Edition", - "url": "/v1/smartphones/realme-c30-2022-top-edition" + "slug": "xperia-5-iii-5g-dual-sim-td-lte-apac-256gb-xq-bq72", + "name": "Xperia 5 III 5G Dual SIM TD-LTE APAC 256GB XQ-BQ72", + "url": "/v1/smartphones/xperia-5-iii-5g-dual-sim-td-lte-apac-256gb-xq-bq72" }, { - "slug": "realme-c33-2022-premium-edition", - "name": "Realme C33 2022 Premium Edition", - "url": "/v1/smartphones/realme-c33-2022-premium-edition" + "slug": "xperia-5-iii-5g-dual-sim-td-lte-jp-256gb-xq-bq42", + "name": "Xperia 5 III 5G Dual SIM TD-LTE JP 256GB XQ-BQ42", + "url": "/v1/smartphones/xperia-5-iii-5g-dual-sim-td-lte-jp-256gb-xq-bq42" }, { - "slug": "realme-c33-2022-standard-edition", - "name": "Realme C33 2022 Standard Edition", - "url": "/v1/smartphones/realme-c33-2022-standard-edition" + "slug": "xperia-5-iii-5g-dual-sim-td-lte-na-xq-bq62", + "name": "Xperia 5 III 5G Dual SIM TD-LTE NA XQ-BQ62", + "url": "/v1/smartphones/xperia-5-iii-5g-dual-sim-td-lte-na-xq-bq62" }, { - "slug": "realme-c35-2022-premium-edition", - "name": "Realme C35 2022 Premium Edition", - "url": "/v1/smartphones/realme-c35-2022-premium-edition" + "slug": "xperia-5-iii-5g-global-dual-sim-td-lte-xq-bq52", + "name": "Xperia 5 III 5G Global Dual SIM TD-LTE XQ-BQ52", + "url": "/v1/smartphones/xperia-5-iii-5g-global-dual-sim-td-lte-xq-bq52" }, { - "slug": "realme-c35-2022-standard-edition", - "name": "Realme C35 2022 Standard Edition", - "url": "/v1/smartphones/realme-c35-2022-standard-edition" + "slug": "xperia-5-iii-5g-td-lte-jp-128gb-a103so", + "name": "Xperia 5 III 5G TD-LTE JP 128GB A103SO", + "url": "/v1/smartphones/xperia-5-iii-5g-td-lte-jp-128gb-a103so" }, { - "slug": "realme-c3i-standard-edition", - "name": "Realme C3i Standard Edition", - "url": "/v1/smartphones/realme-c3i-standard-edition" + "slug": "xperia-5-iii-5g-td-lte-jp-128gb-so-53b", + "name": "Xperia 5 III 5G TD-LTE JP 128GB SO-53B", + "url": "/v1/smartphones/xperia-5-iii-5g-td-lte-jp-128gb-so-53b" }, { - "slug": "realme-gt", - "name": "Realme GT", - "url": "/v1/smartphones/realme-gt" + "slug": "xperia-5-iii-5g-td-lte-jp-128gb-sog05", + "name": "Xperia 5 III 5G TD-LTE JP 128GB SOG05", + "url": "/v1/smartphones/xperia-5-iii-5g-td-lte-jp-128gb-sog05" }, { - "slug": "realme-gt-3", - "name": "Realme GT 3", - "url": "/v1/smartphones/realme-gt-3" + "slug": "xperia-5-iv", + "name": "Xperia 5 IV", + "url": "/v1/smartphones/xperia-5-iv" }, { - "slug": "realme-gt-8-pro", - "name": "Realme GT 8 Pro", - "url": "/v1/smartphones/realme-gt-8-pro" + "slug": "xperia-5-td-lte-jp-901so", + "name": "Xperia 5 TD-LTE JP 901SO", + "url": "/v1/smartphones/xperia-5-td-lte-jp-901so" }, { - "slug": "realme-gt-master-edition", - "name": "Realme GT Master Edition", - "url": "/v1/smartphones/realme-gt-master-edition" + "slug": "xperia-5-td-lte-jp-so-01m", + "name": "Xperia 5 TD-LTE JP SO-01M", + "url": "/v1/smartphones/xperia-5-td-lte-jp-so-01m" }, { - "slug": "realme-gt-master-explorer-edition", - "name": "Realme GT Master Explorer Edition", - "url": "/v1/smartphones/realme-gt-master-explorer-edition" + "slug": "xperia-5-v", + "name": "Xperia 5 V", + "url": "/v1/smartphones/xperia-5-v" }, { - "slug": "realme-gt-master-premium-edition", - "name": "Realme GT Master Premium Edition", - "url": "/v1/smartphones/realme-gt-master-premium-edition" + "slug": "xperia-5-vi", + "name": "Xperia 5 VI", + "url": "/v1/smartphones/xperia-5-vi" }, { - "slug": "realme-gt-master-standard-edition", - "name": "Realme GT Master Standard Edition", - "url": "/v1/smartphones/realme-gt-master-standard-edition" + "slug": "xperia-5-wimax-2-sov41", + "name": "Xperia 5 WiMAX 2+ SOV41", + "url": "/v1/smartphones/xperia-5-wimax-2-sov41" }, { - "slug": "realme-gt-neo", - "name": "Realme GT Neo", - "url": "/v1/smartphones/realme-gt-neo" + "slug": "xperia-8-lite-td-lte-jp-j3273", + "name": "Xperia 8 Lite TD-LTE JP J3273", + "url": "/v1/smartphones/xperia-8-lite-td-lte-jp-j3273" }, { - "slug": "realme-gt-neo-2", - "name": "Realme GT Neo 2", - "url": "/v1/smartphones/realme-gt-neo-2" + "slug": "xperia-8-td-lte-jp-902so", + "name": "Xperia 8 TD-LTE JP 902SO", + "url": "/v1/smartphones/xperia-8-td-lte-jp-902so" }, { - "slug": "realme-gt-neo-2t", - "name": "Realme GT Neo 2T", - "url": "/v1/smartphones/realme-gt-neo-2t" + "slug": "xperia-8-wimax-2-sov42-xperia-8-lite-sov42-u", + "name": "Xperia 8 WiMAX 2+ SOV42 / Xperia 8 Lite SOV42-u", + "url": "/v1/smartphones/xperia-8-wimax-2-sov42-xperia-8-lite-sov42-u" }, { - "slug": "realme-gt-neo-3", - "name": "Realme GT Neo 3", - "url": "/v1/smartphones/realme-gt-neo-3" + "slug": "xperia-ace-ii", + "name": "Xperia Ace II", + "url": "/v1/smartphones/xperia-ace-ii" }, { - "slug": "realme-gt-neo-3t", - "name": "Realme GT Neo 3T", - "url": "/v1/smartphones/realme-gt-neo-3t" + "slug": "xperia-ace-ii-lte-a-jp-so-41b", + "name": "Xperia Ace II LTE-A JP SO-41B", + "url": "/v1/smartphones/xperia-ace-ii-lte-a-jp-so-41b" }, { - "slug": "realme-gt-neo-3t-g-2022-premium-edition", - "name": "Realme GT Neo 3T G 2022 Premium Edition", - "url": "/v1/smartphones/realme-gt-neo-3t-g-2022-premium-edition" + "slug": "xperia-ace-iii", + "name": "Xperia Ace III", + "url": "/v1/smartphones/xperia-ace-iii" }, { - "slug": "realme-gt-neo-3t-g-2022-standard-edition", - "name": "Realme GT Neo 3T G 2022 Standard Edition", - "url": "/v1/smartphones/realme-gt-neo-3t-g-2022-standard-edition" + "slug": "xperia-ace-lte-a-jp-so-02l", + "name": "Xperia Ace LTE-A JP SO-02L", + "url": "/v1/smartphones/xperia-ace-lte-a-jp-so-02l" }, { - "slug": "realme-gt-neo-flash", - "name": "Realme GT Neo Flash", - "url": "/v1/smartphones/realme-gt-neo-flash" + "slug": "xperia-ace-td-lte-jp-j3173-j3137", + "name": "Xperia Ace TD-LTE JP J3173 / J3137", + "url": "/v1/smartphones/xperia-ace-td-lte-jp-j3173-j3137" }, { - "slug": "realme-gt-neo3", - "name": "Realme GT Neo3", - "url": "/v1/smartphones/realme-gt-neo3" + "slug": "xperia-l3", + "name": "Xperia L3", + "url": "/v1/smartphones/xperia-l3" }, { - "slug": "realme-gt2", - "name": "Realme GT2", - "url": "/v1/smartphones/realme-gt2" + "slug": "xperia-l3-dual-sim-td-lte-apac-i4332", + "name": "Xperia L3 Dual SIM TD-LTE APAC I4332", + "url": "/v1/smartphones/xperia-l3-dual-sim-td-lte-apac-i4332" }, { - "slug": "realme-gt2-pro", - "name": "Realme GT2 Pro", - "url": "/v1/smartphones/realme-gt2-pro" + "slug": "xperia-l3-dual-sim-td-lte-emea-i4312", + "name": "Xperia L3 Dual SIM TD-LTE EMEA I4312", + "url": "/v1/smartphones/xperia-l3-dual-sim-td-lte-emea-i4312" }, { - "slug": "realme-narzo", - "name": "Realme Narzo", - "url": "/v1/smartphones/realme-narzo" + "slug": "xperia-l3-lte-a-am-i3322", + "name": "Xperia L3 LTE-A AM I3322", + "url": "/v1/smartphones/xperia-l3-lte-a-am-i3322" }, { - "slug": "realme-narzo-10", - "name": "Realme Narzo 10", - "url": "/v1/smartphones/realme-narzo-10" + "slug": "xperia-l3-td-lte-emea-i3312", + "name": "Xperia L3 TD-LTE EMEA I3312", + "url": "/v1/smartphones/xperia-l3-td-lte-emea-i3312" }, { - "slug": "realme-narzo-10a", - "name": "Realme Narzo 10A", - "url": "/v1/smartphones/realme-narzo-10a" + "slug": "xperia-l4", + "name": "Xperia L4", + "url": "/v1/smartphones/xperia-l4" }, { - "slug": "realme-narzo-20", - "name": "Realme Narzo 20", - "url": "/v1/smartphones/realme-narzo-20" + "slug": "xperia-l4-dual-sim-td-lte-emea-xq-ad52", + "name": "Xperia L4 Dual SIM TD-LTE EMEA XQ-AD52", + "url": "/v1/smartphones/xperia-l4-dual-sim-td-lte-emea-xq-ad52" }, { - "slug": "realme-narzo-20-pro", - "name": "Realme Narzo 20 Pro", - "url": "/v1/smartphones/realme-narzo-20-pro" + "slug": "xperia-l4-td-lte-emea-xq-ad51", + "name": "Xperia L4 TD-LTE EMEA XQ-AD51", + "url": "/v1/smartphones/xperia-l4-td-lte-emea-xq-ad51" }, { - "slug": "realme-narzo-30", - "name": "Realme Narzo 30", - "url": "/v1/smartphones/realme-narzo-30" + "slug": "xperia-pro", + "name": "Xperia Pro", + "url": "/v1/smartphones/xperia-pro" }, { - "slug": "realme-narzo-50", - "name": "Realme Narzo 50", - "url": "/v1/smartphones/realme-narzo-50" + "slug": "xperia-pro-5g-2021-global-dual-sim-td-lte-512gb", + "name": "Xperia Pro 5G 2021 Global Dual SIM TD-LTE 512GB", + "url": "/v1/smartphones/xperia-pro-5g-2021-global-dual-sim-td-lte-512gb" }, { - "slug": "realme-narzo-50-2022-premium-edition", - "name": "Realme Narzo 50 2022 Premium Edition", - "url": "/v1/smartphones/realme-narzo-50-2022-premium-edition" + "slug": "xperia-pro-5g-uw-2021-dual-sim-td-lte-jp-512gb-xq-aq52", + "name": "Xperia Pro 5G UW 2021 Dual SIM TD-LTE JP 512GB XQ-AQ52", + "url": "/v1/smartphones/xperia-pro-5g-uw-2021-dual-sim-td-lte-jp-512gb-xq-aq52" }, { - "slug": "realme-narzo-50-2022-standard-edition", - "name": "Realme Narzo 50 2022 Standard Edition", - "url": "/v1/smartphones/realme-narzo-50-2022-standard-edition" + "slug": "xperia-pro-5g-uw-2021-dual-sim-td-lte-us-512gb-xq-aq62", + "name": "Xperia Pro 5G UW 2021 Dual SIM TD-LTE US 512GB XQ-AQ62", + "url": "/v1/smartphones/xperia-pro-5g-uw-2021-dual-sim-td-lte-us-512gb-xq-aq62" }, { - "slug": "realme-narzo-50-pro", - "name": "Realme Narzo 50 Pro", - "url": "/v1/smartphones/realme-narzo-50-pro" + "slug": "xperia-pro-i-2021", + "name": "Xperia Pro-I 2021", + "url": "/v1/smartphones/xperia-pro-i-2021" }, { - "slug": "realme-narzo-50a", - "name": "Realme Narzo 50A", - "url": "/v1/smartphones/realme-narzo-50a" + "slug": "xperia-pro-i-2021-5g-dual-sim-td-lte-apac-xq-be72", + "name": "Xperia Pro-I 2021 5G Dual SIM TD-LTE APAC XQ-BE72", + "url": "/v1/smartphones/xperia-pro-i-2021-5g-dual-sim-td-lte-apac-xq-be72" }, { - "slug": "realme-narzo-50a-prime-2022", - "name": "Realme Narzo 50A Prime 2022", - "url": "/v1/smartphones/realme-narzo-50a-prime-2022" + "slug": "xperia-pro-i-2021-5g-dual-sim-td-lte-emea-xq-be52", + "name": "Xperia Pro-I 2021 5G Dual SIM TD-LTE EMEA XQ-BE52", + "url": "/v1/smartphones/xperia-pro-i-2021-5g-dual-sim-td-lte-emea-xq-be52" }, { - "slug": "realme-q2", - "name": "Realme Q2", - "url": "/v1/smartphones/realme-q2" + "slug": "xperia-pro-i-2021-5g-dual-sim-td-lte-jp-xq-be42", + "name": "Xperia Pro-I 2021 5G Dual SIM TD-LTE JP XQ-BE42", + "url": "/v1/smartphones/xperia-pro-i-2021-5g-dual-sim-td-lte-jp-xq-be42" }, { - "slug": "realme-q2-pro", - "name": "Realme Q2 Pro", - "url": "/v1/smartphones/realme-q2-pro" + "slug": "xperia-pro-i-2021-5g-dual-sim-td-lte-na-xq-be62", + "name": "Xperia Pro-I 2021 5G Dual SIM TD-LTE NA XQ-BE62", + "url": "/v1/smartphones/xperia-pro-i-2021-5g-dual-sim-td-lte-na-xq-be62" }, { - "slug": "realme-q2i", - "name": "Realme Q2i", - "url": "/v1/smartphones/realme-q2i" + "slug": "xperia-xa2-dual-sim-td-lte-emea-h4113", + "name": "Xperia XA2 Dual SIM TD-LTE EMEA H4113", + "url": "/v1/smartphones/xperia-xa2-dual-sim-td-lte-emea-h4113" }, { - "slug": "realme-q3", - "name": "Realme Q3", - "url": "/v1/smartphones/realme-q3" + "slug": "xperia-xa2-dual-sim-td-lte-h4133", + "name": "Xperia XA2 Dual SIM TD-LTE H4133", + "url": "/v1/smartphones/xperia-xa2-dual-sim-td-lte-h4133" }, { - "slug": "realme-q3i", - "name": "Realme Q3i", - "url": "/v1/smartphones/realme-q3i" + "slug": "xperia-xa2-lte-a-na-h3123", + "name": "Xperia XA2 LTE-A NA H3123", + "url": "/v1/smartphones/xperia-xa2-lte-a-na-h3123" }, { - "slug": "realme-q5", - "name": "Realme Q5", - "url": "/v1/smartphones/realme-q5" + "slug": "xperia-xa2-plus-dual-sim-td-lte-64gb-apac-h4493", + "name": "Xperia XA2 Plus Dual SIM TD-LTE 64GB APAC H4493", + "url": "/v1/smartphones/xperia-xa2-plus-dual-sim-td-lte-64gb-apac-h4493" }, { - "slug": "realme-q5-2022-premium-edition", - "name": "Realme Q5 2022 Premium Edition", - "url": "/v1/smartphones/realme-q5-2022-premium-edition" + "slug": "xperia-xa2-plus-global-dual-sim-td-lte-32gb-h4413", + "name": "Xperia XA2 Plus Global Dual SIM TD-LTE 32GB H4413", + "url": "/v1/smartphones/xperia-xa2-plus-global-dual-sim-td-lte-32gb-h4413" }, { - "slug": "realme-q5-pro", - "name": "Realme Q5 Pro", - "url": "/v1/smartphones/realme-q5-pro" + "slug": "xperia-xa2-plus-global-td-lte-32gb-h3413", + "name": "Xperia XA2 Plus Global TD-LTE 32GB H3413", + "url": "/v1/smartphones/xperia-xa2-plus-global-td-lte-32gb-h3413" }, { - "slug": "realme-u1", - "name": "Realme U1", - "url": "/v1/smartphones/realme-u1" + "slug": "xperia-xa2-td-lte-h3133", + "name": "Xperia XA2 TD-LTE H3133", + "url": "/v1/smartphones/xperia-xa2-td-lte-h3133" }, { - "slug": "realme-v11", - "name": "Realme V11", - "url": "/v1/smartphones/realme-v11" + "slug": "xperia-xa2-ultra-lte-a-am-h3223", + "name": "Xperia XA2 Ultra LTE-A AM H3223", + "url": "/v1/smartphones/xperia-xa2-ultra-lte-a-am-h3223" }, { - "slug": "realme-v13", - "name": "Realme V13", - "url": "/v1/smartphones/realme-v13" + "slug": "xperia-xa2-ultra-td-lte-emea-h3213-sm22", + "name": "Xperia XA2 Ultra TD-LTE EMEA H3213 / SM22", + "url": "/v1/smartphones/xperia-xa2-ultra-td-lte-emea-h3213-sm22" }, { - "slug": "realme-v15", - "name": "Realme V15", - "url": "/v1/smartphones/realme-v15" + "slug": "xperia-xz2-compact-global-dual-sim-td-lte-h8324", + "name": "Xperia XZ2 Compact Global Dual SIM TD-LTE H8324", + "url": "/v1/smartphones/xperia-xz2-compact-global-dual-sim-td-lte-h8324" }, { - "slug": "realme-v3", - "name": "Realme V3", - "url": "/v1/smartphones/realme-v3" + "slug": "xperia-xz2-compact-global-td-lte-h8314-pf32", + "name": "Xperia XZ2 Compact Global TD-LTE H8314 / PF32", + "url": "/v1/smartphones/xperia-xz2-compact-global-td-lte-h8314-pf32" }, - { - "slug": "realme-v5", - "name": "Realme V5", - "url": "/v1/smartphones/realme-v5" + { + "slug": "xperia-xz2-compact-global-td-lte-so-05k", + "name": "Xperia XZ2 Compact Global TD-LTE SO-05K", + "url": "/v1/smartphones/xperia-xz2-compact-global-td-lte-so-05k" }, { - "slug": "realme-x2-premium-edition", - "name": "Realme X2 Premium Edition", - "url": "/v1/smartphones/realme-x2-premium-edition" + "slug": "xperia-xz2-dual-sim-td-lte-h8296", + "name": "Xperia XZ2 Dual SIM TD-LTE H8296", + "url": "/v1/smartphones/xperia-xz2-dual-sim-td-lte-h8296" }, { - "slug": "realme-x2-standard-edition", - "name": "Realme X2 Standard Edition", - "url": "/v1/smartphones/realme-x2-standard-edition" + "slug": "xperia-xz2-premium-dual-sim-td-lte-h8166", + "name": "Xperia XZ2 Premium Dual SIM TD-LTE H8166", + "url": "/v1/smartphones/xperia-xz2-premium-dual-sim-td-lte-h8166" }, { - "slug": "realme-x3-premium-edition", - "name": "Realme X3 Premium Edition", - "url": "/v1/smartphones/realme-x3-premium-edition" + "slug": "xperia-xz2-premium-td-lte-h8116-pf12", + "name": "Xperia XZ2 Premium TD-LTE H8116 / PF12", + "url": "/v1/smartphones/xperia-xz2-premium-td-lte-h8116-pf12" }, { - "slug": "realme-x3-standard-edition", - "name": "Realme X3 Standard Edition", - "url": "/v1/smartphones/realme-x3-standard-edition" + "slug": "xperia-xz2-premium-wimax-2-sov38", + "name": "Xperia XZ2 Premium WiMAX 2+ SOV38", + "url": "/v1/smartphones/xperia-xz2-premium-wimax-2-sov38" }, { - "slug": "realme-x3-superzoom", - "name": "Realme X3 SuperZoom", - "url": "/v1/smartphones/realme-x3-superzoom" + "slug": "xperia-xz2-td-lte-h8216-pf22", + "name": "Xperia XZ2 TD-LTE H8216 / PF22", + "url": "/v1/smartphones/xperia-xz2-td-lte-h8216-pf22" }, { - "slug": "realme-x50", - "name": "Realme X50", - "url": "/v1/smartphones/realme-x50" + "slug": "xperia-xz2-td-lte-jp-702so", + "name": "Xperia XZ2 TD-LTE JP 702SO", + "url": "/v1/smartphones/xperia-xz2-td-lte-jp-702so" }, { - "slug": "realme-x50-pro", - "name": "Realme X50 Pro", - "url": "/v1/smartphones/realme-x50-pro" + "slug": "xperia-xz2-td-lte-jp-so-03k", + "name": "Xperia XZ2 TD-LTE JP SO-03K", + "url": "/v1/smartphones/xperia-xz2-td-lte-jp-so-03k" }, { - "slug": "realme-x50m", - "name": "Realme X50m", - "url": "/v1/smartphones/realme-x50m" + "slug": "xperia-xz2-wimax-2-sov37", + "name": "Xperia XZ2 WiMAX 2+ SOV37", + "url": "/v1/smartphones/xperia-xz2-wimax-2-sov37" }, { - "slug": "realme-x50t", - "name": "Realme X50t", - "url": "/v1/smartphones/realme-x50t" + "slug": "xperia-xz3-dual-sim-td-lte-apac-h9493", + "name": "Xperia XZ3 Dual SIM TD-LTE APAC H9493", + "url": "/v1/smartphones/xperia-xz3-dual-sim-td-lte-apac-h9493" }, { - "slug": "realme-x7", - "name": "Realme X7", - "url": "/v1/smartphones/realme-x7" + "slug": "xperia-xz3-dual-sim-td-lte-emea-h9436", + "name": "Xperia XZ3 Dual SIM TD-LTE EMEA H9436", + "url": "/v1/smartphones/xperia-xz3-dual-sim-td-lte-emea-h9436" }, { - "slug": "realme-x7-max", - "name": "Realme X7 Max", - "url": "/v1/smartphones/realme-x7-max" + "slug": "xperia-xz3-global-td-lte-h8416-pf42", + "name": "Xperia XZ3 Global TD-LTE H8416 / PF42", + "url": "/v1/smartphones/xperia-xz3-global-td-lte-h8416-pf42" }, { - "slug": "realme-x7-pro", - "name": "Realme X7 Pro", - "url": "/v1/smartphones/realme-x7-pro" + "slug": "xperia-xz3-td-lte-jp-801so", + "name": "Xperia XZ3 TD-LTE JP 801SO", + "url": "/v1/smartphones/xperia-xz3-td-lte-jp-801so" }, { - "slug": "redmi-10", - "name": "Redmi 10", - "url": "/v1/smartphones/redmi-10" + "slug": "xperia-xz3-td-lte-jp-so-01l", + "name": "Xperia XZ3 TD-LTE JP SO-01L", + "url": "/v1/smartphones/xperia-xz3-td-lte-jp-so-01l" }, { - "slug": "redmi-10-2021-premium-edition", - "name": "Redmi 10 2021 Premium Edition", - "url": "/v1/smartphones/redmi-10-2021-premium-edition" + "slug": "xperia-xz3-wimax-2-jp-sov39", + "name": "Xperia XZ3 WiMAX 2+ JP SOV39", + "url": "/v1/smartphones/xperia-xz3-wimax-2-jp-sov39" }, { - "slug": "redmi-10-2021-standard-edition", - "name": "Redmi 10 2021 Standard Edition", - "url": "/v1/smartphones/redmi-10-2021-standard-edition" + "slug": "y-max-dual-sim-td-lte-apac-ars-lx2-honor-8x-max-ars-l22", + "name": "Y Max Dual SIM TD-LTE APAC ARS-LX2 / Honor 8X Max ARS-L22", + "url": "/v1/smartphones/y-max-dual-sim-td-lte-apac-ars-lx2-honor-8x-max-ars-l22" }, { - "slug": "redmi-10-2022-premium-edition", - "name": "Redmi 10 2022 Premium Edition", - "url": "/v1/smartphones/redmi-10-2022-premium-edition" + "slug": "y100", + "name": "Y100", + "url": "/v1/smartphones/y100" }, { - "slug": "redmi-10-2022-standard-edition", - "name": "Redmi 10 2022 Standard Edition", - "url": "/v1/smartphones/redmi-10-2022-standard-edition" + "slug": "y100-5g", + "name": "Y100 5G", + "url": "/v1/smartphones/y100-5g" }, { - "slug": "redmi-10-prime-2021-premium-edition", - "name": "Redmi 10 Prime 2021 Premium Edition", - "url": "/v1/smartphones/redmi-10-prime-2021-premium-edition" + "slug": "y11", + "name": "Y11", + "url": "/v1/smartphones/y11" }, { - "slug": "redmi-10-prime-2021-standard-edition", - "name": "Redmi 10 Prime 2021 Standard Edition", - "url": "/v1/smartphones/redmi-10-prime-2021-standard-edition" + "slug": "y12s", + "name": "Y12s", + "url": "/v1/smartphones/y12s" }, { - "slug": "redmi-10-prime-2022-premium-edition", - "name": "Redmi 10 Prime 2022 Premium Edition", - "url": "/v1/smartphones/redmi-10-prime-2022-premium-edition" + "slug": "y200-gt", + "name": "Y200 GT", + "url": "/v1/smartphones/y200-gt" }, { - "slug": "redmi-10-prime-2022-standard-edition", - "name": "Redmi 10 Prime 2022 Standard Edition", - "url": "/v1/smartphones/redmi-10-prime-2022-standard-edition" + "slug": "y21", + "name": "Y21", + "url": "/v1/smartphones/y21" }, { - "slug": "redmi-10a-base-edition", - "name": "Redmi 10A Base Edition", - "url": "/v1/smartphones/redmi-10a-base-edition" + "slug": "y30", + "name": "Y30", + "url": "/v1/smartphones/y30" }, { - "slug": "redmi-10a-premium-edition", - "name": "Redmi 10A Premium Edition", - "url": "/v1/smartphones/redmi-10a-premium-edition" + "slug": "y33s", + "name": "Y33s", + "url": "/v1/smartphones/y33s" }, { - "slug": "redmi-10a-standard-edition", - "name": "Redmi 10A Standard Edition", - "url": "/v1/smartphones/redmi-10a-standard-edition" + "slug": "y5-2019", + "name": "Y5 2019", + "url": "/v1/smartphones/y5-2019" }, { - "slug": "redmi-10a-top-edition", - "name": "Redmi 10A Top Edition", - "url": "/v1/smartphones/redmi-10a-top-edition" + "slug": "y5-2019-dual-sim-lte-a-emea-32gb-amn-lx9-amn-l29", + "name": "Y5 2019 Dual SIM LTE-A EMEA 32GB AMN-LX9 / AMN-L29", + "url": "/v1/smartphones/y5-2019-dual-sim-lte-a-emea-32gb-amn-lx9-amn-l29" }, { - "slug": "redmi-10x", - "name": "Redmi 10X", - "url": "/v1/smartphones/redmi-10x" + "slug": "y5-2019-dual-sim-lte-a-emea-amn-lx1-amn-l21", + "name": "Y5 2019 Dual SIM LTE-A EMEA AMN-LX1 / AMN-L21", + "url": "/v1/smartphones/y5-2019-dual-sim-lte-a-emea-amn-lx1-amn-l21" }, { - "slug": "redmi-10x-pro", - "name": "Redmi 10X Pro", - "url": "/v1/smartphones/redmi-10x-pro" + "slug": "y53s", + "name": "Y53s", + "url": "/v1/smartphones/y53s" }, { - "slug": "redmi-11-prime", - "name": "Redmi 11 Prime", - "url": "/v1/smartphones/redmi-11-prime" + "slug": "y5p-2020", + "name": "Y5p 2020", + "url": "/v1/smartphones/y5p-2020" }, { - "slug": "redmi-11-prime-2022", - "name": "Redmi 11 Prime 2022", - "url": "/v1/smartphones/redmi-11-prime-2022" + "slug": "y5p-2020-global-dual-sim-td-lte-32gb-dra-lx9-dra-l29-dua-l29a", + "name": "Y5p 2020 Global Dual SIM TD-LTE 32GB DRA-LX9 / DRA-L29 / DUA-L29A", + "url": "/v1/smartphones/y5p-2020-global-dual-sim-td-lte-32gb-dra-lx9-dra-l29-dua-l29a" }, { - "slug": "redmi-12c-nfc-premium-edition", - "name": "Redmi 12C NFC Premium Edition", - "url": "/v1/smartphones/redmi-12c-nfc-premium-edition" + "slug": "y6-2018-dual-sim-lte-apac-atu-lx2-atu-l22", + "name": "Y6 2018 Dual SIM LTE APAC ATU-LX2 / ATU-L22", + "url": "/v1/smartphones/y6-2018-dual-sim-lte-apac-atu-lx2-atu-l22" }, { - "slug": "redmi-12c-nfc-standard-edition", - "name": "Redmi 12C NFC Standard Edition", - "url": "/v1/smartphones/redmi-12c-nfc-standard-edition" + "slug": "y6-2018-dual-sim-lte-emea-atu-lx1-atu-l21", + "name": "Y6 2018 Dual SIM LTE EMEA ATU-LX1 / ATU-L21", + "url": "/v1/smartphones/y6-2018-dual-sim-lte-emea-atu-lx1-atu-l21" }, { - "slug": "redmi-12c-premium-edition", - "name": "Redmi 12C Premium Edition", - "url": "/v1/smartphones/redmi-12c-premium-edition" + "slug": "y6-2018-dual-sim-lte-latam-atu-lx3-atu-l23", + "name": "Y6 2018 Dual SIM LTE LATAM ATU-LX3 / ATU-L23", + "url": "/v1/smartphones/y6-2018-dual-sim-lte-latam-atu-lx3-atu-l23" }, { - "slug": "redmi-12c-standard-edition", - "name": "Redmi 12C Standard Edition", - "url": "/v1/smartphones/redmi-12c-standard-edition" + "slug": "y6-2018-lte-emea-atu-l11", + "name": "Y6 2018 LTE EMEA ATU-L11", + "url": "/v1/smartphones/y6-2018-lte-emea-atu-l11" }, { - "slug": "redmi-12c-top-edition", - "name": "Redmi 12C Top Edition", - "url": "/v1/smartphones/redmi-12c-top-edition" + "slug": "y6-2019", + "name": "Y6 2019", + "url": "/v1/smartphones/y6-2019" }, { - "slug": "redmi-13c", - "name": "Redmi 13C", - "url": "/v1/smartphones/redmi-13c" + "slug": "y6-2019-dual-sim-lte-latam-mrd-lx3-mrd-l23", + "name": "Y6 2019 Dual SIM LTE LATAM MRD-LX3 / MRD-L23", + "url": "/v1/smartphones/y6-2019-dual-sim-lte-latam-mrd-lx3-mrd-l23" }, { - "slug": "redmi-14c-5g", - "name": "Redmi 14C 5G", - "url": "/v1/smartphones/redmi-14c-5g" + "slug": "y6-2019-dual-sim-td-lte-emea-mrd-lx1-mrd-l21-mrd-l21a", + "name": "Y6 2019 Dual SIM TD-LTE EMEA MRD-LX1 / MRD-L21 / MRD-L21A", + "url": "/v1/smartphones/y6-2019-dual-sim-td-lte-emea-mrd-lx1-mrd-l21-mrd-l21a" }, { - "slug": "redmi-6", - "name": "Redmi 6", - "url": "/v1/smartphones/redmi-6" + "slug": "y6-2019-lte", + "name": "Y6 2019 LTE", + "url": "/v1/smartphones/y6-2019-lte" }, { - "slug": "redmi-6a", - "name": "Redmi 6A", - "url": "/v1/smartphones/redmi-6a" + "slug": "y6-2019-lte-latam-mrd-lx3", + "name": "Y6 2019 LTE LATAM MRD-LX3", + "url": "/v1/smartphones/y6-2019-lte-latam-mrd-lx3" }, { - "slug": "redmi-9", - "name": "Redmi 9", - "url": "/v1/smartphones/redmi-9" + "slug": "y6-prime-2018-dual-sim-lte-emea-atu-l31", + "name": "Y6 Prime 2018 Dual SIM LTE EMEA ATU-L31", + "url": "/v1/smartphones/y6-prime-2018-dual-sim-lte-emea-atu-l31" }, { - "slug": "redmi-9-activ-premium-edition", - "name": "Redmi 9 Activ Premium Edition", - "url": "/v1/smartphones/redmi-9-activ-premium-edition" + "slug": "y6-prime-2018-dual-sim-td-lte-apac-atu-l42", + "name": "Y6 Prime 2018 Dual SIM TD-LTE APAC ATU-L42", + "url": "/v1/smartphones/y6-prime-2018-dual-sim-td-lte-apac-atu-l42" }, { - "slug": "redmi-9-activ-standard-edition", - "name": "Redmi 9 Activ Standard Edition", - "url": "/v1/smartphones/redmi-9-activ-standard-edition" + "slug": "y6-prime-2019", + "name": "Y6 Prime 2019", + "url": "/v1/smartphones/y6-prime-2019" }, { - "slug": "redmi-9-premium-edition", - "name": "Redmi 9 Premium Edition", - "url": "/v1/smartphones/redmi-9-premium-edition" + "slug": "y6-prime-2019-dual-sim-td-lte-emea-64gb-mrd-lx1f", + "name": "Y6 Prime 2019 Dual SIM TD-LTE EMEA 64GB MRD-LX1F", + "url": "/v1/smartphones/y6-prime-2019-dual-sim-td-lte-emea-64gb-mrd-lx1f" }, { - "slug": "redmi-9-prime", - "name": "Redmi 9 Prime", - "url": "/v1/smartphones/redmi-9-prime" + "slug": "y6-pro-2019", + "name": "Y6 Pro 2019", + "url": "/v1/smartphones/y6-pro-2019" }, { - "slug": "redmi-9-standard-edition", - "name": "Redmi 9 Standard Edition", - "url": "/v1/smartphones/redmi-9-standard-edition" + "slug": "y6-pro-2019-dual-sim-td-lte-apac-mrd-lx2-mrd-l22", + "name": "Y6 Pro 2019 Dual SIM TD-LTE APAC MRD-LX2 / MRD-L22", + "url": "/v1/smartphones/y6-pro-2019-dual-sim-td-lte-apac-mrd-lx2-mrd-l22" }, { - "slug": "redmi-9a", - "name": "Redmi 9A", - "url": "/v1/smartphones/redmi-9a" + "slug": "y66", + "name": "Y66", + "url": "/v1/smartphones/y66" }, { - "slug": "redmi-9a-premium-edition", - "name": "Redmi 9A Premium Edition", - "url": "/v1/smartphones/redmi-9a-premium-edition" + "slug": "y6p-2020", + "name": "Y6p 2020", + "url": "/v1/smartphones/y6p-2020" }, { - "slug": "redmi-9a-sport-premium-edition", - "name": "Redmi 9A Sport Premium Edition", - "url": "/v1/smartphones/redmi-9a-sport-premium-edition" + "slug": "y6p-2020-global-dual-sim-td-lte-64gb-med-lx9-med-l29", + "name": "Y6p 2020 Global Dual SIM TD-LTE 64GB MED-LX9 / MED-L29", + "url": "/v1/smartphones/y6p-2020-global-dual-sim-td-lte-64gb-med-lx9-med-l29" }, { - "slug": "redmi-9a-sport-standard-edition", - "name": "Redmi 9A Sport Standard Edition", - "url": "/v1/smartphones/redmi-9a-sport-standard-edition" + "slug": "y6p-2020-global-dual-sim-td-lte-64gb-med-lx9n-med-l29n", + "name": "Y6p 2020 Global Dual SIM TD-LTE 64GB MED-LX9N / MED-L29N", + "url": "/v1/smartphones/y6p-2020-global-dual-sim-td-lte-64gb-med-lx9n-med-l29n" }, { - "slug": "redmi-9a-standard-edition", - "name": "Redmi 9A Standard Edition", - "url": "/v1/smartphones/redmi-9a-standard-edition" + "slug": "y6s-2019", + "name": "Y6s 2019", + "url": "/v1/smartphones/y6s-2019" }, { - "slug": "redmi-9at-standard-edition", - "name": "Redmi 9AT Standard Edition", - "url": "/v1/smartphones/redmi-9at-standard-edition" + "slug": "y6s-2019-dual-sim-lte-emea-32gb-jat-l41-honor-8a-pro", + "name": "Y6s 2019 Dual SIM LTE EMEA 32GB JAT-L41 / Honor 8A Pro", + "url": "/v1/smartphones/y6s-2019-dual-sim-lte-emea-32gb-jat-l41-honor-8a-pro" }, { - "slug": "redmi-9c", - "name": "Redmi 9C", - "url": "/v1/smartphones/redmi-9c" + "slug": "y6s-2019-dual-sim-lte-emea-64gb-jat-l21-honor-8a-prime-jat-lx1", + "name": "Y6s 2019 Dual SIM LTE EMEA 64GB JAT-L21 / Honor 8A Prime JAT-LX1", + "url": "/v1/smartphones/y6s-2019-dual-sim-lte-emea-64gb-jat-l21-honor-8a-prime-jat-lx1" }, { - "slug": "redmi-9c-nfc", - "name": "Redmi 9C NFC", - "url": "/v1/smartphones/redmi-9c-nfc" + "slug": "y6s-2019-dual-sim-td-lte-latam-64gb-jat-lx3-jat-l23", + "name": "Y6s 2019 Dual SIM TD-LTE LATAM 64GB JAT-LX3 / JAT-L23", + "url": "/v1/smartphones/y6s-2019-dual-sim-td-lte-latam-64gb-jat-lx3-jat-l23" }, { - "slug": "redmi-9i", - "name": "Redmi 9i", - "url": "/v1/smartphones/redmi-9i" + "slug": "y6s-2019-global-dual-sim-td-lte-64gb-jat-l29", + "name": "Y6s 2019 Global Dual SIM TD-LTE 64GB JAT-L29", + "url": "/v1/smartphones/y6s-2019-global-dual-sim-td-lte-64gb-jat-l29" }, { - "slug": "redmi-9i-sport", - "name": "Redmi 9i Sport", - "url": "/v1/smartphones/redmi-9i-sport" + "slug": "y7-2018-dual-sim-lte-latam-ldn-lx3-ldn-l23", + "name": "Y7 2018 Dual SIM LTE LATAM LDN-LX3 / LDN-L23", + "url": "/v1/smartphones/y7-2018-dual-sim-lte-latam-ldn-lx3-ldn-l23" }, { - "slug": "redmi-a1-premium-edition", - "name": "Redmi A1 Premium Edition", - "url": "/v1/smartphones/redmi-a1-premium-edition" + "slug": "y7-2018-lte-emea-ldn-l01", + "name": "Y7 2018 LTE EMEA LDN-L01", + "url": "/v1/smartphones/y7-2018-lte-emea-ldn-l01" }, { - "slug": "redmi-a1-standard-edition", - "name": "Redmi A1 Standard Edition", - "url": "/v1/smartphones/redmi-a1-standard-edition" + "slug": "y7-2019-dual-sim-lte-a-emea-dub-lx1-y7-prime-2019-dub-l21", + "name": "Y7 2019 Dual SIM LTE-A EMEA DUB-LX1 / Y7 Prime 2019 DUB-L21", + "url": "/v1/smartphones/y7-2019-dual-sim-lte-a-emea-dub-lx1-y7-prime-2019-dub-l21" }, { - "slug": "redmi-k20-pro-prime-premium-edition", - "name": "Redmi K20 Pro Prime Premium Edition", - "url": "/v1/smartphones/redmi-k20-pro-prime-premium-edition" + "slug": "y7-2019-dual-sim-lte-a-latam-dub-lx3-dub-l23", + "name": "Y7 2019 Dual SIM LTE-A LATAM DUB-LX3 / DUB-L23", + "url": "/v1/smartphones/y7-2019-dual-sim-lte-a-latam-dub-lx3-dub-l23" }, { - "slug": "redmi-k20-pro-prime-standard-edition", - "name": "Redmi K20 Pro Prime Standard Edition", - "url": "/v1/smartphones/redmi-k20-pro-prime-standard-edition" + "slug": "y7-prime-2018-dual-sim-lte-emea-ldn-lx1-ldn-l21", + "name": "Y7 Prime 2018 Dual SIM LTE EMEA LDN-LX1 / LDN-L21", + "url": "/v1/smartphones/y7-prime-2018-dual-sim-lte-emea-ldn-lx1-ldn-l21" }, { - "slug": "redmi-k30", - "name": "Redmi K30", - "url": "/v1/smartphones/redmi-k30" + "slug": "y7-pro-2019-dual-sim-td-lte-apac-dub-lx2-dub-l22", + "name": "Y7 Pro 2019 Dual SIM TD-LTE APAC DUB-LX2 / DUB-L22", + "url": "/v1/smartphones/y7-pro-2019-dual-sim-td-lte-apac-dub-lx2-dub-l22" }, { - "slug": "redmi-k30-premium-edition", - "name": "Redmi K30 Premium Edition", - "url": "/v1/smartphones/redmi-k30-premium-edition" + "slug": "y75-5g", + "name": "Y75 5G", + "url": "/v1/smartphones/y75-5g" }, { - "slug": "redmi-k30-pro", - "name": "Redmi K30 Pro", - "url": "/v1/smartphones/redmi-k30-pro" + "slug": "y7a-2021-dual-sim-lte-a-latam-64gb-ppa-lx3b-ppa-l23b", + "name": "Y7a 2021 Dual SIM LTE-A LATAM 64GB PPA-LX3B / PPA-L23B", + "url": "/v1/smartphones/y7a-2021-dual-sim-lte-a-latam-64gb-ppa-lx3b-ppa-l23b" }, { - "slug": "redmi-k30-pro-zoom", - "name": "Redmi K30 Pro Zoom", - "url": "/v1/smartphones/redmi-k30-pro-zoom" + "slug": "y7a-2021-dual-sim-td-lte-emea-128gb-ppa-lx2b-ppa-l22b", + "name": "Y7a 2021 Dual SIM TD-LTE EMEA 128GB PPA-LX2B / PPA-L22B", + "url": "/v1/smartphones/y7a-2021-dual-sim-td-lte-emea-128gb-ppa-lx2b-ppa-l22b" }, { - "slug": "redmi-k30-standard-edition", - "name": "Redmi K30 Standard Edition", - "url": "/v1/smartphones/redmi-k30-standard-edition" + "slug": "y7a-2021-lte-a-latam-64gb-ppa-l03b", + "name": "Y7a 2021 LTE-A LATAM 64GB PPA-L03B", + "url": "/v1/smartphones/y7a-2021-lte-a-latam-64gb-ppa-l03b" }, { - "slug": "redmi-k30-ultra", - "name": "Redmi K30 Ultra", - "url": "/v1/smartphones/redmi-k30-ultra" + "slug": "y7a-2021-td-lte-emea-128gb-ppa-l02b", + "name": "Y7a 2021 TD-LTE EMEA 128GB PPA-L02B", + "url": "/v1/smartphones/y7a-2021-td-lte-emea-128gb-ppa-l02b" }, { - "slug": "redmi-k30s", - "name": "Redmi K30S", - "url": "/v1/smartphones/redmi-k30s" + "slug": "y7p-2020-dual-sim-td-lte-apac-latam-64gb-art-l28", + "name": "Y7p 2020 Dual SIM TD-LTE APAC LATAM 64GB ART-L28", + "url": "/v1/smartphones/y7p-2020-dual-sim-td-lte-apac-latam-64gb-art-l28" }, { - "slug": "redmi-k40", - "name": "Redmi K40", - "url": "/v1/smartphones/redmi-k40" + "slug": "y81", + "name": "Y81", + "url": "/v1/smartphones/y81" }, { - "slug": "redmi-k40-game-enhanced-edition", - "name": "Redmi K40 Game Enhanced Edition", - "url": "/v1/smartphones/redmi-k40-game-enhanced-edition" + "slug": "y8p-2020-premium-edition-global-dual-sim-td-lte-128gb-aqm-l21a-p-smart-s-aqm-lx1", + "name": "Y8p 2020 Premium Edition Global Dual SIM TD-LTE 128GB AQM-L21A / P Smart S AQM-LX1", + "url": "/v1/smartphones/y8p-2020-premium-edition-global-dual-sim-td-lte-128gb-aqm-l21a-p-smart-s-aqm-lx1" }, { - "slug": "redmi-k40-game-premium-edition", - "name": "Redmi K40 Game Premium Edition", - "url": "/v1/smartphones/redmi-k40-game-premium-edition" + "slug": "y8p-2020-premium-edition-global-dual-sim-td-lte-128gb-aqm-lx1-aqm-l21", + "name": "Y8p 2020 Premium Edition Global Dual SIM TD-LTE 128GB AQM-LX1 / AQM-L21", + "url": "/v1/smartphones/y8p-2020-premium-edition-global-dual-sim-td-lte-128gb-aqm-lx1-aqm-l21" }, { - "slug": "redmi-k40-game-standard-edition", - "name": "Redmi K40 Game Standard Edition", - "url": "/v1/smartphones/redmi-k40-game-standard-edition" + "slug": "y8p-2020-standard-edition-global-dual-sim-td-lte-128gb-aqm-l21a-p-smart-s-aqm-lx1", + "name": "Y8p 2020 Standard Edition Global Dual SIM TD-LTE 128GB AQM-L21A / P Smart S AQM-LX1", + "url": "/v1/smartphones/y8p-2020-standard-edition-global-dual-sim-td-lte-128gb-aqm-l21a-p-smart-s-aqm-lx1" }, { - "slug": "redmi-k40-pro", - "name": "Redmi K40 Pro+", - "url": "/v1/smartphones/redmi-k40-pro" + "slug": "y8p-2020-standard-edition-global-dual-sim-td-lte-128gb-aqm-lx1-aqm-l21", + "name": "Y8p 2020 Standard Edition Global Dual SIM TD-LTE 128GB AQM-LX1 / AQM-L21", + "url": "/v1/smartphones/y8p-2020-standard-edition-global-dual-sim-td-lte-128gb-aqm-lx1-aqm-l21" }, { - "slug": "redmi-k50", - "name": "Redmi K50", - "url": "/v1/smartphones/redmi-k50" + "slug": "y8p-2020-standard-edition-global-td-lte-128gb-aqm-l01a", + "name": "Y8p 2020 Standard Edition Global TD-LTE 128GB AQM-L01A", + "url": "/v1/smartphones/y8p-2020-standard-edition-global-td-lte-128gb-aqm-l01a" }, { - "slug": "redmi-k50-extreme-edition-premium", - "name": "Redmi K50 Extreme Edition Premium", - "url": "/v1/smartphones/redmi-k50-extreme-edition-premium" + "slug": "y8s-2020-dual-sim-lte-a-apac-128gb-jkm-lx2", + "name": "Y8s 2020 Dual SIM LTE-A APAC 128GB JKM-LX2", + "url": "/v1/smartphones/y8s-2020-dual-sim-lte-a-apac-128gb-jkm-lx2" }, { - "slug": "redmi-k50-extreme-edition-standard", - "name": "Redmi K50 Extreme Edition Standard", - "url": "/v1/smartphones/redmi-k50-extreme-edition-standard" + "slug": "y8s-2020-dual-sim-lte-a-emea-jkm-lx1", + "name": "Y8s 2020 Dual SIM LTE-A EMEA JKM-LX1", + "url": "/v1/smartphones/y8s-2020-dual-sim-lte-a-emea-jkm-lx1" }, { - "slug": "redmi-k50-extreme-mercedes-amg-f1-team-edition", - "name": "Redmi K50 Extreme Mercedes-AMG F1 Team Edition", - "url": "/v1/smartphones/redmi-k50-extreme-mercedes-amg-f1-team-edition" + "slug": "y8s-2020-dual-sim-lte-a-latam-jkm-lx3", + "name": "Y8s 2020 Dual SIM LTE-A LATAM JKM-LX3", + "url": "/v1/smartphones/y8s-2020-dual-sim-lte-a-latam-jkm-lx3" }, { - "slug": "redmi-k50-gaming", - "name": "Redmi K50 Gaming", - "url": "/v1/smartphones/redmi-k50-gaming" + "slug": "y8s-2020-lte-a-emea-jkm-lx1", + "name": "Y8s 2020 LTE-A EMEA JKM-LX1", + "url": "/v1/smartphones/y8s-2020-lte-a-emea-jkm-lx1" }, { - "slug": "redmi-k50-pro", - "name": "Redmi K50 Pro", - "url": "/v1/smartphones/redmi-k50-pro" + "slug": "y9-2018-dual-sim-lte-a-emea-fla-lx1-fla-l21", + "name": "Y9 2018 Dual SIM LTE-A EMEA FLA-LX1 / FLA-L21", + "url": "/v1/smartphones/y9-2018-dual-sim-lte-a-emea-fla-lx1-fla-l21" }, { - "slug": "redmi-k50g", - "name": "Redmi K50G", - "url": "/v1/smartphones/redmi-k50g" + "slug": "y9-2018-dual-sim-lte-a-latam-fla-lx3-fla-l23", + "name": "Y9 2018 Dual SIM LTE-A LATAM FLA-LX3 / FLA-L23", + "url": "/v1/smartphones/y9-2018-dual-sim-lte-a-latam-fla-lx3-fla-l23" }, { - "slug": "redmi-k50i", - "name": "Redmi K50i", - "url": "/v1/smartphones/redmi-k50i" + "slug": "y9-2018-dual-sim-td-lte-apac-fla-lx2-fla-l22", + "name": "Y9 2018 Dual SIM TD-LTE APAC FLA-LX2 / FLA-L22", + "url": "/v1/smartphones/y9-2018-dual-sim-td-lte-apac-fla-lx2-fla-l22" }, { - "slug": "redmi-k60", - "name": "Redmi K60", - "url": "/v1/smartphones/redmi-k60" + "slug": "y9-2019-dual-sim-lte-a-emea-jkm-lx1-jkm-l21", + "name": "Y9 2019 Dual SIM LTE-A EMEA JKM-LX1 / JKM-L21", + "url": "/v1/smartphones/y9-2019-dual-sim-lte-a-emea-jkm-lx1-jkm-l21" }, { - "slug": "redmi-k60-pro", - "name": "Redmi K60 Pro", - "url": "/v1/smartphones/redmi-k60-pro" + "slug": "y9-2019-dual-sim-lte-a-latam-jkm-lx3-jkm-l23", + "name": "Y9 2019 Dual SIM LTE-A LATAM JKM-LX3 / JKM-L23", + "url": "/v1/smartphones/y9-2019-dual-sim-lte-a-latam-jkm-lx3-jkm-l23" }, { - "slug": "redmi-k60e", - "name": "Redmi K60E", - "url": "/v1/smartphones/redmi-k60e" + "slug": "y9-2019-dual-sim-td-lte-apac-jkm-lx2-jkm-l22", + "name": "Y9 2019 Dual SIM TD-LTE APAC JKM-LX2 / JKM-L22", + "url": "/v1/smartphones/y9-2019-dual-sim-td-lte-apac-jkm-lx2-jkm-l22" }, { - "slug": "redmi-note-10", - "name": "Redmi Note 10", - "url": "/v1/smartphones/redmi-note-10" + "slug": "y9-prime-2019-lte-a-latam-128gb-stk-lx3-stk-l03b", + "name": "Y9 Prime 2019 LTE-A LATAM 128GB STK-LX3 / STK-L03B", + "url": "/v1/smartphones/y9-prime-2019-lte-a-latam-128gb-stk-lx3-stk-l03b" }, { - "slug": "redmi-note-10-je-xig02", - "name": "Redmi Note 10 JE XIG02", - "url": "/v1/smartphones/redmi-note-10-je-xig02" + "slug": "y95", + "name": "Y95", + "url": "/v1/smartphones/y95" }, { - "slug": "redmi-note-10-lite-premium-edition", - "name": "Redmi Note 10 Lite Premium Edition", - "url": "/v1/smartphones/redmi-note-10-lite-premium-edition" + "slug": "y9a", + "name": "Y9a", + "url": "/v1/smartphones/y9a" }, { - "slug": "redmi-note-10-lite-standard-edition", - "name": "Redmi Note 10 Lite Standard Edition", - "url": "/v1/smartphones/redmi-note-10-lite-standard-edition" + "slug": "y9a-4g-premium-edition-dual-sim-td-lte-emea-frl-l22-frl-lx2", + "name": "Y9a 4G Premium Edition Dual SIM TD-LTE EMEA FRL-L22 / FRL-LX2", + "url": "/v1/smartphones/y9a-4g-premium-edition-dual-sim-td-lte-emea-frl-l22-frl-lx2" }, { - "slug": "redmi-note-10-pro", - "name": "Redmi Note 10 Pro", - "url": "/v1/smartphones/redmi-note-10-pro" + "slug": "y9a-4g-standard-edition-dual-sim-td-lte-latam-frl-l23-frl-lx3", + "name": "Y9a 4G Standard Edition Dual SIM TD-LTE LATAM FRL-L23 / FRL-LX3", + "url": "/v1/smartphones/y9a-4g-standard-edition-dual-sim-td-lte-latam-frl-l23-frl-lx3" }, { - "slug": "redmi-note-10-pro-max", - "name": "Redmi Note 10 Pro Max", - "url": "/v1/smartphones/redmi-note-10-pro-max" + "slug": "y9s-2019-dual-sim-lte-a-emea-stk-l21-p-smart-pro-2019", + "name": "Y9s 2019 Dual SIM LTE-A EMEA STK-L21 / P Smart Pro 2019", + "url": "/v1/smartphones/y9s-2019-dual-sim-lte-a-emea-stk-l21-p-smart-pro-2019" }, { - "slug": "redmi-note-10s-nfc-premium-edition", - "name": "Redmi Note 10S NFC Premium Edition", - "url": "/v1/smartphones/redmi-note-10s-nfc-premium-edition" + "slug": "z1-pro", + "name": "Z1 Pro", + "url": "/v1/smartphones/z1-pro" }, { - "slug": "redmi-note-10s-nfc-standard-edition", - "name": "Redmi Note 10S NFC Standard Edition", - "url": "/v1/smartphones/redmi-note-10s-nfc-standard-edition" + "slug": "z3", + "name": "Z3", + "url": "/v1/smartphones/z3" }, { - "slug": "redmi-note-10s-premium-edition", - "name": "Redmi Note 10S Premium Edition", - "url": "/v1/smartphones/redmi-note-10s-premium-edition" + "slug": "z3153vpp-blade-vantage-2-lte-us-z3153v", + "name": "Z3153VPP Blade Vantage 2 LTE US Z3153V", + "url": "/v1/smartphones/z3153vpp-blade-vantage-2-lte-us-z3153v" }, { - "slug": "redmi-note-10s-standard-edition", - "name": "Redmi Note 10S Standard Edition", - "url": "/v1/smartphones/redmi-note-10s-standard-edition" + "slug": "z5-pro", + "name": "Z5 Pro", + "url": "/v1/smartphones/z5-pro" }, { - "slug": "redmi-note-10t", - "name": "Redmi Note 10T", - "url": "/v1/smartphones/redmi-note-10t" + "slug": "z5-pro-gt-premium-edition-dual-sim-td-lte-cn-128gb-l78032", + "name": "Z5 Pro GT Premium Edition Dual SIM TD-LTE CN 128GB L78032", + "url": "/v1/smartphones/z5-pro-gt-premium-edition-dual-sim-td-lte-cn-128gb-l78032" }, { - "slug": "redmi-note-11", - "name": "Redmi Note 11", - "url": "/v1/smartphones/redmi-note-11" + "slug": "z5-pro-gt-premium-edition-dual-sim-td-lte-cn-256gb-l78032", + "name": "Z5 Pro GT Premium Edition Dual SIM TD-LTE CN 256GB L78032", + "url": "/v1/smartphones/z5-pro-gt-premium-edition-dual-sim-td-lte-cn-256gb-l78032" }, { - "slug": "redmi-note-11-pro", - "name": "Redmi Note 11 Pro", - "url": "/v1/smartphones/redmi-note-11-pro" + "slug": "z5-pro-gt-standard-edition-dual-sim-td-lte-cn-128gb-l78032", + "name": "Z5 Pro GT Standard Edition Dual SIM TD-LTE CN 128GB L78032", + "url": "/v1/smartphones/z5-pro-gt-standard-edition-dual-sim-td-lte-cn-128gb-l78032" }, { - "slug": "redmi-note-11-se", - "name": "Redmi Note 11 SE", - "url": "/v1/smartphones/redmi-note-11-se" + "slug": "z5-pro-premium-edition-dual-sim-td-lte-cn-128gb-l78031", + "name": "Z5 Pro Premium Edition Dual SIM TD-LTE CN 128GB L78031", + "url": "/v1/smartphones/z5-pro-premium-edition-dual-sim-td-lte-cn-128gb-l78031" }, { - "slug": "redmi-note-11e", - "name": "Redmi Note 11E", - "url": "/v1/smartphones/redmi-note-11e" + "slug": "z5-pro-premium-edition-dual-sim-td-lte-cn-64gb-l78031", + "name": "Z5 Pro Premium Edition Dual SIM TD-LTE CN 64GB L78031", + "url": "/v1/smartphones/z5-pro-premium-edition-dual-sim-td-lte-cn-64gb-l78031" }, { - "slug": "redmi-note-11r", - "name": "Redmi Note 11R", - "url": "/v1/smartphones/redmi-note-11r" + "slug": "z5-td-lte-dual-sim-128gb", + "name": "Z5 TD-LTE Dual SIM 128GB", + "url": "/v1/smartphones/z5-td-lte-dual-sim-128gb" }, { - "slug": "redmi-note-11s", - "name": "Redmi Note 11S", - "url": "/v1/smartphones/redmi-note-11s" + "slug": "z5-td-lte-dual-sim-64gb", + "name": "Z5 TD-LTE Dual SIM 64GB", + "url": "/v1/smartphones/z5-td-lte-dual-sim-64gb" }, { - "slug": "redmi-note-11se", - "name": "Redmi Note 11SE", - "url": "/v1/smartphones/redmi-note-11se" + "slug": "z5031o-optus-x-spirit-2-lte-au", + "name": "Z5031O Optus X Spirit 2 LTE AU", + "url": "/v1/smartphones/z5031o-optus-x-spirit-2-lte-au" }, { - "slug": "redmi-note-11t", - "name": "Redmi Note 11T", - "url": "/v1/smartphones/redmi-note-11t" + "slug": "z5151vs-blade-visible-r2-lte-us", + "name": "Z5151VS Blade Visible R2 LTE US", + "url": "/v1/smartphones/z5151vs-blade-visible-r2-lte-us" }, { - "slug": "redmi-note-11t-pro", - "name": "Redmi Note 11T Pro", - "url": "/v1/smartphones/redmi-note-11t-pro" + "slug": "z557bl-zfive-g-lte-us", + "name": "Z557BL ZFive G LTE US", + "url": "/v1/smartphones/z557bl-zfive-g-lte-us" }, { - "slug": "redmi-note-11i", - "name": "Redmi Note 11i", - "url": "/v1/smartphones/redmi-note-11i" + "slug": "z558vl-zfive-c-lte-us", + "name": "Z558VL ZFive C LTE US", + "url": "/v1/smartphones/z558vl-zfive-c-lte-us" }, { - "slug": "redmi-note-11i-hypercharge", - "name": "Redmi Note 11i Hypercharge", - "url": "/v1/smartphones/redmi-note-11i-hypercharge" + "slug": "z559dl-blade-t2-lite-4g-lte-us", + "name": "Z559DL Blade T2 Lite 4G LTE US", + "url": "/v1/smartphones/z559dl-blade-t2-lite-4g-lte-us" }, { - "slug": "redmi-note-12", - "name": "Redmi Note 12", - "url": "/v1/smartphones/redmi-note-12" + "slug": "z5g31-gabb-z1-lte-us", + "name": "Z5G31 Gabb Z1 LTE US", + "url": "/v1/smartphones/z5g31-gabb-z1-lte-us" }, { - "slug": "redmi-note-12-pro", - "name": "Redmi Note 12 Pro", - "url": "/v1/smartphones/redmi-note-12-pro" + "slug": "z5s-premium-edition-dual-sim-td-lte-cn-128gb-l78071", + "name": "Z5s Premium Edition Dual SIM TD-LTE CN 128GB L78071", + "url": "/v1/smartphones/z5s-premium-edition-dual-sim-td-lte-cn-128gb-l78071" }, { - "slug": "redmi-note-12-pro-speed", - "name": "Redmi Note 12 Pro Speed", - "url": "/v1/smartphones/redmi-note-12-pro-speed" + "slug": "z5s-premium-edition-dual-sim-td-lte-cn-64gb-l78071", + "name": "Z5s Premium Edition Dual SIM TD-LTE CN 64GB L78071", + "url": "/v1/smartphones/z5s-premium-edition-dual-sim-td-lte-cn-64gb-l78071" }, { - "slug": "redmi-note-12-pro-plus", - "name": "Redmi Note 12 Pro+", - "url": "/v1/smartphones/redmi-note-12-pro-plus" + "slug": "z5s-standard-edition-dual-sim-td-lte-cn-64gb-l78071", + "name": "Z5s Standard Edition Dual SIM TD-LTE CN 64GB L78071", + "url": "/v1/smartphones/z5s-standard-edition-dual-sim-td-lte-cn-64gb-l78071" }, { - "slug": "redmi-note-12-turbo", - "name": "Redmi Note 12 Turbo", - "url": "/v1/smartphones/redmi-note-12-turbo" + "slug": "z6-premium-edition-dual-sim-td-lte-cn-128gb-l78121", + "name": "Z6 Premium Edition Dual SIM TD-LTE CN 128GB L78121", + "url": "/v1/smartphones/z6-premium-edition-dual-sim-td-lte-cn-128gb-l78121" }, { - "slug": "redmi-note-12r", - "name": "Redmi Note 12R", - "url": "/v1/smartphones/redmi-note-12r" + "slug": "z6-pro", + "name": "Z6 Pro", + "url": "/v1/smartphones/z6-pro" }, { - "slug": "redmi-note-12r-pro", - "name": "Redmi Note 12R Pro", - "url": "/v1/smartphones/redmi-note-12r-pro" + "slug": "z6-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l79041", + "name": "Z6 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB L79041", + "url": "/v1/smartphones/z6-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l79041" }, { - "slug": "redmi-note-12t-pro", - "name": "Redmi Note 12T Pro", - "url": "/v1/smartphones/redmi-note-12t-pro" + "slug": "z6-pro-premium-edition-dual-sim-td-lte-cn-128gb-l78051", + "name": "Z6 Pro Premium Edition Dual SIM TD-LTE CN 128GB L78051", + "url": "/v1/smartphones/z6-pro-premium-edition-dual-sim-td-lte-cn-128gb-l78051" }, { - "slug": "redmi-note-13-pro", - "name": "Redmi Note 13 Pro", - "url": "/v1/smartphones/redmi-note-13-pro" + "slug": "z6-pro-premium-edition-dual-sim-td-lte-cn-256gb-l78051", + "name": "Z6 Pro Premium Edition Dual SIM TD-LTE CN 256GB L78051", + "url": "/v1/smartphones/z6-pro-premium-edition-dual-sim-td-lte-cn-256gb-l78051" }, { - "slug": "redmi-note-13-pro-plus", - "name": "Redmi Note 13 Pro+", - "url": "/v1/smartphones/redmi-note-13-pro-plus" + "slug": "z6-pro-standard-edition-dual-sim-td-lte-cn-128gb-l78051", + "name": "Z6 Pro Standard Edition Dual SIM TD-LTE CN 128GB L78051", + "url": "/v1/smartphones/z6-pro-standard-edition-dual-sim-td-lte-cn-128gb-l78051" }, { - "slug": "redmi-note-14-4g", - "name": "Redmi Note 14 4G", - "url": "/v1/smartphones/redmi-note-14-4g" + "slug": "z6-pro-top-edition-dual-sim-td-lte-cn-512gb-l78051", + "name": "Z6 Pro Top Edition Dual SIM TD-LTE CN 512GB L78051", + "url": "/v1/smartphones/z6-pro-top-edition-dual-sim-td-lte-cn-512gb-l78051" }, { - "slug": "redmi-note-14-pro-4g", - "name": "Redmi Note 14 Pro 4G", - "url": "/v1/smartphones/redmi-note-14-pro-4g" + "slug": "z6-standard-edition-dual-sim-td-lte-cn-128gb-l78121", + "name": "Z6 Standard Edition Dual SIM TD-LTE CN 128GB L78121", + "url": "/v1/smartphones/z6-standard-edition-dual-sim-td-lte-cn-128gb-l78121" }, { - "slug": "redmi-note-14-pro-5g", - "name": "Redmi Note 14 Pro+ 5G", - "url": "/v1/smartphones/redmi-note-14-pro-5g" + "slug": "z6-standard-edition-dual-sim-td-lte-cn-64gb-l78121", + "name": "Z6 Standard Edition Dual SIM TD-LTE CN 64GB L78121", + "url": "/v1/smartphones/z6-standard-edition-dual-sim-td-lte-cn-64gb-l78121" }, { - "slug": "redmi-note-8-2021", - "name": "Redmi Note 8 2021", - "url": "/v1/smartphones/redmi-note-8-2021" + "slug": "z6050-blade-a6-max-lte-au-optus-x-power", + "name": "Z6050 Blade A6 Max LTE AU / Optus X Power", + "url": "/v1/smartphones/z6050-blade-a6-max-lte-au-optus-x-power" }, { - "slug": "redmi-note-8-pro", - "name": "Redmi Note 8 Pro", - "url": "/v1/smartphones/redmi-note-8-pro" + "slug": "z62-dual-sim-td-lte-in", + "name": "Z62 Dual SIM TD-LTE IN", + "url": "/v1/smartphones/z62-dual-sim-td-lte-in" }, { - "slug": "redmi-note-8-pro-premium-edition", - "name": "Redmi Note 8 Pro Premium Edition", - "url": "/v1/smartphones/redmi-note-8-pro-premium-edition" + "slug": "z620-blade-a7-prime-dual-sim-lte-z6201vs", + "name": "Z620 Blade A7 Prime Dual SIM LTE Z6201VS", + "url": "/v1/smartphones/z620-blade-a7-prime-dual-sim-lte-z6201vs" }, { - "slug": "redmi-note-8-pro-standard-edition", - "name": "Redmi Note 8 Pro Standard Edition", - "url": "/v1/smartphones/redmi-note-8-pro-standard-edition" + "slug": "z6530v-blade-10-prime-lte-a-us-z6530vs", + "name": "Z6530V Blade 10 Prime LTE-A US Z6530VS", + "url": "/v1/smartphones/z6530v-blade-10-prime-lte-a-us-z6530vs" }, { - "slug": "redmi-note-9", - "name": "Redmi Note 9", - "url": "/v1/smartphones/redmi-note-9" + "slug": "z71-dual-sim-td-lte-32gb", + "name": "Z71 Dual SIM TD-LTE 32GB", + "url": "/v1/smartphones/z71-dual-sim-td-lte-32gb" }, { - "slug": "redmi-note-9-pro", - "name": "Redmi Note 9 Pro", - "url": "/v1/smartphones/redmi-note-9-pro" + "slug": "z81-dual-sim-td-lte-16gb", + "name": "Z81 Dual SIM TD-LTE 16GB", + "url": "/v1/smartphones/z81-dual-sim-td-lte-16gb" }, { - "slug": "redmi-note-9-pro-max-premium-edition", - "name": "Redmi Note 9 Pro Max Premium Edition", - "url": "/v1/smartphones/redmi-note-9-pro-max-premium-edition" + "slug": "z81-dual-sim-td-lte-32gb", + "name": "Z81 Dual SIM TD-LTE 32GB", + "url": "/v1/smartphones/z81-dual-sim-td-lte-32gb" }, { - "slug": "redmi-note-9-pro-max-standard-edition", - "name": "Redmi Note 9 Pro Max Standard Edition", - "url": "/v1/smartphones/redmi-note-9-pro-max-standard-edition" + "slug": "z815-fanfare-2-lte-us", + "name": "Z815 Fanfare 2 LTE US", + "url": "/v1/smartphones/z815-fanfare-2-lte-us" }, { - "slug": "redmi-note-9-pro-premium-edition", - "name": "Redmi Note 9 Pro Premium Edition", - "url": "/v1/smartphones/redmi-note-9-pro-premium-edition" + "slug": "z836bl-zfive-2-lte-us", + "name": "Z836BL ZFive 2 LTE US", + "url": "/v1/smartphones/z836bl-zfive-2-lte-us" }, { - "slug": "redmi-note-9-pro-standard-edition", - "name": "Redmi Note 9 Pro Standard Edition", - "url": "/v1/smartphones/redmi-note-9-pro-standard-edition" + "slug": "z837vl-zfive-2-lte-us", + "name": "Z837VL ZFive 2 LTE US", + "url": "/v1/smartphones/z837vl-zfive-2-lte-us" }, { - "slug": "redmi-note-9s", - "name": "Redmi Note 9S", - "url": "/v1/smartphones/redmi-note-9s" + "slug": "z851m-overture-3-lte-us", + "name": "Z851M Overture 3 LTE US", + "url": "/v1/smartphones/z851m-overture-3-lte-us" }, { - "slug": "redmi-note-9t", - "name": "Redmi Note 9T", - "url": "/v1/smartphones/redmi-note-9t" + "slug": "z852-fanfare-3-lte-us", + "name": "Z852 Fanfare 3 LTE US", + "url": "/v1/smartphones/z852-fanfare-3-lte-us" }, { - "slug": "reno-5f-2021", - "name": "Reno 5F 2021", - "url": "/v1/smartphones/reno-5f-2021" + "slug": "z855-avid-4-lte-us", + "name": "Z855 Avid 4 LTE US", + "url": "/v1/smartphones/z855-avid-4-lte-us" }, { - "slug": "reno-5z", - "name": "Reno 5Z", - "url": "/v1/smartphones/reno-5z" + "slug": "z92-premium-edition-dual-sim-td-lte-in", + "name": "Z92 Premium Edition Dual SIM TD-LTE IN", + "url": "/v1/smartphones/z92-premium-edition-dual-sim-td-lte-in" }, { - "slug": "reno-6", - "name": "Reno 6", - "url": "/v1/smartphones/reno-6" + "slug": "z92-standard-edition-dual-sim-td-lte-in", + "name": "Z92 Standard Edition Dual SIM TD-LTE IN", + "url": "/v1/smartphones/z92-standard-edition-dual-sim-td-lte-in" }, { - "slug": "reno-6-pro", - "name": "Reno 6 Pro", - "url": "/v1/smartphones/reno-6-pro" + "slug": "zero-6-dual-sim-td-lte-64gb-x620b", + "name": "ZERO 6 Dual SIM TD-LTE 64GB X620B", + "url": "/v1/smartphones/zero-6-dual-sim-td-lte-64gb-x620b" }, { - "slug": "reno-6z", - "name": "Reno 6Z", - "url": "/v1/smartphones/reno-6z" + "slug": "zero-6-pro-dual-sim-td-lte-128gb-x620", + "name": "ZERO 6 Pro Dual SIM TD-LTE 128GB X620", + "url": "/v1/smartphones/zero-6-pro-dual-sim-td-lte-128gb-x620" }, { - "slug": "reno-7", - "name": "Reno 7", - "url": "/v1/smartphones/reno-7" + "slug": "zenfone-5-2018-dual-sim-td-lte-br-us-tw-ph-au-version-b-ze620kl", + "name": "ZenFone 5 2018 Dual SIM TD-LTE BR US TW PH AU Version B ZE620KL", + "url": "/v1/smartphones/zenfone-5-2018-dual-sim-td-lte-br-us-tw-ph-au-version-b-ze620kl" }, { - "slug": "reno-7-a", - "name": "Reno 7 A", - "url": "/v1/smartphones/reno-7-a" + "slug": "zenfone-5-2018-dual-sim-td-lte-br-version-b-ze620kl-128gb", + "name": "ZenFone 5 2018 Dual SIM TD-LTE BR Version B ZE620KL 128GB", + "url": "/v1/smartphones/zenfone-5-2018-dual-sim-td-lte-br-version-b-ze620kl-128gb" }, { - "slug": "reno-7-pro", - "name": "Reno 7 Pro", - "url": "/v1/smartphones/reno-7-pro" + "slug": "zenfone-5-2018-dual-sim-td-lte-jp-version-b-ze620kl", + "name": "ZenFone 5 2018 Dual SIM TD-LTE JP Version B ZE620KL", + "url": "/v1/smartphones/zenfone-5-2018-dual-sim-td-lte-jp-version-b-ze620kl" }, { - "slug": "reno-7-se", - "name": "Reno 7 SE", - "url": "/v1/smartphones/reno-7-se" + "slug": "zenfone-5-2018-global-dual-sim-td-lte-version-a-ze620kl", + "name": "ZenFone 5 2018 Global Dual SIM TD-LTE Version A ZE620KL", + "url": "/v1/smartphones/zenfone-5-2018-global-dual-sim-td-lte-version-a-ze620kl" }, { - "slug": "reno-7-z", - "name": "Reno 7 Z", - "url": "/v1/smartphones/reno-7-z" + "slug": "zenfone-5-2018-global-dual-sim-td-lte-version-c-ze620kl", + "name": "ZenFone 5 2018 Global Dual SIM TD-LTE Version C ZE620KL", + "url": "/v1/smartphones/zenfone-5-2018-global-dual-sim-td-lte-version-c-ze620kl" }, { - "slug": "reno-8-lite", - "name": "Reno 8 Lite", - "url": "/v1/smartphones/reno-8-lite" + "slug": "zenfone-5-lite-2018-dual-sim-td-lte-version-e-32gb-zc600kl", + "name": "ZenFone 5 Lite 2018 Dual SIM TD-LTE Version E 32GB ZC600KL", + "url": "/v1/smartphones/zenfone-5-lite-2018-dual-sim-td-lte-version-e-32gb-zc600kl" }, { - "slug": "reno-8-pro", - "name": "Reno 8 Pro", - "url": "/v1/smartphones/reno-8-pro" + "slug": "zenfone-5-lite-2018-global-dual-sim-td-lte-version-b-64gb-zc600kl", + "name": "ZenFone 5 Lite 2018 Global Dual SIM TD-LTE Version B 64GB ZC600KL", + "url": "/v1/smartphones/zenfone-5-lite-2018-global-dual-sim-td-lte-version-b-64gb-zc600kl" }, { - "slug": "reno-ace-premium-edition", - "name": "Reno Ace Premium Edition", - "url": "/v1/smartphones/reno-ace-premium-edition" + "slug": "zenfone-5-selfie-2018-dual-sim-lte-am-version-c-64gb-zc600kl", + "name": "ZenFone 5 Selfie 2018 Dual SIM LTE AM Version C 64GB ZC600KL", + "url": "/v1/smartphones/zenfone-5-selfie-2018-dual-sim-lte-am-version-c-64gb-zc600kl" }, { - "slug": "reno-ace-standard-edition", - "name": "Reno Ace Standard Edition", - "url": "/v1/smartphones/reno-ace-standard-edition" + "slug": "zenfone-5-selfie-pro-2018-dual-sim-lte-a-am-version-c-128gb-zc600kl", + "name": "ZenFone 5 Selfie Pro 2018 Dual SIM LTE-A AM Version C 128GB ZC600KL", + "url": "/v1/smartphones/zenfone-5-selfie-pro-2018-dual-sim-lte-a-am-version-c-128gb-zc600kl" }, { - "slug": "reno-z", - "name": "Reno Z", - "url": "/v1/smartphones/reno-z" + "slug": "zenfone-5q-2018-dual-sim-lte-am-version-c-32gb-zc600kl", + "name": "ZenFone 5Q 2018 Dual SIM LTE AM Version C 32GB ZC600KL", + "url": "/v1/smartphones/zenfone-5q-2018-dual-sim-lte-am-version-c-32gb-zc600kl" }, { - "slug": "reno10-pro-5g", - "name": "Reno10 Pro 5G", - "url": "/v1/smartphones/reno10-pro-5g" + "slug": "zenfone-5q-dual-sim-td-lte-apac-version-d-64gb-zc600kl-zenfone-5-lite", + "name": "ZenFone 5Q Dual SIM TD-LTE APAC Version D 64GB ZC600KL / ZenFone 5 Lite", + "url": "/v1/smartphones/zenfone-5q-dual-sim-td-lte-apac-version-d-64gb-zc600kl-zenfone-5-lite" }, { - "slug": "reno11-pro", - "name": "Reno11 Pro", - "url": "/v1/smartphones/reno11-pro" + "slug": "zenfone-5q-dual-sim-td-lte-tw-jp-version-a-64gb-zc600kl-zenfone-5-lite", + "name": "ZenFone 5Q Dual SIM TD-LTE TW JP Version A 64GB ZC600KL / ZenFone 5 Lite", + "url": "/v1/smartphones/zenfone-5q-dual-sim-td-lte-tw-jp-version-a-64gb-zc600kl-zenfone-5-lite" }, { - "slug": "reno12-pro", - "name": "Reno12 Pro", - "url": "/v1/smartphones/reno12-pro" + "slug": "zenfone-5z-2018-dual-sim-td-lte-cn-version-c-zs620kl-64gb", + "name": "ZenFone 5Z 2018 Dual SIM TD-LTE CN Version C ZS620KL 64GB", + "url": "/v1/smartphones/zenfone-5z-2018-dual-sim-td-lte-cn-version-c-zs620kl-64gb" + }, + { + "slug": "zenfone-5z-2018-dual-sim-td-lte-in-zs621kl-256gb", + "name": "ZenFone 5Z 2018 Dual SIM TD-LTE IN ZS621KL 256GB", + "url": "/v1/smartphones/zenfone-5z-2018-dual-sim-td-lte-in-zs621kl-256gb" }, { - "slug": "reno13", - "name": "Reno13", - "url": "/v1/smartphones/reno13" + "slug": "zenfone-5z-2018-dual-sim-td-lte-in-zs621kl-64gb", + "name": "ZenFone 5Z 2018 Dual SIM TD-LTE IN ZS621KL 64GB", + "url": "/v1/smartphones/zenfone-5z-2018-dual-sim-td-lte-in-zs621kl-64gb" }, { - "slug": "reno13-pro", - "name": "Reno13 Pro", - "url": "/v1/smartphones/reno13-pro" + "slug": "zenfone-5z-2018-dual-sim-td-lte-version-b-zs620kl-64gb", + "name": "ZenFone 5Z 2018 Dual SIM TD-LTE Version B ZS620KL 64GB", + "url": "/v1/smartphones/zenfone-5z-2018-dual-sim-td-lte-version-b-zs620kl-64gb" }, { - "slug": "reno2", - "name": "Reno2", - "url": "/v1/smartphones/reno2" + "slug": "zenfone-5z-2018-global-dual-sim-td-lte-version-a-zs620kl-256gb", + "name": "ZenFone 5Z 2018 Global Dual SIM TD-LTE Version A ZS620KL 256GB", + "url": "/v1/smartphones/zenfone-5z-2018-global-dual-sim-td-lte-version-a-zs620kl-256gb" }, { - "slug": "reno2-f", - "name": "Reno2 F", - "url": "/v1/smartphones/reno2-f" + "slug": "zenfone-5z-2018-global-dual-sim-td-lte-version-a-zs620kl-64gb", + "name": "ZenFone 5Z 2018 Global Dual SIM TD-LTE Version A ZS620KL 64GB", + "url": "/v1/smartphones/zenfone-5z-2018-global-dual-sim-td-lte-version-a-zs620kl-64gb" }, { - "slug": "reno2-z", - "name": "Reno2 Z", - "url": "/v1/smartphones/reno2-z" + "slug": "zenfone-6-2019-dual-sim-td-lte-am-version-c-zs630kl-256gb", + "name": "ZenFone 6 2019 Dual SIM TD-LTE AM Version C ZS630KL 256GB", + "url": "/v1/smartphones/zenfone-6-2019-dual-sim-td-lte-am-version-c-zs630kl-256gb" }, { - "slug": "reno3", - "name": "Reno3", - "url": "/v1/smartphones/reno3" + "slug": "zenfone-6-2019-dual-sim-td-lte-am-version-c-zs630kl-64gb", + "name": "ZenFone 6 2019 Dual SIM TD-LTE AM Version C ZS630KL 64GB", + "url": "/v1/smartphones/zenfone-6-2019-dual-sim-td-lte-am-version-c-zs630kl-64gb" }, { - "slug": "reno3-5g", - "name": "Reno3 5G", - "url": "/v1/smartphones/reno3-5g" + "slug": "zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-128gb", + "name": "ZenFone 6 2019 Dual SIM TD-LTE APAC Version B ZS630KL 128GB", + "url": "/v1/smartphones/zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-128gb" }, { - "slug": "reno3-pro", - "name": "Reno3 Pro", - "url": "/v1/smartphones/reno3-pro" + "slug": "zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-256gb", + "name": "ZenFone 6 2019 Dual SIM TD-LTE APAC Version B ZS630KL 256GB", + "url": "/v1/smartphones/zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-256gb" }, { - "slug": "reno3-pro-5g", - "name": "Reno3 Pro 5G", - "url": "/v1/smartphones/reno3-pro-5g" + "slug": "zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-64gb", + "name": "ZenFone 6 2019 Dual SIM TD-LTE APAC Version B ZS630KL 64GB", + "url": "/v1/smartphones/zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-64gb" }, { - "slug": "reno4", - "name": "Reno4", - "url": "/v1/smartphones/reno4" + "slug": "zenfone-6-2019-edition-30-dual-sim-td-lte-am-version-c-zs630kl-512gb", + "name": "ZenFone 6 2019 Edition 30 Dual SIM TD-LTE AM Version C ZS630KL 512GB", + "url": "/v1/smartphones/zenfone-6-2019-edition-30-dual-sim-td-lte-am-version-c-zs630kl-512gb" }, { - "slug": "reno4-5g", - "name": "Reno4 5G", - "url": "/v1/smartphones/reno4-5g" + "slug": "zenfone-6-2019-edition-30-dual-sim-td-lte-apac-version-b-zs630kl-512gb", + "name": "ZenFone 6 2019 Edition 30 Dual SIM TD-LTE APAC Version B ZS630KL 512GB", + "url": "/v1/smartphones/zenfone-6-2019-edition-30-dual-sim-td-lte-apac-version-b-zs630kl-512gb" }, { - "slug": "reno4-lite", - "name": "Reno4 Lite", - "url": "/v1/smartphones/reno4-lite" + "slug": "zenfone-6-2019-edition-30-global-dual-sim-td-lte-version-a-zs630kl-512gb", + "name": "ZenFone 6 2019 Edition 30 Global Dual SIM TD-LTE Version A ZS630KL 512GB", + "url": "/v1/smartphones/zenfone-6-2019-edition-30-global-dual-sim-td-lte-version-a-zs630kl-512gb" }, { - "slug": "reno4-pro", - "name": "Reno4 Pro", - "url": "/v1/smartphones/reno4-pro" + "slug": "zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-128gb-6z", + "name": "ZenFone 6 2019 Global Dual SIM TD-LTE Version A ZS630KL 128GB / 6z", + "url": "/v1/smartphones/zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-128gb-6z" }, { - "slug": "reno4-pro-5g", - "name": "Reno4 Pro 5G", - "url": "/v1/smartphones/reno4-pro-5g" + "slug": "zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-256gb-6z", + "name": "ZenFone 6 2019 Global Dual SIM TD-LTE Version A ZS630KL 256GB / 6z", + "url": "/v1/smartphones/zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-256gb-6z" }, { - "slug": "reno4-se", - "name": "Reno4 SE", - "url": "/v1/smartphones/reno4-se" + "slug": "zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-64gb-6z", + "name": "ZenFone 6 2019 Global Dual SIM TD-LTE Version A ZS630KL 64GB / 6z", + "url": "/v1/smartphones/zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-64gb-6z" }, { - "slug": "reno5", - "name": "Reno5", - "url": "/v1/smartphones/reno5" + "slug": "zenfone-7-2020-premium-edition", + "name": "ZenFone 7 2020 Premium Edition", + "url": "/v1/smartphones/zenfone-7-2020-premium-edition" }, { - "slug": "reno5-5g", - "name": "Reno5 5G", - "url": "/v1/smartphones/reno5-5g" + "slug": "zenfone-7-2020-premium-edition-global-dual-sim-td-lte-zs670ks-128gb", + "name": "ZenFone 7 2020 Premium Edition Global Dual SIM TD-LTE ZS670KS 128GB", + "url": "/v1/smartphones/zenfone-7-2020-premium-edition-global-dual-sim-td-lte-zs670ks-128gb" }, { - "slug": "reno5-a", - "name": "Reno5 A", - "url": "/v1/smartphones/reno5-a" + "slug": "zenfone-7-2020-standard-edition", + "name": "ZenFone 7 2020 Standard Edition", + "url": "/v1/smartphones/zenfone-7-2020-standard-edition" }, { - "slug": "reno5-k", - "name": "Reno5 K", - "url": "/v1/smartphones/reno5-k" + "slug": "zenfone-7-2020-standard-edition-global-dual-sim-td-lte-zs670ks-128gb", + "name": "ZenFone 7 2020 Standard Edition Global Dual SIM TD-LTE ZS670KS 128GB", + "url": "/v1/smartphones/zenfone-7-2020-standard-edition-global-dual-sim-td-lte-zs670ks-128gb" }, { - "slug": "reno5-pro", - "name": "Reno5 Pro", - "url": "/v1/smartphones/reno5-pro" + "slug": "zenfone-7-pro-2020", + "name": "ZenFone 7 Pro 2020", + "url": "/v1/smartphones/zenfone-7-pro-2020" }, { - "slug": "reno5-pro-5g", - "name": "Reno5 Pro 5G", - "url": "/v1/smartphones/reno5-pro-5g" + "slug": "zenfone-7-pro-2020-global-dual-sim-td-lte-zs671ks-256gb", + "name": "ZenFone 7 Pro 2020 Global Dual SIM TD-LTE ZS671KS 256GB", + "url": "/v1/smartphones/zenfone-7-pro-2020-global-dual-sim-td-lte-zs671ks-256gb" }, { - "slug": "reno6", - "name": "Reno6", - "url": "/v1/smartphones/reno6" + "slug": "zenfone-8-2021-premium-edition", + "name": "ZenFone 8 2021 Premium Edition", + "url": "/v1/smartphones/zenfone-8-2021-premium-edition" }, { - "slug": "reno6-5g", - "name": "Reno6 5G", - "url": "/v1/smartphones/reno6-5g" + "slug": "zenfone-8-2021-premium-edition-global-dual-sim-td-lte-zs590ks-256gb", + "name": "ZenFone 8 2021 Premium Edition Global Dual SIM TD-LTE ZS590KS 256GB", + "url": "/v1/smartphones/zenfone-8-2021-premium-edition-global-dual-sim-td-lte-zs590ks-256gb" }, { - "slug": "reno6-pro-5g", - "name": "Reno6 Pro 5G", - "url": "/v1/smartphones/reno6-pro-5g" + "slug": "zenfone-8-2021-standard-edition", + "name": "ZenFone 8 2021 Standard Edition", + "url": "/v1/smartphones/zenfone-8-2021-standard-edition" }, { - "slug": "reno7-5g", - "name": "Reno7 5G", - "url": "/v1/smartphones/reno7-5g" + "slug": "zenfone-8-2021-standard-edition-dual-sim-td-lte-am-zs590ks-128gb", + "name": "ZenFone 8 2021 Standard Edition Dual SIM TD-LTE AM ZS590KS 128GB", + "url": "/v1/smartphones/zenfone-8-2021-standard-edition-dual-sim-td-lte-am-zs590ks-128gb" }, { - "slug": "reno7-pro-5g", - "name": "Reno7 Pro 5G", - "url": "/v1/smartphones/reno7-pro-5g" + "slug": "zenfone-8-2021-standard-edition-dual-sim-td-lte-am-zs590ks-256gb", + "name": "ZenFone 8 2021 Standard Edition Dual SIM TD-LTE AM ZS590KS 256GB", + "url": "/v1/smartphones/zenfone-8-2021-standard-edition-dual-sim-td-lte-am-zs590ks-256gb" }, { - "slug": "reno8", - "name": "Reno8", - "url": "/v1/smartphones/reno8" + "slug": "zenfone-8-2021-standard-edition-global-dual-sim-td-lte-zs590ks-128gb", + "name": "ZenFone 8 2021 Standard Edition Global Dual SIM TD-LTE ZS590KS 128GB", + "url": "/v1/smartphones/zenfone-8-2021-standard-edition-global-dual-sim-td-lte-zs590ks-128gb" }, { - "slug": "reno8-5g", - "name": "Reno8 5G", - "url": "/v1/smartphones/reno8-5g" + "slug": "zenfone-8-2021-standard-edition-global-dual-sim-td-lte-zs590ks-256gb", + "name": "ZenFone 8 2021 Standard Edition Global Dual SIM TD-LTE ZS590KS 256GB", + "url": "/v1/smartphones/zenfone-8-2021-standard-edition-global-dual-sim-td-lte-zs590ks-256gb" }, { - "slug": "reno8-pro", - "name": "Reno8 Pro", - "url": "/v1/smartphones/reno8-pro" + "slug": "zenfone-8-2021-top-edition", + "name": "ZenFone 8 2021 Top Edition", + "url": "/v1/smartphones/zenfone-8-2021-top-edition" }, { - "slug": "reno8-pro-5g", - "name": "Reno8 Pro 5G", - "url": "/v1/smartphones/reno8-pro-5g" + "slug": "zenfone-8-2021-top-edition-global-dual-sim-td-lte-zs590ks-256gb", + "name": "ZenFone 8 2021 Top Edition Global Dual SIM TD-LTE ZS590KS 256GB", + "url": "/v1/smartphones/zenfone-8-2021-top-edition-global-dual-sim-td-lte-zs590ks-256gb" }, { - "slug": "reno8-z", - "name": "Reno8 Z", - "url": "/v1/smartphones/reno8-z" + "slug": "zenfone-8-flip-2021", + "name": "ZenFone 8 Flip 2021", + "url": "/v1/smartphones/zenfone-8-flip-2021" }, { - "slug": "reno9", - "name": "Reno9", - "url": "/v1/smartphones/reno9" + "slug": "zenfone-8-flip-2021-global-dual-sim-td-lte-zs672ks-128gb", + "name": "ZenFone 8 Flip 2021 Global Dual SIM TD-LTE ZS672KS 128GB", + "url": "/v1/smartphones/zenfone-8-flip-2021-global-dual-sim-td-lte-zs672ks-128gb" }, { - "slug": "reno9-5g", - "name": "Reno9 5G", - "url": "/v1/smartphones/reno9-5g" + "slug": "zenfone-8-flip-2021-global-dual-sim-td-lte-zs672ks-256gb", + "name": "ZenFone 8 Flip 2021 Global Dual SIM TD-LTE ZS672KS 256GB", + "url": "/v1/smartphones/zenfone-8-flip-2021-global-dual-sim-td-lte-zs672ks-256gb" }, { - "slug": "reno9-pro-5g", - "name": "Reno9 Pro 5G", - "url": "/v1/smartphones/reno9-pro-5g" + "slug": "zenfone-8z-2021-standard-edition", + "name": "ZenFone 8z 2021 Standard Edition", + "url": "/v1/smartphones/zenfone-8z-2021-standard-edition" }, { - "slug": "reno9-pro", - "name": "Reno9 Pro+", - "url": "/v1/smartphones/reno9-pro" + "slug": "zenfone-ares-dual-sim-global-td-lte-128gb-zs572kl", + "name": "ZenFone Ares Dual SIM Global TD-LTE 128GB ZS572KL", + "url": "/v1/smartphones/zenfone-ares-dual-sim-global-td-lte-128gb-zs572kl" }, { - "slug": "s1-pro", - "name": "S1 Pro", - "url": "/v1/smartphones/s1-pro" + "slug": "zenfone-go-4-5-dual-sim-zb452kg", + "name": "ZenFone Go 4.5 Dual SIM ZB452KG", + "url": "/v1/smartphones/zenfone-go-4-5-dual-sim-zb452kg" }, { - "slug": "s18-pro", - "name": "S18 Pro", - "url": "/v1/smartphones/s18-pro" + "slug": "zenfone-live-l1-dual-sim-lte-latam-version-d-za550kl-16gb", + "name": "ZenFone Live L1 Dual SIM LTE LATAM Version D ZA550KL 16GB", + "url": "/v1/smartphones/zenfone-live-l1-dual-sim-lte-latam-version-d-za550kl-16gb" }, { - "slug": "s5-pro", - "name": "S5 Pro", - "url": "/v1/smartphones/s5-pro" + "slug": "zenfone-live-l1-dual-sim-td-lte-apac-version-c-za550kl-16gb-zenfone-live-l2", + "name": "ZenFone Live L1 Dual SIM TD-LTE APAC Version C ZA550KL 16GB / ZenFone Live L2", + "url": "/v1/smartphones/zenfone-live-l1-dual-sim-td-lte-apac-version-c-za550kl-16gb-zenfone-live-l2" }, { - "slug": "s50-neo", - "name": "S50 Neo", - "url": "/v1/smartphones/s50-neo" + "slug": "zenfone-live-l1-dual-sim-td-lte-emea-version-a-za550kl-16gb-zenfone-live-l2", + "name": "ZenFone Live L1 Dual SIM TD-LTE EMEA Version A ZA550KL 16GB / ZenFone Live L2", + "url": "/v1/smartphones/zenfone-live-l1-dual-sim-td-lte-emea-version-a-za550kl-16gb-zenfone-live-l2" }, { - "slug": "smart-3", - "name": "Smart 3", - "url": "/v1/smartphones/smart-3" + "slug": "zenfone-live-l1-dual-sim-td-lte-id-version-b-za550kl-16gb", + "name": "ZenFone Live L1 Dual SIM TD-LTE ID Version B ZA550KL 16GB", + "url": "/v1/smartphones/zenfone-live-l1-dual-sim-td-lte-id-version-b-za550kl-16gb" }, { - "slug": "smart-3-plus", - "name": "Smart 3 Plus", - "url": "/v1/smartphones/smart-3-plus" + "slug": "zenfone-live-l1-dual-sim-td-lte-id-version-b-za550kl-32gb", + "name": "ZenFone Live L1 Dual SIM TD-LTE ID Version B ZA550KL 32GB", + "url": "/v1/smartphones/zenfone-live-l1-dual-sim-td-lte-id-version-b-za550kl-32gb" }, { - "slug": "sony-xperia-1-ii", - "name": "Sony Xperia 1 II", - "url": "/v1/smartphones/sony-xperia-1-ii" + "slug": "zenfone-live-l1-dual-sim-td-lte-in-za551kl-16gb", + "name": "ZenFone Live L1 Dual SIM TD-LTE IN ZA551KL 16GB", + "url": "/v1/smartphones/zenfone-live-l1-dual-sim-td-lte-in-za551kl-16gb" }, { - "slug": "sony-xperia-1-iii", - "name": "Sony Xperia 1 III", - "url": "/v1/smartphones/sony-xperia-1-iii" + "slug": "zenfone-max-m1-dual-sim-lte-na-version-d-zb555kl-16gb", + "name": "ZenFone Max M1 Dual SIM LTE NA Version D ZB555KL 16GB", + "url": "/v1/smartphones/zenfone-max-m1-dual-sim-lte-na-version-d-zb555kl-16gb" }, { - "slug": "sony-xperia-1-iv", - "name": "Sony Xperia 1 IV", - "url": "/v1/smartphones/sony-xperia-1-iv" + "slug": "zenfone-max-m1-dual-sim-td-lte-apac-version-c-zb555kl-32gb", + "name": "ZenFone Max M1 Dual SIM TD-LTE APAC Version C ZB555KL 32GB", + "url": "/v1/smartphones/zenfone-max-m1-dual-sim-td-lte-apac-version-c-zb555kl-32gb" }, { - "slug": "sony-xperia-1-vii", - "name": "Sony Xperia 1 VII", - "url": "/v1/smartphones/sony-xperia-1-vii" + "slug": "zenfone-max-m1-dual-sim-td-lte-emea-version-a-zb555kl-32gb", + "name": "ZenFone Max M1 Dual SIM TD-LTE EMEA Version A ZB555KL 32GB", + "url": "/v1/smartphones/zenfone-max-m1-dual-sim-td-lte-emea-version-a-zb555kl-32gb" }, { - "slug": "sony-xperia-5-ii", - "name": "Sony Xperia 5 II", - "url": "/v1/smartphones/sony-xperia-5-ii" + "slug": "zenfone-max-m1-dual-sim-td-lte-in-version-b-zb555kl-32gb", + "name": "ZenFone Max M1 Dual SIM TD-LTE IN Version B ZB555KL 32GB", + "url": "/v1/smartphones/zenfone-max-m1-dual-sim-td-lte-in-version-b-zb555kl-32gb" }, { - "slug": "sony-xperia-5-iii", - "name": "Sony Xperia 5 III", - "url": "/v1/smartphones/sony-xperia-5-iii" + "slug": "zenfone-max-m1-dual-sim-td-lte-in-zb556kl-32gb", + "name": "ZenFone Max M1 Dual SIM TD-LTE IN ZB556KL 32GB", + "url": "/v1/smartphones/zenfone-max-m1-dual-sim-td-lte-in-zb556kl-32gb" }, { - "slug": "sony-xperia-5-iv", - "name": "Sony Xperia 5 IV", - "url": "/v1/smartphones/sony-xperia-5-iv" + "slug": "zenfone-max-m2-dtv-dual-sim-lte-br-version-e-zb555kl-32gb", + "name": "ZenFone Max M2 DTV Dual SIM LTE BR Version E ZB555KL 32GB", + "url": "/v1/smartphones/zenfone-max-m2-dtv-dual-sim-lte-br-version-e-zb555kl-32gb" }, { - "slug": "sony-xperia-pro-i", - "name": "Sony Xperia Pro-I", - "url": "/v1/smartphones/sony-xperia-pro-i" + "slug": "zenfone-max-m2-dual-sim-td-lte-apac-version-b-32gb-zb633kl", + "name": "ZenFone Max M2 Dual SIM TD-LTE APAC Version B 32GB ZB633KL", + "url": "/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-apac-version-b-32gb-zb633kl" }, { - "slug": "sony-xperia-xz1", - "name": "Sony Xperia XZ1", - "url": "/v1/smartphones/sony-xperia-xz1" + "slug": "zenfone-max-m2-dual-sim-td-lte-apac-version-b-64gb-zb633kl", + "name": "ZenFone Max M2 Dual SIM TD-LTE APAC Version B 64GB ZB633KL", + "url": "/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-apac-version-b-64gb-zb633kl" }, { - "slug": "sony-xperia-xz2", - "name": "Sony Xperia XZ2", - "url": "/v1/smartphones/sony-xperia-xz2" + "slug": "zenfone-max-m2-dual-sim-td-lte-emea-version-a-32gb-zb633kl", + "name": "ZenFone Max M2 Dual SIM TD-LTE EMEA Version A 32GB ZB633KL", + "url": "/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-emea-version-a-32gb-zb633kl" }, { - "slug": "sony-xperia-xz3", - "name": "Sony Xperia XZ3", - "url": "/v1/smartphones/sony-xperia-xz3" + "slug": "zenfone-max-m2-dual-sim-td-lte-emea-version-a-64gb-zb633kl", + "name": "ZenFone Max M2 Dual SIM TD-LTE EMEA Version A 64GB ZB633KL", + "url": "/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-emea-version-a-64gb-zb633kl" }, { - "slug": "sony-xperia-z", - "name": "Sony Xperia Z", - "url": "/v1/smartphones/sony-xperia-z" + "slug": "zenfone-max-m2-dual-sim-td-lte-in-32gb-zb632kl", + "name": "ZenFone Max M2 Dual SIM TD-LTE IN 32GB ZB632KL", + "url": "/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-in-32gb-zb632kl" }, { - "slug": "sony-xperia-z1", - "name": "Sony Xperia Z1", - "url": "/v1/smartphones/sony-xperia-z1" + "slug": "zenfone-max-m2-dual-sim-td-lte-in-64gb-zb632kl", + "name": "ZenFone Max M2 Dual SIM TD-LTE IN 64GB ZB632KL", + "url": "/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-in-64gb-zb632kl" }, { - "slug": "sony-xperia-z2", - "name": "Sony Xperia Z2", - "url": "/v1/smartphones/sony-xperia-z2" + "slug": "zenfone-max-pro-m1-dual-sim-td-lte-apac-version-b-zb602kl-32gb", + "name": "ZenFone Max Pro M1 Dual SIM TD-LTE APAC Version B ZB602KL 32GB", + "url": "/v1/smartphones/zenfone-max-pro-m1-dual-sim-td-lte-apac-version-b-zb602kl-32gb" }, { - "slug": "sony-xperia-z3", - "name": "Sony Xperia Z3", - "url": "/v1/smartphones/sony-xperia-z3" + "slug": "zenfone-max-pro-m1-dual-sim-td-lte-apac-version-b-zb602kl-64gb", + "name": "ZenFone Max Pro M1 Dual SIM TD-LTE APAC Version B ZB602KL 64GB", + "url": "/v1/smartphones/zenfone-max-pro-m1-dual-sim-td-lte-apac-version-b-zb602kl-64gb" }, { - "slug": "sony-xperia-z5", - "name": "Sony Xperia Z5", - "url": "/v1/smartphones/sony-xperia-z5" + "slug": "zenfone-max-pro-m1-dual-sim-td-lte-in-zb601kl-32gb", + "name": "ZenFone Max Pro M1 Dual SIM TD-LTE IN ZB601KL 32GB", + "url": "/v1/smartphones/zenfone-max-pro-m1-dual-sim-td-lte-in-zb601kl-32gb" }, { - "slug": "spark-20", - "name": "Spark 20", - "url": "/v1/smartphones/spark-20" + "slug": "zenfone-max-pro-m1-dual-sim-td-lte-in-zb601kl-64gb", + "name": "ZenFone Max Pro M1 Dual SIM TD-LTE IN ZB601KL 64GB", + "url": "/v1/smartphones/zenfone-max-pro-m1-dual-sim-td-lte-in-zb601kl-64gb" }, { - "slug": "spark-20-pro-5g", - "name": "Spark 20 Pro 5G", - "url": "/v1/smartphones/spark-20-pro-5g" + "slug": "zenfone-max-pro-m1-global-dual-sim-td-lte-version-a-zb602kl-32gb", + "name": "ZenFone Max Pro M1 Global Dual SIM TD-LTE Version A ZB602KL 32GB", + "url": "/v1/smartphones/zenfone-max-pro-m1-global-dual-sim-td-lte-version-a-zb602kl-32gb" }, { - "slug": "spark-20-pro", - "name": "Spark 20 Pro+", - "url": "/v1/smartphones/spark-20-pro" + "slug": "zenfone-max-pro-m1-global-dual-sim-td-lte-version-a-zb602kl-64gb", + "name": "ZenFone Max Pro M1 Global Dual SIM TD-LTE Version A ZB602KL 64GB", + "url": "/v1/smartphones/zenfone-max-pro-m1-global-dual-sim-td-lte-version-a-zb602kl-64gb" }, { - "slug": "spark-20c", - "name": "Spark 20C", - "url": "/v1/smartphones/spark-20c" + "slug": "zenfone-max-pro-m2-dual-sim-td-lte-apac-version-b-128gb-zb631kl", + "name": "ZenFone Max Pro M2 Dual SIM TD-LTE APAC Version B 128GB ZB631KL", + "url": "/v1/smartphones/zenfone-max-pro-m2-dual-sim-td-lte-apac-version-b-128gb-zb631kl" }, { - "slug": "spark-20p", - "name": "Spark 20P", - "url": "/v1/smartphones/spark-20p" + "slug": "zenfone-max-pro-m2-dual-sim-td-lte-apac-version-b-64gb-zb631kl", + "name": "ZenFone Max Pro M2 Dual SIM TD-LTE APAC Version B 64GB ZB631KL", + "url": "/v1/smartphones/zenfone-max-pro-m2-dual-sim-td-lte-apac-version-b-64gb-zb631kl" }, { - "slug": "spark-30", - "name": "Spark 30", - "url": "/v1/smartphones/spark-30" + "slug": "zenfone-max-pro-m2-dual-sim-td-lte-in-id-32gb-zb630kl", + "name": "ZenFone Max Pro M2 Dual SIM TD-LTE IN ID 32GB ZB630KL", + "url": "/v1/smartphones/zenfone-max-pro-m2-dual-sim-td-lte-in-id-32gb-zb630kl" }, { - "slug": "spark-30-pro", - "name": "Spark 30 Pro", - "url": "/v1/smartphones/spark-30-pro" + "slug": "zenfone-max-pro-m2-dual-sim-td-lte-in-id-64gb-zb630kl", + "name": "ZenFone Max Pro M2 Dual SIM TD-LTE IN ID 64GB ZB630KL", + "url": "/v1/smartphones/zenfone-max-pro-m2-dual-sim-td-lte-in-id-64gb-zb630kl" }, { - "slug": "spark-30c", - "name": "Spark 30C", - "url": "/v1/smartphones/spark-30c" + "slug": "zenfone-max-pro-m2-global-dual-sim-td-lte-version-a-64gb-zb631kl", + "name": "ZenFone Max Pro M2 Global Dual SIM TD-LTE Version A 64GB ZB631KL", + "url": "/v1/smartphones/zenfone-max-pro-m2-global-dual-sim-td-lte-version-a-64gb-zb631kl" }, { - "slug": "spark-30c-5g", - "name": "Spark 30C 5G", - "url": "/v1/smartphones/spark-30c-5g" + "slug": "zenfone-9", + "name": "Zenfone 9", + "url": "/v1/smartphones/zenfone-9" }, { - "slug": "stylo-6", - "name": "Stylo 6", - "url": "/v1/smartphones/stylo-6" + "slug": "zero-40", + "name": "Zero 40", + "url": "/v1/smartphones/zero-40" }, { - "slug": "t1-5g", - "name": "T1 5G", - "url": "/v1/smartphones/t1-5g" + "slug": "zero-40-5g", + "name": "Zero 40 5G", + "url": "/v1/smartphones/zero-40-5g" }, { - "slug": "t2-series", - "name": "T2 Series", - "url": "/v1/smartphones/t2-series" + "slug": "zero-8", + "name": "Zero 8", + "url": "/v1/smartphones/zero-8" }, { - "slug": "t3-5g", - "name": "T3 5G", - "url": "/v1/smartphones/t3-5g" + "slug": "zero-8i", + "name": "Zero 8i", + "url": "/v1/smartphones/zero-8i" }, { - "slug": "td-tech-m40", - "name": "TD Tech M40", - "url": "/v1/smartphones/td-tech-m40" + "slug": "zero-flip", + "name": "Zero Flip", + "url": "/v1/smartphones/zero-flip" }, { - "slug": "td-tech-p50", - "name": "TD Tech P50", - "url": "/v1/smartphones/td-tech-p50" + "slug": "a1-5g-td-lte-jp-ztg01", + "name": "a1 5G TD-LTE JP ZTG01", + "url": "/v1/smartphones/a1-5g-td-lte-jp-ztg01" }, { - "slug": "u20", - "name": "U20", - "url": "/v1/smartphones/u20" + "slug": "iphone-11", + "name": "iPhone 11", + "url": "/v1/smartphones/iphone-11" }, { - "slug": "v15", - "name": "V15", - "url": "/v1/smartphones/v15" + "slug": "iphone-11-a2111-dual-sim-td-lte-na-128gb", + "name": "iPhone 11 A2111 Dual SIM TD-LTE NA 128GB", + "url": "/v1/smartphones/iphone-11-a2111-dual-sim-td-lte-na-128gb" }, { - "slug": "v15-pro", - "name": "V15 Pro", - "url": "/v1/smartphones/v15-pro" + "slug": "iphone-11-a2111-dual-sim-td-lte-na-256gb", + "name": "iPhone 11 A2111 Dual SIM TD-LTE NA 256GB", + "url": "/v1/smartphones/iphone-11-a2111-dual-sim-td-lte-na-256gb" }, { - "slug": "v17-pro", - "name": "V17 Pro", - "url": "/v1/smartphones/v17-pro" + "slug": "iphone-11-a2111-dual-sim-td-lte-na-64gb", + "name": "iPhone 11 A2111 Dual SIM TD-LTE NA 64GB", + "url": "/v1/smartphones/iphone-11-a2111-dual-sim-td-lte-na-64gb" }, { - "slug": "v19", - "name": "V19", - "url": "/v1/smartphones/v19" + "slug": "iphone-11-a2221-dual-sim-td-lte-jp-128gb", + "name": "iPhone 11 A2221 Dual SIM TD-LTE JP 128GB", + "url": "/v1/smartphones/iphone-11-a2221-dual-sim-td-lte-jp-128gb" }, { - "slug": "v20-pro", - "name": "V20 Pro", - "url": "/v1/smartphones/v20-pro" + "slug": "iphone-11-a2221-dual-sim-td-lte-jp-256gb", + "name": "iPhone 11 A2221 Dual SIM TD-LTE JP 256GB", + "url": "/v1/smartphones/iphone-11-a2221-dual-sim-td-lte-jp-256gb" }, { - "slug": "v23-5g", - "name": "V23 5G", - "url": "/v1/smartphones/v23-5g" + "slug": "iphone-11-a2221-dual-sim-td-lte-jp-64gb", + "name": "iPhone 11 A2221 Dual SIM TD-LTE JP 64GB", + "url": "/v1/smartphones/iphone-11-a2221-dual-sim-td-lte-jp-64gb" }, { - "slug": "v23e", - "name": "V23e", - "url": "/v1/smartphones/v23e" + "slug": "iphone-11-a2221-global-dual-sim-td-lte-128gb", + "name": "iPhone 11 A2221 Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/iphone-11-a2221-global-dual-sim-td-lte-128gb" }, { - "slug": "v25-pro", - "name": "V25 Pro", - "url": "/v1/smartphones/v25-pro" + "slug": "iphone-11-a2221-global-dual-sim-td-lte-256gb", + "name": "iPhone 11 A2221 Global Dual SIM TD-LTE 256GB", + "url": "/v1/smartphones/iphone-11-a2221-global-dual-sim-td-lte-256gb" }, { - "slug": "v27", - "name": "V27", - "url": "/v1/smartphones/v27" + "slug": "iphone-11-a2221-global-dual-sim-td-lte-64gb", + "name": "iPhone 11 A2221 Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/iphone-11-a2221-global-dual-sim-td-lte-64gb" }, { - "slug": "v27-pro", - "name": "V27 Pro", - "url": "/v1/smartphones/v27-pro" + "slug": "iphone-11-a2223-dual-sim-td-lte-cn-128gb", + "name": "iPhone 11 A2223 Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/iphone-11-a2223-dual-sim-td-lte-cn-128gb" }, { - "slug": "v30-pro", - "name": "V30 Pro", - "url": "/v1/smartphones/v30-pro" + "slug": "iphone-11-a2223-dual-sim-td-lte-cn-256gb", + "name": "iPhone 11 A2223 Dual SIM TD-LTE CN 256GB", + "url": "/v1/smartphones/iphone-11-a2223-dual-sim-td-lte-cn-256gb" }, { - "slug": "v40", - "name": "V40", - "url": "/v1/smartphones/v40" + "slug": "iphone-11-a2223-dual-sim-td-lte-cn-64gb", + "name": "iPhone 11 A2223 Dual SIM TD-LTE CN 64GB", + "url": "/v1/smartphones/iphone-11-a2223-dual-sim-td-lte-cn-64gb" }, { - "slug": "v40e", - "name": "V40e", - "url": "/v1/smartphones/v40e" + "slug": "iphone-11-pro", + "name": "iPhone 11 Pro", + "url": "/v1/smartphones/iphone-11-pro" }, { - "slug": "v60-thinq-5g", - "name": "V60 ThinQ 5G", - "url": "/v1/smartphones/v60-thinq-5g" + "slug": "iphone-11-pro-a2160-dual-sim-td-lte-na-256gb", + "name": "iPhone 11 Pro A2160 Dual SIM TD-LTE NA 256GB", + "url": "/v1/smartphones/iphone-11-pro-a2160-dual-sim-td-lte-na-256gb" }, { - "slug": "velvet-5g", - "name": "Velvet 5G", - "url": "/v1/smartphones/velvet-5g" + "slug": "iphone-11-pro-a2160-dual-sim-td-lte-na-512gb", + "name": "iPhone 11 Pro A2160 Dual SIM TD-LTE NA 512GB", + "url": "/v1/smartphones/iphone-11-pro-a2160-dual-sim-td-lte-na-512gb" }, { - "slug": "vivo-x-fold-3-pro", - "name": "Vivo X Fold 3 Pro", - "url": "/v1/smartphones/vivo-x-fold-3-pro" + "slug": "iphone-11-pro-a2160-dual-sim-td-lte-na-64gb", + "name": "iPhone 11 Pro A2160 Dual SIM TD-LTE NA 64GB", + "url": "/v1/smartphones/iphone-11-pro-a2160-dual-sim-td-lte-na-64gb" }, { - "slug": "vivo-x300", - "name": "Vivo X300", - "url": "/v1/smartphones/vivo-x300" + "slug": "iphone-11-pro-a2215-dual-sim-td-lte-jp-256gb", + "name": "iPhone 11 Pro A2215 Dual SIM TD-LTE JP 256GB", + "url": "/v1/smartphones/iphone-11-pro-a2215-dual-sim-td-lte-jp-256gb" }, { - "slug": "vivo-x300-pro", - "name": "Vivo X300 Pro", - "url": "/v1/smartphones/vivo-x300-pro" + "slug": "iphone-11-pro-a2215-dual-sim-td-lte-jp-512gb", + "name": "iPhone 11 Pro A2215 Dual SIM TD-LTE JP 512GB", + "url": "/v1/smartphones/iphone-11-pro-a2215-dual-sim-td-lte-jp-512gb" }, { - "slug": "vivo-x300-ultra", - "name": "Vivo X300 Ultra", - "url": "/v1/smartphones/vivo-x300-ultra" + "slug": "iphone-11-pro-a2215-dual-sim-td-lte-jp-64gb", + "name": "iPhone 11 Pro A2215 Dual SIM TD-LTE JP 64GB", + "url": "/v1/smartphones/iphone-11-pro-a2215-dual-sim-td-lte-jp-64gb" }, { - "slug": "vivo-x300s", - "name": "Vivo X300s", - "url": "/v1/smartphones/vivo-x300s" + "slug": "iphone-11-pro-a2215-global-dual-sim-td-lte-256gb", + "name": "iPhone 11 Pro A2215 Global Dual SIM TD-LTE 256GB", + "url": "/v1/smartphones/iphone-11-pro-a2215-global-dual-sim-td-lte-256gb" }, { - "slug": "w41", - "name": "W41", - "url": "/v1/smartphones/w41" + "slug": "iphone-11-pro-a2215-global-dual-sim-td-lte-512gb", + "name": "iPhone 11 Pro A2215 Global Dual SIM TD-LTE 512GB", + "url": "/v1/smartphones/iphone-11-pro-a2215-global-dual-sim-td-lte-512gb" }, { - "slug": "w41-plus", - "name": "W41 Plus", - "url": "/v1/smartphones/w41-plus" + "slug": "iphone-11-pro-a2215-global-dual-sim-td-lte-64gb", + "name": "iPhone 11 Pro A2215 Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/iphone-11-pro-a2215-global-dual-sim-td-lte-64gb" }, { - "slug": "w41-pro", - "name": "W41 Pro", - "url": "/v1/smartphones/w41-pro" + "slug": "iphone-11-pro-a2217-dual-sim-td-lte-cn-256gb", + "name": "iPhone 11 Pro A2217 Dual SIM TD-LTE CN 256GB", + "url": "/v1/smartphones/iphone-11-pro-a2217-dual-sim-td-lte-cn-256gb" }, { - "slug": "wildfire-e1", - "name": "Wildfire E1", - "url": "/v1/smartphones/wildfire-e1" + "slug": "iphone-11-pro-a2217-dual-sim-td-lte-cn-512gb", + "name": "iPhone 11 Pro A2217 Dual SIM TD-LTE CN 512GB", + "url": "/v1/smartphones/iphone-11-pro-a2217-dual-sim-td-lte-cn-512gb" }, { - "slug": "wildfire-e1-plus", - "name": "Wildfire E1 Plus", - "url": "/v1/smartphones/wildfire-e1-plus" + "slug": "iphone-11-pro-a2217-dual-sim-td-lte-cn-64gb", + "name": "iPhone 11 Pro A2217 Dual SIM TD-LTE CN 64GB", + "url": "/v1/smartphones/iphone-11-pro-a2217-dual-sim-td-lte-cn-64gb" }, { - "slug": "wildfire-e2", - "name": "Wildfire E2", - "url": "/v1/smartphones/wildfire-e2" + "slug": "iphone-11-pro-max", + "name": "iPhone 11 Pro Max", + "url": "/v1/smartphones/iphone-11-pro-max" }, { - "slug": "wildfire-r70", - "name": "Wildfire R70", - "url": "/v1/smartphones/wildfire-r70" + "slug": "iphone-11-pro-max-a2161-dual-sim-td-lte-na-256gb", + "name": "iPhone 11 Pro Max A2161 Dual SIM TD-LTE NA 256GB", + "url": "/v1/smartphones/iphone-11-pro-max-a2161-dual-sim-td-lte-na-256gb" }, { - "slug": "wildfire-x", - "name": "Wildfire X", - "url": "/v1/smartphones/wildfire-x" + "slug": "iphone-11-pro-max-a2161-dual-sim-td-lte-na-512gb", + "name": "iPhone 11 Pro Max A2161 Dual SIM TD-LTE NA 512GB", + "url": "/v1/smartphones/iphone-11-pro-max-a2161-dual-sim-td-lte-na-512gb" }, { - "slug": "wing-5g", - "name": "Wing 5G", - "url": "/v1/smartphones/wing-5g" + "slug": "iphone-11-pro-max-a2161-dual-sim-td-lte-na-64gb", + "name": "iPhone 11 Pro Max A2161 Dual SIM TD-LTE NA 64GB", + "url": "/v1/smartphones/iphone-11-pro-max-a2161-dual-sim-td-lte-na-64gb" }, { - "slug": "x10-2021", - "name": "X10 2021", - "url": "/v1/smartphones/x10-2021" + "slug": "iphone-11-pro-max-a2218-dual-sim-td-lte-jp-256gb", + "name": "iPhone 11 Pro Max A2218 Dual SIM TD-LTE JP 256GB", + "url": "/v1/smartphones/iphone-11-pro-max-a2218-dual-sim-td-lte-jp-256gb" }, { - "slug": "x10-max", - "name": "X10 Max", - "url": "/v1/smartphones/x10-max" + "slug": "iphone-11-pro-max-a2218-dual-sim-td-lte-jp-512gb", + "name": "iPhone 11 Pro Max A2218 Dual SIM TD-LTE JP 512GB", + "url": "/v1/smartphones/iphone-11-pro-max-a2218-dual-sim-td-lte-jp-512gb" }, { - "slug": "x20", - "name": "X20", - "url": "/v1/smartphones/x20" + "slug": "iphone-11-pro-max-a2218-dual-sim-td-lte-jp-64gb", + "name": "iPhone 11 Pro Max A2218 Dual SIM TD-LTE JP 64GB", + "url": "/v1/smartphones/iphone-11-pro-max-a2218-dual-sim-td-lte-jp-64gb" }, { - "slug": "x20-2021", - "name": "X20 2021", - "url": "/v1/smartphones/x20-2021" + "slug": "iphone-11-pro-max-a2218-global-dual-sim-td-lte-256gb", + "name": "iPhone 11 Pro Max A2218 Global Dual SIM TD-LTE 256GB", + "url": "/v1/smartphones/iphone-11-pro-max-a2218-global-dual-sim-td-lte-256gb" }, { - "slug": "x20-se", - "name": "X20 SE", - "url": "/v1/smartphones/x20-se" + "slug": "iphone-11-pro-max-a2218-global-dual-sim-td-lte-512gb", + "name": "iPhone 11 Pro Max A2218 Global Dual SIM TD-LTE 512GB", + "url": "/v1/smartphones/iphone-11-pro-max-a2218-global-dual-sim-td-lte-512gb" }, { - "slug": "x200", - "name": "X200", - "url": "/v1/smartphones/x200" + "slug": "iphone-11-pro-max-a2218-global-dual-sim-td-lte-64gb", + "name": "iPhone 11 Pro Max A2218 Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/iphone-11-pro-max-a2218-global-dual-sim-td-lte-64gb" }, { - "slug": "x200-pro", - "name": "X200 Pro", - "url": "/v1/smartphones/x200-pro" + "slug": "iphone-11-pro-max-a2220-dual-sim-td-lte-cn-256gb", + "name": "iPhone 11 Pro Max A2220 Dual SIM TD-LTE CN 256GB", + "url": "/v1/smartphones/iphone-11-pro-max-a2220-dual-sim-td-lte-cn-256gb" }, { - "slug": "x200-pro-mini", - "name": "X200 Pro Mini", - "url": "/v1/smartphones/x200-pro-mini" + "slug": "iphone-11-pro-max-a2220-dual-sim-td-lte-cn-512gb", + "name": "iPhone 11 Pro Max A2220 Dual SIM TD-LTE CN 512GB", + "url": "/v1/smartphones/iphone-11-pro-max-a2220-dual-sim-td-lte-cn-512gb" }, { - "slug": "x21", - "name": "X21", - "url": "/v1/smartphones/x21" + "slug": "iphone-11-pro-max-a2220-dual-sim-td-lte-cn-64gb", + "name": "iPhone 11 Pro Max A2220 Dual SIM TD-LTE CN 64GB", + "url": "/v1/smartphones/iphone-11-pro-max-a2220-dual-sim-td-lte-cn-64gb" }, { - "slug": "x27-pro", - "name": "X27 Pro", - "url": "/v1/smartphones/x27-pro" + "slug": "iphone-12", + "name": "iPhone 12", + "url": "/v1/smartphones/iphone-12" }, { - "slug": "x3-gt", - "name": "X3 GT", - "url": "/v1/smartphones/x3-gt" + "slug": "iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-128gb", + "name": "iPhone 12 5G A2402 Dual SIM TD-LTE JP CA 128GB", + "url": "/v1/smartphones/iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-128gb" }, { - "slug": "x3-nfc", - "name": "X3 NFC", - "url": "/v1/smartphones/x3-nfc" + "slug": "iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-256gb", + "name": "iPhone 12 5G A2402 Dual SIM TD-LTE JP CA 256GB", + "url": "/v1/smartphones/iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-256gb" }, { - "slug": "x3-pro", - "name": "X3 Pro", - "url": "/v1/smartphones/x3-pro" + "slug": "iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-64gb", + "name": "iPhone 12 5G A2402 Dual SIM TD-LTE JP CA 64GB", + "url": "/v1/smartphones/iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-64gb" }, { - "slug": "x30", - "name": "X30", - "url": "/v1/smartphones/x30" + "slug": "iphone-12-5g-a2403-global-dual-sim-td-lte-128gb", + "name": "iPhone 12 5G A2403 Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/iphone-12-5g-a2403-global-dual-sim-td-lte-128gb" }, { - "slug": "x30-max", - "name": "X30 Max", - "url": "/v1/smartphones/x30-max" + "slug": "iphone-12-5g-a2403-global-dual-sim-td-lte-256gb", + "name": "iPhone 12 5G A2403 Global Dual SIM TD-LTE 256GB", + "url": "/v1/smartphones/iphone-12-5g-a2403-global-dual-sim-td-lte-256gb" }, { - "slug": "x30-pro", - "name": "X30 Pro", - "url": "/v1/smartphones/x30-pro" + "slug": "iphone-12-5g-a2403-global-dual-sim-td-lte-64gb", + "name": "iPhone 12 5G A2403 Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/iphone-12-5g-a2403-global-dual-sim-td-lte-64gb" }, { - "slug": "x30i", - "name": "X30i", - "url": "/v1/smartphones/x30i" + "slug": "iphone-12-5g-a2404-dual-sim-td-lte-cn-128gb-a2405", + "name": "iPhone 12 5G A2404 Dual SIM TD-LTE CN 128GB / A2405", + "url": "/v1/smartphones/iphone-12-5g-a2404-dual-sim-td-lte-cn-128gb-a2405" }, { - "slug": "x4-pro-5g", - "name": "X4 Pro 5G", - "url": "/v1/smartphones/x4-pro-5g" + "slug": "iphone-12-5g-a2404-dual-sim-td-lte-cn-256gb-a2405", + "name": "iPhone 12 5G A2404 Dual SIM TD-LTE CN 256GB / A2405", + "url": "/v1/smartphones/iphone-12-5g-a2404-dual-sim-td-lte-cn-256gb-a2405" }, { - "slug": "x40", - "name": "X40", - "url": "/v1/smartphones/x40" + "slug": "iphone-12-5g-a2404-dual-sim-td-lte-cn-64gb-a2405", + "name": "iPhone 12 5G A2404 Dual SIM TD-LTE CN 64GB / A2405", + "url": "/v1/smartphones/iphone-12-5g-a2404-dual-sim-td-lte-cn-64gb-a2405" }, { - "slug": "x40i", - "name": "X40i", - "url": "/v1/smartphones/x40i" + "slug": "iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-128gb", + "name": "iPhone 12 Mini 5G A2398 Dual SIM TD-LTE JP CA 128GB", + "url": "/v1/smartphones/iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-128gb" }, { - "slug": "x5", - "name": "X5", - "url": "/v1/smartphones/x5" + "slug": "iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-256gb", + "name": "iPhone 12 Mini 5G A2398 Dual SIM TD-LTE JP CA 256GB", + "url": "/v1/smartphones/iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-256gb" }, { - "slug": "x5-2018", - "name": "X5 2018", - "url": "/v1/smartphones/x5-2018" + "slug": "iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-64gb", + "name": "iPhone 12 Mini 5G A2398 Dual SIM TD-LTE JP CA 64GB", + "url": "/v1/smartphones/iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-64gb" }, { - "slug": "x5-pro", - "name": "X5 Pro", - "url": "/v1/smartphones/x5-pro" + "slug": "iphone-12-mini-5g-a2399-global-dual-sim-td-lte-128gb", + "name": "iPhone 12 Mini 5G A2399 Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/iphone-12-mini-5g-a2399-global-dual-sim-td-lte-128gb" }, { - "slug": "x50", - "name": "X50", - "url": "/v1/smartphones/x50" + "slug": "iphone-12-mini-5g-a2399-global-dual-sim-td-lte-256gb", + "name": "iPhone 12 Mini 5G A2399 Global Dual SIM TD-LTE 256GB", + "url": "/v1/smartphones/iphone-12-mini-5g-a2399-global-dual-sim-td-lte-256gb" }, { - "slug": "x6", - "name": "X6", - "url": "/v1/smartphones/x6" + "slug": "iphone-12-mini-5g-a2399-global-dual-sim-td-lte-64gb", + "name": "iPhone 12 Mini 5G A2399 Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/iphone-12-mini-5g-a2399-global-dual-sim-td-lte-64gb" }, { - "slug": "x6-pro", - "name": "X6 Pro", - "url": "/v1/smartphones/x6-pro" + "slug": "iphone-12-mini-uw", + "name": "iPhone 12 Mini UW", + "url": "/v1/smartphones/iphone-12-mini-uw" }, { - "slug": "x60", - "name": "X60", - "url": "/v1/smartphones/x60" + "slug": "iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-128gb", + "name": "iPhone 12 Mini UW 5G A2176 Dual SIM TD-LTE US 128GB", + "url": "/v1/smartphones/iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-128gb" }, { - "slug": "x60-pro", - "name": "X60 Pro", - "url": "/v1/smartphones/x60-pro" + "slug": "iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-256gb", + "name": "iPhone 12 Mini UW 5G A2176 Dual SIM TD-LTE US 256GB", + "url": "/v1/smartphones/iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-256gb" }, { - "slug": "x7", - "name": "X7", - "url": "/v1/smartphones/x7" + "slug": "iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-64gb", + "name": "iPhone 12 Mini UW 5G A2176 Dual SIM TD-LTE US 64GB", + "url": "/v1/smartphones/iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-64gb" }, { - "slug": "x7-pro", - "name": "X7 Pro", - "url": "/v1/smartphones/x7-pro" + "slug": "iphone-12-pro", + "name": "iPhone 12 Pro", + "url": "/v1/smartphones/iphone-12-pro" }, { - "slug": "x70-pro", - "name": "X70 Pro", - "url": "/v1/smartphones/x70-pro" + "slug": "iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-128gb", + "name": "iPhone 12 Pro 5G A2406 Dual SIM TD-LTE JP CA 128GB", + "url": "/v1/smartphones/iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-128gb" }, { - "slug": "x80", - "name": "X80", - "url": "/v1/smartphones/x80" + "slug": "iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-256gb", + "name": "iPhone 12 Pro 5G A2406 Dual SIM TD-LTE JP CA 256GB", + "url": "/v1/smartphones/iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-256gb" }, { - "slug": "x90-pro", - "name": "X90 Pro", - "url": "/v1/smartphones/x90-pro" + "slug": "iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-512gb", + "name": "iPhone 12 Pro 5G A2406 Dual SIM TD-LTE JP CA 512GB", + "url": "/v1/smartphones/iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-512gb" }, { - "slug": "xiaomi-11-lite-5g-ne", - "name": "Xiaomi 11 Lite 5G NE", - "url": "/v1/smartphones/xiaomi-11-lite-5g-ne" + "slug": "iphone-12-pro-5g-a2407-global-dual-sim-td-lte-128gb", + "name": "iPhone 12 Pro 5G A2407 Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/iphone-12-pro-5g-a2407-global-dual-sim-td-lte-128gb" }, { - "slug": "xiaomi-11t-pro", - "name": "Xiaomi 11T Pro", - "url": "/v1/smartphones/xiaomi-11t-pro" + "slug": "iphone-12-pro-5g-a2407-global-dual-sim-td-lte-256gb", + "name": "iPhone 12 Pro 5G A2407 Global Dual SIM TD-LTE 256GB", + "url": "/v1/smartphones/iphone-12-pro-5g-a2407-global-dual-sim-td-lte-256gb" }, { - "slug": "xiaomi-12", - "name": "Xiaomi 12", - "url": "/v1/smartphones/xiaomi-12" + "slug": "iphone-12-pro-5g-a2407-global-dual-sim-td-lte-512gb", + "name": "iPhone 12 Pro 5G A2407 Global Dual SIM TD-LTE 512GB", + "url": "/v1/smartphones/iphone-12-pro-5g-a2407-global-dual-sim-td-lte-512gb" }, { - "slug": "xiaomi-12-pro", - "name": "Xiaomi 12 Pro", - "url": "/v1/smartphones/xiaomi-12-pro" + "slug": "iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-128gb-a2409", + "name": "iPhone 12 Pro 5G A2408 Dual SIM TD-LTE CN 128GB / A2409", + "url": "/v1/smartphones/iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-128gb-a2409" }, { - "slug": "xiaomi-12s-ultra", - "name": "Xiaomi 12S Ultra", - "url": "/v1/smartphones/xiaomi-12s-ultra" + "slug": "iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-256gb-a2409", + "name": "iPhone 12 Pro 5G A2408 Dual SIM TD-LTE CN 256GB / A2409", + "url": "/v1/smartphones/iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-256gb-a2409" }, { - "slug": "xiaomi-12t-pro", - "name": "Xiaomi 12T Pro", - "url": "/v1/smartphones/xiaomi-12t-pro" + "slug": "iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-512gb-a2409", + "name": "iPhone 12 Pro 5G A2408 Dual SIM TD-LTE CN 512GB / A2409", + "url": "/v1/smartphones/iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-512gb-a2409" }, { - "slug": "xiaomi-12x", - "name": "Xiaomi 12X", - "url": "/v1/smartphones/xiaomi-12x" + "slug": "iphone-12-pro-max", + "name": "iPhone 12 Pro Max", + "url": "/v1/smartphones/iphone-12-pro-max" }, { - "slug": "xiaomi-13", - "name": "Xiaomi 13", - "url": "/v1/smartphones/xiaomi-13" + "slug": "iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-128gb", + "name": "iPhone 12 Pro Max 5G A2410 Dual SIM TD-LTE JP CA 128GB", + "url": "/v1/smartphones/iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-128gb" }, { - "slug": "xiaomi-13-pro", - "name": "Xiaomi 13 Pro", - "url": "/v1/smartphones/xiaomi-13-pro" + "slug": "iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-256gb", + "name": "iPhone 12 Pro Max 5G A2410 Dual SIM TD-LTE JP CA 256GB", + "url": "/v1/smartphones/iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-256gb" }, { - "slug": "xiaomi-13t-pro", - "name": "Xiaomi 13T Pro", - "url": "/v1/smartphones/xiaomi-13t-pro" + "slug": "iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-512gb", + "name": "iPhone 12 Pro Max 5G A2410 Dual SIM TD-LTE JP CA 512GB", + "url": "/v1/smartphones/iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-512gb" }, { - "slug": "xiaomi-14", - "name": "Xiaomi 14", - "url": "/v1/smartphones/xiaomi-14" + "slug": "iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-128gb", + "name": "iPhone 12 Pro Max 5G A2411 Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-128gb" }, { - "slug": "xiaomi-14-pro", - "name": "Xiaomi 14 Pro", - "url": "/v1/smartphones/xiaomi-14-pro" + "slug": "iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-256gb", + "name": "iPhone 12 Pro Max 5G A2411 Global Dual SIM TD-LTE 256GB", + "url": "/v1/smartphones/iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-256gb" }, { - "slug": "xiaomi-14-ultra", - "name": "Xiaomi 14 Ultra", - "url": "/v1/smartphones/xiaomi-14-ultra" + "slug": "iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-512gb", + "name": "iPhone 12 Pro Max 5G A2411 Global Dual SIM TD-LTE 512GB", + "url": "/v1/smartphones/iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-512gb" }, - { - "slug": "xiaomi-14t", - "name": "Xiaomi 14T", - "url": "/v1/smartphones/xiaomi-14t" + { + "slug": "iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-128gb-a2413", + "name": "iPhone 12 Pro Max 5G A2412 Dual SIM TD-LTE CN 128GB / A2413", + "url": "/v1/smartphones/iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-128gb-a2413" }, { - "slug": "xiaomi-14t-pro", - "name": "Xiaomi 14T Pro", - "url": "/v1/smartphones/xiaomi-14t-pro" + "slug": "iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-256gb-a2413", + "name": "iPhone 12 Pro Max 5G A2412 Dual SIM TD-LTE CN 256GB / A2413", + "url": "/v1/smartphones/iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-256gb-a2413" }, { - "slug": "xiaomi-15", - "name": "Xiaomi 15", - "url": "/v1/smartphones/xiaomi-15" + "slug": "iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-512gb-a2413", + "name": "iPhone 12 Pro Max 5G A2412 Dual SIM TD-LTE CN 512GB / A2413", + "url": "/v1/smartphones/iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-512gb-a2413" }, { - "slug": "xiaomi-15-pro", - "name": "Xiaomi 15 Pro", - "url": "/v1/smartphones/xiaomi-15-pro" + "slug": "iphone-12-pro-max-uw", + "name": "iPhone 12 Pro Max UW", + "url": "/v1/smartphones/iphone-12-pro-max-uw" }, { - "slug": "xiaomi-15-ultra", - "name": "Xiaomi 15 Ultra", - "url": "/v1/smartphones/xiaomi-15-ultra" + "slug": "iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-128gb", + "name": "iPhone 12 Pro Max UW 5G A2342 Dual SIM TD-LTE US 128GB", + "url": "/v1/smartphones/iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-128gb" }, { - "slug": "xiaomi-17", - "name": "Xiaomi 17", - "url": "/v1/smartphones/xiaomi-17" + "slug": "iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-256gb", + "name": "iPhone 12 Pro Max UW 5G A2342 Dual SIM TD-LTE US 256GB", + "url": "/v1/smartphones/iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-256gb" }, { - "slug": "xiaomi-17-pro", - "name": "Xiaomi 17 Pro", - "url": "/v1/smartphones/xiaomi-17-pro" + "slug": "iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-512gb", + "name": "iPhone 12 Pro Max UW 5G A2342 Dual SIM TD-LTE US 512GB", + "url": "/v1/smartphones/iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-512gb" }, { - "slug": "xiaomi-17-pro-max", - "name": "Xiaomi 17 Pro Max", - "url": "/v1/smartphones/xiaomi-17-pro-max" + "slug": "iphone-12-pro-uw", + "name": "iPhone 12 Pro UW", + "url": "/v1/smartphones/iphone-12-pro-uw" }, { - "slug": "xiaomi-mi-10", - "name": "Xiaomi Mi 10", - "url": "/v1/smartphones/xiaomi-mi-10" + "slug": "iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-128gb", + "name": "iPhone 12 Pro UW 5G A2341 Dual SIM TD-LTE US 128GB", + "url": "/v1/smartphones/iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-128gb" }, { - "slug": "xiaomi-mi-10-pro", - "name": "Xiaomi Mi 10 Pro", - "url": "/v1/smartphones/xiaomi-mi-10-pro" + "slug": "iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-256gb", + "name": "iPhone 12 Pro UW 5G A2341 Dual SIM TD-LTE US 256GB", + "url": "/v1/smartphones/iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-256gb" }, { - "slug": "xiaomi-mi-10-ultra", - "name": "Xiaomi Mi 10 Ultra", - "url": "/v1/smartphones/xiaomi-mi-10-ultra" + "slug": "iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-512gb", + "name": "iPhone 12 Pro UW 5G A2341 Dual SIM TD-LTE US 512GB", + "url": "/v1/smartphones/iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-512gb" }, { - "slug": "xiaomi-11-ultra", - "name": "Xiaomi Mi 11 Ultra", - "url": "/v1/smartphones/xiaomi-11-ultra" + "slug": "iphone-12-uw", + "name": "iPhone 12 UW", + "url": "/v1/smartphones/iphone-12-uw" }, { - "slug": "xiaomi-mi-5", - "name": "Xiaomi Mi 5", - "url": "/v1/smartphones/xiaomi-mi-5" + "slug": "iphone-12-uw-5g-a2172-dual-sim-td-lte-us-128gb", + "name": "iPhone 12 UW 5G A2172 Dual SIM TD-LTE US 128GB", + "url": "/v1/smartphones/iphone-12-uw-5g-a2172-dual-sim-td-lte-us-128gb" }, { - "slug": "xiaomi-mi-6", - "name": "Xiaomi Mi 6", - "url": "/v1/smartphones/xiaomi-mi-6" + "slug": "iphone-12-uw-5g-a2172-dual-sim-td-lte-us-256gb", + "name": "iPhone 12 UW 5G A2172 Dual SIM TD-LTE US 256GB", + "url": "/v1/smartphones/iphone-12-uw-5g-a2172-dual-sim-td-lte-us-256gb" }, { - "slug": "xiaomi-mi-8", - "name": "Xiaomi Mi 8", - "url": "/v1/smartphones/xiaomi-mi-8" + "slug": "iphone-12-uw-5g-a2172-dual-sim-td-lte-us-64gb", + "name": "iPhone 12 UW 5G A2172 Dual SIM TD-LTE US 64GB", + "url": "/v1/smartphones/iphone-12-uw-5g-a2172-dual-sim-td-lte-us-64gb" }, { - "slug": "xiaomi-mi-9", - "name": "Xiaomi Mi 9", - "url": "/v1/smartphones/xiaomi-mi-9" + "slug": "iphone-12-mini", + "name": "iPhone 12 mini", + "url": "/v1/smartphones/iphone-12-mini" }, { - "slug": "xperia-1-ii", - "name": "Xperia 1 II", - "url": "/v1/smartphones/xperia-1-ii" + "slug": "iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-128gb-a2401", + "name": "iPhone 12 mini 5G A2400 Dual SIM TD-LTE CN 128GB / A2401", + "url": "/v1/smartphones/iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-128gb-a2401" }, { - "slug": "xperia-1-iii", - "name": "Xperia 1 III", - "url": "/v1/smartphones/xperia-1-iii" + "slug": "iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-256gb-a2401", + "name": "iPhone 12 mini 5G A2400 Dual SIM TD-LTE CN 256GB / A2401", + "url": "/v1/smartphones/iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-256gb-a2401" }, { - "slug": "xperia-1-iv", - "name": "Xperia 1 IV", - "url": "/v1/smartphones/xperia-1-iv" + "slug": "iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-64gb-a2401", + "name": "iPhone 12 mini 5G A2400 Dual SIM TD-LTE CN 64GB / A2401", + "url": "/v1/smartphones/iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-64gb-a2401" }, { - "slug": "xperia-1-v", - "name": "Xperia 1 V", - "url": "/v1/smartphones/xperia-1-v" + "slug": "iphone-13", + "name": "iPhone 13", + "url": "/v1/smartphones/iphone-13" }, { - "slug": "xperia-1-vi", - "name": "Xperia 1 VI", - "url": "/v1/smartphones/xperia-1-vi" + "slug": "iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-128gb", + "name": "iPhone 13 5G A2631 Dual SIM TD-LTE JP CA MX 128GB", + "url": "/v1/smartphones/iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-128gb" }, { - "slug": "xperia-10-iii", - "name": "Xperia 10 III", - "url": "/v1/smartphones/xperia-10-iii" + "slug": "iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-256gb", + "name": "iPhone 13 5G A2631 Dual SIM TD-LTE JP CA MX 256GB", + "url": "/v1/smartphones/iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-256gb" }, { - "slug": "xperia-10-iii-lite", - "name": "Xperia 10 III Lite", - "url": "/v1/smartphones/xperia-10-iii-lite" + "slug": "iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-512gb", + "name": "iPhone 13 5G A2631 Dual SIM TD-LTE JP CA MX 512GB", + "url": "/v1/smartphones/iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-512gb" }, { - "slug": "xperia-10-iv", - "name": "Xperia 10 IV", - "url": "/v1/smartphones/xperia-10-iv" + "slug": "iphone-13-5g-a2633-global-dual-sim-td-lte-128gb", + "name": "iPhone 13 5G A2633 Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/iphone-13-5g-a2633-global-dual-sim-td-lte-128gb" }, { - "slug": "xperia-10-v", - "name": "Xperia 10 V", - "url": "/v1/smartphones/xperia-10-v" + "slug": "iphone-13-5g-a2633-global-dual-sim-td-lte-256gb", + "name": "iPhone 13 5G A2633 Global Dual SIM TD-LTE 256GB", + "url": "/v1/smartphones/iphone-13-5g-a2633-global-dual-sim-td-lte-256gb" }, { - "slug": "xperia-10-vi", - "name": "Xperia 10 VI", - "url": "/v1/smartphones/xperia-10-vi" + "slug": "iphone-13-5g-a2633-global-dual-sim-td-lte-512gb", + "name": "iPhone 13 5G A2633 Global Dual SIM TD-LTE 512GB", + "url": "/v1/smartphones/iphone-13-5g-a2633-global-dual-sim-td-lte-512gb" }, { - "slug": "xperia-5-ii", - "name": "Xperia 5 II", - "url": "/v1/smartphones/xperia-5-ii" + "slug": "iphone-13-5g-a2634-dual-sim-td-lte-cn-128gb", + "name": "iPhone 13 5G A2634 Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/iphone-13-5g-a2634-dual-sim-td-lte-cn-128gb" }, { - "slug": "xperia-5-iii", - "name": "Xperia 5 III", - "url": "/v1/smartphones/xperia-5-iii" + "slug": "iphone-13-5g-a2634-dual-sim-td-lte-cn-256gb", + "name": "iPhone 13 5G A2634 Dual SIM TD-LTE CN 256GB", + "url": "/v1/smartphones/iphone-13-5g-a2634-dual-sim-td-lte-cn-256gb" }, { - "slug": "xperia-5-iv", - "name": "Xperia 5 IV", - "url": "/v1/smartphones/xperia-5-iv" + "slug": "iphone-13-5g-a2634-dual-sim-td-lte-cn-512gb", + "name": "iPhone 13 5G A2634 Dual SIM TD-LTE CN 512GB", + "url": "/v1/smartphones/iphone-13-5g-a2634-dual-sim-td-lte-cn-512gb" }, { - "slug": "xperia-5-v", - "name": "Xperia 5 V", - "url": "/v1/smartphones/xperia-5-v" + "slug": "iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-128gb", + "name": "iPhone 13 5G A2635 Dual SIM TD-LTE RU KZ 128GB", + "url": "/v1/smartphones/iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-128gb" }, { - "slug": "xperia-5-vi", - "name": "Xperia 5 VI", - "url": "/v1/smartphones/xperia-5-vi" + "slug": "iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-256gb", + "name": "iPhone 13 5G A2635 Dual SIM TD-LTE RU KZ 256GB", + "url": "/v1/smartphones/iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-256gb" }, { - "slug": "xperia-ace-ii", - "name": "Xperia Ace II", - "url": "/v1/smartphones/xperia-ace-ii" + "slug": "iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-512gb", + "name": "iPhone 13 5G A2635 Dual SIM TD-LTE RU KZ 512GB", + "url": "/v1/smartphones/iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-512gb" }, { - "slug": "xperia-ace-iii", - "name": "Xperia Ace III", - "url": "/v1/smartphones/xperia-ace-iii" + "slug": "iphone-13-pro", + "name": "iPhone 13 Pro", + "url": "/v1/smartphones/iphone-13-pro" }, { - "slug": "xperia-l3", - "name": "Xperia L3", - "url": "/v1/smartphones/xperia-l3" + "slug": "iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-128gb", + "name": "iPhone 13 Pro 5G A2636 Dual SIM TD-LTE JP CA MX 128GB", + "url": "/v1/smartphones/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-128gb" }, { - "slug": "xperia-l4", - "name": "Xperia L4", - "url": "/v1/smartphones/xperia-l4" + "slug": "iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-1tb", + "name": "iPhone 13 Pro 5G A2636 Dual SIM TD-LTE JP CA MX 1TB", + "url": "/v1/smartphones/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-1tb" }, { - "slug": "xperia-pro", - "name": "Xperia Pro", - "url": "/v1/smartphones/xperia-pro" + "slug": "iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-256gb", + "name": "iPhone 13 Pro 5G A2636 Dual SIM TD-LTE JP CA MX 256GB", + "url": "/v1/smartphones/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-256gb" }, { - "slug": "xperia-pro-i-2021", - "name": "Xperia Pro-I 2021", - "url": "/v1/smartphones/xperia-pro-i-2021" + "slug": "iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-512gb", + "name": "iPhone 13 Pro 5G A2636 Dual SIM TD-LTE JP CA MX 512GB", + "url": "/v1/smartphones/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-512gb" }, { - "slug": "y100", - "name": "Y100", - "url": "/v1/smartphones/y100" + "slug": "iphone-13-pro-5g-a2638-global-dual-sim-td-lte-128gb", + "name": "iPhone 13 Pro 5G A2638 Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-128gb" }, { - "slug": "y100-5g", - "name": "Y100 5G", - "url": "/v1/smartphones/y100-5g" + "slug": "iphone-13-pro-5g-a2638-global-dual-sim-td-lte-1tb", + "name": "iPhone 13 Pro 5G A2638 Global Dual SIM TD-LTE 1TB", + "url": "/v1/smartphones/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-1tb" }, { - "slug": "y11", - "name": "Y11", - "url": "/v1/smartphones/y11" + "slug": "iphone-13-pro-5g-a2638-global-dual-sim-td-lte-256gb", + "name": "iPhone 13 Pro 5G A2638 Global Dual SIM TD-LTE 256GB", + "url": "/v1/smartphones/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-256gb" }, { - "slug": "y12s", - "name": "Y12s", - "url": "/v1/smartphones/y12s" + "slug": "iphone-13-pro-5g-a2638-global-dual-sim-td-lte-512gb", + "name": "iPhone 13 Pro 5G A2638 Global Dual SIM TD-LTE 512GB", + "url": "/v1/smartphones/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-512gb" }, { - "slug": "y200-gt", - "name": "Y200 GT", - "url": "/v1/smartphones/y200-gt" + "slug": "iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-128gb", + "name": "iPhone 13 Pro 5G A2639 Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-128gb" }, { - "slug": "y21", - "name": "Y21", - "url": "/v1/smartphones/y21" + "slug": "iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-1tb", + "name": "iPhone 13 Pro 5G A2639 Dual SIM TD-LTE CN 1TB", + "url": "/v1/smartphones/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-1tb" }, { - "slug": "y30", - "name": "Y30", - "url": "/v1/smartphones/y30" + "slug": "iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-256gb", + "name": "iPhone 13 Pro 5G A2639 Dual SIM TD-LTE CN 256GB", + "url": "/v1/smartphones/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-256gb" }, { - "slug": "y33s", - "name": "Y33s", - "url": "/v1/smartphones/y33s" + "slug": "iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-512gb", + "name": "iPhone 13 Pro 5G A2639 Dual SIM TD-LTE CN 512GB", + "url": "/v1/smartphones/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-512gb" }, { - "slug": "y5-2019", - "name": "Y5 2019", - "url": "/v1/smartphones/y5-2019" + "slug": "iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-128gb", + "name": "iPhone 13 Pro 5G A2640 Dual SIM TD-LTE RU KZ 128GB", + "url": "/v1/smartphones/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-128gb" }, { - "slug": "y53s", - "name": "Y53s", - "url": "/v1/smartphones/y53s" + "slug": "iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-1tb", + "name": "iPhone 13 Pro 5G A2640 Dual SIM TD-LTE RU KZ 1TB", + "url": "/v1/smartphones/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-1tb" }, { - "slug": "y5p-2020", - "name": "Y5p 2020", - "url": "/v1/smartphones/y5p-2020" + "slug": "iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-256gb", + "name": "iPhone 13 Pro 5G A2640 Dual SIM TD-LTE RU KZ 256GB", + "url": "/v1/smartphones/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-256gb" }, { - "slug": "y6-2019", - "name": "Y6 2019", - "url": "/v1/smartphones/y6-2019" + "slug": "iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-512gb", + "name": "iPhone 13 Pro 5G A2640 Dual SIM TD-LTE RU KZ 512GB", + "url": "/v1/smartphones/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-512gb" }, { - "slug": "y6-2019-lte", - "name": "Y6 2019 LTE", - "url": "/v1/smartphones/y6-2019-lte" + "slug": "iphone-13-pro-max", + "name": "iPhone 13 Pro Max", + "url": "/v1/smartphones/iphone-13-pro-max" }, { - "slug": "y6-prime-2019", - "name": "Y6 Prime 2019", - "url": "/v1/smartphones/y6-prime-2019" + "slug": "iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-128gb", + "name": "iPhone 13 Pro Max 5G A2641 Dual SIM TD-LTE JP CA MX 128GB", + "url": "/v1/smartphones/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-128gb" }, { - "slug": "y6-pro-2019", - "name": "Y6 Pro 2019", - "url": "/v1/smartphones/y6-pro-2019" + "slug": "iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-1tb", + "name": "iPhone 13 Pro Max 5G A2641 Dual SIM TD-LTE JP CA MX 1TB", + "url": "/v1/smartphones/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-1tb" }, { - "slug": "y6p-2020", - "name": "Y6p 2020", - "url": "/v1/smartphones/y6p-2020" + "slug": "iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-256gb", + "name": "iPhone 13 Pro Max 5G A2641 Dual SIM TD-LTE JP CA MX 256GB", + "url": "/v1/smartphones/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-256gb" }, { - "slug": "y6s-2019", - "name": "Y6s 2019", - "url": "/v1/smartphones/y6s-2019" + "slug": "iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-512gb", + "name": "iPhone 13 Pro Max 5G A2641 Dual SIM TD-LTE JP CA MX 512GB", + "url": "/v1/smartphones/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-512gb" }, { - "slug": "y75-5g", - "name": "Y75 5G", - "url": "/v1/smartphones/y75-5g" + "slug": "iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-128gb", + "name": "iPhone 13 Pro Max 5G A2643 Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-128gb" }, { - "slug": "y95", - "name": "Y95", - "url": "/v1/smartphones/y95" + "slug": "iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-1tb", + "name": "iPhone 13 Pro Max 5G A2643 Global Dual SIM TD-LTE 1TB", + "url": "/v1/smartphones/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-1tb" }, { - "slug": "y9a", - "name": "Y9a", - "url": "/v1/smartphones/y9a" + "slug": "iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-256gb", + "name": "iPhone 13 Pro Max 5G A2643 Global Dual SIM TD-LTE 256GB", + "url": "/v1/smartphones/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-256gb" }, { - "slug": "z1-pro", - "name": "Z1 Pro", - "url": "/v1/smartphones/z1-pro" + "slug": "iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-512gb", + "name": "iPhone 13 Pro Max 5G A2643 Global Dual SIM TD-LTE 512GB", + "url": "/v1/smartphones/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-512gb" }, { - "slug": "z3", - "name": "Z3", - "url": "/v1/smartphones/z3" + "slug": "iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-128gb", + "name": "iPhone 13 Pro Max 5G A2644 Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-128gb" }, { - "slug": "z5-pro", - "name": "Z5 Pro", - "url": "/v1/smartphones/z5-pro" + "slug": "iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-1tb", + "name": "iPhone 13 Pro Max 5G A2644 Dual SIM TD-LTE CN 1TB", + "url": "/v1/smartphones/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-1tb" }, { - "slug": "z6-pro", - "name": "Z6 Pro", - "url": "/v1/smartphones/z6-pro" + "slug": "iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-256gb", + "name": "iPhone 13 Pro Max 5G A2644 Dual SIM TD-LTE CN 256GB", + "url": "/v1/smartphones/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-256gb" }, { - "slug": "zenfone-7-2020-premium-edition", - "name": "ZenFone 7 2020 Premium Edition", - "url": "/v1/smartphones/zenfone-7-2020-premium-edition" + "slug": "iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-512gb", + "name": "iPhone 13 Pro Max 5G A2644 Dual SIM TD-LTE CN 512GB", + "url": "/v1/smartphones/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-512gb" }, { - "slug": "zenfone-7-2020-standard-edition", - "name": "ZenFone 7 2020 Standard Edition", - "url": "/v1/smartphones/zenfone-7-2020-standard-edition" + "slug": "iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-128gb", + "name": "iPhone 13 Pro Max 5G A2645 Dual SIM TD-LTE RU KZ 128GB", + "url": "/v1/smartphones/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-128gb" }, { - "slug": "zenfone-7-pro-2020", - "name": "ZenFone 7 Pro 2020", - "url": "/v1/smartphones/zenfone-7-pro-2020" + "slug": "iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-1tb", + "name": "iPhone 13 Pro Max 5G A2645 Dual SIM TD-LTE RU KZ 1TB", + "url": "/v1/smartphones/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-1tb" }, { - "slug": "zenfone-8-2021-premium-edition", - "name": "ZenFone 8 2021 Premium Edition", - "url": "/v1/smartphones/zenfone-8-2021-premium-edition" + "slug": "iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-256gb", + "name": "iPhone 13 Pro Max 5G A2645 Dual SIM TD-LTE RU KZ 256GB", + "url": "/v1/smartphones/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-256gb" }, { - "slug": "zenfone-8-2021-standard-edition", - "name": "ZenFone 8 2021 Standard Edition", - "url": "/v1/smartphones/zenfone-8-2021-standard-edition" + "slug": "iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-512gb", + "name": "iPhone 13 Pro Max 5G A2645 Dual SIM TD-LTE RU KZ 512GB", + "url": "/v1/smartphones/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-512gb" }, { - "slug": "zenfone-8-2021-top-edition", - "name": "ZenFone 8 2021 Top Edition", - "url": "/v1/smartphones/zenfone-8-2021-top-edition" + "slug": "iphone-13-pro-max-uw", + "name": "iPhone 13 Pro Max UW", + "url": "/v1/smartphones/iphone-13-pro-max-uw" }, { - "slug": "zenfone-8-flip-2021", - "name": "ZenFone 8 Flip 2021", - "url": "/v1/smartphones/zenfone-8-flip-2021" + "slug": "iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-128gb", + "name": "iPhone 13 Pro Max UW 5G A2484 Dual SIM TD-LTE US 128GB", + "url": "/v1/smartphones/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-128gb" }, { - "slug": "zenfone-8z-2021-standard-edition", - "name": "ZenFone 8z 2021 Standard Edition", - "url": "/v1/smartphones/zenfone-8z-2021-standard-edition" + "slug": "iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-1tb", + "name": "iPhone 13 Pro Max UW 5G A2484 Dual SIM TD-LTE US 1TB", + "url": "/v1/smartphones/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-1tb" }, { - "slug": "zenfone-9", - "name": "Zenfone 9", - "url": "/v1/smartphones/zenfone-9" + "slug": "iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-256gb", + "name": "iPhone 13 Pro Max UW 5G A2484 Dual SIM TD-LTE US 256GB", + "url": "/v1/smartphones/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-256gb" }, { - "slug": "zero-40", - "name": "Zero 40", - "url": "/v1/smartphones/zero-40" + "slug": "iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-512gb", + "name": "iPhone 13 Pro Max UW 5G A2484 Dual SIM TD-LTE US 512GB", + "url": "/v1/smartphones/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-512gb" }, { - "slug": "zero-40-5g", - "name": "Zero 40 5G", - "url": "/v1/smartphones/zero-40-5g" + "slug": "iphone-13-pro-uw", + "name": "iPhone 13 Pro UW", + "url": "/v1/smartphones/iphone-13-pro-uw" }, { - "slug": "zero-8", - "name": "Zero 8", - "url": "/v1/smartphones/zero-8" + "slug": "iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-128gb", + "name": "iPhone 13 Pro UW 5G A2483 Dual SIM TD-LTE US 128GB", + "url": "/v1/smartphones/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-128gb" }, { - "slug": "zero-8i", - "name": "Zero 8i", - "url": "/v1/smartphones/zero-8i" + "slug": "iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-1tb", + "name": "iPhone 13 Pro UW 5G A2483 Dual SIM TD-LTE US 1TB", + "url": "/v1/smartphones/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-1tb" }, { - "slug": "zero-flip", - "name": "Zero Flip", - "url": "/v1/smartphones/zero-flip" + "slug": "iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-256gb", + "name": "iPhone 13 Pro UW 5G A2483 Dual SIM TD-LTE US 256GB", + "url": "/v1/smartphones/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-256gb" }, { - "slug": "iphone-11", - "name": "iPhone 11", - "url": "/v1/smartphones/iphone-11" + "slug": "iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-512gb", + "name": "iPhone 13 Pro UW 5G A2483 Dual SIM TD-LTE US 512GB", + "url": "/v1/smartphones/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-512gb" }, { - "slug": "iphone-11-pro", - "name": "iPhone 11 Pro", - "url": "/v1/smartphones/iphone-11-pro" + "slug": "iphone-13-uw", + "name": "iPhone 13 UW", + "url": "/v1/smartphones/iphone-13-uw" }, { - "slug": "iphone-11-pro-max", - "name": "iPhone 11 Pro Max", - "url": "/v1/smartphones/iphone-11-pro-max" + "slug": "iphone-13-uw-5g-a2482-dual-sim-td-lte-us-128gb", + "name": "iPhone 13 UW 5G A2482 Dual SIM TD-LTE US 128GB", + "url": "/v1/smartphones/iphone-13-uw-5g-a2482-dual-sim-td-lte-us-128gb" }, { - "slug": "iphone-12", - "name": "iPhone 12", - "url": "/v1/smartphones/iphone-12" + "slug": "iphone-13-uw-5g-a2482-dual-sim-td-lte-us-256gb", + "name": "iPhone 13 UW 5G A2482 Dual SIM TD-LTE US 256GB", + "url": "/v1/smartphones/iphone-13-uw-5g-a2482-dual-sim-td-lte-us-256gb" }, { - "slug": "iphone-12-mini-uw", - "name": "iPhone 12 Mini UW", - "url": "/v1/smartphones/iphone-12-mini-uw" + "slug": "iphone-13-uw-5g-a2482-dual-sim-td-lte-us-512gb", + "name": "iPhone 13 UW 5G A2482 Dual SIM TD-LTE US 512GB", + "url": "/v1/smartphones/iphone-13-uw-5g-a2482-dual-sim-td-lte-us-512gb" }, { - "slug": "iphone-12-pro", - "name": "iPhone 12 Pro", - "url": "/v1/smartphones/iphone-12-pro" + "slug": "iphone-13-mini", + "name": "iPhone 13 mini", + "url": "/v1/smartphones/iphone-13-mini" }, { - "slug": "iphone-12-pro-max", - "name": "iPhone 12 Pro Max", - "url": "/v1/smartphones/iphone-12-pro-max" + "slug": "iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-128gb", + "name": "iPhone 13 mini 5G A2626 Dual SIM TD-LTE JP CA MX 128GB", + "url": "/v1/smartphones/iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-128gb" }, { - "slug": "iphone-12-pro-max-uw", - "name": "iPhone 12 Pro Max UW", - "url": "/v1/smartphones/iphone-12-pro-max-uw" + "slug": "iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-256gb", + "name": "iPhone 13 mini 5G A2626 Dual SIM TD-LTE JP CA MX 256GB", + "url": "/v1/smartphones/iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-256gb" }, { - "slug": "iphone-12-pro-uw", - "name": "iPhone 12 Pro UW", - "url": "/v1/smartphones/iphone-12-pro-uw" + "slug": "iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-512gb", + "name": "iPhone 13 mini 5G A2626 Dual SIM TD-LTE JP CA MX 512GB", + "url": "/v1/smartphones/iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-512gb" }, { - "slug": "iphone-12-uw", - "name": "iPhone 12 UW", - "url": "/v1/smartphones/iphone-12-uw" + "slug": "iphone-13-mini-5g-a2628-global-dual-sim-td-lte-128gb", + "name": "iPhone 13 mini 5G A2628 Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/iphone-13-mini-5g-a2628-global-dual-sim-td-lte-128gb" }, { - "slug": "iphone-12-mini", - "name": "iPhone 12 mini", - "url": "/v1/smartphones/iphone-12-mini" + "slug": "iphone-13-mini-5g-a2628-global-dual-sim-td-lte-256gb", + "name": "iPhone 13 mini 5G A2628 Global Dual SIM TD-LTE 256GB", + "url": "/v1/smartphones/iphone-13-mini-5g-a2628-global-dual-sim-td-lte-256gb" }, { - "slug": "iphone-13", - "name": "iPhone 13", - "url": "/v1/smartphones/iphone-13" + "slug": "iphone-13-mini-5g-a2628-global-dual-sim-td-lte-512gb", + "name": "iPhone 13 mini 5G A2628 Global Dual SIM TD-LTE 512GB", + "url": "/v1/smartphones/iphone-13-mini-5g-a2628-global-dual-sim-td-lte-512gb" }, { - "slug": "iphone-13-pro", - "name": "iPhone 13 Pro", - "url": "/v1/smartphones/iphone-13-pro" + "slug": "iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-128gb", + "name": "iPhone 13 mini 5G A2629 Dual SIM TD-LTE CN 128GB", + "url": "/v1/smartphones/iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-128gb" }, { - "slug": "iphone-13-pro-max", - "name": "iPhone 13 Pro Max", - "url": "/v1/smartphones/iphone-13-pro-max" + "slug": "iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-256gb", + "name": "iPhone 13 mini 5G A2629 Dual SIM TD-LTE CN 256GB", + "url": "/v1/smartphones/iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-256gb" }, { - "slug": "iphone-13-pro-max-uw", - "name": "iPhone 13 Pro Max UW", - "url": "/v1/smartphones/iphone-13-pro-max-uw" + "slug": "iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-512gb", + "name": "iPhone 13 mini 5G A2629 Dual SIM TD-LTE CN 512GB", + "url": "/v1/smartphones/iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-512gb" }, { - "slug": "iphone-13-pro-uw", - "name": "iPhone 13 Pro UW", - "url": "/v1/smartphones/iphone-13-pro-uw" + "slug": "iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-128gb", + "name": "iPhone 13 mini 5G A2630 Dual SIM TD-LTE RU KZ 128GB", + "url": "/v1/smartphones/iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-128gb" }, { - "slug": "iphone-13-uw", - "name": "iPhone 13 UW", - "url": "/v1/smartphones/iphone-13-uw" + "slug": "iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-256gb", + "name": "iPhone 13 mini 5G A2630 Dual SIM TD-LTE RU KZ 256GB", + "url": "/v1/smartphones/iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-256gb" }, { - "slug": "iphone-13-mini", - "name": "iPhone 13 mini", - "url": "/v1/smartphones/iphone-13-mini" + "slug": "iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-512gb", + "name": "iPhone 13 mini 5G A2630 Dual SIM TD-LTE RU KZ 512GB", + "url": "/v1/smartphones/iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-512gb" }, { "slug": "iphone-13-mini-uw", "name": "iPhone 13 mini UW", "url": "/v1/smartphones/iphone-13-mini-uw" }, + { + "slug": "iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-128gb", + "name": "iPhone 13 mini UW 5G A2481 Dual SIM TD-LTE US 128GB", + "url": "/v1/smartphones/iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-128gb" + }, + { + "slug": "iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-256gb", + "name": "iPhone 13 mini UW 5G A2481 Dual SIM TD-LTE US 256GB", + "url": "/v1/smartphones/iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-256gb" + }, + { + "slug": "iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-512gb", + "name": "iPhone 13 mini UW 5G A2481 Dual SIM TD-LTE US 512GB", + "url": "/v1/smartphones/iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-512gb" + }, { "slug": "iphone-14", "name": "iPhone 14", @@ -7311,11 +32046,61 @@ "name": "iPhone 8", "url": "/v1/smartphones/iphone-8" }, + { + "slug": "iphone-8-a1863-td-lte-128gb", + "name": "iPhone 8 A1863 TD-LTE 128GB", + "url": "/v1/smartphones/iphone-8-a1863-td-lte-128gb" + }, + { + "slug": "iphone-8-a1905-td-lte-128gb", + "name": "iPhone 8 A1905 TD-LTE 128GB", + "url": "/v1/smartphones/iphone-8-a1905-td-lte-128gb" + }, + { + "slug": "iphone-8-a1906-td-lte-jp-128gb", + "name": "iPhone 8 A1906 TD-LTE JP 128GB", + "url": "/v1/smartphones/iphone-8-a1906-td-lte-jp-128gb" + }, + { + "slug": "iphone-8-a1907-td-lte-cn-128gb", + "name": "iPhone 8 A1907 TD-LTE CN 128GB", + "url": "/v1/smartphones/iphone-8-a1907-td-lte-cn-128gb" + }, + { + "slug": "iphone-8-a1907-td-lte-cn-64gb", + "name": "iPhone 8 A1907 TD-LTE CN 64GB", + "url": "/v1/smartphones/iphone-8-a1907-td-lte-cn-64gb" + }, { "slug": "iphone-8-plus", "name": "iPhone 8 Plus", "url": "/v1/smartphones/iphone-8-plus" }, + { + "slug": "iphone-8-plus-a1864-td-lte-128gb", + "name": "iPhone 8 Plus A1864 TD-LTE 128GB", + "url": "/v1/smartphones/iphone-8-plus-a1864-td-lte-128gb" + }, + { + "slug": "iphone-8-plus-a1897-td-lte-128gb", + "name": "iPhone 8 Plus A1897 TD-LTE 128GB", + "url": "/v1/smartphones/iphone-8-plus-a1897-td-lte-128gb" + }, + { + "slug": "iphone-8-plus-a1898-td-lte-jp-128gb", + "name": "iPhone 8 Plus A1898 TD-LTE JP 128GB", + "url": "/v1/smartphones/iphone-8-plus-a1898-td-lte-jp-128gb" + }, + { + "slug": "iphone-8-plus-a1899-td-lte-cn-128gb", + "name": "iPhone 8 Plus A1899 TD-LTE CN 128GB", + "url": "/v1/smartphones/iphone-8-plus-a1899-td-lte-cn-128gb" + }, + { + "slug": "iphone-8-plus-a1899-td-lte-cn-64gb", + "name": "iPhone 8 Plus A1899 TD-LTE CN 64GB", + "url": "/v1/smartphones/iphone-8-plus-a1899-td-lte-cn-64gb" + }, { "slug": "iphone-air", "name": "iPhone Air", @@ -7346,6 +32131,76 @@ "name": "iPhone SE 2020 2nd gen", "url": "/v1/smartphones/iphone-se-2020-2nd-gen" }, + { + "slug": "iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-128gb", + "name": "iPhone SE 2020 2nd gen A2275 Dual SIM TD-LTE NA 128GB", + "url": "/v1/smartphones/iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-128gb" + }, + { + "slug": "iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-256gb", + "name": "iPhone SE 2020 2nd gen A2275 Dual SIM TD-LTE NA 256GB", + "url": "/v1/smartphones/iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-256gb" + }, + { + "slug": "iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-64gb", + "name": "iPhone SE 2020 2nd gen A2275 Dual SIM TD-LTE NA 64GB", + "url": "/v1/smartphones/iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-64gb" + }, + { + "slug": "iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-128gb", + "name": "iPhone SE 2020 2nd gen A2296 Global Dual SIM TD-LTE 128GB", + "url": "/v1/smartphones/iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-128gb" + }, + { + "slug": "iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-256gb", + "name": "iPhone SE 2020 2nd gen A2296 Global Dual SIM TD-LTE 256GB", + "url": "/v1/smartphones/iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-256gb" + }, + { + "slug": "iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-64gb", + "name": "iPhone SE 2020 2nd gen A2296 Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-64gb" + }, + { + "slug": "iphone-se-2020-2nd-gen-a2298-td-lte-cn-128gb-a2297", + "name": "iPhone SE 2020 2nd gen A2298 TD-LTE CN 128GB / A2297", + "url": "/v1/smartphones/iphone-se-2020-2nd-gen-a2298-td-lte-cn-128gb-a2297" + }, + { + "slug": "iphone-se-2020-2nd-gen-a2298-td-lte-cn-256gb-a2297", + "name": "iPhone SE 2020 2nd gen A2298 TD-LTE CN 256GB / A2297", + "url": "/v1/smartphones/iphone-se-2020-2nd-gen-a2298-td-lte-cn-256gb-a2297" + }, + { + "slug": "iphone-se-2020-2nd-gen-a2298-td-lte-cn-64gb-a2297", + "name": "iPhone SE 2020 2nd gen A2298 TD-LTE CN 64GB / A2297", + "url": "/v1/smartphones/iphone-se-2020-2nd-gen-a2298-td-lte-cn-64gb-a2297" + }, + { + "slug": "iphone-se-5g-2022-3rd-gen-a2595-dual-sim-td-lte-na-64gb", + "name": "iPhone SE 5G 2022 3rd gen A2595 Dual SIM TD-LTE NA 64GB", + "url": "/v1/smartphones/iphone-se-5g-2022-3rd-gen-a2595-dual-sim-td-lte-na-64gb" + }, + { + "slug": "iphone-se-5g-2022-3rd-gen-a2782-dual-sim-td-lte-jp-64gb", + "name": "iPhone SE 5G 2022 3rd gen A2782 Dual SIM TD-LTE JP 64GB", + "url": "/v1/smartphones/iphone-se-5g-2022-3rd-gen-a2782-dual-sim-td-lte-jp-64gb" + }, + { + "slug": "iphone-se-5g-2022-3rd-gen-a2783-global-dual-sim-td-lte-64gb", + "name": "iPhone SE 5G 2022 3rd gen A2783 Global Dual SIM TD-LTE 64GB", + "url": "/v1/smartphones/iphone-se-5g-2022-3rd-gen-a2783-global-dual-sim-td-lte-64gb" + }, + { + "slug": "iphone-se-5g-2022-3rd-gen-a2784-dual-sim-td-lte-ru-kz-64gb", + "name": "iPhone SE 5G 2022 3rd gen A2784 Dual SIM TD-LTE RU KZ 64GB", + "url": "/v1/smartphones/iphone-se-5g-2022-3rd-gen-a2784-dual-sim-td-lte-ru-kz-64gb" + }, + { + "slug": "iphone-se-5g-2022-3rd-gen-a2785-dual-sim-td-lte-cn-64gb", + "name": "iPhone SE 5G 2022 3rd gen A2785 Dual SIM TD-LTE CN 64GB", + "url": "/v1/smartphones/iphone-se-5g-2022-3rd-gen-a2785-dual-sim-td-lte-cn-64gb" + }, { "slug": "iphone-x", "name": "iPhone X", @@ -7356,6 +32211,66 @@ "name": "iPhone XR", "url": "/v1/smartphones/iphone-xr" }, + { + "slug": "iphone-xr-a1984-td-lte-na-128gb", + "name": "iPhone XR A1984 TD-LTE NA 128GB", + "url": "/v1/smartphones/iphone-xr-a1984-td-lte-na-128gb" + }, + { + "slug": "iphone-xr-a1984-td-lte-na-256gb", + "name": "iPhone XR A1984 TD-LTE NA 256GB", + "url": "/v1/smartphones/iphone-xr-a1984-td-lte-na-256gb" + }, + { + "slug": "iphone-xr-a1984-td-lte-na-64gb", + "name": "iPhone XR A1984 TD-LTE NA 64GB", + "url": "/v1/smartphones/iphone-xr-a1984-td-lte-na-64gb" + }, + { + "slug": "iphone-xr-a2105-global-td-lte-128gb", + "name": "iPhone XR A2105 Global TD-LTE 128GB", + "url": "/v1/smartphones/iphone-xr-a2105-global-td-lte-128gb" + }, + { + "slug": "iphone-xr-a2105-global-td-lte-256gb", + "name": "iPhone XR A2105 Global TD-LTE 256GB", + "url": "/v1/smartphones/iphone-xr-a2105-global-td-lte-256gb" + }, + { + "slug": "iphone-xr-a2105-global-td-lte-64gb", + "name": "iPhone XR A2105 Global TD-LTE 64GB", + "url": "/v1/smartphones/iphone-xr-a2105-global-td-lte-64gb" + }, + { + "slug": "iphone-xr-a2106-td-lte-jp-128gb", + "name": "iPhone XR A2106 TD-LTE JP 128GB", + "url": "/v1/smartphones/iphone-xr-a2106-td-lte-jp-128gb" + }, + { + "slug": "iphone-xr-a2106-td-lte-jp-256gb", + "name": "iPhone XR A2106 TD-LTE JP 256GB", + "url": "/v1/smartphones/iphone-xr-a2106-td-lte-jp-256gb" + }, + { + "slug": "iphone-xr-a2106-td-lte-jp-64gb", + "name": "iPhone XR A2106 TD-LTE JP 64GB", + "url": "/v1/smartphones/iphone-xr-a2106-td-lte-jp-64gb" + }, + { + "slug": "iphone-xr-a2108-dual-sim-td-lte-cn-128gb-a2107", + "name": "iPhone XR A2108 Dual SIM TD-LTE CN 128GB / A2107", + "url": "/v1/smartphones/iphone-xr-a2108-dual-sim-td-lte-cn-128gb-a2107" + }, + { + "slug": "iphone-xr-a2108-dual-sim-td-lte-cn-256gb-a2107", + "name": "iPhone XR A2108 Dual SIM TD-LTE CN 256GB / A2107", + "url": "/v1/smartphones/iphone-xr-a2108-dual-sim-td-lte-cn-256gb-a2107" + }, + { + "slug": "iphone-xr-a2108-dual-sim-td-lte-cn-64gb-a2107", + "name": "iPhone XR A2108 Dual SIM TD-LTE CN 64GB / A2107", + "url": "/v1/smartphones/iphone-xr-a2108-dual-sim-td-lte-cn-64gb-a2107" + }, { "slug": "iphone-xs", "name": "iPhone XS", @@ -7366,6 +32281,131 @@ "name": "iPhone XS Max", "url": "/v1/smartphones/iphone-xs-max" }, + { + "slug": "iphone-xs-a1920-td-lte-na-256gb", + "name": "iPhone Xs A1920 TD-LTE NA 256GB", + "url": "/v1/smartphones/iphone-xs-a1920-td-lte-na-256gb" + }, + { + "slug": "iphone-xs-a1920-td-lte-na-512gb", + "name": "iPhone Xs A1920 TD-LTE NA 512GB", + "url": "/v1/smartphones/iphone-xs-a1920-td-lte-na-512gb" + }, + { + "slug": "iphone-xs-a1920-td-lte-na-64gb", + "name": "iPhone Xs A1920 TD-LTE NA 64GB", + "url": "/v1/smartphones/iphone-xs-a1920-td-lte-na-64gb" + }, + { + "slug": "iphone-xs-a2097-global-td-lte-256gb", + "name": "iPhone Xs A2097 Global TD-LTE 256GB", + "url": "/v1/smartphones/iphone-xs-a2097-global-td-lte-256gb" + }, + { + "slug": "iphone-xs-a2097-global-td-lte-512gb", + "name": "iPhone Xs A2097 Global TD-LTE 512GB", + "url": "/v1/smartphones/iphone-xs-a2097-global-td-lte-512gb" + }, + { + "slug": "iphone-xs-a2097-global-td-lte-64gb", + "name": "iPhone Xs A2097 Global TD-LTE 64GB", + "url": "/v1/smartphones/iphone-xs-a2097-global-td-lte-64gb" + }, + { + "slug": "iphone-xs-a2098-td-lte-jp-256gb", + "name": "iPhone Xs A2098 TD-LTE JP 256GB", + "url": "/v1/smartphones/iphone-xs-a2098-td-lte-jp-256gb" + }, + { + "slug": "iphone-xs-a2098-td-lte-jp-512gb", + "name": "iPhone Xs A2098 TD-LTE JP 512GB", + "url": "/v1/smartphones/iphone-xs-a2098-td-lte-jp-512gb" + }, + { + "slug": "iphone-xs-a2098-td-lte-jp-64gb", + "name": "iPhone Xs A2098 TD-LTE JP 64GB", + "url": "/v1/smartphones/iphone-xs-a2098-td-lte-jp-64gb" + }, + { + "slug": "iphone-xs-a2099-dual-sim-td-lte-cn-64gb", + "name": "iPhone Xs A2099 Dual SIM TD-LTE CN 64GB", + "url": "/v1/smartphones/iphone-xs-a2099-dual-sim-td-lte-cn-64gb" + }, + { + "slug": "iphone-xs-a2100-dual-sim-td-lte-cn-256gb", + "name": "iPhone Xs A2100 Dual SIM TD-LTE CN 256GB", + "url": "/v1/smartphones/iphone-xs-a2100-dual-sim-td-lte-cn-256gb" + }, + { + "slug": "iphone-xs-a2100-dual-sim-td-lte-cn-512gb", + "name": "iPhone Xs A2100 Dual SIM TD-LTE CN 512GB", + "url": "/v1/smartphones/iphone-xs-a2100-dual-sim-td-lte-cn-512gb" + }, + { + "slug": "iphone-xs-a2100-dual-sim-td-lte-cn-64gb", + "name": "iPhone Xs A2100 Dual SIM TD-LTE CN 64GB", + "url": "/v1/smartphones/iphone-xs-a2100-dual-sim-td-lte-cn-64gb" + }, + { + "slug": "iphone-xs-max-a1921-td-lte-na-256gb-a2103", + "name": "iPhone Xs Max A1921 TD-LTE NA 256GB / A2103", + "url": "/v1/smartphones/iphone-xs-max-a1921-td-lte-na-256gb-a2103" + }, + { + "slug": "iphone-xs-max-a1921-td-lte-na-512gb-a2103", + "name": "iPhone Xs Max A1921 TD-LTE NA 512GB / A2103", + "url": "/v1/smartphones/iphone-xs-max-a1921-td-lte-na-512gb-a2103" + }, + { + "slug": "iphone-xs-max-a1921-td-lte-na-64gb-a2103", + "name": "iPhone Xs Max A1921 TD-LTE NA 64GB / A2103", + "url": "/v1/smartphones/iphone-xs-max-a1921-td-lte-na-64gb-a2103" + }, + { + "slug": "iphone-xs-max-a2101-global-td-lte-256gb", + "name": "iPhone Xs Max A2101 Global TD-LTE 256GB", + "url": "/v1/smartphones/iphone-xs-max-a2101-global-td-lte-256gb" + }, + { + "slug": "iphone-xs-max-a2101-global-td-lte-512gb", + "name": "iPhone Xs Max A2101 Global TD-LTE 512GB", + "url": "/v1/smartphones/iphone-xs-max-a2101-global-td-lte-512gb" + }, + { + "slug": "iphone-xs-max-a2101-global-td-lte-64gb", + "name": "iPhone Xs Max A2101 Global TD-LTE 64GB", + "url": "/v1/smartphones/iphone-xs-max-a2101-global-td-lte-64gb" + }, + { + "slug": "iphone-xs-max-a2102-td-lte-jp-256gb", + "name": "iPhone Xs Max A2102 TD-LTE JP 256GB", + "url": "/v1/smartphones/iphone-xs-max-a2102-td-lte-jp-256gb" + }, + { + "slug": "iphone-xs-max-a2102-td-lte-jp-512gb", + "name": "iPhone Xs Max A2102 TD-LTE JP 512GB", + "url": "/v1/smartphones/iphone-xs-max-a2102-td-lte-jp-512gb" + }, + { + "slug": "iphone-xs-max-a2102-td-lte-jp-64gb", + "name": "iPhone Xs Max A2102 TD-LTE JP 64GB", + "url": "/v1/smartphones/iphone-xs-max-a2102-td-lte-jp-64gb" + }, + { + "slug": "iphone-xs-max-a2104-dual-sim-td-lte-cn-256gb", + "name": "iPhone Xs Max A2104 Dual SIM TD-LTE CN 256GB", + "url": "/v1/smartphones/iphone-xs-max-a2104-dual-sim-td-lte-cn-256gb" + }, + { + "slug": "iphone-xs-max-a2104-dual-sim-td-lte-cn-512gb", + "name": "iPhone Xs Max A2104 Dual SIM TD-LTE CN 512GB", + "url": "/v1/smartphones/iphone-xs-max-a2104-dual-sim-td-lte-cn-512gb" + }, + { + "slug": "iphone-xs-max-a2104-dual-sim-td-lte-cn-64gb", + "name": "iPhone Xs Max A2104 Dual SIM TD-LTE CN 64GB", + "url": "/v1/smartphones/iphone-xs-max-a2104-dual-sim-td-lte-cn-64gb" + }, { "slug": "iqoo-12", "name": "iQOO 12", @@ -7381,6 +32421,101 @@ "name": "iQOO Neo 11", "url": "/v1/smartphones/iqoo-neo-11" }, + { + "slug": "iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-128gb-v1936a", + "name": "iQOO Neo 855 Premium Edition Dual SIM TD-LTE CN 128GB V1936A", + "url": "/v1/smartphones/iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-128gb-v1936a" + }, + { + "slug": "iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-256gb-v1936a", + "name": "iQOO Neo 855 Premium Edition Dual SIM TD-LTE CN 256GB V1936A", + "url": "/v1/smartphones/iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-256gb-v1936a" + }, + { + "slug": "iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-256gb-v1936t", + "name": "iQOO Neo 855 Premium Edition Dual SIM TD-LTE CN 256GB V1936T", + "url": "/v1/smartphones/iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-256gb-v1936t" + }, + { + "slug": "iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-128gb-v1936a", + "name": "iQOO Neo 855 Standard Edition Dual SIM TD-LTE CN 128GB V1936A", + "url": "/v1/smartphones/iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-128gb-v1936a" + }, + { + "slug": "iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-128gb-v1936t", + "name": "iQOO Neo 855 Standard Edition Dual SIM TD-LTE CN 128GB V1936T", + "url": "/v1/smartphones/iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-128gb-v1936t" + }, + { + "slug": "iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-64gb-v1936a", + "name": "iQOO Neo 855 Standard Edition Dual SIM TD-LTE CN 64GB V1936A", + "url": "/v1/smartphones/iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-64gb-v1936a" + }, + { + "slug": "iqoo-neo-855s-racing-premium-edition-dual-sim-td-lte-cn-128gb-v1936al", + "name": "iQOO Neo 855S Racing Premium Edition Dual SIM TD-LTE CN 128GB V1936AL", + "url": "/v1/smartphones/iqoo-neo-855s-racing-premium-edition-dual-sim-td-lte-cn-128gb-v1936al" + }, + { + "slug": "iqoo-neo-855s-racing-premium-edition-dual-sim-td-lte-cn-128gb-v1936tl", + "name": "iQOO Neo 855S Racing Premium Edition Dual SIM TD-LTE CN 128GB V1936TL", + "url": "/v1/smartphones/iqoo-neo-855s-racing-premium-edition-dual-sim-td-lte-cn-128gb-v1936tl" + }, + { + "slug": "iqoo-neo-855s-racing-standard-edition-dual-sim-td-lte-cn-128gb-v1936al", + "name": "iQOO Neo 855S Racing Standard Edition Dual SIM TD-LTE CN 128GB V1936AL", + "url": "/v1/smartphones/iqoo-neo-855s-racing-standard-edition-dual-sim-td-lte-cn-128gb-v1936al" + }, + { + "slug": "iqoo-neo-855s-racing-standard-edition-dual-sim-td-lte-cn-128gb-v1936tl", + "name": "iQOO Neo 855S Racing Standard Edition Dual SIM TD-LTE CN 128GB V1936TL", + "url": "/v1/smartphones/iqoo-neo-855s-racing-standard-edition-dual-sim-td-lte-cn-128gb-v1936tl" + }, + { + "slug": "iqoo-neo-premium-edition-dual-sim-td-lte-cn-128gb-v1914a", + "name": "iQOO Neo Premium Edition Dual SIM TD-LTE CN 128GB V1914A", + "url": "/v1/smartphones/iqoo-neo-premium-edition-dual-sim-td-lte-cn-128gb-v1914a" + }, + { + "slug": "iqoo-neo-premium-edition-dual-sim-td-lte-cn-128gb-v1914t", + "name": "iQOO Neo Premium Edition Dual SIM TD-LTE CN 128GB V1914T", + "url": "/v1/smartphones/iqoo-neo-premium-edition-dual-sim-td-lte-cn-128gb-v1914t" + }, + { + "slug": "iqoo-neo-premium-edition-dual-sim-td-lte-cn-64gb-v1914a", + "name": "iQOO Neo Premium Edition Dual SIM TD-LTE CN 64GB V1914A", + "url": "/v1/smartphones/iqoo-neo-premium-edition-dual-sim-td-lte-cn-64gb-v1914a" + }, + { + "slug": "iqoo-neo-standard-edition-dual-sim-td-lte-cn-128gb-v1914a", + "name": "iQOO Neo Standard Edition Dual SIM TD-LTE CN 128GB V1914A", + "url": "/v1/smartphones/iqoo-neo-standard-edition-dual-sim-td-lte-cn-128gb-v1914a" + }, + { + "slug": "iqoo-neo-standard-edition-dual-sim-td-lte-cn-64gb-v1914a", + "name": "iQOO Neo Standard Edition Dual SIM TD-LTE CN 64GB V1914A", + "url": "/v1/smartphones/iqoo-neo-standard-edition-dual-sim-td-lte-cn-64gb-v1914a" + }, + { + "slug": "it-wimax-2-lgv36", + "name": "it WiMAX 2+ LGV36", + "url": "/v1/smartphones/it-wimax-2-lgv36" + }, + { + "slug": "mblu-e3-dual-sim-td-lte-cn-m851m-128gb", + "name": "mblu E3 Dual SIM TD-LTE CN M851M 128GB", + "url": "/v1/smartphones/mblu-e3-dual-sim-td-lte-cn-m851m-128gb" + }, + { + "slug": "mblu-e3-dual-sim-td-lte-cn-m851q-128gb", + "name": "mblu E3 Dual SIM TD-LTE CN M851Q 128GB", + "url": "/v1/smartphones/mblu-e3-dual-sim-td-lte-cn-m851q-128gb" + }, + { + "slug": "mblu-e3-dual-sim-td-lte-cn-m851q-64gb", + "name": "mblu E3 Dual SIM TD-LTE CN M851Q 64GB", + "url": "/v1/smartphones/mblu-e3-dual-sim-td-lte-cn-m851q-64gb" + }, { "slug": "nova-10", "name": "nova 10", @@ -7406,11 +32541,31 @@ "name": "nova Y60 2021", "url": "/v1/smartphones/nova-y60-2021" }, + { + "slug": "nova-y60-2021-global-dual-sim-td-lte-64gb-wkg-lx9a-wkg-l29a", + "name": "nova Y60 2021 Global Dual SIM TD-LTE 64GB WKG-LX9A / WKG-L29A", + "url": "/v1/smartphones/nova-y60-2021-global-dual-sim-td-lte-64gb-wkg-lx9a-wkg-l29a" + }, + { + "slug": "nova-y60-2021-global-td-lte-64gb-wkg-l09a", + "name": "nova Y60 2021 Global TD-LTE 64GB WKG-L09A", + "url": "/v1/smartphones/nova-y60-2021-global-td-lte-64gb-wkg-l09a" + }, { "slug": "realme-1", "name": "realme 1", "url": "/v1/smartphones/realme-1" }, + { + "slug": "realme-1-dual-sim-td-lte-in-128gb-cph1861-f7-youth", + "name": "realme 1 Dual SIM TD-LTE IN 128GB CPH1861 / F7 Youth", + "url": "/v1/smartphones/realme-1-dual-sim-td-lte-in-128gb-cph1861-f7-youth" + }, + { + "slug": "realme-1-dual-sim-td-lte-in-32gb-cph1861-f7-youth", + "name": "realme 1 Dual SIM TD-LTE IN 32GB CPH1861 / F7 Youth", + "url": "/v1/smartphones/realme-1-dual-sim-td-lte-in-32gb-cph1861-f7-youth" + }, { "slug": "realme-10-pro-plus", "name": "realme 10 Pro+", @@ -7451,6 +32606,21 @@ "name": "realme GT Neo 5", "url": "/v1/smartphones/realme-gt-neo-5" }, + { + "slug": "simple-sumaho-4-td-lte", + "name": "simple sumaho 4 TD-LTE", + "url": "/v1/smartphones/simple-sumaho-4-td-lte" + }, + { + "slug": "style2-td-lte-jp-l-01l", + "name": "style2 TD-LTE JP L-01L", + "url": "/v1/smartphones/style2-td-lte-jp-l-01l" + }, + { + "slug": "style3-td-lte-jp-l-41a", + "name": "style3 TD-LTE JP L-41A", + "url": "/v1/smartphones/style3-td-lte-jp-l-41a" + }, { "slug": "vivo-v29", "name": "vivo V29", @@ -7495,6 +32665,61 @@ "slug": "vivo-x90-pro", "name": "vivo X90 Pro", "url": "/v1/smartphones/vivo-x90-pro" + }, + { + "slug": "vivo-y31s-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2054a", + "name": "vivo Y31s 5G Premium Edition Dual SIM TD-LTE CN 128GB V2054A", + "url": "/v1/smartphones/vivo-y31s-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2054a" + }, + { + "slug": "vivo-y31s-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2054a", + "name": "vivo Y31s 5G Standard Edition Dual SIM TD-LTE CN 128GB V2054A", + "url": "/v1/smartphones/vivo-y31s-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2054a" + }, + { + "slug": "vivo-y52s-t1-version-5g-dual-sim-td-lte-cn-128gb-v2054a", + "name": "vivo Y52s t1 version 5G Dual SIM TD-LTE CN 128GB V2054A", + "url": "/v1/smartphones/vivo-y52s-t1-version-5g-dual-sim-td-lte-cn-128gb-v2054a" + }, + { + "slug": "vivo-y52s-t1-version-5g-dual-sim-td-lte-cn-256gb-v2054a", + "name": "vivo Y52s t1 version 5G Dual SIM TD-LTE CN 256GB V2054A", + "url": "/v1/smartphones/vivo-y52s-t1-version-5g-dual-sim-td-lte-cn-256gb-v2054a" + }, + { + "slug": "vivo-y53s-5g-dual-sim-td-lte-cn-128gb-v2111a", + "name": "vivo Y53s 5G Dual SIM TD-LTE CN 128GB V2111A", + "url": "/v1/smartphones/vivo-y53s-5g-dual-sim-td-lte-cn-128gb-v2111a" + }, + { + "slug": "vivo-y53s-5g-dual-sim-td-lte-cn-256gb-v2111a", + "name": "vivo Y53s 5G Dual SIM TD-LTE CN 256GB V2111A", + "url": "/v1/smartphones/vivo-y53s-5g-dual-sim-td-lte-cn-256gb-v2111a" + }, + { + "slug": "vivo-iqoo-8-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2136a", + "name": "vivo iQOO 8 5G Premium Edition Dual SIM TD-LTE CN 256GB V2136A", + "url": "/v1/smartphones/vivo-iqoo-8-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2136a" + }, + { + "slug": "vivo-iqoo-8-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2136a", + "name": "vivo iQOO 8 5G Standard Edition Dual SIM TD-LTE CN 128GB V2136A", + "url": "/v1/smartphones/vivo-iqoo-8-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2136a" + }, + { + "slug": "vivo-iqoo-8-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2141a", + "name": "vivo iQOO 8 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB V2141A", + "url": "/v1/smartphones/vivo-iqoo-8-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2141a" + }, + { + "slug": "vivo-iqoo-8-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2141a", + "name": "vivo iQOO 8 Pro 5G Premium Edition Dual SIM TD-LTE CN 512GB V2141A", + "url": "/v1/smartphones/vivo-iqoo-8-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2141a" + }, + { + "slug": "vivo-iqoo-8-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2141a", + "name": "vivo iQOO 8 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB V2141A", + "url": "/v1/smartphones/vivo-iqoo-8-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2141a" } ] } diff --git a/site/public/v1/smartphones/infinity-h11-pro-dual-sim-td-lte/index.json b/site/public/v1/smartphones/infinity-h11-pro-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..9db3fb0efc2 --- /dev/null +++ b/site/public/v1/smartphones/infinity-h11-pro-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 624, + "slug": "infinity-h11-pro-dual-sim-td-lte", + "name": "Infinity H11 Pro Dual SIM TD-LTE", + "brand": { + "id": 14, + "slug": "hisense", + "name": "Hisense", + "country": "CN", + "url": "/v1/brands/hisense" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2018-03-03", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 20.2 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 5.0, + "battery": 6.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.191933", + "updated_at": "2026-06-19T00:43:44.191933" +} diff --git a/site/public/v1/smartphones/infinity-h11-pro-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/infinity-h11-pro-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..cedc6362a0f --- /dev/null +++ b/site/public/v1/smartphones/infinity-h11-pro-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 5.0, + "battery": 6.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-a2111-dual-sim-td-lte-na-128gb/index.json b/site/public/v1/smartphones/iphone-11-a2111-dual-sim-td-lte-na-128gb/index.json new file mode 100644 index 00000000000..5a83d2a116c --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-a2111-dual-sim-td-lte-na-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 83, + "slug": "iphone-11-a2111-dual-sim-td-lte-na-128gb", + "name": "iPhone 11 A2111 Dual SIM TD-LTE NA 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3110, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.9, + "performance": 16.7, + "camera": 5.1, + "battery": 2.2, + "display": 19.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.120418", + "updated_at": "2026-06-19T00:43:44.120418" +} diff --git a/site/public/v1/smartphones/iphone-11-a2111-dual-sim-td-lte-na-128gb/score/index.json b/site/public/v1/smartphones/iphone-11-a2111-dual-sim-td-lte-na-128gb/score/index.json new file mode 100644 index 00000000000..3c1843d300e --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-a2111-dual-sim-td-lte-na-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.9, + "performance": 16.7, + "camera": 5.1, + "battery": 2.2, + "display": 19.8, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-a2111-dual-sim-td-lte-na-256gb/index.json b/site/public/v1/smartphones/iphone-11-a2111-dual-sim-td-lte-na-256gb/index.json new file mode 100644 index 00000000000..eb5e34c9448 --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-a2111-dual-sim-td-lte-na-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 84, + "slug": "iphone-11-a2111-dual-sim-td-lte-na-256gb", + "name": "iPhone 11 A2111 Dual SIM TD-LTE NA 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3110, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.9, + "performance": 16.7, + "camera": 5.1, + "battery": 2.2, + "display": 19.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.120418", + "updated_at": "2026-06-19T00:43:44.120418" +} diff --git a/site/public/v1/smartphones/iphone-11-a2111-dual-sim-td-lte-na-256gb/score/index.json b/site/public/v1/smartphones/iphone-11-a2111-dual-sim-td-lte-na-256gb/score/index.json new file mode 100644 index 00000000000..3c1843d300e --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-a2111-dual-sim-td-lte-na-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.9, + "performance": 16.7, + "camera": 5.1, + "battery": 2.2, + "display": 19.8, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-a2111-dual-sim-td-lte-na-64gb/index.json b/site/public/v1/smartphones/iphone-11-a2111-dual-sim-td-lte-na-64gb/index.json new file mode 100644 index 00000000000..bcfaa3fd973 --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-a2111-dual-sim-td-lte-na-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 85, + "slug": "iphone-11-a2111-dual-sim-td-lte-na-64gb", + "name": "iPhone 11 A2111 Dual SIM TD-LTE NA 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3110, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.9, + "performance": 16.7, + "camera": 5.1, + "battery": 2.2, + "display": 19.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.120418", + "updated_at": "2026-06-19T00:43:44.120418" +} diff --git a/site/public/v1/smartphones/iphone-11-a2111-dual-sim-td-lte-na-64gb/score/index.json b/site/public/v1/smartphones/iphone-11-a2111-dual-sim-td-lte-na-64gb/score/index.json new file mode 100644 index 00000000000..3c1843d300e --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-a2111-dual-sim-td-lte-na-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.9, + "performance": 16.7, + "camera": 5.1, + "battery": 2.2, + "display": 19.8, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-a2221-dual-sim-td-lte-jp-128gb/index.json b/site/public/v1/smartphones/iphone-11-a2221-dual-sim-td-lte-jp-128gb/index.json new file mode 100644 index 00000000000..386d4d6ac4a --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-a2221-dual-sim-td-lte-jp-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 86, + "slug": "iphone-11-a2221-dual-sim-td-lte-jp-128gb", + "name": "iPhone 11 A2221 Dual SIM TD-LTE JP 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3110, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.9, + "performance": 16.7, + "camera": 5.1, + "battery": 2.2, + "display": 19.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.121418", + "updated_at": "2026-06-19T00:43:44.121418" +} diff --git a/site/public/v1/smartphones/iphone-11-a2221-dual-sim-td-lte-jp-128gb/score/index.json b/site/public/v1/smartphones/iphone-11-a2221-dual-sim-td-lte-jp-128gb/score/index.json new file mode 100644 index 00000000000..3c1843d300e --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-a2221-dual-sim-td-lte-jp-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.9, + "performance": 16.7, + "camera": 5.1, + "battery": 2.2, + "display": 19.8, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-a2221-dual-sim-td-lte-jp-256gb/index.json b/site/public/v1/smartphones/iphone-11-a2221-dual-sim-td-lte-jp-256gb/index.json new file mode 100644 index 00000000000..03d1593e8dc --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-a2221-dual-sim-td-lte-jp-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 87, + "slug": "iphone-11-a2221-dual-sim-td-lte-jp-256gb", + "name": "iPhone 11 A2221 Dual SIM TD-LTE JP 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3110, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.9, + "performance": 16.7, + "camera": 5.1, + "battery": 2.2, + "display": 19.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.121418", + "updated_at": "2026-06-19T00:43:44.121418" +} diff --git a/site/public/v1/smartphones/iphone-11-a2221-dual-sim-td-lte-jp-256gb/score/index.json b/site/public/v1/smartphones/iphone-11-a2221-dual-sim-td-lte-jp-256gb/score/index.json new file mode 100644 index 00000000000..3c1843d300e --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-a2221-dual-sim-td-lte-jp-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.9, + "performance": 16.7, + "camera": 5.1, + "battery": 2.2, + "display": 19.8, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-a2221-dual-sim-td-lte-jp-64gb/index.json b/site/public/v1/smartphones/iphone-11-a2221-dual-sim-td-lte-jp-64gb/index.json new file mode 100644 index 00000000000..7f31fb9053c --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-a2221-dual-sim-td-lte-jp-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 88, + "slug": "iphone-11-a2221-dual-sim-td-lte-jp-64gb", + "name": "iPhone 11 A2221 Dual SIM TD-LTE JP 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3110, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.9, + "performance": 16.7, + "camera": 5.1, + "battery": 2.2, + "display": 19.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.121418", + "updated_at": "2026-06-19T00:43:44.121418" +} diff --git a/site/public/v1/smartphones/iphone-11-a2221-dual-sim-td-lte-jp-64gb/score/index.json b/site/public/v1/smartphones/iphone-11-a2221-dual-sim-td-lte-jp-64gb/score/index.json new file mode 100644 index 00000000000..3c1843d300e --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-a2221-dual-sim-td-lte-jp-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.9, + "performance": 16.7, + "camera": 5.1, + "battery": 2.2, + "display": 19.8, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-a2221-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/iphone-11-a2221-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..5696d9aaa96 --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-a2221-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 89, + "slug": "iphone-11-a2221-global-dual-sim-td-lte-128gb", + "name": "iPhone 11 A2221 Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3110, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.9, + "performance": 16.7, + "camera": 5.1, + "battery": 2.2, + "display": 19.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.121418", + "updated_at": "2026-06-19T00:43:44.121418" +} diff --git a/site/public/v1/smartphones/iphone-11-a2221-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/iphone-11-a2221-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..3c1843d300e --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-a2221-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.9, + "performance": 16.7, + "camera": 5.1, + "battery": 2.2, + "display": 19.8, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-a2221-global-dual-sim-td-lte-256gb/index.json b/site/public/v1/smartphones/iphone-11-a2221-global-dual-sim-td-lte-256gb/index.json new file mode 100644 index 00000000000..18bf32c3dd4 --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-a2221-global-dual-sim-td-lte-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 90, + "slug": "iphone-11-a2221-global-dual-sim-td-lte-256gb", + "name": "iPhone 11 A2221 Global Dual SIM TD-LTE 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3110, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.9, + "performance": 16.7, + "camera": 5.1, + "battery": 2.2, + "display": 19.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.121418", + "updated_at": "2026-06-19T00:43:44.121418" +} diff --git a/site/public/v1/smartphones/iphone-11-a2221-global-dual-sim-td-lte-256gb/score/index.json b/site/public/v1/smartphones/iphone-11-a2221-global-dual-sim-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..3c1843d300e --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-a2221-global-dual-sim-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.9, + "performance": 16.7, + "camera": 5.1, + "battery": 2.2, + "display": 19.8, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-a2221-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/iphone-11-a2221-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..b1bb88697b9 --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-a2221-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 91, + "slug": "iphone-11-a2221-global-dual-sim-td-lte-64gb", + "name": "iPhone 11 A2221 Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3110, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.9, + "performance": 16.7, + "camera": 5.1, + "battery": 2.2, + "display": 19.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.121418", + "updated_at": "2026-06-19T00:43:44.121418" +} diff --git a/site/public/v1/smartphones/iphone-11-a2221-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/iphone-11-a2221-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..3c1843d300e --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-a2221-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.9, + "performance": 16.7, + "camera": 5.1, + "battery": 2.2, + "display": 19.8, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-a2223-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/iphone-11-a2223-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..19b19c8d20a --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-a2223-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 92, + "slug": "iphone-11-a2223-dual-sim-td-lte-cn-128gb", + "name": "iPhone 11 A2223 Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3110, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.9, + "performance": 16.7, + "camera": 5.1, + "battery": 2.2, + "display": 19.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.121418", + "updated_at": "2026-06-19T00:43:44.121418" +} diff --git a/site/public/v1/smartphones/iphone-11-a2223-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/iphone-11-a2223-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..3c1843d300e --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-a2223-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.9, + "performance": 16.7, + "camera": 5.1, + "battery": 2.2, + "display": 19.8, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-a2223-dual-sim-td-lte-cn-256gb/index.json b/site/public/v1/smartphones/iphone-11-a2223-dual-sim-td-lte-cn-256gb/index.json new file mode 100644 index 00000000000..50c4d6b1ed0 --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-a2223-dual-sim-td-lte-cn-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 93, + "slug": "iphone-11-a2223-dual-sim-td-lte-cn-256gb", + "name": "iPhone 11 A2223 Dual SIM TD-LTE CN 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3110, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.9, + "performance": 16.7, + "camera": 5.1, + "battery": 2.2, + "display": 19.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.121418", + "updated_at": "2026-06-19T00:43:44.121418" +} diff --git a/site/public/v1/smartphones/iphone-11-a2223-dual-sim-td-lte-cn-256gb/score/index.json b/site/public/v1/smartphones/iphone-11-a2223-dual-sim-td-lte-cn-256gb/score/index.json new file mode 100644 index 00000000000..3c1843d300e --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-a2223-dual-sim-td-lte-cn-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.9, + "performance": 16.7, + "camera": 5.1, + "battery": 2.2, + "display": 19.8, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-a2223-dual-sim-td-lte-cn-64gb/index.json b/site/public/v1/smartphones/iphone-11-a2223-dual-sim-td-lte-cn-64gb/index.json new file mode 100644 index 00000000000..ca1b671513a --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-a2223-dual-sim-td-lte-cn-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 94, + "slug": "iphone-11-a2223-dual-sim-td-lte-cn-64gb", + "name": "iPhone 11 A2223 Dual SIM TD-LTE CN 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3110, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.9, + "performance": 16.7, + "camera": 5.1, + "battery": 2.2, + "display": 19.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.121418", + "updated_at": "2026-06-19T00:43:44.121418" +} diff --git a/site/public/v1/smartphones/iphone-11-a2223-dual-sim-td-lte-cn-64gb/score/index.json b/site/public/v1/smartphones/iphone-11-a2223-dual-sim-td-lte-cn-64gb/score/index.json new file mode 100644 index 00000000000..3c1843d300e --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-a2223-dual-sim-td-lte-cn-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.9, + "performance": 16.7, + "camera": 5.1, + "battery": 2.2, + "display": 19.8, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-pro-a2160-dual-sim-td-lte-na-256gb/index.json b/site/public/v1/smartphones/iphone-11-pro-a2160-dual-sim-td-lte-na-256gb/index.json new file mode 100644 index 00000000000..4e3375a769f --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-a2160-dual-sim-td-lte-na-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 95, + "slug": "iphone-11-pro-a2160-dual-sim-td-lte-na-256gb", + "name": "iPhone 11 Pro A2160 Dual SIM TD-LTE NA 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.79, + "resolution": "1125x2436", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 464 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3046, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 16.7, + "camera": 5.1, + "battery": 1.3, + "display": 33.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.122419", + "updated_at": "2026-06-19T00:43:44.122419" +} diff --git a/site/public/v1/smartphones/iphone-11-pro-a2160-dual-sim-td-lte-na-256gb/score/index.json b/site/public/v1/smartphones/iphone-11-pro-a2160-dual-sim-td-lte-na-256gb/score/index.json new file mode 100644 index 00000000000..b0e0e7776a1 --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-a2160-dual-sim-td-lte-na-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 16.7, + "camera": 5.1, + "battery": 1.3, + "display": 33.9, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-pro-a2160-dual-sim-td-lte-na-512gb/index.json b/site/public/v1/smartphones/iphone-11-pro-a2160-dual-sim-td-lte-na-512gb/index.json new file mode 100644 index 00000000000..2f7a49de903 --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-a2160-dual-sim-td-lte-na-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 96, + "slug": "iphone-11-pro-a2160-dual-sim-td-lte-na-512gb", + "name": "iPhone 11 Pro A2160 Dual SIM TD-LTE NA 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 5.79, + "resolution": "1125x2436", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 464 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3046, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 16.7, + "camera": 5.1, + "battery": 1.3, + "display": 33.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.122419", + "updated_at": "2026-06-19T00:43:44.122419" +} diff --git a/site/public/v1/smartphones/iphone-11-pro-a2160-dual-sim-td-lte-na-512gb/score/index.json b/site/public/v1/smartphones/iphone-11-pro-a2160-dual-sim-td-lte-na-512gb/score/index.json new file mode 100644 index 00000000000..b0e0e7776a1 --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-a2160-dual-sim-td-lte-na-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 16.7, + "camera": 5.1, + "battery": 1.3, + "display": 33.9, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-pro-a2160-dual-sim-td-lte-na-64gb/index.json b/site/public/v1/smartphones/iphone-11-pro-a2160-dual-sim-td-lte-na-64gb/index.json new file mode 100644 index 00000000000..afad99c16a6 --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-a2160-dual-sim-td-lte-na-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 97, + "slug": "iphone-11-pro-a2160-dual-sim-td-lte-na-64gb", + "name": "iPhone 11 Pro A2160 Dual SIM TD-LTE NA 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.79, + "resolution": "1125x2436", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 464 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3046, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 16.7, + "camera": 5.1, + "battery": 1.3, + "display": 33.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.122419", + "updated_at": "2026-06-19T00:43:44.122419" +} diff --git a/site/public/v1/smartphones/iphone-11-pro-a2160-dual-sim-td-lte-na-64gb/score/index.json b/site/public/v1/smartphones/iphone-11-pro-a2160-dual-sim-td-lte-na-64gb/score/index.json new file mode 100644 index 00000000000..b0e0e7776a1 --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-a2160-dual-sim-td-lte-na-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 16.7, + "camera": 5.1, + "battery": 1.3, + "display": 33.9, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-pro-a2215-dual-sim-td-lte-jp-256gb/index.json b/site/public/v1/smartphones/iphone-11-pro-a2215-dual-sim-td-lte-jp-256gb/index.json new file mode 100644 index 00000000000..8a180225bb6 --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-a2215-dual-sim-td-lte-jp-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 98, + "slug": "iphone-11-pro-a2215-dual-sim-td-lte-jp-256gb", + "name": "iPhone 11 Pro A2215 Dual SIM TD-LTE JP 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.79, + "resolution": "1125x2436", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 464 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3046, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 16.7, + "camera": 5.1, + "battery": 1.3, + "display": 33.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.122419", + "updated_at": "2026-06-19T00:43:44.122419" +} diff --git a/site/public/v1/smartphones/iphone-11-pro-a2215-dual-sim-td-lte-jp-256gb/score/index.json b/site/public/v1/smartphones/iphone-11-pro-a2215-dual-sim-td-lte-jp-256gb/score/index.json new file mode 100644 index 00000000000..b0e0e7776a1 --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-a2215-dual-sim-td-lte-jp-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 16.7, + "camera": 5.1, + "battery": 1.3, + "display": 33.9, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-pro-a2215-dual-sim-td-lte-jp-512gb/index.json b/site/public/v1/smartphones/iphone-11-pro-a2215-dual-sim-td-lte-jp-512gb/index.json new file mode 100644 index 00000000000..647a1539320 --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-a2215-dual-sim-td-lte-jp-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 99, + "slug": "iphone-11-pro-a2215-dual-sim-td-lte-jp-512gb", + "name": "iPhone 11 Pro A2215 Dual SIM TD-LTE JP 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 5.79, + "resolution": "1125x2436", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 464 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3046, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 16.7, + "camera": 5.1, + "battery": 1.3, + "display": 33.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.122419", + "updated_at": "2026-06-19T00:43:44.122419" +} diff --git a/site/public/v1/smartphones/iphone-11-pro-a2215-dual-sim-td-lte-jp-512gb/score/index.json b/site/public/v1/smartphones/iphone-11-pro-a2215-dual-sim-td-lte-jp-512gb/score/index.json new file mode 100644 index 00000000000..b0e0e7776a1 --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-a2215-dual-sim-td-lte-jp-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 16.7, + "camera": 5.1, + "battery": 1.3, + "display": 33.9, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-pro-a2215-dual-sim-td-lte-jp-64gb/index.json b/site/public/v1/smartphones/iphone-11-pro-a2215-dual-sim-td-lte-jp-64gb/index.json new file mode 100644 index 00000000000..a8dd790be3c --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-a2215-dual-sim-td-lte-jp-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 100, + "slug": "iphone-11-pro-a2215-dual-sim-td-lte-jp-64gb", + "name": "iPhone 11 Pro A2215 Dual SIM TD-LTE JP 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.79, + "resolution": "1125x2436", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 464 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3046, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 16.7, + "camera": 5.1, + "battery": 1.3, + "display": 33.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.122419", + "updated_at": "2026-06-19T00:43:44.122419" +} diff --git a/site/public/v1/smartphones/iphone-11-pro-a2215-dual-sim-td-lte-jp-64gb/score/index.json b/site/public/v1/smartphones/iphone-11-pro-a2215-dual-sim-td-lte-jp-64gb/score/index.json new file mode 100644 index 00000000000..b0e0e7776a1 --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-a2215-dual-sim-td-lte-jp-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 16.7, + "camera": 5.1, + "battery": 1.3, + "display": 33.9, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-pro-a2215-global-dual-sim-td-lte-256gb/index.json b/site/public/v1/smartphones/iphone-11-pro-a2215-global-dual-sim-td-lte-256gb/index.json new file mode 100644 index 00000000000..071588bc3d6 --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-a2215-global-dual-sim-td-lte-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 101, + "slug": "iphone-11-pro-a2215-global-dual-sim-td-lte-256gb", + "name": "iPhone 11 Pro A2215 Global Dual SIM TD-LTE 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.79, + "resolution": "1125x2436", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 464 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3046, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 16.7, + "camera": 5.1, + "battery": 1.3, + "display": 33.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.122419", + "updated_at": "2026-06-19T00:43:44.122419" +} diff --git a/site/public/v1/smartphones/iphone-11-pro-a2215-global-dual-sim-td-lte-256gb/score/index.json b/site/public/v1/smartphones/iphone-11-pro-a2215-global-dual-sim-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..b0e0e7776a1 --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-a2215-global-dual-sim-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 16.7, + "camera": 5.1, + "battery": 1.3, + "display": 33.9, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-pro-a2215-global-dual-sim-td-lte-512gb/index.json b/site/public/v1/smartphones/iphone-11-pro-a2215-global-dual-sim-td-lte-512gb/index.json new file mode 100644 index 00000000000..a69b84d25f0 --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-a2215-global-dual-sim-td-lte-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 102, + "slug": "iphone-11-pro-a2215-global-dual-sim-td-lte-512gb", + "name": "iPhone 11 Pro A2215 Global Dual SIM TD-LTE 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 5.79, + "resolution": "1125x2436", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 464 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3046, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 16.7, + "camera": 5.1, + "battery": 1.3, + "display": 33.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.123419", + "updated_at": "2026-06-19T00:43:44.123419" +} diff --git a/site/public/v1/smartphones/iphone-11-pro-a2215-global-dual-sim-td-lte-512gb/score/index.json b/site/public/v1/smartphones/iphone-11-pro-a2215-global-dual-sim-td-lte-512gb/score/index.json new file mode 100644 index 00000000000..b0e0e7776a1 --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-a2215-global-dual-sim-td-lte-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 16.7, + "camera": 5.1, + "battery": 1.3, + "display": 33.9, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-pro-a2215-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/iphone-11-pro-a2215-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..ad89beff491 --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-a2215-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 103, + "slug": "iphone-11-pro-a2215-global-dual-sim-td-lte-64gb", + "name": "iPhone 11 Pro A2215 Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.79, + "resolution": "1125x2436", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 464 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3046, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 16.7, + "camera": 5.1, + "battery": 1.3, + "display": 33.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.123419", + "updated_at": "2026-06-19T00:43:44.123419" +} diff --git a/site/public/v1/smartphones/iphone-11-pro-a2215-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/iphone-11-pro-a2215-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..b0e0e7776a1 --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-a2215-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 16.7, + "camera": 5.1, + "battery": 1.3, + "display": 33.9, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-pro-a2217-dual-sim-td-lte-cn-256gb/index.json b/site/public/v1/smartphones/iphone-11-pro-a2217-dual-sim-td-lte-cn-256gb/index.json new file mode 100644 index 00000000000..0aa084da991 --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-a2217-dual-sim-td-lte-cn-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 104, + "slug": "iphone-11-pro-a2217-dual-sim-td-lte-cn-256gb", + "name": "iPhone 11 Pro A2217 Dual SIM TD-LTE CN 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.79, + "resolution": "1125x2436", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 464 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3046, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 16.7, + "camera": 5.1, + "battery": 1.3, + "display": 33.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.123419", + "updated_at": "2026-06-19T00:43:44.123419" +} diff --git a/site/public/v1/smartphones/iphone-11-pro-a2217-dual-sim-td-lte-cn-256gb/score/index.json b/site/public/v1/smartphones/iphone-11-pro-a2217-dual-sim-td-lte-cn-256gb/score/index.json new file mode 100644 index 00000000000..b0e0e7776a1 --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-a2217-dual-sim-td-lte-cn-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 16.7, + "camera": 5.1, + "battery": 1.3, + "display": 33.9, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-pro-a2217-dual-sim-td-lte-cn-512gb/index.json b/site/public/v1/smartphones/iphone-11-pro-a2217-dual-sim-td-lte-cn-512gb/index.json new file mode 100644 index 00000000000..3de202f7cc2 --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-a2217-dual-sim-td-lte-cn-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 105, + "slug": "iphone-11-pro-a2217-dual-sim-td-lte-cn-512gb", + "name": "iPhone 11 Pro A2217 Dual SIM TD-LTE CN 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 5.79, + "resolution": "1125x2436", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 464 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3046, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 16.7, + "camera": 5.1, + "battery": 1.3, + "display": 33.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.123419", + "updated_at": "2026-06-19T00:43:44.123419" +} diff --git a/site/public/v1/smartphones/iphone-11-pro-a2217-dual-sim-td-lte-cn-512gb/score/index.json b/site/public/v1/smartphones/iphone-11-pro-a2217-dual-sim-td-lte-cn-512gb/score/index.json new file mode 100644 index 00000000000..b0e0e7776a1 --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-a2217-dual-sim-td-lte-cn-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 16.7, + "camera": 5.1, + "battery": 1.3, + "display": 33.9, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-pro-a2217-dual-sim-td-lte-cn-64gb/index.json b/site/public/v1/smartphones/iphone-11-pro-a2217-dual-sim-td-lte-cn-64gb/index.json new file mode 100644 index 00000000000..4ae38759bf2 --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-a2217-dual-sim-td-lte-cn-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 106, + "slug": "iphone-11-pro-a2217-dual-sim-td-lte-cn-64gb", + "name": "iPhone 11 Pro A2217 Dual SIM TD-LTE CN 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.79, + "resolution": "1125x2436", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 464 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3046, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 16.7, + "camera": 5.1, + "battery": 1.3, + "display": 33.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.123419", + "updated_at": "2026-06-19T00:43:44.123419" +} diff --git a/site/public/v1/smartphones/iphone-11-pro-a2217-dual-sim-td-lte-cn-64gb/score/index.json b/site/public/v1/smartphones/iphone-11-pro-a2217-dual-sim-td-lte-cn-64gb/score/index.json new file mode 100644 index 00000000000..b0e0e7776a1 --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-a2217-dual-sim-td-lte-cn-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 16.7, + "camera": 5.1, + "battery": 1.3, + "display": 33.9, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-pro-max-a2161-dual-sim-td-lte-na-256gb/index.json b/site/public/v1/smartphones/iphone-11-pro-max-a2161-dual-sim-td-lte-na-256gb/index.json new file mode 100644 index 00000000000..c307f65073d --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-max-a2161-dual-sim-td-lte-na-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 107, + "slug": "iphone-11-pro-max-a2161-dual-sim-td-lte-na-256gb", + "name": "iPhone 11 Pro Max A2161 Dual SIM TD-LTE NA 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3969, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 226.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 16.7, + "camera": 5.1, + "battery": 15.1, + "display": 33.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.123419", + "updated_at": "2026-06-19T00:43:44.123419" +} diff --git a/site/public/v1/smartphones/iphone-11-pro-max-a2161-dual-sim-td-lte-na-256gb/score/index.json b/site/public/v1/smartphones/iphone-11-pro-max-a2161-dual-sim-td-lte-na-256gb/score/index.json new file mode 100644 index 00000000000..a90a208cb2b --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-max-a2161-dual-sim-td-lte-na-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 16.7, + "camera": 5.1, + "battery": 15.1, + "display": 33.1, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-pro-max-a2161-dual-sim-td-lte-na-512gb/index.json b/site/public/v1/smartphones/iphone-11-pro-max-a2161-dual-sim-td-lte-na-512gb/index.json new file mode 100644 index 00000000000..e8c198b88f2 --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-max-a2161-dual-sim-td-lte-na-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 108, + "slug": "iphone-11-pro-max-a2161-dual-sim-td-lte-na-512gb", + "name": "iPhone 11 Pro Max A2161 Dual SIM TD-LTE NA 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3969, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 226.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 16.7, + "camera": 5.1, + "battery": 15.1, + "display": 33.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.123419", + "updated_at": "2026-06-19T00:43:44.123419" +} diff --git a/site/public/v1/smartphones/iphone-11-pro-max-a2161-dual-sim-td-lte-na-512gb/score/index.json b/site/public/v1/smartphones/iphone-11-pro-max-a2161-dual-sim-td-lte-na-512gb/score/index.json new file mode 100644 index 00000000000..a90a208cb2b --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-max-a2161-dual-sim-td-lte-na-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 16.7, + "camera": 5.1, + "battery": 15.1, + "display": 33.1, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-pro-max-a2161-dual-sim-td-lte-na-64gb/index.json b/site/public/v1/smartphones/iphone-11-pro-max-a2161-dual-sim-td-lte-na-64gb/index.json new file mode 100644 index 00000000000..966a752431b --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-max-a2161-dual-sim-td-lte-na-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 109, + "slug": "iphone-11-pro-max-a2161-dual-sim-td-lte-na-64gb", + "name": "iPhone 11 Pro Max A2161 Dual SIM TD-LTE NA 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3969, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 226.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 16.7, + "camera": 5.1, + "battery": 15.1, + "display": 33.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.124419", + "updated_at": "2026-06-19T00:43:44.124419" +} diff --git a/site/public/v1/smartphones/iphone-11-pro-max-a2161-dual-sim-td-lte-na-64gb/score/index.json b/site/public/v1/smartphones/iphone-11-pro-max-a2161-dual-sim-td-lte-na-64gb/score/index.json new file mode 100644 index 00000000000..a90a208cb2b --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-max-a2161-dual-sim-td-lte-na-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 16.7, + "camera": 5.1, + "battery": 15.1, + "display": 33.1, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-pro-max-a2218-dual-sim-td-lte-jp-256gb/index.json b/site/public/v1/smartphones/iphone-11-pro-max-a2218-dual-sim-td-lte-jp-256gb/index.json new file mode 100644 index 00000000000..811e1a90caa --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-max-a2218-dual-sim-td-lte-jp-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 110, + "slug": "iphone-11-pro-max-a2218-dual-sim-td-lte-jp-256gb", + "name": "iPhone 11 Pro Max A2218 Dual SIM TD-LTE JP 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3969, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 226.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 16.7, + "camera": 5.1, + "battery": 15.1, + "display": 33.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.124419", + "updated_at": "2026-06-19T00:43:44.124419" +} diff --git a/site/public/v1/smartphones/iphone-11-pro-max-a2218-dual-sim-td-lte-jp-256gb/score/index.json b/site/public/v1/smartphones/iphone-11-pro-max-a2218-dual-sim-td-lte-jp-256gb/score/index.json new file mode 100644 index 00000000000..a90a208cb2b --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-max-a2218-dual-sim-td-lte-jp-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 16.7, + "camera": 5.1, + "battery": 15.1, + "display": 33.1, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-pro-max-a2218-dual-sim-td-lte-jp-512gb/index.json b/site/public/v1/smartphones/iphone-11-pro-max-a2218-dual-sim-td-lte-jp-512gb/index.json new file mode 100644 index 00000000000..cf75089461f --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-max-a2218-dual-sim-td-lte-jp-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 111, + "slug": "iphone-11-pro-max-a2218-dual-sim-td-lte-jp-512gb", + "name": "iPhone 11 Pro Max A2218 Dual SIM TD-LTE JP 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3969, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 226.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 16.7, + "camera": 5.1, + "battery": 15.1, + "display": 33.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.124419", + "updated_at": "2026-06-19T00:43:44.124419" +} diff --git a/site/public/v1/smartphones/iphone-11-pro-max-a2218-dual-sim-td-lte-jp-512gb/score/index.json b/site/public/v1/smartphones/iphone-11-pro-max-a2218-dual-sim-td-lte-jp-512gb/score/index.json new file mode 100644 index 00000000000..a90a208cb2b --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-max-a2218-dual-sim-td-lte-jp-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 16.7, + "camera": 5.1, + "battery": 15.1, + "display": 33.1, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-pro-max-a2218-dual-sim-td-lte-jp-64gb/index.json b/site/public/v1/smartphones/iphone-11-pro-max-a2218-dual-sim-td-lte-jp-64gb/index.json new file mode 100644 index 00000000000..34a63a1a862 --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-max-a2218-dual-sim-td-lte-jp-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 112, + "slug": "iphone-11-pro-max-a2218-dual-sim-td-lte-jp-64gb", + "name": "iPhone 11 Pro Max A2218 Dual SIM TD-LTE JP 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3969, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 226.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 16.7, + "camera": 5.1, + "battery": 15.1, + "display": 33.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.124419", + "updated_at": "2026-06-19T00:43:44.124419" +} diff --git a/site/public/v1/smartphones/iphone-11-pro-max-a2218-dual-sim-td-lte-jp-64gb/score/index.json b/site/public/v1/smartphones/iphone-11-pro-max-a2218-dual-sim-td-lte-jp-64gb/score/index.json new file mode 100644 index 00000000000..a90a208cb2b --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-max-a2218-dual-sim-td-lte-jp-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 16.7, + "camera": 5.1, + "battery": 15.1, + "display": 33.1, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-pro-max-a2218-global-dual-sim-td-lte-256gb/index.json b/site/public/v1/smartphones/iphone-11-pro-max-a2218-global-dual-sim-td-lte-256gb/index.json new file mode 100644 index 00000000000..26539bdcb95 --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-max-a2218-global-dual-sim-td-lte-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 113, + "slug": "iphone-11-pro-max-a2218-global-dual-sim-td-lte-256gb", + "name": "iPhone 11 Pro Max A2218 Global Dual SIM TD-LTE 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3969, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 226.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 16.7, + "camera": 5.1, + "battery": 15.1, + "display": 33.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.124419", + "updated_at": "2026-06-19T00:43:44.124419" +} diff --git a/site/public/v1/smartphones/iphone-11-pro-max-a2218-global-dual-sim-td-lte-256gb/score/index.json b/site/public/v1/smartphones/iphone-11-pro-max-a2218-global-dual-sim-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..a90a208cb2b --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-max-a2218-global-dual-sim-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 16.7, + "camera": 5.1, + "battery": 15.1, + "display": 33.1, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-pro-max-a2218-global-dual-sim-td-lte-512gb/index.json b/site/public/v1/smartphones/iphone-11-pro-max-a2218-global-dual-sim-td-lte-512gb/index.json new file mode 100644 index 00000000000..8db1bd56f9e --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-max-a2218-global-dual-sim-td-lte-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 114, + "slug": "iphone-11-pro-max-a2218-global-dual-sim-td-lte-512gb", + "name": "iPhone 11 Pro Max A2218 Global Dual SIM TD-LTE 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3969, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 226.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 16.7, + "camera": 5.1, + "battery": 15.1, + "display": 33.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.124419", + "updated_at": "2026-06-19T00:43:44.124419" +} diff --git a/site/public/v1/smartphones/iphone-11-pro-max-a2218-global-dual-sim-td-lte-512gb/score/index.json b/site/public/v1/smartphones/iphone-11-pro-max-a2218-global-dual-sim-td-lte-512gb/score/index.json new file mode 100644 index 00000000000..a90a208cb2b --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-max-a2218-global-dual-sim-td-lte-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 16.7, + "camera": 5.1, + "battery": 15.1, + "display": 33.1, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-pro-max-a2218-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/iphone-11-pro-max-a2218-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..7f835bca7ff --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-max-a2218-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 115, + "slug": "iphone-11-pro-max-a2218-global-dual-sim-td-lte-64gb", + "name": "iPhone 11 Pro Max A2218 Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3969, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 226.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 16.7, + "camera": 5.1, + "battery": 15.1, + "display": 33.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.124419", + "updated_at": "2026-06-19T00:43:44.124419" +} diff --git a/site/public/v1/smartphones/iphone-11-pro-max-a2218-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/iphone-11-pro-max-a2218-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..a90a208cb2b --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-max-a2218-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 16.7, + "camera": 5.1, + "battery": 15.1, + "display": 33.1, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-pro-max-a2220-dual-sim-td-lte-cn-256gb/index.json b/site/public/v1/smartphones/iphone-11-pro-max-a2220-dual-sim-td-lte-cn-256gb/index.json new file mode 100644 index 00000000000..56c2941d422 --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-max-a2220-dual-sim-td-lte-cn-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 116, + "slug": "iphone-11-pro-max-a2220-dual-sim-td-lte-cn-256gb", + "name": "iPhone 11 Pro Max A2220 Dual SIM TD-LTE CN 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3969, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 226.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 16.7, + "camera": 5.1, + "battery": 15.1, + "display": 33.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.125419", + "updated_at": "2026-06-19T00:43:44.125419" +} diff --git a/site/public/v1/smartphones/iphone-11-pro-max-a2220-dual-sim-td-lte-cn-256gb/score/index.json b/site/public/v1/smartphones/iphone-11-pro-max-a2220-dual-sim-td-lte-cn-256gb/score/index.json new file mode 100644 index 00000000000..a90a208cb2b --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-max-a2220-dual-sim-td-lte-cn-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 16.7, + "camera": 5.1, + "battery": 15.1, + "display": 33.1, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-pro-max-a2220-dual-sim-td-lte-cn-512gb/index.json b/site/public/v1/smartphones/iphone-11-pro-max-a2220-dual-sim-td-lte-cn-512gb/index.json new file mode 100644 index 00000000000..fe1e6053047 --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-max-a2220-dual-sim-td-lte-cn-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 117, + "slug": "iphone-11-pro-max-a2220-dual-sim-td-lte-cn-512gb", + "name": "iPhone 11 Pro Max A2220 Dual SIM TD-LTE CN 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3969, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 226.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 16.7, + "camera": 5.1, + "battery": 15.1, + "display": 33.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.125419", + "updated_at": "2026-06-19T00:43:44.125419" +} diff --git a/site/public/v1/smartphones/iphone-11-pro-max-a2220-dual-sim-td-lte-cn-512gb/score/index.json b/site/public/v1/smartphones/iphone-11-pro-max-a2220-dual-sim-td-lte-cn-512gb/score/index.json new file mode 100644 index 00000000000..a90a208cb2b --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-max-a2220-dual-sim-td-lte-cn-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 16.7, + "camera": 5.1, + "battery": 15.1, + "display": 33.1, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-11-pro-max-a2220-dual-sim-td-lte-cn-64gb/index.json b/site/public/v1/smartphones/iphone-11-pro-max-a2220-dual-sim-td-lte-cn-64gb/index.json new file mode 100644 index 00000000000..d7303ca955d --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-max-a2220-dual-sim-td-lte-cn-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 118, + "slug": "iphone-11-pro-max-a2220-dual-sim-td-lte-cn-64gb", + "name": "iPhone 11 Pro Max A2220 Dual SIM TD-LTE CN 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3969, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 226.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 16.7, + "camera": 5.1, + "battery": 15.1, + "display": 33.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.125419", + "updated_at": "2026-06-19T00:43:44.125419" +} diff --git a/site/public/v1/smartphones/iphone-11-pro-max-a2220-dual-sim-td-lte-cn-64gb/score/index.json b/site/public/v1/smartphones/iphone-11-pro-max-a2220-dual-sim-td-lte-cn-64gb/score/index.json new file mode 100644 index 00000000000..a90a208cb2b --- /dev/null +++ b/site/public/v1/smartphones/iphone-11-pro-max-a2220-dual-sim-td-lte-cn-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 16.7, + "camera": 5.1, + "battery": 15.1, + "display": 33.1, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-128gb/index.json b/site/public/v1/smartphones/iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-128gb/index.json new file mode 100644 index 00000000000..8ed6cdaf9cd --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 130, + "slug": "iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-128gb", + "name": "iPhone 12 5G A2402 Dual SIM TD-LTE JP CA 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-11-13", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2815, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.126419", + "updated_at": "2026-06-19T00:43:44.126419" +} diff --git a/site/public/v1/smartphones/iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-128gb/score/index.json b/site/public/v1/smartphones/iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-128gb/score/index.json new file mode 100644 index 00000000000..62df8c6334c --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-256gb/index.json b/site/public/v1/smartphones/iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-256gb/index.json new file mode 100644 index 00000000000..c572107f2c2 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 131, + "slug": "iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-256gb", + "name": "iPhone 12 5G A2402 Dual SIM TD-LTE JP CA 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-11-13", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2815, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.126419", + "updated_at": "2026-06-19T00:43:44.126419" +} diff --git a/site/public/v1/smartphones/iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-256gb/score/index.json b/site/public/v1/smartphones/iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-256gb/score/index.json new file mode 100644 index 00000000000..62df8c6334c --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-64gb/index.json b/site/public/v1/smartphones/iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-64gb/index.json new file mode 100644 index 00000000000..0fcb534cfa5 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 132, + "slug": "iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-64gb", + "name": "iPhone 12 5G A2402 Dual SIM TD-LTE JP CA 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-11-13", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2815, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.127418", + "updated_at": "2026-06-19T00:43:44.127418" +} diff --git a/site/public/v1/smartphones/iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-64gb/score/index.json b/site/public/v1/smartphones/iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-64gb/score/index.json new file mode 100644 index 00000000000..62df8c6334c --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-5g-a2402-dual-sim-td-lte-jp-ca-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-12-5g-a2403-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/iphone-12-5g-a2403-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..566105c0a29 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-5g-a2403-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 133, + "slug": "iphone-12-5g-a2403-global-dual-sim-td-lte-128gb", + "name": "iPhone 12 5G A2403 Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-10-23", + "msrp_usd": 849, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2815, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": 38.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.127418", + "updated_at": "2026-06-19T00:43:44.127418" +} diff --git a/site/public/v1/smartphones/iphone-12-5g-a2403-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/iphone-12-5g-a2403-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..7273e1c1380 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-5g-a2403-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": 38.4 +} diff --git a/site/public/v1/smartphones/iphone-12-5g-a2403-global-dual-sim-td-lte-256gb/index.json b/site/public/v1/smartphones/iphone-12-5g-a2403-global-dual-sim-td-lte-256gb/index.json new file mode 100644 index 00000000000..f5328d552d2 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-5g-a2403-global-dual-sim-td-lte-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 134, + "slug": "iphone-12-5g-a2403-global-dual-sim-td-lte-256gb", + "name": "iPhone 12 5G A2403 Global Dual SIM TD-LTE 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-10-23", + "msrp_usd": 949, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2815, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": 34.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.127418", + "updated_at": "2026-06-19T00:43:44.127418" +} diff --git a/site/public/v1/smartphones/iphone-12-5g-a2403-global-dual-sim-td-lte-256gb/score/index.json b/site/public/v1/smartphones/iphone-12-5g-a2403-global-dual-sim-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..b3cef53e4e6 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-5g-a2403-global-dual-sim-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": 34.5 +} diff --git a/site/public/v1/smartphones/iphone-12-5g-a2403-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/iphone-12-5g-a2403-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..6374f7c836a --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-5g-a2403-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 135, + "slug": "iphone-12-5g-a2403-global-dual-sim-td-lte-64gb", + "name": "iPhone 12 5G A2403 Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-10-23", + "msrp_usd": 799, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2815, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": 40.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.128422", + "updated_at": "2026-06-19T00:43:44.128422" +} diff --git a/site/public/v1/smartphones/iphone-12-5g-a2403-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/iphone-12-5g-a2403-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..4df98a3f8f9 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-5g-a2403-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": 40.3 +} diff --git a/site/public/v1/smartphones/iphone-12-5g-a2404-dual-sim-td-lte-cn-128gb-a2405/index.json b/site/public/v1/smartphones/iphone-12-5g-a2404-dual-sim-td-lte-cn-128gb-a2405/index.json new file mode 100644 index 00000000000..73ae00f6c0e --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-5g-a2404-dual-sim-td-lte-cn-128gb-a2405/index.json @@ -0,0 +1,77 @@ +{ + "id": 136, + "slug": "iphone-12-5g-a2404-dual-sim-td-lte-cn-128gb-a2405", + "name": "iPhone 12 5G A2404 Dual SIM TD-LTE CN 128GB / A2405", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-10-23", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2815, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.128422", + "updated_at": "2026-06-19T00:43:44.128422" +} diff --git a/site/public/v1/smartphones/iphone-12-5g-a2404-dual-sim-td-lte-cn-128gb-a2405/score/index.json b/site/public/v1/smartphones/iphone-12-5g-a2404-dual-sim-td-lte-cn-128gb-a2405/score/index.json new file mode 100644 index 00000000000..62df8c6334c --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-5g-a2404-dual-sim-td-lte-cn-128gb-a2405/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-12-5g-a2404-dual-sim-td-lte-cn-256gb-a2405/index.json b/site/public/v1/smartphones/iphone-12-5g-a2404-dual-sim-td-lte-cn-256gb-a2405/index.json new file mode 100644 index 00000000000..f72155dbaea --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-5g-a2404-dual-sim-td-lte-cn-256gb-a2405/index.json @@ -0,0 +1,77 @@ +{ + "id": 137, + "slug": "iphone-12-5g-a2404-dual-sim-td-lte-cn-256gb-a2405", + "name": "iPhone 12 5G A2404 Dual SIM TD-LTE CN 256GB / A2405", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-10-23", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2815, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.128422", + "updated_at": "2026-06-19T00:43:44.128422" +} diff --git a/site/public/v1/smartphones/iphone-12-5g-a2404-dual-sim-td-lte-cn-256gb-a2405/score/index.json b/site/public/v1/smartphones/iphone-12-5g-a2404-dual-sim-td-lte-cn-256gb-a2405/score/index.json new file mode 100644 index 00000000000..62df8c6334c --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-5g-a2404-dual-sim-td-lte-cn-256gb-a2405/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-12-5g-a2404-dual-sim-td-lte-cn-64gb-a2405/index.json b/site/public/v1/smartphones/iphone-12-5g-a2404-dual-sim-td-lte-cn-64gb-a2405/index.json new file mode 100644 index 00000000000..6f7f8031187 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-5g-a2404-dual-sim-td-lte-cn-64gb-a2405/index.json @@ -0,0 +1,77 @@ +{ + "id": 138, + "slug": "iphone-12-5g-a2404-dual-sim-td-lte-cn-64gb-a2405", + "name": "iPhone 12 5G A2404 Dual SIM TD-LTE CN 64GB / A2405", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-10-23", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2815, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.128422", + "updated_at": "2026-06-19T00:43:44.128422" +} diff --git a/site/public/v1/smartphones/iphone-12-5g-a2404-dual-sim-td-lte-cn-64gb-a2405/score/index.json b/site/public/v1/smartphones/iphone-12-5g-a2404-dual-sim-td-lte-cn-64gb-a2405/score/index.json new file mode 100644 index 00000000000..62df8c6334c --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-5g-a2404-dual-sim-td-lte-cn-64gb-a2405/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-128gb/index.json b/site/public/v1/smartphones/iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-128gb/index.json new file mode 100644 index 00000000000..03fae4dd28e --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 139, + "slug": "iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-128gb", + "name": "iPhone 12 Mini 5G A2398 Dual SIM TD-LTE JP CA 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-11-13", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.42, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 475 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2227, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 133.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.128422", + "updated_at": "2026-06-19T00:43:44.128422" +} diff --git a/site/public/v1/smartphones/iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-128gb/score/index.json b/site/public/v1/smartphones/iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-128gb/score/index.json new file mode 100644 index 00000000000..1d5ecdc5696 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-256gb/index.json b/site/public/v1/smartphones/iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-256gb/index.json new file mode 100644 index 00000000000..fec374785c9 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 140, + "slug": "iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-256gb", + "name": "iPhone 12 Mini 5G A2398 Dual SIM TD-LTE JP CA 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-11-13", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.42, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 475 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2227, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 133.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.128422", + "updated_at": "2026-06-19T00:43:44.128422" +} diff --git a/site/public/v1/smartphones/iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-256gb/score/index.json b/site/public/v1/smartphones/iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-256gb/score/index.json new file mode 100644 index 00000000000..1d5ecdc5696 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-64gb/index.json b/site/public/v1/smartphones/iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-64gb/index.json new file mode 100644 index 00000000000..57d978cddc7 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 141, + "slug": "iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-64gb", + "name": "iPhone 12 Mini 5G A2398 Dual SIM TD-LTE JP CA 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-11-13", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.42, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 475 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2227, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 133.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.129419", + "updated_at": "2026-06-19T00:43:44.129419" +} diff --git a/site/public/v1/smartphones/iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-64gb/score/index.json b/site/public/v1/smartphones/iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-64gb/score/index.json new file mode 100644 index 00000000000..1d5ecdc5696 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-mini-5g-a2398-dual-sim-td-lte-jp-ca-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-12-mini-5g-a2399-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/iphone-12-mini-5g-a2399-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..a2f95ba1ed9 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-mini-5g-a2399-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 142, + "slug": "iphone-12-mini-5g-a2399-global-dual-sim-td-lte-128gb", + "name": "iPhone 12 Mini 5G A2399 Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-11-12", + "msrp_usd": 749, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.42, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 475 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2227, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 133.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 35.0, + "value": 42.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.129419", + "updated_at": "2026-06-19T00:43:44.129419" +} diff --git a/site/public/v1/smartphones/iphone-12-mini-5g-a2399-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/iphone-12-mini-5g-a2399-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..7d0924793a9 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-mini-5g-a2399-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 35.0, + "value": 42.5 +} diff --git a/site/public/v1/smartphones/iphone-12-mini-5g-a2399-global-dual-sim-td-lte-256gb/index.json b/site/public/v1/smartphones/iphone-12-mini-5g-a2399-global-dual-sim-td-lte-256gb/index.json new file mode 100644 index 00000000000..c1c9c0116c6 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-mini-5g-a2399-global-dual-sim-td-lte-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 143, + "slug": "iphone-12-mini-5g-a2399-global-dual-sim-td-lte-256gb", + "name": "iPhone 12 Mini 5G A2399 Global Dual SIM TD-LTE 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-11-12", + "msrp_usd": 849, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.42, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 475 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2227, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 133.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 35.0, + "value": 38.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.129419", + "updated_at": "2026-06-19T00:43:44.129419" +} diff --git a/site/public/v1/smartphones/iphone-12-mini-5g-a2399-global-dual-sim-td-lte-256gb/score/index.json b/site/public/v1/smartphones/iphone-12-mini-5g-a2399-global-dual-sim-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..2acb8a273e3 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-mini-5g-a2399-global-dual-sim-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 35.0, + "value": 38.6 +} diff --git a/site/public/v1/smartphones/iphone-12-mini-5g-a2399-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/iphone-12-mini-5g-a2399-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..962ea778cfb --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-mini-5g-a2399-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 144, + "slug": "iphone-12-mini-5g-a2399-global-dual-sim-td-lte-64gb", + "name": "iPhone 12 Mini 5G A2399 Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-11-12", + "msrp_usd": 699, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.42, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 475 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2227, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 133.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 35.0, + "value": 44.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.129419", + "updated_at": "2026-06-19T00:43:44.129419" +} diff --git a/site/public/v1/smartphones/iphone-12-mini-5g-a2399-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/iphone-12-mini-5g-a2399-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..8d11906c3e9 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-mini-5g-a2399-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 35.0, + "value": 44.3 +} diff --git a/site/public/v1/smartphones/iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-128gb-a2401/index.json b/site/public/v1/smartphones/iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-128gb-a2401/index.json new file mode 100644 index 00000000000..0de37cb8920 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-128gb-a2401/index.json @@ -0,0 +1,77 @@ +{ + "id": 145, + "slug": "iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-128gb-a2401", + "name": "iPhone 12 mini 5G A2400 Dual SIM TD-LTE CN 128GB / A2401", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-10-23", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.42, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 475 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2227, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 133.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.129419", + "updated_at": "2026-06-19T00:43:44.129419" +} diff --git a/site/public/v1/smartphones/iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-128gb-a2401/score/index.json b/site/public/v1/smartphones/iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-128gb-a2401/score/index.json new file mode 100644 index 00000000000..1d5ecdc5696 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-128gb-a2401/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-256gb-a2401/index.json b/site/public/v1/smartphones/iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-256gb-a2401/index.json new file mode 100644 index 00000000000..fd9f74c3498 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-256gb-a2401/index.json @@ -0,0 +1,77 @@ +{ + "id": 146, + "slug": "iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-256gb-a2401", + "name": "iPhone 12 mini 5G A2400 Dual SIM TD-LTE CN 256GB / A2401", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-10-23", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.42, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 475 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2227, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 133.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.129419", + "updated_at": "2026-06-19T00:43:44.129419" +} diff --git a/site/public/v1/smartphones/iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-256gb-a2401/score/index.json b/site/public/v1/smartphones/iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-256gb-a2401/score/index.json new file mode 100644 index 00000000000..1d5ecdc5696 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-256gb-a2401/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-64gb-a2401/index.json b/site/public/v1/smartphones/iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-64gb-a2401/index.json new file mode 100644 index 00000000000..e2e69327de1 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-64gb-a2401/index.json @@ -0,0 +1,77 @@ +{ + "id": 147, + "slug": "iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-64gb-a2401", + "name": "iPhone 12 mini 5G A2400 Dual SIM TD-LTE CN 64GB / A2401", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-10-23", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.42, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 475 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2227, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 133.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.129419", + "updated_at": "2026-06-19T00:43:44.129419" +} diff --git a/site/public/v1/smartphones/iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-64gb-a2401/score/index.json b/site/public/v1/smartphones/iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-64gb-a2401/score/index.json new file mode 100644 index 00000000000..1d5ecdc5696 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-mini-5g-a2400-dual-sim-td-lte-cn-64gb-a2401/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-128gb/index.json b/site/public/v1/smartphones/iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..7c5cf5f9bdd --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 148, + "slug": "iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-128gb", + "name": "iPhone 12 Mini UW 5G A2176 Dual SIM TD-LTE US 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-10-23", + "msrp_usd": 749, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.42, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 475 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2227, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 133.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 35.0, + "value": 42.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.130419", + "updated_at": "2026-06-19T00:43:44.130419" +} diff --git a/site/public/v1/smartphones/iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..7d0924793a9 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 35.0, + "value": 42.5 +} diff --git a/site/public/v1/smartphones/iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-256gb/index.json b/site/public/v1/smartphones/iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-256gb/index.json new file mode 100644 index 00000000000..135f44dbe98 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 149, + "slug": "iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-256gb", + "name": "iPhone 12 Mini UW 5G A2176 Dual SIM TD-LTE US 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-10-23", + "msrp_usd": 849, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.42, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 475 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2227, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 133.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 35.0, + "value": 38.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.130419", + "updated_at": "2026-06-19T00:43:44.130419" +} diff --git a/site/public/v1/smartphones/iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-256gb/score/index.json b/site/public/v1/smartphones/iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-256gb/score/index.json new file mode 100644 index 00000000000..2acb8a273e3 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 35.0, + "value": 38.6 +} diff --git a/site/public/v1/smartphones/iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-64gb/index.json b/site/public/v1/smartphones/iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-64gb/index.json new file mode 100644 index 00000000000..8135a8d367d --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 150, + "slug": "iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-64gb", + "name": "iPhone 12 Mini UW 5G A2176 Dual SIM TD-LTE US 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-10-23", + "msrp_usd": 699, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.42, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 475 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2227, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 133.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 35.0, + "value": 44.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.130419", + "updated_at": "2026-06-19T00:43:44.130419" +} diff --git a/site/public/v1/smartphones/iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-64gb/score/index.json b/site/public/v1/smartphones/iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-64gb/score/index.json new file mode 100644 index 00000000000..8d11906c3e9 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-mini-uw-5g-a2176-dual-sim-td-lte-us-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 35.0, + "value": 44.3 +} diff --git a/site/public/v1/smartphones/iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-128gb/index.json b/site/public/v1/smartphones/iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-128gb/index.json new file mode 100644 index 00000000000..7bf4646cca3 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 153, + "slug": "iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-128gb", + "name": "iPhone 12 Pro 5G A2406 Dual SIM TD-LTE JP CA 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-11-13", + "msrp_usd": 1399, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2815, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 187.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 28.0, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": 17.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.130419", + "updated_at": "2026-06-19T00:43:44.130419" +} diff --git a/site/public/v1/smartphones/iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-128gb/score/index.json b/site/public/v1/smartphones/iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-128gb/score/index.json new file mode 100644 index 00000000000..7b553ccb81c --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 28.0, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": 17.4 +} diff --git a/site/public/v1/smartphones/iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-256gb/index.json b/site/public/v1/smartphones/iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-256gb/index.json new file mode 100644 index 00000000000..27484bd747e --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 154, + "slug": "iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-256gb", + "name": "iPhone 12 Pro 5G A2406 Dual SIM TD-LTE JP CA 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-11-13", + "msrp_usd": 1539, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2815, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 187.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 28.0, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": 12.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.130419", + "updated_at": "2026-06-19T00:43:44.130419" +} diff --git a/site/public/v1/smartphones/iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-256gb/score/index.json b/site/public/v1/smartphones/iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-256gb/score/index.json new file mode 100644 index 00000000000..2966cfa0d6d --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 28.0, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": 12.0 +} diff --git a/site/public/v1/smartphones/iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-512gb/index.json b/site/public/v1/smartphones/iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-512gb/index.json new file mode 100644 index 00000000000..8da227d5979 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 155, + "slug": "iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-512gb", + "name": "iPhone 12 Pro 5G A2406 Dual SIM TD-LTE JP CA 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-11-13", + "msrp_usd": 1809, + "ram_gb": 6, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2815, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 187.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 28.0, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": 9.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.130419", + "updated_at": "2026-06-19T00:43:44.130419" +} diff --git a/site/public/v1/smartphones/iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-512gb/score/index.json b/site/public/v1/smartphones/iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-512gb/score/index.json new file mode 100644 index 00000000000..72af7995aee --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-5g-a2406-dual-sim-td-lte-jp-ca-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 28.0, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": 9.7 +} diff --git a/site/public/v1/smartphones/iphone-12-pro-5g-a2407-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/iphone-12-pro-5g-a2407-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..d917a945155 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-5g-a2407-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 156, + "slug": "iphone-12-pro-5g-a2407-global-dual-sim-td-lte-128gb", + "name": "iPhone 12 Pro 5G A2407 Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-11-06", + "msrp_usd": 999, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2815, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 187.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 28.0, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": 32.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.131418", + "updated_at": "2026-06-19T00:43:44.131418" +} diff --git a/site/public/v1/smartphones/iphone-12-pro-5g-a2407-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/iphone-12-pro-5g-a2407-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..d981eabc4f3 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-5g-a2407-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 28.0, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": 32.8 +} diff --git a/site/public/v1/smartphones/iphone-12-pro-5g-a2407-global-dual-sim-td-lte-256gb/index.json b/site/public/v1/smartphones/iphone-12-pro-5g-a2407-global-dual-sim-td-lte-256gb/index.json new file mode 100644 index 00000000000..0ee7b8e31b0 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-5g-a2407-global-dual-sim-td-lte-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 157, + "slug": "iphone-12-pro-5g-a2407-global-dual-sim-td-lte-256gb", + "name": "iPhone 12 Pro 5G A2407 Global Dual SIM TD-LTE 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-11-06", + "msrp_usd": 1099, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2815, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 187.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 28.0, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": 28.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.131418", + "updated_at": "2026-06-19T00:43:44.131418" +} diff --git a/site/public/v1/smartphones/iphone-12-pro-5g-a2407-global-dual-sim-td-lte-256gb/score/index.json b/site/public/v1/smartphones/iphone-12-pro-5g-a2407-global-dual-sim-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..093d39b7547 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-5g-a2407-global-dual-sim-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 28.0, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": 28.9 +} diff --git a/site/public/v1/smartphones/iphone-12-pro-5g-a2407-global-dual-sim-td-lte-512gb/index.json b/site/public/v1/smartphones/iphone-12-pro-5g-a2407-global-dual-sim-td-lte-512gb/index.json new file mode 100644 index 00000000000..73d1f5cd376 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-5g-a2407-global-dual-sim-td-lte-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 158, + "slug": "iphone-12-pro-5g-a2407-global-dual-sim-td-lte-512gb", + "name": "iPhone 12 Pro 5G A2407 Global Dual SIM TD-LTE 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-11-06", + "msrp_usd": 1299, + "ram_gb": 6, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2815, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 187.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 28.0, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": 21.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.131418", + "updated_at": "2026-06-19T00:43:44.131418" +} diff --git a/site/public/v1/smartphones/iphone-12-pro-5g-a2407-global-dual-sim-td-lte-512gb/score/index.json b/site/public/v1/smartphones/iphone-12-pro-5g-a2407-global-dual-sim-td-lte-512gb/score/index.json new file mode 100644 index 00000000000..cfa38c361dc --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-5g-a2407-global-dual-sim-td-lte-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 28.0, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": 21.3 +} diff --git a/site/public/v1/smartphones/iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-128gb-a2409/index.json b/site/public/v1/smartphones/iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-128gb-a2409/index.json new file mode 100644 index 00000000000..3b7fe995800 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-128gb-a2409/index.json @@ -0,0 +1,77 @@ +{ + "id": 159, + "slug": "iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-128gb-a2409", + "name": "iPhone 12 Pro 5G A2408 Dual SIM TD-LTE CN 128GB / A2409", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-10-23", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2815, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 187.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 28.0, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.131418", + "updated_at": "2026-06-19T00:43:44.131418" +} diff --git a/site/public/v1/smartphones/iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-128gb-a2409/score/index.json b/site/public/v1/smartphones/iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-128gb-a2409/score/index.json new file mode 100644 index 00000000000..8bb96f95f3b --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-128gb-a2409/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 28.0, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-256gb-a2409/index.json b/site/public/v1/smartphones/iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-256gb-a2409/index.json new file mode 100644 index 00000000000..342cb4a42ec --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-256gb-a2409/index.json @@ -0,0 +1,77 @@ +{ + "id": 160, + "slug": "iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-256gb-a2409", + "name": "iPhone 12 Pro 5G A2408 Dual SIM TD-LTE CN 256GB / A2409", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-10-23", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2815, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 187.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 28.0, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.131418", + "updated_at": "2026-06-19T00:43:44.131418" +} diff --git a/site/public/v1/smartphones/iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-256gb-a2409/score/index.json b/site/public/v1/smartphones/iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-256gb-a2409/score/index.json new file mode 100644 index 00000000000..8bb96f95f3b --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-256gb-a2409/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 28.0, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-512gb-a2409/index.json b/site/public/v1/smartphones/iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-512gb-a2409/index.json new file mode 100644 index 00000000000..dd5b67391cd --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-512gb-a2409/index.json @@ -0,0 +1,77 @@ +{ + "id": 161, + "slug": "iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-512gb-a2409", + "name": "iPhone 12 Pro 5G A2408 Dual SIM TD-LTE CN 512GB / A2409", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-10-23", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2815, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 187.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 28.0, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.131418", + "updated_at": "2026-06-19T00:43:44.131418" +} diff --git a/site/public/v1/smartphones/iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-512gb-a2409/score/index.json b/site/public/v1/smartphones/iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-512gb-a2409/score/index.json new file mode 100644 index 00000000000..8bb96f95f3b --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-5g-a2408-dual-sim-td-lte-cn-512gb-a2409/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 28.0, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-128gb/index.json b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-128gb/index.json new file mode 100644 index 00000000000..8a025953545 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 162, + "slug": "iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-128gb", + "name": "iPhone 12 Pro Max 5G A2410 Dual SIM TD-LTE JP CA 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-11-13", + "msrp_usd": 1549, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3687, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 226.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 28.0, + "camera": 5.1, + "battery": 21.3, + "display": 33.3, + "value": 12.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.131418", + "updated_at": "2026-06-19T00:43:44.131418" +} diff --git a/site/public/v1/smartphones/iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-128gb/score/index.json b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-128gb/score/index.json new file mode 100644 index 00000000000..66fe837c514 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 28.0, + "camera": 5.1, + "battery": 21.3, + "display": 33.3, + "value": 12.9 +} diff --git a/site/public/v1/smartphones/iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-256gb/index.json b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-256gb/index.json new file mode 100644 index 00000000000..60d411bc5a0 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 163, + "slug": "iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-256gb", + "name": "iPhone 12 Pro Max 5G A2410 Dual SIM TD-LTE JP CA 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-11-13", + "msrp_usd": 1689, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3687, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 226.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 28.0, + "camera": 5.1, + "battery": 21.3, + "display": 33.3, + "value": 10.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.132418", + "updated_at": "2026-06-19T00:43:44.132418" +} diff --git a/site/public/v1/smartphones/iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-256gb/score/index.json b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-256gb/score/index.json new file mode 100644 index 00000000000..79429658afa --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 28.0, + "camera": 5.1, + "battery": 21.3, + "display": 33.3, + "value": 10.9 +} diff --git a/site/public/v1/smartphones/iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-512gb/index.json b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-512gb/index.json new file mode 100644 index 00000000000..d8e2bd92f6f --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 164, + "slug": "iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-512gb", + "name": "iPhone 12 Pro Max 5G A2410 Dual SIM TD-LTE JP CA 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-11-13", + "msrp_usd": 1959, + "ram_gb": 6, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3687, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 226.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 28.0, + "camera": 5.1, + "battery": 21.3, + "display": 33.3, + "value": 10.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.132418", + "updated_at": "2026-06-19T00:43:44.132418" +} diff --git a/site/public/v1/smartphones/iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-512gb/score/index.json b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-512gb/score/index.json new file mode 100644 index 00000000000..79429658afa --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2410-dual-sim-td-lte-jp-ca-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 28.0, + "camera": 5.1, + "battery": 21.3, + "display": 33.3, + "value": 10.9 +} diff --git a/site/public/v1/smartphones/iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..97bc2adfd5d --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 165, + "slug": "iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-128gb", + "name": "iPhone 12 Pro Max 5G A2411 Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-11-12", + "msrp_usd": 1099, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3687, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 226.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 28.0, + "camera": 5.1, + "battery": 21.3, + "display": 33.3, + "value": 30.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.132418", + "updated_at": "2026-06-19T00:43:44.132418" +} diff --git a/site/public/v1/smartphones/iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..b1ce44abc3d --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 28.0, + "camera": 5.1, + "battery": 21.3, + "display": 33.3, + "value": 30.2 +} diff --git a/site/public/v1/smartphones/iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-256gb/index.json b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-256gb/index.json new file mode 100644 index 00000000000..c04478f675b --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 166, + "slug": "iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-256gb", + "name": "iPhone 12 Pro Max 5G A2411 Global Dual SIM TD-LTE 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-11-12", + "msrp_usd": 1199, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3687, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 226.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 28.0, + "camera": 5.1, + "battery": 21.3, + "display": 33.3, + "value": 26.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.132418", + "updated_at": "2026-06-19T00:43:44.132418" +} diff --git a/site/public/v1/smartphones/iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-256gb/score/index.json b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..2236d947c71 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 28.0, + "camera": 5.1, + "battery": 21.3, + "display": 33.3, + "value": 26.4 +} diff --git a/site/public/v1/smartphones/iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-512gb/index.json b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-512gb/index.json new file mode 100644 index 00000000000..d0db3702930 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 167, + "slug": "iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-512gb", + "name": "iPhone 12 Pro Max 5G A2411 Global Dual SIM TD-LTE 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-11-12", + "msrp_usd": 1399, + "ram_gb": 6, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3687, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 226.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 28.0, + "camera": 5.1, + "battery": 21.3, + "display": 33.3, + "value": 18.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.132418", + "updated_at": "2026-06-19T00:43:44.132418" +} diff --git a/site/public/v1/smartphones/iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-512gb/score/index.json b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-512gb/score/index.json new file mode 100644 index 00000000000..dcff698e2ad --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2411-global-dual-sim-td-lte-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 28.0, + "camera": 5.1, + "battery": 21.3, + "display": 33.3, + "value": 18.7 +} diff --git a/site/public/v1/smartphones/iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-128gb-a2413/index.json b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-128gb-a2413/index.json new file mode 100644 index 00000000000..4c70477e876 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-128gb-a2413/index.json @@ -0,0 +1,77 @@ +{ + "id": 168, + "slug": "iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-128gb-a2413", + "name": "iPhone 12 Pro Max 5G A2412 Dual SIM TD-LTE CN 128GB / A2413", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-10-23", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3687, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 226.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 28.0, + "camera": 5.1, + "battery": 21.3, + "display": 33.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.132418", + "updated_at": "2026-06-19T00:43:44.132418" +} diff --git a/site/public/v1/smartphones/iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-128gb-a2413/score/index.json b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-128gb-a2413/score/index.json new file mode 100644 index 00000000000..3af7fcec78c --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-128gb-a2413/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 28.0, + "camera": 5.1, + "battery": 21.3, + "display": 33.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-256gb-a2413/index.json b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-256gb-a2413/index.json new file mode 100644 index 00000000000..b02590c4cc0 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-256gb-a2413/index.json @@ -0,0 +1,77 @@ +{ + "id": 169, + "slug": "iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-256gb-a2413", + "name": "iPhone 12 Pro Max 5G A2412 Dual SIM TD-LTE CN 256GB / A2413", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-10-23", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3687, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 226.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 28.0, + "camera": 5.1, + "battery": 21.3, + "display": 33.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.132418", + "updated_at": "2026-06-19T00:43:44.132418" +} diff --git a/site/public/v1/smartphones/iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-256gb-a2413/score/index.json b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-256gb-a2413/score/index.json new file mode 100644 index 00000000000..3af7fcec78c --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-256gb-a2413/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 28.0, + "camera": 5.1, + "battery": 21.3, + "display": 33.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-512gb-a2413/index.json b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-512gb-a2413/index.json new file mode 100644 index 00000000000..8df8858b096 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-512gb-a2413/index.json @@ -0,0 +1,77 @@ +{ + "id": 170, + "slug": "iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-512gb-a2413", + "name": "iPhone 12 Pro Max 5G A2412 Dual SIM TD-LTE CN 512GB / A2413", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-10-23", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3687, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 226.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 28.0, + "camera": 5.1, + "battery": 21.3, + "display": 33.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.132418", + "updated_at": "2026-06-19T00:43:44.132418" +} diff --git a/site/public/v1/smartphones/iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-512gb-a2413/score/index.json b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-512gb-a2413/score/index.json new file mode 100644 index 00000000000..3af7fcec78c --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-max-5g-a2412-dual-sim-td-lte-cn-512gb-a2413/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 28.0, + "camera": 5.1, + "battery": 21.3, + "display": 33.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-128gb/index.json b/site/public/v1/smartphones/iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..b47c07332b4 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 171, + "slug": "iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-128gb", + "name": "iPhone 12 Pro Max UW 5G A2342 Dual SIM TD-LTE US 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-10-23", + "msrp_usd": 1099, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2772", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3687, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 228.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 28.0, + "camera": 5.1, + "battery": 21.3, + "display": 33.2, + "value": 30.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.132418", + "updated_at": "2026-06-19T00:43:44.132418" +} diff --git a/site/public/v1/smartphones/iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..db3b2dad56b --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 28.0, + "camera": 5.1, + "battery": 21.3, + "display": 33.2, + "value": 30.2 +} diff --git a/site/public/v1/smartphones/iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-256gb/index.json b/site/public/v1/smartphones/iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-256gb/index.json new file mode 100644 index 00000000000..9fa54e28ddf --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 172, + "slug": "iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-256gb", + "name": "iPhone 12 Pro Max UW 5G A2342 Dual SIM TD-LTE US 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-10-23", + "msrp_usd": 1199, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2772", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3687, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 228.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 28.0, + "camera": 5.1, + "battery": 21.3, + "display": 33.2, + "value": 26.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.133418", + "updated_at": "2026-06-19T00:43:44.133418" +} diff --git a/site/public/v1/smartphones/iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-256gb/score/index.json b/site/public/v1/smartphones/iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-256gb/score/index.json new file mode 100644 index 00000000000..1b43855104e --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 28.0, + "camera": 5.1, + "battery": 21.3, + "display": 33.2, + "value": 26.4 +} diff --git a/site/public/v1/smartphones/iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-512gb/index.json b/site/public/v1/smartphones/iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-512gb/index.json new file mode 100644 index 00000000000..2bdaf06d6a5 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 173, + "slug": "iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-512gb", + "name": "iPhone 12 Pro Max UW 5G A2342 Dual SIM TD-LTE US 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-10-23", + "msrp_usd": 1399, + "ram_gb": 6, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2772", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3687, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 228.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 28.0, + "camera": 5.1, + "battery": 21.3, + "display": 33.2, + "value": 18.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.133418", + "updated_at": "2026-06-19T00:43:44.133418" +} diff --git a/site/public/v1/smartphones/iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-512gb/score/index.json b/site/public/v1/smartphones/iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-512gb/score/index.json new file mode 100644 index 00000000000..16cf6b9b0bf --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-max-uw-5g-a2342-dual-sim-td-lte-us-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 28.0, + "camera": 5.1, + "battery": 21.3, + "display": 33.2, + "value": 18.7 +} diff --git a/site/public/v1/smartphones/iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-128gb/index.json b/site/public/v1/smartphones/iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..d116c567b6a --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 176, + "slug": "iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-128gb", + "name": "iPhone 12 Pro UW 5G A2341 Dual SIM TD-LTE US 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-10-23", + "msrp_usd": 999, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2815, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 28.0, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": 32.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.133418", + "updated_at": "2026-06-19T00:43:44.133418" +} diff --git a/site/public/v1/smartphones/iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..d981eabc4f3 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 28.0, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": 32.8 +} diff --git a/site/public/v1/smartphones/iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-256gb/index.json b/site/public/v1/smartphones/iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-256gb/index.json new file mode 100644 index 00000000000..9c24e4c84ad --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 177, + "slug": "iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-256gb", + "name": "iPhone 12 Pro UW 5G A2341 Dual SIM TD-LTE US 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-10-23", + "msrp_usd": 1099, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2815, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 28.0, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": 28.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.133418", + "updated_at": "2026-06-19T00:43:44.133418" +} diff --git a/site/public/v1/smartphones/iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-256gb/score/index.json b/site/public/v1/smartphones/iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-256gb/score/index.json new file mode 100644 index 00000000000..093d39b7547 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 28.0, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": 28.9 +} diff --git a/site/public/v1/smartphones/iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-512gb/index.json b/site/public/v1/smartphones/iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-512gb/index.json new file mode 100644 index 00000000000..afe74a60601 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 178, + "slug": "iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-512gb", + "name": "iPhone 12 Pro UW 5G A2341 Dual SIM TD-LTE US 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-10-23", + "msrp_usd": 1299, + "ram_gb": 6, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2815, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 28.0, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": 21.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.133418", + "updated_at": "2026-06-19T00:43:44.133418" +} diff --git a/site/public/v1/smartphones/iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-512gb/score/index.json b/site/public/v1/smartphones/iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-512gb/score/index.json new file mode 100644 index 00000000000..cfa38c361dc --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-pro-uw-5g-a2341-dual-sim-td-lte-us-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 28.0, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": 21.3 +} diff --git a/site/public/v1/smartphones/iphone-12-uw-5g-a2172-dual-sim-td-lte-us-128gb/index.json b/site/public/v1/smartphones/iphone-12-uw-5g-a2172-dual-sim-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..1170493665a --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-uw-5g-a2172-dual-sim-td-lte-us-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 181, + "slug": "iphone-12-uw-5g-a2172-dual-sim-td-lte-us-128gb", + "name": "iPhone 12 UW 5G A2172 Dual SIM TD-LTE US 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-10-23", + "msrp_usd": 849, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2815, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": 38.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.134418", + "updated_at": "2026-06-19T00:43:44.134418" +} diff --git a/site/public/v1/smartphones/iphone-12-uw-5g-a2172-dual-sim-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/iphone-12-uw-5g-a2172-dual-sim-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..7273e1c1380 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-uw-5g-a2172-dual-sim-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": 38.4 +} diff --git a/site/public/v1/smartphones/iphone-12-uw-5g-a2172-dual-sim-td-lte-us-256gb/index.json b/site/public/v1/smartphones/iphone-12-uw-5g-a2172-dual-sim-td-lte-us-256gb/index.json new file mode 100644 index 00000000000..8ed80e76709 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-uw-5g-a2172-dual-sim-td-lte-us-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 182, + "slug": "iphone-12-uw-5g-a2172-dual-sim-td-lte-us-256gb", + "name": "iPhone 12 UW 5G A2172 Dual SIM TD-LTE US 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-10-23", + "msrp_usd": 949, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2815, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": 34.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.134418", + "updated_at": "2026-06-19T00:43:44.134418" +} diff --git a/site/public/v1/smartphones/iphone-12-uw-5g-a2172-dual-sim-td-lte-us-256gb/score/index.json b/site/public/v1/smartphones/iphone-12-uw-5g-a2172-dual-sim-td-lte-us-256gb/score/index.json new file mode 100644 index 00000000000..b3cef53e4e6 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-uw-5g-a2172-dual-sim-td-lte-us-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": 34.5 +} diff --git a/site/public/v1/smartphones/iphone-12-uw-5g-a2172-dual-sim-td-lte-us-64gb/index.json b/site/public/v1/smartphones/iphone-12-uw-5g-a2172-dual-sim-td-lte-us-64gb/index.json new file mode 100644 index 00000000000..46dd62ce00d --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-uw-5g-a2172-dual-sim-td-lte-us-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 183, + "slug": "iphone-12-uw-5g-a2172-dual-sim-td-lte-us-64gb", + "name": "iPhone 12 UW 5G A2172 Dual SIM TD-LTE US 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 9, + "slug": "apple-a14-bionic", + "name": "Apple A14 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a14-bionic" + }, + "release_date": "2020-10-23", + "msrp_usd": 799, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2815, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "14.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": 40.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.134418", + "updated_at": "2026-06-19T00:43:44.134418" +} diff --git a/site/public/v1/smartphones/iphone-12-uw-5g-a2172-dual-sim-td-lte-us-64gb/score/index.json b/site/public/v1/smartphones/iphone-12-uw-5g-a2172-dual-sim-td-lte-us-64gb/score/index.json new file mode 100644 index 00000000000..4df98a3f8f9 --- /dev/null +++ b/site/public/v1/smartphones/iphone-12-uw-5g-a2172-dual-sim-td-lte-us-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 26.5, + "camera": 5.1, + "battery": 11.0, + "display": 33.5, + "value": 40.3 +} diff --git a/site/public/v1/smartphones/iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-128gb/index.json b/site/public/v1/smartphones/iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-128gb/index.json new file mode 100644 index 00000000000..ddee8d2c7a8 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 197, + "slug": "iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-128gb", + "name": "iPhone 13 5G A2631 Dual SIM TD-LTE JP CA MX 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": 1099, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3227, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.8, + "performance": 33.1, + "camera": 5.1, + "battery": 14.4, + "display": 58.5, + "value": 33.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.136418", + "updated_at": "2026-06-19T00:43:44.136418" +} diff --git a/site/public/v1/smartphones/iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-128gb/score/index.json b/site/public/v1/smartphones/iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-128gb/score/index.json new file mode 100644 index 00000000000..234770f9ff5 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.8, + "performance": 33.1, + "camera": 5.1, + "battery": 14.4, + "display": 58.5, + "value": 33.1 +} diff --git a/site/public/v1/smartphones/iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-256gb/index.json b/site/public/v1/smartphones/iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-256gb/index.json new file mode 100644 index 00000000000..4665ac3d153 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 198, + "slug": "iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-256gb", + "name": "iPhone 13 5G A2631 Dual SIM TD-LTE JP CA MX 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": 1239, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3227, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.8, + "performance": 33.1, + "camera": 5.1, + "battery": 14.4, + "display": 58.5, + "value": 27.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.136418", + "updated_at": "2026-06-19T00:43:44.136418" +} diff --git a/site/public/v1/smartphones/iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-256gb/score/index.json b/site/public/v1/smartphones/iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-256gb/score/index.json new file mode 100644 index 00000000000..c243cd114f9 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.8, + "performance": 33.1, + "camera": 5.1, + "battery": 14.4, + "display": 58.5, + "value": 27.8 +} diff --git a/site/public/v1/smartphones/iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-512gb/index.json b/site/public/v1/smartphones/iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-512gb/index.json new file mode 100644 index 00000000000..349a04557fb --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 199, + "slug": "iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-512gb", + "name": "iPhone 13 5G A2631 Dual SIM TD-LTE JP CA MX 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3227, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.8, + "performance": 33.1, + "camera": 5.1, + "battery": 14.4, + "display": 58.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.136418", + "updated_at": "2026-06-19T00:43:44.136418" +} diff --git a/site/public/v1/smartphones/iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-512gb/score/index.json b/site/public/v1/smartphones/iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-512gb/score/index.json new file mode 100644 index 00000000000..aa563cf9b0c --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-5g-a2631-dual-sim-td-lte-jp-ca-mx-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.8, + "performance": 33.1, + "camera": 5.1, + "battery": 14.4, + "display": 58.5, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-5g-a2633-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/iphone-13-5g-a2633-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..be6d0ab4ec2 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-5g-a2633-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 200, + "slug": "iphone-13-5g-a2633-global-dual-sim-td-lte-128gb", + "name": "iPhone 13 5G A2633 Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": 899, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3227, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.8, + "performance": 33.1, + "camera": 5.1, + "battery": 14.4, + "display": 58.5, + "value": 40.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.136418", + "updated_at": "2026-06-19T00:43:44.136418" +} diff --git a/site/public/v1/smartphones/iphone-13-5g-a2633-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/iphone-13-5g-a2633-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..793902a4983 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-5g-a2633-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.8, + "performance": 33.1, + "camera": 5.1, + "battery": 14.4, + "display": 58.5, + "value": 40.9 +} diff --git a/site/public/v1/smartphones/iphone-13-5g-a2633-global-dual-sim-td-lte-256gb/index.json b/site/public/v1/smartphones/iphone-13-5g-a2633-global-dual-sim-td-lte-256gb/index.json new file mode 100644 index 00000000000..9aae7fea6c4 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-5g-a2633-global-dual-sim-td-lte-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 201, + "slug": "iphone-13-5g-a2633-global-dual-sim-td-lte-256gb", + "name": "iPhone 13 5G A2633 Global Dual SIM TD-LTE 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": 1019, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3227, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.8, + "performance": 33.1, + "camera": 5.1, + "battery": 14.4, + "display": 58.5, + "value": 36.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.136418", + "updated_at": "2026-06-19T00:43:44.136418" +} diff --git a/site/public/v1/smartphones/iphone-13-5g-a2633-global-dual-sim-td-lte-256gb/score/index.json b/site/public/v1/smartphones/iphone-13-5g-a2633-global-dual-sim-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..81cb36af377 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-5g-a2633-global-dual-sim-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.8, + "performance": 33.1, + "camera": 5.1, + "battery": 14.4, + "display": 58.5, + "value": 36.2 +} diff --git a/site/public/v1/smartphones/iphone-13-5g-a2633-global-dual-sim-td-lte-512gb/index.json b/site/public/v1/smartphones/iphone-13-5g-a2633-global-dual-sim-td-lte-512gb/index.json new file mode 100644 index 00000000000..f285900bea4 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-5g-a2633-global-dual-sim-td-lte-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 202, + "slug": "iphone-13-5g-a2633-global-dual-sim-td-lte-512gb", + "name": "iPhone 13 5G A2633 Global Dual SIM TD-LTE 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": 1249, + "ram_gb": 4, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3227, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.8, + "performance": 33.1, + "camera": 5.1, + "battery": 14.4, + "display": 58.5, + "value": 27.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.136418", + "updated_at": "2026-06-19T00:43:44.136418" +} diff --git a/site/public/v1/smartphones/iphone-13-5g-a2633-global-dual-sim-td-lte-512gb/score/index.json b/site/public/v1/smartphones/iphone-13-5g-a2633-global-dual-sim-td-lte-512gb/score/index.json new file mode 100644 index 00000000000..d86a9fc42be --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-5g-a2633-global-dual-sim-td-lte-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.8, + "performance": 33.1, + "camera": 5.1, + "battery": 14.4, + "display": 58.5, + "value": 27.4 +} diff --git a/site/public/v1/smartphones/iphone-13-5g-a2634-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/iphone-13-5g-a2634-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..af3e8c9d379 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-5g-a2634-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 203, + "slug": "iphone-13-5g-a2634-dual-sim-td-lte-cn-128gb", + "name": "iPhone 13 5G A2634 Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3227, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.8, + "performance": 33.1, + "camera": 5.1, + "battery": 14.4, + "display": 58.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.136418", + "updated_at": "2026-06-19T00:43:44.136418" +} diff --git a/site/public/v1/smartphones/iphone-13-5g-a2634-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/iphone-13-5g-a2634-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..aa563cf9b0c --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-5g-a2634-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.8, + "performance": 33.1, + "camera": 5.1, + "battery": 14.4, + "display": 58.5, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-5g-a2634-dual-sim-td-lte-cn-256gb/index.json b/site/public/v1/smartphones/iphone-13-5g-a2634-dual-sim-td-lte-cn-256gb/index.json new file mode 100644 index 00000000000..808df9d71e6 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-5g-a2634-dual-sim-td-lte-cn-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 204, + "slug": "iphone-13-5g-a2634-dual-sim-td-lte-cn-256gb", + "name": "iPhone 13 5G A2634 Dual SIM TD-LTE CN 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3227, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.8, + "performance": 33.1, + "camera": 5.1, + "battery": 14.4, + "display": 58.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.136418", + "updated_at": "2026-06-19T00:43:44.136418" +} diff --git a/site/public/v1/smartphones/iphone-13-5g-a2634-dual-sim-td-lte-cn-256gb/score/index.json b/site/public/v1/smartphones/iphone-13-5g-a2634-dual-sim-td-lte-cn-256gb/score/index.json new file mode 100644 index 00000000000..aa563cf9b0c --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-5g-a2634-dual-sim-td-lte-cn-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.8, + "performance": 33.1, + "camera": 5.1, + "battery": 14.4, + "display": 58.5, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-5g-a2634-dual-sim-td-lte-cn-512gb/index.json b/site/public/v1/smartphones/iphone-13-5g-a2634-dual-sim-td-lte-cn-512gb/index.json new file mode 100644 index 00000000000..c96f1e7dd78 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-5g-a2634-dual-sim-td-lte-cn-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 205, + "slug": "iphone-13-5g-a2634-dual-sim-td-lte-cn-512gb", + "name": "iPhone 13 5G A2634 Dual SIM TD-LTE CN 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3227, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.8, + "performance": 33.1, + "camera": 5.1, + "battery": 14.4, + "display": 58.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.136418", + "updated_at": "2026-06-19T00:43:44.137418" +} diff --git a/site/public/v1/smartphones/iphone-13-5g-a2634-dual-sim-td-lte-cn-512gb/score/index.json b/site/public/v1/smartphones/iphone-13-5g-a2634-dual-sim-td-lte-cn-512gb/score/index.json new file mode 100644 index 00000000000..aa563cf9b0c --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-5g-a2634-dual-sim-td-lte-cn-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.8, + "performance": 33.1, + "camera": 5.1, + "battery": 14.4, + "display": 58.5, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-128gb/index.json b/site/public/v1/smartphones/iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-128gb/index.json new file mode 100644 index 00000000000..c414e14c0d8 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 206, + "slug": "iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-128gb", + "name": "iPhone 13 5G A2635 Dual SIM TD-LTE RU KZ 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3227, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.8, + "performance": 33.1, + "camera": 5.1, + "battery": 14.4, + "display": 58.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.137418", + "updated_at": "2026-06-19T00:43:44.137418" +} diff --git a/site/public/v1/smartphones/iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-128gb/score/index.json b/site/public/v1/smartphones/iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-128gb/score/index.json new file mode 100644 index 00000000000..aa563cf9b0c --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.8, + "performance": 33.1, + "camera": 5.1, + "battery": 14.4, + "display": 58.5, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-256gb/index.json b/site/public/v1/smartphones/iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-256gb/index.json new file mode 100644 index 00000000000..aba3a0ef17a --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 207, + "slug": "iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-256gb", + "name": "iPhone 13 5G A2635 Dual SIM TD-LTE RU KZ 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3227, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.8, + "performance": 33.1, + "camera": 5.1, + "battery": 14.4, + "display": 58.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.137418", + "updated_at": "2026-06-19T00:43:44.137418" +} diff --git a/site/public/v1/smartphones/iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-256gb/score/index.json b/site/public/v1/smartphones/iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-256gb/score/index.json new file mode 100644 index 00000000000..aa563cf9b0c --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.8, + "performance": 33.1, + "camera": 5.1, + "battery": 14.4, + "display": 58.5, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-512gb/index.json b/site/public/v1/smartphones/iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-512gb/index.json new file mode 100644 index 00000000000..d093e488a2e --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 208, + "slug": "iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-512gb", + "name": "iPhone 13 5G A2635 Dual SIM TD-LTE RU KZ 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3227, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.8, + "performance": 33.1, + "camera": 5.1, + "battery": 14.4, + "display": 58.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.137418", + "updated_at": "2026-06-19T00:43:44.137418" +} diff --git a/site/public/v1/smartphones/iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-512gb/score/index.json b/site/public/v1/smartphones/iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-512gb/score/index.json new file mode 100644 index 00000000000..aa563cf9b0c --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-5g-a2635-dual-sim-td-lte-ru-kz-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.8, + "performance": 33.1, + "camera": 5.1, + "battery": 14.4, + "display": 58.5, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-128gb/index.json b/site/public/v1/smartphones/iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-128gb/index.json new file mode 100644 index 00000000000..d219f8cc98c --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 209, + "slug": "iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-128gb", + "name": "iPhone 13 mini 5G A2626 Dual SIM TD-LTE JP CA MX 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 478 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2406, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 60.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.137418", + "updated_at": "2026-06-19T00:43:44.137418" +} diff --git a/site/public/v1/smartphones/iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-128gb/score/index.json b/site/public/v1/smartphones/iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-128gb/score/index.json new file mode 100644 index 00000000000..d10cdc6a04f --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 60.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-256gb/index.json b/site/public/v1/smartphones/iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-256gb/index.json new file mode 100644 index 00000000000..7b4f42ced1c --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 210, + "slug": "iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-256gb", + "name": "iPhone 13 mini 5G A2626 Dual SIM TD-LTE JP CA MX 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": 1089, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 478 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2406, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 60.3, + "value": 33.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.137418", + "updated_at": "2026-06-19T00:43:44.137418" +} diff --git a/site/public/v1/smartphones/iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-256gb/score/index.json b/site/public/v1/smartphones/iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-256gb/score/index.json new file mode 100644 index 00000000000..74db3f7309d --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 60.3, + "value": 33.3 +} diff --git a/site/public/v1/smartphones/iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-512gb/index.json b/site/public/v1/smartphones/iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-512gb/index.json new file mode 100644 index 00000000000..55edfd5cb7d --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 211, + "slug": "iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-512gb", + "name": "iPhone 13 mini 5G A2626 Dual SIM TD-LTE JP CA MX 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 5.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 478 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2406, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 60.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.137418", + "updated_at": "2026-06-19T00:43:44.137418" +} diff --git a/site/public/v1/smartphones/iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-512gb/score/index.json b/site/public/v1/smartphones/iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-512gb/score/index.json new file mode 100644 index 00000000000..d10cdc6a04f --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-mini-5g-a2626-dual-sim-td-lte-jp-ca-mx-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 60.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-mini-5g-a2628-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/iphone-13-mini-5g-a2628-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..0b0e5054847 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-mini-5g-a2628-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 212, + "slug": "iphone-13-mini-5g-a2628-global-dual-sim-td-lte-128gb", + "name": "iPhone 13 mini 5G A2628 Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": 799, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 478 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2406, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 60.3, + "value": 44.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.137418", + "updated_at": "2026-06-19T00:43:44.137418" +} diff --git a/site/public/v1/smartphones/iphone-13-mini-5g-a2628-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/iphone-13-mini-5g-a2628-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..5ab7dc44190 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-mini-5g-a2628-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 60.3, + "value": 44.5 +} diff --git a/site/public/v1/smartphones/iphone-13-mini-5g-a2628-global-dual-sim-td-lte-256gb/index.json b/site/public/v1/smartphones/iphone-13-mini-5g-a2628-global-dual-sim-td-lte-256gb/index.json new file mode 100644 index 00000000000..d9b4b4b4742 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-mini-5g-a2628-global-dual-sim-td-lte-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 213, + "slug": "iphone-13-mini-5g-a2628-global-dual-sim-td-lte-256gb", + "name": "iPhone 13 mini 5G A2628 Global Dual SIM TD-LTE 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": 919, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 478 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2406, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 60.3, + "value": 39.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.137418", + "updated_at": "2026-06-19T00:43:44.137418" +} diff --git a/site/public/v1/smartphones/iphone-13-mini-5g-a2628-global-dual-sim-td-lte-256gb/score/index.json b/site/public/v1/smartphones/iphone-13-mini-5g-a2628-global-dual-sim-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..28cc9288a1d --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-mini-5g-a2628-global-dual-sim-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 60.3, + "value": 39.9 +} diff --git a/site/public/v1/smartphones/iphone-13-mini-5g-a2628-global-dual-sim-td-lte-512gb/index.json b/site/public/v1/smartphones/iphone-13-mini-5g-a2628-global-dual-sim-td-lte-512gb/index.json new file mode 100644 index 00000000000..f29a67dd06f --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-mini-5g-a2628-global-dual-sim-td-lte-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 214, + "slug": "iphone-13-mini-5g-a2628-global-dual-sim-td-lte-512gb", + "name": "iPhone 13 mini 5G A2628 Global Dual SIM TD-LTE 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": 1149, + "ram_gb": 4, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 5.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 478 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2406, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 60.3, + "value": 31.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.138419", + "updated_at": "2026-06-19T00:43:44.138419" +} diff --git a/site/public/v1/smartphones/iphone-13-mini-5g-a2628-global-dual-sim-td-lte-512gb/score/index.json b/site/public/v1/smartphones/iphone-13-mini-5g-a2628-global-dual-sim-td-lte-512gb/score/index.json new file mode 100644 index 00000000000..ed1f36480d3 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-mini-5g-a2628-global-dual-sim-td-lte-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 60.3, + "value": 31.1 +} diff --git a/site/public/v1/smartphones/iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..555c2fd9ae3 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 215, + "slug": "iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-128gb", + "name": "iPhone 13 mini 5G A2629 Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 478 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2406, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 60.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.138419", + "updated_at": "2026-06-19T00:43:44.138419" +} diff --git a/site/public/v1/smartphones/iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..d10cdc6a04f --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 60.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-256gb/index.json b/site/public/v1/smartphones/iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-256gb/index.json new file mode 100644 index 00000000000..925f235c296 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 216, + "slug": "iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-256gb", + "name": "iPhone 13 mini 5G A2629 Dual SIM TD-LTE CN 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 478 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2406, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 60.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.138419", + "updated_at": "2026-06-19T00:43:44.138419" +} diff --git a/site/public/v1/smartphones/iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-256gb/score/index.json b/site/public/v1/smartphones/iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-256gb/score/index.json new file mode 100644 index 00000000000..d10cdc6a04f --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 60.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-512gb/index.json b/site/public/v1/smartphones/iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-512gb/index.json new file mode 100644 index 00000000000..0af43c7a87f --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 217, + "slug": "iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-512gb", + "name": "iPhone 13 mini 5G A2629 Dual SIM TD-LTE CN 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 5.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 478 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2406, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 60.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.138419", + "updated_at": "2026-06-19T00:43:44.138419" +} diff --git a/site/public/v1/smartphones/iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-512gb/score/index.json b/site/public/v1/smartphones/iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-512gb/score/index.json new file mode 100644 index 00000000000..d10cdc6a04f --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-mini-5g-a2629-dual-sim-td-lte-cn-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 60.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-128gb/index.json b/site/public/v1/smartphones/iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-128gb/index.json new file mode 100644 index 00000000000..b12b3bb087b --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 218, + "slug": "iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-128gb", + "name": "iPhone 13 mini 5G A2630 Dual SIM TD-LTE RU KZ 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 478 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2406, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 60.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.138419", + "updated_at": "2026-06-19T00:43:44.138419" +} diff --git a/site/public/v1/smartphones/iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-128gb/score/index.json b/site/public/v1/smartphones/iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-128gb/score/index.json new file mode 100644 index 00000000000..d10cdc6a04f --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 60.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-256gb/index.json b/site/public/v1/smartphones/iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-256gb/index.json new file mode 100644 index 00000000000..7b5dcc2081e --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 219, + "slug": "iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-256gb", + "name": "iPhone 13 mini 5G A2630 Dual SIM TD-LTE RU KZ 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 478 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2406, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 60.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.138419", + "updated_at": "2026-06-19T00:43:44.138419" +} diff --git a/site/public/v1/smartphones/iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-256gb/score/index.json b/site/public/v1/smartphones/iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-256gb/score/index.json new file mode 100644 index 00000000000..d10cdc6a04f --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 60.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-512gb/index.json b/site/public/v1/smartphones/iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-512gb/index.json new file mode 100644 index 00000000000..9a9a062dc66 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 220, + "slug": "iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-512gb", + "name": "iPhone 13 mini 5G A2630 Dual SIM TD-LTE RU KZ 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 5.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 478 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2406, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 60.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.138419", + "updated_at": "2026-06-19T00:43:44.138419" +} diff --git a/site/public/v1/smartphones/iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-512gb/score/index.json b/site/public/v1/smartphones/iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-512gb/score/index.json new file mode 100644 index 00000000000..d10cdc6a04f --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-mini-5g-a2630-dual-sim-td-lte-ru-kz-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 60.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-128gb/index.json b/site/public/v1/smartphones/iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..da971041bdb --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 221, + "slug": "iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-128gb", + "name": "iPhone 13 mini UW 5G A2481 Dual SIM TD-LTE US 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": 799, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 478 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2406, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 141.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 60.3, + "value": 44.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.139419", + "updated_at": "2026-06-19T00:43:44.139419" +} diff --git a/site/public/v1/smartphones/iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..5ab7dc44190 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 60.3, + "value": 44.5 +} diff --git a/site/public/v1/smartphones/iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-256gb/index.json b/site/public/v1/smartphones/iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-256gb/index.json new file mode 100644 index 00000000000..51f31c0131c --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 222, + "slug": "iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-256gb", + "name": "iPhone 13 mini UW 5G A2481 Dual SIM TD-LTE US 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": 799, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 478 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2406, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 141.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 60.3, + "value": 44.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.139419", + "updated_at": "2026-06-19T00:43:44.139419" +} diff --git a/site/public/v1/smartphones/iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-256gb/score/index.json b/site/public/v1/smartphones/iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-256gb/score/index.json new file mode 100644 index 00000000000..5ab7dc44190 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 60.3, + "value": 44.5 +} diff --git a/site/public/v1/smartphones/iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-512gb/index.json b/site/public/v1/smartphones/iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-512gb/index.json new file mode 100644 index 00000000000..e262c91130e --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 223, + "slug": "iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-512gb", + "name": "iPhone 13 mini UW 5G A2481 Dual SIM TD-LTE US 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": 999, + "ram_gb": 4, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 5.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 478 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 2406, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 141.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 60.3, + "value": 36.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.139419", + "updated_at": "2026-06-19T00:43:44.139419" +} diff --git a/site/public/v1/smartphones/iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-512gb/score/index.json b/site/public/v1/smartphones/iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-512gb/score/index.json new file mode 100644 index 00000000000..3d2d114c97e --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-mini-uw-5g-a2481-dual-sim-td-lte-us-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 60.3, + "value": 36.8 +} diff --git a/site/public/v1/smartphones/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-128gb/index.json b/site/public/v1/smartphones/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-128gb/index.json new file mode 100644 index 00000000000..78bb858b152 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 226, + "slug": "iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-128gb", + "name": "iPhone 13 Pro 5G A2636 Dual SIM TD-LTE JP CA MX 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3095, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.139419", + "updated_at": "2026-06-19T00:43:44.139419" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-128gb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-128gb/score/index.json new file mode 100644 index 00000000000..8f66aa4d73d --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-1tb/index.json b/site/public/v1/smartphones/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-1tb/index.json new file mode 100644 index 00000000000..ecb5729ebf1 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-1tb/index.json @@ -0,0 +1,77 @@ +{ + "id": 227, + "slug": "iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-1tb", + "name": "iPhone 13 Pro 5G A2636 Dual SIM TD-LTE JP CA MX 1TB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": 2079, + "ram_gb": 6, + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3095, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": 13.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.139419", + "updated_at": "2026-06-19T00:43:44.139419" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-1tb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-1tb/score/index.json new file mode 100644 index 00000000000..53a8c058291 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-1tb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": 13.8 +} diff --git a/site/public/v1/smartphones/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-256gb/index.json b/site/public/v1/smartphones/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-256gb/index.json new file mode 100644 index 00000000000..1211c0539bd --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 228, + "slug": "iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-256gb", + "name": "iPhone 13 Pro 5G A2636 Dual SIM TD-LTE JP CA MX 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3095, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.140419", + "updated_at": "2026-06-19T00:43:44.140419" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-256gb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-256gb/score/index.json new file mode 100644 index 00000000000..8f66aa4d73d --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-512gb/index.json b/site/public/v1/smartphones/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-512gb/index.json new file mode 100644 index 00000000000..3dbf4dd4458 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 229, + "slug": "iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-512gb", + "name": "iPhone 13 Pro 5G A2636 Dual SIM TD-LTE JP CA MX 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3095, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.140419", + "updated_at": "2026-06-19T00:43:44.140419" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-512gb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-512gb/score/index.json new file mode 100644 index 00000000000..8f66aa4d73d --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-5g-a2636-dual-sim-td-lte-jp-ca-mx-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..abb32e38144 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 230, + "slug": "iphone-13-pro-5g-a2638-global-dual-sim-td-lte-128gb", + "name": "iPhone 13 Pro 5G A2638 Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": 1149, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3095, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": 31.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.140419", + "updated_at": "2026-06-19T00:43:44.140419" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..b8a4f2677cf --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": 31.2 +} diff --git a/site/public/v1/smartphones/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-1tb/index.json b/site/public/v1/smartphones/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-1tb/index.json new file mode 100644 index 00000000000..74db3ab964a --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-1tb/index.json @@ -0,0 +1,77 @@ +{ + "id": 231, + "slug": "iphone-13-pro-5g-a2638-global-dual-sim-td-lte-1tb", + "name": "iPhone 13 Pro 5G A2638 Global Dual SIM TD-LTE 1TB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": 1729, + "ram_gb": 6, + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3095, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": 13.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.140419", + "updated_at": "2026-06-19T00:43:44.140419" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-1tb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-1tb/score/index.json new file mode 100644 index 00000000000..53a8c058291 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-1tb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": 13.8 +} diff --git a/site/public/v1/smartphones/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-256gb/index.json b/site/public/v1/smartphones/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-256gb/index.json new file mode 100644 index 00000000000..8666e21d731 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 232, + "slug": "iphone-13-pro-5g-a2638-global-dual-sim-td-lte-256gb", + "name": "iPhone 13 Pro 5G A2638 Global Dual SIM TD-LTE 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": 1269, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3095, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": 26.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.140419", + "updated_at": "2026-06-19T00:43:44.140419" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-256gb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..b9669b9e837 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": 26.6 +} diff --git a/site/public/v1/smartphones/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-512gb/index.json b/site/public/v1/smartphones/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-512gb/index.json new file mode 100644 index 00000000000..0b8a24bd20a --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 233, + "slug": "iphone-13-pro-5g-a2638-global-dual-sim-td-lte-512gb", + "name": "iPhone 13 Pro 5G A2638 Global Dual SIM TD-LTE 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": 1499, + "ram_gb": 6, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3095, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 204.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": 17.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.140419", + "updated_at": "2026-06-19T00:43:44.140419" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-512gb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-512gb/score/index.json new file mode 100644 index 00000000000..622828d0de6 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-5g-a2638-global-dual-sim-td-lte-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": 17.7 +} diff --git a/site/public/v1/smartphones/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..7346f416f55 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 234, + "slug": "iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-128gb", + "name": "iPhone 13 Pro 5G A2639 Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3095, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.141419", + "updated_at": "2026-06-19T00:43:44.141419" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..8f66aa4d73d --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-1tb/index.json b/site/public/v1/smartphones/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-1tb/index.json new file mode 100644 index 00000000000..3191a72f996 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-1tb/index.json @@ -0,0 +1,77 @@ +{ + "id": 235, + "slug": "iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-1tb", + "name": "iPhone 13 Pro 5G A2639 Dual SIM TD-LTE CN 1TB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3095, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.141419", + "updated_at": "2026-06-19T00:43:44.141419" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-1tb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-1tb/score/index.json new file mode 100644 index 00000000000..8f66aa4d73d --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-1tb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-256gb/index.json b/site/public/v1/smartphones/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-256gb/index.json new file mode 100644 index 00000000000..a637658c32a --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 236, + "slug": "iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-256gb", + "name": "iPhone 13 Pro 5G A2639 Dual SIM TD-LTE CN 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3095, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.141419", + "updated_at": "2026-06-19T00:43:44.141419" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-256gb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-256gb/score/index.json new file mode 100644 index 00000000000..8f66aa4d73d --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-512gb/index.json b/site/public/v1/smartphones/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-512gb/index.json new file mode 100644 index 00000000000..a3120e333d9 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 237, + "slug": "iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-512gb", + "name": "iPhone 13 Pro 5G A2639 Dual SIM TD-LTE CN 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3095, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.141419", + "updated_at": "2026-06-19T00:43:44.141419" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-512gb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-512gb/score/index.json new file mode 100644 index 00000000000..8f66aa4d73d --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-5g-a2639-dual-sim-td-lte-cn-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-128gb/index.json b/site/public/v1/smartphones/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-128gb/index.json new file mode 100644 index 00000000000..e05d9266a49 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 238, + "slug": "iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-128gb", + "name": "iPhone 13 Pro 5G A2640 Dual SIM TD-LTE RU KZ 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3095, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.141419", + "updated_at": "2026-06-19T00:43:44.141419" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-128gb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-128gb/score/index.json new file mode 100644 index 00000000000..8f66aa4d73d --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-1tb/index.json b/site/public/v1/smartphones/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-1tb/index.json new file mode 100644 index 00000000000..5132f2818a0 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-1tb/index.json @@ -0,0 +1,77 @@ +{ + "id": 239, + "slug": "iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-1tb", + "name": "iPhone 13 Pro 5G A2640 Dual SIM TD-LTE RU KZ 1TB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3095, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.141419", + "updated_at": "2026-06-19T00:43:44.141419" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-1tb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-1tb/score/index.json new file mode 100644 index 00000000000..8f66aa4d73d --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-1tb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-256gb/index.json b/site/public/v1/smartphones/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-256gb/index.json new file mode 100644 index 00000000000..c2677cf5832 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 240, + "slug": "iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-256gb", + "name": "iPhone 13 Pro 5G A2640 Dual SIM TD-LTE RU KZ 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3095, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.141419", + "updated_at": "2026-06-19T00:43:44.141419" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-256gb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-256gb/score/index.json new file mode 100644 index 00000000000..8f66aa4d73d --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-512gb/index.json b/site/public/v1/smartphones/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-512gb/index.json new file mode 100644 index 00000000000..760e0b2dc0d --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 241, + "slug": "iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-512gb", + "name": "iPhone 13 Pro 5G A2640 Dual SIM TD-LTE RU KZ 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3095, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.142419", + "updated_at": "2026-06-19T00:43:44.142419" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-512gb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-512gb/score/index.json new file mode 100644 index 00000000000..8f66aa4d73d --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-5g-a2640-dual-sim-td-lte-ru-kz-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-128gb/index.json b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-128gb/index.json new file mode 100644 index 00000000000..d7bf8b90204 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 242, + "slug": "iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-128gb", + "name": "iPhone 13 Pro Max 5G A2641 Dual SIM TD-LTE JP CA MX 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4352, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 238.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.142419", + "updated_at": "2026-06-19T00:43:44.142419" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-128gb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-128gb/score/index.json new file mode 100644 index 00000000000..57964627ba3 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-1tb/index.json b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-1tb/index.json new file mode 100644 index 00000000000..808c847f9d8 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-1tb/index.json @@ -0,0 +1,77 @@ +{ + "id": 243, + "slug": "iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-1tb", + "name": "iPhone 13 Pro Max 5G A2641 Dual SIM TD-LTE JP CA MX 1TB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4352, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 238.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.142419", + "updated_at": "2026-06-19T00:43:44.142419" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-1tb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-1tb/score/index.json new file mode 100644 index 00000000000..57964627ba3 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-1tb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-256gb/index.json b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-256gb/index.json new file mode 100644 index 00000000000..aaa827fecd6 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 244, + "slug": "iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-256gb", + "name": "iPhone 13 Pro Max 5G A2641 Dual SIM TD-LTE JP CA MX 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": 1689, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4352, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 238.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": 16.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.142419", + "updated_at": "2026-06-19T00:43:44.142419" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-256gb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-256gb/score/index.json new file mode 100644 index 00000000000..2f0ad920d12 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": 16.1 +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-512gb/index.json b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-512gb/index.json new file mode 100644 index 00000000000..06074bab5bc --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 245, + "slug": "iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-512gb", + "name": "iPhone 13 Pro Max 5G A2641 Dual SIM TD-LTE JP CA MX 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": 1959, + "ram_gb": 6, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4352, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 238.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": 16.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.142419", + "updated_at": "2026-06-19T00:43:44.142419" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-512gb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-512gb/score/index.json new file mode 100644 index 00000000000..2f0ad920d12 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2641-dual-sim-td-lte-jp-ca-mx-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": 16.1 +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..a47126aaaf5 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 246, + "slug": "iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-128gb", + "name": "iPhone 13 Pro Max 5G A2643 Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": 1249, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4352, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 238.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": 29.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.142419", + "updated_at": "2026-06-19T00:43:44.142419" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..f83e934f4e8 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": 29.6 +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-1tb/index.json b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-1tb/index.json new file mode 100644 index 00000000000..53186bc5a58 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-1tb/index.json @@ -0,0 +1,77 @@ +{ + "id": 247, + "slug": "iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-1tb", + "name": "iPhone 13 Pro Max 5G A2643 Global Dual SIM TD-LTE 1TB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": 1829, + "ram_gb": 6, + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4352, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 238.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": 16.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.142419", + "updated_at": "2026-06-19T00:43:44.142419" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-1tb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-1tb/score/index.json new file mode 100644 index 00000000000..2f0ad920d12 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-1tb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": 16.1 +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-256gb/index.json b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-256gb/index.json new file mode 100644 index 00000000000..3a459887b59 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 248, + "slug": "iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-256gb", + "name": "iPhone 13 Pro Max 5G A2643 Global Dual SIM TD-LTE 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": 1369, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4352, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 238.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": 25.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.142419", + "updated_at": "2026-06-19T00:43:44.142419" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-256gb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..e40f7414006 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": 25.0 +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-512gb/index.json b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-512gb/index.json new file mode 100644 index 00000000000..9a449ad32b9 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 249, + "slug": "iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-512gb", + "name": "iPhone 13 Pro Max 5G A2643 Global Dual SIM TD-LTE 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": 1599, + "ram_gb": 6, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4352, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 238.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": 16.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.142419", + "updated_at": "2026-06-19T00:43:44.142419" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-512gb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-512gb/score/index.json new file mode 100644 index 00000000000..65c8e2bf496 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2643-global-dual-sim-td-lte-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": 16.2 +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..4f5455e738b --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 250, + "slug": "iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-128gb", + "name": "iPhone 13 Pro Max 5G A2644 Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4352, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 238.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.143418", + "updated_at": "2026-06-19T00:43:44.143418" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..57964627ba3 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-1tb/index.json b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-1tb/index.json new file mode 100644 index 00000000000..8e6b04b4eb8 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-1tb/index.json @@ -0,0 +1,77 @@ +{ + "id": 251, + "slug": "iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-1tb", + "name": "iPhone 13 Pro Max 5G A2644 Dual SIM TD-LTE CN 1TB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4352, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 238.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.143418", + "updated_at": "2026-06-19T00:43:44.143418" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-1tb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-1tb/score/index.json new file mode 100644 index 00000000000..57964627ba3 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-1tb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-256gb/index.json b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-256gb/index.json new file mode 100644 index 00000000000..daf31146da3 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 252, + "slug": "iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-256gb", + "name": "iPhone 13 Pro Max 5G A2644 Dual SIM TD-LTE CN 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4352, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 238.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.143418", + "updated_at": "2026-06-19T00:43:44.143418" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-256gb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-256gb/score/index.json new file mode 100644 index 00000000000..57964627ba3 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-512gb/index.json b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-512gb/index.json new file mode 100644 index 00000000000..4a5c230d092 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 253, + "slug": "iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-512gb", + "name": "iPhone 13 Pro Max 5G A2644 Dual SIM TD-LTE CN 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4352, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 238.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.143418", + "updated_at": "2026-06-19T00:43:44.143418" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-512gb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-512gb/score/index.json new file mode 100644 index 00000000000..57964627ba3 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2644-dual-sim-td-lte-cn-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-128gb/index.json b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-128gb/index.json new file mode 100644 index 00000000000..8efaec6dbc2 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 254, + "slug": "iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-128gb", + "name": "iPhone 13 Pro Max 5G A2645 Dual SIM TD-LTE RU KZ 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4352, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 238.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.143418", + "updated_at": "2026-06-19T00:43:44.143418" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-128gb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-128gb/score/index.json new file mode 100644 index 00000000000..57964627ba3 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-1tb/index.json b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-1tb/index.json new file mode 100644 index 00000000000..4145d01f146 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-1tb/index.json @@ -0,0 +1,77 @@ +{ + "id": 255, + "slug": "iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-1tb", + "name": "iPhone 13 Pro Max 5G A2645 Dual SIM TD-LTE RU KZ 1TB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4352, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 238.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.143418", + "updated_at": "2026-06-19T00:43:44.143418" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-1tb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-1tb/score/index.json new file mode 100644 index 00000000000..57964627ba3 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-1tb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-256gb/index.json b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-256gb/index.json new file mode 100644 index 00000000000..df805df455b --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 256, + "slug": "iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-256gb", + "name": "iPhone 13 Pro Max 5G A2645 Dual SIM TD-LTE RU KZ 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4352, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 238.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.144419", + "updated_at": "2026-06-19T00:43:44.144419" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-256gb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-256gb/score/index.json new file mode 100644 index 00000000000..57964627ba3 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-512gb/index.json b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-512gb/index.json new file mode 100644 index 00000000000..f48d237440f --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 257, + "slug": "iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-512gb", + "name": "iPhone 13 Pro Max 5G A2645 Dual SIM TD-LTE RU KZ 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4352, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 238.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.144419", + "updated_at": "2026-06-19T00:43:44.144419" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-512gb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-512gb/score/index.json new file mode 100644 index 00000000000..57964627ba3 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-5g-a2645-dual-sim-td-lte-ru-kz-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-128gb/index.json b/site/public/v1/smartphones/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..220b7e4a646 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 258, + "slug": "iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-128gb", + "name": "iPhone 13 Pro Max UW 5G A2484 Dual SIM TD-LTE US 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": 1099, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4352, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 240.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": 35.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.144419", + "updated_at": "2026-06-19T00:43:44.144419" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..9f0edc4e989 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": 35.4 +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-1tb/index.json b/site/public/v1/smartphones/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-1tb/index.json new file mode 100644 index 00000000000..97771e04822 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-1tb/index.json @@ -0,0 +1,77 @@ +{ + "id": 259, + "slug": "iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-1tb", + "name": "iPhone 13 Pro Max UW 5G A2484 Dual SIM TD-LTE US 1TB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": 1599, + "ram_gb": 6, + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4352, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 240.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": 16.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.144419", + "updated_at": "2026-06-19T00:43:44.144419" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-1tb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-1tb/score/index.json new file mode 100644 index 00000000000..65c8e2bf496 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-1tb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": 16.2 +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-256gb/index.json b/site/public/v1/smartphones/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-256gb/index.json new file mode 100644 index 00000000000..fdda17f3ee7 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 260, + "slug": "iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-256gb", + "name": "iPhone 13 Pro Max UW 5G A2484 Dual SIM TD-LTE US 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": 1199, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4352, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 240.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": 31.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.144419", + "updated_at": "2026-06-19T00:43:44.144419" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-256gb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-256gb/score/index.json new file mode 100644 index 00000000000..614b93a6727 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": 31.5 +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-512gb/index.json b/site/public/v1/smartphones/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-512gb/index.json new file mode 100644 index 00000000000..e7d4461b2ab --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 261, + "slug": "iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-512gb", + "name": "iPhone 13 Pro Max UW 5G A2484 Dual SIM TD-LTE US 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": 1399, + "ram_gb": 6, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.68, + "resolution": "1284x2778", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 458 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4352, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 240.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": 23.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.144419", + "updated_at": "2026-06-19T00:43:44.144419" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-512gb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-512gb/score/index.json new file mode 100644 index 00000000000..a4ad49c2019 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-max-uw-5g-a2484-dual-sim-td-lte-us-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 34.6, + "camera": 5.1, + "battery": 31.3, + "display": 58.3, + "value": 23.9 +} diff --git a/site/public/v1/smartphones/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-128gb/index.json b/site/public/v1/smartphones/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..e9edb760760 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 264, + "slug": "iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-128gb", + "name": "iPhone 13 Pro UW 5G A2483 Dual SIM TD-LTE US 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": 1099, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3095, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 204.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": 33.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.144419", + "updated_at": "2026-06-19T00:43:44.144419" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..41e049ab775 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": 33.0 +} diff --git a/site/public/v1/smartphones/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-1tb/index.json b/site/public/v1/smartphones/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-1tb/index.json new file mode 100644 index 00000000000..ece4fffc1f8 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-1tb/index.json @@ -0,0 +1,77 @@ +{ + "id": 265, + "slug": "iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-1tb", + "name": "iPhone 13 Pro UW 5G A2483 Dual SIM TD-LTE US 1TB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": 1499, + "ram_gb": 6, + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3095, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 204.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": 17.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.145418", + "updated_at": "2026-06-19T00:43:44.145418" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-1tb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-1tb/score/index.json new file mode 100644 index 00000000000..622828d0de6 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-1tb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": 17.7 +} diff --git a/site/public/v1/smartphones/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-256gb/index.json b/site/public/v1/smartphones/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-256gb/index.json new file mode 100644 index 00000000000..dc6ac079ba3 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 266, + "slug": "iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-256gb", + "name": "iPhone 13 Pro UW 5G A2483 Dual SIM TD-LTE US 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": 1099, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3095, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 204.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": 33.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.145418", + "updated_at": "2026-06-19T00:43:44.145418" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-256gb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-256gb/score/index.json new file mode 100644 index 00000000000..41e049ab775 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": 33.0 +} diff --git a/site/public/v1/smartphones/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-512gb/index.json b/site/public/v1/smartphones/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-512gb/index.json new file mode 100644 index 00000000000..b238c4795ad --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 267, + "slug": "iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-512gb", + "name": "iPhone 13 Pro UW 5G A2483 Dual SIM TD-LTE US 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": 1299, + "ram_gb": 6, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.1, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3095, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 204.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": 25.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.145418", + "updated_at": "2026-06-19T00:43:44.145418" +} diff --git a/site/public/v1/smartphones/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-512gb/score/index.json b/site/public/v1/smartphones/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-512gb/score/index.json new file mode 100644 index 00000000000..e9cc6267678 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-pro-uw-5g-a2483-dual-sim-td-lte-us-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 34.6, + "camera": 5.1, + "battery": 12.4, + "display": 58.2, + "value": 25.4 +} diff --git a/site/public/v1/smartphones/iphone-13-uw-5g-a2482-dual-sim-td-lte-us-128gb/index.json b/site/public/v1/smartphones/iphone-13-uw-5g-a2482-dual-sim-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..cb16818c299 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-uw-5g-a2482-dual-sim-td-lte-us-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 270, + "slug": "iphone-13-uw-5g-a2482-dual-sim-td-lte-us-128gb", + "name": "iPhone 13 UW 5G A2482 Dual SIM TD-LTE US 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": 799, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3227, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.8, + "performance": 33.1, + "camera": 5.1, + "battery": 14.4, + "display": 58.5, + "value": 44.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.145418", + "updated_at": "2026-06-19T00:43:44.145418" +} diff --git a/site/public/v1/smartphones/iphone-13-uw-5g-a2482-dual-sim-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/iphone-13-uw-5g-a2482-dual-sim-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..b7b7b45743c --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-uw-5g-a2482-dual-sim-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.8, + "performance": 33.1, + "camera": 5.1, + "battery": 14.4, + "display": 58.5, + "value": 44.7 +} diff --git a/site/public/v1/smartphones/iphone-13-uw-5g-a2482-dual-sim-td-lte-us-256gb/index.json b/site/public/v1/smartphones/iphone-13-uw-5g-a2482-dual-sim-td-lte-us-256gb/index.json new file mode 100644 index 00000000000..8eeaba6957a --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-uw-5g-a2482-dual-sim-td-lte-us-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 271, + "slug": "iphone-13-uw-5g-a2482-dual-sim-td-lte-us-256gb", + "name": "iPhone 13 UW 5G A2482 Dual SIM TD-LTE US 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": 899, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3227, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.8, + "performance": 33.1, + "camera": 5.1, + "battery": 14.4, + "display": 58.5, + "value": 40.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.145418", + "updated_at": "2026-06-19T00:43:44.145418" +} diff --git a/site/public/v1/smartphones/iphone-13-uw-5g-a2482-dual-sim-td-lte-us-256gb/score/index.json b/site/public/v1/smartphones/iphone-13-uw-5g-a2482-dual-sim-td-lte-us-256gb/score/index.json new file mode 100644 index 00000000000..793902a4983 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-uw-5g-a2482-dual-sim-td-lte-us-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.8, + "performance": 33.1, + "camera": 5.1, + "battery": 14.4, + "display": 58.5, + "value": 40.9 +} diff --git a/site/public/v1/smartphones/iphone-13-uw-5g-a2482-dual-sim-td-lte-us-512gb/index.json b/site/public/v1/smartphones/iphone-13-uw-5g-a2482-dual-sim-td-lte-us-512gb/index.json new file mode 100644 index 00000000000..eaacacbb262 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-uw-5g-a2482-dual-sim-td-lte-us-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 272, + "slug": "iphone-13-uw-5g-a2482-dual-sim-td-lte-us-512gb", + "name": "iPhone 13 UW 5G A2482 Dual SIM TD-LTE US 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2021-09-24", + "msrp_usd": 1099, + "ram_gb": 4, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.06, + "resolution": "1170x2532", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 460 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3227, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.8, + "performance": 33.1, + "camera": 5.1, + "battery": 14.4, + "display": 58.5, + "value": 33.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.145418", + "updated_at": "2026-06-19T00:43:44.145418" +} diff --git a/site/public/v1/smartphones/iphone-13-uw-5g-a2482-dual-sim-td-lte-us-512gb/score/index.json b/site/public/v1/smartphones/iphone-13-uw-5g-a2482-dual-sim-td-lte-us-512gb/score/index.json new file mode 100644 index 00000000000..234770f9ff5 --- /dev/null +++ b/site/public/v1/smartphones/iphone-13-uw-5g-a2482-dual-sim-td-lte-us-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.8, + "performance": 33.1, + "camera": 5.1, + "battery": 14.4, + "display": 58.5, + "value": 33.1 +} diff --git a/site/public/v1/smartphones/iphone-8-a1863-td-lte-128gb/index.json b/site/public/v1/smartphones/iphone-8-a1863-td-lte-128gb/index.json new file mode 100644 index 00000000000..62c20c6a973 --- /dev/null +++ b/site/public/v1/smartphones/iphone-8-a1863-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 122, + "slug": "iphone-8-a1863-td-lte-128gb", + "name": "iPhone 8 A1863 TD-LTE 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 6, + "slug": "apple-a11-bionic", + "name": "Apple A11 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 10.0, + "gpu_name": "Apple GPU (3-core)", + "url": "/v1/socs/apple-a11-bionic" + }, + "release_date": "2019-09-12", + "msrp_usd": 499, + "ram_gb": 2, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 1821, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 148.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12.4", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.9, + "performance": 0.9, + "camera": 5.1, + "battery": 0.0, + "display": 37.5, + "value": 47.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.125419", + "updated_at": "2026-06-19T00:43:44.125419" +} diff --git a/site/public/v1/smartphones/iphone-8-a1863-td-lte-128gb/score/index.json b/site/public/v1/smartphones/iphone-8-a1863-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..0db91bb9a63 --- /dev/null +++ b/site/public/v1/smartphones/iphone-8-a1863-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.9, + "performance": 0.9, + "camera": 5.1, + "battery": 0.0, + "display": 37.5, + "value": 47.8 +} diff --git a/site/public/v1/smartphones/iphone-8-a1905-td-lte-128gb/index.json b/site/public/v1/smartphones/iphone-8-a1905-td-lte-128gb/index.json new file mode 100644 index 00000000000..2b9cc93432b --- /dev/null +++ b/site/public/v1/smartphones/iphone-8-a1905-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 123, + "slug": "iphone-8-a1905-td-lte-128gb", + "name": "iPhone 8 A1905 TD-LTE 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 6, + "slug": "apple-a11-bionic", + "name": "Apple A11 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 10.0, + "gpu_name": "Apple GPU (3-core)", + "url": "/v1/socs/apple-a11-bionic" + }, + "release_date": "2019-09-12", + "msrp_usd": 499, + "ram_gb": 2, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 1821, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 148.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12.4", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.9, + "performance": 0.9, + "camera": 5.1, + "battery": 0.0, + "display": 37.5, + "value": 47.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.125419", + "updated_at": "2026-06-19T00:43:44.125419" +} diff --git a/site/public/v1/smartphones/iphone-8-a1905-td-lte-128gb/score/index.json b/site/public/v1/smartphones/iphone-8-a1905-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..0db91bb9a63 --- /dev/null +++ b/site/public/v1/smartphones/iphone-8-a1905-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.9, + "performance": 0.9, + "camera": 5.1, + "battery": 0.0, + "display": 37.5, + "value": 47.8 +} diff --git a/site/public/v1/smartphones/iphone-8-a1906-td-lte-jp-128gb/index.json b/site/public/v1/smartphones/iphone-8-a1906-td-lte-jp-128gb/index.json new file mode 100644 index 00000000000..e7335a7a010 --- /dev/null +++ b/site/public/v1/smartphones/iphone-8-a1906-td-lte-jp-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 124, + "slug": "iphone-8-a1906-td-lte-jp-128gb", + "name": "iPhone 8 A1906 TD-LTE JP 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 6, + "slug": "apple-a11-bionic", + "name": "Apple A11 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 10.0, + "gpu_name": "Apple GPU (3-core)", + "url": "/v1/socs/apple-a11-bionic" + }, + "release_date": "2019-09-12", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 1821, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 148.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12.4", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.9, + "performance": 0.9, + "camera": 5.1, + "battery": 0.0, + "display": 37.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.126419", + "updated_at": "2026-06-19T00:43:44.126419" +} diff --git a/site/public/v1/smartphones/iphone-8-a1906-td-lte-jp-128gb/score/index.json b/site/public/v1/smartphones/iphone-8-a1906-td-lte-jp-128gb/score/index.json new file mode 100644 index 00000000000..e81b97935e0 --- /dev/null +++ b/site/public/v1/smartphones/iphone-8-a1906-td-lte-jp-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.9, + "performance": 0.9, + "camera": 5.1, + "battery": 0.0, + "display": 37.5, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-8-a1907-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/iphone-8-a1907-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..144cb028b2a --- /dev/null +++ b/site/public/v1/smartphones/iphone-8-a1907-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 125, + "slug": "iphone-8-a1907-td-lte-cn-128gb", + "name": "iPhone 8 A1907 TD-LTE CN 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 6, + "slug": "apple-a11-bionic", + "name": "Apple A11 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 10.0, + "gpu_name": "Apple GPU (3-core)", + "url": "/v1/socs/apple-a11-bionic" + }, + "release_date": "2019-09-01", + "msrp_usd": 3999, + "ram_gb": 2, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 1820, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 148.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12.4", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.9, + "performance": 0.9, + "camera": 5.1, + "battery": 0.0, + "display": 37.5, + "value": 5.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.126419", + "updated_at": "2026-06-19T00:43:44.126419" +} diff --git a/site/public/v1/smartphones/iphone-8-a1907-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/iphone-8-a1907-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..5fccb395770 --- /dev/null +++ b/site/public/v1/smartphones/iphone-8-a1907-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.9, + "performance": 0.9, + "camera": 5.1, + "battery": 0.0, + "display": 37.5, + "value": 5.5 +} diff --git a/site/public/v1/smartphones/iphone-8-a1907-td-lte-cn-64gb/index.json b/site/public/v1/smartphones/iphone-8-a1907-td-lte-cn-64gb/index.json new file mode 100644 index 00000000000..1ca196a3b76 --- /dev/null +++ b/site/public/v1/smartphones/iphone-8-a1907-td-lte-cn-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 38, + "slug": "iphone-8-a1907-td-lte-cn-64gb", + "name": "iPhone 8 A1907 TD-LTE CN 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 6, + "slug": "apple-a11-bionic", + "name": "Apple A11 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 10.0, + "gpu_name": "Apple GPU (3-core)", + "url": "/v1/socs/apple-a11-bionic" + }, + "release_date": "2017-10-12", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 1820, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 148.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.9, + "performance": 0.9, + "camera": 5.1, + "battery": 0.0, + "display": 37.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.114419", + "updated_at": "2026-06-19T00:43:44.114419" +} diff --git a/site/public/v1/smartphones/iphone-8-a1907-td-lte-cn-64gb/score/index.json b/site/public/v1/smartphones/iphone-8-a1907-td-lte-cn-64gb/score/index.json new file mode 100644 index 00000000000..e81b97935e0 --- /dev/null +++ b/site/public/v1/smartphones/iphone-8-a1907-td-lte-cn-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.9, + "performance": 0.9, + "camera": 5.1, + "battery": 0.0, + "display": 37.5, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-8-plus-a1864-td-lte-128gb/index.json b/site/public/v1/smartphones/iphone-8-plus-a1864-td-lte-128gb/index.json new file mode 100644 index 00000000000..d51bbc8bb25 --- /dev/null +++ b/site/public/v1/smartphones/iphone-8-plus-a1864-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 126, + "slug": "iphone-8-plus-a1864-td-lte-128gb", + "name": "iPhone 8 Plus A1864 TD-LTE 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 6, + "slug": "apple-a11-bionic", + "name": "Apple A11 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 10.0, + "gpu_name": "Apple GPU (3-core)", + "url": "/v1/socs/apple-a11-bionic" + }, + "release_date": "2019-09-12", + "msrp_usd": 599, + "ram_gb": 3, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.47, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 2675, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 202.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12.4", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.8, + "performance": 0.9, + "camera": 5.1, + "battery": 0.0, + "display": 45.3, + "value": 44.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.126419", + "updated_at": "2026-06-19T00:43:44.126419" +} diff --git a/site/public/v1/smartphones/iphone-8-plus-a1864-td-lte-128gb/score/index.json b/site/public/v1/smartphones/iphone-8-plus-a1864-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..9c7d260621a --- /dev/null +++ b/site/public/v1/smartphones/iphone-8-plus-a1864-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.8, + "performance": 0.9, + "camera": 5.1, + "battery": 0.0, + "display": 45.3, + "value": 44.9 +} diff --git a/site/public/v1/smartphones/iphone-8-plus-a1897-td-lte-128gb/index.json b/site/public/v1/smartphones/iphone-8-plus-a1897-td-lte-128gb/index.json new file mode 100644 index 00000000000..3cae549219d --- /dev/null +++ b/site/public/v1/smartphones/iphone-8-plus-a1897-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 127, + "slug": "iphone-8-plus-a1897-td-lte-128gb", + "name": "iPhone 8 Plus A1897 TD-LTE 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 6, + "slug": "apple-a11-bionic", + "name": "Apple A11 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 10.0, + "gpu_name": "Apple GPU (3-core)", + "url": "/v1/socs/apple-a11-bionic" + }, + "release_date": "2019-09-12", + "msrp_usd": 599, + "ram_gb": 3, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.47, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 2675, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 202.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12.4", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.8, + "performance": 0.9, + "camera": 5.1, + "battery": 0.0, + "display": 45.3, + "value": 44.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.126419", + "updated_at": "2026-06-19T00:43:44.126419" +} diff --git a/site/public/v1/smartphones/iphone-8-plus-a1897-td-lte-128gb/score/index.json b/site/public/v1/smartphones/iphone-8-plus-a1897-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..9c7d260621a --- /dev/null +++ b/site/public/v1/smartphones/iphone-8-plus-a1897-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.8, + "performance": 0.9, + "camera": 5.1, + "battery": 0.0, + "display": 45.3, + "value": 44.9 +} diff --git a/site/public/v1/smartphones/iphone-8-plus-a1898-td-lte-jp-128gb/index.json b/site/public/v1/smartphones/iphone-8-plus-a1898-td-lte-jp-128gb/index.json new file mode 100644 index 00000000000..49ca3109797 --- /dev/null +++ b/site/public/v1/smartphones/iphone-8-plus-a1898-td-lte-jp-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 128, + "slug": "iphone-8-plus-a1898-td-lte-jp-128gb", + "name": "iPhone 8 Plus A1898 TD-LTE JP 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 6, + "slug": "apple-a11-bionic", + "name": "Apple A11 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 10.0, + "gpu_name": "Apple GPU (3-core)", + "url": "/v1/socs/apple-a11-bionic" + }, + "release_date": "2019-09-12", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.47, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 2675, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 202.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12.4", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.8, + "performance": 0.9, + "camera": 5.1, + "battery": 0.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.126419", + "updated_at": "2026-06-19T00:43:44.126419" +} diff --git a/site/public/v1/smartphones/iphone-8-plus-a1898-td-lte-jp-128gb/score/index.json b/site/public/v1/smartphones/iphone-8-plus-a1898-td-lte-jp-128gb/score/index.json new file mode 100644 index 00000000000..432fc2000ba --- /dev/null +++ b/site/public/v1/smartphones/iphone-8-plus-a1898-td-lte-jp-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.8, + "performance": 0.9, + "camera": 5.1, + "battery": 0.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-8-plus-a1899-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/iphone-8-plus-a1899-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..ca7c7258921 --- /dev/null +++ b/site/public/v1/smartphones/iphone-8-plus-a1899-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 129, + "slug": "iphone-8-plus-a1899-td-lte-cn-128gb", + "name": "iPhone 8 Plus A1899 TD-LTE CN 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 6, + "slug": "apple-a11-bionic", + "name": "Apple A11 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 10.0, + "gpu_name": "Apple GPU (3-core)", + "url": "/v1/socs/apple-a11-bionic" + }, + "release_date": "2019-09-12", + "msrp_usd": 4999, + "ram_gb": 3, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.47, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 2675, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 202.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12.4", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.8, + "performance": 0.9, + "camera": 5.1, + "battery": 0.0, + "display": 45.3, + "value": 6.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.126419", + "updated_at": "2026-06-19T00:43:44.126419" +} diff --git a/site/public/v1/smartphones/iphone-8-plus-a1899-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/iphone-8-plus-a1899-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..6853e530328 --- /dev/null +++ b/site/public/v1/smartphones/iphone-8-plus-a1899-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.8, + "performance": 0.9, + "camera": 5.1, + "battery": 0.0, + "display": 45.3, + "value": 6.4 +} diff --git a/site/public/v1/smartphones/iphone-8-plus-a1899-td-lte-cn-64gb/index.json b/site/public/v1/smartphones/iphone-8-plus-a1899-td-lte-cn-64gb/index.json new file mode 100644 index 00000000000..5f075ffae5e --- /dev/null +++ b/site/public/v1/smartphones/iphone-8-plus-a1899-td-lte-cn-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 39, + "slug": "iphone-8-plus-a1899-td-lte-cn-64gb", + "name": "iPhone 8 Plus A1899 TD-LTE CN 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 6, + "slug": "apple-a11-bionic", + "name": "Apple A11 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 10.0, + "gpu_name": "Apple GPU (3-core)", + "url": "/v1/socs/apple-a11-bionic" + }, + "release_date": "2017-10-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.47, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 2675, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 202.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.8, + "performance": 0.9, + "camera": 5.1, + "battery": 0.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.114419", + "updated_at": "2026-06-19T00:43:44.114419" +} diff --git a/site/public/v1/smartphones/iphone-8-plus-a1899-td-lte-cn-64gb/score/index.json b/site/public/v1/smartphones/iphone-8-plus-a1899-td-lte-cn-64gb/score/index.json new file mode 100644 index 00000000000..432fc2000ba --- /dev/null +++ b/site/public/v1/smartphones/iphone-8-plus-a1899-td-lte-cn-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.8, + "performance": 0.9, + "camera": 5.1, + "battery": 0.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-128gb/index.json b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-128gb/index.json new file mode 100644 index 00000000000..fd1d6be5df3 --- /dev/null +++ b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 186, + "slug": "iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-128gb", + "name": "iPhone SE 2020 2nd gen A2275 Dual SIM TD-LTE NA 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2020-04-24", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 1821, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 148.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13.4", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.6, + "performance": 16.7, + "camera": 5.1, + "battery": 0.6, + "display": 20.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.134418", + "updated_at": "2026-06-19T00:43:44.134418" +} diff --git a/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-128gb/score/index.json b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-128gb/score/index.json new file mode 100644 index 00000000000..9a79e80743b --- /dev/null +++ b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.6, + "performance": 16.7, + "camera": 5.1, + "battery": 0.6, + "display": 20.0, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-256gb/index.json b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-256gb/index.json new file mode 100644 index 00000000000..f425d2fcffd --- /dev/null +++ b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 187, + "slug": "iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-256gb", + "name": "iPhone SE 2020 2nd gen A2275 Dual SIM TD-LTE NA 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2020-04-24", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 1821, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 148.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13.4", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.6, + "performance": 16.7, + "camera": 5.1, + "battery": 0.6, + "display": 20.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.134418", + "updated_at": "2026-06-19T00:43:44.134418" +} diff --git a/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-256gb/score/index.json b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-256gb/score/index.json new file mode 100644 index 00000000000..9a79e80743b --- /dev/null +++ b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.6, + "performance": 16.7, + "camera": 5.1, + "battery": 0.6, + "display": 20.0, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-64gb/index.json b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-64gb/index.json new file mode 100644 index 00000000000..b9e35e22b97 --- /dev/null +++ b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 188, + "slug": "iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-64gb", + "name": "iPhone SE 2020 2nd gen A2275 Dual SIM TD-LTE NA 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2020-04-24", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 1821, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 148.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13.4", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.6, + "performance": 16.7, + "camera": 5.1, + "battery": 0.6, + "display": 20.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.135419", + "updated_at": "2026-06-19T00:43:44.135419" +} diff --git a/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-64gb/score/index.json b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-64gb/score/index.json new file mode 100644 index 00000000000..9a79e80743b --- /dev/null +++ b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2275-dual-sim-td-lte-na-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.6, + "performance": 16.7, + "camera": 5.1, + "battery": 0.6, + "display": 20.0, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..0d9c7a0cb37 --- /dev/null +++ b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 189, + "slug": "iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-128gb", + "name": "iPhone SE 2020 2nd gen A2296 Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2020-04-24", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 1821, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 148.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13.4", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.6, + "performance": 16.7, + "camera": 5.1, + "battery": 0.6, + "display": 20.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.135419", + "updated_at": "2026-06-19T00:43:44.135419" +} diff --git a/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..9a79e80743b --- /dev/null +++ b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.6, + "performance": 16.7, + "camera": 5.1, + "battery": 0.6, + "display": 20.0, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-256gb/index.json b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-256gb/index.json new file mode 100644 index 00000000000..4c45602db46 --- /dev/null +++ b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 190, + "slug": "iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-256gb", + "name": "iPhone SE 2020 2nd gen A2296 Global Dual SIM TD-LTE 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2020-04-24", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 1821, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 148.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13.4", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.6, + "performance": 16.7, + "camera": 5.1, + "battery": 0.6, + "display": 20.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.135419", + "updated_at": "2026-06-19T00:43:44.135419" +} diff --git a/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-256gb/score/index.json b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..9a79e80743b --- /dev/null +++ b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.6, + "performance": 16.7, + "camera": 5.1, + "battery": 0.6, + "display": 20.0, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..c0efe87a561 --- /dev/null +++ b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 191, + "slug": "iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-64gb", + "name": "iPhone SE 2020 2nd gen A2296 Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2020-04-24", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 1821, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 148.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13.4", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.6, + "performance": 16.7, + "camera": 5.1, + "battery": 0.6, + "display": 20.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.135419", + "updated_at": "2026-06-19T00:43:44.135419" +} diff --git a/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..9a79e80743b --- /dev/null +++ b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2296-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.6, + "performance": 16.7, + "camera": 5.1, + "battery": 0.6, + "display": 20.0, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2298-td-lte-cn-128gb-a2297/index.json b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2298-td-lte-cn-128gb-a2297/index.json new file mode 100644 index 00000000000..840ae1be018 --- /dev/null +++ b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2298-td-lte-cn-128gb-a2297/index.json @@ -0,0 +1,77 @@ +{ + "id": 192, + "slug": "iphone-se-2020-2nd-gen-a2298-td-lte-cn-128gb-a2297", + "name": "iPhone SE 2020 2nd gen A2298 TD-LTE CN 128GB / A2297", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2020-04-24", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 1821, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 148.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13.4", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.6, + "performance": 16.7, + "camera": 5.1, + "battery": 0.6, + "display": 20.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.135419", + "updated_at": "2026-06-19T00:43:44.135419" +} diff --git a/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2298-td-lte-cn-128gb-a2297/score/index.json b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2298-td-lte-cn-128gb-a2297/score/index.json new file mode 100644 index 00000000000..9a79e80743b --- /dev/null +++ b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2298-td-lte-cn-128gb-a2297/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.6, + "performance": 16.7, + "camera": 5.1, + "battery": 0.6, + "display": 20.0, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2298-td-lte-cn-256gb-a2297/index.json b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2298-td-lte-cn-256gb-a2297/index.json new file mode 100644 index 00000000000..aec962663e3 --- /dev/null +++ b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2298-td-lte-cn-256gb-a2297/index.json @@ -0,0 +1,77 @@ +{ + "id": 193, + "slug": "iphone-se-2020-2nd-gen-a2298-td-lte-cn-256gb-a2297", + "name": "iPhone SE 2020 2nd gen A2298 TD-LTE CN 256GB / A2297", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2020-04-24", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 1821, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 148.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13.4", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.6, + "performance": 16.7, + "camera": 5.1, + "battery": 0.6, + "display": 20.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.135419", + "updated_at": "2026-06-19T00:43:44.135419" +} diff --git a/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2298-td-lte-cn-256gb-a2297/score/index.json b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2298-td-lte-cn-256gb-a2297/score/index.json new file mode 100644 index 00000000000..9a79e80743b --- /dev/null +++ b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2298-td-lte-cn-256gb-a2297/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.6, + "performance": 16.7, + "camera": 5.1, + "battery": 0.6, + "display": 20.0, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2298-td-lte-cn-64gb-a2297/index.json b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2298-td-lte-cn-64gb-a2297/index.json new file mode 100644 index 00000000000..f23f3824bb3 --- /dev/null +++ b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2298-td-lte-cn-64gb-a2297/index.json @@ -0,0 +1,77 @@ +{ + "id": 194, + "slug": "iphone-se-2020-2nd-gen-a2298-td-lte-cn-64gb-a2297", + "name": "iPhone SE 2020 2nd gen A2298 TD-LTE CN 64GB / A2297", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 8, + "slug": "apple-a13-bionic", + "name": "Apple A13 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a13-bionic" + }, + "release_date": "2020-04-24", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 1821, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 148.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "13.4", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.6, + "performance": 16.7, + "camera": 5.1, + "battery": 0.6, + "display": 20.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.135419", + "updated_at": "2026-06-19T00:43:44.135419" +} diff --git a/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2298-td-lte-cn-64gb-a2297/score/index.json b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2298-td-lte-cn-64gb-a2297/score/index.json new file mode 100644 index 00000000000..9a79e80743b --- /dev/null +++ b/site/public/v1/smartphones/iphone-se-2020-2nd-gen-a2298-td-lte-cn-64gb-a2297/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.6, + "performance": 16.7, + "camera": 5.1, + "battery": 0.6, + "display": 20.0, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-se-5g-2022-3rd-gen-a2595-dual-sim-td-lte-na-64gb/index.json b/site/public/v1/smartphones/iphone-se-5g-2022-3rd-gen-a2595-dual-sim-td-lte-na-64gb/index.json new file mode 100644 index 00000000000..0bd613e0acc --- /dev/null +++ b/site/public/v1/smartphones/iphone-se-5g-2022-3rd-gen-a2595-dual-sim-td-lte-na-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 284, + "slug": "iphone-se-5g-2022-3rd-gen-a2595-dual-sim-td-lte-na-64gb", + "name": "iPhone SE 5G 2022 3rd gen A2595 Dual SIM TD-LTE NA 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2022-03-18", + "msrp_usd": 429, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 2018, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 144.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.3, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 20.0, + "value": 53.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.147419", + "updated_at": "2026-06-19T00:43:44.147419" +} diff --git a/site/public/v1/smartphones/iphone-se-5g-2022-3rd-gen-a2595-dual-sim-td-lte-na-64gb/score/index.json b/site/public/v1/smartphones/iphone-se-5g-2022-3rd-gen-a2595-dual-sim-td-lte-na-64gb/score/index.json new file mode 100644 index 00000000000..211d8a5791f --- /dev/null +++ b/site/public/v1/smartphones/iphone-se-5g-2022-3rd-gen-a2595-dual-sim-td-lte-na-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.3, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 20.0, + "value": 53.7 +} diff --git a/site/public/v1/smartphones/iphone-se-5g-2022-3rd-gen-a2782-dual-sim-td-lte-jp-64gb/index.json b/site/public/v1/smartphones/iphone-se-5g-2022-3rd-gen-a2782-dual-sim-td-lte-jp-64gb/index.json new file mode 100644 index 00000000000..78af91c7ac4 --- /dev/null +++ b/site/public/v1/smartphones/iphone-se-5g-2022-3rd-gen-a2782-dual-sim-td-lte-jp-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 285, + "slug": "iphone-se-5g-2022-3rd-gen-a2782-dual-sim-td-lte-jp-64gb", + "name": "iPhone SE 5G 2022 3rd gen A2782 Dual SIM TD-LTE JP 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2022-03-18", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 2018, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 144.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.3, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 20.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.147419", + "updated_at": "2026-06-19T00:43:44.147419" +} diff --git a/site/public/v1/smartphones/iphone-se-5g-2022-3rd-gen-a2782-dual-sim-td-lte-jp-64gb/score/index.json b/site/public/v1/smartphones/iphone-se-5g-2022-3rd-gen-a2782-dual-sim-td-lte-jp-64gb/score/index.json new file mode 100644 index 00000000000..b1d127cd55f --- /dev/null +++ b/site/public/v1/smartphones/iphone-se-5g-2022-3rd-gen-a2782-dual-sim-td-lte-jp-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.3, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 20.0, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-se-5g-2022-3rd-gen-a2783-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/iphone-se-5g-2022-3rd-gen-a2783-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..5fbec4577de --- /dev/null +++ b/site/public/v1/smartphones/iphone-se-5g-2022-3rd-gen-a2783-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 286, + "slug": "iphone-se-5g-2022-3rd-gen-a2783-global-dual-sim-td-lte-64gb", + "name": "iPhone SE 5G 2022 3rd gen A2783 Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2022-03-18", + "msrp_usd": 519, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 2018, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 144.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.3, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 20.0, + "value": 50.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.147419", + "updated_at": "2026-06-19T00:43:44.147419" +} diff --git a/site/public/v1/smartphones/iphone-se-5g-2022-3rd-gen-a2783-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/iphone-se-5g-2022-3rd-gen-a2783-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..0e525c27316 --- /dev/null +++ b/site/public/v1/smartphones/iphone-se-5g-2022-3rd-gen-a2783-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.3, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 20.0, + "value": 50.2 +} diff --git a/site/public/v1/smartphones/iphone-se-5g-2022-3rd-gen-a2784-dual-sim-td-lte-ru-kz-64gb/index.json b/site/public/v1/smartphones/iphone-se-5g-2022-3rd-gen-a2784-dual-sim-td-lte-ru-kz-64gb/index.json new file mode 100644 index 00000000000..bb7edb5c7cc --- /dev/null +++ b/site/public/v1/smartphones/iphone-se-5g-2022-3rd-gen-a2784-dual-sim-td-lte-ru-kz-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 287, + "slug": "iphone-se-5g-2022-3rd-gen-a2784-dual-sim-td-lte-ru-kz-64gb", + "name": "iPhone SE 5G 2022 3rd gen A2784 Dual SIM TD-LTE RU KZ 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2022-03-18", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 2018, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 144.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.3, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 20.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.148418", + "updated_at": "2026-06-19T00:43:44.148418" +} diff --git a/site/public/v1/smartphones/iphone-se-5g-2022-3rd-gen-a2784-dual-sim-td-lte-ru-kz-64gb/score/index.json b/site/public/v1/smartphones/iphone-se-5g-2022-3rd-gen-a2784-dual-sim-td-lte-ru-kz-64gb/score/index.json new file mode 100644 index 00000000000..b1d127cd55f --- /dev/null +++ b/site/public/v1/smartphones/iphone-se-5g-2022-3rd-gen-a2784-dual-sim-td-lte-ru-kz-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.3, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 20.0, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-se-5g-2022-3rd-gen-a2785-dual-sim-td-lte-cn-64gb/index.json b/site/public/v1/smartphones/iphone-se-5g-2022-3rd-gen-a2785-dual-sim-td-lte-cn-64gb/index.json new file mode 100644 index 00000000000..2963648f2bc --- /dev/null +++ b/site/public/v1/smartphones/iphone-se-5g-2022-3rd-gen-a2785-dual-sim-td-lte-cn-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 288, + "slug": "iphone-se-5g-2022-3rd-gen-a2785-dual-sim-td-lte-cn-64gb", + "name": "iPhone SE 5G 2022 3rd gen A2785 Dual SIM TD-LTE CN 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 10, + "slug": "apple-a15-bionic", + "name": "Apple A15 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 5.0, + "gpu_name": "Apple GPU (5-core)", + "url": "/v1/socs/apple-a15-bionic" + }, + "release_date": "2022-03-18", + "msrp_usd": 3499, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.7, + "resolution": "750x1334", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 325 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 2018, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 144.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "15", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.3, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 20.0, + "value": 8.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.148418", + "updated_at": "2026-06-19T00:43:44.148418" +} diff --git a/site/public/v1/smartphones/iphone-se-5g-2022-3rd-gen-a2785-dual-sim-td-lte-cn-64gb/score/index.json b/site/public/v1/smartphones/iphone-se-5g-2022-3rd-gen-a2785-dual-sim-td-lte-cn-64gb/score/index.json new file mode 100644 index 00000000000..07b31d33c4d --- /dev/null +++ b/site/public/v1/smartphones/iphone-se-5g-2022-3rd-gen-a2785-dual-sim-td-lte-cn-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.3, + "performance": 33.1, + "camera": 5.1, + "battery": 11.0, + "display": 20.0, + "value": 8.7 +} diff --git a/site/public/v1/smartphones/iphone-xr-a1984-td-lte-na-128gb/index.json b/site/public/v1/smartphones/iphone-xr-a1984-td-lte-na-128gb/index.json new file mode 100644 index 00000000000..719dedf2834 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xr-a1984-td-lte-na-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 43, + "slug": "iphone-xr-a1984-td-lte-na-128gb", + "name": "iPhone XR A1984 TD-LTE NA 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-10-26", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 2945, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 11.8, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 37.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.115419", + "updated_at": "2026-06-19T00:43:44.115419" +} diff --git a/site/public/v1/smartphones/iphone-xr-a1984-td-lte-na-128gb/score/index.json b/site/public/v1/smartphones/iphone-xr-a1984-td-lte-na-128gb/score/index.json new file mode 100644 index 00000000000..ea22a3567c5 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xr-a1984-td-lte-na-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 11.8, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 37.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xr-a1984-td-lte-na-256gb/index.json b/site/public/v1/smartphones/iphone-xr-a1984-td-lte-na-256gb/index.json new file mode 100644 index 00000000000..8ec97d1e380 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xr-a1984-td-lte-na-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 44, + "slug": "iphone-xr-a1984-td-lte-na-256gb", + "name": "iPhone XR A1984 TD-LTE NA 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-10-26", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 2945, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 11.8, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 37.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.115419", + "updated_at": "2026-06-19T00:43:44.115419" +} diff --git a/site/public/v1/smartphones/iphone-xr-a1984-td-lte-na-256gb/score/index.json b/site/public/v1/smartphones/iphone-xr-a1984-td-lte-na-256gb/score/index.json new file mode 100644 index 00000000000..ea22a3567c5 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xr-a1984-td-lte-na-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 11.8, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 37.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xr-a1984-td-lte-na-64gb/index.json b/site/public/v1/smartphones/iphone-xr-a1984-td-lte-na-64gb/index.json new file mode 100644 index 00000000000..8c9ccb2fa75 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xr-a1984-td-lte-na-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 45, + "slug": "iphone-xr-a1984-td-lte-na-64gb", + "name": "iPhone XR A1984 TD-LTE NA 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-10-26", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 2945, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 11.8, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 37.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.115419", + "updated_at": "2026-06-19T00:43:44.115419" +} diff --git a/site/public/v1/smartphones/iphone-xr-a1984-td-lte-na-64gb/score/index.json b/site/public/v1/smartphones/iphone-xr-a1984-td-lte-na-64gb/score/index.json new file mode 100644 index 00000000000..ea22a3567c5 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xr-a1984-td-lte-na-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 11.8, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 37.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xr-a2105-global-td-lte-128gb/index.json b/site/public/v1/smartphones/iphone-xr-a2105-global-td-lte-128gb/index.json new file mode 100644 index 00000000000..e3513a17116 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xr-a2105-global-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 46, + "slug": "iphone-xr-a2105-global-td-lte-128gb", + "name": "iPhone XR A2105 Global TD-LTE 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-10-26", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 2945, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 11.8, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 37.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.115419", + "updated_at": "2026-06-19T00:43:44.115419" +} diff --git a/site/public/v1/smartphones/iphone-xr-a2105-global-td-lte-128gb/score/index.json b/site/public/v1/smartphones/iphone-xr-a2105-global-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..ea22a3567c5 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xr-a2105-global-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 11.8, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 37.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xr-a2105-global-td-lte-256gb/index.json b/site/public/v1/smartphones/iphone-xr-a2105-global-td-lte-256gb/index.json new file mode 100644 index 00000000000..1e3a2c2a38a --- /dev/null +++ b/site/public/v1/smartphones/iphone-xr-a2105-global-td-lte-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 47, + "slug": "iphone-xr-a2105-global-td-lte-256gb", + "name": "iPhone XR A2105 Global TD-LTE 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-10-26", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 2945, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 11.8, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 37.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.115419", + "updated_at": "2026-06-19T00:43:44.115419" +} diff --git a/site/public/v1/smartphones/iphone-xr-a2105-global-td-lte-256gb/score/index.json b/site/public/v1/smartphones/iphone-xr-a2105-global-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..ea22a3567c5 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xr-a2105-global-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 11.8, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 37.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xr-a2105-global-td-lte-64gb/index.json b/site/public/v1/smartphones/iphone-xr-a2105-global-td-lte-64gb/index.json new file mode 100644 index 00000000000..5894fce5104 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xr-a2105-global-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 48, + "slug": "iphone-xr-a2105-global-td-lte-64gb", + "name": "iPhone XR A2105 Global TD-LTE 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-10-26", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 2945, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 11.8, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 37.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.115419", + "updated_at": "2026-06-19T00:43:44.115419" +} diff --git a/site/public/v1/smartphones/iphone-xr-a2105-global-td-lte-64gb/score/index.json b/site/public/v1/smartphones/iphone-xr-a2105-global-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..ea22a3567c5 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xr-a2105-global-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 11.8, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 37.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xr-a2106-td-lte-jp-128gb/index.json b/site/public/v1/smartphones/iphone-xr-a2106-td-lte-jp-128gb/index.json new file mode 100644 index 00000000000..72887cd7ec3 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xr-a2106-td-lte-jp-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 49, + "slug": "iphone-xr-a2106-td-lte-jp-128gb", + "name": "iPhone XR A2106 TD-LTE JP 128GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-10-26", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 2945, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 11.8, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 37.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.116419", + "updated_at": "2026-06-19T00:43:44.116419" +} diff --git a/site/public/v1/smartphones/iphone-xr-a2106-td-lte-jp-128gb/score/index.json b/site/public/v1/smartphones/iphone-xr-a2106-td-lte-jp-128gb/score/index.json new file mode 100644 index 00000000000..ea22a3567c5 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xr-a2106-td-lte-jp-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 11.8, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 37.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xr-a2106-td-lte-jp-256gb/index.json b/site/public/v1/smartphones/iphone-xr-a2106-td-lte-jp-256gb/index.json new file mode 100644 index 00000000000..7856bf09392 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xr-a2106-td-lte-jp-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 50, + "slug": "iphone-xr-a2106-td-lte-jp-256gb", + "name": "iPhone XR A2106 TD-LTE JP 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-10-26", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 2945, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 11.8, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 37.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.116419", + "updated_at": "2026-06-19T00:43:44.116419" +} diff --git a/site/public/v1/smartphones/iphone-xr-a2106-td-lte-jp-256gb/score/index.json b/site/public/v1/smartphones/iphone-xr-a2106-td-lte-jp-256gb/score/index.json new file mode 100644 index 00000000000..ea22a3567c5 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xr-a2106-td-lte-jp-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 11.8, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 37.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xr-a2106-td-lte-jp-64gb/index.json b/site/public/v1/smartphones/iphone-xr-a2106-td-lte-jp-64gb/index.json new file mode 100644 index 00000000000..9dcd579f3f2 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xr-a2106-td-lte-jp-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 51, + "slug": "iphone-xr-a2106-td-lte-jp-64gb", + "name": "iPhone XR A2106 TD-LTE JP 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-10-26", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 2945, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 11.8, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 37.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.116419", + "updated_at": "2026-06-19T00:43:44.116419" +} diff --git a/site/public/v1/smartphones/iphone-xr-a2106-td-lte-jp-64gb/score/index.json b/site/public/v1/smartphones/iphone-xr-a2106-td-lte-jp-64gb/score/index.json new file mode 100644 index 00000000000..ea22a3567c5 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xr-a2106-td-lte-jp-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 11.8, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 37.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xr-a2108-dual-sim-td-lte-cn-128gb-a2107/index.json b/site/public/v1/smartphones/iphone-xr-a2108-dual-sim-td-lte-cn-128gb-a2107/index.json new file mode 100644 index 00000000000..55b41c5c728 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xr-a2108-dual-sim-td-lte-cn-128gb-a2107/index.json @@ -0,0 +1,76 @@ +{ + "id": 52, + "slug": "iphone-xr-a2108-dual-sim-td-lte-cn-128gb-a2107", + "name": "iPhone XR A2108 Dual SIM TD-LTE CN 128GB / A2107", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-10-26", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 2945, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 11.8, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 37.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.116419", + "updated_at": "2026-06-19T00:43:44.116419" +} diff --git a/site/public/v1/smartphones/iphone-xr-a2108-dual-sim-td-lte-cn-128gb-a2107/score/index.json b/site/public/v1/smartphones/iphone-xr-a2108-dual-sim-td-lte-cn-128gb-a2107/score/index.json new file mode 100644 index 00000000000..ea22a3567c5 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xr-a2108-dual-sim-td-lte-cn-128gb-a2107/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 11.8, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 37.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xr-a2108-dual-sim-td-lte-cn-256gb-a2107/index.json b/site/public/v1/smartphones/iphone-xr-a2108-dual-sim-td-lte-cn-256gb-a2107/index.json new file mode 100644 index 00000000000..2adede3925e --- /dev/null +++ b/site/public/v1/smartphones/iphone-xr-a2108-dual-sim-td-lte-cn-256gb-a2107/index.json @@ -0,0 +1,76 @@ +{ + "id": 53, + "slug": "iphone-xr-a2108-dual-sim-td-lte-cn-256gb-a2107", + "name": "iPhone XR A2108 Dual SIM TD-LTE CN 256GB / A2107", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-10-26", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 2945, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 11.8, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 37.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.116419", + "updated_at": "2026-06-19T00:43:44.116419" +} diff --git a/site/public/v1/smartphones/iphone-xr-a2108-dual-sim-td-lte-cn-256gb-a2107/score/index.json b/site/public/v1/smartphones/iphone-xr-a2108-dual-sim-td-lte-cn-256gb-a2107/score/index.json new file mode 100644 index 00000000000..ea22a3567c5 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xr-a2108-dual-sim-td-lte-cn-256gb-a2107/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 11.8, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 37.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xr-a2108-dual-sim-td-lte-cn-64gb-a2107/index.json b/site/public/v1/smartphones/iphone-xr-a2108-dual-sim-td-lte-cn-64gb-a2107/index.json new file mode 100644 index 00000000000..3d2a011dde0 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xr-a2108-dual-sim-td-lte-cn-64gb-a2107/index.json @@ -0,0 +1,76 @@ +{ + "id": 54, + "slug": "iphone-xr-a2108-dual-sim-td-lte-cn-64gb-a2107", + "name": "iPhone XR A2108 Dual SIM TD-LTE CN 64GB / A2107", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-10-26", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "828x1792", + "type": "Color IPS TFT LCD display", + "ppi": 323 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 2945, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 11.8, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 37.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.116419", + "updated_at": "2026-06-19T00:43:44.116419" +} diff --git a/site/public/v1/smartphones/iphone-xr-a2108-dual-sim-td-lte-cn-64gb-a2107/score/index.json b/site/public/v1/smartphones/iphone-xr-a2108-dual-sim-td-lte-cn-64gb-a2107/score/index.json new file mode 100644 index 00000000000..ea22a3567c5 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xr-a2108-dual-sim-td-lte-cn-64gb-a2107/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 11.8, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 37.3, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xs-a1920-td-lte-na-256gb/index.json b/site/public/v1/smartphones/iphone-xs-a1920-td-lte-na-256gb/index.json new file mode 100644 index 00000000000..7f7313d481c --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-a1920-td-lte-na-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 56, + "slug": "iphone-xs-a1920-td-lte-na-256gb", + "name": "iPhone Xs A1920 TD-LTE NA 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.85, + "resolution": "1125x2436", + "type": "AM-OLED display", + "ppi": 459 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 2659, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 50.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.116419", + "updated_at": "2026-06-19T00:43:44.116419" +} diff --git a/site/public/v1/smartphones/iphone-xs-a1920-td-lte-na-256gb/score/index.json b/site/public/v1/smartphones/iphone-xs-a1920-td-lte-na-256gb/score/index.json new file mode 100644 index 00000000000..fa6ab47fee0 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-a1920-td-lte-na-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 50.9, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xs-a1920-td-lte-na-512gb/index.json b/site/public/v1/smartphones/iphone-xs-a1920-td-lte-na-512gb/index.json new file mode 100644 index 00000000000..1d765f30b05 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-a1920-td-lte-na-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 57, + "slug": "iphone-xs-a1920-td-lte-na-512gb", + "name": "iPhone Xs A1920 TD-LTE NA 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 5.85, + "resolution": "1125x2436", + "type": "AM-OLED display", + "ppi": 459 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 2659, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 50.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.117418", + "updated_at": "2026-06-19T00:43:44.117418" +} diff --git a/site/public/v1/smartphones/iphone-xs-a1920-td-lte-na-512gb/score/index.json b/site/public/v1/smartphones/iphone-xs-a1920-td-lte-na-512gb/score/index.json new file mode 100644 index 00000000000..fa6ab47fee0 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-a1920-td-lte-na-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 50.9, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xs-a1920-td-lte-na-64gb/index.json b/site/public/v1/smartphones/iphone-xs-a1920-td-lte-na-64gb/index.json new file mode 100644 index 00000000000..75f896d6faa --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-a1920-td-lte-na-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 58, + "slug": "iphone-xs-a1920-td-lte-na-64gb", + "name": "iPhone Xs A1920 TD-LTE NA 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.85, + "resolution": "1125x2436", + "type": "AM-OLED display", + "ppi": 459 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 2659, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 50.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.117418", + "updated_at": "2026-06-19T00:43:44.117418" +} diff --git a/site/public/v1/smartphones/iphone-xs-a1920-td-lte-na-64gb/score/index.json b/site/public/v1/smartphones/iphone-xs-a1920-td-lte-na-64gb/score/index.json new file mode 100644 index 00000000000..fa6ab47fee0 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-a1920-td-lte-na-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 50.9, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xs-a2097-global-td-lte-256gb/index.json b/site/public/v1/smartphones/iphone-xs-a2097-global-td-lte-256gb/index.json new file mode 100644 index 00000000000..fcd06995c64 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-a2097-global-td-lte-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 59, + "slug": "iphone-xs-a2097-global-td-lte-256gb", + "name": "iPhone Xs A2097 Global TD-LTE 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.85, + "resolution": "1125x2436", + "type": "AM-OLED display", + "ppi": 459 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 2659, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 50.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.117418", + "updated_at": "2026-06-19T00:43:44.117418" +} diff --git a/site/public/v1/smartphones/iphone-xs-a2097-global-td-lte-256gb/score/index.json b/site/public/v1/smartphones/iphone-xs-a2097-global-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..fa6ab47fee0 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-a2097-global-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 50.9, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xs-a2097-global-td-lte-512gb/index.json b/site/public/v1/smartphones/iphone-xs-a2097-global-td-lte-512gb/index.json new file mode 100644 index 00000000000..48e67bc6831 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-a2097-global-td-lte-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 60, + "slug": "iphone-xs-a2097-global-td-lte-512gb", + "name": "iPhone Xs A2097 Global TD-LTE 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 5.85, + "resolution": "1125x2436", + "type": "AM-OLED display", + "ppi": 459 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 2659, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 50.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.117418", + "updated_at": "2026-06-19T00:43:44.117418" +} diff --git a/site/public/v1/smartphones/iphone-xs-a2097-global-td-lte-512gb/score/index.json b/site/public/v1/smartphones/iphone-xs-a2097-global-td-lte-512gb/score/index.json new file mode 100644 index 00000000000..fa6ab47fee0 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-a2097-global-td-lte-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 50.9, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xs-a2097-global-td-lte-64gb/index.json b/site/public/v1/smartphones/iphone-xs-a2097-global-td-lte-64gb/index.json new file mode 100644 index 00000000000..302236f8507 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-a2097-global-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 61, + "slug": "iphone-xs-a2097-global-td-lte-64gb", + "name": "iPhone Xs A2097 Global TD-LTE 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.85, + "resolution": "1125x2436", + "type": "AM-OLED display", + "ppi": 459 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 2659, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 50.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.117418", + "updated_at": "2026-06-19T00:43:44.117418" +} diff --git a/site/public/v1/smartphones/iphone-xs-a2097-global-td-lte-64gb/score/index.json b/site/public/v1/smartphones/iphone-xs-a2097-global-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..fa6ab47fee0 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-a2097-global-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 50.9, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xs-a2098-td-lte-jp-256gb/index.json b/site/public/v1/smartphones/iphone-xs-a2098-td-lte-jp-256gb/index.json new file mode 100644 index 00000000000..e25a38b42d9 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-a2098-td-lte-jp-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 62, + "slug": "iphone-xs-a2098-td-lte-jp-256gb", + "name": "iPhone Xs A2098 TD-LTE JP 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.85, + "resolution": "1125x2436", + "type": "AM-OLED display", + "ppi": 459 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 2659, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 50.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.117418", + "updated_at": "2026-06-19T00:43:44.117418" +} diff --git a/site/public/v1/smartphones/iphone-xs-a2098-td-lte-jp-256gb/score/index.json b/site/public/v1/smartphones/iphone-xs-a2098-td-lte-jp-256gb/score/index.json new file mode 100644 index 00000000000..fa6ab47fee0 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-a2098-td-lte-jp-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 50.9, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xs-a2098-td-lte-jp-512gb/index.json b/site/public/v1/smartphones/iphone-xs-a2098-td-lte-jp-512gb/index.json new file mode 100644 index 00000000000..70810248e75 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-a2098-td-lte-jp-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 63, + "slug": "iphone-xs-a2098-td-lte-jp-512gb", + "name": "iPhone Xs A2098 TD-LTE JP 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 5.85, + "resolution": "1125x2436", + "type": "AM-OLED display", + "ppi": 459 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 2659, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 50.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.118419", + "updated_at": "2026-06-19T00:43:44.118419" +} diff --git a/site/public/v1/smartphones/iphone-xs-a2098-td-lte-jp-512gb/score/index.json b/site/public/v1/smartphones/iphone-xs-a2098-td-lte-jp-512gb/score/index.json new file mode 100644 index 00000000000..fa6ab47fee0 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-a2098-td-lte-jp-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 50.9, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xs-a2098-td-lte-jp-64gb/index.json b/site/public/v1/smartphones/iphone-xs-a2098-td-lte-jp-64gb/index.json new file mode 100644 index 00000000000..76cdd06e872 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-a2098-td-lte-jp-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 64, + "slug": "iphone-xs-a2098-td-lte-jp-64gb", + "name": "iPhone Xs A2098 TD-LTE JP 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.85, + "resolution": "1125x2436", + "type": "AM-OLED display", + "ppi": 459 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 2659, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 50.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.118419", + "updated_at": "2026-06-19T00:43:44.118419" +} diff --git a/site/public/v1/smartphones/iphone-xs-a2098-td-lte-jp-64gb/score/index.json b/site/public/v1/smartphones/iphone-xs-a2098-td-lte-jp-64gb/score/index.json new file mode 100644 index 00000000000..fa6ab47fee0 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-a2098-td-lte-jp-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 50.9, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xs-a2099-dual-sim-td-lte-cn-64gb/index.json b/site/public/v1/smartphones/iphone-xs-a2099-dual-sim-td-lte-cn-64gb/index.json new file mode 100644 index 00000000000..ca3af8281ac --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-a2099-dual-sim-td-lte-cn-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 65, + "slug": "iphone-xs-a2099-dual-sim-td-lte-cn-64gb", + "name": "iPhone Xs A2099 Dual SIM TD-LTE CN 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.85, + "resolution": "1125x2436", + "type": "AM-OLED display", + "ppi": 459 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 2659, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 50.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.118419", + "updated_at": "2026-06-19T00:43:44.118419" +} diff --git a/site/public/v1/smartphones/iphone-xs-a2099-dual-sim-td-lte-cn-64gb/score/index.json b/site/public/v1/smartphones/iphone-xs-a2099-dual-sim-td-lte-cn-64gb/score/index.json new file mode 100644 index 00000000000..fa6ab47fee0 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-a2099-dual-sim-td-lte-cn-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 50.9, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xs-a2100-dual-sim-td-lte-cn-256gb/index.json b/site/public/v1/smartphones/iphone-xs-a2100-dual-sim-td-lte-cn-256gb/index.json new file mode 100644 index 00000000000..f7fd995d86e --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-a2100-dual-sim-td-lte-cn-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 66, + "slug": "iphone-xs-a2100-dual-sim-td-lte-cn-256gb", + "name": "iPhone Xs A2100 Dual SIM TD-LTE CN 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.85, + "resolution": "1125x2436", + "type": "AM-OLED display", + "ppi": 459 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 2659, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 50.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.118419", + "updated_at": "2026-06-19T00:43:44.118419" +} diff --git a/site/public/v1/smartphones/iphone-xs-a2100-dual-sim-td-lte-cn-256gb/score/index.json b/site/public/v1/smartphones/iphone-xs-a2100-dual-sim-td-lte-cn-256gb/score/index.json new file mode 100644 index 00000000000..fa6ab47fee0 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-a2100-dual-sim-td-lte-cn-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 50.9, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xs-a2100-dual-sim-td-lte-cn-512gb/index.json b/site/public/v1/smartphones/iphone-xs-a2100-dual-sim-td-lte-cn-512gb/index.json new file mode 100644 index 00000000000..14c75b60fca --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-a2100-dual-sim-td-lte-cn-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 67, + "slug": "iphone-xs-a2100-dual-sim-td-lte-cn-512gb", + "name": "iPhone Xs A2100 Dual SIM TD-LTE CN 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 5.85, + "resolution": "1125x2436", + "type": "AM-OLED display", + "ppi": 459 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 2659, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 50.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.118419", + "updated_at": "2026-06-19T00:43:44.118419" +} diff --git a/site/public/v1/smartphones/iphone-xs-a2100-dual-sim-td-lte-cn-512gb/score/index.json b/site/public/v1/smartphones/iphone-xs-a2100-dual-sim-td-lte-cn-512gb/score/index.json new file mode 100644 index 00000000000..fa6ab47fee0 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-a2100-dual-sim-td-lte-cn-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 50.9, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xs-a2100-dual-sim-td-lte-cn-64gb/index.json b/site/public/v1/smartphones/iphone-xs-a2100-dual-sim-td-lte-cn-64gb/index.json new file mode 100644 index 00000000000..7fdf21ef816 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-a2100-dual-sim-td-lte-cn-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 68, + "slug": "iphone-xs-a2100-dual-sim-td-lte-cn-64gb", + "name": "iPhone Xs A2100 Dual SIM TD-LTE CN 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.85, + "resolution": "1125x2436", + "type": "AM-OLED display", + "ppi": 459 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 2659, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 50.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.118419", + "updated_at": "2026-06-19T00:43:44.118419" +} diff --git a/site/public/v1/smartphones/iphone-xs-a2100-dual-sim-td-lte-cn-64gb/score/index.json b/site/public/v1/smartphones/iphone-xs-a2100-dual-sim-td-lte-cn-64gb/score/index.json new file mode 100644 index 00000000000..fa6ab47fee0 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-a2100-dual-sim-td-lte-cn-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 4.7, + "camera": 5.1, + "battery": 0.0, + "display": 50.9, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xs-max-a1921-td-lte-na-256gb-a2103/index.json b/site/public/v1/smartphones/iphone-xs-max-a1921-td-lte-na-256gb-a2103/index.json new file mode 100644 index 00000000000..9964182599a --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-max-a1921-td-lte-na-256gb-a2103/index.json @@ -0,0 +1,76 @@ +{ + "id": 69, + "slug": "iphone-xs-max-a1921-td-lte-na-256gb-a2103", + "name": "iPhone Xs Max A1921 TD-LTE NA 256GB / A2103", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 3179, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 4.7, + "camera": 5.1, + "battery": 2.7, + "display": 50.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.118419", + "updated_at": "2026-06-19T00:43:44.118419" +} diff --git a/site/public/v1/smartphones/iphone-xs-max-a1921-td-lte-na-256gb-a2103/score/index.json b/site/public/v1/smartphones/iphone-xs-max-a1921-td-lte-na-256gb-a2103/score/index.json new file mode 100644 index 00000000000..f2bd63e6972 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-max-a1921-td-lte-na-256gb-a2103/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 4.7, + "camera": 5.1, + "battery": 2.7, + "display": 50.6, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xs-max-a1921-td-lte-na-512gb-a2103/index.json b/site/public/v1/smartphones/iphone-xs-max-a1921-td-lte-na-512gb-a2103/index.json new file mode 100644 index 00000000000..8e8fcddaa6c --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-max-a1921-td-lte-na-512gb-a2103/index.json @@ -0,0 +1,76 @@ +{ + "id": 70, + "slug": "iphone-xs-max-a1921-td-lte-na-512gb-a2103", + "name": "iPhone Xs Max A1921 TD-LTE NA 512GB / A2103", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 3179, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 4.7, + "camera": 5.1, + "battery": 2.7, + "display": 50.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.118419", + "updated_at": "2026-06-19T00:43:44.119419" +} diff --git a/site/public/v1/smartphones/iphone-xs-max-a1921-td-lte-na-512gb-a2103/score/index.json b/site/public/v1/smartphones/iphone-xs-max-a1921-td-lte-na-512gb-a2103/score/index.json new file mode 100644 index 00000000000..f2bd63e6972 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-max-a1921-td-lte-na-512gb-a2103/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 4.7, + "camera": 5.1, + "battery": 2.7, + "display": 50.6, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xs-max-a1921-td-lte-na-64gb-a2103/index.json b/site/public/v1/smartphones/iphone-xs-max-a1921-td-lte-na-64gb-a2103/index.json new file mode 100644 index 00000000000..e6f67f99b02 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-max-a1921-td-lte-na-64gb-a2103/index.json @@ -0,0 +1,76 @@ +{ + "id": 71, + "slug": "iphone-xs-max-a1921-td-lte-na-64gb-a2103", + "name": "iPhone Xs Max A1921 TD-LTE NA 64GB / A2103", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 3179, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 4.7, + "camera": 5.1, + "battery": 2.7, + "display": 50.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.119419", + "updated_at": "2026-06-19T00:43:44.119419" +} diff --git a/site/public/v1/smartphones/iphone-xs-max-a1921-td-lte-na-64gb-a2103/score/index.json b/site/public/v1/smartphones/iphone-xs-max-a1921-td-lte-na-64gb-a2103/score/index.json new file mode 100644 index 00000000000..f2bd63e6972 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-max-a1921-td-lte-na-64gb-a2103/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 4.7, + "camera": 5.1, + "battery": 2.7, + "display": 50.6, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xs-max-a2101-global-td-lte-256gb/index.json b/site/public/v1/smartphones/iphone-xs-max-a2101-global-td-lte-256gb/index.json new file mode 100644 index 00000000000..540638b8f83 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-max-a2101-global-td-lte-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 72, + "slug": "iphone-xs-max-a2101-global-td-lte-256gb", + "name": "iPhone Xs Max A2101 Global TD-LTE 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 3179, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 4.7, + "camera": 5.1, + "battery": 2.7, + "display": 50.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.119419", + "updated_at": "2026-06-19T00:43:44.119419" +} diff --git a/site/public/v1/smartphones/iphone-xs-max-a2101-global-td-lte-256gb/score/index.json b/site/public/v1/smartphones/iphone-xs-max-a2101-global-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..f2bd63e6972 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-max-a2101-global-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 4.7, + "camera": 5.1, + "battery": 2.7, + "display": 50.6, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xs-max-a2101-global-td-lte-512gb/index.json b/site/public/v1/smartphones/iphone-xs-max-a2101-global-td-lte-512gb/index.json new file mode 100644 index 00000000000..5d2cc0f50f7 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-max-a2101-global-td-lte-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 73, + "slug": "iphone-xs-max-a2101-global-td-lte-512gb", + "name": "iPhone Xs Max A2101 Global TD-LTE 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 3179, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 4.7, + "camera": 5.1, + "battery": 2.7, + "display": 50.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.119419", + "updated_at": "2026-06-19T00:43:44.119419" +} diff --git a/site/public/v1/smartphones/iphone-xs-max-a2101-global-td-lte-512gb/score/index.json b/site/public/v1/smartphones/iphone-xs-max-a2101-global-td-lte-512gb/score/index.json new file mode 100644 index 00000000000..f2bd63e6972 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-max-a2101-global-td-lte-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 4.7, + "camera": 5.1, + "battery": 2.7, + "display": 50.6, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xs-max-a2101-global-td-lte-64gb/index.json b/site/public/v1/smartphones/iphone-xs-max-a2101-global-td-lte-64gb/index.json new file mode 100644 index 00000000000..efca8b416a7 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-max-a2101-global-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 74, + "slug": "iphone-xs-max-a2101-global-td-lte-64gb", + "name": "iPhone Xs Max A2101 Global TD-LTE 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 3179, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 4.7, + "camera": 5.1, + "battery": 2.7, + "display": 50.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.119419", + "updated_at": "2026-06-19T00:43:44.119419" +} diff --git a/site/public/v1/smartphones/iphone-xs-max-a2101-global-td-lte-64gb/score/index.json b/site/public/v1/smartphones/iphone-xs-max-a2101-global-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..f2bd63e6972 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-max-a2101-global-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 4.7, + "camera": 5.1, + "battery": 2.7, + "display": 50.6, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xs-max-a2102-td-lte-jp-256gb/index.json b/site/public/v1/smartphones/iphone-xs-max-a2102-td-lte-jp-256gb/index.json new file mode 100644 index 00000000000..a661d57aa40 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-max-a2102-td-lte-jp-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 75, + "slug": "iphone-xs-max-a2102-td-lte-jp-256gb", + "name": "iPhone Xs Max A2102 TD-LTE JP 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 3179, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 4.7, + "camera": 5.1, + "battery": 2.7, + "display": 50.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.119419", + "updated_at": "2026-06-19T00:43:44.119419" +} diff --git a/site/public/v1/smartphones/iphone-xs-max-a2102-td-lte-jp-256gb/score/index.json b/site/public/v1/smartphones/iphone-xs-max-a2102-td-lte-jp-256gb/score/index.json new file mode 100644 index 00000000000..f2bd63e6972 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-max-a2102-td-lte-jp-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 4.7, + "camera": 5.1, + "battery": 2.7, + "display": 50.6, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xs-max-a2102-td-lte-jp-512gb/index.json b/site/public/v1/smartphones/iphone-xs-max-a2102-td-lte-jp-512gb/index.json new file mode 100644 index 00000000000..fb66187f625 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-max-a2102-td-lte-jp-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 76, + "slug": "iphone-xs-max-a2102-td-lte-jp-512gb", + "name": "iPhone Xs Max A2102 TD-LTE JP 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 3179, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 4.7, + "camera": 5.1, + "battery": 2.7, + "display": 50.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.119419", + "updated_at": "2026-06-19T00:43:44.119419" +} diff --git a/site/public/v1/smartphones/iphone-xs-max-a2102-td-lte-jp-512gb/score/index.json b/site/public/v1/smartphones/iphone-xs-max-a2102-td-lte-jp-512gb/score/index.json new file mode 100644 index 00000000000..f2bd63e6972 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-max-a2102-td-lte-jp-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 4.7, + "camera": 5.1, + "battery": 2.7, + "display": 50.6, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xs-max-a2102-td-lte-jp-64gb/index.json b/site/public/v1/smartphones/iphone-xs-max-a2102-td-lte-jp-64gb/index.json new file mode 100644 index 00000000000..dbe48c88020 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-max-a2102-td-lte-jp-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 77, + "slug": "iphone-xs-max-a2102-td-lte-jp-64gb", + "name": "iPhone Xs Max A2102 TD-LTE JP 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 3179, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 4.7, + "camera": 5.1, + "battery": 2.7, + "display": 50.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.119419", + "updated_at": "2026-06-19T00:43:44.119419" +} diff --git a/site/public/v1/smartphones/iphone-xs-max-a2102-td-lte-jp-64gb/score/index.json b/site/public/v1/smartphones/iphone-xs-max-a2102-td-lte-jp-64gb/score/index.json new file mode 100644 index 00000000000..f2bd63e6972 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-max-a2102-td-lte-jp-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 4.7, + "camera": 5.1, + "battery": 2.7, + "display": 50.6, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xs-max-a2104-dual-sim-td-lte-cn-256gb/index.json b/site/public/v1/smartphones/iphone-xs-max-a2104-dual-sim-td-lte-cn-256gb/index.json new file mode 100644 index 00000000000..30ea384efef --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-max-a2104-dual-sim-td-lte-cn-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 78, + "slug": "iphone-xs-max-a2104-dual-sim-td-lte-cn-256gb", + "name": "iPhone Xs Max A2104 Dual SIM TD-LTE CN 256GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 3179, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 4.7, + "camera": 5.1, + "battery": 2.7, + "display": 50.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.119419", + "updated_at": "2026-06-19T00:43:44.119419" +} diff --git a/site/public/v1/smartphones/iphone-xs-max-a2104-dual-sim-td-lte-cn-256gb/score/index.json b/site/public/v1/smartphones/iphone-xs-max-a2104-dual-sim-td-lte-cn-256gb/score/index.json new file mode 100644 index 00000000000..f2bd63e6972 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-max-a2104-dual-sim-td-lte-cn-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 4.7, + "camera": 5.1, + "battery": 2.7, + "display": 50.6, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xs-max-a2104-dual-sim-td-lte-cn-512gb/index.json b/site/public/v1/smartphones/iphone-xs-max-a2104-dual-sim-td-lte-cn-512gb/index.json new file mode 100644 index 00000000000..03d01aab335 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-max-a2104-dual-sim-td-lte-cn-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 79, + "slug": "iphone-xs-max-a2104-dual-sim-td-lte-cn-512gb", + "name": "iPhone Xs Max A2104 Dual SIM TD-LTE CN 512GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 3179, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 4.7, + "camera": 5.1, + "battery": 2.7, + "display": 50.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.120418", + "updated_at": "2026-06-19T00:43:44.120418" +} diff --git a/site/public/v1/smartphones/iphone-xs-max-a2104-dual-sim-td-lte-cn-512gb/score/index.json b/site/public/v1/smartphones/iphone-xs-max-a2104-dual-sim-td-lte-cn-512gb/score/index.json new file mode 100644 index 00000000000..f2bd63e6972 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-max-a2104-dual-sim-td-lte-cn-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 4.7, + "camera": 5.1, + "battery": 2.7, + "display": 50.6, + "value": null +} diff --git a/site/public/v1/smartphones/iphone-xs-max-a2104-dual-sim-td-lte-cn-64gb/index.json b/site/public/v1/smartphones/iphone-xs-max-a2104-dual-sim-td-lte-cn-64gb/index.json new file mode 100644 index 00000000000..de72d38415c --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-max-a2104-dual-sim-td-lte-cn-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 80, + "slug": "iphone-xs-max-a2104-dual-sim-td-lte-cn-64gb", + "name": "iPhone Xs Max A2104 Dual SIM TD-LTE CN 64GB", + "brand": { + "id": 103, + "slug": "apple", + "name": "Apple", + "country": "US", + "url": "/v1/brands/apple" + }, + "soc": { + "id": 7, + "slug": "apple-a12-bionic", + "name": "Apple A12 Bionic", + "manufacturer": { + "slug": "apple", + "name": "Apple", + "url": "/v1/brands/apple" + }, + "process_nm": 7.0, + "gpu_name": "Apple GPU (4-core)", + "url": "/v1/socs/apple-a12-bionic" + }, + "release_date": "2018-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1242x2688", + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 7.2 + } + ], + "battery_mah": 3179, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "iOS", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 4.7, + "camera": 5.1, + "battery": 2.7, + "display": 50.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.120418", + "updated_at": "2026-06-19T00:43:44.120418" +} diff --git a/site/public/v1/smartphones/iphone-xs-max-a2104-dual-sim-td-lte-cn-64gb/score/index.json b/site/public/v1/smartphones/iphone-xs-max-a2104-dual-sim-td-lte-cn-64gb/score/index.json new file mode 100644 index 00000000000..f2bd63e6972 --- /dev/null +++ b/site/public/v1/smartphones/iphone-xs-max-a2104-dual-sim-td-lte-cn-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 4.7, + "camera": 5.1, + "battery": 2.7, + "display": 50.6, + "value": null +} diff --git a/site/public/v1/smartphones/iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-128gb-v1936a/index.json b/site/public/v1/smartphones/iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-128gb-v1936a/index.json new file mode 100644 index 00000000000..5cd35ba0fce --- /dev/null +++ b/site/public/v1/smartphones/iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-128gb-v1936a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5154, + "slug": "iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-128gb-v1936a", + "name": "iQOO Neo 855 Premium Edition Dual SIM TD-LTE CN 128GB V1936A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 198.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 3.0, + "camera": 5.0, + "battery": 25.9, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.859795", + "updated_at": "2026-06-19T00:43:44.859795" +} diff --git a/site/public/v1/smartphones/iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-128gb-v1936a/score/index.json b/site/public/v1/smartphones/iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-128gb-v1936a/score/index.json new file mode 100644 index 00000000000..ff14e238d0e --- /dev/null +++ b/site/public/v1/smartphones/iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-128gb-v1936a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 3.0, + "camera": 5.0, + "battery": 25.9, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-256gb-v1936a/index.json b/site/public/v1/smartphones/iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-256gb-v1936a/index.json new file mode 100644 index 00000000000..7b8cfe274aa --- /dev/null +++ b/site/public/v1/smartphones/iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-256gb-v1936a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5155, + "slug": "iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-256gb-v1936a", + "name": "iQOO Neo 855 Premium Edition Dual SIM TD-LTE CN 256GB V1936A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 198.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 3.0, + "camera": 5.0, + "battery": 25.9, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.859795", + "updated_at": "2026-06-19T00:43:44.859795" +} diff --git a/site/public/v1/smartphones/iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-256gb-v1936a/score/index.json b/site/public/v1/smartphones/iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-256gb-v1936a/score/index.json new file mode 100644 index 00000000000..ff14e238d0e --- /dev/null +++ b/site/public/v1/smartphones/iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-256gb-v1936a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 3.0, + "camera": 5.0, + "battery": 25.9, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-256gb-v1936t/index.json b/site/public/v1/smartphones/iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-256gb-v1936t/index.json new file mode 100644 index 00000000000..7f94025eb1f --- /dev/null +++ b/site/public/v1/smartphones/iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-256gb-v1936t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5156, + "slug": "iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-256gb-v1936t", + "name": "iQOO Neo 855 Premium Edition Dual SIM TD-LTE CN 256GB V1936T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 198.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 3.0, + "camera": 5.0, + "battery": 25.9, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.859795", + "updated_at": "2026-06-19T00:43:44.859795" +} diff --git a/site/public/v1/smartphones/iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-256gb-v1936t/score/index.json b/site/public/v1/smartphones/iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-256gb-v1936t/score/index.json new file mode 100644 index 00000000000..ff14e238d0e --- /dev/null +++ b/site/public/v1/smartphones/iqoo-neo-855-premium-edition-dual-sim-td-lte-cn-256gb-v1936t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 3.0, + "camera": 5.0, + "battery": 25.9, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-128gb-v1936a/index.json b/site/public/v1/smartphones/iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-128gb-v1936a/index.json new file mode 100644 index 00000000000..853d870a22c --- /dev/null +++ b/site/public/v1/smartphones/iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-128gb-v1936a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5157, + "slug": "iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-128gb-v1936a", + "name": "iQOO Neo 855 Standard Edition Dual SIM TD-LTE CN 128GB V1936A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 198.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 5.0, + "battery": 25.9, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.859795", + "updated_at": "2026-06-19T00:43:44.859795" +} diff --git a/site/public/v1/smartphones/iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-128gb-v1936a/score/index.json b/site/public/v1/smartphones/iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-128gb-v1936a/score/index.json new file mode 100644 index 00000000000..eb4238dfaa6 --- /dev/null +++ b/site/public/v1/smartphones/iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-128gb-v1936a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 5.0, + "battery": 25.9, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-128gb-v1936t/index.json b/site/public/v1/smartphones/iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-128gb-v1936t/index.json new file mode 100644 index 00000000000..aa35ddfe2d6 --- /dev/null +++ b/site/public/v1/smartphones/iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-128gb-v1936t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5158, + "slug": "iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-128gb-v1936t", + "name": "iQOO Neo 855 Standard Edition Dual SIM TD-LTE CN 128GB V1936T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 198.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 5.0, + "battery": 25.9, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.859795", + "updated_at": "2026-06-19T00:43:44.859795" +} diff --git a/site/public/v1/smartphones/iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-128gb-v1936t/score/index.json b/site/public/v1/smartphones/iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-128gb-v1936t/score/index.json new file mode 100644 index 00000000000..eb4238dfaa6 --- /dev/null +++ b/site/public/v1/smartphones/iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-128gb-v1936t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 5.0, + "battery": 25.9, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-64gb-v1936a/index.json b/site/public/v1/smartphones/iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-64gb-v1936a/index.json new file mode 100644 index 00000000000..440808f3eee --- /dev/null +++ b/site/public/v1/smartphones/iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-64gb-v1936a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5159, + "slug": "iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-64gb-v1936a", + "name": "iQOO Neo 855 Standard Edition Dual SIM TD-LTE CN 64GB V1936A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 198.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 5.0, + "battery": 25.9, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.859795", + "updated_at": "2026-06-19T00:43:44.859795" +} diff --git a/site/public/v1/smartphones/iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-64gb-v1936a/score/index.json b/site/public/v1/smartphones/iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-64gb-v1936a/score/index.json new file mode 100644 index 00000000000..eb4238dfaa6 --- /dev/null +++ b/site/public/v1/smartphones/iqoo-neo-855-standard-edition-dual-sim-td-lte-cn-64gb-v1936a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 5.0, + "battery": 25.9, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/iqoo-neo-855s-racing-premium-edition-dual-sim-td-lte-cn-128gb-v1936al/index.json b/site/public/v1/smartphones/iqoo-neo-855s-racing-premium-edition-dual-sim-td-lte-cn-128gb-v1936al/index.json new file mode 100644 index 00000000000..0afa9f64979 --- /dev/null +++ b/site/public/v1/smartphones/iqoo-neo-855s-racing-premium-edition-dual-sim-td-lte-cn-128gb-v1936al/index.json @@ -0,0 +1,76 @@ +{ + "id": 5160, + "slug": "iqoo-neo-855s-racing-premium-edition-dual-sim-td-lte-cn-128gb-v1936al", + "name": "iQOO Neo 855S Racing Premium Edition Dual SIM TD-LTE CN 128GB V1936AL", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-12-12", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 198.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 6.0, + "camera": 5.0, + "battery": 25.9, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.859795", + "updated_at": "2026-06-19T00:43:44.859795" +} diff --git a/site/public/v1/smartphones/iqoo-neo-855s-racing-premium-edition-dual-sim-td-lte-cn-128gb-v1936al/score/index.json b/site/public/v1/smartphones/iqoo-neo-855s-racing-premium-edition-dual-sim-td-lte-cn-128gb-v1936al/score/index.json new file mode 100644 index 00000000000..97913a8835f --- /dev/null +++ b/site/public/v1/smartphones/iqoo-neo-855s-racing-premium-edition-dual-sim-td-lte-cn-128gb-v1936al/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 6.0, + "camera": 5.0, + "battery": 25.9, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/iqoo-neo-855s-racing-premium-edition-dual-sim-td-lte-cn-128gb-v1936tl/index.json b/site/public/v1/smartphones/iqoo-neo-855s-racing-premium-edition-dual-sim-td-lte-cn-128gb-v1936tl/index.json new file mode 100644 index 00000000000..efb69617966 --- /dev/null +++ b/site/public/v1/smartphones/iqoo-neo-855s-racing-premium-edition-dual-sim-td-lte-cn-128gb-v1936tl/index.json @@ -0,0 +1,76 @@ +{ + "id": 5161, + "slug": "iqoo-neo-855s-racing-premium-edition-dual-sim-td-lte-cn-128gb-v1936tl", + "name": "iQOO Neo 855S Racing Premium Edition Dual SIM TD-LTE CN 128GB V1936TL", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-12-13", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 198.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 6.0, + "camera": 5.0, + "battery": 25.9, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.859795", + "updated_at": "2026-06-19T00:43:44.859795" +} diff --git a/site/public/v1/smartphones/iqoo-neo-855s-racing-premium-edition-dual-sim-td-lte-cn-128gb-v1936tl/score/index.json b/site/public/v1/smartphones/iqoo-neo-855s-racing-premium-edition-dual-sim-td-lte-cn-128gb-v1936tl/score/index.json new file mode 100644 index 00000000000..97913a8835f --- /dev/null +++ b/site/public/v1/smartphones/iqoo-neo-855s-racing-premium-edition-dual-sim-td-lte-cn-128gb-v1936tl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 6.0, + "camera": 5.0, + "battery": 25.9, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/iqoo-neo-855s-racing-standard-edition-dual-sim-td-lte-cn-128gb-v1936al/index.json b/site/public/v1/smartphones/iqoo-neo-855s-racing-standard-edition-dual-sim-td-lte-cn-128gb-v1936al/index.json new file mode 100644 index 00000000000..02496ed8452 --- /dev/null +++ b/site/public/v1/smartphones/iqoo-neo-855s-racing-standard-edition-dual-sim-td-lte-cn-128gb-v1936al/index.json @@ -0,0 +1,76 @@ +{ + "id": 5162, + "slug": "iqoo-neo-855s-racing-standard-edition-dual-sim-td-lte-cn-128gb-v1936al", + "name": "iQOO Neo 855S Racing Standard Edition Dual SIM TD-LTE CN 128GB V1936AL", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-12-12", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 198.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 3.0, + "camera": 5.0, + "battery": 25.9, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.860793", + "updated_at": "2026-06-19T00:43:44.860793" +} diff --git a/site/public/v1/smartphones/iqoo-neo-855s-racing-standard-edition-dual-sim-td-lte-cn-128gb-v1936al/score/index.json b/site/public/v1/smartphones/iqoo-neo-855s-racing-standard-edition-dual-sim-td-lte-cn-128gb-v1936al/score/index.json new file mode 100644 index 00000000000..ff14e238d0e --- /dev/null +++ b/site/public/v1/smartphones/iqoo-neo-855s-racing-standard-edition-dual-sim-td-lte-cn-128gb-v1936al/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 3.0, + "camera": 5.0, + "battery": 25.9, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/iqoo-neo-855s-racing-standard-edition-dual-sim-td-lte-cn-128gb-v1936tl/index.json b/site/public/v1/smartphones/iqoo-neo-855s-racing-standard-edition-dual-sim-td-lte-cn-128gb-v1936tl/index.json new file mode 100644 index 00000000000..41cdec3010b --- /dev/null +++ b/site/public/v1/smartphones/iqoo-neo-855s-racing-standard-edition-dual-sim-td-lte-cn-128gb-v1936tl/index.json @@ -0,0 +1,76 @@ +{ + "id": 5163, + "slug": "iqoo-neo-855s-racing-standard-edition-dual-sim-td-lte-cn-128gb-v1936tl", + "name": "iQOO Neo 855S Racing Standard Edition Dual SIM TD-LTE CN 128GB V1936TL", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-12-12", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 198.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 3.0, + "camera": 5.0, + "battery": 25.9, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.860793", + "updated_at": "2026-06-19T00:43:44.860793" +} diff --git a/site/public/v1/smartphones/iqoo-neo-855s-racing-standard-edition-dual-sim-td-lte-cn-128gb-v1936tl/score/index.json b/site/public/v1/smartphones/iqoo-neo-855s-racing-standard-edition-dual-sim-td-lte-cn-128gb-v1936tl/score/index.json new file mode 100644 index 00000000000..ff14e238d0e --- /dev/null +++ b/site/public/v1/smartphones/iqoo-neo-855s-racing-standard-edition-dual-sim-td-lte-cn-128gb-v1936tl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 3.0, + "camera": 5.0, + "battery": 25.9, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/iqoo-neo-premium-edition-dual-sim-td-lte-cn-128gb-v1914a/index.json b/site/public/v1/smartphones/iqoo-neo-premium-edition-dual-sim-td-lte-cn-128gb-v1914a/index.json new file mode 100644 index 00000000000..f5a149bd0fb --- /dev/null +++ b/site/public/v1/smartphones/iqoo-neo-premium-edition-dual-sim-td-lte-cn-128gb-v1914a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5164, + "slug": "iqoo-neo-premium-edition-dual-sim-td-lte-cn-128gb-v1914a", + "name": "iQOO Neo Premium Edition Dual SIM TD-LTE CN 128GB V1914A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2019-07-08", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 198.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 3.0, + "camera": 5.0, + "battery": 23.8, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.860793", + "updated_at": "2026-06-19T00:43:44.860793" +} diff --git a/site/public/v1/smartphones/iqoo-neo-premium-edition-dual-sim-td-lte-cn-128gb-v1914a/score/index.json b/site/public/v1/smartphones/iqoo-neo-premium-edition-dual-sim-td-lte-cn-128gb-v1914a/score/index.json new file mode 100644 index 00000000000..e24ff037765 --- /dev/null +++ b/site/public/v1/smartphones/iqoo-neo-premium-edition-dual-sim-td-lte-cn-128gb-v1914a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 3.0, + "camera": 5.0, + "battery": 23.8, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/iqoo-neo-premium-edition-dual-sim-td-lte-cn-128gb-v1914t/index.json b/site/public/v1/smartphones/iqoo-neo-premium-edition-dual-sim-td-lte-cn-128gb-v1914t/index.json new file mode 100644 index 00000000000..1760602b841 --- /dev/null +++ b/site/public/v1/smartphones/iqoo-neo-premium-edition-dual-sim-td-lte-cn-128gb-v1914t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5165, + "slug": "iqoo-neo-premium-edition-dual-sim-td-lte-cn-128gb-v1914t", + "name": "iQOO Neo Premium Edition Dual SIM TD-LTE CN 128GB V1914T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2019-07-08", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 198.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 3.0, + "camera": 5.0, + "battery": 23.8, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.860793", + "updated_at": "2026-06-19T00:43:44.860793" +} diff --git a/site/public/v1/smartphones/iqoo-neo-premium-edition-dual-sim-td-lte-cn-128gb-v1914t/score/index.json b/site/public/v1/smartphones/iqoo-neo-premium-edition-dual-sim-td-lte-cn-128gb-v1914t/score/index.json new file mode 100644 index 00000000000..e24ff037765 --- /dev/null +++ b/site/public/v1/smartphones/iqoo-neo-premium-edition-dual-sim-td-lte-cn-128gb-v1914t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 3.0, + "camera": 5.0, + "battery": 23.8, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/iqoo-neo-premium-edition-dual-sim-td-lte-cn-64gb-v1914a/index.json b/site/public/v1/smartphones/iqoo-neo-premium-edition-dual-sim-td-lte-cn-64gb-v1914a/index.json new file mode 100644 index 00000000000..8178ee812b1 --- /dev/null +++ b/site/public/v1/smartphones/iqoo-neo-premium-edition-dual-sim-td-lte-cn-64gb-v1914a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5166, + "slug": "iqoo-neo-premium-edition-dual-sim-td-lte-cn-64gb-v1914a", + "name": "iQOO Neo Premium Edition Dual SIM TD-LTE CN 64GB V1914A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2019-07-08", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 198.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 3.0, + "camera": 5.0, + "battery": 23.8, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.860793", + "updated_at": "2026-06-19T00:43:44.860793" +} diff --git a/site/public/v1/smartphones/iqoo-neo-premium-edition-dual-sim-td-lte-cn-64gb-v1914a/score/index.json b/site/public/v1/smartphones/iqoo-neo-premium-edition-dual-sim-td-lte-cn-64gb-v1914a/score/index.json new file mode 100644 index 00000000000..e24ff037765 --- /dev/null +++ b/site/public/v1/smartphones/iqoo-neo-premium-edition-dual-sim-td-lte-cn-64gb-v1914a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 3.0, + "camera": 5.0, + "battery": 23.8, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/iqoo-neo-standard-edition-dual-sim-td-lte-cn-128gb-v1914a/index.json b/site/public/v1/smartphones/iqoo-neo-standard-edition-dual-sim-td-lte-cn-128gb-v1914a/index.json new file mode 100644 index 00000000000..30aa7926752 --- /dev/null +++ b/site/public/v1/smartphones/iqoo-neo-standard-edition-dual-sim-td-lte-cn-128gb-v1914a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5167, + "slug": "iqoo-neo-standard-edition-dual-sim-td-lte-cn-128gb-v1914a", + "name": "iQOO Neo Standard Edition Dual SIM TD-LTE CN 128GB V1914A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2019-07-08", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 198.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 1.5, + "camera": 5.0, + "battery": 23.8, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.860793", + "updated_at": "2026-06-19T00:43:44.860793" +} diff --git a/site/public/v1/smartphones/iqoo-neo-standard-edition-dual-sim-td-lte-cn-128gb-v1914a/score/index.json b/site/public/v1/smartphones/iqoo-neo-standard-edition-dual-sim-td-lte-cn-128gb-v1914a/score/index.json new file mode 100644 index 00000000000..8d260862044 --- /dev/null +++ b/site/public/v1/smartphones/iqoo-neo-standard-edition-dual-sim-td-lte-cn-128gb-v1914a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 1.5, + "camera": 5.0, + "battery": 23.8, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/iqoo-neo-standard-edition-dual-sim-td-lte-cn-64gb-v1914a/index.json b/site/public/v1/smartphones/iqoo-neo-standard-edition-dual-sim-td-lte-cn-64gb-v1914a/index.json new file mode 100644 index 00000000000..b72c317e21e --- /dev/null +++ b/site/public/v1/smartphones/iqoo-neo-standard-edition-dual-sim-td-lte-cn-64gb-v1914a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5168, + "slug": "iqoo-neo-standard-edition-dual-sim-td-lte-cn-64gb-v1914a", + "name": "iQOO Neo Standard Edition Dual SIM TD-LTE CN 64GB V1914A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2019-07-08", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 198.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 1.5, + "camera": 5.0, + "battery": 23.8, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.860793", + "updated_at": "2026-06-19T00:43:44.860793" +} diff --git a/site/public/v1/smartphones/iqoo-neo-standard-edition-dual-sim-td-lte-cn-64gb-v1914a/score/index.json b/site/public/v1/smartphones/iqoo-neo-standard-edition-dual-sim-td-lte-cn-64gb-v1914a/score/index.json new file mode 100644 index 00000000000..8d260862044 --- /dev/null +++ b/site/public/v1/smartphones/iqoo-neo-standard-edition-dual-sim-td-lte-cn-64gb-v1914a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 1.5, + "camera": 5.0, + "battery": 23.8, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/it-wimax-2-lgv36/index.json b/site/public/v1/smartphones/it-wimax-2-lgv36/index.json new file mode 100644 index 00000000000..c5637173b4e --- /dev/null +++ b/site/public/v1/smartphones/it-wimax-2-lgv36/index.json @@ -0,0 +1,76 @@ +{ + "id": 1529, + "slug": "it-wimax-2-lgv36", + "name": "it WiMAX 2+ LGV36", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-11-09", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.342605", + "updated_at": "2026-06-19T00:43:44.342605" +} diff --git a/site/public/v1/smartphones/it-wimax-2-lgv36/score/index.json b/site/public/v1/smartphones/it-wimax-2-lgv36/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/it-wimax-2-lgv36/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/jianguo-3-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/jianguo-3-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..11a12ae5005 --- /dev/null +++ b/site/public/v1/smartphones/jianguo-3-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4767, + "slug": "jianguo-3-dual-sim-td-lte-cn-128gb", + "name": "JianGuo 3 Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 35, + "slug": "smartisan", + "name": "Smartisan", + "country": "CN", + "url": "/v1/brands/smartisan" + }, + "soc": { + "id": 114, + "slug": "snapdragon-625", + "name": "Snapdragon 625", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-625" + }, + "release_date": "2018-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 154.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.808713", + "updated_at": "2026-06-19T00:43:44.808713" +} diff --git a/site/public/v1/smartphones/jianguo-3-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/jianguo-3-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..1eaf43cfe7b --- /dev/null +++ b/site/public/v1/smartphones/jianguo-3-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/jianguo-pro-2-premium-edition-dual-sim-td-lte-cn-256gb/index.json b/site/public/v1/smartphones/jianguo-pro-2-premium-edition-dual-sim-td-lte-cn-256gb/index.json new file mode 100644 index 00000000000..3ab16a2aee4 --- /dev/null +++ b/site/public/v1/smartphones/jianguo-pro-2-premium-edition-dual-sim-td-lte-cn-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4768, + "slug": "jianguo-pro-2-premium-edition-dual-sim-td-lte-cn-256gb", + "name": "JianGuo Pro 2 Premium Edition Dual SIM TD-LTE CN 256GB", + "brand": { + "id": 35, + "slug": "smartisan", + "name": "Smartisan", + "country": "CN", + "url": "/v1/brands/smartisan" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 19.5, + "camera": 5.1, + "battery": 7.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.809713", + "updated_at": "2026-06-19T00:43:44.809713" +} diff --git a/site/public/v1/smartphones/jianguo-pro-2-premium-edition-dual-sim-td-lte-cn-256gb/score/index.json b/site/public/v1/smartphones/jianguo-pro-2-premium-edition-dual-sim-td-lte-cn-256gb/score/index.json new file mode 100644 index 00000000000..9c8a17d8463 --- /dev/null +++ b/site/public/v1/smartphones/jianguo-pro-2-premium-edition-dual-sim-td-lte-cn-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 19.5, + "camera": 5.1, + "battery": 7.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/jianguo-pro-2-standard-edition-dual-sim-td-lte-cn-64gb/index.json b/site/public/v1/smartphones/jianguo-pro-2-standard-edition-dual-sim-td-lte-cn-64gb/index.json new file mode 100644 index 00000000000..602b4342b16 --- /dev/null +++ b/site/public/v1/smartphones/jianguo-pro-2-standard-edition-dual-sim-td-lte-cn-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4769, + "slug": "jianguo-pro-2-standard-edition-dual-sim-td-lte-cn-64gb", + "name": "JianGuo Pro 2 Standard Edition Dual SIM TD-LTE CN 64GB", + "brand": { + "id": 35, + "slug": "smartisan", + "name": "Smartisan", + "country": "CN", + "url": "/v1/brands/smartisan" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 18.0, + "camera": 5.1, + "battery": 7.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.809713", + "updated_at": "2026-06-19T00:43:44.809713" +} diff --git a/site/public/v1/smartphones/jianguo-pro-2-standard-edition-dual-sim-td-lte-cn-64gb/score/index.json b/site/public/v1/smartphones/jianguo-pro-2-standard-edition-dual-sim-td-lte-cn-64gb/score/index.json new file mode 100644 index 00000000000..3b225712511 --- /dev/null +++ b/site/public/v1/smartphones/jianguo-pro-2-standard-edition-dual-sim-td-lte-cn-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 18.0, + "camera": 5.1, + "battery": 7.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/jianguo-pro-2s-premium-edition-dual-sim-td-lte-cn-64gb/index.json b/site/public/v1/smartphones/jianguo-pro-2s-premium-edition-dual-sim-td-lte-cn-64gb/index.json new file mode 100644 index 00000000000..ef14f4d5b84 --- /dev/null +++ b/site/public/v1/smartphones/jianguo-pro-2s-premium-edition-dual-sim-td-lte-cn-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4770, + "slug": "jianguo-pro-2s-premium-edition-dual-sim-td-lte-cn-64gb", + "name": "JianGuo Pro 2s Premium Edition Dual SIM TD-LTE CN 64GB", + "brand": { + "id": 35, + "slug": "smartisan", + "name": "Smartisan", + "country": "CN", + "url": "/v1/brands/smartisan" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.01, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3600, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 21.5, + "camera": 5.1, + "battery": 9.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.809713", + "updated_at": "2026-06-19T00:43:44.809713" +} diff --git a/site/public/v1/smartphones/jianguo-pro-2s-premium-edition-dual-sim-td-lte-cn-64gb/score/index.json b/site/public/v1/smartphones/jianguo-pro-2s-premium-edition-dual-sim-td-lte-cn-64gb/score/index.json new file mode 100644 index 00000000000..dcebf17f8ce --- /dev/null +++ b/site/public/v1/smartphones/jianguo-pro-2s-premium-edition-dual-sim-td-lte-cn-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 21.5, + "camera": 5.1, + "battery": 9.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/jianguo-pro-2s-standard-edition-dual-sim-td-lte-cn-64gb/index.json b/site/public/v1/smartphones/jianguo-pro-2s-standard-edition-dual-sim-td-lte-cn-64gb/index.json new file mode 100644 index 00000000000..9659b54cb9b --- /dev/null +++ b/site/public/v1/smartphones/jianguo-pro-2s-standard-edition-dual-sim-td-lte-cn-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4771, + "slug": "jianguo-pro-2s-standard-edition-dual-sim-td-lte-cn-64gb", + "name": "JianGuo Pro 2s Standard Edition Dual SIM TD-LTE CN 64GB", + "brand": { + "id": 35, + "slug": "smartisan", + "name": "Smartisan", + "country": "CN", + "url": "/v1/brands/smartisan" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.01, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3600, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 20.0, + "camera": 5.1, + "battery": 9.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.809713", + "updated_at": "2026-06-19T00:43:44.809713" +} diff --git a/site/public/v1/smartphones/jianguo-pro-2s-standard-edition-dual-sim-td-lte-cn-64gb/score/index.json b/site/public/v1/smartphones/jianguo-pro-2s-standard-edition-dual-sim-td-lte-cn-64gb/score/index.json new file mode 100644 index 00000000000..c97d2669e9c --- /dev/null +++ b/site/public/v1/smartphones/jianguo-pro-2s-standard-edition-dual-sim-td-lte-cn-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 20.0, + "camera": 5.1, + "battery": 9.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/jianguo-pro-3-standard-edition-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/jianguo-pro-3-standard-edition-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..3db04638d62 --- /dev/null +++ b/site/public/v1/smartphones/jianguo-pro-3-standard-edition-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4777, + "slug": "jianguo-pro-3-standard-edition-dual-sim-td-lte-cn-128gb", + "name": "JianGuo Pro 3 Standard Edition Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 35, + "slug": "smartisan", + "name": "Smartisan", + "country": "CN", + "url": "/v1/brands/smartisan" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2020-01-28", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 3.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.810713", + "updated_at": "2026-06-19T00:43:44.810713" +} diff --git a/site/public/v1/smartphones/jianguo-pro-3-standard-edition-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/jianguo-pro-3-standard-edition-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..99cc2291f4a --- /dev/null +++ b/site/public/v1/smartphones/jianguo-pro-3-standard-edition-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 3.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/jianguo-pro-3-standard-edition-dual-sim-td-lte-cn-256gb/index.json b/site/public/v1/smartphones/jianguo-pro-3-standard-edition-dual-sim-td-lte-cn-256gb/index.json new file mode 100644 index 00000000000..1576427ed39 --- /dev/null +++ b/site/public/v1/smartphones/jianguo-pro-3-standard-edition-dual-sim-td-lte-cn-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4778, + "slug": "jianguo-pro-3-standard-edition-dual-sim-td-lte-cn-256gb", + "name": "JianGuo Pro 3 Standard Edition Dual SIM TD-LTE CN 256GB", + "brand": { + "id": 35, + "slug": "smartisan", + "name": "Smartisan", + "country": "CN", + "url": "/v1/brands/smartisan" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2020-01-28", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 3.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.810713", + "updated_at": "2026-06-19T00:43:44.810713" +} diff --git a/site/public/v1/smartphones/jianguo-pro-3-standard-edition-dual-sim-td-lte-cn-256gb/score/index.json b/site/public/v1/smartphones/jianguo-pro-3-standard-edition-dual-sim-td-lte-cn-256gb/score/index.json new file mode 100644 index 00000000000..99cc2291f4a --- /dev/null +++ b/site/public/v1/smartphones/jianguo-pro-3-standard-edition-dual-sim-td-lte-cn-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 3.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/jianguo-pro-3-standard-edition-dual-sim-td-lte-cn/index.json b/site/public/v1/smartphones/jianguo-pro-3-standard-edition-dual-sim-td-lte-cn/index.json new file mode 100644 index 00000000000..8d0295a72a2 --- /dev/null +++ b/site/public/v1/smartphones/jianguo-pro-3-standard-edition-dual-sim-td-lte-cn/index.json @@ -0,0 +1,76 @@ +{ + "id": 4779, + "slug": "jianguo-pro-3-standard-edition-dual-sim-td-lte-cn", + "name": "JianGuo Pro 3 Standard Edition Dual SIM TD-LTE CN", + "brand": { + "id": 35, + "slug": "smartisan", + "name": "Smartisan", + "country": "CN", + "url": "/v1/brands/smartisan" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2020-01-28", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 6.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.810713", + "updated_at": "2026-06-19T00:43:44.810713" +} diff --git a/site/public/v1/smartphones/jianguo-pro-3-standard-edition-dual-sim-td-lte-cn/score/index.json b/site/public/v1/smartphones/jianguo-pro-3-standard-edition-dual-sim-td-lte-cn/score/index.json new file mode 100644 index 00000000000..0e773e97a90 --- /dev/null +++ b/site/public/v1/smartphones/jianguo-pro-3-standard-edition-dual-sim-td-lte-cn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 6.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/jianguo-r1-premium-edition-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/jianguo-r1-premium-edition-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..bb75217d8e8 --- /dev/null +++ b/site/public/v1/smartphones/jianguo-r1-premium-edition-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4772, + "slug": "jianguo-r1-premium-edition-dual-sim-td-lte-cn-128gb", + "name": "JianGuo R1 Premium Edition Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 35, + "slug": "smartisan", + "name": "Smartisan", + "country": "CN", + "url": "/v1/brands/smartisan" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.17, + "resolution": "1080x2242", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3600, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.6, + "performance": 3.0, + "camera": 5.1, + "battery": 9.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.809713", + "updated_at": "2026-06-19T00:43:44.809713" +} diff --git a/site/public/v1/smartphones/jianguo-r1-premium-edition-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/jianguo-r1-premium-edition-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..150ba95712c --- /dev/null +++ b/site/public/v1/smartphones/jianguo-r1-premium-edition-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.6, + "performance": 3.0, + "camera": 5.1, + "battery": 9.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/jianguo-r1-premium-edition-dual-sim-td-lte-cn-1tb/index.json b/site/public/v1/smartphones/jianguo-r1-premium-edition-dual-sim-td-lte-cn-1tb/index.json new file mode 100644 index 00000000000..2fc7cf68aa8 --- /dev/null +++ b/site/public/v1/smartphones/jianguo-r1-premium-edition-dual-sim-td-lte-cn-1tb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4773, + "slug": "jianguo-r1-premium-edition-dual-sim-td-lte-cn-1tb", + "name": "JianGuo R1 Premium Edition Dual SIM TD-LTE CN 1TB", + "brand": { + "id": 35, + "slug": "smartisan", + "name": "Smartisan", + "country": "CN", + "url": "/v1/brands/smartisan" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.17, + "resolution": "1080x2242", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3600, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.6, + "performance": 3.0, + "camera": 5.1, + "battery": 9.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.809713", + "updated_at": "2026-06-19T00:43:44.809713" +} diff --git a/site/public/v1/smartphones/jianguo-r1-premium-edition-dual-sim-td-lte-cn-1tb/score/index.json b/site/public/v1/smartphones/jianguo-r1-premium-edition-dual-sim-td-lte-cn-1tb/score/index.json new file mode 100644 index 00000000000..150ba95712c --- /dev/null +++ b/site/public/v1/smartphones/jianguo-r1-premium-edition-dual-sim-td-lte-cn-1tb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.6, + "performance": 3.0, + "camera": 5.1, + "battery": 9.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/jianguo-r1-premium-edition-dual-sim-td-lte-cn-512gb/index.json b/site/public/v1/smartphones/jianguo-r1-premium-edition-dual-sim-td-lte-cn-512gb/index.json new file mode 100644 index 00000000000..c68ba73d37d --- /dev/null +++ b/site/public/v1/smartphones/jianguo-r1-premium-edition-dual-sim-td-lte-cn-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4774, + "slug": "jianguo-r1-premium-edition-dual-sim-td-lte-cn-512gb", + "name": "JianGuo R1 Premium Edition Dual SIM TD-LTE CN 512GB", + "brand": { + "id": 35, + "slug": "smartisan", + "name": "Smartisan", + "country": "CN", + "url": "/v1/brands/smartisan" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.17, + "resolution": "1080x2242", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3600, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.6, + "performance": 3.0, + "camera": 5.1, + "battery": 9.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.809713", + "updated_at": "2026-06-19T00:43:44.809713" +} diff --git a/site/public/v1/smartphones/jianguo-r1-premium-edition-dual-sim-td-lte-cn-512gb/score/index.json b/site/public/v1/smartphones/jianguo-r1-premium-edition-dual-sim-td-lte-cn-512gb/score/index.json new file mode 100644 index 00000000000..150ba95712c --- /dev/null +++ b/site/public/v1/smartphones/jianguo-r1-premium-edition-dual-sim-td-lte-cn-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.6, + "performance": 3.0, + "camera": 5.1, + "battery": 9.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/jianguo-r1-standard-edition-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/jianguo-r1-standard-edition-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..a3caa459e71 --- /dev/null +++ b/site/public/v1/smartphones/jianguo-r1-standard-edition-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4775, + "slug": "jianguo-r1-standard-edition-dual-sim-td-lte-cn-128gb", + "name": "JianGuo R1 Standard Edition Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 35, + "slug": "smartisan", + "name": "Smartisan", + "country": "CN", + "url": "/v1/brands/smartisan" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.17, + "resolution": "1080x2242", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3600, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 1.5, + "camera": 5.1, + "battery": 9.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.809713", + "updated_at": "2026-06-19T00:43:44.809713" +} diff --git a/site/public/v1/smartphones/jianguo-r1-standard-edition-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/jianguo-r1-standard-edition-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..7dce194638b --- /dev/null +++ b/site/public/v1/smartphones/jianguo-r1-standard-edition-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 1.5, + "camera": 5.1, + "battery": 9.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/jianguo-r1-standard-edition-dual-sim-td-lte-cn-64gb/index.json b/site/public/v1/smartphones/jianguo-r1-standard-edition-dual-sim-td-lte-cn-64gb/index.json new file mode 100644 index 00000000000..be379de212e --- /dev/null +++ b/site/public/v1/smartphones/jianguo-r1-standard-edition-dual-sim-td-lte-cn-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4776, + "slug": "jianguo-r1-standard-edition-dual-sim-td-lte-cn-64gb", + "name": "JianGuo R1 Standard Edition Dual SIM TD-LTE CN 64GB", + "brand": { + "id": 35, + "slug": "smartisan", + "name": "Smartisan", + "country": "CN", + "url": "/v1/brands/smartisan" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.17, + "resolution": "1080x2242", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3600, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 1.5, + "camera": 5.1, + "battery": 9.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.809713", + "updated_at": "2026-06-19T00:43:44.809713" +} diff --git a/site/public/v1/smartphones/jianguo-r1-standard-edition-dual-sim-td-lte-cn-64gb/score/index.json b/site/public/v1/smartphones/jianguo-r1-standard-edition-dual-sim-td-lte-cn-64gb/score/index.json new file mode 100644 index 00000000000..7dce194638b --- /dev/null +++ b/site/public/v1/smartphones/jianguo-r1-standard-edition-dual-sim-td-lte-cn-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 1.5, + "camera": 5.1, + "battery": 9.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/jianguo-r2-premium-edition-dual-sim-td-lte-cn-256gb/index.json b/site/public/v1/smartphones/jianguo-r2-premium-edition-dual-sim-td-lte-cn-256gb/index.json new file mode 100644 index 00000000000..d094e898778 --- /dev/null +++ b/site/public/v1/smartphones/jianguo-r2-premium-edition-dual-sim-td-lte-cn-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4780, + "slug": "jianguo-r2-premium-edition-dual-sim-td-lte-cn-256gb", + "name": "JianGuo R2 Premium Edition Dual SIM TD-LTE CN 256GB", + "brand": { + "id": 35, + "slug": "smartisan", + "name": "Smartisan", + "country": "CN", + "url": "/v1/brands/smartisan" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4510, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 216.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.7, + "performance": 6.0, + "camera": 35.8, + "battery": 30.3, + "display": 38.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.810713", + "updated_at": "2026-06-19T00:43:44.810713" +} diff --git a/site/public/v1/smartphones/jianguo-r2-premium-edition-dual-sim-td-lte-cn-256gb/score/index.json b/site/public/v1/smartphones/jianguo-r2-premium-edition-dual-sim-td-lte-cn-256gb/score/index.json new file mode 100644 index 00000000000..e34a0613069 --- /dev/null +++ b/site/public/v1/smartphones/jianguo-r2-premium-edition-dual-sim-td-lte-cn-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.7, + "performance": 6.0, + "camera": 35.8, + "battery": 30.3, + "display": 38.6, + "value": null +} diff --git a/site/public/v1/smartphones/jianguo-r2-standard-edition-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/jianguo-r2-standard-edition-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..db96d3fe5ea --- /dev/null +++ b/site/public/v1/smartphones/jianguo-r2-standard-edition-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4781, + "slug": "jianguo-r2-standard-edition-dual-sim-td-lte-cn-128gb", + "name": "JianGuo R2 Standard Edition Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 35, + "slug": "smartisan", + "name": "Smartisan", + "country": "CN", + "url": "/v1/brands/smartisan" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-10-01", + "msrp_usd": 4499, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4510, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 216.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.9, + "performance": 3.0, + "camera": 35.8, + "battery": 30.3, + "display": 38.6, + "value": 13.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.810713", + "updated_at": "2026-06-19T00:43:44.810713" +} diff --git a/site/public/v1/smartphones/jianguo-r2-standard-edition-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/jianguo-r2-standard-edition-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..3034cfcb86c --- /dev/null +++ b/site/public/v1/smartphones/jianguo-r2-standard-edition-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.9, + "performance": 3.0, + "camera": 35.8, + "battery": 30.3, + "display": 38.6, + "value": 13.4 +} diff --git a/site/public/v1/smartphones/jianguo-r2-standard-edition-dual-sim-td-lte-cn-256gb/index.json b/site/public/v1/smartphones/jianguo-r2-standard-edition-dual-sim-td-lte-cn-256gb/index.json new file mode 100644 index 00000000000..15cd130bd9a --- /dev/null +++ b/site/public/v1/smartphones/jianguo-r2-standard-edition-dual-sim-td-lte-cn-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4782, + "slug": "jianguo-r2-standard-edition-dual-sim-td-lte-cn-256gb", + "name": "JianGuo R2 Standard Edition Dual SIM TD-LTE CN 256GB", + "brand": { + "id": 35, + "slug": "smartisan", + "name": "Smartisan", + "country": "CN", + "url": "/v1/brands/smartisan" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-10-01", + "msrp_usd": 4799, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4510, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 216.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.9, + "performance": 3.0, + "camera": 35.8, + "battery": 30.3, + "display": 38.6, + "value": 13.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.810713", + "updated_at": "2026-06-19T00:43:44.810713" +} diff --git a/site/public/v1/smartphones/jianguo-r2-standard-edition-dual-sim-td-lte-cn-256gb/score/index.json b/site/public/v1/smartphones/jianguo-r2-standard-edition-dual-sim-td-lte-cn-256gb/score/index.json new file mode 100644 index 00000000000..3034cfcb86c --- /dev/null +++ b/site/public/v1/smartphones/jianguo-r2-standard-edition-dual-sim-td-lte-cn-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.9, + "performance": 3.0, + "camera": 35.8, + "battery": 30.3, + "display": 38.6, + "value": 13.4 +} diff --git a/site/public/v1/smartphones/jianguo-r2-top-edition-dual-sim-td-lte-cn-512gb/index.json b/site/public/v1/smartphones/jianguo-r2-top-edition-dual-sim-td-lte-cn-512gb/index.json new file mode 100644 index 00000000000..0a01990e845 --- /dev/null +++ b/site/public/v1/smartphones/jianguo-r2-top-edition-dual-sim-td-lte-cn-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4783, + "slug": "jianguo-r2-top-edition-dual-sim-td-lte-cn-512gb", + "name": "JianGuo R2 Top Edition Dual SIM TD-LTE CN 512GB", + "brand": { + "id": 35, + "slug": "smartisan", + "name": "Smartisan", + "country": "CN", + "url": "/v1/brands/smartisan" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 16, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4510, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 216.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.4, + "performance": 9.0, + "camera": 35.8, + "battery": 30.3, + "display": 38.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.810713", + "updated_at": "2026-06-19T00:43:44.810713" +} diff --git a/site/public/v1/smartphones/jianguo-r2-top-edition-dual-sim-td-lte-cn-512gb/score/index.json b/site/public/v1/smartphones/jianguo-r2-top-edition-dual-sim-td-lte-cn-512gb/score/index.json new file mode 100644 index 00000000000..4832683d27a --- /dev/null +++ b/site/public/v1/smartphones/jianguo-r2-top-edition-dual-sim-td-lte-cn-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.4, + "performance": 9.0, + "camera": 35.8, + "battery": 30.3, + "display": 38.6, + "value": null +} diff --git a/site/public/v1/smartphones/jingang-4-pro-dual-sim-td-lte-cn-hlte311t/index.json b/site/public/v1/smartphones/jingang-4-pro-dual-sim-td-lte-cn-hlte311t/index.json new file mode 100644 index 00000000000..67965076052 --- /dev/null +++ b/site/public/v1/smartphones/jingang-4-pro-dual-sim-td-lte-cn-hlte311t/index.json @@ -0,0 +1,76 @@ +{ + "id": 625, + "slug": "jingang-4-pro-dual-sim-td-lte-cn-hlte311t", + "name": "Jingang 4 PRO Dual SIM TD-LTE CN HLTE311T", + "brand": { + "id": 14, + "slug": "hisense", + "name": "Hisense", + "country": "CN", + "url": "/v1/brands/hisense" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-11-14", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.4, + "performance": 0.0, + "camera": 5.2, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.191933", + "updated_at": "2026-06-19T00:43:44.191933" +} diff --git a/site/public/v1/smartphones/jingang-4-pro-dual-sim-td-lte-cn-hlte311t/score/index.json b/site/public/v1/smartphones/jingang-4-pro-dual-sim-td-lte-cn-hlte311t/score/index.json new file mode 100644 index 00000000000..fa488f495b3 --- /dev/null +++ b/site/public/v1/smartphones/jingang-4-pro-dual-sim-td-lte-cn-hlte311t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.4, + "performance": 0.0, + "camera": 5.2, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/k-series-k50-2019-td-lte-jp-802lg/index.json b/site/public/v1/smartphones/k-series-k50-2019-td-lte-jp-802lg/index.json new file mode 100644 index 00000000000..cea7d62d209 --- /dev/null +++ b/site/public/v1/smartphones/k-series-k50-2019-td-lte-jp-802lg/index.json @@ -0,0 +1,76 @@ +{ + "id": 1625, + "slug": "k-series-k50-2019-td-lte-jp-802lg", + "name": "K Series K50 2019 TD-LTE JP 802LG", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-07-06", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.354605", + "updated_at": "2026-06-19T00:43:44.354605" +} diff --git a/site/public/v1/smartphones/k-series-k50-2019-td-lte-jp-802lg/score/index.json b/site/public/v1/smartphones/k-series-k50-2019-td-lte-jp-802lg/score/index.json new file mode 100644 index 00000000000..99542862d37 --- /dev/null +++ b/site/public/v1/smartphones/k-series-k50-2019-td-lte-jp-802lg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/k1-dual-sim-td-lte-in-cph1893/index.json b/site/public/v1/smartphones/k1-dual-sim-td-lte-in-cph1893/index.json new file mode 100644 index 00000000000..c8d0fca718b --- /dev/null +++ b/site/public/v1/smartphones/k1-dual-sim-td-lte-in-cph1893/index.json @@ -0,0 +1,76 @@ +{ + "id": 2879, + "slug": "k1-dual-sim-td-lte-in-cph1893", + "name": "K1 Dual SIM TD-LTE IN CPH1893", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2019-02-12", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3600, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 18.0, + "camera": 6.3, + "battery": 9.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.518921", + "updated_at": "2026-06-19T00:43:44.518921" +} diff --git a/site/public/v1/smartphones/k1-dual-sim-td-lte-in-cph1893/score/index.json b/site/public/v1/smartphones/k1-dual-sim-td-lte-in-cph1893/score/index.json new file mode 100644 index 00000000000..2ee72d64f00 --- /dev/null +++ b/site/public/v1/smartphones/k1-dual-sim-td-lte-in-cph1893/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 18.0, + "camera": 6.3, + "battery": 9.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/k1-premium-edition-dual-sim-td-lte-cn-pbcm30/index.json b/site/public/v1/smartphones/k1-premium-edition-dual-sim-td-lte-cn-pbcm30/index.json new file mode 100644 index 00000000000..2b8d032fe1a --- /dev/null +++ b/site/public/v1/smartphones/k1-premium-edition-dual-sim-td-lte-cn-pbcm30/index.json @@ -0,0 +1,76 @@ +{ + "id": 2774, + "slug": "k1-premium-edition-dual-sim-td-lte-cn-pbcm30", + "name": "K1 Premium Edition Dual SIM TD-LTE CN PBCM30", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3600, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 19.5, + "camera": 6.3, + "battery": 9.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.503301", + "updated_at": "2026-06-19T00:43:44.503301" +} diff --git a/site/public/v1/smartphones/k1-premium-edition-dual-sim-td-lte-cn-pbcm30/score/index.json b/site/public/v1/smartphones/k1-premium-edition-dual-sim-td-lte-cn-pbcm30/score/index.json new file mode 100644 index 00000000000..8d965566d57 --- /dev/null +++ b/site/public/v1/smartphones/k1-premium-edition-dual-sim-td-lte-cn-pbcm30/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 19.5, + "camera": 6.3, + "battery": 9.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/k1-standard-edition-dual-sim-td-lte-cn-pbcm30/index.json b/site/public/v1/smartphones/k1-standard-edition-dual-sim-td-lte-cn-pbcm30/index.json new file mode 100644 index 00000000000..7194ab96f7b --- /dev/null +++ b/site/public/v1/smartphones/k1-standard-edition-dual-sim-td-lte-cn-pbcm30/index.json @@ -0,0 +1,76 @@ +{ + "id": 2775, + "slug": "k1-standard-edition-dual-sim-td-lte-cn-pbcm30", + "name": "K1 Standard Edition Dual SIM TD-LTE CN PBCM30", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3600, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 18.0, + "camera": 6.3, + "battery": 9.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.504300", + "updated_at": "2026-06-19T00:43:44.504300" +} diff --git a/site/public/v1/smartphones/k1-standard-edition-dual-sim-td-lte-cn-pbcm30/score/index.json b/site/public/v1/smartphones/k1-standard-edition-dual-sim-td-lte-cn-pbcm30/score/index.json new file mode 100644 index 00000000000..2ee72d64f00 --- /dev/null +++ b/site/public/v1/smartphones/k1-standard-edition-dual-sim-td-lte-cn-pbcm30/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 18.0, + "camera": 6.3, + "battery": 9.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/k10-2019-global-dual-sim-td-lte-64gb-xt2025-3/index.json b/site/public/v1/smartphones/k10-2019-global-dual-sim-td-lte-64gb-xt2025-3/index.json new file mode 100644 index 00000000000..4f084fc304d --- /dev/null +++ b/site/public/v1/smartphones/k10-2019-global-dual-sim-td-lte-64gb-xt2025-3/index.json @@ -0,0 +1,76 @@ +{ + "id": 1449, + "slug": "k10-2019-global-dual-sim-td-lte-64gb-xt2025-3", + "name": "K10 2019 Global Dual SIM TD-LTE 64GB XT2025-3", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 149.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.334605", + "updated_at": "2026-06-19T00:43:44.334605" +} diff --git a/site/public/v1/smartphones/k10-2019-global-dual-sim-td-lte-64gb-xt2025-3/score/index.json b/site/public/v1/smartphones/k10-2019-global-dual-sim-td-lte-64gb-xt2025-3/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/k10-2019-global-dual-sim-td-lte-64gb-xt2025-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/k10-note-dual-sim-td-lte-in/index.json b/site/public/v1/smartphones/k10-note-dual-sim-td-lte-in/index.json new file mode 100644 index 00000000000..c21c9328f61 --- /dev/null +++ b/site/public/v1/smartphones/k10-note-dual-sim-td-lte-in/index.json @@ -0,0 +1,76 @@ +{ + "id": 1451, + "slug": "k10-note-dual-sim-td-lte-in", + "name": "K10 Note Dual SIM TD-LTE IN", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4050, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 20.0, + "camera": 6.3, + "battery": 16.3, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.334605", + "updated_at": "2026-06-19T00:43:44.334605" +} diff --git a/site/public/v1/smartphones/k10-note-dual-sim-td-lte-in/score/index.json b/site/public/v1/smartphones/k10-note-dual-sim-td-lte-in/score/index.json new file mode 100644 index 00000000000..2e8dae553ff --- /dev/null +++ b/site/public/v1/smartphones/k10-note-dual-sim-td-lte-in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 20.0, + "camera": 6.3, + "battery": 16.3, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/k10-plus-dual-sim-td-lte-in/index.json b/site/public/v1/smartphones/k10-plus-dual-sim-td-lte-in/index.json new file mode 100644 index 00000000000..eebe1d52996 --- /dev/null +++ b/site/public/v1/smartphones/k10-plus-dual-sim-td-lte-in/index.json @@ -0,0 +1,76 @@ +{ + "id": 1453, + "slug": "k10-plus-dual-sim-td-lte-in", + "name": "K10 Plus Dual SIM TD-LTE IN", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4050, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 158.2, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 0.0, + "camera": 5.3, + "battery": 16.3, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.334605", + "updated_at": "2026-06-19T00:43:44.334605" +} diff --git a/site/public/v1/smartphones/k10-plus-dual-sim-td-lte-in/score/index.json b/site/public/v1/smartphones/k10-plus-dual-sim-td-lte-in/score/index.json new file mode 100644 index 00000000000..f0c12ba2483 --- /dev/null +++ b/site/public/v1/smartphones/k10-plus-dual-sim-td-lte-in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 0.0, + "camera": 5.3, + "battery": 16.3, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/k11-2020-dual-sim-td-lte-apac-32gb-xt2053-3/index.json b/site/public/v1/smartphones/k11-2020-dual-sim-td-lte-apac-32gb-xt2053-3/index.json new file mode 100644 index 00000000000..ccfe0ed0511 --- /dev/null +++ b/site/public/v1/smartphones/k11-2020-dual-sim-td-lte-apac-32gb-xt2053-3/index.json @@ -0,0 +1,76 @@ +{ + "id": 1469, + "slug": "k11-2020-dual-sim-td-lte-apac-32gb-xt2053-3", + "name": "K11 2020 Dual SIM TD-LTE APAC 32GB XT2053-3", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-06-01", + "msrp_usd": 2790, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 6.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.336605", + "updated_at": "2026-06-19T00:43:44.336605" +} diff --git a/site/public/v1/smartphones/k11-2020-dual-sim-td-lte-apac-32gb-xt2053-3/score/index.json b/site/public/v1/smartphones/k11-2020-dual-sim-td-lte-apac-32gb-xt2053-3/score/index.json new file mode 100644 index 00000000000..84bcf0ac232 --- /dev/null +++ b/site/public/v1/smartphones/k11-2020-dual-sim-td-lte-apac-32gb-xt2053-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 6.7 +} diff --git a/site/public/v1/smartphones/k11-power-global-dual-sim-td-lte-64-gb-xt2055-3/index.json b/site/public/v1/smartphones/k11-power-global-dual-sim-td-lte-64-gb-xt2055-3/index.json new file mode 100644 index 00000000000..2a17f0427f6 --- /dev/null +++ b/site/public/v1/smartphones/k11-power-global-dual-sim-td-lte-64-gb-xt2055-3/index.json @@ -0,0 +1,76 @@ +{ + "id": 1471, + "slug": "k11-power-global-dual-sim-td-lte-64-gb-xt2055-3", + "name": "K11 Power Global Dual SIM TD-LTE 64 GB XT2055-3", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.336605", + "updated_at": "2026-06-19T00:43:44.336605" +} diff --git a/site/public/v1/smartphones/k11-power-global-dual-sim-td-lte-64-gb-xt2055-3/score/index.json b/site/public/v1/smartphones/k11-power-global-dual-sim-td-lte-64-gb-xt2055-3/score/index.json new file mode 100644 index 00000000000..5a744494124 --- /dev/null +++ b/site/public/v1/smartphones/k11-power-global-dual-sim-td-lte-64-gb-xt2055-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/k12-2020-global-dual-sim-td-lte-32gb-xt2095-4/index.json b/site/public/v1/smartphones/k12-2020-global-dual-sim-td-lte-32gb-xt2095-4/index.json new file mode 100644 index 00000000000..41c39b4397e --- /dev/null +++ b/site/public/v1/smartphones/k12-2020-global-dual-sim-td-lte-32gb-xt2095-4/index.json @@ -0,0 +1,76 @@ +{ + "id": 1486, + "slug": "k12-2020-global-dual-sim-td-lte-32gb-xt2095-4", + "name": "K12 2020 Global Dual SIM TD-LTE 32GB XT2095-4", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 59, + "slug": "helio-g25", + "name": "Helio G25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g25" + }, + "release_date": "2021-02-01", + "msrp_usd": 119, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": 58.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.338605", + "updated_at": "2026-06-19T00:43:44.338605" +} diff --git a/site/public/v1/smartphones/k12-2020-global-dual-sim-td-lte-32gb-xt2095-4/score/index.json b/site/public/v1/smartphones/k12-2020-global-dual-sim-td-lte-32gb-xt2095-4/score/index.json new file mode 100644 index 00000000000..5e7255a2273 --- /dev/null +++ b/site/public/v1/smartphones/k12-2020-global-dual-sim-td-lte-32gb-xt2095-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": 58.3 +} diff --git a/site/public/v1/smartphones/k12-note-2020-global-dual-sim-td-lte-128gb-xt2083-4/index.json b/site/public/v1/smartphones/k12-note-2020-global-dual-sim-td-lte-128gb-xt2083-4/index.json new file mode 100644 index 00000000000..a4124fbe315 --- /dev/null +++ b/site/public/v1/smartphones/k12-note-2020-global-dual-sim-td-lte-128gb-xt2083-4/index.json @@ -0,0 +1,76 @@ +{ + "id": 1473, + "slug": "k12-note-2020-global-dual-sim-td-lte-128gb-xt2083-4", + "name": "K12 Note 2020 Global Dual SIM TD-LTE 128GB XT2083-4", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2020-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.336605", + "updated_at": "2026-06-19T00:43:44.336605" +} diff --git a/site/public/v1/smartphones/k12-note-2020-global-dual-sim-td-lte-128gb-xt2083-4/score/index.json b/site/public/v1/smartphones/k12-note-2020-global-dual-sim-td-lte-128gb-xt2083-4/score/index.json new file mode 100644 index 00000000000..99aee406377 --- /dev/null +++ b/site/public/v1/smartphones/k12-note-2020-global-dual-sim-td-lte-128gb-xt2083-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/k12-pro-2020-dual-sim-td-lte-cn-64gb-xt2091-7/index.json b/site/public/v1/smartphones/k12-pro-2020-dual-sim-td-lte-cn-64gb-xt2091-7/index.json new file mode 100644 index 00000000000..e03636a3e74 --- /dev/null +++ b/site/public/v1/smartphones/k12-pro-2020-dual-sim-td-lte-cn-64gb-xt2091-7/index.json @@ -0,0 +1,76 @@ +{ + "id": 1474, + "slug": "k12-pro-2020-dual-sim-td-lte-cn-64gb-xt2091-7", + "name": "K12 Pro 2020 Dual SIM TD-LTE CN 64GB XT2091-7", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2020-12-12", + "msrp_usd": 899, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.8, + "resolution": "720x1640", + "type": "Color IPS TFT LCD display", + "ppi": 263 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 6000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 221.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 0.0, + "camera": 21.5, + "battery": 46.0, + "display": 35.0, + "value": 39.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.336605", + "updated_at": "2026-06-19T00:43:44.336605" +} diff --git a/site/public/v1/smartphones/k12-pro-2020-dual-sim-td-lte-cn-64gb-xt2091-7/score/index.json b/site/public/v1/smartphones/k12-pro-2020-dual-sim-td-lte-cn-64gb-xt2091-7/score/index.json new file mode 100644 index 00000000000..dc5af63abf2 --- /dev/null +++ b/site/public/v1/smartphones/k12-pro-2020-dual-sim-td-lte-cn-64gb-xt2091-7/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 0.0, + "camera": 21.5, + "battery": 46.0, + "display": 35.0, + "value": 39.8 +} diff --git a/site/public/v1/smartphones/k12-pro-2020-global-dual-sim-td-lte-64gb-xt2091-8/index.json b/site/public/v1/smartphones/k12-pro-2020-global-dual-sim-td-lte-64gb-xt2091-8/index.json new file mode 100644 index 00000000000..805d926327a --- /dev/null +++ b/site/public/v1/smartphones/k12-pro-2020-global-dual-sim-td-lte-64gb-xt2091-8/index.json @@ -0,0 +1,76 @@ +{ + "id": 1475, + "slug": "k12-pro-2020-global-dual-sim-td-lte-64gb-xt2091-8", + "name": "K12 Pro 2020 Global Dual SIM TD-LTE 64GB XT2091-8", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2020-12-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.8, + "resolution": "720x1640", + "type": "Color IPS TFT LCD display", + "ppi": 263 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 6000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 221.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 0.0, + "camera": 21.5, + "battery": 46.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.336605", + "updated_at": "2026-06-19T00:43:44.336605" +} diff --git a/site/public/v1/smartphones/k12-pro-2020-global-dual-sim-td-lte-64gb-xt2091-8/score/index.json b/site/public/v1/smartphones/k12-pro-2020-global-dual-sim-td-lte-64gb-xt2091-8/score/index.json new file mode 100644 index 00000000000..1106edd8c9f --- /dev/null +++ b/site/public/v1/smartphones/k12-pro-2020-global-dual-sim-td-lte-64gb-xt2091-8/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 0.0, + "camera": 21.5, + "battery": 46.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/k13-note-2021-global-dual-sim-td-lte-128gb-xt2127-3/index.json b/site/public/v1/smartphones/k13-note-2021-global-dual-sim-td-lte-128gb-xt2127-3/index.json new file mode 100644 index 00000000000..3892f740eda --- /dev/null +++ b/site/public/v1/smartphones/k13-note-2021-global-dual-sim-td-lte-128gb-xt2127-3/index.json @@ -0,0 +1,76 @@ +{ + "id": 1488, + "slug": "k13-note-2021-global-dual-sim-td-lte-128gb-xt2127-3", + "name": "K13 Note 2021 Global Dual SIM TD-LTE 128GB XT2127-3", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2021-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.338605", + "updated_at": "2026-06-19T00:43:44.338605" +} diff --git a/site/public/v1/smartphones/k13-note-2021-global-dual-sim-td-lte-128gb-xt2127-3/score/index.json b/site/public/v1/smartphones/k13-note-2021-global-dual-sim-td-lte-128gb-xt2127-3/score/index.json new file mode 100644 index 00000000000..99aee406377 --- /dev/null +++ b/site/public/v1/smartphones/k13-note-2021-global-dual-sim-td-lte-128gb-xt2127-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/k13-pro-2021-global-dual-sim-td-lte-128gb-xt2129-3/index.json b/site/public/v1/smartphones/k13-pro-2021-global-dual-sim-td-lte-128gb-xt2129-3/index.json new file mode 100644 index 00000000000..a9bb91fb985 --- /dev/null +++ b/site/public/v1/smartphones/k13-pro-2021-global-dual-sim-td-lte-128gb-xt2129-3/index.json @@ -0,0 +1,77 @@ +{ + "id": 1490, + "slug": "k13-pro-2021-global-dual-sim-td-lte-128gb-xt2129-3", + "name": "K13 Pro 2021 Global Dual SIM TD-LTE 128GB XT2129-3", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-08-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 1.5, + "camera": 21.5, + "battery": 30.0, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.338605", + "updated_at": "2026-06-19T00:43:44.338605" +} diff --git a/site/public/v1/smartphones/k13-pro-2021-global-dual-sim-td-lte-128gb-xt2129-3/score/index.json b/site/public/v1/smartphones/k13-pro-2021-global-dual-sim-td-lte-128gb-xt2129-3/score/index.json new file mode 100644 index 00000000000..cbd870ba34b --- /dev/null +++ b/site/public/v1/smartphones/k13-pro-2021-global-dual-sim-td-lte-128gb-xt2129-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 1.5, + "camera": 21.5, + "battery": 30.0, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/k14-2021-global-dual-sim-td-lte-32gb-xt2155-4/index.json b/site/public/v1/smartphones/k14-2021-global-dual-sim-td-lte-32gb-xt2155-4/index.json new file mode 100644 index 00000000000..3ef2fce55d4 --- /dev/null +++ b/site/public/v1/smartphones/k14-2021-global-dual-sim-td-lte-32gb-xt2155-4/index.json @@ -0,0 +1,76 @@ +{ + "id": 1492, + "slug": "k14-2021-global-dual-sim-td-lte-32gb-xt2155-4", + "name": "K14 2021 Global Dual SIM TD-LTE 32GB XT2155-4", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 215, + "slug": "unisoc-t606", + "name": "Unisoc T606", + "manufacturer": { + "slug": "unisoc", + "name": "UNISOC", + "url": "/v1/brands/unisoc" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G57 MP1", + "url": "/v1/socs/unisoc-t606" + }, + "release_date": "2021-10-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.338605", + "updated_at": "2026-06-19T00:43:44.338605" +} diff --git a/site/public/v1/smartphones/k14-2021-global-dual-sim-td-lte-32gb-xt2155-4/score/index.json b/site/public/v1/smartphones/k14-2021-global-dual-sim-td-lte-32gb-xt2155-4/score/index.json new file mode 100644 index 00000000000..a59635bee66 --- /dev/null +++ b/site/public/v1/smartphones/k14-2021-global-dual-sim-td-lte-32gb-xt2155-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/k14-plus-2021-global-dual-sim-td-lte-64gb-xt2159-5-xt2159-8/index.json b/site/public/v1/smartphones/k14-plus-2021-global-dual-sim-td-lte-64gb-xt2159-5-xt2159-8/index.json new file mode 100644 index 00000000000..a62ec4ec3a6 --- /dev/null +++ b/site/public/v1/smartphones/k14-plus-2021-global-dual-sim-td-lte-64gb-xt2159-5-xt2159-8/index.json @@ -0,0 +1,77 @@ +{ + "id": 1494, + "slug": "k14-plus-2021-global-dual-sim-td-lte-64gb-xt2159-5-xt2159-8", + "name": "K14 Plus 2021 Global Dual SIM TD-LTE 64GB XT2159-5 / XT2159-8", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 214, + "slug": "tiger-t700", + "name": "Unisoc Tiger T700", + "manufacturer": { + "slug": "unisoc", + "name": "UNISOC", + "url": "/v1/brands/unisoc" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/tiger-t700" + }, + "release_date": "2021-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.339605", + "updated_at": "2026-06-19T00:43:44.339605" +} diff --git a/site/public/v1/smartphones/k14-plus-2021-global-dual-sim-td-lte-64gb-xt2159-5-xt2159-8/score/index.json b/site/public/v1/smartphones/k14-plus-2021-global-dual-sim-td-lte-64gb-xt2159-5-xt2159-8/score/index.json new file mode 100644 index 00000000000..602742251c0 --- /dev/null +++ b/site/public/v1/smartphones/k14-plus-2021-global-dual-sim-td-lte-64gb-xt2159-5-xt2159-8/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/k3-dual-sim-td-lte-apac-128gb-cph1955/index.json b/site/public/v1/smartphones/k3-dual-sim-td-lte-apac-128gb-cph1955/index.json new file mode 100644 index 00000000000..ead0893491e --- /dev/null +++ b/site/public/v1/smartphones/k3-dual-sim-td-lte-apac-128gb-cph1955/index.json @@ -0,0 +1,76 @@ +{ + "id": 2880, + "slug": "k3-dual-sim-td-lte-apac-128gb-cph1955", + "name": "K3 Dual SIM TD-LTE APAC 128GB CPH1955", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-07-23", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3765, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 23.0, + "camera": 6.3, + "battery": 12.4, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.518921", + "updated_at": "2026-06-19T00:43:44.518921" +} diff --git a/site/public/v1/smartphones/k3-dual-sim-td-lte-apac-128gb-cph1955/score/index.json b/site/public/v1/smartphones/k3-dual-sim-td-lte-apac-128gb-cph1955/score/index.json new file mode 100644 index 00000000000..ac945d371d9 --- /dev/null +++ b/site/public/v1/smartphones/k3-dual-sim-td-lte-apac-128gb-cph1955/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 23.0, + "camera": 6.3, + "battery": 12.4, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/k3-dual-sim-td-lte-apac-64gb-cph1955/index.json b/site/public/v1/smartphones/k3-dual-sim-td-lte-apac-64gb-cph1955/index.json new file mode 100644 index 00000000000..0841b8a1ea2 --- /dev/null +++ b/site/public/v1/smartphones/k3-dual-sim-td-lte-apac-64gb-cph1955/index.json @@ -0,0 +1,76 @@ +{ + "id": 2881, + "slug": "k3-dual-sim-td-lte-apac-64gb-cph1955", + "name": "K3 Dual SIM TD-LTE APAC 64GB CPH1955", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-07-23", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3765, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 21.5, + "camera": 6.3, + "battery": 12.4, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.518921", + "updated_at": "2026-06-19T00:43:44.518921" +} diff --git a/site/public/v1/smartphones/k3-dual-sim-td-lte-apac-64gb-cph1955/score/index.json b/site/public/v1/smartphones/k3-dual-sim-td-lte-apac-64gb-cph1955/score/index.json new file mode 100644 index 00000000000..dd940f57bf9 --- /dev/null +++ b/site/public/v1/smartphones/k3-dual-sim-td-lte-apac-64gb-cph1955/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 21.5, + "camera": 6.3, + "battery": 12.4, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/k3-premium-edition-dual-sim-td-lte-cn-128gb-pcgm00/index.json b/site/public/v1/smartphones/k3-premium-edition-dual-sim-td-lte-cn-128gb-pcgm00/index.json new file mode 100644 index 00000000000..766bd39c5bc --- /dev/null +++ b/site/public/v1/smartphones/k3-premium-edition-dual-sim-td-lte-cn-128gb-pcgm00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2882, + "slug": "k3-premium-edition-dual-sim-td-lte-cn-128gb-pcgm00", + "name": "K3 Premium Edition Dual SIM TD-LTE CN 128GB PCGM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-05-23", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3765, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 23.0, + "camera": 6.3, + "battery": 12.4, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.518921", + "updated_at": "2026-06-19T00:43:44.518921" +} diff --git a/site/public/v1/smartphones/k3-premium-edition-dual-sim-td-lte-cn-128gb-pcgm00/score/index.json b/site/public/v1/smartphones/k3-premium-edition-dual-sim-td-lte-cn-128gb-pcgm00/score/index.json new file mode 100644 index 00000000000..ac945d371d9 --- /dev/null +++ b/site/public/v1/smartphones/k3-premium-edition-dual-sim-td-lte-cn-128gb-pcgm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 23.0, + "camera": 6.3, + "battery": 12.4, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/k3-premium-edition-dual-sim-td-lte-cn-128gb-pcgt00/index.json b/site/public/v1/smartphones/k3-premium-edition-dual-sim-td-lte-cn-128gb-pcgt00/index.json new file mode 100644 index 00000000000..8501b6de73a --- /dev/null +++ b/site/public/v1/smartphones/k3-premium-edition-dual-sim-td-lte-cn-128gb-pcgt00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2883, + "slug": "k3-premium-edition-dual-sim-td-lte-cn-128gb-pcgt00", + "name": "K3 Premium Edition Dual SIM TD-LTE CN 128GB PCGT00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-05-23", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3765, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 23.0, + "camera": 6.3, + "battery": 12.4, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.518921", + "updated_at": "2026-06-19T00:43:44.518921" +} diff --git a/site/public/v1/smartphones/k3-premium-edition-dual-sim-td-lte-cn-128gb-pcgt00/score/index.json b/site/public/v1/smartphones/k3-premium-edition-dual-sim-td-lte-cn-128gb-pcgt00/score/index.json new file mode 100644 index 00000000000..ac945d371d9 --- /dev/null +++ b/site/public/v1/smartphones/k3-premium-edition-dual-sim-td-lte-cn-128gb-pcgt00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 23.0, + "camera": 6.3, + "battery": 12.4, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/k3-premium-edition-dual-sim-td-lte-cn-256gb-pcgm00/index.json b/site/public/v1/smartphones/k3-premium-edition-dual-sim-td-lte-cn-256gb-pcgm00/index.json new file mode 100644 index 00000000000..a765938acc0 --- /dev/null +++ b/site/public/v1/smartphones/k3-premium-edition-dual-sim-td-lte-cn-256gb-pcgm00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2884, + "slug": "k3-premium-edition-dual-sim-td-lte-cn-256gb-pcgm00", + "name": "K3 Premium Edition Dual SIM TD-LTE CN 256GB PCGM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-05-23", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3765, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 23.0, + "camera": 6.3, + "battery": 12.4, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.518921", + "updated_at": "2026-06-19T00:43:44.518921" +} diff --git a/site/public/v1/smartphones/k3-premium-edition-dual-sim-td-lte-cn-256gb-pcgm00/score/index.json b/site/public/v1/smartphones/k3-premium-edition-dual-sim-td-lte-cn-256gb-pcgm00/score/index.json new file mode 100644 index 00000000000..ac945d371d9 --- /dev/null +++ b/site/public/v1/smartphones/k3-premium-edition-dual-sim-td-lte-cn-256gb-pcgm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 23.0, + "camera": 6.3, + "battery": 12.4, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/k3-standard-edition-dual-sim-td-lte-cn-64gb-pcgm00/index.json b/site/public/v1/smartphones/k3-standard-edition-dual-sim-td-lte-cn-64gb-pcgm00/index.json new file mode 100644 index 00000000000..fb439639b09 --- /dev/null +++ b/site/public/v1/smartphones/k3-standard-edition-dual-sim-td-lte-cn-64gb-pcgm00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2885, + "slug": "k3-standard-edition-dual-sim-td-lte-cn-64gb-pcgm00", + "name": "K3 Standard Edition Dual SIM TD-LTE CN 64GB PCGM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-05-23", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3765, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 21.5, + "camera": 6.3, + "battery": 12.4, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.519921", + "updated_at": "2026-06-19T00:43:44.519921" +} diff --git a/site/public/v1/smartphones/k3-standard-edition-dual-sim-td-lte-cn-64gb-pcgm00/score/index.json b/site/public/v1/smartphones/k3-standard-edition-dual-sim-td-lte-cn-64gb-pcgm00/score/index.json new file mode 100644 index 00000000000..dd940f57bf9 --- /dev/null +++ b/site/public/v1/smartphones/k3-standard-edition-dual-sim-td-lte-cn-64gb-pcgm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 21.5, + "camera": 6.3, + "battery": 12.4, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/k5-2019-premium-edition-dual-sim-td-lte-cn-128gb-pcnm00/index.json b/site/public/v1/smartphones/k5-2019-premium-edition-dual-sim-td-lte-cn-128gb-pcnm00/index.json new file mode 100644 index 00000000000..05505d35551 --- /dev/null +++ b/site/public/v1/smartphones/k5-2019-premium-edition-dual-sim-td-lte-cn-128gb-pcnm00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2886, + "slug": "k5-2019-premium-edition-dual-sim-td-lte-cn-128gb-pcnm00", + "name": "K5 2019 Premium Edition Dual SIM TD-LTE CN 128GB PCNM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-10-17", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 3.0, + "camera": 21.7, + "battery": 17.8, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.519921", + "updated_at": "2026-06-19T00:43:44.519921" +} diff --git a/site/public/v1/smartphones/k5-2019-premium-edition-dual-sim-td-lte-cn-128gb-pcnm00/score/index.json b/site/public/v1/smartphones/k5-2019-premium-edition-dual-sim-td-lte-cn-128gb-pcnm00/score/index.json new file mode 100644 index 00000000000..1e9acbbfa41 --- /dev/null +++ b/site/public/v1/smartphones/k5-2019-premium-edition-dual-sim-td-lte-cn-128gb-pcnm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 3.0, + "camera": 21.7, + "battery": 17.8, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/k5-2019-premium-edition-dual-sim-td-lte-cn-256gb-pcnm00/index.json b/site/public/v1/smartphones/k5-2019-premium-edition-dual-sim-td-lte-cn-256gb-pcnm00/index.json new file mode 100644 index 00000000000..b82e9817347 --- /dev/null +++ b/site/public/v1/smartphones/k5-2019-premium-edition-dual-sim-td-lte-cn-256gb-pcnm00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2887, + "slug": "k5-2019-premium-edition-dual-sim-td-lte-cn-256gb-pcnm00", + "name": "K5 2019 Premium Edition Dual SIM TD-LTE CN 256GB PCNM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 3.0, + "camera": 21.7, + "battery": 17.8, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.519921", + "updated_at": "2026-06-19T00:43:44.519921" +} diff --git a/site/public/v1/smartphones/k5-2019-premium-edition-dual-sim-td-lte-cn-256gb-pcnm00/score/index.json b/site/public/v1/smartphones/k5-2019-premium-edition-dual-sim-td-lte-cn-256gb-pcnm00/score/index.json new file mode 100644 index 00000000000..1e9acbbfa41 --- /dev/null +++ b/site/public/v1/smartphones/k5-2019-premium-edition-dual-sim-td-lte-cn-256gb-pcnm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 3.0, + "camera": 21.7, + "battery": 17.8, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/k5-2019-standard-edition-dual-sim-td-lte-cn-128gb-pcnm00/index.json b/site/public/v1/smartphones/k5-2019-standard-edition-dual-sim-td-lte-cn-128gb-pcnm00/index.json new file mode 100644 index 00000000000..c653dc0ee8d --- /dev/null +++ b/site/public/v1/smartphones/k5-2019-standard-edition-dual-sim-td-lte-cn-128gb-pcnm00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2889, + "slug": "k5-2019-standard-edition-dual-sim-td-lte-cn-128gb-pcnm00", + "name": "K5 2019 Standard Edition Dual SIM TD-LTE CN 128GB PCNM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-10-17", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 1.5, + "camera": 21.7, + "battery": 17.8, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.519921", + "updated_at": "2026-06-19T00:43:44.519921" +} diff --git a/site/public/v1/smartphones/k5-2019-standard-edition-dual-sim-td-lte-cn-128gb-pcnm00/score/index.json b/site/public/v1/smartphones/k5-2019-standard-edition-dual-sim-td-lte-cn-128gb-pcnm00/score/index.json new file mode 100644 index 00000000000..ba30e2c54e9 --- /dev/null +++ b/site/public/v1/smartphones/k5-2019-standard-edition-dual-sim-td-lte-cn-128gb-pcnm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 1.5, + "camera": 21.7, + "battery": 17.8, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/k5-note-2018-dual-sim-td-lte-cn-32gb/index.json b/site/public/v1/smartphones/k5-note-2018-dual-sim-td-lte-cn-32gb/index.json new file mode 100644 index 00000000000..370a688aca8 --- /dev/null +++ b/site/public/v1/smartphones/k5-note-2018-dual-sim-td-lte-cn-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1426, + "slug": "k5-note-2018-dual-sim-td-lte-cn-32gb", + "name": "K5 Note 2018 Dual SIM TD-LTE CN 32GB", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-06-12", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.0, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3760, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": null, + "camera": 6.3, + "battery": 11.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.331605", + "updated_at": "2026-06-19T00:43:44.331605" +} diff --git a/site/public/v1/smartphones/k5-note-2018-dual-sim-td-lte-cn-32gb/score/index.json b/site/public/v1/smartphones/k5-note-2018-dual-sim-td-lte-cn-32gb/score/index.json new file mode 100644 index 00000000000..89bebd33d3b --- /dev/null +++ b/site/public/v1/smartphones/k5-note-2018-dual-sim-td-lte-cn-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": null, + "camera": 6.3, + "battery": 11.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/k5-note-2018-dual-sim-td-lte-cn-64gb/index.json b/site/public/v1/smartphones/k5-note-2018-dual-sim-td-lte-cn-64gb/index.json new file mode 100644 index 00000000000..8a522f8511b --- /dev/null +++ b/site/public/v1/smartphones/k5-note-2018-dual-sim-td-lte-cn-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1427, + "slug": "k5-note-2018-dual-sim-td-lte-cn-64gb", + "name": "K5 Note 2018 Dual SIM TD-LTE CN 64GB", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-06-12", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3760, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": null, + "camera": 6.3, + "battery": 11.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.331605", + "updated_at": "2026-06-19T00:43:44.331605" +} diff --git a/site/public/v1/smartphones/k5-note-2018-dual-sim-td-lte-cn-64gb/score/index.json b/site/public/v1/smartphones/k5-note-2018-dual-sim-td-lte-cn-64gb/score/index.json new file mode 100644 index 00000000000..89bebd33d3b --- /dev/null +++ b/site/public/v1/smartphones/k5-note-2018-dual-sim-td-lte-cn-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": null, + "camera": 6.3, + "battery": 11.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/k5-play-dual-sim-td-lte-cn-16gb-l38021/index.json b/site/public/v1/smartphones/k5-play-dual-sim-td-lte-cn-16gb-l38021/index.json new file mode 100644 index 00000000000..7ee040a4a7f --- /dev/null +++ b/site/public/v1/smartphones/k5-play-dual-sim-td-lte-cn-16gb-l38021/index.json @@ -0,0 +1,76 @@ +{ + "id": 1428, + "slug": "k5-play-dual-sim-td-lte-cn-16gb-l38021", + "name": "K5 Play Dual SIM TD-LTE CN 16GB L38021", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-04-17", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.72, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 281 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 155.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.331605", + "updated_at": "2026-06-19T00:43:44.331605" +} diff --git a/site/public/v1/smartphones/k5-play-dual-sim-td-lte-cn-16gb-l38021/score/index.json b/site/public/v1/smartphones/k5-play-dual-sim-td-lte-cn-16gb-l38021/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/k5-play-dual-sim-td-lte-cn-16gb-l38021/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/k5-play-dual-sim-td-lte-cn-32gb-l38021/index.json b/site/public/v1/smartphones/k5-play-dual-sim-td-lte-cn-32gb-l38021/index.json new file mode 100644 index 00000000000..af001262bcf --- /dev/null +++ b/site/public/v1/smartphones/k5-play-dual-sim-td-lte-cn-32gb-l38021/index.json @@ -0,0 +1,76 @@ +{ + "id": 1429, + "slug": "k5-play-dual-sim-td-lte-cn-32gb-l38021", + "name": "K5 Play Dual SIM TD-LTE CN 32GB L38021", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-04-17", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.72, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 281 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 155.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.331605", + "updated_at": "2026-06-19T00:43:44.331605" +} diff --git a/site/public/v1/smartphones/k5-play-dual-sim-td-lte-cn-32gb-l38021/score/index.json b/site/public/v1/smartphones/k5-play-dual-sim-td-lte-cn-32gb-l38021/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/k5-play-dual-sim-td-lte-cn-32gb-l38021/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/k5-pro-premium-edition-td-lte-dual-sim-128gb-paed0001cn/index.json b/site/public/v1/smartphones/k5-pro-premium-edition-td-lte-dual-sim-128gb-paed0001cn/index.json new file mode 100644 index 00000000000..b5bd7b50ff0 --- /dev/null +++ b/site/public/v1/smartphones/k5-pro-premium-edition-td-lte-dual-sim-128gb-paed0001cn/index.json @@ -0,0 +1,76 @@ +{ + "id": 1430, + "slug": "k5-pro-premium-edition-td-lte-dual-sim-128gb-paed0001cn", + "name": "K5 Pro Premium Edition TD-LTE Dual SIM 128GB PAED0001CN", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 4050, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 1.5, + "camera": 6.3, + "battery": 15.8, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.331605", + "updated_at": "2026-06-19T00:43:44.331605" +} diff --git a/site/public/v1/smartphones/k5-pro-premium-edition-td-lte-dual-sim-128gb-paed0001cn/score/index.json b/site/public/v1/smartphones/k5-pro-premium-edition-td-lte-dual-sim-128gb-paed0001cn/score/index.json new file mode 100644 index 00000000000..d9a4b0b76db --- /dev/null +++ b/site/public/v1/smartphones/k5-pro-premium-edition-td-lte-dual-sim-128gb-paed0001cn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 1.5, + "camera": 6.3, + "battery": 15.8, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/k5-pro-premium-edition-td-lte-dual-sim-64gb-paed0004cn/index.json b/site/public/v1/smartphones/k5-pro-premium-edition-td-lte-dual-sim-64gb-paed0004cn/index.json new file mode 100644 index 00000000000..5b0111bf03e --- /dev/null +++ b/site/public/v1/smartphones/k5-pro-premium-edition-td-lte-dual-sim-64gb-paed0004cn/index.json @@ -0,0 +1,76 @@ +{ + "id": 1431, + "slug": "k5-pro-premium-edition-td-lte-dual-sim-64gb-paed0004cn", + "name": "K5 Pro Premium Edition TD-LTE Dual SIM 64GB PAED0004CN", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 4050, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 1.5, + "camera": 6.3, + "battery": 15.8, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.332605", + "updated_at": "2026-06-19T00:43:44.332605" +} diff --git a/site/public/v1/smartphones/k5-pro-premium-edition-td-lte-dual-sim-64gb-paed0004cn/score/index.json b/site/public/v1/smartphones/k5-pro-premium-edition-td-lte-dual-sim-64gb-paed0004cn/score/index.json new file mode 100644 index 00000000000..d9a4b0b76db --- /dev/null +++ b/site/public/v1/smartphones/k5-pro-premium-edition-td-lte-dual-sim-64gb-paed0004cn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 1.5, + "camera": 6.3, + "battery": 15.8, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/k5-pro-standard-edition-td-lte-dual-sim-64gb-paed0005cn/index.json b/site/public/v1/smartphones/k5-pro-standard-edition-td-lte-dual-sim-64gb-paed0005cn/index.json new file mode 100644 index 00000000000..b5853c0750a --- /dev/null +++ b/site/public/v1/smartphones/k5-pro-standard-edition-td-lte-dual-sim-64gb-paed0005cn/index.json @@ -0,0 +1,76 @@ +{ + "id": 1432, + "slug": "k5-pro-standard-edition-td-lte-dual-sim-64gb-paed0005cn", + "name": "K5 Pro Standard Edition TD-LTE Dual SIM 64GB PAED0005CN", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 4050, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 0.0, + "camera": 6.3, + "battery": 15.8, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.332605", + "updated_at": "2026-06-19T00:43:44.332605" +} diff --git a/site/public/v1/smartphones/k5-pro-standard-edition-td-lte-dual-sim-64gb-paed0005cn/score/index.json b/site/public/v1/smartphones/k5-pro-standard-edition-td-lte-dual-sim-64gb-paed0005cn/score/index.json new file mode 100644 index 00000000000..a170e97f1d0 --- /dev/null +++ b/site/public/v1/smartphones/k5-pro-standard-edition-td-lte-dual-sim-64gb-paed0005cn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 0.0, + "camera": 6.3, + "battery": 15.8, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/k5s-td-lte-dual-sim-padl0006cn/index.json b/site/public/v1/smartphones/k5s-td-lte-dual-sim-padl0006cn/index.json new file mode 100644 index 00000000000..2a1725d83da --- /dev/null +++ b/site/public/v1/smartphones/k5s-td-lte-dual-sim-padl0006cn/index.json @@ -0,0 +1,76 @@ +{ + "id": 1433, + "slug": "k5s-td-lte-dual-sim-padl0006cn", + "name": "K5s TD-LTE Dual SIM PADL0006CN", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 155.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.332605", + "updated_at": "2026-06-19T00:43:44.332605" +} diff --git a/site/public/v1/smartphones/k5s-td-lte-dual-sim-padl0006cn/score/index.json b/site/public/v1/smartphones/k5s-td-lte-dual-sim-padl0006cn/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/k5s-td-lte-dual-sim-padl0006cn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/k6-enjoy-dual-sim-td-lte-cn-128gb-l38082/index.json b/site/public/v1/smartphones/k6-enjoy-dual-sim-td-lte-cn-128gb-l38082/index.json new file mode 100644 index 00000000000..e10bccab716 --- /dev/null +++ b/site/public/v1/smartphones/k6-enjoy-dual-sim-td-lte-cn-128gb-l38082/index.json @@ -0,0 +1,76 @@ +{ + "id": 1455, + "slug": "k6-enjoy-dual-sim-td-lte-cn-128gb-l38082", + "name": "K6 Enjoy Dual SIM TD-LTE CN 128GB L38082", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 161.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": null, + "camera": 5.0, + "battery": 4.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.334605", + "updated_at": "2026-06-19T00:43:44.334605" +} diff --git a/site/public/v1/smartphones/k6-enjoy-dual-sim-td-lte-cn-128gb-l38082/score/index.json b/site/public/v1/smartphones/k6-enjoy-dual-sim-td-lte-cn-128gb-l38082/score/index.json new file mode 100644 index 00000000000..6b116545a08 --- /dev/null +++ b/site/public/v1/smartphones/k6-enjoy-dual-sim-td-lte-cn-128gb-l38082/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": null, + "camera": 5.0, + "battery": 4.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/k6-enjoy-dual-sim-td-lte-cn-64gb-l38082/index.json b/site/public/v1/smartphones/k6-enjoy-dual-sim-td-lte-cn-64gb-l38082/index.json new file mode 100644 index 00000000000..edf61590d1a --- /dev/null +++ b/site/public/v1/smartphones/k6-enjoy-dual-sim-td-lte-cn-64gb-l38082/index.json @@ -0,0 +1,76 @@ +{ + "id": 1456, + "slug": "k6-enjoy-dual-sim-td-lte-cn-64gb-l38082", + "name": "K6 Enjoy Dual SIM TD-LTE CN 64GB L38082", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 161.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": null, + "camera": 5.0, + "battery": 4.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.334605", + "updated_at": "2026-06-19T00:43:44.334605" +} diff --git a/site/public/v1/smartphones/k6-enjoy-dual-sim-td-lte-cn-64gb-l38082/score/index.json b/site/public/v1/smartphones/k6-enjoy-dual-sim-td-lte-cn-64gb-l38082/score/index.json new file mode 100644 index 00000000000..6b116545a08 --- /dev/null +++ b/site/public/v1/smartphones/k6-enjoy-dual-sim-td-lte-cn-64gb-l38082/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": null, + "camera": 5.0, + "battery": 4.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/k7-2020-5g-dual-sim-td-lte-cn-256gb-pcrt01/index.json b/site/public/v1/smartphones/k7-2020-5g-dual-sim-td-lte-cn-256gb-pcrt01/index.json new file mode 100644 index 00000000000..dbeb9bbd838 --- /dev/null +++ b/site/public/v1/smartphones/k7-2020-5g-dual-sim-td-lte-cn-256gb-pcrt01/index.json @@ -0,0 +1,77 @@ +{ + "id": 3117, + "slug": "k7-2020-5g-dual-sim-td-lte-cn-256gb-pcrt01", + "name": "K7 2020 5G Dual SIM TD-LTE CN 256GB PCRT01", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-08-11", + "msrp_usd": 2299, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4025, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 3.0, + "camera": 16.5, + "battery": 18.3, + "display": 28.6, + "value": 8.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.552127", + "updated_at": "2026-06-19T00:43:44.552127" +} diff --git a/site/public/v1/smartphones/k7-2020-5g-dual-sim-td-lte-cn-256gb-pcrt01/score/index.json b/site/public/v1/smartphones/k7-2020-5g-dual-sim-td-lte-cn-256gb-pcrt01/score/index.json new file mode 100644 index 00000000000..d7cc4e835f7 --- /dev/null +++ b/site/public/v1/smartphones/k7-2020-5g-dual-sim-td-lte-cn-256gb-pcrt01/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 3.0, + "camera": 16.5, + "battery": 18.3, + "display": 28.6, + "value": 8.3 +} diff --git a/site/public/v1/smartphones/k7-2020-dual-sim-td-lte-cn-128gb-pcrt01/index.json b/site/public/v1/smartphones/k7-2020-dual-sim-td-lte-cn-128gb-pcrt01/index.json new file mode 100644 index 00000000000..87d038c6fb2 --- /dev/null +++ b/site/public/v1/smartphones/k7-2020-dual-sim-td-lte-cn-128gb-pcrt01/index.json @@ -0,0 +1,77 @@ +{ + "id": 3118, + "slug": "k7-2020-dual-sim-td-lte-cn-128gb-pcrt01", + "name": "K7 2020 Dual SIM TD-LTE CN 128GB PCRT01", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-08-11", + "msrp_usd": 1999, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4025, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 3.0, + "camera": 16.5, + "battery": 18.3, + "display": 28.6, + "value": 8.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.552127", + "updated_at": "2026-06-19T00:43:44.552127" +} diff --git a/site/public/v1/smartphones/k7-2020-dual-sim-td-lte-cn-128gb-pcrt01/score/index.json b/site/public/v1/smartphones/k7-2020-dual-sim-td-lte-cn-128gb-pcrt01/score/index.json new file mode 100644 index 00000000000..d7cc4e835f7 --- /dev/null +++ b/site/public/v1/smartphones/k7-2020-dual-sim-td-lte-cn-128gb-pcrt01/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 3.0, + "camera": 16.5, + "battery": 18.3, + "display": 28.6, + "value": 8.3 +} diff --git a/site/public/v1/smartphones/k7x-2020-5g-dual-sim-td-lte-cn-128gb-perm00/index.json b/site/public/v1/smartphones/k7x-2020-5g-dual-sim-td-lte-cn-128gb-perm00/index.json new file mode 100644 index 00000000000..78304c09da6 --- /dev/null +++ b/site/public/v1/smartphones/k7x-2020-5g-dual-sim-td-lte-cn-128gb-perm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3121, + "slug": "k7x-2020-5g-dual-sim-td-lte-cn-128gb-perm00", + "name": "K7x 2020 5G Dual SIM TD-LTE CN 128GB PERM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2020-11-11", + "msrp_usd": 1499, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 1.5, + "camera": 16.5, + "battery": 32.9, + "display": 40.5, + "value": 15.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.553116", + "updated_at": "2026-06-19T00:43:44.553116" +} diff --git a/site/public/v1/smartphones/k7x-2020-5g-dual-sim-td-lte-cn-128gb-perm00/score/index.json b/site/public/v1/smartphones/k7x-2020-5g-dual-sim-td-lte-cn-128gb-perm00/score/index.json new file mode 100644 index 00000000000..6b152d3029e --- /dev/null +++ b/site/public/v1/smartphones/k7x-2020-5g-dual-sim-td-lte-cn-128gb-perm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 1.5, + "camera": 16.5, + "battery": 32.9, + "display": 40.5, + "value": 15.3 +} diff --git a/site/public/v1/smartphones/k9-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-peym00/index.json b/site/public/v1/smartphones/k9-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-peym00/index.json new file mode 100644 index 00000000000..bcfdd1ecdbe --- /dev/null +++ b/site/public/v1/smartphones/k9-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-peym00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3334, + "slug": "k9-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-peym00", + "name": "K9 Pro 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB PEYM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-09-01", + "msrp_usd": 2499, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 60.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.5, + "performance": 6.9, + "camera": 21.5, + "battery": 36.1, + "display": 53.4, + "value": 14.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.582900", + "updated_at": "2026-06-19T00:43:44.582900" +} diff --git a/site/public/v1/smartphones/k9-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-peym00/score/index.json b/site/public/v1/smartphones/k9-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-peym00/score/index.json new file mode 100644 index 00000000000..715550b0bfe --- /dev/null +++ b/site/public/v1/smartphones/k9-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-peym00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.5, + "performance": 6.9, + "camera": 21.5, + "battery": 36.1, + "display": 53.4, + "value": 14.8 +} diff --git a/site/public/v1/smartphones/k9-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-peym00/index.json b/site/public/v1/smartphones/k9-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-peym00/index.json new file mode 100644 index 00000000000..dfd277b665e --- /dev/null +++ b/site/public/v1/smartphones/k9-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-peym00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3335, + "slug": "k9-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-peym00", + "name": "K9 Pro 5G 2021 Standard Edition Dual SIM TD-LTE CN 128GB PEYM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-09-01", + "msrp_usd": 2199, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 60.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.7, + "performance": 3.9, + "camera": 21.5, + "battery": 36.1, + "display": 53.4, + "value": 14.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.582900", + "updated_at": "2026-06-19T00:43:44.582900" +} diff --git a/site/public/v1/smartphones/k9-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-peym00/score/index.json b/site/public/v1/smartphones/k9-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-peym00/score/index.json new file mode 100644 index 00000000000..f97da6e9895 --- /dev/null +++ b/site/public/v1/smartphones/k9-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-peym00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.7, + "performance": 3.9, + "camera": 21.5, + "battery": 36.1, + "display": 53.4, + "value": 14.3 +} diff --git a/site/public/v1/smartphones/k9x-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-pgcm10/index.json b/site/public/v1/smartphones/k9x-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-pgcm10/index.json new file mode 100644 index 00000000000..23c82ad7933 --- /dev/null +++ b/site/public/v1/smartphones/k9x-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-pgcm10/index.json @@ -0,0 +1,77 @@ +{ + "id": 3339, + "slug": "k9x-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-pgcm10", + "name": "K9x 5G 2021 Premium Edition Dual SIM TD-LTE CN 128GB PGCM10", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 68, + "slug": "dimensity-810", + "name": "Dimensity 810", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-810" + }, + "release_date": "2021-12-28", + "msrp_usd": 1499, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.49, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 406 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.9, + "performance": 3.0, + "camera": 21.6, + "battery": 38.4, + "display": 40.6, + "value": 16.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.583893", + "updated_at": "2026-06-19T00:43:44.583893" +} diff --git a/site/public/v1/smartphones/k9x-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-pgcm10/score/index.json b/site/public/v1/smartphones/k9x-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-pgcm10/score/index.json new file mode 100644 index 00000000000..4aae1425d9f --- /dev/null +++ b/site/public/v1/smartphones/k9x-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-pgcm10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.9, + "performance": 3.0, + "camera": 21.6, + "battery": 38.4, + "display": 40.6, + "value": 16.8 +} diff --git a/site/public/v1/smartphones/k9x-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pgcm10/index.json b/site/public/v1/smartphones/k9x-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pgcm10/index.json new file mode 100644 index 00000000000..c7a26001fba --- /dev/null +++ b/site/public/v1/smartphones/k9x-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pgcm10/index.json @@ -0,0 +1,77 @@ +{ + "id": 3340, + "slug": "k9x-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pgcm10", + "name": "K9x 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB PGCM10", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 68, + "slug": "dimensity-810", + "name": "Dimensity 810", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-810" + }, + "release_date": "2021-12-28", + "msrp_usd": 1699, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.49, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 406 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.9, + "performance": 3.0, + "camera": 21.6, + "battery": 38.4, + "display": 40.6, + "value": 12.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.583893", + "updated_at": "2026-06-19T00:43:44.583893" +} diff --git a/site/public/v1/smartphones/k9x-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pgcm10/score/index.json b/site/public/v1/smartphones/k9x-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pgcm10/score/index.json new file mode 100644 index 00000000000..c511cc425d9 --- /dev/null +++ b/site/public/v1/smartphones/k9x-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pgcm10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.9, + "performance": 3.0, + "camera": 21.6, + "battery": 38.4, + "display": 40.6, + "value": 12.9 +} diff --git a/site/public/v1/smartphones/k9x-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-pgcm10/index.json b/site/public/v1/smartphones/k9x-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-pgcm10/index.json new file mode 100644 index 00000000000..45d787386af --- /dev/null +++ b/site/public/v1/smartphones/k9x-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-pgcm10/index.json @@ -0,0 +1,77 @@ +{ + "id": 3341, + "slug": "k9x-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-pgcm10", + "name": "K9x 5G 2021 Standard Edition Dual SIM TD-LTE CN 128GB PGCM10", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 68, + "slug": "dimensity-810", + "name": "Dimensity 810", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-810" + }, + "release_date": "2021-12-28", + "msrp_usd": 1399, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.49, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 406 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.5, + "performance": 1.5, + "camera": 21.6, + "battery": 38.4, + "display": 40.6, + "value": 20.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.583893", + "updated_at": "2026-06-19T00:43:44.583893" +} diff --git a/site/public/v1/smartphones/k9x-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-pgcm10/score/index.json b/site/public/v1/smartphones/k9x-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-pgcm10/score/index.json new file mode 100644 index 00000000000..e947c1a386b --- /dev/null +++ b/site/public/v1/smartphones/k9x-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-pgcm10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.5, + "performance": 1.5, + "camera": 21.6, + "battery": 38.4, + "display": 40.6, + "value": 20.5 +} diff --git a/site/public/v1/smartphones/l-03k-style-lte-jp/index.json b/site/public/v1/smartphones/l-03k-style-lte-jp/index.json new file mode 100644 index 00000000000..ce8d425a378 --- /dev/null +++ b/site/public/v1/smartphones/l-03k-style-lte-jp/index.json @@ -0,0 +1,76 @@ +{ + "id": 1530, + "slug": "l-03k-style-lte-jp", + "name": "L-03K Style LTE JP", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-06-22", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 16.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 2890, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 6.3, + "battery": 0.0, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.343605", + "updated_at": "2026-06-19T00:43:44.343605" +} diff --git a/site/public/v1/smartphones/l-03k-style-lte-jp/score/index.json b/site/public/v1/smartphones/l-03k-style-lte-jp/score/index.json new file mode 100644 index 00000000000..95e89c56193 --- /dev/null +++ b/site/public/v1/smartphones/l-03k-style-lte-jp/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 6.3, + "battery": 0.0, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/l157bl-rebel-3-lte/index.json b/site/public/v1/smartphones/l157bl-rebel-3-lte/index.json new file mode 100644 index 00000000000..165e13a5fbd --- /dev/null +++ b/site/public/v1/smartphones/l157bl-rebel-3-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 1516, + "slug": "l157bl-rebel-3-lte", + "name": "L157BL Rebel 3 LTE", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 104, + "slug": "snapdragon-210", + "name": "Snapdragon 210", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-210" + }, + "release_date": "2017-09-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "480x854", + "type": "Color TN-TFT LCD display", + "ppi": 196 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 138.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "6.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.341605", + "updated_at": "2026-06-19T00:43:44.341605" +} diff --git a/site/public/v1/smartphones/l157bl-rebel-3-lte/score/index.json b/site/public/v1/smartphones/l157bl-rebel-3-lte/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/l157bl-rebel-3-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/l158vl-rebel-3-lte/index.json b/site/public/v1/smartphones/l158vl-rebel-3-lte/index.json new file mode 100644 index 00000000000..478f2eaa36d --- /dev/null +++ b/site/public/v1/smartphones/l158vl-rebel-3-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 1517, + "slug": "l158vl-rebel-3-lte", + "name": "L158VL Rebel 3 LTE", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 104, + "slug": "snapdragon-210", + "name": "Snapdragon 210", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-210" + }, + "release_date": "2017-10-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "480x854", + "type": "Color TN-TFT LCD display", + "ppi": 196 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 138.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "6.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.341605", + "updated_at": "2026-06-19T00:43:44.341605" +} diff --git a/site/public/v1/smartphones/l158vl-rebel-3-lte/score/index.json b/site/public/v1/smartphones/l158vl-rebel-3-lte/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/l158vl-rebel-3-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/l163bl-fiesta-2-lte-a/index.json b/site/public/v1/smartphones/l163bl-fiesta-2-lte-a/index.json new file mode 100644 index 00000000000..7f80797572c --- /dev/null +++ b/site/public/v1/smartphones/l163bl-fiesta-2-lte-a/index.json @@ -0,0 +1,76 @@ +{ + "id": 1518, + "slug": "l163bl-fiesta-2-lte-a", + "name": "L163BL Fiesta 2 LTE-A", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2017-10-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": null, + "camera": 5.3, + "battery": 22.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.341605", + "updated_at": "2026-06-19T00:43:44.341605" +} diff --git a/site/public/v1/smartphones/l163bl-fiesta-2-lte-a/score/index.json b/site/public/v1/smartphones/l163bl-fiesta-2-lte-a/score/index.json new file mode 100644 index 00000000000..c644a3820df --- /dev/null +++ b/site/public/v1/smartphones/l163bl-fiesta-2-lte-a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": null, + "camera": 5.3, + "battery": 22.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/l164vl-fiesta-2-lte-a/index.json b/site/public/v1/smartphones/l164vl-fiesta-2-lte-a/index.json new file mode 100644 index 00000000000..aecef3b113c --- /dev/null +++ b/site/public/v1/smartphones/l164vl-fiesta-2-lte-a/index.json @@ -0,0 +1,76 @@ +{ + "id": 1519, + "slug": "l164vl-fiesta-2-lte-a", + "name": "L164VL Fiesta 2 LTE-A", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2017-10-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": null, + "camera": 5.3, + "battery": 22.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.341605", + "updated_at": "2026-06-19T00:43:44.341605" +} diff --git a/site/public/v1/smartphones/l164vl-fiesta-2-lte-a/score/index.json b/site/public/v1/smartphones/l164vl-fiesta-2-lte-a/score/index.json new file mode 100644 index 00000000000..c644a3820df --- /dev/null +++ b/site/public/v1/smartphones/l164vl-fiesta-2-lte-a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": null, + "camera": 5.3, + "battery": 22.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/l322dl-journey-lte-us/index.json b/site/public/v1/smartphones/l322dl-journey-lte-us/index.json new file mode 100644 index 00000000000..7735a98705d --- /dev/null +++ b/site/public/v1/smartphones/l322dl-journey-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 1626, + "slug": "l322dl-journey-lte-us", + "name": "L322DL Journey LTE US", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2019-08-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 147.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.354605", + "updated_at": "2026-06-19T00:43:44.354605" +} diff --git a/site/public/v1/smartphones/l322dl-journey-lte-us/score/index.json b/site/public/v1/smartphones/l322dl-journey-lte-us/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/l322dl-journey-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/l413dl-premier-pro-lte/index.json b/site/public/v1/smartphones/l413dl-premier-pro-lte/index.json new file mode 100644 index 00000000000..6bbcc2caf85 --- /dev/null +++ b/site/public/v1/smartphones/l413dl-premier-pro-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 1531, + "slug": "l413dl-premier-pro-lte", + "name": "L413DL Premier Pro LTE", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.3, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 277 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2880, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.343605", + "updated_at": "2026-06-19T00:43:44.343605" +} diff --git a/site/public/v1/smartphones/l413dl-premier-pro-lte/score/index.json b/site/public/v1/smartphones/l413dl-premier-pro-lte/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/l413dl-premier-pro-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/l423dl-solo-lte-a-us/index.json b/site/public/v1/smartphones/l423dl-solo-lte-a-us/index.json new file mode 100644 index 00000000000..46dca43b1ae --- /dev/null +++ b/site/public/v1/smartphones/l423dl-solo-lte-a-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 1627, + "slug": "l423dl-solo-lte-a-us", + "name": "L423DL Solo LTE-A US", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.355605", + "updated_at": "2026-06-19T00:43:44.355605" +} diff --git a/site/public/v1/smartphones/l423dl-solo-lte-a-us/score/index.json b/site/public/v1/smartphones/l423dl-solo-lte-a-us/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/l423dl-solo-lte-a-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/l713dl-stylo-4-lte-us/index.json b/site/public/v1/smartphones/l713dl-stylo-4-lte-us/index.json new file mode 100644 index 00000000000..c87e5565d56 --- /dev/null +++ b/site/public/v1/smartphones/l713dl-stylo-4-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 1532, + "slug": "l713dl-stylo-4-lte-us", + "name": "L713DL Stylo 4 LTE US", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": null, + "camera": 5.3, + "battery": 4.5, + "display": 44.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.343605", + "updated_at": "2026-06-19T00:43:44.343605" +} diff --git a/site/public/v1/smartphones/l713dl-stylo-4-lte-us/score/index.json b/site/public/v1/smartphones/l713dl-stylo-4-lte-us/score/index.json new file mode 100644 index 00000000000..2606476b9f1 --- /dev/null +++ b/site/public/v1/smartphones/l713dl-stylo-4-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": null, + "camera": 5.3, + "battery": 4.5, + "display": 44.0, + "value": null +} diff --git a/site/public/v1/smartphones/l722dl-stylo-5-lte-a-us-q720dl/index.json b/site/public/v1/smartphones/l722dl-stylo-5-lte-a-us-q720dl/index.json new file mode 100644 index 00000000000..075a2693a5e --- /dev/null +++ b/site/public/v1/smartphones/l722dl-stylo-5-lte-a-us-q720dl/index.json @@ -0,0 +1,76 @@ +{ + "id": 1628, + "slug": "l722dl-stylo-5-lte-a-us-q720dl", + "name": "L722DL Stylo 5 LTE-A US Q720DL", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 44.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.355605", + "updated_at": "2026-06-19T00:43:44.355605" +} diff --git a/site/public/v1/smartphones/l722dl-stylo-5-lte-a-us-q720dl/score/index.json b/site/public/v1/smartphones/l722dl-stylo-5-lte-a-us-q720dl/score/index.json new file mode 100644 index 00000000000..43ebe0cb912 --- /dev/null +++ b/site/public/v1/smartphones/l722dl-stylo-5-lte-a-us-q720dl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 44.0, + "value": null +} diff --git a/site/public/v1/smartphones/legacy-lte-a-us-3705a/index.json b/site/public/v1/smartphones/legacy-lte-a-us-3705a/index.json new file mode 100644 index 00000000000..120fbd2b86f --- /dev/null +++ b/site/public/v1/smartphones/legacy-lte-a-us-3705a/index.json @@ -0,0 +1,76 @@ +{ + "id": 498, + "slug": "legacy-lte-a-us-3705a", + "name": "Legacy LTE-A US 3705A", + "brand": { + "id": 10, + "slug": "coolpad", + "name": "Coolpad", + "country": "CN", + "url": "/v1/brands/coolpad" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-05-14", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.36, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 380 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": null, + "camera": 6.3, + "battery": 15.0, + "display": 43.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.175933", + "updated_at": "2026-06-19T00:43:44.175933" +} diff --git a/site/public/v1/smartphones/legacy-lte-a-us-3705a/score/index.json b/site/public/v1/smartphones/legacy-lte-a-us-3705a/score/index.json new file mode 100644 index 00000000000..dd35a47f64b --- /dev/null +++ b/site/public/v1/smartphones/legacy-lte-a-us-3705a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": null, + "camera": 6.3, + "battery": 15.0, + "display": 43.0, + "value": null +} diff --git a/site/public/v1/smartphones/legacy-s-td-lte-us-3648a/index.json b/site/public/v1/smartphones/legacy-s-td-lte-us-3648a/index.json new file mode 100644 index 00000000000..fb9107a05d1 --- /dev/null +++ b/site/public/v1/smartphones/legacy-s-td-lte-us-3648a/index.json @@ -0,0 +1,76 @@ +{ + "id": 499, + "slug": "legacy-s-td-lte-us-3648a", + "name": "Legacy S TD-LTE US 3648A", + "brand": { + "id": 10, + "slug": "coolpad", + "name": "Coolpad", + "country": "CN", + "url": "/v1/brands/coolpad" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-02-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2450, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.175933", + "updated_at": "2026-06-19T00:43:44.175933" +} diff --git a/site/public/v1/smartphones/legacy-s-td-lte-us-3648a/score/index.json b/site/public/v1/smartphones/legacy-s-td-lte-us-3648a/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/legacy-s-td-lte-us-3648a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/legacy-td-lte-us-3705as/index.json b/site/public/v1/smartphones/legacy-td-lte-us-3705as/index.json new file mode 100644 index 00000000000..57ba5c69c09 --- /dev/null +++ b/site/public/v1/smartphones/legacy-td-lte-us-3705as/index.json @@ -0,0 +1,76 @@ +{ + "id": 500, + "slug": "legacy-td-lte-us-3705as", + "name": "Legacy TD-LTE US 3705AS", + "brand": { + "id": 10, + "slug": "coolpad", + "name": "Coolpad", + "country": "CN", + "url": "/v1/brands/coolpad" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-06-18", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.36, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 380 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3980, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": null, + "camera": 6.3, + "battery": 14.7, + "display": 43.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.175933", + "updated_at": "2026-06-19T00:43:44.175933" +} diff --git a/site/public/v1/smartphones/legacy-td-lte-us-3705as/score/index.json b/site/public/v1/smartphones/legacy-td-lte-us-3705as/score/index.json new file mode 100644 index 00000000000..2b52daf50b1 --- /dev/null +++ b/site/public/v1/smartphones/legacy-td-lte-us-3705as/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": null, + "camera": 6.3, + "battery": 14.7, + "display": 43.0, + "value": null +} diff --git a/site/public/v1/smartphones/legion-phone-2-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l70081/index.json b/site/public/v1/smartphones/legion-phone-2-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l70081/index.json new file mode 100644 index 00000000000..93ea25e88d6 --- /dev/null +++ b/site/public/v1/smartphones/legion-phone-2-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l70081/index.json @@ -0,0 +1,77 @@ +{ + "id": 1496, + "slug": "legion-phone-2-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l70081", + "name": "Legion Phone 2 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB L70081", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-01", + "msrp_usd": 4799, + "ram_gb": 16, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "battery_mah": 5500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 262.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 38.1, + "performance": 12.4, + "camera": 21.7, + "battery": 57.0, + "display": 61.3, + "value": 19.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.339605", + "updated_at": "2026-06-19T00:43:44.339605" +} diff --git a/site/public/v1/smartphones/legion-phone-2-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l70081/score/index.json b/site/public/v1/smartphones/legion-phone-2-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l70081/score/index.json new file mode 100644 index 00000000000..313ee647edf --- /dev/null +++ b/site/public/v1/smartphones/legion-phone-2-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l70081/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 38.1, + "performance": 12.4, + "camera": 21.7, + "battery": 57.0, + "display": 61.3, + "value": 19.1 +} diff --git a/site/public/v1/smartphones/legion-phone-2-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-l70081/index.json b/site/public/v1/smartphones/legion-phone-2-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-l70081/index.json new file mode 100644 index 00000000000..ad8418afb5e --- /dev/null +++ b/site/public/v1/smartphones/legion-phone-2-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-l70081/index.json @@ -0,0 +1,77 @@ +{ + "id": 1497, + "slug": "legion-phone-2-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-l70081", + "name": "Legion Phone 2 Pro 5G Premium Edition Dual SIM TD-LTE CN 512GB L70081", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-01", + "msrp_usd": null, + "ram_gb": 16, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "battery_mah": 5500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 262.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 38.1, + "performance": 12.4, + "camera": 21.7, + "battery": 57.0, + "display": 61.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.339605", + "updated_at": "2026-06-19T00:43:44.339605" +} diff --git a/site/public/v1/smartphones/legion-phone-2-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-l70081/score/index.json b/site/public/v1/smartphones/legion-phone-2-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-l70081/score/index.json new file mode 100644 index 00000000000..5056708f565 --- /dev/null +++ b/site/public/v1/smartphones/legion-phone-2-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-l70081/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 38.1, + "performance": 12.4, + "camera": 21.7, + "battery": 57.0, + "display": 61.3, + "value": null +} diff --git a/site/public/v1/smartphones/legion-phone-2-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-l70081/index.json b/site/public/v1/smartphones/legion-phone-2-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-l70081/index.json new file mode 100644 index 00000000000..ca478f3c97d --- /dev/null +++ b/site/public/v1/smartphones/legion-phone-2-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-l70081/index.json @@ -0,0 +1,77 @@ +{ + "id": 1498, + "slug": "legion-phone-2-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-l70081", + "name": "Legion Phone 2 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB L70081", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-01", + "msrp_usd": 4099, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "battery_mah": 5500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 262.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.4, + "performance": 9.4, + "camera": 21.7, + "battery": 57.0, + "display": 61.3, + "value": 18.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.339605", + "updated_at": "2026-06-19T00:43:44.339605" +} diff --git a/site/public/v1/smartphones/legion-phone-2-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-l70081/score/index.json b/site/public/v1/smartphones/legion-phone-2-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-l70081/score/index.json new file mode 100644 index 00000000000..3f0c553a56e --- /dev/null +++ b/site/public/v1/smartphones/legion-phone-2-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-l70081/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.4, + "performance": 9.4, + "camera": 21.7, + "battery": 57.0, + "display": 61.3, + "value": 18.7 +} diff --git a/site/public/v1/smartphones/legion-phone-2-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-l70081/index.json b/site/public/v1/smartphones/legion-phone-2-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-l70081/index.json new file mode 100644 index 00000000000..3f2e1996660 --- /dev/null +++ b/site/public/v1/smartphones/legion-phone-2-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-l70081/index.json @@ -0,0 +1,77 @@ +{ + "id": 1499, + "slug": "legion-phone-2-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-l70081", + "name": "Legion Phone 2 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB L70081", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-01", + "msrp_usd": 4399, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "battery_mah": 5500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 262.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.4, + "performance": 9.4, + "camera": 21.7, + "battery": 57.0, + "display": 61.3, + "value": 18.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.339605", + "updated_at": "2026-06-19T00:43:44.339605" +} diff --git a/site/public/v1/smartphones/legion-phone-2-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-l70081/score/index.json b/site/public/v1/smartphones/legion-phone-2-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-l70081/score/index.json new file mode 100644 index 00000000000..3f0c553a56e --- /dev/null +++ b/site/public/v1/smartphones/legion-phone-2-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-l70081/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.4, + "performance": 9.4, + "camera": 21.7, + "battery": 57.0, + "display": 61.3, + "value": 18.7 +} diff --git a/site/public/v1/smartphones/legion-phone-2-pro-5g-top-edition-dual-sim-td-lte-cn-256gb-l70081/index.json b/site/public/v1/smartphones/legion-phone-2-pro-5g-top-edition-dual-sim-td-lte-cn-256gb-l70081/index.json new file mode 100644 index 00000000000..acfaf32af51 --- /dev/null +++ b/site/public/v1/smartphones/legion-phone-2-pro-5g-top-edition-dual-sim-td-lte-cn-256gb-l70081/index.json @@ -0,0 +1,77 @@ +{ + "id": 1500, + "slug": "legion-phone-2-pro-5g-top-edition-dual-sim-td-lte-cn-256gb-l70081", + "name": "Legion Phone 2 Pro 5G Top Edition Dual SIM TD-LTE CN 256GB L70081", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-01", + "msrp_usd": null, + "ram_gb": 18, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "battery_mah": 5500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 262.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 38.5, + "performance": 13.9, + "camera": 21.7, + "battery": 57.0, + "display": 61.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.339605", + "updated_at": "2026-06-19T00:43:44.339605" +} diff --git a/site/public/v1/smartphones/legion-phone-2-pro-5g-top-edition-dual-sim-td-lte-cn-256gb-l70081/score/index.json b/site/public/v1/smartphones/legion-phone-2-pro-5g-top-edition-dual-sim-td-lte-cn-256gb-l70081/score/index.json new file mode 100644 index 00000000000..f635cec1080 --- /dev/null +++ b/site/public/v1/smartphones/legion-phone-2-pro-5g-top-edition-dual-sim-td-lte-cn-256gb-l70081/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 38.5, + "performance": 13.9, + "camera": 21.7, + "battery": 57.0, + "display": 61.3, + "value": null +} diff --git a/site/public/v1/smartphones/legion-phone-2-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-l70081/index.json b/site/public/v1/smartphones/legion-phone-2-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-l70081/index.json new file mode 100644 index 00000000000..8e68e5eabb5 --- /dev/null +++ b/site/public/v1/smartphones/legion-phone-2-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-l70081/index.json @@ -0,0 +1,77 @@ +{ + "id": 1501, + "slug": "legion-phone-2-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-l70081", + "name": "Legion Phone 2 Pro 5G Top Edition Dual SIM TD-LTE CN 512GB L70081", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-01", + "msrp_usd": null, + "ram_gb": 18, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "battery_mah": 5500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 262.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 38.5, + "performance": 13.9, + "camera": 21.7, + "battery": 57.0, + "display": 61.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.339605", + "updated_at": "2026-06-19T00:43:44.339605" +} diff --git a/site/public/v1/smartphones/legion-phone-2-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-l70081/score/index.json b/site/public/v1/smartphones/legion-phone-2-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-l70081/score/index.json new file mode 100644 index 00000000000..f635cec1080 --- /dev/null +++ b/site/public/v1/smartphones/legion-phone-2-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-l70081/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 38.5, + "performance": 13.9, + "camera": 21.7, + "battery": 57.0, + "display": 61.3, + "value": null +} diff --git a/site/public/v1/smartphones/legion-phone-duel-2-5g-premium-edition-global-dual-sim-td-lte-512gb-l70081/index.json b/site/public/v1/smartphones/legion-phone-duel-2-5g-premium-edition-global-dual-sim-td-lte-512gb-l70081/index.json new file mode 100644 index 00000000000..4b9a5c7dfe6 --- /dev/null +++ b/site/public/v1/smartphones/legion-phone-duel-2-5g-premium-edition-global-dual-sim-td-lte-512gb-l70081/index.json @@ -0,0 +1,77 @@ +{ + "id": 1503, + "slug": "legion-phone-duel-2-5g-premium-edition-global-dual-sim-td-lte-512gb-l70081", + "name": "Legion Phone Duel 2 5G Premium Edition Global Dual SIM TD-LTE 512GB L70081", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-01", + "msrp_usd": 799, + "ram_gb": 16, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "battery_mah": 5500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 262.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 38.1, + "performance": 12.4, + "camera": 21.7, + "battery": 57.0, + "display": 61.3, + "value": 49.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.340605", + "updated_at": "2026-06-19T00:43:44.340605" +} diff --git a/site/public/v1/smartphones/legion-phone-duel-2-5g-premium-edition-global-dual-sim-td-lte-512gb-l70081/score/index.json b/site/public/v1/smartphones/legion-phone-duel-2-5g-premium-edition-global-dual-sim-td-lte-512gb-l70081/score/index.json new file mode 100644 index 00000000000..46058664d09 --- /dev/null +++ b/site/public/v1/smartphones/legion-phone-duel-2-5g-premium-edition-global-dual-sim-td-lte-512gb-l70081/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 38.1, + "performance": 12.4, + "camera": 21.7, + "battery": 57.0, + "display": 61.3, + "value": 49.9 +} diff --git a/site/public/v1/smartphones/legion-phone-duel-2-5g-standard-edition-global-dual-sim-td-lte-256gb-l70081/index.json b/site/public/v1/smartphones/legion-phone-duel-2-5g-standard-edition-global-dual-sim-td-lte-256gb-l70081/index.json new file mode 100644 index 00000000000..d29eec9c87e --- /dev/null +++ b/site/public/v1/smartphones/legion-phone-duel-2-5g-standard-edition-global-dual-sim-td-lte-256gb-l70081/index.json @@ -0,0 +1,77 @@ +{ + "id": 1504, + "slug": "legion-phone-duel-2-5g-standard-edition-global-dual-sim-td-lte-256gb-l70081", + "name": "Legion Phone Duel 2 5G Standard Edition Global Dual SIM TD-LTE 256GB L70081", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-01", + "msrp_usd": 699, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "battery_mah": 5500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 262.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.4, + "performance": 9.4, + "camera": 21.7, + "battery": 57.0, + "display": 61.3, + "value": 53.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.340605", + "updated_at": "2026-06-19T00:43:44.340605" +} diff --git a/site/public/v1/smartphones/legion-phone-duel-2-5g-standard-edition-global-dual-sim-td-lte-256gb-l70081/score/index.json b/site/public/v1/smartphones/legion-phone-duel-2-5g-standard-edition-global-dual-sim-td-lte-256gb-l70081/score/index.json new file mode 100644 index 00000000000..7b619d60136 --- /dev/null +++ b/site/public/v1/smartphones/legion-phone-duel-2-5g-standard-edition-global-dual-sim-td-lte-256gb-l70081/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.4, + "performance": 9.4, + "camera": 21.7, + "battery": 57.0, + "display": 61.3, + "value": 53.3 +} diff --git a/site/public/v1/smartphones/legion-phone-duel-5g-premium-edition-global-dual-sim-td-lte-256gb-l79031/index.json b/site/public/v1/smartphones/legion-phone-duel-5g-premium-edition-global-dual-sim-td-lte-256gb-l79031/index.json new file mode 100644 index 00000000000..986c1df926b --- /dev/null +++ b/site/public/v1/smartphones/legion-phone-duel-5g-premium-edition-global-dual-sim-td-lte-256gb-l79031/index.json @@ -0,0 +1,77 @@ +{ + "id": 1476, + "slug": "legion-phone-duel-5g-premium-edition-global-dual-sim-td-lte-256gb-l79031", + "name": "Legion Phone Duel 5G Premium Edition Global Dual SIM TD-LTE 256GB L79031", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-10-01", + "msrp_usd": 799, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 239.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 21.5, + "battery": 39.5, + "display": 61.3, + "value": 46.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.337605", + "updated_at": "2026-06-19T00:43:44.337605" +} diff --git a/site/public/v1/smartphones/legion-phone-duel-5g-premium-edition-global-dual-sim-td-lte-256gb-l79031/score/index.json b/site/public/v1/smartphones/legion-phone-duel-5g-premium-edition-global-dual-sim-td-lte-256gb-l79031/score/index.json new file mode 100644 index 00000000000..1e01c6f5a45 --- /dev/null +++ b/site/public/v1/smartphones/legion-phone-duel-5g-premium-edition-global-dual-sim-td-lte-256gb-l79031/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 21.5, + "battery": 39.5, + "display": 61.3, + "value": 46.9 +} diff --git a/site/public/v1/smartphones/legion-phone-duel-5g-top-edition-global-dual-sim-td-lte-256gb-l79031/index.json b/site/public/v1/smartphones/legion-phone-duel-5g-top-edition-global-dual-sim-td-lte-256gb-l79031/index.json new file mode 100644 index 00000000000..b90e60fa61e --- /dev/null +++ b/site/public/v1/smartphones/legion-phone-duel-5g-top-edition-global-dual-sim-td-lte-256gb-l79031/index.json @@ -0,0 +1,77 @@ +{ + "id": 1477, + "slug": "legion-phone-duel-5g-top-edition-global-dual-sim-td-lte-256gb-l79031", + "name": "Legion Phone Duel 5G Top Edition Global Dual SIM TD-LTE 256GB L79031", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-10-01", + "msrp_usd": 899, + "ram_gb": 16, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 239.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.9, + "performance": 9.4, + "camera": 21.5, + "battery": 39.5, + "display": 61.3, + "value": 43.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.337605", + "updated_at": "2026-06-19T00:43:44.337605" +} diff --git a/site/public/v1/smartphones/legion-phone-duel-5g-top-edition-global-dual-sim-td-lte-256gb-l79031/score/index.json b/site/public/v1/smartphones/legion-phone-duel-5g-top-edition-global-dual-sim-td-lte-256gb-l79031/score/index.json new file mode 100644 index 00000000000..f02e2be4055 --- /dev/null +++ b/site/public/v1/smartphones/legion-phone-duel-5g-top-edition-global-dual-sim-td-lte-256gb-l79031/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.9, + "performance": 9.4, + "camera": 21.5, + "battery": 39.5, + "display": 61.3, + "value": 43.4 +} diff --git a/site/public/v1/smartphones/legion-phone-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-l79031/index.json b/site/public/v1/smartphones/legion-phone-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-l79031/index.json new file mode 100644 index 00000000000..6c73038cdc5 --- /dev/null +++ b/site/public/v1/smartphones/legion-phone-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-l79031/index.json @@ -0,0 +1,77 @@ +{ + "id": 1479, + "slug": "legion-phone-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-l79031", + "name": "Legion Phone Pro 5G Premium Edition Dual SIM TD-LTE CN 128GB L79031", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-07-01", + "msrp_usd": 3499, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 239.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 21.5, + "battery": 39.5, + "display": 61.3, + "value": 16.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.337605", + "updated_at": "2026-06-19T00:43:44.337605" +} diff --git a/site/public/v1/smartphones/legion-phone-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-l79031/score/index.json b/site/public/v1/smartphones/legion-phone-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-l79031/score/index.json new file mode 100644 index 00000000000..7c91dcea724 --- /dev/null +++ b/site/public/v1/smartphones/legion-phone-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-l79031/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 21.5, + "battery": 39.5, + "display": 61.3, + "value": 16.1 +} diff --git a/site/public/v1/smartphones/legion-phone-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l79031/index.json b/site/public/v1/smartphones/legion-phone-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l79031/index.json new file mode 100644 index 00000000000..87eee22b2d0 --- /dev/null +++ b/site/public/v1/smartphones/legion-phone-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l79031/index.json @@ -0,0 +1,77 @@ +{ + "id": 1480, + "slug": "legion-phone-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l79031", + "name": "Legion Phone Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB L79031", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-07-01", + "msrp_usd": 3599, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 239.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 21.5, + "battery": 39.5, + "display": 61.3, + "value": 16.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.337605", + "updated_at": "2026-06-19T00:43:44.337605" +} diff --git a/site/public/v1/smartphones/legion-phone-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l79031/score/index.json b/site/public/v1/smartphones/legion-phone-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l79031/score/index.json new file mode 100644 index 00000000000..7c91dcea724 --- /dev/null +++ b/site/public/v1/smartphones/legion-phone-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l79031/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 21.5, + "battery": 39.5, + "display": 61.3, + "value": 16.1 +} diff --git a/site/public/v1/smartphones/legion-phone-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-l79031/index.json b/site/public/v1/smartphones/legion-phone-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-l79031/index.json new file mode 100644 index 00000000000..8a8c4792839 --- /dev/null +++ b/site/public/v1/smartphones/legion-phone-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-l79031/index.json @@ -0,0 +1,77 @@ +{ + "id": 1481, + "slug": "legion-phone-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-l79031", + "name": "Legion Phone Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB L79031", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-07-01", + "msrp_usd": 3399, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 239.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.4, + "performance": 3.4, + "camera": 21.5, + "battery": 39.5, + "display": 61.3, + "value": 15.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.337605", + "updated_at": "2026-06-19T00:43:44.337605" +} diff --git a/site/public/v1/smartphones/legion-phone-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-l79031/score/index.json b/site/public/v1/smartphones/legion-phone-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-l79031/score/index.json new file mode 100644 index 00000000000..7c8b7ac5417 --- /dev/null +++ b/site/public/v1/smartphones/legion-phone-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-l79031/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.4, + "performance": 3.4, + "camera": 21.5, + "battery": 39.5, + "display": 61.3, + "value": 15.7 +} diff --git a/site/public/v1/smartphones/legion-phone-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-l79031/index.json b/site/public/v1/smartphones/legion-phone-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-l79031/index.json new file mode 100644 index 00000000000..b97e930e8fc --- /dev/null +++ b/site/public/v1/smartphones/legion-phone-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-l79031/index.json @@ -0,0 +1,77 @@ +{ + "id": 1482, + "slug": "legion-phone-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-l79031", + "name": "Legion Phone Pro 5G Top Edition Dual SIM TD-LTE CN 512GB L79031", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-07-01", + "msrp_usd": null, + "ram_gb": 16, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 239.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.9, + "performance": 9.4, + "camera": 21.5, + "battery": 39.5, + "display": 61.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.337605", + "updated_at": "2026-06-19T00:43:44.337605" +} diff --git a/site/public/v1/smartphones/legion-phone-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-l79031/score/index.json b/site/public/v1/smartphones/legion-phone-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-l79031/score/index.json new file mode 100644 index 00000000000..ee2c6427368 --- /dev/null +++ b/site/public/v1/smartphones/legion-phone-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-l79031/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.9, + "performance": 9.4, + "camera": 21.5, + "battery": 39.5, + "display": 61.3, + "value": null +} diff --git a/site/public/v1/smartphones/leica-leitz-phone-1-5g-td-lte-jp-lp-01/index.json b/site/public/v1/smartphones/leica-leitz-phone-1-5g-td-lte-jp-lp-01/index.json new file mode 100644 index 00000000000..7add46938d8 --- /dev/null +++ b/site/public/v1/smartphones/leica-leitz-phone-1-5g-td-lte-jp-lp-01/index.json @@ -0,0 +1,77 @@ +{ + "id": 4766, + "slug": "leica-leitz-phone-1-5g-td-lte-jp-lp-01", + "name": "Leica Leitz Phone 1 5G TD-LTE JP LP-01", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-07-14", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.57, + "resolution": "1260x2730", + "refresh_hz": 240, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 20.1 + }, + { + "type": "selfie", + "mp": 12.6 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 212.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.3, + "performance": 9.4, + "camera": 7.6, + "battery": 40.0, + "display": 68.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.808713", + "updated_at": "2026-06-19T00:43:44.808713" +} diff --git a/site/public/v1/smartphones/leica-leitz-phone-1-5g-td-lte-jp-lp-01/score/index.json b/site/public/v1/smartphones/leica-leitz-phone-1-5g-td-lte-jp-lp-01/score/index.json new file mode 100644 index 00000000000..ad93f2897fd --- /dev/null +++ b/site/public/v1/smartphones/leica-leitz-phone-1-5g-td-lte-jp-lp-01/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.3, + "performance": 9.4, + "camera": 7.6, + "battery": 40.0, + "display": 68.2, + "value": null +} diff --git a/site/public/v1/smartphones/lemon-k12-dual-sim-td-lte-cn-xt2081-4/index.json b/site/public/v1/smartphones/lemon-k12-dual-sim-td-lte-cn-xt2081-4/index.json new file mode 100644 index 00000000000..6e4261e833a --- /dev/null +++ b/site/public/v1/smartphones/lemon-k12-dual-sim-td-lte-cn-xt2081-4/index.json @@ -0,0 +1,76 @@ +{ + "id": 1484, + "slug": "lemon-k12-dual-sim-td-lte-cn-xt2081-4", + "name": "Lemon K12 Dual SIM TD-LTE CN XT2081-4", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2020-12-11", + "msrp_usd": 699, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": 44.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.338605", + "updated_at": "2026-06-19T00:43:44.338605" +} diff --git a/site/public/v1/smartphones/lemon-k12-dual-sim-td-lte-cn-xt2081-4/score/index.json b/site/public/v1/smartphones/lemon-k12-dual-sim-td-lte-cn-xt2081-4/score/index.json new file mode 100644 index 00000000000..53ea1c3930d --- /dev/null +++ b/site/public/v1/smartphones/lemon-k12-dual-sim-td-lte-cn-xt2081-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": 44.8 +} diff --git a/site/public/v1/smartphones/lgl355dl-k-series-k31-rebel-2020-td-lte-us-l355dl-a/index.json b/site/public/v1/smartphones/lgl355dl-k-series-k31-rebel-2020-td-lte-us-l355dl-a/index.json new file mode 100644 index 00000000000..81a6aa1a38b --- /dev/null +++ b/site/public/v1/smartphones/lgl355dl-k-series-k31-rebel-2020-td-lte-us-l355dl-a/index.json @@ -0,0 +1,76 @@ +{ + "id": 1724, + "slug": "lgl355dl-k-series-k31-rebel-2020-td-lte-us-l355dl-a", + "name": "LGL355DL K Series K31 Rebel 2020 TD-LTE US L355DL-A", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-12-01", + "msrp_usd": 120, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 56.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.368610", + "updated_at": "2026-06-19T00:43:44.368610" +} diff --git a/site/public/v1/smartphones/lgl355dl-k-series-k31-rebel-2020-td-lte-us-l355dl-a/score/index.json b/site/public/v1/smartphones/lgl355dl-k-series-k31-rebel-2020-td-lte-us-l355dl-a/score/index.json new file mode 100644 index 00000000000..bcae8b89b89 --- /dev/null +++ b/site/public/v1/smartphones/lgl355dl-k-series-k31-rebel-2020-td-lte-us-l355dl-a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 56.7 +} diff --git a/site/public/v1/smartphones/lgl455dl-premier-pro-plus-2020-td-lte-us-l455dl/index.json b/site/public/v1/smartphones/lgl455dl-premier-pro-plus-2020-td-lte-us-l455dl/index.json new file mode 100644 index 00000000000..6ff86a021ca --- /dev/null +++ b/site/public/v1/smartphones/lgl455dl-premier-pro-plus-2020-td-lte-us-l455dl/index.json @@ -0,0 +1,76 @@ +{ + "id": 1725, + "slug": "lgl455dl-premier-pro-plus-2020-td-lte-us-l455dl", + "name": "LGL455DL Premier Pro Plus 2020 TD-LTE US L455DL", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-07-01", + "msrp_usd": 100, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": 58.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.368610", + "updated_at": "2026-06-19T00:43:44.368610" +} diff --git a/site/public/v1/smartphones/lgl455dl-premier-pro-plus-2020-td-lte-us-l455dl/score/index.json b/site/public/v1/smartphones/lgl455dl-premier-pro-plus-2020-td-lte-us-l455dl/score/index.json new file mode 100644 index 00000000000..9563d9af46f --- /dev/null +++ b/site/public/v1/smartphones/lgl455dl-premier-pro-plus-2020-td-lte-us-l455dl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": 58.0 +} diff --git a/site/public/v1/smartphones/lgl555dl-reflect-2020-td-lte-us-l555dl/index.json b/site/public/v1/smartphones/lgl555dl-reflect-2020-td-lte-us-l555dl/index.json new file mode 100644 index 00000000000..0e4d6276921 --- /dev/null +++ b/site/public/v1/smartphones/lgl555dl-reflect-2020-td-lte-us-l555dl/index.json @@ -0,0 +1,77 @@ +{ + "id": 1726, + "slug": "lgl555dl-reflect-2020-td-lte-us-l555dl", + "name": "LGL555DL Reflect 2020 TD-LTE US L555DL", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-06-01", + "msrp_usd": 170, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1560", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 264 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 204.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 17.5, + "value": 56.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.368610", + "updated_at": "2026-06-19T00:43:44.368610" +} diff --git a/site/public/v1/smartphones/lgl555dl-reflect-2020-td-lte-us-l555dl/score/index.json b/site/public/v1/smartphones/lgl555dl-reflect-2020-td-lte-us-l555dl/score/index.json new file mode 100644 index 00000000000..04c452166eb --- /dev/null +++ b/site/public/v1/smartphones/lgl555dl-reflect-2020-td-lte-us-l555dl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 17.5, + "value": 56.3 +} diff --git a/site/public/v1/smartphones/libero-3-td-lte-a001zt/index.json b/site/public/v1/smartphones/libero-3-td-lte-a001zt/index.json new file mode 100644 index 00000000000..80c3e6d7905 --- /dev/null +++ b/site/public/v1/smartphones/libero-3-td-lte-a001zt/index.json @@ -0,0 +1,76 @@ +{ + "id": 6485, + "slug": "libero-3-td-lte-a001zt", + "name": "Libero 3 TD-LTE A001ZT", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-09-18", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3900, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 6.3, + "battery": 13.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.015824", + "updated_at": "2026-06-19T00:43:45.015824" +} diff --git a/site/public/v1/smartphones/libero-3-td-lte-a001zt/score/index.json b/site/public/v1/smartphones/libero-3-td-lte-a001zt/score/index.json new file mode 100644 index 00000000000..9b4bb6b5ccc --- /dev/null +++ b/site/public/v1/smartphones/libero-3-td-lte-a001zt/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 6.3, + "battery": 13.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/libero-s10-td-lte-jp-901zt/index.json b/site/public/v1/smartphones/libero-s10-td-lte-jp-901zt/index.json new file mode 100644 index 00000000000..176dd72aeee --- /dev/null +++ b/site/public/v1/smartphones/libero-s10-td-lte-jp-901zt/index.json @@ -0,0 +1,76 @@ +{ + "id": 6431, + "slug": "libero-s10-td-lte-jp-901zt", + "name": "Libero S10 TD-LTE JP 901ZT", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-11-08", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": null, + "camera": 5.3, + "battery": 1.5, + "display": 47.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.008824", + "updated_at": "2026-06-19T00:43:45.008824" +} diff --git a/site/public/v1/smartphones/libero-s10-td-lte-jp-901zt/score/index.json b/site/public/v1/smartphones/libero-s10-td-lte-jp-901zt/score/index.json new file mode 100644 index 00000000000..7b3de757980 --- /dev/null +++ b/site/public/v1/smartphones/libero-s10-td-lte-jp-901zt/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": null, + "camera": 5.3, + "battery": 1.5, + "display": 47.4, + "value": null +} diff --git a/site/public/v1/smartphones/lmf100emw-wing-5g-global-dual-sim-td-lte-128gb-f100emw/index.json b/site/public/v1/smartphones/lmf100emw-wing-5g-global-dual-sim-td-lte-128gb-f100emw/index.json new file mode 100644 index 00000000000..28f61d4438c --- /dev/null +++ b/site/public/v1/smartphones/lmf100emw-wing-5g-global-dual-sim-td-lte-128gb-f100emw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1727, + "slug": "lmf100emw-wing-5g-global-dual-sim-td-lte-128gb-f100emw", + "name": "LMF100EMW Wing 5G Global Dual SIM TD-LTE 128GB F100EMW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 260.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.5, + "performance": 3.0, + "camera": 21.7, + "battery": 16.9, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.368610", + "updated_at": "2026-06-19T00:43:44.368610" +} diff --git a/site/public/v1/smartphones/lmf100emw-wing-5g-global-dual-sim-td-lte-128gb-f100emw/score/index.json b/site/public/v1/smartphones/lmf100emw-wing-5g-global-dual-sim-td-lte-128gb-f100emw/score/index.json new file mode 100644 index 00000000000..4c47b31013c --- /dev/null +++ b/site/public/v1/smartphones/lmf100emw-wing-5g-global-dual-sim-td-lte-128gb-f100emw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.5, + "performance": 3.0, + "camera": 21.7, + "battery": 16.9, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/lmf100n-wing-5g-uw-td-lte-kr-128gb-f100n/index.json b/site/public/v1/smartphones/lmf100n-wing-5g-uw-td-lte-kr-128gb-f100n/index.json new file mode 100644 index 00000000000..e035259d499 --- /dev/null +++ b/site/public/v1/smartphones/lmf100n-wing-5g-uw-td-lte-kr-128gb-f100n/index.json @@ -0,0 +1,76 @@ +{ + "id": 1728, + "slug": "lmf100n-wing-5g-uw-td-lte-kr-128gb-f100n", + "name": "LMF100N Wing 5G UW TD-LTE KR 128GB F100N", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 260.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 21.7, + "battery": 15.0, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.368610", + "updated_at": "2026-06-19T00:43:44.368610" +} diff --git a/site/public/v1/smartphones/lmf100n-wing-5g-uw-td-lte-kr-128gb-f100n/score/index.json b/site/public/v1/smartphones/lmf100n-wing-5g-uw-td-lte-kr-128gb-f100n/score/index.json new file mode 100644 index 00000000000..5bdc0b87db2 --- /dev/null +++ b/site/public/v1/smartphones/lmf100n-wing-5g-uw-td-lte-kr-128gb-f100n/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 21.7, + "battery": 15.0, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/lmf100tmk-wing-5g-td-lte-us-f100tmk/index.json b/site/public/v1/smartphones/lmf100tmk-wing-5g-td-lte-us-f100tmk/index.json new file mode 100644 index 00000000000..1c810a13c43 --- /dev/null +++ b/site/public/v1/smartphones/lmf100tmk-wing-5g-td-lte-us-f100tmk/index.json @@ -0,0 +1,76 @@ +{ + "id": 1729, + "slug": "lmf100tmk-wing-5g-td-lte-us-f100tmk", + "name": "LMF100TMK Wing 5G TD-LTE US F100TMK", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-11-06", + "msrp_usd": 1000, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 260.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 21.7, + "battery": 15.0, + "display": 44.5, + "value": 33.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.368610", + "updated_at": "2026-06-19T00:43:44.368610" +} diff --git a/site/public/v1/smartphones/lmf100tmk-wing-5g-td-lte-us-f100tmk/score/index.json b/site/public/v1/smartphones/lmf100tmk-wing-5g-td-lte-us-f100tmk/score/index.json new file mode 100644 index 00000000000..293c85ccdd2 --- /dev/null +++ b/site/public/v1/smartphones/lmf100tmk-wing-5g-td-lte-us-f100tmk/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 21.7, + "battery": 15.0, + "display": 44.5, + "value": 33.7 +} diff --git a/site/public/v1/smartphones/lmf100vm1-wing-5g-td-lte-us-f100vm1/index.json b/site/public/v1/smartphones/lmf100vm1-wing-5g-td-lte-us-f100vm1/index.json new file mode 100644 index 00000000000..3f65d7ff4a9 --- /dev/null +++ b/site/public/v1/smartphones/lmf100vm1-wing-5g-td-lte-us-f100vm1/index.json @@ -0,0 +1,76 @@ +{ + "id": 1730, + "slug": "lmf100vm1-wing-5g-td-lte-us-f100vm1", + "name": "LMF100VM1 Wing 5G TD-LTE US F100VM1", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-11-06", + "msrp_usd": 1050, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 260.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 21.7, + "battery": 15.0, + "display": 44.5, + "value": 31.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.368610", + "updated_at": "2026-06-19T00:43:44.368610" +} diff --git a/site/public/v1/smartphones/lmf100vm1-wing-5g-td-lte-us-f100vm1/score/index.json b/site/public/v1/smartphones/lmf100vm1-wing-5g-td-lte-us-f100vm1/score/index.json new file mode 100644 index 00000000000..d2ffbed0a11 --- /dev/null +++ b/site/public/v1/smartphones/lmf100vm1-wing-5g-td-lte-us-f100vm1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 21.7, + "battery": 15.0, + "display": 44.5, + "value": 31.7 +} diff --git a/site/public/v1/smartphones/lmf100vmy-wing-5g-uw-td-lte-us-f100vmy/index.json b/site/public/v1/smartphones/lmf100vmy-wing-5g-uw-td-lte-us-f100vmy/index.json new file mode 100644 index 00000000000..24891eac54f --- /dev/null +++ b/site/public/v1/smartphones/lmf100vmy-wing-5g-uw-td-lte-us-f100vmy/index.json @@ -0,0 +1,76 @@ +{ + "id": 1731, + "slug": "lmf100vmy-wing-5g-uw-td-lte-us-f100vmy", + "name": "LMF100VMY Wing 5G UW TD-LTE US F100VMY", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-10-16", + "msrp_usd": 1000, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 260.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 21.7, + "battery": 15.0, + "display": 44.5, + "value": 33.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.369610", + "updated_at": "2026-06-19T00:43:44.369610" +} diff --git a/site/public/v1/smartphones/lmf100vmy-wing-5g-uw-td-lte-us-f100vmy/score/index.json b/site/public/v1/smartphones/lmf100vmy-wing-5g-uw-td-lte-us-f100vmy/score/index.json new file mode 100644 index 00000000000..293c85ccdd2 --- /dev/null +++ b/site/public/v1/smartphones/lmf100vmy-wing-5g-uw-td-lte-us-f100vmy/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 21.7, + "battery": 15.0, + "display": 44.5, + "value": 33.7 +} diff --git a/site/public/v1/smartphones/lmg710awmh-g7-thinq-lte-a-latam/index.json b/site/public/v1/smartphones/lmg710awmh-g7-thinq-lte-a-latam/index.json new file mode 100644 index 00000000000..1effda6a5fc --- /dev/null +++ b/site/public/v1/smartphones/lmg710awmh-g7-thinq-lte-a-latam/index.json @@ -0,0 +1,76 @@ +{ + "id": 1535, + "slug": "lmg710awmh-g7-thinq-lte-a-latam", + "name": "LMG710AWMH G7 ThinQ LTE-A LATAM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 0.0, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.344607", + "updated_at": "2026-06-19T00:43:44.344607" +} diff --git a/site/public/v1/smartphones/lmg710awmh-g7-thinq-lte-a-latam/score/index.json b/site/public/v1/smartphones/lmg710awmh-g7-thinq-lte-a-latam/score/index.json new file mode 100644 index 00000000000..21ef73989e4 --- /dev/null +++ b/site/public/v1/smartphones/lmg710awmh-g7-thinq-lte-a-latam/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 0.0, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null +} diff --git a/site/public/v1/smartphones/lmg710eaw-g7-thinq-dual-sim-td-lte-apac/index.json b/site/public/v1/smartphones/lmg710eaw-g7-thinq-dual-sim-td-lte-apac/index.json new file mode 100644 index 00000000000..6ee03724137 --- /dev/null +++ b/site/public/v1/smartphones/lmg710eaw-g7-thinq-dual-sim-td-lte-apac/index.json @@ -0,0 +1,76 @@ +{ + "id": 1536, + "slug": "lmg710eaw-g7-thinq-dual-sim-td-lte-apac", + "name": "LMG710EAW G7+ ThinQ Dual SIM TD-LTE APAC", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.3, + "performance": 1.5, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.344607", + "updated_at": "2026-06-19T00:43:44.344607" +} diff --git a/site/public/v1/smartphones/lmg710eaw-g7-thinq-dual-sim-td-lte-apac/score/index.json b/site/public/v1/smartphones/lmg710eaw-g7-thinq-dual-sim-td-lte-apac/score/index.json new file mode 100644 index 00000000000..f738a3879c1 --- /dev/null +++ b/site/public/v1/smartphones/lmg710eaw-g7-thinq-dual-sim-td-lte-apac/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.3, + "performance": 1.5, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null +} diff --git a/site/public/v1/smartphones/lmg710em-g7-thinq-td-lte-emea-latam/index.json b/site/public/v1/smartphones/lmg710em-g7-thinq-td-lte-emea-latam/index.json new file mode 100644 index 00000000000..141d00e281c --- /dev/null +++ b/site/public/v1/smartphones/lmg710em-g7-thinq-td-lte-emea-latam/index.json @@ -0,0 +1,76 @@ +{ + "id": 1537, + "slug": "lmg710em-g7-thinq-td-lte-emea-latam", + "name": "LMG710EM G7 ThinQ TD-LTE EMEA LATAM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-06-18", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 0.0, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.344607", + "updated_at": "2026-06-19T00:43:44.344607" +} diff --git a/site/public/v1/smartphones/lmg710em-g7-thinq-td-lte-emea-latam/score/index.json b/site/public/v1/smartphones/lmg710em-g7-thinq-td-lte-emea-latam/score/index.json new file mode 100644 index 00000000000..21ef73989e4 --- /dev/null +++ b/site/public/v1/smartphones/lmg710em-g7-thinq-td-lte-emea-latam/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 0.0, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null +} diff --git a/site/public/v1/smartphones/lmg710emw-g7-thinq-dual-sim-td-lte-apac-latam/index.json b/site/public/v1/smartphones/lmg710emw-g7-thinq-dual-sim-td-lte-apac-latam/index.json new file mode 100644 index 00000000000..b22f1e266c3 --- /dev/null +++ b/site/public/v1/smartphones/lmg710emw-g7-thinq-dual-sim-td-lte-apac-latam/index.json @@ -0,0 +1,76 @@ +{ + "id": 1538, + "slug": "lmg710emw-g7-thinq-dual-sim-td-lte-apac-latam", + "name": "LMG710EMW G7 ThinQ Dual SIM TD-LTE APAC LATAM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 0.0, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.344607", + "updated_at": "2026-06-19T00:43:44.344607" +} diff --git a/site/public/v1/smartphones/lmg710emw-g7-thinq-dual-sim-td-lte-apac-latam/score/index.json b/site/public/v1/smartphones/lmg710emw-g7-thinq-dual-sim-td-lte-apac-latam/score/index.json new file mode 100644 index 00000000000..21ef73989e4 --- /dev/null +++ b/site/public/v1/smartphones/lmg710emw-g7-thinq-dual-sim-td-lte-apac-latam/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 0.0, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null +} diff --git a/site/public/v1/smartphones/lmg710pm-g7-thinq-td-lte-us/index.json b/site/public/v1/smartphones/lmg710pm-g7-thinq-td-lte-us/index.json new file mode 100644 index 00000000000..5ee8d2c03d7 --- /dev/null +++ b/site/public/v1/smartphones/lmg710pm-g7-thinq-td-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 1539, + "slug": "lmg710pm-g7-thinq-td-lte-us", + "name": "LMG710PM G7 ThinQ TD-LTE US", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-06-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 0.0, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.344607", + "updated_at": "2026-06-19T00:43:44.344607" +} diff --git a/site/public/v1/smartphones/lmg710pm-g7-thinq-td-lte-us/score/index.json b/site/public/v1/smartphones/lmg710pm-g7-thinq-td-lte-us/score/index.json new file mode 100644 index 00000000000..21ef73989e4 --- /dev/null +++ b/site/public/v1/smartphones/lmg710pm-g7-thinq-td-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 0.0, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null +} diff --git a/site/public/v1/smartphones/lmg710tm-g7-thinq-td-lte-us/index.json b/site/public/v1/smartphones/lmg710tm-g7-thinq-td-lte-us/index.json new file mode 100644 index 00000000000..19e58045a7f --- /dev/null +++ b/site/public/v1/smartphones/lmg710tm-g7-thinq-td-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 1540, + "slug": "lmg710tm-g7-thinq-td-lte-us", + "name": "LMG710TM G7 ThinQ TD-LTE US", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-06-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 0.0, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.344607", + "updated_at": "2026-06-19T00:43:44.344607" +} diff --git a/site/public/v1/smartphones/lmg710tm-g7-thinq-td-lte-us/score/index.json b/site/public/v1/smartphones/lmg710tm-g7-thinq-td-lte-us/score/index.json new file mode 100644 index 00000000000..21ef73989e4 --- /dev/null +++ b/site/public/v1/smartphones/lmg710tm-g7-thinq-td-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 0.0, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null +} diff --git a/site/public/v1/smartphones/lmg710ulm-g7-thinq-td-lte-na/index.json b/site/public/v1/smartphones/lmg710ulm-g7-thinq-td-lte-na/index.json new file mode 100644 index 00000000000..2cdbb23ee2f --- /dev/null +++ b/site/public/v1/smartphones/lmg710ulm-g7-thinq-td-lte-na/index.json @@ -0,0 +1,76 @@ +{ + "id": 1541, + "slug": "lmg710ulm-g7-thinq-td-lte-na", + "name": "LMG710ULM G7 ThinQ TD-LTE NA", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-06-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 0.0, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.344607", + "updated_at": "2026-06-19T00:43:44.344607" +} diff --git a/site/public/v1/smartphones/lmg710ulm-g7-thinq-td-lte-na/score/index.json b/site/public/v1/smartphones/lmg710ulm-g7-thinq-td-lte-na/score/index.json new file mode 100644 index 00000000000..21ef73989e4 --- /dev/null +++ b/site/public/v1/smartphones/lmg710ulm-g7-thinq-td-lte-na/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 0.0, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null +} diff --git a/site/public/v1/smartphones/lmg710vm-g7-thinq-xlte-us-g710vmp/index.json b/site/public/v1/smartphones/lmg710vm-g7-thinq-xlte-us-g710vmp/index.json new file mode 100644 index 00000000000..83e7be6b7b2 --- /dev/null +++ b/site/public/v1/smartphones/lmg710vm-g7-thinq-xlte-us-g710vmp/index.json @@ -0,0 +1,76 @@ +{ + "id": 1542, + "slug": "lmg710vm-g7-thinq-xlte-us-g710vmp", + "name": "LMG710VM G7 ThinQ XLTE US / G710VMP", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-06-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 0.0, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.344607", + "updated_at": "2026-06-19T00:43:44.344607" +} diff --git a/site/public/v1/smartphones/lmg710vm-g7-thinq-xlte-us-g710vmp/score/index.json b/site/public/v1/smartphones/lmg710vm-g7-thinq-xlte-us-g710vmp/score/index.json new file mode 100644 index 00000000000..21ef73989e4 --- /dev/null +++ b/site/public/v1/smartphones/lmg710vm-g7-thinq-xlte-us-g710vmp/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 0.0, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null +} diff --git a/site/public/v1/smartphones/lmg710vmx-g7-thinq-lte-a-us-g710vmx/index.json b/site/public/v1/smartphones/lmg710vmx-g7-thinq-lte-a-us-g710vmx/index.json new file mode 100644 index 00000000000..a557ad2d328 --- /dev/null +++ b/site/public/v1/smartphones/lmg710vmx-g7-thinq-lte-a-us-g710vmx/index.json @@ -0,0 +1,76 @@ +{ + "id": 1543, + "slug": "lmg710vmx-g7-thinq-lte-a-us-g710vmx", + "name": "LMG710VMX G7 ThinQ LTE-A US G710VMX", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 0.0, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.345606", + "updated_at": "2026-06-19T00:43:44.345606" +} diff --git a/site/public/v1/smartphones/lmg710vmx-g7-thinq-lte-a-us-g710vmx/score/index.json b/site/public/v1/smartphones/lmg710vmx-g7-thinq-lte-a-us-g710vmx/score/index.json new file mode 100644 index 00000000000..21ef73989e4 --- /dev/null +++ b/site/public/v1/smartphones/lmg710vmx-g7-thinq-lte-a-us-g710vmx/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 0.0, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null +} diff --git a/site/public/v1/smartphones/lmg810ea-g8s-thinq-global-td-lte/index.json b/site/public/v1/smartphones/lmg810ea-g8s-thinq-global-td-lte/index.json new file mode 100644 index 00000000000..5c710747f41 --- /dev/null +++ b/site/public/v1/smartphones/lmg810ea-g8s-thinq-global-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 1631, + "slug": "lmg810ea-g8s-thinq-global-td-lte", + "name": "LMG810EA G8S ThinQ Global TD-LTE", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-07-06", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2248", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3550, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 1.5, + "camera": 5.1, + "battery": 8.8, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.355605", + "updated_at": "2026-06-19T00:43:44.355605" +} diff --git a/site/public/v1/smartphones/lmg810ea-g8s-thinq-global-td-lte/score/index.json b/site/public/v1/smartphones/lmg810ea-g8s-thinq-global-td-lte/score/index.json new file mode 100644 index 00000000000..8cf8522f81d --- /dev/null +++ b/site/public/v1/smartphones/lmg810ea-g8s-thinq-global-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 1.5, + "camera": 5.1, + "battery": 8.8, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/lmg810eaw-g8s-thinq-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/lmg810eaw-g8s-thinq-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..ccdc9f426f6 --- /dev/null +++ b/site/public/v1/smartphones/lmg810eaw-g8s-thinq-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 1632, + "slug": "lmg810eaw-g8s-thinq-global-dual-sim-td-lte", + "name": "LMG810EAW G8S ThinQ Global Dual SIM TD-LTE", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-28", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2248", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3550, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 1.5, + "camera": 5.1, + "battery": 8.8, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.355605", + "updated_at": "2026-06-19T00:43:44.355605" +} diff --git a/site/public/v1/smartphones/lmg810eaw-g8s-thinq-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/lmg810eaw-g8s-thinq-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..8cf8522f81d --- /dev/null +++ b/site/public/v1/smartphones/lmg810eaw-g8s-thinq-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 1.5, + "camera": 5.1, + "battery": 8.8, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/lmg820n-g8-thinq-td-lte-kr-g820n/index.json b/site/public/v1/smartphones/lmg820n-g8-thinq-td-lte-kr-g820n/index.json new file mode 100644 index 00000000000..e580f8bb8c0 --- /dev/null +++ b/site/public/v1/smartphones/lmg820n-g8-thinq-td-lte-kr-g820n/index.json @@ -0,0 +1,76 @@ +{ + "id": 1633, + "slug": "lmg820n-g8-thinq-td-lte-kr-g820n", + "name": "LMG820N G8 ThinQ TD-LTE KR G820N", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 565 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "battery_mah": 3500, + "charging_wired_w": 21.0, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 1.5, + "camera": 5.1, + "battery": 8.7, + "display": 61.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.355605", + "updated_at": "2026-06-19T00:43:44.355605" +} diff --git a/site/public/v1/smartphones/lmg820n-g8-thinq-td-lte-kr-g820n/score/index.json b/site/public/v1/smartphones/lmg820n-g8-thinq-td-lte-kr-g820n/score/index.json new file mode 100644 index 00000000000..1e8860afdd4 --- /dev/null +++ b/site/public/v1/smartphones/lmg820n-g8-thinq-td-lte-kr-g820n/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 1.5, + "camera": 5.1, + "battery": 8.7, + "display": 61.5, + "value": null +} diff --git a/site/public/v1/smartphones/lmg820qm5-g8-thinq-td-lte-us-g820qm-lmg820qm7d/index.json b/site/public/v1/smartphones/lmg820qm5-g8-thinq-td-lte-us-g820qm-lmg820qm7d/index.json new file mode 100644 index 00000000000..7c7d9fcfed7 --- /dev/null +++ b/site/public/v1/smartphones/lmg820qm5-g8-thinq-td-lte-us-g820qm-lmg820qm7d/index.json @@ -0,0 +1,76 @@ +{ + "id": 1634, + "slug": "lmg820qm5-g8-thinq-td-lte-us-g820qm-lmg820qm7d", + "name": "LMG820QM5 G8 ThinQ TD-LTE US G820QM / LMG820QM7D", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 565 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "battery_mah": 3500, + "charging_wired_w": 21.0, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 1.5, + "camera": 5.1, + "battery": 8.7, + "display": 61.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.355605", + "updated_at": "2026-06-19T00:43:44.355605" +} diff --git a/site/public/v1/smartphones/lmg820qm5-g8-thinq-td-lte-us-g820qm-lmg820qm7d/score/index.json b/site/public/v1/smartphones/lmg820qm5-g8-thinq-td-lte-us-g820qm-lmg820qm7d/score/index.json new file mode 100644 index 00000000000..1e8860afdd4 --- /dev/null +++ b/site/public/v1/smartphones/lmg820qm5-g8-thinq-td-lte-us-g820qm-lmg820qm7d/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 1.5, + "camera": 5.1, + "battery": 8.7, + "display": 61.5, + "value": null +} diff --git a/site/public/v1/smartphones/lmg820qm7-g8-thinq-td-lte-us-g820qm-lmg820qm8/index.json b/site/public/v1/smartphones/lmg820qm7-g8-thinq-td-lte-us-g820qm-lmg820qm8/index.json new file mode 100644 index 00000000000..efc8a22ed40 --- /dev/null +++ b/site/public/v1/smartphones/lmg820qm7-g8-thinq-td-lte-us-g820qm-lmg820qm8/index.json @@ -0,0 +1,76 @@ +{ + "id": 1635, + "slug": "lmg820qm7-g8-thinq-td-lte-us-g820qm-lmg820qm8", + "name": "LMG820QM7 G8 ThinQ TD-LTE US G820QM / LMG820QM8", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 565 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "battery_mah": 3500, + "charging_wired_w": 21.0, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 1.5, + "camera": 5.1, + "battery": 8.7, + "display": 61.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.355605", + "updated_at": "2026-06-19T00:43:44.355605" +} diff --git a/site/public/v1/smartphones/lmg820qm7-g8-thinq-td-lte-us-g820qm-lmg820qm8/score/index.json b/site/public/v1/smartphones/lmg820qm7-g8-thinq-td-lte-us-g820qm-lmg820qm8/score/index.json new file mode 100644 index 00000000000..1e8860afdd4 --- /dev/null +++ b/site/public/v1/smartphones/lmg820qm7-g8-thinq-td-lte-us-g820qm-lmg820qm8/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 1.5, + "camera": 5.1, + "battery": 8.7, + "display": 61.5, + "value": null +} diff --git a/site/public/v1/smartphones/lmg820tmb-g8-thinq-td-lte-us-g820tm/index.json b/site/public/v1/smartphones/lmg820tmb-g8-thinq-td-lte-us-g820tm/index.json new file mode 100644 index 00000000000..381ae00ecc8 --- /dev/null +++ b/site/public/v1/smartphones/lmg820tmb-g8-thinq-td-lte-us-g820tm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1636, + "slug": "lmg820tmb-g8-thinq-td-lte-us-g820tm", + "name": "LMG820TMB G8 ThinQ TD-LTE US G820TM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-04-11", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 565 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "battery_mah": 3500, + "charging_wired_w": 21.0, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 1.5, + "camera": 5.1, + "battery": 8.7, + "display": 61.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.356605", + "updated_at": "2026-06-19T00:43:44.356605" +} diff --git a/site/public/v1/smartphones/lmg820tmb-g8-thinq-td-lte-us-g820tm/score/index.json b/site/public/v1/smartphones/lmg820tmb-g8-thinq-td-lte-us-g820tm/score/index.json new file mode 100644 index 00000000000..1e8860afdd4 --- /dev/null +++ b/site/public/v1/smartphones/lmg820tmb-g8-thinq-td-lte-us-g820tm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 1.5, + "camera": 5.1, + "battery": 8.7, + "display": 61.5, + "value": null +} diff --git a/site/public/v1/smartphones/lmg820um0-g8-thinq-td-lte-us-g820um/index.json b/site/public/v1/smartphones/lmg820um0-g8-thinq-td-lte-us-g820um/index.json new file mode 100644 index 00000000000..3c85977d70c --- /dev/null +++ b/site/public/v1/smartphones/lmg820um0-g8-thinq-td-lte-us-g820um/index.json @@ -0,0 +1,76 @@ +{ + "id": 1637, + "slug": "lmg820um0-g8-thinq-td-lte-us-g820um", + "name": "LMG820UM0 G8 ThinQ TD-LTE US G820UM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-04-11", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 565 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "battery_mah": 3500, + "charging_wired_w": 21.0, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 1.5, + "camera": 5.1, + "battery": 8.7, + "display": 61.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.356605", + "updated_at": "2026-06-19T00:43:44.356605" +} diff --git a/site/public/v1/smartphones/lmg820um0-g8-thinq-td-lte-us-g820um/score/index.json b/site/public/v1/smartphones/lmg820um0-g8-thinq-td-lte-us-g820um/score/index.json new file mode 100644 index 00000000000..1e8860afdd4 --- /dev/null +++ b/site/public/v1/smartphones/lmg820um0-g8-thinq-td-lte-us-g820um/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 1.5, + "camera": 5.1, + "battery": 8.7, + "display": 61.5, + "value": null +} diff --git a/site/public/v1/smartphones/lmg820um1-g8-thinq-td-lte-us-g820um/index.json b/site/public/v1/smartphones/lmg820um1-g8-thinq-td-lte-us-g820um/index.json new file mode 100644 index 00000000000..863bd2a8bd2 --- /dev/null +++ b/site/public/v1/smartphones/lmg820um1-g8-thinq-td-lte-us-g820um/index.json @@ -0,0 +1,76 @@ +{ + "id": 1638, + "slug": "lmg820um1-g8-thinq-td-lte-us-g820um", + "name": "LMG820UM1 G8 ThinQ TD-LTE US G820UM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-04-11", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 565 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "battery_mah": 3500, + "charging_wired_w": 21.0, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 1.5, + "camera": 5.1, + "battery": 8.7, + "display": 61.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.356605", + "updated_at": "2026-06-19T00:43:44.356605" +} diff --git a/site/public/v1/smartphones/lmg820um1-g8-thinq-td-lte-us-g820um/score/index.json b/site/public/v1/smartphones/lmg820um1-g8-thinq-td-lte-us-g820um/score/index.json new file mode 100644 index 00000000000..1e8860afdd4 --- /dev/null +++ b/site/public/v1/smartphones/lmg820um1-g8-thinq-td-lte-us-g820um/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 1.5, + "camera": 5.1, + "battery": 8.7, + "display": 61.5, + "value": null +} diff --git a/site/public/v1/smartphones/lmg820um2-g8-thinq-td-lte-na-g820um/index.json b/site/public/v1/smartphones/lmg820um2-g8-thinq-td-lte-na-g820um/index.json new file mode 100644 index 00000000000..b39d93ce65e --- /dev/null +++ b/site/public/v1/smartphones/lmg820um2-g8-thinq-td-lte-na-g820um/index.json @@ -0,0 +1,76 @@ +{ + "id": 1639, + "slug": "lmg820um2-g8-thinq-td-lte-na-g820um", + "name": "LMG820UM2 G8 ThinQ TD-LTE NA G820UM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 565 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "battery_mah": 3500, + "charging_wired_w": 21.0, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 1.5, + "camera": 5.1, + "battery": 8.7, + "display": 61.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.356605", + "updated_at": "2026-06-19T00:43:44.356605" +} diff --git a/site/public/v1/smartphones/lmg820um2-g8-thinq-td-lte-na-g820um/score/index.json b/site/public/v1/smartphones/lmg820um2-g8-thinq-td-lte-na-g820um/score/index.json new file mode 100644 index 00000000000..1e8860afdd4 --- /dev/null +++ b/site/public/v1/smartphones/lmg820um2-g8-thinq-td-lte-na-g820um/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 1.5, + "camera": 5.1, + "battery": 8.7, + "display": 61.5, + "value": null +} diff --git a/site/public/v1/smartphones/lmg820um3-g8-thinq-td-lte-us-g820um/index.json b/site/public/v1/smartphones/lmg820um3-g8-thinq-td-lte-us-g820um/index.json new file mode 100644 index 00000000000..21d5bb1ee99 --- /dev/null +++ b/site/public/v1/smartphones/lmg820um3-g8-thinq-td-lte-us-g820um/index.json @@ -0,0 +1,76 @@ +{ + "id": 1640, + "slug": "lmg820um3-g8-thinq-td-lte-us-g820um", + "name": "LMG820UM3 G8 ThinQ TD-LTE US G820UM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 565 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "battery_mah": 3500, + "charging_wired_w": 21.0, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 1.5, + "camera": 5.1, + "battery": 8.7, + "display": 61.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.356605", + "updated_at": "2026-06-19T00:43:44.356605" +} diff --git a/site/public/v1/smartphones/lmg820um3-g8-thinq-td-lte-us-g820um/score/index.json b/site/public/v1/smartphones/lmg820um3-g8-thinq-td-lte-us-g820um/score/index.json new file mode 100644 index 00000000000..1e8860afdd4 --- /dev/null +++ b/site/public/v1/smartphones/lmg820um3-g8-thinq-td-lte-us-g820um/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 1.5, + "camera": 5.1, + "battery": 8.7, + "display": 61.5, + "value": null +} diff --git a/site/public/v1/smartphones/lmg820umb-g8-thinq-lte-a-us-g820um/index.json b/site/public/v1/smartphones/lmg820umb-g8-thinq-lte-a-us-g820um/index.json new file mode 100644 index 00000000000..819916667b4 --- /dev/null +++ b/site/public/v1/smartphones/lmg820umb-g8-thinq-lte-a-us-g820um/index.json @@ -0,0 +1,76 @@ +{ + "id": 1641, + "slug": "lmg820umb-g8-thinq-lte-a-us-g820um", + "name": "LMG820UMB G8 ThinQ LTE-A US G820UM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-04-11", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 565 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "battery_mah": 3500, + "charging_wired_w": 21.0, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 1.5, + "camera": 5.1, + "battery": 8.7, + "display": 61.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.356605", + "updated_at": "2026-06-19T00:43:44.356605" +} diff --git a/site/public/v1/smartphones/lmg820umb-g8-thinq-lte-a-us-g820um/score/index.json b/site/public/v1/smartphones/lmg820umb-g8-thinq-lte-a-us-g820um/score/index.json new file mode 100644 index 00000000000..1e8860afdd4 --- /dev/null +++ b/site/public/v1/smartphones/lmg820umb-g8-thinq-lte-a-us-g820um/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 1.5, + "camera": 5.1, + "battery": 8.7, + "display": 61.5, + "value": null +} diff --git a/site/public/v1/smartphones/lmg850em-g8x-thinq-global-td-lte-g850em/index.json b/site/public/v1/smartphones/lmg850em-g8x-thinq-global-td-lte-g850em/index.json new file mode 100644 index 00000000000..468a629ef87 --- /dev/null +++ b/site/public/v1/smartphones/lmg850em-g8x-thinq-global-td-lte-g850em/index.json @@ -0,0 +1,76 @@ +{ + "id": 1642, + "slug": "lmg850em-g8x-thinq-global-td-lte-g850em", + "name": "LMG850EM G8X ThinQ Global TD-LTE G850EM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-12-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 21.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 5.1, + "battery": 16.1, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.356605", + "updated_at": "2026-06-19T00:43:44.356605" +} diff --git a/site/public/v1/smartphones/lmg850em-g8x-thinq-global-td-lte-g850em/score/index.json b/site/public/v1/smartphones/lmg850em-g8x-thinq-global-td-lte-g850em/score/index.json new file mode 100644 index 00000000000..398da0cfab3 --- /dev/null +++ b/site/public/v1/smartphones/lmg850em-g8x-thinq-global-td-lte-g850em/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 5.1, + "battery": 16.1, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/lmg850emw-g8x-thinq-global-dual-sim-td-lte-g850emw/index.json b/site/public/v1/smartphones/lmg850emw-g8x-thinq-global-dual-sim-td-lte-g850emw/index.json new file mode 100644 index 00000000000..ee9eb325ef5 --- /dev/null +++ b/site/public/v1/smartphones/lmg850emw-g8x-thinq-global-dual-sim-td-lte-g850emw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1643, + "slug": "lmg850emw-g8x-thinq-global-dual-sim-td-lte-g850emw", + "name": "LMG850EMW G8X ThinQ Global Dual SIM TD-LTE G850EMW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-12-12", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 21.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 5.1, + "battery": 16.1, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.356605", + "updated_at": "2026-06-19T00:43:44.356605" +} diff --git a/site/public/v1/smartphones/lmg850emw-g8x-thinq-global-dual-sim-td-lte-g850emw/score/index.json b/site/public/v1/smartphones/lmg850emw-g8x-thinq-global-dual-sim-td-lte-g850emw/score/index.json new file mode 100644 index 00000000000..398da0cfab3 --- /dev/null +++ b/site/public/v1/smartphones/lmg850emw-g8x-thinq-global-dual-sim-td-lte-g850emw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 5.1, + "battery": 16.1, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/lmg850qm-g8x-thinq-td-lte-us-g850qm7x/index.json b/site/public/v1/smartphones/lmg850qm-g8x-thinq-td-lte-us-g850qm7x/index.json new file mode 100644 index 00000000000..58cc7790fe4 --- /dev/null +++ b/site/public/v1/smartphones/lmg850qm-g8x-thinq-td-lte-us-g850qm7x/index.json @@ -0,0 +1,76 @@ +{ + "id": 1644, + "slug": "lmg850qm-g8x-thinq-td-lte-us-g850qm7x", + "name": "LMG850QM G8X ThinQ TD-LTE US G850QM7X", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-11-01", + "msrp_usd": 950, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 21.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 5.1, + "battery": 16.1, + "display": 45.3, + "value": 33.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.356605", + "updated_at": "2026-06-19T00:43:44.356605" +} diff --git a/site/public/v1/smartphones/lmg850qm-g8x-thinq-td-lte-us-g850qm7x/score/index.json b/site/public/v1/smartphones/lmg850qm-g8x-thinq-td-lte-us-g850qm7x/score/index.json new file mode 100644 index 00000000000..6370b17dff8 --- /dev/null +++ b/site/public/v1/smartphones/lmg850qm-g8x-thinq-td-lte-us-g850qm7x/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 5.1, + "battery": 16.1, + "display": 45.3, + "value": 33.5 +} diff --git a/site/public/v1/smartphones/lmg850um-g8x-thinq-td-lte-na-g850um/index.json b/site/public/v1/smartphones/lmg850um-g8x-thinq-td-lte-na-g850um/index.json new file mode 100644 index 00000000000..6ebc6d34254 --- /dev/null +++ b/site/public/v1/smartphones/lmg850um-g8x-thinq-td-lte-na-g850um/index.json @@ -0,0 +1,76 @@ +{ + "id": 1732, + "slug": "lmg850um-g8x-thinq-td-lte-na-g850um", + "name": "LMG850UM G8X ThinQ TD-LTE NA G850UM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2020-01-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 21.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 5.1, + "battery": 16.1, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.369610", + "updated_at": "2026-06-19T00:43:44.369610" +} diff --git a/site/public/v1/smartphones/lmg850um-g8x-thinq-td-lte-na-g850um/score/index.json b/site/public/v1/smartphones/lmg850um-g8x-thinq-td-lte-na-g850um/score/index.json new file mode 100644 index 00000000000..398da0cfab3 --- /dev/null +++ b/site/public/v1/smartphones/lmg850um-g8x-thinq-td-lte-na-g850um/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 5.1, + "battery": 16.1, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/lmg850um1-g8x-thinq-td-lte-us-g850um1/index.json b/site/public/v1/smartphones/lmg850um1-g8x-thinq-td-lte-us-g850um1/index.json new file mode 100644 index 00000000000..b17f93f23ec --- /dev/null +++ b/site/public/v1/smartphones/lmg850um1-g8x-thinq-td-lte-us-g850um1/index.json @@ -0,0 +1,76 @@ +{ + "id": 1645, + "slug": "lmg850um1-g8x-thinq-td-lte-us-g850um1", + "name": "LMG850UM1 G8X ThinQ TD-LTE US G850UM1", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 21.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 5.1, + "battery": 16.1, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.356605", + "updated_at": "2026-06-19T00:43:44.356605" +} diff --git a/site/public/v1/smartphones/lmg850um1-g8x-thinq-td-lte-us-g850um1/score/index.json b/site/public/v1/smartphones/lmg850um1-g8x-thinq-td-lte-us-g850um1/score/index.json new file mode 100644 index 00000000000..398da0cfab3 --- /dev/null +++ b/site/public/v1/smartphones/lmg850um1-g8x-thinq-td-lte-us-g850um1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 5.1, + "battery": 16.1, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/lmg850um9-g8x-thinq-td-lte-us-g850um9/index.json b/site/public/v1/smartphones/lmg850um9-g8x-thinq-td-lte-us-g850um9/index.json new file mode 100644 index 00000000000..ea4ac973c72 --- /dev/null +++ b/site/public/v1/smartphones/lmg850um9-g8x-thinq-td-lte-us-g850um9/index.json @@ -0,0 +1,76 @@ +{ + "id": 1646, + "slug": "lmg850um9-g8x-thinq-td-lte-us-g850um9", + "name": "LMG850UM9 G8X ThinQ TD-LTE US G850UM9", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 21.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 5.1, + "battery": 16.1, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.357605", + "updated_at": "2026-06-19T00:43:44.357605" +} diff --git a/site/public/v1/smartphones/lmg850um9-g8x-thinq-td-lte-us-g850um9/score/index.json b/site/public/v1/smartphones/lmg850um9-g8x-thinq-td-lte-us-g850um9/score/index.json new file mode 100644 index 00000000000..398da0cfab3 --- /dev/null +++ b/site/public/v1/smartphones/lmg850um9-g8x-thinq-td-lte-us-g850um9/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 5.1, + "battery": 16.1, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/lmg900em-velvet-5g-global-td-lte-g900em/index.json b/site/public/v1/smartphones/lmg900em-velvet-5g-global-td-lte-g900em/index.json new file mode 100644 index 00000000000..d074fcac4e6 --- /dev/null +++ b/site/public/v1/smartphones/lmg900em-velvet-5g-global-td-lte-g900em/index.json @@ -0,0 +1,76 @@ +{ + "id": 1733, + "slug": "lmg900em-velvet-5g-global-td-lte-g900em", + "name": "LMG900EM Velvet 5G Global TD-LTE G900EM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-06-01", + "msrp_usd": 649, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 179.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 1.5, + "camera": 16.5, + "battery": 21.4, + "display": 44.5, + "value": 47.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.369610", + "updated_at": "2026-06-19T00:43:44.369610" +} diff --git a/site/public/v1/smartphones/lmg900em-velvet-5g-global-td-lte-g900em/score/index.json b/site/public/v1/smartphones/lmg900em-velvet-5g-global-td-lte-g900em/score/index.json new file mode 100644 index 00000000000..d523f9cc40f --- /dev/null +++ b/site/public/v1/smartphones/lmg900em-velvet-5g-global-td-lte-g900em/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 1.5, + "camera": 16.5, + "battery": 21.4, + "display": 44.5, + "value": 47.1 +} diff --git a/site/public/v1/smartphones/lmg900emw-velvet-5g-global-dual-sim-td-lte-g900emw/index.json b/site/public/v1/smartphones/lmg900emw-velvet-5g-global-dual-sim-td-lte-g900emw/index.json new file mode 100644 index 00000000000..15ac5a44850 --- /dev/null +++ b/site/public/v1/smartphones/lmg900emw-velvet-5g-global-dual-sim-td-lte-g900emw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1734, + "slug": "lmg900emw-velvet-5g-global-dual-sim-td-lte-g900emw", + "name": "LMG900EMW Velvet 5G Global Dual SIM TD-LTE G900EMW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-08-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 179.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 1.5, + "camera": 16.5, + "battery": 21.4, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.369610", + "updated_at": "2026-06-19T00:43:44.369610" +} diff --git a/site/public/v1/smartphones/lmg900emw-velvet-5g-global-dual-sim-td-lte-g900emw/score/index.json b/site/public/v1/smartphones/lmg900emw-velvet-5g-global-dual-sim-td-lte-g900emw/score/index.json new file mode 100644 index 00000000000..742d4aa97f3 --- /dev/null +++ b/site/public/v1/smartphones/lmg900emw-velvet-5g-global-dual-sim-td-lte-g900emw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 1.5, + "camera": 16.5, + "battery": 21.4, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/lmg900n-velvet-5g-td-lte-kr-g900n/index.json b/site/public/v1/smartphones/lmg900n-velvet-5g-td-lte-kr-g900n/index.json new file mode 100644 index 00000000000..6a81f53174b --- /dev/null +++ b/site/public/v1/smartphones/lmg900n-velvet-5g-td-lte-kr-g900n/index.json @@ -0,0 +1,76 @@ +{ + "id": 1735, + "slug": "lmg900n-velvet-5g-td-lte-kr-g900n", + "name": "LMG900N Velvet 5G TD-LTE KR G900N", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-05-14", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 3.0, + "camera": 16.5, + "battery": 21.4, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.369610", + "updated_at": "2026-06-19T00:43:44.369610" +} diff --git a/site/public/v1/smartphones/lmg900n-velvet-5g-td-lte-kr-g900n/score/index.json b/site/public/v1/smartphones/lmg900n-velvet-5g-td-lte-kr-g900n/score/index.json new file mode 100644 index 00000000000..25a6102b94b --- /dev/null +++ b/site/public/v1/smartphones/lmg900n-velvet-5g-td-lte-kr-g900n/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 3.0, + "camera": 16.5, + "battery": 21.4, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/lmg900qm-velvet-5g-td-lte-us-g900qm/index.json b/site/public/v1/smartphones/lmg900qm-velvet-5g-td-lte-us-g900qm/index.json new file mode 100644 index 00000000000..60464745ef4 --- /dev/null +++ b/site/public/v1/smartphones/lmg900qm-velvet-5g-td-lte-us-g900qm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1736, + "slug": "lmg900qm-velvet-5g-td-lte-us-g900qm", + "name": "LMG900QM Velvet 5G TD-LTE US G900QM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-08-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 179.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 1.5, + "camera": 16.5, + "battery": 21.4, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.369610", + "updated_at": "2026-06-19T00:43:44.369610" +} diff --git a/site/public/v1/smartphones/lmg900qm-velvet-5g-td-lte-us-g900qm/score/index.json b/site/public/v1/smartphones/lmg900qm-velvet-5g-td-lte-us-g900qm/score/index.json new file mode 100644 index 00000000000..742d4aa97f3 --- /dev/null +++ b/site/public/v1/smartphones/lmg900qm-velvet-5g-td-lte-us-g900qm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 1.5, + "camera": 16.5, + "battery": 21.4, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/lmg900tm-velvet-5g-td-lte-us-g900tmy/index.json b/site/public/v1/smartphones/lmg900tm-velvet-5g-td-lte-us-g900tmy/index.json new file mode 100644 index 00000000000..1b9beed554a --- /dev/null +++ b/site/public/v1/smartphones/lmg900tm-velvet-5g-td-lte-us-g900tmy/index.json @@ -0,0 +1,76 @@ +{ + "id": 1737, + "slug": "lmg900tm-velvet-5g-td-lte-us-g900tmy", + "name": "LMG900TM Velvet 5G TD-LTE US G900TMY", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 47, + "slug": "dimensity-1000", + "name": "Dimensity 1000", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP9", + "url": "/v1/socs/dimensity-1000" + }, + "release_date": "2020-09-09", + "msrp_usd": 588, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "battery_mah": 4300, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 179.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 1.5, + "camera": 16.5, + "battery": 21.4, + "display": 44.5, + "value": 49.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.369610", + "updated_at": "2026-06-19T00:43:44.369610" +} diff --git a/site/public/v1/smartphones/lmg900tm-velvet-5g-td-lte-us-g900tmy/score/index.json b/site/public/v1/smartphones/lmg900tm-velvet-5g-td-lte-us-g900tmy/score/index.json new file mode 100644 index 00000000000..f6b1bde001d --- /dev/null +++ b/site/public/v1/smartphones/lmg900tm-velvet-5g-td-lte-us-g900tmy/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 1.5, + "camera": 16.5, + "battery": 21.4, + "display": 44.5, + "value": 49.4 +} diff --git a/site/public/v1/smartphones/lmg900um1-velvet-5g-td-lte-us-g900um/index.json b/site/public/v1/smartphones/lmg900um1-velvet-5g-td-lte-us-g900um/index.json new file mode 100644 index 00000000000..41c12aea693 --- /dev/null +++ b/site/public/v1/smartphones/lmg900um1-velvet-5g-td-lte-us-g900um/index.json @@ -0,0 +1,76 @@ +{ + "id": 1738, + "slug": "lmg900um1-velvet-5g-td-lte-us-g900um", + "name": "LMG900UM1 Velvet 5G TD-LTE US G900UM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-06-01", + "msrp_usd": 600, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 179.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 1.5, + "camera": 16.5, + "battery": 21.4, + "display": 44.5, + "value": 49.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.369610", + "updated_at": "2026-06-19T00:43:44.369610" +} diff --git a/site/public/v1/smartphones/lmg900um1-velvet-5g-td-lte-us-g900um/score/index.json b/site/public/v1/smartphones/lmg900um1-velvet-5g-td-lte-us-g900um/score/index.json new file mode 100644 index 00000000000..ab50f1213e6 --- /dev/null +++ b/site/public/v1/smartphones/lmg900um1-velvet-5g-td-lte-us-g900um/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 1.5, + "camera": 16.5, + "battery": 21.4, + "display": 44.5, + "value": 49.0 +} diff --git a/site/public/v1/smartphones/lmg900um2-velvet-5g-td-lte-ca-g900um/index.json b/site/public/v1/smartphones/lmg900um2-velvet-5g-td-lte-ca-g900um/index.json new file mode 100644 index 00000000000..81a9d989a90 --- /dev/null +++ b/site/public/v1/smartphones/lmg900um2-velvet-5g-td-lte-ca-g900um/index.json @@ -0,0 +1,76 @@ +{ + "id": 1739, + "slug": "lmg900um2-velvet-5g-td-lte-ca-g900um", + "name": "LMG900UM2 Velvet 5G TD-LTE CA G900UM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-08-07", + "msrp_usd": 750, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 179.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 1.5, + "camera": 16.5, + "battery": 21.4, + "display": 44.5, + "value": 43.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.370631", + "updated_at": "2026-06-19T00:43:44.370631" +} diff --git a/site/public/v1/smartphones/lmg900um2-velvet-5g-td-lte-ca-g900um/score/index.json b/site/public/v1/smartphones/lmg900um2-velvet-5g-td-lte-ca-g900um/score/index.json new file mode 100644 index 00000000000..9791241f6c3 --- /dev/null +++ b/site/public/v1/smartphones/lmg900um2-velvet-5g-td-lte-ca-g900um/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 1.5, + "camera": 16.5, + "battery": 21.4, + "display": 44.5, + "value": 43.2 +} diff --git a/site/public/v1/smartphones/lmg900vm-velvet-5g-uw-td-lte-us-g900vm/index.json b/site/public/v1/smartphones/lmg900vm-velvet-5g-uw-td-lte-us-g900vm/index.json new file mode 100644 index 00000000000..8810fbdf810 --- /dev/null +++ b/site/public/v1/smartphones/lmg900vm-velvet-5g-uw-td-lte-us-g900vm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1740, + "slug": "lmg900vm-velvet-5g-uw-td-lte-us-g900vm", + "name": "LMG900VM Velvet 5G UW TD-LTE US G900VM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-08-24", + "msrp_usd": 700, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 1.5, + "camera": 16.5, + "battery": 21.4, + "display": 44.5, + "value": 45.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.370631", + "updated_at": "2026-06-19T00:43:44.370631" +} diff --git a/site/public/v1/smartphones/lmg900vm-velvet-5g-uw-td-lte-us-g900vm/score/index.json b/site/public/v1/smartphones/lmg900vm-velvet-5g-uw-td-lte-us-g900vm/score/index.json new file mode 100644 index 00000000000..f66debf590c --- /dev/null +++ b/site/public/v1/smartphones/lmg900vm-velvet-5g-uw-td-lte-us-g900vm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 1.5, + "camera": 16.5, + "battery": 21.4, + "display": 44.5, + "value": 45.1 +} diff --git a/site/public/v1/smartphones/lmg910emw-velvet-4g-global-dual-sim-td-lte-g910emw/index.json b/site/public/v1/smartphones/lmg910emw-velvet-4g-global-dual-sim-td-lte-g910emw/index.json new file mode 100644 index 00000000000..28e2c425ff0 --- /dev/null +++ b/site/public/v1/smartphones/lmg910emw-velvet-4g-global-dual-sim-td-lte-g910emw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1741, + "slug": "lmg910emw-velvet-4g-global-dual-sim-td-lte-g910emw", + "name": "LMG910EMW Velvet 4G Global Dual SIM TD-LTE G910EMW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2020-08-02", + "msrp_usd": 599, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 179.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 1.5, + "camera": 16.5, + "battery": 21.4, + "display": 44.5, + "value": 49.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.370631", + "updated_at": "2026-06-19T00:43:44.370631" +} diff --git a/site/public/v1/smartphones/lmg910emw-velvet-4g-global-dual-sim-td-lte-g910emw/score/index.json b/site/public/v1/smartphones/lmg910emw-velvet-4g-global-dual-sim-td-lte-g910emw/score/index.json new file mode 100644 index 00000000000..ab50f1213e6 --- /dev/null +++ b/site/public/v1/smartphones/lmg910emw-velvet-4g-global-dual-sim-td-lte-g910emw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 1.5, + "camera": 16.5, + "battery": 21.4, + "display": 44.5, + "value": 49.0 +} diff --git a/site/public/v1/smartphones/lmg910hm-velvet-4g-td-lte-latam-g910hm/index.json b/site/public/v1/smartphones/lmg910hm-velvet-4g-td-lte-latam-g910hm/index.json new file mode 100644 index 00000000000..ffedfdbfe1c --- /dev/null +++ b/site/public/v1/smartphones/lmg910hm-velvet-4g-td-lte-latam-g910hm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1742, + "slug": "lmg910hm-velvet-4g-td-lte-latam-g910hm", + "name": "LMG910HM Velvet 4G TD-LTE LATAM G910HM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2020-08-28", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 179.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 1.5, + "camera": 16.5, + "battery": 21.4, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.370631", + "updated_at": "2026-06-19T00:43:44.370631" +} diff --git a/site/public/v1/smartphones/lmg910hm-velvet-4g-td-lte-latam-g910hm/score/index.json b/site/public/v1/smartphones/lmg910hm-velvet-4g-td-lte-latam-g910hm/score/index.json new file mode 100644 index 00000000000..742d4aa97f3 --- /dev/null +++ b/site/public/v1/smartphones/lmg910hm-velvet-4g-td-lte-latam-g910hm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 1.5, + "camera": 16.5, + "battery": 21.4, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/lmg910hmw-velvet-4g-dual-sim-td-lte-latam-g910hmw/index.json b/site/public/v1/smartphones/lmg910hmw-velvet-4g-dual-sim-td-lte-latam-g910hmw/index.json new file mode 100644 index 00000000000..a9a28a5b82a --- /dev/null +++ b/site/public/v1/smartphones/lmg910hmw-velvet-4g-dual-sim-td-lte-latam-g910hmw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1743, + "slug": "lmg910hmw-velvet-4g-dual-sim-td-lte-latam-g910hmw", + "name": "LMG910HMW Velvet 4G Dual SIM TD-LTE LATAM G910HMW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2020-08-28", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 179.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 1.5, + "camera": 16.5, + "battery": 21.4, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.370631", + "updated_at": "2026-06-19T00:43:44.370631" +} diff --git a/site/public/v1/smartphones/lmg910hmw-velvet-4g-dual-sim-td-lte-latam-g910hmw/score/index.json b/site/public/v1/smartphones/lmg910hmw-velvet-4g-dual-sim-td-lte-latam-g910hmw/score/index.json new file mode 100644 index 00000000000..742d4aa97f3 --- /dev/null +++ b/site/public/v1/smartphones/lmg910hmw-velvet-4g-dual-sim-td-lte-latam-g910hmw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 1.5, + "camera": 16.5, + "battery": 21.4, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/lmk200baw-k-series-k22-2020-dual-sim-td-lte-latam-k200baw/index.json b/site/public/v1/smartphones/lmk200baw-k-series-k22-2020-dual-sim-td-lte-latam-k200baw/index.json new file mode 100644 index 00000000000..7dd5087050b --- /dev/null +++ b/site/public/v1/smartphones/lmk200baw-k-series-k22-2020-dual-sim-td-lte-latam-k200baw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1744, + "slug": "lmk200baw-k-series-k22-2020-dual-sim-td-lte-latam-k200baw", + "name": "LMK200BAW K Series K22+ 2020 Dual SIM TD-LTE LATAM K200BAW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 131, + "slug": "snapdragon-215", + "name": "Snapdragon 215", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-215" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.370631", + "updated_at": "2026-06-19T00:43:44.370631" +} diff --git a/site/public/v1/smartphones/lmk200baw-k-series-k22-2020-dual-sim-td-lte-latam-k200baw/score/index.json b/site/public/v1/smartphones/lmk200baw-k-series-k22-2020-dual-sim-td-lte-latam-k200baw/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/lmk200baw-k-series-k22-2020-dual-sim-td-lte-latam-k200baw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmk200bmw-k-series-k22-2020-dual-sim-td-lte-latam-k200bmw/index.json b/site/public/v1/smartphones/lmk200bmw-k-series-k22-2020-dual-sim-td-lte-latam-k200bmw/index.json new file mode 100644 index 00000000000..c2bb241d3d9 --- /dev/null +++ b/site/public/v1/smartphones/lmk200bmw-k-series-k22-2020-dual-sim-td-lte-latam-k200bmw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1745, + "slug": "lmk200bmw-k-series-k22-2020-dual-sim-td-lte-latam-k200bmw", + "name": "LMK200BMW K Series K22 2020 Dual SIM TD-LTE LATAM K200BMW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 131, + "slug": "snapdragon-215", + "name": "Snapdragon 215", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-215" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.370631", + "updated_at": "2026-06-19T00:43:44.370631" +} diff --git a/site/public/v1/smartphones/lmk200bmw-k-series-k22-2020-dual-sim-td-lte-latam-k200bmw/score/index.json b/site/public/v1/smartphones/lmk200bmw-k-series-k22-2020-dual-sim-td-lte-latam-k200bmw/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/lmk200bmw-k-series-k22-2020-dual-sim-td-lte-latam-k200bmw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmk200emw-k-series-k22-2020-dual-sim-td-lte-emea-k200emw/index.json b/site/public/v1/smartphones/lmk200emw-k-series-k22-2020-dual-sim-td-lte-emea-k200emw/index.json new file mode 100644 index 00000000000..c391ad61849 --- /dev/null +++ b/site/public/v1/smartphones/lmk200emw-k-series-k22-2020-dual-sim-td-lte-emea-k200emw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1746, + "slug": "lmk200emw-k-series-k22-2020-dual-sim-td-lte-emea-k200emw", + "name": "LMK200EMW K Series K22 2020 Dual SIM TD-LTE EMEA K200EMW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 131, + "slug": "snapdragon-215", + "name": "Snapdragon 215", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-215" + }, + "release_date": "2020-09-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.370631", + "updated_at": "2026-06-19T00:43:44.370631" +} diff --git a/site/public/v1/smartphones/lmk200emw-k-series-k22-2020-dual-sim-td-lte-emea-k200emw/score/index.json b/site/public/v1/smartphones/lmk200emw-k-series-k22-2020-dual-sim-td-lte-emea-k200emw/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/lmk200emw-k-series-k22-2020-dual-sim-td-lte-emea-k200emw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmk200ha-k-series-k22-2020-td-lte-latam-k200ha/index.json b/site/public/v1/smartphones/lmk200ha-k-series-k22-2020-td-lte-latam-k200ha/index.json new file mode 100644 index 00000000000..c839fa0f8a8 --- /dev/null +++ b/site/public/v1/smartphones/lmk200ha-k-series-k22-2020-td-lte-latam-k200ha/index.json @@ -0,0 +1,76 @@ +{ + "id": 1747, + "slug": "lmk200ha-k-series-k22-2020-td-lte-latam-k200ha", + "name": "LMK200HA K Series K22+ 2020 TD-LTE LATAM K200HA", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 131, + "slug": "snapdragon-215", + "name": "Snapdragon 215", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-215" + }, + "release_date": "2020-10-01", + "msrp_usd": 2950, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 6.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.371615", + "updated_at": "2026-06-19T00:43:44.371615" +} diff --git a/site/public/v1/smartphones/lmk200ha-k-series-k22-2020-td-lte-latam-k200ha/score/index.json b/site/public/v1/smartphones/lmk200ha-k-series-k22-2020-td-lte-latam-k200ha/score/index.json new file mode 100644 index 00000000000..84bcf0ac232 --- /dev/null +++ b/site/public/v1/smartphones/lmk200ha-k-series-k22-2020-td-lte-latam-k200ha/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 6.7 +} diff --git a/site/public/v1/smartphones/lmk200haw-k-series-k22-2020-dual-sim-td-lte-latam-k200haw/index.json b/site/public/v1/smartphones/lmk200haw-k-series-k22-2020-dual-sim-td-lte-latam-k200haw/index.json new file mode 100644 index 00000000000..31bec53655a --- /dev/null +++ b/site/public/v1/smartphones/lmk200haw-k-series-k22-2020-dual-sim-td-lte-latam-k200haw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1748, + "slug": "lmk200haw-k-series-k22-2020-dual-sim-td-lte-latam-k200haw", + "name": "LMK200HAW K Series K22+ 2020 Dual SIM TD-LTE LATAM K200HAW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 131, + "slug": "snapdragon-215", + "name": "Snapdragon 215", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-215" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.371615", + "updated_at": "2026-06-19T00:43:44.371615" +} diff --git a/site/public/v1/smartphones/lmk200haw-k-series-k22-2020-dual-sim-td-lte-latam-k200haw/score/index.json b/site/public/v1/smartphones/lmk200haw-k-series-k22-2020-dual-sim-td-lte-latam-k200haw/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/lmk200haw-k-series-k22-2020-dual-sim-td-lte-latam-k200haw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmk200hm-k-series-k22-2020-td-lte-latam-k200hm/index.json b/site/public/v1/smartphones/lmk200hm-k-series-k22-2020-td-lte-latam-k200hm/index.json new file mode 100644 index 00000000000..c16b0e0d183 --- /dev/null +++ b/site/public/v1/smartphones/lmk200hm-k-series-k22-2020-td-lte-latam-k200hm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1749, + "slug": "lmk200hm-k-series-k22-2020-td-lte-latam-k200hm", + "name": "LMK200HM K Series K22 2020 TD-LTE LATAM K200HM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 131, + "slug": "snapdragon-215", + "name": "Snapdragon 215", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-215" + }, + "release_date": "2020-09-01", + "msrp_usd": 2699, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 6.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.371615", + "updated_at": "2026-06-19T00:43:44.371615" +} diff --git a/site/public/v1/smartphones/lmk200hm-k-series-k22-2020-td-lte-latam-k200hm/score/index.json b/site/public/v1/smartphones/lmk200hm-k-series-k22-2020-td-lte-latam-k200hm/score/index.json new file mode 100644 index 00000000000..84bcf0ac232 --- /dev/null +++ b/site/public/v1/smartphones/lmk200hm-k-series-k22-2020-td-lte-latam-k200hm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 6.7 +} diff --git a/site/public/v1/smartphones/lmk200hmw-k-series-k22-2020-dual-sim-td-lte-latam-k200hmw/index.json b/site/public/v1/smartphones/lmk200hmw-k-series-k22-2020-dual-sim-td-lte-latam-k200hmw/index.json new file mode 100644 index 00000000000..a4bd96a4499 --- /dev/null +++ b/site/public/v1/smartphones/lmk200hmw-k-series-k22-2020-dual-sim-td-lte-latam-k200hmw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1750, + "slug": "lmk200hmw-k-series-k22-2020-dual-sim-td-lte-latam-k200hmw", + "name": "LMK200HMW K Series K22 2020 Dual SIM TD-LTE LATAM K200HMW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 131, + "slug": "snapdragon-215", + "name": "Snapdragon 215", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-215" + }, + "release_date": "2020-09-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.371615", + "updated_at": "2026-06-19T00:43:44.371615" +} diff --git a/site/public/v1/smartphones/lmk200hmw-k-series-k22-2020-dual-sim-td-lte-latam-k200hmw/score/index.json b/site/public/v1/smartphones/lmk200hmw-k-series-k22-2020-dual-sim-td-lte-latam-k200hmw/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/lmk200hmw-k-series-k22-2020-dual-sim-td-lte-latam-k200hmw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmk200qm-k-series-k32-2020-lte-ca-k200qm/index.json b/site/public/v1/smartphones/lmk200qm-k-series-k32-2020-lte-ca-k200qm/index.json new file mode 100644 index 00000000000..e475abbe03f --- /dev/null +++ b/site/public/v1/smartphones/lmk200qm-k-series-k32-2020-lte-ca-k200qm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1751, + "slug": "lmk200qm-k-series-k32-2020-lte-ca-k200qm", + "name": "LMK200QM K Series K32 2020 LTE CA K200QM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 131, + "slug": "snapdragon-215", + "name": "Snapdragon 215", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-215" + }, + "release_date": "2020-11-01", + "msrp_usd": 150, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 56.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.371615", + "updated_at": "2026-06-19T00:43:44.371615" +} diff --git a/site/public/v1/smartphones/lmk200qm-k-series-k32-2020-lte-ca-k200qm/score/index.json b/site/public/v1/smartphones/lmk200qm-k-series-k32-2020-lte-ca-k200qm/score/index.json new file mode 100644 index 00000000000..bcae8b89b89 --- /dev/null +++ b/site/public/v1/smartphones/lmk200qm-k-series-k32-2020-lte-ca-k200qm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 56.7 +} diff --git a/site/public/v1/smartphones/lmk200qm0-k-series-k22-2020-lte-us-k200qm0/index.json b/site/public/v1/smartphones/lmk200qm0-k-series-k22-2020-lte-us-k200qm0/index.json new file mode 100644 index 00000000000..a89640d1832 --- /dev/null +++ b/site/public/v1/smartphones/lmk200qm0-k-series-k22-2020-lte-us-k200qm0/index.json @@ -0,0 +1,76 @@ +{ + "id": 1752, + "slug": "lmk200qm0-k-series-k22-2020-lte-us-k200qm0", + "name": "LMK200QM0 K Series K22 2020 LTE US K200QM0", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 131, + "slug": "snapdragon-215", + "name": "Snapdragon 215", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-215" + }, + "release_date": "2020-11-01", + "msrp_usd": 90, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 56.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.371615", + "updated_at": "2026-06-19T00:43:44.371615" +} diff --git a/site/public/v1/smartphones/lmk200qm0-k-series-k22-2020-lte-us-k200qm0/score/index.json b/site/public/v1/smartphones/lmk200qm0-k-series-k22-2020-lte-us-k200qm0/score/index.json new file mode 100644 index 00000000000..bcae8b89b89 --- /dev/null +++ b/site/public/v1/smartphones/lmk200qm0-k-series-k22-2020-lte-us-k200qm0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 56.7 +} diff --git a/site/public/v1/smartphones/lmk200tm-k-series-k22-2020-td-lte-us-k200tm9/index.json b/site/public/v1/smartphones/lmk200tm-k-series-k22-2020-td-lte-us-k200tm9/index.json new file mode 100644 index 00000000000..f0833b89639 --- /dev/null +++ b/site/public/v1/smartphones/lmk200tm-k-series-k22-2020-td-lte-us-k200tm9/index.json @@ -0,0 +1,76 @@ +{ + "id": 1753, + "slug": "lmk200tm-k-series-k22-2020-td-lte-us-k200tm9", + "name": "LMK200TM K Series K22 2020 TD-LTE US K200TM9", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 131, + "slug": "snapdragon-215", + "name": "Snapdragon 215", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-215" + }, + "release_date": "2020-12-01", + "msrp_usd": 90, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 56.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.371615", + "updated_at": "2026-06-19T00:43:44.371615" +} diff --git a/site/public/v1/smartphones/lmk200tm-k-series-k22-2020-td-lte-us-k200tm9/score/index.json b/site/public/v1/smartphones/lmk200tm-k-series-k22-2020-td-lte-us-k200tm9/score/index.json new file mode 100644 index 00000000000..bcae8b89b89 --- /dev/null +++ b/site/public/v1/smartphones/lmk200tm-k-series-k22-2020-td-lte-us-k200tm9/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 56.7 +} diff --git a/site/public/v1/smartphones/lmk300am-phoenix-5-td-lte-us-k300ama/index.json b/site/public/v1/smartphones/lmk300am-phoenix-5-td-lte-us-k300ama/index.json new file mode 100644 index 00000000000..7ff0bbc1df4 --- /dev/null +++ b/site/public/v1/smartphones/lmk300am-phoenix-5-td-lte-us-k300ama/index.json @@ -0,0 +1,76 @@ +{ + "id": 1754, + "slug": "lmk300am-phoenix-5-td-lte-us-k300ama", + "name": "LMK300AM Phoenix 5 TD-LTE US K300AMA", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-08-01", + "msrp_usd": 100, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 56.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.371615", + "updated_at": "2026-06-19T00:43:44.371615" +} diff --git a/site/public/v1/smartphones/lmk300am-phoenix-5-td-lte-us-k300ama/score/index.json b/site/public/v1/smartphones/lmk300am-phoenix-5-td-lte-us-k300ama/score/index.json new file mode 100644 index 00000000000..bcae8b89b89 --- /dev/null +++ b/site/public/v1/smartphones/lmk300am-phoenix-5-td-lte-us-k300ama/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 56.7 +} diff --git a/site/public/v1/smartphones/lmk300am4-fortune-3-lte-us-k300am4/index.json b/site/public/v1/smartphones/lmk300am4-fortune-3-lte-us-k300am4/index.json new file mode 100644 index 00000000000..d4c2c90defe --- /dev/null +++ b/site/public/v1/smartphones/lmk300am4-fortune-3-lte-us-k300am4/index.json @@ -0,0 +1,76 @@ +{ + "id": 1755, + "slug": "lmk300am4-fortune-3-lte-us-k300am4", + "name": "LMK300AM4 Fortune 3 LTE US K300AM4", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-06-01", + "msrp_usd": 100, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 56.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.371615", + "updated_at": "2026-06-19T00:43:44.371615" +} diff --git a/site/public/v1/smartphones/lmk300am4-fortune-3-lte-us-k300am4/score/index.json b/site/public/v1/smartphones/lmk300am4-fortune-3-lte-us-k300am4/score/index.json new file mode 100644 index 00000000000..bcae8b89b89 --- /dev/null +++ b/site/public/v1/smartphones/lmk300am4-fortune-3-lte-us-k300am4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 56.7 +} diff --git a/site/public/v1/smartphones/lmk300cm-risio-4-lte-us-k300cmr/index.json b/site/public/v1/smartphones/lmk300cm-risio-4-lte-us-k300cmr/index.json new file mode 100644 index 00000000000..4dc62e48546 --- /dev/null +++ b/site/public/v1/smartphones/lmk300cm-risio-4-lte-us-k300cmr/index.json @@ -0,0 +1,76 @@ +{ + "id": 1756, + "slug": "lmk300cm-risio-4-lte-us-k300cmr", + "name": "LMK300CM Risio 4 LTE US K300CMR", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-07-01", + "msrp_usd": 100, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 3.1 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 56.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.372615", + "updated_at": "2026-06-19T00:43:44.372615" +} diff --git a/site/public/v1/smartphones/lmk300cm-risio-4-lte-us-k300cmr/score/index.json b/site/public/v1/smartphones/lmk300cm-risio-4-lte-us-k300cmr/score/index.json new file mode 100644 index 00000000000..bcae8b89b89 --- /dev/null +++ b/site/public/v1/smartphones/lmk300cm-risio-4-lte-us-k300cmr/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 56.7 +} diff --git a/site/public/v1/smartphones/lmk300mm-aristo-5-td-lte-us-k300mm/index.json b/site/public/v1/smartphones/lmk300mm-aristo-5-td-lte-us-k300mm/index.json new file mode 100644 index 00000000000..3c2206d137f --- /dev/null +++ b/site/public/v1/smartphones/lmk300mm-aristo-5-td-lte-us-k300mm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1757, + "slug": "lmk300mm-aristo-5-td-lte-us-k300mm", + "name": "LMK300MM Aristo 5 TD-LTE US K300MM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-09-01", + "msrp_usd": 160, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 56.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.372615", + "updated_at": "2026-06-19T00:43:44.372615" +} diff --git a/site/public/v1/smartphones/lmk300mm-aristo-5-td-lte-us-k300mm/score/index.json b/site/public/v1/smartphones/lmk300mm-aristo-5-td-lte-us-k300mm/score/index.json new file mode 100644 index 00000000000..bcae8b89b89 --- /dev/null +++ b/site/public/v1/smartphones/lmk300mm-aristo-5-td-lte-us-k300mm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 56.7 +} diff --git a/site/public/v1/smartphones/lmk300qm-k-series-k31-2020-td-lte-us-k300qm/index.json b/site/public/v1/smartphones/lmk300qm-k-series-k31-2020-td-lte-us-k300qm/index.json new file mode 100644 index 00000000000..2a1204db829 --- /dev/null +++ b/site/public/v1/smartphones/lmk300qm-k-series-k31-2020-td-lte-us-k300qm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1758, + "slug": "lmk300qm-k-series-k31-2020-td-lte-us-k300qm", + "name": "LMK300QM K Series K31 2020 TD-LTE US K300QM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-08-22", + "msrp_usd": 135, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 56.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.372615", + "updated_at": "2026-06-19T00:43:44.372615" +} diff --git a/site/public/v1/smartphones/lmk300qm-k-series-k31-2020-td-lte-us-k300qm/score/index.json b/site/public/v1/smartphones/lmk300qm-k-series-k31-2020-td-lte-us-k300qm/score/index.json new file mode 100644 index 00000000000..bcae8b89b89 --- /dev/null +++ b/site/public/v1/smartphones/lmk300qm-k-series-k31-2020-td-lte-us-k300qm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 56.7 +} diff --git a/site/public/v1/smartphones/lmk300qm6-k-series-k31-2020-lte-us-k300qm6/index.json b/site/public/v1/smartphones/lmk300qm6-k-series-k31-2020-lte-us-k300qm6/index.json new file mode 100644 index 00000000000..c288f6d1906 --- /dev/null +++ b/site/public/v1/smartphones/lmk300qm6-k-series-k31-2020-lte-us-k300qm6/index.json @@ -0,0 +1,76 @@ +{ + "id": 1759, + "slug": "lmk300qm6-k-series-k31-2020-lte-us-k300qm6", + "name": "LMK300QM6 K Series K31 2020 LTE US K300QM6", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-08-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.372615", + "updated_at": "2026-06-19T00:43:44.372615" +} diff --git a/site/public/v1/smartphones/lmk300qm6-k-series-k31-2020-lte-us-k300qm6/score/index.json b/site/public/v1/smartphones/lmk300qm6-k-series-k31-2020-lte-us-k300qm6/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/lmk300qm6-k-series-k31-2020-lte-us-k300qm6/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmk300tm-aristo-5-td-lte-us-k300tms/index.json b/site/public/v1/smartphones/lmk300tm-aristo-5-td-lte-us-k300tms/index.json new file mode 100644 index 00000000000..578d7d8fa23 --- /dev/null +++ b/site/public/v1/smartphones/lmk300tm-aristo-5-td-lte-us-k300tms/index.json @@ -0,0 +1,76 @@ +{ + "id": 1760, + "slug": "lmk300tm-aristo-5-td-lte-us-k300tms", + "name": "LMK300TM Aristo 5 TD-LTE US K300TMS", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-09-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.372615", + "updated_at": "2026-06-19T00:43:44.372615" +} diff --git a/site/public/v1/smartphones/lmk300tm-aristo-5-td-lte-us-k300tms/score/index.json b/site/public/v1/smartphones/lmk300tm-aristo-5-td-lte-us-k300tms/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/lmk300tm-aristo-5-td-lte-us-k300tms/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmk300tm3-tribute-monarch-td-lte-us-k300tm3/index.json b/site/public/v1/smartphones/lmk300tm3-tribute-monarch-td-lte-us-k300tm3/index.json new file mode 100644 index 00000000000..6dbca7680fa --- /dev/null +++ b/site/public/v1/smartphones/lmk300tm3-tribute-monarch-td-lte-us-k300tm3/index.json @@ -0,0 +1,76 @@ +{ + "id": 1761, + "slug": "lmk300tm3-tribute-monarch-td-lte-us-k300tm3", + "name": "LMK300TM3 Tribute Monarch TD-LTE US K300TM3", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-07-11", + "msrp_usd": 110, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 56.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.372615", + "updated_at": "2026-06-19T00:43:44.372615" +} diff --git a/site/public/v1/smartphones/lmk300tm3-tribute-monarch-td-lte-us-k300tm3/score/index.json b/site/public/v1/smartphones/lmk300tm3-tribute-monarch-td-lte-us-k300tm3/score/index.json new file mode 100644 index 00000000000..bcae8b89b89 --- /dev/null +++ b/site/public/v1/smartphones/lmk300tm3-tribute-monarch-td-lte-us-k300tm3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 56.7 +} diff --git a/site/public/v1/smartphones/lmk300um-k-series-k8x-2020-lte-a-us-k300um/index.json b/site/public/v1/smartphones/lmk300um-k-series-k8x-2020-lte-a-us-k300um/index.json new file mode 100644 index 00000000000..69ef9a7d573 --- /dev/null +++ b/site/public/v1/smartphones/lmk300um-k-series-k8x-2020-lte-a-us-k300um/index.json @@ -0,0 +1,76 @@ +{ + "id": 1762, + "slug": "lmk300um-k-series-k8x-2020-lte-a-us-k300um", + "name": "LMK300UM K Series K8X 2020 LTE-A US K300UM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-07-26", + "msrp_usd": 170, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 56.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.372615", + "updated_at": "2026-06-19T00:43:44.372615" +} diff --git a/site/public/v1/smartphones/lmk300um-k-series-k8x-2020-lte-a-us-k300um/score/index.json b/site/public/v1/smartphones/lmk300um-k-series-k8x-2020-lte-a-us-k300um/score/index.json new file mode 100644 index 00000000000..bcae8b89b89 --- /dev/null +++ b/site/public/v1/smartphones/lmk300um-k-series-k8x-2020-lte-a-us-k300um/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 56.7 +} diff --git a/site/public/v1/smartphones/lmk300wm-k-series-k31-2020-lte-ca-k300wm/index.json b/site/public/v1/smartphones/lmk300wm-k-series-k31-2020-lte-ca-k300wm/index.json new file mode 100644 index 00000000000..61fb65d944d --- /dev/null +++ b/site/public/v1/smartphones/lmk300wm-k-series-k31-2020-lte-ca-k300wm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1763, + "slug": "lmk300wm-k-series-k31-2020-lte-ca-k300wm", + "name": "LMK300WM K Series K31 2020 LTE CA K300WM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.372615", + "updated_at": "2026-06-19T00:43:44.372615" +} diff --git a/site/public/v1/smartphones/lmk300wm-k-series-k31-2020-lte-ca-k300wm/score/index.json b/site/public/v1/smartphones/lmk300wm-k-series-k31-2020-lte-ca-k300wm/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/lmk300wm-k-series-k31-2020-lte-ca-k300wm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmk310im-w-series-w11-2020-dual-sim-td-lte-in-k310im/index.json b/site/public/v1/smartphones/lmk310im-w-series-w11-2020-dual-sim-td-lte-in-k310im/index.json new file mode 100644 index 00000000000..04a85e10f05 --- /dev/null +++ b/site/public/v1/smartphones/lmk310im-w-series-w11-2020-dual-sim-td-lte-in-k310im/index.json @@ -0,0 +1,76 @@ +{ + "id": 1764, + "slug": "lmk310im-w-series-w11-2020-dual-sim-td-lte-in-k310im", + "name": "LMK310IM W Series W11 2020 Dual SIM TD-LTE IN K310IM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-12-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "Yes" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.372615", + "updated_at": "2026-06-19T00:43:44.372615" +} diff --git a/site/public/v1/smartphones/lmk310im-w-series-w11-2020-dual-sim-td-lte-in-k310im/score/index.json b/site/public/v1/smartphones/lmk310im-w-series-w11-2020-dual-sim-td-lte-in-k310im/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/lmk310im-w-series-w11-2020-dual-sim-td-lte-in-k310im/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmk315im-w-series-w31-2020-dual-sim-td-lte-in-128gb-k315im/index.json b/site/public/v1/smartphones/lmk315im-w-series-w31-2020-dual-sim-td-lte-in-128gb-k315im/index.json new file mode 100644 index 00000000000..b6b784e0415 --- /dev/null +++ b/site/public/v1/smartphones/lmk315im-w-series-w31-2020-dual-sim-td-lte-in-128gb-k315im/index.json @@ -0,0 +1,76 @@ +{ + "id": 1765, + "slug": "lmk315im-w-series-w31-2020-dual-sim-td-lte-in-128gb-k315im", + "name": "LMK315IM W Series W31+ 2020 Dual SIM TD-LTE IN 128GB K315IM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-12-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 173.6, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.372615", + "updated_at": "2026-06-19T00:43:44.372615" +} diff --git a/site/public/v1/smartphones/lmk315im-w-series-w31-2020-dual-sim-td-lte-in-128gb-k315im/score/index.json b/site/public/v1/smartphones/lmk315im-w-series-w31-2020-dual-sim-td-lte-in-128gb-k315im/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/lmk315im-w-series-w31-2020-dual-sim-td-lte-in-128gb-k315im/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmk315im-w-series-w31-2020-dual-sim-td-lte-in-64gb-k315im/index.json b/site/public/v1/smartphones/lmk315im-w-series-w31-2020-dual-sim-td-lte-in-64gb-k315im/index.json new file mode 100644 index 00000000000..cd6ff4302a5 --- /dev/null +++ b/site/public/v1/smartphones/lmk315im-w-series-w31-2020-dual-sim-td-lte-in-64gb-k315im/index.json @@ -0,0 +1,76 @@ +{ + "id": 1766, + "slug": "lmk315im-w-series-w31-2020-dual-sim-td-lte-in-64gb-k315im", + "name": "LMK315IM W Series W31 2020 Dual SIM TD-LTE IN 64GB K315IM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-12-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 173.6, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.372615", + "updated_at": "2026-06-19T00:43:44.372615" +} diff --git a/site/public/v1/smartphones/lmk315im-w-series-w31-2020-dual-sim-td-lte-in-64gb-k315im/score/index.json b/site/public/v1/smartphones/lmk315im-w-series-w31-2020-dual-sim-td-lte-in-64gb-k315im/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/lmk315im-w-series-w31-2020-dual-sim-td-lte-in-64gb-k315im/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmk400a-xpression-plus-3-2020-lte-a-us-k400akr/index.json b/site/public/v1/smartphones/lmk400a-xpression-plus-3-2020-lte-a-us-k400akr/index.json new file mode 100644 index 00000000000..b6940d198c8 --- /dev/null +++ b/site/public/v1/smartphones/lmk400a-xpression-plus-3-2020-lte-a-us-k400akr/index.json @@ -0,0 +1,76 @@ +{ + "id": 1767, + "slug": "lmk400a-xpression-plus-3-2020-lte-a-us-k400akr", + "name": "LMK400A Xpression Plus 3 2020 LTE-A US K400AKR", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-10-01", + "msrp_usd": 200, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": 58.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.372615", + "updated_at": "2026-06-19T00:43:44.372615" +} diff --git a/site/public/v1/smartphones/lmk400a-xpression-plus-3-2020-lte-a-us-k400akr/score/index.json b/site/public/v1/smartphones/lmk400a-xpression-plus-3-2020-lte-a-us-k400akr/score/index.json new file mode 100644 index 00000000000..9563d9af46f --- /dev/null +++ b/site/public/v1/smartphones/lmk400a-xpression-plus-3-2020-lte-a-us-k400akr/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": 58.0 +} diff --git a/site/public/v1/smartphones/lmk400am-harmony-4-2020-lte-a-us-k400am/index.json b/site/public/v1/smartphones/lmk400am-harmony-4-2020-lte-a-us-k400am/index.json new file mode 100644 index 00000000000..5aa749d451e --- /dev/null +++ b/site/public/v1/smartphones/lmk400am-harmony-4-2020-lte-a-us-k400am/index.json @@ -0,0 +1,76 @@ +{ + "id": 1768, + "slug": "lmk400am-harmony-4-2020-lte-a-us-k400am", + "name": "LMK400AM Harmony 4 2020 LTE-A US K400AM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.373881", + "updated_at": "2026-06-19T00:43:44.373881" +} diff --git a/site/public/v1/smartphones/lmk400am-harmony-4-2020-lte-a-us-k400am/score/index.json b/site/public/v1/smartphones/lmk400am-harmony-4-2020-lte-a-us-k400am/score/index.json new file mode 100644 index 00000000000..99542862d37 --- /dev/null +++ b/site/public/v1/smartphones/lmk400am-harmony-4-2020-lte-a-us-k400am/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmk410emw-k-series-k41s-2020-dual-sim-td-lte-emea-k410emw/index.json b/site/public/v1/smartphones/lmk410emw-k-series-k41s-2020-dual-sim-td-lte-emea-k410emw/index.json new file mode 100644 index 00000000000..3d6c4ec38c4 --- /dev/null +++ b/site/public/v1/smartphones/lmk410emw-k-series-k41s-2020-dual-sim-td-lte-emea-k410emw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1769, + "slug": "lmk410emw-k-series-k41s-2020-dual-sim-td-lte-emea-k410emw", + "name": "LMK410EMW K Series K41S 2020 Dual SIM TD-LTE EMEA K410EMW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-05-28", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.373881", + "updated_at": "2026-06-19T00:43:44.373881" +} diff --git a/site/public/v1/smartphones/lmk410emw-k-series-k41s-2020-dual-sim-td-lte-emea-k410emw/score/index.json b/site/public/v1/smartphones/lmk410emw-k-series-k41s-2020-dual-sim-td-lte-emea-k410emw/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/lmk410emw-k-series-k41s-2020-dual-sim-td-lte-emea-k410emw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmk410fmw-k-series-k41s-2020-dual-sim-lte-latam-k410fmw/index.json b/site/public/v1/smartphones/lmk410fmw-k-series-k41s-2020-dual-sim-lte-latam-k410fmw/index.json new file mode 100644 index 00000000000..3f626290a68 --- /dev/null +++ b/site/public/v1/smartphones/lmk410fmw-k-series-k41s-2020-dual-sim-lte-latam-k410fmw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1770, + "slug": "lmk410fmw-k-series-k41s-2020-dual-sim-lte-latam-k410fmw", + "name": "LMK410FMW K Series K41S 2020 Dual SIM LTE LATAM K410FMW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.373881", + "updated_at": "2026-06-19T00:43:44.373881" +} diff --git a/site/public/v1/smartphones/lmk410fmw-k-series-k41s-2020-dual-sim-lte-latam-k410fmw/score/index.json b/site/public/v1/smartphones/lmk410fmw-k-series-k41s-2020-dual-sim-lte-latam-k410fmw/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/lmk410fmw-k-series-k41s-2020-dual-sim-lte-latam-k410fmw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmk410hm-k-series-k41s-2020-td-lte-latam-k410hm/index.json b/site/public/v1/smartphones/lmk410hm-k-series-k41s-2020-td-lte-latam-k410hm/index.json new file mode 100644 index 00000000000..7d01a27fd6b --- /dev/null +++ b/site/public/v1/smartphones/lmk410hm-k-series-k41s-2020-td-lte-latam-k410hm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1771, + "slug": "lmk410hm-k-series-k41s-2020-td-lte-latam-k410hm", + "name": "LMK410HM K Series K41S 2020 TD-LTE LATAM K410HM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.373881", + "updated_at": "2026-06-19T00:43:44.373881" +} diff --git a/site/public/v1/smartphones/lmk410hm-k-series-k41s-2020-td-lte-latam-k410hm/score/index.json b/site/public/v1/smartphones/lmk410hm-k-series-k41s-2020-td-lte-latam-k410hm/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/lmk410hm-k-series-k41s-2020-td-lte-latam-k410hm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmk410wm-k-series-k41s-2020-lte-ca-k410wm/index.json b/site/public/v1/smartphones/lmk410wm-k-series-k41s-2020-lte-ca-k410wm/index.json new file mode 100644 index 00000000000..98352f7c7f0 --- /dev/null +++ b/site/public/v1/smartphones/lmk410wm-k-series-k41s-2020-lte-ca-k410wm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1772, + "slug": "lmk410wm-k-series-k41s-2020-lte-ca-k410wm", + "name": "LMK410WM K Series K41S 2020 LTE CA K410WM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-08-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.373881", + "updated_at": "2026-06-19T00:43:44.373881" +} diff --git a/site/public/v1/smartphones/lmk410wm-k-series-k41s-2020-lte-ca-k410wm/score/index.json b/site/public/v1/smartphones/lmk410wm-k-series-k41s-2020-lte-ca-k410wm/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/lmk410wm-k-series-k41s-2020-lte-ca-k410wm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmk420bmw-k-series-k52-2020-dual-sim-td-lte-latam-k420bmw/index.json b/site/public/v1/smartphones/lmk420bmw-k-series-k52-2020-dual-sim-td-lte-latam-k420bmw/index.json new file mode 100644 index 00000000000..26c478805c7 --- /dev/null +++ b/site/public/v1/smartphones/lmk420bmw-k-series-k52-2020-dual-sim-td-lte-latam-k420bmw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1773, + "slug": "lmk420bmw-k-series-k52-2020-dual-sim-td-lte-latam-k420bmw", + "name": "LMK420BMW K Series K52 2020 Dual SIM TD-LTE LATAM K420BMW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-10-27", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.59, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.373881", + "updated_at": "2026-06-19T00:43:44.373881" +} diff --git a/site/public/v1/smartphones/lmk420bmw-k-series-k52-2020-dual-sim-td-lte-latam-k420bmw/score/index.json b/site/public/v1/smartphones/lmk420bmw-k-series-k52-2020-dual-sim-td-lte-latam-k420bmw/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/lmk420bmw-k-series-k52-2020-dual-sim-td-lte-latam-k420bmw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmk420emw-k-series-k42-2020-dual-sim-td-lte-emea-k420emw/index.json b/site/public/v1/smartphones/lmk420emw-k-series-k42-2020-dual-sim-td-lte-emea-k420emw/index.json new file mode 100644 index 00000000000..f3dd01b6cbc --- /dev/null +++ b/site/public/v1/smartphones/lmk420emw-k-series-k42-2020-dual-sim-td-lte-emea-k420emw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1774, + "slug": "lmk420emw-k-series-k42-2020-dual-sim-td-lte-emea-k420emw", + "name": "LMK420EMW K Series K42 2020 Dual SIM TD-LTE EMEA K420EMW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.59, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.373881", + "updated_at": "2026-06-19T00:43:44.373881" +} diff --git a/site/public/v1/smartphones/lmk420emw-k-series-k42-2020-dual-sim-td-lte-emea-k420emw/score/index.json b/site/public/v1/smartphones/lmk420emw-k-series-k42-2020-dual-sim-td-lte-emea-k420emw/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/lmk420emw-k-series-k42-2020-dual-sim-td-lte-emea-k420emw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmk420hm-k-series-k42-2020-td-lte-latam-k420hm/index.json b/site/public/v1/smartphones/lmk420hm-k-series-k42-2020-td-lte-latam-k420hm/index.json new file mode 100644 index 00000000000..d5c6d818889 --- /dev/null +++ b/site/public/v1/smartphones/lmk420hm-k-series-k42-2020-td-lte-latam-k420hm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1775, + "slug": "lmk420hm-k-series-k42-2020-td-lte-latam-k420hm", + "name": "LMK420HM K Series K42 2020 TD-LTE LATAM K420HM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-11-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.59, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.373881", + "updated_at": "2026-06-19T00:43:44.373881" +} diff --git a/site/public/v1/smartphones/lmk420hm-k-series-k42-2020-td-lte-latam-k420hm/score/index.json b/site/public/v1/smartphones/lmk420hm-k-series-k42-2020-td-lte-latam-k420hm/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/lmk420hm-k-series-k42-2020-td-lte-latam-k420hm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmk420hmw-k-series-k42-2020-dual-sim-td-lte-latam-k420hmw/index.json b/site/public/v1/smartphones/lmk420hmw-k-series-k42-2020-dual-sim-td-lte-latam-k420hmw/index.json new file mode 100644 index 00000000000..8b45d839304 --- /dev/null +++ b/site/public/v1/smartphones/lmk420hmw-k-series-k42-2020-dual-sim-td-lte-latam-k420hmw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1776, + "slug": "lmk420hmw-k-series-k42-2020-dual-sim-td-lte-latam-k420hmw", + "name": "LMK420HMW K Series K42 2020 Dual SIM TD-LTE LATAM K420HMW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-11-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.59, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.374879", + "updated_at": "2026-06-19T00:43:44.374879" +} diff --git a/site/public/v1/smartphones/lmk420hmw-k-series-k42-2020-dual-sim-td-lte-latam-k420hmw/score/index.json b/site/public/v1/smartphones/lmk420hmw-k-series-k42-2020-dual-sim-td-lte-latam-k420hmw/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/lmk420hmw-k-series-k42-2020-dual-sim-td-lte-latam-k420hmw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmk420ym-k-series-k42-2020-td-lte-apac-k420ym/index.json b/site/public/v1/smartphones/lmk420ym-k-series-k42-2020-td-lte-apac-k420ym/index.json new file mode 100644 index 00000000000..047a02b8795 --- /dev/null +++ b/site/public/v1/smartphones/lmk420ym-k-series-k42-2020-td-lte-apac-k420ym/index.json @@ -0,0 +1,76 @@ +{ + "id": 1777, + "slug": "lmk420ym-k-series-k42-2020-td-lte-apac-k420ym", + "name": "LMK420YM K Series K42 2020 TD-LTE APAC K420YM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-10-27", + "msrp_usd": 249, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.59, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 59.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.374879", + "updated_at": "2026-06-19T00:43:44.374879" +} diff --git a/site/public/v1/smartphones/lmk420ym-k-series-k42-2020-td-lte-apac-k420ym/score/index.json b/site/public/v1/smartphones/lmk420ym-k-series-k42-2020-td-lte-apac-k420ym/score/index.json new file mode 100644 index 00000000000..c9a1e1f5381 --- /dev/null +++ b/site/public/v1/smartphones/lmk420ym-k-series-k42-2020-td-lte-apac-k420ym/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 59.2 +} diff --git a/site/public/v1/smartphones/lmk420ymw-k-series-k42-2020-dual-sim-td-lte-apac-k420ymw/index.json b/site/public/v1/smartphones/lmk420ymw-k-series-k42-2020-dual-sim-td-lte-apac-k420ymw/index.json new file mode 100644 index 00000000000..45ac2cba933 --- /dev/null +++ b/site/public/v1/smartphones/lmk420ymw-k-series-k42-2020-dual-sim-td-lte-apac-k420ymw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1778, + "slug": "lmk420ymw-k-series-k42-2020-dual-sim-td-lte-apac-k420ymw", + "name": "LMK420YMW K Series K42 2020 Dual SIM TD-LTE APAC K420YMW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-10-27", + "msrp_usd": 249, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.59, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 59.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.374879", + "updated_at": "2026-06-19T00:43:44.374879" +} diff --git a/site/public/v1/smartphones/lmk420ymw-k-series-k42-2020-dual-sim-td-lte-apac-k420ymw/score/index.json b/site/public/v1/smartphones/lmk420ymw-k-series-k42-2020-dual-sim-td-lte-apac-k420ymw/score/index.json new file mode 100644 index 00000000000..c9a1e1f5381 --- /dev/null +++ b/site/public/v1/smartphones/lmk420ymw-k-series-k42-2020-dual-sim-td-lte-apac-k420ymw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 59.2 +} diff --git a/site/public/v1/smartphones/lmk500mm-k-series-k51-2020-td-lte-us-k500mm/index.json b/site/public/v1/smartphones/lmk500mm-k-series-k51-2020-td-lte-us-k500mm/index.json new file mode 100644 index 00000000000..6d8e7408d78 --- /dev/null +++ b/site/public/v1/smartphones/lmk500mm-k-series-k51-2020-td-lte-us-k500mm/index.json @@ -0,0 +1,77 @@ +{ + "id": 1779, + "slug": "lmk500mm-k-series-k51-2020-td-lte-us-k500mm", + "name": "LMK500MM K Series K51 2020 TD-LTE US K500MM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-05-01", + "msrp_usd": 190, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1560", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 264 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 204.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 17.5, + "value": 56.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.374879", + "updated_at": "2026-06-19T00:43:44.374879" +} diff --git a/site/public/v1/smartphones/lmk500mm-k-series-k51-2020-td-lte-us-k500mm/score/index.json b/site/public/v1/smartphones/lmk500mm-k-series-k51-2020-td-lte-us-k500mm/score/index.json new file mode 100644 index 00000000000..04c452166eb --- /dev/null +++ b/site/public/v1/smartphones/lmk500mm-k-series-k51-2020-td-lte-us-k500mm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 17.5, + "value": 56.3 +} diff --git a/site/public/v1/smartphones/lmk500qm5-k-series-k51-2020-lte-us-k500qm5/index.json b/site/public/v1/smartphones/lmk500qm5-k-series-k51-2020-lte-us-k500qm5/index.json new file mode 100644 index 00000000000..4f451296804 --- /dev/null +++ b/site/public/v1/smartphones/lmk500qm5-k-series-k51-2020-lte-us-k500qm5/index.json @@ -0,0 +1,77 @@ +{ + "id": 1780, + "slug": "lmk500qm5-k-series-k51-2020-lte-us-k500qm5", + "name": "LMK500QM5 K Series K51 2020 LTE US K500QM5", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-06-01", + "msrp_usd": 200, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1560", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 264 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 203.4, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 17.5, + "value": 56.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.374879", + "updated_at": "2026-06-19T00:43:44.374879" +} diff --git a/site/public/v1/smartphones/lmk500qm5-k-series-k51-2020-lte-us-k500qm5/score/index.json b/site/public/v1/smartphones/lmk500qm5-k-series-k51-2020-lte-us-k500qm5/score/index.json new file mode 100644 index 00000000000..04c452166eb --- /dev/null +++ b/site/public/v1/smartphones/lmk500qm5-k-series-k51-2020-lte-us-k500qm5/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 17.5, + "value": 56.3 +} diff --git a/site/public/v1/smartphones/lmk500qm6-k-series-k51-2020-lte-us-k500qm6/index.json b/site/public/v1/smartphones/lmk500qm6-k-series-k51-2020-lte-us-k500qm6/index.json new file mode 100644 index 00000000000..86f9280bd0b --- /dev/null +++ b/site/public/v1/smartphones/lmk500qm6-k-series-k51-2020-lte-us-k500qm6/index.json @@ -0,0 +1,77 @@ +{ + "id": 1781, + "slug": "lmk500qm6-k-series-k51-2020-lte-us-k500qm6", + "name": "LMK500QM6 K Series K51 2020 LTE US K500QM6", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1560", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 264 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 203.4, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.374879", + "updated_at": "2026-06-19T00:43:44.374879" +} diff --git a/site/public/v1/smartphones/lmk500qm6-k-series-k51-2020-lte-us-k500qm6/score/index.json b/site/public/v1/smartphones/lmk500qm6-k-series-k51-2020-lte-us-k500qm6/score/index.json new file mode 100644 index 00000000000..7ab9053ee8c --- /dev/null +++ b/site/public/v1/smartphones/lmk500qm6-k-series-k51-2020-lte-us-k500qm6/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/lmk500qm7-k-series-k51-2020-td-lte-us-k500qm7/index.json b/site/public/v1/smartphones/lmk500qm7-k-series-k51-2020-td-lte-us-k500qm7/index.json new file mode 100644 index 00000000000..a5710fd4105 --- /dev/null +++ b/site/public/v1/smartphones/lmk500qm7-k-series-k51-2020-td-lte-us-k500qm7/index.json @@ -0,0 +1,77 @@ +{ + "id": 1782, + "slug": "lmk500qm7-k-series-k51-2020-td-lte-us-k500qm7", + "name": "LMK500QM7 K Series K51 2020 TD-LTE US K500QM7", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-05-01", + "msrp_usd": 200, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1560", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 264 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 204.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 17.5, + "value": 56.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.374879", + "updated_at": "2026-06-19T00:43:44.374879" +} diff --git a/site/public/v1/smartphones/lmk500qm7-k-series-k51-2020-td-lte-us-k500qm7/score/index.json b/site/public/v1/smartphones/lmk500qm7-k-series-k51-2020-td-lte-us-k500qm7/score/index.json new file mode 100644 index 00000000000..04c452166eb --- /dev/null +++ b/site/public/v1/smartphones/lmk500qm7-k-series-k51-2020-td-lte-us-k500qm7/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 17.5, + "value": 56.3 +} diff --git a/site/public/v1/smartphones/lmk500qn-k-series-k51-2020-td-lte-latam-k500qn/index.json b/site/public/v1/smartphones/lmk500qn-k-series-k51-2020-td-lte-latam-k500qn/index.json new file mode 100644 index 00000000000..4a845c489ee --- /dev/null +++ b/site/public/v1/smartphones/lmk500qn-k-series-k51-2020-td-lte-latam-k500qn/index.json @@ -0,0 +1,77 @@ +{ + "id": 1783, + "slug": "lmk500qn-k-series-k51-2020-td-lte-latam-k500qn", + "name": "LMK500QN K Series K51 2020 TD-LTE LATAM K500QN", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1560", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 264 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 198.6, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.374879", + "updated_at": "2026-06-19T00:43:44.374879" +} diff --git a/site/public/v1/smartphones/lmk500qn-k-series-k51-2020-td-lte-latam-k500qn/score/index.json b/site/public/v1/smartphones/lmk500qn-k-series-k51-2020-td-lte-latam-k500qn/score/index.json new file mode 100644 index 00000000000..7ab9053ee8c --- /dev/null +++ b/site/public/v1/smartphones/lmk500qn-k-series-k51-2020-td-lte-latam-k500qn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/lmk500um3-k-series-k51-2020-td-lte-us-k500um3/index.json b/site/public/v1/smartphones/lmk500um3-k-series-k51-2020-td-lte-us-k500um3/index.json new file mode 100644 index 00000000000..8d21413e397 --- /dev/null +++ b/site/public/v1/smartphones/lmk500um3-k-series-k51-2020-td-lte-us-k500um3/index.json @@ -0,0 +1,77 @@ +{ + "id": 1784, + "slug": "lmk500um3-k-series-k51-2020-td-lte-us-k500um3", + "name": "LMK500UM3 K Series K51 2020 TD-LTE US K500UM3", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1560", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 264 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 204.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.374879", + "updated_at": "2026-06-19T00:43:44.374879" +} diff --git a/site/public/v1/smartphones/lmk500um3-k-series-k51-2020-td-lte-us-k500um3/score/index.json b/site/public/v1/smartphones/lmk500um3-k-series-k51-2020-td-lte-us-k500um3/score/index.json new file mode 100644 index 00000000000..7ab9053ee8c --- /dev/null +++ b/site/public/v1/smartphones/lmk500um3-k-series-k51-2020-td-lte-us-k500um3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/lmk500umt-k-series-k51-2020-lte-us-k500umt/index.json b/site/public/v1/smartphones/lmk500umt-k-series-k51-2020-lte-us-k500umt/index.json new file mode 100644 index 00000000000..127fc3adae5 --- /dev/null +++ b/site/public/v1/smartphones/lmk500umt-k-series-k51-2020-lte-us-k500umt/index.json @@ -0,0 +1,77 @@ +{ + "id": 1785, + "slug": "lmk500umt-k-series-k51-2020-lte-us-k500umt", + "name": "LMK500UMT K Series K51 2020 LTE US K500UMT", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1560", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 264 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 204.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.374879", + "updated_at": "2026-06-19T00:43:44.374879" +} diff --git a/site/public/v1/smartphones/lmk500umt-k-series-k51-2020-lte-us-k500umt/score/index.json b/site/public/v1/smartphones/lmk500umt-k-series-k51-2020-lte-us-k500umt/score/index.json new file mode 100644 index 00000000000..7ab9053ee8c --- /dev/null +++ b/site/public/v1/smartphones/lmk500umt-k-series-k51-2020-lte-us-k500umt/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/lmk500umt3-k-series-k51-2020-td-lte-us-k500umt3/index.json b/site/public/v1/smartphones/lmk500umt3-k-series-k51-2020-td-lte-us-k500umt3/index.json new file mode 100644 index 00000000000..d56c3f41ec8 --- /dev/null +++ b/site/public/v1/smartphones/lmk500umt3-k-series-k51-2020-td-lte-us-k500umt3/index.json @@ -0,0 +1,77 @@ +{ + "id": 1786, + "slug": "lmk500umt3-k-series-k51-2020-td-lte-us-k500umt3", + "name": "LMK500UMT3 K Series K51 2020 TD-LTE US K500UMT3", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-05-01", + "msrp_usd": 190, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1560", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 264 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 204.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 17.5, + "value": 56.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.375879", + "updated_at": "2026-06-19T00:43:44.375879" +} diff --git a/site/public/v1/smartphones/lmk500umt3-k-series-k51-2020-td-lte-us-k500umt3/score/index.json b/site/public/v1/smartphones/lmk500umt3-k-series-k51-2020-td-lte-us-k500umt3/score/index.json new file mode 100644 index 00000000000..04c452166eb --- /dev/null +++ b/site/public/v1/smartphones/lmk500umt3-k-series-k51-2020-td-lte-us-k500umt3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 17.5, + "value": 56.3 +} diff --git a/site/public/v1/smartphones/lmk510bmw-k-series-k51s-2020-dual-sim-td-lte-latam-k510bmw/index.json b/site/public/v1/smartphones/lmk510bmw-k-series-k51s-2020-dual-sim-td-lte-latam-k510bmw/index.json new file mode 100644 index 00000000000..028a86cb3b6 --- /dev/null +++ b/site/public/v1/smartphones/lmk510bmw-k-series-k51s-2020-dual-sim-td-lte-latam-k510bmw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1787, + "slug": "lmk510bmw-k-series-k51s-2020-dual-sim-td-lte-latam-k510bmw", + "name": "LMK510BMW K Series K51S 2020 Dual SIM TD-LTE LATAM K510BMW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 194.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.3, + "performance": 0.0, + "camera": 11.4, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.375879", + "updated_at": "2026-06-19T00:43:44.375879" +} diff --git a/site/public/v1/smartphones/lmk510bmw-k-series-k51s-2020-dual-sim-td-lte-latam-k510bmw/score/index.json b/site/public/v1/smartphones/lmk510bmw-k-series-k51s-2020-dual-sim-td-lte-latam-k510bmw/score/index.json new file mode 100644 index 00000000000..d84b0b053b5 --- /dev/null +++ b/site/public/v1/smartphones/lmk510bmw-k-series-k51s-2020-dual-sim-td-lte-latam-k510bmw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.3, + "performance": 0.0, + "camera": 11.4, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmk510emw-k-series-k51s-2020-dual-sim-td-lte-emea-k510emw/index.json b/site/public/v1/smartphones/lmk510emw-k-series-k51s-2020-dual-sim-td-lte-emea-k510emw/index.json new file mode 100644 index 00000000000..c573828ea83 --- /dev/null +++ b/site/public/v1/smartphones/lmk510emw-k-series-k51s-2020-dual-sim-td-lte-emea-k510emw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1788, + "slug": "lmk510emw-k-series-k51s-2020-dual-sim-td-lte-emea-k510emw", + "name": "LMK510EMW K Series K51S 2020 Dual SIM TD-LTE EMEA K510EMW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-05-01", + "msrp_usd": 219, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 194.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.3, + "performance": 0.0, + "camera": 11.4, + "battery": 15.0, + "display": 35.0, + "value": 57.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.375879", + "updated_at": "2026-06-19T00:43:44.375879" +} diff --git a/site/public/v1/smartphones/lmk510emw-k-series-k51s-2020-dual-sim-td-lte-emea-k510emw/score/index.json b/site/public/v1/smartphones/lmk510emw-k-series-k51s-2020-dual-sim-td-lte-emea-k510emw/score/index.json new file mode 100644 index 00000000000..72fe438136e --- /dev/null +++ b/site/public/v1/smartphones/lmk510emw-k-series-k51s-2020-dual-sim-td-lte-emea-k510emw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.3, + "performance": 0.0, + "camera": 11.4, + "battery": 15.0, + "display": 35.0, + "value": 57.6 +} diff --git a/site/public/v1/smartphones/lmk510hm-k-series-k51s-2020-td-lte-latam-k510hm/index.json b/site/public/v1/smartphones/lmk510hm-k-series-k51s-2020-td-lte-latam-k510hm/index.json new file mode 100644 index 00000000000..9fa3e181258 --- /dev/null +++ b/site/public/v1/smartphones/lmk510hm-k-series-k51s-2020-td-lte-latam-k510hm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1789, + "slug": "lmk510hm-k-series-k51s-2020-td-lte-latam-k510hm", + "name": "LMK510HM K Series K51S 2020 TD-LTE LATAM K510HM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-07-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 194.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.3, + "performance": 0.0, + "camera": 11.4, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.375879", + "updated_at": "2026-06-19T00:43:44.375879" +} diff --git a/site/public/v1/smartphones/lmk510hm-k-series-k51s-2020-td-lte-latam-k510hm/score/index.json b/site/public/v1/smartphones/lmk510hm-k-series-k51s-2020-td-lte-latam-k510hm/score/index.json new file mode 100644 index 00000000000..d84b0b053b5 --- /dev/null +++ b/site/public/v1/smartphones/lmk510hm-k-series-k51s-2020-td-lte-latam-k510hm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.3, + "performance": 0.0, + "camera": 11.4, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmk510zmw-k-series-k51s-2020-dual-sim-td-lte-apac-k510zmw/index.json b/site/public/v1/smartphones/lmk510zmw-k-series-k51s-2020-dual-sim-td-lte-apac-k510zmw/index.json new file mode 100644 index 00000000000..f6049a66b93 --- /dev/null +++ b/site/public/v1/smartphones/lmk510zmw-k-series-k51s-2020-dual-sim-td-lte-apac-k510zmw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1790, + "slug": "lmk510zmw-k-series-k51s-2020-dual-sim-td-lte-apac-k510zmw", + "name": "LMK510ZMW K Series K51S 2020 Dual SIM TD-LTE APAC K510ZMW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-06-01", + "msrp_usd": 329, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 194.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.3, + "performance": 0.0, + "camera": 11.4, + "battery": 15.0, + "display": 35.0, + "value": 56.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.375879", + "updated_at": "2026-06-19T00:43:44.375879" +} diff --git a/site/public/v1/smartphones/lmk510zmw-k-series-k51s-2020-dual-sim-td-lte-apac-k510zmw/score/index.json b/site/public/v1/smartphones/lmk510zmw-k-series-k51s-2020-dual-sim-td-lte-apac-k510zmw/score/index.json new file mode 100644 index 00000000000..0ea5e5624ea --- /dev/null +++ b/site/public/v1/smartphones/lmk510zmw-k-series-k51s-2020-dual-sim-td-lte-apac-k510zmw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.3, + "performance": 0.0, + "camera": 11.4, + "battery": 15.0, + "display": 35.0, + "value": 56.5 +} diff --git a/site/public/v1/smartphones/lmk520bmw-k-series-k62-2020-dual-sim-td-lte-latam-k520bmw/index.json b/site/public/v1/smartphones/lmk520bmw-k-series-k62-2020-dual-sim-td-lte-latam-k520bmw/index.json new file mode 100644 index 00000000000..4be3c0f30a4 --- /dev/null +++ b/site/public/v1/smartphones/lmk520bmw-k-series-k62-2020-dual-sim-td-lte-latam-k520bmw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1791, + "slug": "lmk520bmw-k-series-k62-2020-dual-sim-td-lte-latam-k520bmw", + "name": "LMK520BMW K Series K62 2020 Dual SIM TD-LTE LATAM K520BMW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.59, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.375879", + "updated_at": "2026-06-19T00:43:44.375879" +} diff --git a/site/public/v1/smartphones/lmk520bmw-k-series-k62-2020-dual-sim-td-lte-latam-k520bmw/score/index.json b/site/public/v1/smartphones/lmk520bmw-k-series-k62-2020-dual-sim-td-lte-latam-k520bmw/score/index.json new file mode 100644 index 00000000000..6de7755463e --- /dev/null +++ b/site/public/v1/smartphones/lmk520bmw-k-series-k62-2020-dual-sim-td-lte-latam-k520bmw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmk520emw-k-series-k52-2020-dual-sim-td-lte-emea-k520emw/index.json b/site/public/v1/smartphones/lmk520emw-k-series-k52-2020-dual-sim-td-lte-emea-k520emw/index.json new file mode 100644 index 00000000000..0f5be714c6a --- /dev/null +++ b/site/public/v1/smartphones/lmk520emw-k-series-k52-2020-dual-sim-td-lte-emea-k520emw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1792, + "slug": "lmk520emw-k-series-k52-2020-dual-sim-td-lte-emea-k520emw", + "name": "LMK520EMW K Series K52 2020 Dual SIM TD-LTE EMEA K520EMW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.59, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.375879", + "updated_at": "2026-06-19T00:43:44.375879" +} diff --git a/site/public/v1/smartphones/lmk520emw-k-series-k52-2020-dual-sim-td-lte-emea-k520emw/score/index.json b/site/public/v1/smartphones/lmk520emw-k-series-k52-2020-dual-sim-td-lte-emea-k520emw/score/index.json new file mode 100644 index 00000000000..6de7755463e --- /dev/null +++ b/site/public/v1/smartphones/lmk520emw-k-series-k52-2020-dual-sim-td-lte-emea-k520emw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmk525bmw-k-series-k62-2020-dual-sim-td-lte-latam-128gb-k525bmw/index.json b/site/public/v1/smartphones/lmk525bmw-k-series-k62-2020-dual-sim-td-lte-latam-128gb-k525bmw/index.json new file mode 100644 index 00000000000..e59d3d7ae76 --- /dev/null +++ b/site/public/v1/smartphones/lmk525bmw-k-series-k62-2020-dual-sim-td-lte-latam-128gb-k525bmw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1793, + "slug": "lmk525bmw-k-series-k62-2020-dual-sim-td-lte-latam-128gb-k525bmw", + "name": "LMK525BMW K Series K62+ 2020 Dual SIM TD-LTE LATAM 128GB K525BMW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-10-27", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 28.3 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.375879", + "updated_at": "2026-06-19T00:43:44.375879" +} diff --git a/site/public/v1/smartphones/lmk525bmw-k-series-k62-2020-dual-sim-td-lte-latam-128gb-k525bmw/score/index.json b/site/public/v1/smartphones/lmk525bmw-k-series-k62-2020-dual-sim-td-lte-latam-128gb-k525bmw/score/index.json new file mode 100644 index 00000000000..6de7755463e --- /dev/null +++ b/site/public/v1/smartphones/lmk525bmw-k-series-k62-2020-dual-sim-td-lte-latam-128gb-k525bmw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmk525hm-k-series-k62-2020-td-lte-latam-128gb-k525hm/index.json b/site/public/v1/smartphones/lmk525hm-k-series-k62-2020-td-lte-latam-128gb-k525hm/index.json new file mode 100644 index 00000000000..54ef3b6b3f4 --- /dev/null +++ b/site/public/v1/smartphones/lmk525hm-k-series-k62-2020-td-lte-latam-128gb-k525hm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1794, + "slug": "lmk525hm-k-series-k62-2020-td-lte-latam-128gb-k525hm", + "name": "LMK525HM K Series K62 2020 TD-LTE LATAM 128GB K525HM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 28.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.376881", + "updated_at": "2026-06-19T00:43:44.376881" +} diff --git a/site/public/v1/smartphones/lmk525hm-k-series-k62-2020-td-lte-latam-128gb-k525hm/score/index.json b/site/public/v1/smartphones/lmk525hm-k-series-k62-2020-td-lte-latam-128gb-k525hm/score/index.json new file mode 100644 index 00000000000..6de7755463e --- /dev/null +++ b/site/public/v1/smartphones/lmk525hm-k-series-k62-2020-td-lte-latam-128gb-k525hm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmk610im-w-series-w41-2021-dual-sim-td-lte-in-128gb-k610im-w41-plus/index.json b/site/public/v1/smartphones/lmk610im-w-series-w41-2021-dual-sim-td-lte-in-128gb-k610im-w41-plus/index.json new file mode 100644 index 00000000000..1c57c53d53e --- /dev/null +++ b/site/public/v1/smartphones/lmk610im-w-series-w41-2021-dual-sim-td-lte-in-128gb-k610im-w41-plus/index.json @@ -0,0 +1,76 @@ +{ + "id": 1843, + "slug": "lmk610im-w-series-w41-2021-dual-sim-td-lte-in-128gb-k610im-w41-plus", + "name": "LMK610IM W Series W41+ 2021 Dual SIM TD-LTE IN 128GB K610IM / W41 Plus", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-03-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "900x1600", + "type": "Color IPS TFT LCD display", + "ppi": 280 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.381881", + "updated_at": "2026-06-19T00:43:44.381881" +} diff --git a/site/public/v1/smartphones/lmk610im-w-series-w41-2021-dual-sim-td-lte-in-128gb-k610im-w41-plus/score/index.json b/site/public/v1/smartphones/lmk610im-w-series-w41-2021-dual-sim-td-lte-in-128gb-k610im-w41-plus/score/index.json new file mode 100644 index 00000000000..99aee406377 --- /dev/null +++ b/site/public/v1/smartphones/lmk610im-w-series-w41-2021-dual-sim-td-lte-in-128gb-k610im-w41-plus/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmk610im-w-series-w41-2021-dual-sim-td-lte-in-64gb-k610im/index.json b/site/public/v1/smartphones/lmk610im-w-series-w41-2021-dual-sim-td-lte-in-64gb-k610im/index.json new file mode 100644 index 00000000000..6d2cbd0ed75 --- /dev/null +++ b/site/public/v1/smartphones/lmk610im-w-series-w41-2021-dual-sim-td-lte-in-64gb-k610im/index.json @@ -0,0 +1,76 @@ +{ + "id": 1844, + "slug": "lmk610im-w-series-w41-2021-dual-sim-td-lte-in-64gb-k610im", + "name": "LMK610IM W Series W41 2021 Dual SIM TD-LTE IN 64GB K610IM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.55, + "resolution": "900x1600", + "type": "Color IPS TFT LCD display", + "ppi": 280 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.381881", + "updated_at": "2026-06-19T00:43:44.381881" +} diff --git a/site/public/v1/smartphones/lmk610im-w-series-w41-2021-dual-sim-td-lte-in-64gb-k610im/score/index.json b/site/public/v1/smartphones/lmk610im-w-series-w41-2021-dual-sim-td-lte-in-64gb-k610im/score/index.json new file mode 100644 index 00000000000..99aee406377 --- /dev/null +++ b/site/public/v1/smartphones/lmk610im-w-series-w41-2021-dual-sim-td-lte-in-64gb-k610im/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmk610im-w-series-w41-pro-2021-dual-sim-td-lte-in-128gb-k610im/index.json b/site/public/v1/smartphones/lmk610im-w-series-w41-pro-2021-dual-sim-td-lte-in-128gb-k610im/index.json new file mode 100644 index 00000000000..e28c9cb1a07 --- /dev/null +++ b/site/public/v1/smartphones/lmk610im-w-series-w41-pro-2021-dual-sim-td-lte-in-128gb-k610im/index.json @@ -0,0 +1,76 @@ +{ + "id": 1845, + "slug": "lmk610im-w-series-w41-pro-2021-dual-sim-td-lte-in-128gb-k610im", + "name": "LMK610IM W Series W41 Pro 2021 Dual SIM TD-LTE IN 128GB K610IM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-03-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "900x1600", + "type": "Color IPS TFT LCD display", + "ppi": 280 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 1.5, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.382879", + "updated_at": "2026-06-19T00:43:44.382879" +} diff --git a/site/public/v1/smartphones/lmk610im-w-series-w41-pro-2021-dual-sim-td-lte-in-128gb-k610im/score/index.json b/site/public/v1/smartphones/lmk610im-w-series-w41-pro-2021-dual-sim-td-lte-in-128gb-k610im/score/index.json new file mode 100644 index 00000000000..821e1e74f88 --- /dev/null +++ b/site/public/v1/smartphones/lmk610im-w-series-w41-pro-2021-dual-sim-td-lte-in-128gb-k610im/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 1.5, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmk920am-k-series-k92-5g-td-lte-us-k920am1/index.json b/site/public/v1/smartphones/lmk920am-k-series-k92-5g-td-lte-us-k920am1/index.json new file mode 100644 index 00000000000..14127e0f531 --- /dev/null +++ b/site/public/v1/smartphones/lmk920am-k-series-k92-5g-td-lte-us-k920am1/index.json @@ -0,0 +1,76 @@ +{ + "id": 1795, + "slug": "lmk920am-k-series-k92-5g-td-lte-us-k920am1", + "name": "LMK920AM K Series K92 5G TD-LTE US K920AM1", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 143, + "slug": "snapdragon-690", + "name": "Snapdragon 690", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619L", + "url": "/v1/socs/snapdragon-690" + }, + "release_date": "2020-11-06", + "msrp_usd": 395, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 202.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 1.5, + "camera": 21.5, + "battery": 15.0, + "display": 44.5, + "value": 56.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.376881", + "updated_at": "2026-06-19T00:43:44.376881" +} diff --git a/site/public/v1/smartphones/lmk920am-k-series-k92-5g-td-lte-us-k920am1/score/index.json b/site/public/v1/smartphones/lmk920am-k-series-k92-5g-td-lte-us-k920am1/score/index.json new file mode 100644 index 00000000000..7f0560e27d8 --- /dev/null +++ b/site/public/v1/smartphones/lmk920am-k-series-k92-5g-td-lte-us-k920am1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 1.5, + "camera": 21.5, + "battery": 15.0, + "display": 44.5, + "value": 56.7 +} diff --git a/site/public/v1/smartphones/lmk920am-k-series-k92-5g-td-lte-us-k920am4/index.json b/site/public/v1/smartphones/lmk920am-k-series-k92-5g-td-lte-us-k920am4/index.json new file mode 100644 index 00000000000..593e7ad1af7 --- /dev/null +++ b/site/public/v1/smartphones/lmk920am-k-series-k92-5g-td-lte-us-k920am4/index.json @@ -0,0 +1,76 @@ +{ + "id": 1796, + "slug": "lmk920am-k-series-k92-5g-td-lte-us-k920am4", + "name": "LMK920AM K Series K92 5G TD-LTE US K920AM4", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 143, + "slug": "snapdragon-690", + "name": "Snapdragon 690", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619L", + "url": "/v1/socs/snapdragon-690" + }, + "release_date": "2020-11-06", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 202.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 1.5, + "camera": 21.5, + "battery": 15.0, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.376881", + "updated_at": "2026-06-19T00:43:44.376881" +} diff --git a/site/public/v1/smartphones/lmk920am-k-series-k92-5g-td-lte-us-k920am4/score/index.json b/site/public/v1/smartphones/lmk920am-k-series-k92-5g-td-lte-us-k920am4/score/index.json new file mode 100644 index 00000000000..e01acccbcf0 --- /dev/null +++ b/site/public/v1/smartphones/lmk920am-k-series-k92-5g-td-lte-us-k920am4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 1.5, + "camera": 21.5, + "battery": 15.0, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/lmk920tm-k-series-k92-5g-td-lte-us-k920tm0/index.json b/site/public/v1/smartphones/lmk920tm-k-series-k92-5g-td-lte-us-k920tm0/index.json new file mode 100644 index 00000000000..1d0480396d1 --- /dev/null +++ b/site/public/v1/smartphones/lmk920tm-k-series-k92-5g-td-lte-us-k920tm0/index.json @@ -0,0 +1,76 @@ +{ + "id": 1797, + "slug": "lmk920tm-k-series-k92-5g-td-lte-us-k920tm0", + "name": "LMK920TM K Series K92 5G TD-LTE US K920TM0", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 143, + "slug": "snapdragon-690", + "name": "Snapdragon 690", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619L", + "url": "/v1/socs/snapdragon-690" + }, + "release_date": "2020-11-19", + "msrp_usd": 359, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 202.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 1.5, + "camera": 21.5, + "battery": 15.0, + "display": 44.5, + "value": 58.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.376881", + "updated_at": "2026-06-19T00:43:44.376881" +} diff --git a/site/public/v1/smartphones/lmk920tm-k-series-k92-5g-td-lte-us-k920tm0/score/index.json b/site/public/v1/smartphones/lmk920tm-k-series-k92-5g-td-lte-us-k920tm0/score/index.json new file mode 100644 index 00000000000..6835d2d5900 --- /dev/null +++ b/site/public/v1/smartphones/lmk920tm-k-series-k92-5g-td-lte-us-k920tm0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 1.5, + "camera": 21.5, + "battery": 15.0, + "display": 44.5, + "value": 58.0 +} diff --git a/site/public/v1/smartphones/lmq310n-q-series-q31-2020-td-lte-kr-q310n/index.json b/site/public/v1/smartphones/lmq310n-q-series-q31-2020-td-lte-kr-q310n/index.json new file mode 100644 index 00000000000..1863e11f2df --- /dev/null +++ b/site/public/v1/smartphones/lmq310n-q-series-q31-2020-td-lte-kr-q310n/index.json @@ -0,0 +1,76 @@ +{ + "id": 1798, + "slug": "lmq310n-q-series-q31-2020-td-lte-kr-q310n", + "name": "LMQ310N Q Series Q31 2020 TD-LTE KR Q310N", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-10-26", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.376881", + "updated_at": "2026-06-19T00:43:44.376881" +} diff --git a/site/public/v1/smartphones/lmq310n-q-series-q31-2020-td-lte-kr-q310n/score/index.json b/site/public/v1/smartphones/lmq310n-q-series-q31-2020-td-lte-kr-q310n/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/lmq310n-q-series-q31-2020-td-lte-kr-q310n/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmq520n-q-series-q52-2020-td-lte-kr-q520n/index.json b/site/public/v1/smartphones/lmq520n-q-series-q52-2020-td-lte-kr-q520n/index.json new file mode 100644 index 00000000000..8228f528439 --- /dev/null +++ b/site/public/v1/smartphones/lmq520n-q-series-q52-2020-td-lte-kr-q520n/index.json @@ -0,0 +1,76 @@ +{ + "id": 1799, + "slug": "lmq520n-q-series-q52-2020-td-lte-kr-q520n", + "name": "LMQ520N Q Series Q52 2020 TD-LTE KR Q520N", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.59, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.376881", + "updated_at": "2026-06-19T00:43:44.376881" +} diff --git a/site/public/v1/smartphones/lmq520n-q-series-q52-2020-td-lte-kr-q520n/score/index.json b/site/public/v1/smartphones/lmq520n-q-series-q52-2020-td-lte-kr-q520n/score/index.json new file mode 100644 index 00000000000..6de7755463e --- /dev/null +++ b/site/public/v1/smartphones/lmq520n-q-series-q52-2020-td-lte-kr-q520n/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmq620qm-q-series-q70-td-lte-us-q620qm/index.json b/site/public/v1/smartphones/lmq620qm-q-series-q70-td-lte-us-q620qm/index.json new file mode 100644 index 00000000000..862bb6fd8c4 --- /dev/null +++ b/site/public/v1/smartphones/lmq620qm-q-series-q70-td-lte-us-q620qm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1800, + "slug": "lmq620qm-q-series-q70-td-lte-us-q620qm", + "name": "LMQ620QM Q Series Q70 TD-LTE US Q620QM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2020-06-01", + "msrp_usd": 350, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 16.1 + } + ], + "battery_mah": 4000, + "charging_wired_w": 16.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 11.4, + "battery": 15.2, + "display": 44.8, + "value": 57.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.376881", + "updated_at": "2026-06-19T00:43:44.376881" +} diff --git a/site/public/v1/smartphones/lmq620qm-q-series-q70-td-lte-us-q620qm/score/index.json b/site/public/v1/smartphones/lmq620qm-q-series-q70-td-lte-us-q620qm/score/index.json new file mode 100644 index 00000000000..e4b48bb2b45 --- /dev/null +++ b/site/public/v1/smartphones/lmq620qm-q-series-q70-td-lte-us-q620qm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 11.4, + "battery": 15.2, + "display": 44.8, + "value": 57.0 +} diff --git a/site/public/v1/smartphones/lmq620qm5-q-series-q70-lte-a-us-q620qm5/index.json b/site/public/v1/smartphones/lmq620qm5-q-series-q70-lte-a-us-q620qm5/index.json new file mode 100644 index 00000000000..81cca2da837 --- /dev/null +++ b/site/public/v1/smartphones/lmq620qm5-q-series-q70-lte-a-us-q620qm5/index.json @@ -0,0 +1,76 @@ +{ + "id": 1801, + "slug": "lmq620qm5-q-series-q70-lte-a-us-q620qm5", + "name": "LMQ620QM5 Q Series Q70 LTE-A US Q620QM5", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2020-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 16.1 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 11.4, + "battery": 15.0, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.376881", + "updated_at": "2026-06-19T00:43:44.376881" +} diff --git a/site/public/v1/smartphones/lmq620qm5-q-series-q70-lte-a-us-q620qm5/score/index.json b/site/public/v1/smartphones/lmq620qm5-q-series-q70-lte-a-us-q620qm5/score/index.json new file mode 100644 index 00000000000..f52c0553f6d --- /dev/null +++ b/site/public/v1/smartphones/lmq620qm5-q-series-q70-lte-a-us-q620qm5/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 11.4, + "battery": 15.0, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/lmq620qm6-q-series-q70-lte-a-us-q620qm6/index.json b/site/public/v1/smartphones/lmq620qm6-q-series-q70-lte-a-us-q620qm6/index.json new file mode 100644 index 00000000000..2d8cbd6de40 --- /dev/null +++ b/site/public/v1/smartphones/lmq620qm6-q-series-q70-lte-a-us-q620qm6/index.json @@ -0,0 +1,76 @@ +{ + "id": 1802, + "slug": "lmq620qm6-q-series-q70-lte-a-us-q620qm6", + "name": "LMQ620QM6 Q Series Q70 LTE-A US Q620QM6", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2020-07-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 16.1 + } + ], + "battery_mah": 4000, + "charging_wired_w": 16.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 11.4, + "battery": 15.2, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.377881", + "updated_at": "2026-06-19T00:43:44.377881" +} diff --git a/site/public/v1/smartphones/lmq620qm6-q-series-q70-lte-a-us-q620qm6/score/index.json b/site/public/v1/smartphones/lmq620qm6-q-series-q70-lte-a-us-q620qm6/score/index.json new file mode 100644 index 00000000000..b755454928f --- /dev/null +++ b/site/public/v1/smartphones/lmq620qm6-q-series-q70-lte-a-us-q620qm6/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 11.4, + "battery": 15.2, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/lmq620vab-q-series-q70-lte-a-us-q620vab/index.json b/site/public/v1/smartphones/lmq620vab-q-series-q70-lte-a-us-q620vab/index.json new file mode 100644 index 00000000000..63638affbf4 --- /dev/null +++ b/site/public/v1/smartphones/lmq620vab-q-series-q70-lte-a-us-q620vab/index.json @@ -0,0 +1,76 @@ +{ + "id": 1803, + "slug": "lmq620vab-q-series-q70-lte-a-us-q620vab", + "name": "LMQ620VAB Q Series Q70 LTE-A US Q620VAB", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 16.1 + } + ], + "battery_mah": 4000, + "charging_wired_w": 16.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 11.4, + "battery": 15.2, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.377881", + "updated_at": "2026-06-19T00:43:44.377881" +} diff --git a/site/public/v1/smartphones/lmq620vab-q-series-q70-lte-a-us-q620vab/score/index.json b/site/public/v1/smartphones/lmq620vab-q-series-q70-lte-a-us-q620vab/score/index.json new file mode 100644 index 00000000000..b755454928f --- /dev/null +++ b/site/public/v1/smartphones/lmq620vab-q-series-q70-lte-a-us-q620vab/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 11.4, + "battery": 15.2, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/lmq620wa-q-series-q70-lte-a-ca-q620wa/index.json b/site/public/v1/smartphones/lmq620wa-q-series-q70-lte-a-ca-q620wa/index.json new file mode 100644 index 00000000000..9e726a3c709 --- /dev/null +++ b/site/public/v1/smartphones/lmq620wa-q-series-q70-lte-a-ca-q620wa/index.json @@ -0,0 +1,76 @@ +{ + "id": 1804, + "slug": "lmq620wa-q-series-q70-lte-a-ca-q620wa", + "name": "LMQ620WA Q Series Q70 LTE-A CA Q620WA", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2020-01-16", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 16.1 + } + ], + "battery_mah": 4000, + "charging_wired_w": 16.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 11.4, + "battery": 15.2, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.377881", + "updated_at": "2026-06-19T00:43:44.377881" +} diff --git a/site/public/v1/smartphones/lmq620wa-q-series-q70-lte-a-ca-q620wa/score/index.json b/site/public/v1/smartphones/lmq620wa-q-series-q70-lte-a-ca-q620wa/score/index.json new file mode 100644 index 00000000000..b755454928f --- /dev/null +++ b/site/public/v1/smartphones/lmq620wa-q-series-q70-lte-a-ca-q620wa/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 11.4, + "battery": 15.2, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/lmq630baw-k-series-k61-2020-dual-sim-td-lte-latam-q630baw/index.json b/site/public/v1/smartphones/lmq630baw-k-series-k61-2020-dual-sim-td-lte-latam-q630baw/index.json new file mode 100644 index 00000000000..8763ddb1173 --- /dev/null +++ b/site/public/v1/smartphones/lmq630baw-k-series-k61-2020-dual-sim-td-lte-latam-q630baw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1805, + "slug": "lmq630baw-k-series-k61-2020-dual-sim-td-lte-latam-q630baw", + "name": "LMQ630BAW K Series K61 2020 Dual SIM TD-LTE LATAM Q630BAW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.377881", + "updated_at": "2026-06-19T00:43:44.377881" +} diff --git a/site/public/v1/smartphones/lmq630baw-k-series-k61-2020-dual-sim-td-lte-latam-q630baw/score/index.json b/site/public/v1/smartphones/lmq630baw-k-series-k61-2020-dual-sim-td-lte-latam-q630baw/score/index.json new file mode 100644 index 00000000000..84d6bbc6b09 --- /dev/null +++ b/site/public/v1/smartphones/lmq630baw-k-series-k61-2020-dual-sim-td-lte-latam-q630baw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/lmq630eaw-k-series-k61-2020-dual-sim-td-lte-emea-q630eaw/index.json b/site/public/v1/smartphones/lmq630eaw-k-series-k61-2020-dual-sim-td-lte-emea-q630eaw/index.json new file mode 100644 index 00000000000..b7ee94d6128 --- /dev/null +++ b/site/public/v1/smartphones/lmq630eaw-k-series-k61-2020-dual-sim-td-lte-emea-q630eaw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1806, + "slug": "lmq630eaw-k-series-k61-2020-dual-sim-td-lte-emea-q630eaw", + "name": "LMQ630EAW K Series K61 2020 Dual SIM TD-LTE EMEA Q630EAW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-05-01", + "msrp_usd": 279, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.5, + "value": 59.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.377881", + "updated_at": "2026-06-19T00:43:44.377881" +} diff --git a/site/public/v1/smartphones/lmq630eaw-k-series-k61-2020-dual-sim-td-lte-emea-q630eaw/score/index.json b/site/public/v1/smartphones/lmq630eaw-k-series-k61-2020-dual-sim-td-lte-emea-q630eaw/score/index.json new file mode 100644 index 00000000000..0e9e6324120 --- /dev/null +++ b/site/public/v1/smartphones/lmq630eaw-k-series-k61-2020-dual-sim-td-lte-emea-q630eaw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.5, + "value": 59.5 +} diff --git a/site/public/v1/smartphones/lmq630ha-k-series-k61-2020-td-lte-latam-q630ha/index.json b/site/public/v1/smartphones/lmq630ha-k-series-k61-2020-td-lte-latam-q630ha/index.json new file mode 100644 index 00000000000..fcf0a660ff0 --- /dev/null +++ b/site/public/v1/smartphones/lmq630ha-k-series-k61-2020-td-lte-latam-q630ha/index.json @@ -0,0 +1,76 @@ +{ + "id": 1807, + "slug": "lmq630ha-k-series-k61-2020-td-lte-latam-q630ha", + "name": "LMQ630HA K Series K61 2020 TD-LTE LATAM Q630HA", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.1 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.377881", + "updated_at": "2026-06-19T00:43:44.377881" +} diff --git a/site/public/v1/smartphones/lmq630ha-k-series-k61-2020-td-lte-latam-q630ha/score/index.json b/site/public/v1/smartphones/lmq630ha-k-series-k61-2020-td-lte-latam-q630ha/score/index.json new file mode 100644 index 00000000000..84d6bbc6b09 --- /dev/null +++ b/site/public/v1/smartphones/lmq630ha-k-series-k61-2020-td-lte-latam-q630ha/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/lmq630um-k-series-k61-2020-lte-a-ca-q630um/index.json b/site/public/v1/smartphones/lmq630um-k-series-k61-2020-lte-a-ca-q630um/index.json new file mode 100644 index 00000000000..d26337e79f7 --- /dev/null +++ b/site/public/v1/smartphones/lmq630um-k-series-k61-2020-lte-a-ca-q630um/index.json @@ -0,0 +1,76 @@ +{ + "id": 1808, + "slug": "lmq630um-k-series-k61-2020-lte-a-ca-q630um", + "name": "LMQ630UM K Series K61 2020 LTE-A CA Q630UM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-07-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.1 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.377881", + "updated_at": "2026-06-19T00:43:44.377881" +} diff --git a/site/public/v1/smartphones/lmq630um-k-series-k61-2020-lte-a-ca-q630um/score/index.json b/site/public/v1/smartphones/lmq630um-k-series-k61-2020-lte-a-ca-q630um/score/index.json new file mode 100644 index 00000000000..84d6bbc6b09 --- /dev/null +++ b/site/public/v1/smartphones/lmq630um-k-series-k61-2020-lte-a-ca-q630um/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/lmq710wa-q-stylo-4-lte-a-ca/index.json b/site/public/v1/smartphones/lmq710wa-q-stylo-4-lte-a-ca/index.json new file mode 100644 index 00000000000..587a3cc9627 --- /dev/null +++ b/site/public/v1/smartphones/lmq710wa-q-stylo-4-lte-a-ca/index.json @@ -0,0 +1,76 @@ +{ + "id": 1544, + "slug": "lmq710wa-q-stylo-4-lte-a-ca", + "name": "LMQ710WA Q Stylo+ 4 LTE-A CA", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-08-03", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 6.3, + "battery": 4.5, + "display": 44.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.345606", + "updated_at": "2026-06-19T00:43:44.345606" +} diff --git a/site/public/v1/smartphones/lmq710wa-q-stylo-4-lte-a-ca/score/index.json b/site/public/v1/smartphones/lmq710wa-q-stylo-4-lte-a-ca/score/index.json new file mode 100644 index 00000000000..94fa5113656 --- /dev/null +++ b/site/public/v1/smartphones/lmq710wa-q-stylo-4-lte-a-ca/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 6.3, + "battery": 4.5, + "display": 44.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmq710xm-q-stylus-td-lte-jp/index.json b/site/public/v1/smartphones/lmq710xm-q-stylus-td-lte-jp/index.json new file mode 100644 index 00000000000..ec50bbec5e8 --- /dev/null +++ b/site/public/v1/smartphones/lmq710xm-q-stylus-td-lte-jp/index.json @@ -0,0 +1,76 @@ +{ + "id": 1545, + "slug": "lmq710xm-q-stylus-td-lte-jp", + "name": "LMQ710XM Q Stylus TD-LTE JP", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-12-07", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 6.3, + "battery": 4.5, + "display": 44.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.345606", + "updated_at": "2026-06-19T00:43:44.345606" +} diff --git a/site/public/v1/smartphones/lmq710xm-q-stylus-td-lte-jp/score/index.json b/site/public/v1/smartphones/lmq710xm-q-stylus-td-lte-jp/score/index.json new file mode 100644 index 00000000000..94fa5113656 --- /dev/null +++ b/site/public/v1/smartphones/lmq710xm-q-stylus-td-lte-jp/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 6.3, + "battery": 4.5, + "display": 44.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmq720am-stylo-5-lte-a-us-q720a/index.json b/site/public/v1/smartphones/lmq720am-stylo-5-lte-a-us-q720a/index.json new file mode 100644 index 00000000000..1ce629869c0 --- /dev/null +++ b/site/public/v1/smartphones/lmq720am-stylo-5-lte-a-us-q720a/index.json @@ -0,0 +1,76 @@ +{ + "id": 1647, + "slug": "lmq720am-stylo-5-lte-a-us-q720a", + "name": "LMQ720AM Stylo 5+ LTE-A US Q720A", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-10-21", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 16.1 + }, + { + "type": "selfie", + "mp": 9.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 44.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.357605", + "updated_at": "2026-06-19T00:43:44.357605" +} diff --git a/site/public/v1/smartphones/lmq720am-stylo-5-lte-a-us-q720a/score/index.json b/site/public/v1/smartphones/lmq720am-stylo-5-lte-a-us-q720a/score/index.json new file mode 100644 index 00000000000..3100eeabad4 --- /dev/null +++ b/site/public/v1/smartphones/lmq720am-stylo-5-lte-a-us-q720a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 44.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmq720cs-stylo-5-lte-a-us-q720cs/index.json b/site/public/v1/smartphones/lmq720cs-stylo-5-lte-a-us-q720cs/index.json new file mode 100644 index 00000000000..ba0539f19be --- /dev/null +++ b/site/public/v1/smartphones/lmq720cs-stylo-5-lte-a-us-q720cs/index.json @@ -0,0 +1,76 @@ +{ + "id": 1648, + "slug": "lmq720cs-stylo-5-lte-a-us-q720cs", + "name": "LMQ720CS Stylo 5 LTE-A US Q720CS", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 44.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.357605", + "updated_at": "2026-06-19T00:43:44.357605" +} diff --git a/site/public/v1/smartphones/lmq720cs-stylo-5-lte-a-us-q720cs/score/index.json b/site/public/v1/smartphones/lmq720cs-stylo-5-lte-a-us-q720cs/score/index.json new file mode 100644 index 00000000000..43ebe0cb912 --- /dev/null +++ b/site/public/v1/smartphones/lmq720cs-stylo-5-lte-a-us-q720cs/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 44.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmq720ms-stylo-5-td-lte-us-q720ms/index.json b/site/public/v1/smartphones/lmq720ms-stylo-5-td-lte-us-q720ms/index.json new file mode 100644 index 00000000000..a7d530d3823 --- /dev/null +++ b/site/public/v1/smartphones/lmq720ms-stylo-5-td-lte-us-q720ms/index.json @@ -0,0 +1,76 @@ +{ + "id": 1649, + "slug": "lmq720ms-stylo-5-td-lte-us-q720ms", + "name": "LMQ720MS Stylo 5 TD-LTE US Q720MS", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-08-19", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 44.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.357605", + "updated_at": "2026-06-19T00:43:44.357605" +} diff --git a/site/public/v1/smartphones/lmq720ms-stylo-5-td-lte-us-q720ms/score/index.json b/site/public/v1/smartphones/lmq720ms-stylo-5-td-lte-us-q720ms/score/index.json new file mode 100644 index 00000000000..43ebe0cb912 --- /dev/null +++ b/site/public/v1/smartphones/lmq720ms-stylo-5-td-lte-us-q720ms/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 44.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmq720ps-stylo-5-td-lte-us-q720p/index.json b/site/public/v1/smartphones/lmq720ps-stylo-5-td-lte-us-q720p/index.json new file mode 100644 index 00000000000..7914060beef --- /dev/null +++ b/site/public/v1/smartphones/lmq720ps-stylo-5-td-lte-us-q720p/index.json @@ -0,0 +1,76 @@ +{ + "id": 1650, + "slug": "lmq720ps-stylo-5-td-lte-us-q720p", + "name": "LMQ720PS Stylo 5 TD-LTE US Q720P", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-07-19", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 44.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.357605", + "updated_at": "2026-06-19T00:43:44.357605" +} diff --git a/site/public/v1/smartphones/lmq720ps-stylo-5-td-lte-us-q720p/score/index.json b/site/public/v1/smartphones/lmq720ps-stylo-5-td-lte-us-q720p/score/index.json new file mode 100644 index 00000000000..43ebe0cb912 --- /dev/null +++ b/site/public/v1/smartphones/lmq720ps-stylo-5-td-lte-us-q720p/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 44.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmq720qm-stylo-5-lte-a-us-q720qm/index.json b/site/public/v1/smartphones/lmq720qm-stylo-5-lte-a-us-q720qm/index.json new file mode 100644 index 00000000000..a002a0c4454 --- /dev/null +++ b/site/public/v1/smartphones/lmq720qm-stylo-5-lte-a-us-q720qm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1651, + "slug": "lmq720qm-stylo-5-lte-a-us-q720qm", + "name": "LMQ720QM Stylo 5 LTE-A US Q720QM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 44.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.357605", + "updated_at": "2026-06-19T00:43:44.357605" +} diff --git a/site/public/v1/smartphones/lmq720qm-stylo-5-lte-a-us-q720qm/score/index.json b/site/public/v1/smartphones/lmq720qm-stylo-5-lte-a-us-q720qm/score/index.json new file mode 100644 index 00000000000..43ebe0cb912 --- /dev/null +++ b/site/public/v1/smartphones/lmq720qm-stylo-5-lte-a-us-q720qm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 44.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmq720qm5-stylo-5-lte-a-us-q720qm5/index.json b/site/public/v1/smartphones/lmq720qm5-stylo-5-lte-a-us-q720qm5/index.json new file mode 100644 index 00000000000..c561b218b97 --- /dev/null +++ b/site/public/v1/smartphones/lmq720qm5-stylo-5-lte-a-us-q720qm5/index.json @@ -0,0 +1,76 @@ +{ + "id": 1652, + "slug": "lmq720qm5-stylo-5-lte-a-us-q720qm5", + "name": "LMQ720QM5 Stylo 5 LTE-A US Q720QM5", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 44.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.358611", + "updated_at": "2026-06-19T00:43:44.358611" +} diff --git a/site/public/v1/smartphones/lmq720qm5-stylo-5-lte-a-us-q720qm5/score/index.json b/site/public/v1/smartphones/lmq720qm5-stylo-5-lte-a-us-q720qm5/score/index.json new file mode 100644 index 00000000000..43ebe0cb912 --- /dev/null +++ b/site/public/v1/smartphones/lmq720qm5-stylo-5-lte-a-us-q720qm5/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 44.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmq720qm6-stylo-5-lte-a-us-q720qm6/index.json b/site/public/v1/smartphones/lmq720qm6-stylo-5-lte-a-us-q720qm6/index.json new file mode 100644 index 00000000000..5a0980a03b3 --- /dev/null +++ b/site/public/v1/smartphones/lmq720qm6-stylo-5-lte-a-us-q720qm6/index.json @@ -0,0 +1,76 @@ +{ + "id": 1653, + "slug": "lmq720qm6-stylo-5-lte-a-us-q720qm6", + "name": "LMQ720QM6 Stylo 5 LTE-A US Q720QM6", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 44.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.358611", + "updated_at": "2026-06-19T00:43:44.358611" +} diff --git a/site/public/v1/smartphones/lmq720qm6-stylo-5-lte-a-us-q720qm6/score/index.json b/site/public/v1/smartphones/lmq720qm6-stylo-5-lte-a-us-q720qm6/score/index.json new file mode 100644 index 00000000000..43ebe0cb912 --- /dev/null +++ b/site/public/v1/smartphones/lmq720qm6-stylo-5-lte-a-us-q720qm6/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 44.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmq720ts3-stylo-5x-td-lte-us-q720ts/index.json b/site/public/v1/smartphones/lmq720ts3-stylo-5x-td-lte-us-q720ts/index.json new file mode 100644 index 00000000000..d19d0863a37 --- /dev/null +++ b/site/public/v1/smartphones/lmq720ts3-stylo-5x-td-lte-us-q720ts/index.json @@ -0,0 +1,76 @@ +{ + "id": 1809, + "slug": "lmq720ts3-stylo-5x-td-lte-us-q720ts", + "name": "LMQ720TS3 Stylo 5x TD-LTE US Q720TS", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2020-02-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 44.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.377881", + "updated_at": "2026-06-19T00:43:44.377881" +} diff --git a/site/public/v1/smartphones/lmq720ts3-stylo-5x-td-lte-us-q720ts/score/index.json b/site/public/v1/smartphones/lmq720ts3-stylo-5x-td-lte-us-q720ts/score/index.json new file mode 100644 index 00000000000..43ebe0cb912 --- /dev/null +++ b/site/public/v1/smartphones/lmq720ts3-stylo-5x-td-lte-us-q720ts/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 44.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmq720tsw-stylo-5-td-lte-us-q720ts/index.json b/site/public/v1/smartphones/lmq720tsw-stylo-5-td-lte-us-q720ts/index.json new file mode 100644 index 00000000000..af5b27c5e76 --- /dev/null +++ b/site/public/v1/smartphones/lmq720tsw-stylo-5-td-lte-us-q720ts/index.json @@ -0,0 +1,76 @@ +{ + "id": 1654, + "slug": "lmq720tsw-stylo-5-td-lte-us-q720ts", + "name": "LMQ720TSW Stylo 5 TD-LTE US Q720TS", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-08-18", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 44.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.358611", + "updated_at": "2026-06-19T00:43:44.358611" +} diff --git a/site/public/v1/smartphones/lmq720tsw-stylo-5-td-lte-us-q720ts/score/index.json b/site/public/v1/smartphones/lmq720tsw-stylo-5-td-lte-us-q720ts/score/index.json new file mode 100644 index 00000000000..43ebe0cb912 --- /dev/null +++ b/site/public/v1/smartphones/lmq720tsw-stylo-5-td-lte-us-q720ts/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 44.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmq720vsp-stylo-5-lte-a-us-q720v/index.json b/site/public/v1/smartphones/lmq720vsp-stylo-5-lte-a-us-q720v/index.json new file mode 100644 index 00000000000..aa86a23efed --- /dev/null +++ b/site/public/v1/smartphones/lmq720vsp-stylo-5-lte-a-us-q720v/index.json @@ -0,0 +1,76 @@ +{ + "id": 1655, + "slug": "lmq720vsp-stylo-5-lte-a-us-q720v", + "name": "LMQ720VSP Stylo 5 LTE-A US Q720V", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-08-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 44.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.358611", + "updated_at": "2026-06-19T00:43:44.358611" +} diff --git a/site/public/v1/smartphones/lmq720vsp-stylo-5-lte-a-us-q720v/score/index.json b/site/public/v1/smartphones/lmq720vsp-stylo-5-lte-a-us-q720v/score/index.json new file mode 100644 index 00000000000..43ebe0cb912 --- /dev/null +++ b/site/public/v1/smartphones/lmq720vsp-stylo-5-lte-a-us-q720v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 44.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmq730am4-stylo-6-lte-a-us-q730am4/index.json b/site/public/v1/smartphones/lmq730am4-stylo-6-lte-a-us-q730am4/index.json new file mode 100644 index 00000000000..8188fc71d19 --- /dev/null +++ b/site/public/v1/smartphones/lmq730am4-stylo-6-lte-a-us-q730am4/index.json @@ -0,0 +1,76 @@ +{ + "id": 1810, + "slug": "lmq730am4-stylo-6-lte-a-us-q730am4", + "name": "LMQ730AM4 Stylo 6 LTE-A US Q730AM4", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-06-04", + "msrp_usd": 230, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.79, + "resolution": "1080x2460", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 44.6, + "value": 58.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.377881", + "updated_at": "2026-06-19T00:43:44.377881" +} diff --git a/site/public/v1/smartphones/lmq730am4-stylo-6-lte-a-us-q730am4/score/index.json b/site/public/v1/smartphones/lmq730am4-stylo-6-lte-a-us-q730am4/score/index.json new file mode 100644 index 00000000000..5d811b5430d --- /dev/null +++ b/site/public/v1/smartphones/lmq730am4-stylo-6-lte-a-us-q730am4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 44.6, + "value": 58.1 +} diff --git a/site/public/v1/smartphones/lmq730baw-k-series-k71-dual-sim-td-lte-latam-128gb-q730baw/index.json b/site/public/v1/smartphones/lmq730baw-k-series-k71-dual-sim-td-lte-latam-128gb-q730baw/index.json new file mode 100644 index 00000000000..26f9ed8229f --- /dev/null +++ b/site/public/v1/smartphones/lmq730baw-k-series-k71-dual-sim-td-lte-latam-128gb-q730baw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1811, + "slug": "lmq730baw-k-series-k71-dual-sim-td-lte-latam-128gb-q730baw", + "name": "LMQ730BAW K Series K71 Dual SIM TD-LTE LATAM 128GB Q730BAW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.79, + "resolution": "1080x2460", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.377881", + "updated_at": "2026-06-19T00:43:44.377881" +} diff --git a/site/public/v1/smartphones/lmq730baw-k-series-k71-dual-sim-td-lte-latam-128gb-q730baw/score/index.json b/site/public/v1/smartphones/lmq730baw-k-series-k71-dual-sim-td-lte-latam-128gb-q730baw/score/index.json new file mode 100644 index 00000000000..07efc435835 --- /dev/null +++ b/site/public/v1/smartphones/lmq730baw-k-series-k71-dual-sim-td-lte-latam-128gb-q730baw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/lmq730ha-k-series-k71-td-lte-latam-128gb-q730ha/index.json b/site/public/v1/smartphones/lmq730ha-k-series-k71-td-lte-latam-128gb-q730ha/index.json new file mode 100644 index 00000000000..7402c018633 --- /dev/null +++ b/site/public/v1/smartphones/lmq730ha-k-series-k71-td-lte-latam-128gb-q730ha/index.json @@ -0,0 +1,76 @@ +{ + "id": 1812, + "slug": "lmq730ha-k-series-k71-td-lte-latam-128gb-q730ha", + "name": "LMQ730HA K Series K71 TD-LTE LATAM 128GB Q730HA", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.79, + "resolution": "1080x2460", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.378879", + "updated_at": "2026-06-19T00:43:44.378879" +} diff --git a/site/public/v1/smartphones/lmq730ha-k-series-k71-td-lte-latam-128gb-q730ha/score/index.json b/site/public/v1/smartphones/lmq730ha-k-series-k71-td-lte-latam-128gb-q730ha/score/index.json new file mode 100644 index 00000000000..07efc435835 --- /dev/null +++ b/site/public/v1/smartphones/lmq730ha-k-series-k71-td-lte-latam-128gb-q730ha/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/lmq730mm-stylo-6-td-lte-us-q730mm/index.json b/site/public/v1/smartphones/lmq730mm-stylo-6-td-lte-us-q730mm/index.json new file mode 100644 index 00000000000..b3cf4498774 --- /dev/null +++ b/site/public/v1/smartphones/lmq730mm-stylo-6-td-lte-us-q730mm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1813, + "slug": "lmq730mm-stylo-6-td-lte-us-q730mm", + "name": "LMQ730MM Stylo 6 TD-LTE US Q730MM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-05-26", + "msrp_usd": 252, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.79, + "resolution": "1080x2460", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 44.6, + "value": 58.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.378879", + "updated_at": "2026-06-19T00:43:44.378879" +} diff --git a/site/public/v1/smartphones/lmq730mm-stylo-6-td-lte-us-q730mm/score/index.json b/site/public/v1/smartphones/lmq730mm-stylo-6-td-lte-us-q730mm/score/index.json new file mode 100644 index 00000000000..5d811b5430d --- /dev/null +++ b/site/public/v1/smartphones/lmq730mm-stylo-6-td-lte-us-q730mm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 44.6, + "value": 58.1 +} diff --git a/site/public/v1/smartphones/lmq730n-q-series-q70-td-lte-kr-q730n/index.json b/site/public/v1/smartphones/lmq730n-q-series-q70-td-lte-kr-q730n/index.json new file mode 100644 index 00000000000..14d464f72fc --- /dev/null +++ b/site/public/v1/smartphones/lmq730n-q-series-q70-td-lte-kr-q730n/index.json @@ -0,0 +1,76 @@ +{ + "id": 1656, + "slug": "lmq730n-q-series-q70-td-lte-kr-q730n", + "name": "LMQ730N Q Series Q70 TD-LTE KR Q730N", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 16.1 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 11.4, + "battery": 15.0, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.358611", + "updated_at": "2026-06-19T00:43:44.358611" +} diff --git a/site/public/v1/smartphones/lmq730n-q-series-q70-td-lte-kr-q730n/score/index.json b/site/public/v1/smartphones/lmq730n-q-series-q70-td-lte-kr-q730n/score/index.json new file mode 100644 index 00000000000..f52c0553f6d --- /dev/null +++ b/site/public/v1/smartphones/lmq730n-q-series-q70-td-lte-kr-q730n/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 11.4, + "battery": 15.0, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/lmq730qm0-stylo-6-lte-a-us-q730qm0/index.json b/site/public/v1/smartphones/lmq730qm0-stylo-6-lte-a-us-q730qm0/index.json new file mode 100644 index 00000000000..d6fe730a06e --- /dev/null +++ b/site/public/v1/smartphones/lmq730qm0-stylo-6-lte-a-us-q730qm0/index.json @@ -0,0 +1,76 @@ +{ + "id": 1814, + "slug": "lmq730qm0-stylo-6-lte-a-us-q730qm0", + "name": "LMQ730QM0 Stylo 6 LTE-A US Q730QM0", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.79, + "resolution": "1080x2460", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.378879", + "updated_at": "2026-06-19T00:43:44.378879" +} diff --git a/site/public/v1/smartphones/lmq730qm0-stylo-6-lte-a-us-q730qm0/score/index.json b/site/public/v1/smartphones/lmq730qm0-stylo-6-lte-a-us-q730qm0/score/index.json new file mode 100644 index 00000000000..edcebd82a6c --- /dev/null +++ b/site/public/v1/smartphones/lmq730qm0-stylo-6-lte-a-us-q730qm0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/lmq730qm5-stylo-6-lte-a-us-q730qm5/index.json b/site/public/v1/smartphones/lmq730qm5-stylo-6-lte-a-us-q730qm5/index.json new file mode 100644 index 00000000000..306d96ee5ef --- /dev/null +++ b/site/public/v1/smartphones/lmq730qm5-stylo-6-lte-a-us-q730qm5/index.json @@ -0,0 +1,76 @@ +{ + "id": 1815, + "slug": "lmq730qm5-stylo-6-lte-a-us-q730qm5", + "name": "LMQ730QM5 Stylo 6 LTE-A US Q730QM5", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-06-01", + "msrp_usd": 300, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.79, + "resolution": "1080x2460", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 44.6, + "value": 58.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.378879", + "updated_at": "2026-06-19T00:43:44.378879" +} diff --git a/site/public/v1/smartphones/lmq730qm5-stylo-6-lte-a-us-q730qm5/score/index.json b/site/public/v1/smartphones/lmq730qm5-stylo-6-lte-a-us-q730qm5/score/index.json new file mode 100644 index 00000000000..5d811b5430d --- /dev/null +++ b/site/public/v1/smartphones/lmq730qm5-stylo-6-lte-a-us-q730qm5/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 44.6, + "value": 58.1 +} diff --git a/site/public/v1/smartphones/lmq730qm6-stylo-6-lte-a-us-q730qm6/index.json b/site/public/v1/smartphones/lmq730qm6-stylo-6-lte-a-us-q730qm6/index.json new file mode 100644 index 00000000000..3f6ad253c26 --- /dev/null +++ b/site/public/v1/smartphones/lmq730qm6-stylo-6-lte-a-us-q730qm6/index.json @@ -0,0 +1,76 @@ +{ + "id": 1816, + "slug": "lmq730qm6-stylo-6-lte-a-us-q730qm6", + "name": "LMQ730QM6 Stylo 6 LTE-A US Q730QM6", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.79, + "resolution": "1080x2460", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.378879", + "updated_at": "2026-06-19T00:43:44.378879" +} diff --git a/site/public/v1/smartphones/lmq730qm6-stylo-6-lte-a-us-q730qm6/score/index.json b/site/public/v1/smartphones/lmq730qm6-stylo-6-lte-a-us-q730qm6/score/index.json new file mode 100644 index 00000000000..edcebd82a6c --- /dev/null +++ b/site/public/v1/smartphones/lmq730qm6-stylo-6-lte-a-us-q730qm6/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/lmq730qm7-stylo-6-lte-a-us-q730qm7/index.json b/site/public/v1/smartphones/lmq730qm7-stylo-6-lte-a-us-q730qm7/index.json new file mode 100644 index 00000000000..629e3c33850 --- /dev/null +++ b/site/public/v1/smartphones/lmq730qm7-stylo-6-lte-a-us-q730qm7/index.json @@ -0,0 +1,76 @@ +{ + "id": 1817, + "slug": "lmq730qm7-stylo-6-lte-a-us-q730qm7", + "name": "LMQ730QM7 Stylo 6 LTE-A US Q730QM7", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-06-01", + "msrp_usd": 300, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.79, + "resolution": "1080x2460", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 44.6, + "value": 58.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.378879", + "updated_at": "2026-06-19T00:43:44.378879" +} diff --git a/site/public/v1/smartphones/lmq730qm7-stylo-6-lte-a-us-q730qm7/score/index.json b/site/public/v1/smartphones/lmq730qm7-stylo-6-lte-a-us-q730qm7/score/index.json new file mode 100644 index 00000000000..5d811b5430d --- /dev/null +++ b/site/public/v1/smartphones/lmq730qm7-stylo-6-lte-a-us-q730qm7/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 44.6, + "value": 58.1 +} diff --git a/site/public/v1/smartphones/lmq730qn-stylo-6-lte-a-latam-q730qn/index.json b/site/public/v1/smartphones/lmq730qn-stylo-6-lte-a-latam-q730qn/index.json new file mode 100644 index 00000000000..4ea58f07588 --- /dev/null +++ b/site/public/v1/smartphones/lmq730qn-stylo-6-lte-a-latam-q730qn/index.json @@ -0,0 +1,76 @@ +{ + "id": 1818, + "slug": "lmq730qn-stylo-6-lte-a-latam-q730qn", + "name": "LMQ730QN Stylo 6 LTE-A LATAM Q730QN", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-07-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.79, + "resolution": "1080x2460", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 219.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.379879", + "updated_at": "2026-06-19T00:43:44.379879" +} diff --git a/site/public/v1/smartphones/lmq730qn-stylo-6-lte-a-latam-q730qn/score/index.json b/site/public/v1/smartphones/lmq730qn-stylo-6-lte-a-latam-q730qn/score/index.json new file mode 100644 index 00000000000..edcebd82a6c --- /dev/null +++ b/site/public/v1/smartphones/lmq730qn-stylo-6-lte-a-latam-q730qn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/lmq730tm3-stylo-6-td-lte-us-q730tm3/index.json b/site/public/v1/smartphones/lmq730tm3-stylo-6-td-lte-us-q730tm3/index.json new file mode 100644 index 00000000000..499709a92f4 --- /dev/null +++ b/site/public/v1/smartphones/lmq730tm3-stylo-6-td-lte-us-q730tm3/index.json @@ -0,0 +1,76 @@ +{ + "id": 1819, + "slug": "lmq730tm3-stylo-6-td-lte-us-q730tm3", + "name": "LMQ730TM3 Stylo 6 TD-LTE US Q730TM3", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-05-21", + "msrp_usd": 220, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.79, + "resolution": "1080x2460", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 44.6, + "value": 58.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.379879", + "updated_at": "2026-06-19T00:43:44.379879" +} diff --git a/site/public/v1/smartphones/lmq730tm3-stylo-6-td-lte-us-q730tm3/score/index.json b/site/public/v1/smartphones/lmq730tm3-stylo-6-td-lte-us-q730tm3/score/index.json new file mode 100644 index 00000000000..5d811b5430d --- /dev/null +++ b/site/public/v1/smartphones/lmq730tm3-stylo-6-td-lte-us-q730tm3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 44.6, + "value": 58.1 +} diff --git a/site/public/v1/smartphones/lmq730tmw-stylo-6-td-lte-us-q730tmw/index.json b/site/public/v1/smartphones/lmq730tmw-stylo-6-td-lte-us-q730tmw/index.json new file mode 100644 index 00000000000..24acf090b88 --- /dev/null +++ b/site/public/v1/smartphones/lmq730tmw-stylo-6-td-lte-us-q730tmw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1820, + "slug": "lmq730tmw-stylo-6-td-lte-us-q730tmw", + "name": "LMQ730TMW Stylo 6 TD-LTE US Q730TMW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-05-01", + "msrp_usd": 252, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.79, + "resolution": "1080x2460", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 44.6, + "value": 58.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.379879", + "updated_at": "2026-06-19T00:43:44.379879" +} diff --git a/site/public/v1/smartphones/lmq730tmw-stylo-6-td-lte-us-q730tmw/score/index.json b/site/public/v1/smartphones/lmq730tmw-stylo-6-td-lte-us-q730tmw/score/index.json new file mode 100644 index 00000000000..5d811b5430d --- /dev/null +++ b/site/public/v1/smartphones/lmq730tmw-stylo-6-td-lte-us-q730tmw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 44.6, + "value": 58.1 +} diff --git a/site/public/v1/smartphones/lmq730vmw-stylo-6-lte-a-us-q730vmw/index.json b/site/public/v1/smartphones/lmq730vmw-stylo-6-lte-a-us-q730vmw/index.json new file mode 100644 index 00000000000..b049674eb2d --- /dev/null +++ b/site/public/v1/smartphones/lmq730vmw-stylo-6-lte-a-us-q730vmw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1821, + "slug": "lmq730vmw-stylo-6-lte-a-us-q730vmw", + "name": "LMQ730VMW Stylo 6 LTE-A US Q730VMW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-06-01", + "msrp_usd": 240, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.79, + "resolution": "1080x2460", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 44.6, + "value": 58.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.379879", + "updated_at": "2026-06-19T00:43:44.379879" +} diff --git a/site/public/v1/smartphones/lmq730vmw-stylo-6-lte-a-us-q730vmw/score/index.json b/site/public/v1/smartphones/lmq730vmw-stylo-6-lte-a-us-q730vmw/score/index.json new file mode 100644 index 00000000000..5d811b5430d --- /dev/null +++ b/site/public/v1/smartphones/lmq730vmw-stylo-6-lte-a-us-q730vmw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 44.6, + "value": 58.1 +} diff --git a/site/public/v1/smartphones/lmq850ea-g7-fit-td-lte-apac-latam-64gb-q850ea/index.json b/site/public/v1/smartphones/lmq850ea-g7-fit-td-lte-apac-latam-64gb-q850ea/index.json new file mode 100644 index 00000000000..7b9ae9554f1 --- /dev/null +++ b/site/public/v1/smartphones/lmq850ea-g7-fit-td-lte-apac-latam-64gb-q850ea/index.json @@ -0,0 +1,76 @@ +{ + "id": 1546, + "slug": "lmq850ea-g7-fit-td-lte-apac-latam-64gb-q850ea", + "name": "LMQ850EA G7 Fit TD-LTE APAC LATAM 64GB Q850EA", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 116, + "slug": "snapdragon-821", + "name": "Snapdragon 821", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 530", + "url": "/v1/socs/snapdragon-821" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 158.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 11.8, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.345606", + "updated_at": "2026-06-19T00:43:44.345606" +} diff --git a/site/public/v1/smartphones/lmq850ea-g7-fit-td-lte-apac-latam-64gb-q850ea/score/index.json b/site/public/v1/smartphones/lmq850ea-g7-fit-td-lte-apac-latam-64gb-q850ea/score/index.json new file mode 100644 index 00000000000..b0d0bd4d903 --- /dev/null +++ b/site/public/v1/smartphones/lmq850ea-g7-fit-td-lte-apac-latam-64gb-q850ea/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 11.8, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null +} diff --git a/site/public/v1/smartphones/lmq850eaw-g7-fit-dual-sim-td-lte-apac-latam-64gb-q850eaw/index.json b/site/public/v1/smartphones/lmq850eaw-g7-fit-dual-sim-td-lte-apac-latam-64gb-q850eaw/index.json new file mode 100644 index 00000000000..d17c2497e94 --- /dev/null +++ b/site/public/v1/smartphones/lmq850eaw-g7-fit-dual-sim-td-lte-apac-latam-64gb-q850eaw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1547, + "slug": "lmq850eaw-g7-fit-dual-sim-td-lte-apac-latam-64gb-q850eaw", + "name": "LMQ850EAW G7 Fit Dual SIM TD-LTE APAC LATAM 64GB Q850EAW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 116, + "slug": "snapdragon-821", + "name": "Snapdragon 821", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 530", + "url": "/v1/socs/snapdragon-821" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 158.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 11.8, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.345606", + "updated_at": "2026-06-19T00:43:44.345606" +} diff --git a/site/public/v1/smartphones/lmq850eaw-g7-fit-dual-sim-td-lte-apac-latam-64gb-q850eaw/score/index.json b/site/public/v1/smartphones/lmq850eaw-g7-fit-dual-sim-td-lte-apac-latam-64gb-q850eaw/score/index.json new file mode 100644 index 00000000000..b0d0bd4d903 --- /dev/null +++ b/site/public/v1/smartphones/lmq850eaw-g7-fit-dual-sim-td-lte-apac-latam-64gb-q850eaw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 11.8, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null +} diff --git a/site/public/v1/smartphones/lmq850em-g7-fit-td-lte-emea/index.json b/site/public/v1/smartphones/lmq850em-g7-fit-td-lte-emea/index.json new file mode 100644 index 00000000000..e110972d922 --- /dev/null +++ b/site/public/v1/smartphones/lmq850em-g7-fit-td-lte-emea/index.json @@ -0,0 +1,76 @@ +{ + "id": 1548, + "slug": "lmq850em-g7-fit-td-lte-emea", + "name": "LMQ850EM G7 Fit TD-LTE EMEA", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 116, + "slug": "snapdragon-821", + "name": "Snapdragon 821", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 530", + "url": "/v1/socs/snapdragon-821" + }, + "release_date": "2018-11-06", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 158.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 11.8, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.345606", + "updated_at": "2026-06-19T00:43:44.345606" +} diff --git a/site/public/v1/smartphones/lmq850em-g7-fit-td-lte-emea/score/index.json b/site/public/v1/smartphones/lmq850em-g7-fit-td-lte-emea/score/index.json new file mode 100644 index 00000000000..b0d0bd4d903 --- /dev/null +++ b/site/public/v1/smartphones/lmq850em-g7-fit-td-lte-emea/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 11.8, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null +} diff --git a/site/public/v1/smartphones/lmq850emw-g7-fit-dual-sim-td-lte-emea/index.json b/site/public/v1/smartphones/lmq850emw-g7-fit-dual-sim-td-lte-emea/index.json new file mode 100644 index 00000000000..7ebc4459448 --- /dev/null +++ b/site/public/v1/smartphones/lmq850emw-g7-fit-dual-sim-td-lte-emea/index.json @@ -0,0 +1,76 @@ +{ + "id": 1549, + "slug": "lmq850emw-g7-fit-dual-sim-td-lte-emea", + "name": "LMQ850EMW G7 Fit Dual SIM TD-LTE EMEA", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 116, + "slug": "snapdragon-821", + "name": "Snapdragon 821", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 530", + "url": "/v1/socs/snapdragon-821" + }, + "release_date": "2018-11-06", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 158.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 11.8, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.345606", + "updated_at": "2026-06-19T00:43:44.345606" +} diff --git a/site/public/v1/smartphones/lmq850emw-g7-fit-dual-sim-td-lte-emea/score/index.json b/site/public/v1/smartphones/lmq850emw-g7-fit-dual-sim-td-lte-emea/score/index.json new file mode 100644 index 00000000000..b0d0bd4d903 --- /dev/null +++ b/site/public/v1/smartphones/lmq850emw-g7-fit-dual-sim-td-lte-emea/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 11.8, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null +} diff --git a/site/public/v1/smartphones/lmq850qm-g7-fit-td-lte-us-lmq850qm5-lmq850qm6/index.json b/site/public/v1/smartphones/lmq850qm-g7-fit-td-lte-us-lmq850qm5-lmq850qm6/index.json new file mode 100644 index 00000000000..9f92b89407b --- /dev/null +++ b/site/public/v1/smartphones/lmq850qm-g7-fit-td-lte-us-lmq850qm5-lmq850qm6/index.json @@ -0,0 +1,76 @@ +{ + "id": 1657, + "slug": "lmq850qm-g7-fit-td-lte-us-lmq850qm5-lmq850qm6", + "name": "LMQ850QM G7 Fit TD-LTE US / LMQ850QM5 / LMQ850QM6", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 116, + "slug": "snapdragon-821", + "name": "Snapdragon 821", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 530", + "url": "/v1/socs/snapdragon-821" + }, + "release_date": "2019-04-07", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 158.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 11.8, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.358611", + "updated_at": "2026-06-19T00:43:44.358611" +} diff --git a/site/public/v1/smartphones/lmq850qm-g7-fit-td-lte-us-lmq850qm5-lmq850qm6/score/index.json b/site/public/v1/smartphones/lmq850qm-g7-fit-td-lte-us-lmq850qm5-lmq850qm6/score/index.json new file mode 100644 index 00000000000..b0d0bd4d903 --- /dev/null +++ b/site/public/v1/smartphones/lmq850qm-g7-fit-td-lte-us-lmq850qm5-lmq850qm6/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 11.8, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null +} diff --git a/site/public/v1/smartphones/lmq850qmd-g7-fit-td-lte-us-q850qmd/index.json b/site/public/v1/smartphones/lmq850qmd-g7-fit-td-lte-us-q850qmd/index.json new file mode 100644 index 00000000000..60e599e6867 --- /dev/null +++ b/site/public/v1/smartphones/lmq850qmd-g7-fit-td-lte-us-q850qmd/index.json @@ -0,0 +1,76 @@ +{ + "id": 1658, + "slug": "lmq850qmd-g7-fit-td-lte-us-q850qmd", + "name": "LMQ850QMD G7 Fit TD-LTE US Q850QMD", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 116, + "slug": "snapdragon-821", + "name": "Snapdragon 821", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 530", + "url": "/v1/socs/snapdragon-821" + }, + "release_date": "2019-04-07", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 158.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 11.8, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.358611", + "updated_at": "2026-06-19T00:43:44.358611" +} diff --git a/site/public/v1/smartphones/lmq850qmd-g7-fit-td-lte-us-q850qmd/score/index.json b/site/public/v1/smartphones/lmq850qmd-g7-fit-td-lte-us-q850qmd/score/index.json new file mode 100644 index 00000000000..b0d0bd4d903 --- /dev/null +++ b/site/public/v1/smartphones/lmq850qmd-g7-fit-td-lte-us-q850qmd/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 11.8, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null +} diff --git a/site/public/v1/smartphones/lmq910um-g7-one-td-lte-na/index.json b/site/public/v1/smartphones/lmq910um-g7-one-td-lte-na/index.json new file mode 100644 index 00000000000..35bf10dbfa3 --- /dev/null +++ b/site/public/v1/smartphones/lmq910um-g7-one-td-lte-na/index.json @@ -0,0 +1,76 @@ +{ + "id": 1550, + "slug": "lmq910um-g7-one-td-lte-na", + "name": "LMQ910UM G7 One TD-LTE NA", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 122, + "slug": "snapdragon-835", + "name": "Snapdragon 835", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 540", + "url": "/v1/socs/snapdragon-835" + }, + "release_date": "2018-10-12", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.7, + "performance": 23.1, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.345606", + "updated_at": "2026-06-19T00:43:44.345606" +} diff --git a/site/public/v1/smartphones/lmq910um-g7-one-td-lte-na/score/index.json b/site/public/v1/smartphones/lmq910um-g7-one-td-lte-na/score/index.json new file mode 100644 index 00000000000..e97af07ce40 --- /dev/null +++ b/site/public/v1/smartphones/lmq910um-g7-one-td-lte-na/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.7, + "performance": 23.1, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null +} diff --git a/site/public/v1/smartphones/lmq920n-q-series-q92-5g-td-lte-kr-q920n/index.json b/site/public/v1/smartphones/lmq920n-q-series-q92-5g-td-lte-kr-q920n/index.json new file mode 100644 index 00000000000..8a14819e3fb --- /dev/null +++ b/site/public/v1/smartphones/lmq920n-q-series-q92-5g-td-lte-kr-q920n/index.json @@ -0,0 +1,76 @@ +{ + "id": 1822, + "slug": "lmq920n-q-series-q92-5g-td-lte-kr-q920n", + "name": "LMQ920N Q Series Q92 5G TD-LTE KR Q920N", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-08-26", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.379879", + "updated_at": "2026-06-19T00:43:44.379879" +} diff --git a/site/public/v1/smartphones/lmq920n-q-series-q92-5g-td-lte-kr-q920n/score/index.json b/site/public/v1/smartphones/lmq920n-q-series-q92-5g-td-lte-kr-q920n/score/index.json new file mode 100644 index 00000000000..bc41c79e644 --- /dev/null +++ b/site/public/v1/smartphones/lmq920n-q-series-q92-5g-td-lte-kr-q920n/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/lmv350awmh-v35-thinq-dual-sim-td-lte-latam/index.json b/site/public/v1/smartphones/lmv350awmh-v35-thinq-dual-sim-td-lte-latam/index.json new file mode 100644 index 00000000000..916f5741f36 --- /dev/null +++ b/site/public/v1/smartphones/lmv350awmh-v35-thinq-dual-sim-td-lte-latam/index.json @@ -0,0 +1,76 @@ +{ + "id": 1551, + "slug": "lmv350awmh-v35-thinq-dual-sim-td-lte-latam", + "name": "LMV350AWMH V35 ThinQ Dual SIM TD-LTE LATAM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 157.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 1.5, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.346606", + "updated_at": "2026-06-19T00:43:44.346606" +} diff --git a/site/public/v1/smartphones/lmv350awmh-v35-thinq-dual-sim-td-lte-latam/score/index.json b/site/public/v1/smartphones/lmv350awmh-v35-thinq-dual-sim-td-lte-latam/score/index.json new file mode 100644 index 00000000000..3c34fce862b --- /dev/null +++ b/site/public/v1/smartphones/lmv350awmh-v35-thinq-dual-sim-td-lte-latam/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 1.5, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null +} diff --git a/site/public/v1/smartphones/lmv350eaw-v35-thinq-dual-sim-lte-a-latam-128gb/index.json b/site/public/v1/smartphones/lmv350eaw-v35-thinq-dual-sim-lte-a-latam-128gb/index.json new file mode 100644 index 00000000000..294e518a50b --- /dev/null +++ b/site/public/v1/smartphones/lmv350eaw-v35-thinq-dual-sim-lte-a-latam-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1552, + "slug": "lmv350eaw-v35-thinq-dual-sim-lte-a-latam-128gb", + "name": "LMV350EAW V35 ThinQ Dual SIM LTE-A LATAM 128GB", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 157.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 1.5, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.346606", + "updated_at": "2026-06-19T00:43:44.346606" +} diff --git a/site/public/v1/smartphones/lmv350eaw-v35-thinq-dual-sim-lte-a-latam-128gb/score/index.json b/site/public/v1/smartphones/lmv350eaw-v35-thinq-dual-sim-lte-a-latam-128gb/score/index.json new file mode 100644 index 00000000000..3c34fce862b --- /dev/null +++ b/site/public/v1/smartphones/lmv350eaw-v35-thinq-dual-sim-lte-a-latam-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 1.5, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null +} diff --git a/site/public/v1/smartphones/lmv350em-v35-thinq-dual-sim-lte-a-latam/index.json b/site/public/v1/smartphones/lmv350em-v35-thinq-dual-sim-lte-a-latam/index.json new file mode 100644 index 00000000000..16f3a2b6390 --- /dev/null +++ b/site/public/v1/smartphones/lmv350em-v35-thinq-dual-sim-lte-a-latam/index.json @@ -0,0 +1,76 @@ +{ + "id": 1553, + "slug": "lmv350em-v35-thinq-dual-sim-lte-a-latam", + "name": "LMV350EM V35 ThinQ Dual SIM LTE-A LATAM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 157.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 1.5, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.346606", + "updated_at": "2026-06-19T00:43:44.346606" +} diff --git a/site/public/v1/smartphones/lmv350em-v35-thinq-dual-sim-lte-a-latam/score/index.json b/site/public/v1/smartphones/lmv350em-v35-thinq-dual-sim-lte-a-latam/score/index.json new file mode 100644 index 00000000000..3c34fce862b --- /dev/null +++ b/site/public/v1/smartphones/lmv350em-v35-thinq-dual-sim-lte-a-latam/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 1.5, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null +} diff --git a/site/public/v1/smartphones/lmv405eb-v40-thinq-td-lte-emea/index.json b/site/public/v1/smartphones/lmv405eb-v40-thinq-td-lte-emea/index.json new file mode 100644 index 00000000000..e48eda917f0 --- /dev/null +++ b/site/public/v1/smartphones/lmv405eb-v40-thinq-td-lte-emea/index.json @@ -0,0 +1,74 @@ +{ + "id": 1659, + "slug": "lmv405eb-v40-thinq-td-lte-emea", + "name": "LMV405EB V40 ThinQ TD-LTE EMEA", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2019-01-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [], + "display": { + "size_inch": 6.38, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 539 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 1.5, + "camera": 5.1, + "battery": 4.5, + "display": 58.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.358611", + "updated_at": "2026-06-19T00:43:44.358611" +} diff --git a/site/public/v1/smartphones/lmv405eb-v40-thinq-td-lte-emea/score/index.json b/site/public/v1/smartphones/lmv405eb-v40-thinq-td-lte-emea/score/index.json new file mode 100644 index 00000000000..f4554eda919 --- /dev/null +++ b/site/public/v1/smartphones/lmv405eb-v40-thinq-td-lte-emea/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 1.5, + "camera": 5.1, + "battery": 4.5, + "display": 58.9, + "value": null +} diff --git a/site/public/v1/smartphones/lmv405ebw-v40-thinq-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/lmv405ebw-v40-thinq-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..501e5370e97 --- /dev/null +++ b/site/public/v1/smartphones/lmv405ebw-v40-thinq-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1660, + "slug": "lmv405ebw-v40-thinq-global-dual-sim-td-lte-128gb", + "name": "LMV405EBW V40 ThinQ Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2019-01-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 539 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 1.5, + "camera": 5.1, + "battery": 4.5, + "display": 58.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.358611", + "updated_at": "2026-06-19T00:43:44.358611" +} diff --git a/site/public/v1/smartphones/lmv405ebw-v40-thinq-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/lmv405ebw-v40-thinq-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..f4554eda919 --- /dev/null +++ b/site/public/v1/smartphones/lmv405ebw-v40-thinq-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 1.5, + "camera": 5.1, + "battery": 4.5, + "display": 58.9, + "value": null +} diff --git a/site/public/v1/smartphones/lmv450pm-v50-thinq-5g-td-lte-us-v450pm/index.json b/site/public/v1/smartphones/lmv450pm-v50-thinq-5g-td-lte-us-v450pm/index.json new file mode 100644 index 00000000000..244d3a08fbc --- /dev/null +++ b/site/public/v1/smartphones/lmv450pm-v50-thinq-5g-td-lte-us-v450pm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1661, + "slug": "lmv450pm-v50-thinq-5g-td-lte-us-v450pm", + "name": "LMV450PM V50 ThinQ 5G TD-LTE US V450PM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 5.1, + "battery": 15.0, + "display": 58.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.359610", + "updated_at": "2026-06-19T00:43:44.359610" +} diff --git a/site/public/v1/smartphones/lmv450pm-v50-thinq-5g-td-lte-us-v450pm/score/index.json b/site/public/v1/smartphones/lmv450pm-v50-thinq-5g-td-lte-us-v450pm/score/index.json new file mode 100644 index 00000000000..161cb0fa10d --- /dev/null +++ b/site/public/v1/smartphones/lmv450pm-v50-thinq-5g-td-lte-us-v450pm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 5.1, + "battery": 15.0, + "display": 58.7, + "value": null +} diff --git a/site/public/v1/smartphones/lmv450vmb-v50-thinq-5g-td-lte-us-v450vmb-g450vm/index.json b/site/public/v1/smartphones/lmv450vmb-v50-thinq-5g-td-lte-us-v450vmb-g450vm/index.json new file mode 100644 index 00000000000..b3ec66c917f --- /dev/null +++ b/site/public/v1/smartphones/lmv450vmb-v50-thinq-5g-td-lte-us-v450vmb-g450vm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1662, + "slug": "lmv450vmb-v50-thinq-5g-td-lte-us-v450vmb-g450vm", + "name": "LMV450VMB V50 ThinQ 5G TD-LTE US V450VMB / G450VM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 5.1, + "battery": 15.0, + "display": 58.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.359610", + "updated_at": "2026-06-19T00:43:44.359610" +} diff --git a/site/public/v1/smartphones/lmv450vmb-v50-thinq-5g-td-lte-us-v450vmb-g450vm/score/index.json b/site/public/v1/smartphones/lmv450vmb-v50-thinq-5g-td-lte-us-v450vmb-g450vm/score/index.json new file mode 100644 index 00000000000..161cb0fa10d --- /dev/null +++ b/site/public/v1/smartphones/lmv450vmb-v50-thinq-5g-td-lte-us-v450vmb-g450vm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 5.1, + "battery": 15.0, + "display": 58.7, + "value": null +} diff --git a/site/public/v1/smartphones/lmv500em-v50-thinq-global-5g-td-lte/index.json b/site/public/v1/smartphones/lmv500em-v50-thinq-global-5g-td-lte/index.json new file mode 100644 index 00000000000..c1b88543ba5 --- /dev/null +++ b/site/public/v1/smartphones/lmv500em-v50-thinq-global-5g-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 1663, + "slug": "lmv500em-v50-thinq-global-5g-td-lte", + "name": "LMV500EM V50 ThinQ Global 5G TD-LTE", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 5.1, + "battery": 15.0, + "display": 58.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.359610", + "updated_at": "2026-06-19T00:43:44.359610" +} diff --git a/site/public/v1/smartphones/lmv500em-v50-thinq-global-5g-td-lte/score/index.json b/site/public/v1/smartphones/lmv500em-v50-thinq-global-5g-td-lte/score/index.json new file mode 100644 index 00000000000..161cb0fa10d --- /dev/null +++ b/site/public/v1/smartphones/lmv500em-v50-thinq-global-5g-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 5.1, + "battery": 15.0, + "display": 58.7, + "value": null +} diff --git a/site/public/v1/smartphones/lmv600am-v60-thinq-5g-td-lte-us-v600am/index.json b/site/public/v1/smartphones/lmv600am-v60-thinq-5g-td-lte-us-v600am/index.json new file mode 100644 index 00000000000..6dbd2a7923d --- /dev/null +++ b/site/public/v1/smartphones/lmv600am-v60-thinq-5g-td-lte-us-v600am/index.json @@ -0,0 +1,76 @@ +{ + "id": 1823, + "slug": "lmv600am-v60-thinq-5g-td-lte-us-v600am", + "name": "LMV600AM V60 ThinQ 5G TD-LTE US V600AM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-27", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 214.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 3.0, + "camera": 21.5, + "battery": 31.9, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.379879", + "updated_at": "2026-06-19T00:43:44.379879" +} diff --git a/site/public/v1/smartphones/lmv600am-v60-thinq-5g-td-lte-us-v600am/score/index.json b/site/public/v1/smartphones/lmv600am-v60-thinq-5g-td-lte-us-v600am/score/index.json new file mode 100644 index 00000000000..3898f64e8b1 --- /dev/null +++ b/site/public/v1/smartphones/lmv600am-v60-thinq-5g-td-lte-us-v600am/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 3.0, + "camera": 21.5, + "battery": 31.9, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/lmv600ea-v60-thinq-5g-global-td-lte-256gb-v600ea/index.json b/site/public/v1/smartphones/lmv600ea-v60-thinq-5g-global-td-lte-256gb-v600ea/index.json new file mode 100644 index 00000000000..fdb3c3462c0 --- /dev/null +++ b/site/public/v1/smartphones/lmv600ea-v60-thinq-5g-global-td-lte-256gb-v600ea/index.json @@ -0,0 +1,76 @@ +{ + "id": 1824, + "slug": "lmv600ea-v60-thinq-5g-global-td-lte-256gb-v600ea", + "name": "LMV600EA V60 ThinQ 5G Global TD-LTE 256GB V600EA", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-05-21", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 214.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 3.0, + "camera": 21.5, + "battery": 31.9, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.379879", + "updated_at": "2026-06-19T00:43:44.379879" +} diff --git a/site/public/v1/smartphones/lmv600ea-v60-thinq-5g-global-td-lte-256gb-v600ea/score/index.json b/site/public/v1/smartphones/lmv600ea-v60-thinq-5g-global-td-lte-256gb-v600ea/score/index.json new file mode 100644 index 00000000000..3898f64e8b1 --- /dev/null +++ b/site/public/v1/smartphones/lmv600ea-v60-thinq-5g-global-td-lte-256gb-v600ea/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 3.0, + "camera": 21.5, + "battery": 31.9, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/lmv600qm-v60-thinq-5g-td-lte-us-v600qm5-v600qm6/index.json b/site/public/v1/smartphones/lmv600qm-v60-thinq-5g-td-lte-us-v600qm5-v600qm6/index.json new file mode 100644 index 00000000000..2325ba8bb95 --- /dev/null +++ b/site/public/v1/smartphones/lmv600qm-v60-thinq-5g-td-lte-us-v600qm5-v600qm6/index.json @@ -0,0 +1,76 @@ +{ + "id": 1825, + "slug": "lmv600qm-v60-thinq-5g-td-lte-us-v600qm5-v600qm6", + "name": "LMV600QM V60 ThinQ 5G TD-lTE US V600QM5 / V600QM6", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 214.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 3.0, + "camera": 21.5, + "battery": 31.9, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.379879", + "updated_at": "2026-06-19T00:43:44.379879" +} diff --git a/site/public/v1/smartphones/lmv600qm-v60-thinq-5g-td-lte-us-v600qm5-v600qm6/score/index.json b/site/public/v1/smartphones/lmv600qm-v60-thinq-5g-td-lte-us-v600qm5-v600qm6/score/index.json new file mode 100644 index 00000000000..3898f64e8b1 --- /dev/null +++ b/site/public/v1/smartphones/lmv600qm-v60-thinq-5g-td-lte-us-v600qm5-v600qm6/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 3.0, + "camera": 21.5, + "battery": 31.9, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/lmv600tm0-v60-thinq-5g-td-lte-us-v600tm/index.json b/site/public/v1/smartphones/lmv600tm0-v60-thinq-5g-td-lte-us-v600tm/index.json new file mode 100644 index 00000000000..eed2b411866 --- /dev/null +++ b/site/public/v1/smartphones/lmv600tm0-v60-thinq-5g-td-lte-us-v600tm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1826, + "slug": "lmv600tm0-v60-thinq-5g-td-lte-us-v600tm", + "name": "LMV600TM0 V60 ThinQ 5G TD-LTE US V600TM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 214.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 3.0, + "camera": 21.5, + "battery": 31.9, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.379879", + "updated_at": "2026-06-19T00:43:44.379879" +} diff --git a/site/public/v1/smartphones/lmv600tm0-v60-thinq-5g-td-lte-us-v600tm/score/index.json b/site/public/v1/smartphones/lmv600tm0-v60-thinq-5g-td-lte-us-v600tm/score/index.json new file mode 100644 index 00000000000..3898f64e8b1 --- /dev/null +++ b/site/public/v1/smartphones/lmv600tm0-v60-thinq-5g-td-lte-us-v600tm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 3.0, + "camera": 21.5, + "battery": 31.9, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/lmv600tm2x-v60-thinq-5g-td-lte-ca-v600tm2x/index.json b/site/public/v1/smartphones/lmv600tm2x-v60-thinq-5g-td-lte-ca-v600tm2x/index.json new file mode 100644 index 00000000000..6cd68dd3cc7 --- /dev/null +++ b/site/public/v1/smartphones/lmv600tm2x-v60-thinq-5g-td-lte-ca-v600tm2x/index.json @@ -0,0 +1,76 @@ +{ + "id": 1827, + "slug": "lmv600tm2x-v60-thinq-5g-td-lte-ca-v600tm2x", + "name": "LMV600TM2X V60 ThinQ 5G TD-LTE CA V600TM2X", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 214.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 3.0, + "camera": 21.5, + "battery": 31.9, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.380881", + "updated_at": "2026-06-19T00:43:44.380881" +} diff --git a/site/public/v1/smartphones/lmv600tm2x-v60-thinq-5g-td-lte-ca-v600tm2x/score/index.json b/site/public/v1/smartphones/lmv600tm2x-v60-thinq-5g-td-lte-ca-v600tm2x/score/index.json new file mode 100644 index 00000000000..3898f64e8b1 --- /dev/null +++ b/site/public/v1/smartphones/lmv600tm2x-v60-thinq-5g-td-lte-ca-v600tm2x/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 3.0, + "camera": 21.5, + "battery": 31.9, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/lmv600tml-v60-thinq-5g-td-lte-us-v600tm/index.json b/site/public/v1/smartphones/lmv600tml-v60-thinq-5g-td-lte-us-v600tm/index.json new file mode 100644 index 00000000000..0c5b0e411af --- /dev/null +++ b/site/public/v1/smartphones/lmv600tml-v60-thinq-5g-td-lte-us-v600tm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1828, + "slug": "lmv600tml-v60-thinq-5g-td-lte-us-v600tm", + "name": "LMV600TML V60 ThinQ 5G TD-LTE US V600TM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-28", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 214.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 3.0, + "camera": 21.5, + "battery": 31.9, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.380881", + "updated_at": "2026-06-19T00:43:44.380881" +} diff --git a/site/public/v1/smartphones/lmv600tml-v60-thinq-5g-td-lte-us-v600tm/score/index.json b/site/public/v1/smartphones/lmv600tml-v60-thinq-5g-td-lte-us-v600tm/score/index.json new file mode 100644 index 00000000000..3898f64e8b1 --- /dev/null +++ b/site/public/v1/smartphones/lmv600tml-v60-thinq-5g-td-lte-us-v600tm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 3.0, + "camera": 21.5, + "battery": 31.9, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/lmv600vm-v60-thinq-5g-uw-td-lte-us-v600vm/index.json b/site/public/v1/smartphones/lmv600vm-v60-thinq-5g-uw-td-lte-us-v600vm/index.json new file mode 100644 index 00000000000..59b397dc58d --- /dev/null +++ b/site/public/v1/smartphones/lmv600vm-v60-thinq-5g-uw-td-lte-us-v600vm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1829, + "slug": "lmv600vm-v60-thinq-5g-uw-td-lte-us-v600vm", + "name": "LMV600VM V60 ThinQ 5G UW TD-LTE US V600VM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-27", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 214.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 3.0, + "camera": 21.5, + "battery": 31.9, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.380881", + "updated_at": "2026-06-19T00:43:44.380881" +} diff --git a/site/public/v1/smartphones/lmv600vm-v60-thinq-5g-uw-td-lte-us-v600vm/score/index.json b/site/public/v1/smartphones/lmv600vm-v60-thinq-5g-uw-td-lte-us-v600vm/score/index.json new file mode 100644 index 00000000000..3898f64e8b1 --- /dev/null +++ b/site/public/v1/smartphones/lmv600vm-v60-thinq-5g-uw-td-lte-us-v600vm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 3.0, + "camera": 21.5, + "battery": 31.9, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/lmv605n-v60-thinq-5g-td-lte-kr-v605n/index.json b/site/public/v1/smartphones/lmv605n-v60-thinq-5g-td-lte-kr-v605n/index.json new file mode 100644 index 00000000000..8eb5f7112a3 --- /dev/null +++ b/site/public/v1/smartphones/lmv605n-v60-thinq-5g-td-lte-kr-v605n/index.json @@ -0,0 +1,76 @@ +{ + "id": 1830, + "slug": "lmv605n-v60-thinq-5g-td-lte-kr-v605n", + "name": "LMV605N V60 ThinQ 5G TD-LTE KR V605N", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 214.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 3.0, + "camera": 21.5, + "battery": 31.9, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.380881", + "updated_at": "2026-06-19T00:43:44.380881" +} diff --git a/site/public/v1/smartphones/lmv605n-v60-thinq-5g-td-lte-kr-v605n/score/index.json b/site/public/v1/smartphones/lmv605n-v60-thinq-5g-td-lte-kr-v605n/score/index.json new file mode 100644 index 00000000000..3898f64e8b1 --- /dev/null +++ b/site/public/v1/smartphones/lmv605n-v60-thinq-5g-td-lte-kr-v605n/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 3.0, + "camera": 21.5, + "battery": 31.9, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/lmx130im-w-series-w10-2019-dual-sim-td-lte-in-x130im/index.json b/site/public/v1/smartphones/lmx130im-w-series-w10-2019-dual-sim-td-lte-in-x130im/index.json new file mode 100644 index 00000000000..19b56a2e6ad --- /dev/null +++ b/site/public/v1/smartphones/lmx130im-w-series-w10-2019-dual-sim-td-lte-in-x130im/index.json @@ -0,0 +1,76 @@ +{ + "id": 1664, + "slug": "lmx130im-w-series-w10-2019-dual-sim-td-lte-in-x130im", + "name": "LMX130IM W Series W10 2019 Dual SIM TD-LTE IN X130IM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.19, + "resolution": "720x1512", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "Yes" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.359610", + "updated_at": "2026-06-19T00:43:44.359610" +} diff --git a/site/public/v1/smartphones/lmx130im-w-series-w10-2019-dual-sim-td-lte-in-x130im/score/index.json b/site/public/v1/smartphones/lmx130im-w-series-w10-2019-dual-sim-td-lte-in-x130im/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/lmx130im-w-series-w10-2019-dual-sim-td-lte-in-x130im/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx210ap-phoenix-4-lte-us-x210apm/index.json b/site/public/v1/smartphones/lmx210ap-phoenix-4-lte-us-x210apm/index.json new file mode 100644 index 00000000000..813b1e81515 --- /dev/null +++ b/site/public/v1/smartphones/lmx210ap-phoenix-4-lte-us-x210apm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1554, + "slug": "lmx210ap-phoenix-4-lte-us-x210apm", + "name": "LMX210AP Phoenix 4 LTE US X210APM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-10-01", + "msrp_usd": 90, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 142.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": 56.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.346606", + "updated_at": "2026-06-19T00:43:44.346606" +} diff --git a/site/public/v1/smartphones/lmx210ap-phoenix-4-lte-us-x210apm/score/index.json b/site/public/v1/smartphones/lmx210ap-phoenix-4-lte-us-x210apm/score/index.json new file mode 100644 index 00000000000..5c96d84f650 --- /dev/null +++ b/site/public/v1/smartphones/lmx210ap-phoenix-4-lte-us-x210apm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": 56.6 +} diff --git a/site/public/v1/smartphones/lmx210bm-k-series-k9-2018-dual-sim-lte-latam/index.json b/site/public/v1/smartphones/lmx210bm-k-series-k9-2018-dual-sim-lte-latam/index.json new file mode 100644 index 00000000000..09f94b13c5e --- /dev/null +++ b/site/public/v1/smartphones/lmx210bm-k-series-k9-2018-dual-sim-lte-latam/index.json @@ -0,0 +1,76 @@ +{ + "id": 1555, + "slug": "lmx210bm-k-series-k9-2018-dual-sim-lte-latam", + "name": "LMX210BM K Series K9 2018 Dual SIM LTE LATAM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 108, + "slug": "snapdragon-212", + "name": "Snapdragon 212", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-212" + }, + "release_date": "2018-08-13", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2410, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 148.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.346606", + "updated_at": "2026-06-19T00:43:44.346606" +} diff --git a/site/public/v1/smartphones/lmx210bm-k-series-k9-2018-dual-sim-lte-latam/score/index.json b/site/public/v1/smartphones/lmx210bm-k-series-k9-2018-dual-sim-lte-latam/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/lmx210bm-k-series-k9-2018-dual-sim-lte-latam/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx210bmw-k-series-k9-tv-2018-dual-sim-lte-latam/index.json b/site/public/v1/smartphones/lmx210bmw-k-series-k9-tv-2018-dual-sim-lte-latam/index.json new file mode 100644 index 00000000000..d4c5e7c1fb5 --- /dev/null +++ b/site/public/v1/smartphones/lmx210bmw-k-series-k9-tv-2018-dual-sim-lte-latam/index.json @@ -0,0 +1,76 @@ +{ + "id": 1556, + "slug": "lmx210bmw-k-series-k9-tv-2018-dual-sim-lte-latam", + "name": "LMX210BMW K Series K9 TV 2018 Dual SIM LTE LATAM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 108, + "slug": "snapdragon-212", + "name": "Snapdragon 212", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-212" + }, + "release_date": "2018-08-13", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2410, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 148.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.346606", + "updated_at": "2026-06-19T00:43:44.346606" +} diff --git a/site/public/v1/smartphones/lmx210bmw-k-series-k9-tv-2018-dual-sim-lte-latam/score/index.json b/site/public/v1/smartphones/lmx210bmw-k-series-k9-tv-2018-dual-sim-lte-latam/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/lmx210bmw-k-series-k9-tv-2018-dual-sim-lte-latam/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx210cm-fortune-2-lte-us-k-series-k8-2018/index.json b/site/public/v1/smartphones/lmx210cm-fortune-2-lte-us-k-series-k8-2018/index.json new file mode 100644 index 00000000000..86f75d65bac --- /dev/null +++ b/site/public/v1/smartphones/lmx210cm-fortune-2-lte-us-k-series-k8-2018/index.json @@ -0,0 +1,76 @@ +{ + "id": 1557, + "slug": "lmx210cm-fortune-2-lte-us-k-series-k8-2018", + "name": "LMX210CM Fortune 2 LTE US / K Series K8 2018", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2410, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.346606", + "updated_at": "2026-06-19T00:43:44.346606" +} diff --git a/site/public/v1/smartphones/lmx210cm-fortune-2-lte-us-k-series-k8-2018/score/index.json b/site/public/v1/smartphones/lmx210cm-fortune-2-lte-us-k-series-k8-2018/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/lmx210cm-fortune-2-lte-us-k-series-k8-2018/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx210cmr-risio-3-lte-us/index.json b/site/public/v1/smartphones/lmx210cmr-risio-3-lte-us/index.json new file mode 100644 index 00000000000..a23bff2d0ab --- /dev/null +++ b/site/public/v1/smartphones/lmx210cmr-risio-3-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 1558, + "slug": "lmx210cmr-risio-3-lte-us", + "name": "LMX210CMR Risio 3 LTE US", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 3.1 + } + ], + "battery_mah": 2500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.347605", + "updated_at": "2026-06-19T00:43:44.347605" +} diff --git a/site/public/v1/smartphones/lmx210cmr-risio-3-lte-us/score/index.json b/site/public/v1/smartphones/lmx210cmr-risio-3-lte-us/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/lmx210cmr-risio-3-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx210em-k-series-k9-2018-lte-emea/index.json b/site/public/v1/smartphones/lmx210em-k-series-k9-2018-lte-emea/index.json new file mode 100644 index 00000000000..69e0c80de80 --- /dev/null +++ b/site/public/v1/smartphones/lmx210em-k-series-k9-2018-lte-emea/index.json @@ -0,0 +1,76 @@ +{ + "id": 1559, + "slug": "lmx210em-k-series-k9-2018-lte-emea", + "name": "LMX210EM K Series K9 2018 LTE EMEA", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 108, + "slug": "snapdragon-212", + "name": "Snapdragon 212", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-212" + }, + "release_date": "2018-04-18", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 152.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.347605", + "updated_at": "2026-06-19T00:43:44.347605" +} diff --git a/site/public/v1/smartphones/lmx210em-k-series-k9-2018-lte-emea/score/index.json b/site/public/v1/smartphones/lmx210em-k-series-k9-2018-lte-emea/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/lmx210em-k-series-k9-2018-lte-emea/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx210emw-k-series-k9-2018-dual-sim-lte-emea/index.json b/site/public/v1/smartphones/lmx210emw-k-series-k9-2018-dual-sim-lte-emea/index.json new file mode 100644 index 00000000000..23238c79ced --- /dev/null +++ b/site/public/v1/smartphones/lmx210emw-k-series-k9-2018-dual-sim-lte-emea/index.json @@ -0,0 +1,76 @@ +{ + "id": 1560, + "slug": "lmx210emw-k-series-k9-2018-dual-sim-lte-emea", + "name": "LMX210EMW K Series K9 2018 Dual SIM LTE EMEA", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 108, + "slug": "snapdragon-212", + "name": "Snapdragon 212", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-212" + }, + "release_date": "2018-04-18", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 152.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.347605", + "updated_at": "2026-06-19T00:43:44.347605" +} diff --git a/site/public/v1/smartphones/lmx210emw-k-series-k9-2018-dual-sim-lte-emea/score/index.json b/site/public/v1/smartphones/lmx210emw-k-series-k9-2018-dual-sim-lte-emea/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/lmx210emw-k-series-k9-2018-dual-sim-lte-emea/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx210fm-k-series-k9-2018-dual-sim-lte-latam/index.json b/site/public/v1/smartphones/lmx210fm-k-series-k9-2018-dual-sim-lte-latam/index.json new file mode 100644 index 00000000000..2cd96ebba1d --- /dev/null +++ b/site/public/v1/smartphones/lmx210fm-k-series-k9-2018-dual-sim-lte-latam/index.json @@ -0,0 +1,76 @@ +{ + "id": 1561, + "slug": "lmx210fm-k-series-k9-2018-dual-sim-lte-latam", + "name": "LMX210FM K Series K9 2018 Dual SIM LTE LATAM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 108, + "slug": "snapdragon-212", + "name": "Snapdragon 212", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-212" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2410, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 148.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.347605", + "updated_at": "2026-06-19T00:43:44.347605" +} diff --git a/site/public/v1/smartphones/lmx210fm-k-series-k9-2018-dual-sim-lte-latam/score/index.json b/site/public/v1/smartphones/lmx210fm-k-series-k9-2018-dual-sim-lte-latam/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/lmx210fm-k-series-k9-2018-dual-sim-lte-latam/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx210hm-k-series-k9-2018-lte-latam-16gb/index.json b/site/public/v1/smartphones/lmx210hm-k-series-k9-2018-lte-latam-16gb/index.json new file mode 100644 index 00000000000..06af47b5a23 --- /dev/null +++ b/site/public/v1/smartphones/lmx210hm-k-series-k9-2018-lte-latam-16gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1562, + "slug": "lmx210hm-k-series-k9-2018-lte-latam-16gb", + "name": "LMX210HM K Series K9 2018 LTE LATAM 16GB", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 108, + "slug": "snapdragon-212", + "name": "Snapdragon 212", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-212" + }, + "release_date": "2018-08-13", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2410, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 148.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.347605", + "updated_at": "2026-06-19T00:43:44.347605" +} diff --git a/site/public/v1/smartphones/lmx210hm-k-series-k9-2018-lte-latam-16gb/score/index.json b/site/public/v1/smartphones/lmx210hm-k-series-k9-2018-lte-latam-16gb/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/lmx210hm-k-series-k9-2018-lte-latam-16gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx210hm-k-series-k9-2018-lte-latam-32gb-lmx210rm/index.json b/site/public/v1/smartphones/lmx210hm-k-series-k9-2018-lte-latam-32gb-lmx210rm/index.json new file mode 100644 index 00000000000..58c8702b797 --- /dev/null +++ b/site/public/v1/smartphones/lmx210hm-k-series-k9-2018-lte-latam-32gb-lmx210rm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1563, + "slug": "lmx210hm-k-series-k9-2018-lte-latam-32gb-lmx210rm", + "name": "LMX210HM K Series K9 2018 LTE LATAM 32GB / LMX210RM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 108, + "slug": "snapdragon-212", + "name": "Snapdragon 212", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-212" + }, + "release_date": "2018-08-13", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2410, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 148.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.347605", + "updated_at": "2026-06-19T00:43:44.347605" +} diff --git a/site/public/v1/smartphones/lmx210hm-k-series-k9-2018-lte-latam-32gb-lmx210rm/score/index.json b/site/public/v1/smartphones/lmx210hm-k-series-k9-2018-lte-latam-32gb-lmx210rm/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/lmx210hm-k-series-k9-2018-lte-latam-32gb-lmx210rm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx210imw-k-series-k9-2018-candy-dual-sim-td-lte-in/index.json b/site/public/v1/smartphones/lmx210imw-k-series-k9-2018-candy-dual-sim-td-lte-in/index.json new file mode 100644 index 00000000000..e88ce0ab3da --- /dev/null +++ b/site/public/v1/smartphones/lmx210imw-k-series-k9-2018-candy-dual-sim-td-lte-in/index.json @@ -0,0 +1,76 @@ +{ + "id": 1564, + "slug": "lmx210imw-k-series-k9-2018-candy-dual-sim-td-lte-in", + "name": "LMX210IMW K Series K9 2018 Candy Dual SIM TD-LTE IN", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 108, + "slug": "snapdragon-212", + "name": "Snapdragon 212", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-212" + }, + "release_date": "2018-09-02", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 152.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.347605", + "updated_at": "2026-06-19T00:43:44.347605" +} diff --git a/site/public/v1/smartphones/lmx210imw-k-series-k9-2018-candy-dual-sim-td-lte-in/score/index.json b/site/public/v1/smartphones/lmx210imw-k-series-k9-2018-candy-dual-sim-td-lte-in/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/lmx210imw-k-series-k9-2018-candy-dual-sim-td-lte-in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx210jm-k-series-k9-2018-td-lte-au/index.json b/site/public/v1/smartphones/lmx210jm-k-series-k9-2018-td-lte-au/index.json new file mode 100644 index 00000000000..59a919a9692 --- /dev/null +++ b/site/public/v1/smartphones/lmx210jm-k-series-k9-2018-td-lte-au/index.json @@ -0,0 +1,76 @@ +{ + "id": 1565, + "slug": "lmx210jm-k-series-k9-2018-td-lte-au", + "name": "LMX210JM K Series K9 2018 TD-LTE AU", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 108, + "slug": "snapdragon-212", + "name": "Snapdragon 212", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-212" + }, + "release_date": "2018-12-28", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 152.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.347605", + "updated_at": "2026-06-19T00:43:44.347605" +} diff --git a/site/public/v1/smartphones/lmx210jm-k-series-k9-2018-td-lte-au/score/index.json b/site/public/v1/smartphones/lmx210jm-k-series-k9-2018-td-lte-au/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/lmx210jm-k-series-k9-2018-td-lte-au/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx210nmw-k-series-k9-2018-dual-sim-lte-emea/index.json b/site/public/v1/smartphones/lmx210nmw-k-series-k9-2018-dual-sim-lte-emea/index.json new file mode 100644 index 00000000000..246285291ea --- /dev/null +++ b/site/public/v1/smartphones/lmx210nmw-k-series-k9-2018-dual-sim-lte-emea/index.json @@ -0,0 +1,76 @@ +{ + "id": 1566, + "slug": "lmx210nmw-k-series-k9-2018-dual-sim-lte-emea", + "name": "LMX210NMW K Series K9 2018 Dual SIM LTE EMEA", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 108, + "slug": "snapdragon-212", + "name": "Snapdragon 212", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-212" + }, + "release_date": "2018-03-24", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 152.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.347605", + "updated_at": "2026-06-19T00:43:44.347605" +} diff --git a/site/public/v1/smartphones/lmx210nmw-k-series-k9-2018-dual-sim-lte-emea/score/index.json b/site/public/v1/smartphones/lmx210nmw-k-series-k9-2018-dual-sim-lte-emea/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/lmx210nmw-k-series-k9-2018-dual-sim-lte-emea/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx210wm-k-series-k9-2018-lte-ca-16gb-x210wm/index.json b/site/public/v1/smartphones/lmx210wm-k-series-k9-2018-lte-ca-16gb-x210wm/index.json new file mode 100644 index 00000000000..dd5a2ead575 --- /dev/null +++ b/site/public/v1/smartphones/lmx210wm-k-series-k9-2018-lte-ca-16gb-x210wm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1567, + "slug": "lmx210wm-k-series-k9-2018-lte-ca-16gb-x210wm", + "name": "LMX210WM K Series K9 2018 LTE CA 16GB X210WM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 108, + "slug": "snapdragon-212", + "name": "Snapdragon 212", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-212" + }, + "release_date": "2018-09-01", + "msrp_usd": 139, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2410, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 148.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": 56.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.347605", + "updated_at": "2026-06-19T00:43:44.347605" +} diff --git a/site/public/v1/smartphones/lmx210wm-k-series-k9-2018-lte-ca-16gb-x210wm/score/index.json b/site/public/v1/smartphones/lmx210wm-k-series-k9-2018-lte-ca-16gb-x210wm/score/index.json new file mode 100644 index 00000000000..5c96d84f650 --- /dev/null +++ b/site/public/v1/smartphones/lmx210wm-k-series-k9-2018-lte-ca-16gb-x210wm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": 56.6 +} diff --git a/site/public/v1/smartphones/lmx210ymw-k-series-k9-2018-dual-sim-td-lte-apac/index.json b/site/public/v1/smartphones/lmx210ymw-k-series-k9-2018-dual-sim-td-lte-apac/index.json new file mode 100644 index 00000000000..eac6c441a90 --- /dev/null +++ b/site/public/v1/smartphones/lmx210ymw-k-series-k9-2018-dual-sim-td-lte-apac/index.json @@ -0,0 +1,76 @@ +{ + "id": 1568, + "slug": "lmx210ymw-k-series-k9-2018-dual-sim-td-lte-apac", + "name": "LMX210YMW K Series K9 2018 Dual SIM TD-LTE APAC", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 108, + "slug": "snapdragon-212", + "name": "Snapdragon 212", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-212" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 152.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.348605", + "updated_at": "2026-06-19T00:43:44.348605" +} diff --git a/site/public/v1/smartphones/lmx210ymw-k-series-k9-2018-dual-sim-td-lte-apac/score/index.json b/site/public/v1/smartphones/lmx210ymw-k-series-k9-2018-dual-sim-td-lte-apac/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/lmx210ymw-k-series-k9-2018-dual-sim-td-lte-apac/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx210zm-k-series-k9-2018-td-lte-emea-x210zm/index.json b/site/public/v1/smartphones/lmx210zm-k-series-k9-2018-td-lte-emea-x210zm/index.json new file mode 100644 index 00000000000..35cf4c6aa37 --- /dev/null +++ b/site/public/v1/smartphones/lmx210zm-k-series-k9-2018-td-lte-emea-x210zm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1665, + "slug": "lmx210zm-k-series-k9-2018-td-lte-emea-x210zm", + "name": "LMX210ZM K Series K9 2018 TD-LTE EMEA X210ZM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 108, + "slug": "snapdragon-212", + "name": "Snapdragon 212", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-212" + }, + "release_date": "2019-01-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 152.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.359610", + "updated_at": "2026-06-19T00:43:44.359610" +} diff --git a/site/public/v1/smartphones/lmx210zm-k-series-k9-2018-td-lte-emea-x210zm/score/index.json b/site/public/v1/smartphones/lmx210zm-k-series-k9-2018-td-lte-emea-x210zm/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/lmx210zm-k-series-k9-2018-td-lte-emea-x210zm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx212tal-k-series-k9-2018-lte-latam-16gb/index.json b/site/public/v1/smartphones/lmx212tal-k-series-k9-2018-lte-latam-16gb/index.json new file mode 100644 index 00000000000..e6f1205ef30 --- /dev/null +++ b/site/public/v1/smartphones/lmx212tal-k-series-k9-2018-lte-latam-16gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1569, + "slug": "lmx212tal-k-series-k9-2018-lte-latam-16gb", + "name": "LMX212TAL K Series K9 2018 LTE LATAM 16GB", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 108, + "slug": "snapdragon-212", + "name": "Snapdragon 212", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-212" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2410, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 148.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.348605", + "updated_at": "2026-06-19T00:43:44.348605" +} diff --git a/site/public/v1/smartphones/lmx212tal-k-series-k9-2018-lte-latam-16gb/score/index.json b/site/public/v1/smartphones/lmx212tal-k-series-k9-2018-lte-latam-16gb/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/lmx212tal-k-series-k9-2018-lte-latam-16gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx220n-x-series-x2-2019-td-lte-kr-x220n/index.json b/site/public/v1/smartphones/lmx220n-x-series-x2-2019-td-lte-kr-x220n/index.json new file mode 100644 index 00000000000..b852dcbeee8 --- /dev/null +++ b/site/public/v1/smartphones/lmx220n-x-series-x2-2019-td-lte-kr-x220n/index.json @@ -0,0 +1,76 @@ +{ + "id": 1666, + "slug": "lmx220n-x-series-x2-2019-td-lte-kr-x220n", + "name": "LMX220N X Series X2 2019 TD-LTE KR X220N", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2019-08-19", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 147.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.359610", + "updated_at": "2026-06-19T00:43:44.359610" +} diff --git a/site/public/v1/smartphones/lmx220n-x-series-x2-2019-td-lte-kr-x220n/score/index.json b/site/public/v1/smartphones/lmx220n-x-series-x2-2019-td-lte-kr-x220n/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/lmx220n-x-series-x2-2019-td-lte-kr-x220n/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx320aa-prime-2-lte-us-x320aa/index.json b/site/public/v1/smartphones/lmx320aa-prime-2-lte-us-x320aa/index.json new file mode 100644 index 00000000000..7b2b465539c --- /dev/null +++ b/site/public/v1/smartphones/lmx320aa-prime-2-lte-us-x320aa/index.json @@ -0,0 +1,76 @@ +{ + "id": 1667, + "slug": "lmx320aa-prime-2-lte-us-x320aa", + "name": "LMX320AA Prime 2 LTE US X320AA", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 147.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.2, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.359610", + "updated_at": "2026-06-19T00:43:44.359610" +} diff --git a/site/public/v1/smartphones/lmx320aa-prime-2-lte-us-x320aa/score/index.json b/site/public/v1/smartphones/lmx320aa-prime-2-lte-us-x320aa/score/index.json new file mode 100644 index 00000000000..97a903b7df9 --- /dev/null +++ b/site/public/v1/smartphones/lmx320aa-prime-2-lte-us-x320aa/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.2, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx320am8-neon-plus-lte-us-x320am/index.json b/site/public/v1/smartphones/lmx320am8-neon-plus-lte-us-x320am/index.json new file mode 100644 index 00000000000..95d42f83b56 --- /dev/null +++ b/site/public/v1/smartphones/lmx320am8-neon-plus-lte-us-x320am/index.json @@ -0,0 +1,76 @@ +{ + "id": 1831, + "slug": "lmx320am8-neon-plus-lte-us-x320am", + "name": "LMX320AM8 Neon Plus LTE US X320AM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2020-02-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 147.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.380881", + "updated_at": "2026-06-19T00:43:44.380881" +} diff --git a/site/public/v1/smartphones/lmx320am8-neon-plus-lte-us-x320am/score/index.json b/site/public/v1/smartphones/lmx320am8-neon-plus-lte-us-x320am/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/lmx320am8-neon-plus-lte-us-x320am/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx320apm-arena-2-lte-us-x320ap/index.json b/site/public/v1/smartphones/lmx320apm-arena-2-lte-us-x320ap/index.json new file mode 100644 index 00000000000..f88b156352f --- /dev/null +++ b/site/public/v1/smartphones/lmx320apm-arena-2-lte-us-x320ap/index.json @@ -0,0 +1,76 @@ +{ + "id": 1668, + "slug": "lmx320apm-arena-2-lte-us-x320ap", + "name": "LMX320APM Arena 2 LTE US X320AP", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 147.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.359610", + "updated_at": "2026-06-19T00:43:44.359610" +} diff --git a/site/public/v1/smartphones/lmx320apm-arena-2-lte-us-x320ap/score/index.json b/site/public/v1/smartphones/lmx320apm-arena-2-lte-us-x320ap/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/lmx320apm-arena-2-lte-us-x320ap/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx320cm-escape-plus-lte-us-x320cm/index.json b/site/public/v1/smartphones/lmx320cm-escape-plus-lte-us-x320cm/index.json new file mode 100644 index 00000000000..ca405fdf44e --- /dev/null +++ b/site/public/v1/smartphones/lmx320cm-escape-plus-lte-us-x320cm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1669, + "slug": "lmx320cm-escape-plus-lte-us-x320cm", + "name": "LMX320CM Escape Plus LTE US X320CM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 147.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.359610", + "updated_at": "2026-06-19T00:43:44.359610" +} diff --git a/site/public/v1/smartphones/lmx320cm-escape-plus-lte-us-x320cm/score/index.json b/site/public/v1/smartphones/lmx320cm-escape-plus-lte-us-x320cm/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/lmx320cm-escape-plus-lte-us-x320cm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx320pm-tribute-royal-td-lte-us-x320pm/index.json b/site/public/v1/smartphones/lmx320pm-tribute-royal-td-lte-us-x320pm/index.json new file mode 100644 index 00000000000..e516ac41ea2 --- /dev/null +++ b/site/public/v1/smartphones/lmx320pm-tribute-royal-td-lte-us-x320pm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1670, + "slug": "lmx320pm-tribute-royal-td-lte-us-x320pm", + "name": "LMX320PM Tribute Royal TD-LTE US X320PM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 148.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.359610", + "updated_at": "2026-06-19T00:43:44.359610" +} diff --git a/site/public/v1/smartphones/lmx320pm-tribute-royal-td-lte-us-x320pm/score/index.json b/site/public/v1/smartphones/lmx320pm-tribute-royal-td-lte-us-x320pm/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/lmx320pm-tribute-royal-td-lte-us-x320pm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx320qm-k-series-k30-2019-lte-us-x320qm/index.json b/site/public/v1/smartphones/lmx320qm-k-series-k30-2019-lte-us-x320qm/index.json new file mode 100644 index 00000000000..28abc9bb899 --- /dev/null +++ b/site/public/v1/smartphones/lmx320qm-k-series-k30-2019-lte-us-x320qm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1671, + "slug": "lmx320qm-k-series-k30-2019-lte-us-x320qm", + "name": "LMX320QM K Series K30 2019 LTE US X320QM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 147.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.361611", + "updated_at": "2026-06-19T00:43:44.361611" +} diff --git a/site/public/v1/smartphones/lmx320qm-k-series-k30-2019-lte-us-x320qm/score/index.json b/site/public/v1/smartphones/lmx320qm-k-series-k30-2019-lte-us-x320qm/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/lmx320qm-k-series-k30-2019-lte-us-x320qm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx320ta-aristo-4-td-lte-us-x320ta/index.json b/site/public/v1/smartphones/lmx320ta-aristo-4-td-lte-us-x320ta/index.json new file mode 100644 index 00000000000..44b03cfa755 --- /dev/null +++ b/site/public/v1/smartphones/lmx320ta-aristo-4-td-lte-us-x320ta/index.json @@ -0,0 +1,76 @@ +{ + "id": 1672, + "slug": "lmx320ta-aristo-4-td-lte-us-x320ta", + "name": "LMX320TA Aristo 4+ TD-LTE US X320TA", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2890, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 147.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.2, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.361611", + "updated_at": "2026-06-19T00:43:44.361611" +} diff --git a/site/public/v1/smartphones/lmx320ta-aristo-4-td-lte-us-x320ta/score/index.json b/site/public/v1/smartphones/lmx320ta-aristo-4-td-lte-us-x320ta/score/index.json new file mode 100644 index 00000000000..97a903b7df9 --- /dev/null +++ b/site/public/v1/smartphones/lmx320ta-aristo-4-td-lte-us-x320ta/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.2, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx320wm-k-series-k30-2019-lte-ca-x320wm/index.json b/site/public/v1/smartphones/lmx320wm-k-series-k30-2019-lte-ca-x320wm/index.json new file mode 100644 index 00000000000..1baed80e0e5 --- /dev/null +++ b/site/public/v1/smartphones/lmx320wm-k-series-k30-2019-lte-ca-x320wm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1673, + "slug": "lmx320wm-k-series-k30-2019-lte-ca-x320wm", + "name": "LMX320WM K Series K30 2019 LTE CA X320WM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 147.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.361611", + "updated_at": "2026-06-19T00:43:44.361611" +} diff --git a/site/public/v1/smartphones/lmx320wm-k-series-k30-2019-lte-ca-x320wm/score/index.json b/site/public/v1/smartphones/lmx320wm-k-series-k30-2019-lte-ca-x320wm/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/lmx320wm-k-series-k30-2019-lte-ca-x320wm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx410tk-k-series-k30-lte/index.json b/site/public/v1/smartphones/lmx410tk-k-series-k30-lte/index.json new file mode 100644 index 00000000000..552f58d9dc2 --- /dev/null +++ b/site/public/v1/smartphones/lmx410tk-k-series-k30-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 1570, + "slug": "lmx410tk-k-series-k30-lte", + "name": "LMX410TK K Series K30 LTE", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.3, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 277 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2880, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.348605", + "updated_at": "2026-06-19T00:43:44.348605" +} diff --git a/site/public/v1/smartphones/lmx410tk-k-series-k30-lte/score/index.json b/site/public/v1/smartphones/lmx410tk-k-series-k30-lte/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/lmx410tk-k-series-k30-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx410um-k-series-k30-xfinity-mobile-lte/index.json b/site/public/v1/smartphones/lmx410um-k-series-k30-xfinity-mobile-lte/index.json new file mode 100644 index 00000000000..004f31a18c1 --- /dev/null +++ b/site/public/v1/smartphones/lmx410um-k-series-k30-xfinity-mobile-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 1571, + "slug": "lmx410um-k-series-k30-xfinity-mobile-lte", + "name": "LMX410UM K Series K30 Xfinity Mobile LTE", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.3, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 277 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.348605", + "updated_at": "2026-06-19T00:43:44.348605" +} diff --git a/site/public/v1/smartphones/lmx410um-k-series-k30-xfinity-mobile-lte/score/index.json b/site/public/v1/smartphones/lmx410um-k-series-k30-xfinity-mobile-lte/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/lmx410um-k-series-k30-xfinity-mobile-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx420as-k-series-k40-2019-lte-a-us-x420as/index.json b/site/public/v1/smartphones/lmx420as-k-series-k40-2019-lte-a-us-x420as/index.json new file mode 100644 index 00000000000..cb9ca10e934 --- /dev/null +++ b/site/public/v1/smartphones/lmx420as-k-series-k40-2019-lte-a-us-x420as/index.json @@ -0,0 +1,76 @@ +{ + "id": 1674, + "slug": "lmx420as-k-series-k40-2019-lte-a-us-x420as", + "name": "LMX420AS K Series K40 2019 LTE-A US X420AS", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.361611", + "updated_at": "2026-06-19T00:43:44.361611" +} diff --git a/site/public/v1/smartphones/lmx420as-k-series-k40-2019-lte-a-us-x420as/score/index.json b/site/public/v1/smartphones/lmx420as-k-series-k40-2019-lte-a-us-x420as/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/lmx420as-k-series-k40-2019-lte-a-us-x420as/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx420as8-xpression-plus-2-lte-a-us-x420as8/index.json b/site/public/v1/smartphones/lmx420as8-xpression-plus-2-lte-a-us-x420as8/index.json new file mode 100644 index 00000000000..1d0979101aa --- /dev/null +++ b/site/public/v1/smartphones/lmx420as8-xpression-plus-2-lte-a-us-x420as8/index.json @@ -0,0 +1,76 @@ +{ + "id": 1675, + "slug": "lmx420as8-xpression-plus-2-lte-a-us-x420as8", + "name": "LMX420AS8 Xpression Plus 2 LTE-A US X420AS8", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.361611", + "updated_at": "2026-06-19T00:43:44.361611" +} diff --git a/site/public/v1/smartphones/lmx420as8-xpression-plus-2-lte-a-us-x420as8/score/index.json b/site/public/v1/smartphones/lmx420as8-xpression-plus-2-lte-a-us-x420as8/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/lmx420as8-xpression-plus-2-lte-a-us-x420as8/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx420bmw-k-series-k40-2019-dual-sim-lte-a-latam-x420bmw-k12/index.json b/site/public/v1/smartphones/lmx420bmw-k-series-k40-2019-dual-sim-lte-a-latam-x420bmw-k12/index.json new file mode 100644 index 00000000000..0c306c24198 --- /dev/null +++ b/site/public/v1/smartphones/lmx420bmw-k-series-k40-2019-dual-sim-lte-a-latam-x420bmw-k12/index.json @@ -0,0 +1,76 @@ +{ + "id": 1676, + "slug": "lmx420bmw-k-series-k40-2019-dual-sim-lte-a-latam-x420bmw-k12", + "name": "LMX420BMW K Series K40 2019 Dual SIM LTE-A LATAM X420BMW / K12+", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-04-12", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 144.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 6.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.362610", + "updated_at": "2026-06-19T00:43:44.362610" +} diff --git a/site/public/v1/smartphones/lmx420bmw-k-series-k40-2019-dual-sim-lte-a-latam-x420bmw-k12/score/index.json b/site/public/v1/smartphones/lmx420bmw-k-series-k40-2019-dual-sim-lte-a-latam-x420bmw-k12/score/index.json new file mode 100644 index 00000000000..34400387dab --- /dev/null +++ b/site/public/v1/smartphones/lmx420bmw-k-series-k40-2019-dual-sim-lte-a-latam-x420bmw-k12/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 6.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx420em-k-series-k40-2019-td-lte-emea/index.json b/site/public/v1/smartphones/lmx420em-k-series-k40-2019-td-lte-emea/index.json new file mode 100644 index 00000000000..eafbc54b4bb --- /dev/null +++ b/site/public/v1/smartphones/lmx420em-k-series-k40-2019-td-lte-emea/index.json @@ -0,0 +1,76 @@ +{ + "id": 1677, + "slug": "lmx420em-k-series-k40-2019-td-lte-emea", + "name": "LMX420EM K Series K40 2019 TD-LTE EMEA", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 144.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 6.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.362610", + "updated_at": "2026-06-19T00:43:44.362610" +} diff --git a/site/public/v1/smartphones/lmx420em-k-series-k40-2019-td-lte-emea/score/index.json b/site/public/v1/smartphones/lmx420em-k-series-k40-2019-td-lte-emea/score/index.json new file mode 100644 index 00000000000..34400387dab --- /dev/null +++ b/site/public/v1/smartphones/lmx420em-k-series-k40-2019-td-lte-emea/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 6.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx420emw-k-series-k40-2019-dual-sim-td-lte-emea/index.json b/site/public/v1/smartphones/lmx420emw-k-series-k40-2019-dual-sim-td-lte-emea/index.json new file mode 100644 index 00000000000..c30ad447b09 --- /dev/null +++ b/site/public/v1/smartphones/lmx420emw-k-series-k40-2019-dual-sim-td-lte-emea/index.json @@ -0,0 +1,76 @@ +{ + "id": 1678, + "slug": "lmx420emw-k-series-k40-2019-dual-sim-td-lte-emea", + "name": "LMX420EMW K Series K40 2019 Dual SIM TD-LTE EMEA", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 144.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 6.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.362610", + "updated_at": "2026-06-19T00:43:44.362610" +} diff --git a/site/public/v1/smartphones/lmx420emw-k-series-k40-2019-dual-sim-td-lte-emea/score/index.json b/site/public/v1/smartphones/lmx420emw-k-series-k40-2019-dual-sim-td-lte-emea/score/index.json new file mode 100644 index 00000000000..34400387dab --- /dev/null +++ b/site/public/v1/smartphones/lmx420emw-k-series-k40-2019-dual-sim-td-lte-emea/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 6.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx420hm-k-series-k40-2019-lte-a-latam-x420hm/index.json b/site/public/v1/smartphones/lmx420hm-k-series-k40-2019-lte-a-latam-x420hm/index.json new file mode 100644 index 00000000000..660d9ee2c05 --- /dev/null +++ b/site/public/v1/smartphones/lmx420hm-k-series-k40-2019-lte-a-latam-x420hm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1679, + "slug": "lmx420hm-k-series-k40-2019-lte-a-latam-x420hm", + "name": "LMX420HM K Series K40 2019 LTE-A LATAM X420HM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 144.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 6.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.362610", + "updated_at": "2026-06-19T00:43:44.362610" +} diff --git a/site/public/v1/smartphones/lmx420hm-k-series-k40-2019-lte-a-latam-x420hm/score/index.json b/site/public/v1/smartphones/lmx420hm-k-series-k40-2019-lte-a-latam-x420hm/score/index.json new file mode 100644 index 00000000000..34400387dab --- /dev/null +++ b/site/public/v1/smartphones/lmx420hm-k-series-k40-2019-lte-a-latam-x420hm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 6.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx420mm-k-series-k40-2019-lte-a-us-x420mm/index.json b/site/public/v1/smartphones/lmx420mm-k-series-k40-2019-lte-a-us-x420mm/index.json new file mode 100644 index 00000000000..d00c3bcc025 --- /dev/null +++ b/site/public/v1/smartphones/lmx420mm-k-series-k40-2019-lte-a-us-x420mm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1680, + "slug": "lmx420mm-k-series-k40-2019-lte-a-us-x420mm", + "name": "LMX420MM K Series K40 2019 LTE-A US X420MM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-07-19", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2890, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.362610", + "updated_at": "2026-06-19T00:43:44.362610" +} diff --git a/site/public/v1/smartphones/lmx420mm-k-series-k40-2019-lte-a-us-x420mm/score/index.json b/site/public/v1/smartphones/lmx420mm-k-series-k40-2019-lte-a-us-x420mm/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/lmx420mm-k-series-k40-2019-lte-a-us-x420mm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx420n-x-series-x4-2019-td-lte-kr-x420n/index.json b/site/public/v1/smartphones/lmx420n-x-series-x4-2019-td-lte-kr-x420n/index.json new file mode 100644 index 00000000000..d81274383ef --- /dev/null +++ b/site/public/v1/smartphones/lmx420n-x-series-x4-2019-td-lte-kr-x420n/index.json @@ -0,0 +1,76 @@ +{ + "id": 1681, + "slug": "lmx420n-x-series-x4-2019-td-lte-kr-x420n", + "name": "LMX420N X Series X4 2019 TD-LTE KR X420N", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 144.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 6.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.362610", + "updated_at": "2026-06-19T00:43:44.362610" +} diff --git a/site/public/v1/smartphones/lmx420n-x-series-x4-2019-td-lte-kr-x420n/score/index.json b/site/public/v1/smartphones/lmx420n-x-series-x4-2019-td-lte-kr-x420n/score/index.json new file mode 100644 index 00000000000..34400387dab --- /dev/null +++ b/site/public/v1/smartphones/lmx420n-x-series-x4-2019-td-lte-kr-x420n/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 6.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx420pr-k-series-k40-2019-lte-a-latam-x420pr/index.json b/site/public/v1/smartphones/lmx420pr-k-series-k40-2019-lte-a-latam-x420pr/index.json new file mode 100644 index 00000000000..9abdb686ec2 --- /dev/null +++ b/site/public/v1/smartphones/lmx420pr-k-series-k40-2019-lte-a-latam-x420pr/index.json @@ -0,0 +1,76 @@ +{ + "id": 1682, + "slug": "lmx420pr-k-series-k40-2019-lte-a-latam-x420pr", + "name": "LMX420PR K Series K40 2019 LTE-A LATAM X420PR", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 144.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.362610", + "updated_at": "2026-06-19T00:43:44.362610" +} diff --git a/site/public/v1/smartphones/lmx420pr-k-series-k40-2019-lte-a-latam-x420pr/score/index.json b/site/public/v1/smartphones/lmx420pr-k-series-k40-2019-lte-a-latam-x420pr/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/lmx420pr-k-series-k40-2019-lte-a-latam-x420pr/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx420qm-k-series-k40-2019-lte-a-us-x420qm/index.json b/site/public/v1/smartphones/lmx420qm-k-series-k40-2019-lte-a-us-x420qm/index.json new file mode 100644 index 00000000000..b9e55b24311 --- /dev/null +++ b/site/public/v1/smartphones/lmx420qm-k-series-k40-2019-lte-a-us-x420qm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1683, + "slug": "lmx420qm-k-series-k40-2019-lte-a-us-x420qm", + "name": "LMX420QM K Series K40 2019 LTE-A US X420QM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.362610", + "updated_at": "2026-06-19T00:43:44.362610" +} diff --git a/site/public/v1/smartphones/lmx420qm-k-series-k40-2019-lte-a-us-x420qm/score/index.json b/site/public/v1/smartphones/lmx420qm-k-series-k40-2019-lte-a-us-x420qm/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/lmx420qm-k-series-k40-2019-lte-a-us-x420qm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx420qm6-k-series-k40-2019-lte-a-us-x420qm6/index.json b/site/public/v1/smartphones/lmx420qm6-k-series-k40-2019-lte-a-us-x420qm6/index.json new file mode 100644 index 00000000000..8a0e507acea --- /dev/null +++ b/site/public/v1/smartphones/lmx420qm6-k-series-k40-2019-lte-a-us-x420qm6/index.json @@ -0,0 +1,76 @@ +{ + "id": 1684, + "slug": "lmx420qm6-k-series-k40-2019-lte-a-us-x420qm6", + "name": "LMX420QM6 K Series K40 2019 LTE-A US X420QM6", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-08-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.363610", + "updated_at": "2026-06-19T00:43:44.363610" +} diff --git a/site/public/v1/smartphones/lmx420qm6-k-series-k40-2019-lte-a-us-x420qm6/score/index.json b/site/public/v1/smartphones/lmx420qm6-k-series-k40-2019-lte-a-us-x420qm6/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/lmx420qm6-k-series-k40-2019-lte-a-us-x420qm6/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx420qn-k-series-k40-2019-lte-a-us-x420qn/index.json b/site/public/v1/smartphones/lmx420qn-k-series-k40-2019-lte-a-us-x420qn/index.json new file mode 100644 index 00000000000..1871b851200 --- /dev/null +++ b/site/public/v1/smartphones/lmx420qn-k-series-k40-2019-lte-a-us-x420qn/index.json @@ -0,0 +1,76 @@ +{ + "id": 1685, + "slug": "lmx420qn-k-series-k40-2019-lte-a-us-x420qn", + "name": "LMX420QN K Series K40 2019 LTE-A US X420QN", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-08-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.363610", + "updated_at": "2026-06-19T00:43:44.363610" +} diff --git a/site/public/v1/smartphones/lmx420qn-k-series-k40-2019-lte-a-us-x420qn/score/index.json b/site/public/v1/smartphones/lmx420qn-k-series-k40-2019-lte-a-us-x420qn/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/lmx420qn-k-series-k40-2019-lte-a-us-x420qn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx420tm-k-series-k40-2019-lte-a-us-x420tm/index.json b/site/public/v1/smartphones/lmx420tm-k-series-k40-2019-lte-a-us-x420tm/index.json new file mode 100644 index 00000000000..6c87af9bf19 --- /dev/null +++ b/site/public/v1/smartphones/lmx420tm-k-series-k40-2019-lte-a-us-x420tm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1686, + "slug": "lmx420tm-k-series-k40-2019-lte-a-us-x420tm", + "name": "LMX420TM K Series K40 2019 LTE-A US X420TM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-07-17", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2890, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.363610", + "updated_at": "2026-06-19T00:43:44.363610" +} diff --git a/site/public/v1/smartphones/lmx420tm-k-series-k40-2019-lte-a-us-x420tm/score/index.json b/site/public/v1/smartphones/lmx420tm-k-series-k40-2019-lte-a-us-x420tm/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/lmx420tm-k-series-k40-2019-lte-a-us-x420tm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx430bmw-k-series-k40s-2019-dual-sim-lte-a-latam-x430bmw/index.json b/site/public/v1/smartphones/lmx430bmw-k-series-k40s-2019-dual-sim-lte-a-latam-x430bmw/index.json new file mode 100644 index 00000000000..c5fed07a45c --- /dev/null +++ b/site/public/v1/smartphones/lmx430bmw-k-series-k40s-2019-dual-sim-lte-a-latam-x430bmw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1687, + "slug": "lmx430bmw-k-series-k40s-2019-dual-sim-lte-a-latam-x430bmw", + "name": "LMX430BMW K Series K40S 2019 Dual SIM LTE-A LATAM X430BMW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.363610", + "updated_at": "2026-06-19T00:43:44.363610" +} diff --git a/site/public/v1/smartphones/lmx430bmw-k-series-k40s-2019-dual-sim-lte-a-latam-x430bmw/score/index.json b/site/public/v1/smartphones/lmx430bmw-k-series-k40s-2019-dual-sim-lte-a-latam-x430bmw/score/index.json new file mode 100644 index 00000000000..99542862d37 --- /dev/null +++ b/site/public/v1/smartphones/lmx430bmw-k-series-k40s-2019-dual-sim-lte-a-latam-x430bmw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx430emw-k-series-k40s-2019-dual-sim-lte-emea-x430emw/index.json b/site/public/v1/smartphones/lmx430emw-k-series-k40s-2019-dual-sim-lte-emea-x430emw/index.json new file mode 100644 index 00000000000..61cf55f20e5 --- /dev/null +++ b/site/public/v1/smartphones/lmx430emw-k-series-k40s-2019-dual-sim-lte-emea-x430emw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1688, + "slug": "lmx430emw-k-series-k40s-2019-dual-sim-lte-emea-x430emw", + "name": "LMX430EMW K Series K40S 2019 Dual SIM LTE EMEA X430EMW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.363610", + "updated_at": "2026-06-19T00:43:44.363610" +} diff --git a/site/public/v1/smartphones/lmx430emw-k-series-k40s-2019-dual-sim-lte-emea-x430emw/score/index.json b/site/public/v1/smartphones/lmx430emw-k-series-k40s-2019-dual-sim-lte-emea-x430emw/score/index.json new file mode 100644 index 00000000000..99542862d37 --- /dev/null +++ b/site/public/v1/smartphones/lmx430emw-k-series-k40s-2019-dual-sim-lte-emea-x430emw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx430fmw-k-series-k40s-2019-dual-sim-lte-a-latam-x430fmw/index.json b/site/public/v1/smartphones/lmx430fmw-k-series-k40s-2019-dual-sim-lte-a-latam-x430fmw/index.json new file mode 100644 index 00000000000..ed12daffbae --- /dev/null +++ b/site/public/v1/smartphones/lmx430fmw-k-series-k40s-2019-dual-sim-lte-a-latam-x430fmw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1689, + "slug": "lmx430fmw-k-series-k40s-2019-dual-sim-lte-a-latam-x430fmw", + "name": "LMX430FMW K Series K40S 2019 Dual SIM LTE-A LATAM X430FMW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.363610", + "updated_at": "2026-06-19T00:43:44.363610" +} diff --git a/site/public/v1/smartphones/lmx430fmw-k-series-k40s-2019-dual-sim-lte-a-latam-x430fmw/score/index.json b/site/public/v1/smartphones/lmx430fmw-k-series-k40s-2019-dual-sim-lte-a-latam-x430fmw/score/index.json new file mode 100644 index 00000000000..99542862d37 --- /dev/null +++ b/site/public/v1/smartphones/lmx430fmw-k-series-k40s-2019-dual-sim-lte-a-latam-x430fmw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx430hm-k-series-k40s-2019-td-lte-latam-x430hm/index.json b/site/public/v1/smartphones/lmx430hm-k-series-k40s-2019-td-lte-latam-x430hm/index.json new file mode 100644 index 00000000000..23a4f427c3e --- /dev/null +++ b/site/public/v1/smartphones/lmx430hm-k-series-k40s-2019-td-lte-latam-x430hm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1690, + "slug": "lmx430hm-k-series-k40s-2019-td-lte-latam-x430hm", + "name": "LMX430HM K Series K40S 2019 TD-LTE LATAM X430HM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.363610", + "updated_at": "2026-06-19T00:43:44.363610" +} diff --git a/site/public/v1/smartphones/lmx430hm-k-series-k40s-2019-td-lte-latam-x430hm/score/index.json b/site/public/v1/smartphones/lmx430hm-k-series-k40s-2019-td-lte-latam-x430hm/score/index.json new file mode 100644 index 00000000000..99542862d37 --- /dev/null +++ b/site/public/v1/smartphones/lmx430hm-k-series-k40s-2019-td-lte-latam-x430hm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx430zmw-k-series-k40s-2019-dual-sim-td-lte-apac-x430zmw/index.json b/site/public/v1/smartphones/lmx430zmw-k-series-k40s-2019-dual-sim-td-lte-apac-x430zmw/index.json new file mode 100644 index 00000000000..b0aff9c6d7a --- /dev/null +++ b/site/public/v1/smartphones/lmx430zmw-k-series-k40s-2019-dual-sim-td-lte-apac-x430zmw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1691, + "slug": "lmx430zmw-k-series-k40s-2019-dual-sim-td-lte-apac-x430zmw", + "name": "LMX430ZMW K Series K40S 2019 Dual SIM TD-LTE APAC X430ZMW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-11-01", + "msrp_usd": 229, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": 58.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.364618", + "updated_at": "2026-06-19T00:43:44.364618" +} diff --git a/site/public/v1/smartphones/lmx430zmw-k-series-k40s-2019-dual-sim-td-lte-apac-x430zmw/score/index.json b/site/public/v1/smartphones/lmx430zmw-k-series-k40s-2019-dual-sim-td-lte-apac-x430zmw/score/index.json new file mode 100644 index 00000000000..9563d9af46f --- /dev/null +++ b/site/public/v1/smartphones/lmx430zmw-k-series-k40s-2019-dual-sim-td-lte-apac-x430zmw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": 58.0 +} diff --git a/site/public/v1/smartphones/lmx440im-w-series-w30-2019-dual-sim-td-lte-in-x440im-w30-plus/index.json b/site/public/v1/smartphones/lmx440im-w-series-w30-2019-dual-sim-td-lte-in-x440im-w30-plus/index.json new file mode 100644 index 00000000000..64d38b71db4 --- /dev/null +++ b/site/public/v1/smartphones/lmx440im-w-series-w30-2019-dual-sim-td-lte-in-x440im-w30-plus/index.json @@ -0,0 +1,76 @@ +{ + "id": 1692, + "slug": "lmx440im-w-series-w30-2019-dual-sim-td-lte-in-x440im-w30-plus", + "name": "LMX440IM W Series W30+ 2019 Dual SIM TD-LTE IN X440IM / W30 Plus", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.364618", + "updated_at": "2026-06-19T00:43:44.364618" +} diff --git a/site/public/v1/smartphones/lmx440im-w-series-w30-2019-dual-sim-td-lte-in-x440im-w30-plus/score/index.json b/site/public/v1/smartphones/lmx440im-w-series-w30-2019-dual-sim-td-lte-in-x440im-w30-plus/score/index.json new file mode 100644 index 00000000000..835c881a4f1 --- /dev/null +++ b/site/public/v1/smartphones/lmx440im-w-series-w30-2019-dual-sim-td-lte-in-x440im-w30-plus/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx440im-w-series-w30-2019-dual-sim-td-lte-in-x440im/index.json b/site/public/v1/smartphones/lmx440im-w-series-w30-2019-dual-sim-td-lte-in-x440im/index.json new file mode 100644 index 00000000000..3289e00dba3 --- /dev/null +++ b/site/public/v1/smartphones/lmx440im-w-series-w30-2019-dual-sim-td-lte-in-x440im/index.json @@ -0,0 +1,76 @@ +{ + "id": 1693, + "slug": "lmx440im-w-series-w30-2019-dual-sim-td-lte-in-x440im", + "name": "LMX440IM W Series W30 2019 Dual SIM TD-LTE IN X440IM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.364618", + "updated_at": "2026-06-19T00:43:44.364618" +} diff --git a/site/public/v1/smartphones/lmx440im-w-series-w30-2019-dual-sim-td-lte-in-x440im/score/index.json b/site/public/v1/smartphones/lmx440im-w-series-w30-2019-dual-sim-td-lte-in-x440im/score/index.json new file mode 100644 index 00000000000..835c881a4f1 --- /dev/null +++ b/site/public/v1/smartphones/lmx440im-w-series-w30-2019-dual-sim-td-lte-in-x440im/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx510wm-x-series-x-power-3-2018-lte-ca/index.json b/site/public/v1/smartphones/lmx510wm-x-series-x-power-3-2018-lte-ca/index.json new file mode 100644 index 00000000000..33392db0cfe --- /dev/null +++ b/site/public/v1/smartphones/lmx510wm-x-series-x-power-3-2018-lte-ca/index.json @@ -0,0 +1,76 @@ +{ + "id": 1572, + "slug": "lmx510wm-x-series-x-power-3-2018-lte-ca", + "name": "LMX510WM X Series X Power 3 2018 LTE CA", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-07-24", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": null, + "camera": 5.3, + "battery": 22.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.348605", + "updated_at": "2026-06-19T00:43:44.348605" +} diff --git a/site/public/v1/smartphones/lmx510wm-x-series-x-power-3-2018-lte-ca/score/index.json b/site/public/v1/smartphones/lmx510wm-x-series-x-power-3-2018-lte-ca/score/index.json new file mode 100644 index 00000000000..c644a3820df --- /dev/null +++ b/site/public/v1/smartphones/lmx510wm-x-series-x-power-3-2018-lte-ca/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": null, + "camera": 5.3, + "battery": 22.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx520bmw-k-series-k50-2019-dual-sim-lte-a-latam-x520bmw-k12-max/index.json b/site/public/v1/smartphones/lmx520bmw-k-series-k50-2019-dual-sim-lte-a-latam-x520bmw-k12-max/index.json new file mode 100644 index 00000000000..e23ae232e8f --- /dev/null +++ b/site/public/v1/smartphones/lmx520bmw-k-series-k50-2019-dual-sim-lte-a-latam-x520bmw-k12-max/index.json @@ -0,0 +1,76 @@ +{ + "id": 1694, + "slug": "lmx520bmw-k-series-k50-2019-dual-sim-lte-a-latam-x520bmw-k12-max", + "name": "LMX520BMW K Series K50 2019 Dual SIM LTE-A LATAM X520BMW / K12 Max", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.364618", + "updated_at": "2026-06-19T00:43:44.364618" +} diff --git a/site/public/v1/smartphones/lmx520bmw-k-series-k50-2019-dual-sim-lte-a-latam-x520bmw-k12-max/score/index.json b/site/public/v1/smartphones/lmx520bmw-k-series-k50-2019-dual-sim-lte-a-latam-x520bmw-k12-max/score/index.json new file mode 100644 index 00000000000..99542862d37 --- /dev/null +++ b/site/public/v1/smartphones/lmx520bmw-k-series-k50-2019-dual-sim-lte-a-latam-x520bmw-k12-max/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx520emw-k-series-k50-2019-dual-sim-td-lte-emea-x520emw/index.json b/site/public/v1/smartphones/lmx520emw-k-series-k50-2019-dual-sim-td-lte-emea-x520emw/index.json new file mode 100644 index 00000000000..9c4528de4e8 --- /dev/null +++ b/site/public/v1/smartphones/lmx520emw-k-series-k50-2019-dual-sim-td-lte-emea-x520emw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1695, + "slug": "lmx520emw-k-series-k50-2019-dual-sim-td-lte-emea-x520emw", + "name": "LMX520EMW K Series K50 2019 Dual SIM TD-LTE EMEA X520EMW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.364618", + "updated_at": "2026-06-19T00:43:44.364618" +} diff --git a/site/public/v1/smartphones/lmx520emw-k-series-k50-2019-dual-sim-td-lte-emea-x520emw/score/index.json b/site/public/v1/smartphones/lmx520emw-k-series-k50-2019-dual-sim-td-lte-emea-x520emw/score/index.json new file mode 100644 index 00000000000..99542862d37 --- /dev/null +++ b/site/public/v1/smartphones/lmx520emw-k-series-k50-2019-dual-sim-td-lte-emea-x520emw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx520hm-k-series-k50-2019-lte-a-latam-x520hm/index.json b/site/public/v1/smartphones/lmx520hm-k-series-k50-2019-lte-a-latam-x520hm/index.json new file mode 100644 index 00000000000..7ffae9ed25c --- /dev/null +++ b/site/public/v1/smartphones/lmx520hm-k-series-k50-2019-lte-a-latam-x520hm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1696, + "slug": "lmx520hm-k-series-k50-2019-lte-a-latam-x520hm", + "name": "LMX520HM K Series K50 2019 LTE-A LATAM X520HM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.364618", + "updated_at": "2026-06-19T00:43:44.364618" +} diff --git a/site/public/v1/smartphones/lmx520hm-k-series-k50-2019-lte-a-latam-x520hm/score/index.json b/site/public/v1/smartphones/lmx520hm-k-series-k50-2019-lte-a-latam-x520hm/score/index.json new file mode 100644 index 00000000000..99542862d37 --- /dev/null +++ b/site/public/v1/smartphones/lmx520hm-k-series-k50-2019-lte-a-latam-x520hm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": null, + "camera": 5.3, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx525baw-q-series-q60-2019-dual-sim-lte-a-latam-x525baw/index.json b/site/public/v1/smartphones/lmx525baw-q-series-q60-2019-dual-sim-lte-a-latam-x525baw/index.json new file mode 100644 index 00000000000..b094a4bcfc6 --- /dev/null +++ b/site/public/v1/smartphones/lmx525baw-q-series-q60-2019-dual-sim-lte-a-latam-x525baw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1697, + "slug": "lmx525baw-q-series-q60-2019-dual-sim-lte-a-latam-x525baw", + "name": "LMX525BAW Q Series Q60 2019 Dual SIM LTE-A LATAM X525BAW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": null, + "camera": 6.4, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.364618", + "updated_at": "2026-06-19T00:43:44.364618" +} diff --git a/site/public/v1/smartphones/lmx525baw-q-series-q60-2019-dual-sim-lte-a-latam-x525baw/score/index.json b/site/public/v1/smartphones/lmx525baw-q-series-q60-2019-dual-sim-lte-a-latam-x525baw/score/index.json new file mode 100644 index 00000000000..647b285b092 --- /dev/null +++ b/site/public/v1/smartphones/lmx525baw-q-series-q60-2019-dual-sim-lte-a-latam-x525baw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": null, + "camera": 6.4, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx525eaw-q-series-q60-2019-dual-sim-td-lte-emea-x525eaw/index.json b/site/public/v1/smartphones/lmx525eaw-q-series-q60-2019-dual-sim-td-lte-emea-x525eaw/index.json new file mode 100644 index 00000000000..04cff4fd496 --- /dev/null +++ b/site/public/v1/smartphones/lmx525eaw-q-series-q60-2019-dual-sim-td-lte-emea-x525eaw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1698, + "slug": "lmx525eaw-q-series-q60-2019-dual-sim-td-lte-emea-x525eaw", + "name": "LMX525EAW Q Series Q60 2019 Dual SIM TD-LTE EMEA X525EAW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.365617", + "updated_at": "2026-06-19T00:43:44.365617" +} diff --git a/site/public/v1/smartphones/lmx525eaw-q-series-q60-2019-dual-sim-td-lte-emea-x525eaw/score/index.json b/site/public/v1/smartphones/lmx525eaw-q-series-q60-2019-dual-sim-td-lte-emea-x525eaw/score/index.json new file mode 100644 index 00000000000..2917ed4b64b --- /dev/null +++ b/site/public/v1/smartphones/lmx525eaw-q-series-q60-2019-dual-sim-td-lte-emea-x525eaw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx525ha-q-series-q60-2019-lte-a-latam-x525ha/index.json b/site/public/v1/smartphones/lmx525ha-q-series-q60-2019-lte-a-latam-x525ha/index.json new file mode 100644 index 00000000000..ba49f0faa6c --- /dev/null +++ b/site/public/v1/smartphones/lmx525ha-q-series-q60-2019-lte-a-latam-x525ha/index.json @@ -0,0 +1,76 @@ +{ + "id": 1699, + "slug": "lmx525ha-q-series-q60-2019-lte-a-latam-x525ha", + "name": "LMX525HA Q Series Q60 2019 LTE-A LATAM X525HA", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.365617", + "updated_at": "2026-06-19T00:43:44.365617" +} diff --git a/site/public/v1/smartphones/lmx525ha-q-series-q60-2019-lte-a-latam-x525ha/score/index.json b/site/public/v1/smartphones/lmx525ha-q-series-q60-2019-lte-a-latam-x525ha/score/index.json new file mode 100644 index 00000000000..2917ed4b64b --- /dev/null +++ b/site/public/v1/smartphones/lmx525ha-q-series-q60-2019-lte-a-latam-x525ha/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx525pr-q-series-q60-2019-lte-a-latam-x525pr/index.json b/site/public/v1/smartphones/lmx525pr-q-series-q60-2019-lte-a-latam-x525pr/index.json new file mode 100644 index 00000000000..800e2999f47 --- /dev/null +++ b/site/public/v1/smartphones/lmx525pr-q-series-q60-2019-lte-a-latam-x525pr/index.json @@ -0,0 +1,76 @@ +{ + "id": 1700, + "slug": "lmx525pr-q-series-q60-2019-lte-a-latam-x525pr", + "name": "LMX525PR Q Series Q60 2019 LTE-A LATAM X525PR", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": null, + "camera": 6.4, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.365617", + "updated_at": "2026-06-19T00:43:44.365617" +} diff --git a/site/public/v1/smartphones/lmx525pr-q-series-q60-2019-lte-a-latam-x525pr/score/index.json b/site/public/v1/smartphones/lmx525pr-q-series-q60-2019-lte-a-latam-x525pr/score/index.json new file mode 100644 index 00000000000..647b285b092 --- /dev/null +++ b/site/public/v1/smartphones/lmx525pr-q-series-q60-2019-lte-a-latam-x525pr/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": null, + "camera": 6.4, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx525wa-q-series-q60-2019-lte-a-ca-x525wa/index.json b/site/public/v1/smartphones/lmx525wa-q-series-q60-2019-lte-a-ca-x525wa/index.json new file mode 100644 index 00000000000..d9a12947a5f --- /dev/null +++ b/site/public/v1/smartphones/lmx525wa-q-series-q60-2019-lte-a-ca-x525wa/index.json @@ -0,0 +1,76 @@ +{ + "id": 1701, + "slug": "lmx525wa-q-series-q60-2019-lte-a-ca-x525wa", + "name": "LMX525WA Q Series Q60 2019 LTE-A CA X525WA", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": 6.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": null, + "camera": 6.4, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.365617", + "updated_at": "2026-06-19T00:43:44.365617" +} diff --git a/site/public/v1/smartphones/lmx525wa-q-series-q60-2019-lte-a-ca-x525wa/score/index.json b/site/public/v1/smartphones/lmx525wa-q-series-q60-2019-lte-a-ca-x525wa/score/index.json new file mode 100644 index 00000000000..647b285b092 --- /dev/null +++ b/site/public/v1/smartphones/lmx525wa-q-series-q60-2019-lte-a-ca-x525wa/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": null, + "camera": 6.4, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx525za-q-series-q60-2019-td-lte-apac-x525za/index.json b/site/public/v1/smartphones/lmx525za-q-series-q60-2019-td-lte-apac-x525za/index.json new file mode 100644 index 00000000000..07ff80a2d32 --- /dev/null +++ b/site/public/v1/smartphones/lmx525za-q-series-q60-2019-td-lte-apac-x525za/index.json @@ -0,0 +1,76 @@ +{ + "id": 1702, + "slug": "lmx525za-q-series-q60-2019-td-lte-apac-x525za", + "name": "LMX525ZA Q Series Q60 2019 TD-LTE APAC X525ZA", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.365617", + "updated_at": "2026-06-19T00:43:44.365617" +} diff --git a/site/public/v1/smartphones/lmx525za-q-series-q60-2019-td-lte-apac-x525za/score/index.json b/site/public/v1/smartphones/lmx525za-q-series-q60-2019-td-lte-apac-x525za/score/index.json new file mode 100644 index 00000000000..2917ed4b64b --- /dev/null +++ b/site/public/v1/smartphones/lmx525za-q-series-q60-2019-td-lte-apac-x525za/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx525zaw-q-series-q60-2019-dual-sim-td-lte-apac-x525zaw/index.json b/site/public/v1/smartphones/lmx525zaw-q-series-q60-2019-dual-sim-td-lte-apac-x525zaw/index.json new file mode 100644 index 00000000000..d01a52fe85a --- /dev/null +++ b/site/public/v1/smartphones/lmx525zaw-q-series-q60-2019-dual-sim-td-lte-apac-x525zaw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1703, + "slug": "lmx525zaw-q-series-q60-2019-dual-sim-td-lte-apac-x525zaw", + "name": "LMX525ZAW Q Series Q60 2019 Dual SIM TD-LTE APAC X525ZAW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.365617", + "updated_at": "2026-06-19T00:43:44.365617" +} diff --git a/site/public/v1/smartphones/lmx525zaw-q-series-q60-2019-dual-sim-td-lte-apac-x525zaw/score/index.json b/site/public/v1/smartphones/lmx525zaw-q-series-q60-2019-dual-sim-td-lte-apac-x525zaw/score/index.json new file mode 100644 index 00000000000..2917ed4b64b --- /dev/null +++ b/site/public/v1/smartphones/lmx525zaw-q-series-q60-2019-dual-sim-td-lte-apac-x525zaw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx540bmw-k-series-k50s-2019-dual-sim-lte-a-latam-x540bmw/index.json b/site/public/v1/smartphones/lmx540bmw-k-series-k50s-2019-dual-sim-lte-a-latam-x540bmw/index.json new file mode 100644 index 00000000000..4f45c49dafb --- /dev/null +++ b/site/public/v1/smartphones/lmx540bmw-k-series-k50s-2019-dual-sim-lte-a-latam-x540bmw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1704, + "slug": "lmx540bmw-k-series-k50s-2019-dual-sim-lte-a-latam-x540bmw", + "name": "LMX540BMW K Series K50S 2019 Dual SIM LTE-A LATAM X540BMW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 264 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.365617", + "updated_at": "2026-06-19T00:43:44.365617" +} diff --git a/site/public/v1/smartphones/lmx540bmw-k-series-k50s-2019-dual-sim-lte-a-latam-x540bmw/score/index.json b/site/public/v1/smartphones/lmx540bmw-k-series-k50s-2019-dual-sim-lte-a-latam-x540bmw/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/lmx540bmw-k-series-k50s-2019-dual-sim-lte-a-latam-x540bmw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx540emw-k-series-k50s-2019-dual-sim-td-lte-emea-x540emw/index.json b/site/public/v1/smartphones/lmx540emw-k-series-k50s-2019-dual-sim-td-lte-emea-x540emw/index.json new file mode 100644 index 00000000000..27d254adb68 --- /dev/null +++ b/site/public/v1/smartphones/lmx540emw-k-series-k50s-2019-dual-sim-td-lte-emea-x540emw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1705, + "slug": "lmx540emw-k-series-k50s-2019-dual-sim-td-lte-emea-x540emw", + "name": "LMX540EMW K Series K50S 2019 Dual SIM TD-LTE EMEA X540EMW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 264 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.365617", + "updated_at": "2026-06-19T00:43:44.365617" +} diff --git a/site/public/v1/smartphones/lmx540emw-k-series-k50s-2019-dual-sim-td-lte-emea-x540emw/score/index.json b/site/public/v1/smartphones/lmx540emw-k-series-k50s-2019-dual-sim-td-lte-emea-x540emw/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/lmx540emw-k-series-k50s-2019-dual-sim-td-lte-emea-x540emw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx540hm-k-series-k50s-2019-td-lte-latam-x540hm/index.json b/site/public/v1/smartphones/lmx540hm-k-series-k50s-2019-td-lte-latam-x540hm/index.json new file mode 100644 index 00000000000..2db1d3d0a6f --- /dev/null +++ b/site/public/v1/smartphones/lmx540hm-k-series-k50s-2019-td-lte-latam-x540hm/index.json @@ -0,0 +1,76 @@ +{ + "id": 1706, + "slug": "lmx540hm-k-series-k50s-2019-td-lte-latam-x540hm", + "name": "LMX540HM K Series K50S 2019 TD-LTE LATAM X540HM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 264 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.366617", + "updated_at": "2026-06-19T00:43:44.366617" +} diff --git a/site/public/v1/smartphones/lmx540hm-k-series-k50s-2019-td-lte-latam-x540hm/score/index.json b/site/public/v1/smartphones/lmx540hm-k-series-k50s-2019-td-lte-latam-x540hm/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/lmx540hm-k-series-k50s-2019-td-lte-latam-x540hm/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx540zmw-k-series-k50s-2019-dual-sim-td-lte-apac-x540zmw/index.json b/site/public/v1/smartphones/lmx540zmw-k-series-k50s-2019-dual-sim-td-lte-apac-x540zmw/index.json new file mode 100644 index 00000000000..6a5e0c14d6c --- /dev/null +++ b/site/public/v1/smartphones/lmx540zmw-k-series-k50s-2019-dual-sim-td-lte-apac-x540zmw/index.json @@ -0,0 +1,76 @@ +{ + "id": 1707, + "slug": "lmx540zmw-k-series-k50s-2019-dual-sim-td-lte-apac-x540zmw", + "name": "LMX540ZMW K Series K50S 2019 Dual SIM TD-LTE APAC X540ZMW", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 264 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.366617", + "updated_at": "2026-06-19T00:43:44.366617" +} diff --git a/site/public/v1/smartphones/lmx540zmw-k-series-k50s-2019-dual-sim-td-lte-apac-x540zmw/score/index.json b/site/public/v1/smartphones/lmx540zmw-k-series-k50s-2019-dual-sim-td-lte-apac-x540zmw/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/lmx540zmw-k-series-k50s-2019-dual-sim-td-lte-apac-x540zmw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx600im-w-series-w30-pro-dual-sim-td-lte-in-x600im/index.json b/site/public/v1/smartphones/lmx600im-w-series-w30-pro-dual-sim-td-lte-in-x600im/index.json new file mode 100644 index 00000000000..ad51fdf3625 --- /dev/null +++ b/site/public/v1/smartphones/lmx600im-w-series-w30-pro-dual-sim-td-lte-in-x600im/index.json @@ -0,0 +1,76 @@ +{ + "id": 1832, + "slug": "lmx600im-w-series-w30-pro-dual-sim-td-lte-in-x600im", + "name": "LMX600IM W Series W30 Pro Dual SIM TD-LTE IN X600IM", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2020-01-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1480", + "type": "Color IPS TFT LCD display", + "ppi": 263 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4050, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.0, + "performance": 0.0, + "camera": 5.3, + "battery": 15.8, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.380881", + "updated_at": "2026-06-19T00:43:44.380881" +} diff --git a/site/public/v1/smartphones/lmx600im-w-series-w30-pro-dual-sim-td-lte-in-x600im/score/index.json b/site/public/v1/smartphones/lmx600im-w-series-w30-pro-dual-sim-td-lte-in-x600im/score/index.json new file mode 100644 index 00000000000..496b373b5a2 --- /dev/null +++ b/site/public/v1/smartphones/lmx600im-w-series-w30-pro-dual-sim-td-lte-in-x600im/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.0, + "performance": 0.0, + "camera": 5.3, + "battery": 15.8, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/lmx625n-x-series-x6-2019-td-lte-kr-x625n/index.json b/site/public/v1/smartphones/lmx625n-x-series-x6-2019-td-lte-kr-x625n/index.json new file mode 100644 index 00000000000..754a21c97fa --- /dev/null +++ b/site/public/v1/smartphones/lmx625n-x-series-x6-2019-td-lte-kr-x625n/index.json @@ -0,0 +1,76 @@ +{ + "id": 1708, + "slug": "lmx625n-x-series-x6-2019-td-lte-kr-x625n", + "name": "LMX625N X Series X6 2019 TD-LTE KR X625N", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-06-19", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.366617", + "updated_at": "2026-06-19T00:43:44.366617" +} diff --git a/site/public/v1/smartphones/lmx625n-x-series-x6-2019-td-lte-kr-x625n/score/index.json b/site/public/v1/smartphones/lmx625n-x-series-x6-2019-td-lte-kr-x625n/score/index.json new file mode 100644 index 00000000000..2917ed4b64b --- /dev/null +++ b/site/public/v1/smartphones/lmx625n-x-series-x6-2019-td-lte-kr-x625n/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/m6s-premium-edition-dual-sim-td-lte-cn-64gb-m712q-b/index.json b/site/public/v1/smartphones/m6s-premium-edition-dual-sim-td-lte-cn-64gb-m712q-b/index.json new file mode 100644 index 00000000000..1c864b470d3 --- /dev/null +++ b/site/public/v1/smartphones/m6s-premium-edition-dual-sim-td-lte-cn-64gb-m712q-b/index.json @@ -0,0 +1,76 @@ +{ + "id": 1863, + "slug": "m6s-premium-edition-dual-sim-td-lte-cn-64gb-m712q-b", + "name": "M6S Premium Edition Dual SIM TD-LTE CN 64GB M712Q-B", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 185, + "slug": "exynos-7872", + "name": "Exynos 7872", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP1", + "url": "/v1/socs/exynos-7872" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.383875", + "updated_at": "2026-06-19T00:43:44.383875" +} diff --git a/site/public/v1/smartphones/m6s-premium-edition-dual-sim-td-lte-cn-64gb-m712q-b/score/index.json b/site/public/v1/smartphones/m6s-premium-edition-dual-sim-td-lte-cn-64gb-m712q-b/score/index.json new file mode 100644 index 00000000000..5694f3a308b --- /dev/null +++ b/site/public/v1/smartphones/m6s-premium-edition-dual-sim-td-lte-cn-64gb-m712q-b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/m700an-q6-dual-sim-lte-a-64gb/index.json b/site/public/v1/smartphones/m700an-q6-dual-sim-lte-a-64gb/index.json new file mode 100644 index 00000000000..2f73c1cc06a --- /dev/null +++ b/site/public/v1/smartphones/m700an-q6-dual-sim-lte-a-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1573, + "slug": "m700an-q6-dual-sim-lte-a-64gb", + "name": "M700AN Q6+ Dual SIM LTE-A 64GB", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 113, + "slug": "snapdragon-435", + "name": "Snapdragon 435", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-435" + }, + "release_date": "2018-01-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 149.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.348605", + "updated_at": "2026-06-19T00:43:44.348605" +} diff --git a/site/public/v1/smartphones/m700an-q6-dual-sim-lte-a-64gb/score/index.json b/site/public/v1/smartphones/m700an-q6-dual-sim-lte-a-64gb/score/index.json new file mode 100644 index 00000000000..a3cf614ebc2 --- /dev/null +++ b/site/public/v1/smartphones/m700an-q6-dual-sim-lte-a-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/m8-global-dual-sim-td-lte-m813h/index.json b/site/public/v1/smartphones/m8-global-dual-sim-td-lte-m813h/index.json new file mode 100644 index 00000000000..1d1accb1de1 --- /dev/null +++ b/site/public/v1/smartphones/m8-global-dual-sim-td-lte-m813h/index.json @@ -0,0 +1,76 @@ +{ + "id": 1864, + "slug": "m8-global-dual-sim-td-lte-m813h", + "name": "M8 Global Dual SIM TD-LTE M813H", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": null, + "camera": 5.1, + "battery": 1.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.384881", + "updated_at": "2026-06-19T00:43:44.384881" +} diff --git a/site/public/v1/smartphones/m8-global-dual-sim-td-lte-m813h/score/index.json b/site/public/v1/smartphones/m8-global-dual-sim-td-lte-m813h/score/index.json new file mode 100644 index 00000000000..69eb90cebf2 --- /dev/null +++ b/site/public/v1/smartphones/m8-global-dual-sim-td-lte-m813h/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": null, + "camera": 5.1, + "battery": 1.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/maimang-10-se-5g-dual-sim-td-lte-cn-128gb-tyh611m/index.json b/site/public/v1/smartphones/maimang-10-se-5g-dual-sim-td-lte-cn-128gb-tyh611m/index.json new file mode 100644 index 00000000000..a6617147896 --- /dev/null +++ b/site/public/v1/smartphones/maimang-10-se-5g-dual-sim-td-lte-cn-128gb-tyh611m/index.json @@ -0,0 +1,77 @@ +{ + "id": 1265, + "slug": "maimang-10-se-5g-dual-sim-td-lte-cn-128gb-tyh611m", + "name": "Maimang 10 SE 5G Dual SIM TD-LTE CN 128GB TYH611M", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-07-31", + "msrp_usd": 1699, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 1.5, + "camera": 5.4, + "battery": 31.4, + "display": 17.5, + "value": 7.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.282605", + "updated_at": "2026-06-19T00:43:44.282605" +} diff --git a/site/public/v1/smartphones/maimang-10-se-5g-dual-sim-td-lte-cn-128gb-tyh611m/score/index.json b/site/public/v1/smartphones/maimang-10-se-5g-dual-sim-td-lte-cn-128gb-tyh611m/score/index.json new file mode 100644 index 00000000000..372ed47cc13 --- /dev/null +++ b/site/public/v1/smartphones/maimang-10-se-5g-dual-sim-td-lte-cn-128gb-tyh611m/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 1.5, + "camera": 5.4, + "battery": 31.4, + "display": 17.5, + "value": 7.0 +} diff --git a/site/public/v1/smartphones/maimang-7-dual-sim-td-lte-cn-sne-al00/index.json b/site/public/v1/smartphones/maimang-7-dual-sim-td-lte-cn-sne-al00/index.json new file mode 100644 index 00000000000..3c2a26995a8 --- /dev/null +++ b/site/public/v1/smartphones/maimang-7-dual-sim-td-lte-cn-sne-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 879, + "slug": "maimang-7-dual-sim-td-lte-cn-sne-al00", + "name": "Maimang 7 Dual SIM TD-LTE CN SNE-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 19.7 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3750, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 1.5, + "camera": 7.5, + "battery": 11.2, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.228932", + "updated_at": "2026-06-19T00:43:44.228932" +} diff --git a/site/public/v1/smartphones/maimang-7-dual-sim-td-lte-cn-sne-al00/score/index.json b/site/public/v1/smartphones/maimang-7-dual-sim-td-lte-cn-sne-al00/score/index.json new file mode 100644 index 00000000000..6f4de286a49 --- /dev/null +++ b/site/public/v1/smartphones/maimang-7-dual-sim-td-lte-cn-sne-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 1.5, + "camera": 7.5, + "battery": 11.2, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/maimang-8-dual-sim-td-lte-cn-128gb-pot-al10/index.json b/site/public/v1/smartphones/maimang-8-dual-sim-td-lte-cn-128gb-pot-al10/index.json new file mode 100644 index 00000000000..54b418665a7 --- /dev/null +++ b/site/public/v1/smartphones/maimang-8-dual-sim-td-lte-cn-128gb-pot-al10/index.json @@ -0,0 +1,76 @@ +{ + "id": 1031, + "slug": "maimang-8-dual-sim-td-lte-cn-128gb-pot-al10", + "name": "Maimang 8 Dual SIM TD-LTE CN 128GB POT-AL10", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-06-12", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.7, + "performance": 1.5, + "camera": 8.8, + "battery": 6.0, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.252091", + "updated_at": "2026-06-19T00:43:44.252091" +} diff --git a/site/public/v1/smartphones/maimang-8-dual-sim-td-lte-cn-128gb-pot-al10/score/index.json b/site/public/v1/smartphones/maimang-8-dual-sim-td-lte-cn-128gb-pot-al10/score/index.json new file mode 100644 index 00000000000..dabd5730354 --- /dev/null +++ b/site/public/v1/smartphones/maimang-8-dual-sim-td-lte-cn-128gb-pot-al10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.7, + "performance": 1.5, + "camera": 8.8, + "battery": 6.0, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/maimang-9-5g-premium-edition-dual-sim-td-lte-cn-128gb-tnn-an00/index.json b/site/public/v1/smartphones/maimang-9-5g-premium-edition-dual-sim-td-lte-cn-128gb-tnn-an00/index.json new file mode 100644 index 00000000000..9d36cd64319 --- /dev/null +++ b/site/public/v1/smartphones/maimang-9-5g-premium-edition-dual-sim-td-lte-cn-128gb-tnn-an00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1170, + "slug": "maimang-9-5g-premium-edition-dual-sim-td-lte-cn-128gb-tnn-an00", + "name": "Maimang 9 5G Premium Edition Dual SIM TD-LTE CN 128GB TNN-AN00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2020-08-07", + "msrp_usd": 2399, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 212.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 3.0, + "camera": 16.5, + "battery": 20.8, + "display": 43.7, + "value": 10.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.271096", + "updated_at": "2026-06-19T00:43:44.271096" +} diff --git a/site/public/v1/smartphones/maimang-9-5g-premium-edition-dual-sim-td-lte-cn-128gb-tnn-an00/score/index.json b/site/public/v1/smartphones/maimang-9-5g-premium-edition-dual-sim-td-lte-cn-128gb-tnn-an00/score/index.json new file mode 100644 index 00000000000..d5c0801cc9d --- /dev/null +++ b/site/public/v1/smartphones/maimang-9-5g-premium-edition-dual-sim-td-lte-cn-128gb-tnn-an00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 3.0, + "camera": 16.5, + "battery": 20.8, + "display": 43.7, + "value": 10.5 +} diff --git a/site/public/v1/smartphones/maimang-9-5g-standard-edition-dual-sim-td-lte-cn-128gb-tnn-an00/index.json b/site/public/v1/smartphones/maimang-9-5g-standard-edition-dual-sim-td-lte-cn-128gb-tnn-an00/index.json new file mode 100644 index 00000000000..ed3ae95952f --- /dev/null +++ b/site/public/v1/smartphones/maimang-9-5g-standard-edition-dual-sim-td-lte-cn-128gb-tnn-an00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1171, + "slug": "maimang-9-5g-standard-edition-dual-sim-td-lte-cn-128gb-tnn-an00", + "name": "Maimang 9 5G Standard Edition Dual SIM TD-LTE CN 128GB TNN-AN00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2020-08-07", + "msrp_usd": 2199, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 212.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 1.5, + "camera": 16.5, + "battery": 20.8, + "display": 43.7, + "value": 10.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.271096", + "updated_at": "2026-06-19T00:43:44.271096" +} diff --git a/site/public/v1/smartphones/maimang-9-5g-standard-edition-dual-sim-td-lte-cn-128gb-tnn-an00/score/index.json b/site/public/v1/smartphones/maimang-9-5g-standard-edition-dual-sim-td-lte-cn-128gb-tnn-an00/score/index.json new file mode 100644 index 00000000000..56eb69b6f29 --- /dev/null +++ b/site/public/v1/smartphones/maimang-9-5g-standard-edition-dual-sim-td-lte-cn-128gb-tnn-an00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 1.5, + "camera": 16.5, + "battery": 20.8, + "display": 43.7, + "value": 10.3 +} diff --git a/site/public/v1/smartphones/mate-10-pro-dual-sim-td-lte-703hw/index.json b/site/public/v1/smartphones/mate-10-pro-dual-sim-td-lte-703hw/index.json new file mode 100644 index 00000000000..9e76a2669e9 --- /dev/null +++ b/site/public/v1/smartphones/mate-10-pro-dual-sim-td-lte-703hw/index.json @@ -0,0 +1,76 @@ +{ + "id": 880, + "slug": "mate-10-pro-dual-sim-td-lte-703hw", + "name": "Mate 10 Pro Dual SIM TD-LTE 703HW", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-05-18", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 11.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 26.0, + "camera": 5.0, + "battery": 15.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.228932", + "updated_at": "2026-06-19T00:43:44.228932" +} diff --git a/site/public/v1/smartphones/mate-10-pro-dual-sim-td-lte-703hw/score/index.json b/site/public/v1/smartphones/mate-10-pro-dual-sim-td-lte-703hw/score/index.json new file mode 100644 index 00000000000..41599adaea7 --- /dev/null +++ b/site/public/v1/smartphones/mate-10-pro-dual-sim-td-lte-703hw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 26.0, + "camera": 5.0, + "battery": 15.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/mate-10-pro-standard-edition-dual-sim-td-lte-bla-l29/index.json b/site/public/v1/smartphones/mate-10-pro-standard-edition-dual-sim-td-lte-bla-l29/index.json new file mode 100644 index 00000000000..210ac62334c --- /dev/null +++ b/site/public/v1/smartphones/mate-10-pro-standard-edition-dual-sim-td-lte-bla-l29/index.json @@ -0,0 +1,76 @@ +{ + "id": 803, + "slug": "mate-10-pro-standard-edition-dual-sim-td-lte-bla-l29", + "name": "Mate 10 Pro Standard Edition Dual SIM TD-LTE BLA-L29", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2017-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 11.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.5, + "performance": 24.5, + "camera": 5.0, + "battery": 15.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.218933", + "updated_at": "2026-06-19T00:43:44.218933" +} diff --git a/site/public/v1/smartphones/mate-10-pro-standard-edition-dual-sim-td-lte-bla-l29/score/index.json b/site/public/v1/smartphones/mate-10-pro-standard-edition-dual-sim-td-lte-bla-l29/score/index.json new file mode 100644 index 00000000000..6604c2f5cca --- /dev/null +++ b/site/public/v1/smartphones/mate-10-pro-standard-edition-dual-sim-td-lte-bla-l29/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.5, + "performance": 24.5, + "camera": 5.0, + "battery": 15.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/mate-20-dual-sim-td-lte-cn-128gb-hma-al00/index.json b/site/public/v1/smartphones/mate-20-dual-sim-td-lte-cn-128gb-hma-al00/index.json new file mode 100644 index 00000000000..1938c4c6dfc --- /dev/null +++ b/site/public/v1/smartphones/mate-20-dual-sim-td-lte-cn-128gb-hma-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 881, + "slug": "mate-20-dual-sim-td-lte-cn-128gb-hma-al00", + "name": "Mate 20 Dual SIM TD-LTE CN 128GB HMA-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2018-10-17", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 381 + }, + "cameras": [ + { + "type": "main", + "mp": 11.8 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 4000, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.7, + "performance": 54.5, + "camera": 5.0, + "battery": 16.3, + "display": 43.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.229932", + "updated_at": "2026-06-19T00:43:44.229932" +} diff --git a/site/public/v1/smartphones/mate-20-dual-sim-td-lte-cn-128gb-hma-al00/score/index.json b/site/public/v1/smartphones/mate-20-dual-sim-td-lte-cn-128gb-hma-al00/score/index.json new file mode 100644 index 00000000000..3abb24fe5bf --- /dev/null +++ b/site/public/v1/smartphones/mate-20-dual-sim-td-lte-cn-128gb-hma-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.7, + "performance": 54.5, + "camera": 5.0, + "battery": 16.3, + "display": 43.1, + "value": null +} diff --git a/site/public/v1/smartphones/mate-20-dual-sim-td-lte-cn-64gb-hma-tl00/index.json b/site/public/v1/smartphones/mate-20-dual-sim-td-lte-cn-64gb-hma-tl00/index.json new file mode 100644 index 00000000000..2be8937932e --- /dev/null +++ b/site/public/v1/smartphones/mate-20-dual-sim-td-lte-cn-64gb-hma-tl00/index.json @@ -0,0 +1,76 @@ +{ + "id": 882, + "slug": "mate-20-dual-sim-td-lte-cn-64gb-hma-tl00", + "name": "Mate 20 Dual SIM TD-LTE CN 64GB HMA-TL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2018-10-17", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 381 + }, + "cameras": [ + { + "type": "main", + "mp": 11.8 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 4000, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.7, + "performance": 54.5, + "camera": 5.0, + "battery": 16.3, + "display": 43.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.229932", + "updated_at": "2026-06-19T00:43:44.229932" +} diff --git a/site/public/v1/smartphones/mate-20-dual-sim-td-lte-cn-64gb-hma-tl00/score/index.json b/site/public/v1/smartphones/mate-20-dual-sim-td-lte-cn-64gb-hma-tl00/score/index.json new file mode 100644 index 00000000000..3abb24fe5bf --- /dev/null +++ b/site/public/v1/smartphones/mate-20-dual-sim-td-lte-cn-64gb-hma-tl00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.7, + "performance": 54.5, + "camera": 5.0, + "battery": 16.3, + "display": 43.1, + "value": null +} diff --git a/site/public/v1/smartphones/mate-20-lite-dual-sim-lte-a-emea-sne-lx1-sne-l21/index.json b/site/public/v1/smartphones/mate-20-lite-dual-sim-lte-a-emea-sne-lx1-sne-l21/index.json new file mode 100644 index 00000000000..51b0583d5b5 --- /dev/null +++ b/site/public/v1/smartphones/mate-20-lite-dual-sim-lte-a-emea-sne-lx1-sne-l21/index.json @@ -0,0 +1,76 @@ +{ + "id": 883, + "slug": "mate-20-lite-dual-sim-lte-a-emea-sne-lx1-sne-l21", + "name": "Mate 20 Lite Dual SIM LTE-A EMEA SNE-LX1 / SNE-L21", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2018-09-03", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 20.1 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3750, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 7.6, + "battery": 11.2, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.229932", + "updated_at": "2026-06-19T00:43:44.229932" +} diff --git a/site/public/v1/smartphones/mate-20-lite-dual-sim-lte-a-emea-sne-lx1-sne-l21/score/index.json b/site/public/v1/smartphones/mate-20-lite-dual-sim-lte-a-emea-sne-lx1-sne-l21/score/index.json new file mode 100644 index 00000000000..027c81053f0 --- /dev/null +++ b/site/public/v1/smartphones/mate-20-lite-dual-sim-lte-a-emea-sne-lx1-sne-l21/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 7.6, + "battery": 11.2, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/mate-20-lite-dual-sim-lte-a-latam-sne-lx3-sne-l23/index.json b/site/public/v1/smartphones/mate-20-lite-dual-sim-lte-a-latam-sne-lx3-sne-l23/index.json new file mode 100644 index 00000000000..1ba878b97ab --- /dev/null +++ b/site/public/v1/smartphones/mate-20-lite-dual-sim-lte-a-latam-sne-lx3-sne-l23/index.json @@ -0,0 +1,76 @@ +{ + "id": 884, + "slug": "mate-20-lite-dual-sim-lte-a-latam-sne-lx3-sne-l23", + "name": "Mate 20 Lite Dual SIM LTE-A LATAM SNE-LX3 / SNE-L23", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 20.1 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3750, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 7.6, + "battery": 11.2, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.229932", + "updated_at": "2026-06-19T00:43:44.229932" +} diff --git a/site/public/v1/smartphones/mate-20-lite-dual-sim-lte-a-latam-sne-lx3-sne-l23/score/index.json b/site/public/v1/smartphones/mate-20-lite-dual-sim-lte-a-latam-sne-lx3-sne-l23/score/index.json new file mode 100644 index 00000000000..027c81053f0 --- /dev/null +++ b/site/public/v1/smartphones/mate-20-lite-dual-sim-lte-a-latam-sne-lx3-sne-l23/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 7.6, + "battery": 11.2, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/mate-20-lite-dual-sim-td-lte-apac-sne-lx2-sne-l22/index.json b/site/public/v1/smartphones/mate-20-lite-dual-sim-td-lte-apac-sne-lx2-sne-l22/index.json new file mode 100644 index 00000000000..c355586ec4d --- /dev/null +++ b/site/public/v1/smartphones/mate-20-lite-dual-sim-td-lte-apac-sne-lx2-sne-l22/index.json @@ -0,0 +1,76 @@ +{ + "id": 885, + "slug": "mate-20-lite-dual-sim-td-lte-apac-sne-lx2-sne-l22", + "name": "Mate 20 Lite Dual SIM TD-LTE APAC SNE-LX2 / SNE-L22", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 20.1 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3750, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 7.6, + "battery": 11.2, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.229932", + "updated_at": "2026-06-19T00:43:44.229932" +} diff --git a/site/public/v1/smartphones/mate-20-lite-dual-sim-td-lte-apac-sne-lx2-sne-l22/score/index.json b/site/public/v1/smartphones/mate-20-lite-dual-sim-td-lte-apac-sne-lx2-sne-l22/score/index.json new file mode 100644 index 00000000000..027c81053f0 --- /dev/null +++ b/site/public/v1/smartphones/mate-20-lite-dual-sim-td-lte-apac-sne-lx2-sne-l22/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 7.6, + "battery": 11.2, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/mate-20-lite-lte-a-emea-sne-l01/index.json b/site/public/v1/smartphones/mate-20-lite-lte-a-emea-sne-l01/index.json new file mode 100644 index 00000000000..5d131f6f5f9 --- /dev/null +++ b/site/public/v1/smartphones/mate-20-lite-lte-a-emea-sne-l01/index.json @@ -0,0 +1,76 @@ +{ + "id": 886, + "slug": "mate-20-lite-lte-a-emea-sne-l01", + "name": "Mate 20 Lite LTE-A EMEA SNE-L01", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2018-09-03", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 20.1 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3750, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 7.6, + "battery": 11.2, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.229932", + "updated_at": "2026-06-19T00:43:44.229932" +} diff --git a/site/public/v1/smartphones/mate-20-lite-lte-a-emea-sne-l01/score/index.json b/site/public/v1/smartphones/mate-20-lite-lte-a-emea-sne-l01/score/index.json new file mode 100644 index 00000000000..027c81053f0 --- /dev/null +++ b/site/public/v1/smartphones/mate-20-lite-lte-a-emea-sne-l01/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 7.6, + "battery": 11.2, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/mate-20-lite-lte-a-latam-sne-l03/index.json b/site/public/v1/smartphones/mate-20-lite-lte-a-latam-sne-l03/index.json new file mode 100644 index 00000000000..e90bdf17620 --- /dev/null +++ b/site/public/v1/smartphones/mate-20-lite-lte-a-latam-sne-l03/index.json @@ -0,0 +1,76 @@ +{ + "id": 887, + "slug": "mate-20-lite-lte-a-latam-sne-l03", + "name": "Mate 20 Lite LTE-A LATAM SNE-L03", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 20.1 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3750, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 7.6, + "battery": 11.2, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.229932", + "updated_at": "2026-06-19T00:43:44.229932" +} diff --git a/site/public/v1/smartphones/mate-20-lite-lte-a-latam-sne-l03/score/index.json b/site/public/v1/smartphones/mate-20-lite-lte-a-latam-sne-l03/score/index.json new file mode 100644 index 00000000000..027c81053f0 --- /dev/null +++ b/site/public/v1/smartphones/mate-20-lite-lte-a-latam-sne-l03/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 7.6, + "battery": 11.2, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/mate-20-premium-edition-global-dual-sim-td-lte-hma-lx9-hma-l29/index.json b/site/public/v1/smartphones/mate-20-premium-edition-global-dual-sim-td-lte-hma-lx9-hma-l29/index.json new file mode 100644 index 00000000000..57fd990f95c --- /dev/null +++ b/site/public/v1/smartphones/mate-20-premium-edition-global-dual-sim-td-lte-hma-lx9-hma-l29/index.json @@ -0,0 +1,76 @@ +{ + "id": 888, + "slug": "mate-20-premium-edition-global-dual-sim-td-lte-hma-lx9-hma-l29", + "name": "Mate 20 Premium Edition Global Dual SIM TD-LTE HMA-LX9 / HMA-L29", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2018-10-17", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 381 + }, + "cameras": [ + { + "type": "main", + "mp": 11.8 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 4000, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.7, + "performance": 54.5, + "camera": 5.0, + "battery": 16.3, + "display": 43.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.229932", + "updated_at": "2026-06-19T00:43:44.229932" +} diff --git a/site/public/v1/smartphones/mate-20-premium-edition-global-dual-sim-td-lte-hma-lx9-hma-l29/score/index.json b/site/public/v1/smartphones/mate-20-premium-edition-global-dual-sim-td-lte-hma-lx9-hma-l29/score/index.json new file mode 100644 index 00000000000..3abb24fe5bf --- /dev/null +++ b/site/public/v1/smartphones/mate-20-premium-edition-global-dual-sim-td-lte-hma-lx9-hma-l29/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.7, + "performance": 54.5, + "camera": 5.0, + "battery": 16.3, + "display": 43.1, + "value": null +} diff --git a/site/public/v1/smartphones/mate-20-pro-global-dual-sim-td-lte-128gb-lya-lx9-lya-l29/index.json b/site/public/v1/smartphones/mate-20-pro-global-dual-sim-td-lte-128gb-lya-lx9-lya-l29/index.json new file mode 100644 index 00000000000..a27fc64217f --- /dev/null +++ b/site/public/v1/smartphones/mate-20-pro-global-dual-sim-td-lte-128gb-lya-lx9-lya-l29/index.json @@ -0,0 +1,76 @@ +{ + "id": 889, + "slug": "mate-20-pro-global-dual-sim-td-lte-128gb-lya-lx9-lya-l29", + "name": "Mate 20 Pro Global Dual SIM TD-LTE 128GB LYA-LX9 / LYA-L29", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2018-11-16", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.5, + "performance": 54.5, + "camera": 13.9, + "battery": 22.8, + "display": 58.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.230932", + "updated_at": "2026-06-19T00:43:44.230932" +} diff --git a/site/public/v1/smartphones/mate-20-pro-global-dual-sim-td-lte-128gb-lya-lx9-lya-l29/score/index.json b/site/public/v1/smartphones/mate-20-pro-global-dual-sim-td-lte-128gb-lya-lx9-lya-l29/score/index.json new file mode 100644 index 00000000000..aecec35b485 --- /dev/null +++ b/site/public/v1/smartphones/mate-20-pro-global-dual-sim-td-lte-128gb-lya-lx9-lya-l29/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.5, + "performance": 54.5, + "camera": 13.9, + "battery": 22.8, + "display": 58.8, + "value": null +} diff --git a/site/public/v1/smartphones/mate-20-pro-global-td-lte-128gb-lya-l09/index.json b/site/public/v1/smartphones/mate-20-pro-global-td-lte-128gb-lya-l09/index.json new file mode 100644 index 00000000000..7c94d420fd5 --- /dev/null +++ b/site/public/v1/smartphones/mate-20-pro-global-td-lte-128gb-lya-l09/index.json @@ -0,0 +1,76 @@ +{ + "id": 890, + "slug": "mate-20-pro-global-td-lte-128gb-lya-l09", + "name": "Mate 20 Pro Global TD-LTE 128GB LYA-L09", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2018-11-16", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.5, + "performance": 54.5, + "camera": 13.9, + "battery": 22.8, + "display": 58.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.230932", + "updated_at": "2026-06-19T00:43:44.230932" +} diff --git a/site/public/v1/smartphones/mate-20-pro-global-td-lte-128gb-lya-l09/score/index.json b/site/public/v1/smartphones/mate-20-pro-global-td-lte-128gb-lya-l09/score/index.json new file mode 100644 index 00000000000..aecec35b485 --- /dev/null +++ b/site/public/v1/smartphones/mate-20-pro-global-td-lte-128gb-lya-l09/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.5, + "performance": 54.5, + "camera": 13.9, + "battery": 22.8, + "display": 58.8, + "value": null +} diff --git a/site/public/v1/smartphones/mate-20-pro-premium-edition-dual-sim-td-lte-cn-256gb-lya-al00/index.json b/site/public/v1/smartphones/mate-20-pro-premium-edition-dual-sim-td-lte-cn-256gb-lya-al00/index.json new file mode 100644 index 00000000000..05a7d4f3fe1 --- /dev/null +++ b/site/public/v1/smartphones/mate-20-pro-premium-edition-dual-sim-td-lte-cn-256gb-lya-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 891, + "slug": "mate-20-pro-premium-edition-dual-sim-td-lte-cn-256gb-lya-al00", + "name": "Mate 20 Pro Premium Edition Dual SIM TD-LTE CN 256GB LYA-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2018-11-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.9, + "performance": 56.0, + "camera": 13.9, + "battery": 22.8, + "display": 58.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.230932", + "updated_at": "2026-06-19T00:43:44.230932" +} diff --git a/site/public/v1/smartphones/mate-20-pro-premium-edition-dual-sim-td-lte-cn-256gb-lya-al00/score/index.json b/site/public/v1/smartphones/mate-20-pro-premium-edition-dual-sim-td-lte-cn-256gb-lya-al00/score/index.json new file mode 100644 index 00000000000..b288b66f45b --- /dev/null +++ b/site/public/v1/smartphones/mate-20-pro-premium-edition-dual-sim-td-lte-cn-256gb-lya-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.9, + "performance": 56.0, + "camera": 13.9, + "battery": 22.8, + "display": 58.8, + "value": null +} diff --git a/site/public/v1/smartphones/mate-20-pro-premium-edition-dual-sim-td-lte-cn-256gb-lya-tl00/index.json b/site/public/v1/smartphones/mate-20-pro-premium-edition-dual-sim-td-lte-cn-256gb-lya-tl00/index.json new file mode 100644 index 00000000000..c228defc92b --- /dev/null +++ b/site/public/v1/smartphones/mate-20-pro-premium-edition-dual-sim-td-lte-cn-256gb-lya-tl00/index.json @@ -0,0 +1,76 @@ +{ + "id": 892, + "slug": "mate-20-pro-premium-edition-dual-sim-td-lte-cn-256gb-lya-tl00", + "name": "Mate 20 Pro Premium Edition Dual SIM TD-LTE CN 256GB LYA-TL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2018-11-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.9, + "performance": 56.0, + "camera": 13.9, + "battery": 22.8, + "display": 58.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.230932", + "updated_at": "2026-06-19T00:43:44.230932" +} diff --git a/site/public/v1/smartphones/mate-20-pro-premium-edition-dual-sim-td-lte-cn-256gb-lya-tl00/score/index.json b/site/public/v1/smartphones/mate-20-pro-premium-edition-dual-sim-td-lte-cn-256gb-lya-tl00/score/index.json new file mode 100644 index 00000000000..b288b66f45b --- /dev/null +++ b/site/public/v1/smartphones/mate-20-pro-premium-edition-dual-sim-td-lte-cn-256gb-lya-tl00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.9, + "performance": 56.0, + "camera": 13.9, + "battery": 22.8, + "display": 58.8, + "value": null +} diff --git a/site/public/v1/smartphones/mate-20-pro-standard-edition-dual-sim-td-lte-cn-128gb-lya-al10/index.json b/site/public/v1/smartphones/mate-20-pro-standard-edition-dual-sim-td-lte-cn-128gb-lya-al10/index.json new file mode 100644 index 00000000000..896cf171f86 --- /dev/null +++ b/site/public/v1/smartphones/mate-20-pro-standard-edition-dual-sim-td-lte-cn-128gb-lya-al10/index.json @@ -0,0 +1,76 @@ +{ + "id": 893, + "slug": "mate-20-pro-standard-edition-dual-sim-td-lte-cn-128gb-lya-al10", + "name": "Mate 20 Pro Standard Edition Dual SIM TD-LTE CN 128GB LYA-AL10", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2018-10-27", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.5, + "performance": 54.5, + "camera": 13.9, + "battery": 22.8, + "display": 58.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.230932", + "updated_at": "2026-06-19T00:43:44.230932" +} diff --git a/site/public/v1/smartphones/mate-20-pro-standard-edition-dual-sim-td-lte-cn-128gb-lya-al10/score/index.json b/site/public/v1/smartphones/mate-20-pro-standard-edition-dual-sim-td-lte-cn-128gb-lya-al10/score/index.json new file mode 100644 index 00000000000..aecec35b485 --- /dev/null +++ b/site/public/v1/smartphones/mate-20-pro-standard-edition-dual-sim-td-lte-cn-128gb-lya-al10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.5, + "performance": 54.5, + "camera": 13.9, + "battery": 22.8, + "display": 58.8, + "value": null +} diff --git a/site/public/v1/smartphones/mate-20-pro-td-lte-na-128gb-lya-l0c/index.json b/site/public/v1/smartphones/mate-20-pro-td-lte-na-128gb-lya-l0c/index.json new file mode 100644 index 00000000000..73263aad566 --- /dev/null +++ b/site/public/v1/smartphones/mate-20-pro-td-lte-na-128gb-lya-l0c/index.json @@ -0,0 +1,76 @@ +{ + "id": 1032, + "slug": "mate-20-pro-td-lte-na-128gb-lya-l0c", + "name": "Mate 20 Pro TD-LTE NA 128GB LYA-L0C", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.5, + "performance": 54.5, + "camera": 13.9, + "battery": 22.8, + "display": 58.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.252091", + "updated_at": "2026-06-19T00:43:44.252091" +} diff --git a/site/public/v1/smartphones/mate-20-pro-td-lte-na-128gb-lya-l0c/score/index.json b/site/public/v1/smartphones/mate-20-pro-td-lte-na-128gb-lya-l0c/score/index.json new file mode 100644 index 00000000000..aecec35b485 --- /dev/null +++ b/site/public/v1/smartphones/mate-20-pro-td-lte-na-128gb-lya-l0c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.5, + "performance": 54.5, + "camera": 13.9, + "battery": 22.8, + "display": 58.8, + "value": null +} diff --git a/site/public/v1/smartphones/mate-20-rs-porsche-design-dual-sim-td-lte-256gb-lya-al00p/index.json b/site/public/v1/smartphones/mate-20-rs-porsche-design-dual-sim-td-lte-256gb-lya-al00p/index.json new file mode 100644 index 00000000000..eb0a523a4cf --- /dev/null +++ b/site/public/v1/smartphones/mate-20-rs-porsche-design-dual-sim-td-lte-256gb-lya-al00p/index.json @@ -0,0 +1,76 @@ +{ + "id": 894, + "slug": "mate-20-rs-porsche-design-dual-sim-td-lte-256gb-lya-al00p", + "name": "Mate 20 RS Porsche Design Dual SIM TD-LTE 256GB LYA-AL00P", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2018-11-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 187.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.9, + "performance": 56.0, + "camera": 13.9, + "battery": 22.8, + "display": 58.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.230932", + "updated_at": "2026-06-19T00:43:44.230932" +} diff --git a/site/public/v1/smartphones/mate-20-rs-porsche-design-dual-sim-td-lte-256gb-lya-al00p/score/index.json b/site/public/v1/smartphones/mate-20-rs-porsche-design-dual-sim-td-lte-256gb-lya-al00p/score/index.json new file mode 100644 index 00000000000..b288b66f45b --- /dev/null +++ b/site/public/v1/smartphones/mate-20-rs-porsche-design-dual-sim-td-lte-256gb-lya-al00p/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.9, + "performance": 56.0, + "camera": 13.9, + "battery": 22.8, + "display": 58.8, + "value": null +} diff --git a/site/public/v1/smartphones/mate-20-rs-porsche-design-global-dual-sim-td-lte-256gb-lya-l29/index.json b/site/public/v1/smartphones/mate-20-rs-porsche-design-global-dual-sim-td-lte-256gb-lya-l29/index.json new file mode 100644 index 00000000000..e79fe7d9c5d --- /dev/null +++ b/site/public/v1/smartphones/mate-20-rs-porsche-design-global-dual-sim-td-lte-256gb-lya-l29/index.json @@ -0,0 +1,76 @@ +{ + "id": 895, + "slug": "mate-20-rs-porsche-design-global-dual-sim-td-lte-256gb-lya-l29", + "name": "Mate 20 RS Porsche Design Global Dual SIM TD-LTE 256GB LYA-L29", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2018-12-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.9, + "performance": 56.0, + "camera": 13.9, + "battery": 22.8, + "display": 58.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.231932", + "updated_at": "2026-06-19T00:43:44.231932" +} diff --git a/site/public/v1/smartphones/mate-20-rs-porsche-design-global-dual-sim-td-lte-256gb-lya-l29/score/index.json b/site/public/v1/smartphones/mate-20-rs-porsche-design-global-dual-sim-td-lte-256gb-lya-l29/score/index.json new file mode 100644 index 00000000000..b288b66f45b --- /dev/null +++ b/site/public/v1/smartphones/mate-20-rs-porsche-design-global-dual-sim-td-lte-256gb-lya-l29/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.9, + "performance": 56.0, + "camera": 13.9, + "battery": 22.8, + "display": 58.8, + "value": null +} diff --git a/site/public/v1/smartphones/mate-20-x-dual-sim-td-lte-cn-128gb-evr-al00/index.json b/site/public/v1/smartphones/mate-20-x-dual-sim-td-lte-cn-128gb-evr-al00/index.json new file mode 100644 index 00000000000..5545df6d3be --- /dev/null +++ b/site/public/v1/smartphones/mate-20-x-dual-sim-td-lte-cn-128gb-evr-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 896, + "slug": "mate-20-x-dual-sim-td-lte-cn-128gb-evr-al00", + "name": "Mate 20 X Dual SIM TD-LTE CN 128GB EVR-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 7.17, + "resolution": "1080x2244", + "type": "AM-OLED display", + "ppi": 348 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 232.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 34.5, + "performance": 54.5, + "camera": 13.9, + "battery": 30.0, + "display": 39.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.231932", + "updated_at": "2026-06-19T00:43:44.231932" +} diff --git a/site/public/v1/smartphones/mate-20-x-dual-sim-td-lte-cn-128gb-evr-al00/score/index.json b/site/public/v1/smartphones/mate-20-x-dual-sim-td-lte-cn-128gb-evr-al00/score/index.json new file mode 100644 index 00000000000..89662f5cf1a --- /dev/null +++ b/site/public/v1/smartphones/mate-20-x-dual-sim-td-lte-cn-128gb-evr-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 34.5, + "performance": 54.5, + "camera": 13.9, + "battery": 30.0, + "display": 39.8, + "value": null +} diff --git a/site/public/v1/smartphones/mate-20-x-dual-sim-td-lte-cn-256gb-evr-al00/index.json b/site/public/v1/smartphones/mate-20-x-dual-sim-td-lte-cn-256gb-evr-al00/index.json new file mode 100644 index 00000000000..5144c056515 --- /dev/null +++ b/site/public/v1/smartphones/mate-20-x-dual-sim-td-lte-cn-256gb-evr-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 897, + "slug": "mate-20-x-dual-sim-td-lte-cn-256gb-evr-al00", + "name": "Mate 20 X Dual SIM TD-LTE CN 256GB EVR-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 7.17, + "resolution": "1080x2244", + "type": "AM-OLED display", + "ppi": 348 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 232.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 34.9, + "performance": 56.0, + "camera": 13.9, + "battery": 30.0, + "display": 39.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.231932", + "updated_at": "2026-06-19T00:43:44.231932" +} diff --git a/site/public/v1/smartphones/mate-20-x-dual-sim-td-lte-cn-256gb-evr-al00/score/index.json b/site/public/v1/smartphones/mate-20-x-dual-sim-td-lte-cn-256gb-evr-al00/score/index.json new file mode 100644 index 00000000000..45a5aee6c50 --- /dev/null +++ b/site/public/v1/smartphones/mate-20-x-dual-sim-td-lte-cn-256gb-evr-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 34.9, + "performance": 56.0, + "camera": 13.9, + "battery": 30.0, + "display": 39.8, + "value": null +} diff --git a/site/public/v1/smartphones/mate-20-x-global-dual-sim-td-lte-128gb-evr-l29/index.json b/site/public/v1/smartphones/mate-20-x-global-dual-sim-td-lte-128gb-evr-l29/index.json new file mode 100644 index 00000000000..b21e0f1d27b --- /dev/null +++ b/site/public/v1/smartphones/mate-20-x-global-dual-sim-td-lte-128gb-evr-l29/index.json @@ -0,0 +1,76 @@ +{ + "id": 1033, + "slug": "mate-20-x-global-dual-sim-td-lte-128gb-evr-l29", + "name": "Mate 20 X Global Dual SIM TD-LTE 128GB EVR-L29", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-01-19", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 7.17, + "resolution": "1080x2244", + "type": "AM-OLED display", + "ppi": 348 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 232.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 34.5, + "performance": 54.5, + "camera": 13.9, + "battery": 30.0, + "display": 39.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.253092", + "updated_at": "2026-06-19T00:43:44.253092" +} diff --git a/site/public/v1/smartphones/mate-20-x-global-dual-sim-td-lte-128gb-evr-l29/score/index.json b/site/public/v1/smartphones/mate-20-x-global-dual-sim-td-lte-128gb-evr-l29/score/index.json new file mode 100644 index 00000000000..89662f5cf1a --- /dev/null +++ b/site/public/v1/smartphones/mate-20-x-global-dual-sim-td-lte-128gb-evr-l29/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 34.5, + "performance": 54.5, + "camera": 13.9, + "battery": 30.0, + "display": 39.8, + "value": null +} diff --git a/site/public/v1/smartphones/mate-40-5g-global-dual-sim-td-lte-128gb-oce-an10/index.json b/site/public/v1/smartphones/mate-40-5g-global-dual-sim-td-lte-128gb-oce-an10/index.json new file mode 100644 index 00000000000..71b10c8d926 --- /dev/null +++ b/site/public/v1/smartphones/mate-40-5g-global-dual-sim-td-lte-128gb-oce-an10/index.json @@ -0,0 +1,77 @@ +{ + "id": 1173, + "slug": "mate-40-5g-global-dual-sim-td-lte-128gb-oce-an10", + "name": "Mate 40 5G Global Dual SIM TD-LTE 128GB OCE-AN10", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 36, + "slug": "kirin-9000e", + "name": "Kirin 9000E", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP22", + "url": "/v1/socs/kirin-9000e" + }, + "release_date": "2020-12-01", + "msrp_usd": 4999, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2376", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 6.8, + "camera": 17.2, + "battery": 32.8, + "display": 40.2, + "value": 12.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.271096", + "updated_at": "2026-06-19T00:43:44.271096" +} diff --git a/site/public/v1/smartphones/mate-40-5g-global-dual-sim-td-lte-128gb-oce-an10/score/index.json b/site/public/v1/smartphones/mate-40-5g-global-dual-sim-td-lte-128gb-oce-an10/score/index.json new file mode 100644 index 00000000000..59ce298b440 --- /dev/null +++ b/site/public/v1/smartphones/mate-40-5g-global-dual-sim-td-lte-128gb-oce-an10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 6.8, + "camera": 17.2, + "battery": 32.8, + "display": 40.2, + "value": 12.1 +} diff --git a/site/public/v1/smartphones/mate-40-5g-global-dual-sim-td-lte-256gb-oce-an10/index.json b/site/public/v1/smartphones/mate-40-5g-global-dual-sim-td-lte-256gb-oce-an10/index.json new file mode 100644 index 00000000000..2fbe672d2f4 --- /dev/null +++ b/site/public/v1/smartphones/mate-40-5g-global-dual-sim-td-lte-256gb-oce-an10/index.json @@ -0,0 +1,77 @@ +{ + "id": 1174, + "slug": "mate-40-5g-global-dual-sim-td-lte-256gb-oce-an10", + "name": "Mate 40 5G Global Dual SIM TD-LTE 256GB OCE-AN10", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 36, + "slug": "kirin-9000e", + "name": "Kirin 9000E", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP22", + "url": "/v1/socs/kirin-9000e" + }, + "release_date": "2020-12-01", + "msrp_usd": 899, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2376", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 6.8, + "camera": 17.2, + "battery": 32.8, + "display": 40.2, + "value": 39.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.271096", + "updated_at": "2026-06-19T00:43:44.271096" +} diff --git a/site/public/v1/smartphones/mate-40-5g-global-dual-sim-td-lte-256gb-oce-an10/score/index.json b/site/public/v1/smartphones/mate-40-5g-global-dual-sim-td-lte-256gb-oce-an10/score/index.json new file mode 100644 index 00000000000..12a48315f17 --- /dev/null +++ b/site/public/v1/smartphones/mate-40-5g-global-dual-sim-td-lte-256gb-oce-an10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 6.8, + "camera": 17.2, + "battery": 32.8, + "display": 40.2, + "value": 39.0 +} diff --git a/site/public/v1/smartphones/mate-40-pro-5g-dual-sim-td-lte-cn-128gb-noh-an00/index.json b/site/public/v1/smartphones/mate-40-pro-5g-dual-sim-td-lte-cn-128gb-noh-an00/index.json new file mode 100644 index 00000000000..f513b65372d --- /dev/null +++ b/site/public/v1/smartphones/mate-40-pro-5g-dual-sim-td-lte-cn-128gb-noh-an00/index.json @@ -0,0 +1,77 @@ +{ + "id": 1175, + "slug": "mate-40-pro-5g-dual-sim-td-lte-cn-128gb-noh-an00", + "name": "Mate 40 Pro 5G Dual SIM TD-LTE CN 128GB NOH-AN00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 35, + "slug": "kirin-9000", + "name": "HiSilicon Kirin 9000", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP24", + "url": "/v1/socs/kirin-9000" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.76, + "resolution": "1344x2772", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4400, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 212.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.3, + "performance": 5.6, + "camera": 17.2, + "battery": 40.7, + "display": 45.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.271096", + "updated_at": "2026-06-19T00:43:44.271096" +} diff --git a/site/public/v1/smartphones/mate-40-pro-5g-dual-sim-td-lte-cn-128gb-noh-an00/score/index.json b/site/public/v1/smartphones/mate-40-pro-5g-dual-sim-td-lte-cn-128gb-noh-an00/score/index.json new file mode 100644 index 00000000000..7ce5569f7be --- /dev/null +++ b/site/public/v1/smartphones/mate-40-pro-5g-dual-sim-td-lte-cn-128gb-noh-an00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.3, + "performance": 5.6, + "camera": 17.2, + "battery": 40.7, + "display": 45.6, + "value": null +} diff --git a/site/public/v1/smartphones/mate-40-pro-5g-dual-sim-td-lte-cn-256gb-noh-an00/index.json b/site/public/v1/smartphones/mate-40-pro-5g-dual-sim-td-lte-cn-256gb-noh-an00/index.json new file mode 100644 index 00000000000..f3ee34932d8 --- /dev/null +++ b/site/public/v1/smartphones/mate-40-pro-5g-dual-sim-td-lte-cn-256gb-noh-an00/index.json @@ -0,0 +1,77 @@ +{ + "id": 1176, + "slug": "mate-40-pro-5g-dual-sim-td-lte-cn-256gb-noh-an00", + "name": "Mate 40 Pro 5G Dual SIM TD-LTE CN 256GB NOH-AN00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 35, + "slug": "kirin-9000", + "name": "HiSilicon Kirin 9000", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP24", + "url": "/v1/socs/kirin-9000" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1344x2772", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4400, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 212.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.3, + "performance": 5.6, + "camera": 17.2, + "battery": 40.7, + "display": 45.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.271096", + "updated_at": "2026-06-19T00:43:44.271096" +} diff --git a/site/public/v1/smartphones/mate-40-pro-5g-dual-sim-td-lte-cn-256gb-noh-an00/score/index.json b/site/public/v1/smartphones/mate-40-pro-5g-dual-sim-td-lte-cn-256gb-noh-an00/score/index.json new file mode 100644 index 00000000000..7ce5569f7be --- /dev/null +++ b/site/public/v1/smartphones/mate-40-pro-5g-dual-sim-td-lte-cn-256gb-noh-an00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.3, + "performance": 5.6, + "camera": 17.2, + "battery": 40.7, + "display": 45.6, + "value": null +} diff --git a/site/public/v1/smartphones/mate-40-pro-5g-dual-sim-td-lte-cn-256gb-noh-tn00/index.json b/site/public/v1/smartphones/mate-40-pro-5g-dual-sim-td-lte-cn-256gb-noh-tn00/index.json new file mode 100644 index 00000000000..92d9dee7484 --- /dev/null +++ b/site/public/v1/smartphones/mate-40-pro-5g-dual-sim-td-lte-cn-256gb-noh-tn00/index.json @@ -0,0 +1,77 @@ +{ + "id": 1177, + "slug": "mate-40-pro-5g-dual-sim-td-lte-cn-256gb-noh-tn00", + "name": "Mate 40 Pro 5G Dual SIM TD-LTE CN 256GB NOH-TN00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 35, + "slug": "kirin-9000", + "name": "HiSilicon Kirin 9000", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP24", + "url": "/v1/socs/kirin-9000" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1344x2772", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4400, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 212.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.3, + "performance": 5.6, + "camera": 17.2, + "battery": 40.7, + "display": 45.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.271096", + "updated_at": "2026-06-19T00:43:44.271096" +} diff --git a/site/public/v1/smartphones/mate-40-pro-5g-dual-sim-td-lte-cn-256gb-noh-tn00/score/index.json b/site/public/v1/smartphones/mate-40-pro-5g-dual-sim-td-lte-cn-256gb-noh-tn00/score/index.json new file mode 100644 index 00000000000..7ce5569f7be --- /dev/null +++ b/site/public/v1/smartphones/mate-40-pro-5g-dual-sim-td-lte-cn-256gb-noh-tn00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.3, + "performance": 5.6, + "camera": 17.2, + "battery": 40.7, + "display": 45.6, + "value": null +} diff --git a/site/public/v1/smartphones/mate-40-pro-5g-dual-sim-td-lte-cn-512gb-noh-an00/index.json b/site/public/v1/smartphones/mate-40-pro-5g-dual-sim-td-lte-cn-512gb-noh-an00/index.json new file mode 100644 index 00000000000..8ec5d98096f --- /dev/null +++ b/site/public/v1/smartphones/mate-40-pro-5g-dual-sim-td-lte-cn-512gb-noh-an00/index.json @@ -0,0 +1,77 @@ +{ + "id": 1178, + "slug": "mate-40-pro-5g-dual-sim-td-lte-cn-512gb-noh-an00", + "name": "Mate 40 Pro 5G Dual SIM TD-LTE CN 512GB NOH-AN00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 35, + "slug": "kirin-9000", + "name": "HiSilicon Kirin 9000", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP24", + "url": "/v1/socs/kirin-9000" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.76, + "resolution": "1344x2772", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4400, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 212.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.3, + "performance": 5.6, + "camera": 17.2, + "battery": 40.7, + "display": 45.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.272601", + "updated_at": "2026-06-19T00:43:44.272601" +} diff --git a/site/public/v1/smartphones/mate-40-pro-5g-dual-sim-td-lte-cn-512gb-noh-an00/score/index.json b/site/public/v1/smartphones/mate-40-pro-5g-dual-sim-td-lte-cn-512gb-noh-an00/score/index.json new file mode 100644 index 00000000000..7ce5569f7be --- /dev/null +++ b/site/public/v1/smartphones/mate-40-pro-5g-dual-sim-td-lte-cn-512gb-noh-an00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.3, + "performance": 5.6, + "camera": 17.2, + "battery": 40.7, + "display": 45.6, + "value": null +} diff --git a/site/public/v1/smartphones/mate-40-pro-5g-global-dual-sim-td-lte-256gb-noh-nx9-noh-n29/index.json b/site/public/v1/smartphones/mate-40-pro-5g-global-dual-sim-td-lte-256gb-noh-nx9-noh-n29/index.json new file mode 100644 index 00000000000..585727f7acf --- /dev/null +++ b/site/public/v1/smartphones/mate-40-pro-5g-global-dual-sim-td-lte-256gb-noh-nx9-noh-n29/index.json @@ -0,0 +1,77 @@ +{ + "id": 1179, + "slug": "mate-40-pro-5g-global-dual-sim-td-lte-256gb-noh-nx9-noh-n29", + "name": "Mate 40 Pro 5G Global Dual SIM TD-LTE 256GB NOH-NX9 / NOH-N29", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 35, + "slug": "kirin-9000", + "name": "HiSilicon Kirin 9000", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP24", + "url": "/v1/socs/kirin-9000" + }, + "release_date": "2020-11-02", + "msrp_usd": 1199, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1344x2772", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4400, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 212.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.3, + "performance": 5.6, + "camera": 17.2, + "battery": 40.7, + "display": 45.6, + "value": 29.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.272601", + "updated_at": "2026-06-19T00:43:44.272601" +} diff --git a/site/public/v1/smartphones/mate-40-pro-5g-global-dual-sim-td-lte-256gb-noh-nx9-noh-n29/score/index.json b/site/public/v1/smartphones/mate-40-pro-5g-global-dual-sim-td-lte-256gb-noh-nx9-noh-n29/score/index.json new file mode 100644 index 00000000000..031dfda1520 --- /dev/null +++ b/site/public/v1/smartphones/mate-40-pro-5g-global-dual-sim-td-lte-256gb-noh-nx9-noh-n29/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.3, + "performance": 5.6, + "camera": 17.2, + "battery": 40.7, + "display": 45.6, + "value": 29.1 +} diff --git a/site/public/v1/smartphones/mate-40-pro-5g-global-dual-sim-td-lte-256gb-nop-an00/index.json b/site/public/v1/smartphones/mate-40-pro-5g-global-dual-sim-td-lte-256gb-nop-an00/index.json new file mode 100644 index 00000000000..799a797505f --- /dev/null +++ b/site/public/v1/smartphones/mate-40-pro-5g-global-dual-sim-td-lte-256gb-nop-an00/index.json @@ -0,0 +1,77 @@ +{ + "id": 1180, + "slug": "mate-40-pro-5g-global-dual-sim-td-lte-256gb-nop-an00", + "name": "Mate 40 Pro+ 5G Global Dual SIM TD-LTE 256GB NOP-AN00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 35, + "slug": "kirin-9000", + "name": "HiSilicon Kirin 9000", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP24", + "url": "/v1/socs/kirin-9000" + }, + "release_date": "2020-11-02", + "msrp_usd": 1399, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1344x2772", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4400, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 230.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.0, + "performance": 8.6, + "camera": 17.2, + "battery": 40.7, + "display": 45.6, + "value": 21.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.272601", + "updated_at": "2026-06-19T00:43:44.272601" +} diff --git a/site/public/v1/smartphones/mate-40-pro-5g-global-dual-sim-td-lte-256gb-nop-an00/score/index.json b/site/public/v1/smartphones/mate-40-pro-5g-global-dual-sim-td-lte-256gb-nop-an00/score/index.json new file mode 100644 index 00000000000..b7d4ef428f5 --- /dev/null +++ b/site/public/v1/smartphones/mate-40-pro-5g-global-dual-sim-td-lte-256gb-nop-an00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.0, + "performance": 8.6, + "camera": 17.2, + "battery": 40.7, + "display": 45.6, + "value": 21.8 +} diff --git a/site/public/v1/smartphones/mate-40-pro-5g-global-td-lte-256gb-noh-nx9-noh-n09/index.json b/site/public/v1/smartphones/mate-40-pro-5g-global-td-lte-256gb-noh-nx9-noh-n09/index.json new file mode 100644 index 00000000000..10c3c58996a --- /dev/null +++ b/site/public/v1/smartphones/mate-40-pro-5g-global-td-lte-256gb-noh-nx9-noh-n09/index.json @@ -0,0 +1,77 @@ +{ + "id": 1181, + "slug": "mate-40-pro-5g-global-td-lte-256gb-noh-nx9-noh-n09", + "name": "Mate 40 Pro 5G Global TD-LTE 256GB NOH-NX9 / NOH-N09", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 35, + "slug": "kirin-9000", + "name": "HiSilicon Kirin 9000", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP24", + "url": "/v1/socs/kirin-9000" + }, + "release_date": "2020-11-02", + "msrp_usd": 1199, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1344x2772", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4400, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 212.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.3, + "performance": 5.6, + "camera": 17.2, + "battery": 40.7, + "display": 45.6, + "value": 29.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.272601", + "updated_at": "2026-06-19T00:43:44.272601" +} diff --git a/site/public/v1/smartphones/mate-40-pro-5g-global-td-lte-256gb-noh-nx9-noh-n09/score/index.json b/site/public/v1/smartphones/mate-40-pro-5g-global-td-lte-256gb-noh-nx9-noh-n09/score/index.json new file mode 100644 index 00000000000..031dfda1520 --- /dev/null +++ b/site/public/v1/smartphones/mate-40-pro-5g-global-td-lte-256gb-noh-nx9-noh-n09/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.3, + "performance": 5.6, + "camera": 17.2, + "battery": 40.7, + "display": 45.6, + "value": 29.1 +} diff --git a/site/public/v1/smartphones/mate-40-rs-5g-porsche-design-collector-edition-global-dual-sim-td-lte-512gb-nop-an00/index.json b/site/public/v1/smartphones/mate-40-rs-5g-porsche-design-collector-edition-global-dual-sim-td-lte-512gb-nop-an00/index.json new file mode 100644 index 00000000000..b77115caecc --- /dev/null +++ b/site/public/v1/smartphones/mate-40-rs-5g-porsche-design-collector-edition-global-dual-sim-td-lte-512gb-nop-an00/index.json @@ -0,0 +1,77 @@ +{ + "id": 1182, + "slug": "mate-40-rs-5g-porsche-design-collector-edition-global-dual-sim-td-lte-512gb-nop-an00", + "name": "Mate 40 RS 5G PORSCHE DESIGN Collector Edition Global Dual SIM TD-LTE 512GB NOP-AN00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 35, + "slug": "kirin-9000", + "name": "HiSilicon Kirin 9000", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP24", + "url": "/v1/socs/kirin-9000" + }, + "release_date": "2020-11-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.76, + "resolution": "1344x2772", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4400, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 234.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.0, + "performance": 8.6, + "camera": 17.2, + "battery": 40.7, + "display": 45.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.272601", + "updated_at": "2026-06-19T00:43:44.272601" +} diff --git a/site/public/v1/smartphones/mate-40-rs-5g-porsche-design-collector-edition-global-dual-sim-td-lte-512gb-nop-an00/score/index.json b/site/public/v1/smartphones/mate-40-rs-5g-porsche-design-collector-edition-global-dual-sim-td-lte-512gb-nop-an00/score/index.json new file mode 100644 index 00000000000..a051c1c1032 --- /dev/null +++ b/site/public/v1/smartphones/mate-40-rs-5g-porsche-design-collector-edition-global-dual-sim-td-lte-512gb-nop-an00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.0, + "performance": 8.6, + "camera": 17.2, + "battery": 40.7, + "display": 45.6, + "value": null +} diff --git a/site/public/v1/smartphones/mate-40-rs-5g-porsche-design-global-dual-sim-td-lte-256gb-nop-an00p/index.json b/site/public/v1/smartphones/mate-40-rs-5g-porsche-design-global-dual-sim-td-lte-256gb-nop-an00p/index.json new file mode 100644 index 00000000000..b4880f42ce2 --- /dev/null +++ b/site/public/v1/smartphones/mate-40-rs-5g-porsche-design-global-dual-sim-td-lte-256gb-nop-an00p/index.json @@ -0,0 +1,77 @@ +{ + "id": 1183, + "slug": "mate-40-rs-5g-porsche-design-global-dual-sim-td-lte-256gb-nop-an00p", + "name": "Mate 40 RS 5G PORSCHE DESIGN Global Dual SIM TD-LTE 256GB NOP-AN00P", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 35, + "slug": "kirin-9000", + "name": "HiSilicon Kirin 9000", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP24", + "url": "/v1/socs/kirin-9000" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1344x2772", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4400, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 234.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.0, + "performance": 8.6, + "camera": 17.2, + "battery": 40.7, + "display": 45.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.272601", + "updated_at": "2026-06-19T00:43:44.272601" +} diff --git a/site/public/v1/smartphones/mate-40-rs-5g-porsche-design-global-dual-sim-td-lte-256gb-nop-an00p/score/index.json b/site/public/v1/smartphones/mate-40-rs-5g-porsche-design-global-dual-sim-td-lte-256gb-nop-an00p/score/index.json new file mode 100644 index 00000000000..a051c1c1032 --- /dev/null +++ b/site/public/v1/smartphones/mate-40-rs-5g-porsche-design-global-dual-sim-td-lte-256gb-nop-an00p/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.0, + "performance": 8.6, + "camera": 17.2, + "battery": 40.7, + "display": 45.6, + "value": null +} diff --git a/site/public/v1/smartphones/mate-40-rs-5g-porsche-design-global-dual-sim-td-lte-512gb-nop-an00p/index.json b/site/public/v1/smartphones/mate-40-rs-5g-porsche-design-global-dual-sim-td-lte-512gb-nop-an00p/index.json new file mode 100644 index 00000000000..9eca3ab2b35 --- /dev/null +++ b/site/public/v1/smartphones/mate-40-rs-5g-porsche-design-global-dual-sim-td-lte-512gb-nop-an00p/index.json @@ -0,0 +1,77 @@ +{ + "id": 1184, + "slug": "mate-40-rs-5g-porsche-design-global-dual-sim-td-lte-512gb-nop-an00p", + "name": "Mate 40 RS 5G PORSCHE DESIGN Global Dual SIM TD-LTE 512GB NOP-AN00P", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 35, + "slug": "kirin-9000", + "name": "HiSilicon Kirin 9000", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP24", + "url": "/v1/socs/kirin-9000" + }, + "release_date": "2020-10-01", + "msrp_usd": 2295, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.76, + "resolution": "1344x2772", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4400, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 234.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.0, + "performance": 8.6, + "camera": 17.2, + "battery": 40.7, + "display": 45.6, + "value": 14.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.272601", + "updated_at": "2026-06-19T00:43:44.272601" +} diff --git a/site/public/v1/smartphones/mate-40-rs-5g-porsche-design-global-dual-sim-td-lte-512gb-nop-an00p/score/index.json b/site/public/v1/smartphones/mate-40-rs-5g-porsche-design-global-dual-sim-td-lte-512gb-nop-an00p/score/index.json new file mode 100644 index 00000000000..c78d7994652 --- /dev/null +++ b/site/public/v1/smartphones/mate-40-rs-5g-porsche-design-global-dual-sim-td-lte-512gb-nop-an00p/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.0, + "performance": 8.6, + "camera": 17.2, + "battery": 40.7, + "display": 45.6, + "value": 14.0 +} diff --git a/site/public/v1/smartphones/mate-rs-porsche-design-dual-sim-td-lte-256gb-neo-al00/index.json b/site/public/v1/smartphones/mate-rs-porsche-design-dual-sim-td-lte-256gb-neo-al00/index.json new file mode 100644 index 00000000000..897a9701bdf --- /dev/null +++ b/site/public/v1/smartphones/mate-rs-porsche-design-dual-sim-td-lte-256gb-neo-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 898, + "slug": "mate-rs-porsche-design-dual-sim-td-lte-256gb-neo-al00", + "name": "Mate RS Porsche Design Dual SIM TD-LTE 256GB NEO-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.98, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.4, + "performance": 26.0, + "camera": 13.9, + "battery": 15.0, + "display": 58.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.231932", + "updated_at": "2026-06-19T00:43:44.231932" +} diff --git a/site/public/v1/smartphones/mate-rs-porsche-design-dual-sim-td-lte-256gb-neo-al00/score/index.json b/site/public/v1/smartphones/mate-rs-porsche-design-dual-sim-td-lte-256gb-neo-al00/score/index.json new file mode 100644 index 00000000000..748d2a19b5d --- /dev/null +++ b/site/public/v1/smartphones/mate-rs-porsche-design-dual-sim-td-lte-256gb-neo-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.4, + "performance": 26.0, + "camera": 13.9, + "battery": 15.0, + "display": 58.8, + "value": null +} diff --git a/site/public/v1/smartphones/mate-rs-porsche-design-dual-sim-td-lte-512gb-neo-al00/index.json b/site/public/v1/smartphones/mate-rs-porsche-design-dual-sim-td-lte-512gb-neo-al00/index.json new file mode 100644 index 00000000000..fc506da04c8 --- /dev/null +++ b/site/public/v1/smartphones/mate-rs-porsche-design-dual-sim-td-lte-512gb-neo-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 899, + "slug": "mate-rs-porsche-design-dual-sim-td-lte-512gb-neo-al00", + "name": "Mate RS Porsche Design Dual SIM TD-LTE 512GB NEO-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 5.98, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.4, + "performance": 26.0, + "camera": 13.9, + "battery": 15.0, + "display": 58.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.231932", + "updated_at": "2026-06-19T00:43:44.231932" +} diff --git a/site/public/v1/smartphones/mate-rs-porsche-design-dual-sim-td-lte-512gb-neo-al00/score/index.json b/site/public/v1/smartphones/mate-rs-porsche-design-dual-sim-td-lte-512gb-neo-al00/score/index.json new file mode 100644 index 00000000000..748d2a19b5d --- /dev/null +++ b/site/public/v1/smartphones/mate-rs-porsche-design-dual-sim-td-lte-512gb-neo-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.4, + "performance": 26.0, + "camera": 13.9, + "battery": 15.0, + "display": 58.8, + "value": null +} diff --git a/site/public/v1/smartphones/mate-x-dual-sim-5g-td-lte-cn-512gb-tah-an00-tah-tn00/index.json b/site/public/v1/smartphones/mate-x-dual-sim-5g-td-lte-cn-512gb-tah-an00-tah-tn00/index.json new file mode 100644 index 00000000000..3cccd5bd431 --- /dev/null +++ b/site/public/v1/smartphones/mate-x-dual-sim-5g-td-lte-cn-512gb-tah-an00-tah-tn00/index.json @@ -0,0 +1,72 @@ +{ + "id": 1034, + "slug": "mate-x-dual-sim-5g-td-lte-cn-512gb-tah-an00-tah-tn00", + "name": "Mate X Dual SIM 5G TD-LTE CN 512GB TAH-AN00 / TAH-TN00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-11-14", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 7.99, + "resolution": "2480x2200", + "type": "AM-OLED display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 295.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 36.6, + "performance": 56.0, + "camera": 13.9, + "battery": 30.1, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.253092", + "updated_at": "2026-06-19T00:43:44.253092" +} diff --git a/site/public/v1/smartphones/mate-x-dual-sim-5g-td-lte-cn-512gb-tah-an00-tah-tn00/score/index.json b/site/public/v1/smartphones/mate-x-dual-sim-5g-td-lte-cn-512gb-tah-an00-tah-tn00/score/index.json new file mode 100644 index 00000000000..0506d342644 --- /dev/null +++ b/site/public/v1/smartphones/mate-x-dual-sim-5g-td-lte-cn-512gb-tah-an00-tah-tn00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 36.6, + "performance": 56.0, + "camera": 13.9, + "battery": 30.1, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/mate-x-global-dual-sim-5g-td-lte-512gb-tah-n29/index.json b/site/public/v1/smartphones/mate-x-global-dual-sim-5g-td-lte-512gb-tah-n29/index.json new file mode 100644 index 00000000000..6264bbcf294 --- /dev/null +++ b/site/public/v1/smartphones/mate-x-global-dual-sim-5g-td-lte-512gb-tah-n29/index.json @@ -0,0 +1,72 @@ +{ + "id": 1035, + "slug": "mate-x-global-dual-sim-5g-td-lte-512gb-tah-n29", + "name": "Mate X Global Dual SIM 5G TD-LTE 512GB TAH-N29", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-12-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 7.99, + "resolution": "2480x2200", + "type": "AM-OLED display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 295.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 36.6, + "performance": 56.0, + "camera": 13.9, + "battery": 30.1, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.253092", + "updated_at": "2026-06-19T00:43:44.253092" +} diff --git a/site/public/v1/smartphones/mate-x-global-dual-sim-5g-td-lte-512gb-tah-n29/score/index.json b/site/public/v1/smartphones/mate-x-global-dual-sim-5g-td-lte-512gb-tah-n29/score/index.json new file mode 100644 index 00000000000..0506d342644 --- /dev/null +++ b/site/public/v1/smartphones/mate-x-global-dual-sim-5g-td-lte-512gb-tah-n29/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 36.6, + "performance": 56.0, + "camera": 13.9, + "battery": 30.1, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/mate-x2-global-dual-sim-5g-td-lte-256gb-tet-an00/index.json b/site/public/v1/smartphones/mate-x2-global-dual-sim-5g-td-lte-256gb-tet-an00/index.json new file mode 100644 index 00000000000..2e781a0c551 --- /dev/null +++ b/site/public/v1/smartphones/mate-x2-global-dual-sim-5g-td-lte-256gb-tet-an00/index.json @@ -0,0 +1,77 @@ +{ + "id": 1267, + "slug": "mate-x2-global-dual-sim-5g-td-lte-256gb-tet-an00", + "name": "Mate X2 Global Dual SIM 5G TD-LTE 256GB TET-AN00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 35, + "slug": "kirin-9000", + "name": "HiSilicon Kirin 9000", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP24", + "url": "/v1/socs/kirin-9000" + }, + "release_date": "2021-02-26", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 7.99, + "resolution": "2480x2200", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 295.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.1, + "performance": 5.6, + "camera": 17.2, + "battery": 40.1, + "display": 41.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.282605", + "updated_at": "2026-06-19T00:43:44.282605" +} diff --git a/site/public/v1/smartphones/mate-x2-global-dual-sim-5g-td-lte-256gb-tet-an00/score/index.json b/site/public/v1/smartphones/mate-x2-global-dual-sim-5g-td-lte-256gb-tet-an00/score/index.json new file mode 100644 index 00000000000..2c5d15a7256 --- /dev/null +++ b/site/public/v1/smartphones/mate-x2-global-dual-sim-5g-td-lte-256gb-tet-an00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.1, + "performance": 5.6, + "camera": 17.2, + "battery": 40.1, + "display": 41.5, + "value": null +} diff --git a/site/public/v1/smartphones/mate-x2-global-dual-sim-5g-td-lte-512gb-tet-an00/index.json b/site/public/v1/smartphones/mate-x2-global-dual-sim-5g-td-lte-512gb-tet-an00/index.json new file mode 100644 index 00000000000..3a726d33677 --- /dev/null +++ b/site/public/v1/smartphones/mate-x2-global-dual-sim-5g-td-lte-512gb-tet-an00/index.json @@ -0,0 +1,77 @@ +{ + "id": 1268, + "slug": "mate-x2-global-dual-sim-5g-td-lte-512gb-tet-an00", + "name": "Mate X2 Global Dual SIM 5G TD-LTE 512GB TET-AN00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 35, + "slug": "kirin-9000", + "name": "HiSilicon Kirin 9000", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP24", + "url": "/v1/socs/kirin-9000" + }, + "release_date": "2021-02-27", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 7.99, + "resolution": "2480x2200", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 295.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.1, + "performance": 5.6, + "camera": 17.2, + "battery": 40.1, + "display": 41.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.282605", + "updated_at": "2026-06-19T00:43:44.282605" +} diff --git a/site/public/v1/smartphones/mate-x2-global-dual-sim-5g-td-lte-512gb-tet-an00/score/index.json b/site/public/v1/smartphones/mate-x2-global-dual-sim-5g-td-lte-512gb-tet-an00/score/index.json new file mode 100644 index 00000000000..2c5d15a7256 --- /dev/null +++ b/site/public/v1/smartphones/mate-x2-global-dual-sim-5g-td-lte-512gb-tet-an00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.1, + "performance": 5.6, + "camera": 17.2, + "battery": 40.1, + "display": 41.5, + "value": null +} diff --git a/site/public/v1/smartphones/mate-x2/index.json b/site/public/v1/smartphones/mate-x2/index.json new file mode 100644 index 00000000000..c2112a4e28a --- /dev/null +++ b/site/public/v1/smartphones/mate-x2/index.json @@ -0,0 +1,68 @@ +{ + "id": 1269, + "slug": "mate-x2", + "name": "Mate X2", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 35, + "slug": "kirin-9000", + "name": "HiSilicon Kirin 9000", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP24", + "url": "/v1/socs/kirin-9000" + }, + "release_date": "2021-01-01", + "msrp_usd": 2699, + "ram_gb": 8, + "storage_options_gb": [], + "display": { + "size_inch": 8.0 + }, + "cameras": [ + { + "type": "main", + "mp": 50.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 295.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 5.6, + "camera": 17.1, + "battery": 32.5, + "display": null, + "value": 9.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.282605", + "updated_at": "2026-06-19T00:43:44.282605" +} diff --git a/site/public/v1/smartphones/mate-x2/score/index.json b/site/public/v1/smartphones/mate-x2/score/index.json new file mode 100644 index 00000000000..f0debbbaab2 --- /dev/null +++ b/site/public/v1/smartphones/mate-x2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 5.6, + "camera": 17.1, + "battery": 32.5, + "display": null, + "value": 9.2 +} diff --git a/site/public/v1/smartphones/mblu-e3-dual-sim-td-lte-cn-m851m-128gb/index.json b/site/public/v1/smartphones/mblu-e3-dual-sim-td-lte-cn-m851m-128gb/index.json new file mode 100644 index 00000000000..8daf5bd904a --- /dev/null +++ b/site/public/v1/smartphones/mblu-e3-dual-sim-td-lte-cn-m851m-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1865, + "slug": "mblu-e3-dual-sim-td-lte-cn-m851m-128gb", + "name": "mblu E3 Dual SIM TD-LTE CN M851M 128GB", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-03-31", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 20.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3360, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 1.5, + "camera": 7.6, + "battery": 6.4, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.384881", + "updated_at": "2026-06-19T00:43:44.384881" +} diff --git a/site/public/v1/smartphones/mblu-e3-dual-sim-td-lte-cn-m851m-128gb/score/index.json b/site/public/v1/smartphones/mblu-e3-dual-sim-td-lte-cn-m851m-128gb/score/index.json new file mode 100644 index 00000000000..80221d3aff7 --- /dev/null +++ b/site/public/v1/smartphones/mblu-e3-dual-sim-td-lte-cn-m851m-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 1.5, + "camera": 7.6, + "battery": 6.4, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mblu-e3-dual-sim-td-lte-cn-m851q-128gb/index.json b/site/public/v1/smartphones/mblu-e3-dual-sim-td-lte-cn-m851q-128gb/index.json new file mode 100644 index 00000000000..4f3f5b4066d --- /dev/null +++ b/site/public/v1/smartphones/mblu-e3-dual-sim-td-lte-cn-m851q-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1866, + "slug": "mblu-e3-dual-sim-td-lte-cn-m851q-128gb", + "name": "mblu E3 Dual SIM TD-LTE CN M851Q 128GB", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-03-31", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 20.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3360, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 1.5, + "camera": 7.6, + "battery": 6.4, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.384881", + "updated_at": "2026-06-19T00:43:44.384881" +} diff --git a/site/public/v1/smartphones/mblu-e3-dual-sim-td-lte-cn-m851q-128gb/score/index.json b/site/public/v1/smartphones/mblu-e3-dual-sim-td-lte-cn-m851q-128gb/score/index.json new file mode 100644 index 00000000000..80221d3aff7 --- /dev/null +++ b/site/public/v1/smartphones/mblu-e3-dual-sim-td-lte-cn-m851q-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 1.5, + "camera": 7.6, + "battery": 6.4, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mblu-e3-dual-sim-td-lte-cn-m851q-64gb/index.json b/site/public/v1/smartphones/mblu-e3-dual-sim-td-lte-cn-m851q-64gb/index.json new file mode 100644 index 00000000000..ec614e1ba54 --- /dev/null +++ b/site/public/v1/smartphones/mblu-e3-dual-sim-td-lte-cn-m851q-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1867, + "slug": "mblu-e3-dual-sim-td-lte-cn-m851q-64gb", + "name": "mblu E3 Dual SIM TD-LTE CN M851Q 64GB", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-03-31", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 20.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3360, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 1.5, + "camera": 7.6, + "battery": 6.4, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.384881", + "updated_at": "2026-06-19T00:43:44.384881" +} diff --git a/site/public/v1/smartphones/mblu-e3-dual-sim-td-lte-cn-m851q-64gb/score/index.json b/site/public/v1/smartphones/mblu-e3-dual-sim-td-lte-cn-m851q-64gb/score/index.json new file mode 100644 index 00000000000..80221d3aff7 --- /dev/null +++ b/site/public/v1/smartphones/mblu-e3-dual-sim-td-lte-cn-m851q-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 1.5, + "camera": 7.6, + "battery": 6.4, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-10-5g-dual-sim-td-lte-in-128gb-m2001j2i/index.json b/site/public/v1/smartphones/mi-10-5g-dual-sim-td-lte-in-128gb-m2001j2i/index.json new file mode 100644 index 00000000000..d8cc5e2eb60 --- /dev/null +++ b/site/public/v1/smartphones/mi-10-5g-dual-sim-td-lte-in-128gb-m2001j2i/index.json @@ -0,0 +1,77 @@ +{ + "id": 5881, + "slug": "mi-10-5g-dual-sim-td-lte-in-128gb-m2001j2i", + "name": "Mi 10 5G Dual SIM TD-LTE IN 128GB M2001J2I", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4780, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.7, + "performance": 3.0, + "camera": 35.8, + "battery": 29.5, + "display": 38.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.945307", + "updated_at": "2026-06-19T00:43:44.945307" +} diff --git a/site/public/v1/smartphones/mi-10-5g-dual-sim-td-lte-in-128gb-m2001j2i/score/index.json b/site/public/v1/smartphones/mi-10-5g-dual-sim-td-lte-in-128gb-m2001j2i/score/index.json new file mode 100644 index 00000000000..f371232dbcf --- /dev/null +++ b/site/public/v1/smartphones/mi-10-5g-dual-sim-td-lte-in-128gb-m2001j2i/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.7, + "performance": 3.0, + "camera": 35.8, + "battery": 29.5, + "display": 38.6, + "value": null +} diff --git a/site/public/v1/smartphones/mi-10-5g-dual-sim-td-lte-in-256gb-m2001j2i/index.json b/site/public/v1/smartphones/mi-10-5g-dual-sim-td-lte-in-256gb-m2001j2i/index.json new file mode 100644 index 00000000000..9b8c0de6139 --- /dev/null +++ b/site/public/v1/smartphones/mi-10-5g-dual-sim-td-lte-in-256gb-m2001j2i/index.json @@ -0,0 +1,77 @@ +{ + "id": 5882, + "slug": "mi-10-5g-dual-sim-td-lte-in-256gb-m2001j2i", + "name": "Mi 10 5G Dual SIM TD-LTE IN 256GB M2001J2I", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4780, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.7, + "performance": 3.0, + "camera": 35.8, + "battery": 29.5, + "display": 38.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.945307", + "updated_at": "2026-06-19T00:43:44.945307" +} diff --git a/site/public/v1/smartphones/mi-10-5g-dual-sim-td-lte-in-256gb-m2001j2i/score/index.json b/site/public/v1/smartphones/mi-10-5g-dual-sim-td-lte-in-256gb-m2001j2i/score/index.json new file mode 100644 index 00000000000..f371232dbcf --- /dev/null +++ b/site/public/v1/smartphones/mi-10-5g-dual-sim-td-lte-in-256gb-m2001j2i/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.7, + "performance": 3.0, + "camera": 35.8, + "battery": 29.5, + "display": 38.6, + "value": null +} diff --git a/site/public/v1/smartphones/mi-10-5g-global-td-lte-128gb-m2001j2g/index.json b/site/public/v1/smartphones/mi-10-5g-global-td-lte-128gb-m2001j2g/index.json new file mode 100644 index 00000000000..9d1819c7521 --- /dev/null +++ b/site/public/v1/smartphones/mi-10-5g-global-td-lte-128gb-m2001j2g/index.json @@ -0,0 +1,77 @@ +{ + "id": 5883, + "slug": "mi-10-5g-global-td-lte-128gb-m2001j2g", + "name": "Mi 10 5G Global TD-LTE 128GB M2001J2G", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4780, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.4, + "performance": 3.0, + "camera": 35.8, + "battery": 36.2, + "display": 38.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.945307", + "updated_at": "2026-06-19T00:43:44.945307" +} diff --git a/site/public/v1/smartphones/mi-10-5g-global-td-lte-128gb-m2001j2g/score/index.json b/site/public/v1/smartphones/mi-10-5g-global-td-lte-128gb-m2001j2g/score/index.json new file mode 100644 index 00000000000..0e87eb302ef --- /dev/null +++ b/site/public/v1/smartphones/mi-10-5g-global-td-lte-128gb-m2001j2g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.4, + "performance": 3.0, + "camera": 35.8, + "battery": 36.2, + "display": 38.6, + "value": null +} diff --git a/site/public/v1/smartphones/mi-10-5g-global-td-lte-256gb-m2001j2g/index.json b/site/public/v1/smartphones/mi-10-5g-global-td-lte-256gb-m2001j2g/index.json new file mode 100644 index 00000000000..faeb684e4bb --- /dev/null +++ b/site/public/v1/smartphones/mi-10-5g-global-td-lte-256gb-m2001j2g/index.json @@ -0,0 +1,77 @@ +{ + "id": 5884, + "slug": "mi-10-5g-global-td-lte-256gb-m2001j2g", + "name": "Mi 10 5G Global TD-LTE 256GB M2001J2G", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4780, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.4, + "performance": 3.0, + "camera": 35.8, + "battery": 36.2, + "display": 38.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.945307", + "updated_at": "2026-06-19T00:43:44.945307" +} diff --git a/site/public/v1/smartphones/mi-10-5g-global-td-lte-256gb-m2001j2g/score/index.json b/site/public/v1/smartphones/mi-10-5g-global-td-lte-256gb-m2001j2g/score/index.json new file mode 100644 index 00000000000..0e87eb302ef --- /dev/null +++ b/site/public/v1/smartphones/mi-10-5g-global-td-lte-256gb-m2001j2g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.4, + "performance": 3.0, + "camera": 35.8, + "battery": 36.2, + "display": 38.6, + "value": null +} diff --git a/site/public/v1/smartphones/mi-10-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001j2e-m2001j2c/index.json b/site/public/v1/smartphones/mi-10-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001j2e-m2001j2c/index.json new file mode 100644 index 00000000000..408f5d1e831 --- /dev/null +++ b/site/public/v1/smartphones/mi-10-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001j2e-m2001j2c/index.json @@ -0,0 +1,77 @@ +{ + "id": 5885, + "slug": "mi-10-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001j2e-m2001j2c", + "name": "Mi 10 5G Premium Edition Dual SIM TD-LTE CN 256GB M2001J2E / M2001J2C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-02-14", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4780, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.1, + "performance": 6.0, + "camera": 35.8, + "battery": 36.2, + "display": 38.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.945307", + "updated_at": "2026-06-19T00:43:44.945307" +} diff --git a/site/public/v1/smartphones/mi-10-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001j2e-m2001j2c/score/index.json b/site/public/v1/smartphones/mi-10-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001j2e-m2001j2c/score/index.json new file mode 100644 index 00000000000..31f99e28fec --- /dev/null +++ b/site/public/v1/smartphones/mi-10-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001j2e-m2001j2c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.1, + "performance": 6.0, + "camera": 35.8, + "battery": 36.2, + "display": 38.6, + "value": null +} diff --git a/site/public/v1/smartphones/mi-10-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2001j2e-m2001j2c/index.json b/site/public/v1/smartphones/mi-10-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2001j2e-m2001j2c/index.json new file mode 100644 index 00000000000..0121788a282 --- /dev/null +++ b/site/public/v1/smartphones/mi-10-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2001j2e-m2001j2c/index.json @@ -0,0 +1,77 @@ +{ + "id": 5886, + "slug": "mi-10-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2001j2e-m2001j2c", + "name": "Mi 10 5G Standard Edition Dual SIM TD-LTE CN 128GB M2001J2E / M2001J2C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-02-14", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4780, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.4, + "performance": 3.0, + "camera": 35.8, + "battery": 36.2, + "display": 38.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.946306", + "updated_at": "2026-06-19T00:43:44.946306" +} diff --git a/site/public/v1/smartphones/mi-10-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2001j2e-m2001j2c/score/index.json b/site/public/v1/smartphones/mi-10-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2001j2e-m2001j2c/score/index.json new file mode 100644 index 00000000000..0e87eb302ef --- /dev/null +++ b/site/public/v1/smartphones/mi-10-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2001j2e-m2001j2c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.4, + "performance": 3.0, + "camera": 35.8, + "battery": 36.2, + "display": 38.6, + "value": null +} diff --git a/site/public/v1/smartphones/mi-10-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2001j2e-m2001j2c/index.json b/site/public/v1/smartphones/mi-10-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2001j2e-m2001j2c/index.json new file mode 100644 index 00000000000..222e728165a --- /dev/null +++ b/site/public/v1/smartphones/mi-10-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2001j2e-m2001j2c/index.json @@ -0,0 +1,77 @@ +{ + "id": 5887, + "slug": "mi-10-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2001j2e-m2001j2c", + "name": "Mi 10 5G Standard Edition Dual SIM TD-LTE CN 256GB M2001J2E / M2001J2C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-02-14", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4780, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.4, + "performance": 3.0, + "camera": 35.8, + "battery": 36.2, + "display": 38.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.946306", + "updated_at": "2026-06-19T00:43:44.946306" +} diff --git a/site/public/v1/smartphones/mi-10-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2001j2e-m2001j2c/score/index.json b/site/public/v1/smartphones/mi-10-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2001j2e-m2001j2c/score/index.json new file mode 100644 index 00000000000..0e87eb302ef --- /dev/null +++ b/site/public/v1/smartphones/mi-10-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2001j2e-m2001j2c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.4, + "performance": 3.0, + "camera": 35.8, + "battery": 36.2, + "display": 38.6, + "value": null +} diff --git a/site/public/v1/smartphones/mi-10-lite-5g-premium-edition-global-dual-sim-td-lte-256gb-m2002j9g/index.json b/site/public/v1/smartphones/mi-10-lite-5g-premium-edition-global-dual-sim-td-lte-256gb-m2002j9g/index.json new file mode 100644 index 00000000000..bc151f269d2 --- /dev/null +++ b/site/public/v1/smartphones/mi-10-lite-5g-premium-edition-global-dual-sim-td-lte-256gb-m2002j9g/index.json @@ -0,0 +1,76 @@ +{ + "id": 5888, + "slug": "mi-10-lite-5g-premium-edition-global-dual-sim-td-lte-256gb-m2002j9g", + "name": "Mi 10 Lite 5G Premium Edition Global Dual SIM TD-LTE 256GB M2002J9G", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-06-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4160, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": 3.0, + "camera": 16.5, + "battery": 18.8, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.946306", + "updated_at": "2026-06-19T00:43:44.946306" +} diff --git a/site/public/v1/smartphones/mi-10-lite-5g-premium-edition-global-dual-sim-td-lte-256gb-m2002j9g/score/index.json b/site/public/v1/smartphones/mi-10-lite-5g-premium-edition-global-dual-sim-td-lte-256gb-m2002j9g/score/index.json new file mode 100644 index 00000000000..79b32aefeba --- /dev/null +++ b/site/public/v1/smartphones/mi-10-lite-5g-premium-edition-global-dual-sim-td-lte-256gb-m2002j9g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": 3.0, + "camera": 16.5, + "battery": 18.8, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/mi-10-lite-5g-standard-edition-global-dual-sim-td-lte-128gb-m2002j9g/index.json b/site/public/v1/smartphones/mi-10-lite-5g-standard-edition-global-dual-sim-td-lte-128gb-m2002j9g/index.json new file mode 100644 index 00000000000..962f5547efa --- /dev/null +++ b/site/public/v1/smartphones/mi-10-lite-5g-standard-edition-global-dual-sim-td-lte-128gb-m2002j9g/index.json @@ -0,0 +1,76 @@ +{ + "id": 5889, + "slug": "mi-10-lite-5g-standard-edition-global-dual-sim-td-lte-128gb-m2002j9g", + "name": "Mi 10 Lite 5G Standard Edition Global Dual SIM TD-LTE 128GB M2002J9G", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-05-01", + "msrp_usd": 399, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4160, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 1.5, + "camera": 16.5, + "battery": 18.8, + "display": 45.1, + "value": 56.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.946306", + "updated_at": "2026-06-19T00:43:44.946306" +} diff --git a/site/public/v1/smartphones/mi-10-lite-5g-standard-edition-global-dual-sim-td-lte-128gb-m2002j9g/score/index.json b/site/public/v1/smartphones/mi-10-lite-5g-standard-edition-global-dual-sim-td-lte-128gb-m2002j9g/score/index.json new file mode 100644 index 00000000000..00faec3001d --- /dev/null +++ b/site/public/v1/smartphones/mi-10-lite-5g-standard-edition-global-dual-sim-td-lte-128gb-m2002j9g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 1.5, + "camera": 16.5, + "battery": 18.8, + "display": 45.1, + "value": 56.5 +} diff --git a/site/public/v1/smartphones/mi-10-lite-5g-standard-edition-global-dual-sim-td-lte-64gb-m2002j9g/index.json b/site/public/v1/smartphones/mi-10-lite-5g-standard-edition-global-dual-sim-td-lte-64gb-m2002j9g/index.json new file mode 100644 index 00000000000..3af57944cd8 --- /dev/null +++ b/site/public/v1/smartphones/mi-10-lite-5g-standard-edition-global-dual-sim-td-lte-64gb-m2002j9g/index.json @@ -0,0 +1,76 @@ +{ + "id": 5890, + "slug": "mi-10-lite-5g-standard-edition-global-dual-sim-td-lte-64gb-m2002j9g", + "name": "Mi 10 Lite 5G Standard Edition Global Dual SIM TD-LTE 64GB M2002J9G", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-05-01", + "msrp_usd": 349, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4160, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 1.5, + "camera": 16.5, + "battery": 18.8, + "display": 45.1, + "value": 58.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.946306", + "updated_at": "2026-06-19T00:43:44.946306" +} diff --git a/site/public/v1/smartphones/mi-10-lite-5g-standard-edition-global-dual-sim-td-lte-64gb-m2002j9g/score/index.json b/site/public/v1/smartphones/mi-10-lite-5g-standard-edition-global-dual-sim-td-lte-64gb-m2002j9g/score/index.json new file mode 100644 index 00000000000..64acfbea66b --- /dev/null +++ b/site/public/v1/smartphones/mi-10-lite-5g-standard-edition-global-dual-sim-td-lte-64gb-m2002j9g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 1.5, + "camera": 16.5, + "battery": 18.8, + "display": 45.1, + "value": 58.4 +} diff --git a/site/public/v1/smartphones/mi-10-lite-5g-td-lte-kr-128gb-m2002j9s/index.json b/site/public/v1/smartphones/mi-10-lite-5g-td-lte-kr-128gb-m2002j9s/index.json new file mode 100644 index 00000000000..c0014d5ebff --- /dev/null +++ b/site/public/v1/smartphones/mi-10-lite-5g-td-lte-kr-128gb-m2002j9s/index.json @@ -0,0 +1,76 @@ +{ + "id": 5891, + "slug": "mi-10-lite-5g-td-lte-kr-128gb-m2002j9s", + "name": "Mi 10 Lite 5G TD-LTE KR 128GB M2002J9S", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-07-16", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4160, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 1.5, + "camera": 16.5, + "battery": 18.8, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.946306", + "updated_at": "2026-06-19T00:43:44.946306" +} diff --git a/site/public/v1/smartphones/mi-10-lite-5g-td-lte-kr-128gb-m2002j9s/score/index.json b/site/public/v1/smartphones/mi-10-lite-5g-td-lte-kr-128gb-m2002j9s/score/index.json new file mode 100644 index 00000000000..29681e8c118 --- /dev/null +++ b/site/public/v1/smartphones/mi-10-lite-5g-td-lte-kr-128gb-m2002j9s/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 1.5, + "camera": 16.5, + "battery": 18.8, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/mi-10-lite-5g-xig01-td-lte-jp-128gb-m2002j9r/index.json b/site/public/v1/smartphones/mi-10-lite-5g-xig01-td-lte-jp-128gb-m2002j9r/index.json new file mode 100644 index 00000000000..a954f0b7424 --- /dev/null +++ b/site/public/v1/smartphones/mi-10-lite-5g-xig01-td-lte-jp-128gb-m2002j9r/index.json @@ -0,0 +1,76 @@ +{ + "id": 5892, + "slug": "mi-10-lite-5g-xig01-td-lte-jp-128gb-m2002j9r", + "name": "Mi 10 Lite 5G XIG01 TD-LTE JP 128GB M2002J9R", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-07-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4160, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 1.5, + "camera": 16.5, + "battery": 18.8, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.946306", + "updated_at": "2026-06-19T00:43:44.946306" +} diff --git a/site/public/v1/smartphones/mi-10-lite-5g-xig01-td-lte-jp-128gb-m2002j9r/score/index.json b/site/public/v1/smartphones/mi-10-lite-5g-xig01-td-lte-jp-128gb-m2002j9r/score/index.json new file mode 100644 index 00000000000..29681e8c118 --- /dev/null +++ b/site/public/v1/smartphones/mi-10-lite-5g-xig01-td-lte-jp-128gb-m2002j9r/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 1.5, + "camera": 16.5, + "battery": 18.8, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/mi-10-lite-zoom-5g-dual-sim-td-lte-cn-64gb-m2002j9c/index.json b/site/public/v1/smartphones/mi-10-lite-zoom-5g-dual-sim-td-lte-cn-64gb-m2002j9c/index.json new file mode 100644 index 00000000000..30776a1d053 --- /dev/null +++ b/site/public/v1/smartphones/mi-10-lite-zoom-5g-dual-sim-td-lte-cn-64gb-m2002j9c/index.json @@ -0,0 +1,76 @@ +{ + "id": 5893, + "slug": "mi-10-lite-zoom-5g-dual-sim-td-lte-cn-64gb-m2002j9c", + "name": "Mi 10 Lite Zoom 5G Dual SIM TD-LTE CN 64GB M2002J9C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-05-04", + "msrp_usd": 2099, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4160, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 1.5, + "camera": 16.5, + "battery": 18.4, + "display": 45.1, + "value": 10.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.946306", + "updated_at": "2026-06-19T00:43:44.946306" +} diff --git a/site/public/v1/smartphones/mi-10-lite-zoom-5g-dual-sim-td-lte-cn-64gb-m2002j9c/score/index.json b/site/public/v1/smartphones/mi-10-lite-zoom-5g-dual-sim-td-lte-cn-64gb-m2002j9c/score/index.json new file mode 100644 index 00000000000..e859b51b88b --- /dev/null +++ b/site/public/v1/smartphones/mi-10-lite-zoom-5g-dual-sim-td-lte-cn-64gb-m2002j9c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 1.5, + "camera": 16.5, + "battery": 18.4, + "display": 45.1, + "value": 10.2 +} diff --git a/site/public/v1/smartphones/mi-10-pro-5g-global-td-lte-256gb-m2001j1g/index.json b/site/public/v1/smartphones/mi-10-pro-5g-global-td-lte-256gb-m2001j1g/index.json new file mode 100644 index 00000000000..a14009a0e41 --- /dev/null +++ b/site/public/v1/smartphones/mi-10-pro-5g-global-td-lte-256gb-m2001j1g/index.json @@ -0,0 +1,77 @@ +{ + "id": 5896, + "slug": "mi-10-pro-5g-global-td-lte-256gb-m2001j1g", + "name": "Mi 10 Pro 5G Global TD-LTE 256GB M2001J1G", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 2250, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 3.0, + "camera": 35.8, + "battery": 9.5, + "display": 38.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.947307", + "updated_at": "2026-06-19T00:43:44.947307" +} diff --git a/site/public/v1/smartphones/mi-10-pro-5g-global-td-lte-256gb-m2001j1g/score/index.json b/site/public/v1/smartphones/mi-10-pro-5g-global-td-lte-256gb-m2001j1g/score/index.json new file mode 100644 index 00000000000..b2c758a7ff1 --- /dev/null +++ b/site/public/v1/smartphones/mi-10-pro-5g-global-td-lte-256gb-m2001j1g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 3.0, + "camera": 35.8, + "battery": 9.5, + "display": 38.6, + "value": null +} diff --git a/site/public/v1/smartphones/mi-10-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001j1e-m2001j1c/index.json b/site/public/v1/smartphones/mi-10-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001j1e-m2001j1c/index.json new file mode 100644 index 00000000000..2a4659cae34 --- /dev/null +++ b/site/public/v1/smartphones/mi-10-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001j1e-m2001j1c/index.json @@ -0,0 +1,77 @@ +{ + "id": 5897, + "slug": "mi-10-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001j1e-m2001j1c", + "name": "Mi 10 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB M2001J1E / M2001J1C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-02-18", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 2250, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.5, + "performance": 6.0, + "camera": 35.8, + "battery": 9.5, + "display": 38.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.947307", + "updated_at": "2026-06-19T00:43:44.947307" +} diff --git a/site/public/v1/smartphones/mi-10-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001j1e-m2001j1c/score/index.json b/site/public/v1/smartphones/mi-10-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001j1e-m2001j1c/score/index.json new file mode 100644 index 00000000000..25d37eeaf76 --- /dev/null +++ b/site/public/v1/smartphones/mi-10-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001j1e-m2001j1c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.5, + "performance": 6.0, + "camera": 35.8, + "battery": 9.5, + "display": 38.6, + "value": null +} diff --git a/site/public/v1/smartphones/mi-10-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2001j1e-m2001j1c/index.json b/site/public/v1/smartphones/mi-10-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2001j1e-m2001j1c/index.json new file mode 100644 index 00000000000..44eac3e5186 --- /dev/null +++ b/site/public/v1/smartphones/mi-10-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2001j1e-m2001j1c/index.json @@ -0,0 +1,77 @@ +{ + "id": 5898, + "slug": "mi-10-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2001j1e-m2001j1c", + "name": "Mi 10 Pro 5G Premium Edition Dual SIM TD-LTE CN 512GB M2001J1E / M2001J1C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-02-18", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 2250, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.5, + "performance": 6.0, + "camera": 35.8, + "battery": 9.5, + "display": 38.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.947307", + "updated_at": "2026-06-19T00:43:44.947307" +} diff --git a/site/public/v1/smartphones/mi-10-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2001j1e-m2001j1c/score/index.json b/site/public/v1/smartphones/mi-10-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2001j1e-m2001j1c/score/index.json new file mode 100644 index 00000000000..25d37eeaf76 --- /dev/null +++ b/site/public/v1/smartphones/mi-10-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2001j1e-m2001j1c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.5, + "performance": 6.0, + "camera": 35.8, + "battery": 9.5, + "display": 38.6, + "value": null +} diff --git a/site/public/v1/smartphones/mi-10-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2001j1e-m2001j1c/index.json b/site/public/v1/smartphones/mi-10-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2001j1e-m2001j1c/index.json new file mode 100644 index 00000000000..3f3a201966f --- /dev/null +++ b/site/public/v1/smartphones/mi-10-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2001j1e-m2001j1c/index.json @@ -0,0 +1,77 @@ +{ + "id": 5899, + "slug": "mi-10-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2001j1e-m2001j1c", + "name": "Mi 10 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB M2001J1E / M2001J1C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-02-18", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 2250, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 3.0, + "camera": 35.8, + "battery": 9.5, + "display": 38.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.947307", + "updated_at": "2026-06-19T00:43:44.947307" +} diff --git a/site/public/v1/smartphones/mi-10-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2001j1e-m2001j1c/score/index.json b/site/public/v1/smartphones/mi-10-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2001j1e-m2001j1c/score/index.json new file mode 100644 index 00000000000..b2c758a7ff1 --- /dev/null +++ b/site/public/v1/smartphones/mi-10-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2001j1e-m2001j1c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 3.0, + "camera": 35.8, + "battery": 9.5, + "display": 38.6, + "value": null +} diff --git a/site/public/v1/smartphones/mi-10-ultra-premium-edition-dual-sim-td-lte-cn-256gb-m2007j1sc/index.json b/site/public/v1/smartphones/mi-10-ultra-premium-edition-dual-sim-td-lte-cn-256gb-m2007j1sc/index.json new file mode 100644 index 00000000000..6dcdc59212a --- /dev/null +++ b/site/public/v1/smartphones/mi-10-ultra-premium-edition-dual-sim-td-lte-cn-256gb-m2007j1sc/index.json @@ -0,0 +1,77 @@ +{ + "id": 5901, + "slug": "mi-10-ultra-premium-edition-dual-sim-td-lte-cn-256gb-m2007j1sc", + "name": "Mi 10 Ultra Premium Edition Dual SIM TD-LTE CN 256GB M2007J1SC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-08-16", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 221.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.0, + "performance": 6.0, + "camera": 16.5, + "battery": 42.5, + "display": 51.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.947307", + "updated_at": "2026-06-19T00:43:44.947307" +} diff --git a/site/public/v1/smartphones/mi-10-ultra-premium-edition-dual-sim-td-lte-cn-256gb-m2007j1sc/score/index.json b/site/public/v1/smartphones/mi-10-ultra-premium-edition-dual-sim-td-lte-cn-256gb-m2007j1sc/score/index.json new file mode 100644 index 00000000000..a9e7583d393 --- /dev/null +++ b/site/public/v1/smartphones/mi-10-ultra-premium-edition-dual-sim-td-lte-cn-256gb-m2007j1sc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.0, + "performance": 6.0, + "camera": 16.5, + "battery": 42.5, + "display": 51.1, + "value": null +} diff --git a/site/public/v1/smartphones/mi-10-ultra-standard-edition-dual-sim-td-lte-cn-128gb-m2007j1sc/index.json b/site/public/v1/smartphones/mi-10-ultra-standard-edition-dual-sim-td-lte-cn-128gb-m2007j1sc/index.json new file mode 100644 index 00000000000..c0a20c1299a --- /dev/null +++ b/site/public/v1/smartphones/mi-10-ultra-standard-edition-dual-sim-td-lte-cn-128gb-m2007j1sc/index.json @@ -0,0 +1,77 @@ +{ + "id": 5903, + "slug": "mi-10-ultra-standard-edition-dual-sim-td-lte-cn-128gb-m2007j1sc", + "name": "Mi 10 Ultra Standard Edition Dual SIM TD-LTE CN 128GB M2007J1SC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-08-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 221.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.3, + "performance": 3.0, + "camera": 16.5, + "battery": 42.5, + "display": 51.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.948306", + "updated_at": "2026-06-19T00:43:44.948306" +} diff --git a/site/public/v1/smartphones/mi-10-ultra-standard-edition-dual-sim-td-lte-cn-128gb-m2007j1sc/score/index.json b/site/public/v1/smartphones/mi-10-ultra-standard-edition-dual-sim-td-lte-cn-128gb-m2007j1sc/score/index.json new file mode 100644 index 00000000000..05e40d898b0 --- /dev/null +++ b/site/public/v1/smartphones/mi-10-ultra-standard-edition-dual-sim-td-lte-cn-128gb-m2007j1sc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.3, + "performance": 3.0, + "camera": 16.5, + "battery": 42.5, + "display": 51.1, + "value": null +} diff --git a/site/public/v1/smartphones/mi-10-ultra-standard-edition-dual-sim-td-lte-cn-256gb-m2007j1sc/index.json b/site/public/v1/smartphones/mi-10-ultra-standard-edition-dual-sim-td-lte-cn-256gb-m2007j1sc/index.json new file mode 100644 index 00000000000..349616b98c7 --- /dev/null +++ b/site/public/v1/smartphones/mi-10-ultra-standard-edition-dual-sim-td-lte-cn-256gb-m2007j1sc/index.json @@ -0,0 +1,77 @@ +{ + "id": 5904, + "slug": "mi-10-ultra-standard-edition-dual-sim-td-lte-cn-256gb-m2007j1sc", + "name": "Mi 10 Ultra Standard Edition Dual SIM TD-LTE CN 256GB M2007J1SC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-08-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 221.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.3, + "performance": 3.0, + "camera": 16.5, + "battery": 42.5, + "display": 51.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.948306", + "updated_at": "2026-06-19T00:43:44.948306" +} diff --git a/site/public/v1/smartphones/mi-10-ultra-standard-edition-dual-sim-td-lte-cn-256gb-m2007j1sc/score/index.json b/site/public/v1/smartphones/mi-10-ultra-standard-edition-dual-sim-td-lte-cn-256gb-m2007j1sc/score/index.json new file mode 100644 index 00000000000..05e40d898b0 --- /dev/null +++ b/site/public/v1/smartphones/mi-10-ultra-standard-edition-dual-sim-td-lte-cn-256gb-m2007j1sc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.3, + "performance": 3.0, + "camera": 16.5, + "battery": 42.5, + "display": 51.1, + "value": null +} diff --git a/site/public/v1/smartphones/mi-10-youth-premium-edition-5g-dual-sim-td-lte-cn-128gb-m2002j9e/index.json b/site/public/v1/smartphones/mi-10-youth-premium-edition-5g-dual-sim-td-lte-cn-128gb-m2002j9e/index.json new file mode 100644 index 00000000000..7e3b8c01dbf --- /dev/null +++ b/site/public/v1/smartphones/mi-10-youth-premium-edition-5g-dual-sim-td-lte-cn-128gb-m2002j9e/index.json @@ -0,0 +1,76 @@ +{ + "id": 5906, + "slug": "mi-10-youth-premium-edition-5g-dual-sim-td-lte-cn-128gb-m2002j9e", + "name": "Mi 10 Youth Premium Edition 5G Dual SIM TD-LTE CN 128GB M2002J9E", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-05-04", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4160, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": 3.0, + "camera": 16.5, + "battery": 18.8, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.948306", + "updated_at": "2026-06-19T00:43:44.948306" +} diff --git a/site/public/v1/smartphones/mi-10-youth-premium-edition-5g-dual-sim-td-lte-cn-128gb-m2002j9e/score/index.json b/site/public/v1/smartphones/mi-10-youth-premium-edition-5g-dual-sim-td-lte-cn-128gb-m2002j9e/score/index.json new file mode 100644 index 00000000000..79b32aefeba --- /dev/null +++ b/site/public/v1/smartphones/mi-10-youth-premium-edition-5g-dual-sim-td-lte-cn-128gb-m2002j9e/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": 3.0, + "camera": 16.5, + "battery": 18.8, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/mi-10-youth-premium-edition-5g-dual-sim-td-lte-cn-256gb-m2002j9e-mi-10-lite/index.json b/site/public/v1/smartphones/mi-10-youth-premium-edition-5g-dual-sim-td-lte-cn-256gb-m2002j9e-mi-10-lite/index.json new file mode 100644 index 00000000000..f372426058f --- /dev/null +++ b/site/public/v1/smartphones/mi-10-youth-premium-edition-5g-dual-sim-td-lte-cn-256gb-m2002j9e-mi-10-lite/index.json @@ -0,0 +1,76 @@ +{ + "id": 5907, + "slug": "mi-10-youth-premium-edition-5g-dual-sim-td-lte-cn-256gb-m2002j9e-mi-10-lite", + "name": "Mi 10 Youth Premium Edition 5G Dual SIM TD-LTE CN 256GB M2002J9E / Mi 10 Lite", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-05-04", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4160, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": 3.0, + "camera": 16.5, + "battery": 18.8, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.948306", + "updated_at": "2026-06-19T00:43:44.948306" +} diff --git a/site/public/v1/smartphones/mi-10-youth-premium-edition-5g-dual-sim-td-lte-cn-256gb-m2002j9e-mi-10-lite/score/index.json b/site/public/v1/smartphones/mi-10-youth-premium-edition-5g-dual-sim-td-lte-cn-256gb-m2002j9e-mi-10-lite/score/index.json new file mode 100644 index 00000000000..79b32aefeba --- /dev/null +++ b/site/public/v1/smartphones/mi-10-youth-premium-edition-5g-dual-sim-td-lte-cn-256gb-m2002j9e-mi-10-lite/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": 3.0, + "camera": 16.5, + "battery": 18.8, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/mi-10-youth-standard-edition-5g-dual-sim-td-lte-cn-128gb-m2002j9e/index.json b/site/public/v1/smartphones/mi-10-youth-standard-edition-5g-dual-sim-td-lte-cn-128gb-m2002j9e/index.json new file mode 100644 index 00000000000..bd39571efb8 --- /dev/null +++ b/site/public/v1/smartphones/mi-10-youth-standard-edition-5g-dual-sim-td-lte-cn-128gb-m2002j9e/index.json @@ -0,0 +1,76 @@ +{ + "id": 5909, + "slug": "mi-10-youth-standard-edition-5g-dual-sim-td-lte-cn-128gb-m2002j9e", + "name": "Mi 10 Youth Standard Edition 5G Dual SIM TD-LTE CN 128GB M2002J9E", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-05-04", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4160, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 1.5, + "camera": 16.5, + "battery": 18.8, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.948306", + "updated_at": "2026-06-19T00:43:44.948306" +} diff --git a/site/public/v1/smartphones/mi-10-youth-standard-edition-5g-dual-sim-td-lte-cn-128gb-m2002j9e/score/index.json b/site/public/v1/smartphones/mi-10-youth-standard-edition-5g-dual-sim-td-lte-cn-128gb-m2002j9e/score/index.json new file mode 100644 index 00000000000..29681e8c118 --- /dev/null +++ b/site/public/v1/smartphones/mi-10-youth-standard-edition-5g-dual-sim-td-lte-cn-128gb-m2002j9e/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 1.5, + "camera": 16.5, + "battery": 18.8, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/mi-10-youth-standard-edition-5g-dual-sim-td-lte-cn-64gb-m2002j9e/index.json b/site/public/v1/smartphones/mi-10-youth-standard-edition-5g-dual-sim-td-lte-cn-64gb-m2002j9e/index.json new file mode 100644 index 00000000000..1bb2f210656 --- /dev/null +++ b/site/public/v1/smartphones/mi-10-youth-standard-edition-5g-dual-sim-td-lte-cn-64gb-m2002j9e/index.json @@ -0,0 +1,76 @@ +{ + "id": 5910, + "slug": "mi-10-youth-standard-edition-5g-dual-sim-td-lte-cn-64gb-m2002j9e", + "name": "Mi 10 Youth Standard Edition 5G Dual SIM TD-LTE CN 64GB M2002J9E", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-05-04", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4160, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 1.5, + "camera": 16.5, + "battery": 18.8, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.948306", + "updated_at": "2026-06-19T00:43:44.948306" +} diff --git a/site/public/v1/smartphones/mi-10-youth-standard-edition-5g-dual-sim-td-lte-cn-64gb-m2002j9e/score/index.json b/site/public/v1/smartphones/mi-10-youth-standard-edition-5g-dual-sim-td-lte-cn-64gb-m2002j9e/score/index.json new file mode 100644 index 00000000000..29681e8c118 --- /dev/null +++ b/site/public/v1/smartphones/mi-10-youth-standard-edition-5g-dual-sim-td-lte-cn-64gb-m2002j9e/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 1.5, + "camera": 16.5, + "battery": 18.8, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/mi-10s-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102j2sc/index.json b/site/public/v1/smartphones/mi-10s-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102j2sc/index.json new file mode 100644 index 00000000000..285ab54b0cb --- /dev/null +++ b/site/public/v1/smartphones/mi-10s-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102j2sc/index.json @@ -0,0 +1,77 @@ +{ + "id": 6058, + "slug": "mi-10s-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102j2sc", + "name": "Mi 10S 5G Premium Edition Dual SIM TD-LTE CN 256GB M2102J2SC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-03-11", + "msrp_usd": 3799, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4780, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.4, + "performance": 9.1, + "camera": 35.8, + "battery": 30.1, + "display": 38.6, + "value": 14.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.966311", + "updated_at": "2026-06-19T00:43:44.966311" +} diff --git a/site/public/v1/smartphones/mi-10s-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102j2sc/score/index.json b/site/public/v1/smartphones/mi-10s-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102j2sc/score/index.json new file mode 100644 index 00000000000..531710767eb --- /dev/null +++ b/site/public/v1/smartphones/mi-10s-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102j2sc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.4, + "performance": 9.1, + "camera": 35.8, + "battery": 30.1, + "display": 38.6, + "value": 14.2 +} diff --git a/site/public/v1/smartphones/mi-10s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2102j2sc/index.json b/site/public/v1/smartphones/mi-10s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2102j2sc/index.json new file mode 100644 index 00000000000..d5c087bf6ee --- /dev/null +++ b/site/public/v1/smartphones/mi-10s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2102j2sc/index.json @@ -0,0 +1,77 @@ +{ + "id": 6059, + "slug": "mi-10s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2102j2sc", + "name": "Mi 10S 5G Standard Edition Dual SIM TD-LTE CN 128GB M2102J2SC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-03-11", + "msrp_usd": 3299, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4780, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 6.1, + "camera": 35.8, + "battery": 30.1, + "display": 38.6, + "value": 13.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.966311", + "updated_at": "2026-06-19T00:43:44.966311" +} diff --git a/site/public/v1/smartphones/mi-10s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2102j2sc/score/index.json b/site/public/v1/smartphones/mi-10s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2102j2sc/score/index.json new file mode 100644 index 00000000000..300b42c5cba --- /dev/null +++ b/site/public/v1/smartphones/mi-10s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2102j2sc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 6.1, + "camera": 35.8, + "battery": 30.1, + "display": 38.6, + "value": 13.8 +} diff --git a/site/public/v1/smartphones/mi-10s-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102j2sc/index.json b/site/public/v1/smartphones/mi-10s-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102j2sc/index.json new file mode 100644 index 00000000000..5b174c28ef9 --- /dev/null +++ b/site/public/v1/smartphones/mi-10s-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102j2sc/index.json @@ -0,0 +1,77 @@ +{ + "id": 6060, + "slug": "mi-10s-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102j2sc", + "name": "Mi 10S 5G Standard Edition Dual SIM TD-LTE CN 256GB M2102J2SC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-03-11", + "msrp_usd": 3499, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4780, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 6.1, + "camera": 35.8, + "battery": 30.1, + "display": 38.6, + "value": 13.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.966311", + "updated_at": "2026-06-19T00:43:44.966311" +} diff --git a/site/public/v1/smartphones/mi-10s-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102j2sc/score/index.json b/site/public/v1/smartphones/mi-10s-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102j2sc/score/index.json new file mode 100644 index 00000000000..300b42c5cba --- /dev/null +++ b/site/public/v1/smartphones/mi-10s-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102j2sc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 6.1, + "camera": 35.8, + "battery": 30.1, + "display": 38.6, + "value": 13.8 +} diff --git a/site/public/v1/smartphones/mi-10t-5g-premium-edition-dual-sim-td-lte-in-128gb-m2007j3sp/index.json b/site/public/v1/smartphones/mi-10t-5g-premium-edition-dual-sim-td-lte-in-128gb-m2007j3sp/index.json new file mode 100644 index 00000000000..501e58006cc --- /dev/null +++ b/site/public/v1/smartphones/mi-10t-5g-premium-edition-dual-sim-td-lte-in-128gb-m2007j3sp/index.json @@ -0,0 +1,77 @@ +{ + "id": 5913, + "slug": "mi-10t-5g-premium-edition-dual-sim-td-lte-in-128gb-m2007j3sp", + "name": "Mi 10T 5G Premium Edition Dual SIM TD-LTE IN 128GB M2007J3SP", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 216.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.0, + "performance": 3.0, + "camera": 21.5, + "battery": 33.4, + "display": 62.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.949306", + "updated_at": "2026-06-19T00:43:44.949306" +} diff --git a/site/public/v1/smartphones/mi-10t-5g-premium-edition-dual-sim-td-lte-in-128gb-m2007j3sp/score/index.json b/site/public/v1/smartphones/mi-10t-5g-premium-edition-dual-sim-td-lte-in-128gb-m2007j3sp/score/index.json new file mode 100644 index 00000000000..44e7d301def --- /dev/null +++ b/site/public/v1/smartphones/mi-10t-5g-premium-edition-dual-sim-td-lte-in-128gb-m2007j3sp/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.0, + "performance": 3.0, + "camera": 21.5, + "battery": 33.4, + "display": 62.0, + "value": null +} diff --git a/site/public/v1/smartphones/mi-10t-5g-premium-edition-global-dual-sim-td-lte-128gb-m2007j3sy/index.json b/site/public/v1/smartphones/mi-10t-5g-premium-edition-global-dual-sim-td-lte-128gb-m2007j3sy/index.json new file mode 100644 index 00000000000..8692c68dc21 --- /dev/null +++ b/site/public/v1/smartphones/mi-10t-5g-premium-edition-global-dual-sim-td-lte-128gb-m2007j3sy/index.json @@ -0,0 +1,77 @@ +{ + "id": 5914, + "slug": "mi-10t-5g-premium-edition-global-dual-sim-td-lte-128gb-m2007j3sy", + "name": "Mi 10T 5G Premium Edition Global Dual SIM TD-LTE 128GB M2007J3SY", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-10-01", + "msrp_usd": 549, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 216.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.0, + "performance": 3.0, + "camera": 21.5, + "battery": 33.4, + "display": 62.0, + "value": 55.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.949306", + "updated_at": "2026-06-19T00:43:44.949306" +} diff --git a/site/public/v1/smartphones/mi-10t-5g-premium-edition-global-dual-sim-td-lte-128gb-m2007j3sy/score/index.json b/site/public/v1/smartphones/mi-10t-5g-premium-edition-global-dual-sim-td-lte-128gb-m2007j3sy/score/index.json new file mode 100644 index 00000000000..290e3dbaa80 --- /dev/null +++ b/site/public/v1/smartphones/mi-10t-5g-premium-edition-global-dual-sim-td-lte-128gb-m2007j3sy/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.0, + "performance": 3.0, + "camera": 21.5, + "battery": 33.4, + "display": 62.0, + "value": 55.4 +} diff --git a/site/public/v1/smartphones/mi-10t-5g-standard-edition-dual-sim-td-lte-in-128gb-m2007j3sp/index.json b/site/public/v1/smartphones/mi-10t-5g-standard-edition-dual-sim-td-lte-in-128gb-m2007j3sp/index.json new file mode 100644 index 00000000000..67587fcf77f --- /dev/null +++ b/site/public/v1/smartphones/mi-10t-5g-standard-edition-dual-sim-td-lte-in-128gb-m2007j3sp/index.json @@ -0,0 +1,77 @@ +{ + "id": 5915, + "slug": "mi-10t-5g-standard-edition-dual-sim-td-lte-in-128gb-m2007j3sp", + "name": "Mi 10T 5G Standard Edition Dual SIM TD-LTE IN 128GB M2007J3SP", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 216.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.6, + "performance": 1.5, + "camera": 21.5, + "battery": 33.4, + "display": 62.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.949306", + "updated_at": "2026-06-19T00:43:44.949306" +} diff --git a/site/public/v1/smartphones/mi-10t-5g-standard-edition-dual-sim-td-lte-in-128gb-m2007j3sp/score/index.json b/site/public/v1/smartphones/mi-10t-5g-standard-edition-dual-sim-td-lte-in-128gb-m2007j3sp/score/index.json new file mode 100644 index 00000000000..d143e341aee --- /dev/null +++ b/site/public/v1/smartphones/mi-10t-5g-standard-edition-dual-sim-td-lte-in-128gb-m2007j3sp/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.6, + "performance": 1.5, + "camera": 21.5, + "battery": 33.4, + "display": 62.0, + "value": null +} diff --git a/site/public/v1/smartphones/mi-10t-5g-standard-edition-global-dual-sim-td-lte-128gb-m2007j3sy/index.json b/site/public/v1/smartphones/mi-10t-5g-standard-edition-global-dual-sim-td-lte-128gb-m2007j3sy/index.json new file mode 100644 index 00000000000..65834446486 --- /dev/null +++ b/site/public/v1/smartphones/mi-10t-5g-standard-edition-global-dual-sim-td-lte-128gb-m2007j3sy/index.json @@ -0,0 +1,77 @@ +{ + "id": 5916, + "slug": "mi-10t-5g-standard-edition-global-dual-sim-td-lte-128gb-m2007j3sy", + "name": "Mi 10T 5G Standard Edition Global Dual SIM TD-LTE 128GB M2007J3SY", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-10-01", + "msrp_usd": 499, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 216.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.6, + "performance": 1.5, + "camera": 21.5, + "battery": 33.4, + "display": 62.0, + "value": 57.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.949306", + "updated_at": "2026-06-19T00:43:44.949306" +} diff --git a/site/public/v1/smartphones/mi-10t-5g-standard-edition-global-dual-sim-td-lte-128gb-m2007j3sy/score/index.json b/site/public/v1/smartphones/mi-10t-5g-standard-edition-global-dual-sim-td-lte-128gb-m2007j3sy/score/index.json new file mode 100644 index 00000000000..0d0c043a271 --- /dev/null +++ b/site/public/v1/smartphones/mi-10t-5g-standard-edition-global-dual-sim-td-lte-128gb-m2007j3sy/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.6, + "performance": 1.5, + "camera": 21.5, + "battery": 33.4, + "display": 62.0, + "value": 57.2 +} diff --git a/site/public/v1/smartphones/mi-10t-pro-5g-dual-sim-td-lte-in-128gb-m2007j3si/index.json b/site/public/v1/smartphones/mi-10t-pro-5g-dual-sim-td-lte-in-128gb-m2007j3si/index.json new file mode 100644 index 00000000000..8e5be8869bc --- /dev/null +++ b/site/public/v1/smartphones/mi-10t-pro-5g-dual-sim-td-lte-in-128gb-m2007j3si/index.json @@ -0,0 +1,77 @@ +{ + "id": 5918, + "slug": "mi-10t-pro-5g-dual-sim-td-lte-in-128gb-m2007j3si", + "name": "Mi 10T Pro 5G Dual SIM TD-LTE IN 128GB M2007J3SI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 218.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.5, + "performance": 3.0, + "camera": 35.8, + "battery": 33.4, + "display": 62.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.949306", + "updated_at": "2026-06-19T00:43:44.949306" +} diff --git a/site/public/v1/smartphones/mi-10t-pro-5g-dual-sim-td-lte-in-128gb-m2007j3si/score/index.json b/site/public/v1/smartphones/mi-10t-pro-5g-dual-sim-td-lte-in-128gb-m2007j3si/score/index.json new file mode 100644 index 00000000000..52c7713ef9c --- /dev/null +++ b/site/public/v1/smartphones/mi-10t-pro-5g-dual-sim-td-lte-in-128gb-m2007j3si/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.5, + "performance": 3.0, + "camera": 35.8, + "battery": 33.4, + "display": 62.0, + "value": null +} diff --git a/site/public/v1/smartphones/mi-10t-pro-5g-global-dual-sim-td-lte-128gb-m2007j3sg/index.json b/site/public/v1/smartphones/mi-10t-pro-5g-global-dual-sim-td-lte-128gb-m2007j3sg/index.json new file mode 100644 index 00000000000..9b4d543b59b --- /dev/null +++ b/site/public/v1/smartphones/mi-10t-pro-5g-global-dual-sim-td-lte-128gb-m2007j3sg/index.json @@ -0,0 +1,77 @@ +{ + "id": 5919, + "slug": "mi-10t-pro-5g-global-dual-sim-td-lte-128gb-m2007j3sg", + "name": "Mi 10T Pro 5G Global Dual SIM TD-LTE 128GB M2007J3SG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-10-01", + "msrp_usd": 599, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 218.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.5, + "performance": 3.0, + "camera": 35.8, + "battery": 33.4, + "display": 62.0, + "value": 55.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.949306", + "updated_at": "2026-06-19T00:43:44.949306" +} diff --git a/site/public/v1/smartphones/mi-10t-pro-5g-global-dual-sim-td-lte-128gb-m2007j3sg/score/index.json b/site/public/v1/smartphones/mi-10t-pro-5g-global-dual-sim-td-lte-128gb-m2007j3sg/score/index.json new file mode 100644 index 00000000000..8c488e6a521 --- /dev/null +++ b/site/public/v1/smartphones/mi-10t-pro-5g-global-dual-sim-td-lte-128gb-m2007j3sg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.5, + "performance": 3.0, + "camera": 35.8, + "battery": 33.4, + "display": 62.0, + "value": 55.2 +} diff --git a/site/public/v1/smartphones/mi-10t-pro-5g-global-dual-sim-td-lte-256gb-m2007j3sg/index.json b/site/public/v1/smartphones/mi-10t-pro-5g-global-dual-sim-td-lte-256gb-m2007j3sg/index.json new file mode 100644 index 00000000000..103e8f5f0df --- /dev/null +++ b/site/public/v1/smartphones/mi-10t-pro-5g-global-dual-sim-td-lte-256gb-m2007j3sg/index.json @@ -0,0 +1,77 @@ +{ + "id": 5920, + "slug": "mi-10t-pro-5g-global-dual-sim-td-lte-256gb-m2007j3sg", + "name": "Mi 10T Pro 5G Global Dual SIM TD-LTE 256GB M2007J3SG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-10-01", + "msrp_usd": 649, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 218.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.5, + "performance": 3.0, + "camera": 35.8, + "battery": 33.4, + "display": 62.0, + "value": 53.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.950307", + "updated_at": "2026-06-19T00:43:44.950307" +} diff --git a/site/public/v1/smartphones/mi-10t-pro-5g-global-dual-sim-td-lte-256gb-m2007j3sg/score/index.json b/site/public/v1/smartphones/mi-10t-pro-5g-global-dual-sim-td-lte-256gb-m2007j3sg/score/index.json new file mode 100644 index 00000000000..467957adf2a --- /dev/null +++ b/site/public/v1/smartphones/mi-10t-pro-5g-global-dual-sim-td-lte-256gb-m2007j3sg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.5, + "performance": 3.0, + "camera": 35.8, + "battery": 33.4, + "display": 62.0, + "value": 53.4 +} diff --git a/site/public/v1/smartphones/mi-11-5g-global-dual-sim-td-lte-128gb-m2011k2g/index.json b/site/public/v1/smartphones/mi-11-5g-global-dual-sim-td-lte-128gb-m2011k2g/index.json new file mode 100644 index 00000000000..40190fa7571 --- /dev/null +++ b/site/public/v1/smartphones/mi-11-5g-global-dual-sim-td-lte-128gb-m2011k2g/index.json @@ -0,0 +1,77 @@ +{ + "id": 6062, + "slug": "mi-11-5g-global-dual-sim-td-lte-128gb-m2011k2g", + "name": "Mi 11 5G Global Dual SIM TD-LTE 128GB M2011K2G", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4600, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.0, + "performance": 6.4, + "camera": 35.8, + "battery": 41.6, + "display": 64.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.966311", + "updated_at": "2026-06-19T00:43:44.966311" +} diff --git a/site/public/v1/smartphones/mi-11-5g-global-dual-sim-td-lte-128gb-m2011k2g/score/index.json b/site/public/v1/smartphones/mi-11-5g-global-dual-sim-td-lte-128gb-m2011k2g/score/index.json new file mode 100644 index 00000000000..bc47c9691b6 --- /dev/null +++ b/site/public/v1/smartphones/mi-11-5g-global-dual-sim-td-lte-128gb-m2011k2g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.0, + "performance": 6.4, + "camera": 35.8, + "battery": 41.6, + "display": 64.0, + "value": null +} diff --git a/site/public/v1/smartphones/mi-11-5g-global-dual-sim-td-lte-256gb-m2011k2g/index.json b/site/public/v1/smartphones/mi-11-5g-global-dual-sim-td-lte-256gb-m2011k2g/index.json new file mode 100644 index 00000000000..9b4abb88b28 --- /dev/null +++ b/site/public/v1/smartphones/mi-11-5g-global-dual-sim-td-lte-256gb-m2011k2g/index.json @@ -0,0 +1,77 @@ +{ + "id": 6063, + "slug": "mi-11-5g-global-dual-sim-td-lte-256gb-m2011k2g", + "name": "Mi 11 5G Global Dual SIM TD-LTE 256GB M2011K2G", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-01", + "msrp_usd": 899, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4600, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.0, + "performance": 6.4, + "camera": 35.8, + "battery": 41.6, + "display": 64.0, + "value": 45.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.966311", + "updated_at": "2026-06-19T00:43:44.966311" +} diff --git a/site/public/v1/smartphones/mi-11-5g-global-dual-sim-td-lte-256gb-m2011k2g/score/index.json b/site/public/v1/smartphones/mi-11-5g-global-dual-sim-td-lte-256gb-m2011k2g/score/index.json new file mode 100644 index 00000000000..8d873a75225 --- /dev/null +++ b/site/public/v1/smartphones/mi-11-5g-global-dual-sim-td-lte-256gb-m2011k2g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.0, + "performance": 6.4, + "camera": 35.8, + "battery": 41.6, + "display": 64.0, + "value": 45.5 +} diff --git a/site/public/v1/smartphones/mi-11-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2011k2c/index.json b/site/public/v1/smartphones/mi-11-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2011k2c/index.json new file mode 100644 index 00000000000..4a05fae7dfa --- /dev/null +++ b/site/public/v1/smartphones/mi-11-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2011k2c/index.json @@ -0,0 +1,77 @@ +{ + "id": 6064, + "slug": "mi-11-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2011k2c", + "name": "Mi 11 5G Premium Edition Dual SIM TD-LTE CN 256GB M2011K2C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-02", + "msrp_usd": 4699, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4600, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.7, + "performance": 9.4, + "camera": 35.8, + "battery": 41.6, + "display": 64.0, + "value": 18.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.966311", + "updated_at": "2026-06-19T00:43:44.966311" +} diff --git a/site/public/v1/smartphones/mi-11-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2011k2c/score/index.json b/site/public/v1/smartphones/mi-11-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2011k2c/score/index.json new file mode 100644 index 00000000000..ca9975cab1b --- /dev/null +++ b/site/public/v1/smartphones/mi-11-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2011k2c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.7, + "performance": 9.4, + "camera": 35.8, + "battery": 41.6, + "display": 64.0, + "value": 18.9 +} diff --git a/site/public/v1/smartphones/mi-11-5g-special-edition-dual-sim-td-lte-cn-256gb-m2011k2c/index.json b/site/public/v1/smartphones/mi-11-5g-special-edition-dual-sim-td-lte-cn-256gb-m2011k2c/index.json new file mode 100644 index 00000000000..848b9327b59 --- /dev/null +++ b/site/public/v1/smartphones/mi-11-5g-special-edition-dual-sim-td-lte-cn-256gb-m2011k2c/index.json @@ -0,0 +1,77 @@ +{ + "id": 6065, + "slug": "mi-11-5g-special-edition-dual-sim-td-lte-cn-256gb-m2011k2c", + "name": "Mi 11 5G Special Edition Dual SIM TD-LTE CN 256GB M2011K2C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-02", + "msrp_usd": 4699, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4600, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.7, + "performance": 9.4, + "camera": 35.8, + "battery": 41.6, + "display": 64.0, + "value": 18.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.966311", + "updated_at": "2026-06-19T00:43:44.966311" +} diff --git a/site/public/v1/smartphones/mi-11-5g-special-edition-dual-sim-td-lte-cn-256gb-m2011k2c/score/index.json b/site/public/v1/smartphones/mi-11-5g-special-edition-dual-sim-td-lte-cn-256gb-m2011k2c/score/index.json new file mode 100644 index 00000000000..ca9975cab1b --- /dev/null +++ b/site/public/v1/smartphones/mi-11-5g-special-edition-dual-sim-td-lte-cn-256gb-m2011k2c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.7, + "performance": 9.4, + "camera": 35.8, + "battery": 41.6, + "display": 64.0, + "value": 18.9 +} diff --git a/site/public/v1/smartphones/mi-11-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2011k2c/index.json b/site/public/v1/smartphones/mi-11-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2011k2c/index.json new file mode 100644 index 00000000000..43a6c004516 --- /dev/null +++ b/site/public/v1/smartphones/mi-11-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2011k2c/index.json @@ -0,0 +1,77 @@ +{ + "id": 6066, + "slug": "mi-11-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2011k2c", + "name": "Mi 11 5G Standard Edition Dual SIM TD-LTE CN 128GB M2011K2C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-02", + "msrp_usd": 3999, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4600, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.0, + "performance": 6.4, + "camera": 35.8, + "battery": 41.6, + "display": 64.0, + "value": 18.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.967311", + "updated_at": "2026-06-19T00:43:44.967311" +} diff --git a/site/public/v1/smartphones/mi-11-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2011k2c/score/index.json b/site/public/v1/smartphones/mi-11-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2011k2c/score/index.json new file mode 100644 index 00000000000..4282e80f556 --- /dev/null +++ b/site/public/v1/smartphones/mi-11-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2011k2c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.0, + "performance": 6.4, + "camera": 35.8, + "battery": 41.6, + "display": 64.0, + "value": 18.5 +} diff --git a/site/public/v1/smartphones/mi-11-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2011k2c/index.json b/site/public/v1/smartphones/mi-11-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2011k2c/index.json new file mode 100644 index 00000000000..2e97485d882 --- /dev/null +++ b/site/public/v1/smartphones/mi-11-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2011k2c/index.json @@ -0,0 +1,77 @@ +{ + "id": 6067, + "slug": "mi-11-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2011k2c", + "name": "Mi 11 5G Standard Edition Dual SIM TD-LTE CN 256GB M2011K2C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-02", + "msrp_usd": 4299, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4600, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.0, + "performance": 6.4, + "camera": 35.8, + "battery": 41.6, + "display": 64.0, + "value": 18.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.967311", + "updated_at": "2026-06-19T00:43:44.967311" +} diff --git a/site/public/v1/smartphones/mi-11-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2011k2c/score/index.json b/site/public/v1/smartphones/mi-11-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2011k2c/score/index.json new file mode 100644 index 00000000000..4282e80f556 --- /dev/null +++ b/site/public/v1/smartphones/mi-11-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2011k2c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.0, + "performance": 6.4, + "camera": 35.8, + "battery": 41.6, + "display": 64.0, + "value": 18.5 +} diff --git a/site/public/v1/smartphones/mi-11-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102k1ac/index.json b/site/public/v1/smartphones/mi-11-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102k1ac/index.json new file mode 100644 index 00000000000..62c26c5178d --- /dev/null +++ b/site/public/v1/smartphones/mi-11-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102k1ac/index.json @@ -0,0 +1,77 @@ +{ + "id": 6070, + "slug": "mi-11-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102k1ac", + "name": "Mi 11 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB M2102K1AC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-02", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 67.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 35.1, + "performance": 9.4, + "camera": 17.2, + "battery": 49.9, + "display": 64.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.967311", + "updated_at": "2026-06-19T00:43:44.967311" +} diff --git a/site/public/v1/smartphones/mi-11-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102k1ac/score/index.json b/site/public/v1/smartphones/mi-11-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102k1ac/score/index.json new file mode 100644 index 00000000000..55ee6e6bdf6 --- /dev/null +++ b/site/public/v1/smartphones/mi-11-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102k1ac/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 35.1, + "performance": 9.4, + "camera": 17.2, + "battery": 49.9, + "display": 64.0, + "value": null +} diff --git a/site/public/v1/smartphones/mi-11-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2102k1ac/index.json b/site/public/v1/smartphones/mi-11-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2102k1ac/index.json new file mode 100644 index 00000000000..0ba9b5cb64d --- /dev/null +++ b/site/public/v1/smartphones/mi-11-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2102k1ac/index.json @@ -0,0 +1,77 @@ +{ + "id": 6071, + "slug": "mi-11-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2102k1ac", + "name": "Mi 11 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB M2102K1AC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-02", + "msrp_usd": 4999, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 67.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 34.4, + "performance": 6.4, + "camera": 17.2, + "battery": 49.9, + "display": 64.0, + "value": 17.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.967311", + "updated_at": "2026-06-19T00:43:44.967311" +} diff --git a/site/public/v1/smartphones/mi-11-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2102k1ac/score/index.json b/site/public/v1/smartphones/mi-11-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2102k1ac/score/index.json new file mode 100644 index 00000000000..b0117ce4688 --- /dev/null +++ b/site/public/v1/smartphones/mi-11-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2102k1ac/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 34.4, + "performance": 6.4, + "camera": 17.2, + "battery": 49.9, + "display": 64.0, + "value": 17.2 +} diff --git a/site/public/v1/smartphones/mi-11-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102k1ac/index.json b/site/public/v1/smartphones/mi-11-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102k1ac/index.json new file mode 100644 index 00000000000..bebc5fe4bec --- /dev/null +++ b/site/public/v1/smartphones/mi-11-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102k1ac/index.json @@ -0,0 +1,77 @@ +{ + "id": 6072, + "slug": "mi-11-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102k1ac", + "name": "Mi 11 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB M2102K1AC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-02", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 67.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 34.4, + "performance": 6.4, + "camera": 17.2, + "battery": 49.9, + "display": 64.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.967311", + "updated_at": "2026-06-19T00:43:44.967311" +} diff --git a/site/public/v1/smartphones/mi-11-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102k1ac/score/index.json b/site/public/v1/smartphones/mi-11-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102k1ac/score/index.json new file mode 100644 index 00000000000..ffa48d4c586 --- /dev/null +++ b/site/public/v1/smartphones/mi-11-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102k1ac/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 34.4, + "performance": 6.4, + "camera": 17.2, + "battery": 49.9, + "display": 64.0, + "value": null +} diff --git a/site/public/v1/smartphones/mi-11-ultra-5g-global-dual-sim-td-lte-256gb-m2102k1g/index.json b/site/public/v1/smartphones/mi-11-ultra-5g-global-dual-sim-td-lte-256gb-m2102k1g/index.json new file mode 100644 index 00000000000..b3972eab44f --- /dev/null +++ b/site/public/v1/smartphones/mi-11-ultra-5g-global-dual-sim-td-lte-256gb-m2102k1g/index.json @@ -0,0 +1,77 @@ +{ + "id": 6074, + "slug": "mi-11-ultra-5g-global-dual-sim-td-lte-256gb-m2102k1g", + "name": "Mi 11 Ultra 5G Global Dual SIM TD-LTE 256GB M2102K1G", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-01", + "msrp_usd": 1199, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 67.0, + "charging_wireless_w": null, + "weight_g": 234.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 35.1, + "performance": 9.4, + "camera": 17.2, + "battery": 49.9, + "display": 64.0, + "value": 33.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.967311", + "updated_at": "2026-06-19T00:43:44.967311" +} diff --git a/site/public/v1/smartphones/mi-11-ultra-5g-global-dual-sim-td-lte-256gb-m2102k1g/score/index.json b/site/public/v1/smartphones/mi-11-ultra-5g-global-dual-sim-td-lte-256gb-m2102k1g/score/index.json new file mode 100644 index 00000000000..fc0f9260813 --- /dev/null +++ b/site/public/v1/smartphones/mi-11-ultra-5g-global-dual-sim-td-lte-256gb-m2102k1g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 35.1, + "performance": 9.4, + "camera": 17.2, + "battery": 49.9, + "display": 64.0, + "value": 33.0 +} diff --git a/site/public/v1/smartphones/mi-11-ultra-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102k1c/index.json b/site/public/v1/smartphones/mi-11-ultra-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102k1c/index.json new file mode 100644 index 00000000000..3f186e58f1a --- /dev/null +++ b/site/public/v1/smartphones/mi-11-ultra-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102k1c/index.json @@ -0,0 +1,77 @@ +{ + "id": 6075, + "slug": "mi-11-ultra-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102k1c", + "name": "Mi 11 Ultra 5G Premium Edition Dual SIM TD-LTE CN 256GB M2102K1C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-02", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 67.0, + "charging_wireless_w": null, + "weight_g": 234.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 35.1, + "performance": 9.4, + "camera": 17.2, + "battery": 49.9, + "display": 64.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.968311", + "updated_at": "2026-06-19T00:43:44.968311" +} diff --git a/site/public/v1/smartphones/mi-11-ultra-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102k1c/score/index.json b/site/public/v1/smartphones/mi-11-ultra-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102k1c/score/index.json new file mode 100644 index 00000000000..55ee6e6bdf6 --- /dev/null +++ b/site/public/v1/smartphones/mi-11-ultra-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2102k1c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 35.1, + "performance": 9.4, + "camera": 17.2, + "battery": 49.9, + "display": 64.0, + "value": null +} diff --git a/site/public/v1/smartphones/mi-11-ultra-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2102k1c/index.json b/site/public/v1/smartphones/mi-11-ultra-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2102k1c/index.json new file mode 100644 index 00000000000..5e37e2c79a1 --- /dev/null +++ b/site/public/v1/smartphones/mi-11-ultra-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2102k1c/index.json @@ -0,0 +1,77 @@ +{ + "id": 6076, + "slug": "mi-11-ultra-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2102k1c", + "name": "Mi 11 Ultra 5G Premium Edition Dual SIM TD-LTE CN 512GB M2102K1C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-12", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 67.0, + "charging_wireless_w": null, + "weight_g": 234.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 35.1, + "performance": 9.4, + "camera": 17.2, + "battery": 49.9, + "display": 64.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.968311", + "updated_at": "2026-06-19T00:43:44.968311" +} diff --git a/site/public/v1/smartphones/mi-11-ultra-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2102k1c/score/index.json b/site/public/v1/smartphones/mi-11-ultra-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2102k1c/score/index.json new file mode 100644 index 00000000000..55ee6e6bdf6 --- /dev/null +++ b/site/public/v1/smartphones/mi-11-ultra-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2102k1c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 35.1, + "performance": 9.4, + "camera": 17.2, + "battery": 49.9, + "display": 64.0, + "value": null +} diff --git a/site/public/v1/smartphones/mi-11-ultra-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102k1c/index.json b/site/public/v1/smartphones/mi-11-ultra-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102k1c/index.json new file mode 100644 index 00000000000..30652df0402 --- /dev/null +++ b/site/public/v1/smartphones/mi-11-ultra-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102k1c/index.json @@ -0,0 +1,77 @@ +{ + "id": 6077, + "slug": "mi-11-ultra-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102k1c", + "name": "Mi 11 Ultra 5G Standard Edition Dual SIM TD-LTE CN 256GB M2102K1C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-02", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 67.0, + "charging_wireless_w": null, + "weight_g": 234.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 34.4, + "performance": 6.4, + "camera": 17.2, + "battery": 49.9, + "display": 64.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.968311", + "updated_at": "2026-06-19T00:43:44.968311" +} diff --git a/site/public/v1/smartphones/mi-11-ultra-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102k1c/score/index.json b/site/public/v1/smartphones/mi-11-ultra-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102k1c/score/index.json new file mode 100644 index 00000000000..ffa48d4c586 --- /dev/null +++ b/site/public/v1/smartphones/mi-11-ultra-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2102k1c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 34.4, + "performance": 6.4, + "camera": 17.2, + "battery": 49.9, + "display": 64.0, + "value": null +} diff --git a/site/public/v1/smartphones/mi-11i-5g-global-dual-sim-td-lte-128gb-m2012k11g/index.json b/site/public/v1/smartphones/mi-11i-5g-global-dual-sim-td-lte-128gb-m2012k11g/index.json new file mode 100644 index 00000000000..eb40256da54 --- /dev/null +++ b/site/public/v1/smartphones/mi-11i-5g-global-dual-sim-td-lte-128gb-m2012k11g/index.json @@ -0,0 +1,77 @@ +{ + "id": 6082, + "slug": "mi-11i-5g-global-dual-sim-td-lte-128gb-m2012k11g", + "name": "Mi 11i 5G Global Dual SIM TD-LTE 128GB M2012K11G", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-05-01", + "msrp_usd": 649, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4520, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 6.4, + "camera": 35.7, + "battery": 36.2, + "display": 52.0, + "value": 52.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.968311", + "updated_at": "2026-06-19T00:43:44.968311" +} diff --git a/site/public/v1/smartphones/mi-11i-5g-global-dual-sim-td-lte-128gb-m2012k11g/score/index.json b/site/public/v1/smartphones/mi-11i-5g-global-dual-sim-td-lte-128gb-m2012k11g/score/index.json new file mode 100644 index 00000000000..99d58982272 --- /dev/null +++ b/site/public/v1/smartphones/mi-11i-5g-global-dual-sim-td-lte-128gb-m2012k11g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 6.4, + "camera": 35.7, + "battery": 36.2, + "display": 52.0, + "value": 52.9 +} diff --git a/site/public/v1/smartphones/mi-11i-5g-global-dual-sim-td-lte-256gb-m2012k11g/index.json b/site/public/v1/smartphones/mi-11i-5g-global-dual-sim-td-lte-256gb-m2012k11g/index.json new file mode 100644 index 00000000000..0f3d8581ae6 --- /dev/null +++ b/site/public/v1/smartphones/mi-11i-5g-global-dual-sim-td-lte-256gb-m2012k11g/index.json @@ -0,0 +1,77 @@ +{ + "id": 6083, + "slug": "mi-11i-5g-global-dual-sim-td-lte-256gb-m2012k11g", + "name": "Mi 11i 5G Global Dual SIM TD-LTE 256GB M2012K11G", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-05-01", + "msrp_usd": 699, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4520, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 6.4, + "camera": 35.7, + "battery": 36.2, + "display": 52.0, + "value": 51.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.968311", + "updated_at": "2026-06-19T00:43:44.968311" +} diff --git a/site/public/v1/smartphones/mi-11i-5g-global-dual-sim-td-lte-256gb-m2012k11g/score/index.json b/site/public/v1/smartphones/mi-11i-5g-global-dual-sim-td-lte-256gb-m2012k11g/score/index.json new file mode 100644 index 00000000000..af1a6172211 --- /dev/null +++ b/site/public/v1/smartphones/mi-11i-5g-global-dual-sim-td-lte-256gb-m2012k11g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 6.4, + "camera": 35.7, + "battery": 36.2, + "display": 52.0, + "value": 51.0 +} diff --git a/site/public/v1/smartphones/mi-11t-5g-global-dual-sim-td-lte-128gb-21081111rg/index.json b/site/public/v1/smartphones/mi-11t-5g-global-dual-sim-td-lte-128gb-21081111rg/index.json new file mode 100644 index 00000000000..88b3dc3ebaa --- /dev/null +++ b/site/public/v1/smartphones/mi-11t-5g-global-dual-sim-td-lte-128gb-21081111rg/index.json @@ -0,0 +1,77 @@ +{ + "id": 6085, + "slug": "mi-11t-5g-global-dual-sim-td-lte-128gb-21081111rg", + "name": "Mi 11T 5G Global Dual SIM TD-LTE 128GB 21081111RG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-10-06", + "msrp_usd": 499, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 67.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 34.1, + "performance": 3.9, + "camera": 35.7, + "battery": 44.9, + "display": 52.0, + "value": 59.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.969311", + "updated_at": "2026-06-19T00:43:44.969311" +} diff --git a/site/public/v1/smartphones/mi-11t-5g-global-dual-sim-td-lte-128gb-21081111rg/score/index.json b/site/public/v1/smartphones/mi-11t-5g-global-dual-sim-td-lte-128gb-21081111rg/score/index.json new file mode 100644 index 00000000000..8ba65f51b4c --- /dev/null +++ b/site/public/v1/smartphones/mi-11t-5g-global-dual-sim-td-lte-128gb-21081111rg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 34.1, + "performance": 3.9, + "camera": 35.7, + "battery": 44.9, + "display": 52.0, + "value": 59.4 +} diff --git a/site/public/v1/smartphones/mi-11t-5g-global-dual-sim-td-lte-256gb-21081111rg/index.json b/site/public/v1/smartphones/mi-11t-5g-global-dual-sim-td-lte-256gb-21081111rg/index.json new file mode 100644 index 00000000000..aa75eb0ba24 --- /dev/null +++ b/site/public/v1/smartphones/mi-11t-5g-global-dual-sim-td-lte-256gb-21081111rg/index.json @@ -0,0 +1,77 @@ +{ + "id": 6086, + "slug": "mi-11t-5g-global-dual-sim-td-lte-256gb-21081111rg", + "name": "Mi 11T 5G Global Dual SIM TD-LTE 256GB 21081111RG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-10-06", + "msrp_usd": 549, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 67.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 34.1, + "performance": 3.9, + "camera": 35.7, + "battery": 44.9, + "display": 52.0, + "value": 57.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.969311", + "updated_at": "2026-06-19T00:43:44.969311" +} diff --git a/site/public/v1/smartphones/mi-11t-5g-global-dual-sim-td-lte-256gb-21081111rg/score/index.json b/site/public/v1/smartphones/mi-11t-5g-global-dual-sim-td-lte-256gb-21081111rg/score/index.json new file mode 100644 index 00000000000..73cec9afc0d --- /dev/null +++ b/site/public/v1/smartphones/mi-11t-5g-global-dual-sim-td-lte-256gb-21081111rg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 34.1, + "performance": 3.9, + "camera": 35.7, + "battery": 44.9, + "display": 52.0, + "value": 57.5 +} diff --git a/site/public/v1/smartphones/mi-11t-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-2107113si/index.json b/site/public/v1/smartphones/mi-11t-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-2107113si/index.json new file mode 100644 index 00000000000..aa241fc0cc5 --- /dev/null +++ b/site/public/v1/smartphones/mi-11t-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-2107113si/index.json @@ -0,0 +1,77 @@ +{ + "id": 6238, + "slug": "mi-11t-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-2107113si", + "name": "Mi 11T Pro 5G Premium Edition Dual SIM TD-LTE IN 256GB 2107113SI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2022-01-19", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 204.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 39.3, + "performance": 9.4, + "camera": 35.7, + "battery": 60.0, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.986825", + "updated_at": "2026-06-19T00:43:44.986825" +} diff --git a/site/public/v1/smartphones/mi-11t-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-2107113si/score/index.json b/site/public/v1/smartphones/mi-11t-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-2107113si/score/index.json new file mode 100644 index 00000000000..4ee0a03f1ea --- /dev/null +++ b/site/public/v1/smartphones/mi-11t-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-2107113si/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 39.3, + "performance": 9.4, + "camera": 35.7, + "battery": 60.0, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/mi-11t-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-2107113sg/index.json b/site/public/v1/smartphones/mi-11t-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-2107113sg/index.json new file mode 100644 index 00000000000..20a7b88bc54 --- /dev/null +++ b/site/public/v1/smartphones/mi-11t-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-2107113sg/index.json @@ -0,0 +1,77 @@ +{ + "id": 6087, + "slug": "mi-11t-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-2107113sg", + "name": "Mi 11T Pro 5G Premium Edition Global Dual SIM TD-LTE 256GB 2107113SG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-10-06", + "msrp_usd": 749, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 204.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 39.3, + "performance": 9.4, + "camera": 35.7, + "battery": 60.0, + "display": 52.0, + "value": 52.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.969311", + "updated_at": "2026-06-19T00:43:44.969311" +} diff --git a/site/public/v1/smartphones/mi-11t-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-2107113sg/score/index.json b/site/public/v1/smartphones/mi-11t-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-2107113sg/score/index.json new file mode 100644 index 00000000000..79731b4f457 --- /dev/null +++ b/site/public/v1/smartphones/mi-11t-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-2107113sg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 39.3, + "performance": 9.4, + "camera": 35.7, + "battery": 60.0, + "display": 52.0, + "value": 52.4 +} diff --git a/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-2107113si/index.json b/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-2107113si/index.json new file mode 100644 index 00000000000..0243f95d116 --- /dev/null +++ b/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-2107113si/index.json @@ -0,0 +1,77 @@ +{ + "id": 6239, + "slug": "mi-11t-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-2107113si", + "name": "Mi 11T Pro 5G Standard Edition Dual SIM TD-LTE IN 128GB 2107113SI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2022-01-19", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 204.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 38.5, + "performance": 6.4, + "camera": 35.7, + "battery": 60.0, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.986825", + "updated_at": "2026-06-19T00:43:44.986825" +} diff --git a/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-2107113si/score/index.json b/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-2107113si/score/index.json new file mode 100644 index 00000000000..0b7d7c3a963 --- /dev/null +++ b/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-2107113si/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 38.5, + "performance": 6.4, + "camera": 35.7, + "battery": 60.0, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-in-256gb-2107113si/index.json b/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-in-256gb-2107113si/index.json new file mode 100644 index 00000000000..13ca980a4db --- /dev/null +++ b/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-in-256gb-2107113si/index.json @@ -0,0 +1,77 @@ +{ + "id": 6240, + "slug": "mi-11t-pro-5g-standard-edition-dual-sim-td-lte-in-256gb-2107113si", + "name": "Mi 11T Pro 5G Standard Edition Dual SIM TD-LTE IN 256GB 2107113SI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2022-01-19", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 204.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 38.5, + "performance": 6.4, + "camera": 35.7, + "battery": 60.0, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.986825", + "updated_at": "2026-06-19T00:43:44.986825" +} diff --git a/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-in-256gb-2107113si/score/index.json b/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-in-256gb-2107113si/score/index.json new file mode 100644 index 00000000000..0b7d7c3a963 --- /dev/null +++ b/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-in-256gb-2107113si/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 38.5, + "performance": 6.4, + "camera": 35.7, + "battery": 60.0, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-jp-128gb-2107113sr/index.json b/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-jp-128gb-2107113sr/index.json new file mode 100644 index 00000000000..b0ac8bce01c --- /dev/null +++ b/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-jp-128gb-2107113sr/index.json @@ -0,0 +1,77 @@ +{ + "id": 6088, + "slug": "mi-11t-pro-5g-standard-edition-dual-sim-td-lte-jp-128gb-2107113sr", + "name": "Mi 11T Pro 5G Standard Edition Dual SIM TD-LTE JP 128GB 2107113SR", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-11-06", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 204.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 38.5, + "performance": 6.4, + "camera": 35.7, + "battery": 60.0, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.969311", + "updated_at": "2026-06-19T00:43:44.969311" +} diff --git a/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-jp-128gb-2107113sr/score/index.json b/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-jp-128gb-2107113sr/score/index.json new file mode 100644 index 00000000000..0b7d7c3a963 --- /dev/null +++ b/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-jp-128gb-2107113sr/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 38.5, + "performance": 6.4, + "camera": 35.7, + "battery": 60.0, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-jp-256gb-2107113sr/index.json b/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-jp-256gb-2107113sr/index.json new file mode 100644 index 00000000000..ccf7fd66617 --- /dev/null +++ b/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-jp-256gb-2107113sr/index.json @@ -0,0 +1,77 @@ +{ + "id": 6089, + "slug": "mi-11t-pro-5g-standard-edition-dual-sim-td-lte-jp-256gb-2107113sr", + "name": "Mi 11T Pro 5G Standard Edition Dual SIM TD-LTE JP 256GB 2107113SR", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-11-06", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 204.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 38.5, + "performance": 6.4, + "camera": 35.7, + "battery": 60.0, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.969311", + "updated_at": "2026-06-19T00:43:44.969311" +} diff --git a/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-jp-256gb-2107113sr/score/index.json b/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-jp-256gb-2107113sr/score/index.json new file mode 100644 index 00000000000..0b7d7c3a963 --- /dev/null +++ b/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-dual-sim-td-lte-jp-256gb-2107113sr/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 38.5, + "performance": 6.4, + "camera": 35.7, + "battery": 60.0, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-2107113sg/index.json b/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-2107113sg/index.json new file mode 100644 index 00000000000..a2b28dd5041 --- /dev/null +++ b/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-2107113sg/index.json @@ -0,0 +1,77 @@ +{ + "id": 6090, + "slug": "mi-11t-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-2107113sg", + "name": "Mi 11T Pro 5G Standard Edition Global Dual SIM TD-LTE 128GB 2107113SG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-10-06", + "msrp_usd": 649, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 204.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 38.5, + "performance": 6.4, + "camera": 35.7, + "battery": 60.0, + "display": 52.0, + "value": 55.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.969311", + "updated_at": "2026-06-19T00:43:44.969311" +} diff --git a/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-2107113sg/score/index.json b/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-2107113sg/score/index.json new file mode 100644 index 00000000000..d15a6e11f16 --- /dev/null +++ b/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-2107113sg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 38.5, + "performance": 6.4, + "camera": 35.7, + "battery": 60.0, + "display": 52.0, + "value": 55.9 +} diff --git a/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-global-dual-sim-td-lte-256gb-2107113sg/index.json b/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-global-dual-sim-td-lte-256gb-2107113sg/index.json new file mode 100644 index 00000000000..c400d87e495 --- /dev/null +++ b/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-global-dual-sim-td-lte-256gb-2107113sg/index.json @@ -0,0 +1,77 @@ +{ + "id": 6091, + "slug": "mi-11t-pro-5g-standard-edition-global-dual-sim-td-lte-256gb-2107113sg", + "name": "Mi 11T Pro 5G Standard Edition Global Dual SIM TD-LTE 256GB 2107113SG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-10-06", + "msrp_usd": 699, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 204.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 38.5, + "performance": 6.4, + "camera": 35.7, + "battery": 60.0, + "display": 52.0, + "value": 53.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.969311", + "updated_at": "2026-06-19T00:43:44.969311" +} diff --git a/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-global-dual-sim-td-lte-256gb-2107113sg/score/index.json b/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-global-dual-sim-td-lte-256gb-2107113sg/score/index.json new file mode 100644 index 00000000000..94c61654a35 --- /dev/null +++ b/site/public/v1/smartphones/mi-11t-pro-5g-standard-edition-global-dual-sim-td-lte-256gb-2107113sg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 38.5, + "performance": 6.4, + "camera": 35.7, + "battery": 60.0, + "display": 52.0, + "value": 53.9 +} diff --git a/site/public/v1/smartphones/mi-11x-5g-premium-edition-dual-sim-td-lte-in-128gb-m2012k11ai/index.json b/site/public/v1/smartphones/mi-11x-5g-premium-edition-dual-sim-td-lte-in-128gb-m2012k11ai/index.json new file mode 100644 index 00000000000..4f87b54ac7c --- /dev/null +++ b/site/public/v1/smartphones/mi-11x-5g-premium-edition-dual-sim-td-lte-in-128gb-m2012k11ai/index.json @@ -0,0 +1,77 @@ +{ + "id": 6094, + "slug": "mi-11x-5g-premium-edition-dual-sim-td-lte-in-128gb-m2012k11ai", + "name": "Mi 11X 5G Premium Edition Dual SIM TD-LTE IN 128GB M2012K11AI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2021-04-29", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4520, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 3.4, + "camera": 16.5, + "battery": 26.2, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.970311", + "updated_at": "2026-06-19T00:43:44.970311" +} diff --git a/site/public/v1/smartphones/mi-11x-5g-premium-edition-dual-sim-td-lte-in-128gb-m2012k11ai/score/index.json b/site/public/v1/smartphones/mi-11x-5g-premium-edition-dual-sim-td-lte-in-128gb-m2012k11ai/score/index.json new file mode 100644 index 00000000000..27936ee8bcf --- /dev/null +++ b/site/public/v1/smartphones/mi-11x-5g-premium-edition-dual-sim-td-lte-in-128gb-m2012k11ai/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 3.4, + "camera": 16.5, + "battery": 26.2, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/mi-11x-5g-standard-edition-dual-sim-td-lte-in-128gb-m2012k11ai/index.json b/site/public/v1/smartphones/mi-11x-5g-standard-edition-dual-sim-td-lte-in-128gb-m2012k11ai/index.json new file mode 100644 index 00000000000..16f76cfc76a --- /dev/null +++ b/site/public/v1/smartphones/mi-11x-5g-standard-edition-dual-sim-td-lte-in-128gb-m2012k11ai/index.json @@ -0,0 +1,77 @@ +{ + "id": 6095, + "slug": "mi-11x-5g-standard-edition-dual-sim-td-lte-in-128gb-m2012k11ai", + "name": "Mi 11X 5G Standard Edition Dual SIM TD-LTE IN 128GB M2012K11AI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2021-04-29", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4520, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 1.9, + "camera": 16.5, + "battery": 26.2, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.970311", + "updated_at": "2026-06-19T00:43:44.970311" +} diff --git a/site/public/v1/smartphones/mi-11x-5g-standard-edition-dual-sim-td-lte-in-128gb-m2012k11ai/score/index.json b/site/public/v1/smartphones/mi-11x-5g-standard-edition-dual-sim-td-lte-in-128gb-m2012k11ai/score/index.json new file mode 100644 index 00000000000..3e2dd4cc92d --- /dev/null +++ b/site/public/v1/smartphones/mi-11x-5g-standard-edition-dual-sim-td-lte-in-128gb-m2012k11ai/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 1.9, + "camera": 16.5, + "battery": 26.2, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/mi-11x-pro-5g-dual-sim-td-lte-in-128gb-m2012k11i/index.json b/site/public/v1/smartphones/mi-11x-pro-5g-dual-sim-td-lte-in-128gb-m2012k11i/index.json new file mode 100644 index 00000000000..efb55dded00 --- /dev/null +++ b/site/public/v1/smartphones/mi-11x-pro-5g-dual-sim-td-lte-in-128gb-m2012k11i/index.json @@ -0,0 +1,77 @@ +{ + "id": 6096, + "slug": "mi-11x-pro-5g-dual-sim-td-lte-in-128gb-m2012k11i", + "name": "Mi 11X Pro 5G Dual SIM TD-LTE IN 128GB M2012K11I", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-05-04", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4520, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 6.4, + "camera": 35.7, + "battery": 36.2, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.970311", + "updated_at": "2026-06-19T00:43:44.970311" +} diff --git a/site/public/v1/smartphones/mi-11x-pro-5g-dual-sim-td-lte-in-128gb-m2012k11i/score/index.json b/site/public/v1/smartphones/mi-11x-pro-5g-dual-sim-td-lte-in-128gb-m2012k11i/score/index.json new file mode 100644 index 00000000000..cba5861cc88 --- /dev/null +++ b/site/public/v1/smartphones/mi-11x-pro-5g-dual-sim-td-lte-in-128gb-m2012k11i/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 6.4, + "camera": 35.7, + "battery": 36.2, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/mi-11x-pro-5g-dual-sim-td-lte-in-256gb-m2012k11i/index.json b/site/public/v1/smartphones/mi-11x-pro-5g-dual-sim-td-lte-in-256gb-m2012k11i/index.json new file mode 100644 index 00000000000..13f50d42918 --- /dev/null +++ b/site/public/v1/smartphones/mi-11x-pro-5g-dual-sim-td-lte-in-256gb-m2012k11i/index.json @@ -0,0 +1,77 @@ +{ + "id": 6097, + "slug": "mi-11x-pro-5g-dual-sim-td-lte-in-256gb-m2012k11i", + "name": "Mi 11X Pro 5G Dual SIM TD-LTE IN 256GB M2012K11I", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-05-04", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4520, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 6.4, + "camera": 35.7, + "battery": 36.2, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.970311", + "updated_at": "2026-06-19T00:43:44.970311" +} diff --git a/site/public/v1/smartphones/mi-11x-pro-5g-dual-sim-td-lte-in-256gb-m2012k11i/score/index.json b/site/public/v1/smartphones/mi-11x-pro-5g-dual-sim-td-lte-in-256gb-m2012k11i/score/index.json new file mode 100644 index 00000000000..cba5861cc88 --- /dev/null +++ b/site/public/v1/smartphones/mi-11x-pro-5g-dual-sim-td-lte-in-256gb-m2012k11i/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 6.4, + "camera": 35.7, + "battery": 36.2, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/mi-6x-dual-sim-td-lte-cn-128gb-m1804d2se-m1804d2sc/index.json b/site/public/v1/smartphones/mi-6x-dual-sim-td-lte-cn-128gb-m1804d2se-m1804d2sc/index.json new file mode 100644 index 00000000000..e4ef1c3cbc4 --- /dev/null +++ b/site/public/v1/smartphones/mi-6x-dual-sim-td-lte-cn-128gb-m1804d2se-m1804d2sc/index.json @@ -0,0 +1,76 @@ +{ + "id": 5608, + "slug": "mi-6x-dual-sim-td-lte-cn-128gb-m1804d2se-m1804d2sc", + "name": "Mi 6X Dual SIM TD-LTE CN 128GB M1804D2SE / M1804D2SC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 20.0 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": 19.5, + "camera": 7.6, + "battery": 1.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.914307", + "updated_at": "2026-06-19T00:43:44.914307" +} diff --git a/site/public/v1/smartphones/mi-6x-dual-sim-td-lte-cn-128gb-m1804d2se-m1804d2sc/score/index.json b/site/public/v1/smartphones/mi-6x-dual-sim-td-lte-cn-128gb-m1804d2se-m1804d2sc/score/index.json new file mode 100644 index 00000000000..24a6fe5c48d --- /dev/null +++ b/site/public/v1/smartphones/mi-6x-dual-sim-td-lte-cn-128gb-m1804d2se-m1804d2sc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": 19.5, + "camera": 7.6, + "battery": 1.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-6x-dual-sim-td-lte-cn-128gb-m1804d2st/index.json b/site/public/v1/smartphones/mi-6x-dual-sim-td-lte-cn-128gb-m1804d2st/index.json new file mode 100644 index 00000000000..14b1ada8c4b --- /dev/null +++ b/site/public/v1/smartphones/mi-6x-dual-sim-td-lte-cn-128gb-m1804d2st/index.json @@ -0,0 +1,76 @@ +{ + "id": 5609, + "slug": "mi-6x-dual-sim-td-lte-cn-128gb-m1804d2st", + "name": "Mi 6X Dual SIM TD-LTE CN 128GB M1804D2ST", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 20.0 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": 19.5, + "camera": 7.6, + "battery": 1.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.914307", + "updated_at": "2026-06-19T00:43:44.914307" +} diff --git a/site/public/v1/smartphones/mi-6x-dual-sim-td-lte-cn-128gb-m1804d2st/score/index.json b/site/public/v1/smartphones/mi-6x-dual-sim-td-lte-cn-128gb-m1804d2st/score/index.json new file mode 100644 index 00000000000..24a6fe5c48d --- /dev/null +++ b/site/public/v1/smartphones/mi-6x-dual-sim-td-lte-cn-128gb-m1804d2st/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": 19.5, + "camera": 7.6, + "battery": 1.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-6x-dual-sim-td-lte-cn-32gb-m1804d2se-m1804d2sc/index.json b/site/public/v1/smartphones/mi-6x-dual-sim-td-lte-cn-32gb-m1804d2se-m1804d2sc/index.json new file mode 100644 index 00000000000..31b224d143f --- /dev/null +++ b/site/public/v1/smartphones/mi-6x-dual-sim-td-lte-cn-32gb-m1804d2se-m1804d2sc/index.json @@ -0,0 +1,76 @@ +{ + "id": 5610, + "slug": "mi-6x-dual-sim-td-lte-cn-32gb-m1804d2se-m1804d2sc", + "name": "Mi 6X Dual SIM TD-LTE CN 32GB M1804D2SE / M1804D2SC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-06-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 20.0 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 18.0, + "camera": 7.6, + "battery": 1.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.915307", + "updated_at": "2026-06-19T00:43:44.915307" +} diff --git a/site/public/v1/smartphones/mi-6x-dual-sim-td-lte-cn-32gb-m1804d2se-m1804d2sc/score/index.json b/site/public/v1/smartphones/mi-6x-dual-sim-td-lte-cn-32gb-m1804d2se-m1804d2sc/score/index.json new file mode 100644 index 00000000000..31c337b2fd0 --- /dev/null +++ b/site/public/v1/smartphones/mi-6x-dual-sim-td-lte-cn-32gb-m1804d2se-m1804d2sc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 18.0, + "camera": 7.6, + "battery": 1.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-6x-dual-sim-td-lte-cn-64gb-m1804d2se-m1804d2sc/index.json b/site/public/v1/smartphones/mi-6x-dual-sim-td-lte-cn-64gb-m1804d2se-m1804d2sc/index.json new file mode 100644 index 00000000000..35dc217f3b4 --- /dev/null +++ b/site/public/v1/smartphones/mi-6x-dual-sim-td-lte-cn-64gb-m1804d2se-m1804d2sc/index.json @@ -0,0 +1,76 @@ +{ + "id": 5611, + "slug": "mi-6x-dual-sim-td-lte-cn-64gb-m1804d2se-m1804d2sc", + "name": "Mi 6X Dual SIM TD-LTE CN 64GB M1804D2SE / M1804D2SC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 20.0 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 18.0, + "camera": 7.6, + "battery": 1.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.915307", + "updated_at": "2026-06-19T00:43:44.915307" +} diff --git a/site/public/v1/smartphones/mi-6x-dual-sim-td-lte-cn-64gb-m1804d2se-m1804d2sc/score/index.json b/site/public/v1/smartphones/mi-6x-dual-sim-td-lte-cn-64gb-m1804d2se-m1804d2sc/score/index.json new file mode 100644 index 00000000000..31c337b2fd0 --- /dev/null +++ b/site/public/v1/smartphones/mi-6x-dual-sim-td-lte-cn-64gb-m1804d2se-m1804d2sc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 18.0, + "camera": 7.6, + "battery": 1.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-6x-dual-sim-td-lte-cn-64gb-m1804d2st/index.json b/site/public/v1/smartphones/mi-6x-dual-sim-td-lte-cn-64gb-m1804d2st/index.json new file mode 100644 index 00000000000..365c00e658a --- /dev/null +++ b/site/public/v1/smartphones/mi-6x-dual-sim-td-lte-cn-64gb-m1804d2st/index.json @@ -0,0 +1,76 @@ +{ + "id": 5612, + "slug": "mi-6x-dual-sim-td-lte-cn-64gb-m1804d2st", + "name": "Mi 6X Dual SIM TD-LTE CN 64GB M1804D2ST", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 20.0 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 18.0, + "camera": 7.6, + "battery": 1.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.915307", + "updated_at": "2026-06-19T00:43:44.915307" +} diff --git a/site/public/v1/smartphones/mi-6x-dual-sim-td-lte-cn-64gb-m1804d2st/score/index.json b/site/public/v1/smartphones/mi-6x-dual-sim-td-lte-cn-64gb-m1804d2st/score/index.json new file mode 100644 index 00000000000..31c337b2fd0 --- /dev/null +++ b/site/public/v1/smartphones/mi-6x-dual-sim-td-lte-cn-64gb-m1804d2st/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 18.0, + "camera": 7.6, + "battery": 1.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-8-dual-sim-td-lte-cn-128gb-m1803e1a/index.json b/site/public/v1/smartphones/mi-8-dual-sim-td-lte-cn-128gb-m1803e1a/index.json new file mode 100644 index 00000000000..21906c5bbc8 --- /dev/null +++ b/site/public/v1/smartphones/mi-8-dual-sim-td-lte-cn-128gb-m1803e1a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5613, + "slug": "mi-8-dual-sim-td-lte-cn-128gb-m1803e1a", + "name": "Mi 8 Dual SIM TD-LTE CN 128GB M1803E1A", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-06-06", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2248", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 5.0, + "battery": 6.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.915307", + "updated_at": "2026-06-19T00:43:44.915307" +} diff --git a/site/public/v1/smartphones/mi-8-dual-sim-td-lte-cn-128gb-m1803e1a/score/index.json b/site/public/v1/smartphones/mi-8-dual-sim-td-lte-cn-128gb-m1803e1a/score/index.json new file mode 100644 index 00000000000..232627fa3c0 --- /dev/null +++ b/site/public/v1/smartphones/mi-8-dual-sim-td-lte-cn-128gb-m1803e1a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 5.0, + "battery": 6.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/mi-8-dual-sim-td-lte-cn-128gb-m1803e1c/index.json b/site/public/v1/smartphones/mi-8-dual-sim-td-lte-cn-128gb-m1803e1c/index.json new file mode 100644 index 00000000000..a271e1663cd --- /dev/null +++ b/site/public/v1/smartphones/mi-8-dual-sim-td-lte-cn-128gb-m1803e1c/index.json @@ -0,0 +1,76 @@ +{ + "id": 5614, + "slug": "mi-8-dual-sim-td-lte-cn-128gb-m1803e1c", + "name": "Mi 8 Dual SIM TD-LTE CN 128GB M1803E1C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-06-06", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2248", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 5.0, + "battery": 6.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.915307", + "updated_at": "2026-06-19T00:43:44.915307" +} diff --git a/site/public/v1/smartphones/mi-8-dual-sim-td-lte-cn-128gb-m1803e1c/score/index.json b/site/public/v1/smartphones/mi-8-dual-sim-td-lte-cn-128gb-m1803e1c/score/index.json new file mode 100644 index 00000000000..232627fa3c0 --- /dev/null +++ b/site/public/v1/smartphones/mi-8-dual-sim-td-lte-cn-128gb-m1803e1c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 5.0, + "battery": 6.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/mi-8-dual-sim-td-lte-cn-128gb-m1803e1t/index.json b/site/public/v1/smartphones/mi-8-dual-sim-td-lte-cn-128gb-m1803e1t/index.json new file mode 100644 index 00000000000..f6271c08f5f --- /dev/null +++ b/site/public/v1/smartphones/mi-8-dual-sim-td-lte-cn-128gb-m1803e1t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5615, + "slug": "mi-8-dual-sim-td-lte-cn-128gb-m1803e1t", + "name": "Mi 8 Dual SIM TD-LTE CN 128GB M1803E1T", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-06-06", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2248", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 5.0, + "battery": 6.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.915307", + "updated_at": "2026-06-19T00:43:44.915307" +} diff --git a/site/public/v1/smartphones/mi-8-dual-sim-td-lte-cn-128gb-m1803e1t/score/index.json b/site/public/v1/smartphones/mi-8-dual-sim-td-lte-cn-128gb-m1803e1t/score/index.json new file mode 100644 index 00000000000..232627fa3c0 --- /dev/null +++ b/site/public/v1/smartphones/mi-8-dual-sim-td-lte-cn-128gb-m1803e1t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 5.0, + "battery": 6.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/mi-8-dual-sim-td-lte-cn-256gb-m1803e1a/index.json b/site/public/v1/smartphones/mi-8-dual-sim-td-lte-cn-256gb-m1803e1a/index.json new file mode 100644 index 00000000000..5afa7ecc857 --- /dev/null +++ b/site/public/v1/smartphones/mi-8-dual-sim-td-lte-cn-256gb-m1803e1a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5616, + "slug": "mi-8-dual-sim-td-lte-cn-256gb-m1803e1a", + "name": "Mi 8 Dual SIM TD-LTE CN 256GB M1803E1A", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2248", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 5.0, + "battery": 6.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.915307", + "updated_at": "2026-06-19T00:43:44.915307" +} diff --git a/site/public/v1/smartphones/mi-8-dual-sim-td-lte-cn-256gb-m1803e1a/score/index.json b/site/public/v1/smartphones/mi-8-dual-sim-td-lte-cn-256gb-m1803e1a/score/index.json new file mode 100644 index 00000000000..232627fa3c0 --- /dev/null +++ b/site/public/v1/smartphones/mi-8-dual-sim-td-lte-cn-256gb-m1803e1a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 5.0, + "battery": 6.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/mi-8-dual-sim-td-lte-cn-64gb-m1803e1a/index.json b/site/public/v1/smartphones/mi-8-dual-sim-td-lte-cn-64gb-m1803e1a/index.json new file mode 100644 index 00000000000..d7f176cf082 --- /dev/null +++ b/site/public/v1/smartphones/mi-8-dual-sim-td-lte-cn-64gb-m1803e1a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5617, + "slug": "mi-8-dual-sim-td-lte-cn-64gb-m1803e1a", + "name": "Mi 8 Dual SIM TD-LTE CN 64GB M1803E1A", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-06-06", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2248", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 5.0, + "battery": 6.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.915307", + "updated_at": "2026-06-19T00:43:44.915307" +} diff --git a/site/public/v1/smartphones/mi-8-dual-sim-td-lte-cn-64gb-m1803e1a/score/index.json b/site/public/v1/smartphones/mi-8-dual-sim-td-lte-cn-64gb-m1803e1a/score/index.json new file mode 100644 index 00000000000..232627fa3c0 --- /dev/null +++ b/site/public/v1/smartphones/mi-8-dual-sim-td-lte-cn-64gb-m1803e1a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 5.0, + "battery": 6.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/mi-8-explorer-edition-dual-sim-td-lte-m1807e8s-mi-8-ud/index.json b/site/public/v1/smartphones/mi-8-explorer-edition-dual-sim-td-lte-m1807e8s-mi-8-ud/index.json new file mode 100644 index 00000000000..c4baddf4aa6 --- /dev/null +++ b/site/public/v1/smartphones/mi-8-explorer-edition-dual-sim-td-lte-m1807e8s-mi-8-ud/index.json @@ -0,0 +1,76 @@ +{ + "id": 5618, + "slug": "mi-8-explorer-edition-dual-sim-td-lte-m1807e8s-mi-8-ud", + "name": "Mi 8 Explorer Edition Dual SIM TD-LTE M1807E8S / Mi 8 UD", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-07-29", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2248", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": 3.0, + "camera": 5.0, + "battery": 0.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.915307", + "updated_at": "2026-06-19T00:43:44.915307" +} diff --git a/site/public/v1/smartphones/mi-8-explorer-edition-dual-sim-td-lte-m1807e8s-mi-8-ud/score/index.json b/site/public/v1/smartphones/mi-8-explorer-edition-dual-sim-td-lte-m1807e8s-mi-8-ud/score/index.json new file mode 100644 index 00000000000..206756b591c --- /dev/null +++ b/site/public/v1/smartphones/mi-8-explorer-edition-dual-sim-td-lte-m1807e8s-mi-8-ud/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": 3.0, + "camera": 5.0, + "battery": 0.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/mi-8-lite-global-dual-sim-td-lte-128gb-m1808d2tg/index.json b/site/public/v1/smartphones/mi-8-lite-global-dual-sim-td-lte-128gb-m1808d2tg/index.json new file mode 100644 index 00000000000..c1e1082977c --- /dev/null +++ b/site/public/v1/smartphones/mi-8-lite-global-dual-sim-td-lte-128gb-m1808d2tg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5619, + "slug": "mi-8-lite-global-dual-sim-td-lte-128gb-m1808d2tg", + "name": "Mi 8 Lite Global Dual SIM TD-LTE 128GB M1808D2TG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3350, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.8, + "performance": 19.5, + "camera": 5.1, + "battery": 5.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.915307", + "updated_at": "2026-06-19T00:43:44.915307" +} diff --git a/site/public/v1/smartphones/mi-8-lite-global-dual-sim-td-lte-128gb-m1808d2tg/score/index.json b/site/public/v1/smartphones/mi-8-lite-global-dual-sim-td-lte-128gb-m1808d2tg/score/index.json new file mode 100644 index 00000000000..37b2636bb7d --- /dev/null +++ b/site/public/v1/smartphones/mi-8-lite-global-dual-sim-td-lte-128gb-m1808d2tg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.8, + "performance": 19.5, + "camera": 5.1, + "battery": 5.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-8-lite-global-dual-sim-td-lte-64gb-m1808d2tg/index.json b/site/public/v1/smartphones/mi-8-lite-global-dual-sim-td-lte-64gb-m1808d2tg/index.json new file mode 100644 index 00000000000..821f3b9c19f --- /dev/null +++ b/site/public/v1/smartphones/mi-8-lite-global-dual-sim-td-lte-64gb-m1808d2tg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5620, + "slug": "mi-8-lite-global-dual-sim-td-lte-64gb-m1808d2tg", + "name": "Mi 8 Lite Global Dual SIM TD-LTE 64GB M1808D2TG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3350, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 18.0, + "camera": 5.1, + "battery": 5.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.916306", + "updated_at": "2026-06-19T00:43:44.916306" +} diff --git a/site/public/v1/smartphones/mi-8-lite-global-dual-sim-td-lte-64gb-m1808d2tg/score/index.json b/site/public/v1/smartphones/mi-8-lite-global-dual-sim-td-lte-64gb-m1808d2tg/score/index.json new file mode 100644 index 00000000000..ac7b44d3fa7 --- /dev/null +++ b/site/public/v1/smartphones/mi-8-lite-global-dual-sim-td-lte-64gb-m1808d2tg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 18.0, + "camera": 5.1, + "battery": 5.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-8-premium-edition-dual-sim-td-lte-cn-128gb-m1803e1a/index.json b/site/public/v1/smartphones/mi-8-premium-edition-dual-sim-td-lte-cn-128gb-m1803e1a/index.json new file mode 100644 index 00000000000..12e3caefcd4 --- /dev/null +++ b/site/public/v1/smartphones/mi-8-premium-edition-dual-sim-td-lte-cn-128gb-m1803e1a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5621, + "slug": "mi-8-premium-edition-dual-sim-td-lte-cn-128gb-m1803e1a", + "name": "Mi 8 Premium Edition Dual SIM TD-LTE CN 128GB M1803E1A", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-08-14", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2248", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 3.0, + "camera": 5.0, + "battery": 6.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.916306", + "updated_at": "2026-06-19T00:43:44.916306" +} diff --git a/site/public/v1/smartphones/mi-8-premium-edition-dual-sim-td-lte-cn-128gb-m1803e1a/score/index.json b/site/public/v1/smartphones/mi-8-premium-edition-dual-sim-td-lte-cn-128gb-m1803e1a/score/index.json new file mode 100644 index 00000000000..ceb035adf45 --- /dev/null +++ b/site/public/v1/smartphones/mi-8-premium-edition-dual-sim-td-lte-cn-128gb-m1803e1a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 3.0, + "camera": 5.0, + "battery": 6.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/mi-8-pro-global-dual-sim-td-lte-m1807e8a/index.json b/site/public/v1/smartphones/mi-8-pro-global-dual-sim-td-lte-m1807e8a/index.json new file mode 100644 index 00000000000..bc94d6f1658 --- /dev/null +++ b/site/public/v1/smartphones/mi-8-pro-global-dual-sim-td-lte-m1807e8a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5622, + "slug": "mi-8-pro-global-dual-sim-td-lte-m1807e8a", + "name": "Mi 8 Pro Global Dual SIM TD-LTE M1807E8A", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-10-23", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2248", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": 3.0, + "camera": 5.0, + "battery": 0.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.916306", + "updated_at": "2026-06-19T00:43:44.916306" +} diff --git a/site/public/v1/smartphones/mi-8-pro-global-dual-sim-td-lte-m1807e8a/score/index.json b/site/public/v1/smartphones/mi-8-pro-global-dual-sim-td-lte-m1807e8a/score/index.json new file mode 100644 index 00000000000..206756b591c --- /dev/null +++ b/site/public/v1/smartphones/mi-8-pro-global-dual-sim-td-lte-m1807e8a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": 3.0, + "camera": 5.0, + "battery": 0.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/mi-8-se-premium-dual-sim-td-lte-cn-m1805e2a/index.json b/site/public/v1/smartphones/mi-8-se-premium-dual-sim-td-lte-cn-m1805e2a/index.json new file mode 100644 index 00000000000..7336a8e288b --- /dev/null +++ b/site/public/v1/smartphones/mi-8-se-premium-dual-sim-td-lte-cn-m1805e2a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5623, + "slug": "mi-8-se-premium-dual-sim-td-lte-cn-m1805e2a", + "name": "Mi 8 SE Premium Dual SIM TD-LTE CN M1805E2A", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2018-06-07", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.88, + "resolution": "1080x2244", + "type": "AM-OLED display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 3120, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 21.5, + "camera": 5.0, + "battery": 1.8, + "display": 47.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.916306", + "updated_at": "2026-06-19T00:43:44.916306" +} diff --git a/site/public/v1/smartphones/mi-8-se-premium-dual-sim-td-lte-cn-m1805e2a/score/index.json b/site/public/v1/smartphones/mi-8-se-premium-dual-sim-td-lte-cn-m1805e2a/score/index.json new file mode 100644 index 00000000000..98c874a5c1d --- /dev/null +++ b/site/public/v1/smartphones/mi-8-se-premium-dual-sim-td-lte-cn-m1805e2a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 21.5, + "camera": 5.0, + "battery": 1.8, + "display": 47.4, + "value": null +} diff --git a/site/public/v1/smartphones/mi-8-se-standard-dual-sim-td-lte-cn-m1805e2a/index.json b/site/public/v1/smartphones/mi-8-se-standard-dual-sim-td-lte-cn-m1805e2a/index.json new file mode 100644 index 00000000000..9555fa04048 --- /dev/null +++ b/site/public/v1/smartphones/mi-8-se-standard-dual-sim-td-lte-cn-m1805e2a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5624, + "slug": "mi-8-se-standard-dual-sim-td-lte-cn-m1805e2a", + "name": "Mi 8 SE Standard Dual SIM TD-LTE CN M1805E2A", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2018-06-07", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.88, + "resolution": "1080x2244", + "type": "AM-OLED display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 3120, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 20.0, + "camera": 5.0, + "battery": 1.8, + "display": 47.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.916306", + "updated_at": "2026-06-19T00:43:44.916306" +} diff --git a/site/public/v1/smartphones/mi-8-se-standard-dual-sim-td-lte-cn-m1805e2a/score/index.json b/site/public/v1/smartphones/mi-8-se-standard-dual-sim-td-lte-cn-m1805e2a/score/index.json new file mode 100644 index 00000000000..719d90d3288 --- /dev/null +++ b/site/public/v1/smartphones/mi-8-se-standard-dual-sim-td-lte-cn-m1805e2a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 20.0, + "camera": 5.0, + "battery": 1.8, + "display": 47.4, + "value": null +} diff --git a/site/public/v1/smartphones/mi-8-ud-dual-sim-td-lte-m1807e8s/index.json b/site/public/v1/smartphones/mi-8-ud-dual-sim-td-lte-m1807e8s/index.json new file mode 100644 index 00000000000..77d16630c9c --- /dev/null +++ b/site/public/v1/smartphones/mi-8-ud-dual-sim-td-lte-m1807e8s/index.json @@ -0,0 +1,76 @@ +{ + "id": 5625, + "slug": "mi-8-ud-dual-sim-td-lte-m1807e8s", + "name": "Mi 8 UD Dual SIM TD-LTE M1807E8S", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-07-29", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2248", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.9, + "performance": 1.5, + "camera": 5.0, + "battery": 0.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.916306", + "updated_at": "2026-06-19T00:43:44.916306" +} diff --git a/site/public/v1/smartphones/mi-8-ud-dual-sim-td-lte-m1807e8s/score/index.json b/site/public/v1/smartphones/mi-8-ud-dual-sim-td-lte-m1807e8s/score/index.json new file mode 100644 index 00000000000..e9f8259eb68 --- /dev/null +++ b/site/public/v1/smartphones/mi-8-ud-dual-sim-td-lte-m1807e8s/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.9, + "performance": 1.5, + "camera": 5.0, + "battery": 0.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/mi-8-youth-premium-edition-dual-sim-td-lte-cn-128gb-m1808d2te-m1808d2tc/index.json b/site/public/v1/smartphones/mi-8-youth-premium-edition-dual-sim-td-lte-cn-128gb-m1808d2te-m1808d2tc/index.json new file mode 100644 index 00000000000..05709889ae1 --- /dev/null +++ b/site/public/v1/smartphones/mi-8-youth-premium-edition-dual-sim-td-lte-cn-128gb-m1808d2te-m1808d2tc/index.json @@ -0,0 +1,76 @@ +{ + "id": 5626, + "slug": "mi-8-youth-premium-edition-dual-sim-td-lte-cn-128gb-m1808d2te-m1808d2tc", + "name": "Mi 8 Youth Premium Edition Dual SIM TD-LTE CN 128GB M1808D2TE / M1808D2TC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3350, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.8, + "performance": 19.5, + "camera": 5.1, + "battery": 5.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.916306", + "updated_at": "2026-06-19T00:43:44.916306" +} diff --git a/site/public/v1/smartphones/mi-8-youth-premium-edition-dual-sim-td-lte-cn-128gb-m1808d2te-m1808d2tc/score/index.json b/site/public/v1/smartphones/mi-8-youth-premium-edition-dual-sim-td-lte-cn-128gb-m1808d2te-m1808d2tc/score/index.json new file mode 100644 index 00000000000..37b2636bb7d --- /dev/null +++ b/site/public/v1/smartphones/mi-8-youth-premium-edition-dual-sim-td-lte-cn-128gb-m1808d2te-m1808d2tc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.8, + "performance": 19.5, + "camera": 5.1, + "battery": 5.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-8-youth-premium-edition-dual-sim-td-lte-cn-128gb-m1808d2tt/index.json b/site/public/v1/smartphones/mi-8-youth-premium-edition-dual-sim-td-lte-cn-128gb-m1808d2tt/index.json new file mode 100644 index 00000000000..5b0a11ec679 --- /dev/null +++ b/site/public/v1/smartphones/mi-8-youth-premium-edition-dual-sim-td-lte-cn-128gb-m1808d2tt/index.json @@ -0,0 +1,76 @@ +{ + "id": 5627, + "slug": "mi-8-youth-premium-edition-dual-sim-td-lte-cn-128gb-m1808d2tt", + "name": "Mi 8 Youth Premium Edition Dual SIM TD-LTE CN 128GB M1808D2TT", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3350, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.8, + "performance": 19.5, + "camera": 5.1, + "battery": 5.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.916306", + "updated_at": "2026-06-19T00:43:44.916306" +} diff --git a/site/public/v1/smartphones/mi-8-youth-premium-edition-dual-sim-td-lte-cn-128gb-m1808d2tt/score/index.json b/site/public/v1/smartphones/mi-8-youth-premium-edition-dual-sim-td-lte-cn-128gb-m1808d2tt/score/index.json new file mode 100644 index 00000000000..37b2636bb7d --- /dev/null +++ b/site/public/v1/smartphones/mi-8-youth-premium-edition-dual-sim-td-lte-cn-128gb-m1808d2tt/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.8, + "performance": 19.5, + "camera": 5.1, + "battery": 5.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-8-youth-standard-edition-dual-sim-td-lte-cn-128gb-m1808d2te-m1808d2tc/index.json b/site/public/v1/smartphones/mi-8-youth-standard-edition-dual-sim-td-lte-cn-128gb-m1808d2te-m1808d2tc/index.json new file mode 100644 index 00000000000..26fd1e2b2c3 --- /dev/null +++ b/site/public/v1/smartphones/mi-8-youth-standard-edition-dual-sim-td-lte-cn-128gb-m1808d2te-m1808d2tc/index.json @@ -0,0 +1,76 @@ +{ + "id": 5628, + "slug": "mi-8-youth-standard-edition-dual-sim-td-lte-cn-128gb-m1808d2te-m1808d2tc", + "name": "Mi 8 Youth Standard Edition Dual SIM TD-LTE CN 128GB M1808D2TE / M1808D2TC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-11-16", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3350, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 18.0, + "camera": 5.1, + "battery": 5.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.917307", + "updated_at": "2026-06-19T00:43:44.917307" +} diff --git a/site/public/v1/smartphones/mi-8-youth-standard-edition-dual-sim-td-lte-cn-128gb-m1808d2te-m1808d2tc/score/index.json b/site/public/v1/smartphones/mi-8-youth-standard-edition-dual-sim-td-lte-cn-128gb-m1808d2te-m1808d2tc/score/index.json new file mode 100644 index 00000000000..ac7b44d3fa7 --- /dev/null +++ b/site/public/v1/smartphones/mi-8-youth-standard-edition-dual-sim-td-lte-cn-128gb-m1808d2te-m1808d2tc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 18.0, + "camera": 5.1, + "battery": 5.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-8-youth-standard-edition-dual-sim-td-lte-cn-64gb-m1808d2te-m1808d2tc/index.json b/site/public/v1/smartphones/mi-8-youth-standard-edition-dual-sim-td-lte-cn-64gb-m1808d2te-m1808d2tc/index.json new file mode 100644 index 00000000000..54e6c1a8ce2 --- /dev/null +++ b/site/public/v1/smartphones/mi-8-youth-standard-edition-dual-sim-td-lte-cn-64gb-m1808d2te-m1808d2tc/index.json @@ -0,0 +1,76 @@ +{ + "id": 5629, + "slug": "mi-8-youth-standard-edition-dual-sim-td-lte-cn-64gb-m1808d2te-m1808d2tc", + "name": "Mi 8 Youth Standard Edition Dual SIM TD-LTE CN 64GB M1808D2TE / M1808D2TC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3350, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 18.0, + "camera": 5.1, + "battery": 5.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.917307", + "updated_at": "2026-06-19T00:43:44.917307" +} diff --git a/site/public/v1/smartphones/mi-8-youth-standard-edition-dual-sim-td-lte-cn-64gb-m1808d2te-m1808d2tc/score/index.json b/site/public/v1/smartphones/mi-8-youth-standard-edition-dual-sim-td-lte-cn-64gb-m1808d2te-m1808d2tc/score/index.json new file mode 100644 index 00000000000..ac7b44d3fa7 --- /dev/null +++ b/site/public/v1/smartphones/mi-8-youth-standard-edition-dual-sim-td-lte-cn-64gb-m1808d2te-m1808d2tc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 18.0, + "camera": 5.1, + "battery": 5.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-9-global-dual-sim-td-lte-128gb-m1902f1g/index.json b/site/public/v1/smartphones/mi-9-global-dual-sim-td-lte-128gb-m1902f1g/index.json new file mode 100644 index 00000000000..2c710f9b7d5 --- /dev/null +++ b/site/public/v1/smartphones/mi-9-global-dual-sim-td-lte-128gb-m1902f1g/index.json @@ -0,0 +1,76 @@ +{ + "id": 5716, + "slug": "mi-9-global-dual-sim-td-lte-128gb-m1902f1g", + "name": "Mi 9 Global Dual SIM TD-LTE 128GB M1902F1G", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 1.5, + "camera": 16.5, + "battery": 6.8, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.926307", + "updated_at": "2026-06-19T00:43:44.926307" +} diff --git a/site/public/v1/smartphones/mi-9-global-dual-sim-td-lte-128gb-m1902f1g/score/index.json b/site/public/v1/smartphones/mi-9-global-dual-sim-td-lte-128gb-m1902f1g/score/index.json new file mode 100644 index 00000000000..107968aad9f --- /dev/null +++ b/site/public/v1/smartphones/mi-9-global-dual-sim-td-lte-128gb-m1902f1g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 1.5, + "camera": 16.5, + "battery": 6.8, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-9-global-dual-sim-td-lte-64gb-m1902f1g/index.json b/site/public/v1/smartphones/mi-9-global-dual-sim-td-lte-64gb-m1902f1g/index.json new file mode 100644 index 00000000000..93c9e5022e2 --- /dev/null +++ b/site/public/v1/smartphones/mi-9-global-dual-sim-td-lte-64gb-m1902f1g/index.json @@ -0,0 +1,76 @@ +{ + "id": 5717, + "slug": "mi-9-global-dual-sim-td-lte-64gb-m1902f1g", + "name": "Mi 9 Global Dual SIM TD-LTE 64GB M1902F1G", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 1.5, + "camera": 16.5, + "battery": 6.8, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.926307", + "updated_at": "2026-06-19T00:43:44.926307" +} diff --git a/site/public/v1/smartphones/mi-9-global-dual-sim-td-lte-64gb-m1902f1g/score/index.json b/site/public/v1/smartphones/mi-9-global-dual-sim-td-lte-64gb-m1902f1g/score/index.json new file mode 100644 index 00000000000..107968aad9f --- /dev/null +++ b/site/public/v1/smartphones/mi-9-global-dual-sim-td-lte-64gb-m1902f1g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 1.5, + "camera": 16.5, + "battery": 6.8, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-9-lite-global-dual-sim-td-lte-128gb-m1904f3bg/index.json b/site/public/v1/smartphones/mi-9-lite-global-dual-sim-td-lte-128gb-m1904f3bg/index.json new file mode 100644 index 00000000000..7c0d1e48991 --- /dev/null +++ b/site/public/v1/smartphones/mi-9-lite-global-dual-sim-td-lte-128gb-m1904f3bg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5718, + "slug": "mi-9-lite-global-dual-sim-td-lte-128gb-m1904f3bg", + "name": "Mi 9 Lite Global Dual SIM TD-LTE 128GB M1904F3BG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-09-26", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4030, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.8, + "performance": 21.5, + "camera": 16.5, + "battery": 16.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.926307", + "updated_at": "2026-06-19T00:43:44.926307" +} diff --git a/site/public/v1/smartphones/mi-9-lite-global-dual-sim-td-lte-128gb-m1904f3bg/score/index.json b/site/public/v1/smartphones/mi-9-lite-global-dual-sim-td-lte-128gb-m1904f3bg/score/index.json new file mode 100644 index 00000000000..7d23e8aaa56 --- /dev/null +++ b/site/public/v1/smartphones/mi-9-lite-global-dual-sim-td-lte-128gb-m1904f3bg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.8, + "performance": 21.5, + "camera": 16.5, + "battery": 16.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-9-lite-global-dual-sim-td-lte-64gb-m1904f3bg/index.json b/site/public/v1/smartphones/mi-9-lite-global-dual-sim-td-lte-64gb-m1904f3bg/index.json new file mode 100644 index 00000000000..748247f97c3 --- /dev/null +++ b/site/public/v1/smartphones/mi-9-lite-global-dual-sim-td-lte-64gb-m1904f3bg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5719, + "slug": "mi-9-lite-global-dual-sim-td-lte-64gb-m1904f3bg", + "name": "Mi 9 Lite Global Dual SIM TD-LTE 64GB M1904F3BG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-09-26", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4030, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.8, + "performance": 21.5, + "camera": 16.5, + "battery": 16.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.927307", + "updated_at": "2026-06-19T00:43:44.927307" +} diff --git a/site/public/v1/smartphones/mi-9-lite-global-dual-sim-td-lte-64gb-m1904f3bg/score/index.json b/site/public/v1/smartphones/mi-9-lite-global-dual-sim-td-lte-64gb-m1904f3bg/score/index.json new file mode 100644 index 00000000000..7d23e8aaa56 --- /dev/null +++ b/site/public/v1/smartphones/mi-9-lite-global-dual-sim-td-lte-64gb-m1904f3bg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.8, + "performance": 21.5, + "camera": 16.5, + "battery": 16.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-9-premium-edition-dual-sim-td-lte-cn-256gb-m1902f1a-m1902f1c/index.json b/site/public/v1/smartphones/mi-9-premium-edition-dual-sim-td-lte-cn-256gb-m1902f1a-m1902f1c/index.json new file mode 100644 index 00000000000..6d9496723b7 --- /dev/null +++ b/site/public/v1/smartphones/mi-9-premium-edition-dual-sim-td-lte-cn-256gb-m1902f1a-m1902f1c/index.json @@ -0,0 +1,76 @@ +{ + "id": 5720, + "slug": "mi-9-premium-edition-dual-sim-td-lte-cn-256gb-m1902f1a-m1902f1c", + "name": "Mi 9 Premium Edition Dual SIM TD-LTE CN 256GB M1902F1A / M1902F1C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-08-14", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": 3.0, + "camera": 16.5, + "battery": 6.8, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.927307", + "updated_at": "2026-06-19T00:43:44.927307" +} diff --git a/site/public/v1/smartphones/mi-9-premium-edition-dual-sim-td-lte-cn-256gb-m1902f1a-m1902f1c/score/index.json b/site/public/v1/smartphones/mi-9-premium-edition-dual-sim-td-lte-cn-256gb-m1902f1a-m1902f1c/score/index.json new file mode 100644 index 00000000000..3f736493e07 --- /dev/null +++ b/site/public/v1/smartphones/mi-9-premium-edition-dual-sim-td-lte-cn-256gb-m1902f1a-m1902f1c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": 3.0, + "camera": 16.5, + "battery": 6.8, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-9-premium-edition-dual-sim-td-lte-cn-m1902f1a-m1902f1c/index.json b/site/public/v1/smartphones/mi-9-premium-edition-dual-sim-td-lte-cn-m1902f1a-m1902f1c/index.json new file mode 100644 index 00000000000..5e6b12b8381 --- /dev/null +++ b/site/public/v1/smartphones/mi-9-premium-edition-dual-sim-td-lte-cn-m1902f1a-m1902f1c/index.json @@ -0,0 +1,76 @@ +{ + "id": 5721, + "slug": "mi-9-premium-edition-dual-sim-td-lte-cn-m1902f1a-m1902f1c", + "name": "Mi 9 Premium Edition Dual SIM TD-LTE CN M1902F1A / M1902F1C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-02-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": 3.0, + "camera": 16.5, + "battery": 6.8, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.927307", + "updated_at": "2026-06-19T00:43:44.927307" +} diff --git a/site/public/v1/smartphones/mi-9-premium-edition-dual-sim-td-lte-cn-m1902f1a-m1902f1c/score/index.json b/site/public/v1/smartphones/mi-9-premium-edition-dual-sim-td-lte-cn-m1902f1a-m1902f1c/score/index.json new file mode 100644 index 00000000000..3f736493e07 --- /dev/null +++ b/site/public/v1/smartphones/mi-9-premium-edition-dual-sim-td-lte-cn-m1902f1a-m1902f1c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": 3.0, + "camera": 16.5, + "battery": 6.8, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-9-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m1908f1xe/index.json b/site/public/v1/smartphones/mi-9-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m1908f1xe/index.json new file mode 100644 index 00000000000..53abf415924 --- /dev/null +++ b/site/public/v1/smartphones/mi-9-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m1908f1xe/index.json @@ -0,0 +1,76 @@ +{ + "id": 5722, + "slug": "mi-9-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m1908f1xe", + "name": "Mi 9 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB M1908F1XE", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 6.0, + "camera": 16.5, + "battery": 20.7, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.927307", + "updated_at": "2026-06-19T00:43:44.927307" +} diff --git a/site/public/v1/smartphones/mi-9-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m1908f1xe/score/index.json b/site/public/v1/smartphones/mi-9-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m1908f1xe/score/index.json new file mode 100644 index 00000000000..246602a539e --- /dev/null +++ b/site/public/v1/smartphones/mi-9-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m1908f1xe/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 6.0, + "camera": 16.5, + "battery": 20.7, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-9-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-m1908f1xe/index.json b/site/public/v1/smartphones/mi-9-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-m1908f1xe/index.json new file mode 100644 index 00000000000..ec84b1f0209 --- /dev/null +++ b/site/public/v1/smartphones/mi-9-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-m1908f1xe/index.json @@ -0,0 +1,76 @@ +{ + "id": 5723, + "slug": "mi-9-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-m1908f1xe", + "name": "Mi 9 Pro 5G Premium Edition Dual SIM TD-LTE CN 512GB M1908F1XE", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 6.0, + "camera": 16.5, + "battery": 20.7, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.927307", + "updated_at": "2026-06-19T00:43:44.927307" +} diff --git a/site/public/v1/smartphones/mi-9-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-m1908f1xe/score/index.json b/site/public/v1/smartphones/mi-9-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-m1908f1xe/score/index.json new file mode 100644 index 00000000000..246602a539e --- /dev/null +++ b/site/public/v1/smartphones/mi-9-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-m1908f1xe/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 6.0, + "camera": 16.5, + "battery": 20.7, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-9-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m1908f1xe/index.json b/site/public/v1/smartphones/mi-9-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m1908f1xe/index.json new file mode 100644 index 00000000000..aa6469a858f --- /dev/null +++ b/site/public/v1/smartphones/mi-9-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m1908f1xe/index.json @@ -0,0 +1,76 @@ +{ + "id": 5724, + "slug": "mi-9-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m1908f1xe", + "name": "Mi 9 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB M1908F1XE", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 3.0, + "camera": 16.5, + "battery": 20.7, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.927307", + "updated_at": "2026-06-19T00:43:44.927307" +} diff --git a/site/public/v1/smartphones/mi-9-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m1908f1xe/score/index.json b/site/public/v1/smartphones/mi-9-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m1908f1xe/score/index.json new file mode 100644 index 00000000000..03efd7ad32b --- /dev/null +++ b/site/public/v1/smartphones/mi-9-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m1908f1xe/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 3.0, + "camera": 16.5, + "battery": 20.7, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-9-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m1908f1xe/index.json b/site/public/v1/smartphones/mi-9-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m1908f1xe/index.json new file mode 100644 index 00000000000..f7f8ef971f9 --- /dev/null +++ b/site/public/v1/smartphones/mi-9-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m1908f1xe/index.json @@ -0,0 +1,76 @@ +{ + "id": 5725, + "slug": "mi-9-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m1908f1xe", + "name": "Mi 9 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB M1908F1XE", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 3.0, + "camera": 16.5, + "battery": 20.7, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.927307", + "updated_at": "2026-06-19T00:43:44.927307" +} diff --git a/site/public/v1/smartphones/mi-9-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m1908f1xe/score/index.json b/site/public/v1/smartphones/mi-9-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m1908f1xe/score/index.json new file mode 100644 index 00000000000..03efd7ad32b --- /dev/null +++ b/site/public/v1/smartphones/mi-9-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-m1908f1xe/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 3.0, + "camera": 16.5, + "battery": 20.7, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-9-se-dual-sim-td-lte-cn-m1903f2a-128gb/index.json b/site/public/v1/smartphones/mi-9-se-dual-sim-td-lte-cn-m1903f2a-128gb/index.json new file mode 100644 index 00000000000..e8351f6e6d5 --- /dev/null +++ b/site/public/v1/smartphones/mi-9-se-dual-sim-td-lte-cn-m1903f2a-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5727, + "slug": "mi-9-se-dual-sim-td-lte-cn-m1903f2a-128gb", + "name": "Mi 9 SE Dual SIM TD-LTE CN M1903F2A 128GB", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2019-03-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.97, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 3070, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 155.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 1.5, + "camera": 16.5, + "battery": 1.6, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.928307", + "updated_at": "2026-06-19T00:43:44.928307" +} diff --git a/site/public/v1/smartphones/mi-9-se-dual-sim-td-lte-cn-m1903f2a-128gb/score/index.json b/site/public/v1/smartphones/mi-9-se-dual-sim-td-lte-cn-m1903f2a-128gb/score/index.json new file mode 100644 index 00000000000..286774b979e --- /dev/null +++ b/site/public/v1/smartphones/mi-9-se-dual-sim-td-lte-cn-m1903f2a-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 1.5, + "camera": 16.5, + "battery": 1.6, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/mi-9-se-dual-sim-td-lte-cn-m1903f2a-64gb/index.json b/site/public/v1/smartphones/mi-9-se-dual-sim-td-lte-cn-m1903f2a-64gb/index.json new file mode 100644 index 00000000000..bc246631a46 --- /dev/null +++ b/site/public/v1/smartphones/mi-9-se-dual-sim-td-lte-cn-m1903f2a-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5728, + "slug": "mi-9-se-dual-sim-td-lte-cn-m1903f2a-64gb", + "name": "Mi 9 SE Dual SIM TD-LTE CN M1903F2A 64GB", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2019-03-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.97, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 3070, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 155.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 1.5, + "camera": 16.5, + "battery": 1.6, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.928307", + "updated_at": "2026-06-19T00:43:44.928307" +} diff --git a/site/public/v1/smartphones/mi-9-se-dual-sim-td-lte-cn-m1903f2a-64gb/score/index.json b/site/public/v1/smartphones/mi-9-se-dual-sim-td-lte-cn-m1903f2a-64gb/score/index.json new file mode 100644 index 00000000000..286774b979e --- /dev/null +++ b/site/public/v1/smartphones/mi-9-se-dual-sim-td-lte-cn-m1903f2a-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 1.5, + "camera": 16.5, + "battery": 1.6, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/mi-9-se-global-dual-sim-td-lte-m1903f2g-128gb-mi-9-lite/index.json b/site/public/v1/smartphones/mi-9-se-global-dual-sim-td-lte-m1903f2g-128gb-mi-9-lite/index.json new file mode 100644 index 00000000000..19fd0e80b20 --- /dev/null +++ b/site/public/v1/smartphones/mi-9-se-global-dual-sim-td-lte-m1903f2g-128gb-mi-9-lite/index.json @@ -0,0 +1,76 @@ +{ + "id": 5729, + "slug": "mi-9-se-global-dual-sim-td-lte-m1903f2g-128gb-mi-9-lite", + "name": "Mi 9 SE Global Dual SIM TD-LTE M1903F2G 128GB / Mi 9 Lite", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2019-04-16", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.97, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 3070, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 155.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 1.5, + "camera": 16.5, + "battery": 1.6, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.928307", + "updated_at": "2026-06-19T00:43:44.928307" +} diff --git a/site/public/v1/smartphones/mi-9-se-global-dual-sim-td-lte-m1903f2g-128gb-mi-9-lite/score/index.json b/site/public/v1/smartphones/mi-9-se-global-dual-sim-td-lte-m1903f2g-128gb-mi-9-lite/score/index.json new file mode 100644 index 00000000000..286774b979e --- /dev/null +++ b/site/public/v1/smartphones/mi-9-se-global-dual-sim-td-lte-m1903f2g-128gb-mi-9-lite/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 1.5, + "camera": 16.5, + "battery": 1.6, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/mi-9-se-global-dual-sim-td-lte-m1903f2g-64gb/index.json b/site/public/v1/smartphones/mi-9-se-global-dual-sim-td-lte-m1903f2g-64gb/index.json new file mode 100644 index 00000000000..896781fbcd0 --- /dev/null +++ b/site/public/v1/smartphones/mi-9-se-global-dual-sim-td-lte-m1903f2g-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5730, + "slug": "mi-9-se-global-dual-sim-td-lte-m1903f2g-64gb", + "name": "Mi 9 SE Global Dual SIM TD-LTE M1903F2G 64GB", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2019-04-18", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.97, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 3070, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 155.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 1.5, + "camera": 16.5, + "battery": 1.6, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.928307", + "updated_at": "2026-06-19T00:43:44.928307" +} diff --git a/site/public/v1/smartphones/mi-9-se-global-dual-sim-td-lte-m1903f2g-64gb/score/index.json b/site/public/v1/smartphones/mi-9-se-global-dual-sim-td-lte-m1903f2g-64gb/score/index.json new file mode 100644 index 00000000000..286774b979e --- /dev/null +++ b/site/public/v1/smartphones/mi-9-se-global-dual-sim-td-lte-m1903f2g-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 1.5, + "camera": 16.5, + "battery": 1.6, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/mi-9-standard-edition-dual-sim-td-lte-cn-m1902f1a-m1902f1c/index.json b/site/public/v1/smartphones/mi-9-standard-edition-dual-sim-td-lte-cn-m1902f1a-m1902f1c/index.json new file mode 100644 index 00000000000..3dc9687ff5c --- /dev/null +++ b/site/public/v1/smartphones/mi-9-standard-edition-dual-sim-td-lte-cn-m1902f1a-m1902f1c/index.json @@ -0,0 +1,76 @@ +{ + "id": 5731, + "slug": "mi-9-standard-edition-dual-sim-td-lte-cn-m1902f1a-m1902f1c", + "name": "Mi 9 Standard Edition Dual SIM TD-LTE CN M1902F1A / M1902F1C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-02-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 1.5, + "camera": 16.5, + "battery": 6.8, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.928307", + "updated_at": "2026-06-19T00:43:44.928307" +} diff --git a/site/public/v1/smartphones/mi-9-standard-edition-dual-sim-td-lte-cn-m1902f1a-m1902f1c/score/index.json b/site/public/v1/smartphones/mi-9-standard-edition-dual-sim-td-lte-cn-m1902f1a-m1902f1c/score/index.json new file mode 100644 index 00000000000..107968aad9f --- /dev/null +++ b/site/public/v1/smartphones/mi-9-standard-edition-dual-sim-td-lte-cn-m1902f1a-m1902f1c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 1.5, + "camera": 16.5, + "battery": 6.8, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-9-standard-edition-dual-sim-td-lte-cn-m1902f1t/index.json b/site/public/v1/smartphones/mi-9-standard-edition-dual-sim-td-lte-cn-m1902f1t/index.json new file mode 100644 index 00000000000..e679c52c85d --- /dev/null +++ b/site/public/v1/smartphones/mi-9-standard-edition-dual-sim-td-lte-cn-m1902f1t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5732, + "slug": "mi-9-standard-edition-dual-sim-td-lte-cn-m1902f1t", + "name": "Mi 9 Standard Edition Dual SIM TD-LTE CN M1902F1T", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-02-28", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 1.5, + "camera": 16.5, + "battery": 6.8, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.928307", + "updated_at": "2026-06-19T00:43:44.928307" +} diff --git a/site/public/v1/smartphones/mi-9-standard-edition-dual-sim-td-lte-cn-m1902f1t/score/index.json b/site/public/v1/smartphones/mi-9-standard-edition-dual-sim-td-lte-cn-m1902f1t/score/index.json new file mode 100644 index 00000000000..107968aad9f --- /dev/null +++ b/site/public/v1/smartphones/mi-9-standard-edition-dual-sim-td-lte-cn-m1902f1t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 1.5, + "camera": 16.5, + "battery": 6.8, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-9-transparent-premium-edition-dual-sim-td-lte-cn-256gb-m1902f1a/index.json b/site/public/v1/smartphones/mi-9-transparent-premium-edition-dual-sim-td-lte-cn-256gb-m1902f1a/index.json new file mode 100644 index 00000000000..a7a5a254d0d --- /dev/null +++ b/site/public/v1/smartphones/mi-9-transparent-premium-edition-dual-sim-td-lte-cn-256gb-m1902f1a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5733, + "slug": "mi-9-transparent-premium-edition-dual-sim-td-lte-cn-256gb-m1902f1a", + "name": "Mi 9 Transparent Premium Edition Dual SIM TD-LTE CN 256GB M1902F1A", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 6.0, + "camera": 16.5, + "battery": 6.8, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.928307", + "updated_at": "2026-06-19T00:43:44.928307" +} diff --git a/site/public/v1/smartphones/mi-9-transparent-premium-edition-dual-sim-td-lte-cn-256gb-m1902f1a/score/index.json b/site/public/v1/smartphones/mi-9-transparent-premium-edition-dual-sim-td-lte-cn-256gb-m1902f1a/score/index.json new file mode 100644 index 00000000000..ae952f8ed89 --- /dev/null +++ b/site/public/v1/smartphones/mi-9-transparent-premium-edition-dual-sim-td-lte-cn-256gb-m1902f1a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 6.0, + "camera": 16.5, + "battery": 6.8, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-9-transparent-standard-edition-dual-sim-td-lte-cn-256gb-m1902f1a/index.json b/site/public/v1/smartphones/mi-9-transparent-standard-edition-dual-sim-td-lte-cn-256gb-m1902f1a/index.json new file mode 100644 index 00000000000..84f96022aca --- /dev/null +++ b/site/public/v1/smartphones/mi-9-transparent-standard-edition-dual-sim-td-lte-cn-256gb-m1902f1a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5734, + "slug": "mi-9-transparent-standard-edition-dual-sim-td-lte-cn-256gb-m1902f1a", + "name": "Mi 9 Transparent Standard Edition Dual SIM TD-LTE CN 256GB M1902F1A", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-22", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": 3.0, + "camera": 16.5, + "battery": 6.8, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.928307", + "updated_at": "2026-06-19T00:43:44.928307" +} diff --git a/site/public/v1/smartphones/mi-9-transparent-standard-edition-dual-sim-td-lte-cn-256gb-m1902f1a/score/index.json b/site/public/v1/smartphones/mi-9-transparent-standard-edition-dual-sim-td-lte-cn-256gb-m1902f1a/score/index.json new file mode 100644 index 00000000000..3f736493e07 --- /dev/null +++ b/site/public/v1/smartphones/mi-9-transparent-standard-edition-dual-sim-td-lte-cn-256gb-m1902f1a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": 3.0, + "camera": 16.5, + "battery": 6.8, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-9t-global-dual-sim-td-lte-128gb-m1903f10g/index.json b/site/public/v1/smartphones/mi-9t-global-dual-sim-td-lte-128gb-m1903f10g/index.json new file mode 100644 index 00000000000..cf6f8c39044 --- /dev/null +++ b/site/public/v1/smartphones/mi-9t-global-dual-sim-td-lte-128gb-m1903f10g/index.json @@ -0,0 +1,76 @@ +{ + "id": 5735, + "slug": "mi-9t-global-dual-sim-td-lte-128gb-m1903f10g", + "name": "Mi 9T Global Dual SIM TD-LTE 128GB M1903F10G", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.928307", + "updated_at": "2026-06-19T00:43:44.928307" +} diff --git a/site/public/v1/smartphones/mi-9t-global-dual-sim-td-lte-128gb-m1903f10g/score/index.json b/site/public/v1/smartphones/mi-9t-global-dual-sim-td-lte-128gb-m1903f10g/score/index.json new file mode 100644 index 00000000000..cd3a8b6de7a --- /dev/null +++ b/site/public/v1/smartphones/mi-9t-global-dual-sim-td-lte-128gb-m1903f10g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-9t-global-dual-sim-td-lte-64gb-m1903f10g/index.json b/site/public/v1/smartphones/mi-9t-global-dual-sim-td-lte-64gb-m1903f10g/index.json new file mode 100644 index 00000000000..0fb583e8efb --- /dev/null +++ b/site/public/v1/smartphones/mi-9t-global-dual-sim-td-lte-64gb-m1903f10g/index.json @@ -0,0 +1,76 @@ +{ + "id": 5736, + "slug": "mi-9t-global-dual-sim-td-lte-64gb-m1903f10g", + "name": "Mi 9T Global Dual SIM TD-LTE 64GB M1903F10G", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.928307", + "updated_at": "2026-06-19T00:43:44.928307" +} diff --git a/site/public/v1/smartphones/mi-9t-global-dual-sim-td-lte-64gb-m1903f10g/score/index.json b/site/public/v1/smartphones/mi-9t-global-dual-sim-td-lte-64gb-m1903f10g/score/index.json new file mode 100644 index 00000000000..cd3a8b6de7a --- /dev/null +++ b/site/public/v1/smartphones/mi-9t-global-dual-sim-td-lte-64gb-m1903f10g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-9t-pro-global-dual-sim-td-lte-128gb-m1903f11g/index.json b/site/public/v1/smartphones/mi-9t-pro-global-dual-sim-td-lte-128gb-m1903f11g/index.json new file mode 100644 index 00000000000..69596c3b9c2 --- /dev/null +++ b/site/public/v1/smartphones/mi-9t-pro-global-dual-sim-td-lte-128gb-m1903f11g/index.json @@ -0,0 +1,76 @@ +{ + "id": 5737, + "slug": "mi-9t-pro-global-dual-sim-td-lte-128gb-m1903f11g", + "name": "Mi 9T Pro Global Dual SIM TD-LTE 128GB M1903F11G", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.929307", + "updated_at": "2026-06-19T00:43:44.929307" +} diff --git a/site/public/v1/smartphones/mi-9t-pro-global-dual-sim-td-lte-128gb-m1903f11g/score/index.json b/site/public/v1/smartphones/mi-9t-pro-global-dual-sim-td-lte-128gb-m1903f11g/score/index.json new file mode 100644 index 00000000000..a3b77af19b0 --- /dev/null +++ b/site/public/v1/smartphones/mi-9t-pro-global-dual-sim-td-lte-128gb-m1903f11g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-9t-pro-global-dual-sim-td-lte-64gb-m1903f11g/index.json b/site/public/v1/smartphones/mi-9t-pro-global-dual-sim-td-lte-64gb-m1903f11g/index.json new file mode 100644 index 00000000000..68d561a7a5d --- /dev/null +++ b/site/public/v1/smartphones/mi-9t-pro-global-dual-sim-td-lte-64gb-m1903f11g/index.json @@ -0,0 +1,76 @@ +{ + "id": 5738, + "slug": "mi-9t-pro-global-dual-sim-td-lte-64gb-m1903f11g", + "name": "Mi 9T Pro Global Dual SIM TD-LTE 64GB M1903F11G", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.929307", + "updated_at": "2026-06-19T00:43:44.929307" +} diff --git a/site/public/v1/smartphones/mi-9t-pro-global-dual-sim-td-lte-64gb-m1903f11g/score/index.json b/site/public/v1/smartphones/mi-9t-pro-global-dual-sim-td-lte-64gb-m1903f11g/score/index.json new file mode 100644 index 00000000000..a3b77af19b0 --- /dev/null +++ b/site/public/v1/smartphones/mi-9t-pro-global-dual-sim-td-lte-64gb-m1903f11g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-a2-dual-sim-global-td-lte-128gb-m1804d2sg/index.json b/site/public/v1/smartphones/mi-a2-dual-sim-global-td-lte-128gb-m1804d2sg/index.json new file mode 100644 index 00000000000..3b39879d511 --- /dev/null +++ b/site/public/v1/smartphones/mi-a2-dual-sim-global-td-lte-128gb-m1804d2sg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5630, + "slug": "mi-a2-dual-sim-global-td-lte-128gb-m1804d2sg", + "name": "Mi A2 Dual SIM Global TD-LTE 128GB M1804D2SG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-07-27", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 20.0 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "battery_mah": 3010, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 19.5, + "camera": 7.6, + "battery": 0.1, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.917307", + "updated_at": "2026-06-19T00:43:44.917307" +} diff --git a/site/public/v1/smartphones/mi-a2-dual-sim-global-td-lte-128gb-m1804d2sg/score/index.json b/site/public/v1/smartphones/mi-a2-dual-sim-global-td-lte-128gb-m1804d2sg/score/index.json new file mode 100644 index 00000000000..5795280f735 --- /dev/null +++ b/site/public/v1/smartphones/mi-a2-dual-sim-global-td-lte-128gb-m1804d2sg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 19.5, + "camera": 7.6, + "battery": 0.1, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-a2-dual-sim-global-td-lte-32gb-m1804d2sg/index.json b/site/public/v1/smartphones/mi-a2-dual-sim-global-td-lte-32gb-m1804d2sg/index.json new file mode 100644 index 00000000000..03f3bf5bcda --- /dev/null +++ b/site/public/v1/smartphones/mi-a2-dual-sim-global-td-lte-32gb-m1804d2sg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5631, + "slug": "mi-a2-dual-sim-global-td-lte-32gb-m1804d2sg", + "name": "Mi A2 Dual SIM Global TD-LTE 32GB M1804D2SG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-07-27", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 20.0 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "battery_mah": 3010, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 18.0, + "camera": 7.6, + "battery": 0.1, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.917307", + "updated_at": "2026-06-19T00:43:44.917307" +} diff --git a/site/public/v1/smartphones/mi-a2-dual-sim-global-td-lte-32gb-m1804d2sg/score/index.json b/site/public/v1/smartphones/mi-a2-dual-sim-global-td-lte-32gb-m1804d2sg/score/index.json new file mode 100644 index 00000000000..e24ed304a26 --- /dev/null +++ b/site/public/v1/smartphones/mi-a2-dual-sim-global-td-lte-32gb-m1804d2sg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 18.0, + "camera": 7.6, + "battery": 0.1, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-a2-dual-sim-global-td-lte-64gb-m1804d2sg/index.json b/site/public/v1/smartphones/mi-a2-dual-sim-global-td-lte-64gb-m1804d2sg/index.json new file mode 100644 index 00000000000..f2113c4bf49 --- /dev/null +++ b/site/public/v1/smartphones/mi-a2-dual-sim-global-td-lte-64gb-m1804d2sg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5632, + "slug": "mi-a2-dual-sim-global-td-lte-64gb-m1804d2sg", + "name": "Mi A2 Dual SIM Global TD-LTE 64GB M1804D2SG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-07-27", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 20.0 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "battery_mah": 3010, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 18.0, + "camera": 7.6, + "battery": 0.1, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.917307", + "updated_at": "2026-06-19T00:43:44.917307" +} diff --git a/site/public/v1/smartphones/mi-a2-dual-sim-global-td-lte-64gb-m1804d2sg/score/index.json b/site/public/v1/smartphones/mi-a2-dual-sim-global-td-lte-64gb-m1804d2sg/score/index.json new file mode 100644 index 00000000000..e24ed304a26 --- /dev/null +++ b/site/public/v1/smartphones/mi-a2-dual-sim-global-td-lte-64gb-m1804d2sg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 18.0, + "camera": 7.6, + "battery": 0.1, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-a2-lite-premium-edition-global-dual-sim-td-lte-32gb-m1805d1sg/index.json b/site/public/v1/smartphones/mi-a2-lite-premium-edition-global-dual-sim-td-lte-32gb-m1805d1sg/index.json new file mode 100644 index 00000000000..4b7730ef5f7 --- /dev/null +++ b/site/public/v1/smartphones/mi-a2-lite-premium-edition-global-dual-sim-td-lte-32gb-m1805d1sg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5633, + "slug": "mi-a2-lite-premium-edition-global-dual-sim-td-lte-32gb-m1805d1sg", + "name": "Mi A2 Lite Premium Edition Global Dual SIM TD-LTE 32GB M1805D1SG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 114, + "slug": "snapdragon-625", + "name": "Snapdragon 625", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-625" + }, + "release_date": "2018-07-27", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": null, + "camera": 5.1, + "battery": 15.0, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.917307", + "updated_at": "2026-06-19T00:43:44.917307" +} diff --git a/site/public/v1/smartphones/mi-a2-lite-premium-edition-global-dual-sim-td-lte-32gb-m1805d1sg/score/index.json b/site/public/v1/smartphones/mi-a2-lite-premium-edition-global-dual-sim-td-lte-32gb-m1805d1sg/score/index.json new file mode 100644 index 00000000000..e87beadf09c --- /dev/null +++ b/site/public/v1/smartphones/mi-a2-lite-premium-edition-global-dual-sim-td-lte-32gb-m1805d1sg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": null, + "camera": 5.1, + "battery": 15.0, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/mi-a2-lite-premium-edition-global-dual-sim-td-lte-64gb-m1805d1sg/index.json b/site/public/v1/smartphones/mi-a2-lite-premium-edition-global-dual-sim-td-lte-64gb-m1805d1sg/index.json new file mode 100644 index 00000000000..e492f08ca66 --- /dev/null +++ b/site/public/v1/smartphones/mi-a2-lite-premium-edition-global-dual-sim-td-lte-64gb-m1805d1sg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5634, + "slug": "mi-a2-lite-premium-edition-global-dual-sim-td-lte-64gb-m1805d1sg", + "name": "Mi A2 Lite Premium Edition Global Dual SIM TD-LTE 64GB M1805D1SG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 114, + "slug": "snapdragon-625", + "name": "Snapdragon 625", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-625" + }, + "release_date": "2018-07-27", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": null, + "camera": 5.1, + "battery": 15.0, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.917307", + "updated_at": "2026-06-19T00:43:44.917307" +} diff --git a/site/public/v1/smartphones/mi-a2-lite-premium-edition-global-dual-sim-td-lte-64gb-m1805d1sg/score/index.json b/site/public/v1/smartphones/mi-a2-lite-premium-edition-global-dual-sim-td-lte-64gb-m1805d1sg/score/index.json new file mode 100644 index 00000000000..e87beadf09c --- /dev/null +++ b/site/public/v1/smartphones/mi-a2-lite-premium-edition-global-dual-sim-td-lte-64gb-m1805d1sg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": null, + "camera": 5.1, + "battery": 15.0, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/mi-a2-lite-standard-edition-global-dual-sim-td-lte-32gb-m1805d1sg/index.json b/site/public/v1/smartphones/mi-a2-lite-standard-edition-global-dual-sim-td-lte-32gb-m1805d1sg/index.json new file mode 100644 index 00000000000..879623e02f0 --- /dev/null +++ b/site/public/v1/smartphones/mi-a2-lite-standard-edition-global-dual-sim-td-lte-32gb-m1805d1sg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5635, + "slug": "mi-a2-lite-standard-edition-global-dual-sim-td-lte-32gb-m1805d1sg", + "name": "Mi A2 Lite Standard Edition Global Dual SIM TD-LTE 32GB M1805D1SG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 114, + "slug": "snapdragon-625", + "name": "Snapdragon 625", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-625" + }, + "release_date": "2018-07-27", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": null, + "camera": 5.1, + "battery": 15.0, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.917307", + "updated_at": "2026-06-19T00:43:44.917307" +} diff --git a/site/public/v1/smartphones/mi-a2-lite-standard-edition-global-dual-sim-td-lte-32gb-m1805d1sg/score/index.json b/site/public/v1/smartphones/mi-a2-lite-standard-edition-global-dual-sim-td-lte-32gb-m1805d1sg/score/index.json new file mode 100644 index 00000000000..e87beadf09c --- /dev/null +++ b/site/public/v1/smartphones/mi-a2-lite-standard-edition-global-dual-sim-td-lte-32gb-m1805d1sg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": null, + "camera": 5.1, + "battery": 15.0, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/mi-a3-dual-sim-td-lte-in-128gb-m1906f9si/index.json b/site/public/v1/smartphones/mi-a3-dual-sim-td-lte-in-128gb-m1906f9si/index.json new file mode 100644 index 00000000000..cea2955b3c1 --- /dev/null +++ b/site/public/v1/smartphones/mi-a3-dual-sim-td-lte-in-128gb-m1906f9si/index.json @@ -0,0 +1,76 @@ +{ + "id": 5739, + "slug": "mi-a3-dual-sim-td-lte-in-128gb-m1906f9si", + "name": "Mi A3 Dual SIM TD-LTE IN 128GB M1906F9SI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-08-23", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4030, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 173.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 1.5, + "camera": 16.5, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.929307", + "updated_at": "2026-06-19T00:43:44.929307" +} diff --git a/site/public/v1/smartphones/mi-a3-dual-sim-td-lte-in-128gb-m1906f9si/score/index.json b/site/public/v1/smartphones/mi-a3-dual-sim-td-lte-in-128gb-m1906f9si/score/index.json new file mode 100644 index 00000000000..cc3be6aa7a8 --- /dev/null +++ b/site/public/v1/smartphones/mi-a3-dual-sim-td-lte-in-128gb-m1906f9si/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 1.5, + "camera": 16.5, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/mi-a3-dual-sim-td-lte-in-64gb-m1906f9si/index.json b/site/public/v1/smartphones/mi-a3-dual-sim-td-lte-in-64gb-m1906f9si/index.json new file mode 100644 index 00000000000..ef4da808249 --- /dev/null +++ b/site/public/v1/smartphones/mi-a3-dual-sim-td-lte-in-64gb-m1906f9si/index.json @@ -0,0 +1,76 @@ +{ + "id": 5740, + "slug": "mi-a3-dual-sim-td-lte-in-64gb-m1906f9si", + "name": "Mi A3 Dual SIM TD-LTE IN 64GB M1906F9SI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-08-23", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4030, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 173.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 0.0, + "camera": 16.5, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.929307", + "updated_at": "2026-06-19T00:43:44.929307" +} diff --git a/site/public/v1/smartphones/mi-a3-dual-sim-td-lte-in-64gb-m1906f9si/score/index.json b/site/public/v1/smartphones/mi-a3-dual-sim-td-lte-in-64gb-m1906f9si/score/index.json new file mode 100644 index 00000000000..b371b0736d8 --- /dev/null +++ b/site/public/v1/smartphones/mi-a3-dual-sim-td-lte-in-64gb-m1906f9si/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 0.0, + "camera": 16.5, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/mi-a3-global-dual-sim-td-lte-128gb-m1906f9sh/index.json b/site/public/v1/smartphones/mi-a3-global-dual-sim-td-lte-128gb-m1906f9sh/index.json new file mode 100644 index 00000000000..017e8ea53e2 --- /dev/null +++ b/site/public/v1/smartphones/mi-a3-global-dual-sim-td-lte-128gb-m1906f9sh/index.json @@ -0,0 +1,76 @@ +{ + "id": 5741, + "slug": "mi-a3-global-dual-sim-td-lte-128gb-m1906f9sh", + "name": "Mi A3 Global Dual SIM TD-LTE 128GB M1906F9SH", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-07-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4030, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 173.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 0.0, + "camera": 16.5, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.929307", + "updated_at": "2026-06-19T00:43:44.929307" +} diff --git a/site/public/v1/smartphones/mi-a3-global-dual-sim-td-lte-128gb-m1906f9sh/score/index.json b/site/public/v1/smartphones/mi-a3-global-dual-sim-td-lte-128gb-m1906f9sh/score/index.json new file mode 100644 index 00000000000..b371b0736d8 --- /dev/null +++ b/site/public/v1/smartphones/mi-a3-global-dual-sim-td-lte-128gb-m1906f9sh/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 0.0, + "camera": 16.5, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/mi-a3-global-dual-sim-td-lte-64gb-m1906f9sh/index.json b/site/public/v1/smartphones/mi-a3-global-dual-sim-td-lte-64gb-m1906f9sh/index.json new file mode 100644 index 00000000000..5d6e24035d9 --- /dev/null +++ b/site/public/v1/smartphones/mi-a3-global-dual-sim-td-lte-64gb-m1906f9sh/index.json @@ -0,0 +1,76 @@ +{ + "id": 5742, + "slug": "mi-a3-global-dual-sim-td-lte-64gb-m1906f9sh", + "name": "Mi A3 Global Dual SIM TD-LTE 64GB M1906F9SH", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-07-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4030, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 173.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 0.0, + "camera": 16.5, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.929307", + "updated_at": "2026-06-19T00:43:44.929307" +} diff --git a/site/public/v1/smartphones/mi-a3-global-dual-sim-td-lte-64gb-m1906f9sh/score/index.json b/site/public/v1/smartphones/mi-a3-global-dual-sim-td-lte-64gb-m1906f9sh/score/index.json new file mode 100644 index 00000000000..b371b0736d8 --- /dev/null +++ b/site/public/v1/smartphones/mi-a3-global-dual-sim-td-lte-64gb-m1906f9sh/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 0.0, + "camera": 16.5, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/mi-cc9-dual-sim-td-lte-cn-m1904f3bc-128gb/index.json b/site/public/v1/smartphones/mi-cc9-dual-sim-td-lte-cn-m1904f3bc-128gb/index.json new file mode 100644 index 00000000000..8eb4d1f941f --- /dev/null +++ b/site/public/v1/smartphones/mi-cc9-dual-sim-td-lte-cn-m1904f3bc-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5743, + "slug": "mi-cc9-dual-sim-td-lte-cn-m1904f3bc-128gb", + "name": "Mi CC9 Dual SIM TD-LTE CN M1904F3BC 128GB", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4030, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.8, + "performance": 21.5, + "camera": 16.5, + "battery": 16.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.929307", + "updated_at": "2026-06-19T00:43:44.929307" +} diff --git a/site/public/v1/smartphones/mi-cc9-dual-sim-td-lte-cn-m1904f3bc-128gb/score/index.json b/site/public/v1/smartphones/mi-cc9-dual-sim-td-lte-cn-m1904f3bc-128gb/score/index.json new file mode 100644 index 00000000000..7d23e8aaa56 --- /dev/null +++ b/site/public/v1/smartphones/mi-cc9-dual-sim-td-lte-cn-m1904f3bc-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.8, + "performance": 21.5, + "camera": 16.5, + "battery": 16.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-cc9-dual-sim-td-lte-cn-m1904f3bc-64gb/index.json b/site/public/v1/smartphones/mi-cc9-dual-sim-td-lte-cn-m1904f3bc-64gb/index.json new file mode 100644 index 00000000000..7f79013de09 --- /dev/null +++ b/site/public/v1/smartphones/mi-cc9-dual-sim-td-lte-cn-m1904f3bc-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5744, + "slug": "mi-cc9-dual-sim-td-lte-cn-m1904f3bc-64gb", + "name": "Mi CC9 Dual SIM TD-LTE CN M1904F3BC 64GB", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4030, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.8, + "performance": 21.5, + "camera": 16.5, + "battery": 16.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.929307", + "updated_at": "2026-06-19T00:43:44.929307" +} diff --git a/site/public/v1/smartphones/mi-cc9-dual-sim-td-lte-cn-m1904f3bc-64gb/score/index.json b/site/public/v1/smartphones/mi-cc9-dual-sim-td-lte-cn-m1904f3bc-64gb/score/index.json new file mode 100644 index 00000000000..7d23e8aaa56 --- /dev/null +++ b/site/public/v1/smartphones/mi-cc9-dual-sim-td-lte-cn-m1904f3bc-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.8, + "performance": 21.5, + "camera": 16.5, + "battery": 16.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-cc9-dual-sim-td-lte-cn-m1904f3bt-128gb/index.json b/site/public/v1/smartphones/mi-cc9-dual-sim-td-lte-cn-m1904f3bt-128gb/index.json new file mode 100644 index 00000000000..fa7c4f2ac38 --- /dev/null +++ b/site/public/v1/smartphones/mi-cc9-dual-sim-td-lte-cn-m1904f3bt-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5745, + "slug": "mi-cc9-dual-sim-td-lte-cn-m1904f3bt-128gb", + "name": "Mi CC9 Dual SIM TD-LTE CN M1904F3BT 128GB", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4030, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.8, + "performance": 21.5, + "camera": 16.5, + "battery": 16.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.929307", + "updated_at": "2026-06-19T00:43:44.929307" +} diff --git a/site/public/v1/smartphones/mi-cc9-dual-sim-td-lte-cn-m1904f3bt-128gb/score/index.json b/site/public/v1/smartphones/mi-cc9-dual-sim-td-lte-cn-m1904f3bt-128gb/score/index.json new file mode 100644 index 00000000000..7d23e8aaa56 --- /dev/null +++ b/site/public/v1/smartphones/mi-cc9-dual-sim-td-lte-cn-m1904f3bt-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.8, + "performance": 21.5, + "camera": 16.5, + "battery": 16.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-cc9-dual-sim-td-lte-cn-m1904f3bt-64gb/index.json b/site/public/v1/smartphones/mi-cc9-dual-sim-td-lte-cn-m1904f3bt-64gb/index.json new file mode 100644 index 00000000000..a9f0bccbfc4 --- /dev/null +++ b/site/public/v1/smartphones/mi-cc9-dual-sim-td-lte-cn-m1904f3bt-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5746, + "slug": "mi-cc9-dual-sim-td-lte-cn-m1904f3bt-64gb", + "name": "Mi CC9 Dual SIM TD-LTE CN M1904F3BT 64GB", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4030, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.8, + "performance": 21.5, + "camera": 16.5, + "battery": 16.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.930307", + "updated_at": "2026-06-19T00:43:44.930307" +} diff --git a/site/public/v1/smartphones/mi-cc9-dual-sim-td-lte-cn-m1904f3bt-64gb/score/index.json b/site/public/v1/smartphones/mi-cc9-dual-sim-td-lte-cn-m1904f3bt-64gb/score/index.json new file mode 100644 index 00000000000..7d23e8aaa56 --- /dev/null +++ b/site/public/v1/smartphones/mi-cc9-dual-sim-td-lte-cn-m1904f3bt-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.8, + "performance": 21.5, + "camera": 16.5, + "battery": 16.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-cc9-meitu-edition-dual-sim-td-lte-cn-m1904f3bc-256gb/index.json b/site/public/v1/smartphones/mi-cc9-meitu-edition-dual-sim-td-lte-cn-m1904f3bc-256gb/index.json new file mode 100644 index 00000000000..edb555d6cea --- /dev/null +++ b/site/public/v1/smartphones/mi-cc9-meitu-edition-dual-sim-td-lte-cn-m1904f3bc-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5747, + "slug": "mi-cc9-meitu-edition-dual-sim-td-lte-cn-m1904f3bc-256gb", + "name": "Mi CC9 Meitu Edition Dual SIM TD-LTE CN M1904F3BC 256GB", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4030, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 23.0, + "camera": 16.5, + "battery": 16.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.930307", + "updated_at": "2026-06-19T00:43:44.930307" +} diff --git a/site/public/v1/smartphones/mi-cc9-meitu-edition-dual-sim-td-lte-cn-m1904f3bc-256gb/score/index.json b/site/public/v1/smartphones/mi-cc9-meitu-edition-dual-sim-td-lte-cn-m1904f3bc-256gb/score/index.json new file mode 100644 index 00000000000..0a4ef141077 --- /dev/null +++ b/site/public/v1/smartphones/mi-cc9-meitu-edition-dual-sim-td-lte-cn-m1904f3bc-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 23.0, + "camera": 16.5, + "battery": 16.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-cc9-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1910f4e/index.json b/site/public/v1/smartphones/mi-cc9-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1910f4e/index.json new file mode 100644 index 00000000000..50a257d0d46 --- /dev/null +++ b/site/public/v1/smartphones/mi-cc9-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1910f4e/index.json @@ -0,0 +1,76 @@ +{ + "id": 5748, + "slug": "mi-cc9-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1910f4e", + "name": "Mi CC9 Pro Premium Edition Dual SIM TD-LTE CN 128GB M1910F4E", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 5260, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.1, + "performance": 3.0, + "camera": 35.8, + "battery": 36.7, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.930307", + "updated_at": "2026-06-19T00:43:44.930307" +} diff --git a/site/public/v1/smartphones/mi-cc9-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1910f4e/score/index.json b/site/public/v1/smartphones/mi-cc9-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1910f4e/score/index.json new file mode 100644 index 00000000000..2ad71c32451 --- /dev/null +++ b/site/public/v1/smartphones/mi-cc9-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1910f4e/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.1, + "performance": 3.0, + "camera": 35.8, + "battery": 36.7, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/mi-cc9-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1910f4e/index.json b/site/public/v1/smartphones/mi-cc9-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1910f4e/index.json new file mode 100644 index 00000000000..64843874a8b --- /dev/null +++ b/site/public/v1/smartphones/mi-cc9-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1910f4e/index.json @@ -0,0 +1,76 @@ +{ + "id": 5749, + "slug": "mi-cc9-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1910f4e", + "name": "Mi CC9 Pro Premium Edition Dual SIM TD-LTE CN 256GB M1910F4E", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 5260, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.1, + "performance": 3.0, + "camera": 35.8, + "battery": 36.7, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.930307", + "updated_at": "2026-06-19T00:43:44.930307" +} diff --git a/site/public/v1/smartphones/mi-cc9-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1910f4e/score/index.json b/site/public/v1/smartphones/mi-cc9-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1910f4e/score/index.json new file mode 100644 index 00000000000..2ad71c32451 --- /dev/null +++ b/site/public/v1/smartphones/mi-cc9-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1910f4e/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.1, + "performance": 3.0, + "camera": 35.8, + "battery": 36.7, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/mi-cc9-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1910f4e/index.json b/site/public/v1/smartphones/mi-cc9-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1910f4e/index.json new file mode 100644 index 00000000000..140a66ae7e8 --- /dev/null +++ b/site/public/v1/smartphones/mi-cc9-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1910f4e/index.json @@ -0,0 +1,76 @@ +{ + "id": 5751, + "slug": "mi-cc9-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1910f4e", + "name": "Mi CC9 Pro Standard Edition Dual SIM TD-LTE CN 128GB M1910F4E", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 5260, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.7, + "performance": 1.5, + "camera": 35.8, + "battery": 36.7, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.930307", + "updated_at": "2026-06-19T00:43:44.930307" +} diff --git a/site/public/v1/smartphones/mi-cc9-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1910f4e/score/index.json b/site/public/v1/smartphones/mi-cc9-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1910f4e/score/index.json new file mode 100644 index 00000000000..e309a5e50ea --- /dev/null +++ b/site/public/v1/smartphones/mi-cc9-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1910f4e/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.7, + "performance": 1.5, + "camera": 35.8, + "battery": 36.7, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/mi-cc9e-premium-edition-dual-sim-td-lte-cn-m1906f9sc-128gb/index.json b/site/public/v1/smartphones/mi-cc9e-premium-edition-dual-sim-td-lte-cn-m1906f9sc-128gb/index.json new file mode 100644 index 00000000000..6fb6c009b2e --- /dev/null +++ b/site/public/v1/smartphones/mi-cc9e-premium-edition-dual-sim-td-lte-cn-m1906f9sc-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5753, + "slug": "mi-cc9e-premium-edition-dual-sim-td-lte-cn-m1906f9sc-128gb", + "name": "Mi CC9e Premium Edition Dual SIM TD-LTE CN M1906F9SC 128GB", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4030, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 173.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 1.5, + "camera": 16.5, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.930307", + "updated_at": "2026-06-19T00:43:44.930307" +} diff --git a/site/public/v1/smartphones/mi-cc9e-premium-edition-dual-sim-td-lte-cn-m1906f9sc-128gb/score/index.json b/site/public/v1/smartphones/mi-cc9e-premium-edition-dual-sim-td-lte-cn-m1906f9sc-128gb/score/index.json new file mode 100644 index 00000000000..cc3be6aa7a8 --- /dev/null +++ b/site/public/v1/smartphones/mi-cc9e-premium-edition-dual-sim-td-lte-cn-m1906f9sc-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 1.5, + "camera": 16.5, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/mi-cc9e-premium-edition-dual-sim-td-lte-cn-m1906f9sc-64gb/index.json b/site/public/v1/smartphones/mi-cc9e-premium-edition-dual-sim-td-lte-cn-m1906f9sc-64gb/index.json new file mode 100644 index 00000000000..9d30a8a0184 --- /dev/null +++ b/site/public/v1/smartphones/mi-cc9e-premium-edition-dual-sim-td-lte-cn-m1906f9sc-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5754, + "slug": "mi-cc9e-premium-edition-dual-sim-td-lte-cn-m1906f9sc-64gb", + "name": "Mi CC9e Premium Edition Dual SIM TD-LTE CN M1906F9SC 64GB", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4030, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 173.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 1.5, + "camera": 16.5, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.931307", + "updated_at": "2026-06-19T00:43:44.931307" +} diff --git a/site/public/v1/smartphones/mi-cc9e-premium-edition-dual-sim-td-lte-cn-m1906f9sc-64gb/score/index.json b/site/public/v1/smartphones/mi-cc9e-premium-edition-dual-sim-td-lte-cn-m1906f9sc-64gb/score/index.json new file mode 100644 index 00000000000..cc3be6aa7a8 --- /dev/null +++ b/site/public/v1/smartphones/mi-cc9e-premium-edition-dual-sim-td-lte-cn-m1906f9sc-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 1.5, + "camera": 16.5, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/mi-cc9e-standard-edition-dual-sim-td-lte-cn-m1906f9sc-64gb/index.json b/site/public/v1/smartphones/mi-cc9e-standard-edition-dual-sim-td-lte-cn-m1906f9sc-64gb/index.json new file mode 100644 index 00000000000..ee9d52163b5 --- /dev/null +++ b/site/public/v1/smartphones/mi-cc9e-standard-edition-dual-sim-td-lte-cn-m1906f9sc-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5755, + "slug": "mi-cc9e-standard-edition-dual-sim-td-lte-cn-m1906f9sc-64gb", + "name": "Mi CC9e Standard Edition Dual SIM TD-LTE CN M1906F9SC 64GB", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4030, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 173.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 0.0, + "camera": 16.5, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.931307", + "updated_at": "2026-06-19T00:43:44.931307" +} diff --git a/site/public/v1/smartphones/mi-cc9e-standard-edition-dual-sim-td-lte-cn-m1906f9sc-64gb/score/index.json b/site/public/v1/smartphones/mi-cc9e-standard-edition-dual-sim-td-lte-cn-m1906f9sc-64gb/score/index.json new file mode 100644 index 00000000000..b371b0736d8 --- /dev/null +++ b/site/public/v1/smartphones/mi-cc9e-standard-edition-dual-sim-td-lte-cn-m1906f9sc-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 0.0, + "camera": 16.5, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/mi-max-3-dual-sim-td-lte-128gb-m1804e4a-m1804e4c/index.json b/site/public/v1/smartphones/mi-max-3-dual-sim-td-lte-128gb-m1804e4a-m1804e4c/index.json new file mode 100644 index 00000000000..365667e997c --- /dev/null +++ b/site/public/v1/smartphones/mi-max-3-dual-sim-td-lte-128gb-m1804e4a-m1804e4c/index.json @@ -0,0 +1,76 @@ +{ + "id": 5636, + "slug": "mi-max-3-dual-sim-td-lte-128gb-m1804e4a-m1804e4c", + "name": "Mi Max 3 Dual SIM TD-LTE 128GB M1804E4A / M1804E4C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.9, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 350 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 221.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 1.5, + "camera": 5.1, + "battery": 37.5, + "display": 40.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.917307", + "updated_at": "2026-06-19T00:43:44.917307" +} diff --git a/site/public/v1/smartphones/mi-max-3-dual-sim-td-lte-128gb-m1804e4a-m1804e4c/score/index.json b/site/public/v1/smartphones/mi-max-3-dual-sim-td-lte-128gb-m1804e4a-m1804e4c/score/index.json new file mode 100644 index 00000000000..f602fee1411 --- /dev/null +++ b/site/public/v1/smartphones/mi-max-3-dual-sim-td-lte-128gb-m1804e4a-m1804e4c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 1.5, + "camera": 5.1, + "battery": 37.5, + "display": 40.0, + "value": null +} diff --git a/site/public/v1/smartphones/mi-max-3-dual-sim-td-lte-64gb-m1804e4a-m1804e4c/index.json b/site/public/v1/smartphones/mi-max-3-dual-sim-td-lte-64gb-m1804e4a-m1804e4c/index.json new file mode 100644 index 00000000000..a37bdb580eb --- /dev/null +++ b/site/public/v1/smartphones/mi-max-3-dual-sim-td-lte-64gb-m1804e4a-m1804e4c/index.json @@ -0,0 +1,76 @@ +{ + "id": 5637, + "slug": "mi-max-3-dual-sim-td-lte-64gb-m1804e4a-m1804e4c", + "name": "Mi Max 3 Dual SIM TD-LTE 64GB M1804E4A / M1804E4C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.9, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 350 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 221.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 0.0, + "camera": 5.1, + "battery": 37.5, + "display": 40.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.918307", + "updated_at": "2026-06-19T00:43:44.918307" +} diff --git a/site/public/v1/smartphones/mi-max-3-dual-sim-td-lte-64gb-m1804e4a-m1804e4c/score/index.json b/site/public/v1/smartphones/mi-max-3-dual-sim-td-lte-64gb-m1804e4a-m1804e4c/score/index.json new file mode 100644 index 00000000000..a3e63415092 --- /dev/null +++ b/site/public/v1/smartphones/mi-max-3-dual-sim-td-lte-64gb-m1804e4a-m1804e4c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 0.0, + "camera": 5.1, + "battery": 37.5, + "display": 40.0, + "value": null +} diff --git a/site/public/v1/smartphones/mi-max-3-dual-sim-td-lte-64gb-m1804e4t/index.json b/site/public/v1/smartphones/mi-max-3-dual-sim-td-lte-64gb-m1804e4t/index.json new file mode 100644 index 00000000000..2633655936b --- /dev/null +++ b/site/public/v1/smartphones/mi-max-3-dual-sim-td-lte-64gb-m1804e4t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5638, + "slug": "mi-max-3-dual-sim-td-lte-64gb-m1804e4t", + "name": "Mi Max 3 Dual SIM TD-LTE 64GB M1804E4T", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.9, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 350 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 221.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 0.0, + "camera": 5.1, + "battery": 37.5, + "display": 40.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.918307", + "updated_at": "2026-06-19T00:43:44.918307" +} diff --git a/site/public/v1/smartphones/mi-max-3-dual-sim-td-lte-64gb-m1804e4t/score/index.json b/site/public/v1/smartphones/mi-max-3-dual-sim-td-lte-64gb-m1804e4t/score/index.json new file mode 100644 index 00000000000..a3e63415092 --- /dev/null +++ b/site/public/v1/smartphones/mi-max-3-dual-sim-td-lte-64gb-m1804e4t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 0.0, + "camera": 5.1, + "battery": 37.5, + "display": 40.0, + "value": null +} diff --git a/site/public/v1/smartphones/mi-mix-2s-premium-edition-global-dual-sim-td-lte-256gb-m1803d5xa/index.json b/site/public/v1/smartphones/mi-mix-2s-premium-edition-global-dual-sim-td-lte-256gb-m1803d5xa/index.json new file mode 100644 index 00000000000..207e9087f05 --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-2s-premium-edition-global-dual-sim-td-lte-256gb-m1803d5xa/index.json @@ -0,0 +1,76 @@ +{ + "id": 5639, + "slug": "mi-mix-2s-premium-edition-global-dual-sim-td-lte-256gb-m1803d5xa", + "name": "Mi Mix 2S Premium Edition Global Dual SIM TD-LTE 256GB M1803D5XA", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-04-03", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 3.0, + "camera": 5.0, + "battery": 6.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.918307", + "updated_at": "2026-06-19T00:43:44.918307" +} diff --git a/site/public/v1/smartphones/mi-mix-2s-premium-edition-global-dual-sim-td-lte-256gb-m1803d5xa/score/index.json b/site/public/v1/smartphones/mi-mix-2s-premium-edition-global-dual-sim-td-lte-256gb-m1803d5xa/score/index.json new file mode 100644 index 00000000000..9af25f8dd68 --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-2s-premium-edition-global-dual-sim-td-lte-256gb-m1803d5xa/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 3.0, + "camera": 5.0, + "battery": 6.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-mix-2s-standard-edition-dual-sim-td-lte-cn-128gb-m1803d5xe-m1803d5xc/index.json b/site/public/v1/smartphones/mi-mix-2s-standard-edition-dual-sim-td-lte-cn-128gb-m1803d5xe-m1803d5xc/index.json new file mode 100644 index 00000000000..cd6aa42d262 --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-2s-standard-edition-dual-sim-td-lte-cn-128gb-m1803d5xe-m1803d5xc/index.json @@ -0,0 +1,76 @@ +{ + "id": 5640, + "slug": "mi-mix-2s-standard-edition-dual-sim-td-lte-cn-128gb-m1803d5xe-m1803d5xc", + "name": "Mi Mix 2S Standard Edition Dual SIM TD-LTE CN 128GB M1803D5XE / M1803D5XC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-04-03", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 5.0, + "battery": 6.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.918307", + "updated_at": "2026-06-19T00:43:44.918307" +} diff --git a/site/public/v1/smartphones/mi-mix-2s-standard-edition-dual-sim-td-lte-cn-128gb-m1803d5xe-m1803d5xc/score/index.json b/site/public/v1/smartphones/mi-mix-2s-standard-edition-dual-sim-td-lte-cn-128gb-m1803d5xe-m1803d5xc/score/index.json new file mode 100644 index 00000000000..35e9cf73527 --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-2s-standard-edition-dual-sim-td-lte-cn-128gb-m1803d5xe-m1803d5xc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 5.0, + "battery": 6.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-mix-2s-standard-edition-dual-sim-td-lte-cn-64gb-m1803d5xe-m1803d5xc/index.json b/site/public/v1/smartphones/mi-mix-2s-standard-edition-dual-sim-td-lte-cn-64gb-m1803d5xe-m1803d5xc/index.json new file mode 100644 index 00000000000..c9cab7b4711 --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-2s-standard-edition-dual-sim-td-lte-cn-64gb-m1803d5xe-m1803d5xc/index.json @@ -0,0 +1,76 @@ +{ + "id": 5641, + "slug": "mi-mix-2s-standard-edition-dual-sim-td-lte-cn-64gb-m1803d5xe-m1803d5xc", + "name": "Mi Mix 2S Standard Edition Dual SIM TD-LTE CN 64GB M1803D5XE / M1803D5XC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-04-03", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 5.0, + "battery": 6.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.918307", + "updated_at": "2026-06-19T00:43:44.918307" +} diff --git a/site/public/v1/smartphones/mi-mix-2s-standard-edition-dual-sim-td-lte-cn-64gb-m1803d5xe-m1803d5xc/score/index.json b/site/public/v1/smartphones/mi-mix-2s-standard-edition-dual-sim-td-lte-cn-64gb-m1803d5xe-m1803d5xc/score/index.json new file mode 100644 index 00000000000..35e9cf73527 --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-2s-standard-edition-dual-sim-td-lte-cn-64gb-m1803d5xe-m1803d5xc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 5.0, + "battery": 6.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-mix-2s-standard-edition-dual-sim-td-lte-cn-64gb-m1803d5xt/index.json b/site/public/v1/smartphones/mi-mix-2s-standard-edition-dual-sim-td-lte-cn-64gb-m1803d5xt/index.json new file mode 100644 index 00000000000..c7d07924c51 --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-2s-standard-edition-dual-sim-td-lte-cn-64gb-m1803d5xt/index.json @@ -0,0 +1,76 @@ +{ + "id": 5642, + "slug": "mi-mix-2s-standard-edition-dual-sim-td-lte-cn-64gb-m1803d5xt", + "name": "Mi Mix 2S Standard Edition Dual SIM TD-LTE CN 64GB M1803D5XT", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-04-03", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 5.0, + "battery": 6.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.918307", + "updated_at": "2026-06-19T00:43:44.918307" +} diff --git a/site/public/v1/smartphones/mi-mix-2s-standard-edition-dual-sim-td-lte-cn-64gb-m1803d5xt/score/index.json b/site/public/v1/smartphones/mi-mix-2s-standard-edition-dual-sim-td-lte-cn-64gb-m1803d5xt/score/index.json new file mode 100644 index 00000000000..35e9cf73527 --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-2s-standard-edition-dual-sim-td-lte-cn-64gb-m1803d5xt/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 5.0, + "battery": 6.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-mix-2s-standard-edition-global-dual-sim-td-lte-128gb-m1803d5xa/index.json b/site/public/v1/smartphones/mi-mix-2s-standard-edition-global-dual-sim-td-lte-128gb-m1803d5xa/index.json new file mode 100644 index 00000000000..806744565e8 --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-2s-standard-edition-global-dual-sim-td-lte-128gb-m1803d5xa/index.json @@ -0,0 +1,76 @@ +{ + "id": 5643, + "slug": "mi-mix-2s-standard-edition-global-dual-sim-td-lte-128gb-m1803d5xa", + "name": "Mi Mix 2S Standard Edition Global Dual SIM TD-LTE 128GB M1803D5XA", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-05-08", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 5.0, + "battery": 6.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.918307", + "updated_at": "2026-06-19T00:43:44.918307" +} diff --git a/site/public/v1/smartphones/mi-mix-2s-standard-edition-global-dual-sim-td-lte-128gb-m1803d5xa/score/index.json b/site/public/v1/smartphones/mi-mix-2s-standard-edition-global-dual-sim-td-lte-128gb-m1803d5xa/score/index.json new file mode 100644 index 00000000000..35e9cf73527 --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-2s-standard-edition-global-dual-sim-td-lte-128gb-m1803d5xa/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 5.0, + "battery": 6.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-mix-2s-standard-edition-global-dual-sim-td-lte-64gb-m1803d5xa/index.json b/site/public/v1/smartphones/mi-mix-2s-standard-edition-global-dual-sim-td-lte-64gb-m1803d5xa/index.json new file mode 100644 index 00000000000..44beb45f473 --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-2s-standard-edition-global-dual-sim-td-lte-64gb-m1803d5xa/index.json @@ -0,0 +1,76 @@ +{ + "id": 5644, + "slug": "mi-mix-2s-standard-edition-global-dual-sim-td-lte-64gb-m1803d5xa", + "name": "Mi Mix 2S Standard Edition Global Dual SIM TD-LTE 64GB M1803D5XA", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-05-08", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 5.0, + "battery": 6.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.918307", + "updated_at": "2026-06-19T00:43:44.918307" +} diff --git a/site/public/v1/smartphones/mi-mix-2s-standard-edition-global-dual-sim-td-lte-64gb-m1803d5xa/score/index.json b/site/public/v1/smartphones/mi-mix-2s-standard-edition-global-dual-sim-td-lte-64gb-m1803d5xa/score/index.json new file mode 100644 index 00000000000..35e9cf73527 --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-2s-standard-edition-global-dual-sim-td-lte-64gb-m1803d5xa/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 5.0, + "battery": 6.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-mix-3-5g-global-td-lte-128gb-m1810e5gg/index.json b/site/public/v1/smartphones/mi-mix-3-5g-global-td-lte-128gb-m1810e5gg/index.json new file mode 100644 index 00000000000..0a4be174286 --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-3-5g-global-td-lte-128gb-m1810e5gg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5756, + "slug": "mi-mix-3-5g-global-td-lte-128gb-m1810e5gg", + "name": "Mi Mix 3 5G Global TD-LTE 128GB M1810E5GG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 23.9 + } + ], + "battery_mah": 3800, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 225.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 1.5, + "camera": 5.1, + "battery": 12.6, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.931307", + "updated_at": "2026-06-19T00:43:44.931307" +} diff --git a/site/public/v1/smartphones/mi-mix-3-5g-global-td-lte-128gb-m1810e5gg/score/index.json b/site/public/v1/smartphones/mi-mix-3-5g-global-td-lte-128gb-m1810e5gg/score/index.json new file mode 100644 index 00000000000..06a2aec93d9 --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-3-5g-global-td-lte-128gb-m1810e5gg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 1.5, + "camera": 5.1, + "battery": 12.6, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-mix-3-5g-global-td-lte-64gb-m1810e5gg/index.json b/site/public/v1/smartphones/mi-mix-3-5g-global-td-lte-64gb-m1810e5gg/index.json new file mode 100644 index 00000000000..51c757ab4b8 --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-3-5g-global-td-lte-64gb-m1810e5gg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5757, + "slug": "mi-mix-3-5g-global-td-lte-64gb-m1810e5gg", + "name": "Mi Mix 3 5G Global TD-LTE 64GB M1810E5GG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 23.9 + } + ], + "battery_mah": 3800, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 225.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 1.5, + "camera": 5.1, + "battery": 12.6, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.931307", + "updated_at": "2026-06-19T00:43:44.931307" +} diff --git a/site/public/v1/smartphones/mi-mix-3-5g-global-td-lte-64gb-m1810e5gg/score/index.json b/site/public/v1/smartphones/mi-mix-3-5g-global-td-lte-64gb-m1810e5gg/score/index.json new file mode 100644 index 00000000000..06a2aec93d9 --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-3-5g-global-td-lte-64gb-m1810e5gg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 1.5, + "camera": 5.1, + "battery": 12.6, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-mix-3-forbidden-city-special-edition-dual-sim-td-lte-cn-256gb-m1810e5ec/index.json b/site/public/v1/smartphones/mi-mix-3-forbidden-city-special-edition-dual-sim-td-lte-cn-256gb-m1810e5ec/index.json new file mode 100644 index 00000000000..f1180477f23 --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-3-forbidden-city-special-edition-dual-sim-td-lte-cn-256gb-m1810e5ec/index.json @@ -0,0 +1,76 @@ +{ + "id": 5645, + "slug": "mi-mix-3-forbidden-city-special-edition-dual-sim-td-lte-cn-256gb-m1810e5ec", + "name": "Mi Mix 3 Forbidden City Special Edition Dual SIM TD-LTE CN 256GB M1810E5EC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 10, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 23.9 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 218.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.5, + "performance": 4.5, + "camera": 5.1, + "battery": 3.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.918307", + "updated_at": "2026-06-19T00:43:44.918307" +} diff --git a/site/public/v1/smartphones/mi-mix-3-forbidden-city-special-edition-dual-sim-td-lte-cn-256gb-m1810e5ec/score/index.json b/site/public/v1/smartphones/mi-mix-3-forbidden-city-special-edition-dual-sim-td-lte-cn-256gb-m1810e5ec/score/index.json new file mode 100644 index 00000000000..65ac0052acf --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-3-forbidden-city-special-edition-dual-sim-td-lte-cn-256gb-m1810e5ec/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.5, + "performance": 4.5, + "camera": 5.1, + "battery": 3.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-mix-3-premium-edition-dual-sim-td-lte-cn-128gb-m1810e5e-m1810e5c/index.json b/site/public/v1/smartphones/mi-mix-3-premium-edition-dual-sim-td-lte-cn-128gb-m1810e5e-m1810e5c/index.json new file mode 100644 index 00000000000..50e6a2a7bbe --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-3-premium-edition-dual-sim-td-lte-cn-128gb-m1810e5e-m1810e5c/index.json @@ -0,0 +1,76 @@ +{ + "id": 5646, + "slug": "mi-mix-3-premium-edition-dual-sim-td-lte-cn-128gb-m1810e5e-m1810e5c", + "name": "Mi Mix 3 Premium Edition Dual SIM TD-LTE CN 128GB M1810E5E / M1810E5C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-11-11", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 23.9 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 218.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 3.0, + "camera": 5.1, + "battery": 3.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.918307", + "updated_at": "2026-06-19T00:43:44.918307" +} diff --git a/site/public/v1/smartphones/mi-mix-3-premium-edition-dual-sim-td-lte-cn-128gb-m1810e5e-m1810e5c/score/index.json b/site/public/v1/smartphones/mi-mix-3-premium-edition-dual-sim-td-lte-cn-128gb-m1810e5e-m1810e5c/score/index.json new file mode 100644 index 00000000000..efac490f2f9 --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-3-premium-edition-dual-sim-td-lte-cn-128gb-m1810e5e-m1810e5c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 3.0, + "camera": 5.1, + "battery": 3.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-mix-3-premium-edition-dual-sim-td-lte-cn-256gb-m1810e5e-m1810e5c/index.json b/site/public/v1/smartphones/mi-mix-3-premium-edition-dual-sim-td-lte-cn-256gb-m1810e5e-m1810e5c/index.json new file mode 100644 index 00000000000..3d98f984829 --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-3-premium-edition-dual-sim-td-lte-cn-256gb-m1810e5e-m1810e5c/index.json @@ -0,0 +1,76 @@ +{ + "id": 5647, + "slug": "mi-mix-3-premium-edition-dual-sim-td-lte-cn-256gb-m1810e5e-m1810e5c", + "name": "Mi Mix 3 Premium Edition Dual SIM TD-LTE CN 256GB M1810E5E / M1810E5C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-11-11", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 23.9 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 218.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 3.0, + "camera": 5.1, + "battery": 3.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.919307", + "updated_at": "2026-06-19T00:43:44.919307" +} diff --git a/site/public/v1/smartphones/mi-mix-3-premium-edition-dual-sim-td-lte-cn-256gb-m1810e5e-m1810e5c/score/index.json b/site/public/v1/smartphones/mi-mix-3-premium-edition-dual-sim-td-lte-cn-256gb-m1810e5e-m1810e5c/score/index.json new file mode 100644 index 00000000000..efac490f2f9 --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-3-premium-edition-dual-sim-td-lte-cn-256gb-m1810e5e-m1810e5c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 3.0, + "camera": 5.1, + "battery": 3.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-mix-3-standard-edition-dual-sim-td-lte-cn-128gb-m1810e5e-m1810e5c/index.json b/site/public/v1/smartphones/mi-mix-3-standard-edition-dual-sim-td-lte-cn-128gb-m1810e5e-m1810e5c/index.json new file mode 100644 index 00000000000..91c85025435 --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-3-standard-edition-dual-sim-td-lte-cn-128gb-m1810e5e-m1810e5c/index.json @@ -0,0 +1,76 @@ +{ + "id": 5648, + "slug": "mi-mix-3-standard-edition-dual-sim-td-lte-cn-128gb-m1810e5e-m1810e5c", + "name": "Mi Mix 3 Standard Edition Dual SIM TD-LTE CN 128GB M1810E5E / M1810E5C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-11-11", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 23.9 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 218.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.7, + "performance": 1.5, + "camera": 5.1, + "battery": 3.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.919307", + "updated_at": "2026-06-19T00:43:44.919307" +} diff --git a/site/public/v1/smartphones/mi-mix-3-standard-edition-dual-sim-td-lte-cn-128gb-m1810e5e-m1810e5c/score/index.json b/site/public/v1/smartphones/mi-mix-3-standard-edition-dual-sim-td-lte-cn-128gb-m1810e5e-m1810e5c/score/index.json new file mode 100644 index 00000000000..d482bc9b7eb --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-3-standard-edition-dual-sim-td-lte-cn-128gb-m1810e5e-m1810e5c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.7, + "performance": 1.5, + "camera": 5.1, + "battery": 3.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-mix-3-standard-edition-dual-sim-td-lte-cn-128gb-m1810e5t/index.json b/site/public/v1/smartphones/mi-mix-3-standard-edition-dual-sim-td-lte-cn-128gb-m1810e5t/index.json new file mode 100644 index 00000000000..5f869bf5b05 --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-3-standard-edition-dual-sim-td-lte-cn-128gb-m1810e5t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5649, + "slug": "mi-mix-3-standard-edition-dual-sim-td-lte-cn-128gb-m1810e5t", + "name": "Mi Mix 3 Standard Edition Dual SIM TD-LTE CN 128GB M1810E5T", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-11-11", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 23.9 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 218.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.7, + "performance": 1.5, + "camera": 5.1, + "battery": 3.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.919307", + "updated_at": "2026-06-19T00:43:44.919307" +} diff --git a/site/public/v1/smartphones/mi-mix-3-standard-edition-dual-sim-td-lte-cn-128gb-m1810e5t/score/index.json b/site/public/v1/smartphones/mi-mix-3-standard-edition-dual-sim-td-lte-cn-128gb-m1810e5t/score/index.json new file mode 100644 index 00000000000..d482bc9b7eb --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-3-standard-edition-dual-sim-td-lte-cn-128gb-m1810e5t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.7, + "performance": 1.5, + "camera": 5.1, + "battery": 3.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-mix-3-standard-edition-global-dual-sim-td-lte-128gb-m1810e5a/index.json b/site/public/v1/smartphones/mi-mix-3-standard-edition-global-dual-sim-td-lte-128gb-m1810e5a/index.json new file mode 100644 index 00000000000..6779ac208ca --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-3-standard-edition-global-dual-sim-td-lte-128gb-m1810e5a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5650, + "slug": "mi-mix-3-standard-edition-global-dual-sim-td-lte-128gb-m1810e5a", + "name": "Mi Mix 3 Standard Edition Global Dual SIM TD-LTE 128GB M1810E5A", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-12-18", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 23.9 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 218.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.7, + "performance": 1.5, + "camera": 5.1, + "battery": 3.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.919307", + "updated_at": "2026-06-19T00:43:44.919307" +} diff --git a/site/public/v1/smartphones/mi-mix-3-standard-edition-global-dual-sim-td-lte-128gb-m1810e5a/score/index.json b/site/public/v1/smartphones/mi-mix-3-standard-edition-global-dual-sim-td-lte-128gb-m1810e5a/score/index.json new file mode 100644 index 00000000000..d482bc9b7eb --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-3-standard-edition-global-dual-sim-td-lte-128gb-m1810e5a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.7, + "performance": 1.5, + "camera": 5.1, + "battery": 3.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/mi-mix-4-5g-premium-edition-dual-sim-td-lte-cn-256gb-2106118c/index.json b/site/public/v1/smartphones/mi-mix-4-5g-premium-edition-dual-sim-td-lte-cn-256gb-2106118c/index.json new file mode 100644 index 00000000000..7f610abcc18 --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-4-5g-premium-edition-dual-sim-td-lte-cn-256gb-2106118c/index.json @@ -0,0 +1,77 @@ +{ + "id": 6103, + "slug": "mi-mix-4-5g-premium-edition-dual-sim-td-lte-cn-256gb-2106118c", + "name": "Mi Mix 4 5G Premium Edition Dual SIM TD-LTE CN 256GB 2106118C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-08-16", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 225.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.9, + "performance": 11.2, + "camera": 35.7, + "battery": 52.5, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.970311", + "updated_at": "2026-06-19T00:43:44.970311" +} diff --git a/site/public/v1/smartphones/mi-mix-4-5g-premium-edition-dual-sim-td-lte-cn-256gb-2106118c/score/index.json b/site/public/v1/smartphones/mi-mix-4-5g-premium-edition-dual-sim-td-lte-cn-256gb-2106118c/score/index.json new file mode 100644 index 00000000000..294fc56d01f --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-4-5g-premium-edition-dual-sim-td-lte-cn-256gb-2106118c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.9, + "performance": 11.2, + "camera": 35.7, + "battery": 52.5, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/mi-mix-4-5g-premium-edition-dual-sim-td-lte-cn-512gb-2106118c/index.json b/site/public/v1/smartphones/mi-mix-4-5g-premium-edition-dual-sim-td-lte-cn-512gb-2106118c/index.json new file mode 100644 index 00000000000..62fd7fc3c3e --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-4-5g-premium-edition-dual-sim-td-lte-cn-512gb-2106118c/index.json @@ -0,0 +1,77 @@ +{ + "id": 6104, + "slug": "mi-mix-4-5g-premium-edition-dual-sim-td-lte-cn-512gb-2106118c", + "name": "Mi Mix 4 5G Premium Edition Dual SIM TD-LTE CN 512GB 2106118C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-08-16", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 225.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.9, + "performance": 11.2, + "camera": 35.7, + "battery": 52.5, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.971311", + "updated_at": "2026-06-19T00:43:44.971311" +} diff --git a/site/public/v1/smartphones/mi-mix-4-5g-premium-edition-dual-sim-td-lte-cn-512gb-2106118c/score/index.json b/site/public/v1/smartphones/mi-mix-4-5g-premium-edition-dual-sim-td-lte-cn-512gb-2106118c/score/index.json new file mode 100644 index 00000000000..294fc56d01f --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-4-5g-premium-edition-dual-sim-td-lte-cn-512gb-2106118c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.9, + "performance": 11.2, + "camera": 35.7, + "battery": 52.5, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/mi-mix-4-5g-standard-edition-dual-sim-td-lte-cn-128gb-2106118c/index.json b/site/public/v1/smartphones/mi-mix-4-5g-standard-edition-dual-sim-td-lte-cn-128gb-2106118c/index.json new file mode 100644 index 00000000000..ed5641bad45 --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-4-5g-standard-edition-dual-sim-td-lte-cn-128gb-2106118c/index.json @@ -0,0 +1,77 @@ +{ + "id": 6105, + "slug": "mi-mix-4-5g-standard-edition-dual-sim-td-lte-cn-128gb-2106118c", + "name": "Mi Mix 4 5G Standard Edition Dual SIM TD-LTE CN 128GB 2106118C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-08-16", + "msrp_usd": 4999, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 225.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.1, + "performance": 8.2, + "camera": 35.7, + "battery": 52.5, + "display": 52.0, + "value": 18.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.971311", + "updated_at": "2026-06-19T00:43:44.971311" +} diff --git a/site/public/v1/smartphones/mi-mix-4-5g-standard-edition-dual-sim-td-lte-cn-128gb-2106118c/score/index.json b/site/public/v1/smartphones/mi-mix-4-5g-standard-edition-dual-sim-td-lte-cn-128gb-2106118c/score/index.json new file mode 100644 index 00000000000..53df832b7e5 --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-4-5g-standard-edition-dual-sim-td-lte-cn-128gb-2106118c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.1, + "performance": 8.2, + "camera": 35.7, + "battery": 52.5, + "display": 52.0, + "value": 18.6 +} diff --git a/site/public/v1/smartphones/mi-mix-4-5g-standard-edition-dual-sim-td-lte-cn-256gb-2106118c/index.json b/site/public/v1/smartphones/mi-mix-4-5g-standard-edition-dual-sim-td-lte-cn-256gb-2106118c/index.json new file mode 100644 index 00000000000..90624653dd5 --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-4-5g-standard-edition-dual-sim-td-lte-cn-256gb-2106118c/index.json @@ -0,0 +1,77 @@ +{ + "id": 6106, + "slug": "mi-mix-4-5g-standard-edition-dual-sim-td-lte-cn-256gb-2106118c", + "name": "Mi Mix 4 5G Standard Edition Dual SIM TD-LTE CN 256GB 2106118C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-08-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 225.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.1, + "performance": 8.2, + "camera": 35.7, + "battery": 52.5, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.971311", + "updated_at": "2026-06-19T00:43:44.971311" +} diff --git a/site/public/v1/smartphones/mi-mix-4-5g-standard-edition-dual-sim-td-lte-cn-256gb-2106118c/score/index.json b/site/public/v1/smartphones/mi-mix-4-5g-standard-edition-dual-sim-td-lte-cn-256gb-2106118c/score/index.json new file mode 100644 index 00000000000..5a5a68b8aac --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-4-5g-standard-edition-dual-sim-td-lte-cn-256gb-2106118c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.1, + "performance": 8.2, + "camera": 35.7, + "battery": 52.5, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/mi-mix-alpha-5g-dual-sim-td-lte-cn-512gb/index.json b/site/public/v1/smartphones/mi-mix-alpha-5g-dual-sim-td-lte-cn-512gb/index.json new file mode 100644 index 00000000000..b5bc3283562 --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-alpha-5g-dual-sim-td-lte-cn-512gb/index.json @@ -0,0 +1,72 @@ +{ + "id": 5923, + "slug": "mi-mix-alpha-5g-dual-sim-td-lte-cn-512gb", + "name": "Mi Mix Alpha 5G Dual SIM TD-LTE CN 512GB", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2020-02-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 7.92, + "resolution": "2088x2250", + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + } + ], + "battery_mah": 4050, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 241.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.5, + "performance": 6.0, + "camera": 35.8, + "battery": 20.5, + "display": 43.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.950307", + "updated_at": "2026-06-19T00:43:44.950307" +} diff --git a/site/public/v1/smartphones/mi-mix-alpha-5g-dual-sim-td-lte-cn-512gb/score/index.json b/site/public/v1/smartphones/mi-mix-alpha-5g-dual-sim-td-lte-cn-512gb/score/index.json new file mode 100644 index 00000000000..b7f9b3e24af --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-alpha-5g-dual-sim-td-lte-cn-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.5, + "performance": 6.0, + "camera": 35.8, + "battery": 20.5, + "display": 43.8, + "value": null +} diff --git a/site/public/v1/smartphones/mi-mix-fold-2021-5g-ceramic-special-edition-dual-sim-td-lte-cn-512gb/index.json b/site/public/v1/smartphones/mi-mix-fold-2021-5g-ceramic-special-edition-dual-sim-td-lte-cn-512gb/index.json new file mode 100644 index 00000000000..a2e016a4be0 --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-fold-2021-5g-ceramic-special-edition-dual-sim-td-lte-cn-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 6108, + "slug": "mi-mix-fold-2021-5g-ceramic-special-edition-dual-sim-td-lte-cn-512gb", + "name": "Mi Mix Fold 2021 5G Ceramic Special Edition Dual SIM TD-LTE CN 512GB", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-17", + "msrp_usd": null, + "ram_gb": 16, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 8.01, + "resolution": "1860x2480", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5020, + "charging_wired_w": 67.0, + "charging_wireless_w": null, + "weight_g": 332.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.1, + "performance": 12.4, + "camera": 35.8, + "battery": 50.2, + "display": 26.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.971311", + "updated_at": "2026-06-19T00:43:44.971311" +} diff --git a/site/public/v1/smartphones/mi-mix-fold-2021-5g-ceramic-special-edition-dual-sim-td-lte-cn-512gb/score/index.json b/site/public/v1/smartphones/mi-mix-fold-2021-5g-ceramic-special-edition-dual-sim-td-lte-cn-512gb/score/index.json new file mode 100644 index 00000000000..07994ebd733 --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-fold-2021-5g-ceramic-special-edition-dual-sim-td-lte-cn-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.1, + "performance": 12.4, + "camera": 35.8, + "battery": 50.2, + "display": 26.2, + "value": null +} diff --git a/site/public/v1/smartphones/mi-mix-fold-2021-5g-premium-edition-dual-sim-td-lte-cn-256gb/index.json b/site/public/v1/smartphones/mi-mix-fold-2021-5g-premium-edition-dual-sim-td-lte-cn-256gb/index.json new file mode 100644 index 00000000000..ab99bd8ce7a --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-fold-2021-5g-premium-edition-dual-sim-td-lte-cn-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 6109, + "slug": "mi-mix-fold-2021-5g-premium-edition-dual-sim-td-lte-cn-256gb", + "name": "Mi Mix Fold 2021 5G Premium Edition Dual SIM TD-LTE CN 256GB", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-16", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 8.01, + "resolution": "1860x2480", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5020, + "charging_wired_w": 67.0, + "charging_wireless_w": null, + "weight_g": 317.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.4, + "performance": 9.4, + "camera": 35.8, + "battery": 50.2, + "display": 26.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.971311", + "updated_at": "2026-06-19T00:43:44.971311" +} diff --git a/site/public/v1/smartphones/mi-mix-fold-2021-5g-premium-edition-dual-sim-td-lte-cn-256gb/score/index.json b/site/public/v1/smartphones/mi-mix-fold-2021-5g-premium-edition-dual-sim-td-lte-cn-256gb/score/index.json new file mode 100644 index 00000000000..d3c19a77010 --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-fold-2021-5g-premium-edition-dual-sim-td-lte-cn-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.4, + "performance": 9.4, + "camera": 35.8, + "battery": 50.2, + "display": 26.2, + "value": null +} diff --git a/site/public/v1/smartphones/mi-mix-fold-2021-5g-premium-edition-dual-sim-td-lte-cn-512gb/index.json b/site/public/v1/smartphones/mi-mix-fold-2021-5g-premium-edition-dual-sim-td-lte-cn-512gb/index.json new file mode 100644 index 00000000000..6a277624aaa --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-fold-2021-5g-premium-edition-dual-sim-td-lte-cn-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 6110, + "slug": "mi-mix-fold-2021-5g-premium-edition-dual-sim-td-lte-cn-512gb", + "name": "Mi Mix Fold 2021 5G Premium Edition Dual SIM TD-LTE CN 512GB", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-16", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 8.01, + "resolution": "1860x2480", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5020, + "charging_wired_w": 67.0, + "charging_wireless_w": null, + "weight_g": 317.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.4, + "performance": 9.4, + "camera": 35.8, + "battery": 50.2, + "display": 26.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.971311", + "updated_at": "2026-06-19T00:43:44.971311" +} diff --git a/site/public/v1/smartphones/mi-mix-fold-2021-5g-premium-edition-dual-sim-td-lte-cn-512gb/score/index.json b/site/public/v1/smartphones/mi-mix-fold-2021-5g-premium-edition-dual-sim-td-lte-cn-512gb/score/index.json new file mode 100644 index 00000000000..d3c19a77010 --- /dev/null +++ b/site/public/v1/smartphones/mi-mix-fold-2021-5g-premium-edition-dual-sim-td-lte-cn-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.4, + "performance": 9.4, + "camera": 35.8, + "battery": 50.2, + "display": 26.2, + "value": null +} diff --git a/site/public/v1/smartphones/mi-note-10-global-dual-sim-td-lte-128gb-m1910f4g/index.json b/site/public/v1/smartphones/mi-note-10-global-dual-sim-td-lte-128gb-m1910f4g/index.json new file mode 100644 index 00000000000..28094b4d25d --- /dev/null +++ b/site/public/v1/smartphones/mi-note-10-global-dual-sim-td-lte-128gb-m1910f4g/index.json @@ -0,0 +1,76 @@ +{ + "id": 5758, + "slug": "mi-note-10-global-dual-sim-td-lte-128gb-m1910f4g", + "name": "Mi Note 10 Global Dual SIM TD-LTE 128GB M1910F4G", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 5260, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.7, + "performance": 1.5, + "camera": 35.8, + "battery": 36.7, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.931307", + "updated_at": "2026-06-19T00:43:44.931307" +} diff --git a/site/public/v1/smartphones/mi-note-10-global-dual-sim-td-lte-128gb-m1910f4g/score/index.json b/site/public/v1/smartphones/mi-note-10-global-dual-sim-td-lte-128gb-m1910f4g/score/index.json new file mode 100644 index 00000000000..e309a5e50ea --- /dev/null +++ b/site/public/v1/smartphones/mi-note-10-global-dual-sim-td-lte-128gb-m1910f4g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.7, + "performance": 1.5, + "camera": 35.8, + "battery": 36.7, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/mi-note-10-lite-global-dual-sim-td-lte-128gb-m2002f4lg/index.json b/site/public/v1/smartphones/mi-note-10-lite-global-dual-sim-td-lte-128gb-m2002f4lg/index.json new file mode 100644 index 00000000000..78afcc25a39 --- /dev/null +++ b/site/public/v1/smartphones/mi-note-10-lite-global-dual-sim-td-lte-128gb-m2002f4lg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5925, + "slug": "mi-note-10-lite-global-dual-sim-td-lte-128gb-m2002f4lg", + "name": "Mi Note 10 Lite Global Dual SIM TD-LTE 128GB M2002F4LG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2020-05-14", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5260, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 204.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 3.0, + "camera": 21.7, + "battery": 36.7, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.950307", + "updated_at": "2026-06-19T00:43:44.950307" +} diff --git a/site/public/v1/smartphones/mi-note-10-lite-global-dual-sim-td-lte-128gb-m2002f4lg/score/index.json b/site/public/v1/smartphones/mi-note-10-lite-global-dual-sim-td-lte-128gb-m2002f4lg/score/index.json new file mode 100644 index 00000000000..f303e05d4e2 --- /dev/null +++ b/site/public/v1/smartphones/mi-note-10-lite-global-dual-sim-td-lte-128gb-m2002f4lg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 3.0, + "camera": 21.7, + "battery": 36.7, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/mi-note-10-lite-global-dual-sim-td-lte-64gb-m2002f4lg/index.json b/site/public/v1/smartphones/mi-note-10-lite-global-dual-sim-td-lte-64gb-m2002f4lg/index.json new file mode 100644 index 00000000000..0cafe0d9a02 --- /dev/null +++ b/site/public/v1/smartphones/mi-note-10-lite-global-dual-sim-td-lte-64gb-m2002f4lg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5926, + "slug": "mi-note-10-lite-global-dual-sim-td-lte-64gb-m2002f4lg", + "name": "Mi Note 10 Lite Global Dual SIM TD-LTE 64GB M2002F4LG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2020-05-14", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5260, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 204.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.2, + "performance": 1.5, + "camera": 21.7, + "battery": 36.7, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.950307", + "updated_at": "2026-06-19T00:43:44.950307" +} diff --git a/site/public/v1/smartphones/mi-note-10-lite-global-dual-sim-td-lte-64gb-m2002f4lg/score/index.json b/site/public/v1/smartphones/mi-note-10-lite-global-dual-sim-td-lte-64gb-m2002f4lg/score/index.json new file mode 100644 index 00000000000..979170b3760 --- /dev/null +++ b/site/public/v1/smartphones/mi-note-10-lite-global-dual-sim-td-lte-64gb-m2002f4lg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.2, + "performance": 1.5, + "camera": 21.7, + "battery": 36.7, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/mi-note-10-pro-global-dual-sim-td-lte-128gb-m1910f4s/index.json b/site/public/v1/smartphones/mi-note-10-pro-global-dual-sim-td-lte-128gb-m1910f4s/index.json new file mode 100644 index 00000000000..d7feb342e96 --- /dev/null +++ b/site/public/v1/smartphones/mi-note-10-pro-global-dual-sim-td-lte-128gb-m1910f4s/index.json @@ -0,0 +1,76 @@ +{ + "id": 5759, + "slug": "mi-note-10-pro-global-dual-sim-td-lte-128gb-m1910f4s", + "name": "Mi Note 10 Pro Global Dual SIM TD-LTE 128GB M1910F4S", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-12-04", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 5260, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.1, + "performance": 3.0, + "camera": 35.8, + "battery": 36.7, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.931307", + "updated_at": "2026-06-19T00:43:44.931307" +} diff --git a/site/public/v1/smartphones/mi-note-10-pro-global-dual-sim-td-lte-128gb-m1910f4s/score/index.json b/site/public/v1/smartphones/mi-note-10-pro-global-dual-sim-td-lte-128gb-m1910f4s/score/index.json new file mode 100644 index 00000000000..2ad71c32451 --- /dev/null +++ b/site/public/v1/smartphones/mi-note-10-pro-global-dual-sim-td-lte-128gb-m1910f4s/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.1, + "performance": 3.0, + "camera": 35.8, + "battery": 36.7, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/mi-play-standard-edition-dual-sim-td-lte-cn-64gb-m1901f9e/index.json b/site/public/v1/smartphones/mi-play-standard-edition-dual-sim-td-lte-cn-64gb-m1901f9e/index.json new file mode 100644 index 00000000000..b77998836ee --- /dev/null +++ b/site/public/v1/smartphones/mi-play-standard-edition-dual-sim-td-lte-cn-64gb-m1901f9e/index.json @@ -0,0 +1,76 @@ +{ + "id": 5651, + "slug": "mi-play-standard-edition-dual-sim-td-lte-cn-64gb-m1901f9e", + "name": "Mi Play Standard Edition Dual SIM TD-LTE CN 64GB M1901F9E", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2018-12-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": 0.0, + "camera": 5.0, + "battery": 0.0, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.919307", + "updated_at": "2026-06-19T00:43:44.919307" +} diff --git a/site/public/v1/smartphones/mi-play-standard-edition-dual-sim-td-lte-cn-64gb-m1901f9e/score/index.json b/site/public/v1/smartphones/mi-play-standard-edition-dual-sim-td-lte-cn-64gb-m1901f9e/score/index.json new file mode 100644 index 00000000000..8a6f8648b8a --- /dev/null +++ b/site/public/v1/smartphones/mi-play-standard-edition-dual-sim-td-lte-cn-64gb-m1901f9e/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": 0.0, + "camera": 5.0, + "battery": 0.0, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/mi-play-standard-edition-dual-sim-td-lte-cn-64gb-m1901f9t/index.json b/site/public/v1/smartphones/mi-play-standard-edition-dual-sim-td-lte-cn-64gb-m1901f9t/index.json new file mode 100644 index 00000000000..1a8648fae66 --- /dev/null +++ b/site/public/v1/smartphones/mi-play-standard-edition-dual-sim-td-lte-cn-64gb-m1901f9t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5652, + "slug": "mi-play-standard-edition-dual-sim-td-lte-cn-64gb-m1901f9t", + "name": "Mi Play Standard Edition Dual SIM TD-LTE CN 64GB M1901F9T", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2018-12-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": 0.0, + "camera": 5.0, + "battery": 0.0, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.919307", + "updated_at": "2026-06-19T00:43:44.919307" +} diff --git a/site/public/v1/smartphones/mi-play-standard-edition-dual-sim-td-lte-cn-64gb-m1901f9t/score/index.json b/site/public/v1/smartphones/mi-play-standard-edition-dual-sim-td-lte-cn-64gb-m1901f9t/score/index.json new file mode 100644 index 00000000000..8a6f8648b8a --- /dev/null +++ b/site/public/v1/smartphones/mi-play-standard-edition-dual-sim-td-lte-cn-64gb-m1901f9t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": 0.0, + "camera": 5.0, + "battery": 0.0, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/mi10-ultra-silver-edition-dual-sim-td-lte-cn-512gb-m2007j1sc-extreme-commemorative/index.json b/site/public/v1/smartphones/mi10-ultra-silver-edition-dual-sim-td-lte-cn-512gb-m2007j1sc-extreme-commemorative/index.json new file mode 100644 index 00000000000..25d2fe92b84 --- /dev/null +++ b/site/public/v1/smartphones/mi10-ultra-silver-edition-dual-sim-td-lte-cn-512gb-m2007j1sc-extreme-commemorative/index.json @@ -0,0 +1,77 @@ +{ + "id": 5928, + "slug": "mi10-ultra-silver-edition-dual-sim-td-lte-cn-512gb-m2007j1sc-extreme-commemorative", + "name": "Mi10 Ultra Silver Edition Dual SIM TD-LTE CN 512GB M2007J1SC / Extreme Commemorative", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-08-16", + "msrp_usd": null, + "ram_gb": 16, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 221.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.8, + "performance": 9.0, + "camera": 16.5, + "battery": 42.5, + "display": 51.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.951308", + "updated_at": "2026-06-19T00:43:44.951308" +} diff --git a/site/public/v1/smartphones/mi10-ultra-silver-edition-dual-sim-td-lte-cn-512gb-m2007j1sc-extreme-commemorative/score/index.json b/site/public/v1/smartphones/mi10-ultra-silver-edition-dual-sim-td-lte-cn-512gb-m2007j1sc-extreme-commemorative/score/index.json new file mode 100644 index 00000000000..42ef7b09358 --- /dev/null +++ b/site/public/v1/smartphones/mi10-ultra-silver-edition-dual-sim-td-lte-cn-512gb-m2007j1sc-extreme-commemorative/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.8, + "performance": 9.0, + "camera": 16.5, + "battery": 42.5, + "display": 51.1, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e-7th-gen-2020-lte-us-32gb-xt2052-2-xt2052-2pp/index.json b/site/public/v1/smartphones/moto-e-7th-gen-2020-lte-us-32gb-xt2052-2-xt2052-2pp/index.json new file mode 100644 index 00000000000..7c10a649c3d --- /dev/null +++ b/site/public/v1/smartphones/moto-e-7th-gen-2020-lte-us-32gb-xt2052-2-xt2052-2pp/index.json @@ -0,0 +1,76 @@ +{ + "id": 2083, + "slug": "moto-e-7th-gen-2020-lte-us-32gb-xt2052-2-xt2052-2pp", + "name": "Moto E 7th gen 2020 LTE US 32GB XT2052-2 / XT2052-2PP", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2020-06-11", + "msrp_usd": 150, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3550, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.1, + "performance": 0.0, + "camera": 5.3, + "battery": 8.2, + "display": 35.0, + "value": 56.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.411874", + "updated_at": "2026-06-19T00:43:44.411874" +} diff --git a/site/public/v1/smartphones/moto-e-7th-gen-2020-lte-us-32gb-xt2052-2-xt2052-2pp/score/index.json b/site/public/v1/smartphones/moto-e-7th-gen-2020-lte-us-32gb-xt2052-2-xt2052-2pp/score/index.json new file mode 100644 index 00000000000..1c264438e2b --- /dev/null +++ b/site/public/v1/smartphones/moto-e-7th-gen-2020-lte-us-32gb-xt2052-2-xt2052-2pp/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.1, + "performance": 0.0, + "camera": 5.3, + "battery": 8.2, + "display": 35.0, + "value": 56.0 +} diff --git a/site/public/v1/smartphones/moto-e-7th-gen-2020-td-lte-na-32gb-xt2052-1/index.json b/site/public/v1/smartphones/moto-e-7th-gen-2020-td-lte-na-32gb-xt2052-1/index.json new file mode 100644 index 00000000000..b4c4572df85 --- /dev/null +++ b/site/public/v1/smartphones/moto-e-7th-gen-2020-td-lte-na-32gb-xt2052-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2084, + "slug": "moto-e-7th-gen-2020-td-lte-na-32gb-xt2052-1", + "name": "Moto E 7th gen 2020 TD-LTE NA 32GB XT2052-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2020-06-12", + "msrp_usd": 150, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3550, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.1, + "performance": 0.0, + "camera": 5.3, + "battery": 8.2, + "display": 35.0, + "value": 56.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.411874", + "updated_at": "2026-06-19T00:43:44.411874" +} diff --git a/site/public/v1/smartphones/moto-e-7th-gen-2020-td-lte-na-32gb-xt2052-1/score/index.json b/site/public/v1/smartphones/moto-e-7th-gen-2020-td-lte-na-32gb-xt2052-1/score/index.json new file mode 100644 index 00000000000..1c264438e2b --- /dev/null +++ b/site/public/v1/smartphones/moto-e-7th-gen-2020-td-lte-na-32gb-xt2052-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.1, + "performance": 0.0, + "camera": 5.3, + "battery": 8.2, + "display": 35.0, + "value": 56.0 +} diff --git a/site/public/v1/smartphones/moto-e-7th-gen-2020-td-lte-us-32gb-xt2052-5/index.json b/site/public/v1/smartphones/moto-e-7th-gen-2020-td-lte-us-32gb-xt2052-5/index.json new file mode 100644 index 00000000000..d3ca77ee20c --- /dev/null +++ b/site/public/v1/smartphones/moto-e-7th-gen-2020-td-lte-us-32gb-xt2052-5/index.json @@ -0,0 +1,76 @@ +{ + "id": 2085, + "slug": "moto-e-7th-gen-2020-td-lte-us-32gb-xt2052-5", + "name": "Moto E 7th gen 2020 TD-LTE US 32GB XT2052-5", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2020-06-12", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3550, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.1, + "performance": 0.0, + "camera": 5.3, + "battery": 8.2, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.411874", + "updated_at": "2026-06-19T00:43:44.411874" +} diff --git a/site/public/v1/smartphones/moto-e-7th-gen-2020-td-lte-us-32gb-xt2052-5/score/index.json b/site/public/v1/smartphones/moto-e-7th-gen-2020-td-lte-us-32gb-xt2052-5/score/index.json new file mode 100644 index 00000000000..633ca460be1 --- /dev/null +++ b/site/public/v1/smartphones/moto-e-7th-gen-2020-td-lte-us-32gb-xt2052-5/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.1, + "performance": 0.0, + "camera": 5.3, + "battery": 8.2, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e-7th-gen-2020-td-lte-us-32gb-xt2052-6/index.json b/site/public/v1/smartphones/moto-e-7th-gen-2020-td-lte-us-32gb-xt2052-6/index.json new file mode 100644 index 00000000000..6c0e657b7b1 --- /dev/null +++ b/site/public/v1/smartphones/moto-e-7th-gen-2020-td-lte-us-32gb-xt2052-6/index.json @@ -0,0 +1,76 @@ +{ + "id": 2086, + "slug": "moto-e-7th-gen-2020-td-lte-us-32gb-xt2052-6", + "name": "Moto E 7th gen 2020 TD-LTE US 32GB XT2052-6", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2020-08-08", + "msrp_usd": 150, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3550, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.1, + "performance": 0.0, + "camera": 5.3, + "battery": 8.2, + "display": 35.0, + "value": 56.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.412874", + "updated_at": "2026-06-19T00:43:44.412874" +} diff --git a/site/public/v1/smartphones/moto-e-7th-gen-2020-td-lte-us-32gb-xt2052-6/score/index.json b/site/public/v1/smartphones/moto-e-7th-gen-2020-td-lte-us-32gb-xt2052-6/score/index.json new file mode 100644 index 00000000000..1c264438e2b --- /dev/null +++ b/site/public/v1/smartphones/moto-e-7th-gen-2020-td-lte-us-32gb-xt2052-6/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.1, + "performance": 0.0, + "camera": 5.3, + "battery": 8.2, + "display": 35.0, + "value": 56.0 +} diff --git a/site/public/v1/smartphones/moto-e-7th-gen-2020-td-lte-us-32gb-xt2052dl-moto-e7/index.json b/site/public/v1/smartphones/moto-e-7th-gen-2020-td-lte-us-32gb-xt2052dl-moto-e7/index.json new file mode 100644 index 00000000000..d32b0069c96 --- /dev/null +++ b/site/public/v1/smartphones/moto-e-7th-gen-2020-td-lte-us-32gb-xt2052dl-moto-e7/index.json @@ -0,0 +1,76 @@ +{ + "id": 2087, + "slug": "moto-e-7th-gen-2020-td-lte-us-32gb-xt2052dl-moto-e7", + "name": "Moto E 7th gen 2020 TD-LTE US 32GB XT2052DL / Moto e7", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2020-07-01", + "msrp_usd": 100, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3550, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.1, + "performance": 0.0, + "camera": 5.3, + "battery": 8.2, + "display": 35.0, + "value": 56.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.412874", + "updated_at": "2026-06-19T00:43:44.412874" +} diff --git a/site/public/v1/smartphones/moto-e-7th-gen-2020-td-lte-us-32gb-xt2052dl-moto-e7/score/index.json b/site/public/v1/smartphones/moto-e-7th-gen-2020-td-lte-us-32gb-xt2052dl-moto-e7/score/index.json new file mode 100644 index 00000000000..1c264438e2b --- /dev/null +++ b/site/public/v1/smartphones/moto-e-7th-gen-2020-td-lte-us-32gb-xt2052dl-moto-e7/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.1, + "performance": 0.0, + "camera": 5.3, + "battery": 8.2, + "display": 35.0, + "value": 56.0 +} diff --git a/site/public/v1/smartphones/moto-e20-2021-dual-sim-td-lte-latam-32gb-xt2155-1/index.json b/site/public/v1/smartphones/moto-e20-2021-dual-sim-td-lte-latam-32gb-xt2155-1/index.json new file mode 100644 index 00000000000..6aa89b1cc67 --- /dev/null +++ b/site/public/v1/smartphones/moto-e20-2021-dual-sim-td-lte-latam-32gb-xt2155-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2165, + "slug": "moto-e20-2021-dual-sim-td-lte-latam-32gb-xt2155-1", + "name": "Moto E20 2021 Dual SIM TD-LTE LATAM 32GB XT2155-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 215, + "slug": "unisoc-t606", + "name": "Unisoc T606", + "manufacturer": { + "slug": "unisoc", + "name": "UNISOC", + "url": "/v1/brands/unisoc" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G57 MP1", + "url": "/v1/socs/unisoc-t606" + }, + "release_date": "2021-09-16", + "msrp_usd": 999, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 30.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.421874", + "updated_at": "2026-06-19T00:43:44.421874" +} diff --git a/site/public/v1/smartphones/moto-e20-2021-dual-sim-td-lte-latam-32gb-xt2155-1/score/index.json b/site/public/v1/smartphones/moto-e20-2021-dual-sim-td-lte-latam-32gb-xt2155-1/score/index.json new file mode 100644 index 00000000000..b70e9a31680 --- /dev/null +++ b/site/public/v1/smartphones/moto-e20-2021-dual-sim-td-lte-latam-32gb-xt2155-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 30.0 +} diff --git a/site/public/v1/smartphones/moto-e20-2021-global-dual-sim-td-lte-32gb-xt2155-3/index.json b/site/public/v1/smartphones/moto-e20-2021-global-dual-sim-td-lte-32gb-xt2155-3/index.json new file mode 100644 index 00000000000..4abe8e9c9f9 --- /dev/null +++ b/site/public/v1/smartphones/moto-e20-2021-global-dual-sim-td-lte-32gb-xt2155-3/index.json @@ -0,0 +1,76 @@ +{ + "id": 2166, + "slug": "moto-e20-2021-global-dual-sim-td-lte-32gb-xt2155-3", + "name": "Moto E20 2021 Global Dual SIM TD-LTE 32GB XT2155-3", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 215, + "slug": "unisoc-t606", + "name": "Unisoc T606", + "manufacturer": { + "slug": "unisoc", + "name": "UNISOC", + "url": "/v1/brands/unisoc" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G57 MP1", + "url": "/v1/socs/unisoc-t606" + }, + "release_date": "2021-10-04", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.422873", + "updated_at": "2026-06-19T00:43:44.422873" +} diff --git a/site/public/v1/smartphones/moto-e20-2021-global-dual-sim-td-lte-32gb-xt2155-3/score/index.json b/site/public/v1/smartphones/moto-e20-2021-global-dual-sim-td-lte-32gb-xt2155-3/score/index.json new file mode 100644 index 00000000000..a59635bee66 --- /dev/null +++ b/site/public/v1/smartphones/moto-e20-2021-global-dual-sim-td-lte-32gb-xt2155-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e22/index.json b/site/public/v1/smartphones/moto-e22/index.json new file mode 100644 index 00000000000..f77dc4f031e --- /dev/null +++ b/site/public/v1/smartphones/moto-e22/index.json @@ -0,0 +1,70 @@ +{ + "id": 2278, + "slug": "moto-e22", + "name": "Moto E22", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 72, + "slug": "helio-g37", + "name": "Helio G37", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g37" + }, + "release_date": "2022-01-01", + "msrp_usd": 199, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 4020, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.8, + "performance": null, + "camera": 6.3, + "battery": 15.3, + "display": null, + "value": 55.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.436874", + "updated_at": "2026-06-19T00:43:44.436874" +} diff --git a/site/public/v1/smartphones/moto-e22/score/index.json b/site/public/v1/smartphones/moto-e22/score/index.json new file mode 100644 index 00000000000..1344f18c876 --- /dev/null +++ b/site/public/v1/smartphones/moto-e22/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.8, + "performance": null, + "camera": 6.3, + "battery": 15.3, + "display": null, + "value": 55.4 +} diff --git a/site/public/v1/smartphones/moto-e22i/index.json b/site/public/v1/smartphones/moto-e22i/index.json new file mode 100644 index 00000000000..5d9c3cbe64d --- /dev/null +++ b/site/public/v1/smartphones/moto-e22i/index.json @@ -0,0 +1,70 @@ +{ + "id": 2280, + "slug": "moto-e22i", + "name": "Moto E22i", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 72, + "slug": "helio-g37", + "name": "Helio G37", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g37" + }, + "release_date": "2022-01-01", + "msrp_usd": 179, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 4020, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.8, + "performance": null, + "camera": 6.3, + "battery": 15.3, + "display": null, + "value": 55.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.436874", + "updated_at": "2026-06-19T00:43:44.436874" +} diff --git a/site/public/v1/smartphones/moto-e22i/score/index.json b/site/public/v1/smartphones/moto-e22i/score/index.json new file mode 100644 index 00000000000..1344f18c876 --- /dev/null +++ b/site/public/v1/smartphones/moto-e22i/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.8, + "performance": null, + "camera": 6.3, + "battery": 15.3, + "display": null, + "value": 55.4 +} diff --git a/site/public/v1/smartphones/moto-e32s/index.json b/site/public/v1/smartphones/moto-e32s/index.json new file mode 100644 index 00000000000..e637c22cbaf --- /dev/null +++ b/site/public/v1/smartphones/moto-e32s/index.json @@ -0,0 +1,70 @@ +{ + "id": 2284, + "slug": "moto-e32s", + "name": "Moto E32s", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 72, + "slug": "helio-g37", + "name": "Helio G37", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g37" + }, + "release_date": "2022-01-01", + "msrp_usd": 199, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": null, + "camera": 6.3, + "battery": 30.0, + "display": null, + "value": 59.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.436874", + "updated_at": "2026-06-19T00:43:44.436874" +} diff --git a/site/public/v1/smartphones/moto-e32s/score/index.json b/site/public/v1/smartphones/moto-e32s/score/index.json new file mode 100644 index 00000000000..40c5a5bb6cd --- /dev/null +++ b/site/public/v1/smartphones/moto-e32s/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": null, + "camera": 6.3, + "battery": 30.0, + "display": null, + "value": 59.0 +} diff --git a/site/public/v1/smartphones/moto-e40-2021-dual-sim-td-lte-latam-apac-64gb-xt2159-1-xt2159-2/index.json b/site/public/v1/smartphones/moto-e40-2021-dual-sim-td-lte-latam-apac-64gb-xt2159-1-xt2159-2/index.json new file mode 100644 index 00000000000..c37c53dcce8 --- /dev/null +++ b/site/public/v1/smartphones/moto-e40-2021-dual-sim-td-lte-latam-apac-64gb-xt2159-1-xt2159-2/index.json @@ -0,0 +1,77 @@ +{ + "id": 2168, + "slug": "moto-e40-2021-dual-sim-td-lte-latam-apac-64gb-xt2159-1-xt2159-2", + "name": "Moto E40 2021 Dual SIM TD-LTE LATAM APAC 64GB XT2159-1 / XT2159-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 214, + "slug": "tiger-t700", + "name": "Unisoc Tiger T700", + "manufacturer": { + "slug": "unisoc", + "name": "UNISOC", + "url": "/v1/brands/unisoc" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/tiger-t700" + }, + "release_date": "2021-10-11", + "msrp_usd": 1499, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 13.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.422873", + "updated_at": "2026-06-19T00:43:44.422873" +} diff --git a/site/public/v1/smartphones/moto-e40-2021-dual-sim-td-lte-latam-apac-64gb-xt2159-1-xt2159-2/score/index.json b/site/public/v1/smartphones/moto-e40-2021-dual-sim-td-lte-latam-apac-64gb-xt2159-1-xt2159-2/score/index.json new file mode 100644 index 00000000000..43a0b44772d --- /dev/null +++ b/site/public/v1/smartphones/moto-e40-2021-dual-sim-td-lte-latam-apac-64gb-xt2159-1-xt2159-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 13.5 +} diff --git a/site/public/v1/smartphones/moto-e40-2021-global-dual-sim-td-lte-64gb-xt2159-3-xt2159-6/index.json b/site/public/v1/smartphones/moto-e40-2021-global-dual-sim-td-lte-64gb-xt2159-3-xt2159-6/index.json new file mode 100644 index 00000000000..15181a7cdcd --- /dev/null +++ b/site/public/v1/smartphones/moto-e40-2021-global-dual-sim-td-lte-64gb-xt2159-3-xt2159-6/index.json @@ -0,0 +1,77 @@ +{ + "id": 2169, + "slug": "moto-e40-2021-global-dual-sim-td-lte-64gb-xt2159-3-xt2159-6", + "name": "Moto E40 2021 Global Dual SIM TD-LTE 64GB XT2159-3 / XT2159-6", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 214, + "slug": "tiger-t700", + "name": "Unisoc Tiger T700", + "manufacturer": { + "slug": "unisoc", + "name": "UNISOC", + "url": "/v1/brands/unisoc" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/tiger-t700" + }, + "release_date": "2021-10-17", + "msrp_usd": 140, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 59.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.422873", + "updated_at": "2026-06-19T00:43:44.422873" +} diff --git a/site/public/v1/smartphones/moto-e40-2021-global-dual-sim-td-lte-64gb-xt2159-3-xt2159-6/score/index.json b/site/public/v1/smartphones/moto-e40-2021-global-dual-sim-td-lte-64gb-xt2159-3-xt2159-6/score/index.json new file mode 100644 index 00000000000..d0434da1826 --- /dev/null +++ b/site/public/v1/smartphones/moto-e40-2021-global-dual-sim-td-lte-64gb-xt2159-3-xt2159-6/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 59.5 +} diff --git a/site/public/v1/smartphones/moto-e5-dual-sim-lte-latam-16gb-xt1944-4/index.json b/site/public/v1/smartphones/moto-e5-dual-sim-lte-latam-16gb-xt1944-4/index.json new file mode 100644 index 00000000000..699b49cbbec --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-dual-sim-lte-latam-16gb-xt1944-4/index.json @@ -0,0 +1,76 @@ +{ + "id": 1925, + "slug": "moto-e5-dual-sim-lte-latam-16gb-xt1944-4", + "name": "Moto E5 Dual SIM LTE LATAM 16GB XT1944-4", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-04-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.391879", + "updated_at": "2026-06-19T00:43:44.391879" +} diff --git a/site/public/v1/smartphones/moto-e5-dual-sim-lte-latam-16gb-xt1944-4/score/index.json b/site/public/v1/smartphones/moto-e5-dual-sim-lte-latam-16gb-xt1944-4/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-dual-sim-lte-latam-16gb-xt1944-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e5-dual-sim-lte-latam-32gb-xt1944-4/index.json b/site/public/v1/smartphones/moto-e5-dual-sim-lte-latam-32gb-xt1944-4/index.json new file mode 100644 index 00000000000..251e4354ed8 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-dual-sim-lte-latam-32gb-xt1944-4/index.json @@ -0,0 +1,76 @@ +{ + "id": 1926, + "slug": "moto-e5-dual-sim-lte-latam-32gb-xt1944-4", + "name": "Moto E5 Dual SIM LTE LATAM 32GB XT1944-4", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-04-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.391879", + "updated_at": "2026-06-19T00:43:44.391879" +} diff --git a/site/public/v1/smartphones/moto-e5-dual-sim-lte-latam-32gb-xt1944-4/score/index.json b/site/public/v1/smartphones/moto-e5-dual-sim-lte-latam-32gb-xt1944-4/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-dual-sim-lte-latam-32gb-xt1944-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e5-dual-sim-td-lte-apac-16gb-xt1944-6/index.json b/site/public/v1/smartphones/moto-e5-dual-sim-td-lte-apac-16gb-xt1944-6/index.json new file mode 100644 index 00000000000..a2648448585 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-dual-sim-td-lte-apac-16gb-xt1944-6/index.json @@ -0,0 +1,76 @@ +{ + "id": 1927, + "slug": "moto-e5-dual-sim-td-lte-apac-16gb-xt1944-6", + "name": "Moto E5 Dual SIM TD-LTE APAC 16GB XT1944-6", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-06-08", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.391879", + "updated_at": "2026-06-19T00:43:44.391879" +} diff --git a/site/public/v1/smartphones/moto-e5-dual-sim-td-lte-apac-16gb-xt1944-6/score/index.json b/site/public/v1/smartphones/moto-e5-dual-sim-td-lte-apac-16gb-xt1944-6/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-dual-sim-td-lte-apac-16gb-xt1944-6/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e5-dual-sim-td-lte-emea-16gb-xt1944-2/index.json b/site/public/v1/smartphones/moto-e5-dual-sim-td-lte-emea-16gb-xt1944-2/index.json new file mode 100644 index 00000000000..f6719621c92 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-dual-sim-td-lte-emea-16gb-xt1944-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 1928, + "slug": "moto-e5-dual-sim-td-lte-emea-16gb-xt1944-2", + "name": "Moto E5 Dual SIM TD-LTE EMEA 16GB XT1944-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-04-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.391879", + "updated_at": "2026-06-19T00:43:44.391879" +} diff --git a/site/public/v1/smartphones/moto-e5-dual-sim-td-lte-emea-16gb-xt1944-2/score/index.json b/site/public/v1/smartphones/moto-e5-dual-sim-td-lte-emea-16gb-xt1944-2/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-dual-sim-td-lte-emea-16gb-xt1944-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e5-dual-sim-td-lte-in-16gb-xt1944-5/index.json b/site/public/v1/smartphones/moto-e5-dual-sim-td-lte-in-16gb-xt1944-5/index.json new file mode 100644 index 00000000000..d2c39c3a385 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-dual-sim-td-lte-in-16gb-xt1944-5/index.json @@ -0,0 +1,76 @@ +{ + "id": 1929, + "slug": "moto-e5-dual-sim-td-lte-in-16gb-xt1944-5", + "name": "Moto E5 Dual SIM TD-LTE IN 16GB XT1944-5", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.392888", + "updated_at": "2026-06-19T00:43:44.392888" +} diff --git a/site/public/v1/smartphones/moto-e5-dual-sim-td-lte-in-16gb-xt1944-5/score/index.json b/site/public/v1/smartphones/moto-e5-dual-sim-td-lte-in-16gb-xt1944-5/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-dual-sim-td-lte-in-16gb-xt1944-5/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e5-lte-latam-16gb-xt1944-3-moto-e-gen-5/index.json b/site/public/v1/smartphones/moto-e5-lte-latam-16gb-xt1944-3-moto-e-gen-5/index.json new file mode 100644 index 00000000000..f0fdb819116 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-lte-latam-16gb-xt1944-3-moto-e-gen-5/index.json @@ -0,0 +1,76 @@ +{ + "id": 1930, + "slug": "moto-e5-lte-latam-16gb-xt1944-3-moto-e-gen-5", + "name": "Moto E5 LTE LATAM 16GB XT1944-3 / Moto E Gen 5", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-04-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.392888", + "updated_at": "2026-06-19T00:43:44.392888" +} diff --git a/site/public/v1/smartphones/moto-e5-lte-latam-16gb-xt1944-3-moto-e-gen-5/score/index.json b/site/public/v1/smartphones/moto-e5-lte-latam-16gb-xt1944-3-moto-e-gen-5/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-lte-latam-16gb-xt1944-3-moto-e-gen-5/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e5-play-go-edition-dual-sim-lte-latam-xt1920-19/index.json b/site/public/v1/smartphones/moto-e5-play-go-edition-dual-sim-lte-latam-xt1920-19/index.json new file mode 100644 index 00000000000..8735f7914af --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-play-go-edition-dual-sim-lte-latam-xt1920-19/index.json @@ -0,0 +1,76 @@ +{ + "id": 1931, + "slug": "moto-e5-play-go-edition-dual-sim-lte-latam-xt1920-19", + "name": "Moto E5 Play Go Edition Dual SIM LTE LATAM XT1920-19", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.34, + "resolution": "480x960", + "type": "Color IPS TFT LCD display", + "ppi": 201 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.392888", + "updated_at": "2026-06-19T00:43:44.392888" +} diff --git a/site/public/v1/smartphones/moto-e5-play-go-edition-dual-sim-lte-latam-xt1920-19/score/index.json b/site/public/v1/smartphones/moto-e5-play-go-edition-dual-sim-lte-latam-xt1920-19/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-play-go-edition-dual-sim-lte-latam-xt1920-19/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e5-play-go-edition-global-dual-sim-td-lte-xt1920-16/index.json b/site/public/v1/smartphones/moto-e5-play-go-edition-global-dual-sim-td-lte-xt1920-16/index.json new file mode 100644 index 00000000000..9d147bb387e --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-play-go-edition-global-dual-sim-td-lte-xt1920-16/index.json @@ -0,0 +1,76 @@ +{ + "id": 1932, + "slug": "moto-e5-play-go-edition-global-dual-sim-td-lte-xt1920-16", + "name": "Moto E5 Play Go Edition Global Dual SIM TD-LTE XT1920-16", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.34, + "resolution": "480x960", + "type": "Color IPS TFT LCD display", + "ppi": 201 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.392888", + "updated_at": "2026-06-19T00:43:44.392888" +} diff --git a/site/public/v1/smartphones/moto-e5-play-go-edition-global-dual-sim-td-lte-xt1920-16/score/index.json b/site/public/v1/smartphones/moto-e5-play-go-edition-global-dual-sim-td-lte-xt1920-16/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-play-go-edition-global-dual-sim-td-lte-xt1920-16/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e5-play-go-edition-lte-latam-xt1920-18/index.json b/site/public/v1/smartphones/moto-e5-play-go-edition-lte-latam-xt1920-18/index.json new file mode 100644 index 00000000000..bc7da628285 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-play-go-edition-lte-latam-xt1920-18/index.json @@ -0,0 +1,76 @@ +{ + "id": 1933, + "slug": "moto-e5-play-go-edition-lte-latam-xt1920-18", + "name": "Moto E5 Play Go Edition LTE LATAM XT1920-18", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.34, + "resolution": "480x960", + "type": "Color IPS TFT LCD display", + "ppi": 201 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.392888", + "updated_at": "2026-06-19T00:43:44.392888" +} diff --git a/site/public/v1/smartphones/moto-e5-play-go-edition-lte-latam-xt1920-18/score/index.json b/site/public/v1/smartphones/moto-e5-play-go-edition-lte-latam-xt1920-18/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-play-go-edition-lte-latam-xt1920-18/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e5-play-go-edition-td-lte-emea-xt1920-15/index.json b/site/public/v1/smartphones/moto-e5-play-go-edition-td-lte-emea-xt1920-15/index.json new file mode 100644 index 00000000000..be4da70db18 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-play-go-edition-td-lte-emea-xt1920-15/index.json @@ -0,0 +1,76 @@ +{ + "id": 1934, + "slug": "moto-e5-play-go-edition-td-lte-emea-xt1920-15", + "name": "Moto E5 Play Go Edition TD-LTE EMEA XT1920-15", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.34, + "resolution": "480x960", + "type": "Color IPS TFT LCD display", + "ppi": 201 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.392888", + "updated_at": "2026-06-19T00:43:44.392888" +} diff --git a/site/public/v1/smartphones/moto-e5-play-go-edition-td-lte-emea-xt1920-15/score/index.json b/site/public/v1/smartphones/moto-e5-play-go-edition-td-lte-emea-xt1920-15/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-play-go-edition-td-lte-emea-xt1920-15/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e5-play-go-td-lte-us-16gb-xt1921-7-xt1921-8/index.json b/site/public/v1/smartphones/moto-e5-play-go-td-lte-us-16gb-xt1921-7-xt1921-8/index.json new file mode 100644 index 00000000000..dd59c6261c2 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-play-go-td-lte-us-16gb-xt1921-7-xt1921-8/index.json @@ -0,0 +1,76 @@ +{ + "id": 1935, + "slug": "moto-e5-play-go-td-lte-us-16gb-xt1921-7-xt1921-8", + "name": "Moto E5 Play Go TD-LTE US 16GB XT1921-7 / XT1921-8", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.2, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 283 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.392888", + "updated_at": "2026-06-19T00:43:44.392888" +} diff --git a/site/public/v1/smartphones/moto-e5-play-go-td-lte-us-16gb-xt1921-7-xt1921-8/score/index.json b/site/public/v1/smartphones/moto-e5-play-go-td-lte-us-16gb-xt1921-7-xt1921-8/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-play-go-td-lte-us-16gb-xt1921-7-xt1921-8/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e5-play-lte-us-16gb-xt1921-2-moto-e5-cruise/index.json b/site/public/v1/smartphones/moto-e5-play-lte-us-16gb-xt1921-2-moto-e5-cruise/index.json new file mode 100644 index 00000000000..7a3effca784 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-play-lte-us-16gb-xt1921-2-moto-e5-cruise/index.json @@ -0,0 +1,76 @@ +{ + "id": 1936, + "slug": "moto-e5-play-lte-us-16gb-xt1921-2-moto-e5-cruise", + "name": "Moto E5 Play LTE US 16GB XT1921-2 / Moto E5 Cruise", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 117, + "slug": "snapdragon-427", + "name": "Snapdragon 427", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-427" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.2, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 283 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.393875", + "updated_at": "2026-06-19T00:43:44.393875" +} diff --git a/site/public/v1/smartphones/moto-e5-play-lte-us-16gb-xt1921-2-moto-e5-cruise/score/index.json b/site/public/v1/smartphones/moto-e5-play-lte-us-16gb-xt1921-2-moto-e5-cruise/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-play-lte-us-16gb-xt1921-2-moto-e5-cruise/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e5-play-td-lte-na-16gb-xt1921-1-moto-e-play-gen-5-xt1921-7/index.json b/site/public/v1/smartphones/moto-e5-play-td-lte-na-16gb-xt1921-1-moto-e-play-gen-5-xt1921-7/index.json new file mode 100644 index 00000000000..3bdce024bb7 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-play-td-lte-na-16gb-xt1921-1-moto-e-play-gen-5-xt1921-7/index.json @@ -0,0 +1,76 @@ +{ + "id": 1937, + "slug": "moto-e5-play-td-lte-na-16gb-xt1921-1-moto-e-play-gen-5-xt1921-7", + "name": "Moto E5 Play TD-LTE NA 16GB XT1921-1 / Moto E Play Gen 5 XT1921-7", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.2, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 283 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.393875", + "updated_at": "2026-06-19T00:43:44.393875" +} diff --git a/site/public/v1/smartphones/moto-e5-play-td-lte-na-16gb-xt1921-1-moto-e-play-gen-5-xt1921-7/score/index.json b/site/public/v1/smartphones/moto-e5-play-td-lte-na-16gb-xt1921-1-moto-e-play-gen-5-xt1921-7/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-play-td-lte-na-16gb-xt1921-1-moto-e-play-gen-5-xt1921-7/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e5-play-td-lte-us-16gb-xt1921-3/index.json b/site/public/v1/smartphones/moto-e5-play-td-lte-us-16gb-xt1921-3/index.json new file mode 100644 index 00000000000..2d8843300cf --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-play-td-lte-us-16gb-xt1921-3/index.json @@ -0,0 +1,76 @@ +{ + "id": 1938, + "slug": "moto-e5-play-td-lte-us-16gb-xt1921-3", + "name": "Moto E5 Play TD-LTE US 16GB XT1921-3", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 117, + "slug": "snapdragon-427", + "name": "Snapdragon 427", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-427" + }, + "release_date": "2018-07-26", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.2, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 283 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.393875", + "updated_at": "2026-06-19T00:43:44.393875" +} diff --git a/site/public/v1/smartphones/moto-e5-play-td-lte-us-16gb-xt1921-3/score/index.json b/site/public/v1/smartphones/moto-e5-play-td-lte-us-16gb-xt1921-3/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-play-td-lte-us-16gb-xt1921-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e5-play-td-lte-us-16gb-xt1921-5/index.json b/site/public/v1/smartphones/moto-e5-play-td-lte-us-16gb-xt1921-5/index.json new file mode 100644 index 00000000000..8a7df56c9f7 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-play-td-lte-us-16gb-xt1921-5/index.json @@ -0,0 +1,76 @@ +{ + "id": 1939, + "slug": "moto-e5-play-td-lte-us-16gb-xt1921-5", + "name": "Moto E5 Play TD-LTE US 16GB XT1921-5", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 117, + "slug": "snapdragon-427", + "name": "Snapdragon 427", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-427" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.2, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 283 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.393875", + "updated_at": "2026-06-19T00:43:44.393875" +} diff --git a/site/public/v1/smartphones/moto-e5-play-td-lte-us-16gb-xt1921-5/score/index.json b/site/public/v1/smartphones/moto-e5-play-td-lte-us-16gb-xt1921-5/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-play-td-lte-us-16gb-xt1921-5/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e5-play-td-lte-us-16gb-xt1921-6/index.json b/site/public/v1/smartphones/moto-e5-play-td-lte-us-16gb-xt1921-6/index.json new file mode 100644 index 00000000000..12fe82d834e --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-play-td-lte-us-16gb-xt1921-6/index.json @@ -0,0 +1,76 @@ +{ + "id": 1940, + "slug": "moto-e5-play-td-lte-us-16gb-xt1921-6", + "name": "Moto E5 Play TD-LTE US 16GB XT1921-6", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.2, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 283 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.394875", + "updated_at": "2026-06-19T00:43:44.394875" +} diff --git a/site/public/v1/smartphones/moto-e5-play-td-lte-us-16gb-xt1921-6/score/index.json b/site/public/v1/smartphones/moto-e5-play-td-lte-us-16gb-xt1921-6/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-play-td-lte-us-16gb-xt1921-6/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e5-plus-dual-sim-lte-emea-16gb-xt1924-1/index.json b/site/public/v1/smartphones/moto-e5-plus-dual-sim-lte-emea-16gb-xt1924-1/index.json new file mode 100644 index 00000000000..1d18fd11d62 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-plus-dual-sim-lte-emea-16gb-xt1924-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 1941, + "slug": "moto-e5-plus-dual-sim-lte-emea-16gb-xt1924-1", + "name": "Moto E5 Plus Dual SIM LTE EMEA 16GB XT1924-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.98, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 196.6, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": null, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.394875", + "updated_at": "2026-06-19T00:43:44.394875" +} diff --git a/site/public/v1/smartphones/moto-e5-plus-dual-sim-lte-emea-16gb-xt1924-1/score/index.json b/site/public/v1/smartphones/moto-e5-plus-dual-sim-lte-emea-16gb-xt1924-1/score/index.json new file mode 100644 index 00000000000..e4776ee43c5 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-plus-dual-sim-lte-emea-16gb-xt1924-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": null, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e5-plus-dual-sim-lte-latam-16gb-xt1924-4/index.json b/site/public/v1/smartphones/moto-e5-plus-dual-sim-lte-latam-16gb-xt1924-4/index.json new file mode 100644 index 00000000000..4aaea434a09 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-plus-dual-sim-lte-latam-16gb-xt1924-4/index.json @@ -0,0 +1,76 @@ +{ + "id": 1942, + "slug": "moto-e5-plus-dual-sim-lte-latam-16gb-xt1924-4", + "name": "Moto E5 Plus Dual SIM LTE LATAM 16GB XT1924-4", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.98, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 196.6, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": null, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.394875", + "updated_at": "2026-06-19T00:43:44.394875" +} diff --git a/site/public/v1/smartphones/moto-e5-plus-dual-sim-lte-latam-16gb-xt1924-4/score/index.json b/site/public/v1/smartphones/moto-e5-plus-dual-sim-lte-latam-16gb-xt1924-4/score/index.json new file mode 100644 index 00000000000..e4776ee43c5 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-plus-dual-sim-lte-latam-16gb-xt1924-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": null, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e5-plus-dual-sim-td-lte-cn-32gb-xt1924-9/index.json b/site/public/v1/smartphones/moto-e5-plus-dual-sim-td-lte-cn-32gb-xt1924-9/index.json new file mode 100644 index 00000000000..45d0ff3c4be --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-plus-dual-sim-td-lte-cn-32gb-xt1924-9/index.json @@ -0,0 +1,76 @@ +{ + "id": 1943, + "slug": "moto-e5-plus-dual-sim-td-lte-cn-32gb-xt1924-9", + "name": "Moto E5 Plus Dual SIM TD-LTE CN 32GB XT1924-9", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.98, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 196.6, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": null, + "camera": 5.0, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.394875", + "updated_at": "2026-06-19T00:43:44.394875" +} diff --git a/site/public/v1/smartphones/moto-e5-plus-dual-sim-td-lte-cn-32gb-xt1924-9/score/index.json b/site/public/v1/smartphones/moto-e5-plus-dual-sim-td-lte-cn-32gb-xt1924-9/score/index.json new file mode 100644 index 00000000000..8756b6eca98 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-plus-dual-sim-td-lte-cn-32gb-xt1924-9/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": null, + "camera": 5.0, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e5-plus-dual-sim-td-lte-cn-64gb-xt1924-9/index.json b/site/public/v1/smartphones/moto-e5-plus-dual-sim-td-lte-cn-64gb-xt1924-9/index.json new file mode 100644 index 00000000000..fd21a69bfd6 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-plus-dual-sim-td-lte-cn-64gb-xt1924-9/index.json @@ -0,0 +1,76 @@ +{ + "id": 1944, + "slug": "moto-e5-plus-dual-sim-td-lte-cn-64gb-xt1924-9", + "name": "Moto E5 Plus Dual SIM TD-LTE CN 64GB XT1924-9", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.98, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 196.6, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": null, + "camera": 5.0, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.394875", + "updated_at": "2026-06-19T00:43:44.394875" +} diff --git a/site/public/v1/smartphones/moto-e5-plus-dual-sim-td-lte-cn-64gb-xt1924-9/score/index.json b/site/public/v1/smartphones/moto-e5-plus-dual-sim-td-lte-cn-64gb-xt1924-9/score/index.json new file mode 100644 index 00000000000..8756b6eca98 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-plus-dual-sim-td-lte-cn-64gb-xt1924-9/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": null, + "camera": 5.0, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e5-plus-dual-sim-td-lte-in-32gb-xt1924-3/index.json b/site/public/v1/smartphones/moto-e5-plus-dual-sim-td-lte-in-32gb-xt1924-3/index.json new file mode 100644 index 00000000000..71d407145ea --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-plus-dual-sim-td-lte-in-32gb-xt1924-3/index.json @@ -0,0 +1,76 @@ +{ + "id": 1945, + "slug": "moto-e5-plus-dual-sim-td-lte-in-32gb-xt1924-3", + "name": "Moto E5 Plus Dual SIM TD-LTE IN 32GB XT1924-3", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.98, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 196.6, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": null, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.394875", + "updated_at": "2026-06-19T00:43:44.394875" +} diff --git a/site/public/v1/smartphones/moto-e5-plus-dual-sim-td-lte-in-32gb-xt1924-3/score/index.json b/site/public/v1/smartphones/moto-e5-plus-dual-sim-td-lte-in-32gb-xt1924-3/score/index.json new file mode 100644 index 00000000000..e4776ee43c5 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-plus-dual-sim-td-lte-in-32gb-xt1924-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": null, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e5-plus-lte-emea-32gb-xt1924-2/index.json b/site/public/v1/smartphones/moto-e5-plus-lte-emea-32gb-xt1924-2/index.json new file mode 100644 index 00000000000..d6cb2fcde96 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-plus-lte-emea-32gb-xt1924-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 1946, + "slug": "moto-e5-plus-lte-emea-32gb-xt1924-2", + "name": "Moto E5 Plus LTE EMEA 32GB XT1924-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.98, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 196.6, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": null, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.394875", + "updated_at": "2026-06-19T00:43:44.394875" +} diff --git a/site/public/v1/smartphones/moto-e5-plus-lte-emea-32gb-xt1924-2/score/index.json b/site/public/v1/smartphones/moto-e5-plus-lte-emea-32gb-xt1924-2/score/index.json new file mode 100644 index 00000000000..e4776ee43c5 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-plus-lte-emea-32gb-xt1924-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": null, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e5-plus-lte-latam-16gb-xt1924-5-moto-e-plus-gen-5/index.json b/site/public/v1/smartphones/moto-e5-plus-lte-latam-16gb-xt1924-5-moto-e-plus-gen-5/index.json new file mode 100644 index 00000000000..7aed8d8fad8 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-plus-lte-latam-16gb-xt1924-5-moto-e-plus-gen-5/index.json @@ -0,0 +1,76 @@ +{ + "id": 1947, + "slug": "moto-e5-plus-lte-latam-16gb-xt1924-5-moto-e-plus-gen-5", + "name": "Moto E5 Plus LTE LATAM 16GB XT1924-5 / Moto E Plus Gen 5", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-04-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.98, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 196.6, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": null, + "camera": 5.0, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.394875", + "updated_at": "2026-06-19T00:43:44.394875" +} diff --git a/site/public/v1/smartphones/moto-e5-plus-lte-latam-16gb-xt1924-5-moto-e-plus-gen-5/score/index.json b/site/public/v1/smartphones/moto-e5-plus-lte-latam-16gb-xt1924-5-moto-e-plus-gen-5/score/index.json new file mode 100644 index 00000000000..8756b6eca98 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-plus-lte-latam-16gb-xt1924-5-moto-e-plus-gen-5/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": null, + "camera": 5.0, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e5-plus-td-lte-us-32gb-xt1924-7-moto-e-plus-5th-gen/index.json b/site/public/v1/smartphones/moto-e5-plus-td-lte-us-32gb-xt1924-7-moto-e-plus-5th-gen/index.json new file mode 100644 index 00000000000..b9fa75f87e9 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-plus-td-lte-us-32gb-xt1924-7-moto-e-plus-5th-gen/index.json @@ -0,0 +1,76 @@ +{ + "id": 1948, + "slug": "moto-e5-plus-td-lte-us-32gb-xt1924-7-moto-e-plus-5th-gen", + "name": "Moto E5 Plus TD-LTE US 32GB XT1924-7 / Moto E Plus 5th gen", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 113, + "slug": "snapdragon-435", + "name": "Snapdragon 435", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-435" + }, + "release_date": "2018-07-26", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.98, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 196.6, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": null, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.394875", + "updated_at": "2026-06-19T00:43:44.394875" +} diff --git a/site/public/v1/smartphones/moto-e5-plus-td-lte-us-32gb-xt1924-7-moto-e-plus-5th-gen/score/index.json b/site/public/v1/smartphones/moto-e5-plus-td-lte-us-32gb-xt1924-7-moto-e-plus-5th-gen/score/index.json new file mode 100644 index 00000000000..e4776ee43c5 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-plus-td-lte-us-32gb-xt1924-7-moto-e-plus-5th-gen/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": null, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e5-plus-td-lte-us-32gb-xt1924-8/index.json b/site/public/v1/smartphones/moto-e5-plus-td-lte-us-32gb-xt1924-8/index.json new file mode 100644 index 00000000000..fee2951b454 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-plus-td-lte-us-32gb-xt1924-8/index.json @@ -0,0 +1,76 @@ +{ + "id": 1949, + "slug": "moto-e5-plus-td-lte-us-32gb-xt1924-8", + "name": "Moto E5 Plus TD-LTE US 32GB XT1924-8", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 113, + "slug": "snapdragon-435", + "name": "Snapdragon 435", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-435" + }, + "release_date": "2018-05-29", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.98, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 196.6, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": null, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.395873", + "updated_at": "2026-06-19T00:43:44.395873" +} diff --git a/site/public/v1/smartphones/moto-e5-plus-td-lte-us-32gb-xt1924-8/score/index.json b/site/public/v1/smartphones/moto-e5-plus-td-lte-us-32gb-xt1924-8/score/index.json new file mode 100644 index 00000000000..e4776ee43c5 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-plus-td-lte-us-32gb-xt1924-8/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": null, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e5-supra-lte-a-us-32gb-xt1924-6/index.json b/site/public/v1/smartphones/moto-e5-supra-lte-a-us-32gb-xt1924-6/index.json new file mode 100644 index 00000000000..0d3bb057ae6 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-supra-lte-a-us-32gb-xt1924-6/index.json @@ -0,0 +1,76 @@ +{ + "id": 1950, + "slug": "moto-e5-supra-lte-a-us-32gb-xt1924-6", + "name": "Moto E5 Supra LTE-A US 32GB XT1924-6", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 113, + "slug": "snapdragon-435", + "name": "Snapdragon 435", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-435" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.98, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 196.6, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": null, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.395873", + "updated_at": "2026-06-19T00:43:44.395873" +} diff --git a/site/public/v1/smartphones/moto-e5-supra-lte-a-us-32gb-xt1924-6/score/index.json b/site/public/v1/smartphones/moto-e5-supra-lte-a-us-32gb-xt1924-6/score/index.json new file mode 100644 index 00000000000..e4776ee43c5 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-supra-lte-a-us-32gb-xt1924-6/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": null, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e5-td-lte-emea-16gb-xt1944-1/index.json b/site/public/v1/smartphones/moto-e5-td-lte-emea-16gb-xt1944-1/index.json new file mode 100644 index 00000000000..fca5b8ec74c --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-td-lte-emea-16gb-xt1944-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 1951, + "slug": "moto-e5-td-lte-emea-16gb-xt1944-1", + "name": "Moto E5 TD-LTE EMEA 16GB XT1944-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-04-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.395873", + "updated_at": "2026-06-19T00:43:44.395873" +} diff --git a/site/public/v1/smartphones/moto-e5-td-lte-emea-16gb-xt1944-1/score/index.json b/site/public/v1/smartphones/moto-e5-td-lte-emea-16gb-xt1944-1/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-td-lte-emea-16gb-xt1944-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e5-td-lte-us-16gb-xt1920dl/index.json b/site/public/v1/smartphones/moto-e5-td-lte-us-16gb-xt1920dl/index.json new file mode 100644 index 00000000000..9d46784758a --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-td-lte-us-16gb-xt1920dl/index.json @@ -0,0 +1,76 @@ +{ + "id": 1952, + "slug": "moto-e5-td-lte-us-16gb-xt1920dl", + "name": "Moto E5 TD-LTE US 16GB XT1920DL", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.395873", + "updated_at": "2026-06-19T00:43:44.395873" +} diff --git a/site/public/v1/smartphones/moto-e5-td-lte-us-16gb-xt1920dl/score/index.json b/site/public/v1/smartphones/moto-e5-td-lte-us-16gb-xt1920dl/score/index.json new file mode 100644 index 00000000000..7f209133483 --- /dev/null +++ b/site/public/v1/smartphones/moto-e5-td-lte-us-16gb-xt1920dl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e6-lte-a-na-xt2005-1-xt2005-1pp/index.json b/site/public/v1/smartphones/moto-e6-lte-a-na-xt2005-1-xt2005-1pp/index.json new file mode 100644 index 00000000000..3b5886d5791 --- /dev/null +++ b/site/public/v1/smartphones/moto-e6-lte-a-na-xt2005-1-xt2005-1pp/index.json @@ -0,0 +1,76 @@ +{ + "id": 2005, + "slug": "moto-e6-lte-a-na-xt2005-1-xt2005-1pp", + "name": "Moto E6 LTE-A NA XT2005-1 / XT2005-1PP", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 113, + "slug": "snapdragon-435", + "name": "Snapdragon 435", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-435" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.401875", + "updated_at": "2026-06-19T00:43:44.401875" +} diff --git a/site/public/v1/smartphones/moto-e6-lte-a-na-xt2005-1-xt2005-1pp/score/index.json b/site/public/v1/smartphones/moto-e6-lte-a-na-xt2005-1-xt2005-1pp/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/moto-e6-lte-a-na-xt2005-1-xt2005-1pp/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e6-plus-dual-sim-lte-a-latam-au-32gb-xt2025-1/index.json b/site/public/v1/smartphones/moto-e6-plus-dual-sim-lte-a-latam-au-32gb-xt2025-1/index.json new file mode 100644 index 00000000000..bc61d01ab07 --- /dev/null +++ b/site/public/v1/smartphones/moto-e6-plus-dual-sim-lte-a-latam-au-32gb-xt2025-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2006, + "slug": "moto-e6-plus-dual-sim-lte-a-latam-au-32gb-xt2025-1", + "name": "Moto E6 Plus Dual SIM LTE-A LATAM AU 32GB XT2025-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 149.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.401875", + "updated_at": "2026-06-19T00:43:44.401875" +} diff --git a/site/public/v1/smartphones/moto-e6-plus-dual-sim-lte-a-latam-au-32gb-xt2025-1/score/index.json b/site/public/v1/smartphones/moto-e6-plus-dual-sim-lte-a-latam-au-32gb-xt2025-1/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/moto-e6-plus-dual-sim-lte-a-latam-au-32gb-xt2025-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e6-plus-dual-sim-lte-a-latam-au-64gb-xt2025-1/index.json b/site/public/v1/smartphones/moto-e6-plus-dual-sim-lte-a-latam-au-64gb-xt2025-1/index.json new file mode 100644 index 00000000000..3f1c7287f25 --- /dev/null +++ b/site/public/v1/smartphones/moto-e6-plus-dual-sim-lte-a-latam-au-64gb-xt2025-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2007, + "slug": "moto-e6-plus-dual-sim-lte-a-latam-au-64gb-xt2025-1", + "name": "Moto E6 Plus Dual SIM LTE-A LATAM AU 64GB XT2025-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 149.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.401875", + "updated_at": "2026-06-19T00:43:44.401875" +} diff --git a/site/public/v1/smartphones/moto-e6-plus-dual-sim-lte-a-latam-au-64gb-xt2025-1/score/index.json b/site/public/v1/smartphones/moto-e6-plus-dual-sim-lte-a-latam-au-64gb-xt2025-1/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/moto-e6-plus-dual-sim-lte-a-latam-au-64gb-xt2025-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e6-plus-global-dual-sim-td-lte-32gb-xt2025-2/index.json b/site/public/v1/smartphones/moto-e6-plus-global-dual-sim-td-lte-32gb-xt2025-2/index.json new file mode 100644 index 00000000000..384a9d76ea5 --- /dev/null +++ b/site/public/v1/smartphones/moto-e6-plus-global-dual-sim-td-lte-32gb-xt2025-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 2008, + "slug": "moto-e6-plus-global-dual-sim-td-lte-32gb-xt2025-2", + "name": "Moto E6 Plus Global Dual SIM TD-LTE 32GB XT2025-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 149.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.402875", + "updated_at": "2026-06-19T00:43:44.402875" +} diff --git a/site/public/v1/smartphones/moto-e6-plus-global-dual-sim-td-lte-32gb-xt2025-2/score/index.json b/site/public/v1/smartphones/moto-e6-plus-global-dual-sim-td-lte-32gb-xt2025-2/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/moto-e6-plus-global-dual-sim-td-lte-32gb-xt2025-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e6-plus-global-dual-sim-td-lte-64gb-xt2025-2/index.json b/site/public/v1/smartphones/moto-e6-plus-global-dual-sim-td-lte-64gb-xt2025-2/index.json new file mode 100644 index 00000000000..c293d67db58 --- /dev/null +++ b/site/public/v1/smartphones/moto-e6-plus-global-dual-sim-td-lte-64gb-xt2025-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 2009, + "slug": "moto-e6-plus-global-dual-sim-td-lte-64gb-xt2025-2", + "name": "Moto E6 Plus Global Dual SIM TD-LTE 64GB XT2025-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 149.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.402875", + "updated_at": "2026-06-19T00:43:44.402875" +} diff --git a/site/public/v1/smartphones/moto-e6-plus-global-dual-sim-td-lte-64gb-xt2025-2/score/index.json b/site/public/v1/smartphones/moto-e6-plus-global-dual-sim-td-lte-64gb-xt2025-2/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/moto-e6-plus-global-dual-sim-td-lte-64gb-xt2025-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e6-plus-lte-a-latam-au-32gb-xt2025-1/index.json b/site/public/v1/smartphones/moto-e6-plus-lte-a-latam-au-32gb-xt2025-1/index.json new file mode 100644 index 00000000000..ab2a3844e19 --- /dev/null +++ b/site/public/v1/smartphones/moto-e6-plus-lte-a-latam-au-32gb-xt2025-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2010, + "slug": "moto-e6-plus-lte-a-latam-au-32gb-xt2025-1", + "name": "Moto E6 Plus LTE-A LATAM AU 32GB XT2025-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 149.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.402875", + "updated_at": "2026-06-19T00:43:44.402875" +} diff --git a/site/public/v1/smartphones/moto-e6-plus-lte-a-latam-au-32gb-xt2025-1/score/index.json b/site/public/v1/smartphones/moto-e6-plus-lte-a-latam-au-32gb-xt2025-1/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/moto-e6-plus-lte-a-latam-au-32gb-xt2025-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e6-plus-lte-a-latam-au-64gb-xt2025-1/index.json b/site/public/v1/smartphones/moto-e6-plus-lte-a-latam-au-64gb-xt2025-1/index.json new file mode 100644 index 00000000000..15b52f426f5 --- /dev/null +++ b/site/public/v1/smartphones/moto-e6-plus-lte-a-latam-au-64gb-xt2025-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2011, + "slug": "moto-e6-plus-lte-a-latam-au-64gb-xt2025-1", + "name": "Moto E6 Plus LTE-A LATAM AU 64GB XT2025-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 149.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.402875", + "updated_at": "2026-06-19T00:43:44.402875" +} diff --git a/site/public/v1/smartphones/moto-e6-plus-lte-a-latam-au-64gb-xt2025-1/score/index.json b/site/public/v1/smartphones/moto-e6-plus-lte-a-latam-au-64gb-xt2025-1/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/moto-e6-plus-lte-a-latam-au-64gb-xt2025-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e6-plus-td-lte-eu-32gb-xt2025-2/index.json b/site/public/v1/smartphones/moto-e6-plus-td-lte-eu-32gb-xt2025-2/index.json new file mode 100644 index 00000000000..9c437b98381 --- /dev/null +++ b/site/public/v1/smartphones/moto-e6-plus-td-lte-eu-32gb-xt2025-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 2088, + "slug": "moto-e6-plus-td-lte-eu-32gb-xt2025-2", + "name": "Moto E6 Plus TD-LTE EU 32GB XT2025-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 149.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.412874", + "updated_at": "2026-06-19T00:43:44.412874" +} diff --git a/site/public/v1/smartphones/moto-e6-plus-td-lte-eu-32gb-xt2025-2/score/index.json b/site/public/v1/smartphones/moto-e6-plus-td-lte-eu-32gb-xt2025-2/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/moto-e6-plus-td-lte-eu-32gb-xt2025-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e6-plus-td-lte-eu-64gb-xt2025-2/index.json b/site/public/v1/smartphones/moto-e6-plus-td-lte-eu-64gb-xt2025-2/index.json new file mode 100644 index 00000000000..553fb1888ac --- /dev/null +++ b/site/public/v1/smartphones/moto-e6-plus-td-lte-eu-64gb-xt2025-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 2012, + "slug": "moto-e6-plus-td-lte-eu-64gb-xt2025-2", + "name": "Moto E6 Plus TD-LTE EU 64GB XT2025-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 149.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.402875", + "updated_at": "2026-06-19T00:43:44.402875" +} diff --git a/site/public/v1/smartphones/moto-e6-plus-td-lte-eu-64gb-xt2025-2/score/index.json b/site/public/v1/smartphones/moto-e6-plus-td-lte-eu-64gb-xt2025-2/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/moto-e6-plus-td-lte-eu-64gb-xt2025-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e6-td-lte-na-xt2005-3/index.json b/site/public/v1/smartphones/moto-e6-td-lte-na-xt2005-3/index.json new file mode 100644 index 00000000000..7619fa15c15 --- /dev/null +++ b/site/public/v1/smartphones/moto-e6-td-lte-na-xt2005-3/index.json @@ -0,0 +1,76 @@ +{ + "id": 2014, + "slug": "moto-e6-td-lte-na-xt2005-3", + "name": "Moto E6 TD-LTE NA XT2005-3", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 113, + "slug": "snapdragon-435", + "name": "Snapdragon 435", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-435" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.403874", + "updated_at": "2026-06-19T00:43:44.403874" +} diff --git a/site/public/v1/smartphones/moto-e6-td-lte-na-xt2005-3/score/index.json b/site/public/v1/smartphones/moto-e6-td-lte-na-xt2005-3/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/moto-e6-td-lte-na-xt2005-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e6-td-lte-na-xt2005-4/index.json b/site/public/v1/smartphones/moto-e6-td-lte-na-xt2005-4/index.json new file mode 100644 index 00000000000..adf231efd17 --- /dev/null +++ b/site/public/v1/smartphones/moto-e6-td-lte-na-xt2005-4/index.json @@ -0,0 +1,76 @@ +{ + "id": 2015, + "slug": "moto-e6-td-lte-na-xt2005-4", + "name": "Moto E6 TD-LTE NA XT2005-4", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 113, + "slug": "snapdragon-435", + "name": "Snapdragon 435", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-435" + }, + "release_date": "2019-08-28", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.403874", + "updated_at": "2026-06-19T00:43:44.403874" +} diff --git a/site/public/v1/smartphones/moto-e6-td-lte-na-xt2005-4/score/index.json b/site/public/v1/smartphones/moto-e6-td-lte-na-xt2005-4/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/moto-e6-td-lte-na-xt2005-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e6-td-lte-na-xt2005-5/index.json b/site/public/v1/smartphones/moto-e6-td-lte-na-xt2005-5/index.json new file mode 100644 index 00000000000..98754967582 --- /dev/null +++ b/site/public/v1/smartphones/moto-e6-td-lte-na-xt2005-5/index.json @@ -0,0 +1,76 @@ +{ + "id": 2016, + "slug": "moto-e6-td-lte-na-xt2005-5", + "name": "Moto E6 TD-LTE NA XT2005-5", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 113, + "slug": "snapdragon-435", + "name": "Snapdragon 435", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-435" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.403874", + "updated_at": "2026-06-19T00:43:44.403874" +} diff --git a/site/public/v1/smartphones/moto-e6-td-lte-na-xt2005-5/score/index.json b/site/public/v1/smartphones/moto-e6-td-lte-na-xt2005-5/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/moto-e6-td-lte-na-xt2005-5/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e6-td-lte-na-xt2005dl/index.json b/site/public/v1/smartphones/moto-e6-td-lte-na-xt2005dl/index.json new file mode 100644 index 00000000000..0a5c66dacc0 --- /dev/null +++ b/site/public/v1/smartphones/moto-e6-td-lte-na-xt2005dl/index.json @@ -0,0 +1,76 @@ +{ + "id": 2017, + "slug": "moto-e6-td-lte-na-xt2005dl", + "name": "Moto E6 TD-LTE NA XT2005DL", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 113, + "slug": "snapdragon-435", + "name": "Snapdragon 435", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-435" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.403874", + "updated_at": "2026-06-19T00:43:44.403874" +} diff --git a/site/public/v1/smartphones/moto-e6-td-lte-na-xt2005dl/score/index.json b/site/public/v1/smartphones/moto-e6-td-lte-na-xt2005dl/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/moto-e6-td-lte-na-xt2005dl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e6s-2020-dual-sim-lte-latam-32gb-xt2053-2-moto-e6-s/index.json b/site/public/v1/smartphones/moto-e6s-2020-dual-sim-lte-latam-32gb-xt2053-2-moto-e6-s/index.json new file mode 100644 index 00000000000..6950cd33ad6 --- /dev/null +++ b/site/public/v1/smartphones/moto-e6s-2020-dual-sim-lte-latam-32gb-xt2053-2-moto-e6-s/index.json @@ -0,0 +1,76 @@ +{ + "id": 2018, + "slug": "moto-e6s-2020-dual-sim-lte-latam-32gb-xt2053-2-moto-e6-s", + "name": "Moto E6s 2020 Dual SIM LTE LATAM 32GB XT2053-2 / Moto E6 S", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.403874", + "updated_at": "2026-06-19T00:43:44.403874" +} diff --git a/site/public/v1/smartphones/moto-e6s-2020-dual-sim-lte-latam-32gb-xt2053-2-moto-e6-s/score/index.json b/site/public/v1/smartphones/moto-e6s-2020-dual-sim-lte-latam-32gb-xt2053-2-moto-e6-s/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/moto-e6s-2020-dual-sim-lte-latam-32gb-xt2053-2-moto-e6-s/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e6s-2020-dual-sim-td-lte-au-jp-32gb-xt2053-4/index.json b/site/public/v1/smartphones/moto-e6s-2020-dual-sim-td-lte-au-jp-32gb-xt2053-4/index.json new file mode 100644 index 00000000000..87c27be6e2b --- /dev/null +++ b/site/public/v1/smartphones/moto-e6s-2020-dual-sim-td-lte-au-jp-32gb-xt2053-4/index.json @@ -0,0 +1,76 @@ +{ + "id": 2089, + "slug": "moto-e6s-2020-dual-sim-td-lte-au-jp-32gb-xt2053-4", + "name": "Moto E6s 2020 Dual SIM TD-LTE AU JP 32GB XT2053-4", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.412874", + "updated_at": "2026-06-19T00:43:44.412874" +} diff --git a/site/public/v1/smartphones/moto-e6s-2020-dual-sim-td-lte-au-jp-32gb-xt2053-4/score/index.json b/site/public/v1/smartphones/moto-e6s-2020-dual-sim-td-lte-au-jp-32gb-xt2053-4/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/moto-e6s-2020-dual-sim-td-lte-au-jp-32gb-xt2053-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e6s-2020-global-dual-sim-td-lte-32gb-xt2053-1/index.json b/site/public/v1/smartphones/moto-e6s-2020-global-dual-sim-td-lte-32gb-xt2053-1/index.json new file mode 100644 index 00000000000..5e139a16f32 --- /dev/null +++ b/site/public/v1/smartphones/moto-e6s-2020-global-dual-sim-td-lte-32gb-xt2053-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2090, + "slug": "moto-e6s-2020-global-dual-sim-td-lte-32gb-xt2053-1", + "name": "Moto E6s 2020 Global Dual SIM TD-LTE 32GB XT2053-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-04-02", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.412874", + "updated_at": "2026-06-19T00:43:44.412874" +} diff --git a/site/public/v1/smartphones/moto-e6s-2020-global-dual-sim-td-lte-32gb-xt2053-1/score/index.json b/site/public/v1/smartphones/moto-e6s-2020-global-dual-sim-td-lte-32gb-xt2053-1/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/moto-e6s-2020-global-dual-sim-td-lte-32gb-xt2053-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e6s-2020-lte-latam-32gb-xt2053-2-moto-e6-s/index.json b/site/public/v1/smartphones/moto-e6s-2020-lte-latam-32gb-xt2053-2-moto-e6-s/index.json new file mode 100644 index 00000000000..26a0c55be61 --- /dev/null +++ b/site/public/v1/smartphones/moto-e6s-2020-lte-latam-32gb-xt2053-2-moto-e6-s/index.json @@ -0,0 +1,76 @@ +{ + "id": 2091, + "slug": "moto-e6s-2020-lte-latam-32gb-xt2053-2-moto-e6-s", + "name": "Moto E6s 2020 LTE LATAM 32GB XT2053-2 / Moto E6 S", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.412874", + "updated_at": "2026-06-19T00:43:44.412874" +} diff --git a/site/public/v1/smartphones/moto-e6s-2020-lte-latam-32gb-xt2053-2-moto-e6-s/score/index.json b/site/public/v1/smartphones/moto-e6s-2020-lte-latam-32gb-xt2053-2-moto-e6-s/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/moto-e6s-2020-lte-latam-32gb-xt2053-2-moto-e6-s/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e6s-2020-td-lte-eu-16gb-xt2053-1/index.json b/site/public/v1/smartphones/moto-e6s-2020-td-lte-eu-16gb-xt2053-1/index.json new file mode 100644 index 00000000000..d8a8ff3ee3d --- /dev/null +++ b/site/public/v1/smartphones/moto-e6s-2020-td-lte-eu-16gb-xt2053-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2093, + "slug": "moto-e6s-2020-td-lte-eu-16gb-xt2053-1", + "name": "Moto E6s 2020 TD-LTE EU 16GB XT2053-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-04-02", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.412874", + "updated_at": "2026-06-19T00:43:44.412874" +} diff --git a/site/public/v1/smartphones/moto-e6s-2020-td-lte-eu-16gb-xt2053-1/score/index.json b/site/public/v1/smartphones/moto-e6s-2020-td-lte-eu-16gb-xt2053-1/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/moto-e6s-2020-td-lte-eu-16gb-xt2053-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e6s-dual-sim-td-lte-in-64gb-xt2025-2-moto-e6-plus/index.json b/site/public/v1/smartphones/moto-e6s-dual-sim-td-lte-in-64gb-xt2025-2-moto-e6-plus/index.json new file mode 100644 index 00000000000..987073a6eab --- /dev/null +++ b/site/public/v1/smartphones/moto-e6s-dual-sim-td-lte-in-64gb-xt2025-2-moto-e6-plus/index.json @@ -0,0 +1,76 @@ +{ + "id": 2020, + "slug": "moto-e6s-dual-sim-td-lte-in-64gb-xt2025-2-moto-e6-plus", + "name": "Moto E6s Dual SIM TD-LTE IN 64GB XT2025-2 / Moto E6 Plus", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-09-23", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 149.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.403874", + "updated_at": "2026-06-19T00:43:44.403874" +} diff --git a/site/public/v1/smartphones/moto-e6s-dual-sim-td-lte-in-64gb-xt2025-2-moto-e6-plus/score/index.json b/site/public/v1/smartphones/moto-e6s-dual-sim-td-lte-in-64gb-xt2025-2-moto-e6-plus/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/moto-e6s-dual-sim-td-lte-in-64gb-xt2025-2-moto-e6-plus/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e7-2020-dual-sim-lte-latam-32gb-xt2095-1/index.json b/site/public/v1/smartphones/moto-e7-2020-dual-sim-lte-latam-32gb-xt2095-1/index.json new file mode 100644 index 00000000000..e144d963be3 --- /dev/null +++ b/site/public/v1/smartphones/moto-e7-2020-dual-sim-lte-latam-32gb-xt2095-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2094, + "slug": "moto-e7-2020-dual-sim-lte-latam-32gb-xt2095-1", + "name": "Moto E7 2020 Dual SIM LTE LATAM 32GB XT2095-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 59, + "slug": "helio-g25", + "name": "Helio G25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g25" + }, + "release_date": "2020-11-01", + "msrp_usd": 1199, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": 23.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.412874", + "updated_at": "2026-06-19T00:43:44.412874" +} diff --git a/site/public/v1/smartphones/moto-e7-2020-dual-sim-lte-latam-32gb-xt2095-1/score/index.json b/site/public/v1/smartphones/moto-e7-2020-dual-sim-lte-latam-32gb-xt2095-1/score/index.json new file mode 100644 index 00000000000..4dddff54d04 --- /dev/null +++ b/site/public/v1/smartphones/moto-e7-2020-dual-sim-lte-latam-32gb-xt2095-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": 23.7 +} diff --git a/site/public/v1/smartphones/moto-e7-2020-dual-sim-lte-latam-64gb-xt2095-1/index.json b/site/public/v1/smartphones/moto-e7-2020-dual-sim-lte-latam-64gb-xt2095-1/index.json new file mode 100644 index 00000000000..05e6b66c3e3 --- /dev/null +++ b/site/public/v1/smartphones/moto-e7-2020-dual-sim-lte-latam-64gb-xt2095-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2095, + "slug": "moto-e7-2020-dual-sim-lte-latam-64gb-xt2095-1", + "name": "Moto E7 2020 Dual SIM LTE LATAM 64GB XT2095-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 59, + "slug": "helio-g25", + "name": "Helio G25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g25" + }, + "release_date": "2020-11-01", + "msrp_usd": 1299, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": 19.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.413874", + "updated_at": "2026-06-19T00:43:44.413874" +} diff --git a/site/public/v1/smartphones/moto-e7-2020-dual-sim-lte-latam-64gb-xt2095-1/score/index.json b/site/public/v1/smartphones/moto-e7-2020-dual-sim-lte-latam-64gb-xt2095-1/score/index.json new file mode 100644 index 00000000000..6446084d5c4 --- /dev/null +++ b/site/public/v1/smartphones/moto-e7-2020-dual-sim-lte-latam-64gb-xt2095-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": 19.9 +} diff --git a/site/public/v1/smartphones/moto-e7-2020-dual-sim-td-lte-apac-64gb-xt2095-3/index.json b/site/public/v1/smartphones/moto-e7-2020-dual-sim-td-lte-apac-64gb-xt2095-3/index.json new file mode 100644 index 00000000000..bb708e36230 --- /dev/null +++ b/site/public/v1/smartphones/moto-e7-2020-dual-sim-td-lte-apac-64gb-xt2095-3/index.json @@ -0,0 +1,76 @@ +{ + "id": 2171, + "slug": "moto-e7-2020-dual-sim-td-lte-apac-64gb-xt2095-3", + "name": "Moto E7 2020 Dual SIM TD-LTE APAC 64GB XT2095-3", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 59, + "slug": "helio-g25", + "name": "Helio G25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g25" + }, + "release_date": "2021-02-26", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.422873", + "updated_at": "2026-06-19T00:43:44.422873" +} diff --git a/site/public/v1/smartphones/moto-e7-2020-dual-sim-td-lte-apac-64gb-xt2095-3/score/index.json b/site/public/v1/smartphones/moto-e7-2020-dual-sim-td-lte-apac-64gb-xt2095-3/score/index.json new file mode 100644 index 00000000000..6de7755463e --- /dev/null +++ b/site/public/v1/smartphones/moto-e7-2020-dual-sim-td-lte-apac-64gb-xt2095-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e7-2020-dual-sim-td-lte-emea-32gb-xt2095-2/index.json b/site/public/v1/smartphones/moto-e7-2020-dual-sim-td-lte-emea-32gb-xt2095-2/index.json new file mode 100644 index 00000000000..6ff959041ac --- /dev/null +++ b/site/public/v1/smartphones/moto-e7-2020-dual-sim-td-lte-emea-32gb-xt2095-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 2096, + "slug": "moto-e7-2020-dual-sim-td-lte-emea-32gb-xt2095-2", + "name": "Moto E7 2020 Dual SIM TD-LTE EMEA 32GB XT2095-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 59, + "slug": "helio-g25", + "name": "Helio G25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g25" + }, + "release_date": "2020-12-01", + "msrp_usd": 119, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": 58.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.413874", + "updated_at": "2026-06-19T00:43:44.413874" +} diff --git a/site/public/v1/smartphones/moto-e7-2020-dual-sim-td-lte-emea-32gb-xt2095-2/score/index.json b/site/public/v1/smartphones/moto-e7-2020-dual-sim-td-lte-emea-32gb-xt2095-2/score/index.json new file mode 100644 index 00000000000..5e7255a2273 --- /dev/null +++ b/site/public/v1/smartphones/moto-e7-2020-dual-sim-td-lte-emea-32gb-xt2095-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": 58.3 +} diff --git a/site/public/v1/smartphones/moto-e7-2020-lte-latam-32gb-xt2095-1/index.json b/site/public/v1/smartphones/moto-e7-2020-lte-latam-32gb-xt2095-1/index.json new file mode 100644 index 00000000000..a4b6c8d692e --- /dev/null +++ b/site/public/v1/smartphones/moto-e7-2020-lte-latam-32gb-xt2095-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2097, + "slug": "moto-e7-2020-lte-latam-32gb-xt2095-1", + "name": "Moto E7 2020 LTE LATAM 32GB XT2095-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 59, + "slug": "helio-g25", + "name": "Helio G25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g25" + }, + "release_date": "2020-11-01", + "msrp_usd": 3599, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": 8.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.413874", + "updated_at": "2026-06-19T00:43:44.413874" +} diff --git a/site/public/v1/smartphones/moto-e7-2020-lte-latam-32gb-xt2095-1/score/index.json b/site/public/v1/smartphones/moto-e7-2020-lte-latam-32gb-xt2095-1/score/index.json new file mode 100644 index 00000000000..5b88c59c94b --- /dev/null +++ b/site/public/v1/smartphones/moto-e7-2020-lte-latam-32gb-xt2095-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": 8.3 +} diff --git a/site/public/v1/smartphones/moto-e7-2020-td-lte-emea-32gb-xt2095-2/index.json b/site/public/v1/smartphones/moto-e7-2020-td-lte-emea-32gb-xt2095-2/index.json new file mode 100644 index 00000000000..190f4191958 --- /dev/null +++ b/site/public/v1/smartphones/moto-e7-2020-td-lte-emea-32gb-xt2095-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 2099, + "slug": "moto-e7-2020-td-lte-emea-32gb-xt2095-2", + "name": "Moto E7 2020 TD-LTE EMEA 32GB XT2095-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 59, + "slug": "helio-g25", + "name": "Helio G25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g25" + }, + "release_date": "2020-12-01", + "msrp_usd": 119, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": 58.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.413874", + "updated_at": "2026-06-19T00:43:44.413874" +} diff --git a/site/public/v1/smartphones/moto-e7-2020-td-lte-emea-32gb-xt2095-2/score/index.json b/site/public/v1/smartphones/moto-e7-2020-td-lte-emea-32gb-xt2095-2/score/index.json new file mode 100644 index 00000000000..5e7255a2273 --- /dev/null +++ b/site/public/v1/smartphones/moto-e7-2020-td-lte-emea-32gb-xt2095-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": 58.3 +} diff --git a/site/public/v1/smartphones/moto-e7-plus-2020-dual-sim-lte-a-latam-xt2081-1/index.json b/site/public/v1/smartphones/moto-e7-plus-2020-dual-sim-lte-a-latam-xt2081-1/index.json new file mode 100644 index 00000000000..f98a2dd191b --- /dev/null +++ b/site/public/v1/smartphones/moto-e7-plus-2020-dual-sim-lte-a-latam-xt2081-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2101, + "slug": "moto-e7-plus-2020-dual-sim-lte-a-latam-xt2081-1", + "name": "Moto E7 Plus 2020 Dual SIM LTE-A LATAM XT2081-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2020-09-12", + "msrp_usd": 1499, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": 14.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.413874", + "updated_at": "2026-06-19T00:43:44.413874" +} diff --git a/site/public/v1/smartphones/moto-e7-plus-2020-dual-sim-lte-a-latam-xt2081-1/score/index.json b/site/public/v1/smartphones/moto-e7-plus-2020-dual-sim-lte-a-latam-xt2081-1/score/index.json new file mode 100644 index 00000000000..e8f647dd29c --- /dev/null +++ b/site/public/v1/smartphones/moto-e7-plus-2020-dual-sim-lte-a-latam-xt2081-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": 14.1 +} diff --git a/site/public/v1/smartphones/moto-e7-plus-2020-global-dual-sim-td-lte-xt2081-2/index.json b/site/public/v1/smartphones/moto-e7-plus-2020-global-dual-sim-td-lte-xt2081-2/index.json new file mode 100644 index 00000000000..84717139eca --- /dev/null +++ b/site/public/v1/smartphones/moto-e7-plus-2020-global-dual-sim-td-lte-xt2081-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 2102, + "slug": "moto-e7-plus-2020-global-dual-sim-td-lte-xt2081-2", + "name": "Moto E7 Plus 2020 Global Dual SIM TD-LTE XT2081-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2020-10-01", + "msrp_usd": 150, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": 60.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.413874", + "updated_at": "2026-06-19T00:43:44.413874" +} diff --git a/site/public/v1/smartphones/moto-e7-plus-2020-global-dual-sim-td-lte-xt2081-2/score/index.json b/site/public/v1/smartphones/moto-e7-plus-2020-global-dual-sim-td-lte-xt2081-2/score/index.json new file mode 100644 index 00000000000..e86f5013ea6 --- /dev/null +++ b/site/public/v1/smartphones/moto-e7-plus-2020-global-dual-sim-td-lte-xt2081-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": 60.2 +} diff --git a/site/public/v1/smartphones/moto-e7-plus-2020-lte-a-latam-xt2081-1/index.json b/site/public/v1/smartphones/moto-e7-plus-2020-lte-a-latam-xt2081-1/index.json new file mode 100644 index 00000000000..e7f09cd0923 --- /dev/null +++ b/site/public/v1/smartphones/moto-e7-plus-2020-lte-a-latam-xt2081-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2103, + "slug": "moto-e7-plus-2020-lte-a-latam-xt2081-1", + "name": "Moto E7 Plus 2020 LTE-A LATAM XT2081-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2020-09-01", + "msrp_usd": 4299, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": 10.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.414874", + "updated_at": "2026-06-19T00:43:44.414874" +} diff --git a/site/public/v1/smartphones/moto-e7-plus-2020-lte-a-latam-xt2081-1/score/index.json b/site/public/v1/smartphones/moto-e7-plus-2020-lte-a-latam-xt2081-1/score/index.json new file mode 100644 index 00000000000..356163ac572 --- /dev/null +++ b/site/public/v1/smartphones/moto-e7-plus-2020-lte-a-latam-xt2081-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": 10.2 +} diff --git a/site/public/v1/smartphones/moto-e7-power-2021-dual-sim-lte-latam-32gb-xt2097-5/index.json b/site/public/v1/smartphones/moto-e7-power-2021-dual-sim-lte-latam-32gb-xt2097-5/index.json new file mode 100644 index 00000000000..669beb70d16 --- /dev/null +++ b/site/public/v1/smartphones/moto-e7-power-2021-dual-sim-lte-latam-32gb-xt2097-5/index.json @@ -0,0 +1,76 @@ +{ + "id": 2172, + "slug": "moto-e7-power-2021-dual-sim-lte-latam-32gb-xt2097-5", + "name": "Moto E7 Power 2021 Dual SIM LTE LATAM 32GB XT2097-5", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 59, + "slug": "helio-g25", + "name": "Helio G25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g25" + }, + "release_date": "2021-02-01", + "msrp_usd": 1099, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 199.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 28.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.422873", + "updated_at": "2026-06-19T00:43:44.422873" +} diff --git a/site/public/v1/smartphones/moto-e7-power-2021-dual-sim-lte-latam-32gb-xt2097-5/score/index.json b/site/public/v1/smartphones/moto-e7-power-2021-dual-sim-lte-latam-32gb-xt2097-5/score/index.json new file mode 100644 index 00000000000..07e5b950df1 --- /dev/null +++ b/site/public/v1/smartphones/moto-e7-power-2021-dual-sim-lte-latam-32gb-xt2097-5/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 28.1 +} diff --git a/site/public/v1/smartphones/moto-e7-power-2021-dual-sim-td-lte-apac-32gb-xt2097-7/index.json b/site/public/v1/smartphones/moto-e7-power-2021-dual-sim-td-lte-apac-32gb-xt2097-7/index.json new file mode 100644 index 00000000000..daff262bc50 --- /dev/null +++ b/site/public/v1/smartphones/moto-e7-power-2021-dual-sim-td-lte-apac-32gb-xt2097-7/index.json @@ -0,0 +1,76 @@ +{ + "id": 2173, + "slug": "moto-e7-power-2021-dual-sim-td-lte-apac-32gb-xt2097-7", + "name": "Moto E7 Power 2021 Dual SIM TD-LTE APAC 32GB XT2097-7", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 59, + "slug": "helio-g25", + "name": "Helio G25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g25" + }, + "release_date": "2021-02-26", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 199.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.422873", + "updated_at": "2026-06-19T00:43:44.422873" +} diff --git a/site/public/v1/smartphones/moto-e7-power-2021-dual-sim-td-lte-apac-32gb-xt2097-7/score/index.json b/site/public/v1/smartphones/moto-e7-power-2021-dual-sim-td-lte-apac-32gb-xt2097-7/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/moto-e7-power-2021-dual-sim-td-lte-apac-32gb-xt2097-7/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-e7-power-2021-global-dual-sim-td-lte-32gb-xt2097-6/index.json b/site/public/v1/smartphones/moto-e7-power-2021-global-dual-sim-td-lte-32gb-xt2097-6/index.json new file mode 100644 index 00000000000..fe1c90e6c96 --- /dev/null +++ b/site/public/v1/smartphones/moto-e7-power-2021-global-dual-sim-td-lte-32gb-xt2097-6/index.json @@ -0,0 +1,76 @@ +{ + "id": 2174, + "slug": "moto-e7-power-2021-global-dual-sim-td-lte-32gb-xt2097-6", + "name": "Moto E7 Power 2021 Global Dual SIM TD-LTE 32GB XT2097-6", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 59, + "slug": "helio-g25", + "name": "Helio G25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g25" + }, + "release_date": "2021-02-26", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 199.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.423874", + "updated_at": "2026-06-19T00:43:44.423874" +} diff --git a/site/public/v1/smartphones/moto-e7-power-2021-global-dual-sim-td-lte-32gb-xt2097-6/score/index.json b/site/public/v1/smartphones/moto-e7-power-2021-global-dual-sim-td-lte-32gb-xt2097-6/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/moto-e7-power-2021-global-dual-sim-td-lte-32gb-xt2097-6/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-edge-20-fusion-5g-premium-edition-2021-global-dual-sim-td-lte-128gb-xt2139-2/index.json b/site/public/v1/smartphones/moto-edge-20-fusion-5g-premium-edition-2021-global-dual-sim-td-lte-128gb-xt2139-2/index.json new file mode 100644 index 00000000000..f111f46eb92 --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-20-fusion-5g-premium-edition-2021-global-dual-sim-td-lte-128gb-xt2139-2/index.json @@ -0,0 +1,77 @@ +{ + "id": 2176, + "slug": "moto-edge-20-fusion-5g-premium-edition-2021-global-dual-sim-td-lte-128gb-xt2139-2", + "name": "Moto Edge 20 Fusion 5G Premium Edition 2021 Global Dual SIM TD-LTE 128GB XT2139-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2021-09-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.8, + "performance": 3.0, + "camera": 35.8, + "battery": 32.9, + "display": 39.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.423874", + "updated_at": "2026-06-19T00:43:44.423874" +} diff --git a/site/public/v1/smartphones/moto-edge-20-fusion-5g-premium-edition-2021-global-dual-sim-td-lte-128gb-xt2139-2/score/index.json b/site/public/v1/smartphones/moto-edge-20-fusion-5g-premium-edition-2021-global-dual-sim-td-lte-128gb-xt2139-2/score/index.json new file mode 100644 index 00000000000..e407f37de04 --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-20-fusion-5g-premium-edition-2021-global-dual-sim-td-lte-128gb-xt2139-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.8, + "performance": 3.0, + "camera": 35.8, + "battery": 32.9, + "display": 39.5, + "value": null +} diff --git a/site/public/v1/smartphones/moto-edge-20-fusion-5g-standard-edition-2021-global-dual-sim-td-lte-128gb-xt2139-2/index.json b/site/public/v1/smartphones/moto-edge-20-fusion-5g-standard-edition-2021-global-dual-sim-td-lte-128gb-xt2139-2/index.json new file mode 100644 index 00000000000..2e2799a1d29 --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-20-fusion-5g-standard-edition-2021-global-dual-sim-td-lte-128gb-xt2139-2/index.json @@ -0,0 +1,77 @@ +{ + "id": 2177, + "slug": "moto-edge-20-fusion-5g-standard-edition-2021-global-dual-sim-td-lte-128gb-xt2139-2", + "name": "Moto Edge 20 Fusion 5G Standard Edition 2021 Global Dual SIM TD-LTE 128GB XT2139-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2021-09-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 1.5, + "camera": 35.8, + "battery": 32.9, + "display": 39.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.423874", + "updated_at": "2026-06-19T00:43:44.423874" +} diff --git a/site/public/v1/smartphones/moto-edge-20-fusion-5g-standard-edition-2021-global-dual-sim-td-lte-128gb-xt2139-2/score/index.json b/site/public/v1/smartphones/moto-edge-20-fusion-5g-standard-edition-2021-global-dual-sim-td-lte-128gb-xt2139-2/score/index.json new file mode 100644 index 00000000000..bdee36d0879 --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-20-fusion-5g-standard-edition-2021-global-dual-sim-td-lte-128gb-xt2139-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 1.5, + "camera": 35.8, + "battery": 32.9, + "display": 39.5, + "value": null +} diff --git a/site/public/v1/smartphones/moto-edge-20-lite-5g-2021-dual-sim-td-lte-latam-128gb-xt2139-1/index.json b/site/public/v1/smartphones/moto-edge-20-lite-5g-2021-dual-sim-td-lte-latam-128gb-xt2139-1/index.json new file mode 100644 index 00000000000..f5ff8588d19 --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-20-lite-5g-2021-dual-sim-td-lte-latam-128gb-xt2139-1/index.json @@ -0,0 +1,77 @@ +{ + "id": 2179, + "slug": "moto-edge-20-lite-5g-2021-dual-sim-td-lte-latam-128gb-xt2139-1", + "name": "Moto Edge 20 Lite 5G 2021 Dual SIM TD-LTE LATAM 128GB XT2139-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2021-08-16", + "msrp_usd": 2999, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 1.5, + "camera": 35.8, + "battery": 32.9, + "display": 39.5, + "value": 13.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.423874", + "updated_at": "2026-06-19T00:43:44.423874" +} diff --git a/site/public/v1/smartphones/moto-edge-20-lite-5g-2021-dual-sim-td-lte-latam-128gb-xt2139-1/score/index.json b/site/public/v1/smartphones/moto-edge-20-lite-5g-2021-dual-sim-td-lte-latam-128gb-xt2139-1/score/index.json new file mode 100644 index 00000000000..4904bbb828f --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-20-lite-5g-2021-dual-sim-td-lte-latam-128gb-xt2139-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 1.5, + "camera": 35.8, + "battery": 32.9, + "display": 39.5, + "value": 13.7 +} diff --git a/site/public/v1/smartphones/moto-edge-20-lite-5g-2021-global-dual-sim-td-lte-128gb-xt2139-1/index.json b/site/public/v1/smartphones/moto-edge-20-lite-5g-2021-global-dual-sim-td-lte-128gb-xt2139-1/index.json new file mode 100644 index 00000000000..f4a8a12a371 --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-20-lite-5g-2021-global-dual-sim-td-lte-128gb-xt2139-1/index.json @@ -0,0 +1,77 @@ +{ + "id": 2180, + "slug": "moto-edge-20-lite-5g-2021-global-dual-sim-td-lte-128gb-xt2139-1", + "name": "Moto Edge 20 Lite 5G 2021 Global Dual SIM TD-LTE 128GB XT2139-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2021-08-16", + "msrp_usd": 299, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.8, + "performance": 3.0, + "camera": 35.8, + "battery": 32.9, + "display": 39.5, + "value": 63.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.423874", + "updated_at": "2026-06-19T00:43:44.423874" +} diff --git a/site/public/v1/smartphones/moto-edge-20-lite-5g-2021-global-dual-sim-td-lte-128gb-xt2139-1/score/index.json b/site/public/v1/smartphones/moto-edge-20-lite-5g-2021-global-dual-sim-td-lte-128gb-xt2139-1/score/index.json new file mode 100644 index 00000000000..1effebfa382 --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-20-lite-5g-2021-global-dual-sim-td-lte-128gb-xt2139-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.8, + "performance": 3.0, + "camera": 35.8, + "battery": 32.9, + "display": 39.5, + "value": 63.9 +} diff --git a/site/public/v1/smartphones/moto-edge-20-lite-5g-2021-td-lte-latam-128gb-xt2139-1/index.json b/site/public/v1/smartphones/moto-edge-20-lite-5g-2021-td-lte-latam-128gb-xt2139-1/index.json new file mode 100644 index 00000000000..41875d547b7 --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-20-lite-5g-2021-td-lte-latam-128gb-xt2139-1/index.json @@ -0,0 +1,77 @@ +{ + "id": 2181, + "slug": "moto-edge-20-lite-5g-2021-td-lte-latam-128gb-xt2139-1", + "name": "Moto Edge 20 Lite 5G 2021 TD-LTE LATAM 128GB XT2139-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2021-08-16", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 1.5, + "camera": 35.8, + "battery": 32.9, + "display": 39.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.424874", + "updated_at": "2026-06-19T00:43:44.424874" +} diff --git a/site/public/v1/smartphones/moto-edge-20-lite-5g-2021-td-lte-latam-128gb-xt2139-1/score/index.json b/site/public/v1/smartphones/moto-edge-20-lite-5g-2021-td-lte-latam-128gb-xt2139-1/score/index.json new file mode 100644 index 00000000000..bdee36d0879 --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-20-lite-5g-2021-td-lte-latam-128gb-xt2139-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 1.5, + "camera": 35.8, + "battery": 32.9, + "display": 39.5, + "value": null +} diff --git a/site/public/v1/smartphones/moto-edge-20-pro-5g-2021-global-dual-sim-td-lte-256gb-xt2153-1/index.json b/site/public/v1/smartphones/moto-edge-20-pro-5g-2021-global-dual-sim-td-lte-256gb-xt2153-1/index.json new file mode 100644 index 00000000000..eab18cc4e00 --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-20-pro-5g-2021-global-dual-sim-td-lte-256gb-xt2153-1/index.json @@ -0,0 +1,77 @@ +{ + "id": 2183, + "slug": "moto-edge-20-pro-5g-2021-global-dual-sim-td-lte-256gb-xt2153-1", + "name": "Moto Edge 20 Pro 5G 2021 Global Dual SIM TD-LTE 256GB XT2153-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-08-16", + "msrp_usd": 650, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.0, + "performance": 9.1, + "camera": 35.8, + "battery": 25.4, + "display": 61.8, + "value": 53.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.424874", + "updated_at": "2026-06-19T00:43:44.424874" +} diff --git a/site/public/v1/smartphones/moto-edge-20-pro-5g-2021-global-dual-sim-td-lte-256gb-xt2153-1/score/index.json b/site/public/v1/smartphones/moto-edge-20-pro-5g-2021-global-dual-sim-td-lte-256gb-xt2153-1/score/index.json new file mode 100644 index 00000000000..0727bccab7a --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-20-pro-5g-2021-global-dual-sim-td-lte-256gb-xt2153-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.0, + "performance": 9.1, + "camera": 35.8, + "battery": 25.4, + "display": 61.8, + "value": 53.0 +} diff --git a/site/public/v1/smartphones/moto-edge-20-pro-5g-2021-global-td-lte-256gb-xt2153-1/index.json b/site/public/v1/smartphones/moto-edge-20-pro-5g-2021-global-td-lte-256gb-xt2153-1/index.json new file mode 100644 index 00000000000..67ff7c9831f --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-20-pro-5g-2021-global-td-lte-256gb-xt2153-1/index.json @@ -0,0 +1,77 @@ +{ + "id": 2184, + "slug": "moto-edge-20-pro-5g-2021-global-td-lte-256gb-xt2153-1", + "name": "Moto Edge 20 Pro 5G 2021 Global TD-LTE 256GB XT2153-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-08-16", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.0, + "performance": 9.1, + "camera": 35.8, + "battery": 25.4, + "display": 61.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.424874", + "updated_at": "2026-06-19T00:43:44.424874" +} diff --git a/site/public/v1/smartphones/moto-edge-20-pro-5g-2021-global-td-lte-256gb-xt2153-1/score/index.json b/site/public/v1/smartphones/moto-edge-20-pro-5g-2021-global-td-lte-256gb-xt2153-1/score/index.json new file mode 100644 index 00000000000..bf5fdf05695 --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-20-pro-5g-2021-global-td-lte-256gb-xt2153-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.0, + "performance": 9.1, + "camera": 35.8, + "battery": 25.4, + "display": 61.8, + "value": null +} diff --git a/site/public/v1/smartphones/moto-edge-30-pro-5g-2022-global-dual-sim-td-lte-128gb-xt2201-1/index.json b/site/public/v1/smartphones/moto-edge-30-pro-5g-2022-global-dual-sim-td-lte-128gb-xt2201-1/index.json new file mode 100644 index 00000000000..191a9705a3b --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-30-pro-5g-2022-global-dual-sim-td-lte-128gb-xt2201-1/index.json @@ -0,0 +1,77 @@ +{ + "id": 2286, + "slug": "moto-edge-30-pro-5g-2022-global-dual-sim-td-lte-128gb-xt2201-1", + "name": "Moto Edge 30 Pro 5G 2022 Global Dual SIM TD-LTE 128GB XT2201-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-03-21", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 60.3 + } + ], + "battery_mah": 4800, + "charging_wired_w": 68.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 35.5, + "performance": 10.9, + "camera": 17.2, + "battery": 52.1, + "display": 62.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.437874", + "updated_at": "2026-06-19T00:43:44.437874" +} diff --git a/site/public/v1/smartphones/moto-edge-30-pro-5g-2022-global-dual-sim-td-lte-128gb-xt2201-1/score/index.json b/site/public/v1/smartphones/moto-edge-30-pro-5g-2022-global-dual-sim-td-lte-128gb-xt2201-1/score/index.json new file mode 100644 index 00000000000..ce3de620b0d --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-30-pro-5g-2022-global-dual-sim-td-lte-128gb-xt2201-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 35.5, + "performance": 10.9, + "camera": 17.2, + "battery": 52.1, + "display": 62.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-edge-5g-dual-sim-td-lte-emea-xt2063-4/index.json b/site/public/v1/smartphones/moto-edge-5g-dual-sim-td-lte-emea-xt2063-4/index.json new file mode 100644 index 00000000000..33edd44f0c7 --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-5g-dual-sim-td-lte-emea-xt2063-4/index.json @@ -0,0 +1,77 @@ +{ + "id": 2104, + "slug": "moto-edge-5g-dual-sim-td-lte-emea-xt2063-4", + "name": "Moto Edge 5G Dual SIM TD-LTE EMEA XT2063-4", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-05-28", + "msrp_usd": 2999, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 385 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 1.5, + "camera": 21.5, + "battery": 23.1, + "display": 38.5, + "value": 10.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.414874", + "updated_at": "2026-06-19T00:43:44.414874" +} diff --git a/site/public/v1/smartphones/moto-edge-5g-dual-sim-td-lte-emea-xt2063-4/score/index.json b/site/public/v1/smartphones/moto-edge-5g-dual-sim-td-lte-emea-xt2063-4/score/index.json new file mode 100644 index 00000000000..4aac69b1f36 --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-5g-dual-sim-td-lte-emea-xt2063-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 1.5, + "camera": 21.5, + "battery": 23.1, + "display": 38.5, + "value": 10.6 +} diff --git a/site/public/v1/smartphones/moto-edge-5g-global-dual-sim-td-lte-xt2063-3/index.json b/site/public/v1/smartphones/moto-edge-5g-global-dual-sim-td-lte-xt2063-3/index.json new file mode 100644 index 00000000000..91a693b1d45 --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-5g-global-dual-sim-td-lte-xt2063-3/index.json @@ -0,0 +1,77 @@ +{ + "id": 2105, + "slug": "moto-edge-5g-global-dual-sim-td-lte-xt2063-3", + "name": "Moto Edge 5G Global Dual SIM TD-LTE XT2063-3", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-05-28", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 385 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 1.5, + "camera": 21.5, + "battery": 23.1, + "display": 38.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.414874", + "updated_at": "2026-06-19T00:43:44.414874" +} diff --git a/site/public/v1/smartphones/moto-edge-5g-global-dual-sim-td-lte-xt2063-3/score/index.json b/site/public/v1/smartphones/moto-edge-5g-global-dual-sim-td-lte-xt2063-3/score/index.json new file mode 100644 index 00000000000..08e6b15b195 --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-5g-global-dual-sim-td-lte-xt2063-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 1.5, + "camera": 21.5, + "battery": 23.1, + "display": 38.5, + "value": null +} diff --git a/site/public/v1/smartphones/moto-edge-5g-global-td-lte-xt2061-3/index.json b/site/public/v1/smartphones/moto-edge-5g-global-td-lte-xt2061-3/index.json new file mode 100644 index 00000000000..9fb0627640e --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-5g-global-td-lte-xt2061-3/index.json @@ -0,0 +1,77 @@ +{ + "id": 2106, + "slug": "moto-edge-5g-global-td-lte-xt2061-3", + "name": "Moto Edge+ 5G Global TD-LTE XT2061-3", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-05-26", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 385 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.7, + "performance": 6.0, + "camera": 35.8, + "battery": 30.6, + "display": 38.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.414874", + "updated_at": "2026-06-19T00:43:44.414874" +} diff --git a/site/public/v1/smartphones/moto-edge-5g-global-td-lte-xt2061-3/score/index.json b/site/public/v1/smartphones/moto-edge-5g-global-td-lte-xt2061-3/score/index.json new file mode 100644 index 00000000000..a57f0beaf2c --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-5g-global-td-lte-xt2061-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.7, + "performance": 6.0, + "camera": 35.8, + "battery": 30.6, + "display": 38.5, + "value": null +} diff --git a/site/public/v1/smartphones/moto-edge-5g-global-td-lte-xt2063-3/index.json b/site/public/v1/smartphones/moto-edge-5g-global-td-lte-xt2063-3/index.json new file mode 100644 index 00000000000..5a9102035e6 --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-5g-global-td-lte-xt2063-3/index.json @@ -0,0 +1,77 @@ +{ + "id": 2107, + "slug": "moto-edge-5g-global-td-lte-xt2063-3", + "name": "Moto Edge 5G Global TD-LTE XT2063-3", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-07-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 385 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 1.5, + "camera": 21.5, + "battery": 23.1, + "display": 38.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.414874", + "updated_at": "2026-06-19T00:43:44.414874" +} diff --git a/site/public/v1/smartphones/moto-edge-5g-global-td-lte-xt2063-3/score/index.json b/site/public/v1/smartphones/moto-edge-5g-global-td-lte-xt2063-3/score/index.json new file mode 100644 index 00000000000..08e6b15b195 --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-5g-global-td-lte-xt2063-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 1.5, + "camera": 21.5, + "battery": 23.1, + "display": 38.5, + "value": null +} diff --git a/site/public/v1/smartphones/moto-edge-5g-td-lte-us-xt2063-2/index.json b/site/public/v1/smartphones/moto-edge-5g-td-lte-us-xt2063-2/index.json new file mode 100644 index 00000000000..45360b9631d --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-5g-td-lte-us-xt2063-2/index.json @@ -0,0 +1,77 @@ +{ + "id": 2108, + "slug": "moto-edge-5g-td-lte-us-xt2063-2", + "name": "Moto Edge 5G TD-LTE US XT2063-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-07-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 385 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 1.5, + "camera": 21.5, + "battery": 23.1, + "display": 38.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.415876", + "updated_at": "2026-06-19T00:43:44.415876" +} diff --git a/site/public/v1/smartphones/moto-edge-5g-td-lte-us-xt2063-2/score/index.json b/site/public/v1/smartphones/moto-edge-5g-td-lte-us-xt2063-2/score/index.json new file mode 100644 index 00000000000..08e6b15b195 --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-5g-td-lte-us-xt2063-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 1.5, + "camera": 21.5, + "battery": 23.1, + "display": 38.5, + "value": null +} diff --git a/site/public/v1/smartphones/moto-edge-5g-uw-global-td-lte-xt2061-1/index.json b/site/public/v1/smartphones/moto-edge-5g-uw-global-td-lte-xt2061-1/index.json new file mode 100644 index 00000000000..119e3b2133a --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-5g-uw-global-td-lte-xt2061-1/index.json @@ -0,0 +1,77 @@ +{ + "id": 2109, + "slug": "moto-edge-5g-uw-global-td-lte-xt2061-1", + "name": "Moto Edge+ 5G UW Global TD-LTE XT2061-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-05-14", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 385 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.7, + "performance": 6.0, + "camera": 35.8, + "battery": 30.6, + "display": 38.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.415876", + "updated_at": "2026-06-19T00:43:44.415876" +} diff --git a/site/public/v1/smartphones/moto-edge-5g-uw-global-td-lte-xt2061-1/score/index.json b/site/public/v1/smartphones/moto-edge-5g-uw-global-td-lte-xt2061-1/score/index.json new file mode 100644 index 00000000000..a57f0beaf2c --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-5g-uw-global-td-lte-xt2061-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.7, + "performance": 6.0, + "camera": 35.8, + "battery": 30.6, + "display": 38.5, + "value": null +} diff --git a/site/public/v1/smartphones/moto-edge-s-premium-edition-dual-sim-td-lte-cn-128gb-xt2125-4/index.json b/site/public/v1/smartphones/moto-edge-s-premium-edition-dual-sim-td-lte-cn-128gb-xt2125-4/index.json new file mode 100644 index 00000000000..d3a45f6bb8e --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-s-premium-edition-dual-sim-td-lte-cn-128gb-xt2125-4/index.json @@ -0,0 +1,77 @@ +{ + "id": 2189, + "slug": "moto-edge-s-premium-edition-dual-sim-td-lte-cn-128gb-xt2125-4", + "name": "Moto Edge S Premium Edition Dual SIM TD-LTE CN 128GB XT2125-4", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-02-01", + "msrp_usd": 2399, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.69, + "resolution": "1080x2520", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 410 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.9, + "performance": 6.1, + "camera": 21.7, + "battery": 31.0, + "display": 41.0, + "value": 12.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.425874", + "updated_at": "2026-06-19T00:43:44.425874" +} diff --git a/site/public/v1/smartphones/moto-edge-s-premium-edition-dual-sim-td-lte-cn-128gb-xt2125-4/score/index.json b/site/public/v1/smartphones/moto-edge-s-premium-edition-dual-sim-td-lte-cn-128gb-xt2125-4/score/index.json new file mode 100644 index 00000000000..0877432872b --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-s-premium-edition-dual-sim-td-lte-cn-128gb-xt2125-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.9, + "performance": 6.1, + "camera": 21.7, + "battery": 31.0, + "display": 41.0, + "value": 12.4 +} diff --git a/site/public/v1/smartphones/moto-edge-s-premium-edition-dual-sim-td-lte-cn-256gb-xt2125-4/index.json b/site/public/v1/smartphones/moto-edge-s-premium-edition-dual-sim-td-lte-cn-256gb-xt2125-4/index.json new file mode 100644 index 00000000000..5eeb1dff3e9 --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-s-premium-edition-dual-sim-td-lte-cn-256gb-xt2125-4/index.json @@ -0,0 +1,77 @@ +{ + "id": 2190, + "slug": "moto-edge-s-premium-edition-dual-sim-td-lte-cn-256gb-xt2125-4", + "name": "Moto Edge S Premium Edition Dual SIM TD-LTE CN 256GB XT2125-4", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-02-01", + "msrp_usd": 2799, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1080x2520", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 410 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.9, + "performance": 6.1, + "camera": 21.7, + "battery": 31.0, + "display": 41.0, + "value": 12.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.425874", + "updated_at": "2026-06-19T00:43:44.425874" +} diff --git a/site/public/v1/smartphones/moto-edge-s-premium-edition-dual-sim-td-lte-cn-256gb-xt2125-4/score/index.json b/site/public/v1/smartphones/moto-edge-s-premium-edition-dual-sim-td-lte-cn-256gb-xt2125-4/score/index.json new file mode 100644 index 00000000000..0877432872b --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-s-premium-edition-dual-sim-td-lte-cn-256gb-xt2125-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.9, + "performance": 6.1, + "camera": 21.7, + "battery": 31.0, + "display": 41.0, + "value": 12.4 +} diff --git a/site/public/v1/smartphones/moto-edge-s-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-xt2153-1/index.json b/site/public/v1/smartphones/moto-edge-s-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-xt2153-1/index.json new file mode 100644 index 00000000000..437949e5965 --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-s-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-xt2153-1/index.json @@ -0,0 +1,77 @@ +{ + "id": 2192, + "slug": "moto-edge-s-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-xt2153-1", + "name": "Moto Edge S Pro 5G 2021 Premium Edition Dual SIM TD-LTE CN 128GB XT2153-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-08-16", + "msrp_usd": 2399, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.69, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4520, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.4, + "performance": 6.1, + "camera": 35.8, + "battery": 25.7, + "display": 61.8, + "value": 16.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.425874", + "updated_at": "2026-06-19T00:43:44.425874" +} diff --git a/site/public/v1/smartphones/moto-edge-s-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-xt2153-1/score/index.json b/site/public/v1/smartphones/moto-edge-s-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-xt2153-1/score/index.json new file mode 100644 index 00000000000..b41ea2c733a --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-s-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-xt2153-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.4, + "performance": 6.1, + "camera": 35.8, + "battery": 25.7, + "display": 61.8, + "value": 16.2 +} diff --git a/site/public/v1/smartphones/moto-edge-s-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2153-1/index.json b/site/public/v1/smartphones/moto-edge-s-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2153-1/index.json new file mode 100644 index 00000000000..c07a8f8a7b5 --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-s-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2153-1/index.json @@ -0,0 +1,77 @@ +{ + "id": 2193, + "slug": "moto-edge-s-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2153-1", + "name": "Moto Edge S Pro 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB XT2153-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-08-16", + "msrp_usd": 2999, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4520, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.4, + "performance": 6.1, + "camera": 35.8, + "battery": 25.7, + "display": 61.8, + "value": 16.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.425874", + "updated_at": "2026-06-19T00:43:44.425874" +} diff --git a/site/public/v1/smartphones/moto-edge-s-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2153-1/score/index.json b/site/public/v1/smartphones/moto-edge-s-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2153-1/score/index.json new file mode 100644 index 00000000000..b41ea2c733a --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-s-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2153-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.4, + "performance": 6.1, + "camera": 35.8, + "battery": 25.7, + "display": 61.8, + "value": 16.2 +} diff --git a/site/public/v1/smartphones/moto-edge-s-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2153-1/index.json b/site/public/v1/smartphones/moto-edge-s-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2153-1/index.json new file mode 100644 index 00000000000..255863bed33 --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-s-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2153-1/index.json @@ -0,0 +1,77 @@ +{ + "id": 2194, + "slug": "moto-edge-s-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2153-1", + "name": "Moto Edge S Pro 5G 2021 Standard Edition Dual SIM TD-LTE CN 128GB XT2153-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-08-16", + "msrp_usd": 2199, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.69, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4520, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.0, + "performance": 4.6, + "camera": 35.8, + "battery": 25.7, + "display": 61.8, + "value": 16.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.425874", + "updated_at": "2026-06-19T00:43:44.425874" +} diff --git a/site/public/v1/smartphones/moto-edge-s-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2153-1/score/index.json b/site/public/v1/smartphones/moto-edge-s-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2153-1/score/index.json new file mode 100644 index 00000000000..a45a674d23b --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-s-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2153-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.0, + "performance": 4.6, + "camera": 35.8, + "battery": 25.7, + "display": 61.8, + "value": 16.0 +} diff --git a/site/public/v1/smartphones/moto-edge-s-pro-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-xt2153-1/index.json b/site/public/v1/smartphones/moto-edge-s-pro-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-xt2153-1/index.json new file mode 100644 index 00000000000..9444f9e82cd --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-s-pro-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-xt2153-1/index.json @@ -0,0 +1,77 @@ +{ + "id": 2195, + "slug": "moto-edge-s-pro-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-xt2153-1", + "name": "Moto Edge S Pro 5G 2021 Top Edition Dual SIM TD-LTE CN 256GB XT2153-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-08-16", + "msrp_usd": 3299, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4520, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.1, + "performance": 9.1, + "camera": 35.8, + "battery": 25.7, + "display": 61.8, + "value": 16.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.425874", + "updated_at": "2026-06-19T00:43:44.425874" +} diff --git a/site/public/v1/smartphones/moto-edge-s-pro-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-xt2153-1/score/index.json b/site/public/v1/smartphones/moto-edge-s-pro-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-xt2153-1/score/index.json new file mode 100644 index 00000000000..de0e30391bd --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-s-pro-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-xt2153-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.1, + "performance": 9.1, + "camera": 35.8, + "battery": 25.7, + "display": 61.8, + "value": 16.6 +} diff --git a/site/public/v1/smartphones/moto-edge-s-standard-edition-dual-sim-td-lte-cn-128gb-xt2125-4/index.json b/site/public/v1/smartphones/moto-edge-s-standard-edition-dual-sim-td-lte-cn-128gb-xt2125-4/index.json new file mode 100644 index 00000000000..8b4f5e238b9 --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-s-standard-edition-dual-sim-td-lte-cn-128gb-xt2125-4/index.json @@ -0,0 +1,77 @@ +{ + "id": 2197, + "slug": "moto-edge-s-standard-edition-dual-sim-td-lte-cn-128gb-xt2125-4", + "name": "Moto Edge S Standard Edition Dual SIM TD-LTE CN 128GB XT2125-4", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-02-01", + "msrp_usd": 1999, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.69, + "resolution": "1080x2520", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 410 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 4.6, + "camera": 21.7, + "battery": 31.0, + "display": 41.0, + "value": 12.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.425874", + "updated_at": "2026-06-19T00:43:44.425874" +} diff --git a/site/public/v1/smartphones/moto-edge-s-standard-edition-dual-sim-td-lte-cn-128gb-xt2125-4/score/index.json b/site/public/v1/smartphones/moto-edge-s-standard-edition-dual-sim-td-lte-cn-128gb-xt2125-4/score/index.json new file mode 100644 index 00000000000..a709fe7d77f --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-s-standard-edition-dual-sim-td-lte-cn-128gb-xt2125-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 4.6, + "camera": 21.7, + "battery": 31.0, + "display": 41.0, + "value": 12.3 +} diff --git a/site/public/v1/smartphones/moto-edge-s30-5g-2021-base-edition-dual-sim-td-lte-cn-128gb-xt2175-2/index.json b/site/public/v1/smartphones/moto-edge-s30-5g-2021-base-edition-dual-sim-td-lte-cn-128gb-xt2175-2/index.json new file mode 100644 index 00000000000..ed821552df5 --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-s30-5g-2021-base-edition-dual-sim-td-lte-cn-128gb-xt2175-2/index.json @@ -0,0 +1,77 @@ +{ + "id": 2199, + "slug": "moto-edge-s30-5g-2021-base-edition-dual-sim-td-lte-cn-128gb-xt2175-2", + "name": "Moto Edge S30 5G 2021 Base Edition Dual SIM TD-LTE CN 128GB XT2175-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-12-01", + "msrp_usd": 1799, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2460", + "refresh_hz": 144, + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 202.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.0, + "performance": 6.7, + "camera": 35.7, + "battery": 43.4, + "display": 62.1, + "value": 18.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.426874", + "updated_at": "2026-06-19T00:43:44.426874" +} diff --git a/site/public/v1/smartphones/moto-edge-s30-5g-2021-base-edition-dual-sim-td-lte-cn-128gb-xt2175-2/score/index.json b/site/public/v1/smartphones/moto-edge-s30-5g-2021-base-edition-dual-sim-td-lte-cn-128gb-xt2175-2/score/index.json new file mode 100644 index 00000000000..545d9b6a49c --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-s30-5g-2021-base-edition-dual-sim-td-lte-cn-128gb-xt2175-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.0, + "performance": 6.7, + "camera": 35.7, + "battery": 43.4, + "display": 62.1, + "value": 18.5 +} diff --git a/site/public/v1/smartphones/moto-edge-s30-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2175-2/index.json b/site/public/v1/smartphones/moto-edge-s30-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2175-2/index.json new file mode 100644 index 00000000000..dd806b803e9 --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-s30-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2175-2/index.json @@ -0,0 +1,77 @@ +{ + "id": 2200, + "slug": "moto-edge-s30-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2175-2", + "name": "Moto Edge S30 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB XT2175-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-12-01", + "msrp_usd": 2399, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2460", + "refresh_hz": 144, + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 202.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 38.1, + "performance": 11.2, + "camera": 35.7, + "battery": 43.4, + "display": 62.1, + "value": 19.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.426874", + "updated_at": "2026-06-19T00:43:44.426874" +} diff --git a/site/public/v1/smartphones/moto-edge-s30-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2175-2/score/index.json b/site/public/v1/smartphones/moto-edge-s30-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2175-2/score/index.json new file mode 100644 index 00000000000..7790dcac281 --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-s30-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2175-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 38.1, + "performance": 11.2, + "camera": 35.7, + "battery": 43.4, + "display": 62.1, + "value": 19.1 +} diff --git a/site/public/v1/smartphones/moto-edge-s30-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2175-2/index.json b/site/public/v1/smartphones/moto-edge-s30-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2175-2/index.json new file mode 100644 index 00000000000..bfe8588029d --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-s30-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2175-2/index.json @@ -0,0 +1,77 @@ +{ + "id": 2201, + "slug": "moto-edge-s30-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2175-2", + "name": "Moto Edge S30 5G 2021 Standard Edition Dual SIM TD-LTE CN 128GB XT2175-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-12-01", + "msrp_usd": 1999, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2460", + "refresh_hz": 144, + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 202.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.4, + "performance": 8.2, + "camera": 35.7, + "battery": 43.4, + "display": 62.1, + "value": 18.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.426874", + "updated_at": "2026-06-19T00:43:44.426874" +} diff --git a/site/public/v1/smartphones/moto-edge-s30-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2175-2/score/index.json b/site/public/v1/smartphones/moto-edge-s30-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2175-2/score/index.json new file mode 100644 index 00000000000..904f4843562 --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-s30-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2175-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.4, + "performance": 8.2, + "camera": 35.7, + "battery": 43.4, + "display": 62.1, + "value": 18.7 +} diff --git a/site/public/v1/smartphones/moto-edge-s30-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-xt2175-2/index.json b/site/public/v1/smartphones/moto-edge-s30-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-xt2175-2/index.json new file mode 100644 index 00000000000..989755a5eee --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-s30-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-xt2175-2/index.json @@ -0,0 +1,77 @@ +{ + "id": 2202, + "slug": "moto-edge-s30-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-xt2175-2", + "name": "Moto Edge S30 5G 2021 Standard Edition Dual SIM TD-LTE CN 256GB XT2175-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-12-01", + "msrp_usd": 2199, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2460", + "refresh_hz": 144, + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 202.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.4, + "performance": 8.2, + "camera": 35.7, + "battery": 43.4, + "display": 62.1, + "value": 18.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.426874", + "updated_at": "2026-06-19T00:43:44.426874" +} diff --git a/site/public/v1/smartphones/moto-edge-s30-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-xt2175-2/score/index.json b/site/public/v1/smartphones/moto-edge-s30-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-xt2175-2/score/index.json new file mode 100644 index 00000000000..904f4843562 --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-s30-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-xt2175-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.4, + "performance": 8.2, + "camera": 35.7, + "battery": 43.4, + "display": 62.1, + "value": 18.7 +} diff --git a/site/public/v1/smartphones/moto-edge-x30-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2201-2/index.json b/site/public/v1/smartphones/moto-edge-x30-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2201-2/index.json new file mode 100644 index 00000000000..fb67a5f8e74 --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-x30-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2201-2/index.json @@ -0,0 +1,77 @@ +{ + "id": 2204, + "slug": "moto-edge-x30-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2201-2", + "name": "Moto Edge X30 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB XT2201-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2021-12-16", + "msrp_usd": 3399, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 60.3 + } + ], + "battery_mah": 5000, + "charging_wired_w": 68.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.0, + "performance": 13.9, + "camera": 17.2, + "battery": 55.1, + "display": 62.0, + "value": 18.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.427875", + "updated_at": "2026-06-19T00:43:44.427875" +} diff --git a/site/public/v1/smartphones/moto-edge-x30-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2201-2/score/index.json b/site/public/v1/smartphones/moto-edge-x30-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2201-2/score/index.json new file mode 100644 index 00000000000..357322e5405 --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-x30-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-xt2201-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.0, + "performance": 13.9, + "camera": 17.2, + "battery": 55.1, + "display": 62.0, + "value": 18.5 +} diff --git a/site/public/v1/smartphones/moto-edge-x30-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2201-2/index.json b/site/public/v1/smartphones/moto-edge-x30-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2201-2/index.json new file mode 100644 index 00000000000..17302ebe87c --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-x30-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2201-2/index.json @@ -0,0 +1,77 @@ +{ + "id": 2205, + "slug": "moto-edge-x30-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2201-2", + "name": "Moto Edge X30 5G 2021 Standard Edition Dual SIM TD-LTE CN 128GB XT2201-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2021-12-16", + "msrp_usd": 2999, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 60.3 + } + ], + "battery_mah": 5000, + "charging_wired_w": 68.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 36.3, + "performance": 10.9, + "camera": 17.2, + "battery": 55.1, + "display": 62.0, + "value": 18.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.427875", + "updated_at": "2026-06-19T00:43:44.427875" +} diff --git a/site/public/v1/smartphones/moto-edge-x30-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2201-2/score/index.json b/site/public/v1/smartphones/moto-edge-x30-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2201-2/score/index.json new file mode 100644 index 00000000000..a21fb6e4c0e --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-x30-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-xt2201-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 36.3, + "performance": 10.9, + "camera": 17.2, + "battery": 55.1, + "display": 62.0, + "value": 18.1 +} diff --git a/site/public/v1/smartphones/moto-edge-x30-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-xt2201-2/index.json b/site/public/v1/smartphones/moto-edge-x30-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-xt2201-2/index.json new file mode 100644 index 00000000000..98b7200d925 --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-x30-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-xt2201-2/index.json @@ -0,0 +1,77 @@ +{ + "id": 2206, + "slug": "moto-edge-x30-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-xt2201-2", + "name": "Moto Edge X30 5G 2021 Standard Edition Dual SIM TD-LTE CN 256GB XT2201-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2021-12-16", + "msrp_usd": 3199, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 60.3 + } + ], + "battery_mah": 5000, + "charging_wired_w": 68.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 36.3, + "performance": 10.9, + "camera": 17.2, + "battery": 55.1, + "display": 62.0, + "value": 18.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.427875", + "updated_at": "2026-06-19T00:43:44.427875" +} diff --git a/site/public/v1/smartphones/moto-edge-x30-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-xt2201-2/score/index.json b/site/public/v1/smartphones/moto-edge-x30-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-xt2201-2/score/index.json new file mode 100644 index 00000000000..a21fb6e4c0e --- /dev/null +++ b/site/public/v1/smartphones/moto-edge-x30-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-xt2201-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 36.3, + "performance": 10.9, + "camera": 17.2, + "battery": 55.1, + "display": 62.0, + "value": 18.1 +} diff --git a/site/public/v1/smartphones/moto-g-5g-plus-2020-global-dual-sim-td-lte-128gb-xt2075-3-moto-g8-plus-5g/index.json b/site/public/v1/smartphones/moto-g-5g-plus-2020-global-dual-sim-td-lte-128gb-xt2075-3-moto-g8-plus-5g/index.json new file mode 100644 index 00000000000..d3742aaaf2e --- /dev/null +++ b/site/public/v1/smartphones/moto-g-5g-plus-2020-global-dual-sim-td-lte-128gb-xt2075-3-moto-g8-plus-5g/index.json @@ -0,0 +1,77 @@ +{ + "id": 2111, + "slug": "moto-g-5g-plus-2020-global-dual-sim-td-lte-128gb-xt2075-3-moto-g8-plus-5g", + "name": "Moto G 5G Plus 2020 Global Dual SIM TD-LTE 128GB XT2075-3 / Moto G8 Plus 5G", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-07-19", + "msrp_usd": 350, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2520", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 207.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.5, + "performance": 1.5, + "camera": 16.5, + "battery": 31.0, + "display": 40.9, + "value": 59.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.415876", + "updated_at": "2026-06-19T00:43:44.415876" +} diff --git a/site/public/v1/smartphones/moto-g-5g-plus-2020-global-dual-sim-td-lte-128gb-xt2075-3-moto-g8-plus-5g/score/index.json b/site/public/v1/smartphones/moto-g-5g-plus-2020-global-dual-sim-td-lte-128gb-xt2075-3-moto-g8-plus-5g/score/index.json new file mode 100644 index 00000000000..6c0e7347b8c --- /dev/null +++ b/site/public/v1/smartphones/moto-g-5g-plus-2020-global-dual-sim-td-lte-128gb-xt2075-3-moto-g8-plus-5g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.5, + "performance": 1.5, + "camera": 16.5, + "battery": 31.0, + "display": 40.9, + "value": 59.4 +} diff --git a/site/public/v1/smartphones/moto-g-5g-plus-2020-global-dual-sim-td-lte-64gb-xt2075-3/index.json b/site/public/v1/smartphones/moto-g-5g-plus-2020-global-dual-sim-td-lte-64gb-xt2075-3/index.json new file mode 100644 index 00000000000..2287827bcca --- /dev/null +++ b/site/public/v1/smartphones/moto-g-5g-plus-2020-global-dual-sim-td-lte-64gb-xt2075-3/index.json @@ -0,0 +1,77 @@ +{ + "id": 2112, + "slug": "moto-g-5g-plus-2020-global-dual-sim-td-lte-64gb-xt2075-3", + "name": "Moto G 5G Plus 2020 Global Dual SIM TD-LTE 64GB XT2075-3", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-07-19", + "msrp_usd": 349, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2520", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 207.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 0.0, + "camera": 16.5, + "battery": 31.0, + "display": 40.9, + "value": 59.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.415876", + "updated_at": "2026-06-19T00:43:44.415876" +} diff --git a/site/public/v1/smartphones/moto-g-5g-plus-2020-global-dual-sim-td-lte-64gb-xt2075-3/score/index.json b/site/public/v1/smartphones/moto-g-5g-plus-2020-global-dual-sim-td-lte-64gb-xt2075-3/score/index.json new file mode 100644 index 00000000000..07e973d5fd5 --- /dev/null +++ b/site/public/v1/smartphones/moto-g-5g-plus-2020-global-dual-sim-td-lte-64gb-xt2075-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 0.0, + "camera": 16.5, + "battery": 31.0, + "display": 40.9, + "value": 59.2 +} diff --git a/site/public/v1/smartphones/moto-g-5g-plus-2020-global-td-lte-128gb-xt2075-3/index.json b/site/public/v1/smartphones/moto-g-5g-plus-2020-global-td-lte-128gb-xt2075-3/index.json new file mode 100644 index 00000000000..2632bc2313f --- /dev/null +++ b/site/public/v1/smartphones/moto-g-5g-plus-2020-global-td-lte-128gb-xt2075-3/index.json @@ -0,0 +1,77 @@ +{ + "id": 2113, + "slug": "moto-g-5g-plus-2020-global-td-lte-128gb-xt2075-3", + "name": "Moto G 5G Plus 2020 Global TD-LTE 128GB XT2075-3", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-07-19", + "msrp_usd": 350, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2520", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 207.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.5, + "performance": 1.5, + "camera": 16.5, + "battery": 31.0, + "display": 40.9, + "value": 59.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.415876", + "updated_at": "2026-06-19T00:43:44.415876" +} diff --git a/site/public/v1/smartphones/moto-g-5g-plus-2020-global-td-lte-128gb-xt2075-3/score/index.json b/site/public/v1/smartphones/moto-g-5g-plus-2020-global-td-lte-128gb-xt2075-3/score/index.json new file mode 100644 index 00000000000..6c0e7347b8c --- /dev/null +++ b/site/public/v1/smartphones/moto-g-5g-plus-2020-global-td-lte-128gb-xt2075-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.5, + "performance": 1.5, + "camera": 16.5, + "battery": 31.0, + "display": 40.9, + "value": 59.4 +} diff --git a/site/public/v1/smartphones/moto-g-5g-plus-2020-sim-td-lte-latam-128gb-xt2075-3/index.json b/site/public/v1/smartphones/moto-g-5g-plus-2020-sim-td-lte-latam-128gb-xt2075-3/index.json new file mode 100644 index 00000000000..91c45df5b05 --- /dev/null +++ b/site/public/v1/smartphones/moto-g-5g-plus-2020-sim-td-lte-latam-128gb-xt2075-3/index.json @@ -0,0 +1,77 @@ +{ + "id": 2114, + "slug": "moto-g-5g-plus-2020-sim-td-lte-latam-128gb-xt2075-3", + "name": "Moto G 5G Plus 2020 SIM TD-LTE LATAM 128GB XT2075-3", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-07-01", + "msrp_usd": 2999, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2520", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 207.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 3.0, + "camera": 16.5, + "battery": 31.0, + "display": 40.9, + "value": 11.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.415876", + "updated_at": "2026-06-19T00:43:44.415876" +} diff --git a/site/public/v1/smartphones/moto-g-5g-plus-2020-sim-td-lte-latam-128gb-xt2075-3/score/index.json b/site/public/v1/smartphones/moto-g-5g-plus-2020-sim-td-lte-latam-128gb-xt2075-3/score/index.json new file mode 100644 index 00000000000..38f667c2f04 --- /dev/null +++ b/site/public/v1/smartphones/moto-g-5g-plus-2020-sim-td-lte-latam-128gb-xt2075-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 3.0, + "camera": 16.5, + "battery": 31.0, + "display": 40.9, + "value": 11.4 +} diff --git a/site/public/v1/smartphones/moto-g-fast-td-lte-na-xt2045-3-moto-g8/index.json b/site/public/v1/smartphones/moto-g-fast-td-lte-na-xt2045-3-moto-g8/index.json new file mode 100644 index 00000000000..0e87ed46e3a --- /dev/null +++ b/site/public/v1/smartphones/moto-g-fast-td-lte-na-xt2045-3-moto-g8/index.json @@ -0,0 +1,76 @@ +{ + "id": 2115, + "slug": "moto-g-fast-td-lte-na-xt2045-3-moto-g8", + "name": "Moto G Fast TD-LTE NA XT2045-3 / Moto G8", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-06-08", + "msrp_usd": 150, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.4, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 189.4, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": 57.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.415876", + "updated_at": "2026-06-19T00:43:44.415876" +} diff --git a/site/public/v1/smartphones/moto-g-fast-td-lte-na-xt2045-3-moto-g8/score/index.json b/site/public/v1/smartphones/moto-g-fast-td-lte-na-xt2045-3-moto-g8/score/index.json new file mode 100644 index 00000000000..ba271865130 --- /dev/null +++ b/site/public/v1/smartphones/moto-g-fast-td-lte-na-xt2045-3-moto-g8/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": 57.0 +} diff --git a/site/public/v1/smartphones/moto-g-play-2021-td-lte-na-32gb-xt2093-4/index.json b/site/public/v1/smartphones/moto-g-play-2021-td-lte-na-32gb-xt2093-4/index.json new file mode 100644 index 00000000000..72453e23081 --- /dev/null +++ b/site/public/v1/smartphones/moto-g-play-2021-td-lte-na-32gb-xt2093-4/index.json @@ -0,0 +1,76 @@ +{ + "id": 2208, + "slug": "moto-g-play-2021-td-lte-na-32gb-xt2093-4", + "name": "Moto G Play 2021 TD-LTE NA 32GB XT2093-4", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2021-03-01", + "msrp_usd": 250, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 204.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 58.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.427875", + "updated_at": "2026-06-19T00:43:44.427875" +} diff --git a/site/public/v1/smartphones/moto-g-play-2021-td-lte-na-32gb-xt2093-4/score/index.json b/site/public/v1/smartphones/moto-g-play-2021-td-lte-na-32gb-xt2093-4/score/index.json new file mode 100644 index 00000000000..eb339cb8c55 --- /dev/null +++ b/site/public/v1/smartphones/moto-g-play-2021-td-lte-na-32gb-xt2093-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 58.8 +} diff --git a/site/public/v1/smartphones/moto-g-play-2021-td-lte-us-32gb-xt2093-1/index.json b/site/public/v1/smartphones/moto-g-play-2021-td-lte-us-32gb-xt2093-1/index.json new file mode 100644 index 00000000000..83f616129ee --- /dev/null +++ b/site/public/v1/smartphones/moto-g-play-2021-td-lte-us-32gb-xt2093-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2209, + "slug": "moto-g-play-2021-td-lte-us-32gb-xt2093-1", + "name": "Moto G Play 2021 TD-LTE US 32GB XT2093-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2021-01-31", + "msrp_usd": 167, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 204.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 58.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.427875", + "updated_at": "2026-06-19T00:43:44.427875" +} diff --git a/site/public/v1/smartphones/moto-g-play-2021-td-lte-us-32gb-xt2093-1/score/index.json b/site/public/v1/smartphones/moto-g-play-2021-td-lte-us-32gb-xt2093-1/score/index.json new file mode 100644 index 00000000000..eb339cb8c55 --- /dev/null +++ b/site/public/v1/smartphones/moto-g-play-2021-td-lte-us-32gb-xt2093-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 58.8 +} diff --git a/site/public/v1/smartphones/moto-g-play-2021-td-lte-us-32gb-xt2093-2-xt2093-2pp/index.json b/site/public/v1/smartphones/moto-g-play-2021-td-lte-us-32gb-xt2093-2-xt2093-2pp/index.json new file mode 100644 index 00000000000..37afba9b3ca --- /dev/null +++ b/site/public/v1/smartphones/moto-g-play-2021-td-lte-us-32gb-xt2093-2-xt2093-2pp/index.json @@ -0,0 +1,76 @@ +{ + "id": 2210, + "slug": "moto-g-play-2021-td-lte-us-32gb-xt2093-2-xt2093-2pp", + "name": "Moto G Play 2021 TD-LTE US 32GB XT2093-2 / XT2093-2PP", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2021-03-01", + "msrp_usd": 150, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 204.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 58.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.427875", + "updated_at": "2026-06-19T00:43:44.427875" +} diff --git a/site/public/v1/smartphones/moto-g-play-2021-td-lte-us-32gb-xt2093-2-xt2093-2pp/score/index.json b/site/public/v1/smartphones/moto-g-play-2021-td-lte-us-32gb-xt2093-2-xt2093-2pp/score/index.json new file mode 100644 index 00000000000..eb339cb8c55 --- /dev/null +++ b/site/public/v1/smartphones/moto-g-play-2021-td-lte-us-32gb-xt2093-2-xt2093-2pp/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 58.8 +} diff --git a/site/public/v1/smartphones/moto-g-play-2021-td-lte-us-32gb-xt2093-3/index.json b/site/public/v1/smartphones/moto-g-play-2021-td-lte-us-32gb-xt2093-3/index.json new file mode 100644 index 00000000000..1fc0db7726c --- /dev/null +++ b/site/public/v1/smartphones/moto-g-play-2021-td-lte-us-32gb-xt2093-3/index.json @@ -0,0 +1,76 @@ +{ + "id": 2211, + "slug": "moto-g-play-2021-td-lte-us-32gb-xt2093-3", + "name": "Moto G Play 2021 TD-LTE US 32GB XT2093-3", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2021-01-14", + "msrp_usd": 167, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 204.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 58.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.427875", + "updated_at": "2026-06-19T00:43:44.427875" +} diff --git a/site/public/v1/smartphones/moto-g-play-2021-td-lte-us-32gb-xt2093-3/score/index.json b/site/public/v1/smartphones/moto-g-play-2021-td-lte-us-32gb-xt2093-3/score/index.json new file mode 100644 index 00000000000..eb339cb8c55 --- /dev/null +++ b/site/public/v1/smartphones/moto-g-play-2021-td-lte-us-32gb-xt2093-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 58.8 +} diff --git a/site/public/v1/smartphones/moto-g-play-2021-td-lte-us-32gb-xt2093-7/index.json b/site/public/v1/smartphones/moto-g-play-2021-td-lte-us-32gb-xt2093-7/index.json new file mode 100644 index 00000000000..d7badb30899 --- /dev/null +++ b/site/public/v1/smartphones/moto-g-play-2021-td-lte-us-32gb-xt2093-7/index.json @@ -0,0 +1,76 @@ +{ + "id": 2212, + "slug": "moto-g-play-2021-td-lte-us-32gb-xt2093-7", + "name": "Moto G Play 2021 TD-LTE US 32GB XT2093-7", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2021-01-01", + "msrp_usd": 167, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 204.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 58.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.428874", + "updated_at": "2026-06-19T00:43:44.428874" +} diff --git a/site/public/v1/smartphones/moto-g-play-2021-td-lte-us-32gb-xt2093-7/score/index.json b/site/public/v1/smartphones/moto-g-play-2021-td-lte-us-32gb-xt2093-7/score/index.json new file mode 100644 index 00000000000..eb339cb8c55 --- /dev/null +++ b/site/public/v1/smartphones/moto-g-play-2021-td-lte-us-32gb-xt2093-7/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 58.8 +} diff --git a/site/public/v1/smartphones/moto-g-play-2021-td-lte-us-32gb-xt2093dl/index.json b/site/public/v1/smartphones/moto-g-play-2021-td-lte-us-32gb-xt2093dl/index.json new file mode 100644 index 00000000000..e7811203166 --- /dev/null +++ b/site/public/v1/smartphones/moto-g-play-2021-td-lte-us-32gb-xt2093dl/index.json @@ -0,0 +1,76 @@ +{ + "id": 2213, + "slug": "moto-g-play-2021-td-lte-us-32gb-xt2093dl", + "name": "Moto G Play 2021 TD-LTE US 32GB XT2093DL", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2021-02-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 204.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.428874", + "updated_at": "2026-06-19T00:43:44.428874" +} diff --git a/site/public/v1/smartphones/moto-g-play-2021-td-lte-us-32gb-xt2093dl/score/index.json b/site/public/v1/smartphones/moto-g-play-2021-td-lte-us-32gb-xt2093dl/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/moto-g-play-2021-td-lte-us-32gb-xt2093dl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g-power-2020-td-lte-na-64gb-xt2041-4-g8-power/index.json b/site/public/v1/smartphones/moto-g-power-2020-td-lte-na-64gb-xt2041-4-g8-power/index.json new file mode 100644 index 00000000000..bb7da2b1b5a --- /dev/null +++ b/site/public/v1/smartphones/moto-g-power-2020-td-lte-na-64gb-xt2041-4-g8-power/index.json @@ -0,0 +1,76 @@ +{ + "id": 2116, + "slug": "moto-g-power-2020-td-lte-na-64gb-xt2041-4-g8-power", + "name": "Moto G Power 2020 TD-LTE NA 64GB XT2041-4 / G8 Power", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-03-01", + "msrp_usd": 250, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2300", + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 44.7, + "value": 60.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.416874", + "updated_at": "2026-06-19T00:43:44.416874" +} diff --git a/site/public/v1/smartphones/moto-g-power-2020-td-lte-na-64gb-xt2041-4-g8-power/score/index.json b/site/public/v1/smartphones/moto-g-power-2020-td-lte-na-64gb-xt2041-4-g8-power/score/index.json new file mode 100644 index 00000000000..a40211d5a3e --- /dev/null +++ b/site/public/v1/smartphones/moto-g-power-2020-td-lte-na-64gb-xt2041-4-g8-power/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 44.7, + "value": 60.1 +} diff --git a/site/public/v1/smartphones/moto-g-power-2020-td-lte-us-64gb-xt2041-6-g8-power/index.json b/site/public/v1/smartphones/moto-g-power-2020-td-lte-us-64gb-xt2041-6-g8-power/index.json new file mode 100644 index 00000000000..b790fd60a8b --- /dev/null +++ b/site/public/v1/smartphones/moto-g-power-2020-td-lte-us-64gb-xt2041-6-g8-power/index.json @@ -0,0 +1,76 @@ +{ + "id": 2117, + "slug": "moto-g-power-2020-td-lte-us-64gb-xt2041-6-g8-power", + "name": "Moto G Power 2020 TD-LTE US 64GB XT2041-6 / G8 Power", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-05-01", + "msrp_usd": 250, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2300", + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 44.7, + "value": 60.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.416874", + "updated_at": "2026-06-19T00:43:44.416874" +} diff --git a/site/public/v1/smartphones/moto-g-power-2020-td-lte-us-64gb-xt2041-6-g8-power/score/index.json b/site/public/v1/smartphones/moto-g-power-2020-td-lte-us-64gb-xt2041-6-g8-power/score/index.json new file mode 100644 index 00000000000..a40211d5a3e --- /dev/null +++ b/site/public/v1/smartphones/moto-g-power-2020-td-lte-us-64gb-xt2041-6-g8-power/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 44.7, + "value": 60.1 +} diff --git a/site/public/v1/smartphones/moto-g-power-2020-td-lte-us-64gb-xt2041-7-g8-power/index.json b/site/public/v1/smartphones/moto-g-power-2020-td-lte-us-64gb-xt2041-7-g8-power/index.json new file mode 100644 index 00000000000..e58950783c0 --- /dev/null +++ b/site/public/v1/smartphones/moto-g-power-2020-td-lte-us-64gb-xt2041-7-g8-power/index.json @@ -0,0 +1,76 @@ +{ + "id": 2118, + "slug": "moto-g-power-2020-td-lte-us-64gb-xt2041-7-g8-power", + "name": "Moto G Power 2020 TD-LTE US 64GB XT2041-7 / G8 Power", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-03-01", + "msrp_usd": 250, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2300", + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 44.7, + "value": 60.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.416874", + "updated_at": "2026-06-19T00:43:44.416874" +} diff --git a/site/public/v1/smartphones/moto-g-power-2020-td-lte-us-64gb-xt2041-7-g8-power/score/index.json b/site/public/v1/smartphones/moto-g-power-2020-td-lte-us-64gb-xt2041-7-g8-power/score/index.json new file mode 100644 index 00000000000..a40211d5a3e --- /dev/null +++ b/site/public/v1/smartphones/moto-g-power-2020-td-lte-us-64gb-xt2041-7-g8-power/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 44.7, + "value": 60.1 +} diff --git a/site/public/v1/smartphones/moto-g-power-2021-td-lte-na-32gb-xt2117-4/index.json b/site/public/v1/smartphones/moto-g-power-2021-td-lte-na-32gb-xt2117-4/index.json new file mode 100644 index 00000000000..b167aa9d9f3 --- /dev/null +++ b/site/public/v1/smartphones/moto-g-power-2021-td-lte-na-32gb-xt2117-4/index.json @@ -0,0 +1,77 @@ +{ + "id": 2214, + "slug": "moto-g-power-2021-td-lte-na-32gb-xt2117-4", + "name": "Moto G Power 2021 TD-LTE NA 32GB XT2117-4", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-01-14", + "msrp_usd": 200, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 206.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.0, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 17.5, + "value": 58.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.428874", + "updated_at": "2026-06-19T00:43:44.428874" +} diff --git a/site/public/v1/smartphones/moto-g-power-2021-td-lte-na-32gb-xt2117-4/score/index.json b/site/public/v1/smartphones/moto-g-power-2021-td-lte-na-32gb-xt2117-4/score/index.json new file mode 100644 index 00000000000..4d6d5780e9c --- /dev/null +++ b/site/public/v1/smartphones/moto-g-power-2021-td-lte-na-32gb-xt2117-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.0, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 17.5, + "value": 58.0 +} diff --git a/site/public/v1/smartphones/moto-g-power-2021-td-lte-na-64gb-xt2117-4/index.json b/site/public/v1/smartphones/moto-g-power-2021-td-lte-na-64gb-xt2117-4/index.json new file mode 100644 index 00000000000..81ead2bd44e --- /dev/null +++ b/site/public/v1/smartphones/moto-g-power-2021-td-lte-na-64gb-xt2117-4/index.json @@ -0,0 +1,77 @@ +{ + "id": 2215, + "slug": "moto-g-power-2021-td-lte-na-64gb-xt2117-4", + "name": "Moto G Power 2021 TD-LTE NA 64GB XT2117-4", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-01-14", + "msrp_usd": 250, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 206.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.0, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 17.5, + "value": 58.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.428874", + "updated_at": "2026-06-19T00:43:44.428874" +} diff --git a/site/public/v1/smartphones/moto-g-power-2021-td-lte-na-64gb-xt2117-4/score/index.json b/site/public/v1/smartphones/moto-g-power-2021-td-lte-na-64gb-xt2117-4/score/index.json new file mode 100644 index 00000000000..4d6d5780e9c --- /dev/null +++ b/site/public/v1/smartphones/moto-g-power-2021-td-lte-na-64gb-xt2117-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.0, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 17.5, + "value": 58.0 +} diff --git a/site/public/v1/smartphones/moto-g-power-2021-td-lte-us-32gb-xt2117dl/index.json b/site/public/v1/smartphones/moto-g-power-2021-td-lte-us-32gb-xt2117dl/index.json new file mode 100644 index 00000000000..c7d65ccbd3d --- /dev/null +++ b/site/public/v1/smartphones/moto-g-power-2021-td-lte-us-32gb-xt2117dl/index.json @@ -0,0 +1,77 @@ +{ + "id": 2216, + "slug": "moto-g-power-2021-td-lte-us-32gb-xt2117dl", + "name": "Moto G Power 2021 TD-LTE US 32GB XT2117DL", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-02-01", + "msrp_usd": 249, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 206.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.0, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 17.5, + "value": 58.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.428874", + "updated_at": "2026-06-19T00:43:44.428874" +} diff --git a/site/public/v1/smartphones/moto-g-power-2021-td-lte-us-32gb-xt2117dl/score/index.json b/site/public/v1/smartphones/moto-g-power-2021-td-lte-us-32gb-xt2117dl/score/index.json new file mode 100644 index 00000000000..4d6d5780e9c --- /dev/null +++ b/site/public/v1/smartphones/moto-g-power-2021-td-lte-us-32gb-xt2117dl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.0, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 17.5, + "value": 58.0 +} diff --git a/site/public/v1/smartphones/moto-g-power-2021-td-lte-us-64gb-xt2117-1/index.json b/site/public/v1/smartphones/moto-g-power-2021-td-lte-us-64gb-xt2117-1/index.json new file mode 100644 index 00000000000..a6fe1042a09 --- /dev/null +++ b/site/public/v1/smartphones/moto-g-power-2021-td-lte-us-64gb-xt2117-1/index.json @@ -0,0 +1,77 @@ +{ + "id": 2217, + "slug": "moto-g-power-2021-td-lte-us-64gb-xt2117-1", + "name": "Moto G Power 2021 TD-LTE US 64GB XT2117-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-02-11", + "msrp_usd": 100, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 206.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.0, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 17.5, + "value": 58.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.428874", + "updated_at": "2026-06-19T00:43:44.428874" +} diff --git a/site/public/v1/smartphones/moto-g-power-2021-td-lte-us-64gb-xt2117-1/score/index.json b/site/public/v1/smartphones/moto-g-power-2021-td-lte-us-64gb-xt2117-1/score/index.json new file mode 100644 index 00000000000..4d6d5780e9c --- /dev/null +++ b/site/public/v1/smartphones/moto-g-power-2021-td-lte-us-64gb-xt2117-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.0, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 17.5, + "value": 58.0 +} diff --git a/site/public/v1/smartphones/moto-g-power-2021-td-lte-us-64gb-xt2117-2/index.json b/site/public/v1/smartphones/moto-g-power-2021-td-lte-us-64gb-xt2117-2/index.json new file mode 100644 index 00000000000..17224b7d445 --- /dev/null +++ b/site/public/v1/smartphones/moto-g-power-2021-td-lte-us-64gb-xt2117-2/index.json @@ -0,0 +1,77 @@ +{ + "id": 2218, + "slug": "moto-g-power-2021-td-lte-us-64gb-xt2117-2", + "name": "Moto G Power 2021 TD-LTE US 64GB XT2117-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-04-07", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 206.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.0, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.428874", + "updated_at": "2026-06-19T00:43:44.428874" +} diff --git a/site/public/v1/smartphones/moto-g-power-2021-td-lte-us-64gb-xt2117-2/score/index.json b/site/public/v1/smartphones/moto-g-power-2021-td-lte-us-64gb-xt2117-2/score/index.json new file mode 100644 index 00000000000..4ba94c9a199 --- /dev/null +++ b/site/public/v1/smartphones/moto-g-power-2021-td-lte-us-64gb-xt2117-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.0, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g-power-2021-td-lte-us-64gb-xt2117-3/index.json b/site/public/v1/smartphones/moto-g-power-2021-td-lte-us-64gb-xt2117-3/index.json new file mode 100644 index 00000000000..8fd486401cc --- /dev/null +++ b/site/public/v1/smartphones/moto-g-power-2021-td-lte-us-64gb-xt2117-3/index.json @@ -0,0 +1,77 @@ +{ + "id": 2219, + "slug": "moto-g-power-2021-td-lte-us-64gb-xt2117-3", + "name": "Moto G Power 2021 TD-LTE US 64GB XT2117-3", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-01-14", + "msrp_usd": 250, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 206.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.0, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 17.5, + "value": 58.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.428874", + "updated_at": "2026-06-19T00:43:44.428874" +} diff --git a/site/public/v1/smartphones/moto-g-power-2021-td-lte-us-64gb-xt2117-3/score/index.json b/site/public/v1/smartphones/moto-g-power-2021-td-lte-us-64gb-xt2117-3/score/index.json new file mode 100644 index 00000000000..4d6d5780e9c --- /dev/null +++ b/site/public/v1/smartphones/moto-g-power-2021-td-lte-us-64gb-xt2117-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.0, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 17.5, + "value": 58.0 +} diff --git a/site/public/v1/smartphones/moto-g-pro-2020-global-dual-sim-td-lte-128gb-xt2043-7-moto-g8-pro/index.json b/site/public/v1/smartphones/moto-g-pro-2020-global-dual-sim-td-lte-128gb-xt2043-7-moto-g8-pro/index.json new file mode 100644 index 00000000000..f442920f753 --- /dev/null +++ b/site/public/v1/smartphones/moto-g-pro-2020-global-dual-sim-td-lte-128gb-xt2043-7-moto-g8-pro/index.json @@ -0,0 +1,76 @@ +{ + "id": 2119, + "slug": "moto-g-pro-2020-global-dual-sim-td-lte-128gb-xt2043-7-moto-g8-pro", + "name": "Moto G Pro 2020 Global Dual SIM TD-LTE 128GB XT2043-7 / Moto G8 Pro", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2300", + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.416874", + "updated_at": "2026-06-19T00:43:44.416874" +} diff --git a/site/public/v1/smartphones/moto-g-pro-2020-global-dual-sim-td-lte-128gb-xt2043-7-moto-g8-pro/score/index.json b/site/public/v1/smartphones/moto-g-pro-2020-global-dual-sim-td-lte-128gb-xt2043-7-moto-g8-pro/score/index.json new file mode 100644 index 00000000000..cf077d27e0d --- /dev/null +++ b/site/public/v1/smartphones/moto-g-pro-2020-global-dual-sim-td-lte-128gb-xt2043-7-moto-g8-pro/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.7, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g-pro-2020-global-td-lte-128gb-xt2043-7-g8-pro/index.json b/site/public/v1/smartphones/moto-g-pro-2020-global-td-lte-128gb-xt2043-7-g8-pro/index.json new file mode 100644 index 00000000000..9332d795f79 --- /dev/null +++ b/site/public/v1/smartphones/moto-g-pro-2020-global-td-lte-128gb-xt2043-7-g8-pro/index.json @@ -0,0 +1,76 @@ +{ + "id": 2120, + "slug": "moto-g-pro-2020-global-td-lte-128gb-xt2043-7-g8-pro", + "name": "Moto G Pro 2020 Global TD-LTE 128GB XT2043-7 / G8 Pro", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2300", + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.416874", + "updated_at": "2026-06-19T00:43:44.416874" +} diff --git a/site/public/v1/smartphones/moto-g-pro-2020-global-td-lte-128gb-xt2043-7-g8-pro/score/index.json b/site/public/v1/smartphones/moto-g-pro-2020-global-td-lte-128gb-xt2043-7-g8-pro/score/index.json new file mode 100644 index 00000000000..cf077d27e0d --- /dev/null +++ b/site/public/v1/smartphones/moto-g-pro-2020-global-td-lte-128gb-xt2043-7-g8-pro/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.7, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g-pure-2021-lte-na-32gb-xt2163-4/index.json b/site/public/v1/smartphones/moto-g-pure-2021-lte-na-32gb-xt2163-4/index.json new file mode 100644 index 00000000000..5ccb1ab052c --- /dev/null +++ b/site/public/v1/smartphones/moto-g-pure-2021-lte-na-32gb-xt2163-4/index.json @@ -0,0 +1,76 @@ +{ + "id": 2220, + "slug": "moto-g-pure-2021-lte-na-32gb-xt2163-4", + "name": "Moto G Pure 2021 LTE NA 32GB XT2163-4", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 59, + "slug": "helio-g25", + "name": "Helio G25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g25" + }, + "release_date": "2021-10-01", + "msrp_usd": 160, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 56.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.428874", + "updated_at": "2026-06-19T00:43:44.428874" +} diff --git a/site/public/v1/smartphones/moto-g-pure-2021-lte-na-32gb-xt2163-4/score/index.json b/site/public/v1/smartphones/moto-g-pure-2021-lte-na-32gb-xt2163-4/score/index.json new file mode 100644 index 00000000000..8998cfefb03 --- /dev/null +++ b/site/public/v1/smartphones/moto-g-pure-2021-lte-na-32gb-xt2163-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 56.9 +} diff --git a/site/public/v1/smartphones/moto-g-pure-2021-lte-us-32gb-xt2163dl/index.json b/site/public/v1/smartphones/moto-g-pure-2021-lte-us-32gb-xt2163dl/index.json new file mode 100644 index 00000000000..da0e58ca817 --- /dev/null +++ b/site/public/v1/smartphones/moto-g-pure-2021-lte-us-32gb-xt2163dl/index.json @@ -0,0 +1,76 @@ +{ + "id": 2221, + "slug": "moto-g-pure-2021-lte-us-32gb-xt2163dl", + "name": "Moto G Pure 2021 LTE US 32GB XT2163DL", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 59, + "slug": "helio-g25", + "name": "Helio G25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g25" + }, + "release_date": "2021-11-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.429874", + "updated_at": "2026-06-19T00:43:44.429874" +} diff --git a/site/public/v1/smartphones/moto-g-pure-2021-lte-us-32gb-xt2163dl/score/index.json b/site/public/v1/smartphones/moto-g-pure-2021-lte-us-32gb-xt2163dl/score/index.json new file mode 100644 index 00000000000..a59635bee66 --- /dev/null +++ b/site/public/v1/smartphones/moto-g-pure-2021-lte-us-32gb-xt2163dl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g-stylus-2020-td-lte-na-128gb-xt2043-4-g8-stylus-xt2043-6/index.json b/site/public/v1/smartphones/moto-g-stylus-2020-td-lte-na-128gb-xt2043-4-g8-stylus-xt2043-6/index.json new file mode 100644 index 00000000000..863986357b7 --- /dev/null +++ b/site/public/v1/smartphones/moto-g-stylus-2020-td-lte-na-128gb-xt2043-4-g8-stylus-xt2043-6/index.json @@ -0,0 +1,76 @@ +{ + "id": 2121, + "slug": "moto-g-stylus-2020-td-lte-na-128gb-xt2043-4-g8-stylus-xt2043-6", + "name": "Moto G Stylus 2020 TD-LTE NA 128GB XT2043-4 / G8 Stylus XT2043-6", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-03-01", + "msrp_usd": 299, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2300", + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.7, + "value": 59.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.416874", + "updated_at": "2026-06-19T00:43:44.416874" +} diff --git a/site/public/v1/smartphones/moto-g-stylus-2020-td-lte-na-128gb-xt2043-4-g8-stylus-xt2043-6/score/index.json b/site/public/v1/smartphones/moto-g-stylus-2020-td-lte-na-128gb-xt2043-4-g8-stylus-xt2043-6/score/index.json new file mode 100644 index 00000000000..05db8931658 --- /dev/null +++ b/site/public/v1/smartphones/moto-g-stylus-2020-td-lte-na-128gb-xt2043-4-g8-stylus-xt2043-6/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.7, + "value": 59.5 +} diff --git a/site/public/v1/smartphones/moto-g-stylus-2020-td-lte-us-128gb-xt2043-5-g8-stylus/index.json b/site/public/v1/smartphones/moto-g-stylus-2020-td-lte-us-128gb-xt2043-5-g8-stylus/index.json new file mode 100644 index 00000000000..66e05d656df --- /dev/null +++ b/site/public/v1/smartphones/moto-g-stylus-2020-td-lte-us-128gb-xt2043-5-g8-stylus/index.json @@ -0,0 +1,76 @@ +{ + "id": 2122, + "slug": "moto-g-stylus-2020-td-lte-us-128gb-xt2043-5-g8-stylus", + "name": "Moto G Stylus 2020 TD-LTE US 128GB XT2043-5 / G8 Stylus", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-03-01", + "msrp_usd": 300, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2300", + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.7, + "value": 59.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.416874", + "updated_at": "2026-06-19T00:43:44.416874" +} diff --git a/site/public/v1/smartphones/moto-g-stylus-2020-td-lte-us-128gb-xt2043-5-g8-stylus/score/index.json b/site/public/v1/smartphones/moto-g-stylus-2020-td-lte-us-128gb-xt2043-5-g8-stylus/score/index.json new file mode 100644 index 00000000000..05db8931658 --- /dev/null +++ b/site/public/v1/smartphones/moto-g-stylus-2020-td-lte-us-128gb-xt2043-5-g8-stylus/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.7, + "value": 59.5 +} diff --git a/site/public/v1/smartphones/moto-g-stylus-2020-td-lte-us-128gb-xt2043-8-g8-stylus/index.json b/site/public/v1/smartphones/moto-g-stylus-2020-td-lte-us-128gb-xt2043-8-g8-stylus/index.json new file mode 100644 index 00000000000..bfc2fbf9d4f --- /dev/null +++ b/site/public/v1/smartphones/moto-g-stylus-2020-td-lte-us-128gb-xt2043-8-g8-stylus/index.json @@ -0,0 +1,76 @@ +{ + "id": 2123, + "slug": "moto-g-stylus-2020-td-lte-us-128gb-xt2043-8-g8-stylus", + "name": "Moto G Stylus 2020 TD-LTE US 128GB XT2043-8 / G8 Stylus", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-06-01", + "msrp_usd": 300, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2300", + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.7, + "value": 59.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.416874", + "updated_at": "2026-06-19T00:43:44.416874" +} diff --git a/site/public/v1/smartphones/moto-g-stylus-2020-td-lte-us-128gb-xt2043-8-g8-stylus/score/index.json b/site/public/v1/smartphones/moto-g-stylus-2020-td-lte-us-128gb-xt2043-8-g8-stylus/score/index.json new file mode 100644 index 00000000000..05db8931658 --- /dev/null +++ b/site/public/v1/smartphones/moto-g-stylus-2020-td-lte-us-128gb-xt2043-8-g8-stylus/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.7, + "value": 59.5 +} diff --git a/site/public/v1/smartphones/moto-g-stylus-2021-td-lte-us-128gb-xt2115-1-g9-stylus/index.json b/site/public/v1/smartphones/moto-g-stylus-2021-td-lte-us-128gb-xt2115-1-g9-stylus/index.json new file mode 100644 index 00000000000..0042ce553c6 --- /dev/null +++ b/site/public/v1/smartphones/moto-g-stylus-2021-td-lte-us-128gb-xt2115-1-g9-stylus/index.json @@ -0,0 +1,76 @@ +{ + "id": 2225, + "slug": "moto-g-stylus-2021-td-lte-us-128gb-xt2115-1-g9-stylus", + "name": "Moto G Stylus 2021 TD-LTE US 128GB XT2115-1 / G9 Stylus", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 142, + "slug": "snapdragon-678", + "name": "Snapdragon 678", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-678" + }, + "release_date": "2021-01-14", + "msrp_usd": 300, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2300", + "type": "Color IPS TFT LCD display", + "ppi": 374 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 213.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 42.4, + "value": 59.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.429874", + "updated_at": "2026-06-19T00:43:44.429874" +} diff --git a/site/public/v1/smartphones/moto-g-stylus-2021-td-lte-us-128gb-xt2115-1-g9-stylus/score/index.json b/site/public/v1/smartphones/moto-g-stylus-2021-td-lte-us-128gb-xt2115-1-g9-stylus/score/index.json new file mode 100644 index 00000000000..f67b2901913 --- /dev/null +++ b/site/public/v1/smartphones/moto-g-stylus-2021-td-lte-us-128gb-xt2115-1-g9-stylus/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 42.4, + "value": 59.2 +} diff --git a/site/public/v1/smartphones/moto-g-stylus-2021-td-lte-us-128gb-xt2115dl/index.json b/site/public/v1/smartphones/moto-g-stylus-2021-td-lte-us-128gb-xt2115dl/index.json new file mode 100644 index 00000000000..b97935a5a1b --- /dev/null +++ b/site/public/v1/smartphones/moto-g-stylus-2021-td-lte-us-128gb-xt2115dl/index.json @@ -0,0 +1,76 @@ +{ + "id": 2226, + "slug": "moto-g-stylus-2021-td-lte-us-128gb-xt2115dl", + "name": "Moto G Stylus 2021 TD-LTE US 128GB XT2115DL", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 142, + "slug": "snapdragon-678", + "name": "Snapdragon 678", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-678" + }, + "release_date": "2021-03-01", + "msrp_usd": 200, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2300", + "type": "Color IPS TFT LCD display", + "ppi": 374 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 213.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 42.4, + "value": 59.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.429874", + "updated_at": "2026-06-19T00:43:44.429874" +} diff --git a/site/public/v1/smartphones/moto-g-stylus-2021-td-lte-us-128gb-xt2115dl/score/index.json b/site/public/v1/smartphones/moto-g-stylus-2021-td-lte-us-128gb-xt2115dl/score/index.json new file mode 100644 index 00000000000..f67b2901913 --- /dev/null +++ b/site/public/v1/smartphones/moto-g-stylus-2021-td-lte-us-128gb-xt2115dl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 42.4, + "value": 59.2 +} diff --git a/site/public/v1/smartphones/moto-g-stylus-5g-2021-td-lte-us-128gb-xt2131-3/index.json b/site/public/v1/smartphones/moto-g-stylus-5g-2021-td-lte-us-128gb-xt2131-3/index.json new file mode 100644 index 00000000000..e828b8ec4fe --- /dev/null +++ b/site/public/v1/smartphones/moto-g-stylus-5g-2021-td-lte-us-128gb-xt2131-3/index.json @@ -0,0 +1,76 @@ +{ + "id": 2227, + "slug": "moto-g-stylus-5g-2021-td-lte-us-128gb-xt2131-3", + "name": "Moto G Stylus 5G 2021 TD-LTE US 128GB XT2131-3", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-07-16", + "msrp_usd": 250, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.79, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 217.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 43.8, + "value": 61.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.429874", + "updated_at": "2026-06-19T00:43:44.429874" +} diff --git a/site/public/v1/smartphones/moto-g-stylus-5g-2021-td-lte-us-128gb-xt2131-3/score/index.json b/site/public/v1/smartphones/moto-g-stylus-5g-2021-td-lte-us-128gb-xt2131-3/score/index.json new file mode 100644 index 00000000000..8cb1c213f1b --- /dev/null +++ b/site/public/v1/smartphones/moto-g-stylus-5g-2021-td-lte-us-128gb-xt2131-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 43.8, + "value": 61.3 +} diff --git a/site/public/v1/smartphones/moto-g-stylus-5g-2021-td-lte-us-128gb-xt2131-4/index.json b/site/public/v1/smartphones/moto-g-stylus-5g-2021-td-lte-us-128gb-xt2131-4/index.json new file mode 100644 index 00000000000..b5aef443369 --- /dev/null +++ b/site/public/v1/smartphones/moto-g-stylus-5g-2021-td-lte-us-128gb-xt2131-4/index.json @@ -0,0 +1,76 @@ +{ + "id": 2228, + "slug": "moto-g-stylus-5g-2021-td-lte-us-128gb-xt2131-4", + "name": "Moto G Stylus 5G 2021 TD-LTE US 128GB XT2131-4", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-07-09", + "msrp_usd": 230, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.79, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 217.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 43.8, + "value": 61.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.429874", + "updated_at": "2026-06-19T00:43:44.429874" +} diff --git a/site/public/v1/smartphones/moto-g-stylus-5g-2021-td-lte-us-128gb-xt2131-4/score/index.json b/site/public/v1/smartphones/moto-g-stylus-5g-2021-td-lte-us-128gb-xt2131-4/score/index.json new file mode 100644 index 00000000000..8cb1c213f1b --- /dev/null +++ b/site/public/v1/smartphones/moto-g-stylus-5g-2021-td-lte-us-128gb-xt2131-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 43.8, + "value": 61.3 +} diff --git a/site/public/v1/smartphones/moto-g-stylus-5g-2021-td-lte-us-256gb-xt2131-1/index.json b/site/public/v1/smartphones/moto-g-stylus-5g-2021-td-lte-us-256gb-xt2131-1/index.json new file mode 100644 index 00000000000..fb2f275dd38 --- /dev/null +++ b/site/public/v1/smartphones/moto-g-stylus-5g-2021-td-lte-us-256gb-xt2131-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2229, + "slug": "moto-g-stylus-5g-2021-td-lte-us-256gb-xt2131-1", + "name": "Moto G Stylus 5G 2021 TD-LTE US 256GB XT2131-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-06-14", + "msrp_usd": 260, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.79, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 217.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 1.5, + "camera": 16.5, + "battery": 30.0, + "display": 43.8, + "value": 61.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.430874", + "updated_at": "2026-06-19T00:43:44.430874" +} diff --git a/site/public/v1/smartphones/moto-g-stylus-5g-2021-td-lte-us-256gb-xt2131-1/score/index.json b/site/public/v1/smartphones/moto-g-stylus-5g-2021-td-lte-us-256gb-xt2131-1/score/index.json new file mode 100644 index 00000000000..8da2b21d39d --- /dev/null +++ b/site/public/v1/smartphones/moto-g-stylus-5g-2021-td-lte-us-256gb-xt2131-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 1.5, + "camera": 16.5, + "battery": 30.0, + "display": 43.8, + "value": 61.5 +} diff --git a/site/public/v1/smartphones/moto-g-stylus-5g-2021-td-lte-us-256gb-xt2131dl/index.json b/site/public/v1/smartphones/moto-g-stylus-5g-2021-td-lte-us-256gb-xt2131dl/index.json new file mode 100644 index 00000000000..0ac3c0ba5ee --- /dev/null +++ b/site/public/v1/smartphones/moto-g-stylus-5g-2021-td-lte-us-256gb-xt2131dl/index.json @@ -0,0 +1,76 @@ +{ + "id": 2230, + "slug": "moto-g-stylus-5g-2021-td-lte-us-256gb-xt2131dl", + "name": "Moto G Stylus 5G 2021 TD-LTE US 256GB XT2131DL", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-07-01", + "msrp_usd": 450, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.79, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 217.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 1.5, + "camera": 16.5, + "battery": 30.0, + "display": 43.8, + "value": 55.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.430874", + "updated_at": "2026-06-19T00:43:44.430874" +} diff --git a/site/public/v1/smartphones/moto-g-stylus-5g-2021-td-lte-us-256gb-xt2131dl/score/index.json b/site/public/v1/smartphones/moto-g-stylus-5g-2021-td-lte-us-256gb-xt2131dl/score/index.json new file mode 100644 index 00000000000..d6f640d646d --- /dev/null +++ b/site/public/v1/smartphones/moto-g-stylus-5g-2021-td-lte-us-256gb-xt2131dl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 1.5, + "camera": 16.5, + "battery": 30.0, + "display": 43.8, + "value": 55.7 +} diff --git a/site/public/v1/smartphones/moto-g10-2021-dual-sim-td-lte-latam-128gb-xt2127-1/index.json b/site/public/v1/smartphones/moto-g10-2021-dual-sim-td-lte-latam-128gb-xt2127-1/index.json new file mode 100644 index 00000000000..a1176528b04 --- /dev/null +++ b/site/public/v1/smartphones/moto-g10-2021-dual-sim-td-lte-latam-128gb-xt2127-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2231, + "slug": "moto-g10-2021-dual-sim-td-lte-latam-128gb-xt2127-1", + "name": "Moto G10 2021 Dual SIM TD-LTE LATAM 128GB XT2127-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2021-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.430874", + "updated_at": "2026-06-19T00:43:44.430874" +} diff --git a/site/public/v1/smartphones/moto-g10-2021-dual-sim-td-lte-latam-128gb-xt2127-1/score/index.json b/site/public/v1/smartphones/moto-g10-2021-dual-sim-td-lte-latam-128gb-xt2127-1/score/index.json new file mode 100644 index 00000000000..99aee406377 --- /dev/null +++ b/site/public/v1/smartphones/moto-g10-2021-dual-sim-td-lte-latam-128gb-xt2127-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g10-2021-global-dual-sim-td-lte-64gb-xt2127-2/index.json b/site/public/v1/smartphones/moto-g10-2021-global-dual-sim-td-lte-64gb-xt2127-2/index.json new file mode 100644 index 00000000000..5b8a26788ea --- /dev/null +++ b/site/public/v1/smartphones/moto-g10-2021-global-dual-sim-td-lte-64gb-xt2127-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 2232, + "slug": "moto-g10-2021-global-dual-sim-td-lte-64gb-xt2127-2", + "name": "Moto G10 2021 Global Dual SIM TD-LTE 64GB XT2127-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2021-02-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.430874", + "updated_at": "2026-06-19T00:43:44.430874" +} diff --git a/site/public/v1/smartphones/moto-g10-2021-global-dual-sim-td-lte-64gb-xt2127-2/score/index.json b/site/public/v1/smartphones/moto-g10-2021-global-dual-sim-td-lte-64gb-xt2127-2/score/index.json new file mode 100644 index 00000000000..99aee406377 --- /dev/null +++ b/site/public/v1/smartphones/moto-g10-2021-global-dual-sim-td-lte-64gb-xt2127-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g10-power-2021-dual-sim-td-lte-in-64gb-xt2127-4/index.json b/site/public/v1/smartphones/moto-g10-power-2021-dual-sim-td-lte-in-64gb-xt2127-4/index.json new file mode 100644 index 00000000000..2db2818ff03 --- /dev/null +++ b/site/public/v1/smartphones/moto-g10-power-2021-dual-sim-td-lte-in-64gb-xt2127-4/index.json @@ -0,0 +1,76 @@ +{ + "id": 2233, + "slug": "moto-g10-power-2021-dual-sim-td-lte-in-64gb-xt2127-4", + "name": "Moto G10 Power 2021 Dual SIM TD-LTE IN 64GB XT2127-4", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2021-03-16", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 0.0, + "camera": 16.5, + "battery": 45.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.430874", + "updated_at": "2026-06-19T00:43:44.430874" +} diff --git a/site/public/v1/smartphones/moto-g10-power-2021-dual-sim-td-lte-in-64gb-xt2127-4/score/index.json b/site/public/v1/smartphones/moto-g10-power-2021-dual-sim-td-lte-in-64gb-xt2127-4/score/index.json new file mode 100644 index 00000000000..b71278d03bd --- /dev/null +++ b/site/public/v1/smartphones/moto-g10-power-2021-dual-sim-td-lte-in-64gb-xt2127-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 0.0, + "camera": 16.5, + "battery": 45.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g100-global-dual-sim-td-lte-128gb-xt2125-4/index.json b/site/public/v1/smartphones/moto-g100-global-dual-sim-td-lte-128gb-xt2125-4/index.json new file mode 100644 index 00000000000..3a0a6e7b1de --- /dev/null +++ b/site/public/v1/smartphones/moto-g100-global-dual-sim-td-lte-128gb-xt2125-4/index.json @@ -0,0 +1,77 @@ +{ + "id": 2234, + "slug": "moto-g100-global-dual-sim-td-lte-128gb-xt2125-4", + "name": "Moto g100 Global Dual SIM TD-LTE 128GB XT2125-4", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-05-28", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.69, + "resolution": "1080x2520", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 410 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 207.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.9, + "performance": 6.1, + "camera": 21.7, + "battery": 31.0, + "display": 41.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.430874", + "updated_at": "2026-06-19T00:43:44.430874" +} diff --git a/site/public/v1/smartphones/moto-g100-global-dual-sim-td-lte-128gb-xt2125-4/score/index.json b/site/public/v1/smartphones/moto-g100-global-dual-sim-td-lte-128gb-xt2125-4/score/index.json new file mode 100644 index 00000000000..150902ffa4c --- /dev/null +++ b/site/public/v1/smartphones/moto-g100-global-dual-sim-td-lte-128gb-xt2125-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.9, + "performance": 6.1, + "camera": 21.7, + "battery": 31.0, + "display": 41.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g100-global-dual-sim-td-lte-256gb-xt2125-4/index.json b/site/public/v1/smartphones/moto-g100-global-dual-sim-td-lte-256gb-xt2125-4/index.json new file mode 100644 index 00000000000..2d98ae6991f --- /dev/null +++ b/site/public/v1/smartphones/moto-g100-global-dual-sim-td-lte-256gb-xt2125-4/index.json @@ -0,0 +1,77 @@ +{ + "id": 2235, + "slug": "moto-g100-global-dual-sim-td-lte-256gb-xt2125-4", + "name": "Moto g100 Global Dual SIM TD-LTE 256GB XT2125-4", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-06-01", + "msrp_usd": 3999, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1080x2520", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 410 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 207.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.7, + "performance": 9.1, + "camera": 21.7, + "battery": 31.0, + "display": 41.0, + "value": 12.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.430874", + "updated_at": "2026-06-19T00:43:44.430874" +} diff --git a/site/public/v1/smartphones/moto-g100-global-dual-sim-td-lte-256gb-xt2125-4/score/index.json b/site/public/v1/smartphones/moto-g100-global-dual-sim-td-lte-256gb-xt2125-4/score/index.json new file mode 100644 index 00000000000..fe1ad48d94e --- /dev/null +++ b/site/public/v1/smartphones/moto-g100-global-dual-sim-td-lte-256gb-xt2125-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.7, + "performance": 9.1, + "camera": 21.7, + "battery": 31.0, + "display": 41.0, + "value": 12.8 +} diff --git a/site/public/v1/smartphones/moto-g100-global-td-lte-128gb-xt2125-4/index.json b/site/public/v1/smartphones/moto-g100-global-td-lte-128gb-xt2125-4/index.json new file mode 100644 index 00000000000..448e4f6c232 --- /dev/null +++ b/site/public/v1/smartphones/moto-g100-global-td-lte-128gb-xt2125-4/index.json @@ -0,0 +1,77 @@ +{ + "id": 2236, + "slug": "moto-g100-global-td-lte-128gb-xt2125-4", + "name": "Moto g100 Global TD-LTE 128GB XT2125-4", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-05-28", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.69, + "resolution": "1080x2520", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 410 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 207.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.9, + "performance": 6.1, + "camera": 21.7, + "battery": 31.0, + "display": 41.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.431874", + "updated_at": "2026-06-19T00:43:44.431874" +} diff --git a/site/public/v1/smartphones/moto-g100-global-td-lte-128gb-xt2125-4/score/index.json b/site/public/v1/smartphones/moto-g100-global-td-lte-128gb-xt2125-4/score/index.json new file mode 100644 index 00000000000..150902ffa4c --- /dev/null +++ b/site/public/v1/smartphones/moto-g100-global-td-lte-128gb-xt2125-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.9, + "performance": 6.1, + "camera": 21.7, + "battery": 31.0, + "display": 41.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g20-2021-dual-sim-td-lte-latam-128gb-xt2128-1/index.json b/site/public/v1/smartphones/moto-g20-2021-dual-sim-td-lte-latam-128gb-xt2128-1/index.json new file mode 100644 index 00000000000..c9ea864ad6d --- /dev/null +++ b/site/public/v1/smartphones/moto-g20-2021-dual-sim-td-lte-latam-128gb-xt2128-1/index.json @@ -0,0 +1,77 @@ +{ + "id": 2238, + "slug": "moto-g20-2021-dual-sim-td-lte-latam-128gb-xt2128-1", + "name": "Moto G20 2021 Dual SIM TD-LTE LATAM 128GB XT2128-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 214, + "slug": "tiger-t700", + "name": "Unisoc Tiger T700", + "manufacturer": { + "slug": "unisoc", + "name": "UNISOC", + "url": "/v1/brands/unisoc" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/tiger-t700" + }, + "release_date": "2021-06-09", + "msrp_usd": 1699, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 9.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.431874", + "updated_at": "2026-06-19T00:43:44.431874" +} diff --git a/site/public/v1/smartphones/moto-g20-2021-dual-sim-td-lte-latam-128gb-xt2128-1/score/index.json b/site/public/v1/smartphones/moto-g20-2021-dual-sim-td-lte-latam-128gb-xt2128-1/score/index.json new file mode 100644 index 00000000000..dea4f7f474a --- /dev/null +++ b/site/public/v1/smartphones/moto-g20-2021-dual-sim-td-lte-latam-128gb-xt2128-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 9.6 +} diff --git a/site/public/v1/smartphones/moto-g20-2021-dual-sim-td-lte-latam-64gb-xt2128-1/index.json b/site/public/v1/smartphones/moto-g20-2021-dual-sim-td-lte-latam-64gb-xt2128-1/index.json new file mode 100644 index 00000000000..6a4677cf018 --- /dev/null +++ b/site/public/v1/smartphones/moto-g20-2021-dual-sim-td-lte-latam-64gb-xt2128-1/index.json @@ -0,0 +1,77 @@ +{ + "id": 2239, + "slug": "moto-g20-2021-dual-sim-td-lte-latam-64gb-xt2128-1", + "name": "Moto G20 2021 Dual SIM TD-LTE LATAM 64GB XT2128-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 214, + "slug": "tiger-t700", + "name": "Unisoc Tiger T700", + "manufacturer": { + "slug": "unisoc", + "name": "UNISOC", + "url": "/v1/brands/unisoc" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/tiger-t700" + }, + "release_date": "2021-05-01", + "msrp_usd": 1499, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 13.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.431874", + "updated_at": "2026-06-19T00:43:44.431874" +} diff --git a/site/public/v1/smartphones/moto-g20-2021-dual-sim-td-lte-latam-64gb-xt2128-1/score/index.json b/site/public/v1/smartphones/moto-g20-2021-dual-sim-td-lte-latam-64gb-xt2128-1/score/index.json new file mode 100644 index 00000000000..43a0b44772d --- /dev/null +++ b/site/public/v1/smartphones/moto-g20-2021-dual-sim-td-lte-latam-64gb-xt2128-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 13.5 +} diff --git a/site/public/v1/smartphones/moto-g20-2021-global-dual-sim-td-lte-128gb-xt2128-2/index.json b/site/public/v1/smartphones/moto-g20-2021-global-dual-sim-td-lte-128gb-xt2128-2/index.json new file mode 100644 index 00000000000..ee4fe29c691 --- /dev/null +++ b/site/public/v1/smartphones/moto-g20-2021-global-dual-sim-td-lte-128gb-xt2128-2/index.json @@ -0,0 +1,77 @@ +{ + "id": 2240, + "slug": "moto-g20-2021-global-dual-sim-td-lte-128gb-xt2128-2", + "name": "Moto G20 2021 Global Dual SIM TD-LTE 128GB XT2128-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 214, + "slug": "tiger-t700", + "name": "Unisoc Tiger T700", + "manufacturer": { + "slug": "unisoc", + "name": "UNISOC", + "url": "/v1/brands/unisoc" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/tiger-t700" + }, + "release_date": "2021-06-09", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.431874", + "updated_at": "2026-06-19T00:43:44.431874" +} diff --git a/site/public/v1/smartphones/moto-g20-2021-global-dual-sim-td-lte-128gb-xt2128-2/score/index.json b/site/public/v1/smartphones/moto-g20-2021-global-dual-sim-td-lte-128gb-xt2128-2/score/index.json new file mode 100644 index 00000000000..602742251c0 --- /dev/null +++ b/site/public/v1/smartphones/moto-g20-2021-global-dual-sim-td-lte-128gb-xt2128-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g20-2021-global-dual-sim-td-lte-64gb-xt2128-2/index.json b/site/public/v1/smartphones/moto-g20-2021-global-dual-sim-td-lte-64gb-xt2128-2/index.json new file mode 100644 index 00000000000..8950727e352 --- /dev/null +++ b/site/public/v1/smartphones/moto-g20-2021-global-dual-sim-td-lte-64gb-xt2128-2/index.json @@ -0,0 +1,77 @@ +{ + "id": 2241, + "slug": "moto-g20-2021-global-dual-sim-td-lte-64gb-xt2128-2", + "name": "Moto G20 2021 Global Dual SIM TD-LTE 64GB XT2128-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 214, + "slug": "tiger-t700", + "name": "Unisoc Tiger T700", + "manufacturer": { + "slug": "unisoc", + "name": "UNISOC", + "url": "/v1/brands/unisoc" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/tiger-t700" + }, + "release_date": "2021-06-09", + "msrp_usd": 169, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 59.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.431874", + "updated_at": "2026-06-19T00:43:44.431874" +} diff --git a/site/public/v1/smartphones/moto-g20-2021-global-dual-sim-td-lte-64gb-xt2128-2/score/index.json b/site/public/v1/smartphones/moto-g20-2021-global-dual-sim-td-lte-64gb-xt2128-2/score/index.json new file mode 100644 index 00000000000..d0434da1826 --- /dev/null +++ b/site/public/v1/smartphones/moto-g20-2021-global-dual-sim-td-lte-64gb-xt2128-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 59.5 +} diff --git a/site/public/v1/smartphones/moto-g20-2021-td-lte-latam-128gb-xt2128-1/index.json b/site/public/v1/smartphones/moto-g20-2021-td-lte-latam-128gb-xt2128-1/index.json new file mode 100644 index 00000000000..d90340de21f --- /dev/null +++ b/site/public/v1/smartphones/moto-g20-2021-td-lte-latam-128gb-xt2128-1/index.json @@ -0,0 +1,77 @@ +{ + "id": 2242, + "slug": "moto-g20-2021-td-lte-latam-128gb-xt2128-1", + "name": "Moto G20 2021 TD-LTE LATAM 128GB XT2128-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 214, + "slug": "tiger-t700", + "name": "Unisoc Tiger T700", + "manufacturer": { + "slug": "unisoc", + "name": "UNISOC", + "url": "/v1/brands/unisoc" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/tiger-t700" + }, + "release_date": "2021-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.431874", + "updated_at": "2026-06-19T00:43:44.431874" +} diff --git a/site/public/v1/smartphones/moto-g20-2021-td-lte-latam-128gb-xt2128-1/score/index.json b/site/public/v1/smartphones/moto-g20-2021-td-lte-latam-128gb-xt2128-1/score/index.json new file mode 100644 index 00000000000..602742251c0 --- /dev/null +++ b/site/public/v1/smartphones/moto-g20-2021-td-lte-latam-128gb-xt2128-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g20-2021-td-lte-latam-64gb-xt2128-1/index.json b/site/public/v1/smartphones/moto-g20-2021-td-lte-latam-64gb-xt2128-1/index.json new file mode 100644 index 00000000000..f2503ed5f1c --- /dev/null +++ b/site/public/v1/smartphones/moto-g20-2021-td-lte-latam-64gb-xt2128-1/index.json @@ -0,0 +1,77 @@ +{ + "id": 2243, + "slug": "moto-g20-2021-td-lte-latam-64gb-xt2128-1", + "name": "Moto G20 2021 TD-LTE LATAM 64GB XT2128-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 214, + "slug": "tiger-t700", + "name": "Unisoc Tiger T700", + "manufacturer": { + "slug": "unisoc", + "name": "UNISOC", + "url": "/v1/brands/unisoc" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/tiger-t700" + }, + "release_date": "2021-05-01", + "msrp_usd": 4599, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 9.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.431874", + "updated_at": "2026-06-19T00:43:44.431874" +} diff --git a/site/public/v1/smartphones/moto-g20-2021-td-lte-latam-64gb-xt2128-1/score/index.json b/site/public/v1/smartphones/moto-g20-2021-td-lte-latam-64gb-xt2128-1/score/index.json new file mode 100644 index 00000000000..dea4f7f474a --- /dev/null +++ b/site/public/v1/smartphones/moto-g20-2021-td-lte-latam-64gb-xt2128-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 9.6 +} diff --git a/site/public/v1/smartphones/moto-g200-5g-2021-global-dual-sim-td-lte-128gb-xt2175-1/index.json b/site/public/v1/smartphones/moto-g200-5g-2021-global-dual-sim-td-lte-128gb-xt2175-1/index.json new file mode 100644 index 00000000000..ea9de35f744 --- /dev/null +++ b/site/public/v1/smartphones/moto-g200-5g-2021-global-dual-sim-td-lte-128gb-xt2175-1/index.json @@ -0,0 +1,77 @@ +{ + "id": 2245, + "slug": "moto-g200-5g-2021-global-dual-sim-td-lte-128gb-xt2175-1", + "name": "Moto G200 5G 2021 Global Dual SIM TD-LTE 128GB XT2175-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-12-12", + "msrp_usd": 459, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2460", + "refresh_hz": 144, + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 202.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.4, + "performance": 8.2, + "camera": 35.7, + "battery": 43.4, + "display": 62.1, + "value": 62.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.432873", + "updated_at": "2026-06-19T00:43:44.432873" +} diff --git a/site/public/v1/smartphones/moto-g200-5g-2021-global-dual-sim-td-lte-128gb-xt2175-1/score/index.json b/site/public/v1/smartphones/moto-g200-5g-2021-global-dual-sim-td-lte-128gb-xt2175-1/score/index.json new file mode 100644 index 00000000000..5e5b7dc86f3 --- /dev/null +++ b/site/public/v1/smartphones/moto-g200-5g-2021-global-dual-sim-td-lte-128gb-xt2175-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.4, + "performance": 8.2, + "camera": 35.7, + "battery": 43.4, + "display": 62.1, + "value": 62.6 +} diff --git a/site/public/v1/smartphones/moto-g22/index.json b/site/public/v1/smartphones/moto-g22/index.json new file mode 100644 index 00000000000..3f6b0a8cde1 --- /dev/null +++ b/site/public/v1/smartphones/moto-g22/index.json @@ -0,0 +1,70 @@ +{ + "id": 2293, + "slug": "moto-g22", + "name": "Moto G22", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 72, + "slug": "helio-g37", + "name": "Helio G37", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g37" + }, + "release_date": "2022-01-01", + "msrp_usd": 249, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5 + }, + "cameras": [ + { + "type": "main", + "mp": 50.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": null, + "camera": 17.1, + "battery": 30.0, + "display": null, + "value": 61.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.437874", + "updated_at": "2026-06-19T00:43:44.437874" +} diff --git a/site/public/v1/smartphones/moto-g22/score/index.json b/site/public/v1/smartphones/moto-g22/score/index.json new file mode 100644 index 00000000000..c07a3576284 --- /dev/null +++ b/site/public/v1/smartphones/moto-g22/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": null, + "camera": 17.1, + "battery": 30.0, + "display": null, + "value": 61.8 +} diff --git a/site/public/v1/smartphones/moto-g30-2021-premium-edition-global-dual-sim-td-lte-128gb-xt2129-2/index.json b/site/public/v1/smartphones/moto-g30-2021-premium-edition-global-dual-sim-td-lte-128gb-xt2129-2/index.json new file mode 100644 index 00000000000..bc67822e6d4 --- /dev/null +++ b/site/public/v1/smartphones/moto-g30-2021-premium-edition-global-dual-sim-td-lte-128gb-xt2129-2/index.json @@ -0,0 +1,77 @@ +{ + "id": 2246, + "slug": "moto-g30-2021-premium-edition-global-dual-sim-td-lte-128gb-xt2129-2", + "name": "Moto G30 2021 Premium Edition Global Dual SIM TD-LTE 128GB XT2129-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-03-01", + "msrp_usd": 190, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 1.5, + "camera": 21.5, + "battery": 30.0, + "display": 30.0, + "value": 60.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.432873", + "updated_at": "2026-06-19T00:43:44.432873" +} diff --git a/site/public/v1/smartphones/moto-g30-2021-premium-edition-global-dual-sim-td-lte-128gb-xt2129-2/score/index.json b/site/public/v1/smartphones/moto-g30-2021-premium-edition-global-dual-sim-td-lte-128gb-xt2129-2/score/index.json new file mode 100644 index 00000000000..96822e1307a --- /dev/null +++ b/site/public/v1/smartphones/moto-g30-2021-premium-edition-global-dual-sim-td-lte-128gb-xt2129-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 1.5, + "camera": 21.5, + "battery": 30.0, + "display": 30.0, + "value": 60.4 +} diff --git a/site/public/v1/smartphones/moto-g30-2021-standard-edition-dual-sim-td-lte-apac-64gb-xt2129-2/index.json b/site/public/v1/smartphones/moto-g30-2021-standard-edition-dual-sim-td-lte-apac-64gb-xt2129-2/index.json new file mode 100644 index 00000000000..a1dc93c5b59 --- /dev/null +++ b/site/public/v1/smartphones/moto-g30-2021-standard-edition-dual-sim-td-lte-apac-64gb-xt2129-2/index.json @@ -0,0 +1,77 @@ +{ + "id": 2247, + "slug": "moto-g30-2021-standard-edition-dual-sim-td-lte-apac-64gb-xt2129-2", + "name": "Moto G30 2021 Standard Edition Dual SIM TD-LTE APAC 64GB XT2129-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 21.5, + "battery": 30.0, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.432873", + "updated_at": "2026-06-19T00:43:44.432873" +} diff --git a/site/public/v1/smartphones/moto-g30-2021-standard-edition-dual-sim-td-lte-apac-64gb-xt2129-2/score/index.json b/site/public/v1/smartphones/moto-g30-2021-standard-edition-dual-sim-td-lte-apac-64gb-xt2129-2/score/index.json new file mode 100644 index 00000000000..d7933edc439 --- /dev/null +++ b/site/public/v1/smartphones/moto-g30-2021-standard-edition-dual-sim-td-lte-apac-64gb-xt2129-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 21.5, + "battery": 30.0, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g30-2021-standard-edition-dual-sim-td-lte-latam-128gb-xt2129-1/index.json b/site/public/v1/smartphones/moto-g30-2021-standard-edition-dual-sim-td-lte-latam-128gb-xt2129-1/index.json new file mode 100644 index 00000000000..ddcc5f79551 --- /dev/null +++ b/site/public/v1/smartphones/moto-g30-2021-standard-edition-dual-sim-td-lte-latam-128gb-xt2129-1/index.json @@ -0,0 +1,77 @@ +{ + "id": 2248, + "slug": "moto-g30-2021-standard-edition-dual-sim-td-lte-latam-128gb-xt2129-1", + "name": "Moto G30 2021 Standard Edition Dual SIM TD-LTE LATAM 128GB XT2129-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-03-01", + "msrp_usd": 1899, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 21.5, + "battery": 30.0, + "display": 30.0, + "value": 10.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.432873", + "updated_at": "2026-06-19T00:43:44.432873" +} diff --git a/site/public/v1/smartphones/moto-g30-2021-standard-edition-dual-sim-td-lte-latam-128gb-xt2129-1/score/index.json b/site/public/v1/smartphones/moto-g30-2021-standard-edition-dual-sim-td-lte-latam-128gb-xt2129-1/score/index.json new file mode 100644 index 00000000000..e73b601a477 --- /dev/null +++ b/site/public/v1/smartphones/moto-g30-2021-standard-edition-dual-sim-td-lte-latam-128gb-xt2129-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 21.5, + "battery": 30.0, + "display": 30.0, + "value": 10.2 +} diff --git a/site/public/v1/smartphones/moto-g30-2021-standard-edition-global-dual-sim-td-lte-128gb-xt2129-2/index.json b/site/public/v1/smartphones/moto-g30-2021-standard-edition-global-dual-sim-td-lte-128gb-xt2129-2/index.json new file mode 100644 index 00000000000..7a1c15bbce6 --- /dev/null +++ b/site/public/v1/smartphones/moto-g30-2021-standard-edition-global-dual-sim-td-lte-128gb-xt2129-2/index.json @@ -0,0 +1,77 @@ +{ + "id": 2249, + "slug": "moto-g30-2021-standard-edition-global-dual-sim-td-lte-128gb-xt2129-2", + "name": "Moto G30 2021 Standard Edition Global Dual SIM TD-LTE 128GB XT2129-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-03-01", + "msrp_usd": 160, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 21.5, + "battery": 30.0, + "display": 30.0, + "value": 60.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.432873", + "updated_at": "2026-06-19T00:43:44.432873" +} diff --git a/site/public/v1/smartphones/moto-g30-2021-standard-edition-global-dual-sim-td-lte-128gb-xt2129-2/score/index.json b/site/public/v1/smartphones/moto-g30-2021-standard-edition-global-dual-sim-td-lte-128gb-xt2129-2/score/index.json new file mode 100644 index 00000000000..fecbdf4df39 --- /dev/null +++ b/site/public/v1/smartphones/moto-g30-2021-standard-edition-global-dual-sim-td-lte-128gb-xt2129-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 21.5, + "battery": 30.0, + "display": 30.0, + "value": 60.2 +} diff --git a/site/public/v1/smartphones/moto-g30-2021-standard-edition-td-lte-latam-128gb-xt2129-1/index.json b/site/public/v1/smartphones/moto-g30-2021-standard-edition-td-lte-latam-128gb-xt2129-1/index.json new file mode 100644 index 00000000000..32bed4d0438 --- /dev/null +++ b/site/public/v1/smartphones/moto-g30-2021-standard-edition-td-lte-latam-128gb-xt2129-1/index.json @@ -0,0 +1,77 @@ +{ + "id": 2250, + "slug": "moto-g30-2021-standard-edition-td-lte-latam-128gb-xt2129-1", + "name": "Moto G30 2021 Standard Edition TD-LTE LATAM 128GB XT2129-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-03-01", + "msrp_usd": 4999, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 21.5, + "battery": 30.0, + "display": 30.0, + "value": 10.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.432873", + "updated_at": "2026-06-19T00:43:44.432873" +} diff --git a/site/public/v1/smartphones/moto-g30-2021-standard-edition-td-lte-latam-128gb-xt2129-1/score/index.json b/site/public/v1/smartphones/moto-g30-2021-standard-edition-td-lte-latam-128gb-xt2129-1/score/index.json new file mode 100644 index 00000000000..e73b601a477 --- /dev/null +++ b/site/public/v1/smartphones/moto-g30-2021-standard-edition-td-lte-latam-128gb-xt2129-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 21.5, + "battery": 30.0, + "display": 30.0, + "value": 10.2 +} diff --git a/site/public/v1/smartphones/moto-g31-2021-dual-sim-td-lte-apac-128gb-xt2173-2/index.json b/site/public/v1/smartphones/moto-g31-2021-dual-sim-td-lte-apac-128gb-xt2173-2/index.json new file mode 100644 index 00000000000..c1fff7f9959 --- /dev/null +++ b/site/public/v1/smartphones/moto-g31-2021-dual-sim-td-lte-apac-128gb-xt2173-2/index.json @@ -0,0 +1,77 @@ +{ + "id": 2251, + "slug": "moto-g31-2021-dual-sim-td-lte-apac-128gb-xt2173-2", + "name": "Moto G31 2021 Dual SIM TD-LTE APAC 128GB XT2173-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 63, + "slug": "helio-g85", + "name": "MediaTek Helio G85", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g85" + }, + "release_date": "2021-12-06", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 17.2, + "battery": 31.0, + "display": 28.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.432873", + "updated_at": "2026-06-19T00:43:44.432873" +} diff --git a/site/public/v1/smartphones/moto-g31-2021-dual-sim-td-lte-apac-128gb-xt2173-2/score/index.json b/site/public/v1/smartphones/moto-g31-2021-dual-sim-td-lte-apac-128gb-xt2173-2/score/index.json new file mode 100644 index 00000000000..6d10f49fa92 --- /dev/null +++ b/site/public/v1/smartphones/moto-g31-2021-dual-sim-td-lte-apac-128gb-xt2173-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 17.2, + "battery": 31.0, + "display": 28.6, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g31-2021-dual-sim-td-lte-apac-64gb-xt2173-2/index.json b/site/public/v1/smartphones/moto-g31-2021-dual-sim-td-lte-apac-64gb-xt2173-2/index.json new file mode 100644 index 00000000000..824a0814dbc --- /dev/null +++ b/site/public/v1/smartphones/moto-g31-2021-dual-sim-td-lte-apac-64gb-xt2173-2/index.json @@ -0,0 +1,77 @@ +{ + "id": 2252, + "slug": "moto-g31-2021-dual-sim-td-lte-apac-64gb-xt2173-2", + "name": "Moto G31 2021 Dual SIM TD-LTE APAC 64GB XT2173-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 63, + "slug": "helio-g85", + "name": "MediaTek Helio G85", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g85" + }, + "release_date": "2021-12-06", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 0.0, + "camera": 17.2, + "battery": 31.0, + "display": 28.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.432873", + "updated_at": "2026-06-19T00:43:44.432873" +} diff --git a/site/public/v1/smartphones/moto-g31-2021-dual-sim-td-lte-apac-64gb-xt2173-2/score/index.json b/site/public/v1/smartphones/moto-g31-2021-dual-sim-td-lte-apac-64gb-xt2173-2/score/index.json new file mode 100644 index 00000000000..69fd51cb237 --- /dev/null +++ b/site/public/v1/smartphones/moto-g31-2021-dual-sim-td-lte-apac-64gb-xt2173-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 0.0, + "camera": 17.2, + "battery": 31.0, + "display": 28.6, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g31-2021-dual-sim-td-lte-latam-128gb-xt2173-1/index.json b/site/public/v1/smartphones/moto-g31-2021-dual-sim-td-lte-latam-128gb-xt2173-1/index.json new file mode 100644 index 00000000000..ce3f1134419 --- /dev/null +++ b/site/public/v1/smartphones/moto-g31-2021-dual-sim-td-lte-latam-128gb-xt2173-1/index.json @@ -0,0 +1,77 @@ +{ + "id": 2253, + "slug": "moto-g31-2021-dual-sim-td-lte-latam-128gb-xt2173-1", + "name": "Moto G31 2021 Dual SIM TD-LTE LATAM 128GB XT2173-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 63, + "slug": "helio-g85", + "name": "MediaTek Helio G85", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g85" + }, + "release_date": "2021-12-07", + "msrp_usd": 1999, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 0.0, + "camera": 17.2, + "battery": 30.0, + "display": 28.6, + "value": 9.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.433874", + "updated_at": "2026-06-19T00:43:44.433874" +} diff --git a/site/public/v1/smartphones/moto-g31-2021-dual-sim-td-lte-latam-128gb-xt2173-1/score/index.json b/site/public/v1/smartphones/moto-g31-2021-dual-sim-td-lte-latam-128gb-xt2173-1/score/index.json new file mode 100644 index 00000000000..89c34b03fd2 --- /dev/null +++ b/site/public/v1/smartphones/moto-g31-2021-dual-sim-td-lte-latam-128gb-xt2173-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 0.0, + "camera": 17.2, + "battery": 30.0, + "display": 28.6, + "value": 9.4 +} diff --git a/site/public/v1/smartphones/moto-g31-2021-global-dual-sim-td-lte-128gb-xt2173-3/index.json b/site/public/v1/smartphones/moto-g31-2021-global-dual-sim-td-lte-128gb-xt2173-3/index.json new file mode 100644 index 00000000000..dce7e67c89c --- /dev/null +++ b/site/public/v1/smartphones/moto-g31-2021-global-dual-sim-td-lte-128gb-xt2173-3/index.json @@ -0,0 +1,77 @@ +{ + "id": 2254, + "slug": "moto-g31-2021-global-dual-sim-td-lte-128gb-xt2173-3", + "name": "Moto G31 2021 Global Dual SIM TD-LTE 128GB XT2173-3", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 63, + "slug": "helio-g85", + "name": "MediaTek Helio G85", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g85" + }, + "release_date": "2021-12-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 0.0, + "camera": 17.2, + "battery": 30.0, + "display": 28.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.433874", + "updated_at": "2026-06-19T00:43:44.433874" +} diff --git a/site/public/v1/smartphones/moto-g31-2021-global-dual-sim-td-lte-128gb-xt2173-3/score/index.json b/site/public/v1/smartphones/moto-g31-2021-global-dual-sim-td-lte-128gb-xt2173-3/score/index.json new file mode 100644 index 00000000000..8614a376431 --- /dev/null +++ b/site/public/v1/smartphones/moto-g31-2021-global-dual-sim-td-lte-128gb-xt2173-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 0.0, + "camera": 17.2, + "battery": 30.0, + "display": 28.6, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g31-2021-global-dual-sim-td-lte-64gb-xt2173-3/index.json b/site/public/v1/smartphones/moto-g31-2021-global-dual-sim-td-lte-64gb-xt2173-3/index.json new file mode 100644 index 00000000000..089a1959cf7 --- /dev/null +++ b/site/public/v1/smartphones/moto-g31-2021-global-dual-sim-td-lte-64gb-xt2173-3/index.json @@ -0,0 +1,77 @@ +{ + "id": 2255, + "slug": "moto-g31-2021-global-dual-sim-td-lte-64gb-xt2173-3", + "name": "Moto G31 2021 Global Dual SIM TD-LTE 64GB XT2173-3", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 63, + "slug": "helio-g85", + "name": "MediaTek Helio G85", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g85" + }, + "release_date": "2021-12-01", + "msrp_usd": 200, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 0.0, + "camera": 17.2, + "battery": 30.0, + "display": 28.6, + "value": 59.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.433874", + "updated_at": "2026-06-19T00:43:44.433874" +} diff --git a/site/public/v1/smartphones/moto-g31-2021-global-dual-sim-td-lte-64gb-xt2173-3/score/index.json b/site/public/v1/smartphones/moto-g31-2021-global-dual-sim-td-lte-64gb-xt2173-3/score/index.json new file mode 100644 index 00000000000..ef9c7e64033 --- /dev/null +++ b/site/public/v1/smartphones/moto-g31-2021-global-dual-sim-td-lte-64gb-xt2173-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 0.0, + "camera": 17.2, + "battery": 30.0, + "display": 28.6, + "value": 59.5 +} diff --git a/site/public/v1/smartphones/moto-g31-2021-td-lte-latam-128gb-xt2173-1/index.json b/site/public/v1/smartphones/moto-g31-2021-td-lte-latam-128gb-xt2173-1/index.json new file mode 100644 index 00000000000..d2eaf2a5afc --- /dev/null +++ b/site/public/v1/smartphones/moto-g31-2021-td-lte-latam-128gb-xt2173-1/index.json @@ -0,0 +1,77 @@ +{ + "id": 2256, + "slug": "moto-g31-2021-td-lte-latam-128gb-xt2173-1", + "name": "Moto G31 2021 TD-LTE LATAM 128GB XT2173-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 63, + "slug": "helio-g85", + "name": "MediaTek Helio G85", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g85" + }, + "release_date": "2021-12-07", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 0.0, + "camera": 17.2, + "battery": 30.0, + "display": 28.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.433874", + "updated_at": "2026-06-19T00:43:44.433874" +} diff --git a/site/public/v1/smartphones/moto-g31-2021-td-lte-latam-128gb-xt2173-1/score/index.json b/site/public/v1/smartphones/moto-g31-2021-td-lte-latam-128gb-xt2173-1/score/index.json new file mode 100644 index 00000000000..8614a376431 --- /dev/null +++ b/site/public/v1/smartphones/moto-g31-2021-td-lte-latam-128gb-xt2173-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 0.0, + "camera": 17.2, + "battery": 30.0, + "display": 28.6, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g41-2021-premium-edition-global-dual-sim-td-lte-128gb-xt2167-2/index.json b/site/public/v1/smartphones/moto-g41-2021-premium-edition-global-dual-sim-td-lte-128gb-xt2167-2/index.json new file mode 100644 index 00000000000..2d9bc323eed --- /dev/null +++ b/site/public/v1/smartphones/moto-g41-2021-premium-edition-global-dual-sim-td-lte-128gb-xt2167-2/index.json @@ -0,0 +1,77 @@ +{ + "id": 2294, + "slug": "moto-g41-2021-premium-edition-global-dual-sim-td-lte-128gb-xt2167-2", + "name": "Moto G41 2021 Premium Edition Global Dual SIM TD-LTE 128GB XT2167-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 63, + "slug": "helio-g85", + "name": "MediaTek Helio G85", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g85" + }, + "release_date": "2022-01-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 1.5, + "camera": 16.5, + "battery": 32.9, + "display": 28.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.438874", + "updated_at": "2026-06-19T00:43:44.438874" +} diff --git a/site/public/v1/smartphones/moto-g41-2021-premium-edition-global-dual-sim-td-lte-128gb-xt2167-2/score/index.json b/site/public/v1/smartphones/moto-g41-2021-premium-edition-global-dual-sim-td-lte-128gb-xt2167-2/score/index.json new file mode 100644 index 00000000000..8644f32d815 --- /dev/null +++ b/site/public/v1/smartphones/moto-g41-2021-premium-edition-global-dual-sim-td-lte-128gb-xt2167-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 1.5, + "camera": 16.5, + "battery": 32.9, + "display": 28.6, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g41-2021-standard-edition-dual-sim-td-lte-latam-128gb-xt2167-1/index.json b/site/public/v1/smartphones/moto-g41-2021-standard-edition-dual-sim-td-lte-latam-128gb-xt2167-1/index.json new file mode 100644 index 00000000000..94f43e618e3 --- /dev/null +++ b/site/public/v1/smartphones/moto-g41-2021-standard-edition-dual-sim-td-lte-latam-128gb-xt2167-1/index.json @@ -0,0 +1,77 @@ +{ + "id": 2259, + "slug": "moto-g41-2021-standard-edition-dual-sim-td-lte-latam-128gb-xt2167-1", + "name": "Moto G41 2021 Standard Edition Dual SIM TD-LTE LATAM 128GB XT2167-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 63, + "slug": "helio-g85", + "name": "MediaTek Helio G85", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g85" + }, + "release_date": "2021-12-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.5, + "performance": 0.0, + "camera": 16.5, + "battery": 32.9, + "display": 28.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.433874", + "updated_at": "2026-06-19T00:43:44.433874" +} diff --git a/site/public/v1/smartphones/moto-g41-2021-standard-edition-dual-sim-td-lte-latam-128gb-xt2167-1/score/index.json b/site/public/v1/smartphones/moto-g41-2021-standard-edition-dual-sim-td-lte-latam-128gb-xt2167-1/score/index.json new file mode 100644 index 00000000000..4449ba34e1c --- /dev/null +++ b/site/public/v1/smartphones/moto-g41-2021-standard-edition-dual-sim-td-lte-latam-128gb-xt2167-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.5, + "performance": 0.0, + "camera": 16.5, + "battery": 32.9, + "display": 28.6, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g41-2021-standard-edition-global-dual-sim-td-lte-128gb-xt2167-2/index.json b/site/public/v1/smartphones/moto-g41-2021-standard-edition-global-dual-sim-td-lte-128gb-xt2167-2/index.json new file mode 100644 index 00000000000..64e57ff11b1 --- /dev/null +++ b/site/public/v1/smartphones/moto-g41-2021-standard-edition-global-dual-sim-td-lte-128gb-xt2167-2/index.json @@ -0,0 +1,77 @@ +{ + "id": 2296, + "slug": "moto-g41-2021-standard-edition-global-dual-sim-td-lte-128gb-xt2167-2", + "name": "Moto G41 2021 Standard Edition Global Dual SIM TD-LTE 128GB XT2167-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 63, + "slug": "helio-g85", + "name": "MediaTek Helio G85", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g85" + }, + "release_date": "2022-01-01", + "msrp_usd": 250, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.5, + "performance": 0.0, + "camera": 16.5, + "battery": 32.9, + "display": 28.6, + "value": 59.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.438874", + "updated_at": "2026-06-19T00:43:44.438874" +} diff --git a/site/public/v1/smartphones/moto-g41-2021-standard-edition-global-dual-sim-td-lte-128gb-xt2167-2/score/index.json b/site/public/v1/smartphones/moto-g41-2021-standard-edition-global-dual-sim-td-lte-128gb-xt2167-2/score/index.json new file mode 100644 index 00000000000..977e23307ff --- /dev/null +++ b/site/public/v1/smartphones/moto-g41-2021-standard-edition-global-dual-sim-td-lte-128gb-xt2167-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.5, + "performance": 0.0, + "camera": 16.5, + "battery": 32.9, + "display": 28.6, + "value": 59.8 +} diff --git a/site/public/v1/smartphones/moto-g41-2021-standard-edition-td-lte-latam-128gb-xt2167-1/index.json b/site/public/v1/smartphones/moto-g41-2021-standard-edition-td-lte-latam-128gb-xt2167-1/index.json new file mode 100644 index 00000000000..b6e1778faca --- /dev/null +++ b/site/public/v1/smartphones/moto-g41-2021-standard-edition-td-lte-latam-128gb-xt2167-1/index.json @@ -0,0 +1,77 @@ +{ + "id": 2297, + "slug": "moto-g41-2021-standard-edition-td-lte-latam-128gb-xt2167-1", + "name": "Moto G41 2021 Standard Edition TD-LTE LATAM 128GB XT2167-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 63, + "slug": "helio-g85", + "name": "MediaTek Helio G85", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g85" + }, + "release_date": "2022-01-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.5, + "performance": 0.0, + "camera": 16.5, + "battery": 32.9, + "display": 28.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.438874", + "updated_at": "2026-06-19T00:43:44.438874" +} diff --git a/site/public/v1/smartphones/moto-g41-2021-standard-edition-td-lte-latam-128gb-xt2167-1/score/index.json b/site/public/v1/smartphones/moto-g41-2021-standard-edition-td-lte-latam-128gb-xt2167-1/score/index.json new file mode 100644 index 00000000000..4449ba34e1c --- /dev/null +++ b/site/public/v1/smartphones/moto-g41-2021-standard-edition-td-lte-latam-128gb-xt2167-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.5, + "performance": 0.0, + "camera": 16.5, + "battery": 32.9, + "display": 28.6, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g50-5g-2021-dual-sim-td-lte-cn-128gb-xt2137-2/index.json b/site/public/v1/smartphones/moto-g50-5g-2021-dual-sim-td-lte-cn-128gb-xt2137-2/index.json new file mode 100644 index 00000000000..5ecfc1b558b --- /dev/null +++ b/site/public/v1/smartphones/moto-g50-5g-2021-dual-sim-td-lte-cn-128gb-xt2137-2/index.json @@ -0,0 +1,77 @@ +{ + "id": 2261, + "slug": "moto-g50-5g-2021-dual-sim-td-lte-cn-128gb-xt2137-2", + "name": "Moto G50 5G 2021 Dual SIM TD-LTE CN 128GB XT2137-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-04-01", + "msrp_usd": 1499, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 3.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 13.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.434874", + "updated_at": "2026-06-19T00:43:44.434874" +} diff --git a/site/public/v1/smartphones/moto-g50-5g-2021-dual-sim-td-lte-cn-128gb-xt2137-2/score/index.json b/site/public/v1/smartphones/moto-g50-5g-2021-dual-sim-td-lte-cn-128gb-xt2137-2/score/index.json new file mode 100644 index 00000000000..c6915fd15f7 --- /dev/null +++ b/site/public/v1/smartphones/moto-g50-5g-2021-dual-sim-td-lte-cn-128gb-xt2137-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 3.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 13.8 +} diff --git a/site/public/v1/smartphones/moto-g50-5g-2021-global-dual-sim-td-lte-128gb-xt2137-1/index.json b/site/public/v1/smartphones/moto-g50-5g-2021-global-dual-sim-td-lte-128gb-xt2137-1/index.json new file mode 100644 index 00000000000..ea504de828e --- /dev/null +++ b/site/public/v1/smartphones/moto-g50-5g-2021-global-dual-sim-td-lte-128gb-xt2137-1/index.json @@ -0,0 +1,77 @@ +{ + "id": 2262, + "slug": "moto-g50-5g-2021-global-dual-sim-td-lte-128gb-xt2137-1", + "name": "Moto G50 5G 2021 Global Dual SIM TD-LTE 128GB XT2137-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-04-01", + "msrp_usd": 229, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 59.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.434874", + "updated_at": "2026-06-19T00:43:44.434874" +} diff --git a/site/public/v1/smartphones/moto-g50-5g-2021-global-dual-sim-td-lte-128gb-xt2137-1/score/index.json b/site/public/v1/smartphones/moto-g50-5g-2021-global-dual-sim-td-lte-128gb-xt2137-1/score/index.json new file mode 100644 index 00000000000..d0434da1826 --- /dev/null +++ b/site/public/v1/smartphones/moto-g50-5g-2021-global-dual-sim-td-lte-128gb-xt2137-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 59.5 +} diff --git a/site/public/v1/smartphones/moto-g50-5g-2021-global-dual-sim-td-lte-128gb-xt2149-1/index.json b/site/public/v1/smartphones/moto-g50-5g-2021-global-dual-sim-td-lte-128gb-xt2149-1/index.json new file mode 100644 index 00000000000..49237abf02f --- /dev/null +++ b/site/public/v1/smartphones/moto-g50-5g-2021-global-dual-sim-td-lte-128gb-xt2149-1/index.json @@ -0,0 +1,77 @@ +{ + "id": 2263, + "slug": "moto-g50-5g-2021-global-dual-sim-td-lte-128gb-xt2149-1", + "name": "Moto G50 5G 2021 Global Dual SIM TD-LTE 128GB XT2149-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-09-02", + "msrp_usd": 399, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 55.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.434874", + "updated_at": "2026-06-19T00:43:44.434874" +} diff --git a/site/public/v1/smartphones/moto-g50-5g-2021-global-dual-sim-td-lte-128gb-xt2149-1/score/index.json b/site/public/v1/smartphones/moto-g50-5g-2021-global-dual-sim-td-lte-128gb-xt2149-1/score/index.json new file mode 100644 index 00000000000..fcfadbdc1e1 --- /dev/null +++ b/site/public/v1/smartphones/moto-g50-5g-2021-global-dual-sim-td-lte-128gb-xt2149-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 55.8 +} diff --git a/site/public/v1/smartphones/moto-g50-5g-2021-global-dual-sim-td-lte-64gb-xt2137-1/index.json b/site/public/v1/smartphones/moto-g50-5g-2021-global-dual-sim-td-lte-64gb-xt2137-1/index.json new file mode 100644 index 00000000000..7fbbb6e2bb5 --- /dev/null +++ b/site/public/v1/smartphones/moto-g50-5g-2021-global-dual-sim-td-lte-64gb-xt2137-1/index.json @@ -0,0 +1,77 @@ +{ + "id": 2264, + "slug": "moto-g50-5g-2021-global-dual-sim-td-lte-64gb-xt2137-1", + "name": "Moto G50 5G 2021 Global Dual SIM TD-LTE 64GB XT2137-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-04-01", + "msrp_usd": 199, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 59.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.434874", + "updated_at": "2026-06-19T00:43:44.434874" +} diff --git a/site/public/v1/smartphones/moto-g50-5g-2021-global-dual-sim-td-lte-64gb-xt2137-1/score/index.json b/site/public/v1/smartphones/moto-g50-5g-2021-global-dual-sim-td-lte-64gb-xt2137-1/score/index.json new file mode 100644 index 00000000000..d0434da1826 --- /dev/null +++ b/site/public/v1/smartphones/moto-g50-5g-2021-global-dual-sim-td-lte-64gb-xt2137-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 59.5 +} diff --git a/site/public/v1/smartphones/moto-g50-5g-2021-global-td-lte-128gb-xt2149-1/index.json b/site/public/v1/smartphones/moto-g50-5g-2021-global-td-lte-128gb-xt2149-1/index.json new file mode 100644 index 00000000000..83543be4ca1 --- /dev/null +++ b/site/public/v1/smartphones/moto-g50-5g-2021-global-td-lte-128gb-xt2149-1/index.json @@ -0,0 +1,77 @@ +{ + "id": 2265, + "slug": "moto-g50-5g-2021-global-td-lte-128gb-xt2149-1", + "name": "Moto G50 5G 2021 Global TD-LTE 128GB XT2149-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-09-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.434874", + "updated_at": "2026-06-19T00:43:44.434874" +} diff --git a/site/public/v1/smartphones/moto-g50-5g-2021-global-td-lte-128gb-xt2149-1/score/index.json b/site/public/v1/smartphones/moto-g50-5g-2021-global-td-lte-128gb-xt2149-1/score/index.json new file mode 100644 index 00000000000..602742251c0 --- /dev/null +++ b/site/public/v1/smartphones/moto-g50-5g-2021-global-td-lte-128gb-xt2149-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g6-dual-sim-lte-a-latam-32gb-xt1925-2/index.json b/site/public/v1/smartphones/moto-g6-dual-sim-lte-a-latam-32gb-xt1925-2/index.json new file mode 100644 index 00000000000..9b288fa7854 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-dual-sim-lte-a-latam-32gb-xt1925-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 1953, + "slug": "moto-g6-dual-sim-lte-a-latam-32gb-xt1925-2", + "name": "Moto G6 Dual SIM LTE-A LATAM 32GB XT1925-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 47.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.395873", + "updated_at": "2026-06-19T00:43:44.395873" +} diff --git a/site/public/v1/smartphones/moto-g6-dual-sim-lte-a-latam-32gb-xt1925-2/score/index.json b/site/public/v1/smartphones/moto-g6-dual-sim-lte-a-latam-32gb-xt1925-2/score/index.json new file mode 100644 index 00000000000..ef10d3f78b7 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-dual-sim-lte-a-latam-32gb-xt1925-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 47.6, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g6-dual-sim-lte-a-latam-32gb-xt1925-3/index.json b/site/public/v1/smartphones/moto-g6-dual-sim-lte-a-latam-32gb-xt1925-3/index.json new file mode 100644 index 00000000000..2a60b4d563d --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-dual-sim-lte-a-latam-32gb-xt1925-3/index.json @@ -0,0 +1,76 @@ +{ + "id": 1954, + "slug": "moto-g6-dual-sim-lte-a-latam-32gb-xt1925-3", + "name": "Moto G6 Dual SIM LTE-A LATAM 32GB XT1925-3", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 162.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 47.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.395873", + "updated_at": "2026-06-19T00:43:44.395873" +} diff --git a/site/public/v1/smartphones/moto-g6-dual-sim-lte-a-latam-32gb-xt1925-3/score/index.json b/site/public/v1/smartphones/moto-g6-dual-sim-lte-a-latam-32gb-xt1925-3/score/index.json new file mode 100644 index 00000000000..ef10d3f78b7 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-dual-sim-lte-a-latam-32gb-xt1925-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 47.6, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g6-dual-sim-lte-a-latam-64gb-xt1925-3/index.json b/site/public/v1/smartphones/moto-g6-dual-sim-lte-a-latam-64gb-xt1925-3/index.json new file mode 100644 index 00000000000..dd98d2af31c --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-dual-sim-lte-a-latam-64gb-xt1925-3/index.json @@ -0,0 +1,76 @@ +{ + "id": 1955, + "slug": "moto-g6-dual-sim-lte-a-latam-64gb-xt1925-3", + "name": "Moto G6 Dual SIM LTE-A LATAM 64GB XT1925-3", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 162.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 47.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.395873", + "updated_at": "2026-06-19T00:43:44.395873" +} diff --git a/site/public/v1/smartphones/moto-g6-dual-sim-lte-a-latam-64gb-xt1925-3/score/index.json b/site/public/v1/smartphones/moto-g6-dual-sim-lte-a-latam-64gb-xt1925-3/score/index.json new file mode 100644 index 00000000000..ef10d3f78b7 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-dual-sim-lte-a-latam-64gb-xt1925-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 47.6, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g6-dual-sim-td-lte-apac-32gb-xt1925-7-xt1925-13/index.json b/site/public/v1/smartphones/moto-g6-dual-sim-td-lte-apac-32gb-xt1925-7-xt1925-13/index.json new file mode 100644 index 00000000000..f41981de0ed --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-dual-sim-td-lte-apac-32gb-xt1925-7-xt1925-13/index.json @@ -0,0 +1,76 @@ +{ + "id": 1956, + "slug": "moto-g6-dual-sim-td-lte-apac-32gb-xt1925-7-xt1925-13", + "name": "Moto G6 Dual SIM TD-LTE APAC 32GB XT1925-7 / XT1925-13", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-06-04", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 47.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.395873", + "updated_at": "2026-06-19T00:43:44.395873" +} diff --git a/site/public/v1/smartphones/moto-g6-dual-sim-td-lte-apac-32gb-xt1925-7-xt1925-13/score/index.json b/site/public/v1/smartphones/moto-g6-dual-sim-td-lte-apac-32gb-xt1925-7-xt1925-13/score/index.json new file mode 100644 index 00000000000..ef10d3f78b7 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-dual-sim-td-lte-apac-32gb-xt1925-7-xt1925-13/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 47.6, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g6-dual-sim-td-lte-emea-32gb-xt1925-5/index.json b/site/public/v1/smartphones/moto-g6-dual-sim-td-lte-emea-32gb-xt1925-5/index.json new file mode 100644 index 00000000000..14a3fe8c0aa --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-dual-sim-td-lte-emea-32gb-xt1925-5/index.json @@ -0,0 +1,76 @@ +{ + "id": 1957, + "slug": "moto-g6-dual-sim-td-lte-emea-32gb-xt1925-5", + "name": "Moto G6 Dual SIM TD-LTE EMEA 32GB XT1925-5", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 47.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.396873", + "updated_at": "2026-06-19T00:43:44.396873" +} diff --git a/site/public/v1/smartphones/moto-g6-dual-sim-td-lte-emea-32gb-xt1925-5/score/index.json b/site/public/v1/smartphones/moto-g6-dual-sim-td-lte-emea-32gb-xt1925-5/score/index.json new file mode 100644 index 00000000000..ef10d3f78b7 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-dual-sim-td-lte-emea-32gb-xt1925-5/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 47.6, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g6-dual-sim-td-lte-in-64gb-xt1925-13/index.json b/site/public/v1/smartphones/moto-g6-dual-sim-td-lte-in-64gb-xt1925-13/index.json new file mode 100644 index 00000000000..72522b9512d --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-dual-sim-td-lte-in-64gb-xt1925-13/index.json @@ -0,0 +1,76 @@ +{ + "id": 1958, + "slug": "moto-g6-dual-sim-td-lte-in-64gb-xt1925-13", + "name": "Moto G6 Dual SIM TD-LTE IN 64GB XT1925-13", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-06-04", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 47.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.396873", + "updated_at": "2026-06-19T00:43:44.396873" +} diff --git a/site/public/v1/smartphones/moto-g6-dual-sim-td-lte-in-64gb-xt1925-13/score/index.json b/site/public/v1/smartphones/moto-g6-dual-sim-td-lte-in-64gb-xt1925-13/score/index.json new file mode 100644 index 00000000000..ef10d3f78b7 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-dual-sim-td-lte-in-64gb-xt1925-13/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 47.6, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g6-forge-td-lte-na-xt1922-9-16gb-moto-g6-play/index.json b/site/public/v1/smartphones/moto-g6-forge-td-lte-na-xt1922-9-16gb-moto-g6-play/index.json new file mode 100644 index 00000000000..f32e0508ccc --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-forge-td-lte-na-xt1922-9-16gb-moto-g6-play/index.json @@ -0,0 +1,76 @@ +{ + "id": 1959, + "slug": "moto-g6-forge-td-lte-na-xt1922-9-16gb-moto-g6-play", + "name": "Moto G6 Forge TD-LTE NA XT1922-9 16GB / Moto G6 Play", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 117, + "slug": "snapdragon-427", + "name": "Snapdragon 427", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-427" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.2, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.396873", + "updated_at": "2026-06-19T00:43:44.396873" +} diff --git a/site/public/v1/smartphones/moto-g6-forge-td-lte-na-xt1922-9-16gb-moto-g6-play/score/index.json b/site/public/v1/smartphones/moto-g6-forge-td-lte-na-xt1922-9-16gb-moto-g6-play/score/index.json new file mode 100644 index 00000000000..5abd11a47c5 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-forge-td-lte-na-xt1922-9-16gb-moto-g6-play/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.2, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g6-lte-a-latam-32gb-xt1925-1/index.json b/site/public/v1/smartphones/moto-g6-lte-a-latam-32gb-xt1925-1/index.json new file mode 100644 index 00000000000..435b013acb3 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-lte-a-latam-32gb-xt1925-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 1960, + "slug": "moto-g6-lte-a-latam-32gb-xt1925-1", + "name": "Moto G6 LTE-A LATAM 32GB XT1925-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 47.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.396873", + "updated_at": "2026-06-19T00:43:44.396873" +} diff --git a/site/public/v1/smartphones/moto-g6-lte-a-latam-32gb-xt1925-1/score/index.json b/site/public/v1/smartphones/moto-g6-lte-a-latam-32gb-xt1925-1/score/index.json new file mode 100644 index 00000000000..ef10d3f78b7 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-lte-a-latam-32gb-xt1925-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 47.6, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g6-play-dual-sim-lte-a-latam-xt1922-5-32gb/index.json b/site/public/v1/smartphones/moto-g6-play-dual-sim-lte-a-latam-xt1922-5-32gb/index.json new file mode 100644 index 00000000000..f5a49fbfa7f --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-play-dual-sim-lte-a-latam-xt1922-5-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1961, + "slug": "moto-g6-play-dual-sim-lte-a-latam-xt1922-5-32gb", + "name": "Moto G6 Play Dual SIM LTE-A LATAM XT1922-5 32GB", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.2, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.396873", + "updated_at": "2026-06-19T00:43:44.396873" +} diff --git a/site/public/v1/smartphones/moto-g6-play-dual-sim-lte-a-latam-xt1922-5-32gb/score/index.json b/site/public/v1/smartphones/moto-g6-play-dual-sim-lte-a-latam-xt1922-5-32gb/score/index.json new file mode 100644 index 00000000000..5abd11a47c5 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-play-dual-sim-lte-a-latam-xt1922-5-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.2, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g6-play-dual-sim-td-lte-apac-xt1922-1-32gb/index.json b/site/public/v1/smartphones/moto-g6-play-dual-sim-td-lte-apac-xt1922-1-32gb/index.json new file mode 100644 index 00000000000..92f9222ba26 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-play-dual-sim-td-lte-apac-xt1922-1-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1962, + "slug": "moto-g6-play-dual-sim-td-lte-apac-xt1922-1-32gb", + "name": "Moto G6 Play Dual SIM TD-LTE APAC XT1922-1 32GB", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.2, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.396873", + "updated_at": "2026-06-19T00:43:44.396873" +} diff --git a/site/public/v1/smartphones/moto-g6-play-dual-sim-td-lte-apac-xt1922-1-32gb/score/index.json b/site/public/v1/smartphones/moto-g6-play-dual-sim-td-lte-apac-xt1922-1-32gb/score/index.json new file mode 100644 index 00000000000..5abd11a47c5 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-play-dual-sim-td-lte-apac-xt1922-1-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.2, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g6-play-dual-sim-td-lte-emea-xt1922-3-32gb/index.json b/site/public/v1/smartphones/moto-g6-play-dual-sim-td-lte-emea-xt1922-3-32gb/index.json new file mode 100644 index 00000000000..97a687b049c --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-play-dual-sim-td-lte-emea-xt1922-3-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1963, + "slug": "moto-g6-play-dual-sim-td-lte-emea-xt1922-3-32gb", + "name": "Moto G6 Play Dual SIM TD-LTE EMEA XT1922-3 32GB", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.2, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.396873", + "updated_at": "2026-06-19T00:43:44.396873" +} diff --git a/site/public/v1/smartphones/moto-g6-play-dual-sim-td-lte-emea-xt1922-3-32gb/score/index.json b/site/public/v1/smartphones/moto-g6-play-dual-sim-td-lte-emea-xt1922-3-32gb/score/index.json new file mode 100644 index 00000000000..5abd11a47c5 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-play-dual-sim-td-lte-emea-xt1922-3-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.2, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g6-play-dual-sim-td-lte-in-xt1922-10-32gb/index.json b/site/public/v1/smartphones/moto-g6-play-dual-sim-td-lte-in-xt1922-10-32gb/index.json new file mode 100644 index 00000000000..3198f34dd5d --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-play-dual-sim-td-lte-in-xt1922-10-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1964, + "slug": "moto-g6-play-dual-sim-td-lte-in-xt1922-10-32gb", + "name": "Moto G6 Play Dual SIM TD-LTE IN XT1922-10 32GB", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.2, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.396873", + "updated_at": "2026-06-19T00:43:44.396873" +} diff --git a/site/public/v1/smartphones/moto-g6-play-dual-sim-td-lte-in-xt1922-10-32gb/score/index.json b/site/public/v1/smartphones/moto-g6-play-dual-sim-td-lte-in-xt1922-10-32gb/score/index.json new file mode 100644 index 00000000000..5abd11a47c5 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-play-dual-sim-td-lte-in-xt1922-10-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.2, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g6-play-lte-a-latam-xt1922-4-32gb/index.json b/site/public/v1/smartphones/moto-g6-play-lte-a-latam-xt1922-4-32gb/index.json new file mode 100644 index 00000000000..204b4911880 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-play-lte-a-latam-xt1922-4-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1965, + "slug": "moto-g6-play-lte-a-latam-xt1922-4-32gb", + "name": "Moto G6 Play LTE-A LATAM XT1922-4 32GB", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.2, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.397874", + "updated_at": "2026-06-19T00:43:44.397874" +} diff --git a/site/public/v1/smartphones/moto-g6-play-lte-a-latam-xt1922-4-32gb/score/index.json b/site/public/v1/smartphones/moto-g6-play-lte-a-latam-xt1922-4-32gb/score/index.json new file mode 100644 index 00000000000..5abd11a47c5 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-play-lte-a-latam-xt1922-4-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.2, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g6-play-td-lte-emea-xt1922-2-32gb/index.json b/site/public/v1/smartphones/moto-g6-play-td-lte-emea-xt1922-2-32gb/index.json new file mode 100644 index 00000000000..7f4b903df97 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-play-td-lte-emea-xt1922-2-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1966, + "slug": "moto-g6-play-td-lte-emea-xt1922-2-32gb", + "name": "Moto G6 Play TD-LTE EMEA XT1922-2 32GB", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.2, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.397874", + "updated_at": "2026-06-19T00:43:44.397874" +} diff --git a/site/public/v1/smartphones/moto-g6-play-td-lte-emea-xt1922-2-32gb/score/index.json b/site/public/v1/smartphones/moto-g6-play-td-lte-emea-xt1922-2-32gb/score/index.json new file mode 100644 index 00000000000..5abd11a47c5 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-play-td-lte-emea-xt1922-2-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.2, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g6-play-td-lte-na-xt1922-6-16gb/index.json b/site/public/v1/smartphones/moto-g6-play-td-lte-na-xt1922-6-16gb/index.json new file mode 100644 index 00000000000..52807f94463 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-play-td-lte-na-xt1922-6-16gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1967, + "slug": "moto-g6-play-td-lte-na-xt1922-6-16gb", + "name": "Moto G6 Play TD-LTE NA XT1922-6 16GB", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 117, + "slug": "snapdragon-427", + "name": "Snapdragon 427", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-427" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.2, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.397874", + "updated_at": "2026-06-19T00:43:44.397874" +} diff --git a/site/public/v1/smartphones/moto-g6-play-td-lte-na-xt1922-6-16gb/score/index.json b/site/public/v1/smartphones/moto-g6-play-td-lte-na-xt1922-6-16gb/score/index.json new file mode 100644 index 00000000000..5abd11a47c5 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-play-td-lte-na-xt1922-6-16gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.2, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g6-play-td-lte-na-xt1922-7-16gb/index.json b/site/public/v1/smartphones/moto-g6-play-td-lte-na-xt1922-7-16gb/index.json new file mode 100644 index 00000000000..7f54c33c1b5 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-play-td-lte-na-xt1922-7-16gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1968, + "slug": "moto-g6-play-td-lte-na-xt1922-7-16gb", + "name": "Moto G6 Play TD-LTE NA XT1922-7 16GB", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 117, + "slug": "snapdragon-427", + "name": "Snapdragon 427", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-427" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.2, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.397874", + "updated_at": "2026-06-19T00:43:44.397874" +} diff --git a/site/public/v1/smartphones/moto-g6-play-td-lte-na-xt1922-7-16gb/score/index.json b/site/public/v1/smartphones/moto-g6-play-td-lte-na-xt1922-7-16gb/score/index.json new file mode 100644 index 00000000000..5abd11a47c5 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-play-td-lte-na-xt1922-7-16gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.2, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g6-play-td-lte-na-xt1922-9-32gb-moto-g-play-gen-6-xt1922-6/index.json b/site/public/v1/smartphones/moto-g6-play-td-lte-na-xt1922-9-32gb-moto-g-play-gen-6-xt1922-6/index.json new file mode 100644 index 00000000000..558e3a6e2f0 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-play-td-lte-na-xt1922-9-32gb-moto-g-play-gen-6-xt1922-6/index.json @@ -0,0 +1,76 @@ +{ + "id": 1969, + "slug": "moto-g6-play-td-lte-na-xt1922-9-32gb-moto-g-play-gen-6-xt1922-6", + "name": "Moto G6 Play TD-LTE NA XT1922-9 32GB / Moto G Play Gen 6 XT1922-6", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 117, + "slug": "snapdragon-427", + "name": "Snapdragon 427", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-427" + }, + "release_date": "2018-04-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.2, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.397874", + "updated_at": "2026-06-19T00:43:44.397874" +} diff --git a/site/public/v1/smartphones/moto-g6-play-td-lte-na-xt1922-9-32gb-moto-g-play-gen-6-xt1922-6/score/index.json b/site/public/v1/smartphones/moto-g6-play-td-lte-na-xt1922-9-32gb-moto-g-play-gen-6-xt1922-6/score/index.json new file mode 100644 index 00000000000..5abd11a47c5 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-play-td-lte-na-xt1922-9-32gb-moto-g-play-gen-6-xt1922-6/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.2, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g6-plus-dual-sim-lte-a-latam-xt1926-7-64gb/index.json b/site/public/v1/smartphones/moto-g6-plus-dual-sim-lte-a-latam-xt1926-7-64gb/index.json new file mode 100644 index 00000000000..518624c4d88 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-plus-dual-sim-lte-a-latam-xt1926-7-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1970, + "slug": "moto-g6-plus-dual-sim-lte-a-latam-xt1926-7-64gb", + "name": "Moto G6 Plus Dual SIM LTE-A LATAM XT1926-7 64GB", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2018-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.9, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": 0.0, + "camera": 5.0, + "battery": 3.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.397874", + "updated_at": "2026-06-19T00:43:44.397874" +} diff --git a/site/public/v1/smartphones/moto-g6-plus-dual-sim-lte-a-latam-xt1926-7-64gb/score/index.json b/site/public/v1/smartphones/moto-g6-plus-dual-sim-lte-a-latam-xt1926-7-64gb/score/index.json new file mode 100644 index 00000000000..5f5c1ca2192 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-plus-dual-sim-lte-a-latam-xt1926-7-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": 0.0, + "camera": 5.0, + "battery": 3.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g6-plus-dual-sim-td-lte-apac-xt1926-5-64gb/index.json b/site/public/v1/smartphones/moto-g6-plus-dual-sim-td-lte-apac-xt1926-5-64gb/index.json new file mode 100644 index 00000000000..240a86cef80 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-plus-dual-sim-td-lte-apac-xt1926-5-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1971, + "slug": "moto-g6-plus-dual-sim-td-lte-apac-xt1926-5-64gb", + "name": "Moto G6 Plus Dual SIM TD-LTE APAC XT1926-5 64GB", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2018-06-08", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.9, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": 0.0, + "camera": 5.0, + "battery": 3.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.397874", + "updated_at": "2026-06-19T00:43:44.397874" +} diff --git a/site/public/v1/smartphones/moto-g6-plus-dual-sim-td-lte-apac-xt1926-5-64gb/score/index.json b/site/public/v1/smartphones/moto-g6-plus-dual-sim-td-lte-apac-xt1926-5-64gb/score/index.json new file mode 100644 index 00000000000..5f5c1ca2192 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-plus-dual-sim-td-lte-apac-xt1926-5-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": 0.0, + "camera": 5.0, + "battery": 3.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g6-plus-dual-sim-td-lte-emea-xt1926-3-64gb/index.json b/site/public/v1/smartphones/moto-g6-plus-dual-sim-td-lte-emea-xt1926-3-64gb/index.json new file mode 100644 index 00000000000..3c6965478e2 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-plus-dual-sim-td-lte-emea-xt1926-3-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1972, + "slug": "moto-g6-plus-dual-sim-td-lte-emea-xt1926-3-64gb", + "name": "Moto G6 Plus Dual SIM TD-LTE EMEA XT1926-3 64GB", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2018-05-09", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.9, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": 0.0, + "camera": 5.0, + "battery": 3.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.397874", + "updated_at": "2026-06-19T00:43:44.397874" +} diff --git a/site/public/v1/smartphones/moto-g6-plus-dual-sim-td-lte-emea-xt1926-3-64gb/score/index.json b/site/public/v1/smartphones/moto-g6-plus-dual-sim-td-lte-emea-xt1926-3-64gb/score/index.json new file mode 100644 index 00000000000..5f5c1ca2192 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-plus-dual-sim-td-lte-emea-xt1926-3-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": 0.0, + "camera": 5.0, + "battery": 3.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g6-plus-dual-sim-td-lte-in-xt1926-9-64gb/index.json b/site/public/v1/smartphones/moto-g6-plus-dual-sim-td-lte-in-xt1926-9-64gb/index.json new file mode 100644 index 00000000000..2efca00eac5 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-plus-dual-sim-td-lte-in-xt1926-9-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1973, + "slug": "moto-g6-plus-dual-sim-td-lte-in-xt1926-9-64gb", + "name": "Moto G6 Plus Dual SIM TD-LTE IN XT1926-9 64GB", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2018-09-09", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.9, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 1.5, + "camera": 5.0, + "battery": 3.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.397874", + "updated_at": "2026-06-19T00:43:44.397874" +} diff --git a/site/public/v1/smartphones/moto-g6-plus-dual-sim-td-lte-in-xt1926-9-64gb/score/index.json b/site/public/v1/smartphones/moto-g6-plus-dual-sim-td-lte-in-xt1926-9-64gb/score/index.json new file mode 100644 index 00000000000..921bbcf4405 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-plus-dual-sim-td-lte-in-xt1926-9-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 1.5, + "camera": 5.0, + "battery": 3.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g6-plus-hdtv-dual-sim-lte-a-br-xt1926-8-64gb/index.json b/site/public/v1/smartphones/moto-g6-plus-hdtv-dual-sim-lte-a-br-xt1926-8-64gb/index.json new file mode 100644 index 00000000000..f30c60ced26 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-plus-hdtv-dual-sim-lte-a-br-xt1926-8-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1974, + "slug": "moto-g6-plus-hdtv-dual-sim-lte-a-br-xt1926-8-64gb", + "name": "Moto G6 Plus HDTV Dual SIM LTE-A BR XT1926-8 64GB", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.9, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": 0.0, + "camera": 5.0, + "battery": 3.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.398874", + "updated_at": "2026-06-19T00:43:44.398874" +} diff --git a/site/public/v1/smartphones/moto-g6-plus-hdtv-dual-sim-lte-a-br-xt1926-8-64gb/score/index.json b/site/public/v1/smartphones/moto-g6-plus-hdtv-dual-sim-lte-a-br-xt1926-8-64gb/score/index.json new file mode 100644 index 00000000000..5f5c1ca2192 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-plus-hdtv-dual-sim-lte-a-br-xt1926-8-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": 0.0, + "camera": 5.0, + "battery": 3.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g6-plus-lte-a-latam-xt1926-6-64gb/index.json b/site/public/v1/smartphones/moto-g6-plus-lte-a-latam-xt1926-6-64gb/index.json new file mode 100644 index 00000000000..3d1ecdb08db --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-plus-lte-a-latam-xt1926-6-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1975, + "slug": "moto-g6-plus-lte-a-latam-xt1926-6-64gb", + "name": "Moto G6 Plus LTE-A LATAM XT1926-6 64GB", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2018-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.9, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": 0.0, + "camera": 5.0, + "battery": 3.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.398874", + "updated_at": "2026-06-19T00:43:44.398874" +} diff --git a/site/public/v1/smartphones/moto-g6-plus-lte-a-latam-xt1926-6-64gb/score/index.json b/site/public/v1/smartphones/moto-g6-plus-lte-a-latam-xt1926-6-64gb/score/index.json new file mode 100644 index 00000000000..5f5c1ca2192 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-plus-lte-a-latam-xt1926-6-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": 0.0, + "camera": 5.0, + "battery": 3.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g6-plus-td-lte-emea-xt1926-2-64gb-moto-g-plus-gen-6/index.json b/site/public/v1/smartphones/moto-g6-plus-td-lte-emea-xt1926-2-64gb-moto-g-plus-gen-6/index.json new file mode 100644 index 00000000000..3174937dedf --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-plus-td-lte-emea-xt1926-2-64gb-moto-g-plus-gen-6/index.json @@ -0,0 +1,76 @@ +{ + "id": 1976, + "slug": "moto-g6-plus-td-lte-emea-xt1926-2-64gb-moto-g-plus-gen-6", + "name": "Moto G6 Plus TD-LTE EMEA XT1926-2 64GB / Moto G Plus Gen 6", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.9, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": 0.0, + "camera": 5.0, + "battery": 3.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.398874", + "updated_at": "2026-06-19T00:43:44.398874" +} diff --git a/site/public/v1/smartphones/moto-g6-plus-td-lte-emea-xt1926-2-64gb-moto-g-plus-gen-6/score/index.json b/site/public/v1/smartphones/moto-g6-plus-td-lte-emea-xt1926-2-64gb-moto-g-plus-gen-6/score/index.json new file mode 100644 index 00000000000..5f5c1ca2192 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-plus-td-lte-emea-xt1926-2-64gb-moto-g-plus-gen-6/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": 0.0, + "camera": 5.0, + "battery": 3.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g6-plus-td-lte-na-xt1926-1-64gb/index.json b/site/public/v1/smartphones/moto-g6-plus-td-lte-na-xt1926-1-64gb/index.json new file mode 100644 index 00000000000..8e088e4750d --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-plus-td-lte-na-xt1926-1-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1977, + "slug": "moto-g6-plus-td-lte-na-xt1926-1-64gb", + "name": "Moto G6 Plus TD-LTE NA XT1926-1 64GB", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2018-04-19", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.9, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": 0.0, + "camera": 5.0, + "battery": 3.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.398874", + "updated_at": "2026-06-19T00:43:44.398874" +} diff --git a/site/public/v1/smartphones/moto-g6-plus-td-lte-na-xt1926-1-64gb/score/index.json b/site/public/v1/smartphones/moto-g6-plus-td-lte-na-xt1926-1-64gb/score/index.json new file mode 100644 index 00000000000..5f5c1ca2192 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-plus-td-lte-na-xt1926-1-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": 0.0, + "camera": 5.0, + "battery": 3.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g6-td-lte-emea-32gb-xt1925-4/index.json b/site/public/v1/smartphones/moto-g6-td-lte-emea-32gb-xt1925-4/index.json new file mode 100644 index 00000000000..063c79450a6 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-td-lte-emea-32gb-xt1925-4/index.json @@ -0,0 +1,76 @@ +{ + "id": 1978, + "slug": "moto-g6-td-lte-emea-32gb-xt1925-4", + "name": "Moto G6 TD-LTE EMEA 32GB XT1925-4", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-04-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 47.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.398874", + "updated_at": "2026-06-19T00:43:44.398874" +} diff --git a/site/public/v1/smartphones/moto-g6-td-lte-emea-32gb-xt1925-4/score/index.json b/site/public/v1/smartphones/moto-g6-td-lte-emea-32gb-xt1925-4/score/index.json new file mode 100644 index 00000000000..ef10d3f78b7 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-td-lte-emea-32gb-xt1925-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 47.6, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g6-td-lte-na-32gb-xt1925-12-moto-g-gen-6/index.json b/site/public/v1/smartphones/moto-g6-td-lte-na-32gb-xt1925-12-moto-g-gen-6/index.json new file mode 100644 index 00000000000..aacda406deb --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-td-lte-na-32gb-xt1925-12-moto-g-gen-6/index.json @@ -0,0 +1,76 @@ +{ + "id": 1979, + "slug": "moto-g6-td-lte-na-32gb-xt1925-12-moto-g-gen-6", + "name": "Moto G6 TD-LTE NA 32GB XT1925-12 / Moto G Gen 6", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 47.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.398874", + "updated_at": "2026-06-19T00:43:44.398874" +} diff --git a/site/public/v1/smartphones/moto-g6-td-lte-na-32gb-xt1925-12-moto-g-gen-6/score/index.json b/site/public/v1/smartphones/moto-g6-td-lte-na-32gb-xt1925-12-moto-g-gen-6/score/index.json new file mode 100644 index 00000000000..ef10d3f78b7 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-td-lte-na-32gb-xt1925-12-moto-g-gen-6/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 47.6, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g6-td-lte-na-32gb-xt1925-6-moto-g-gen-6/index.json b/site/public/v1/smartphones/moto-g6-td-lte-na-32gb-xt1925-6-moto-g-gen-6/index.json new file mode 100644 index 00000000000..c86ae840d72 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-td-lte-na-32gb-xt1925-6-moto-g-gen-6/index.json @@ -0,0 +1,76 @@ +{ + "id": 1980, + "slug": "moto-g6-td-lte-na-32gb-xt1925-6-moto-g-gen-6", + "name": "Moto G6 TD-LTE NA 32GB XT1925-6 / Moto G Gen 6", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 47.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.398874", + "updated_at": "2026-06-19T00:43:44.398874" +} diff --git a/site/public/v1/smartphones/moto-g6-td-lte-na-32gb-xt1925-6-moto-g-gen-6/score/index.json b/site/public/v1/smartphones/moto-g6-td-lte-na-32gb-xt1925-6-moto-g-gen-6/score/index.json new file mode 100644 index 00000000000..ef10d3f78b7 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-td-lte-na-32gb-xt1925-6-moto-g-gen-6/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 47.6, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g6-td-lte-na-32gb-xt1925dl/index.json b/site/public/v1/smartphones/moto-g6-td-lte-na-32gb-xt1925dl/index.json new file mode 100644 index 00000000000..d6e9384d701 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-td-lte-na-32gb-xt1925dl/index.json @@ -0,0 +1,76 @@ +{ + "id": 1981, + "slug": "moto-g6-td-lte-na-32gb-xt1925dl", + "name": "Moto G6 TD-LTE NA 32GB XT1925DL", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 47.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.398874", + "updated_at": "2026-06-19T00:43:44.398874" +} diff --git a/site/public/v1/smartphones/moto-g6-td-lte-na-32gb-xt1925dl/score/index.json b/site/public/v1/smartphones/moto-g6-td-lte-na-32gb-xt1925dl/score/index.json new file mode 100644 index 00000000000..ef10d3f78b7 --- /dev/null +++ b/site/public/v1/smartphones/moto-g6-td-lte-na-32gb-xt1925dl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 47.6, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g60s-2021-dual-sim-td-lte-latam-128gb-xt2133-1/index.json b/site/public/v1/smartphones/moto-g60s-2021-dual-sim-td-lte-latam-128gb-xt2133-1/index.json new file mode 100644 index 00000000000..88b849bf121 --- /dev/null +++ b/site/public/v1/smartphones/moto-g60s-2021-dual-sim-td-lte-latam-128gb-xt2133-1/index.json @@ -0,0 +1,77 @@ +{ + "id": 2269, + "slug": "moto-g60s-2021-dual-sim-td-lte-latam-128gb-xt2133-1", + "name": "Moto G60s 2021 Dual SIM TD-LTE LATAM 128GB XT2133-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 64, + "slug": "helio-g95", + "name": "Helio G95", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 3EEMC4", + "url": "/v1/socs/helio-g95" + }, + "release_date": "2021-08-01", + "msrp_usd": 2499, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2460", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 50.0, + "charging_wireless_w": null, + "weight_g": 212.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.0, + "performance": 1.5, + "camera": 21.7, + "battery": 36.7, + "display": 52.1, + "value": 14.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.434874", + "updated_at": "2026-06-19T00:43:44.434874" +} diff --git a/site/public/v1/smartphones/moto-g60s-2021-dual-sim-td-lte-latam-128gb-xt2133-1/score/index.json b/site/public/v1/smartphones/moto-g60s-2021-dual-sim-td-lte-latam-128gb-xt2133-1/score/index.json new file mode 100644 index 00000000000..fa3c2c7d9d0 --- /dev/null +++ b/site/public/v1/smartphones/moto-g60s-2021-dual-sim-td-lte-latam-128gb-xt2133-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.0, + "performance": 1.5, + "camera": 21.7, + "battery": 36.7, + "display": 52.1, + "value": 14.0 +} diff --git a/site/public/v1/smartphones/moto-g60s-2021-global-dual-sim-td-lte-128gb-xt2133-2/index.json b/site/public/v1/smartphones/moto-g60s-2021-global-dual-sim-td-lte-128gb-xt2133-2/index.json new file mode 100644 index 00000000000..68237cdc628 --- /dev/null +++ b/site/public/v1/smartphones/moto-g60s-2021-global-dual-sim-td-lte-128gb-xt2133-2/index.json @@ -0,0 +1,77 @@ +{ + "id": 2270, + "slug": "moto-g60s-2021-global-dual-sim-td-lte-128gb-xt2133-2", + "name": "Moto G60s 2021 Global Dual SIM TD-LTE 128GB XT2133-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 64, + "slug": "helio-g95", + "name": "Helio G95", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 3EEMC4", + "url": "/v1/socs/helio-g95" + }, + "release_date": "2021-08-01", + "msrp_usd": 220, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2460", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 50.0, + "charging_wireless_w": null, + "weight_g": 212.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 0.0, + "camera": 21.7, + "battery": 36.7, + "display": 52.1, + "value": 63.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.435873", + "updated_at": "2026-06-19T00:43:44.435873" +} diff --git a/site/public/v1/smartphones/moto-g60s-2021-global-dual-sim-td-lte-128gb-xt2133-2/score/index.json b/site/public/v1/smartphones/moto-g60s-2021-global-dual-sim-td-lte-128gb-xt2133-2/score/index.json new file mode 100644 index 00000000000..1675732d1e0 --- /dev/null +++ b/site/public/v1/smartphones/moto-g60s-2021-global-dual-sim-td-lte-128gb-xt2133-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 0.0, + "camera": 21.7, + "battery": 36.7, + "display": 52.1, + "value": 63.8 +} diff --git a/site/public/v1/smartphones/moto-g60s-2021-td-lte-latam-128gb-xt2133-1/index.json b/site/public/v1/smartphones/moto-g60s-2021-td-lte-latam-128gb-xt2133-1/index.json new file mode 100644 index 00000000000..7e22b7a5a03 --- /dev/null +++ b/site/public/v1/smartphones/moto-g60s-2021-td-lte-latam-128gb-xt2133-1/index.json @@ -0,0 +1,77 @@ +{ + "id": 2271, + "slug": "moto-g60s-2021-td-lte-latam-128gb-xt2133-1", + "name": "Moto G60s 2021 TD-LTE LATAM 128GB XT2133-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 64, + "slug": "helio-g95", + "name": "Helio G95", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 3EEMC4", + "url": "/v1/socs/helio-g95" + }, + "release_date": "2021-08-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2460", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 50.0, + "charging_wireless_w": null, + "weight_g": 212.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.0, + "performance": 1.5, + "camera": 21.7, + "battery": 36.7, + "display": 52.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.435873", + "updated_at": "2026-06-19T00:43:44.435873" +} diff --git a/site/public/v1/smartphones/moto-g60s-2021-td-lte-latam-128gb-xt2133-1/score/index.json b/site/public/v1/smartphones/moto-g60s-2021-td-lte-latam-128gb-xt2133-1/score/index.json new file mode 100644 index 00000000000..0bae8240c4c --- /dev/null +++ b/site/public/v1/smartphones/moto-g60s-2021-td-lte-latam-128gb-xt2133-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.0, + "performance": 1.5, + "camera": 21.7, + "battery": 36.7, + "display": 52.1, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g62-5g/index.json b/site/public/v1/smartphones/moto-g62-5g/index.json new file mode 100644 index 00000000000..ee4f5ba202f --- /dev/null +++ b/site/public/v1/smartphones/moto-g62-5g/index.json @@ -0,0 +1,71 @@ +{ + "id": 2299, + "slug": "moto-g62-5g", + "name": "Moto G62 5G", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 150, + "slug": "snapdragon-480-plus", + "name": "Snapdragon 480 Plus", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480-plus" + }, + "release_date": "2022-01-01", + "msrp_usd": 349, + "ram_gb": 6, + "storage_options_gb": [ + 128, + 256 + ], + "display": { + "size_inch": 6.5 + }, + "cameras": [ + { + "type": "main", + "mp": 50.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 1.5, + "camera": 17.1, + "battery": 30.0, + "display": null, + "value": 56.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.438874", + "updated_at": "2026-06-19T00:43:44.438874" +} diff --git a/site/public/v1/smartphones/moto-g62-5g/score/index.json b/site/public/v1/smartphones/moto-g62-5g/score/index.json new file mode 100644 index 00000000000..707ecc46371 --- /dev/null +++ b/site/public/v1/smartphones/moto-g62-5g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 1.5, + "camera": 17.1, + "battery": 30.0, + "display": null, + "value": 56.2 +} diff --git a/site/public/v1/smartphones/moto-g7-dual-sim-lte-a-latam-64gb-xt1962-4/index.json b/site/public/v1/smartphones/moto-g7-dual-sim-lte-a-latam-64gb-xt1962-4/index.json new file mode 100644 index 00000000000..aef53259260 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-dual-sim-lte-a-latam-64gb-xt1962-4/index.json @@ -0,0 +1,76 @@ +{ + "id": 2022, + "slug": "moto-g7-dual-sim-lte-a-latam-64gb-xt1962-4", + "name": "Moto G7 Dual SIM LTE-A LATAM 64GB XT1962-4", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-02-08", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2270", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": 0.0, + "camera": 5.0, + "battery": 0.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.403874", + "updated_at": "2026-06-19T00:43:44.403874" +} diff --git a/site/public/v1/smartphones/moto-g7-dual-sim-lte-a-latam-64gb-xt1962-4/score/index.json b/site/public/v1/smartphones/moto-g7-dual-sim-lte-a-latam-64gb-xt1962-4/score/index.json new file mode 100644 index 00000000000..5f754a07d8c --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-dual-sim-lte-a-latam-64gb-xt1962-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": 0.0, + "camera": 5.0, + "battery": 0.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g7-dual-sim-td-lte-in-64gb-xt1962-6/index.json b/site/public/v1/smartphones/moto-g7-dual-sim-td-lte-in-64gb-xt1962-6/index.json new file mode 100644 index 00000000000..007d507729e --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-dual-sim-td-lte-in-64gb-xt1962-6/index.json @@ -0,0 +1,76 @@ +{ + "id": 2023, + "slug": "moto-g7-dual-sim-td-lte-in-64gb-xt1962-6", + "name": "Moto G7 Dual SIM TD-LTE IN 64GB XT1962-6", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-03-26", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2270", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": 0.0, + "camera": 5.0, + "battery": 0.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.403874", + "updated_at": "2026-06-19T00:43:44.403874" +} diff --git a/site/public/v1/smartphones/moto-g7-dual-sim-td-lte-in-64gb-xt1962-6/score/index.json b/site/public/v1/smartphones/moto-g7-dual-sim-td-lte-in-64gb-xt1962-6/score/index.json new file mode 100644 index 00000000000..5f754a07d8c --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-dual-sim-td-lte-in-64gb-xt1962-6/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": 0.0, + "camera": 5.0, + "battery": 0.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g7-global-dual-sim-td-lte-64gb-xt1962-5/index.json b/site/public/v1/smartphones/moto-g7-global-dual-sim-td-lte-64gb-xt1962-5/index.json new file mode 100644 index 00000000000..1be9f56e6e4 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-global-dual-sim-td-lte-64gb-xt1962-5/index.json @@ -0,0 +1,76 @@ +{ + "id": 2024, + "slug": "moto-g7-global-dual-sim-td-lte-64gb-xt1962-5", + "name": "Moto G7 Global Dual SIM TD-LTE 64GB XT1962-5", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-02-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2270", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": 0.0, + "camera": 5.0, + "battery": 0.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.404873", + "updated_at": "2026-06-19T00:43:44.404873" +} diff --git a/site/public/v1/smartphones/moto-g7-global-dual-sim-td-lte-64gb-xt1962-5/score/index.json b/site/public/v1/smartphones/moto-g7-global-dual-sim-td-lte-64gb-xt1962-5/score/index.json new file mode 100644 index 00000000000..5f754a07d8c --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-global-dual-sim-td-lte-64gb-xt1962-5/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": 0.0, + "camera": 5.0, + "battery": 0.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g7-global-td-lte-64gb-xt1962-5/index.json b/site/public/v1/smartphones/moto-g7-global-td-lte-64gb-xt1962-5/index.json new file mode 100644 index 00000000000..3714b2e6faf --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-global-td-lte-64gb-xt1962-5/index.json @@ -0,0 +1,76 @@ +{ + "id": 2025, + "slug": "moto-g7-global-td-lte-64gb-xt1962-5", + "name": "Moto G7 Global TD-LTE 64GB XT1962-5", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-02-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2270", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": 0.0, + "camera": 5.0, + "battery": 0.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.404873", + "updated_at": "2026-06-19T00:43:44.404873" +} diff --git a/site/public/v1/smartphones/moto-g7-global-td-lte-64gb-xt1962-5/score/index.json b/site/public/v1/smartphones/moto-g7-global-td-lte-64gb-xt1962-5/score/index.json new file mode 100644 index 00000000000..5f754a07d8c --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-global-td-lte-64gb-xt1962-5/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": 0.0, + "camera": 5.0, + "battery": 0.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g7-lte-a-latam-64gb-xt1962-4/index.json b/site/public/v1/smartphones/moto-g7-lte-a-latam-64gb-xt1962-4/index.json new file mode 100644 index 00000000000..2ffddc1e1c5 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-lte-a-latam-64gb-xt1962-4/index.json @@ -0,0 +1,76 @@ +{ + "id": 2026, + "slug": "moto-g7-lte-a-latam-64gb-xt1962-4", + "name": "Moto G7 LTE-A LATAM 64GB XT1962-4", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-02-08", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2270", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": 0.0, + "camera": 5.0, + "battery": 0.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.404873", + "updated_at": "2026-06-19T00:43:44.404873" +} diff --git a/site/public/v1/smartphones/moto-g7-lte-a-latam-64gb-xt1962-4/score/index.json b/site/public/v1/smartphones/moto-g7-lte-a-latam-64gb-xt1962-4/score/index.json new file mode 100644 index 00000000000..5f754a07d8c --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-lte-a-latam-64gb-xt1962-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": 0.0, + "camera": 5.0, + "battery": 0.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g7-optimo-maxx-td-lte-us-32gb-xt1955dl/index.json b/site/public/v1/smartphones/moto-g7-optimo-maxx-td-lte-us-32gb-xt1955dl/index.json new file mode 100644 index 00000000000..4b81683ddf0 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-optimo-maxx-td-lte-us-32gb-xt1955dl/index.json @@ -0,0 +1,76 @@ +{ + "id": 2027, + "slug": "moto-g7-optimo-maxx-td-lte-us-32gb-xt1955dl", + "name": "Moto G7 Optimo Maxx TD-LTE US 32GB XT1955DL", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1570", + "type": "Color IPS TFT LCD display", + "ppi": 279 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.404873", + "updated_at": "2026-06-19T00:43:44.404873" +} diff --git a/site/public/v1/smartphones/moto-g7-optimo-maxx-td-lte-us-32gb-xt1955dl/score/index.json b/site/public/v1/smartphones/moto-g7-optimo-maxx-td-lte-us-32gb-xt1955dl/score/index.json new file mode 100644 index 00000000000..3611766e8e8 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-optimo-maxx-td-lte-us-32gb-xt1955dl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g7-optimo-td-lte-us-32gb-xt1952dl/index.json b/site/public/v1/smartphones/moto-g7-optimo-td-lte-us-32gb-xt1952dl/index.json new file mode 100644 index 00000000000..84f8a2e4ee8 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-optimo-td-lte-us-32gb-xt1952dl/index.json @@ -0,0 +1,76 @@ +{ + "id": 2028, + "slug": "moto-g7-optimo-td-lte-us-32gb-xt1952dl", + "name": "Moto G7 Optimo TD-LTE US 32GB XT1952DL", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1512", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.404873", + "updated_at": "2026-06-19T00:43:44.404873" +} diff --git a/site/public/v1/smartphones/moto-g7-optimo-td-lte-us-32gb-xt1952dl/score/index.json b/site/public/v1/smartphones/moto-g7-optimo-td-lte-us-32gb-xt1952dl/score/index.json new file mode 100644 index 00000000000..8dd4f57a73b --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-optimo-td-lte-us-32gb-xt1952dl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g7-play-dual-sim-lte-a-latam-32gb-xt1952-2/index.json b/site/public/v1/smartphones/moto-g7-play-dual-sim-lte-a-latam-32gb-xt1952-2/index.json new file mode 100644 index 00000000000..a7844d6a8da --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-play-dual-sim-lte-a-latam-32gb-xt1952-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 2029, + "slug": "moto-g7-play-dual-sim-lte-a-latam-32gb-xt1952-2", + "name": "Moto G7 Play Dual SIM LTE-A LATAM 32GB XT1952-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-02-08", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1512", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 149.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.404873", + "updated_at": "2026-06-19T00:43:44.404873" +} diff --git a/site/public/v1/smartphones/moto-g7-play-dual-sim-lte-a-latam-32gb-xt1952-2/score/index.json b/site/public/v1/smartphones/moto-g7-play-dual-sim-lte-a-latam-32gb-xt1952-2/score/index.json new file mode 100644 index 00000000000..8dd4f57a73b --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-play-dual-sim-lte-a-latam-32gb-xt1952-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g7-play-global-dual-sim-td-lte-32gb-xt1952-1/index.json b/site/public/v1/smartphones/moto-g7-play-global-dual-sim-td-lte-32gb-xt1952-1/index.json new file mode 100644 index 00000000000..1689c802372 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-play-global-dual-sim-td-lte-32gb-xt1952-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2030, + "slug": "moto-g7-play-global-dual-sim-td-lte-32gb-xt1952-1", + "name": "Moto G7 Play Global Dual SIM TD-LTE 32GB XT1952-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-02-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1512", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 149.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.404873", + "updated_at": "2026-06-19T00:43:44.404873" +} diff --git a/site/public/v1/smartphones/moto-g7-play-global-dual-sim-td-lte-32gb-xt1952-1/score/index.json b/site/public/v1/smartphones/moto-g7-play-global-dual-sim-td-lte-32gb-xt1952-1/score/index.json new file mode 100644 index 00000000000..8dd4f57a73b --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-play-global-dual-sim-td-lte-32gb-xt1952-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g7-play-global-td-lte-32gb-xt1952-1/index.json b/site/public/v1/smartphones/moto-g7-play-global-td-lte-32gb-xt1952-1/index.json new file mode 100644 index 00000000000..8ce5cc5a74b --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-play-global-td-lte-32gb-xt1952-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2031, + "slug": "moto-g7-play-global-td-lte-32gb-xt1952-1", + "name": "Moto G7 Play Global TD-LTE 32GB XT1952-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-02-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1512", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 149.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.404873", + "updated_at": "2026-06-19T00:43:44.404873" +} diff --git a/site/public/v1/smartphones/moto-g7-play-global-td-lte-32gb-xt1952-1/score/index.json b/site/public/v1/smartphones/moto-g7-play-global-td-lte-32gb-xt1952-1/score/index.json new file mode 100644 index 00000000000..8dd4f57a73b --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-play-global-td-lte-32gb-xt1952-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g7-play-lte-a-latam-32gb-xt1952-2/index.json b/site/public/v1/smartphones/moto-g7-play-lte-a-latam-32gb-xt1952-2/index.json new file mode 100644 index 00000000000..47ad5b77785 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-play-lte-a-latam-32gb-xt1952-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 2032, + "slug": "moto-g7-play-lte-a-latam-32gb-xt1952-2", + "name": "Moto G7 Play LTE-A LATAM 32GB XT1952-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-02-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1512", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 149.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.404873", + "updated_at": "2026-06-19T00:43:44.404873" +} diff --git a/site/public/v1/smartphones/moto-g7-play-lte-a-latam-32gb-xt1952-2/score/index.json b/site/public/v1/smartphones/moto-g7-play-lte-a-latam-32gb-xt1952-2/score/index.json new file mode 100644 index 00000000000..8dd4f57a73b --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-play-lte-a-latam-32gb-xt1952-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g7-play-lte-a-us-32gb-xt1952-6/index.json b/site/public/v1/smartphones/moto-g7-play-lte-a-us-32gb-xt1952-6/index.json new file mode 100644 index 00000000000..c61d7cbfda2 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-play-lte-a-us-32gb-xt1952-6/index.json @@ -0,0 +1,76 @@ +{ + "id": 2033, + "slug": "moto-g7-play-lte-a-us-32gb-xt1952-6", + "name": "Moto G7 Play LTE-A US 32GB XT1952-6", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-04-01", + "msrp_usd": 200, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1512", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 55.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.405874", + "updated_at": "2026-06-19T00:43:44.405874" +} diff --git a/site/public/v1/smartphones/moto-g7-play-lte-a-us-32gb-xt1952-6/score/index.json b/site/public/v1/smartphones/moto-g7-play-lte-a-us-32gb-xt1952-6/score/index.json new file mode 100644 index 00000000000..30ce20552f5 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-play-lte-a-us-32gb-xt1952-6/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 55.0 +} diff --git a/site/public/v1/smartphones/moto-g7-play-td-lte-na-32gb-xt1952-3-xt1952-4/index.json b/site/public/v1/smartphones/moto-g7-play-td-lte-na-32gb-xt1952-3-xt1952-4/index.json new file mode 100644 index 00000000000..5c39dd6de9f --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-play-td-lte-na-32gb-xt1952-3-xt1952-4/index.json @@ -0,0 +1,76 @@ +{ + "id": 2034, + "slug": "moto-g7-play-td-lte-na-32gb-xt1952-3-xt1952-4", + "name": "Moto G7 Play TD-LTE NA 32GB XT1952-3 / XT1952-4", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-04-06", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1512", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.405874", + "updated_at": "2026-06-19T00:43:44.405874" +} diff --git a/site/public/v1/smartphones/moto-g7-play-td-lte-na-32gb-xt1952-3-xt1952-4/score/index.json b/site/public/v1/smartphones/moto-g7-play-td-lte-na-32gb-xt1952-3-xt1952-4/score/index.json new file mode 100644 index 00000000000..8dd4f57a73b --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-play-td-lte-na-32gb-xt1952-3-xt1952-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g7-play-td-lte-us-32gb-xt1952-5/index.json b/site/public/v1/smartphones/moto-g7-play-td-lte-us-32gb-xt1952-5/index.json new file mode 100644 index 00000000000..541d90e120d --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-play-td-lte-us-32gb-xt1952-5/index.json @@ -0,0 +1,76 @@ +{ + "id": 2035, + "slug": "moto-g7-play-td-lte-us-32gb-xt1952-5", + "name": "Moto G7 Play TD-LTE US 32GB XT1952-5", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-04-01", + "msrp_usd": 200, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1512", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 55.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.405874", + "updated_at": "2026-06-19T00:43:44.405874" +} diff --git a/site/public/v1/smartphones/moto-g7-play-td-lte-us-32gb-xt1952-5/score/index.json b/site/public/v1/smartphones/moto-g7-play-td-lte-us-32gb-xt1952-5/score/index.json new file mode 100644 index 00000000000..30ce20552f5 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-play-td-lte-us-32gb-xt1952-5/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 55.0 +} diff --git a/site/public/v1/smartphones/moto-g7-plus-dual-sim-lte-a-latam-64gb-xt1965-2/index.json b/site/public/v1/smartphones/moto-g7-plus-dual-sim-lte-a-latam-64gb-xt1965-2/index.json new file mode 100644 index 00000000000..72455953998 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-plus-dual-sim-lte-a-latam-64gb-xt1965-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 2036, + "slug": "moto-g7-plus-dual-sim-lte-a-latam-64gb-xt1965-2", + "name": "Moto G7 Plus Dual SIM LTE-A LATAM 64GB XT1965-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2019-02-12", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2270", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.9, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.405874", + "updated_at": "2026-06-19T00:43:44.405874" +} diff --git a/site/public/v1/smartphones/moto-g7-plus-dual-sim-lte-a-latam-64gb-xt1965-2/score/index.json b/site/public/v1/smartphones/moto-g7-plus-dual-sim-lte-a-latam-64gb-xt1965-2/score/index.json new file mode 100644 index 00000000000..1bd9d065cb7 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-plus-dual-sim-lte-a-latam-64gb-xt1965-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.9, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g7-plus-dual-sim-td-lte-cn-64gb-xt1965-6/index.json b/site/public/v1/smartphones/moto-g7-plus-dual-sim-td-lte-cn-64gb-xt1965-6/index.json new file mode 100644 index 00000000000..ac5c4d8f8f8 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-plus-dual-sim-td-lte-cn-64gb-xt1965-6/index.json @@ -0,0 +1,76 @@ +{ + "id": 2037, + "slug": "moto-g7-plus-dual-sim-td-lte-cn-64gb-xt1965-6", + "name": "Moto G7 Plus Dual SIM TD-LTE CN 64GB XT1965-6", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2019-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2270", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.9, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.405874", + "updated_at": "2026-06-19T00:43:44.405874" +} diff --git a/site/public/v1/smartphones/moto-g7-plus-dual-sim-td-lte-cn-64gb-xt1965-6/score/index.json b/site/public/v1/smartphones/moto-g7-plus-dual-sim-td-lte-cn-64gb-xt1965-6/score/index.json new file mode 100644 index 00000000000..1bd9d065cb7 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-plus-dual-sim-td-lte-cn-64gb-xt1965-6/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.9, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g7-plus-global-dual-sim-td-lte-64gb-xt1965-3/index.json b/site/public/v1/smartphones/moto-g7-plus-global-dual-sim-td-lte-64gb-xt1965-3/index.json new file mode 100644 index 00000000000..7c5d9d9741d --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-plus-global-dual-sim-td-lte-64gb-xt1965-3/index.json @@ -0,0 +1,76 @@ +{ + "id": 2038, + "slug": "moto-g7-plus-global-dual-sim-td-lte-64gb-xt1965-3", + "name": "Moto G7 Plus Global Dual SIM TD-LTE 64GB XT1965-3", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2019-02-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2270", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.9, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.405874", + "updated_at": "2026-06-19T00:43:44.405874" +} diff --git a/site/public/v1/smartphones/moto-g7-plus-global-dual-sim-td-lte-64gb-xt1965-3/score/index.json b/site/public/v1/smartphones/moto-g7-plus-global-dual-sim-td-lte-64gb-xt1965-3/score/index.json new file mode 100644 index 00000000000..1bd9d065cb7 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-plus-global-dual-sim-td-lte-64gb-xt1965-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.9, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g7-plus-global-td-lte-64gb-xt1965-3/index.json b/site/public/v1/smartphones/moto-g7-plus-global-td-lte-64gb-xt1965-3/index.json new file mode 100644 index 00000000000..ebd95ebaaf5 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-plus-global-td-lte-64gb-xt1965-3/index.json @@ -0,0 +1,76 @@ +{ + "id": 2039, + "slug": "moto-g7-plus-global-td-lte-64gb-xt1965-3", + "name": "Moto G7 Plus Global TD-LTE 64GB XT1965-3", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2019-02-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2270", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.9, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.405874", + "updated_at": "2026-06-19T00:43:44.405874" +} diff --git a/site/public/v1/smartphones/moto-g7-plus-global-td-lte-64gb-xt1965-3/score/index.json b/site/public/v1/smartphones/moto-g7-plus-global-td-lte-64gb-xt1965-3/score/index.json new file mode 100644 index 00000000000..1bd9d065cb7 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-plus-global-td-lte-64gb-xt1965-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.9, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g7-plus-lte-a-latam-64gb-xt1965-2/index.json b/site/public/v1/smartphones/moto-g7-plus-lte-a-latam-64gb-xt1965-2/index.json new file mode 100644 index 00000000000..e3fa493ad36 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-plus-lte-a-latam-64gb-xt1965-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 2040, + "slug": "moto-g7-plus-lte-a-latam-64gb-xt1965-2", + "name": "Moto G7 Plus LTE-A LATAM 64GB XT1965-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2019-02-12", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2270", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.9, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.406874", + "updated_at": "2026-06-19T00:43:44.406874" +} diff --git a/site/public/v1/smartphones/moto-g7-plus-lte-a-latam-64gb-xt1965-2/score/index.json b/site/public/v1/smartphones/moto-g7-plus-lte-a-latam-64gb-xt1965-2/score/index.json new file mode 100644 index 00000000000..1bd9d065cb7 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-plus-lte-a-latam-64gb-xt1965-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.9, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g7-power-dtv-dual-sim-lte-a-br-32gb-xt1955-1/index.json b/site/public/v1/smartphones/moto-g7-power-dtv-dual-sim-lte-a-br-32gb-xt1955-1/index.json new file mode 100644 index 00000000000..7a707cf5eb9 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-power-dtv-dual-sim-lte-a-br-32gb-xt1955-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2041, + "slug": "moto-g7-power-dtv-dual-sim-lte-a-br-32gb-xt1955-1", + "name": "Moto G7 Power DTV Dual SIM LTE-A BR 32GB XT1955-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-02-08", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1570", + "type": "Color IPS TFT LCD display", + "ppi": 279 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.406874", + "updated_at": "2026-06-19T00:43:44.406874" +} diff --git a/site/public/v1/smartphones/moto-g7-power-dtv-dual-sim-lte-a-br-32gb-xt1955-1/score/index.json b/site/public/v1/smartphones/moto-g7-power-dtv-dual-sim-lte-a-br-32gb-xt1955-1/score/index.json new file mode 100644 index 00000000000..3611766e8e8 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-power-dtv-dual-sim-lte-a-br-32gb-xt1955-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g7-power-dual-sim-lte-a-latam-64gb-xt1955-2/index.json b/site/public/v1/smartphones/moto-g7-power-dual-sim-lte-a-latam-64gb-xt1955-2/index.json new file mode 100644 index 00000000000..03220df676f --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-power-dual-sim-lte-a-latam-64gb-xt1955-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 2042, + "slug": "moto-g7-power-dual-sim-lte-a-latam-64gb-xt1955-2", + "name": "Moto G7 Power Dual SIM LTE-A LATAM 64GB XT1955-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-02-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1570", + "type": "Color IPS TFT LCD display", + "ppi": 279 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.406874", + "updated_at": "2026-06-19T00:43:44.406874" +} diff --git a/site/public/v1/smartphones/moto-g7-power-dual-sim-lte-a-latam-64gb-xt1955-2/score/index.json b/site/public/v1/smartphones/moto-g7-power-dual-sim-lte-a-latam-64gb-xt1955-2/score/index.json new file mode 100644 index 00000000000..3611766e8e8 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-power-dual-sim-lte-a-latam-64gb-xt1955-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g7-power-global-dual-sim-td-lte-64gb-xt1955-4/index.json b/site/public/v1/smartphones/moto-g7-power-global-dual-sim-td-lte-64gb-xt1955-4/index.json new file mode 100644 index 00000000000..5cbf020caa0 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-power-global-dual-sim-td-lte-64gb-xt1955-4/index.json @@ -0,0 +1,76 @@ +{ + "id": 2043, + "slug": "moto-g7-power-global-dual-sim-td-lte-64gb-xt1955-4", + "name": "Moto G7 Power Global Dual SIM TD-LTE 64GB XT1955-4", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-02-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1570", + "type": "Color IPS TFT LCD display", + "ppi": 279 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.406874", + "updated_at": "2026-06-19T00:43:44.406874" +} diff --git a/site/public/v1/smartphones/moto-g7-power-global-dual-sim-td-lte-64gb-xt1955-4/score/index.json b/site/public/v1/smartphones/moto-g7-power-global-dual-sim-td-lte-64gb-xt1955-4/score/index.json new file mode 100644 index 00000000000..3611766e8e8 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-power-global-dual-sim-td-lte-64gb-xt1955-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g7-power-global-dual-sim-td-lte-64gb-xt1955-7/index.json b/site/public/v1/smartphones/moto-g7-power-global-dual-sim-td-lte-64gb-xt1955-7/index.json new file mode 100644 index 00000000000..7f24defecc5 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-power-global-dual-sim-td-lte-64gb-xt1955-7/index.json @@ -0,0 +1,76 @@ +{ + "id": 2044, + "slug": "moto-g7-power-global-dual-sim-td-lte-64gb-xt1955-7", + "name": "Moto G7 Power Global Dual SIM TD-LTE 64GB XT1955-7", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-02-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1570", + "type": "Color IPS TFT LCD display", + "ppi": 279 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.406874", + "updated_at": "2026-06-19T00:43:44.406874" +} diff --git a/site/public/v1/smartphones/moto-g7-power-global-dual-sim-td-lte-64gb-xt1955-7/score/index.json b/site/public/v1/smartphones/moto-g7-power-global-dual-sim-td-lte-64gb-xt1955-7/score/index.json new file mode 100644 index 00000000000..3611766e8e8 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-power-global-dual-sim-td-lte-64gb-xt1955-7/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g7-power-global-td-lte-64gb-xt1955-4/index.json b/site/public/v1/smartphones/moto-g7-power-global-td-lte-64gb-xt1955-4/index.json new file mode 100644 index 00000000000..dacaf771442 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-power-global-td-lte-64gb-xt1955-4/index.json @@ -0,0 +1,76 @@ +{ + "id": 2045, + "slug": "moto-g7-power-global-td-lte-64gb-xt1955-4", + "name": "Moto G7 Power Global TD-LTE 64GB XT1955-4", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-02-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1570", + "type": "Color IPS TFT LCD display", + "ppi": 279 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.406874", + "updated_at": "2026-06-19T00:43:44.406874" +} diff --git a/site/public/v1/smartphones/moto-g7-power-global-td-lte-64gb-xt1955-4/score/index.json b/site/public/v1/smartphones/moto-g7-power-global-td-lte-64gb-xt1955-4/score/index.json new file mode 100644 index 00000000000..3611766e8e8 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-power-global-td-lte-64gb-xt1955-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g7-power-global-td-lte-64gb-xt1955-7/index.json b/site/public/v1/smartphones/moto-g7-power-global-td-lte-64gb-xt1955-7/index.json new file mode 100644 index 00000000000..f1da47af147 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-power-global-td-lte-64gb-xt1955-7/index.json @@ -0,0 +1,76 @@ +{ + "id": 2046, + "slug": "moto-g7-power-global-td-lte-64gb-xt1955-7", + "name": "Moto G7 Power Global TD-LTE 64GB XT1955-7", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-02-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1570", + "type": "Color IPS TFT LCD display", + "ppi": 279 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.406874", + "updated_at": "2026-06-19T00:43:44.406874" +} diff --git a/site/public/v1/smartphones/moto-g7-power-global-td-lte-64gb-xt1955-7/score/index.json b/site/public/v1/smartphones/moto-g7-power-global-td-lte-64gb-xt1955-7/score/index.json new file mode 100644 index 00000000000..3611766e8e8 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-power-global-td-lte-64gb-xt1955-7/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g7-power-lte-a-latam-64gb-xt1955-2/index.json b/site/public/v1/smartphones/moto-g7-power-lte-a-latam-64gb-xt1955-2/index.json new file mode 100644 index 00000000000..aa4e4e070d6 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-power-lte-a-latam-64gb-xt1955-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 2047, + "slug": "moto-g7-power-lte-a-latam-64gb-xt1955-2", + "name": "Moto G7 Power LTE-A LATAM 64GB XT1955-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-02-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1570", + "type": "Color IPS TFT LCD display", + "ppi": 279 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.406874", + "updated_at": "2026-06-19T00:43:44.406874" +} diff --git a/site/public/v1/smartphones/moto-g7-power-lte-a-latam-64gb-xt1955-2/score/index.json b/site/public/v1/smartphones/moto-g7-power-lte-a-latam-64gb-xt1955-2/score/index.json new file mode 100644 index 00000000000..3611766e8e8 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-power-lte-a-latam-64gb-xt1955-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g7-power-td-lte-na-32gb-xt1955-5-xt1955-6/index.json b/site/public/v1/smartphones/moto-g7-power-td-lte-na-32gb-xt1955-5-xt1955-6/index.json new file mode 100644 index 00000000000..e24b2353682 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-power-td-lte-na-32gb-xt1955-5-xt1955-6/index.json @@ -0,0 +1,76 @@ +{ + "id": 2048, + "slug": "moto-g7-power-td-lte-na-32gb-xt1955-5-xt1955-6", + "name": "Moto G7 Power TD-LTE NA 32GB XT1955-5 / XT1955-6", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-03-22", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1570", + "type": "Color IPS TFT LCD display", + "ppi": 279 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.407874", + "updated_at": "2026-06-19T00:43:44.407874" +} diff --git a/site/public/v1/smartphones/moto-g7-power-td-lte-na-32gb-xt1955-5-xt1955-6/score/index.json b/site/public/v1/smartphones/moto-g7-power-td-lte-na-32gb-xt1955-5-xt1955-6/score/index.json new file mode 100644 index 00000000000..3611766e8e8 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-power-td-lte-na-32gb-xt1955-5-xt1955-6/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g7-td-lte-na-64gb-xt1962-1/index.json b/site/public/v1/smartphones/moto-g7-td-lte-na-64gb-xt1962-1/index.json new file mode 100644 index 00000000000..776b1d864a0 --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-td-lte-na-64gb-xt1962-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2049, + "slug": "moto-g7-td-lte-na-64gb-xt1962-1", + "name": "Moto G7 TD-LTE NA 64GB XT1962-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-02-27", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2270", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": 0.0, + "camera": 5.0, + "battery": 0.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.407874", + "updated_at": "2026-06-19T00:43:44.407874" +} diff --git a/site/public/v1/smartphones/moto-g7-td-lte-na-64gb-xt1962-1/score/index.json b/site/public/v1/smartphones/moto-g7-td-lte-na-64gb-xt1962-1/score/index.json new file mode 100644 index 00000000000..5f754a07d8c --- /dev/null +++ b/site/public/v1/smartphones/moto-g7-td-lte-na-64gb-xt1962-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": 0.0, + "camera": 5.0, + "battery": 0.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g8-dual-sim-lte-a-latam-xt2045-1/index.json b/site/public/v1/smartphones/moto-g8-dual-sim-lte-a-latam-xt2045-1/index.json new file mode 100644 index 00000000000..7bdb4c0cbe1 --- /dev/null +++ b/site/public/v1/smartphones/moto-g8-dual-sim-lte-a-latam-xt2045-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2125, + "slug": "moto-g8-dual-sim-lte-a-latam-xt2045-1", + "name": "Moto G8 Dual SIM LTE-A LATAM XT2045-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 188.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.416874", + "updated_at": "2026-06-19T00:43:44.416874" +} diff --git a/site/public/v1/smartphones/moto-g8-dual-sim-lte-a-latam-xt2045-1/score/index.json b/site/public/v1/smartphones/moto-g8-dual-sim-lte-a-latam-xt2045-1/score/index.json new file mode 100644 index 00000000000..82b598c31b6 --- /dev/null +++ b/site/public/v1/smartphones/moto-g8-dual-sim-lte-a-latam-xt2045-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g8-dual-sim-td-lte-apac-xt2045-6/index.json b/site/public/v1/smartphones/moto-g8-dual-sim-td-lte-apac-xt2045-6/index.json new file mode 100644 index 00000000000..b9eb3370cec --- /dev/null +++ b/site/public/v1/smartphones/moto-g8-dual-sim-td-lte-apac-xt2045-6/index.json @@ -0,0 +1,76 @@ +{ + "id": 2126, + "slug": "moto-g8-dual-sim-td-lte-apac-xt2045-6", + "name": "Moto G8 Dual SIM TD-LTE APAC XT2045-6", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-04-28", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 188.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.417874", + "updated_at": "2026-06-19T00:43:44.417874" +} diff --git a/site/public/v1/smartphones/moto-g8-dual-sim-td-lte-apac-xt2045-6/score/index.json b/site/public/v1/smartphones/moto-g8-dual-sim-td-lte-apac-xt2045-6/score/index.json new file mode 100644 index 00000000000..82b598c31b6 --- /dev/null +++ b/site/public/v1/smartphones/moto-g8-dual-sim-td-lte-apac-xt2045-6/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g8-dual-sim-td-lte-emea-xt2045-2/index.json b/site/public/v1/smartphones/moto-g8-dual-sim-td-lte-emea-xt2045-2/index.json new file mode 100644 index 00000000000..70ad8d3b592 --- /dev/null +++ b/site/public/v1/smartphones/moto-g8-dual-sim-td-lte-emea-xt2045-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 2127, + "slug": "moto-g8-dual-sim-td-lte-emea-xt2045-2", + "name": "Moto G8 Dual SIM TD-LTE EMEA XT2045-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 188.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.417874", + "updated_at": "2026-06-19T00:43:44.417874" +} diff --git a/site/public/v1/smartphones/moto-g8-dual-sim-td-lte-emea-xt2045-2/score/index.json b/site/public/v1/smartphones/moto-g8-dual-sim-td-lte-emea-xt2045-2/score/index.json new file mode 100644 index 00000000000..82b598c31b6 --- /dev/null +++ b/site/public/v1/smartphones/moto-g8-dual-sim-td-lte-emea-xt2045-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g8-lte-a-latam-xt2045-1/index.json b/site/public/v1/smartphones/moto-g8-lte-a-latam-xt2045-1/index.json new file mode 100644 index 00000000000..c2c4c3e21ef --- /dev/null +++ b/site/public/v1/smartphones/moto-g8-lte-a-latam-xt2045-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2128, + "slug": "moto-g8-lte-a-latam-xt2045-1", + "name": "Moto G8 LTE-A LATAM XT2045-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 188.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.417874", + "updated_at": "2026-06-19T00:43:44.417874" +} diff --git a/site/public/v1/smartphones/moto-g8-lte-a-latam-xt2045-1/score/index.json b/site/public/v1/smartphones/moto-g8-lte-a-latam-xt2045-1/score/index.json new file mode 100644 index 00000000000..82b598c31b6 --- /dev/null +++ b/site/public/v1/smartphones/moto-g8-lte-a-latam-xt2045-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g8-optimo-maxx-td-lte-us-xt2041dl-g8-power/index.json b/site/public/v1/smartphones/moto-g8-optimo-maxx-td-lte-us-xt2041dl-g8-power/index.json new file mode 100644 index 00000000000..a28da08288c --- /dev/null +++ b/site/public/v1/smartphones/moto-g8-optimo-maxx-td-lte-us-xt2041dl-g8-power/index.json @@ -0,0 +1,74 @@ +{ + "id": 2129, + "slug": "moto-g8-optimo-maxx-td-lte-us-xt2041dl-g8-power", + "name": "Moto G8 Optimo Maxx TD-LTE US XT2041DL / G8 Power", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [], + "display": { + "size_inch": 6.4, + "resolution": "1080x2300", + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 44.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.417874", + "updated_at": "2026-06-19T00:43:44.417874" +} diff --git a/site/public/v1/smartphones/moto-g8-optimo-maxx-td-lte-us-xt2041dl-g8-power/score/index.json b/site/public/v1/smartphones/moto-g8-optimo-maxx-td-lte-us-xt2041dl-g8-power/score/index.json new file mode 100644 index 00000000000..4cc1cf66c28 --- /dev/null +++ b/site/public/v1/smartphones/moto-g8-optimo-maxx-td-lte-us-xt2041dl-g8-power/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 44.7, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g8-play-dual-sim-lte-a-latam-xt2015-2/index.json b/site/public/v1/smartphones/moto-g8-play-dual-sim-lte-a-latam-xt2015-2/index.json new file mode 100644 index 00000000000..e1ad6a93690 --- /dev/null +++ b/site/public/v1/smartphones/moto-g8-play-dual-sim-lte-a-latam-xt2015-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 2050, + "slug": "moto-g8-play-dual-sim-lte-a-latam-xt2015-2", + "name": "Moto G8 Play Dual SIM LTE-A LATAM XT2015-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-10-24", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 183.6, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.0, + "performance": 0.0, + "camera": 5.3, + "battery": 15.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.407874", + "updated_at": "2026-06-19T00:43:44.407874" +} diff --git a/site/public/v1/smartphones/moto-g8-play-dual-sim-lte-a-latam-xt2015-2/score/index.json b/site/public/v1/smartphones/moto-g8-play-dual-sim-lte-a-latam-xt2015-2/score/index.json new file mode 100644 index 00000000000..264d6289562 --- /dev/null +++ b/site/public/v1/smartphones/moto-g8-play-dual-sim-lte-a-latam-xt2015-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.0, + "performance": 0.0, + "camera": 5.3, + "battery": 15.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g8-play-lte-a-latam-xt2015-2/index.json b/site/public/v1/smartphones/moto-g8-play-lte-a-latam-xt2015-2/index.json new file mode 100644 index 00000000000..4b8defb0694 --- /dev/null +++ b/site/public/v1/smartphones/moto-g8-play-lte-a-latam-xt2015-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 2051, + "slug": "moto-g8-play-lte-a-latam-xt2015-2", + "name": "Moto G8 Play LTE-A LATAM XT2015-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-10-24", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 183.6, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.0, + "performance": 0.0, + "camera": 5.3, + "battery": 15.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.407874", + "updated_at": "2026-06-19T00:43:44.407874" +} diff --git a/site/public/v1/smartphones/moto-g8-play-lte-a-latam-xt2015-2/score/index.json b/site/public/v1/smartphones/moto-g8-play-lte-a-latam-xt2015-2/score/index.json new file mode 100644 index 00000000000..264d6289562 --- /dev/null +++ b/site/public/v1/smartphones/moto-g8-play-lte-a-latam-xt2015-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.0, + "performance": 0.0, + "camera": 5.3, + "battery": 15.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g8-plus-dual-sim-lte-a-latam-xt2019-2/index.json b/site/public/v1/smartphones/moto-g8-plus-dual-sim-lte-a-latam-xt2019-2/index.json new file mode 100644 index 00000000000..872ebbd2bb1 --- /dev/null +++ b/site/public/v1/smartphones/moto-g8-plus-dual-sim-lte-a-latam-xt2019-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 2053, + "slug": "moto-g8-plus-dual-sim-lte-a-latam-xt2019-2", + "name": "Moto G8 Plus Dual SIM LTE-A LATAM XT2019-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 0.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.407874", + "updated_at": "2026-06-19T00:43:44.407874" +} diff --git a/site/public/v1/smartphones/moto-g8-plus-dual-sim-lte-a-latam-xt2019-2/score/index.json b/site/public/v1/smartphones/moto-g8-plus-dual-sim-lte-a-latam-xt2019-2/score/index.json new file mode 100644 index 00000000000..413627a1b19 --- /dev/null +++ b/site/public/v1/smartphones/moto-g8-plus-dual-sim-lte-a-latam-xt2019-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 0.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g8-plus-global-dual-sim-td-lte-xt2019-1-one-vision-plus/index.json b/site/public/v1/smartphones/moto-g8-plus-global-dual-sim-td-lte-xt2019-1-one-vision-plus/index.json new file mode 100644 index 00000000000..03e8b68cf0b --- /dev/null +++ b/site/public/v1/smartphones/moto-g8-plus-global-dual-sim-td-lte-xt2019-1-one-vision-plus/index.json @@ -0,0 +1,76 @@ +{ + "id": 2054, + "slug": "moto-g8-plus-global-dual-sim-td-lte-xt2019-1-one-vision-plus", + "name": "Moto G8 Plus Global Dual SIM TD-LTE XT2019-1 / One Vision Plus", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 0.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.407874", + "updated_at": "2026-06-19T00:43:44.407874" +} diff --git a/site/public/v1/smartphones/moto-g8-plus-global-dual-sim-td-lte-xt2019-1-one-vision-plus/score/index.json b/site/public/v1/smartphones/moto-g8-plus-global-dual-sim-td-lte-xt2019-1-one-vision-plus/score/index.json new file mode 100644 index 00000000000..413627a1b19 --- /dev/null +++ b/site/public/v1/smartphones/moto-g8-plus-global-dual-sim-td-lte-xt2019-1-one-vision-plus/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 0.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g8-plus-global-td-lte-xt2019-1/index.json b/site/public/v1/smartphones/moto-g8-plus-global-td-lte-xt2019-1/index.json new file mode 100644 index 00000000000..5133eb49265 --- /dev/null +++ b/site/public/v1/smartphones/moto-g8-plus-global-td-lte-xt2019-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2055, + "slug": "moto-g8-plus-global-td-lte-xt2019-1", + "name": "Moto G8 Plus Global TD-LTE XT2019-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 0.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.408874", + "updated_at": "2026-06-19T00:43:44.408874" +} diff --git a/site/public/v1/smartphones/moto-g8-plus-global-td-lte-xt2019-1/score/index.json b/site/public/v1/smartphones/moto-g8-plus-global-td-lte-xt2019-1/score/index.json new file mode 100644 index 00000000000..413627a1b19 --- /dev/null +++ b/site/public/v1/smartphones/moto-g8-plus-global-td-lte-xt2019-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 0.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g8-plus-lte-a-latam-xt2019-2/index.json b/site/public/v1/smartphones/moto-g8-plus-lte-a-latam-xt2019-2/index.json new file mode 100644 index 00000000000..9d314e43e2e --- /dev/null +++ b/site/public/v1/smartphones/moto-g8-plus-lte-a-latam-xt2019-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 2056, + "slug": "moto-g8-plus-lte-a-latam-xt2019-2", + "name": "Moto G8 Plus LTE-A LATAM XT2019-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 0.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.408874", + "updated_at": "2026-06-19T00:43:44.408874" +} diff --git a/site/public/v1/smartphones/moto-g8-plus-lte-a-latam-xt2019-2/score/index.json b/site/public/v1/smartphones/moto-g8-plus-lte-a-latam-xt2019-2/score/index.json new file mode 100644 index 00000000000..413627a1b19 --- /dev/null +++ b/site/public/v1/smartphones/moto-g8-plus-lte-a-latam-xt2019-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 0.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g8-power-dual-sim-lte-a-latam-xt2041-1/index.json b/site/public/v1/smartphones/moto-g8-power-dual-sim-lte-a-latam-xt2041-1/index.json new file mode 100644 index 00000000000..996c8f9d7c6 --- /dev/null +++ b/site/public/v1/smartphones/moto-g8-power-dual-sim-lte-a-latam-xt2041-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2130, + "slug": "moto-g8-power-dual-sim-lte-a-latam-xt2041-1", + "name": "Moto G8 Power Dual SIM LTE-A LATAM XT2041-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2300", + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 44.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.417874", + "updated_at": "2026-06-19T00:43:44.417874" +} diff --git a/site/public/v1/smartphones/moto-g8-power-dual-sim-lte-a-latam-xt2041-1/score/index.json b/site/public/v1/smartphones/moto-g8-power-dual-sim-lte-a-latam-xt2041-1/score/index.json new file mode 100644 index 00000000000..d8c546e23fd --- /dev/null +++ b/site/public/v1/smartphones/moto-g8-power-dual-sim-lte-a-latam-xt2041-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 44.7, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g8-power-global-dual-sim-td-lte-xt2041-3/index.json b/site/public/v1/smartphones/moto-g8-power-global-dual-sim-td-lte-xt2041-3/index.json new file mode 100644 index 00000000000..947f41fdf54 --- /dev/null +++ b/site/public/v1/smartphones/moto-g8-power-global-dual-sim-td-lte-xt2041-3/index.json @@ -0,0 +1,76 @@ +{ + "id": 2131, + "slug": "moto-g8-power-global-dual-sim-td-lte-xt2041-3", + "name": "Moto G8 Power Global Dual SIM TD-LTE XT2041-3", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2300", + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 44.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.417874", + "updated_at": "2026-06-19T00:43:44.417874" +} diff --git a/site/public/v1/smartphones/moto-g8-power-global-dual-sim-td-lte-xt2041-3/score/index.json b/site/public/v1/smartphones/moto-g8-power-global-dual-sim-td-lte-xt2041-3/score/index.json new file mode 100644 index 00000000000..d8c546e23fd --- /dev/null +++ b/site/public/v1/smartphones/moto-g8-power-global-dual-sim-td-lte-xt2041-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 44.7, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g8-power-global-td-lte-xt2041-3/index.json b/site/public/v1/smartphones/moto-g8-power-global-td-lte-xt2041-3/index.json new file mode 100644 index 00000000000..f2df98e7d34 --- /dev/null +++ b/site/public/v1/smartphones/moto-g8-power-global-td-lte-xt2041-3/index.json @@ -0,0 +1,76 @@ +{ + "id": 2132, + "slug": "moto-g8-power-global-td-lte-xt2041-3", + "name": "Moto G8 Power Global TD-LTE XT2041-3", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2300", + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 44.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.418874", + "updated_at": "2026-06-19T00:43:44.418874" +} diff --git a/site/public/v1/smartphones/moto-g8-power-global-td-lte-xt2041-3/score/index.json b/site/public/v1/smartphones/moto-g8-power-global-td-lte-xt2041-3/score/index.json new file mode 100644 index 00000000000..d8c546e23fd --- /dev/null +++ b/site/public/v1/smartphones/moto-g8-power-global-td-lte-xt2041-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 44.7, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g8-power-lte-a-latam-xt2041-1/index.json b/site/public/v1/smartphones/moto-g8-power-lte-a-latam-xt2041-1/index.json new file mode 100644 index 00000000000..69a2420f40b --- /dev/null +++ b/site/public/v1/smartphones/moto-g8-power-lte-a-latam-xt2041-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2133, + "slug": "moto-g8-power-lte-a-latam-xt2041-1", + "name": "Moto G8 Power LTE-A LATAM XT2041-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2300", + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 44.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.418874", + "updated_at": "2026-06-19T00:43:44.418874" +} diff --git a/site/public/v1/smartphones/moto-g8-power-lte-a-latam-xt2041-1/score/index.json b/site/public/v1/smartphones/moto-g8-power-lte-a-latam-xt2041-1/score/index.json new file mode 100644 index 00000000000..d8c546e23fd --- /dev/null +++ b/site/public/v1/smartphones/moto-g8-power-lte-a-latam-xt2041-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 44.7, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g8-td-lte-apac-xt2045-6/index.json b/site/public/v1/smartphones/moto-g8-td-lte-apac-xt2045-6/index.json new file mode 100644 index 00000000000..6ea2be0d7ed --- /dev/null +++ b/site/public/v1/smartphones/moto-g8-td-lte-apac-xt2045-6/index.json @@ -0,0 +1,76 @@ +{ + "id": 2134, + "slug": "moto-g8-td-lte-apac-xt2045-6", + "name": "Moto G8 TD-LTE APAC XT2045-6", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-04-28", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 188.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.418874", + "updated_at": "2026-06-19T00:43:44.418874" +} diff --git a/site/public/v1/smartphones/moto-g8-td-lte-apac-xt2045-6/score/index.json b/site/public/v1/smartphones/moto-g8-td-lte-apac-xt2045-6/score/index.json new file mode 100644 index 00000000000..82b598c31b6 --- /dev/null +++ b/site/public/v1/smartphones/moto-g8-td-lte-apac-xt2045-6/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g82-5g/index.json b/site/public/v1/smartphones/moto-g82-5g/index.json new file mode 100644 index 00000000000..442268cddb5 --- /dev/null +++ b/site/public/v1/smartphones/moto-g82-5g/index.json @@ -0,0 +1,71 @@ +{ + "id": 2303, + "slug": "moto-g82-5g", + "name": "Moto G82 5G", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 153, + "slug": "snapdragon-695", + "name": "Snapdragon 695 5G", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 6.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-695" + }, + "release_date": "2022-01-01", + "msrp_usd": 399, + "ram_gb": 8, + "storage_options_gb": [ + 128, + 256 + ], + "display": { + "size_inch": 6.6 + }, + "cameras": [ + { + "type": "main", + "mp": 50.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 3.0, + "camera": 17.1, + "battery": 35.0, + "display": null, + "value": 55.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.439874", + "updated_at": "2026-06-19T00:43:44.439874" +} diff --git a/site/public/v1/smartphones/moto-g82-5g/score/index.json b/site/public/v1/smartphones/moto-g82-5g/score/index.json new file mode 100644 index 00000000000..f988f5ad512 --- /dev/null +++ b/site/public/v1/smartphones/moto-g82-5g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 3.0, + "camera": 17.1, + "battery": 35.0, + "display": null, + "value": 55.4 +} diff --git a/site/public/v1/smartphones/moto-g9-play-2020-dual-sim-lte-a-latam-64gb-xt2083-1-moto-g9/index.json b/site/public/v1/smartphones/moto-g9-play-2020-dual-sim-lte-a-latam-64gb-xt2083-1-moto-g9/index.json new file mode 100644 index 00000000000..f9710961a0f --- /dev/null +++ b/site/public/v1/smartphones/moto-g9-play-2020-dual-sim-lte-a-latam-64gb-xt2083-1-moto-g9/index.json @@ -0,0 +1,76 @@ +{ + "id": 2135, + "slug": "moto-g9-play-2020-dual-sim-lte-a-latam-64gb-xt2083-1-moto-g9", + "name": "Moto G9 Play 2020 Dual SIM LTE-A LATAM 64GB XT2083-1 / Moto G9", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2020-09-01", + "msrp_usd": 1599, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": 10.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.418874", + "updated_at": "2026-06-19T00:43:44.418874" +} diff --git a/site/public/v1/smartphones/moto-g9-play-2020-dual-sim-lte-a-latam-64gb-xt2083-1-moto-g9/score/index.json b/site/public/v1/smartphones/moto-g9-play-2020-dual-sim-lte-a-latam-64gb-xt2083-1-moto-g9/score/index.json new file mode 100644 index 00000000000..356163ac572 --- /dev/null +++ b/site/public/v1/smartphones/moto-g9-play-2020-dual-sim-lte-a-latam-64gb-xt2083-1-moto-g9/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": 10.2 +} diff --git a/site/public/v1/smartphones/moto-g9-play-2020-dual-sim-td-lte-apac-128gb-xt2083-5/index.json b/site/public/v1/smartphones/moto-g9-play-2020-dual-sim-td-lte-apac-128gb-xt2083-5/index.json new file mode 100644 index 00000000000..9de304fe689 --- /dev/null +++ b/site/public/v1/smartphones/moto-g9-play-2020-dual-sim-td-lte-apac-128gb-xt2083-5/index.json @@ -0,0 +1,76 @@ +{ + "id": 2136, + "slug": "moto-g9-play-2020-dual-sim-td-lte-apac-128gb-xt2083-5", + "name": "Moto G9 Play 2020 Dual SIM TD-LTE APAC 128GB XT2083-5", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2020-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.418874", + "updated_at": "2026-06-19T00:43:44.418874" +} diff --git a/site/public/v1/smartphones/moto-g9-play-2020-dual-sim-td-lte-apac-128gb-xt2083-5/score/index.json b/site/public/v1/smartphones/moto-g9-play-2020-dual-sim-td-lte-apac-128gb-xt2083-5/score/index.json new file mode 100644 index 00000000000..99aee406377 --- /dev/null +++ b/site/public/v1/smartphones/moto-g9-play-2020-dual-sim-td-lte-apac-128gb-xt2083-5/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g9-play-2020-global-dual-sim-td-lte-64gb-xt2083-3-xt2083-6/index.json b/site/public/v1/smartphones/moto-g9-play-2020-global-dual-sim-td-lte-64gb-xt2083-3-xt2083-6/index.json new file mode 100644 index 00000000000..8de1c209c52 --- /dev/null +++ b/site/public/v1/smartphones/moto-g9-play-2020-global-dual-sim-td-lte-64gb-xt2083-3-xt2083-6/index.json @@ -0,0 +1,76 @@ +{ + "id": 2137, + "slug": "moto-g9-play-2020-global-dual-sim-td-lte-64gb-xt2083-3-xt2083-6", + "name": "Moto G9 Play 2020 Global Dual SIM TD-LTE 64GB XT2083-3 / XT2083-6", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2020-08-31", + "msrp_usd": 160, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": 60.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.418874", + "updated_at": "2026-06-19T00:43:44.418874" +} diff --git a/site/public/v1/smartphones/moto-g9-play-2020-global-dual-sim-td-lte-64gb-xt2083-3-xt2083-6/score/index.json b/site/public/v1/smartphones/moto-g9-play-2020-global-dual-sim-td-lte-64gb-xt2083-3-xt2083-6/score/index.json new file mode 100644 index 00000000000..e86f5013ea6 --- /dev/null +++ b/site/public/v1/smartphones/moto-g9-play-2020-global-dual-sim-td-lte-64gb-xt2083-3-xt2083-6/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": 60.2 +} diff --git a/site/public/v1/smartphones/moto-g9-play-2020-lte-a-latam-64gb-xt2083-1/index.json b/site/public/v1/smartphones/moto-g9-play-2020-lte-a-latam-64gb-xt2083-1/index.json new file mode 100644 index 00000000000..dfa06eb2bc2 --- /dev/null +++ b/site/public/v1/smartphones/moto-g9-play-2020-lte-a-latam-64gb-xt2083-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2138, + "slug": "moto-g9-play-2020-lte-a-latam-64gb-xt2083-1", + "name": "Moto G9 Play 2020 LTE-A LATAM 64GB XT2083-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2020-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.418874", + "updated_at": "2026-06-19T00:43:44.418874" +} diff --git a/site/public/v1/smartphones/moto-g9-play-2020-lte-a-latam-64gb-xt2083-1/score/index.json b/site/public/v1/smartphones/moto-g9-play-2020-lte-a-latam-64gb-xt2083-1/score/index.json new file mode 100644 index 00000000000..99aee406377 --- /dev/null +++ b/site/public/v1/smartphones/moto-g9-play-2020-lte-a-latam-64gb-xt2083-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g9-plus-2020-dual-sim-latam-lte-a-xt2087-1/index.json b/site/public/v1/smartphones/moto-g9-plus-2020-dual-sim-latam-lte-a-xt2087-1/index.json new file mode 100644 index 00000000000..f7d8d64f851 --- /dev/null +++ b/site/public/v1/smartphones/moto-g9-plus-2020-dual-sim-latam-lte-a-xt2087-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2139, + "slug": "moto-g9-plus-2020-dual-sim-latam-lte-a-xt2087-1", + "name": "Moto G9 Plus 2020 Dual SIM LATAM LTE-A XT2087-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2020-09-13", + "msrp_usd": 2499, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 223.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 0.0, + "camera": 21.5, + "battery": 32.9, + "display": 43.7, + "value": 12.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.418874", + "updated_at": "2026-06-19T00:43:44.418874" +} diff --git a/site/public/v1/smartphones/moto-g9-plus-2020-dual-sim-latam-lte-a-xt2087-1/score/index.json b/site/public/v1/smartphones/moto-g9-plus-2020-dual-sim-latam-lte-a-xt2087-1/score/index.json new file mode 100644 index 00000000000..f0eae9eb09a --- /dev/null +++ b/site/public/v1/smartphones/moto-g9-plus-2020-dual-sim-latam-lte-a-xt2087-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 0.0, + "camera": 21.5, + "battery": 32.9, + "display": 43.7, + "value": 12.2 +} diff --git a/site/public/v1/smartphones/moto-g9-plus-2020-global-dual-sim-lte-a-xt2087-2/index.json b/site/public/v1/smartphones/moto-g9-plus-2020-global-dual-sim-lte-a-xt2087-2/index.json new file mode 100644 index 00000000000..2fdb31e78d2 --- /dev/null +++ b/site/public/v1/smartphones/moto-g9-plus-2020-global-dual-sim-lte-a-xt2087-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 2140, + "slug": "moto-g9-plus-2020-global-dual-sim-lte-a-xt2087-2", + "name": "Moto G9 Plus 2020 Global Dual SIM LTE-A XT2087-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2020-09-17", + "msrp_usd": 269, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 223.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 0.0, + "camera": 21.5, + "battery": 32.9, + "display": 43.7, + "value": 62.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.419874", + "updated_at": "2026-06-19T00:43:44.419874" +} diff --git a/site/public/v1/smartphones/moto-g9-plus-2020-global-dual-sim-lte-a-xt2087-2/score/index.json b/site/public/v1/smartphones/moto-g9-plus-2020-global-dual-sim-lte-a-xt2087-2/score/index.json new file mode 100644 index 00000000000..c1aa5b04d3a --- /dev/null +++ b/site/public/v1/smartphones/moto-g9-plus-2020-global-dual-sim-lte-a-xt2087-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 0.0, + "camera": 21.5, + "battery": 32.9, + "display": 43.7, + "value": 62.2 +} diff --git a/site/public/v1/smartphones/moto-g9-plus-2020-latam-lte-a-xt2087-1/index.json b/site/public/v1/smartphones/moto-g9-plus-2020-latam-lte-a-xt2087-1/index.json new file mode 100644 index 00000000000..e2491d56300 --- /dev/null +++ b/site/public/v1/smartphones/moto-g9-plus-2020-latam-lte-a-xt2087-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2141, + "slug": "moto-g9-plus-2020-latam-lte-a-xt2087-1", + "name": "Moto G9 Plus 2020 LATAM LTE-A XT2087-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2020-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 223.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 0.0, + "camera": 21.5, + "battery": 32.9, + "display": 43.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.419874", + "updated_at": "2026-06-19T00:43:44.419874" +} diff --git a/site/public/v1/smartphones/moto-g9-plus-2020-latam-lte-a-xt2087-1/score/index.json b/site/public/v1/smartphones/moto-g9-plus-2020-latam-lte-a-xt2087-1/score/index.json new file mode 100644 index 00000000000..a0fc7521c27 --- /dev/null +++ b/site/public/v1/smartphones/moto-g9-plus-2020-latam-lte-a-xt2087-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 0.0, + "camera": 21.5, + "battery": 32.9, + "display": 43.7, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g9-power-2020-dual-sim-lte-a-latam-128gb-xt2091-4/index.json b/site/public/v1/smartphones/moto-g9-power-2020-dual-sim-lte-a-latam-128gb-xt2091-4/index.json new file mode 100644 index 00000000000..b51da243be3 --- /dev/null +++ b/site/public/v1/smartphones/moto-g9-power-2020-dual-sim-lte-a-latam-128gb-xt2091-4/index.json @@ -0,0 +1,76 @@ +{ + "id": 2143, + "slug": "moto-g9-power-2020-dual-sim-lte-a-latam-128gb-xt2091-4", + "name": "Moto G9 Power 2020 Dual SIM LTE-A LATAM 128GB XT2091-4", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2020-12-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "720x1640", + "type": "Color IPS TFT LCD display", + "ppi": 263 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 6000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 221.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 0.0, + "camera": 21.5, + "battery": 46.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.419874", + "updated_at": "2026-06-19T00:43:44.419874" +} diff --git a/site/public/v1/smartphones/moto-g9-power-2020-dual-sim-lte-a-latam-128gb-xt2091-4/score/index.json b/site/public/v1/smartphones/moto-g9-power-2020-dual-sim-lte-a-latam-128gb-xt2091-4/score/index.json new file mode 100644 index 00000000000..1106edd8c9f --- /dev/null +++ b/site/public/v1/smartphones/moto-g9-power-2020-dual-sim-lte-a-latam-128gb-xt2091-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 0.0, + "camera": 21.5, + "battery": 46.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g9-power-2020-global-dual-sim-td-lte-128gb-xt2091-3/index.json b/site/public/v1/smartphones/moto-g9-power-2020-global-dual-sim-td-lte-128gb-xt2091-3/index.json new file mode 100644 index 00000000000..f952a14a95d --- /dev/null +++ b/site/public/v1/smartphones/moto-g9-power-2020-global-dual-sim-td-lte-128gb-xt2091-3/index.json @@ -0,0 +1,76 @@ +{ + "id": 2144, + "slug": "moto-g9-power-2020-global-dual-sim-td-lte-128gb-xt2091-3", + "name": "Moto G9 Power 2020 Global Dual SIM TD-LTE 128GB XT2091-3", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2020-11-01", + "msrp_usd": 199, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "720x1640", + "type": "Color IPS TFT LCD display", + "ppi": 263 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 6000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 221.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 0.0, + "camera": 21.5, + "battery": 46.0, + "display": 35.0, + "value": 62.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.419874", + "updated_at": "2026-06-19T00:43:44.419874" +} diff --git a/site/public/v1/smartphones/moto-g9-power-2020-global-dual-sim-td-lte-128gb-xt2091-3/score/index.json b/site/public/v1/smartphones/moto-g9-power-2020-global-dual-sim-td-lte-128gb-xt2091-3/score/index.json new file mode 100644 index 00000000000..1cf67a26693 --- /dev/null +++ b/site/public/v1/smartphones/moto-g9-power-2020-global-dual-sim-td-lte-128gb-xt2091-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 0.0, + "camera": 21.5, + "battery": 46.0, + "display": 35.0, + "value": 62.8 +} diff --git a/site/public/v1/smartphones/moto-g9-power-2020-global-td-lte-128gb-xt2091-3/index.json b/site/public/v1/smartphones/moto-g9-power-2020-global-td-lte-128gb-xt2091-3/index.json new file mode 100644 index 00000000000..78ffdb48065 --- /dev/null +++ b/site/public/v1/smartphones/moto-g9-power-2020-global-td-lte-128gb-xt2091-3/index.json @@ -0,0 +1,76 @@ +{ + "id": 2145, + "slug": "moto-g9-power-2020-global-td-lte-128gb-xt2091-3", + "name": "Moto G9 Power 2020 Global TD-LTE 128GB XT2091-3", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2020-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "720x1640", + "type": "Color IPS TFT LCD display", + "ppi": 263 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 6000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 211.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 0.0, + "camera": 21.5, + "battery": 46.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.419874", + "updated_at": "2026-06-19T00:43:44.419874" +} diff --git a/site/public/v1/smartphones/moto-g9-power-2020-global-td-lte-128gb-xt2091-3/score/index.json b/site/public/v1/smartphones/moto-g9-power-2020-global-td-lte-128gb-xt2091-3/score/index.json new file mode 100644 index 00000000000..1106edd8c9f --- /dev/null +++ b/site/public/v1/smartphones/moto-g9-power-2020-global-td-lte-128gb-xt2091-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 0.0, + "camera": 21.5, + "battery": 46.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-g9-power-2020-latam-128gb-xt2091-4/index.json b/site/public/v1/smartphones/moto-g9-power-2020-latam-128gb-xt2091-4/index.json new file mode 100644 index 00000000000..57fa6223239 --- /dev/null +++ b/site/public/v1/smartphones/moto-g9-power-2020-latam-128gb-xt2091-4/index.json @@ -0,0 +1,76 @@ +{ + "id": 2146, + "slug": "moto-g9-power-2020-latam-128gb-xt2091-4", + "name": "Moto G9 Power 2020 LATAM 128GB XT2091-4", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2020-12-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "720x1640", + "type": "Color IPS TFT LCD display", + "ppi": 263 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 6000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 221.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 0.0, + "camera": 21.5, + "battery": 46.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.419874", + "updated_at": "2026-06-19T00:43:44.419874" +} diff --git a/site/public/v1/smartphones/moto-g9-power-2020-latam-128gb-xt2091-4/score/index.json b/site/public/v1/smartphones/moto-g9-power-2020-latam-128gb-xt2091-4/score/index.json new file mode 100644 index 00000000000..1106edd8c9f --- /dev/null +++ b/site/public/v1/smartphones/moto-g9-power-2020-latam-128gb-xt2091-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 0.0, + "camera": 21.5, + "battery": 46.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-one-5g-2020-td-lte-us-128gb-xt2075-2/index.json b/site/public/v1/smartphones/moto-one-5g-2020-td-lte-us-128gb-xt2075-2/index.json new file mode 100644 index 00000000000..305d96f2813 --- /dev/null +++ b/site/public/v1/smartphones/moto-one-5g-2020-td-lte-us-128gb-xt2075-2/index.json @@ -0,0 +1,77 @@ +{ + "id": 2147, + "slug": "moto-one-5g-2020-td-lte-us-128gb-xt2075-2", + "name": "Moto One 5G 2020 TD-LTE US 128GB XT2075-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-09-01", + "msrp_usd": 550, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2520", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 207.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 40.9, + "value": 51.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.419874", + "updated_at": "2026-06-19T00:43:44.419874" +} diff --git a/site/public/v1/smartphones/moto-one-5g-2020-td-lte-us-128gb-xt2075-2/score/index.json b/site/public/v1/smartphones/moto-one-5g-2020-td-lte-us-128gb-xt2075-2/score/index.json new file mode 100644 index 00000000000..8f410ac6419 --- /dev/null +++ b/site/public/v1/smartphones/moto-one-5g-2020-td-lte-us-128gb-xt2075-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 40.9, + "value": 51.3 +} diff --git a/site/public/v1/smartphones/moto-one-5g-uw-2020-lte-a-us-128gb-xt2075-1/index.json b/site/public/v1/smartphones/moto-one-5g-uw-2020-lte-a-us-128gb-xt2075-1/index.json new file mode 100644 index 00000000000..086d56317aa --- /dev/null +++ b/site/public/v1/smartphones/moto-one-5g-uw-2020-lte-a-us-128gb-xt2075-1/index.json @@ -0,0 +1,77 @@ +{ + "id": 2148, + "slug": "moto-one-5g-uw-2020-lte-a-us-128gb-xt2075-1", + "name": "Moto One 5G UW 2020 LTE-A US 128GB XT2075-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-10-01", + "msrp_usd": 550, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2520", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 207.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 40.9, + "value": 51.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.419874", + "updated_at": "2026-06-19T00:43:44.419874" +} diff --git a/site/public/v1/smartphones/moto-one-5g-uw-2020-lte-a-us-128gb-xt2075-1/score/index.json b/site/public/v1/smartphones/moto-one-5g-uw-2020-lte-a-us-128gb-xt2075-1/score/index.json new file mode 100644 index 00000000000..8f410ac6419 --- /dev/null +++ b/site/public/v1/smartphones/moto-one-5g-uw-2020-lte-a-us-128gb-xt2075-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 40.9, + "value": 51.3 +} diff --git a/site/public/v1/smartphones/moto-one-action-dual-sim-lte-a-latam-apac-128gb-xt2013-1/index.json b/site/public/v1/smartphones/moto-one-action-dual-sim-lte-a-latam-apac-128gb-xt2013-1/index.json new file mode 100644 index 00000000000..80e81fbc619 --- /dev/null +++ b/site/public/v1/smartphones/moto-one-action-dual-sim-lte-a-latam-apac-128gb-xt2013-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2057, + "slug": "moto-one-action-dual-sim-lte-a-latam-apac-128gb-xt2013-1", + "name": "Moto One Action Dual SIM LTE-A LATAM APAC 128GB XT2013-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 191, + "slug": "exynos-9609", + "name": "Exynos 9609", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9609" + }, + "release_date": "2019-08-17", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 0.0, + "camera": 5.0, + "battery": 7.5, + "display": 48.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.408874", + "updated_at": "2026-06-19T00:43:44.408874" +} diff --git a/site/public/v1/smartphones/moto-one-action-dual-sim-lte-a-latam-apac-128gb-xt2013-1/score/index.json b/site/public/v1/smartphones/moto-one-action-dual-sim-lte-a-latam-apac-128gb-xt2013-1/score/index.json new file mode 100644 index 00000000000..6084cde6999 --- /dev/null +++ b/site/public/v1/smartphones/moto-one-action-dual-sim-lte-a-latam-apac-128gb-xt2013-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 0.0, + "camera": 5.0, + "battery": 7.5, + "display": 48.5, + "value": null +} diff --git a/site/public/v1/smartphones/moto-one-action-global-dual-sim-td-lte-128gb-xt2013-2/index.json b/site/public/v1/smartphones/moto-one-action-global-dual-sim-td-lte-128gb-xt2013-2/index.json new file mode 100644 index 00000000000..10175ef3f5d --- /dev/null +++ b/site/public/v1/smartphones/moto-one-action-global-dual-sim-td-lte-128gb-xt2013-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 2058, + "slug": "moto-one-action-global-dual-sim-td-lte-128gb-xt2013-2", + "name": "Moto One Action Global Dual SIM TD-LTE 128GB XT2013-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 191, + "slug": "exynos-9609", + "name": "Exynos 9609", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9609" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 0.0, + "camera": 5.0, + "battery": 7.5, + "display": 48.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.408874", + "updated_at": "2026-06-19T00:43:44.408874" +} diff --git a/site/public/v1/smartphones/moto-one-action-global-dual-sim-td-lte-128gb-xt2013-2/score/index.json b/site/public/v1/smartphones/moto-one-action-global-dual-sim-td-lte-128gb-xt2013-2/score/index.json new file mode 100644 index 00000000000..6084cde6999 --- /dev/null +++ b/site/public/v1/smartphones/moto-one-action-global-dual-sim-td-lte-128gb-xt2013-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 0.0, + "camera": 5.0, + "battery": 7.5, + "display": 48.5, + "value": null +} diff --git a/site/public/v1/smartphones/moto-one-action-lte-a-latam-128gb-xt2013-1/index.json b/site/public/v1/smartphones/moto-one-action-lte-a-latam-128gb-xt2013-1/index.json new file mode 100644 index 00000000000..ee88c5c96e1 --- /dev/null +++ b/site/public/v1/smartphones/moto-one-action-lte-a-latam-128gb-xt2013-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2059, + "slug": "moto-one-action-lte-a-latam-128gb-xt2013-1", + "name": "Moto One Action LTE-A LATAM 128GB XT2013-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 191, + "slug": "exynos-9609", + "name": "Exynos 9609", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9609" + }, + "release_date": "2019-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 0.0, + "camera": 5.0, + "battery": 7.5, + "display": 48.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.408874", + "updated_at": "2026-06-19T00:43:44.408874" +} diff --git a/site/public/v1/smartphones/moto-one-action-lte-a-latam-128gb-xt2013-1/score/index.json b/site/public/v1/smartphones/moto-one-action-lte-a-latam-128gb-xt2013-1/score/index.json new file mode 100644 index 00000000000..6084cde6999 --- /dev/null +++ b/site/public/v1/smartphones/moto-one-action-lte-a-latam-128gb-xt2013-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 0.0, + "camera": 5.0, + "battery": 7.5, + "display": 48.5, + "value": null +} diff --git a/site/public/v1/smartphones/moto-one-action-td-lte-na-128gb-xt2013-4/index.json b/site/public/v1/smartphones/moto-one-action-td-lte-na-128gb-xt2013-4/index.json new file mode 100644 index 00000000000..8bbec103979 --- /dev/null +++ b/site/public/v1/smartphones/moto-one-action-td-lte-na-128gb-xt2013-4/index.json @@ -0,0 +1,76 @@ +{ + "id": 2060, + "slug": "moto-one-action-td-lte-na-128gb-xt2013-4", + "name": "Moto One Action TD-LTE NA 128GB XT2013-4", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 191, + "slug": "exynos-9609", + "name": "Exynos 9609", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9609" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 0.0, + "camera": 5.0, + "battery": 7.5, + "display": 48.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.408874", + "updated_at": "2026-06-19T00:43:44.408874" +} diff --git a/site/public/v1/smartphones/moto-one-action-td-lte-na-128gb-xt2013-4/score/index.json b/site/public/v1/smartphones/moto-one-action-td-lte-na-128gb-xt2013-4/score/index.json new file mode 100644 index 00000000000..6084cde6999 --- /dev/null +++ b/site/public/v1/smartphones/moto-one-action-td-lte-na-128gb-xt2013-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 0.0, + "camera": 5.0, + "battery": 7.5, + "display": 48.5, + "value": null +} diff --git a/site/public/v1/smartphones/moto-one-fusion-dual-sim-latam-lte-a-xt2067-2/index.json b/site/public/v1/smartphones/moto-one-fusion-dual-sim-latam-lte-a-xt2067-2/index.json new file mode 100644 index 00000000000..ead99b3c988 --- /dev/null +++ b/site/public/v1/smartphones/moto-one-fusion-dual-sim-latam-lte-a-xt2067-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 2149, + "slug": "moto-one-fusion-dual-sim-latam-lte-a-xt2067-2", + "name": "Moto One Fusion+ Dual SIM LATAM LTE-A XT2067-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2020-06-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 0.0, + "camera": 21.5, + "battery": 30.6, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.419874", + "updated_at": "2026-06-19T00:43:44.419874" +} diff --git a/site/public/v1/smartphones/moto-one-fusion-dual-sim-latam-lte-a-xt2067-2/score/index.json b/site/public/v1/smartphones/moto-one-fusion-dual-sim-latam-lte-a-xt2067-2/score/index.json new file mode 100644 index 00000000000..f08ccb82717 --- /dev/null +++ b/site/public/v1/smartphones/moto-one-fusion-dual-sim-latam-lte-a-xt2067-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 0.0, + "camera": 21.5, + "battery": 30.6, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/moto-one-fusion-dual-sim-td-lte-apac-xt2067-3/index.json b/site/public/v1/smartphones/moto-one-fusion-dual-sim-td-lte-apac-xt2067-3/index.json new file mode 100644 index 00000000000..a3a1d0d45da --- /dev/null +++ b/site/public/v1/smartphones/moto-one-fusion-dual-sim-td-lte-apac-xt2067-3/index.json @@ -0,0 +1,76 @@ +{ + "id": 2150, + "slug": "moto-one-fusion-dual-sim-td-lte-apac-xt2067-3", + "name": "Moto One Fusion+ Dual SIM TD-LTE APAC XT2067-3", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2020-06-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 1.5, + "camera": 21.5, + "battery": 30.6, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.420873", + "updated_at": "2026-06-19T00:43:44.420873" +} diff --git a/site/public/v1/smartphones/moto-one-fusion-dual-sim-td-lte-apac-xt2067-3/score/index.json b/site/public/v1/smartphones/moto-one-fusion-dual-sim-td-lte-apac-xt2067-3/score/index.json new file mode 100644 index 00000000000..13ef55a8067 --- /dev/null +++ b/site/public/v1/smartphones/moto-one-fusion-dual-sim-td-lte-apac-xt2067-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 1.5, + "camera": 21.5, + "battery": 30.6, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/moto-one-fusion-dual-sim-td-lte-emea-xt2067-1/index.json b/site/public/v1/smartphones/moto-one-fusion-dual-sim-td-lte-emea-xt2067-1/index.json new file mode 100644 index 00000000000..90b437da14a --- /dev/null +++ b/site/public/v1/smartphones/moto-one-fusion-dual-sim-td-lte-emea-xt2067-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2151, + "slug": "moto-one-fusion-dual-sim-td-lte-emea-xt2067-1", + "name": "Moto One Fusion+ Dual SIM TD-LTE EMEA XT2067-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2020-06-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 1.5, + "camera": 21.5, + "battery": 30.0, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.420873", + "updated_at": "2026-06-19T00:43:44.420873" +} diff --git a/site/public/v1/smartphones/moto-one-fusion-dual-sim-td-lte-emea-xt2067-1/score/index.json b/site/public/v1/smartphones/moto-one-fusion-dual-sim-td-lte-emea-xt2067-1/score/index.json new file mode 100644 index 00000000000..223296720f1 --- /dev/null +++ b/site/public/v1/smartphones/moto-one-fusion-dual-sim-td-lte-emea-xt2067-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 1.5, + "camera": 21.5, + "battery": 30.0, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/moto-one-fusion-latam-lte-a-xt2067-2/index.json b/site/public/v1/smartphones/moto-one-fusion-latam-lte-a-xt2067-2/index.json new file mode 100644 index 00000000000..fca65e62ad4 --- /dev/null +++ b/site/public/v1/smartphones/moto-one-fusion-latam-lte-a-xt2067-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 2152, + "slug": "moto-one-fusion-latam-lte-a-xt2067-2", + "name": "Moto One Fusion+ LATAM LTE-A XT2067-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2020-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 0.0, + "camera": 21.5, + "battery": 30.6, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.420873", + "updated_at": "2026-06-19T00:43:44.420873" +} diff --git a/site/public/v1/smartphones/moto-one-fusion-latam-lte-a-xt2067-2/score/index.json b/site/public/v1/smartphones/moto-one-fusion-latam-lte-a-xt2067-2/score/index.json new file mode 100644 index 00000000000..f08ccb82717 --- /dev/null +++ b/site/public/v1/smartphones/moto-one-fusion-latam-lte-a-xt2067-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 0.0, + "camera": 21.5, + "battery": 30.6, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/moto-one-hyper-dual-sim-lte-a-am-xt2027-1/index.json b/site/public/v1/smartphones/moto-one-hyper-dual-sim-lte-a-am-xt2027-1/index.json new file mode 100644 index 00000000000..d115a8e9689 --- /dev/null +++ b/site/public/v1/smartphones/moto-one-hyper-dual-sim-lte-a-am-xt2027-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2061, + "slug": "moto-one-hyper-dual-sim-lte-a-am-xt2027-1", + "name": "Moto One Hyper Dual SIM LTE-A AM XT2027-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-12-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 0.0, + "camera": 21.5, + "battery": 20.7, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.408874", + "updated_at": "2026-06-19T00:43:44.408874" +} diff --git a/site/public/v1/smartphones/moto-one-hyper-dual-sim-lte-a-am-xt2027-1/score/index.json b/site/public/v1/smartphones/moto-one-hyper-dual-sim-lte-a-am-xt2027-1/score/index.json new file mode 100644 index 00000000000..3fc642f8efa --- /dev/null +++ b/site/public/v1/smartphones/moto-one-hyper-dual-sim-lte-a-am-xt2027-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 0.0, + "camera": 21.5, + "battery": 20.7, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/moto-one-hyper-global-dual-sim-td-lte-xt2027-3/index.json b/site/public/v1/smartphones/moto-one-hyper-global-dual-sim-td-lte-xt2027-3/index.json new file mode 100644 index 00000000000..795220ae55b --- /dev/null +++ b/site/public/v1/smartphones/moto-one-hyper-global-dual-sim-td-lte-xt2027-3/index.json @@ -0,0 +1,76 @@ +{ + "id": 2154, + "slug": "moto-one-hyper-global-dual-sim-td-lte-xt2027-3", + "name": "Moto One Hyper Global Dual SIM TD-LTE XT2027-3", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2020-01-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": 0.0, + "camera": 21.5, + "battery": 17.3, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.420873", + "updated_at": "2026-06-19T00:43:44.420873" +} diff --git a/site/public/v1/smartphones/moto-one-hyper-global-dual-sim-td-lte-xt2027-3/score/index.json b/site/public/v1/smartphones/moto-one-hyper-global-dual-sim-td-lte-xt2027-3/score/index.json new file mode 100644 index 00000000000..010c741034a --- /dev/null +++ b/site/public/v1/smartphones/moto-one-hyper-global-dual-sim-td-lte-xt2027-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": 0.0, + "camera": 21.5, + "battery": 17.3, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/moto-one-hyper-global-td-lte-xt2027-3/index.json b/site/public/v1/smartphones/moto-one-hyper-global-td-lte-xt2027-3/index.json new file mode 100644 index 00000000000..f7974718426 --- /dev/null +++ b/site/public/v1/smartphones/moto-one-hyper-global-td-lte-xt2027-3/index.json @@ -0,0 +1,76 @@ +{ + "id": 2062, + "slug": "moto-one-hyper-global-td-lte-xt2027-3", + "name": "Moto One Hyper Global TD-LTE XT2027-3", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-12-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": 0.0, + "camera": 21.5, + "battery": 17.3, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.409874", + "updated_at": "2026-06-19T00:43:44.409874" +} diff --git a/site/public/v1/smartphones/moto-one-hyper-global-td-lte-xt2027-3/score/index.json b/site/public/v1/smartphones/moto-one-hyper-global-td-lte-xt2027-3/score/index.json new file mode 100644 index 00000000000..010c741034a --- /dev/null +++ b/site/public/v1/smartphones/moto-one-hyper-global-td-lte-xt2027-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": 0.0, + "camera": 21.5, + "battery": 17.3, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/moto-one-hyper-lte-a-am-xt2027-1/index.json b/site/public/v1/smartphones/moto-one-hyper-lte-a-am-xt2027-1/index.json new file mode 100644 index 00000000000..02f9f9b2f4f --- /dev/null +++ b/site/public/v1/smartphones/moto-one-hyper-lte-a-am-xt2027-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2063, + "slug": "moto-one-hyper-lte-a-am-xt2027-1", + "name": "Moto One Hyper LTE-A AM XT2027-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-12-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 0.0, + "camera": 21.5, + "battery": 20.7, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.409874", + "updated_at": "2026-06-19T00:43:44.409874" +} diff --git a/site/public/v1/smartphones/moto-one-hyper-lte-a-am-xt2027-1/score/index.json b/site/public/v1/smartphones/moto-one-hyper-lte-a-am-xt2027-1/score/index.json new file mode 100644 index 00000000000..3fc642f8efa --- /dev/null +++ b/site/public/v1/smartphones/moto-one-hyper-lte-a-am-xt2027-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 0.0, + "camera": 21.5, + "battery": 20.7, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/moto-one-macro-dual-sim-latam-lte-a-xt2016-2/index.json b/site/public/v1/smartphones/moto-one-macro-dual-sim-latam-lte-a-xt2016-2/index.json new file mode 100644 index 00000000000..62a3d6f98ad --- /dev/null +++ b/site/public/v1/smartphones/moto-one-macro-dual-sim-latam-lte-a-xt2016-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 2064, + "slug": "moto-one-macro-dual-sim-latam-lte-a-xt2016-2", + "name": "Moto One Macro Dual SIM LATAM LTE-A XT2016-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.409874", + "updated_at": "2026-06-19T00:43:44.409874" +} diff --git a/site/public/v1/smartphones/moto-one-macro-dual-sim-latam-lte-a-xt2016-2/score/index.json b/site/public/v1/smartphones/moto-one-macro-dual-sim-latam-lte-a-xt2016-2/score/index.json new file mode 100644 index 00000000000..a59635bee66 --- /dev/null +++ b/site/public/v1/smartphones/moto-one-macro-dual-sim-latam-lte-a-xt2016-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-one-macro-global-dual-sim-td-lte-xt2016-1/index.json b/site/public/v1/smartphones/moto-one-macro-global-dual-sim-td-lte-xt2016-1/index.json new file mode 100644 index 00000000000..1c3870104b8 --- /dev/null +++ b/site/public/v1/smartphones/moto-one-macro-global-dual-sim-td-lte-xt2016-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2065, + "slug": "moto-one-macro-global-dual-sim-td-lte-xt2016-1", + "name": "Moto One Macro Global Dual SIM TD-LTE XT2016-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-10-12", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.409874", + "updated_at": "2026-06-19T00:43:44.409874" +} diff --git a/site/public/v1/smartphones/moto-one-macro-global-dual-sim-td-lte-xt2016-1/score/index.json b/site/public/v1/smartphones/moto-one-macro-global-dual-sim-td-lte-xt2016-1/score/index.json new file mode 100644 index 00000000000..a59635bee66 --- /dev/null +++ b/site/public/v1/smartphones/moto-one-macro-global-dual-sim-td-lte-xt2016-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/moto-one-vision-dual-sim-lte-a-latam-au-128gb-xt1970-1/index.json b/site/public/v1/smartphones/moto-one-vision-dual-sim-lte-a-latam-au-128gb-xt1970-1/index.json new file mode 100644 index 00000000000..731a94af50c --- /dev/null +++ b/site/public/v1/smartphones/moto-one-vision-dual-sim-lte-a-latam-au-128gb-xt1970-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2067, + "slug": "moto-one-vision-dual-sim-lte-a-latam-au-128gb-xt1970-1", + "name": "Moto One Vision Dual SIM LTE-A LATAM AU 128GB XT1970-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 191, + "slug": "exynos-9609", + "name": "Exynos 9609", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9609" + }, + "release_date": "2019-08-17", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 0.0, + "camera": 16.5, + "battery": 7.5, + "display": 48.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.409874", + "updated_at": "2026-06-19T00:43:44.409874" +} diff --git a/site/public/v1/smartphones/moto-one-vision-dual-sim-lte-a-latam-au-128gb-xt1970-1/score/index.json b/site/public/v1/smartphones/moto-one-vision-dual-sim-lte-a-latam-au-128gb-xt1970-1/score/index.json new file mode 100644 index 00000000000..8d5f44deead --- /dev/null +++ b/site/public/v1/smartphones/moto-one-vision-dual-sim-lte-a-latam-au-128gb-xt1970-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 0.0, + "camera": 16.5, + "battery": 7.5, + "display": 48.5, + "value": null +} diff --git a/site/public/v1/smartphones/moto-one-vision-dual-sim-td-lte-emea-apac-128gb-xt1970-3/index.json b/site/public/v1/smartphones/moto-one-vision-dual-sim-td-lte-emea-apac-128gb-xt1970-3/index.json new file mode 100644 index 00000000000..47ae16b22b8 --- /dev/null +++ b/site/public/v1/smartphones/moto-one-vision-dual-sim-td-lte-emea-apac-128gb-xt1970-3/index.json @@ -0,0 +1,76 @@ +{ + "id": 2068, + "slug": "moto-one-vision-dual-sim-td-lte-emea-apac-128gb-xt1970-3", + "name": "Moto One Vision Dual SIM TD-LTE EMEA APAC 128GB XT1970-3", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 191, + "slug": "exynos-9609", + "name": "Exynos 9609", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9609" + }, + "release_date": "2019-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 0.0, + "camera": 16.5, + "battery": 7.5, + "display": 48.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.409874", + "updated_at": "2026-06-19T00:43:44.409874" +} diff --git a/site/public/v1/smartphones/moto-one-vision-dual-sim-td-lte-emea-apac-128gb-xt1970-3/score/index.json b/site/public/v1/smartphones/moto-one-vision-dual-sim-td-lte-emea-apac-128gb-xt1970-3/score/index.json new file mode 100644 index 00000000000..8d5f44deead --- /dev/null +++ b/site/public/v1/smartphones/moto-one-vision-dual-sim-td-lte-emea-apac-128gb-xt1970-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 0.0, + "camera": 16.5, + "battery": 7.5, + "display": 48.5, + "value": null +} diff --git a/site/public/v1/smartphones/moto-one-vision-lte-a-am-128gb-xt1970-2/index.json b/site/public/v1/smartphones/moto-one-vision-lte-a-am-128gb-xt1970-2/index.json new file mode 100644 index 00000000000..35a4aa9b142 --- /dev/null +++ b/site/public/v1/smartphones/moto-one-vision-lte-a-am-128gb-xt1970-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 2069, + "slug": "moto-one-vision-lte-a-am-128gb-xt1970-2", + "name": "Moto One Vision LTE-A AM 128GB XT1970-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 191, + "slug": "exynos-9609", + "name": "Exynos 9609", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9609" + }, + "release_date": "2019-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 0.0, + "camera": 16.5, + "battery": 7.5, + "display": 48.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.409874", + "updated_at": "2026-06-19T00:43:44.409874" +} diff --git a/site/public/v1/smartphones/moto-one-vision-lte-a-am-128gb-xt1970-2/score/index.json b/site/public/v1/smartphones/moto-one-vision-lte-a-am-128gb-xt1970-2/score/index.json new file mode 100644 index 00000000000..8d5f44deead --- /dev/null +++ b/site/public/v1/smartphones/moto-one-vision-lte-a-am-128gb-xt1970-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 0.0, + "camera": 16.5, + "battery": 7.5, + "display": 48.5, + "value": null +} diff --git a/site/public/v1/smartphones/moto-one-vision-td-lte-emea-128gb-xt1970-3/index.json b/site/public/v1/smartphones/moto-one-vision-td-lte-emea-128gb-xt1970-3/index.json new file mode 100644 index 00000000000..16724cc3d95 --- /dev/null +++ b/site/public/v1/smartphones/moto-one-vision-td-lte-emea-128gb-xt1970-3/index.json @@ -0,0 +1,76 @@ +{ + "id": 2070, + "slug": "moto-one-vision-td-lte-emea-128gb-xt1970-3", + "name": "Moto One Vision TD-LTE EMEA 128GB XT1970-3", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 191, + "slug": "exynos-9609", + "name": "Exynos 9609", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9609" + }, + "release_date": "2019-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 0.0, + "camera": 16.5, + "battery": 7.5, + "display": 48.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.410874", + "updated_at": "2026-06-19T00:43:44.410874" +} diff --git a/site/public/v1/smartphones/moto-one-vision-td-lte-emea-128gb-xt1970-3/score/index.json b/site/public/v1/smartphones/moto-one-vision-td-lte-emea-128gb-xt1970-3/score/index.json new file mode 100644 index 00000000000..8d5f44deead --- /dev/null +++ b/site/public/v1/smartphones/moto-one-vision-td-lte-emea-128gb-xt1970-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 0.0, + "camera": 16.5, + "battery": 7.5, + "display": 48.5, + "value": null +} diff --git a/site/public/v1/smartphones/moto-one-zoom-global-dual-sim-td-lte-128gb-xt2010-1/index.json b/site/public/v1/smartphones/moto-one-zoom-global-dual-sim-td-lte-128gb-xt2010-1/index.json new file mode 100644 index 00000000000..41a52c6ae99 --- /dev/null +++ b/site/public/v1/smartphones/moto-one-zoom-global-dual-sim-td-lte-128gb-xt2010-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2071, + "slug": "moto-one-zoom-global-dual-sim-td-lte-128gb-xt2010-1", + "name": "Moto One Zoom Global Dual SIM TD-LTE 128GB XT2010-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 0.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.410874", + "updated_at": "2026-06-19T00:43:44.410874" +} diff --git a/site/public/v1/smartphones/moto-one-zoom-global-dual-sim-td-lte-128gb-xt2010-1/score/index.json b/site/public/v1/smartphones/moto-one-zoom-global-dual-sim-td-lte-128gb-xt2010-1/score/index.json new file mode 100644 index 00000000000..dde64c8f489 --- /dev/null +++ b/site/public/v1/smartphones/moto-one-zoom-global-dual-sim-td-lte-128gb-xt2010-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 0.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/moto-one-zoom-global-td-lte-128gb-xt2010-1/index.json b/site/public/v1/smartphones/moto-one-zoom-global-td-lte-128gb-xt2010-1/index.json new file mode 100644 index 00000000000..a4e42a76ef6 --- /dev/null +++ b/site/public/v1/smartphones/moto-one-zoom-global-td-lte-128gb-xt2010-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2072, + "slug": "moto-one-zoom-global-td-lte-128gb-xt2010-1", + "name": "Moto One Zoom Global TD-LTE 128GB XT2010-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 0.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.410874", + "updated_at": "2026-06-19T00:43:44.410874" +} diff --git a/site/public/v1/smartphones/moto-one-zoom-global-td-lte-128gb-xt2010-1/score/index.json b/site/public/v1/smartphones/moto-one-zoom-global-td-lte-128gb-xt2010-1/score/index.json new file mode 100644 index 00000000000..dde64c8f489 --- /dev/null +++ b/site/public/v1/smartphones/moto-one-zoom-global-td-lte-128gb-xt2010-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 0.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/moto-z3-dual-sim-td-lte-cn-128gb-xt1929-15/index.json b/site/public/v1/smartphones/moto-z3-dual-sim-td-lte-cn-128gb-xt1929-15/index.json new file mode 100644 index 00000000000..9d8e835df6c --- /dev/null +++ b/site/public/v1/smartphones/moto-z3-dual-sim-td-lte-cn-128gb-xt1929-15/index.json @@ -0,0 +1,76 @@ +{ + "id": 1982, + "slug": "moto-z3-dual-sim-td-lte-cn-128gb-xt1929-15", + "name": "Moto Z3 Dual SIM TD-LTE CN 128GB XT1929-15", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 122, + "slug": "snapdragon-835", + "name": "Snapdragon 835", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 540", + "url": "/v1/socs/snapdragon-835" + }, + "release_date": "2018-09-08", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.01, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 24.6, + "camera": 5.0, + "battery": 0.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.398874", + "updated_at": "2026-06-19T00:43:44.398874" +} diff --git a/site/public/v1/smartphones/moto-z3-dual-sim-td-lte-cn-128gb-xt1929-15/score/index.json b/site/public/v1/smartphones/moto-z3-dual-sim-td-lte-cn-128gb-xt1929-15/score/index.json new file mode 100644 index 00000000000..d178ac12912 --- /dev/null +++ b/site/public/v1/smartphones/moto-z3-dual-sim-td-lte-cn-128gb-xt1929-15/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 24.6, + "camera": 5.0, + "battery": 0.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/moto-z3-play-dual-sim-lte-a-am-64gb-xt1929-6-ds/index.json b/site/public/v1/smartphones/moto-z3-play-dual-sim-lte-a-am-64gb-xt1929-6-ds/index.json new file mode 100644 index 00000000000..cc9ef1a46ed --- /dev/null +++ b/site/public/v1/smartphones/moto-z3-play-dual-sim-lte-a-am-64gb-xt1929-6-ds/index.json @@ -0,0 +1,76 @@ +{ + "id": 1983, + "slug": "moto-z3-play-dual-sim-lte-a-am-64gb-xt1929-6-ds", + "name": "Moto Z3 Play Dual SIM LTE-A AM 64GB XT1929-6 DS", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.01, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.398874", + "updated_at": "2026-06-19T00:43:44.398874" +} diff --git a/site/public/v1/smartphones/moto-z3-play-dual-sim-lte-a-am-64gb-xt1929-6-ds/score/index.json b/site/public/v1/smartphones/moto-z3-play-dual-sim-lte-a-am-64gb-xt1929-6-ds/score/index.json new file mode 100644 index 00000000000..ee8ea7f6525 --- /dev/null +++ b/site/public/v1/smartphones/moto-z3-play-dual-sim-lte-a-am-64gb-xt1929-6-ds/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/moto-z3-play-dual-sim-lte-a-latam-128gb-xt1929-5/index.json b/site/public/v1/smartphones/moto-z3-play-dual-sim-lte-a-latam-128gb-xt1929-5/index.json new file mode 100644 index 00000000000..51b7bf26666 --- /dev/null +++ b/site/public/v1/smartphones/moto-z3-play-dual-sim-lte-a-latam-128gb-xt1929-5/index.json @@ -0,0 +1,76 @@ +{ + "id": 1984, + "slug": "moto-z3-play-dual-sim-lte-a-latam-128gb-xt1929-5", + "name": "Moto Z3 Play Dual SIM LTE-A LATAM 128GB XT1929-5", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-06-22", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.01, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.0, + "performance": 1.5, + "camera": 5.1, + "battery": 0.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.399874", + "updated_at": "2026-06-19T00:43:44.399874" +} diff --git a/site/public/v1/smartphones/moto-z3-play-dual-sim-lte-a-latam-128gb-xt1929-5/score/index.json b/site/public/v1/smartphones/moto-z3-play-dual-sim-lte-a-latam-128gb-xt1929-5/score/index.json new file mode 100644 index 00000000000..08f137d62bf --- /dev/null +++ b/site/public/v1/smartphones/moto-z3-play-dual-sim-lte-a-latam-128gb-xt1929-5/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.0, + "performance": 1.5, + "camera": 5.1, + "battery": 0.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/moto-z3-play-dual-sim-lte-a-latam-64gb-xt1929-5/index.json b/site/public/v1/smartphones/moto-z3-play-dual-sim-lte-a-latam-64gb-xt1929-5/index.json new file mode 100644 index 00000000000..6b32c1c23e9 --- /dev/null +++ b/site/public/v1/smartphones/moto-z3-play-dual-sim-lte-a-latam-64gb-xt1929-5/index.json @@ -0,0 +1,76 @@ +{ + "id": 1985, + "slug": "moto-z3-play-dual-sim-lte-a-latam-64gb-xt1929-5", + "name": "Moto Z3 Play Dual SIM LTE-A LATAM 64GB XT1929-5", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.01, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.399874", + "updated_at": "2026-06-19T00:43:44.399874" +} diff --git a/site/public/v1/smartphones/moto-z3-play-dual-sim-lte-a-latam-64gb-xt1929-5/score/index.json b/site/public/v1/smartphones/moto-z3-play-dual-sim-lte-a-latam-64gb-xt1929-5/score/index.json new file mode 100644 index 00000000000..ee8ea7f6525 --- /dev/null +++ b/site/public/v1/smartphones/moto-z3-play-dual-sim-lte-a-latam-64gb-xt1929-5/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/moto-z3-play-dual-sim-td-lte-emea-apac-64gb-xt1929-8-ds/index.json b/site/public/v1/smartphones/moto-z3-play-dual-sim-td-lte-emea-apac-64gb-xt1929-8-ds/index.json new file mode 100644 index 00000000000..7f045df1495 --- /dev/null +++ b/site/public/v1/smartphones/moto-z3-play-dual-sim-td-lte-emea-apac-64gb-xt1929-8-ds/index.json @@ -0,0 +1,76 @@ +{ + "id": 1986, + "slug": "moto-z3-play-dual-sim-td-lte-emea-apac-64gb-xt1929-8-ds", + "name": "Moto Z3 Play Dual SIM TD-LTE EMEA APAC 64GB XT1929-8 DS", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-07-29", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.01, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.399874", + "updated_at": "2026-06-19T00:43:44.399874" +} diff --git a/site/public/v1/smartphones/moto-z3-play-dual-sim-td-lte-emea-apac-64gb-xt1929-8-ds/score/index.json b/site/public/v1/smartphones/moto-z3-play-dual-sim-td-lte-emea-apac-64gb-xt1929-8-ds/score/index.json new file mode 100644 index 00000000000..ee8ea7f6525 --- /dev/null +++ b/site/public/v1/smartphones/moto-z3-play-dual-sim-td-lte-emea-apac-64gb-xt1929-8-ds/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/moto-z3-play-lte-a-latam-128gb-xt1929-6m/index.json b/site/public/v1/smartphones/moto-z3-play-lte-a-latam-128gb-xt1929-6m/index.json new file mode 100644 index 00000000000..aa96bbc3689 --- /dev/null +++ b/site/public/v1/smartphones/moto-z3-play-lte-a-latam-128gb-xt1929-6m/index.json @@ -0,0 +1,76 @@ +{ + "id": 1987, + "slug": "moto-z3-play-lte-a-latam-128gb-xt1929-6m", + "name": "Moto Z3 Play LTE-A LATAM 128GB XT1929-6M", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.01, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.0, + "performance": 1.5, + "camera": 5.1, + "battery": 0.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.399874", + "updated_at": "2026-06-19T00:43:44.399874" +} diff --git a/site/public/v1/smartphones/moto-z3-play-lte-a-latam-128gb-xt1929-6m/score/index.json b/site/public/v1/smartphones/moto-z3-play-lte-a-latam-128gb-xt1929-6m/score/index.json new file mode 100644 index 00000000000..08f137d62bf --- /dev/null +++ b/site/public/v1/smartphones/moto-z3-play-lte-a-latam-128gb-xt1929-6m/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.0, + "performance": 1.5, + "camera": 5.1, + "battery": 0.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/moto-z3-play-lte-a-latam-64gb-xt1929-6/index.json b/site/public/v1/smartphones/moto-z3-play-lte-a-latam-64gb-xt1929-6/index.json new file mode 100644 index 00000000000..c02e865df87 --- /dev/null +++ b/site/public/v1/smartphones/moto-z3-play-lte-a-latam-64gb-xt1929-6/index.json @@ -0,0 +1,76 @@ +{ + "id": 1988, + "slug": "moto-z3-play-lte-a-latam-64gb-xt1929-6", + "name": "Moto Z3 Play LTE-A LATAM 64GB XT1929-6", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.01, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.399874", + "updated_at": "2026-06-19T00:43:44.399874" +} diff --git a/site/public/v1/smartphones/moto-z3-play-lte-a-latam-64gb-xt1929-6/score/index.json b/site/public/v1/smartphones/moto-z3-play-lte-a-latam-64gb-xt1929-6/score/index.json new file mode 100644 index 00000000000..ee8ea7f6525 --- /dev/null +++ b/site/public/v1/smartphones/moto-z3-play-lte-a-latam-64gb-xt1929-6/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/moto-z3-play-td-lte-emea-apac-64gb-xt1929-8-moto-z-play-3rd-edition/index.json b/site/public/v1/smartphones/moto-z3-play-td-lte-emea-apac-64gb-xt1929-8-moto-z-play-3rd-edition/index.json new file mode 100644 index 00000000000..0a8a48261d6 --- /dev/null +++ b/site/public/v1/smartphones/moto-z3-play-td-lte-emea-apac-64gb-xt1929-8-moto-z-play-3rd-edition/index.json @@ -0,0 +1,76 @@ +{ + "id": 1989, + "slug": "moto-z3-play-td-lte-emea-apac-64gb-xt1929-8-moto-z-play-3rd-edition", + "name": "Moto Z3 Play TD-LTE EMEA APAC 64GB XT1929-8 / Moto Z Play 3rd Edition", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-07-29", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.01, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.399874", + "updated_at": "2026-06-19T00:43:44.399874" +} diff --git a/site/public/v1/smartphones/moto-z3-play-td-lte-emea-apac-64gb-xt1929-8-moto-z-play-3rd-edition/score/index.json b/site/public/v1/smartphones/moto-z3-play-td-lte-emea-apac-64gb-xt1929-8-moto-z-play-3rd-edition/score/index.json new file mode 100644 index 00000000000..ee8ea7f6525 --- /dev/null +++ b/site/public/v1/smartphones/moto-z3-play-td-lte-emea-apac-64gb-xt1929-8-moto-z-play-3rd-edition/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/moto-z3-play-td-lte-na-32gb-xt1929-4-xt1929-1/index.json b/site/public/v1/smartphones/moto-z3-play-td-lte-na-32gb-xt1929-4-xt1929-1/index.json new file mode 100644 index 00000000000..7d70cab6c94 --- /dev/null +++ b/site/public/v1/smartphones/moto-z3-play-td-lte-na-32gb-xt1929-4-xt1929-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 1990, + "slug": "moto-z3-play-td-lte-na-32gb-xt1929-4-xt1929-1", + "name": "Moto Z3 Play TD-LTE NA 32GB XT1929-4 / XT1929-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-07-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.01, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.399874", + "updated_at": "2026-06-19T00:43:44.399874" +} diff --git a/site/public/v1/smartphones/moto-z3-play-td-lte-na-32gb-xt1929-4-xt1929-1/score/index.json b/site/public/v1/smartphones/moto-z3-play-td-lte-na-32gb-xt1929-4-xt1929-1/score/index.json new file mode 100644 index 00000000000..ee8ea7f6525 --- /dev/null +++ b/site/public/v1/smartphones/moto-z3-play-td-lte-na-32gb-xt1929-4-xt1929-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/moto-z3-play-td-lte-na-64gb-xt1929-4/index.json b/site/public/v1/smartphones/moto-z3-play-td-lte-na-64gb-xt1929-4/index.json new file mode 100644 index 00000000000..f8f97341954 --- /dev/null +++ b/site/public/v1/smartphones/moto-z3-play-td-lte-na-64gb-xt1929-4/index.json @@ -0,0 +1,76 @@ +{ + "id": 1991, + "slug": "moto-z3-play-td-lte-na-64gb-xt1929-4", + "name": "Moto Z3 Play TD-LTE NA 64GB XT1929-4", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.01, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.400874", + "updated_at": "2026-06-19T00:43:44.400874" +} diff --git a/site/public/v1/smartphones/moto-z3-play-td-lte-na-64gb-xt1929-4/score/index.json b/site/public/v1/smartphones/moto-z3-play-td-lte-na-64gb-xt1929-4/score/index.json new file mode 100644 index 00000000000..ee8ea7f6525 --- /dev/null +++ b/site/public/v1/smartphones/moto-z3-play-td-lte-na-64gb-xt1929-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/moto-z3-play-td-lte-us-32gb-xt1929-3/index.json b/site/public/v1/smartphones/moto-z3-play-td-lte-us-32gb-xt1929-3/index.json new file mode 100644 index 00000000000..0e6d6872ce1 --- /dev/null +++ b/site/public/v1/smartphones/moto-z3-play-td-lte-us-32gb-xt1929-3/index.json @@ -0,0 +1,76 @@ +{ + "id": 1992, + "slug": "moto-z3-play-td-lte-us-32gb-xt1929-3", + "name": "Moto Z3 Play TD-LTE US 32GB XT1929-3", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-07-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.01, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.400874", + "updated_at": "2026-06-19T00:43:44.400874" +} diff --git a/site/public/v1/smartphones/moto-z3-play-td-lte-us-32gb-xt1929-3/score/index.json b/site/public/v1/smartphones/moto-z3-play-td-lte-us-32gb-xt1929-3/score/index.json new file mode 100644 index 00000000000..ee8ea7f6525 --- /dev/null +++ b/site/public/v1/smartphones/moto-z3-play-td-lte-us-32gb-xt1929-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.6, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/moto-z3-td-lte-us-64gb-xt1929-17-moto-z-3rd-gen/index.json b/site/public/v1/smartphones/moto-z3-td-lte-us-64gb-xt1929-17-moto-z-3rd-gen/index.json new file mode 100644 index 00000000000..0fc40697a76 --- /dev/null +++ b/site/public/v1/smartphones/moto-z3-td-lte-us-64gb-xt1929-17-moto-z-3rd-gen/index.json @@ -0,0 +1,76 @@ +{ + "id": 1993, + "slug": "moto-z3-td-lte-us-64gb-xt1929-17-moto-z-3rd-gen", + "name": "Moto Z3 TD-LTE US 64GB XT1929-17 / Moto Z 3rd gen", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 122, + "slug": "snapdragon-835", + "name": "Snapdragon 835", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 540", + "url": "/v1/socs/snapdragon-835" + }, + "release_date": "2018-09-08", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.01, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 23.1, + "camera": 5.0, + "battery": 0.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.400874", + "updated_at": "2026-06-19T00:43:44.400874" +} diff --git a/site/public/v1/smartphones/moto-z3-td-lte-us-64gb-xt1929-17-moto-z-3rd-gen/score/index.json b/site/public/v1/smartphones/moto-z3-td-lte-us-64gb-xt1929-17-moto-z-3rd-gen/score/index.json new file mode 100644 index 00000000000..57c68bf3b67 --- /dev/null +++ b/site/public/v1/smartphones/moto-z3-td-lte-us-64gb-xt1929-17-moto-z-3rd-gen/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 23.1, + "camera": 5.0, + "battery": 0.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/moto-z4-lte-a-us-xt1980-4/index.json b/site/public/v1/smartphones/moto-z4-lte-a-us-xt1980-4/index.json new file mode 100644 index 00000000000..7dea0a19a4d --- /dev/null +++ b/site/public/v1/smartphones/moto-z4-lte-a-us-xt1980-4/index.json @@ -0,0 +1,76 @@ +{ + "id": 2073, + "slug": "moto-z4-lte-a-us-xt1980-4", + "name": "Moto Z4 LTE-A US XT1980-4", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-06-06", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.4 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 3600, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 16.6, + "battery": 9.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.410874", + "updated_at": "2026-06-19T00:43:44.410874" +} diff --git a/site/public/v1/smartphones/moto-z4-lte-a-us-xt1980-4/score/index.json b/site/public/v1/smartphones/moto-z4-lte-a-us-xt1980-4/score/index.json new file mode 100644 index 00000000000..8e466810825 --- /dev/null +++ b/site/public/v1/smartphones/moto-z4-lte-a-us-xt1980-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 16.6, + "battery": 9.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/moto-z4-td-lte-na-xt1980-3/index.json b/site/public/v1/smartphones/moto-z4-td-lte-na-xt1980-3/index.json new file mode 100644 index 00000000000..a5effe8ae9e --- /dev/null +++ b/site/public/v1/smartphones/moto-z4-td-lte-na-xt1980-3/index.json @@ -0,0 +1,76 @@ +{ + "id": 2074, + "slug": "moto-z4-td-lte-na-xt1980-3", + "name": "Moto Z4 TD-LTE NA XT1980-3", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-06-06", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.4 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 3600, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 16.6, + "battery": 9.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.410874", + "updated_at": "2026-06-19T00:43:44.410874" +} diff --git a/site/public/v1/smartphones/moto-z4-td-lte-na-xt1980-3/score/index.json b/site/public/v1/smartphones/moto-z4-td-lte-na-xt1980-3/score/index.json new file mode 100644 index 00000000000..8e466810825 --- /dev/null +++ b/site/public/v1/smartphones/moto-z4-td-lte-na-xt1980-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 16.6, + "battery": 9.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/n0030ww-bold-n1-dual-sim-lte/index.json b/site/public/v1/smartphones/n0030ww-bold-n1-dual-sim-lte/index.json new file mode 100644 index 00000000000..5687fe90deb --- /dev/null +++ b/site/public/v1/smartphones/n0030ww-bold-n1-dual-sim-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 476, + "slug": "n0030ww-bold-n1-dual-sim-lte", + "name": "N0030WW BOLD N1 Dual SIM LTE", + "brand": { + "id": 104, + "slug": "blu", + "name": "BLU Products", + "country": "US", + "url": "/v1/brands/blu" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": 0.0, + "camera": 6.3, + "battery": 8.1, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.172927", + "updated_at": "2026-06-19T00:43:44.172927" +} diff --git a/site/public/v1/smartphones/n0030ww-bold-n1-dual-sim-lte/score/index.json b/site/public/v1/smartphones/n0030ww-bold-n1-dual-sim-lte/score/index.json new file mode 100644 index 00000000000..5278405f834 --- /dev/null +++ b/site/public/v1/smartphones/n0030ww-bold-n1-dual-sim-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": 0.0, + "camera": 6.3, + "battery": 8.1, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/n10-pro-dual-sim-td-lte-cn-128gb-sac-a0/index.json b/site/public/v1/smartphones/n10-pro-dual-sim-td-lte-cn-128gb-sac-a0/index.json new file mode 100644 index 00000000000..42b507f2cae --- /dev/null +++ b/site/public/v1/smartphones/n10-pro-dual-sim-td-lte-cn-128gb-sac-a0/index.json @@ -0,0 +1,76 @@ +{ + "id": 501, + "slug": "n10-pro-dual-sim-td-lte-cn-128gb-sac-a0", + "name": "N10 Pro Dual SIM TD-LTE CN 128GB SAC-A0", + "brand": { + "id": 10, + "slug": "coolpad", + "name": "Coolpad", + "country": "CN", + "url": "/v1/brands/coolpad" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2020-01-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 21.5, + "camera": 6.3, + "battery": 15.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.175933", + "updated_at": "2026-06-19T00:43:44.175933" +} diff --git a/site/public/v1/smartphones/n10-pro-dual-sim-td-lte-cn-128gb-sac-a0/score/index.json b/site/public/v1/smartphones/n10-pro-dual-sim-td-lte-cn-128gb-sac-a0/score/index.json new file mode 100644 index 00000000000..17a900bad54 --- /dev/null +++ b/site/public/v1/smartphones/n10-pro-dual-sim-td-lte-cn-128gb-sac-a0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 21.5, + "camera": 6.3, + "battery": 15.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/n100-dual-sim-lte-a-emea/index.json b/site/public/v1/smartphones/n100-dual-sim-lte-a-emea/index.json new file mode 100644 index 00000000000..26aefd0dc47 --- /dev/null +++ b/site/public/v1/smartphones/n100-dual-sim-lte-a-emea/index.json @@ -0,0 +1,76 @@ +{ + "id": 512, + "slug": "n100-dual-sim-lte-a-emea", + "name": "N100 Dual SIM LTE-A EMEA", + "brand": { + "id": 11, + "slug": "doogee", + "name": "DOOGEE", + "country": "CN", + "url": "/v1/brands/doogee" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 21.5 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 10000, + "charging_wired_w": 24.0, + "charging_wireless_w": null, + "weight_g": 275.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.0, + "performance": 0.0, + "camera": 8.1, + "battery": 46.7, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.177932", + "updated_at": "2026-06-19T00:43:44.177932" +} diff --git a/site/public/v1/smartphones/n100-dual-sim-lte-a-emea/score/index.json b/site/public/v1/smartphones/n100-dual-sim-lte-a-emea/score/index.json new file mode 100644 index 00000000000..a9a4ff82dd2 --- /dev/null +++ b/site/public/v1/smartphones/n100-dual-sim-lte-a-emea/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.0, + "performance": 0.0, + "camera": 8.1, + "battery": 46.7, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/n20-dual-sim-lte-a-emea/index.json b/site/public/v1/smartphones/n20-dual-sim-lte-a-emea/index.json new file mode 100644 index 00000000000..d201fbd4d90 --- /dev/null +++ b/site/public/v1/smartphones/n20-dual-sim-lte-a-emea/index.json @@ -0,0 +1,76 @@ +{ + "id": 513, + "slug": "n20-dual-sim-lte-a-emea", + "name": "N20 Dual SIM LTE-A EMEA", + "brand": { + "id": 11, + "slug": "doogee", + "name": "DOOGEE", + "country": "CN", + "url": "/v1/brands/doogee" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4350, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Yes", + "usb": "Yes" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": 0.0, + "camera": 6.3, + "battery": 20.2, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.177932", + "updated_at": "2026-06-19T00:43:44.177932" +} diff --git a/site/public/v1/smartphones/n20-dual-sim-lte-a-emea/score/index.json b/site/public/v1/smartphones/n20-dual-sim-lte-a-emea/score/index.json new file mode 100644 index 00000000000..57f06c6b8c9 --- /dev/null +++ b/site/public/v1/smartphones/n20-dual-sim-lte-a-emea/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": 0.0, + "camera": 6.3, + "battery": 20.2, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/nord-2-5g-premium-edition-dual-sim-td-lte-in-128gb-dn2101/index.json b/site/public/v1/smartphones/nord-2-5g-premium-edition-dual-sim-td-lte-in-128gb-dn2101/index.json new file mode 100644 index 00000000000..962f0342124 --- /dev/null +++ b/site/public/v1/smartphones/nord-2-5g-premium-edition-dual-sim-td-lte-in-128gb-dn2101/index.json @@ -0,0 +1,77 @@ +{ + "id": 2649, + "slug": "nord-2-5g-premium-edition-dual-sim-td-lte-in-128gb-dn2101", + "name": "Nord 2 5G Premium Edition Dual SIM TD-LTE IN 128GB DN2101", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-07-28", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.8, + "performance": 3.9, + "camera": 17.2, + "battery": 37.0, + "display": 40.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.486302", + "updated_at": "2026-06-19T00:43:44.486302" +} diff --git a/site/public/v1/smartphones/nord-2-5g-premium-edition-dual-sim-td-lte-in-128gb-dn2101/score/index.json b/site/public/v1/smartphones/nord-2-5g-premium-edition-dual-sim-td-lte-in-128gb-dn2101/score/index.json new file mode 100644 index 00000000000..24b6409ebcf --- /dev/null +++ b/site/public/v1/smartphones/nord-2-5g-premium-edition-dual-sim-td-lte-in-128gb-dn2101/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.8, + "performance": 3.9, + "camera": 17.2, + "battery": 37.0, + "display": 40.9, + "value": null +} diff --git a/site/public/v1/smartphones/nord-2-5g-premium-edition-global-dual-sim-td-lte-128gb-dn2103/index.json b/site/public/v1/smartphones/nord-2-5g-premium-edition-global-dual-sim-td-lte-128gb-dn2103/index.json new file mode 100644 index 00000000000..a0c09897af2 --- /dev/null +++ b/site/public/v1/smartphones/nord-2-5g-premium-edition-global-dual-sim-td-lte-128gb-dn2103/index.json @@ -0,0 +1,77 @@ +{ + "id": 2650, + "slug": "nord-2-5g-premium-edition-global-dual-sim-td-lte-128gb-dn2103", + "name": "Nord 2 5G Premium Edition Global Dual SIM TD-LTE 128GB DN2103", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-07-28", + "msrp_usd": 429, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.8, + "performance": 3.9, + "camera": 17.2, + "battery": 37.0, + "display": 40.9, + "value": 57.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.486302", + "updated_at": "2026-06-19T00:43:44.486302" +} diff --git a/site/public/v1/smartphones/nord-2-5g-premium-edition-global-dual-sim-td-lte-128gb-dn2103/score/index.json b/site/public/v1/smartphones/nord-2-5g-premium-edition-global-dual-sim-td-lte-128gb-dn2103/score/index.json new file mode 100644 index 00000000000..e0a5478916e --- /dev/null +++ b/site/public/v1/smartphones/nord-2-5g-premium-edition-global-dual-sim-td-lte-128gb-dn2103/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.8, + "performance": 3.9, + "camera": 17.2, + "battery": 37.0, + "display": 40.9, + "value": 57.4 +} diff --git a/site/public/v1/smartphones/nord-2-5g-standard-edition-dual-sim-td-lte-in-128gb-dn2101/index.json b/site/public/v1/smartphones/nord-2-5g-standard-edition-dual-sim-td-lte-in-128gb-dn2101/index.json new file mode 100644 index 00000000000..3d06b934f13 --- /dev/null +++ b/site/public/v1/smartphones/nord-2-5g-standard-edition-dual-sim-td-lte-in-128gb-dn2101/index.json @@ -0,0 +1,77 @@ +{ + "id": 2651, + "slug": "nord-2-5g-standard-edition-dual-sim-td-lte-in-128gb-dn2101", + "name": "Nord 2 5G Standard Edition Dual SIM TD-LTE IN 128GB DN2101", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-08-29", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 2.4, + "camera": 17.2, + "battery": 37.0, + "display": 40.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.486302", + "updated_at": "2026-06-19T00:43:44.486302" +} diff --git a/site/public/v1/smartphones/nord-2-5g-standard-edition-dual-sim-td-lte-in-128gb-dn2101/score/index.json b/site/public/v1/smartphones/nord-2-5g-standard-edition-dual-sim-td-lte-in-128gb-dn2101/score/index.json new file mode 100644 index 00000000000..bc49ad80816 --- /dev/null +++ b/site/public/v1/smartphones/nord-2-5g-standard-edition-dual-sim-td-lte-in-128gb-dn2101/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 2.4, + "camera": 17.2, + "battery": 37.0, + "display": 40.9, + "value": null +} diff --git a/site/public/v1/smartphones/nord-2-5g-top-edition-dual-sim-td-lte-in-256gb-dn2101/index.json b/site/public/v1/smartphones/nord-2-5g-top-edition-dual-sim-td-lte-in-256gb-dn2101/index.json new file mode 100644 index 00000000000..e5ed9caae17 --- /dev/null +++ b/site/public/v1/smartphones/nord-2-5g-top-edition-dual-sim-td-lte-in-256gb-dn2101/index.json @@ -0,0 +1,77 @@ +{ + "id": 2652, + "slug": "nord-2-5g-top-edition-dual-sim-td-lte-in-256gb-dn2101", + "name": "Nord 2 5G Top Edition Dual SIM TD-LTE IN 256GB DN2101", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-07-28", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.5, + "performance": 6.9, + "camera": 17.2, + "battery": 37.0, + "display": 40.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.487308", + "updated_at": "2026-06-19T00:43:44.487308" +} diff --git a/site/public/v1/smartphones/nord-2-5g-top-edition-dual-sim-td-lte-in-256gb-dn2101/score/index.json b/site/public/v1/smartphones/nord-2-5g-top-edition-dual-sim-td-lte-in-256gb-dn2101/score/index.json new file mode 100644 index 00000000000..c2909bdb225 --- /dev/null +++ b/site/public/v1/smartphones/nord-2-5g-top-edition-dual-sim-td-lte-in-256gb-dn2101/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.5, + "performance": 6.9, + "camera": 17.2, + "battery": 37.0, + "display": 40.9, + "value": null +} diff --git a/site/public/v1/smartphones/nord-2-5g-top-edition-global-dual-sim-td-lte-256gb-dn2103/index.json b/site/public/v1/smartphones/nord-2-5g-top-edition-global-dual-sim-td-lte-256gb-dn2103/index.json new file mode 100644 index 00000000000..b302db49cbe --- /dev/null +++ b/site/public/v1/smartphones/nord-2-5g-top-edition-global-dual-sim-td-lte-256gb-dn2103/index.json @@ -0,0 +1,77 @@ +{ + "id": 2653, + "slug": "nord-2-5g-top-edition-global-dual-sim-td-lte-256gb-dn2103", + "name": "Nord 2 5G Top Edition Global Dual SIM TD-LTE 256GB DN2103", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-07-28", + "msrp_usd": 539, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.5, + "performance": 6.9, + "camera": 17.2, + "battery": 37.0, + "display": 40.9, + "value": 53.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.487308", + "updated_at": "2026-06-19T00:43:44.487308" +} diff --git a/site/public/v1/smartphones/nord-2-5g-top-edition-global-dual-sim-td-lte-256gb-dn2103/score/index.json b/site/public/v1/smartphones/nord-2-5g-top-edition-global-dual-sim-td-lte-256gb-dn2103/score/index.json new file mode 100644 index 00000000000..361c8051d50 --- /dev/null +++ b/site/public/v1/smartphones/nord-2-5g-top-edition-global-dual-sim-td-lte-256gb-dn2103/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.5, + "performance": 6.9, + "camera": 17.2, + "battery": 37.0, + "display": 40.9, + "value": 53.5 +} diff --git a/site/public/v1/smartphones/nord-3/index.json b/site/public/v1/smartphones/nord-3/index.json new file mode 100644 index 00000000000..d81e2c15b14 --- /dev/null +++ b/site/public/v1/smartphones/nord-3/index.json @@ -0,0 +1,70 @@ +{ + "id": 2692, + "slug": "nord-3", + "name": "Nord 3", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 70, + "slug": "dimensity-9000", + "name": "Dimensity 9000", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 4.0, + "gpu_name": "Mali-G710", + "url": "/v1/socs/dimensity-9000" + }, + "release_date": "2023-01-01", + "msrp_usd": 499, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.74 + }, + "cameras": [ + { + "type": "main", + "mp": 50.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 17.1, + "camera": 17.1, + "battery": 45.0, + "display": null, + "value": 55.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.492308", + "updated_at": "2026-06-19T00:43:44.492308" +} diff --git a/site/public/v1/smartphones/nord-3/score/index.json b/site/public/v1/smartphones/nord-3/score/index.json new file mode 100644 index 00000000000..c5b9795d19d --- /dev/null +++ b/site/public/v1/smartphones/nord-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 17.1, + "camera": 17.1, + "battery": 45.0, + "display": null, + "value": 55.5 +} diff --git a/site/public/v1/smartphones/nord-5g-dual-sim-td-lte-in-128gb-ac2001/index.json b/site/public/v1/smartphones/nord-5g-dual-sim-td-lte-in-128gb-ac2001/index.json new file mode 100644 index 00000000000..12a343ee8f1 --- /dev/null +++ b/site/public/v1/smartphones/nord-5g-dual-sim-td-lte-in-128gb-ac2001/index.json @@ -0,0 +1,77 @@ +{ + "id": 2595, + "slug": "nord-5g-dual-sim-td-lte-in-128gb-ac2001", + "name": "Nord 5G Dual SIM TD-LTE IN 128GB AC2001", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-08-04", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4115, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 3.0, + "camera": 16.5, + "battery": 19.6, + "display": 40.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.478785", + "updated_at": "2026-06-19T00:43:44.478785" +} diff --git a/site/public/v1/smartphones/nord-5g-dual-sim-td-lte-in-128gb-ac2001/score/index.json b/site/public/v1/smartphones/nord-5g-dual-sim-td-lte-in-128gb-ac2001/score/index.json new file mode 100644 index 00000000000..c9b030299c5 --- /dev/null +++ b/site/public/v1/smartphones/nord-5g-dual-sim-td-lte-in-128gb-ac2001/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 3.0, + "camera": 16.5, + "battery": 19.6, + "display": 40.9, + "value": null +} diff --git a/site/public/v1/smartphones/nord-5g-dual-sim-td-lte-in-256gb-ac2001/index.json b/site/public/v1/smartphones/nord-5g-dual-sim-td-lte-in-256gb-ac2001/index.json new file mode 100644 index 00000000000..e79445f6023 --- /dev/null +++ b/site/public/v1/smartphones/nord-5g-dual-sim-td-lte-in-256gb-ac2001/index.json @@ -0,0 +1,77 @@ +{ + "id": 2596, + "slug": "nord-5g-dual-sim-td-lte-in-256gb-ac2001", + "name": "Nord 5G Dual SIM TD-LTE IN 256GB AC2001", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-08-04", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4115, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 6.0, + "camera": 16.5, + "battery": 19.6, + "display": 40.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.478785", + "updated_at": "2026-06-19T00:43:44.478785" +} diff --git a/site/public/v1/smartphones/nord-5g-dual-sim-td-lte-in-256gb-ac2001/score/index.json b/site/public/v1/smartphones/nord-5g-dual-sim-td-lte-in-256gb-ac2001/score/index.json new file mode 100644 index 00000000000..6070d3b4f2e --- /dev/null +++ b/site/public/v1/smartphones/nord-5g-dual-sim-td-lte-in-256gb-ac2001/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 6.0, + "camera": 16.5, + "battery": 19.6, + "display": 40.9, + "value": null +} diff --git a/site/public/v1/smartphones/nord-5g-dual-sim-td-lte-in-64gb-ac2001/index.json b/site/public/v1/smartphones/nord-5g-dual-sim-td-lte-in-64gb-ac2001/index.json new file mode 100644 index 00000000000..5c95974bd23 --- /dev/null +++ b/site/public/v1/smartphones/nord-5g-dual-sim-td-lte-in-64gb-ac2001/index.json @@ -0,0 +1,77 @@ +{ + "id": 2597, + "slug": "nord-5g-dual-sim-td-lte-in-64gb-ac2001", + "name": "Nord 5G Dual SIM TD-LTE IN 64GB AC2001", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-09-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4115, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 16.5, + "battery": 19.6, + "display": 40.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.478785", + "updated_at": "2026-06-19T00:43:44.478785" +} diff --git a/site/public/v1/smartphones/nord-5g-dual-sim-td-lte-in-64gb-ac2001/score/index.json b/site/public/v1/smartphones/nord-5g-dual-sim-td-lte-in-64gb-ac2001/score/index.json new file mode 100644 index 00000000000..da0e0f99f50 --- /dev/null +++ b/site/public/v1/smartphones/nord-5g-dual-sim-td-lte-in-64gb-ac2001/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 16.5, + "battery": 19.6, + "display": 40.9, + "value": null +} diff --git a/site/public/v1/smartphones/nord-5g-global-dual-sim-td-lte-128gb-ac2003-oneplus-z/index.json b/site/public/v1/smartphones/nord-5g-global-dual-sim-td-lte-128gb-ac2003-oneplus-z/index.json new file mode 100644 index 00000000000..463a5eea973 --- /dev/null +++ b/site/public/v1/smartphones/nord-5g-global-dual-sim-td-lte-128gb-ac2003-oneplus-z/index.json @@ -0,0 +1,77 @@ +{ + "id": 2598, + "slug": "nord-5g-global-dual-sim-td-lte-128gb-ac2003-oneplus-z", + "name": "Nord 5G Global Dual SIM TD-LTE 128GB AC2003 / OnePlus Z", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-08-04", + "msrp_usd": 379, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4115, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 3.0, + "camera": 16.5, + "battery": 19.6, + "display": 40.9, + "value": 57.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.479202", + "updated_at": "2026-06-19T00:43:44.479202" +} diff --git a/site/public/v1/smartphones/nord-5g-global-dual-sim-td-lte-128gb-ac2003-oneplus-z/score/index.json b/site/public/v1/smartphones/nord-5g-global-dual-sim-td-lte-128gb-ac2003-oneplus-z/score/index.json new file mode 100644 index 00000000000..fad5b844e3d --- /dev/null +++ b/site/public/v1/smartphones/nord-5g-global-dual-sim-td-lte-128gb-ac2003-oneplus-z/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 3.0, + "camera": 16.5, + "battery": 19.6, + "display": 40.9, + "value": 57.0 +} diff --git a/site/public/v1/smartphones/nord-5g-global-dual-sim-td-lte-256gb-ac2003/index.json b/site/public/v1/smartphones/nord-5g-global-dual-sim-td-lte-256gb-ac2003/index.json new file mode 100644 index 00000000000..c72d828651b --- /dev/null +++ b/site/public/v1/smartphones/nord-5g-global-dual-sim-td-lte-256gb-ac2003/index.json @@ -0,0 +1,77 @@ +{ + "id": 2599, + "slug": "nord-5g-global-dual-sim-td-lte-256gb-ac2003", + "name": "Nord 5G Global Dual SIM TD-LTE 256GB AC2003", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-08-04", + "msrp_usd": 469, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4115, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 6.0, + "camera": 16.5, + "battery": 19.6, + "display": 40.9, + "value": 53.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.479202", + "updated_at": "2026-06-19T00:43:44.479202" +} diff --git a/site/public/v1/smartphones/nord-5g-global-dual-sim-td-lte-256gb-ac2003/score/index.json b/site/public/v1/smartphones/nord-5g-global-dual-sim-td-lte-256gb-ac2003/score/index.json new file mode 100644 index 00000000000..e4c9c050cd2 --- /dev/null +++ b/site/public/v1/smartphones/nord-5g-global-dual-sim-td-lte-256gb-ac2003/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 6.0, + "camera": 16.5, + "battery": 19.6, + "display": 40.9, + "value": 53.9 +} diff --git a/site/public/v1/smartphones/nord-ce-3-lite/index.json b/site/public/v1/smartphones/nord-ce-3-lite/index.json new file mode 100644 index 00000000000..19597ebac7a --- /dev/null +++ b/site/public/v1/smartphones/nord-ce-3-lite/index.json @@ -0,0 +1,70 @@ +{ + "id": 2693, + "slug": "nord-ce-3-lite", + "name": "Nord CE 3 Lite", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 153, + "slug": "snapdragon-695", + "name": "Snapdragon 695 5G", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 6.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-695" + }, + "release_date": "2023-01-01", + "msrp_usd": 299, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.72 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 3.0, + "camera": 35.7, + "battery": 35.0, + "display": null, + "value": 62.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.492308", + "updated_at": "2026-06-19T00:43:44.492308" +} diff --git a/site/public/v1/smartphones/nord-ce-3-lite/score/index.json b/site/public/v1/smartphones/nord-ce-3-lite/score/index.json new file mode 100644 index 00000000000..631ea19de64 --- /dev/null +++ b/site/public/v1/smartphones/nord-ce-3-lite/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 3.0, + "camera": 35.7, + "battery": 35.0, + "display": null, + "value": 62.3 +} diff --git a/site/public/v1/smartphones/nord-ce-5g/index.json b/site/public/v1/smartphones/nord-ce-5g/index.json new file mode 100644 index 00000000000..8eaeb555afd --- /dev/null +++ b/site/public/v1/smartphones/nord-ce-5g/index.json @@ -0,0 +1,70 @@ +{ + "id": 2655, + "slug": "nord-ce-5g", + "name": "Nord CE 5G", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 146, + "slug": "snapdragon-750g", + "name": "Snapdragon 750G", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-750g" + }, + "release_date": "2021-01-01", + "msrp_usd": 299, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 1.5, + "camera": 21.6, + "battery": 22.5, + "display": null, + "value": 57.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.487308", + "updated_at": "2026-06-19T00:43:44.487308" +} diff --git a/site/public/v1/smartphones/nord-ce-5g/score/index.json b/site/public/v1/smartphones/nord-ce-5g/score/index.json new file mode 100644 index 00000000000..399897c06fb --- /dev/null +++ b/site/public/v1/smartphones/nord-ce-5g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 1.5, + "camera": 21.6, + "battery": 22.5, + "display": null, + "value": 57.6 +} diff --git a/site/public/v1/smartphones/nord-n10-5g-global-dual-sim-td-lte-128gb-be2029/index.json b/site/public/v1/smartphones/nord-n10-5g-global-dual-sim-td-lte-128gb-be2029/index.json new file mode 100644 index 00000000000..e840e4338bb --- /dev/null +++ b/site/public/v1/smartphones/nord-n10-5g-global-dual-sim-td-lte-128gb-be2029/index.json @@ -0,0 +1,77 @@ +{ + "id": 2600, + "slug": "nord-n10-5g-global-dual-sim-td-lte-128gb-be2029", + "name": "Nord N10 5G Global Dual SIM TD-LTE 128GB BE2029", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 143, + "slug": "snapdragon-690", + "name": "Snapdragon 690", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619L", + "url": "/v1/socs/snapdragon-690" + }, + "release_date": "2020-11-21", + "msrp_usd": 329, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.49, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 406 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.5, + "performance": 1.5, + "camera": 21.5, + "battery": 22.3, + "display": 40.6, + "value": 59.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.479202", + "updated_at": "2026-06-19T00:43:44.479202" +} diff --git a/site/public/v1/smartphones/nord-n10-5g-global-dual-sim-td-lte-128gb-be2029/score/index.json b/site/public/v1/smartphones/nord-n10-5g-global-dual-sim-td-lte-128gb-be2029/score/index.json new file mode 100644 index 00000000000..0d0604c4a74 --- /dev/null +++ b/site/public/v1/smartphones/nord-n10-5g-global-dual-sim-td-lte-128gb-be2029/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.5, + "performance": 1.5, + "camera": 21.5, + "battery": 22.3, + "display": 40.6, + "value": 59.6 +} diff --git a/site/public/v1/smartphones/nord-n10-5g-td-lte-na-128gb-be2026/index.json b/site/public/v1/smartphones/nord-n10-5g-td-lte-na-128gb-be2026/index.json new file mode 100644 index 00000000000..870892c13c3 --- /dev/null +++ b/site/public/v1/smartphones/nord-n10-5g-td-lte-na-128gb-be2026/index.json @@ -0,0 +1,77 @@ +{ + "id": 2657, + "slug": "nord-n10-5g-td-lte-na-128gb-be2026", + "name": "Nord N10 5G TD-LTE NA 128GB BE2026", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 143, + "slug": "snapdragon-690", + "name": "Snapdragon 690", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619L", + "url": "/v1/socs/snapdragon-690" + }, + "release_date": "2021-01-14", + "msrp_usd": 389, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.49, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 406 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.5, + "performance": 1.5, + "camera": 21.5, + "battery": 22.3, + "display": 40.6, + "value": 57.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.487308", + "updated_at": "2026-06-19T00:43:44.487308" +} diff --git a/site/public/v1/smartphones/nord-n10-5g-td-lte-na-128gb-be2026/score/index.json b/site/public/v1/smartphones/nord-n10-5g-td-lte-na-128gb-be2026/score/index.json new file mode 100644 index 00000000000..c399ef11134 --- /dev/null +++ b/site/public/v1/smartphones/nord-n10-5g-td-lte-na-128gb-be2026/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.5, + "performance": 1.5, + "camera": 21.5, + "battery": 22.3, + "display": 40.6, + "value": 57.4 +} diff --git a/site/public/v1/smartphones/nord-n10-5g-td-lte-us-128gb-be2028/index.json b/site/public/v1/smartphones/nord-n10-5g-td-lte-us-128gb-be2028/index.json new file mode 100644 index 00000000000..25d81c126d7 --- /dev/null +++ b/site/public/v1/smartphones/nord-n10-5g-td-lte-us-128gb-be2028/index.json @@ -0,0 +1,77 @@ +{ + "id": 2658, + "slug": "nord-n10-5g-td-lte-us-128gb-be2028", + "name": "Nord N10 5G TD-LTE US 128GB BE2028", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 143, + "slug": "snapdragon-690", + "name": "Snapdragon 690", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619L", + "url": "/v1/socs/snapdragon-690" + }, + "release_date": "2021-01-14", + "msrp_usd": 300, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.49, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 406 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.5, + "performance": 1.5, + "camera": 21.5, + "battery": 22.3, + "display": 40.6, + "value": 60.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.487308", + "updated_at": "2026-06-19T00:43:44.487308" +} diff --git a/site/public/v1/smartphones/nord-n10-5g-td-lte-us-128gb-be2028/score/index.json b/site/public/v1/smartphones/nord-n10-5g-td-lte-us-128gb-be2028/score/index.json new file mode 100644 index 00000000000..74565c44080 --- /dev/null +++ b/site/public/v1/smartphones/nord-n10-5g-td-lte-us-128gb-be2028/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.5, + "performance": 1.5, + "camera": 21.5, + "battery": 22.3, + "display": 40.6, + "value": 60.8 +} diff --git a/site/public/v1/smartphones/nord-n10-5g/index.json b/site/public/v1/smartphones/nord-n10-5g/index.json new file mode 100644 index 00000000000..f9c9a5b5607 --- /dev/null +++ b/site/public/v1/smartphones/nord-n10-5g/index.json @@ -0,0 +1,70 @@ +{ + "id": 2601, + "slug": "nord-n10-5g", + "name": "Nord N10 5G", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 143, + "slug": "snapdragon-690", + "name": "Snapdragon 690", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619L", + "url": "/v1/socs/snapdragon-690" + }, + "release_date": "2020-01-01", + "msrp_usd": 299, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.49 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 1.5, + "camera": 21.6, + "battery": 19.5, + "display": null, + "value": 57.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.479202", + "updated_at": "2026-06-19T00:43:44.479202" +} diff --git a/site/public/v1/smartphones/nord-n10-5g/score/index.json b/site/public/v1/smartphones/nord-n10-5g/score/index.json new file mode 100644 index 00000000000..7e08ffa19b8 --- /dev/null +++ b/site/public/v1/smartphones/nord-n10-5g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 1.5, + "camera": 21.6, + "battery": 19.5, + "display": null, + "value": 57.1 +} diff --git a/site/public/v1/smartphones/nord-n100-global-dual-sim-td-lte-64gb-be2013/index.json b/site/public/v1/smartphones/nord-n100-global-dual-sim-td-lte-64gb-be2013/index.json new file mode 100644 index 00000000000..3fdd0b81f5e --- /dev/null +++ b/site/public/v1/smartphones/nord-n100-global-dual-sim-td-lte-64gb-be2013/index.json @@ -0,0 +1,76 @@ +{ + "id": 2603, + "slug": "nord-n100-global-dual-sim-td-lte-64gb-be2013", + "name": "Nord N100 Global Dual SIM TD-LTE 64GB BE2013", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2020-10-26", + "msrp_usd": 179, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": 58.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.479784", + "updated_at": "2026-06-19T00:43:44.479784" +} diff --git a/site/public/v1/smartphones/nord-n100-global-dual-sim-td-lte-64gb-be2013/score/index.json b/site/public/v1/smartphones/nord-n100-global-dual-sim-td-lte-64gb-be2013/score/index.json new file mode 100644 index 00000000000..6fade42125e --- /dev/null +++ b/site/public/v1/smartphones/nord-n100-global-dual-sim-td-lte-64gb-be2013/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": 58.9 +} diff --git a/site/public/v1/smartphones/nord-n100-td-lte-na-64gb-be2011/index.json b/site/public/v1/smartphones/nord-n100-td-lte-na-64gb-be2011/index.json new file mode 100644 index 00000000000..09aea045ecc --- /dev/null +++ b/site/public/v1/smartphones/nord-n100-td-lte-na-64gb-be2011/index.json @@ -0,0 +1,76 @@ +{ + "id": 2659, + "slug": "nord-n100-td-lte-na-64gb-be2011", + "name": "Nord N100 TD-LTE NA 64GB BE2011", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2021-01-14", + "msrp_usd": 4889, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": 8.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.488325", + "updated_at": "2026-06-19T00:43:44.488325" +} diff --git a/site/public/v1/smartphones/nord-n100-td-lte-na-64gb-be2011/score/index.json b/site/public/v1/smartphones/nord-n100-td-lte-na-64gb-be2011/score/index.json new file mode 100644 index 00000000000..f8cce0ff141 --- /dev/null +++ b/site/public/v1/smartphones/nord-n100-td-lte-na-64gb-be2011/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": 8.8 +} diff --git a/site/public/v1/smartphones/nord-n100-td-lte-us-64gb-be2015/index.json b/site/public/v1/smartphones/nord-n100-td-lte-us-64gb-be2015/index.json new file mode 100644 index 00000000000..8bea5654862 --- /dev/null +++ b/site/public/v1/smartphones/nord-n100-td-lte-us-64gb-be2015/index.json @@ -0,0 +1,76 @@ +{ + "id": 2660, + "slug": "nord-n100-td-lte-us-64gb-be2015", + "name": "Nord N100 TD-LTE US 64GB BE2015", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2021-01-14", + "msrp_usd": 180, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": 58.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.488325", + "updated_at": "2026-06-19T00:43:44.488325" +} diff --git a/site/public/v1/smartphones/nord-n100-td-lte-us-64gb-be2015/score/index.json b/site/public/v1/smartphones/nord-n100-td-lte-us-64gb-be2015/score/index.json new file mode 100644 index 00000000000..6fade42125e --- /dev/null +++ b/site/public/v1/smartphones/nord-n100-td-lte-us-64gb-be2015/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": 58.9 +} diff --git a/site/public/v1/smartphones/nord-n100/index.json b/site/public/v1/smartphones/nord-n100/index.json new file mode 100644 index 00000000000..23cfbad0eae --- /dev/null +++ b/site/public/v1/smartphones/nord-n100/index.json @@ -0,0 +1,70 @@ +{ + "id": 2604, + "slug": "nord-n100", + "name": "Nord N100", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2020-01-01", + "msrp_usd": 179, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 11.8, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": null, + "value": 55.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.479784", + "updated_at": "2026-06-19T00:43:44.479784" +} diff --git a/site/public/v1/smartphones/nord-n100/score/index.json b/site/public/v1/smartphones/nord-n100/score/index.json new file mode 100644 index 00000000000..06bf7d85e4b --- /dev/null +++ b/site/public/v1/smartphones/nord-n100/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 11.8, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": null, + "value": 55.9 +} diff --git a/site/public/v1/smartphones/nord-n200-5g-td-lte-na-64gb-de2117/index.json b/site/public/v1/smartphones/nord-n200-5g-td-lte-na-64gb-de2117/index.json new file mode 100644 index 00000000000..92101c3fd59 --- /dev/null +++ b/site/public/v1/smartphones/nord-n200-5g-td-lte-na-64gb-de2117/index.json @@ -0,0 +1,77 @@ +{ + "id": 2661, + "slug": "nord-n200-5g-td-lte-na-64gb-de2117", + "name": "Nord N200 5G TD-LTE NA 64GB DE2117", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-06-01", + "msrp_usd": 240, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.49, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 406 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 40.6, + "value": 59.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.488325", + "updated_at": "2026-06-19T00:43:44.488325" +} diff --git a/site/public/v1/smartphones/nord-n200-5g-td-lte-na-64gb-de2117/score/index.json b/site/public/v1/smartphones/nord-n200-5g-td-lte-na-64gb-de2117/score/index.json new file mode 100644 index 00000000000..cf8703f2f84 --- /dev/null +++ b/site/public/v1/smartphones/nord-n200-5g-td-lte-na-64gb-de2117/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 40.6, + "value": 59.5 +} diff --git a/site/public/v1/smartphones/nord-n200-5g-td-lte-us-64gb-de2118/index.json b/site/public/v1/smartphones/nord-n200-5g-td-lte-us-64gb-de2118/index.json new file mode 100644 index 00000000000..41b417e9459 --- /dev/null +++ b/site/public/v1/smartphones/nord-n200-5g-td-lte-us-64gb-de2118/index.json @@ -0,0 +1,77 @@ +{ + "id": 2662, + "slug": "nord-n200-5g-td-lte-us-64gb-de2118", + "name": "Nord N200 5G TD-LTE US 64GB DE2118", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-06-18", + "msrp_usd": 216, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.49, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 406 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 40.6, + "value": 59.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.488325", + "updated_at": "2026-06-19T00:43:44.488325" +} diff --git a/site/public/v1/smartphones/nord-n200-5g-td-lte-us-64gb-de2118/score/index.json b/site/public/v1/smartphones/nord-n200-5g-td-lte-us-64gb-de2118/score/index.json new file mode 100644 index 00000000000..cf8703f2f84 --- /dev/null +++ b/site/public/v1/smartphones/nord-n200-5g-td-lte-us-64gb-de2118/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 40.6, + "value": 59.5 +} diff --git a/site/public/v1/smartphones/nord-n200/index.json b/site/public/v1/smartphones/nord-n200/index.json new file mode 100644 index 00000000000..7a426ea5253 --- /dev/null +++ b/site/public/v1/smartphones/nord-n200/index.json @@ -0,0 +1,70 @@ +{ + "id": 2663, + "slug": "nord-n200", + "name": "Nord N200", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-01-01", + "msrp_usd": 199, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.49 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 11.8, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": null, + "value": 55.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.488325", + "updated_at": "2026-06-19T00:43:44.488325" +} diff --git a/site/public/v1/smartphones/nord-n200/score/index.json b/site/public/v1/smartphones/nord-n200/score/index.json new file mode 100644 index 00000000000..06bf7d85e4b --- /dev/null +++ b/site/public/v1/smartphones/nord-n200/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 11.8, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": null, + "value": 55.9 +} diff --git a/site/public/v1/smartphones/note-5-dual-sim-td-lte/index.json b/site/public/v1/smartphones/note-5-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..cbaa0d26ce2 --- /dev/null +++ b/site/public/v1/smartphones/note-5-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 1326, + "slug": "note-5-dual-sim-td-lte", + "name": "NOTE 5 Dual SIM TD-LTE", + "brand": { + "id": 19, + "slug": "infinix", + "name": "Infinix Mobile", + "country": "CN", + "url": "/v1/brands/infinix" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 0.0, + "camera": 5.1, + "battery": 22.5, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.318605", + "updated_at": "2026-06-19T00:43:44.318605" +} diff --git a/site/public/v1/smartphones/note-5-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/note-5-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..2d577486b35 --- /dev/null +++ b/site/public/v1/smartphones/note-5-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 0.0, + "camera": 5.1, + "battery": 22.5, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/note-5-stylus-dual-sim-td-lte/index.json b/site/public/v1/smartphones/note-5-stylus-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..46b7ec4eb1b --- /dev/null +++ b/site/public/v1/smartphones/note-5-stylus-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 1327, + "slug": "note-5-stylus-dual-sim-td-lte", + "name": "NOTE 5 Stylus Dual SIM TD-LTE", + "brand": { + "id": 19, + "slug": "infinix", + "name": "Infinix Mobile", + "country": "CN", + "url": "/v1/brands/infinix" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.318605", + "updated_at": "2026-06-19T00:43:44.318605" +} diff --git a/site/public/v1/smartphones/note-5-stylus-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/note-5-stylus-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..47bc843d25a --- /dev/null +++ b/site/public/v1/smartphones/note-5-stylus-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/note-6-dual-sim-td-lte-x610/index.json b/site/public/v1/smartphones/note-6-dual-sim-td-lte-x610/index.json new file mode 100644 index 00000000000..277a1663ba7 --- /dev/null +++ b/site/public/v1/smartphones/note-6-dual-sim-td-lte-x610/index.json @@ -0,0 +1,76 @@ +{ + "id": 1333, + "slug": "note-6-dual-sim-td-lte-x610", + "name": "NOTE 6 Dual SIM TD-LTE X610", + "brand": { + "id": 19, + "slug": "infinix", + "name": "Infinix Mobile", + "country": "CN", + "url": "/v1/brands/infinix" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.01, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.319606", + "updated_at": "2026-06-19T00:43:44.319606" +} diff --git a/site/public/v1/smartphones/note-6-dual-sim-td-lte-x610/score/index.json b/site/public/v1/smartphones/note-6-dual-sim-td-lte-x610/score/index.json new file mode 100644 index 00000000000..47bc843d25a --- /dev/null +++ b/site/public/v1/smartphones/note-6-dual-sim-td-lte-x610/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/note-6-td-lte-dual-sim-32gb/index.json b/site/public/v1/smartphones/note-6-td-lte-dual-sim-32gb/index.json new file mode 100644 index 00000000000..d63fd69f0aa --- /dev/null +++ b/site/public/v1/smartphones/note-6-td-lte-dual-sim-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 495, + "slug": "note-6-td-lte-dual-sim-32gb", + "name": "Note 6 TD-LTE Dual SIM 32GB", + "brand": { + "id": 10, + "slug": "coolpad", + "name": "Coolpad", + "country": "CN", + "url": "/v1/brands/coolpad" + }, + "soc": { + "id": 113, + "slug": "snapdragon-435", + "name": "Snapdragon 435", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-435" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4070, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": null, + "camera": 5.2, + "battery": 16.1, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.175933", + "updated_at": "2026-06-19T00:43:44.175933" +} diff --git a/site/public/v1/smartphones/note-6-td-lte-dual-sim-32gb/score/index.json b/site/public/v1/smartphones/note-6-td-lte-dual-sim-32gb/score/index.json new file mode 100644 index 00000000000..d2753a965a9 --- /dev/null +++ b/site/public/v1/smartphones/note-6-td-lte-dual-sim-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": null, + "camera": 5.2, + "battery": 16.1, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/note-6-td-lte-dual-sim-64gb/index.json b/site/public/v1/smartphones/note-6-td-lte-dual-sim-64gb/index.json new file mode 100644 index 00000000000..436179f981c --- /dev/null +++ b/site/public/v1/smartphones/note-6-td-lte-dual-sim-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 496, + "slug": "note-6-td-lte-dual-sim-64gb", + "name": "Note 6 TD-LTE Dual SIM 64GB", + "brand": { + "id": 10, + "slug": "coolpad", + "name": "Coolpad", + "country": "CN", + "url": "/v1/brands/coolpad" + }, + "soc": { + "id": 113, + "slug": "snapdragon-435", + "name": "Snapdragon 435", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-435" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4070, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": null, + "camera": 5.2, + "battery": 16.1, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.175933", + "updated_at": "2026-06-19T00:43:44.175933" +} diff --git a/site/public/v1/smartphones/note-6-td-lte-dual-sim-64gb/score/index.json b/site/public/v1/smartphones/note-6-td-lte-dual-sim-64gb/score/index.json new file mode 100644 index 00000000000..d2753a965a9 --- /dev/null +++ b/site/public/v1/smartphones/note-6-td-lte-dual-sim-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": null, + "camera": 5.2, + "battery": 16.1, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/note-7-dual-sim-lte-a-emea/index.json b/site/public/v1/smartphones/note-7-dual-sim-lte-a-emea/index.json new file mode 100644 index 00000000000..e5d0564b8a4 --- /dev/null +++ b/site/public/v1/smartphones/note-7-dual-sim-lte-a-emea/index.json @@ -0,0 +1,76 @@ +{ + "id": 1357, + "slug": "note-7-dual-sim-lte-a-emea", + "name": "Note 7 Dual SIM LTE-A EMEA", + "brand": { + "id": 19, + "slug": "infinix", + "name": "Infinix Mobile", + "country": "CN", + "url": "/v1/brands/infinix" + }, + "soc": { + "id": 61, + "slug": "helio-g70", + "name": "Helio G70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 2EEMC2", + "url": "/v1/socs/helio-g70" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.95, + "resolution": "720x1640", + "type": "Color IPS TFT LCD display", + "ppi": 258 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.322606", + "updated_at": "2026-06-19T00:43:44.322606" +} diff --git a/site/public/v1/smartphones/note-7-dual-sim-lte-a-emea/score/index.json b/site/public/v1/smartphones/note-7-dual-sim-lte-a-emea/score/index.json new file mode 100644 index 00000000000..cff664419e6 --- /dev/null +++ b/site/public/v1/smartphones/note-7-dual-sim-lte-a-emea/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/note-7-dual-sim-td-lte-apac/index.json b/site/public/v1/smartphones/note-7-dual-sim-td-lte-apac/index.json new file mode 100644 index 00000000000..6d0f53171bb --- /dev/null +++ b/site/public/v1/smartphones/note-7-dual-sim-td-lte-apac/index.json @@ -0,0 +1,76 @@ +{ + "id": 1358, + "slug": "note-7-dual-sim-td-lte-apac", + "name": "Note 7 Dual SIM TD-LTE APAC", + "brand": { + "id": 19, + "slug": "infinix", + "name": "Infinix Mobile", + "country": "CN", + "url": "/v1/brands/infinix" + }, + "soc": { + "id": 61, + "slug": "helio-g70", + "name": "Helio G70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 2EEMC2", + "url": "/v1/socs/helio-g70" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.95, + "resolution": "720x1640", + "type": "Color IPS TFT LCD display", + "ppi": 258 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.322606", + "updated_at": "2026-06-19T00:43:44.322606" +} diff --git a/site/public/v1/smartphones/note-7-dual-sim-td-lte-apac/score/index.json b/site/public/v1/smartphones/note-7-dual-sim-td-lte-apac/score/index.json new file mode 100644 index 00000000000..cff664419e6 --- /dev/null +++ b/site/public/v1/smartphones/note-7-dual-sim-td-lte-apac/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/note-7p-dual-sim-lte/index.json b/site/public/v1/smartphones/note-7p-dual-sim-lte/index.json new file mode 100644 index 00000000000..08b610e5842 --- /dev/null +++ b/site/public/v1/smartphones/note-7p-dual-sim-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 5029, + "slug": "note-7p-dual-sim-lte", + "name": "Note 7P Dual SIM LTE", + "brand": { + "id": 41, + "slug": "ulefone", + "name": "Ulefone", + "country": "CN", + "url": "/v1/brands/ulefone" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-06-28", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "600x1280", + "type": "Color IPS TFT LCD display", + "ppi": 232 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": null, + "camera": 5.0, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.843776", + "updated_at": "2026-06-19T00:43:44.843776" +} diff --git a/site/public/v1/smartphones/note-7p-dual-sim-lte/score/index.json b/site/public/v1/smartphones/note-7p-dual-sim-lte/score/index.json new file mode 100644 index 00000000000..34ff1165e24 --- /dev/null +++ b/site/public/v1/smartphones/note-7p-dual-sim-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": null, + "camera": 5.0, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/note-8-dual-sim-td-lte-cn-32gb-m822q/index.json b/site/public/v1/smartphones/note-8-dual-sim-td-lte-cn-32gb-m822q/index.json new file mode 100644 index 00000000000..f758c225c3c --- /dev/null +++ b/site/public/v1/smartphones/note-8-dual-sim-td-lte-cn-32gb-m822q/index.json @@ -0,0 +1,76 @@ +{ + "id": 1868, + "slug": "note-8-dual-sim-td-lte-cn-32gb-m822q", + "name": "Note 8 Dual SIM TD-LTE CN 32GB M822Q", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2018-11-07", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3600, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 5.0, + "battery": 9.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.384881", + "updated_at": "2026-06-19T00:43:44.384881" +} diff --git a/site/public/v1/smartphones/note-8-dual-sim-td-lte-cn-32gb-m822q/score/index.json b/site/public/v1/smartphones/note-8-dual-sim-td-lte-cn-32gb-m822q/score/index.json new file mode 100644 index 00000000000..c1de6335a3f --- /dev/null +++ b/site/public/v1/smartphones/note-8-dual-sim-td-lte-cn-32gb-m822q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 5.0, + "battery": 9.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/note-8-dual-sim-td-lte-cn-64gb-m822q/index.json b/site/public/v1/smartphones/note-8-dual-sim-td-lte-cn-64gb-m822q/index.json new file mode 100644 index 00000000000..754d9c89716 --- /dev/null +++ b/site/public/v1/smartphones/note-8-dual-sim-td-lte-cn-64gb-m822q/index.json @@ -0,0 +1,76 @@ +{ + "id": 1869, + "slug": "note-8-dual-sim-td-lte-cn-64gb-m822q", + "name": "Note 8 Dual SIM TD-LTE CN 64GB M822Q", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2018-11-07", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3600, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 5.0, + "battery": 9.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.384881", + "updated_at": "2026-06-19T00:43:44.384881" +} diff --git a/site/public/v1/smartphones/note-8-dual-sim-td-lte-cn-64gb-m822q/score/index.json b/site/public/v1/smartphones/note-8-dual-sim-td-lte-cn-64gb-m822q/score/index.json new file mode 100644 index 00000000000..c1de6335a3f --- /dev/null +++ b/site/public/v1/smartphones/note-8-dual-sim-td-lte-cn-64gb-m822q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 5.0, + "battery": 9.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/note-8-global-dual-sim-td-lte-64gb-m822h/index.json b/site/public/v1/smartphones/note-8-global-dual-sim-td-lte-64gb-m822h/index.json new file mode 100644 index 00000000000..345f448c09a --- /dev/null +++ b/site/public/v1/smartphones/note-8-global-dual-sim-td-lte-64gb-m822h/index.json @@ -0,0 +1,76 @@ +{ + "id": 1870, + "slug": "note-8-global-dual-sim-td-lte-64gb-m822h", + "name": "Note 8 Global Dual SIM TD-LTE 64GB M822H", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2018-12-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3600, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 5.0, + "battery": 9.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.385882", + "updated_at": "2026-06-19T00:43:44.385882" +} diff --git a/site/public/v1/smartphones/note-8-global-dual-sim-td-lte-64gb-m822h/score/index.json b/site/public/v1/smartphones/note-8-global-dual-sim-td-lte-64gb-m822h/score/index.json new file mode 100644 index 00000000000..c1de6335a3f --- /dev/null +++ b/site/public/v1/smartphones/note-8-global-dual-sim-td-lte-64gb-m822h/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 5.0, + "battery": 9.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/note-9-premium-edition-dual-sim-td-lte-cn-64gb-m923q/index.json b/site/public/v1/smartphones/note-9-premium-edition-dual-sim-td-lte-cn-64gb-m923q/index.json new file mode 100644 index 00000000000..021da500136 --- /dev/null +++ b/site/public/v1/smartphones/note-9-premium-edition-dual-sim-td-lte-cn-64gb-m923q/index.json @@ -0,0 +1,76 @@ +{ + "id": 1892, + "slug": "note-9-premium-edition-dual-sim-td-lte-cn-64gb-m923q", + "name": "Note 9 Premium Edition Dual SIM TD-LTE CN 64GB M923Q", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-03-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 169.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.387879", + "updated_at": "2026-06-19T00:43:44.387879" +} diff --git a/site/public/v1/smartphones/note-9-premium-edition-dual-sim-td-lte-cn-64gb-m923q/score/index.json b/site/public/v1/smartphones/note-9-premium-edition-dual-sim-td-lte-cn-64gb-m923q/score/index.json new file mode 100644 index 00000000000..744026d4f22 --- /dev/null +++ b/site/public/v1/smartphones/note-9-premium-edition-dual-sim-td-lte-cn-64gb-m923q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/note-9-standard-edition-dual-sim-td-lte-cn-128gb-m923q/index.json b/site/public/v1/smartphones/note-9-standard-edition-dual-sim-td-lte-cn-128gb-m923q/index.json new file mode 100644 index 00000000000..759e7a58edb --- /dev/null +++ b/site/public/v1/smartphones/note-9-standard-edition-dual-sim-td-lte-cn-128gb-m923q/index.json @@ -0,0 +1,76 @@ +{ + "id": 1893, + "slug": "note-9-standard-edition-dual-sim-td-lte-cn-128gb-m923q", + "name": "Note 9 Standard Edition Dual SIM TD-LTE CN 128GB M923Q", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 169.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 0.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.387879", + "updated_at": "2026-06-19T00:43:44.387879" +} diff --git a/site/public/v1/smartphones/note-9-standard-edition-dual-sim-td-lte-cn-128gb-m923q/score/index.json b/site/public/v1/smartphones/note-9-standard-edition-dual-sim-td-lte-cn-128gb-m923q/score/index.json new file mode 100644 index 00000000000..1acedaeaa90 --- /dev/null +++ b/site/public/v1/smartphones/note-9-standard-edition-dual-sim-td-lte-cn-128gb-m923q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 0.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/note-9-standard-edition-dual-sim-td-lte-cn-64gb-m923q/index.json b/site/public/v1/smartphones/note-9-standard-edition-dual-sim-td-lte-cn-64gb-m923q/index.json new file mode 100644 index 00000000000..7ce0324fbac --- /dev/null +++ b/site/public/v1/smartphones/note-9-standard-edition-dual-sim-td-lte-cn-64gb-m923q/index.json @@ -0,0 +1,76 @@ +{ + "id": 1894, + "slug": "note-9-standard-edition-dual-sim-td-lte-cn-64gb-m923q", + "name": "Note 9 Standard Edition Dual SIM TD-LTE CN 64GB M923Q", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 169.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 0.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.387879", + "updated_at": "2026-06-19T00:43:44.387879" +} diff --git a/site/public/v1/smartphones/note-9-standard-edition-dual-sim-td-lte-cn-64gb-m923q/score/index.json b/site/public/v1/smartphones/note-9-standard-edition-dual-sim-td-lte-cn-64gb-m923q/score/index.json new file mode 100644 index 00000000000..1acedaeaa90 --- /dev/null +++ b/site/public/v1/smartphones/note-9-standard-edition-dual-sim-td-lte-cn-64gb-m923q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 0.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/nova-2-lite-dual-sim-td-lte-apac-ldn-lx2-y7-pro-2018-ldn-l22/index.json b/site/public/v1/smartphones/nova-2-lite-dual-sim-td-lte-apac-ldn-lx2-y7-pro-2018-ldn-l22/index.json new file mode 100644 index 00000000000..b3ebaa1f434 --- /dev/null +++ b/site/public/v1/smartphones/nova-2-lite-dual-sim-td-lte-apac-ldn-lx2-y7-pro-2018-ldn-l22/index.json @@ -0,0 +1,76 @@ +{ + "id": 900, + "slug": "nova-2-lite-dual-sim-td-lte-apac-ldn-lx2-y7-pro-2018-ldn-l22", + "name": "Nova 2 Lite Dual SIM TD-LTE APAC LDN-LX2 / Y7 Pro 2018 LDN-L22", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-03-16", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 155.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.231932", + "updated_at": "2026-06-19T00:43:44.231932" +} diff --git a/site/public/v1/smartphones/nova-2-lite-dual-sim-td-lte-apac-ldn-lx2-y7-pro-2018-ldn-l22/score/index.json b/site/public/v1/smartphones/nova-2-lite-dual-sim-td-lte-apac-ldn-lx2-y7-pro-2018-ldn-l22/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/nova-2-lite-dual-sim-td-lte-apac-ldn-lx2-y7-pro-2018-ldn-l22/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/nova-2-plus-dual-sim-lte-a-emea-bac-l21/index.json b/site/public/v1/smartphones/nova-2-plus-dual-sim-lte-a-emea-bac-l21/index.json new file mode 100644 index 00000000000..e959b12d19b --- /dev/null +++ b/site/public/v1/smartphones/nova-2-plus-dual-sim-lte-a-emea-bac-l21/index.json @@ -0,0 +1,76 @@ +{ + "id": 804, + "slug": "nova-2-plus-dual-sim-lte-a-emea-bac-l21", + "name": "Nova 2 Plus Dual SIM LTE-A EMEA BAC-L21", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 25, + "slug": "kirin-659", + "name": "Kirin 659", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 16.0, + "gpu_name": "Mali-T830 MP2", + "url": "/v1/socs/kirin-659" + }, + "release_date": "2017-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.47, + "resolution": "1080x1920", + "type": "Color TN-TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 11.8 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3340, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.0, + "battery": 5.1, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.218933", + "updated_at": "2026-06-19T00:43:44.218933" +} diff --git a/site/public/v1/smartphones/nova-2-plus-dual-sim-lte-a-emea-bac-l21/score/index.json b/site/public/v1/smartphones/nova-2-plus-dual-sim-lte-a-emea-bac-l21/score/index.json new file mode 100644 index 00000000000..85427d4790f --- /dev/null +++ b/site/public/v1/smartphones/nova-2-plus-dual-sim-lte-a-emea-bac-l21/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.0, + "battery": 5.1, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/nova-2-plus-dual-sim-td-lte-apac-128gb-bac-l22/index.json b/site/public/v1/smartphones/nova-2-plus-dual-sim-td-lte-apac-128gb-bac-l22/index.json new file mode 100644 index 00000000000..b1163a9ce6f --- /dev/null +++ b/site/public/v1/smartphones/nova-2-plus-dual-sim-td-lte-apac-128gb-bac-l22/index.json @@ -0,0 +1,76 @@ +{ + "id": 805, + "slug": "nova-2-plus-dual-sim-td-lte-apac-128gb-bac-l22", + "name": "Nova 2 Plus Dual SIM TD-LTE APAC 128GB BAC-L22", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 25, + "slug": "kirin-659", + "name": "Kirin 659", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 16.0, + "gpu_name": "Mali-T830 MP2", + "url": "/v1/socs/kirin-659" + }, + "release_date": "2017-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.47, + "resolution": "1080x1920", + "type": "Color TN-TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 11.8 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3340, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.0, + "battery": 5.1, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.218933", + "updated_at": "2026-06-19T00:43:44.218933" +} diff --git a/site/public/v1/smartphones/nova-2-plus-dual-sim-td-lte-apac-128gb-bac-l22/score/index.json b/site/public/v1/smartphones/nova-2-plus-dual-sim-td-lte-apac-128gb-bac-l22/score/index.json new file mode 100644 index 00000000000..85427d4790f --- /dev/null +++ b/site/public/v1/smartphones/nova-2-plus-dual-sim-td-lte-apac-128gb-bac-l22/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.0, + "battery": 5.1, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/nova-2-plus-lte-a-emea-bac-l01/index.json b/site/public/v1/smartphones/nova-2-plus-lte-a-emea-bac-l01/index.json new file mode 100644 index 00000000000..4c68c35b391 --- /dev/null +++ b/site/public/v1/smartphones/nova-2-plus-lte-a-emea-bac-l01/index.json @@ -0,0 +1,76 @@ +{ + "id": 806, + "slug": "nova-2-plus-lte-a-emea-bac-l01", + "name": "Nova 2 Plus LTE-A EMEA BAC-L01", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 25, + "slug": "kirin-659", + "name": "Kirin 659", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 16.0, + "gpu_name": "Mali-T830 MP2", + "url": "/v1/socs/kirin-659" + }, + "release_date": "2017-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.47, + "resolution": "1080x1920", + "type": "Color TN-TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 11.8 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3340, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.0, + "battery": 5.1, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.219932", + "updated_at": "2026-06-19T00:43:44.219932" +} diff --git a/site/public/v1/smartphones/nova-2-plus-lte-a-emea-bac-l01/score/index.json b/site/public/v1/smartphones/nova-2-plus-lte-a-emea-bac-l01/score/index.json new file mode 100644 index 00000000000..85427d4790f --- /dev/null +++ b/site/public/v1/smartphones/nova-2-plus-lte-a-emea-bac-l01/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.0, + "battery": 5.1, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/nova-3-dual-sim-lte-a-emea-par-lx1-par-l21/index.json b/site/public/v1/smartphones/nova-3-dual-sim-lte-a-emea-par-lx1-par-l21/index.json new file mode 100644 index 00000000000..a694ca9d216 --- /dev/null +++ b/site/public/v1/smartphones/nova-3-dual-sim-lte-a-emea-par-lx1-par-l21/index.json @@ -0,0 +1,76 @@ +{ + "id": 901, + "slug": "nova-3-dual-sim-lte-a-emea-par-lx1-par-l21", + "name": "Nova 3 Dual SIM LTE-A EMEA PAR-LX1 / PAR-L21", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3750, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 24.5, + "camera": 8.8, + "battery": 11.2, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.231932", + "updated_at": "2026-06-19T00:43:44.231932" +} diff --git a/site/public/v1/smartphones/nova-3-dual-sim-lte-a-emea-par-lx1-par-l21/score/index.json b/site/public/v1/smartphones/nova-3-dual-sim-lte-a-emea-par-lx1-par-l21/score/index.json new file mode 100644 index 00000000000..a7720087fca --- /dev/null +++ b/site/public/v1/smartphones/nova-3-dual-sim-lte-a-emea-par-lx1-par-l21/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 24.5, + "camera": 8.8, + "battery": 11.2, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/nova-3-dual-sim-lte-a-emea-par-lx1m-par-l21m/index.json b/site/public/v1/smartphones/nova-3-dual-sim-lte-a-emea-par-lx1m-par-l21m/index.json new file mode 100644 index 00000000000..ac0a070390d --- /dev/null +++ b/site/public/v1/smartphones/nova-3-dual-sim-lte-a-emea-par-lx1m-par-l21m/index.json @@ -0,0 +1,76 @@ +{ + "id": 902, + "slug": "nova-3-dual-sim-lte-a-emea-par-lx1m-par-l21m", + "name": "Nova 3 Dual SIM LTE-A EMEA PAR-LX1M / PAR-L21M", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3750, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 24.5, + "camera": 8.8, + "battery": 11.2, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.231932", + "updated_at": "2026-06-19T00:43:44.231932" +} diff --git a/site/public/v1/smartphones/nova-3-dual-sim-lte-a-emea-par-lx1m-par-l21m/score/index.json b/site/public/v1/smartphones/nova-3-dual-sim-lte-a-emea-par-lx1m-par-l21m/score/index.json new file mode 100644 index 00000000000..a7720087fca --- /dev/null +++ b/site/public/v1/smartphones/nova-3-dual-sim-lte-a-emea-par-lx1m-par-l21m/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 24.5, + "camera": 8.8, + "battery": 11.2, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/nova-3-dual-sim-td-lte-apac-par-lx9-par-l29/index.json b/site/public/v1/smartphones/nova-3-dual-sim-td-lte-apac-par-lx9-par-l29/index.json new file mode 100644 index 00000000000..da637deccf0 --- /dev/null +++ b/site/public/v1/smartphones/nova-3-dual-sim-td-lte-apac-par-lx9-par-l29/index.json @@ -0,0 +1,76 @@ +{ + "id": 903, + "slug": "nova-3-dual-sim-td-lte-apac-par-lx9-par-l29", + "name": "Nova 3 Dual SIM TD-LTE APAC PAR-LX9 / PAR-L29", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-07-19", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3750, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.0, + "performance": 26.0, + "camera": 8.8, + "battery": 11.2, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.231932", + "updated_at": "2026-06-19T00:43:44.231932" +} diff --git a/site/public/v1/smartphones/nova-3-dual-sim-td-lte-apac-par-lx9-par-l29/score/index.json b/site/public/v1/smartphones/nova-3-dual-sim-td-lte-apac-par-lx9-par-l29/score/index.json new file mode 100644 index 00000000000..ff30ea85c90 --- /dev/null +++ b/site/public/v1/smartphones/nova-3-dual-sim-td-lte-apac-par-lx9-par-l29/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.0, + "performance": 26.0, + "camera": 8.8, + "battery": 11.2, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/nova-3-dual-sim-td-lte-cn-par-al00/index.json b/site/public/v1/smartphones/nova-3-dual-sim-td-lte-cn-par-al00/index.json new file mode 100644 index 00000000000..4e95b1860b1 --- /dev/null +++ b/site/public/v1/smartphones/nova-3-dual-sim-td-lte-cn-par-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 904, + "slug": "nova-3-dual-sim-td-lte-cn-par-al00", + "name": "Nova 3 Dual SIM TD-LTE CN PAR-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-07-19", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3750, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.0, + "performance": 26.0, + "camera": 8.8, + "battery": 11.2, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.232931", + "updated_at": "2026-06-19T00:43:44.232931" +} diff --git a/site/public/v1/smartphones/nova-3-dual-sim-td-lte-cn-par-al00/score/index.json b/site/public/v1/smartphones/nova-3-dual-sim-td-lte-cn-par-al00/score/index.json new file mode 100644 index 00000000000..ff30ea85c90 --- /dev/null +++ b/site/public/v1/smartphones/nova-3-dual-sim-td-lte-cn-par-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.0, + "performance": 26.0, + "camera": 8.8, + "battery": 11.2, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/nova-3-dual-sim-td-lte-cn-par-tl20/index.json b/site/public/v1/smartphones/nova-3-dual-sim-td-lte-cn-par-tl20/index.json new file mode 100644 index 00000000000..ff2f516645d --- /dev/null +++ b/site/public/v1/smartphones/nova-3-dual-sim-td-lte-cn-par-tl20/index.json @@ -0,0 +1,76 @@ +{ + "id": 905, + "slug": "nova-3-dual-sim-td-lte-cn-par-tl20", + "name": "Nova 3 Dual SIM TD-LTE CN PAR-TL20", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-07-19", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3750, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.0, + "performance": 26.0, + "camera": 8.8, + "battery": 11.2, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.232931", + "updated_at": "2026-06-19T00:43:44.232931" +} diff --git a/site/public/v1/smartphones/nova-3-dual-sim-td-lte-cn-par-tl20/score/index.json b/site/public/v1/smartphones/nova-3-dual-sim-td-lte-cn-par-tl20/score/index.json new file mode 100644 index 00000000000..ff30ea85c90 --- /dev/null +++ b/site/public/v1/smartphones/nova-3-dual-sim-td-lte-cn-par-tl20/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.0, + "performance": 26.0, + "camera": 8.8, + "battery": 11.2, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/nova-3-lte-a-emea-par-l11/index.json b/site/public/v1/smartphones/nova-3-lte-a-emea-par-l11/index.json new file mode 100644 index 00000000000..63503e10c73 --- /dev/null +++ b/site/public/v1/smartphones/nova-3-lte-a-emea-par-l11/index.json @@ -0,0 +1,76 @@ +{ + "id": 906, + "slug": "nova-3-lte-a-emea-par-l11", + "name": "Nova 3 LTE-A EMEA PAR-L11", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-07-19", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3750, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 24.5, + "camera": 8.8, + "battery": 11.2, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.232931", + "updated_at": "2026-06-19T00:43:44.232931" +} diff --git a/site/public/v1/smartphones/nova-3-lte-a-emea-par-l11/score/index.json b/site/public/v1/smartphones/nova-3-lte-a-emea-par-l11/score/index.json new file mode 100644 index 00000000000..a7720087fca --- /dev/null +++ b/site/public/v1/smartphones/nova-3-lte-a-emea-par-l11/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 24.5, + "camera": 8.8, + "battery": 11.2, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/nova-3e-dual-sim-td-lte-apac-ane-lx2-ane-l22-ane-lx2j/index.json b/site/public/v1/smartphones/nova-3e-dual-sim-td-lte-apac-ane-lx2-ane-l22-ane-lx2j/index.json new file mode 100644 index 00000000000..92abf06d292 --- /dev/null +++ b/site/public/v1/smartphones/nova-3e-dual-sim-td-lte-apac-ane-lx2-ane-l22-ane-lx2j/index.json @@ -0,0 +1,76 @@ +{ + "id": 907, + "slug": "nova-3e-dual-sim-td-lte-apac-ane-lx2-ane-l22-ane-lx2j", + "name": "Nova 3e Dual SIM TD-LTE APAC ANE-LX2 / ANE-L22 / ANE-LX2J", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 25, + "slug": "kirin-659", + "name": "Kirin 659", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 16.0, + "gpu_name": "Mali-T830 MP2", + "url": "/v1/socs/kirin-659" + }, + "release_date": "2018-06-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.232931", + "updated_at": "2026-06-19T00:43:44.232931" +} diff --git a/site/public/v1/smartphones/nova-3e-dual-sim-td-lte-apac-ane-lx2-ane-l22-ane-lx2j/score/index.json b/site/public/v1/smartphones/nova-3e-dual-sim-td-lte-apac-ane-lx2-ane-l22-ane-lx2j/score/index.json new file mode 100644 index 00000000000..107f749604e --- /dev/null +++ b/site/public/v1/smartphones/nova-3e-dual-sim-td-lte-apac-ane-lx2-ane-l22-ane-lx2j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/nova-3e-dual-sim-td-lte-cn-128gb-ane-al00/index.json b/site/public/v1/smartphones/nova-3e-dual-sim-td-lte-cn-128gb-ane-al00/index.json new file mode 100644 index 00000000000..015b86b4296 --- /dev/null +++ b/site/public/v1/smartphones/nova-3e-dual-sim-td-lte-cn-128gb-ane-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 908, + "slug": "nova-3e-dual-sim-td-lte-cn-128gb-ane-al00", + "name": "Nova 3e Dual SIM TD-LTE CN 128GB ANE-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 25, + "slug": "kirin-659", + "name": "Kirin 659", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 16.0, + "gpu_name": "Mali-T830 MP2", + "url": "/v1/socs/kirin-659" + }, + "release_date": "2018-03-27", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.232931", + "updated_at": "2026-06-19T00:43:44.232931" +} diff --git a/site/public/v1/smartphones/nova-3e-dual-sim-td-lte-cn-128gb-ane-al00/score/index.json b/site/public/v1/smartphones/nova-3e-dual-sim-td-lte-cn-128gb-ane-al00/score/index.json new file mode 100644 index 00000000000..107f749604e --- /dev/null +++ b/site/public/v1/smartphones/nova-3e-dual-sim-td-lte-cn-128gb-ane-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/nova-3e-dual-sim-td-lte-cn-64gb-ane-al00-p20-lite/index.json b/site/public/v1/smartphones/nova-3e-dual-sim-td-lte-cn-64gb-ane-al00-p20-lite/index.json new file mode 100644 index 00000000000..3f9683df152 --- /dev/null +++ b/site/public/v1/smartphones/nova-3e-dual-sim-td-lte-cn-64gb-ane-al00-p20-lite/index.json @@ -0,0 +1,76 @@ +{ + "id": 909, + "slug": "nova-3e-dual-sim-td-lte-cn-64gb-ane-al00-p20-lite", + "name": "Nova 3e Dual SIM TD-LTE CN 64GB ANE-AL00 / P20 Lite", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 25, + "slug": "kirin-659", + "name": "Kirin 659", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 16.0, + "gpu_name": "Mali-T830 MP2", + "url": "/v1/socs/kirin-659" + }, + "release_date": "2018-03-27", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.232931", + "updated_at": "2026-06-19T00:43:44.232931" +} diff --git a/site/public/v1/smartphones/nova-3e-dual-sim-td-lte-cn-64gb-ane-al00-p20-lite/score/index.json b/site/public/v1/smartphones/nova-3e-dual-sim-td-lte-cn-64gb-ane-al00-p20-lite/score/index.json new file mode 100644 index 00000000000..107f749604e --- /dev/null +++ b/site/public/v1/smartphones/nova-3e-dual-sim-td-lte-cn-64gb-ane-al00-p20-lite/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/nova-3e-dual-sim-td-lte-cn-64gb-ane-tl00/index.json b/site/public/v1/smartphones/nova-3e-dual-sim-td-lte-cn-64gb-ane-tl00/index.json new file mode 100644 index 00000000000..3f862b4e47c --- /dev/null +++ b/site/public/v1/smartphones/nova-3e-dual-sim-td-lte-cn-64gb-ane-tl00/index.json @@ -0,0 +1,76 @@ +{ + "id": 910, + "slug": "nova-3e-dual-sim-td-lte-cn-64gb-ane-tl00", + "name": "Nova 3e Dual SIM TD-LTE CN 64GB ANE-TL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 25, + "slug": "kirin-659", + "name": "Kirin 659", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 16.0, + "gpu_name": "Mali-T830 MP2", + "url": "/v1/socs/kirin-659" + }, + "release_date": "2018-03-27", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.232931", + "updated_at": "2026-06-19T00:43:44.232931" +} diff --git a/site/public/v1/smartphones/nova-3e-dual-sim-td-lte-cn-64gb-ane-tl00/score/index.json b/site/public/v1/smartphones/nova-3e-dual-sim-td-lte-cn-64gb-ane-tl00/score/index.json new file mode 100644 index 00000000000..107f749604e --- /dev/null +++ b/site/public/v1/smartphones/nova-3e-dual-sim-td-lte-cn-64gb-ane-tl00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/nova-3i-dual-sim-td-lte-apac-ine-lx2-128gb/index.json b/site/public/v1/smartphones/nova-3i-dual-sim-td-lte-apac-ine-lx2-128gb/index.json new file mode 100644 index 00000000000..36109872872 --- /dev/null +++ b/site/public/v1/smartphones/nova-3i-dual-sim-td-lte-apac-ine-lx2-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 911, + "slug": "nova-3i-dual-sim-td-lte-apac-ine-lx2-128gb", + "name": "Nova 3i Dual SIM TD-LTE APAC INE-LX2 128GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2018-07-26", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3340, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.3, + "performance": 0.0, + "camera": 6.3, + "battery": 5.1, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.232931", + "updated_at": "2026-06-19T00:43:44.232931" +} diff --git a/site/public/v1/smartphones/nova-3i-dual-sim-td-lte-apac-ine-lx2-128gb/score/index.json b/site/public/v1/smartphones/nova-3i-dual-sim-td-lte-apac-ine-lx2-128gb/score/index.json new file mode 100644 index 00000000000..73bfbee729b --- /dev/null +++ b/site/public/v1/smartphones/nova-3i-dual-sim-td-lte-apac-ine-lx2-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.3, + "performance": 0.0, + "camera": 6.3, + "battery": 5.1, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/nova-3i-dual-sim-td-lte-cn-ine-al00-128gb/index.json b/site/public/v1/smartphones/nova-3i-dual-sim-td-lte-cn-ine-al00-128gb/index.json new file mode 100644 index 00000000000..24b23665b7f --- /dev/null +++ b/site/public/v1/smartphones/nova-3i-dual-sim-td-lte-cn-ine-al00-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 912, + "slug": "nova-3i-dual-sim-td-lte-cn-ine-al00-128gb", + "name": "Nova 3i Dual SIM TD-LTE CN INE-AL00 128GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3340, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.3, + "performance": 0.0, + "camera": 6.3, + "battery": 5.1, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.232931", + "updated_at": "2026-06-19T00:43:44.232931" +} diff --git a/site/public/v1/smartphones/nova-3i-dual-sim-td-lte-cn-ine-al00-128gb/score/index.json b/site/public/v1/smartphones/nova-3i-dual-sim-td-lte-cn-ine-al00-128gb/score/index.json new file mode 100644 index 00000000000..73bfbee729b --- /dev/null +++ b/site/public/v1/smartphones/nova-3i-dual-sim-td-lte-cn-ine-al00-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.3, + "performance": 0.0, + "camera": 6.3, + "battery": 5.1, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/nova-3i-dual-sim-td-lte-cn-ine-tl00-128gb/index.json b/site/public/v1/smartphones/nova-3i-dual-sim-td-lte-cn-ine-tl00-128gb/index.json new file mode 100644 index 00000000000..60c96dca3ab --- /dev/null +++ b/site/public/v1/smartphones/nova-3i-dual-sim-td-lte-cn-ine-tl00-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 913, + "slug": "nova-3i-dual-sim-td-lte-cn-ine-tl00-128gb", + "name": "Nova 3i Dual SIM TD-LTE CN INE-TL00 128GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3340, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.3, + "performance": 0.0, + "camera": 6.3, + "battery": 5.1, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.233932", + "updated_at": "2026-06-19T00:43:44.233932" +} diff --git a/site/public/v1/smartphones/nova-3i-dual-sim-td-lte-cn-ine-tl00-128gb/score/index.json b/site/public/v1/smartphones/nova-3i-dual-sim-td-lte-cn-ine-tl00-128gb/score/index.json new file mode 100644 index 00000000000..73bfbee729b --- /dev/null +++ b/site/public/v1/smartphones/nova-3i-dual-sim-td-lte-cn-ine-tl00-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.3, + "performance": 0.0, + "camera": 6.3, + "battery": 5.1, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/nova-4-premium-edition-20mp-dual-sim-td-lte-apac-vce-lx2-vce-l22/index.json b/site/public/v1/smartphones/nova-4-premium-edition-20mp-dual-sim-td-lte-apac-vce-lx2-vce-l22/index.json new file mode 100644 index 00000000000..78fa0674c50 --- /dev/null +++ b/site/public/v1/smartphones/nova-4-premium-edition-20mp-dual-sim-td-lte-apac-vce-lx2-vce-l22/index.json @@ -0,0 +1,76 @@ +{ + "id": 1036, + "slug": "nova-4-premium-edition-20mp-dual-sim-td-lte-apac-vce-lx2-vce-l22", + "name": "Nova 4 Premium Edition 20MP Dual SIM TD-LTE APAC VCE-LX2 / VCE-L22", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2019-01-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 19.7 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3750, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 27.5, + "camera": 7.5, + "battery": 11.8, + "display": 44.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.253092", + "updated_at": "2026-06-19T00:43:44.253092" +} diff --git a/site/public/v1/smartphones/nova-4-premium-edition-20mp-dual-sim-td-lte-apac-vce-lx2-vce-l22/score/index.json b/site/public/v1/smartphones/nova-4-premium-edition-20mp-dual-sim-td-lte-apac-vce-lx2-vce-l22/score/index.json new file mode 100644 index 00000000000..28331b20e88 --- /dev/null +++ b/site/public/v1/smartphones/nova-4-premium-edition-20mp-dual-sim-td-lte-apac-vce-lx2-vce-l22/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 27.5, + "camera": 7.5, + "battery": 11.8, + "display": 44.9, + "value": null +} diff --git a/site/public/v1/smartphones/nova-4-premium-edition-20mp-dual-sim-td-lte-cn-vce-al00/index.json b/site/public/v1/smartphones/nova-4-premium-edition-20mp-dual-sim-td-lte-cn-vce-al00/index.json new file mode 100644 index 00000000000..ee10ef0c73f --- /dev/null +++ b/site/public/v1/smartphones/nova-4-premium-edition-20mp-dual-sim-td-lte-cn-vce-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 914, + "slug": "nova-4-premium-edition-20mp-dual-sim-td-lte-cn-vce-al00", + "name": "Nova 4 Premium Edition 20MP Dual SIM TD-LTE CN VCE-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-12-27", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 19.7 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3750, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 27.5, + "camera": 7.5, + "battery": 11.8, + "display": 44.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.233932", + "updated_at": "2026-06-19T00:43:44.233932" +} diff --git a/site/public/v1/smartphones/nova-4-premium-edition-20mp-dual-sim-td-lte-cn-vce-al00/score/index.json b/site/public/v1/smartphones/nova-4-premium-edition-20mp-dual-sim-td-lte-cn-vce-al00/score/index.json new file mode 100644 index 00000000000..28331b20e88 --- /dev/null +++ b/site/public/v1/smartphones/nova-4-premium-edition-20mp-dual-sim-td-lte-cn-vce-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 27.5, + "camera": 7.5, + "battery": 11.8, + "display": 44.9, + "value": null +} diff --git a/site/public/v1/smartphones/nova-4-premium-edition-20mp-dual-sim-td-lte-cn-vce-tl00/index.json b/site/public/v1/smartphones/nova-4-premium-edition-20mp-dual-sim-td-lte-cn-vce-tl00/index.json new file mode 100644 index 00000000000..4d4a2275811 --- /dev/null +++ b/site/public/v1/smartphones/nova-4-premium-edition-20mp-dual-sim-td-lte-cn-vce-tl00/index.json @@ -0,0 +1,76 @@ +{ + "id": 915, + "slug": "nova-4-premium-edition-20mp-dual-sim-td-lte-cn-vce-tl00", + "name": "Nova 4 Premium Edition 20MP Dual SIM TD-LTE CN VCE-TL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-12-27", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 19.7 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3750, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 27.5, + "camera": 7.5, + "battery": 11.8, + "display": 44.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.233932", + "updated_at": "2026-06-19T00:43:44.233932" +} diff --git a/site/public/v1/smartphones/nova-4-premium-edition-20mp-dual-sim-td-lte-cn-vce-tl00/score/index.json b/site/public/v1/smartphones/nova-4-premium-edition-20mp-dual-sim-td-lte-cn-vce-tl00/score/index.json new file mode 100644 index 00000000000..28331b20e88 --- /dev/null +++ b/site/public/v1/smartphones/nova-4-premium-edition-20mp-dual-sim-td-lte-cn-vce-tl00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 27.5, + "camera": 7.5, + "battery": 11.8, + "display": 44.9, + "value": null +} diff --git a/site/public/v1/smartphones/nova-4-premium-edition-48mp-dual-sim-td-lte-cn-vce-al00/index.json b/site/public/v1/smartphones/nova-4-premium-edition-48mp-dual-sim-td-lte-cn-vce-al00/index.json new file mode 100644 index 00000000000..b4611f19ef9 --- /dev/null +++ b/site/public/v1/smartphones/nova-4-premium-edition-48mp-dual-sim-td-lte-cn-vce-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 916, + "slug": "nova-4-premium-edition-48mp-dual-sim-td-lte-cn-vce-al00", + "name": "Nova 4 Premium Edition 48MP Dual SIM TD-LTE CN VCE-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-12-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3750, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 27.5, + "camera": 16.5, + "battery": 11.8, + "display": 44.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.233932", + "updated_at": "2026-06-19T00:43:44.233932" +} diff --git a/site/public/v1/smartphones/nova-4-premium-edition-48mp-dual-sim-td-lte-cn-vce-al00/score/index.json b/site/public/v1/smartphones/nova-4-premium-edition-48mp-dual-sim-td-lte-cn-vce-al00/score/index.json new file mode 100644 index 00000000000..763c524e98f --- /dev/null +++ b/site/public/v1/smartphones/nova-4-premium-edition-48mp-dual-sim-td-lte-cn-vce-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 27.5, + "camera": 16.5, + "battery": 11.8, + "display": 44.9, + "value": null +} diff --git a/site/public/v1/smartphones/nova-4-standard-edition-20mp-dual-sim-td-lte-cn-vce-al00/index.json b/site/public/v1/smartphones/nova-4-standard-edition-20mp-dual-sim-td-lte-cn-vce-al00/index.json new file mode 100644 index 00000000000..1c027c0a009 --- /dev/null +++ b/site/public/v1/smartphones/nova-4-standard-edition-20mp-dual-sim-td-lte-cn-vce-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1037, + "slug": "nova-4-standard-edition-20mp-dual-sim-td-lte-cn-vce-al00", + "name": "Nova 4 Standard Edition 20MP Dual SIM TD-LTE CN VCE-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2019-03-14", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 19.7 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3750, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 26.0, + "camera": 7.5, + "battery": 11.8, + "display": 44.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.253092", + "updated_at": "2026-06-19T00:43:44.253092" +} diff --git a/site/public/v1/smartphones/nova-4-standard-edition-20mp-dual-sim-td-lte-cn-vce-al00/score/index.json b/site/public/v1/smartphones/nova-4-standard-edition-20mp-dual-sim-td-lte-cn-vce-al00/score/index.json new file mode 100644 index 00000000000..597244b3392 --- /dev/null +++ b/site/public/v1/smartphones/nova-4-standard-edition-20mp-dual-sim-td-lte-cn-vce-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 26.0, + "camera": 7.5, + "battery": 11.8, + "display": 44.9, + "value": null +} diff --git a/site/public/v1/smartphones/nova-4e-premium-edition-dual-sim-td-lte-apac-128gb-mar-lx2-p30-lite-mar-l22/index.json b/site/public/v1/smartphones/nova-4e-premium-edition-dual-sim-td-lte-apac-128gb-mar-lx2-p30-lite-mar-l22/index.json new file mode 100644 index 00000000000..7d95c9aab68 --- /dev/null +++ b/site/public/v1/smartphones/nova-4e-premium-edition-dual-sim-td-lte-apac-128gb-mar-lx2-p30-lite-mar-l22/index.json @@ -0,0 +1,76 @@ +{ + "id": 1038, + "slug": "nova-4e-premium-edition-dual-sim-td-lte-apac-128gb-mar-lx2-p30-lite-mar-l22", + "name": "Nova 4e Premium Edition Dual SIM TD-LTE APAC 128GB MAR-LX2 / P30 Lite MAR-L22", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.15, + "resolution": "1080x2312", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3340, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.6, + "performance": 1.5, + "camera": 8.8, + "battery": 5.7, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.253092", + "updated_at": "2026-06-19T00:43:44.253092" +} diff --git a/site/public/v1/smartphones/nova-4e-premium-edition-dual-sim-td-lte-apac-128gb-mar-lx2-p30-lite-mar-l22/score/index.json b/site/public/v1/smartphones/nova-4e-premium-edition-dual-sim-td-lte-apac-128gb-mar-lx2-p30-lite-mar-l22/score/index.json new file mode 100644 index 00000000000..d53e958ec89 --- /dev/null +++ b/site/public/v1/smartphones/nova-4e-premium-edition-dual-sim-td-lte-apac-128gb-mar-lx2-p30-lite-mar-l22/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.6, + "performance": 1.5, + "camera": 8.8, + "battery": 5.7, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/nova-4e-premium-edition-dual-sim-td-lte-cn-128gb-mar-al00/index.json b/site/public/v1/smartphones/nova-4e-premium-edition-dual-sim-td-lte-cn-128gb-mar-al00/index.json new file mode 100644 index 00000000000..b030ffc4544 --- /dev/null +++ b/site/public/v1/smartphones/nova-4e-premium-edition-dual-sim-td-lte-cn-128gb-mar-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1039, + "slug": "nova-4e-premium-edition-dual-sim-td-lte-cn-128gb-mar-al00", + "name": "Nova 4e Premium Edition Dual SIM TD-LTE CN 128GB MAR-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-03-21", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.15, + "resolution": "1080x2312", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3340, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.6, + "performance": 1.5, + "camera": 8.8, + "battery": 5.7, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.254092", + "updated_at": "2026-06-19T00:43:44.254092" +} diff --git a/site/public/v1/smartphones/nova-4e-premium-edition-dual-sim-td-lte-cn-128gb-mar-al00/score/index.json b/site/public/v1/smartphones/nova-4e-premium-edition-dual-sim-td-lte-cn-128gb-mar-al00/score/index.json new file mode 100644 index 00000000000..d53e958ec89 --- /dev/null +++ b/site/public/v1/smartphones/nova-4e-premium-edition-dual-sim-td-lte-cn-128gb-mar-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.6, + "performance": 1.5, + "camera": 8.8, + "battery": 5.7, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/nova-4e-standard-edition-dual-sim-td-lte-cn-128gb-mar-tl00/index.json b/site/public/v1/smartphones/nova-4e-standard-edition-dual-sim-td-lte-cn-128gb-mar-tl00/index.json new file mode 100644 index 00000000000..c57c9e142be --- /dev/null +++ b/site/public/v1/smartphones/nova-4e-standard-edition-dual-sim-td-lte-cn-128gb-mar-tl00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1040, + "slug": "nova-4e-standard-edition-dual-sim-td-lte-cn-128gb-mar-tl00", + "name": "Nova 4e Standard Edition Dual SIM TD-LTE CN 128GB MAR-TL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-03-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.15, + "resolution": "1080x2312", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3340, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 0.0, + "camera": 8.8, + "battery": 5.7, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.254092", + "updated_at": "2026-06-19T00:43:44.254092" +} diff --git a/site/public/v1/smartphones/nova-4e-standard-edition-dual-sim-td-lte-cn-128gb-mar-tl00/score/index.json b/site/public/v1/smartphones/nova-4e-standard-edition-dual-sim-td-lte-cn-128gb-mar-tl00/score/index.json new file mode 100644 index 00000000000..81da392bd3a --- /dev/null +++ b/site/public/v1/smartphones/nova-4e-standard-edition-dual-sim-td-lte-cn-128gb-mar-tl00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 0.0, + "camera": 8.8, + "battery": 5.7, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/nova-5-dual-sim-td-lte-cn-128gb-sea-al00/index.json b/site/public/v1/smartphones/nova-5-dual-sim-td-lte-cn-128gb-sea-al00/index.json new file mode 100644 index 00000000000..2e518647028 --- /dev/null +++ b/site/public/v1/smartphones/nova-5-dual-sim-td-lte-cn-128gb-sea-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1041, + "slug": "nova-5-dual-sim-td-lte-cn-128gb-sea-al00", + "name": "Nova 5 Dual SIM TD-LTE CN 128GB SEA-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 30, + "slug": "kirin-810", + "name": "Kirin 810", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G52 MP6", + "url": "/v1/socs/kirin-810" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 3.0, + "camera": 16.5, + "battery": 12.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.254092", + "updated_at": "2026-06-19T00:43:44.254092" +} diff --git a/site/public/v1/smartphones/nova-5-dual-sim-td-lte-cn-128gb-sea-al00/score/index.json b/site/public/v1/smartphones/nova-5-dual-sim-td-lte-cn-128gb-sea-al00/score/index.json new file mode 100644 index 00000000000..515bceff1de --- /dev/null +++ b/site/public/v1/smartphones/nova-5-dual-sim-td-lte-cn-128gb-sea-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 3.0, + "camera": 16.5, + "battery": 12.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/nova-5-dual-sim-td-lte-cn-128gb-sea-tl00/index.json b/site/public/v1/smartphones/nova-5-dual-sim-td-lte-cn-128gb-sea-tl00/index.json new file mode 100644 index 00000000000..1a1676a7e6e --- /dev/null +++ b/site/public/v1/smartphones/nova-5-dual-sim-td-lte-cn-128gb-sea-tl00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1042, + "slug": "nova-5-dual-sim-td-lte-cn-128gb-sea-tl00", + "name": "Nova 5 Dual SIM TD-LTE CN 128GB SEA-TL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 30, + "slug": "kirin-810", + "name": "Kirin 810", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G52 MP6", + "url": "/v1/socs/kirin-810" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 3.0, + "camera": 16.5, + "battery": 12.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.254092", + "updated_at": "2026-06-19T00:43:44.254092" +} diff --git a/site/public/v1/smartphones/nova-5-dual-sim-td-lte-cn-128gb-sea-tl00/score/index.json b/site/public/v1/smartphones/nova-5-dual-sim-td-lte-cn-128gb-sea-tl00/score/index.json new file mode 100644 index 00000000000..515bceff1de --- /dev/null +++ b/site/public/v1/smartphones/nova-5-dual-sim-td-lte-cn-128gb-sea-tl00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 3.0, + "camera": 16.5, + "battery": 12.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/nova-5-pro-dual-sim-td-lte-cn-128gb-sea-al10/index.json b/site/public/v1/smartphones/nova-5-pro-dual-sim-td-lte-cn-128gb-sea-al10/index.json new file mode 100644 index 00000000000..080bd64b7bd --- /dev/null +++ b/site/public/v1/smartphones/nova-5-pro-dual-sim-td-lte-cn-128gb-sea-al10/index.json @@ -0,0 +1,76 @@ +{ + "id": 1043, + "slug": "nova-5-pro-dual-sim-td-lte-cn-128gb-sea-al10", + "name": "Nova 5 Pro Dual SIM TD-LTE CN 128GB SEA-AL10", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 56.0, + "camera": 16.5, + "battery": 12.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.254092", + "updated_at": "2026-06-19T00:43:44.254092" +} diff --git a/site/public/v1/smartphones/nova-5-pro-dual-sim-td-lte-cn-128gb-sea-al10/score/index.json b/site/public/v1/smartphones/nova-5-pro-dual-sim-td-lte-cn-128gb-sea-al10/score/index.json new file mode 100644 index 00000000000..e0220f5f693 --- /dev/null +++ b/site/public/v1/smartphones/nova-5-pro-dual-sim-td-lte-cn-128gb-sea-al10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 56.0, + "camera": 16.5, + "battery": 12.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/nova-5-pro-dual-sim-td-lte-cn-128gb-sea-tl10/index.json b/site/public/v1/smartphones/nova-5-pro-dual-sim-td-lte-cn-128gb-sea-tl10/index.json new file mode 100644 index 00000000000..1e4383cffa5 --- /dev/null +++ b/site/public/v1/smartphones/nova-5-pro-dual-sim-td-lte-cn-128gb-sea-tl10/index.json @@ -0,0 +1,76 @@ +{ + "id": 1044, + "slug": "nova-5-pro-dual-sim-td-lte-cn-128gb-sea-tl10", + "name": "Nova 5 Pro Dual SIM TD-LTE CN 128GB SEA-TL10", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 56.0, + "camera": 16.5, + "battery": 12.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.254092", + "updated_at": "2026-06-19T00:43:44.254092" +} diff --git a/site/public/v1/smartphones/nova-5-pro-dual-sim-td-lte-cn-128gb-sea-tl10/score/index.json b/site/public/v1/smartphones/nova-5-pro-dual-sim-td-lte-cn-128gb-sea-tl10/score/index.json new file mode 100644 index 00000000000..e0220f5f693 --- /dev/null +++ b/site/public/v1/smartphones/nova-5-pro-dual-sim-td-lte-cn-128gb-sea-tl10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 56.0, + "camera": 16.5, + "battery": 12.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/nova-5-pro-dual-sim-td-lte-cn-256gb-sea-al10/index.json b/site/public/v1/smartphones/nova-5-pro-dual-sim-td-lte-cn-256gb-sea-al10/index.json new file mode 100644 index 00000000000..2a132a4d32e --- /dev/null +++ b/site/public/v1/smartphones/nova-5-pro-dual-sim-td-lte-cn-256gb-sea-al10/index.json @@ -0,0 +1,76 @@ +{ + "id": 1045, + "slug": "nova-5-pro-dual-sim-td-lte-cn-256gb-sea-al10", + "name": "Nova 5 Pro Dual SIM TD-LTE CN 256GB SEA-AL10", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 56.0, + "camera": 16.5, + "battery": 12.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.254092", + "updated_at": "2026-06-19T00:43:44.254092" +} diff --git a/site/public/v1/smartphones/nova-5-pro-dual-sim-td-lte-cn-256gb-sea-al10/score/index.json b/site/public/v1/smartphones/nova-5-pro-dual-sim-td-lte-cn-256gb-sea-al10/score/index.json new file mode 100644 index 00000000000..e0220f5f693 --- /dev/null +++ b/site/public/v1/smartphones/nova-5-pro-dual-sim-td-lte-cn-256gb-sea-al10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 56.0, + "camera": 16.5, + "battery": 12.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/nova-5i-premium-edition-dual-sim-td-lte-cn-128gb-glk-al00/index.json b/site/public/v1/smartphones/nova-5i-premium-edition-dual-sim-td-lte-cn-128gb-glk-al00/index.json new file mode 100644 index 00000000000..6477a9a9ba4 --- /dev/null +++ b/site/public/v1/smartphones/nova-5i-premium-edition-dual-sim-td-lte-cn-128gb-glk-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1046, + "slug": "nova-5i-premium-edition-dual-sim-td-lte-cn-128gb-glk-al00", + "name": "Nova 5i Premium Edition Dual SIM TD-LTE CN 128GB GLK-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": 3.0, + "camera": 8.8, + "battery": 15.0, + "display": 44.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.254092", + "updated_at": "2026-06-19T00:43:44.254092" +} diff --git a/site/public/v1/smartphones/nova-5i-premium-edition-dual-sim-td-lte-cn-128gb-glk-al00/score/index.json b/site/public/v1/smartphones/nova-5i-premium-edition-dual-sim-td-lte-cn-128gb-glk-al00/score/index.json new file mode 100644 index 00000000000..cbc26847098 --- /dev/null +++ b/site/public/v1/smartphones/nova-5i-premium-edition-dual-sim-td-lte-cn-128gb-glk-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": 3.0, + "camera": 8.8, + "battery": 15.0, + "display": 44.9, + "value": null +} diff --git a/site/public/v1/smartphones/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-128gb-spn-al00/index.json b/site/public/v1/smartphones/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-128gb-spn-al00/index.json new file mode 100644 index 00000000000..039b8636782 --- /dev/null +++ b/site/public/v1/smartphones/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-128gb-spn-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1047, + "slug": "nova-5i-pro-premium-edition-dual-sim-td-lte-cn-128gb-spn-al00", + "name": "Nova 5i Pro Premium Edition Dual SIM TD-LTE CN 128GB SPN-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 30, + "slug": "kirin-810", + "name": "Kirin 810", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G52 MP6", + "url": "/v1/socs/kirin-810" + }, + "release_date": "2019-08-02", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 3.0, + "camera": 16.5, + "battery": 19.7, + "display": 46.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.255091", + "updated_at": "2026-06-19T00:43:44.255091" +} diff --git a/site/public/v1/smartphones/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-128gb-spn-al00/score/index.json b/site/public/v1/smartphones/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-128gb-spn-al00/score/index.json new file mode 100644 index 00000000000..cdf7c6f04eb --- /dev/null +++ b/site/public/v1/smartphones/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-128gb-spn-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 3.0, + "camera": 16.5, + "battery": 19.7, + "display": 46.2, + "value": null +} diff --git a/site/public/v1/smartphones/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-128gb-spn-tl00/index.json b/site/public/v1/smartphones/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-128gb-spn-tl00/index.json new file mode 100644 index 00000000000..169da92ad71 --- /dev/null +++ b/site/public/v1/smartphones/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-128gb-spn-tl00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1048, + "slug": "nova-5i-pro-premium-edition-dual-sim-td-lte-cn-128gb-spn-tl00", + "name": "Nova 5i Pro Premium Edition Dual SIM TD-LTE CN 128GB SPN-TL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 30, + "slug": "kirin-810", + "name": "Kirin 810", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G52 MP6", + "url": "/v1/socs/kirin-810" + }, + "release_date": "2019-08-02", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 3.0, + "camera": 16.5, + "battery": 19.7, + "display": 46.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.255091", + "updated_at": "2026-06-19T00:43:44.255091" +} diff --git a/site/public/v1/smartphones/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-128gb-spn-tl00/score/index.json b/site/public/v1/smartphones/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-128gb-spn-tl00/score/index.json new file mode 100644 index 00000000000..cdf7c6f04eb --- /dev/null +++ b/site/public/v1/smartphones/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-128gb-spn-tl00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 3.0, + "camera": 16.5, + "battery": 19.7, + "display": 46.2, + "value": null +} diff --git a/site/public/v1/smartphones/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-256gb-spn-al00/index.json b/site/public/v1/smartphones/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-256gb-spn-al00/index.json new file mode 100644 index 00000000000..959687d500d --- /dev/null +++ b/site/public/v1/smartphones/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-256gb-spn-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1049, + "slug": "nova-5i-pro-premium-edition-dual-sim-td-lte-cn-256gb-spn-al00", + "name": "Nova 5i Pro Premium Edition Dual SIM TD-LTE CN 256GB SPN-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 30, + "slug": "kirin-810", + "name": "Kirin 810", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G52 MP6", + "url": "/v1/socs/kirin-810" + }, + "release_date": "2019-08-02", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 3.0, + "camera": 16.5, + "battery": 19.7, + "display": 46.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.255091", + "updated_at": "2026-06-19T00:43:44.255091" +} diff --git a/site/public/v1/smartphones/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-256gb-spn-al00/score/index.json b/site/public/v1/smartphones/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-256gb-spn-al00/score/index.json new file mode 100644 index 00000000000..cdf7c6f04eb --- /dev/null +++ b/site/public/v1/smartphones/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-256gb-spn-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 3.0, + "camera": 16.5, + "battery": 19.7, + "display": 46.2, + "value": null +} diff --git a/site/public/v1/smartphones/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-256gb-spn-tl00/index.json b/site/public/v1/smartphones/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-256gb-spn-tl00/index.json new file mode 100644 index 00000000000..76ff99257cf --- /dev/null +++ b/site/public/v1/smartphones/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-256gb-spn-tl00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1050, + "slug": "nova-5i-pro-premium-edition-dual-sim-td-lte-cn-256gb-spn-tl00", + "name": "Nova 5i Pro Premium Edition Dual SIM TD-LTE CN 256GB SPN-TL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 30, + "slug": "kirin-810", + "name": "Kirin 810", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G52 MP6", + "url": "/v1/socs/kirin-810" + }, + "release_date": "2019-08-02", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 3.0, + "camera": 16.5, + "battery": 19.7, + "display": 46.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.255091", + "updated_at": "2026-06-19T00:43:44.255091" +} diff --git a/site/public/v1/smartphones/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-256gb-spn-tl00/score/index.json b/site/public/v1/smartphones/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-256gb-spn-tl00/score/index.json new file mode 100644 index 00000000000..cdf7c6f04eb --- /dev/null +++ b/site/public/v1/smartphones/nova-5i-pro-premium-edition-dual-sim-td-lte-cn-256gb-spn-tl00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 3.0, + "camera": 16.5, + "battery": 19.7, + "display": 46.2, + "value": null +} diff --git a/site/public/v1/smartphones/nova-5i-pro-standard-edition-dual-sim-td-lte-cn-128gb-spn-al00-nova-5z/index.json b/site/public/v1/smartphones/nova-5i-pro-standard-edition-dual-sim-td-lte-cn-128gb-spn-al00-nova-5z/index.json new file mode 100644 index 00000000000..a1894e73e71 --- /dev/null +++ b/site/public/v1/smartphones/nova-5i-pro-standard-edition-dual-sim-td-lte-cn-128gb-spn-al00-nova-5z/index.json @@ -0,0 +1,76 @@ +{ + "id": 1051, + "slug": "nova-5i-pro-standard-edition-dual-sim-td-lte-cn-128gb-spn-al00-nova-5z", + "name": "Nova 5i Pro Standard Edition Dual SIM TD-LTE CN 128GB SPN-AL00 / nova 5z", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 30, + "slug": "kirin-810", + "name": "Kirin 810", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G52 MP6", + "url": "/v1/socs/kirin-810" + }, + "release_date": "2019-08-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 1.5, + "camera": 16.5, + "battery": 19.7, + "display": 46.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.255091", + "updated_at": "2026-06-19T00:43:44.255091" +} diff --git a/site/public/v1/smartphones/nova-5i-pro-standard-edition-dual-sim-td-lte-cn-128gb-spn-al00-nova-5z/score/index.json b/site/public/v1/smartphones/nova-5i-pro-standard-edition-dual-sim-td-lte-cn-128gb-spn-al00-nova-5z/score/index.json new file mode 100644 index 00000000000..5b6e134cd3e --- /dev/null +++ b/site/public/v1/smartphones/nova-5i-pro-standard-edition-dual-sim-td-lte-cn-128gb-spn-al00-nova-5z/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 1.5, + "camera": 16.5, + "battery": 19.7, + "display": 46.2, + "value": null +} diff --git a/site/public/v1/smartphones/nova-5i-pro-standard-edition-dual-sim-td-lte-cn-128gb-spn-tl00-nova-5z/index.json b/site/public/v1/smartphones/nova-5i-pro-standard-edition-dual-sim-td-lte-cn-128gb-spn-tl00-nova-5z/index.json new file mode 100644 index 00000000000..be4e6b5cb48 --- /dev/null +++ b/site/public/v1/smartphones/nova-5i-pro-standard-edition-dual-sim-td-lte-cn-128gb-spn-tl00-nova-5z/index.json @@ -0,0 +1,76 @@ +{ + "id": 1052, + "slug": "nova-5i-pro-standard-edition-dual-sim-td-lte-cn-128gb-spn-tl00-nova-5z", + "name": "Nova 5i Pro Standard Edition Dual SIM TD-LTE CN 128GB SPN-TL00 / nova 5z", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 30, + "slug": "kirin-810", + "name": "Kirin 810", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G52 MP6", + "url": "/v1/socs/kirin-810" + }, + "release_date": "2019-08-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 1.5, + "camera": 16.5, + "battery": 19.7, + "display": 46.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.255091", + "updated_at": "2026-06-19T00:43:44.255091" +} diff --git a/site/public/v1/smartphones/nova-5i-pro-standard-edition-dual-sim-td-lte-cn-128gb-spn-tl00-nova-5z/score/index.json b/site/public/v1/smartphones/nova-5i-pro-standard-edition-dual-sim-td-lte-cn-128gb-spn-tl00-nova-5z/score/index.json new file mode 100644 index 00000000000..5b6e134cd3e --- /dev/null +++ b/site/public/v1/smartphones/nova-5i-pro-standard-edition-dual-sim-td-lte-cn-128gb-spn-tl00-nova-5z/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 1.5, + "camera": 16.5, + "battery": 19.7, + "display": 46.2, + "value": null +} diff --git a/site/public/v1/smartphones/nova-5i-standard-edition-dual-sim-td-lte-cn-128gb-glk-al00/index.json b/site/public/v1/smartphones/nova-5i-standard-edition-dual-sim-td-lte-cn-128gb-glk-al00/index.json new file mode 100644 index 00000000000..45c7865c528 --- /dev/null +++ b/site/public/v1/smartphones/nova-5i-standard-edition-dual-sim-td-lte-cn-128gb-glk-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1053, + "slug": "nova-5i-standard-edition-dual-sim-td-lte-cn-128gb-glk-al00", + "name": "Nova 5i Standard Edition Dual SIM TD-LTE CN 128GB GLK-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-06-28", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 1.5, + "camera": 8.8, + "battery": 15.0, + "display": 44.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.255091", + "updated_at": "2026-06-19T00:43:44.255091" +} diff --git a/site/public/v1/smartphones/nova-5i-standard-edition-dual-sim-td-lte-cn-128gb-glk-al00/score/index.json b/site/public/v1/smartphones/nova-5i-standard-edition-dual-sim-td-lte-cn-128gb-glk-al00/score/index.json new file mode 100644 index 00000000000..23cc0a6ba5a --- /dev/null +++ b/site/public/v1/smartphones/nova-5i-standard-edition-dual-sim-td-lte-cn-128gb-glk-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 1.5, + "camera": 8.8, + "battery": 15.0, + "display": 44.9, + "value": null +} diff --git a/site/public/v1/smartphones/nova-5i-standard-edition-dual-sim-td-lte-cn-128gb-glk-tl00/index.json b/site/public/v1/smartphones/nova-5i-standard-edition-dual-sim-td-lte-cn-128gb-glk-tl00/index.json new file mode 100644 index 00000000000..1af474beae2 --- /dev/null +++ b/site/public/v1/smartphones/nova-5i-standard-edition-dual-sim-td-lte-cn-128gb-glk-tl00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1054, + "slug": "nova-5i-standard-edition-dual-sim-td-lte-cn-128gb-glk-tl00", + "name": "Nova 5i Standard Edition Dual SIM TD-LTE CN 128GB GLK-TL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-06-28", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 1.5, + "camera": 8.8, + "battery": 15.0, + "display": 44.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.255091", + "updated_at": "2026-06-19T00:43:44.255091" +} diff --git a/site/public/v1/smartphones/nova-5i-standard-edition-dual-sim-td-lte-cn-128gb-glk-tl00/score/index.json b/site/public/v1/smartphones/nova-5i-standard-edition-dual-sim-td-lte-cn-128gb-glk-tl00/score/index.json new file mode 100644 index 00000000000..23cc0a6ba5a --- /dev/null +++ b/site/public/v1/smartphones/nova-5i-standard-edition-dual-sim-td-lte-cn-128gb-glk-tl00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 1.5, + "camera": 8.8, + "battery": 15.0, + "display": 44.9, + "value": null +} diff --git a/site/public/v1/smartphones/nova-5t-premium-edition-global-dual-sim-td-lte-128gb-yal-l21/index.json b/site/public/v1/smartphones/nova-5t-premium-edition-global-dual-sim-td-lte-128gb-yal-l21/index.json new file mode 100644 index 00000000000..042e5c0c5b7 --- /dev/null +++ b/site/public/v1/smartphones/nova-5t-premium-edition-global-dual-sim-td-lte-128gb-yal-l21/index.json @@ -0,0 +1,76 @@ +{ + "id": 1185, + "slug": "nova-5t-premium-edition-global-dual-sim-td-lte-128gb-yal-l21", + "name": "Nova 5T Premium Edition Global Dual SIM TD-LTE 128GB YAL-L21", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2020-03-04", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3750, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.8, + "performance": 56.0, + "camera": 16.5, + "battery": 12.6, + "display": 46.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.272601", + "updated_at": "2026-06-19T00:43:44.272601" +} diff --git a/site/public/v1/smartphones/nova-5t-premium-edition-global-dual-sim-td-lte-128gb-yal-l21/score/index.json b/site/public/v1/smartphones/nova-5t-premium-edition-global-dual-sim-td-lte-128gb-yal-l21/score/index.json new file mode 100644 index 00000000000..65a9d3becda --- /dev/null +++ b/site/public/v1/smartphones/nova-5t-premium-edition-global-dual-sim-td-lte-128gb-yal-l21/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.8, + "performance": 56.0, + "camera": 16.5, + "battery": 12.6, + "display": 46.2, + "value": null +} diff --git a/site/public/v1/smartphones/nova-5t-premium-edition-global-dual-sim-td-lte-128gb-yal-l61d/index.json b/site/public/v1/smartphones/nova-5t-premium-edition-global-dual-sim-td-lte-128gb-yal-l61d/index.json new file mode 100644 index 00000000000..049f9656d93 --- /dev/null +++ b/site/public/v1/smartphones/nova-5t-premium-edition-global-dual-sim-td-lte-128gb-yal-l61d/index.json @@ -0,0 +1,76 @@ +{ + "id": 1055, + "slug": "nova-5t-premium-edition-global-dual-sim-td-lte-128gb-yal-l61d", + "name": "Nova 5T Premium Edition Global Dual SIM TD-LTE 128GB YAL-L61D", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-08-31", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3750, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.8, + "performance": 56.0, + "camera": 16.5, + "battery": 12.6, + "display": 46.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.255091", + "updated_at": "2026-06-19T00:43:44.255091" +} diff --git a/site/public/v1/smartphones/nova-5t-premium-edition-global-dual-sim-td-lte-128gb-yal-l61d/score/index.json b/site/public/v1/smartphones/nova-5t-premium-edition-global-dual-sim-td-lte-128gb-yal-l61d/score/index.json new file mode 100644 index 00000000000..65a9d3becda --- /dev/null +++ b/site/public/v1/smartphones/nova-5t-premium-edition-global-dual-sim-td-lte-128gb-yal-l61d/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.8, + "performance": 56.0, + "camera": 16.5, + "battery": 12.6, + "display": 46.2, + "value": null +} diff --git a/site/public/v1/smartphones/nova-5t-standard-edition-global-dual-sim-td-lte-128gb-yal-l61a/index.json b/site/public/v1/smartphones/nova-5t-standard-edition-global-dual-sim-td-lte-128gb-yal-l61a/index.json new file mode 100644 index 00000000000..c18fbb97804 --- /dev/null +++ b/site/public/v1/smartphones/nova-5t-standard-edition-global-dual-sim-td-lte-128gb-yal-l61a/index.json @@ -0,0 +1,76 @@ +{ + "id": 1056, + "slug": "nova-5t-standard-edition-global-dual-sim-td-lte-128gb-yal-l61a", + "name": "Nova 5T Standard Edition Global Dual SIM TD-LTE 128GB YAL-L61A", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3750, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 54.5, + "camera": 16.5, + "battery": 12.6, + "display": 46.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.256094", + "updated_at": "2026-06-19T00:43:44.256094" +} diff --git a/site/public/v1/smartphones/nova-5t-standard-edition-global-dual-sim-td-lte-128gb-yal-l61a/score/index.json b/site/public/v1/smartphones/nova-5t-standard-edition-global-dual-sim-td-lte-128gb-yal-l61a/score/index.json new file mode 100644 index 00000000000..9f4a346cbb4 --- /dev/null +++ b/site/public/v1/smartphones/nova-5t-standard-edition-global-dual-sim-td-lte-128gb-yal-l61a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 54.5, + "camera": 16.5, + "battery": 12.6, + "display": 46.2, + "value": null +} diff --git a/site/public/v1/smartphones/nova-5t-standard-edition-global-td-lte-128gb-yal-l71a/index.json b/site/public/v1/smartphones/nova-5t-standard-edition-global-td-lte-128gb-yal-l71a/index.json new file mode 100644 index 00000000000..c7df850ac38 --- /dev/null +++ b/site/public/v1/smartphones/nova-5t-standard-edition-global-td-lte-128gb-yal-l71a/index.json @@ -0,0 +1,76 @@ +{ + "id": 1057, + "slug": "nova-5t-standard-edition-global-td-lte-128gb-yal-l71a", + "name": "Nova 5T Standard Edition Global TD-LTE 128GB YAL-L71A", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3750, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 54.5, + "camera": 16.5, + "battery": 12.6, + "display": 46.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.256094", + "updated_at": "2026-06-19T00:43:44.256094" +} diff --git a/site/public/v1/smartphones/nova-5t-standard-edition-global-td-lte-128gb-yal-l71a/score/index.json b/site/public/v1/smartphones/nova-5t-standard-edition-global-td-lte-128gb-yal-l71a/score/index.json new file mode 100644 index 00000000000..9f4a346cbb4 --- /dev/null +++ b/site/public/v1/smartphones/nova-5t-standard-edition-global-td-lte-128gb-yal-l71a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 54.5, + "camera": 16.5, + "battery": 12.6, + "display": 46.2, + "value": null +} diff --git a/site/public/v1/smartphones/nova-5t-standard-edition-global-td-lte-128gb-yal-lx1/index.json b/site/public/v1/smartphones/nova-5t-standard-edition-global-td-lte-128gb-yal-lx1/index.json new file mode 100644 index 00000000000..81ad91b6ba2 --- /dev/null +++ b/site/public/v1/smartphones/nova-5t-standard-edition-global-td-lte-128gb-yal-lx1/index.json @@ -0,0 +1,76 @@ +{ + "id": 1058, + "slug": "nova-5t-standard-edition-global-td-lte-128gb-yal-lx1", + "name": "Nova 5T Standard Edition Global TD-LTE 128GB YAL-LX1", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-06-21", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3750, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 54.5, + "camera": 16.5, + "battery": 12.6, + "display": 46.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.256094", + "updated_at": "2026-06-19T00:43:44.256094" +} diff --git a/site/public/v1/smartphones/nova-5t-standard-edition-global-td-lte-128gb-yal-lx1/score/index.json b/site/public/v1/smartphones/nova-5t-standard-edition-global-td-lte-128gb-yal-lx1/score/index.json new file mode 100644 index 00000000000..9f4a346cbb4 --- /dev/null +++ b/site/public/v1/smartphones/nova-5t-standard-edition-global-td-lte-128gb-yal-lx1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 54.5, + "camera": 16.5, + "battery": 12.6, + "display": 46.2, + "value": null +} diff --git a/site/public/v1/smartphones/nova-5z-dual-sim-td-lte-cn-64gb-spn-al00/index.json b/site/public/v1/smartphones/nova-5z-dual-sim-td-lte-cn-64gb-spn-al00/index.json new file mode 100644 index 00000000000..c7d0108c085 --- /dev/null +++ b/site/public/v1/smartphones/nova-5z-dual-sim-td-lte-cn-64gb-spn-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1059, + "slug": "nova-5z-dual-sim-td-lte-cn-64gb-spn-al00", + "name": "Nova 5z Dual SIM TD-LTE CN 64GB SPN-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 30, + "slug": "kirin-810", + "name": "Kirin 810", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G52 MP6", + "url": "/v1/socs/kirin-810" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 1.5, + "camera": 16.5, + "battery": 19.7, + "display": 46.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.256094", + "updated_at": "2026-06-19T00:43:44.256094" +} diff --git a/site/public/v1/smartphones/nova-5z-dual-sim-td-lte-cn-64gb-spn-al00/score/index.json b/site/public/v1/smartphones/nova-5z-dual-sim-td-lte-cn-64gb-spn-al00/score/index.json new file mode 100644 index 00000000000..5b6e134cd3e --- /dev/null +++ b/site/public/v1/smartphones/nova-5z-dual-sim-td-lte-cn-64gb-spn-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 1.5, + "camera": 16.5, + "battery": 19.7, + "display": 46.2, + "value": null +} diff --git a/site/public/v1/smartphones/nova-5z-dual-sim-td-lte-cn-64gb-spn-tl00/index.json b/site/public/v1/smartphones/nova-5z-dual-sim-td-lte-cn-64gb-spn-tl00/index.json new file mode 100644 index 00000000000..f33bf18adca --- /dev/null +++ b/site/public/v1/smartphones/nova-5z-dual-sim-td-lte-cn-64gb-spn-tl00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1060, + "slug": "nova-5z-dual-sim-td-lte-cn-64gb-spn-tl00", + "name": "Nova 5z Dual SIM TD-LTE CN 64GB SPN-TL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 30, + "slug": "kirin-810", + "name": "Kirin 810", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G52 MP6", + "url": "/v1/socs/kirin-810" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 1.5, + "camera": 16.5, + "battery": 19.7, + "display": 46.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.256094", + "updated_at": "2026-06-19T00:43:44.256094" +} diff --git a/site/public/v1/smartphones/nova-5z-dual-sim-td-lte-cn-64gb-spn-tl00/score/index.json b/site/public/v1/smartphones/nova-5z-dual-sim-td-lte-cn-64gb-spn-tl00/score/index.json new file mode 100644 index 00000000000..5b6e134cd3e --- /dev/null +++ b/site/public/v1/smartphones/nova-5z-dual-sim-td-lte-cn-64gb-spn-tl00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 1.5, + "camera": 16.5, + "battery": 19.7, + "display": 46.2, + "value": null +} diff --git a/site/public/v1/smartphones/nova-6-se-dual-sim-td-lte-cn-128gb-jny-al10/index.json b/site/public/v1/smartphones/nova-6-se-dual-sim-td-lte-cn-128gb-jny-al10/index.json new file mode 100644 index 00000000000..da2645a3368 --- /dev/null +++ b/site/public/v1/smartphones/nova-6-se-dual-sim-td-lte-cn-128gb-jny-al10/index.json @@ -0,0 +1,76 @@ +{ + "id": 1061, + "slug": "nova-6-se-dual-sim-td-lte-cn-128gb-jny-al10", + "name": "Nova 6 SE Dual SIM TD-LTE CN 128GB JNY-AL10", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 30, + "slug": "kirin-810", + "name": "Kirin 810", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G52 MP6", + "url": "/v1/socs/kirin-810" + }, + "release_date": "2019-12-24", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 3.0, + "camera": 16.5, + "battery": 22.8, + "display": 44.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.256094", + "updated_at": "2026-06-19T00:43:44.256094" +} diff --git a/site/public/v1/smartphones/nova-6-se-dual-sim-td-lte-cn-128gb-jny-al10/score/index.json b/site/public/v1/smartphones/nova-6-se-dual-sim-td-lte-cn-128gb-jny-al10/score/index.json new file mode 100644 index 00000000000..d35c76fdb24 --- /dev/null +++ b/site/public/v1/smartphones/nova-6-se-dual-sim-td-lte-cn-128gb-jny-al10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 3.0, + "camera": 16.5, + "battery": 22.8, + "display": 44.9, + "value": null +} diff --git a/site/public/v1/smartphones/nova-6-se-dual-sim-td-lte-cn-128gb-jny-tl10/index.json b/site/public/v1/smartphones/nova-6-se-dual-sim-td-lte-cn-128gb-jny-tl10/index.json new file mode 100644 index 00000000000..f57f9974dd9 --- /dev/null +++ b/site/public/v1/smartphones/nova-6-se-dual-sim-td-lte-cn-128gb-jny-tl10/index.json @@ -0,0 +1,76 @@ +{ + "id": 1062, + "slug": "nova-6-se-dual-sim-td-lte-cn-128gb-jny-tl10", + "name": "Nova 6 SE Dual SIM TD-LTE CN 128GB JNY-TL10", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 30, + "slug": "kirin-810", + "name": "Kirin 810", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G52 MP6", + "url": "/v1/socs/kirin-810" + }, + "release_date": "2019-12-24", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 3.0, + "camera": 16.5, + "battery": 22.8, + "display": 44.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.257092", + "updated_at": "2026-06-19T00:43:44.257092" +} diff --git a/site/public/v1/smartphones/nova-6-se-dual-sim-td-lte-cn-128gb-jny-tl10/score/index.json b/site/public/v1/smartphones/nova-6-se-dual-sim-td-lte-cn-128gb-jny-tl10/score/index.json new file mode 100644 index 00000000000..d35c76fdb24 --- /dev/null +++ b/site/public/v1/smartphones/nova-6-se-dual-sim-td-lte-cn-128gb-jny-tl10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 3.0, + "camera": 16.5, + "battery": 22.8, + "display": 44.9, + "value": null +} diff --git a/site/public/v1/smartphones/nova-7-5g-dual-sim-td-lte-cn-128gb-jef-an00-jef-an20/index.json b/site/public/v1/smartphones/nova-7-5g-dual-sim-td-lte-cn-128gb-jef-an00-jef-an20/index.json new file mode 100644 index 00000000000..b51c6106338 --- /dev/null +++ b/site/public/v1/smartphones/nova-7-5g-dual-sim-td-lte-cn-128gb-jef-an00-jef-an20/index.json @@ -0,0 +1,76 @@ +{ + "id": 1186, + "slug": "nova-7-5g-dual-sim-td-lte-cn-128gb-jef-an00-jef-an20", + "name": "Nova 7 5G Dual SIM TD-LTE CN 128GB JEF-AN00 / JEF-AN20", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 37, + "slug": "kirin-985", + "name": "Kirin 985", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP8", + "url": "/v1/socs/kirin-985" + }, + "release_date": "2020-04-28", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 3.0, + "camera": 21.5, + "battery": 19.7, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.273606", + "updated_at": "2026-06-19T00:43:44.273606" +} diff --git a/site/public/v1/smartphones/nova-7-5g-dual-sim-td-lte-cn-128gb-jef-an00-jef-an20/score/index.json b/site/public/v1/smartphones/nova-7-5g-dual-sim-td-lte-cn-128gb-jef-an00-jef-an20/score/index.json new file mode 100644 index 00000000000..d2309fa2f42 --- /dev/null +++ b/site/public/v1/smartphones/nova-7-5g-dual-sim-td-lte-cn-128gb-jef-an00-jef-an20/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 3.0, + "camera": 21.5, + "battery": 19.7, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/nova-7-5g-dual-sim-td-lte-cn-128gb-jef-tn00-jef-tn20/index.json b/site/public/v1/smartphones/nova-7-5g-dual-sim-td-lte-cn-128gb-jef-tn00-jef-tn20/index.json new file mode 100644 index 00000000000..46791404424 --- /dev/null +++ b/site/public/v1/smartphones/nova-7-5g-dual-sim-td-lte-cn-128gb-jef-tn00-jef-tn20/index.json @@ -0,0 +1,76 @@ +{ + "id": 1187, + "slug": "nova-7-5g-dual-sim-td-lte-cn-128gb-jef-tn00-jef-tn20", + "name": "Nova 7 5G Dual SIM TD-LTE CN 128GB JEF-TN00 / JEF-TN20", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 37, + "slug": "kirin-985", + "name": "Kirin 985", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP8", + "url": "/v1/socs/kirin-985" + }, + "release_date": "2020-04-28", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 3.0, + "camera": 21.5, + "battery": 19.7, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.273606", + "updated_at": "2026-06-19T00:43:44.273606" +} diff --git a/site/public/v1/smartphones/nova-7-5g-dual-sim-td-lte-cn-128gb-jef-tn00-jef-tn20/score/index.json b/site/public/v1/smartphones/nova-7-5g-dual-sim-td-lte-cn-128gb-jef-tn00-jef-tn20/score/index.json new file mode 100644 index 00000000000..d2309fa2f42 --- /dev/null +++ b/site/public/v1/smartphones/nova-7-5g-dual-sim-td-lte-cn-128gb-jef-tn00-jef-tn20/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 3.0, + "camera": 21.5, + "battery": 19.7, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/nova-7-5g-dual-sim-td-lte-cn-256gb-jef-an00-jef-an20/index.json b/site/public/v1/smartphones/nova-7-5g-dual-sim-td-lte-cn-256gb-jef-an00-jef-an20/index.json new file mode 100644 index 00000000000..01c17b2b1b5 --- /dev/null +++ b/site/public/v1/smartphones/nova-7-5g-dual-sim-td-lte-cn-256gb-jef-an00-jef-an20/index.json @@ -0,0 +1,76 @@ +{ + "id": 1188, + "slug": "nova-7-5g-dual-sim-td-lte-cn-256gb-jef-an00-jef-an20", + "name": "Nova 7 5G Dual SIM TD-LTE CN 256GB JEF-AN00 / JEF-AN20", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 37, + "slug": "kirin-985", + "name": "Kirin 985", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP8", + "url": "/v1/socs/kirin-985" + }, + "release_date": "2020-04-28", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 3.0, + "camera": 21.5, + "battery": 19.7, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.273606", + "updated_at": "2026-06-19T00:43:44.273606" +} diff --git a/site/public/v1/smartphones/nova-7-5g-dual-sim-td-lte-cn-256gb-jef-an00-jef-an20/score/index.json b/site/public/v1/smartphones/nova-7-5g-dual-sim-td-lte-cn-256gb-jef-an00-jef-an20/score/index.json new file mode 100644 index 00000000000..d2309fa2f42 --- /dev/null +++ b/site/public/v1/smartphones/nova-7-5g-dual-sim-td-lte-cn-256gb-jef-an00-jef-an20/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 3.0, + "camera": 21.5, + "battery": 19.7, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/nova-7-5g-global-dual-sim-td-lte-256gb-jef-nx9-jef-n29/index.json b/site/public/v1/smartphones/nova-7-5g-global-dual-sim-td-lte-256gb-jef-nx9-jef-n29/index.json new file mode 100644 index 00000000000..9faefd8a2cd --- /dev/null +++ b/site/public/v1/smartphones/nova-7-5g-global-dual-sim-td-lte-256gb-jef-nx9-jef-n29/index.json @@ -0,0 +1,76 @@ +{ + "id": 1189, + "slug": "nova-7-5g-global-dual-sim-td-lte-256gb-jef-nx9-jef-n29", + "name": "Nova 7 5G Global Dual SIM TD-LTE 256GB JEF-NX9 / JEF-N29", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 37, + "slug": "kirin-985", + "name": "Kirin 985", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP8", + "url": "/v1/socs/kirin-985" + }, + "release_date": "2020-07-07", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 3.0, + "camera": 21.5, + "battery": 19.7, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.273606", + "updated_at": "2026-06-19T00:43:44.273606" +} diff --git a/site/public/v1/smartphones/nova-7-5g-global-dual-sim-td-lte-256gb-jef-nx9-jef-n29/score/index.json b/site/public/v1/smartphones/nova-7-5g-global-dual-sim-td-lte-256gb-jef-nx9-jef-n29/score/index.json new file mode 100644 index 00000000000..d2309fa2f42 --- /dev/null +++ b/site/public/v1/smartphones/nova-7-5g-global-dual-sim-td-lte-256gb-jef-nx9-jef-n29/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 3.0, + "camera": 21.5, + "battery": 19.7, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/nova-7-pro-5g-dual-sim-td-lte-cn-128gb-jer-an10-jer-an20/index.json b/site/public/v1/smartphones/nova-7-pro-5g-dual-sim-td-lte-cn-128gb-jer-an10-jer-an20/index.json new file mode 100644 index 00000000000..8a70837b768 --- /dev/null +++ b/site/public/v1/smartphones/nova-7-pro-5g-dual-sim-td-lte-cn-128gb-jer-an10-jer-an20/index.json @@ -0,0 +1,76 @@ +{ + "id": 1190, + "slug": "nova-7-pro-5g-dual-sim-td-lte-cn-128gb-jer-an10-jer-an20", + "name": "Nova 7 Pro 5G Dual SIM TD-LTE CN 128GB JER-AN10 / JER-AN20", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 37, + "slug": "kirin-985", + "name": "Kirin 985", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP8", + "url": "/v1/socs/kirin-985" + }, + "release_date": "2020-04-28", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 392 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 3.0, + "camera": 21.5, + "battery": 19.7, + "display": 44.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.273606", + "updated_at": "2026-06-19T00:43:44.273606" +} diff --git a/site/public/v1/smartphones/nova-7-pro-5g-dual-sim-td-lte-cn-128gb-jer-an10-jer-an20/score/index.json b/site/public/v1/smartphones/nova-7-pro-5g-dual-sim-td-lte-cn-128gb-jer-an10-jer-an20/score/index.json new file mode 100644 index 00000000000..75595eb2183 --- /dev/null +++ b/site/public/v1/smartphones/nova-7-pro-5g-dual-sim-td-lte-cn-128gb-jer-an10-jer-an20/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 3.0, + "camera": 21.5, + "battery": 19.7, + "display": 44.2, + "value": null +} diff --git a/site/public/v1/smartphones/nova-7-pro-5g-dual-sim-td-lte-cn-128gb-jer-tn10-jer-tn20/index.json b/site/public/v1/smartphones/nova-7-pro-5g-dual-sim-td-lte-cn-128gb-jer-tn10-jer-tn20/index.json new file mode 100644 index 00000000000..93442d8abad --- /dev/null +++ b/site/public/v1/smartphones/nova-7-pro-5g-dual-sim-td-lte-cn-128gb-jer-tn10-jer-tn20/index.json @@ -0,0 +1,76 @@ +{ + "id": 1191, + "slug": "nova-7-pro-5g-dual-sim-td-lte-cn-128gb-jer-tn10-jer-tn20", + "name": "Nova 7 Pro 5G Dual SIM TD-LTE CN 128GB JER-TN10 / JER-TN20", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 37, + "slug": "kirin-985", + "name": "Kirin 985", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP8", + "url": "/v1/socs/kirin-985" + }, + "release_date": "2020-04-28", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 392 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 3.0, + "camera": 21.5, + "battery": 19.7, + "display": 44.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.273606", + "updated_at": "2026-06-19T00:43:44.273606" +} diff --git a/site/public/v1/smartphones/nova-7-pro-5g-dual-sim-td-lte-cn-128gb-jer-tn10-jer-tn20/score/index.json b/site/public/v1/smartphones/nova-7-pro-5g-dual-sim-td-lte-cn-128gb-jer-tn10-jer-tn20/score/index.json new file mode 100644 index 00000000000..75595eb2183 --- /dev/null +++ b/site/public/v1/smartphones/nova-7-pro-5g-dual-sim-td-lte-cn-128gb-jer-tn10-jer-tn20/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 3.0, + "camera": 21.5, + "battery": 19.7, + "display": 44.2, + "value": null +} diff --git a/site/public/v1/smartphones/nova-7-pro-5g-dual-sim-td-lte-cn-256gb-jer-an10-jer-an20/index.json b/site/public/v1/smartphones/nova-7-pro-5g-dual-sim-td-lte-cn-256gb-jer-an10-jer-an20/index.json new file mode 100644 index 00000000000..1458ef976c6 --- /dev/null +++ b/site/public/v1/smartphones/nova-7-pro-5g-dual-sim-td-lte-cn-256gb-jer-an10-jer-an20/index.json @@ -0,0 +1,76 @@ +{ + "id": 1192, + "slug": "nova-7-pro-5g-dual-sim-td-lte-cn-256gb-jer-an10-jer-an20", + "name": "Nova 7 Pro 5G Dual SIM TD-LTE CN 256GB JER-AN10 / JER-AN20", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 37, + "slug": "kirin-985", + "name": "Kirin 985", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP8", + "url": "/v1/socs/kirin-985" + }, + "release_date": "2020-04-28", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 392 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 3.0, + "camera": 21.5, + "battery": 19.7, + "display": 44.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.273606", + "updated_at": "2026-06-19T00:43:44.273606" +} diff --git a/site/public/v1/smartphones/nova-7-pro-5g-dual-sim-td-lte-cn-256gb-jer-an10-jer-an20/score/index.json b/site/public/v1/smartphones/nova-7-pro-5g-dual-sim-td-lte-cn-256gb-jer-an10-jer-an20/score/index.json new file mode 100644 index 00000000000..75595eb2183 --- /dev/null +++ b/site/public/v1/smartphones/nova-7-pro-5g-dual-sim-td-lte-cn-256gb-jer-an10-jer-an20/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 3.0, + "camera": 21.5, + "battery": 19.7, + "display": 44.2, + "value": null +} diff --git a/site/public/v1/smartphones/nova-7-se-5g-global-dual-sim-td-lte-128gb-cdy-nx9b-cdy-n29b/index.json b/site/public/v1/smartphones/nova-7-se-5g-global-dual-sim-td-lte-128gb-cdy-nx9b-cdy-n29b/index.json new file mode 100644 index 00000000000..b9a2f90bfa7 --- /dev/null +++ b/site/public/v1/smartphones/nova-7-se-5g-global-dual-sim-td-lte-128gb-cdy-nx9b-cdy-n29b/index.json @@ -0,0 +1,76 @@ +{ + "id": 1193, + "slug": "nova-7-se-5g-global-dual-sim-td-lte-128gb-cdy-nx9b-cdy-n29b", + "name": "Nova 7 SE 5G Global Dual SIM TD-LTE 128GB CDY-NX9B / CDY-N29B", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 34, + "slug": "kirin-820", + "name": "Kirin 820", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MP6", + "url": "/v1/socs/kirin-820" + }, + "release_date": "2020-06-12", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.4, + "performance": 3.0, + "camera": 21.5, + "battery": 19.7, + "display": 45.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.274606", + "updated_at": "2026-06-19T00:43:44.274606" +} diff --git a/site/public/v1/smartphones/nova-7-se-5g-global-dual-sim-td-lte-128gb-cdy-nx9b-cdy-n29b/score/index.json b/site/public/v1/smartphones/nova-7-se-5g-global-dual-sim-td-lte-128gb-cdy-nx9b-cdy-n29b/score/index.json new file mode 100644 index 00000000000..8dcca7dc0e8 --- /dev/null +++ b/site/public/v1/smartphones/nova-7-se-5g-global-dual-sim-td-lte-128gb-cdy-nx9b-cdy-n29b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.4, + "performance": 3.0, + "camera": 21.5, + "battery": 19.7, + "display": 45.5, + "value": null +} diff --git a/site/public/v1/smartphones/nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-cdy-an00-cdy-an20/index.json b/site/public/v1/smartphones/nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-cdy-an00-cdy-an20/index.json new file mode 100644 index 00000000000..3a5836c4c27 --- /dev/null +++ b/site/public/v1/smartphones/nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-cdy-an00-cdy-an20/index.json @@ -0,0 +1,76 @@ +{ + "id": 1194, + "slug": "nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-cdy-an00-cdy-an20", + "name": "Nova 7 SE 5G Premium Edition Dual SIM TD-LTE CN 128GB CDY-AN00 / CDY-AN20", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 34, + "slug": "kirin-820", + "name": "Kirin 820", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MP6", + "url": "/v1/socs/kirin-820" + }, + "release_date": "2020-04-28", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.4, + "performance": 3.0, + "camera": 21.5, + "battery": 19.7, + "display": 45.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.274606", + "updated_at": "2026-06-19T00:43:44.274606" +} diff --git a/site/public/v1/smartphones/nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-cdy-an00-cdy-an20/score/index.json b/site/public/v1/smartphones/nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-cdy-an00-cdy-an20/score/index.json new file mode 100644 index 00000000000..8dcca7dc0e8 --- /dev/null +++ b/site/public/v1/smartphones/nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-cdy-an00-cdy-an20/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.4, + "performance": 3.0, + "camera": 21.5, + "battery": 19.7, + "display": 45.5, + "value": null +} diff --git a/site/public/v1/smartphones/nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-cdy-tn00-cdy-tn20/index.json b/site/public/v1/smartphones/nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-cdy-tn00-cdy-tn20/index.json new file mode 100644 index 00000000000..9d60316a68d --- /dev/null +++ b/site/public/v1/smartphones/nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-cdy-tn00-cdy-tn20/index.json @@ -0,0 +1,76 @@ +{ + "id": 1195, + "slug": "nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-cdy-tn00-cdy-tn20", + "name": "Nova 7 SE 5G Premium Edition Dual SIM TD-LTE CN 128GB CDY-TN00 / CDY-TN20", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 34, + "slug": "kirin-820", + "name": "Kirin 820", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MP6", + "url": "/v1/socs/kirin-820" + }, + "release_date": "2020-04-28", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.4, + "performance": 3.0, + "camera": 21.5, + "battery": 19.7, + "display": 45.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.274606", + "updated_at": "2026-06-19T00:43:44.274606" +} diff --git a/site/public/v1/smartphones/nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-cdy-tn00-cdy-tn20/score/index.json b/site/public/v1/smartphones/nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-cdy-tn00-cdy-tn20/score/index.json new file mode 100644 index 00000000000..8dcca7dc0e8 --- /dev/null +++ b/site/public/v1/smartphones/nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-cdy-tn00-cdy-tn20/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.4, + "performance": 3.0, + "camera": 21.5, + "battery": 19.7, + "display": 45.5, + "value": null +} diff --git a/site/public/v1/smartphones/nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-256gb-cdy-an00-cdy-an20/index.json b/site/public/v1/smartphones/nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-256gb-cdy-an00-cdy-an20/index.json new file mode 100644 index 00000000000..a10deb6f654 --- /dev/null +++ b/site/public/v1/smartphones/nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-256gb-cdy-an00-cdy-an20/index.json @@ -0,0 +1,76 @@ +{ + "id": 1196, + "slug": "nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-256gb-cdy-an00-cdy-an20", + "name": "Nova 7 SE 5G Premium Edition Dual SIM TD-LTE CN 256GB CDY-AN00 / CDY-AN20", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 34, + "slug": "kirin-820", + "name": "Kirin 820", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MP6", + "url": "/v1/socs/kirin-820" + }, + "release_date": "2020-04-28", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.4, + "performance": 3.0, + "camera": 21.5, + "battery": 19.7, + "display": 45.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.274606", + "updated_at": "2026-06-19T00:43:44.274606" +} diff --git a/site/public/v1/smartphones/nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-256gb-cdy-an00-cdy-an20/score/index.json b/site/public/v1/smartphones/nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-256gb-cdy-an00-cdy-an20/score/index.json new file mode 100644 index 00000000000..8dcca7dc0e8 --- /dev/null +++ b/site/public/v1/smartphones/nova-7-se-5g-premium-edition-dual-sim-td-lte-cn-256gb-cdy-an00-cdy-an20/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.4, + "performance": 3.0, + "camera": 21.5, + "battery": 19.7, + "display": 45.5, + "value": null +} diff --git a/site/public/v1/smartphones/nova-7-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-cdy-an00-cdy-an20/index.json b/site/public/v1/smartphones/nova-7-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-cdy-an00-cdy-an20/index.json new file mode 100644 index 00000000000..4db05d56ea3 --- /dev/null +++ b/site/public/v1/smartphones/nova-7-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-cdy-an00-cdy-an20/index.json @@ -0,0 +1,76 @@ +{ + "id": 1197, + "slug": "nova-7-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-cdy-an00-cdy-an20", + "name": "Nova 7 SE 5G Standard Edition Dual SIM TD-LTE CN 128GB CDY-AN00 / CDY-AN20", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 34, + "slug": "kirin-820", + "name": "Kirin 820", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MP6", + "url": "/v1/socs/kirin-820" + }, + "release_date": "2020-04-28", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 1.5, + "camera": 21.5, + "battery": 19.7, + "display": 45.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.274606", + "updated_at": "2026-06-19T00:43:44.274606" +} diff --git a/site/public/v1/smartphones/nova-7-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-cdy-an00-cdy-an20/score/index.json b/site/public/v1/smartphones/nova-7-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-cdy-an00-cdy-an20/score/index.json new file mode 100644 index 00000000000..ecbb4dea56d --- /dev/null +++ b/site/public/v1/smartphones/nova-7-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-cdy-an00-cdy-an20/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 1.5, + "camera": 21.5, + "battery": 19.7, + "display": 45.5, + "value": null +} diff --git a/site/public/v1/smartphones/nova-7-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-cdy-tn00-cdy-tn20/index.json b/site/public/v1/smartphones/nova-7-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-cdy-tn00-cdy-tn20/index.json new file mode 100644 index 00000000000..677c7df6d64 --- /dev/null +++ b/site/public/v1/smartphones/nova-7-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-cdy-tn00-cdy-tn20/index.json @@ -0,0 +1,76 @@ +{ + "id": 1198, + "slug": "nova-7-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-cdy-tn00-cdy-tn20", + "name": "Nova 7 SE 5G Standard Edition Dual SIM TD-LTE CN 128GB CDY-TN00 / CDY-TN20", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 34, + "slug": "kirin-820", + "name": "Kirin 820", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MP6", + "url": "/v1/socs/kirin-820" + }, + "release_date": "2020-04-28", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 1.5, + "camera": 21.5, + "battery": 19.7, + "display": 45.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.274606", + "updated_at": "2026-06-19T00:43:44.274606" +} diff --git a/site/public/v1/smartphones/nova-7-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-cdy-tn00-cdy-tn20/score/index.json b/site/public/v1/smartphones/nova-7-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-cdy-tn00-cdy-tn20/score/index.json new file mode 100644 index 00000000000..ecbb4dea56d --- /dev/null +++ b/site/public/v1/smartphones/nova-7-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-cdy-tn00-cdy-tn20/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 1.5, + "camera": 21.5, + "battery": 19.7, + "display": 45.5, + "value": null +} diff --git a/site/public/v1/smartphones/nova-7-se-5g-vitality-edition-dual-sim-td-lte-cn-128gb-cnd-an00-nova-7-se-5g-huoli/index.json b/site/public/v1/smartphones/nova-7-se-5g-vitality-edition-dual-sim-td-lte-cn-128gb-cnd-an00-nova-7-se-5g-huoli/index.json new file mode 100644 index 00000000000..d40f6e7240b --- /dev/null +++ b/site/public/v1/smartphones/nova-7-se-5g-vitality-edition-dual-sim-td-lte-cn-128gb-cnd-an00-nova-7-se-5g-huoli/index.json @@ -0,0 +1,76 @@ +{ + "id": 1199, + "slug": "nova-7-se-5g-vitality-edition-dual-sim-td-lte-cn-128gb-cnd-an00-nova-7-se-5g-huoli", + "name": "Nova 7 SE 5G Vitality Edition Dual SIM TD-LTE CN 128GB CND-AN00 / Nova 7 SE 5G Huoli", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2020-10-01", + "msrp_usd": 2299, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.4, + "performance": 3.0, + "camera": 21.5, + "battery": 19.7, + "display": 45.5, + "value": 11.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.274606", + "updated_at": "2026-06-19T00:43:44.274606" +} diff --git a/site/public/v1/smartphones/nova-7-se-5g-vitality-edition-dual-sim-td-lte-cn-128gb-cnd-an00-nova-7-se-5g-huoli/score/index.json b/site/public/v1/smartphones/nova-7-se-5g-vitality-edition-dual-sim-td-lte-cn-128gb-cnd-an00-nova-7-se-5g-huoli/score/index.json new file mode 100644 index 00000000000..8e6370b09c4 --- /dev/null +++ b/site/public/v1/smartphones/nova-7-se-5g-vitality-edition-dual-sim-td-lte-cn-128gb-cnd-an00-nova-7-se-5g-huoli/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.4, + "performance": 3.0, + "camera": 21.5, + "battery": 19.7, + "display": 45.5, + "value": 11.2 +} diff --git a/site/public/v1/smartphones/nova-7i-dual-sim-td-lte-apac-128gb-jny-lx2-jny-l22b/index.json b/site/public/v1/smartphones/nova-7i-dual-sim-td-lte-apac-128gb-jny-lx2-jny-l22b/index.json new file mode 100644 index 00000000000..a121a896f9c --- /dev/null +++ b/site/public/v1/smartphones/nova-7i-dual-sim-td-lte-apac-128gb-jny-lx2-jny-l22b/index.json @@ -0,0 +1,76 @@ +{ + "id": 1201, + "slug": "nova-7i-dual-sim-td-lte-apac-128gb-jny-lx2-jny-l22b", + "name": "Nova 7i Dual SIM TD-LTE APAC 128GB JNY-LX2 / JNY-L22B", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 30, + "slug": "kirin-810", + "name": "Kirin 810", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G52 MP6", + "url": "/v1/socs/kirin-810" + }, + "release_date": "2020-02-14", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 3.0, + "camera": 16.5, + "battery": 22.8, + "display": 44.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.274606", + "updated_at": "2026-06-19T00:43:44.274606" +} diff --git a/site/public/v1/smartphones/nova-7i-dual-sim-td-lte-apac-128gb-jny-lx2-jny-l22b/score/index.json b/site/public/v1/smartphones/nova-7i-dual-sim-td-lte-apac-128gb-jny-lx2-jny-l22b/score/index.json new file mode 100644 index 00000000000..d35c76fdb24 --- /dev/null +++ b/site/public/v1/smartphones/nova-7i-dual-sim-td-lte-apac-128gb-jny-lx2-jny-l22b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 3.0, + "camera": 16.5, + "battery": 22.8, + "display": 44.9, + "value": null +} diff --git a/site/public/v1/smartphones/nova-7i-global-dual-sim-td-lte-128gb-jny-l21b-p40-lite-4g/index.json b/site/public/v1/smartphones/nova-7i-global-dual-sim-td-lte-128gb-jny-l21b-p40-lite-4g/index.json new file mode 100644 index 00000000000..3e324534d93 --- /dev/null +++ b/site/public/v1/smartphones/nova-7i-global-dual-sim-td-lte-128gb-jny-l21b-p40-lite-4g/index.json @@ -0,0 +1,76 @@ +{ + "id": 1202, + "slug": "nova-7i-global-dual-sim-td-lte-128gb-jny-l21b-p40-lite-4g", + "name": "Nova 7i Global Dual SIM TD-LTE 128GB JNY-L21B / P40 Lite 4G", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 30, + "slug": "kirin-810", + "name": "Kirin 810", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G52 MP6", + "url": "/v1/socs/kirin-810" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 3.0, + "camera": 16.5, + "battery": 22.8, + "display": 44.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.275606", + "updated_at": "2026-06-19T00:43:44.275606" +} diff --git a/site/public/v1/smartphones/nova-7i-global-dual-sim-td-lte-128gb-jny-l21b-p40-lite-4g/score/index.json b/site/public/v1/smartphones/nova-7i-global-dual-sim-td-lte-128gb-jny-l21b-p40-lite-4g/score/index.json new file mode 100644 index 00000000000..d35c76fdb24 --- /dev/null +++ b/site/public/v1/smartphones/nova-7i-global-dual-sim-td-lte-128gb-jny-l21b-p40-lite-4g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 3.0, + "camera": 16.5, + "battery": 22.8, + "display": 44.9, + "value": null +} diff --git a/site/public/v1/smartphones/nova-8-5g-dual-sim-td-lte-cn-128gb-ang-an00/index.json b/site/public/v1/smartphones/nova-8-5g-dual-sim-td-lte-cn-128gb-ang-an00/index.json new file mode 100644 index 00000000000..d8ae237ba61 --- /dev/null +++ b/site/public/v1/smartphones/nova-8-5g-dual-sim-td-lte-cn-128gb-ang-an00/index.json @@ -0,0 +1,77 @@ +{ + "id": 1270, + "slug": "nova-8-5g-dual-sim-td-lte-cn-128gb-ang-an00", + "name": "Nova 8 5G Dual SIM TD-LTE CN 128GB ANG-AN00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 37, + "slug": "kirin-985", + "name": "Kirin 985", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP8", + "url": "/v1/socs/kirin-985" + }, + "release_date": "2021-01-14", + "msrp_usd": 3299, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 392 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3800, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 3.0, + "camera": 21.5, + "battery": 21.7, + "display": 39.2, + "value": 10.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.283605", + "updated_at": "2026-06-19T00:43:44.283605" +} diff --git a/site/public/v1/smartphones/nova-8-5g-dual-sim-td-lte-cn-128gb-ang-an00/score/index.json b/site/public/v1/smartphones/nova-8-5g-dual-sim-td-lte-cn-128gb-ang-an00/score/index.json new file mode 100644 index 00000000000..56a2ab1a22d --- /dev/null +++ b/site/public/v1/smartphones/nova-8-5g-dual-sim-td-lte-cn-128gb-ang-an00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 3.0, + "camera": 21.5, + "battery": 21.7, + "display": 39.2, + "value": 10.7 +} diff --git a/site/public/v1/smartphones/nova-8-5g-dual-sim-td-lte-cn-256gb-ang-an00/index.json b/site/public/v1/smartphones/nova-8-5g-dual-sim-td-lte-cn-256gb-ang-an00/index.json new file mode 100644 index 00000000000..a651a328021 --- /dev/null +++ b/site/public/v1/smartphones/nova-8-5g-dual-sim-td-lte-cn-256gb-ang-an00/index.json @@ -0,0 +1,77 @@ +{ + "id": 1271, + "slug": "nova-8-5g-dual-sim-td-lte-cn-256gb-ang-an00", + "name": "Nova 8 5G Dual SIM TD-LTE CN 256GB ANG-AN00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 37, + "slug": "kirin-985", + "name": "Kirin 985", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP8", + "url": "/v1/socs/kirin-985" + }, + "release_date": "2021-01-14", + "msrp_usd": 3699, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 392 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3800, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 3.0, + "camera": 21.5, + "battery": 21.7, + "display": 39.2, + "value": 10.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.283605", + "updated_at": "2026-06-19T00:43:44.283605" +} diff --git a/site/public/v1/smartphones/nova-8-5g-dual-sim-td-lte-cn-256gb-ang-an00/score/index.json b/site/public/v1/smartphones/nova-8-5g-dual-sim-td-lte-cn-256gb-ang-an00/score/index.json new file mode 100644 index 00000000000..56a2ab1a22d --- /dev/null +++ b/site/public/v1/smartphones/nova-8-5g-dual-sim-td-lte-cn-256gb-ang-an00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 3.0, + "camera": 21.5, + "battery": 21.7, + "display": 39.2, + "value": 10.7 +} diff --git a/site/public/v1/smartphones/nova-8-pro-5g-dual-sim-td-lte-cn-128gb-brq-an00/index.json b/site/public/v1/smartphones/nova-8-pro-5g-dual-sim-td-lte-cn-128gb-brq-an00/index.json new file mode 100644 index 00000000000..0b5399bdf3d --- /dev/null +++ b/site/public/v1/smartphones/nova-8-pro-5g-dual-sim-td-lte-cn-128gb-brq-an00/index.json @@ -0,0 +1,77 @@ +{ + "id": 1272, + "slug": "nova-8-pro-5g-dual-sim-td-lte-cn-128gb-brq-an00", + "name": "Nova 8 Pro 5G Dual SIM TD-LTE CN 128GB BRQ-AN00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 37, + "slug": "kirin-985", + "name": "Kirin 985", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP8", + "url": "/v1/socs/kirin-985" + }, + "release_date": "2021-01-14", + "msrp_usd": 3999, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.72, + "resolution": "1236x2676", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 3.0, + "camera": 21.5, + "battery": 24.7, + "display": 56.4, + "value": 13.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.283605", + "updated_at": "2026-06-19T00:43:44.283605" +} diff --git a/site/public/v1/smartphones/nova-8-pro-5g-dual-sim-td-lte-cn-128gb-brq-an00/score/index.json b/site/public/v1/smartphones/nova-8-pro-5g-dual-sim-td-lte-cn-128gb-brq-an00/score/index.json new file mode 100644 index 00000000000..4627c2818d5 --- /dev/null +++ b/site/public/v1/smartphones/nova-8-pro-5g-dual-sim-td-lte-cn-128gb-brq-an00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 3.0, + "camera": 21.5, + "battery": 24.7, + "display": 56.4, + "value": 13.2 +} diff --git a/site/public/v1/smartphones/nova-8-pro-5g-dual-sim-td-lte-cn-256gb-brq-an00/index.json b/site/public/v1/smartphones/nova-8-pro-5g-dual-sim-td-lte-cn-256gb-brq-an00/index.json new file mode 100644 index 00000000000..917417a1d2a --- /dev/null +++ b/site/public/v1/smartphones/nova-8-pro-5g-dual-sim-td-lte-cn-256gb-brq-an00/index.json @@ -0,0 +1,77 @@ +{ + "id": 1273, + "slug": "nova-8-pro-5g-dual-sim-td-lte-cn-256gb-brq-an00", + "name": "Nova 8 Pro 5G Dual SIM TD-LTE CN 256GB BRQ-AN00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 37, + "slug": "kirin-985", + "name": "Kirin 985", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP8", + "url": "/v1/socs/kirin-985" + }, + "release_date": "2021-01-14", + "msrp_usd": 4399, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.72, + "resolution": "1236x2676", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 3.0, + "camera": 21.5, + "battery": 24.7, + "display": 56.4, + "value": 13.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.310606", + "updated_at": "2026-06-19T00:43:44.311607" +} diff --git a/site/public/v1/smartphones/nova-8-pro-5g-dual-sim-td-lte-cn-256gb-brq-an00/score/index.json b/site/public/v1/smartphones/nova-8-pro-5g-dual-sim-td-lte-cn-256gb-brq-an00/score/index.json new file mode 100644 index 00000000000..4627c2818d5 --- /dev/null +++ b/site/public/v1/smartphones/nova-8-pro-5g-dual-sim-td-lte-cn-256gb-brq-an00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 3.0, + "camera": 21.5, + "battery": 24.7, + "display": 56.4, + "value": 13.2 +} diff --git a/site/public/v1/smartphones/nova-8-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-jsc-an00/index.json b/site/public/v1/smartphones/nova-8-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-jsc-an00/index.json new file mode 100644 index 00000000000..09fdc5c0074 --- /dev/null +++ b/site/public/v1/smartphones/nova-8-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-jsc-an00/index.json @@ -0,0 +1,77 @@ +{ + "id": 1203, + "slug": "nova-8-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-jsc-an00", + "name": "Nova 8 SE 5G Premium Edition Dual SIM TD-LTE CN 128GB JSC-AN00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2020-11-12", + "msrp_usd": 2699, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3800, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": 3.0, + "camera": 21.5, + "battery": 21.7, + "display": 27.8, + "value": 9.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.275606", + "updated_at": "2026-06-19T00:43:44.275606" +} diff --git a/site/public/v1/smartphones/nova-8-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-jsc-an00/score/index.json b/site/public/v1/smartphones/nova-8-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-jsc-an00/score/index.json new file mode 100644 index 00000000000..1688f9d17b9 --- /dev/null +++ b/site/public/v1/smartphones/nova-8-se-5g-premium-edition-dual-sim-td-lte-cn-128gb-jsc-an00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": 3.0, + "camera": 21.5, + "battery": 21.7, + "display": 27.8, + "value": 9.2 +} diff --git a/site/public/v1/smartphones/nova-8-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-jsc-an00/index.json b/site/public/v1/smartphones/nova-8-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-jsc-an00/index.json new file mode 100644 index 00000000000..06c60a76813 --- /dev/null +++ b/site/public/v1/smartphones/nova-8-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-jsc-an00/index.json @@ -0,0 +1,77 @@ +{ + "id": 1204, + "slug": "nova-8-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-jsc-an00", + "name": "Nova 8 SE 5G Standard Edition Dual SIM TD-LTE CN 128GB JSC-AN00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2020-11-12", + "msrp_usd": 2599, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3800, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": 3.0, + "camera": 21.5, + "battery": 21.7, + "display": 27.8, + "value": 9.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.275606", + "updated_at": "2026-06-19T00:43:44.275606" +} diff --git a/site/public/v1/smartphones/nova-8-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-jsc-an00/score/index.json b/site/public/v1/smartphones/nova-8-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-jsc-an00/score/index.json new file mode 100644 index 00000000000..1688f9d17b9 --- /dev/null +++ b/site/public/v1/smartphones/nova-8-se-5g-standard-edition-dual-sim-td-lte-cn-128gb-jsc-an00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": 3.0, + "camera": 21.5, + "battery": 21.7, + "display": 27.8, + "value": 9.2 +} diff --git a/site/public/v1/smartphones/nova-8-se-youth-edition-dual-sim-td-lte-cn-128gb-chl-al60/index.json b/site/public/v1/smartphones/nova-8-se-youth-edition-dual-sim-td-lte-cn-128gb-chl-al60/index.json new file mode 100644 index 00000000000..9afaba1e7a9 --- /dev/null +++ b/site/public/v1/smartphones/nova-8-se-youth-edition-dual-sim-td-lte-cn-128gb-chl-al60/index.json @@ -0,0 +1,76 @@ +{ + "id": 1274, + "slug": "nova-8-se-youth-edition-dual-sim-td-lte-cn-128gb-chl-al60", + "name": "Nova 8 SE Youth Edition Dual SIM TD-LTE CN 128GB CHL-AL60", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 33, + "slug": "kirin-710a", + "name": "Kirin 710A", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51", + "url": "/v1/socs/kirin-710a" + }, + "release_date": "2021-08-18", + "msrp_usd": 1899, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 3.0, + "camera": 16.5, + "battery": 19.7, + "display": 44.9, + "value": 10.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.311607", + "updated_at": "2026-06-19T00:43:44.311607" +} diff --git a/site/public/v1/smartphones/nova-8-se-youth-edition-dual-sim-td-lte-cn-128gb-chl-al60/score/index.json b/site/public/v1/smartphones/nova-8-se-youth-edition-dual-sim-td-lte-cn-128gb-chl-al60/score/index.json new file mode 100644 index 00000000000..7e109368b89 --- /dev/null +++ b/site/public/v1/smartphones/nova-8-se-youth-edition-dual-sim-td-lte-cn-128gb-chl-al60/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 3.0, + "camera": 16.5, + "battery": 19.7, + "display": 44.9, + "value": 10.5 +} diff --git a/site/public/v1/smartphones/nova-8i-dual-sim-td-lte-apac-128gb-nen-l22f/index.json b/site/public/v1/smartphones/nova-8i-dual-sim-td-lte-apac-128gb-nen-l22f/index.json new file mode 100644 index 00000000000..bfb0a56c629 --- /dev/null +++ b/site/public/v1/smartphones/nova-8i-dual-sim-td-lte-apac-128gb-nen-l22f/index.json @@ -0,0 +1,76 @@ +{ + "id": 1275, + "slug": "nova-8i-dual-sim-td-lte-apac-128gb-nen-l22f", + "name": "Nova 8i Dual SIM TD-LTE APAC 128GB NEN-L22F", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-07-23", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2376", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 3.0, + "camera": 21.5, + "battery": 29.2, + "display": 44.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.311607", + "updated_at": "2026-06-19T00:43:44.311607" +} diff --git a/site/public/v1/smartphones/nova-8i-dual-sim-td-lte-apac-128gb-nen-l22f/score/index.json b/site/public/v1/smartphones/nova-8i-dual-sim-td-lte-apac-128gb-nen-l22f/score/index.json new file mode 100644 index 00000000000..c4645331b2e --- /dev/null +++ b/site/public/v1/smartphones/nova-8i-dual-sim-td-lte-apac-128gb-nen-l22f/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 3.0, + "camera": 21.5, + "battery": 29.2, + "display": 44.1, + "value": null +} diff --git a/site/public/v1/smartphones/nova-lite-2-dual-sim-td-lte-jp-704hw/index.json b/site/public/v1/smartphones/nova-lite-2-dual-sim-td-lte-jp-704hw/index.json new file mode 100644 index 00000000000..221300b00d4 --- /dev/null +++ b/site/public/v1/smartphones/nova-lite-2-dual-sim-td-lte-jp-704hw/index.json @@ -0,0 +1,76 @@ +{ + "id": 917, + "slug": "nova-lite-2-dual-sim-td-lte-jp-704hw", + "name": "Nova Lite 2 Dual SIM TD-LTE JP 704HW", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 25, + "slug": "kirin-659", + "name": "Kirin 659", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 16.0, + "gpu_name": "Mali-T830 MP2", + "url": "/v1/socs/kirin-659" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.65, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 427 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 143.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 47.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.233932", + "updated_at": "2026-06-19T00:43:44.233932" +} diff --git a/site/public/v1/smartphones/nova-lite-2-dual-sim-td-lte-jp-704hw/score/index.json b/site/public/v1/smartphones/nova-lite-2-dual-sim-td-lte-jp-704hw/score/index.json new file mode 100644 index 00000000000..d4bad91193b --- /dev/null +++ b/site/public/v1/smartphones/nova-lite-2-dual-sim-td-lte-jp-704hw/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 47.7, + "value": null +} diff --git a/site/public/v1/smartphones/nova-lite-3-dual-sim-td-lte-jp-32gb-pot-lx2j-pot-l62j-pot-l72j/index.json b/site/public/v1/smartphones/nova-lite-3-dual-sim-td-lte-jp-32gb-pot-lx2j-pot-l62j-pot-l72j/index.json new file mode 100644 index 00000000000..ab0342c5abc --- /dev/null +++ b/site/public/v1/smartphones/nova-lite-3-dual-sim-td-lte-jp-32gb-pot-lx2j-pot-l62j-pot-l72j/index.json @@ -0,0 +1,76 @@ +{ + "id": 1063, + "slug": "nova-lite-3-dual-sim-td-lte-jp-32gb-pot-lx2j-pot-l62j-pot-l72j", + "name": "Nova Lite 3 Dual SIM TD-LTE JP 32GB POT-LX2J / POT-L62J / POT-L72J", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-02-03", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3400, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 0.0, + "camera": 5.3, + "battery": 6.0, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.257092", + "updated_at": "2026-06-19T00:43:44.257092" +} diff --git a/site/public/v1/smartphones/nova-lite-3-dual-sim-td-lte-jp-32gb-pot-lx2j-pot-l62j-pot-l72j/score/index.json b/site/public/v1/smartphones/nova-lite-3-dual-sim-td-lte-jp-32gb-pot-lx2j-pot-l62j-pot-l72j/score/index.json new file mode 100644 index 00000000000..9e92c616aaf --- /dev/null +++ b/site/public/v1/smartphones/nova-lite-3-dual-sim-td-lte-jp-32gb-pot-lx2j-pot-l62j-pot-l72j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 0.0, + "camera": 5.3, + "battery": 6.0, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/nova-y60-2021-global-dual-sim-td-lte-64gb-wkg-lx9a-wkg-l29a/index.json b/site/public/v1/smartphones/nova-y60-2021-global-dual-sim-td-lte-64gb-wkg-lx9a-wkg-l29a/index.json new file mode 100644 index 00000000000..643aa34b2b1 --- /dev/null +++ b/site/public/v1/smartphones/nova-y60-2021-global-dual-sim-td-lte-64gb-wkg-lx9a-wkg-l29a/index.json @@ -0,0 +1,76 @@ +{ + "id": 1278, + "slug": "nova-y60-2021-global-dual-sim-td-lte-64gb-wkg-lx9a-wkg-l29a", + "name": "nova Y60 2021 Global Dual SIM TD-LTE 64GB WKG-LX9A / WKG-L29A", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2021-09-01", + "msrp_usd": 179, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 58.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.311607", + "updated_at": "2026-06-19T00:43:44.311607" +} diff --git a/site/public/v1/smartphones/nova-y60-2021-global-dual-sim-td-lte-64gb-wkg-lx9a-wkg-l29a/score/index.json b/site/public/v1/smartphones/nova-y60-2021-global-dual-sim-td-lte-64gb-wkg-lx9a-wkg-l29a/score/index.json new file mode 100644 index 00000000000..eb339cb8c55 --- /dev/null +++ b/site/public/v1/smartphones/nova-y60-2021-global-dual-sim-td-lte-64gb-wkg-lx9a-wkg-l29a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 58.8 +} diff --git a/site/public/v1/smartphones/nova-y60-2021-global-td-lte-64gb-wkg-l09a/index.json b/site/public/v1/smartphones/nova-y60-2021-global-td-lte-64gb-wkg-l09a/index.json new file mode 100644 index 00000000000..d161bb1b4ed --- /dev/null +++ b/site/public/v1/smartphones/nova-y60-2021-global-td-lte-64gb-wkg-l09a/index.json @@ -0,0 +1,76 @@ +{ + "id": 1279, + "slug": "nova-y60-2021-global-td-lte-64gb-wkg-l09a", + "name": "nova Y60 2021 Global TD-LTE 64GB WKG-L09A", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2021-09-01", + "msrp_usd": 179, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 58.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.311607", + "updated_at": "2026-06-19T00:43:44.311607" +} diff --git a/site/public/v1/smartphones/nova-y60-2021-global-td-lte-64gb-wkg-l09a/score/index.json b/site/public/v1/smartphones/nova-y60-2021-global-td-lte-64gb-wkg-l09a/score/index.json new file mode 100644 index 00000000000..eb339cb8c55 --- /dev/null +++ b/site/public/v1/smartphones/nova-y60-2021-global-td-lte-64gb-wkg-l09a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 58.8 +} diff --git a/site/public/v1/smartphones/nubia-m3-dual-sim-td-lte-64gb-nx611j/index.json b/site/public/v1/smartphones/nubia-m3-dual-sim-td-lte-64gb-nx611j/index.json new file mode 100644 index 00000000000..02cad7ef7ec --- /dev/null +++ b/site/public/v1/smartphones/nubia-m3-dual-sim-td-lte-64gb-nx611j/index.json @@ -0,0 +1,76 @@ +{ + "id": 6432, + "slug": "nubia-m3-dual-sim-td-lte-64gb-nx611j", + "name": "Nubia M3 Dual SIM TD-LTE 64GB NX611J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2019-01-03", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3450, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 153.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 19.5, + "camera": 8.8, + "battery": 6.8, + "display": 47.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.008824", + "updated_at": "2026-06-19T00:43:45.008824" +} diff --git a/site/public/v1/smartphones/nubia-m3-dual-sim-td-lte-64gb-nx611j/score/index.json b/site/public/v1/smartphones/nubia-m3-dual-sim-td-lte-64gb-nx611j/score/index.json new file mode 100644 index 00000000000..3e8bca71e67 --- /dev/null +++ b/site/public/v1/smartphones/nubia-m3-dual-sim-td-lte-64gb-nx611j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 19.5, + "camera": 8.8, + "battery": 6.8, + "display": 47.4, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-play-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx651j/index.json b/site/public/v1/smartphones/nubia-play-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx651j/index.json new file mode 100644 index 00000000000..e3843a6b16e --- /dev/null +++ b/site/public/v1/smartphones/nubia-play-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx651j/index.json @@ -0,0 +1,77 @@ +{ + "id": 6486, + "slug": "nubia-play-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx651j", + "name": "Nubia Play 5G Premium Edition Dual SIM TD-LTE CN 128GB NX651J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-04-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "battery_mah": 5100, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.4, + "performance": 1.5, + "camera": 16.5, + "battery": 34.4, + "display": 61.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.015824", + "updated_at": "2026-06-19T00:43:45.015824" +} diff --git a/site/public/v1/smartphones/nubia-play-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx651j/score/index.json b/site/public/v1/smartphones/nubia-play-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx651j/score/index.json new file mode 100644 index 00000000000..c18e59803bb --- /dev/null +++ b/site/public/v1/smartphones/nubia-play-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx651j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.4, + "performance": 1.5, + "camera": 16.5, + "battery": 34.4, + "display": 61.3, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-play-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx651j/index.json b/site/public/v1/smartphones/nubia-play-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx651j/index.json new file mode 100644 index 00000000000..3e253eb8c4b --- /dev/null +++ b/site/public/v1/smartphones/nubia-play-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx651j/index.json @@ -0,0 +1,77 @@ +{ + "id": 6487, + "slug": "nubia-play-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx651j", + "name": "Nubia Play 5G Premium Edition Dual SIM TD-LTE CN 256GB NX651J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-04-24", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "battery_mah": 5100, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.8, + "performance": 3.0, + "camera": 16.5, + "battery": 34.4, + "display": 61.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.015824", + "updated_at": "2026-06-19T00:43:45.015824" +} diff --git a/site/public/v1/smartphones/nubia-play-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx651j/score/index.json b/site/public/v1/smartphones/nubia-play-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx651j/score/index.json new file mode 100644 index 00000000000..445e314bbdb --- /dev/null +++ b/site/public/v1/smartphones/nubia-play-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx651j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.8, + "performance": 3.0, + "camera": 16.5, + "battery": 34.4, + "display": 61.3, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-red-magic-3-premium-edition-dual-sim-td-lte-na-128gb-nx629j/index.json b/site/public/v1/smartphones/nubia-red-magic-3-premium-edition-dual-sim-td-lte-na-128gb-nx629j/index.json new file mode 100644 index 00000000000..13533983108 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-3-premium-edition-dual-sim-td-lte-na-128gb-nx629j/index.json @@ -0,0 +1,77 @@ +{ + "id": 6433, + "slug": "nubia-red-magic-3-premium-edition-dual-sim-td-lte-na-128gb-nx629j", + "name": "Nubia Red Magic 3 Premium Edition Dual SIM TD-LTE NA 128GB NX629J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 32.3, + "display": 38.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.009824", + "updated_at": "2026-06-19T00:43:45.009824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-3-premium-edition-dual-sim-td-lte-na-128gb-nx629j/score/index.json b/site/public/v1/smartphones/nubia-red-magic-3-premium-edition-dual-sim-td-lte-na-128gb-nx629j/score/index.json new file mode 100644 index 00000000000..2d869ad88c7 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-3-premium-edition-dual-sim-td-lte-na-128gb-nx629j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 32.3, + "display": 38.8, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-red-magic-3-premium-edition-dual-sim-td-lte-na-256gb-nx629j/index.json b/site/public/v1/smartphones/nubia-red-magic-3-premium-edition-dual-sim-td-lte-na-256gb-nx629j/index.json new file mode 100644 index 00000000000..04554da35dc --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-3-premium-edition-dual-sim-td-lte-na-256gb-nx629j/index.json @@ -0,0 +1,77 @@ +{ + "id": 6434, + "slug": "nubia-red-magic-3-premium-edition-dual-sim-td-lte-na-256gb-nx629j", + "name": "Nubia Red Magic 3 Premium Edition Dual SIM TD-LTE NA 256GB NX629J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": 6.0, + "camera": 16.5, + "battery": 32.3, + "display": 38.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.009824", + "updated_at": "2026-06-19T00:43:45.009824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-3-premium-edition-dual-sim-td-lte-na-256gb-nx629j/score/index.json b/site/public/v1/smartphones/nubia-red-magic-3-premium-edition-dual-sim-td-lte-na-256gb-nx629j/score/index.json new file mode 100644 index 00000000000..1952313bc9f --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-3-premium-edition-dual-sim-td-lte-na-256gb-nx629j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": 6.0, + "camera": 16.5, + "battery": 32.3, + "display": 38.8, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-red-magic-3-premium-edition-global-dual-sim-td-lte-128gb-nx629j/index.json b/site/public/v1/smartphones/nubia-red-magic-3-premium-edition-global-dual-sim-td-lte-128gb-nx629j/index.json new file mode 100644 index 00000000000..a2faa01e5fe --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-3-premium-edition-global-dual-sim-td-lte-128gb-nx629j/index.json @@ -0,0 +1,77 @@ +{ + "id": 6435, + "slug": "nubia-red-magic-3-premium-edition-global-dual-sim-td-lte-128gb-nx629j", + "name": "Nubia Red Magic 3 Premium Edition Global Dual SIM TD-LTE 128GB NX629J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-03", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 32.3, + "display": 38.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.009824", + "updated_at": "2026-06-19T00:43:45.009824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-3-premium-edition-global-dual-sim-td-lte-128gb-nx629j/score/index.json b/site/public/v1/smartphones/nubia-red-magic-3-premium-edition-global-dual-sim-td-lte-128gb-nx629j/score/index.json new file mode 100644 index 00000000000..2d869ad88c7 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-3-premium-edition-global-dual-sim-td-lte-128gb-nx629j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 32.3, + "display": 38.8, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-red-magic-3-premium-edition-global-dual-sim-td-lte-256gb-nx629j/index.json b/site/public/v1/smartphones/nubia-red-magic-3-premium-edition-global-dual-sim-td-lte-256gb-nx629j/index.json new file mode 100644 index 00000000000..39fc2b7bff9 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-3-premium-edition-global-dual-sim-td-lte-256gb-nx629j/index.json @@ -0,0 +1,77 @@ +{ + "id": 6436, + "slug": "nubia-red-magic-3-premium-edition-global-dual-sim-td-lte-256gb-nx629j", + "name": "Nubia Red Magic 3 Premium Edition Global Dual SIM TD-LTE 256GB NX629J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": 6.0, + "camera": 16.5, + "battery": 32.3, + "display": 38.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.009824", + "updated_at": "2026-06-19T00:43:45.009824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-3-premium-edition-global-dual-sim-td-lte-256gb-nx629j/score/index.json b/site/public/v1/smartphones/nubia-red-magic-3-premium-edition-global-dual-sim-td-lte-256gb-nx629j/score/index.json new file mode 100644 index 00000000000..1952313bc9f --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-3-premium-edition-global-dual-sim-td-lte-256gb-nx629j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": 6.0, + "camera": 16.5, + "battery": 32.3, + "display": 38.8, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-red-magic-3-standard-edition-global-dual-sim-td-lte-128gb-nx629j/index.json b/site/public/v1/smartphones/nubia-red-magic-3-standard-edition-global-dual-sim-td-lte-128gb-nx629j/index.json new file mode 100644 index 00000000000..e4d6349bef7 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-3-standard-edition-global-dual-sim-td-lte-128gb-nx629j/index.json @@ -0,0 +1,77 @@ +{ + "id": 6437, + "slug": "nubia-red-magic-3-standard-edition-global-dual-sim-td-lte-128gb-nx629j", + "name": "Nubia Red Magic 3 Standard Edition Global Dual SIM TD-LTE 128GB NX629J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-03", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 1.5, + "camera": 16.5, + "battery": 32.3, + "display": 38.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.009824", + "updated_at": "2026-06-19T00:43:45.009824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-3-standard-edition-global-dual-sim-td-lte-128gb-nx629j/score/index.json b/site/public/v1/smartphones/nubia-red-magic-3-standard-edition-global-dual-sim-td-lte-128gb-nx629j/score/index.json new file mode 100644 index 00000000000..3b378b6d4c1 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-3-standard-edition-global-dual-sim-td-lte-128gb-nx629j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 1.5, + "camera": 16.5, + "battery": 32.3, + "display": 38.8, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-red-magic-3-standard-edition-global-dual-sim-td-lte-64gb-nx629j/index.json b/site/public/v1/smartphones/nubia-red-magic-3-standard-edition-global-dual-sim-td-lte-64gb-nx629j/index.json new file mode 100644 index 00000000000..490c39fec3b --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-3-standard-edition-global-dual-sim-td-lte-64gb-nx629j/index.json @@ -0,0 +1,77 @@ +{ + "id": 6438, + "slug": "nubia-red-magic-3-standard-edition-global-dual-sim-td-lte-64gb-nx629j", + "name": "Nubia Red Magic 3 Standard Edition Global Dual SIM TD-LTE 64GB NX629J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-03", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 1.5, + "camera": 16.5, + "battery": 32.3, + "display": 38.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.009824", + "updated_at": "2026-06-19T00:43:45.009824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-3-standard-edition-global-dual-sim-td-lte-64gb-nx629j/score/index.json b/site/public/v1/smartphones/nubia-red-magic-3-standard-edition-global-dual-sim-td-lte-64gb-nx629j/score/index.json new file mode 100644 index 00000000000..3b378b6d4c1 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-3-standard-edition-global-dual-sim-td-lte-64gb-nx629j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 1.5, + "camera": 16.5, + "battery": 32.3, + "display": 38.8, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-red-magic-3s-premium-edition-global-dual-sim-td-lte-256gb-nx629j/index.json b/site/public/v1/smartphones/nubia-red-magic-3s-premium-edition-global-dual-sim-td-lte-256gb-nx629j/index.json new file mode 100644 index 00000000000..ca2bcd16f17 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-3s-premium-edition-global-dual-sim-td-lte-256gb-nx629j/index.json @@ -0,0 +1,77 @@ +{ + "id": 6439, + "slug": "nubia-red-magic-3s-premium-edition-global-dual-sim-td-lte-256gb-nx629j", + "name": "Nubia Red Magic 3S Premium Edition Global Dual SIM TD-LTE 256GB NX629J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-09-09", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": 6.0, + "camera": 16.5, + "battery": 32.3, + "display": 38.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.009824", + "updated_at": "2026-06-19T00:43:45.009824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-3s-premium-edition-global-dual-sim-td-lte-256gb-nx629j/score/index.json b/site/public/v1/smartphones/nubia-red-magic-3s-premium-edition-global-dual-sim-td-lte-256gb-nx629j/score/index.json new file mode 100644 index 00000000000..1952313bc9f --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-3s-premium-edition-global-dual-sim-td-lte-256gb-nx629j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": 6.0, + "camera": 16.5, + "battery": 32.3, + "display": 38.8, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-red-magic-3s-standard-edition-global-dual-sim-td-lte-128gb-nx629j/index.json b/site/public/v1/smartphones/nubia-red-magic-3s-standard-edition-global-dual-sim-td-lte-128gb-nx629j/index.json new file mode 100644 index 00000000000..85410697619 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-3s-standard-edition-global-dual-sim-td-lte-128gb-nx629j/index.json @@ -0,0 +1,77 @@ +{ + "id": 6440, + "slug": "nubia-red-magic-3s-standard-edition-global-dual-sim-td-lte-128gb-nx629j", + "name": "Nubia Red Magic 3S Standard Edition Global Dual SIM TD-LTE 128GB NX629J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-09-09", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 32.3, + "display": 38.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.009824", + "updated_at": "2026-06-19T00:43:45.009824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-3s-standard-edition-global-dual-sim-td-lte-128gb-nx629j/score/index.json b/site/public/v1/smartphones/nubia-red-magic-3s-standard-edition-global-dual-sim-td-lte-128gb-nx629j/score/index.json new file mode 100644 index 00000000000..2d869ad88c7 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-3s-standard-edition-global-dual-sim-td-lte-128gb-nx629j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 32.3, + "display": 38.8, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-red-magic-5g-lite-premium-edition-global-dual-sim-td-lte-256gb-nx651j/index.json b/site/public/v1/smartphones/nubia-red-magic-5g-lite-premium-edition-global-dual-sim-td-lte-256gb-nx651j/index.json new file mode 100644 index 00000000000..02bbcffb7c3 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-5g-lite-premium-edition-global-dual-sim-td-lte-256gb-nx651j/index.json @@ -0,0 +1,77 @@ +{ + "id": 6488, + "slug": "nubia-red-magic-5g-lite-premium-edition-global-dual-sim-td-lte-256gb-nx651j", + "name": "Nubia Red Magic 5G Lite Premium Edition Global Dual SIM TD-LTE 256GB NX651J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-07-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "battery_mah": 5100, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.8, + "performance": 3.0, + "camera": 16.5, + "battery": 34.4, + "display": 61.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.015824", + "updated_at": "2026-06-19T00:43:45.015824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-5g-lite-premium-edition-global-dual-sim-td-lte-256gb-nx651j/score/index.json b/site/public/v1/smartphones/nubia-red-magic-5g-lite-premium-edition-global-dual-sim-td-lte-256gb-nx651j/score/index.json new file mode 100644 index 00000000000..445e314bbdb --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-5g-lite-premium-edition-global-dual-sim-td-lte-256gb-nx651j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.8, + "performance": 3.0, + "camera": 16.5, + "battery": 34.4, + "display": 61.3, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-red-magic-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx659j/index.json b/site/public/v1/smartphones/nubia-red-magic-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx659j/index.json new file mode 100644 index 00000000000..39761a1ae0d --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx659j/index.json @@ -0,0 +1,77 @@ +{ + "id": 6489, + "slug": "nubia-red-magic-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx659j", + "name": "Nubia Red Magic 5G Premium Edition Dual SIM TD-LTE CN 128GB NX659J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-19", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 218.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.7, + "performance": 6.0, + "camera": 21.5, + "battery": 30.1, + "display": 61.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.015824", + "updated_at": "2026-06-19T00:43:45.015824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx659j/score/index.json b/site/public/v1/smartphones/nubia-red-magic-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx659j/score/index.json new file mode 100644 index 00000000000..5d4188f4011 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx659j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.7, + "performance": 6.0, + "camera": 21.5, + "battery": 30.1, + "display": 61.3, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-red-magic-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx659j/index.json b/site/public/v1/smartphones/nubia-red-magic-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx659j/index.json new file mode 100644 index 00000000000..81771d1f933 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx659j/index.json @@ -0,0 +1,77 @@ +{ + "id": 6490, + "slug": "nubia-red-magic-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx659j", + "name": "Nubia Red Magic 5G Premium Edition Dual SIM TD-LTE CN 256GB NX659J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-19", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 218.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.7, + "performance": 6.0, + "camera": 21.5, + "battery": 30.1, + "display": 61.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.016824", + "updated_at": "2026-06-19T00:43:45.016824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx659j/score/index.json b/site/public/v1/smartphones/nubia-red-magic-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx659j/score/index.json new file mode 100644 index 00000000000..5d4188f4011 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx659j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.7, + "performance": 6.0, + "camera": 21.5, + "battery": 30.1, + "display": 61.3, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-red-magic-5g-premium-edition-global-dual-sim-td-lte-128gb-nx659j/index.json b/site/public/v1/smartphones/nubia-red-magic-5g-premium-edition-global-dual-sim-td-lte-128gb-nx659j/index.json new file mode 100644 index 00000000000..d640dea3c24 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-5g-premium-edition-global-dual-sim-td-lte-128gb-nx659j/index.json @@ -0,0 +1,77 @@ +{ + "id": 6491, + "slug": "nubia-red-magic-5g-premium-edition-global-dual-sim-td-lte-128gb-nx659j", + "name": "Nubia Red Magic 5G Premium Edition Global Dual SIM TD-LTE 128GB NX659J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-06-16", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 218.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.7, + "performance": 6.0, + "camera": 21.5, + "battery": 30.1, + "display": 61.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.016824", + "updated_at": "2026-06-19T00:43:45.016824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-5g-premium-edition-global-dual-sim-td-lte-128gb-nx659j/score/index.json b/site/public/v1/smartphones/nubia-red-magic-5g-premium-edition-global-dual-sim-td-lte-128gb-nx659j/score/index.json new file mode 100644 index 00000000000..5d4188f4011 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-5g-premium-edition-global-dual-sim-td-lte-128gb-nx659j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.7, + "performance": 6.0, + "camera": 21.5, + "battery": 30.1, + "display": 61.3, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-red-magic-5g-premium-edition-global-dual-sim-td-lte-256gb-nx659j/index.json b/site/public/v1/smartphones/nubia-red-magic-5g-premium-edition-global-dual-sim-td-lte-256gb-nx659j/index.json new file mode 100644 index 00000000000..66cf6f96cd2 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-5g-premium-edition-global-dual-sim-td-lte-256gb-nx659j/index.json @@ -0,0 +1,77 @@ +{ + "id": 6492, + "slug": "nubia-red-magic-5g-premium-edition-global-dual-sim-td-lte-256gb-nx659j", + "name": "Nubia Red Magic 5G Premium Edition Global Dual SIM TD-LTE 256GB NX659J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-14", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 218.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.7, + "performance": 6.0, + "camera": 21.5, + "battery": 30.1, + "display": 61.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.016824", + "updated_at": "2026-06-19T00:43:45.016824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-5g-premium-edition-global-dual-sim-td-lte-256gb-nx659j/score/index.json b/site/public/v1/smartphones/nubia-red-magic-5g-premium-edition-global-dual-sim-td-lte-256gb-nx659j/score/index.json new file mode 100644 index 00000000000..5d4188f4011 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-5g-premium-edition-global-dual-sim-td-lte-256gb-nx659j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.7, + "performance": 6.0, + "camera": 21.5, + "battery": 30.1, + "display": 61.3, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-red-magic-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx659j/index.json b/site/public/v1/smartphones/nubia-red-magic-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx659j/index.json new file mode 100644 index 00000000000..033f7aaaebc --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx659j/index.json @@ -0,0 +1,77 @@ +{ + "id": 6493, + "slug": "nubia-red-magic-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx659j", + "name": "Nubia Red Magic 5G Standard Edition Dual SIM TD-LTE CN 128GB NX659J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-19", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 218.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.0, + "performance": 3.0, + "camera": 21.5, + "battery": 30.1, + "display": 61.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.016824", + "updated_at": "2026-06-19T00:43:45.016824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx659j/score/index.json b/site/public/v1/smartphones/nubia-red-magic-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx659j/score/index.json new file mode 100644 index 00000000000..5e326526ee0 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx659j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.0, + "performance": 3.0, + "camera": 21.5, + "battery": 30.1, + "display": 61.3, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-red-magic-5g-standard-edition-global-dual-sim-td-lte-128gb-nx659j/index.json b/site/public/v1/smartphones/nubia-red-magic-5g-standard-edition-global-dual-sim-td-lte-128gb-nx659j/index.json new file mode 100644 index 00000000000..836e509e582 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-5g-standard-edition-global-dual-sim-td-lte-128gb-nx659j/index.json @@ -0,0 +1,77 @@ +{ + "id": 6494, + "slug": "nubia-red-magic-5g-standard-edition-global-dual-sim-td-lte-128gb-nx659j", + "name": "Nubia Red Magic 5G Standard Edition Global Dual SIM TD-LTE 128GB NX659J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-14", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 218.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.0, + "performance": 3.0, + "camera": 21.5, + "battery": 30.1, + "display": 61.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.016824", + "updated_at": "2026-06-19T00:43:45.016824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-5g-standard-edition-global-dual-sim-td-lte-128gb-nx659j/score/index.json b/site/public/v1/smartphones/nubia-red-magic-5g-standard-edition-global-dual-sim-td-lte-128gb-nx659j/score/index.json new file mode 100644 index 00000000000..5e326526ee0 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-5g-standard-edition-global-dual-sim-td-lte-128gb-nx659j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.0, + "performance": 3.0, + "camera": 21.5, + "battery": 30.1, + "display": 61.3, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-red-magic-5g-top-edition-dual-sim-td-lte-cn-256gb-nx659j/index.json b/site/public/v1/smartphones/nubia-red-magic-5g-top-edition-dual-sim-td-lte-cn-256gb-nx659j/index.json new file mode 100644 index 00000000000..bde4c5b69ed --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-5g-top-edition-dual-sim-td-lte-cn-256gb-nx659j/index.json @@ -0,0 +1,77 @@ +{ + "id": 6495, + "slug": "nubia-red-magic-5g-top-edition-dual-sim-td-lte-cn-256gb-nx659j", + "name": "Nubia Red Magic 5G Top Edition Dual SIM TD-LTE CN 256GB NX659J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 16, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 218.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.5, + "performance": 9.0, + "camera": 21.5, + "battery": 30.1, + "display": 61.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.016824", + "updated_at": "2026-06-19T00:43:45.016824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-5g-top-edition-dual-sim-td-lte-cn-256gb-nx659j/score/index.json b/site/public/v1/smartphones/nubia-red-magic-5g-top-edition-dual-sim-td-lte-cn-256gb-nx659j/score/index.json new file mode 100644 index 00000000000..4983cd3ad86 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-5g-top-edition-dual-sim-td-lte-cn-256gb-nx659j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.5, + "performance": 9.0, + "camera": 21.5, + "battery": 30.1, + "display": 61.3, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-red-magic-5g-transparent-edition-dual-sim-td-lte-cn-256gb-nx659j/index.json b/site/public/v1/smartphones/nubia-red-magic-5g-transparent-edition-dual-sim-td-lte-cn-256gb-nx659j/index.json new file mode 100644 index 00000000000..e874fccf0e2 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-5g-transparent-edition-dual-sim-td-lte-cn-256gb-nx659j/index.json @@ -0,0 +1,77 @@ +{ + "id": 6496, + "slug": "nubia-red-magic-5g-transparent-edition-dual-sim-td-lte-cn-256gb-nx659j", + "name": "Nubia Red Magic 5G Transparent Edition Dual SIM TD-LTE CN 256GB NX659J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-05-31", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 218.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.7, + "performance": 6.0, + "camera": 21.5, + "battery": 30.1, + "display": 61.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.016824", + "updated_at": "2026-06-19T00:43:45.016824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-5g-transparent-edition-dual-sim-td-lte-cn-256gb-nx659j/score/index.json b/site/public/v1/smartphones/nubia-red-magic-5g-transparent-edition-dual-sim-td-lte-cn-256gb-nx659j/score/index.json new file mode 100644 index 00000000000..5d4188f4011 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-5g-transparent-edition-dual-sim-td-lte-cn-256gb-nx659j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.7, + "performance": 6.0, + "camera": 21.5, + "battery": 30.1, + "display": 61.3, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-red-magic-5s-premium-edition-dual-sim-td-lte-cn-256gb-nx659j/index.json b/site/public/v1/smartphones/nubia-red-magic-5s-premium-edition-dual-sim-td-lte-cn-256gb-nx659j/index.json new file mode 100644 index 00000000000..69d6f89bbf3 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-5s-premium-edition-dual-sim-td-lte-cn-256gb-nx659j/index.json @@ -0,0 +1,77 @@ +{ + "id": 6497, + "slug": "nubia-red-magic-5s-premium-edition-dual-sim-td-lte-cn-256gb-nx659j", + "name": "Nubia Red Magic 5S Premium Edition Dual SIM TD-LTE CN 256GB NX659J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-08-01", + "msrp_usd": 4399, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.7, + "performance": 6.0, + "camera": 21.5, + "battery": 30.1, + "display": 61.3, + "value": 14.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.016824", + "updated_at": "2026-06-19T00:43:45.016824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-5s-premium-edition-dual-sim-td-lte-cn-256gb-nx659j/score/index.json b/site/public/v1/smartphones/nubia-red-magic-5s-premium-edition-dual-sim-td-lte-cn-256gb-nx659j/score/index.json new file mode 100644 index 00000000000..ed731b17996 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-5s-premium-edition-dual-sim-td-lte-cn-256gb-nx659j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.7, + "performance": 6.0, + "camera": 21.5, + "battery": 30.1, + "display": 61.3, + "value": 14.8 +} diff --git a/site/public/v1/smartphones/nubia-red-magic-5s-premium-edition-global-dual-sim-td-lte-256gb-nx659j/index.json b/site/public/v1/smartphones/nubia-red-magic-5s-premium-edition-global-dual-sim-td-lte-256gb-nx659j/index.json new file mode 100644 index 00000000000..43ff69e6012 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-5s-premium-edition-global-dual-sim-td-lte-256gb-nx659j/index.json @@ -0,0 +1,77 @@ +{ + "id": 6498, + "slug": "nubia-red-magic-5s-premium-edition-global-dual-sim-td-lte-256gb-nx659j", + "name": "Nubia Red Magic 5S Premium Edition Global Dual SIM TD-LTE 256GB NX659J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-08-26", + "msrp_usd": 649, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.7, + "performance": 6.0, + "camera": 21.5, + "battery": 30.1, + "display": 61.3, + "value": 51.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.017824", + "updated_at": "2026-06-19T00:43:45.017824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-5s-premium-edition-global-dual-sim-td-lte-256gb-nx659j/score/index.json b/site/public/v1/smartphones/nubia-red-magic-5s-premium-edition-global-dual-sim-td-lte-256gb-nx659j/score/index.json new file mode 100644 index 00000000000..d89250a11bd --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-5s-premium-edition-global-dual-sim-td-lte-256gb-nx659j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.7, + "performance": 6.0, + "camera": 21.5, + "battery": 30.1, + "display": 61.3, + "value": 51.5 +} diff --git a/site/public/v1/smartphones/nubia-red-magic-5s-standard-edition-dual-sim-td-lte-cn-128gb-nx659j/index.json b/site/public/v1/smartphones/nubia-red-magic-5s-standard-edition-dual-sim-td-lte-cn-128gb-nx659j/index.json new file mode 100644 index 00000000000..10d3fa54d27 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-5s-standard-edition-dual-sim-td-lte-cn-128gb-nx659j/index.json @@ -0,0 +1,77 @@ +{ + "id": 6499, + "slug": "nubia-red-magic-5s-standard-edition-dual-sim-td-lte-cn-128gb-nx659j", + "name": "Nubia Red Magic 5S Standard Edition Dual SIM TD-LTE CN 128GB NX659J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-08-12", + "msrp_usd": 3799, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.0, + "performance": 3.0, + "camera": 21.5, + "battery": 30.1, + "display": 61.3, + "value": 14.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.017824", + "updated_at": "2026-06-19T00:43:45.017824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-5s-standard-edition-dual-sim-td-lte-cn-128gb-nx659j/score/index.json b/site/public/v1/smartphones/nubia-red-magic-5s-standard-edition-dual-sim-td-lte-cn-128gb-nx659j/score/index.json new file mode 100644 index 00000000000..eb50d95c808 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-5s-standard-edition-dual-sim-td-lte-cn-128gb-nx659j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.0, + "performance": 3.0, + "camera": 21.5, + "battery": 30.1, + "display": 61.3, + "value": 14.5 +} diff --git a/site/public/v1/smartphones/nubia-red-magic-5s-standard-edition-global-dual-sim-td-lte-128gb-nx659j/index.json b/site/public/v1/smartphones/nubia-red-magic-5s-standard-edition-global-dual-sim-td-lte-128gb-nx659j/index.json new file mode 100644 index 00000000000..e80a368b66a --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-5s-standard-edition-global-dual-sim-td-lte-128gb-nx659j/index.json @@ -0,0 +1,77 @@ +{ + "id": 6500, + "slug": "nubia-red-magic-5s-standard-edition-global-dual-sim-td-lte-128gb-nx659j", + "name": "Nubia Red Magic 5S Standard Edition Global Dual SIM TD-LTE 128GB NX659J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-08-26", + "msrp_usd": 579, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.0, + "performance": 3.0, + "camera": 21.5, + "battery": 30.1, + "display": 61.3, + "value": 53.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.017824", + "updated_at": "2026-06-19T00:43:45.017824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-5s-standard-edition-global-dual-sim-td-lte-128gb-nx659j/score/index.json b/site/public/v1/smartphones/nubia-red-magic-5s-standard-edition-global-dual-sim-td-lte-128gb-nx659j/score/index.json new file mode 100644 index 00000000000..b7dc171877e --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-5s-standard-edition-global-dual-sim-td-lte-128gb-nx659j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.0, + "performance": 3.0, + "camera": 21.5, + "battery": 30.1, + "display": 61.3, + "value": 53.8 +} diff --git a/site/public/v1/smartphones/nubia-red-magic-5s-top-edition-dual-sim-td-lte-cn-256gb-nx659j/index.json b/site/public/v1/smartphones/nubia-red-magic-5s-top-edition-dual-sim-td-lte-cn-256gb-nx659j/index.json new file mode 100644 index 00000000000..ec167479782 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-5s-top-edition-dual-sim-td-lte-cn-256gb-nx659j/index.json @@ -0,0 +1,77 @@ +{ + "id": 6501, + "slug": "nubia-red-magic-5s-top-edition-dual-sim-td-lte-cn-256gb-nx659j", + "name": "Nubia Red Magic 5S Top Edition Dual SIM TD-LTE CN 256GB NX659J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-08-01", + "msrp_usd": 4999, + "ram_gb": 16, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.5, + "performance": 9.0, + "camera": 21.5, + "battery": 30.1, + "display": 61.3, + "value": 15.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.017824", + "updated_at": "2026-06-19T00:43:45.017824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-5s-top-edition-dual-sim-td-lte-cn-256gb-nx659j/score/index.json b/site/public/v1/smartphones/nubia-red-magic-5s-top-edition-dual-sim-td-lte-cn-256gb-nx659j/score/index.json new file mode 100644 index 00000000000..b684b7aaef3 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-5s-top-edition-dual-sim-td-lte-cn-256gb-nx659j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.5, + "performance": 9.0, + "camera": 21.5, + "battery": 30.1, + "display": 61.3, + "value": 15.2 +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx669j/index.json b/site/public/v1/smartphones/nubia-red-magic-6-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx669j/index.json new file mode 100644 index 00000000000..2698b9d53da --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx669j/index.json @@ -0,0 +1,77 @@ +{ + "id": 6522, + "slug": "nubia-red-magic-6-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx669j", + "name": "Nubia Red Magic 6 5G Premium Edition Dual SIM TD-LTE CN 128GB NX669J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-11", + "msrp_usd": 4099, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "refresh_hz": 165, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5050, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 35.7, + "performance": 9.4, + "camera": 21.7, + "battery": 50.5, + "display": 61.2, + "value": 17.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.019824", + "updated_at": "2026-06-19T00:43:45.019824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx669j/score/index.json b/site/public/v1/smartphones/nubia-red-magic-6-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx669j/score/index.json new file mode 100644 index 00000000000..d655609db81 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6-5g-premium-edition-dual-sim-td-lte-cn-128gb-nx669j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 35.7, + "performance": 9.4, + "camera": 21.7, + "battery": 50.5, + "display": 61.2, + "value": 17.9 +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j/index.json b/site/public/v1/smartphones/nubia-red-magic-6-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j/index.json new file mode 100644 index 00000000000..0649ed27c5f --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j/index.json @@ -0,0 +1,77 @@ +{ + "id": 6523, + "slug": "nubia-red-magic-6-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j", + "name": "Nubia Red Magic 6 5G Premium Edition Dual SIM TD-LTE CN 256GB NX669J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-11", + "msrp_usd": 4399, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "refresh_hz": 165, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5050, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 35.7, + "performance": 9.4, + "camera": 21.7, + "battery": 50.5, + "display": 61.2, + "value": 17.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.019824", + "updated_at": "2026-06-19T00:43:45.019824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j/score/index.json b/site/public/v1/smartphones/nubia-red-magic-6-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j/score/index.json new file mode 100644 index 00000000000..d655609db81 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 35.7, + "performance": 9.4, + "camera": 21.7, + "battery": 50.5, + "display": 61.2, + "value": 17.9 +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6-5g-premium-edition-global-dual-sim-td-lte-128gb-nx669j/index.json b/site/public/v1/smartphones/nubia-red-magic-6-5g-premium-edition-global-dual-sim-td-lte-128gb-nx669j/index.json new file mode 100644 index 00000000000..9903c2ade88 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6-5g-premium-edition-global-dual-sim-td-lte-128gb-nx669j/index.json @@ -0,0 +1,77 @@ +{ + "id": 6524, + "slug": "nubia-red-magic-6-5g-premium-edition-global-dual-sim-td-lte-128gb-nx669j", + "name": "Nubia Red Magic 6 5G Premium Edition Global Dual SIM TD-LTE 128GB NX669J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-01", + "msrp_usd": 599, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "refresh_hz": 165, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5050, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 35.7, + "performance": 9.4, + "camera": 21.7, + "battery": 50.5, + "display": 61.2, + "value": 56.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.019824", + "updated_at": "2026-06-19T00:43:45.019824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6-5g-premium-edition-global-dual-sim-td-lte-128gb-nx669j/score/index.json b/site/public/v1/smartphones/nubia-red-magic-6-5g-premium-edition-global-dual-sim-td-lte-128gb-nx669j/score/index.json new file mode 100644 index 00000000000..4a6d904bb99 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6-5g-premium-edition-global-dual-sim-td-lte-128gb-nx669j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 35.7, + "performance": 9.4, + "camera": 21.7, + "battery": 50.5, + "display": 61.2, + "value": 56.4 +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx669j/index.json b/site/public/v1/smartphones/nubia-red-magic-6-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx669j/index.json new file mode 100644 index 00000000000..ec885e1848f --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx669j/index.json @@ -0,0 +1,77 @@ +{ + "id": 6525, + "slug": "nubia-red-magic-6-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx669j", + "name": "Nubia Red Magic 6 5G Standard Edition Dual SIM TD-LTE CN 128GB NX669J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-11", + "msrp_usd": 3799, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "refresh_hz": 165, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5050, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 35.0, + "performance": 6.4, + "camera": 21.7, + "battery": 50.5, + "display": 61.2, + "value": 17.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.020824", + "updated_at": "2026-06-19T00:43:45.020824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx669j/score/index.json b/site/public/v1/smartphones/nubia-red-magic-6-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx669j/score/index.json new file mode 100644 index 00000000000..6a5d64e4c47 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx669j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 35.0, + "performance": 6.4, + "camera": 21.7, + "battery": 50.5, + "display": 61.2, + "value": 17.5 +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j-p/index.json b/site/public/v1/smartphones/nubia-red-magic-6-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j-p/index.json new file mode 100644 index 00000000000..6ff91e87684 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j-p/index.json @@ -0,0 +1,77 @@ +{ + "id": 6526, + "slug": "nubia-red-magic-6-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j-p", + "name": "Nubia Red Magic 6 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB NX669J-P", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-11", + "msrp_usd": null, + "ram_gb": 16, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "refresh_hz": 165, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.0, + "performance": 12.4, + "camera": 21.7, + "battery": 52.5, + "display": 61.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.020824", + "updated_at": "2026-06-19T00:43:45.020824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j-p/score/index.json b/site/public/v1/smartphones/nubia-red-magic-6-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j-p/score/index.json new file mode 100644 index 00000000000..17d98b55562 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j-p/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.0, + "performance": 12.4, + "camera": 21.7, + "battery": 52.5, + "display": 61.2, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-nx669j-p/index.json b/site/public/v1/smartphones/nubia-red-magic-6-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-nx669j-p/index.json new file mode 100644 index 00000000000..4686b2c8057 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-nx669j-p/index.json @@ -0,0 +1,77 @@ +{ + "id": 6527, + "slug": "nubia-red-magic-6-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-nx669j-p", + "name": "Nubia Red Magic 6 Pro 5G Premium Edition Global Dual SIM TD-LTE 256GB NX669J-P", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-01", + "msrp_usd": 699, + "ram_gb": 16, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "refresh_hz": 165, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5050, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 39.0, + "performance": 12.4, + "camera": 21.7, + "battery": 60.7, + "display": 61.2, + "value": 54.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.020824", + "updated_at": "2026-06-19T00:43:45.020824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-nx669j-p/score/index.json b/site/public/v1/smartphones/nubia-red-magic-6-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-nx669j-p/score/index.json new file mode 100644 index 00000000000..9d5af64f4c2 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-nx669j-p/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 39.0, + "performance": 12.4, + "camera": 21.7, + "battery": 60.7, + "display": 61.2, + "value": 54.1 +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-nx669j-p/index.json b/site/public/v1/smartphones/nubia-red-magic-6-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-nx669j-p/index.json new file mode 100644 index 00000000000..78a272deac2 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-nx669j-p/index.json @@ -0,0 +1,77 @@ +{ + "id": 6528, + "slug": "nubia-red-magic-6-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-nx669j-p", + "name": "Nubia Red Magic 6 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB NX669J-P", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-11", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "refresh_hz": 165, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 36.2, + "performance": 9.4, + "camera": 21.7, + "battery": 52.5, + "display": 61.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.020824", + "updated_at": "2026-06-19T00:43:45.020824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-nx669j-p/score/index.json b/site/public/v1/smartphones/nubia-red-magic-6-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-nx669j-p/score/index.json new file mode 100644 index 00000000000..45b3a79a18d --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-nx669j-p/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 36.2, + "performance": 9.4, + "camera": 21.7, + "battery": 52.5, + "display": 61.2, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6r-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx666j/index.json b/site/public/v1/smartphones/nubia-red-magic-6r-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx666j/index.json new file mode 100644 index 00000000000..c8e069aac65 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6r-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx666j/index.json @@ -0,0 +1,77 @@ +{ + "id": 6529, + "slug": "nubia-red-magic-6r-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx666j", + "name": "Nubia Red Magic 6R 5G Premium Edition Dual SIM TD-LTE CN 256GB NX666J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-06-01", + "msrp_usd": 3899, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 9.4, + "camera": 21.7, + "battery": 35.6, + "display": 62.0, + "value": 16.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.020824", + "updated_at": "2026-06-19T00:43:45.020824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6r-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx666j/score/index.json b/site/public/v1/smartphones/nubia-red-magic-6r-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx666j/score/index.json new file mode 100644 index 00000000000..47c02a8ae57 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6r-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx666j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 9.4, + "camera": 21.7, + "battery": 35.6, + "display": 62.0, + "value": 16.1 +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6r-5g-premium-edition-global-dual-sim-td-lte-256gb-nx666j/index.json b/site/public/v1/smartphones/nubia-red-magic-6r-5g-premium-edition-global-dual-sim-td-lte-256gb-nx666j/index.json new file mode 100644 index 00000000000..b45a81e178d --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6r-5g-premium-edition-global-dual-sim-td-lte-256gb-nx666j/index.json @@ -0,0 +1,77 @@ +{ + "id": 6530, + "slug": "nubia-red-magic-6r-5g-premium-edition-global-dual-sim-td-lte-256gb-nx666j", + "name": "Nubia Red Magic 6R 5G Premium Edition Global Dual SIM TD-LTE 256GB NX666J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-06-02", + "msrp_usd": 599, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.0, + "performance": 9.4, + "camera": 21.7, + "battery": 30.9, + "display": 62.0, + "value": 54.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.020824", + "updated_at": "2026-06-19T00:43:45.020824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6r-5g-premium-edition-global-dual-sim-td-lte-256gb-nx666j/score/index.json b/site/public/v1/smartphones/nubia-red-magic-6r-5g-premium-edition-global-dual-sim-td-lte-256gb-nx666j/score/index.json new file mode 100644 index 00000000000..0c0d4e276f9 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6r-5g-premium-edition-global-dual-sim-td-lte-256gb-nx666j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.0, + "performance": 9.4, + "camera": 21.7, + "battery": 30.9, + "display": 62.0, + "value": 54.0 +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6r-5g-satndard-edition-global-dual-sim-td-lte-128gb-nx666j/index.json b/site/public/v1/smartphones/nubia-red-magic-6r-5g-satndard-edition-global-dual-sim-td-lte-128gb-nx666j/index.json new file mode 100644 index 00000000000..8a284b115ce --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6r-5g-satndard-edition-global-dual-sim-td-lte-128gb-nx666j/index.json @@ -0,0 +1,77 @@ +{ + "id": 6531, + "slug": "nubia-red-magic-6r-5g-satndard-edition-global-dual-sim-td-lte-128gb-nx666j", + "name": "Nubia Red Magic 6R 5G Satndard Edition Global Dual SIM TD-LTE 128GB NX666J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-06-02", + "msrp_usd": 599, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.2, + "performance": 6.4, + "camera": 21.7, + "battery": 30.9, + "display": 62.0, + "value": 53.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.020824", + "updated_at": "2026-06-19T00:43:45.020824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6r-5g-satndard-edition-global-dual-sim-td-lte-128gb-nx666j/score/index.json b/site/public/v1/smartphones/nubia-red-magic-6r-5g-satndard-edition-global-dual-sim-td-lte-128gb-nx666j/score/index.json new file mode 100644 index 00000000000..c72c8e55315 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6r-5g-satndard-edition-global-dual-sim-td-lte-128gb-nx666j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.2, + "performance": 6.4, + "camera": 21.7, + "battery": 30.9, + "display": 62.0, + "value": 53.6 +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-basic-edition-dual-sim-td-lte-cn-128gb-nx669j-s/index.json b/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-basic-edition-dual-sim-td-lte-cn-128gb-nx669j-s/index.json new file mode 100644 index 00000000000..45a1e3961b8 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-basic-edition-dual-sim-td-lte-cn-128gb-nx669j-s/index.json @@ -0,0 +1,77 @@ +{ + "id": 6532, + "slug": "nubia-red-magic-6s-pro-5g-basic-edition-dual-sim-td-lte-cn-128gb-nx669j-s", + "name": "Nubia Red Magic 6S Pro 5G Basic Edition Dual SIM TD-LTE CN 128GB NX669J-S", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-09-27", + "msrp_usd": 3999, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "refresh_hz": 165, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 35.9, + "performance": 8.2, + "camera": 21.7, + "battery": 52.5, + "display": 61.2, + "value": 17.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.020824", + "updated_at": "2026-06-19T00:43:45.020824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-basic-edition-dual-sim-td-lte-cn-128gb-nx669j-s/score/index.json b/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-basic-edition-dual-sim-td-lte-cn-128gb-nx669j-s/score/index.json new file mode 100644 index 00000000000..d9e1c4b4a4c --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-basic-edition-dual-sim-td-lte-cn-128gb-nx669j-s/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 35.9, + "performance": 8.2, + "camera": 21.7, + "battery": 52.5, + "display": 61.2, + "value": 17.9 +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-camouflage-edition-dual-sim-td-lte-cn-512gb-nx669j-s/index.json b/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-camouflage-edition-dual-sim-td-lte-cn-512gb-nx669j-s/index.json new file mode 100644 index 00000000000..093f0397327 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-camouflage-edition-dual-sim-td-lte-cn-512gb-nx669j-s/index.json @@ -0,0 +1,77 @@ +{ + "id": 6533, + "slug": "nubia-red-magic-6s-pro-5g-camouflage-edition-dual-sim-td-lte-cn-512gb-nx669j-s", + "name": "Nubia Red Magic 6S Pro 5G Camouflage Edition Dual SIM TD-LTE CN 512GB NX669J-S", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-10-01", + "msrp_usd": null, + "ram_gb": 18, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "refresh_hz": 165, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 15.7, + "camera": 21.7, + "battery": 52.5, + "display": 61.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.020824", + "updated_at": "2026-06-19T00:43:45.020824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-camouflage-edition-dual-sim-td-lte-cn-512gb-nx669j-s/score/index.json b/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-camouflage-edition-dual-sim-td-lte-cn-512gb-nx669j-s/score/index.json new file mode 100644 index 00000000000..3373644d955 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-camouflage-edition-dual-sim-td-lte-cn-512gb-nx669j-s/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 15.7, + "camera": 21.7, + "battery": 52.5, + "display": 61.2, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j-s/index.json b/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j-s/index.json new file mode 100644 index 00000000000..3d4c12fe27b --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j-s/index.json @@ -0,0 +1,77 @@ +{ + "id": 6534, + "slug": "nubia-red-magic-6s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j-s", + "name": "Nubia Red Magic 6S Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB NX669J-S", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-09-27", + "msrp_usd": null, + "ram_gb": 16, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "refresh_hz": 165, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.4, + "performance": 14.2, + "camera": 21.7, + "battery": 52.5, + "display": 61.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.020824", + "updated_at": "2026-06-19T00:43:45.020824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j-s/score/index.json b/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j-s/score/index.json new file mode 100644 index 00000000000..022dc2ad58f --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-nx669j-s/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.4, + "performance": 14.2, + "camera": 21.7, + "battery": 52.5, + "display": 61.2, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-nx669j-s/index.json b/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-nx669j-s/index.json new file mode 100644 index 00000000000..a744e899b37 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-nx669j-s/index.json @@ -0,0 +1,77 @@ +{ + "id": 6535, + "slug": "nubia-red-magic-6s-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-nx669j-s", + "name": "Nubia Red Magic 6S Pro 5G Premium Edition Global Dual SIM TD-LTE 256GB NX669J-S", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-09-01", + "msrp_usd": 699, + "ram_gb": 16, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "refresh_hz": 165, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5050, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 36.9, + "performance": 14.2, + "camera": 21.7, + "battery": 50.5, + "display": 61.2, + "value": 53.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.021823", + "updated_at": "2026-06-19T00:43:45.021823" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-nx669j-s/score/index.json b/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-nx669j-s/score/index.json new file mode 100644 index 00000000000..9867e48fa54 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-nx669j-s/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 36.9, + "performance": 14.2, + "camera": 21.7, + "battery": 50.5, + "display": 61.2, + "value": 53.1 +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx669j-s/index.json b/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx669j-s/index.json new file mode 100644 index 00000000000..d01dc37744a --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx669j-s/index.json @@ -0,0 +1,77 @@ +{ + "id": 6536, + "slug": "nubia-red-magic-6s-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx669j-s", + "name": "Nubia Red Magic 6S Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB NX669J-S", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-09-27", + "msrp_usd": 4299, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "refresh_hz": 165, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 36.6, + "performance": 11.2, + "camera": 21.7, + "battery": 52.5, + "display": 61.2, + "value": 18.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.021823", + "updated_at": "2026-06-19T00:43:45.021823" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx669j-s/score/index.json b/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx669j-s/score/index.json new file mode 100644 index 00000000000..a1a5c9ad999 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-nx669j-s/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 36.6, + "performance": 11.2, + "camera": 21.7, + "battery": 52.5, + "display": 61.2, + "value": 18.3 +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-nx669j-s/index.json b/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-nx669j-s/index.json new file mode 100644 index 00000000000..73660b6fd91 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-nx669j-s/index.json @@ -0,0 +1,77 @@ +{ + "id": 6537, + "slug": "nubia-red-magic-6s-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-nx669j-s", + "name": "Nubia Red Magic 6S Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB NX669J-S", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-09-27", + "msrp_usd": 4899, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "refresh_hz": 165, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 36.6, + "performance": 11.2, + "camera": 21.7, + "battery": 52.5, + "display": 61.2, + "value": 18.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.021823", + "updated_at": "2026-06-19T00:43:45.021823" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-nx669j-s/score/index.json b/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-nx669j-s/score/index.json new file mode 100644 index 00000000000..a1a5c9ad999 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-nx669j-s/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 36.6, + "performance": 11.2, + "camera": 21.7, + "battery": 52.5, + "display": 61.2, + "value": 18.3 +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-nx669j-s/index.json b/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-nx669j-s/index.json new file mode 100644 index 00000000000..46e7c9b181f --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-nx669j-s/index.json @@ -0,0 +1,77 @@ +{ + "id": 6538, + "slug": "nubia-red-magic-6s-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-nx669j-s", + "name": "Nubia Red Magic 6S Pro 5G Standard Edition Global Dual SIM TD-LTE 128GB NX669J-S", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-09-01", + "msrp_usd": 599, + "ram_gb": 16, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "refresh_hz": 165, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5050, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 36.9, + "performance": 14.2, + "camera": 21.7, + "battery": 50.5, + "display": 61.2, + "value": 57.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.021823", + "updated_at": "2026-06-19T00:43:45.021823" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-nx669j-s/score/index.json b/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-nx669j-s/score/index.json new file mode 100644 index 00000000000..4855257fc03 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-nx669j-s/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 36.9, + "performance": 14.2, + "camera": 21.7, + "battery": 50.5, + "display": 61.2, + "value": 57.0 +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-nx669j-s/index.json b/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-nx669j-s/index.json new file mode 100644 index 00000000000..fba9f3e5839 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-nx669j-s/index.json @@ -0,0 +1,77 @@ +{ + "id": 6539, + "slug": "nubia-red-magic-6s-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-nx669j-s", + "name": "Nubia Red Magic 6S Pro 5G Top Edition Dual SIM TD-LTE CN 512GB NX669J-S", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-09-27", + "msrp_usd": null, + "ram_gb": 18, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "refresh_hz": 165, + "type": "AM-OLED display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 15.7, + "camera": 21.7, + "battery": 52.5, + "display": 61.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.021823", + "updated_at": "2026-06-19T00:43:45.021823" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-nx669j-s/score/index.json b/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-nx669j-s/score/index.json new file mode 100644 index 00000000000..3373644d955 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-6s-pro-5g-top-edition-dual-sim-td-lte-cn-512gb-nx669j-s/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 15.7, + "camera": 21.7, + "battery": 52.5, + "display": 61.2, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-red-magic-dual-sim-td-lte-128gb-nx609j/index.json b/site/public/v1/smartphones/nubia-red-magic-dual-sim-td-lte-128gb-nx609j/index.json new file mode 100644 index 00000000000..86ea0e969df --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-dual-sim-td-lte-128gb-nx609j/index.json @@ -0,0 +1,76 @@ +{ + "id": 6402, + "slug": "nubia-red-magic-dual-sim-td-lte-128gb-nx609j", + "name": "Nubia Red Magic Dual SIM TD-LTE 128GB NX609J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 122, + "slug": "snapdragon-835", + "name": "Snapdragon 835", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 540", + "url": "/v1/socs/snapdragon-835" + }, + "release_date": "2018-04-26", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 26.1, + "camera": 8.8, + "battery": 12.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.005824", + "updated_at": "2026-06-19T00:43:45.005824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-dual-sim-td-lte-128gb-nx609j/score/index.json b/site/public/v1/smartphones/nubia-red-magic-dual-sim-td-lte-128gb-nx609j/score/index.json new file mode 100644 index 00000000000..6a4295e6343 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-dual-sim-td-lte-128gb-nx609j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 26.1, + "camera": 8.8, + "battery": 12.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-red-magic-dual-sim-td-lte-64gb-nx609j/index.json b/site/public/v1/smartphones/nubia-red-magic-dual-sim-td-lte-64gb-nx609j/index.json new file mode 100644 index 00000000000..606f8b5c317 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-dual-sim-td-lte-64gb-nx609j/index.json @@ -0,0 +1,76 @@ +{ + "id": 6403, + "slug": "nubia-red-magic-dual-sim-td-lte-64gb-nx609j", + "name": "Nubia Red Magic Dual SIM TD-LTE 64GB NX609J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 122, + "slug": "snapdragon-835", + "name": "Snapdragon 835", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 540", + "url": "/v1/socs/snapdragon-835" + }, + "release_date": "2018-04-26", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.7, + "performance": 24.6, + "camera": 8.8, + "battery": 12.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.005824", + "updated_at": "2026-06-19T00:43:45.005824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-dual-sim-td-lte-64gb-nx609j/score/index.json b/site/public/v1/smartphones/nubia-red-magic-dual-sim-td-lte-64gb-nx609j/score/index.json new file mode 100644 index 00000000000..82dc67d491b --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-dual-sim-td-lte-64gb-nx609j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.7, + "performance": 24.6, + "camera": 8.8, + "battery": 12.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-red-magic-mars-global-dual-sim-td-lte-128gb-nx619j/index.json b/site/public/v1/smartphones/nubia-red-magic-mars-global-dual-sim-td-lte-128gb-nx619j/index.json new file mode 100644 index 00000000000..86eb274f9d0 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-mars-global-dual-sim-td-lte-128gb-nx619j/index.json @@ -0,0 +1,76 @@ +{ + "id": 6404, + "slug": "nubia-red-magic-mars-global-dual-sim-td-lte-128gb-nx619j", + "name": "Nubia Red Magic Mars Global Dual SIM TD-LTE 128GB NX619J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-12-07", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 3.0, + "camera": 6.3, + "battery": 12.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.005824", + "updated_at": "2026-06-19T00:43:45.005824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-mars-global-dual-sim-td-lte-128gb-nx619j/score/index.json b/site/public/v1/smartphones/nubia-red-magic-mars-global-dual-sim-td-lte-128gb-nx619j/score/index.json new file mode 100644 index 00000000000..a73f334ebd3 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-mars-global-dual-sim-td-lte-128gb-nx619j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 3.0, + "camera": 6.3, + "battery": 12.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-red-magic-mars-global-dual-sim-td-lte-256gb-nx619j/index.json b/site/public/v1/smartphones/nubia-red-magic-mars-global-dual-sim-td-lte-256gb-nx619j/index.json new file mode 100644 index 00000000000..0725ff5cc4d --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-mars-global-dual-sim-td-lte-256gb-nx619j/index.json @@ -0,0 +1,76 @@ +{ + "id": 6405, + "slug": "nubia-red-magic-mars-global-dual-sim-td-lte-256gb-nx619j", + "name": "Nubia Red Magic Mars Global Dual SIM TD-LTE 256GB NX619J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-01-18", + "msrp_usd": null, + "ram_gb": 10, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 4.5, + "camera": 6.3, + "battery": 12.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.005824", + "updated_at": "2026-06-19T00:43:45.005824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-mars-global-dual-sim-td-lte-256gb-nx619j/score/index.json b/site/public/v1/smartphones/nubia-red-magic-mars-global-dual-sim-td-lte-256gb-nx619j/score/index.json new file mode 100644 index 00000000000..5f6d9a2ee4d --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-mars-global-dual-sim-td-lte-256gb-nx619j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 4.5, + "camera": 6.3, + "battery": 12.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-red-magic-mars-global-dual-sim-td-lte-64gb-nx619j/index.json b/site/public/v1/smartphones/nubia-red-magic-mars-global-dual-sim-td-lte-64gb-nx619j/index.json new file mode 100644 index 00000000000..6d88bb90b1a --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-mars-global-dual-sim-td-lte-64gb-nx619j/index.json @@ -0,0 +1,76 @@ +{ + "id": 6406, + "slug": "nubia-red-magic-mars-global-dual-sim-td-lte-64gb-nx619j", + "name": "Nubia Red Magic Mars Global Dual SIM TD-LTE 64GB NX619J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-12-07", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 1.5, + "camera": 6.3, + "battery": 12.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.005824", + "updated_at": "2026-06-19T00:43:45.005824" +} diff --git a/site/public/v1/smartphones/nubia-red-magic-mars-global-dual-sim-td-lte-64gb-nx619j/score/index.json b/site/public/v1/smartphones/nubia-red-magic-mars-global-dual-sim-td-lte-64gb-nx619j/score/index.json new file mode 100644 index 00000000000..f83b715b700 --- /dev/null +++ b/site/public/v1/smartphones/nubia-red-magic-mars-global-dual-sim-td-lte-64gb-nx619j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 1.5, + "camera": 6.3, + "battery": 12.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-v18-dual-sim-td-lte-cn/index.json b/site/public/v1/smartphones/nubia-v18-dual-sim-td-lte-cn/index.json new file mode 100644 index 00000000000..7fd1ca722bf --- /dev/null +++ b/site/public/v1/smartphones/nubia-v18-dual-sim-td-lte-cn/index.json @@ -0,0 +1,76 @@ +{ + "id": 6407, + "slug": "nubia-v18-dual-sim-td-lte-cn", + "name": "Nubia V18 Dual SIM TD-LTE CN", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 114, + "slug": "snapdragon-625", + "name": "Snapdragon 625", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-625" + }, + "release_date": "2018-03-28", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.01, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.006824", + "updated_at": "2026-06-19T00:43:45.006824" +} diff --git a/site/public/v1/smartphones/nubia-v18-dual-sim-td-lte-cn/score/index.json b/site/public/v1/smartphones/nubia-v18-dual-sim-td-lte-cn/score/index.json new file mode 100644 index 00000000000..881e0cbad02 --- /dev/null +++ b/site/public/v1/smartphones/nubia-v18-dual-sim-td-lte-cn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-x-premium-edition-dual-sim-td-lte-cn-128gb-nx616j/index.json b/site/public/v1/smartphones/nubia-x-premium-edition-dual-sim-td-lte-cn-128gb-nx616j/index.json new file mode 100644 index 00000000000..8efb88b319b --- /dev/null +++ b/site/public/v1/smartphones/nubia-x-premium-edition-dual-sim-td-lte-cn-128gb-nx616j/index.json @@ -0,0 +1,72 @@ +{ + "id": 6408, + "slug": "nubia-x-premium-edition-dual-sim-td-lte-cn-128gb-nx616j", + "name": "Nubia X Premium Edition Dual SIM TD-LTE CN 128GB NX616J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-11-06", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + } + ], + "battery_mah": 3800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.3, + "performance": 3.0, + "camera": 8.8, + "battery": 12.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.006824", + "updated_at": "2026-06-19T00:43:45.006824" +} diff --git a/site/public/v1/smartphones/nubia-x-premium-edition-dual-sim-td-lte-cn-128gb-nx616j/score/index.json b/site/public/v1/smartphones/nubia-x-premium-edition-dual-sim-td-lte-cn-128gb-nx616j/score/index.json new file mode 100644 index 00000000000..b30e3f70748 --- /dev/null +++ b/site/public/v1/smartphones/nubia-x-premium-edition-dual-sim-td-lte-cn-128gb-nx616j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.3, + "performance": 3.0, + "camera": 8.8, + "battery": 12.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-x-premium-edition-dual-sim-td-lte-cn-256gb-nx616j/index.json b/site/public/v1/smartphones/nubia-x-premium-edition-dual-sim-td-lte-cn-256gb-nx616j/index.json new file mode 100644 index 00000000000..469da327b40 --- /dev/null +++ b/site/public/v1/smartphones/nubia-x-premium-edition-dual-sim-td-lte-cn-256gb-nx616j/index.json @@ -0,0 +1,72 @@ +{ + "id": 6409, + "slug": "nubia-x-premium-edition-dual-sim-td-lte-cn-256gb-nx616j", + "name": "Nubia X Premium Edition Dual SIM TD-LTE CN 256GB NX616J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-11-06", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + } + ], + "battery_mah": 3800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.3, + "performance": 3.0, + "camera": 8.8, + "battery": 12.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.006824", + "updated_at": "2026-06-19T00:43:45.006824" +} diff --git a/site/public/v1/smartphones/nubia-x-premium-edition-dual-sim-td-lte-cn-256gb-nx616j/score/index.json b/site/public/v1/smartphones/nubia-x-premium-edition-dual-sim-td-lte-cn-256gb-nx616j/score/index.json new file mode 100644 index 00000000000..b30e3f70748 --- /dev/null +++ b/site/public/v1/smartphones/nubia-x-premium-edition-dual-sim-td-lte-cn-256gb-nx616j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.3, + "performance": 3.0, + "camera": 8.8, + "battery": 12.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-x-standard-edition-dual-sim-td-lte-cn-64gb-nx616j/index.json b/site/public/v1/smartphones/nubia-x-standard-edition-dual-sim-td-lte-cn-64gb-nx616j/index.json new file mode 100644 index 00000000000..ba1f9a12dc9 --- /dev/null +++ b/site/public/v1/smartphones/nubia-x-standard-edition-dual-sim-td-lte-cn-64gb-nx616j/index.json @@ -0,0 +1,72 @@ +{ + "id": 6410, + "slug": "nubia-x-standard-edition-dual-sim-td-lte-cn-64gb-nx616j", + "name": "Nubia X Standard Edition Dual SIM TD-LTE CN 64GB NX616J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-11-06", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + } + ], + "battery_mah": 3800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 1.5, + "camera": 8.8, + "battery": 12.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.006824", + "updated_at": "2026-06-19T00:43:45.006824" +} diff --git a/site/public/v1/smartphones/nubia-x-standard-edition-dual-sim-td-lte-cn-64gb-nx616j/score/index.json b/site/public/v1/smartphones/nubia-x-standard-edition-dual-sim-td-lte-cn-64gb-nx616j/score/index.json new file mode 100644 index 00000000000..80adca8ffd7 --- /dev/null +++ b/site/public/v1/smartphones/nubia-x-standard-edition-dual-sim-td-lte-cn-64gb-nx616j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 1.5, + "camera": 8.8, + "battery": 12.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-x-starry-night-collector-edition-dual-sim-td-lte-cn-512gb-nx616j/index.json b/site/public/v1/smartphones/nubia-x-starry-night-collector-edition-dual-sim-td-lte-cn-512gb-nx616j/index.json new file mode 100644 index 00000000000..4acb8e9ffeb --- /dev/null +++ b/site/public/v1/smartphones/nubia-x-starry-night-collector-edition-dual-sim-td-lte-cn-512gb-nx616j/index.json @@ -0,0 +1,72 @@ +{ + "id": 6411, + "slug": "nubia-x-starry-night-collector-edition-dual-sim-td-lte-cn-512gb-nx616j", + "name": "Nubia X Starry Night Collector Edition Dual SIM TD-LTE CN 512GB NX616J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-12-24", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + } + ], + "battery_mah": 3800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.3, + "performance": 3.0, + "camera": 8.8, + "battery": 12.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.006824", + "updated_at": "2026-06-19T00:43:45.006824" +} diff --git a/site/public/v1/smartphones/nubia-x-starry-night-collector-edition-dual-sim-td-lte-cn-512gb-nx616j/score/index.json b/site/public/v1/smartphones/nubia-x-starry-night-collector-edition-dual-sim-td-lte-cn-512gb-nx616j/score/index.json new file mode 100644 index 00000000000..b30e3f70748 --- /dev/null +++ b/site/public/v1/smartphones/nubia-x-starry-night-collector-edition-dual-sim-td-lte-cn-512gb-nx616j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.3, + "performance": 3.0, + "camera": 8.8, + "battery": 12.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-z18-dual-sim-td-lte-64gb-nx606j/index.json b/site/public/v1/smartphones/nubia-z18-dual-sim-td-lte-64gb-nx606j/index.json new file mode 100644 index 00000000000..a1471769727 --- /dev/null +++ b/site/public/v1/smartphones/nubia-z18-dual-sim-td-lte-64gb-nx606j/index.json @@ -0,0 +1,76 @@ +{ + "id": 6412, + "slug": "nubia-z18-dual-sim-td-lte-64gb-nx606j", + "name": "Nubia Z18 Dual SIM TD-LTE 64GB NX606J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3450, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 1.5, + "camera": 6.4, + "battery": 6.8, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.006824", + "updated_at": "2026-06-19T00:43:45.006824" +} diff --git a/site/public/v1/smartphones/nubia-z18-dual-sim-td-lte-64gb-nx606j/score/index.json b/site/public/v1/smartphones/nubia-z18-dual-sim-td-lte-64gb-nx606j/score/index.json new file mode 100644 index 00000000000..8e0a067447f --- /dev/null +++ b/site/public/v1/smartphones/nubia-z18-dual-sim-td-lte-64gb-nx606j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 1.5, + "camera": 6.4, + "battery": 6.8, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-z18-mini-dual-sim-td-lte-128gb-nx611j/index.json b/site/public/v1/smartphones/nubia-z18-mini-dual-sim-td-lte-128gb-nx611j/index.json new file mode 100644 index 00000000000..8f067dd2623 --- /dev/null +++ b/site/public/v1/smartphones/nubia-z18-mini-dual-sim-td-lte-128gb-nx611j/index.json @@ -0,0 +1,76 @@ +{ + "id": 6413, + "slug": "nubia-z18-mini-dual-sim-td-lte-128gb-nx611j", + "name": "Nubia Z18 mini Dual SIM TD-LTE 128GB NX611J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-04-19", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3450, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 153.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 19.5, + "camera": 8.8, + "battery": 6.8, + "display": 47.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.006824", + "updated_at": "2026-06-19T00:43:45.006824" +} diff --git a/site/public/v1/smartphones/nubia-z18-mini-dual-sim-td-lte-128gb-nx611j/score/index.json b/site/public/v1/smartphones/nubia-z18-mini-dual-sim-td-lte-128gb-nx611j/score/index.json new file mode 100644 index 00000000000..3e8bca71e67 --- /dev/null +++ b/site/public/v1/smartphones/nubia-z18-mini-dual-sim-td-lte-128gb-nx611j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 19.5, + "camera": 8.8, + "battery": 6.8, + "display": 47.4, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-z18-mini-dual-sim-td-lte-64gb-nx611j/index.json b/site/public/v1/smartphones/nubia-z18-mini-dual-sim-td-lte-64gb-nx611j/index.json new file mode 100644 index 00000000000..379bb322640 --- /dev/null +++ b/site/public/v1/smartphones/nubia-z18-mini-dual-sim-td-lte-64gb-nx611j/index.json @@ -0,0 +1,76 @@ +{ + "id": 6414, + "slug": "nubia-z18-mini-dual-sim-td-lte-64gb-nx611j", + "name": "Nubia Z18 mini Dual SIM TD-LTE 64GB NX611J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-04-19", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3450, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 153.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 19.5, + "camera": 8.8, + "battery": 6.8, + "display": 47.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.006824", + "updated_at": "2026-06-19T00:43:45.006824" +} diff --git a/site/public/v1/smartphones/nubia-z18-mini-dual-sim-td-lte-64gb-nx611j/score/index.json b/site/public/v1/smartphones/nubia-z18-mini-dual-sim-td-lte-64gb-nx611j/score/index.json new file mode 100644 index 00000000000..3e8bca71e67 --- /dev/null +++ b/site/public/v1/smartphones/nubia-z18-mini-dual-sim-td-lte-64gb-nx611j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 19.5, + "camera": 8.8, + "battery": 6.8, + "display": 47.4, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-z18-van-gogh-edition-dual-sim-td-lte-128gb-nx606j/index.json b/site/public/v1/smartphones/nubia-z18-van-gogh-edition-dual-sim-td-lte-128gb-nx606j/index.json new file mode 100644 index 00000000000..daedfadb3e0 --- /dev/null +++ b/site/public/v1/smartphones/nubia-z18-van-gogh-edition-dual-sim-td-lte-128gb-nx606j/index.json @@ -0,0 +1,76 @@ +{ + "id": 6415, + "slug": "nubia-z18-van-gogh-edition-dual-sim-td-lte-128gb-nx606j", + "name": "Nubia Z18 Van Gogh Edition Dual SIM TD-LTE 128GB NX606J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3450, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.4, + "performance": 3.0, + "camera": 6.4, + "battery": 6.8, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.006824", + "updated_at": "2026-06-19T00:43:45.006824" +} diff --git a/site/public/v1/smartphones/nubia-z18-van-gogh-edition-dual-sim-td-lte-128gb-nx606j/score/index.json b/site/public/v1/smartphones/nubia-z18-van-gogh-edition-dual-sim-td-lte-128gb-nx606j/score/index.json new file mode 100644 index 00000000000..49bbb1e291d --- /dev/null +++ b/site/public/v1/smartphones/nubia-z18-van-gogh-edition-dual-sim-td-lte-128gb-nx606j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.4, + "performance": 3.0, + "camera": 6.4, + "battery": 6.8, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-z18s-premium-edition-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/nubia-z18s-premium-edition-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..2787a83dda9 --- /dev/null +++ b/site/public/v1/smartphones/nubia-z18s-premium-edition-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,72 @@ +{ + "id": 6416, + "slug": "nubia-z18s-premium-edition-dual-sim-td-lte-128gb", + "name": "Nubia Z18s Premium Edition Dual SIM TD-LTE 128GB", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 22.6 + } + ], + "battery_mah": 3800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 3.0, + "camera": 8.4, + "battery": 12.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.006824", + "updated_at": "2026-06-19T00:43:45.006824" +} diff --git a/site/public/v1/smartphones/nubia-z18s-premium-edition-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/nubia-z18s-premium-edition-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..b697156e832 --- /dev/null +++ b/site/public/v1/smartphones/nubia-z18s-premium-edition-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 3.0, + "camera": 8.4, + "battery": 12.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-z20-premium-edition-dual-sim-td-lte-na-128gb-nx627j/index.json b/site/public/v1/smartphones/nubia-z20-premium-edition-dual-sim-td-lte-na-128gb-nx627j/index.json new file mode 100644 index 00000000000..b80aee1a224 --- /dev/null +++ b/site/public/v1/smartphones/nubia-z20-premium-edition-dual-sim-td-lte-na-128gb-nx627j/index.json @@ -0,0 +1,72 @@ +{ + "id": 6441, + "slug": "nubia-z20-premium-edition-dual-sim-td-lte-na-128gb-nx627j", + "name": "Nubia Z20 Premium Edition Dual SIM TD-LTE NA 128GB NX627J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-10-14", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.009824", + "updated_at": "2026-06-19T00:43:45.009824" +} diff --git a/site/public/v1/smartphones/nubia-z20-premium-edition-dual-sim-td-lte-na-128gb-nx627j/score/index.json b/site/public/v1/smartphones/nubia-z20-premium-edition-dual-sim-td-lte-na-128gb-nx627j/score/index.json new file mode 100644 index 00000000000..4e6ebb50df3 --- /dev/null +++ b/site/public/v1/smartphones/nubia-z20-premium-edition-dual-sim-td-lte-na-128gb-nx627j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-z20-premium-edition-global-dual-sim-td-lte-128gb-nx627j/index.json b/site/public/v1/smartphones/nubia-z20-premium-edition-global-dual-sim-td-lte-128gb-nx627j/index.json new file mode 100644 index 00000000000..a6d92931a60 --- /dev/null +++ b/site/public/v1/smartphones/nubia-z20-premium-edition-global-dual-sim-td-lte-128gb-nx627j/index.json @@ -0,0 +1,72 @@ +{ + "id": 6442, + "slug": "nubia-z20-premium-edition-global-dual-sim-td-lte-128gb-nx627j", + "name": "Nubia Z20 Premium Edition Global Dual SIM TD-LTE 128GB NX627J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-08-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.010824", + "updated_at": "2026-06-19T00:43:45.010824" +} diff --git a/site/public/v1/smartphones/nubia-z20-premium-edition-global-dual-sim-td-lte-128gb-nx627j/score/index.json b/site/public/v1/smartphones/nubia-z20-premium-edition-global-dual-sim-td-lte-128gb-nx627j/score/index.json new file mode 100644 index 00000000000..4e6ebb50df3 --- /dev/null +++ b/site/public/v1/smartphones/nubia-z20-premium-edition-global-dual-sim-td-lte-128gb-nx627j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-z20-premium-edition-global-dual-sim-td-lte-512gb-nx627j/index.json b/site/public/v1/smartphones/nubia-z20-premium-edition-global-dual-sim-td-lte-512gb-nx627j/index.json new file mode 100644 index 00000000000..8e424b54f81 --- /dev/null +++ b/site/public/v1/smartphones/nubia-z20-premium-edition-global-dual-sim-td-lte-512gb-nx627j/index.json @@ -0,0 +1,72 @@ +{ + "id": 6443, + "slug": "nubia-z20-premium-edition-global-dual-sim-td-lte-512gb-nx627j", + "name": "Nubia Z20 Premium Edition Global Dual SIM TD-LTE 512GB NX627J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-08-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.010824", + "updated_at": "2026-06-19T00:43:45.010824" +} diff --git a/site/public/v1/smartphones/nubia-z20-premium-edition-global-dual-sim-td-lte-512gb-nx627j/score/index.json b/site/public/v1/smartphones/nubia-z20-premium-edition-global-dual-sim-td-lte-512gb-nx627j/score/index.json new file mode 100644 index 00000000000..4e6ebb50df3 --- /dev/null +++ b/site/public/v1/smartphones/nubia-z20-premium-edition-global-dual-sim-td-lte-512gb-nx627j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-z20-standard-edition-dual-sim-td-lte-na-128gb-nx627j/index.json b/site/public/v1/smartphones/nubia-z20-standard-edition-dual-sim-td-lte-na-128gb-nx627j/index.json new file mode 100644 index 00000000000..9f871e9cc7f --- /dev/null +++ b/site/public/v1/smartphones/nubia-z20-standard-edition-dual-sim-td-lte-na-128gb-nx627j/index.json @@ -0,0 +1,72 @@ +{ + "id": 6444, + "slug": "nubia-z20-standard-edition-dual-sim-td-lte-na-128gb-nx627j", + "name": "Nubia Z20 Standard Edition Dual SIM TD-LTE NA 128GB NX627J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-10-14", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 16.5, + "battery": 17.3, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.010824", + "updated_at": "2026-06-19T00:43:45.010824" +} diff --git a/site/public/v1/smartphones/nubia-z20-standard-edition-dual-sim-td-lte-na-128gb-nx627j/score/index.json b/site/public/v1/smartphones/nubia-z20-standard-edition-dual-sim-td-lte-na-128gb-nx627j/score/index.json new file mode 100644 index 00000000000..3f297b5ea34 --- /dev/null +++ b/site/public/v1/smartphones/nubia-z20-standard-edition-dual-sim-td-lte-na-128gb-nx627j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 16.5, + "battery": 17.3, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/nubia-z20-standard-edition-global-dual-sim-td-lte-128gb-nx627j/index.json b/site/public/v1/smartphones/nubia-z20-standard-edition-global-dual-sim-td-lte-128gb-nx627j/index.json new file mode 100644 index 00000000000..f10669b3368 --- /dev/null +++ b/site/public/v1/smartphones/nubia-z20-standard-edition-global-dual-sim-td-lte-128gb-nx627j/index.json @@ -0,0 +1,72 @@ +{ + "id": 6445, + "slug": "nubia-z20-standard-edition-global-dual-sim-td-lte-128gb-nx627j", + "name": "Nubia Z20 Standard Edition Global Dual SIM TD-LTE 128GB NX627J", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-08-16", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 16.5, + "battery": 17.3, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.010824", + "updated_at": "2026-06-19T00:43:45.010824" +} diff --git a/site/public/v1/smartphones/nubia-z20-standard-edition-global-dual-sim-td-lte-128gb-nx627j/score/index.json b/site/public/v1/smartphones/nubia-z20-standard-edition-global-dual-sim-td-lte-128gb-nx627j/score/index.json new file mode 100644 index 00000000000..3f297b5ea34 --- /dev/null +++ b/site/public/v1/smartphones/nubia-z20-standard-edition-global-dual-sim-td-lte-128gb-nx627j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 16.5, + "battery": 17.3, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/one-dual-sim-lte-latam-xt1941-3/index.json b/site/public/v1/smartphones/one-dual-sim-lte-latam-xt1941-3/index.json new file mode 100644 index 00000000000..2c4bec72e07 --- /dev/null +++ b/site/public/v1/smartphones/one-dual-sim-lte-latam-xt1941-3/index.json @@ -0,0 +1,76 @@ +{ + "id": 1994, + "slug": "one-dual-sim-lte-latam-xt1941-3", + "name": "One Dual SIM LTE LATAM XT1941-3", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 114, + "slug": "snapdragon-625", + "name": "Snapdragon 625", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-625" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.88, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 286 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.400874", + "updated_at": "2026-06-19T00:43:44.400874" +} diff --git a/site/public/v1/smartphones/one-dual-sim-lte-latam-xt1941-3/score/index.json b/site/public/v1/smartphones/one-dual-sim-lte-latam-xt1941-3/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/one-dual-sim-lte-latam-xt1941-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/one-global-dual-sim-td-lte-xt1941-4/index.json b/site/public/v1/smartphones/one-global-dual-sim-td-lte-xt1941-4/index.json new file mode 100644 index 00000000000..c4ec11e7248 --- /dev/null +++ b/site/public/v1/smartphones/one-global-dual-sim-td-lte-xt1941-4/index.json @@ -0,0 +1,76 @@ +{ + "id": 1995, + "slug": "one-global-dual-sim-td-lte-xt1941-4", + "name": "One Global Dual SIM TD-LTE XT1941-4", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 114, + "slug": "snapdragon-625", + "name": "Snapdragon 625", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-625" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.88, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 286 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.400874", + "updated_at": "2026-06-19T00:43:44.400874" +} diff --git a/site/public/v1/smartphones/one-global-dual-sim-td-lte-xt1941-4/score/index.json b/site/public/v1/smartphones/one-global-dual-sim-td-lte-xt1941-4/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/one-global-dual-sim-td-lte-xt1941-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/one-global-td-lte-xt1941-1/index.json b/site/public/v1/smartphones/one-global-td-lte-xt1941-1/index.json new file mode 100644 index 00000000000..b621c40f5a2 --- /dev/null +++ b/site/public/v1/smartphones/one-global-td-lte-xt1941-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 1996, + "slug": "one-global-td-lte-xt1941-1", + "name": "One Global TD-LTE XT1941-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 114, + "slug": "snapdragon-625", + "name": "Snapdragon 625", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-625" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.88, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 286 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.400874", + "updated_at": "2026-06-19T00:43:44.400874" +} diff --git a/site/public/v1/smartphones/one-global-td-lte-xt1941-1/score/index.json b/site/public/v1/smartphones/one-global-td-lte-xt1941-1/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/one-global-td-lte-xt1941-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/one-lte-latam-xt1941-5/index.json b/site/public/v1/smartphones/one-lte-latam-xt1941-5/index.json new file mode 100644 index 00000000000..ecadf19374a --- /dev/null +++ b/site/public/v1/smartphones/one-lte-latam-xt1941-5/index.json @@ -0,0 +1,76 @@ +{ + "id": 1997, + "slug": "one-lte-latam-xt1941-5", + "name": "One LTE LATAM XT1941-5", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 114, + "slug": "snapdragon-625", + "name": "Snapdragon 625", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-625" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.88, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 286 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.400874", + "updated_at": "2026-06-19T00:43:44.400874" +} diff --git a/site/public/v1/smartphones/one-lte-latam-xt1941-5/score/index.json b/site/public/v1/smartphones/one-lte-latam-xt1941-5/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/one-lte-latam-xt1941-5/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/one-power-dual-sim-td-lte-in-64gb-xt1942-2/index.json b/site/public/v1/smartphones/one-power-dual-sim-td-lte-in-64gb-xt1942-2/index.json new file mode 100644 index 00000000000..d03174f3714 --- /dev/null +++ b/site/public/v1/smartphones/one-power-dual-sim-td-lte-in-64gb-xt1942-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 1998, + "slug": "one-power-dual-sim-td-lte-in-64gb-xt1942-2", + "name": "One Power Dual SIM TD-LTE IN 64GB XT1942-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.400874", + "updated_at": "2026-06-19T00:43:44.400874" +} diff --git a/site/public/v1/smartphones/one-power-dual-sim-td-lte-in-64gb-xt1942-2/score/index.json b/site/public/v1/smartphones/one-power-dual-sim-td-lte-in-64gb-xt1942-2/score/index.json new file mode 100644 index 00000000000..e545704978f --- /dev/null +++ b/site/public/v1/smartphones/one-power-dual-sim-td-lte-in-64gb-xt1942-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/one-touch-pop-4-global-dual-sim-lte-5056d-pop-4-plus/index.json b/site/public/v1/smartphones/one-touch-pop-4-global-dual-sim-lte-5056d-pop-4-plus/index.json new file mode 100644 index 00000000000..1838a9361c5 --- /dev/null +++ b/site/public/v1/smartphones/one-touch-pop-4-global-dual-sim-lte-5056d-pop-4-plus/index.json @@ -0,0 +1,76 @@ +{ + "id": 1, + "slug": "one-touch-pop-4-global-dual-sim-lte-5056d-pop-4-plus", + "name": "One Touch Pop 4+ Global Dual SIM LTE 5056D / Pop 4 Plus", + "brand": { + "id": 6, + "slug": "alcatel", + "name": "Alcatel Mobile", + "country": "CN", + "url": "/v1/brands/alcatel" + }, + "soc": { + "id": 104, + "slug": "snapdragon-210", + "name": "Snapdragon 210", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-210" + }, + "release_date": "2016-03-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 2500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "6.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.108418", + "updated_at": "2026-06-19T00:43:44.108418" +} diff --git a/site/public/v1/smartphones/one-touch-pop-4-global-dual-sim-lte-5056d-pop-4-plus/score/index.json b/site/public/v1/smartphones/one-touch-pop-4-global-dual-sim-lte-5056d-pop-4-plus/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/one-touch-pop-4-global-dual-sim-lte-5056d-pop-4-plus/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/one-touch-pop-4-lte-latam-5056a-pop-4-plus/index.json b/site/public/v1/smartphones/one-touch-pop-4-lte-latam-5056a-pop-4-plus/index.json new file mode 100644 index 00000000000..e0f3ed1380c --- /dev/null +++ b/site/public/v1/smartphones/one-touch-pop-4-lte-latam-5056a-pop-4-plus/index.json @@ -0,0 +1,76 @@ +{ + "id": 2, + "slug": "one-touch-pop-4-lte-latam-5056a-pop-4-plus", + "name": "One Touch Pop 4+ LTE LATAM 5056A / Pop 4 Plus", + "brand": { + "id": 6, + "slug": "alcatel", + "name": "Alcatel Mobile", + "country": "CN", + "url": "/v1/brands/alcatel" + }, + "soc": { + "id": 104, + "slug": "snapdragon-210", + "name": "Snapdragon 210", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-210" + }, + "release_date": "2016-09-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 2500, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "6.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.109419", + "updated_at": "2026-06-19T00:43:44.109419" +} diff --git a/site/public/v1/smartphones/one-touch-pop-4-lte-latam-5056a-pop-4-plus/score/index.json b/site/public/v1/smartphones/one-touch-pop-4-lte-latam-5056a-pop-4-plus/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/one-touch-pop-4-lte-latam-5056a-pop-4-plus/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/one-touch-pop-4-plus-dual-sim-lte-am-5056e-pop-4/index.json b/site/public/v1/smartphones/one-touch-pop-4-plus-dual-sim-lte-am-5056e-pop-4/index.json new file mode 100644 index 00000000000..ff17f3caf59 --- /dev/null +++ b/site/public/v1/smartphones/one-touch-pop-4-plus-dual-sim-lte-am-5056e-pop-4/index.json @@ -0,0 +1,76 @@ +{ + "id": 3, + "slug": "one-touch-pop-4-plus-dual-sim-lte-am-5056e-pop-4", + "name": "One Touch Pop 4 Plus Dual SIM LTE AM 5056E / Pop 4+", + "brand": { + "id": 6, + "slug": "alcatel", + "name": "Alcatel Mobile", + "country": "CN", + "url": "/v1/brands/alcatel" + }, + "soc": { + "id": 104, + "slug": "snapdragon-210", + "name": "Snapdragon 210", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-210" + }, + "release_date": "2016-08-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 2500, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "6.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.109419", + "updated_at": "2026-06-19T00:43:44.109419" +} diff --git a/site/public/v1/smartphones/one-touch-pop-4-plus-dual-sim-lte-am-5056e-pop-4/score/index.json b/site/public/v1/smartphones/one-touch-pop-4-plus-dual-sim-lte-am-5056e-pop-4/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/one-touch-pop-4-plus-dual-sim-lte-am-5056e-pop-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/one-touch-pop-4-plus-lte-am-5056g-pop-4/index.json b/site/public/v1/smartphones/one-touch-pop-4-plus-lte-am-5056g-pop-4/index.json new file mode 100644 index 00000000000..64763b8d298 --- /dev/null +++ b/site/public/v1/smartphones/one-touch-pop-4-plus-lte-am-5056g-pop-4/index.json @@ -0,0 +1,76 @@ +{ + "id": 4, + "slug": "one-touch-pop-4-plus-lte-am-5056g-pop-4", + "name": "One Touch Pop 4 Plus LTE AM 5056G / Pop 4+", + "brand": { + "id": 6, + "slug": "alcatel", + "name": "Alcatel Mobile", + "country": "CN", + "url": "/v1/brands/alcatel" + }, + "soc": { + "id": 104, + "slug": "snapdragon-210", + "name": "Snapdragon 210", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-210" + }, + "release_date": "2016-09-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 2500, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "6.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.109419", + "updated_at": "2026-06-19T00:43:44.109419" +} diff --git a/site/public/v1/smartphones/one-touch-pop-4-plus-lte-am-5056g-pop-4/score/index.json b/site/public/v1/smartphones/one-touch-pop-4-plus-lte-am-5056g-pop-4/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/one-touch-pop-4-plus-lte-am-5056g-pop-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/open/index.json b/site/public/v1/smartphones/open/index.json new file mode 100644 index 00000000000..f9b3d3cb223 --- /dev/null +++ b/site/public/v1/smartphones/open/index.json @@ -0,0 +1,70 @@ +{ + "id": 2709, + "slug": "open", + "name": "Open", + "brand": { + "id": 28, + "slug": "oneplus", + "name": "OnePlus", + "country": "CN", + "url": "/v1/brands/oneplus" + }, + "soc": { + "id": 164, + "slug": "snapdragon-8-gen-2", + "name": "Snapdragon 8 Gen 2", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 740", + "url": "/v1/socs/snapdragon-8-gen-2" + }, + "release_date": "2024-01-01", + "msrp_usd": 1099, + "ram_gb": 16, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 7.8 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 238.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.7, + "performance": 39.7, + "camera": 16.5, + "battery": 42.0, + "display": null, + "value": 35.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.494306", + "updated_at": "2026-06-19T00:43:44.494306" +} diff --git a/site/public/v1/smartphones/open/score/index.json b/site/public/v1/smartphones/open/score/index.json new file mode 100644 index 00000000000..8cefdc51fed --- /dev/null +++ b/site/public/v1/smartphones/open/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.7, + "performance": 39.7, + "camera": 16.5, + "battery": 42.0, + "display": null, + "value": 35.6 +} diff --git a/site/public/v1/smartphones/optus-x-go-td-lte-au-5007u/index.json b/site/public/v1/smartphones/optus-x-go-td-lte-au-5007u/index.json new file mode 100644 index 00000000000..508f40a4dda --- /dev/null +++ b/site/public/v1/smartphones/optus-x-go-td-lte-au-5007u/index.json @@ -0,0 +1,76 @@ +{ + "id": 4948, + "slug": "optus-x-go-td-lte-au-5007u", + "name": "Optus X Go TD-LTE AU 5007U", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 58, + "slug": "helio-a25", + "name": "Helio A25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-a25" + }, + "release_date": "2020-10-07", + "msrp_usd": 129, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Yes" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 56.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.832757", + "updated_at": "2026-06-19T00:43:44.832757" +} diff --git a/site/public/v1/smartphones/optus-x-go-td-lte-au-5007u/score/index.json b/site/public/v1/smartphones/optus-x-go-td-lte-au-5007u/score/index.json new file mode 100644 index 00000000000..8998cfefb03 --- /dev/null +++ b/site/public/v1/smartphones/optus-x-go-td-lte-au-5007u/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 56.9 +} diff --git a/site/public/v1/smartphones/optus-x-sight-td-lte-au-5002i/index.json b/site/public/v1/smartphones/optus-x-sight-td-lte-au-5002i/index.json new file mode 100644 index 00000000000..2d2108a3ea9 --- /dev/null +++ b/site/public/v1/smartphones/optus-x-sight-td-lte-au-5002i/index.json @@ -0,0 +1,76 @@ +{ + "id": 4949, + "slug": "optus-x-sight-td-lte-au-5002i", + "name": "Optus X Sight TD-LTE AU 5002I", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 131, + "slug": "snapdragon-215", + "name": "Snapdragon 215", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-215" + }, + "release_date": "2020-05-17", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 293 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.832757", + "updated_at": "2026-06-19T00:43:44.832757" +} diff --git a/site/public/v1/smartphones/optus-x-sight-td-lte-au-5002i/score/index.json b/site/public/v1/smartphones/optus-x-sight-td-lte-au-5002i/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/optus-x-sight-td-lte-au-5002i/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/optus-x-smart-4g-td-lte-au-5056i/index.json b/site/public/v1/smartphones/optus-x-smart-4g-td-lte-au-5056i/index.json new file mode 100644 index 00000000000..7be59efcdfd --- /dev/null +++ b/site/public/v1/smartphones/optus-x-smart-4g-td-lte-au-5056i/index.json @@ -0,0 +1,76 @@ +{ + "id": 4926, + "slug": "optus-x-smart-4g-td-lte-au-5056i", + "name": "Optus X Smart 4G TD-LTE AU 5056I", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 104, + "slug": "snapdragon-210", + "name": "Snapdragon 210", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-210" + }, + "release_date": "2017-03-02", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 2500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "6.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.830033", + "updated_at": "2026-06-19T00:43:44.830033" +} diff --git a/site/public/v1/smartphones/optus-x-smart-4g-td-lte-au-5056i/score/index.json b/site/public/v1/smartphones/optus-x-smart-4g-td-lte-au-5056i/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/optus-x-smart-4g-td-lte-au-5056i/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/optus-x-wave-td-lte-au/index.json b/site/public/v1/smartphones/optus-x-wave-td-lte-au/index.json new file mode 100644 index 00000000000..566bc28271b --- /dev/null +++ b/site/public/v1/smartphones/optus-x-wave-td-lte-au/index.json @@ -0,0 +1,76 @@ +{ + "id": 6446, + "slug": "optus-x-wave-td-lte-au", + "name": "Optus X Wave TD-LTE AU", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-10-13", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 155.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": null, + "camera": 5.3, + "battery": 3.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.011826", + "updated_at": "2026-06-19T00:43:45.011826" +} diff --git a/site/public/v1/smartphones/optus-x-wave-td-lte-au/score/index.json b/site/public/v1/smartphones/optus-x-wave-td-lte-au/score/index.json new file mode 100644 index 00000000000..c0f0d918d09 --- /dev/null +++ b/site/public/v1/smartphones/optus-x-wave-td-lte-au/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": null, + "camera": 5.3, + "battery": 3.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/oxygen-68-xl-dual-sim-lte/index.json b/site/public/v1/smartphones/oxygen-68-xl-dual-sim-lte/index.json new file mode 100644 index 00000000000..05b741c76fc --- /dev/null +++ b/site/public/v1/smartphones/oxygen-68-xl-dual-sim-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 305, + "slug": "oxygen-68-xl-dual-sim-lte", + "name": "Oxygen 68 XL Dual SIM LTE", + "brand": { + "id": 54, + "slug": "archos", + "name": "Archos", + "country": "FR", + "url": "/v1/brands/archos" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.85, + "resolution": "640x1352", + "type": "Color IPS TFT LCD display", + "ppi": 218 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 214.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": null, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.150418", + "updated_at": "2026-06-19T00:43:44.150418" +} diff --git a/site/public/v1/smartphones/oxygen-68-xl-dual-sim-lte/score/index.json b/site/public/v1/smartphones/oxygen-68-xl-dual-sim-lte/score/index.json new file mode 100644 index 00000000000..e4776ee43c5 --- /dev/null +++ b/site/public/v1/smartphones/oxygen-68-xl-dual-sim-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": null, + "camera": 5.0, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/p-smart-2019-dual-sim-lte-a-emea-32gb-pot-lx1rua/index.json b/site/public/v1/smartphones/p-smart-2019-dual-sim-lte-a-emea-32gb-pot-lx1rua/index.json new file mode 100644 index 00000000000..12c4d1cbfa0 --- /dev/null +++ b/site/public/v1/smartphones/p-smart-2019-dual-sim-lte-a-emea-32gb-pot-lx1rua/index.json @@ -0,0 +1,76 @@ +{ + "id": 1064, + "slug": "p-smart-2019-dual-sim-lte-a-emea-32gb-pot-lx1rua", + "name": "P Smart 2019 Dual SIM LTE-A EMEA 32GB POT-LX1RUA", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-01-02", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 0.0, + "camera": 5.3, + "battery": 6.0, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.257092", + "updated_at": "2026-06-19T00:43:44.257092" +} diff --git a/site/public/v1/smartphones/p-smart-2019-dual-sim-lte-a-emea-32gb-pot-lx1rua/score/index.json b/site/public/v1/smartphones/p-smart-2019-dual-sim-lte-a-emea-32gb-pot-lx1rua/score/index.json new file mode 100644 index 00000000000..9e92c616aaf --- /dev/null +++ b/site/public/v1/smartphones/p-smart-2019-dual-sim-lte-a-emea-32gb-pot-lx1rua/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 0.0, + "camera": 5.3, + "battery": 6.0, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/p-smart-2019-dual-sim-lte-a-emea-64gb-pot-lx1-pot-l21-pot-lx1af/index.json b/site/public/v1/smartphones/p-smart-2019-dual-sim-lte-a-emea-64gb-pot-lx1-pot-l21-pot-lx1af/index.json new file mode 100644 index 00000000000..27c0713181e --- /dev/null +++ b/site/public/v1/smartphones/p-smart-2019-dual-sim-lte-a-emea-64gb-pot-lx1-pot-l21-pot-lx1af/index.json @@ -0,0 +1,76 @@ +{ + "id": 1065, + "slug": "p-smart-2019-dual-sim-lte-a-emea-64gb-pot-lx1-pot-l21-pot-lx1af", + "name": "P Smart 2019 Dual SIM LTE-A EMEA 64GB POT-LX1 / POT-L21 / POT-LX1AF", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-01-02", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 0.0, + "camera": 5.3, + "battery": 6.0, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.257092", + "updated_at": "2026-06-19T00:43:44.257092" +} diff --git a/site/public/v1/smartphones/p-smart-2019-dual-sim-lte-a-emea-64gb-pot-lx1-pot-l21-pot-lx1af/score/index.json b/site/public/v1/smartphones/p-smart-2019-dual-sim-lte-a-emea-64gb-pot-lx1-pot-l21-pot-lx1af/score/index.json new file mode 100644 index 00000000000..9e92c616aaf --- /dev/null +++ b/site/public/v1/smartphones/p-smart-2019-dual-sim-lte-a-emea-64gb-pot-lx1-pot-l21-pot-lx1af/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 0.0, + "camera": 5.3, + "battery": 6.0, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/p-smart-2019-dual-sim-lte-a-latam-64gb-pot-lx3-pot-l23/index.json b/site/public/v1/smartphones/p-smart-2019-dual-sim-lte-a-latam-64gb-pot-lx3-pot-l23/index.json new file mode 100644 index 00000000000..ee07887c63c --- /dev/null +++ b/site/public/v1/smartphones/p-smart-2019-dual-sim-lte-a-latam-64gb-pot-lx3-pot-l23/index.json @@ -0,0 +1,76 @@ +{ + "id": 1066, + "slug": "p-smart-2019-dual-sim-lte-a-latam-64gb-pot-lx3-pot-l23", + "name": "P Smart 2019 Dual SIM LTE-A LATAM 64GB POT-LX3 / POT-L23", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-02-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 0.0, + "camera": 5.3, + "battery": 6.0, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.257092", + "updated_at": "2026-06-19T00:43:44.257092" +} diff --git a/site/public/v1/smartphones/p-smart-2019-dual-sim-lte-a-latam-64gb-pot-lx3-pot-l23/score/index.json b/site/public/v1/smartphones/p-smart-2019-dual-sim-lte-a-latam-64gb-pot-lx3-pot-l23/score/index.json new file mode 100644 index 00000000000..9e92c616aaf --- /dev/null +++ b/site/public/v1/smartphones/p-smart-2019-dual-sim-lte-a-latam-64gb-pot-lx3-pot-l23/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 0.0, + "camera": 5.3, + "battery": 6.0, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/p-smart-2019-global-dual-sim-td-lte-64gb-pot-al00/index.json b/site/public/v1/smartphones/p-smart-2019-global-dual-sim-td-lte-64gb-pot-al00/index.json new file mode 100644 index 00000000000..162683e138b --- /dev/null +++ b/site/public/v1/smartphones/p-smart-2019-global-dual-sim-td-lte-64gb-pot-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1067, + "slug": "p-smart-2019-global-dual-sim-td-lte-64gb-pot-al00", + "name": "P Smart+ 2019 Global Dual SIM TD-LTE 64GB POT-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.3, + "performance": 0.0, + "camera": 8.8, + "battery": 6.0, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.257092", + "updated_at": "2026-06-19T00:43:44.257092" +} diff --git a/site/public/v1/smartphones/p-smart-2019-global-dual-sim-td-lte-64gb-pot-al00/score/index.json b/site/public/v1/smartphones/p-smart-2019-global-dual-sim-td-lte-64gb-pot-al00/score/index.json new file mode 100644 index 00000000000..584fb3174b2 --- /dev/null +++ b/site/public/v1/smartphones/p-smart-2019-global-dual-sim-td-lte-64gb-pot-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.3, + "performance": 0.0, + "camera": 8.8, + "battery": 6.0, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/p-smart-2020-dual-sim-lte-a-emea-128gb-pot-lx1a-pot-l21a/index.json b/site/public/v1/smartphones/p-smart-2020-dual-sim-lte-a-emea-128gb-pot-lx1a-pot-l21a/index.json new file mode 100644 index 00000000000..e4def5682a6 --- /dev/null +++ b/site/public/v1/smartphones/p-smart-2020-dual-sim-lte-a-emea-128gb-pot-lx1a-pot-l21a/index.json @@ -0,0 +1,76 @@ +{ + "id": 1206, + "slug": "p-smart-2020-dual-sim-lte-a-emea-128gb-pot-lx1a-pot-l21a", + "name": "P Smart 2020 Dual SIM LTE-A EMEA 128GB POT-LX1A / POT-L21A", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.21, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 0.0, + "camera": 5.3, + "battery": 6.0, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.275606", + "updated_at": "2026-06-19T00:43:44.275606" +} diff --git a/site/public/v1/smartphones/p-smart-2020-dual-sim-lte-a-emea-128gb-pot-lx1a-pot-l21a/score/index.json b/site/public/v1/smartphones/p-smart-2020-dual-sim-lte-a-emea-128gb-pot-lx1a-pot-l21a/score/index.json new file mode 100644 index 00000000000..9e92c616aaf --- /dev/null +++ b/site/public/v1/smartphones/p-smart-2020-dual-sim-lte-a-emea-128gb-pot-lx1a-pot-l21a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 0.0, + "camera": 5.3, + "battery": 6.0, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/p-smart-2021-dual-sim-td-lte-emea-128gb-ppa-lx2-ppa-l22/index.json b/site/public/v1/smartphones/p-smart-2021-dual-sim-td-lte-emea-128gb-ppa-lx2-ppa-l22/index.json new file mode 100644 index 00000000000..6b5e22afe04 --- /dev/null +++ b/site/public/v1/smartphones/p-smart-2021-dual-sim-td-lte-emea-128gb-ppa-lx2-ppa-l22/index.json @@ -0,0 +1,76 @@ +{ + "id": 1207, + "slug": "p-smart-2021-dual-sim-td-lte-emea-128gb-ppa-lx2-ppa-l22", + "name": "P Smart 2021 Dual SIM TD-LTE EMEA 128GB PPA-LX2 / PPA-L22", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 33, + "slug": "kirin-710a", + "name": "Kirin 710A", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51", + "url": "/v1/socs/kirin-710a" + }, + "release_date": "2020-09-01", + "msrp_usd": 229, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 0.0, + "camera": 16.5, + "battery": 31.4, + "display": 44.5, + "value": 61.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.275606", + "updated_at": "2026-06-19T00:43:44.275606" +} diff --git a/site/public/v1/smartphones/p-smart-2021-dual-sim-td-lte-emea-128gb-ppa-lx2-ppa-l22/score/index.json b/site/public/v1/smartphones/p-smart-2021-dual-sim-td-lte-emea-128gb-ppa-lx2-ppa-l22/score/index.json new file mode 100644 index 00000000000..ad5f57ef662 --- /dev/null +++ b/site/public/v1/smartphones/p-smart-2021-dual-sim-td-lte-emea-128gb-ppa-lx2-ppa-l22/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 0.0, + "camera": 16.5, + "battery": 31.4, + "display": 44.5, + "value": 61.5 +} diff --git a/site/public/v1/smartphones/p-smart-dual-sim-lte-a-latam-fig-lx3-fig-l23/index.json b/site/public/v1/smartphones/p-smart-dual-sim-lte-a-latam-fig-lx3-fig-l23/index.json new file mode 100644 index 00000000000..2b53f997149 --- /dev/null +++ b/site/public/v1/smartphones/p-smart-dual-sim-lte-a-latam-fig-lx3-fig-l23/index.json @@ -0,0 +1,76 @@ +{ + "id": 918, + "slug": "p-smart-dual-sim-lte-a-latam-fig-lx3-fig-l23", + "name": "P Smart Dual SIM LTE-A LATAM FIG-LX3 / FIG-L23", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 25, + "slug": "kirin-659", + "name": "Kirin 659", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 16.0, + "gpu_name": "Mali-T830 MP2", + "url": "/v1/socs/kirin-659" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.65, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 427 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 143.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 47.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.233932", + "updated_at": "2026-06-19T00:43:44.233932" +} diff --git a/site/public/v1/smartphones/p-smart-dual-sim-lte-a-latam-fig-lx3-fig-l23/score/index.json b/site/public/v1/smartphones/p-smart-dual-sim-lte-a-latam-fig-lx3-fig-l23/score/index.json new file mode 100644 index 00000000000..d4bad91193b --- /dev/null +++ b/site/public/v1/smartphones/p-smart-dual-sim-lte-a-latam-fig-lx3-fig-l23/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 47.7, + "value": null +} diff --git a/site/public/v1/smartphones/p-smart-dual-sim-lte-emea-ine-lx1-64gb-p-smart-plus-ine-l21/index.json b/site/public/v1/smartphones/p-smart-dual-sim-lte-emea-ine-lx1-64gb-p-smart-plus-ine-l21/index.json new file mode 100644 index 00000000000..55ea6f8ad6c --- /dev/null +++ b/site/public/v1/smartphones/p-smart-dual-sim-lte-emea-ine-lx1-64gb-p-smart-plus-ine-l21/index.json @@ -0,0 +1,76 @@ +{ + "id": 919, + "slug": "p-smart-dual-sim-lte-emea-ine-lx1-64gb-p-smart-plus-ine-l21", + "name": "P Smart+ Dual SIM LTE EMEA INE-LX1 64GB / P smart Plus INE-L21", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3340, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.3, + "performance": 0.0, + "camera": 6.3, + "battery": 5.1, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.233932", + "updated_at": "2026-06-19T00:43:44.233932" +} diff --git a/site/public/v1/smartphones/p-smart-dual-sim-lte-emea-ine-lx1-64gb-p-smart-plus-ine-l21/score/index.json b/site/public/v1/smartphones/p-smart-dual-sim-lte-emea-ine-lx1-64gb-p-smart-plus-ine-l21/score/index.json new file mode 100644 index 00000000000..73bfbee729b --- /dev/null +++ b/site/public/v1/smartphones/p-smart-dual-sim-lte-emea-ine-lx1-64gb-p-smart-plus-ine-l21/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.3, + "performance": 0.0, + "camera": 6.3, + "battery": 5.1, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/p-smart-lte-a-latam-fig-l03/index.json b/site/public/v1/smartphones/p-smart-lte-a-latam-fig-l03/index.json new file mode 100644 index 00000000000..d5efa183dde --- /dev/null +++ b/site/public/v1/smartphones/p-smart-lte-a-latam-fig-l03/index.json @@ -0,0 +1,76 @@ +{ + "id": 920, + "slug": "p-smart-lte-a-latam-fig-l03", + "name": "P Smart LTE-A LATAM FIG-L03", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 25, + "slug": "kirin-659", + "name": "Kirin 659", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 16.0, + "gpu_name": "Mali-T830 MP2", + "url": "/v1/socs/kirin-659" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.65, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 427 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 143.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 47.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.233932", + "updated_at": "2026-06-19T00:43:44.233932" +} diff --git a/site/public/v1/smartphones/p-smart-lte-a-latam-fig-l03/score/index.json b/site/public/v1/smartphones/p-smart-lte-a-latam-fig-l03/score/index.json new file mode 100644 index 00000000000..d4bad91193b --- /dev/null +++ b/site/public/v1/smartphones/p-smart-lte-a-latam-fig-l03/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 47.7, + "value": null +} diff --git a/site/public/v1/smartphones/p-smart-lte-emea-ine-lx1-128gb-nova-3i/index.json b/site/public/v1/smartphones/p-smart-lte-emea-ine-lx1-128gb-nova-3i/index.json new file mode 100644 index 00000000000..18cc1ad30d4 --- /dev/null +++ b/site/public/v1/smartphones/p-smart-lte-emea-ine-lx1-128gb-nova-3i/index.json @@ -0,0 +1,76 @@ +{ + "id": 921, + "slug": "p-smart-lte-emea-ine-lx1-128gb-nova-3i", + "name": "P Smart+ LTE EMEA INE-LX1 128GB / Nova 3i", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3340, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.3, + "performance": 0.0, + "camera": 6.3, + "battery": 5.1, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.234932", + "updated_at": "2026-06-19T00:43:44.234932" +} diff --git a/site/public/v1/smartphones/p-smart-lte-emea-ine-lx1-128gb-nova-3i/score/index.json b/site/public/v1/smartphones/p-smart-lte-emea-ine-lx1-128gb-nova-3i/score/index.json new file mode 100644 index 00000000000..73bfbee729b --- /dev/null +++ b/site/public/v1/smartphones/p-smart-lte-emea-ine-lx1-128gb-nova-3i/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.3, + "performance": 0.0, + "camera": 6.3, + "battery": 5.1, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/p-smart-z-dual-sim-lte-a-emea-stk-lx1/index.json b/site/public/v1/smartphones/p-smart-z-dual-sim-lte-a-emea-stk-lx1/index.json new file mode 100644 index 00000000000..3a7fff4f916 --- /dev/null +++ b/site/public/v1/smartphones/p-smart-z-dual-sim-lte-a-emea-stk-lx1/index.json @@ -0,0 +1,76 @@ +{ + "id": 1068, + "slug": "p-smart-z-dual-sim-lte-a-emea-stk-lx1", + "name": "P Smart Z Dual SIM LTE-A EMEA STK-LX1", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-07-01", + "msrp_usd": 198, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 196.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.4, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 44.1, + "value": 58.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.257092", + "updated_at": "2026-06-19T00:43:44.257092" +} diff --git a/site/public/v1/smartphones/p-smart-z-dual-sim-lte-a-emea-stk-lx1/score/index.json b/site/public/v1/smartphones/p-smart-z-dual-sim-lte-a-emea-stk-lx1/score/index.json new file mode 100644 index 00000000000..91587300439 --- /dev/null +++ b/site/public/v1/smartphones/p-smart-z-dual-sim-lte-a-emea-stk-lx1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.4, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 44.1, + "value": 58.2 +} diff --git a/site/public/v1/smartphones/p10-selfie-lte-a-latam-bac-l03/index.json b/site/public/v1/smartphones/p10-selfie-lte-a-latam-bac-l03/index.json new file mode 100644 index 00000000000..f4f045ef143 --- /dev/null +++ b/site/public/v1/smartphones/p10-selfie-lte-a-latam-bac-l03/index.json @@ -0,0 +1,76 @@ +{ + "id": 807, + "slug": "p10-selfie-lte-a-latam-bac-l03", + "name": "P10 Selfie LTE-A LATAM BAC-L03", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 25, + "slug": "kirin-659", + "name": "Kirin 659", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 16.0, + "gpu_name": "Mali-T830 MP2", + "url": "/v1/socs/kirin-659" + }, + "release_date": "2017-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.47, + "resolution": "1080x1920", + "type": "Color TN-TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 11.8 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3340, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.0, + "battery": 5.1, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.219932", + "updated_at": "2026-06-19T00:43:44.219932" +} diff --git a/site/public/v1/smartphones/p10-selfie-lte-a-latam-bac-l03/score/index.json b/site/public/v1/smartphones/p10-selfie-lte-a-latam-bac-l03/score/index.json new file mode 100644 index 00000000000..85427d4790f --- /dev/null +++ b/site/public/v1/smartphones/p10-selfie-lte-a-latam-bac-l03/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.0, + "battery": 5.1, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/p20-global-dual-sim-td-lte-eml-l29-64gb/index.json b/site/public/v1/smartphones/p20-global-dual-sim-td-lte-eml-l29-64gb/index.json new file mode 100644 index 00000000000..60a7e82f822 --- /dev/null +++ b/site/public/v1/smartphones/p20-global-dual-sim-td-lte-eml-l29-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 922, + "slug": "p20-global-dual-sim-td-lte-eml-l29-64gb", + "name": "P20 Global Dual SIM TD-LTE EML-L29 64GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-08-04", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.79, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 430 + }, + "cameras": [ + { + "type": "main", + "mp": 11.7 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": 24.5, + "camera": 5.0, + "battery": 6.0, + "display": 48.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.234932", + "updated_at": "2026-06-19T00:43:44.234932" +} diff --git a/site/public/v1/smartphones/p20-global-dual-sim-td-lte-eml-l29-64gb/score/index.json b/site/public/v1/smartphones/p20-global-dual-sim-td-lte-eml-l29-64gb/score/index.json new file mode 100644 index 00000000000..62c707857c6 --- /dev/null +++ b/site/public/v1/smartphones/p20-global-dual-sim-td-lte-eml-l29-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": 24.5, + "camera": 5.0, + "battery": 6.0, + "display": 48.0, + "value": null +} diff --git a/site/public/v1/smartphones/p20-global-dual-sim-td-lte-eml-l29-eml-l29c/index.json b/site/public/v1/smartphones/p20-global-dual-sim-td-lte-eml-l29-eml-l29c/index.json new file mode 100644 index 00000000000..a17b0f8ca89 --- /dev/null +++ b/site/public/v1/smartphones/p20-global-dual-sim-td-lte-eml-l29-eml-l29c/index.json @@ -0,0 +1,76 @@ +{ + "id": 923, + "slug": "p20-global-dual-sim-td-lte-eml-l29-eml-l29c", + "name": "P20 Global Dual SIM TD-LTE EML-L29 / EML-L29C", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.79, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 430 + }, + "cameras": [ + { + "type": "main", + "mp": 11.7 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": 24.5, + "camera": 5.0, + "battery": 6.0, + "display": 48.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.234932", + "updated_at": "2026-06-19T00:43:44.234932" +} diff --git a/site/public/v1/smartphones/p20-global-dual-sim-td-lte-eml-l29-eml-l29c/score/index.json b/site/public/v1/smartphones/p20-global-dual-sim-td-lte-eml-l29-eml-l29c/score/index.json new file mode 100644 index 00000000000..62c707857c6 --- /dev/null +++ b/site/public/v1/smartphones/p20-global-dual-sim-td-lte-eml-l29-eml-l29c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": 24.5, + "camera": 5.0, + "battery": 6.0, + "display": 48.0, + "value": null +} diff --git a/site/public/v1/smartphones/p20-global-td-lte-eml-l09-eml-l09c/index.json b/site/public/v1/smartphones/p20-global-td-lte-eml-l09-eml-l09c/index.json new file mode 100644 index 00000000000..a542eb131c2 --- /dev/null +++ b/site/public/v1/smartphones/p20-global-td-lte-eml-l09-eml-l09c/index.json @@ -0,0 +1,76 @@ +{ + "id": 924, + "slug": "p20-global-td-lte-eml-l09-eml-l09c", + "name": "P20 Global TD-LTE EML-L09 / EML-L09C", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.79, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 430 + }, + "cameras": [ + { + "type": "main", + "mp": 11.7 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": 24.5, + "camera": 5.0, + "battery": 6.0, + "display": 48.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.234932", + "updated_at": "2026-06-19T00:43:44.234932" +} diff --git a/site/public/v1/smartphones/p20-global-td-lte-eml-l09-eml-l09c/score/index.json b/site/public/v1/smartphones/p20-global-td-lte-eml-l09-eml-l09c/score/index.json new file mode 100644 index 00000000000..62c707857c6 --- /dev/null +++ b/site/public/v1/smartphones/p20-global-td-lte-eml-l09-eml-l09c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": 24.5, + "camera": 5.0, + "battery": 6.0, + "display": 48.0, + "value": null +} diff --git a/site/public/v1/smartphones/p20-lite-2019-dual-sim-td-lte-emea-64gb-glk-lx1u/index.json b/site/public/v1/smartphones/p20-lite-2019-dual-sim-td-lte-emea-64gb-glk-lx1u/index.json new file mode 100644 index 00000000000..40a35df7bac --- /dev/null +++ b/site/public/v1/smartphones/p20-lite-2019-dual-sim-td-lte-emea-64gb-glk-lx1u/index.json @@ -0,0 +1,76 @@ +{ + "id": 1069, + "slug": "p20-lite-2019-dual-sim-td-lte-emea-64gb-glk-lx1u", + "name": "P20 Lite 2019 Dual SIM TD-LTE EMEA 64GB GLK-LX1U", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 0.0, + "camera": 8.8, + "battery": 15.0, + "display": 44.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.258097", + "updated_at": "2026-06-19T00:43:44.258097" +} diff --git a/site/public/v1/smartphones/p20-lite-2019-dual-sim-td-lte-emea-64gb-glk-lx1u/score/index.json b/site/public/v1/smartphones/p20-lite-2019-dual-sim-td-lte-emea-64gb-glk-lx1u/score/index.json new file mode 100644 index 00000000000..d910abe7d89 --- /dev/null +++ b/site/public/v1/smartphones/p20-lite-2019-dual-sim-td-lte-emea-64gb-glk-lx1u/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 0.0, + "camera": 8.8, + "battery": 15.0, + "display": 44.9, + "value": null +} diff --git a/site/public/v1/smartphones/p20-lite-dual-sim-lte-a-am-ane-lx3-ane-l23/index.json b/site/public/v1/smartphones/p20-lite-dual-sim-lte-a-am-ane-lx3-ane-l23/index.json new file mode 100644 index 00000000000..06c8472d18c --- /dev/null +++ b/site/public/v1/smartphones/p20-lite-dual-sim-lte-a-am-ane-lx3-ane-l23/index.json @@ -0,0 +1,76 @@ +{ + "id": 925, + "slug": "p20-lite-dual-sim-lte-a-am-ane-lx3-ane-l23", + "name": "P20 Lite Dual SIM LTE-A AM ANE-LX3 / ANE-L23", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 25, + "slug": "kirin-659", + "name": "Kirin 659", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 16.0, + "gpu_name": "Mali-T830 MP2", + "url": "/v1/socs/kirin-659" + }, + "release_date": "2018-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.234932", + "updated_at": "2026-06-19T00:43:44.234932" +} diff --git a/site/public/v1/smartphones/p20-lite-dual-sim-lte-a-am-ane-lx3-ane-l23/score/index.json b/site/public/v1/smartphones/p20-lite-dual-sim-lte-a-am-ane-lx3-ane-l23/score/index.json new file mode 100644 index 00000000000..107f749604e --- /dev/null +++ b/site/public/v1/smartphones/p20-lite-dual-sim-lte-a-am-ane-lx3-ane-l23/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/p20-lite-dual-sim-lte-a-emea-ane-lx1-nova-3e-ane-l21/index.json b/site/public/v1/smartphones/p20-lite-dual-sim-lte-a-emea-ane-lx1-nova-3e-ane-l21/index.json new file mode 100644 index 00000000000..2a7f496fbb6 --- /dev/null +++ b/site/public/v1/smartphones/p20-lite-dual-sim-lte-a-emea-ane-lx1-nova-3e-ane-l21/index.json @@ -0,0 +1,76 @@ +{ + "id": 926, + "slug": "p20-lite-dual-sim-lte-a-emea-ane-lx1-nova-3e-ane-l21", + "name": "P20 Lite Dual SIM LTE-A EMEA ANE-LX1 / Nova 3e ANE-L21", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 25, + "slug": "kirin-659", + "name": "Kirin 659", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 16.0, + "gpu_name": "Mali-T830 MP2", + "url": "/v1/socs/kirin-659" + }, + "release_date": "2018-03-28", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.234932", + "updated_at": "2026-06-19T00:43:44.234932" +} diff --git a/site/public/v1/smartphones/p20-lite-dual-sim-lte-a-emea-ane-lx1-nova-3e-ane-l21/score/index.json b/site/public/v1/smartphones/p20-lite-dual-sim-lte-a-emea-ane-lx1-nova-3e-ane-l21/score/index.json new file mode 100644 index 00000000000..107f749604e --- /dev/null +++ b/site/public/v1/smartphones/p20-lite-dual-sim-lte-a-emea-ane-lx1-nova-3e-ane-l21/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/p20-lite-lte-a-emea-ane-l01/index.json b/site/public/v1/smartphones/p20-lite-lte-a-emea-ane-l01/index.json new file mode 100644 index 00000000000..bf423e8ac4d --- /dev/null +++ b/site/public/v1/smartphones/p20-lite-lte-a-emea-ane-l01/index.json @@ -0,0 +1,76 @@ +{ + "id": 927, + "slug": "p20-lite-lte-a-emea-ane-l01", + "name": "P20 Lite LTE-A EMEA ANE-L01", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 25, + "slug": "kirin-659", + "name": "Kirin 659", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 16.0, + "gpu_name": "Mali-T830 MP2", + "url": "/v1/socs/kirin-659" + }, + "release_date": "2018-03-28", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.234932", + "updated_at": "2026-06-19T00:43:44.234932" +} diff --git a/site/public/v1/smartphones/p20-lite-lte-a-emea-ane-l01/score/index.json b/site/public/v1/smartphones/p20-lite-lte-a-emea-ane-l01/score/index.json new file mode 100644 index 00000000000..107f749604e --- /dev/null +++ b/site/public/v1/smartphones/p20-lite-lte-a-emea-ane-l01/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/p20-lite-wimax-2-hwv32/index.json b/site/public/v1/smartphones/p20-lite-wimax-2-hwv32/index.json new file mode 100644 index 00000000000..094a2fd7a42 --- /dev/null +++ b/site/public/v1/smartphones/p20-lite-wimax-2-hwv32/index.json @@ -0,0 +1,76 @@ +{ + "id": 928, + "slug": "p20-lite-wimax-2-hwv32", + "name": "P20 Lite WiMAX 2+ HWV32", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 25, + "slug": "kirin-659", + "name": "Kirin 659", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 16.0, + "gpu_name": "Mali-T830 MP2", + "url": "/v1/socs/kirin-659" + }, + "release_date": "2018-06-16", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.234932", + "updated_at": "2026-06-19T00:43:44.234932" +} diff --git a/site/public/v1/smartphones/p20-lite-wimax-2-hwv32/score/index.json b/site/public/v1/smartphones/p20-lite-wimax-2-hwv32/score/index.json new file mode 100644 index 00000000000..107f749604e --- /dev/null +++ b/site/public/v1/smartphones/p20-lite-wimax-2-hwv32/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/p20-pro-dual-sim-td-lte-clt-al00-128gb/index.json b/site/public/v1/smartphones/p20-pro-dual-sim-td-lte-clt-al00-128gb/index.json new file mode 100644 index 00000000000..20e81c74c79 --- /dev/null +++ b/site/public/v1/smartphones/p20-pro-dual-sim-td-lte-clt-al00-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 929, + "slug": "p20-pro-dual-sim-td-lte-clt-al00-128gb", + "name": "P20 Pro Dual SIM TD-LTE CLT-AL00 128GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-04-13", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2240", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 26.0, + "camera": 13.9, + "battery": 15.0, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.234932", + "updated_at": "2026-06-19T00:43:44.234932" +} diff --git a/site/public/v1/smartphones/p20-pro-dual-sim-td-lte-clt-al00-128gb/score/index.json b/site/public/v1/smartphones/p20-pro-dual-sim-td-lte-clt-al00-128gb/score/index.json new file mode 100644 index 00000000000..8b06c988d48 --- /dev/null +++ b/site/public/v1/smartphones/p20-pro-dual-sim-td-lte-clt-al00-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 26.0, + "camera": 13.9, + "battery": 15.0, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/p20-pro-dual-sim-td-lte-clt-al00-256gb/index.json b/site/public/v1/smartphones/p20-pro-dual-sim-td-lte-clt-al00-256gb/index.json new file mode 100644 index 00000000000..2ae6917539d --- /dev/null +++ b/site/public/v1/smartphones/p20-pro-dual-sim-td-lte-clt-al00-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 930, + "slug": "p20-pro-dual-sim-td-lte-clt-al00-256gb", + "name": "P20 Pro Dual SIM TD-LTE CLT-AL00 256GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-04-13", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2240", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 26.0, + "camera": 13.9, + "battery": 15.0, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.235932", + "updated_at": "2026-06-19T00:43:44.235932" +} diff --git a/site/public/v1/smartphones/p20-pro-dual-sim-td-lte-clt-al00-256gb/score/index.json b/site/public/v1/smartphones/p20-pro-dual-sim-td-lte-clt-al00-256gb/score/index.json new file mode 100644 index 00000000000..8b06c988d48 --- /dev/null +++ b/site/public/v1/smartphones/p20-pro-dual-sim-td-lte-clt-al00-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 26.0, + "camera": 13.9, + "battery": 15.0, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/p20-pro-dual-sim-td-lte-clt-al01-64gb/index.json b/site/public/v1/smartphones/p20-pro-dual-sim-td-lte-clt-al01-64gb/index.json new file mode 100644 index 00000000000..1f35995a32a --- /dev/null +++ b/site/public/v1/smartphones/p20-pro-dual-sim-td-lte-clt-al01-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 931, + "slug": "p20-pro-dual-sim-td-lte-clt-al01-64gb", + "name": "P20 Pro Dual SIM TD-LTE CLT-AL01 64GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-04-13", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2240", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 26.0, + "camera": 13.9, + "battery": 15.0, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.235932", + "updated_at": "2026-06-19T00:43:44.235932" +} diff --git a/site/public/v1/smartphones/p20-pro-dual-sim-td-lte-clt-al01-64gb/score/index.json b/site/public/v1/smartphones/p20-pro-dual-sim-td-lte-clt-al01-64gb/score/index.json new file mode 100644 index 00000000000..8b06c988d48 --- /dev/null +++ b/site/public/v1/smartphones/p20-pro-dual-sim-td-lte-clt-al01-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 26.0, + "camera": 13.9, + "battery": 15.0, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/p20-pro-dual-sim-td-lte-clt-tl01-64gb/index.json b/site/public/v1/smartphones/p20-pro-dual-sim-td-lte-clt-tl01-64gb/index.json new file mode 100644 index 00000000000..ee07c3c0a41 --- /dev/null +++ b/site/public/v1/smartphones/p20-pro-dual-sim-td-lte-clt-tl01-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 932, + "slug": "p20-pro-dual-sim-td-lte-clt-tl01-64gb", + "name": "P20 Pro Dual SIM TD-LTE CLT-TL01 64GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2240", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 26.0, + "camera": 13.9, + "battery": 15.0, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.235932", + "updated_at": "2026-06-19T00:43:44.235932" +} diff --git a/site/public/v1/smartphones/p20-pro-dual-sim-td-lte-clt-tl01-64gb/score/index.json b/site/public/v1/smartphones/p20-pro-dual-sim-td-lte-clt-tl01-64gb/score/index.json new file mode 100644 index 00000000000..8b06c988d48 --- /dev/null +++ b/site/public/v1/smartphones/p20-pro-dual-sim-td-lte-clt-tl01-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 26.0, + "camera": 13.9, + "battery": 15.0, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/p20-pro-global-dual-sim-td-lte-clt-l29-clt-l29c/index.json b/site/public/v1/smartphones/p20-pro-global-dual-sim-td-lte-clt-l29-clt-l29c/index.json new file mode 100644 index 00000000000..7fb79f7efac --- /dev/null +++ b/site/public/v1/smartphones/p20-pro-global-dual-sim-td-lte-clt-l29-clt-l29c/index.json @@ -0,0 +1,76 @@ +{ + "id": 933, + "slug": "p20-pro-global-dual-sim-td-lte-clt-l29-clt-l29c", + "name": "P20 Pro Global Dual SIM TD-LTE CLT-L29 / CLT-L29C", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-04-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2240", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 26.0, + "camera": 13.9, + "battery": 15.0, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.235932", + "updated_at": "2026-06-19T00:43:44.235932" +} diff --git a/site/public/v1/smartphones/p20-pro-global-dual-sim-td-lte-clt-l29-clt-l29c/score/index.json b/site/public/v1/smartphones/p20-pro-global-dual-sim-td-lte-clt-l29-clt-l29c/score/index.json new file mode 100644 index 00000000000..8b06c988d48 --- /dev/null +++ b/site/public/v1/smartphones/p20-pro-global-dual-sim-td-lte-clt-l29-clt-l29c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 26.0, + "camera": 13.9, + "battery": 15.0, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/p20-pro-global-td-lte-clt-l09-clt-l09c/index.json b/site/public/v1/smartphones/p20-pro-global-td-lte-clt-l09-clt-l09c/index.json new file mode 100644 index 00000000000..c61e92af2eb --- /dev/null +++ b/site/public/v1/smartphones/p20-pro-global-td-lte-clt-l09-clt-l09c/index.json @@ -0,0 +1,76 @@ +{ + "id": 934, + "slug": "p20-pro-global-td-lte-clt-l09-clt-l09c", + "name": "P20 Pro Global TD-LTE CLT-L09 / CLT-L09C", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2240", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 26.0, + "camera": 13.9, + "battery": 15.0, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.235932", + "updated_at": "2026-06-19T00:43:44.235932" +} diff --git a/site/public/v1/smartphones/p20-pro-global-td-lte-clt-l09-clt-l09c/score/index.json b/site/public/v1/smartphones/p20-pro-global-td-lte-clt-l09-clt-l09c/score/index.json new file mode 100644 index 00000000000..8b06c988d48 --- /dev/null +++ b/site/public/v1/smartphones/p20-pro-global-td-lte-clt-l09-clt-l09c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 26.0, + "camera": 13.9, + "battery": 15.0, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/p20-pro-td-lte-jp-hw-01k-clt-l0j-clt-l01j/index.json b/site/public/v1/smartphones/p20-pro-td-lte-jp-hw-01k-clt-l0j-clt-l01j/index.json new file mode 100644 index 00000000000..a02ff00d5c6 --- /dev/null +++ b/site/public/v1/smartphones/p20-pro-td-lte-jp-hw-01k-clt-l0j-clt-l01j/index.json @@ -0,0 +1,76 @@ +{ + "id": 935, + "slug": "p20-pro-td-lte-jp-hw-01k-clt-l0j-clt-l01j", + "name": "P20 Pro TD-LTE JP HW-01K CLT-L0J / CLT-L01J", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-06-13", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2240", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 26.0, + "camera": 13.9, + "battery": 15.0, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.235932", + "updated_at": "2026-06-19T00:43:44.235932" +} diff --git a/site/public/v1/smartphones/p20-pro-td-lte-jp-hw-01k-clt-l0j-clt-l01j/score/index.json b/site/public/v1/smartphones/p20-pro-td-lte-jp-hw-01k-clt-l0j-clt-l01j/score/index.json new file mode 100644 index 00000000000..8b06c988d48 --- /dev/null +++ b/site/public/v1/smartphones/p20-pro-td-lte-jp-hw-01k-clt-l0j-clt-l01j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 26.0, + "camera": 13.9, + "battery": 15.0, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/p20-pro-td-lte-na-clt-l04-clt-l04c/index.json b/site/public/v1/smartphones/p20-pro-td-lte-na-clt-l04-clt-l04c/index.json new file mode 100644 index 00000000000..857dd9846c5 --- /dev/null +++ b/site/public/v1/smartphones/p20-pro-td-lte-na-clt-l04-clt-l04c/index.json @@ -0,0 +1,76 @@ +{ + "id": 936, + "slug": "p20-pro-td-lte-na-clt-l04-clt-l04c", + "name": "P20 Pro TD-LTE NA CLT-L04 / CLT-L04C", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2240", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 26.0, + "camera": 13.9, + "battery": 15.0, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.235932", + "updated_at": "2026-06-19T00:43:44.235932" +} diff --git a/site/public/v1/smartphones/p20-pro-td-lte-na-clt-l04-clt-l04c/score/index.json b/site/public/v1/smartphones/p20-pro-td-lte-na-clt-l04-clt-l04c/score/index.json new file mode 100644 index 00000000000..8b06c988d48 --- /dev/null +++ b/site/public/v1/smartphones/p20-pro-td-lte-na-clt-l04-clt-l04c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 26.0, + "camera": 13.9, + "battery": 15.0, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/p20-standard-edition-dual-sim-td-lte-cn-eml-al00/index.json b/site/public/v1/smartphones/p20-standard-edition-dual-sim-td-lte-cn-eml-al00/index.json new file mode 100644 index 00000000000..c8d0baacb75 --- /dev/null +++ b/site/public/v1/smartphones/p20-standard-edition-dual-sim-td-lte-cn-eml-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 937, + "slug": "p20-standard-edition-dual-sim-td-lte-cn-eml-al00", + "name": "P20 Standard Edition Dual SIM TD-LTE CN EML-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-04-12", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.79, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 430 + }, + "cameras": [ + { + "type": "main", + "mp": 11.7 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 26.0, + "camera": 5.0, + "battery": 6.0, + "display": 48.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.235932", + "updated_at": "2026-06-19T00:43:44.235932" +} diff --git a/site/public/v1/smartphones/p20-standard-edition-dual-sim-td-lte-cn-eml-al00/score/index.json b/site/public/v1/smartphones/p20-standard-edition-dual-sim-td-lte-cn-eml-al00/score/index.json new file mode 100644 index 00000000000..4ddbd09974f --- /dev/null +++ b/site/public/v1/smartphones/p20-standard-edition-dual-sim-td-lte-cn-eml-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 26.0, + "camera": 5.0, + "battery": 6.0, + "display": 48.0, + "value": null +} diff --git a/site/public/v1/smartphones/p20-standard-edition-dual-sim-td-lte-cn-eml-tl00/index.json b/site/public/v1/smartphones/p20-standard-edition-dual-sim-td-lte-cn-eml-tl00/index.json new file mode 100644 index 00000000000..4a2ffc86cf0 --- /dev/null +++ b/site/public/v1/smartphones/p20-standard-edition-dual-sim-td-lte-cn-eml-tl00/index.json @@ -0,0 +1,76 @@ +{ + "id": 938, + "slug": "p20-standard-edition-dual-sim-td-lte-cn-eml-tl00", + "name": "P20 Standard Edition Dual SIM TD-LTE CN EML-TL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 26, + "slug": "kirin-970", + "name": "Kirin 970", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP12", + "url": "/v1/socs/kirin-970" + }, + "release_date": "2018-04-12", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.79, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 430 + }, + "cameras": [ + { + "type": "main", + "mp": 11.7 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 26.0, + "camera": 5.0, + "battery": 6.0, + "display": 48.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.236932", + "updated_at": "2026-06-19T00:43:44.236932" +} diff --git a/site/public/v1/smartphones/p20-standard-edition-dual-sim-td-lte-cn-eml-tl00/score/index.json b/site/public/v1/smartphones/p20-standard-edition-dual-sim-td-lte-cn-eml-tl00/score/index.json new file mode 100644 index 00000000000..4ddbd09974f --- /dev/null +++ b/site/public/v1/smartphones/p20-standard-edition-dual-sim-td-lte-cn-eml-tl00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 26.0, + "camera": 5.0, + "battery": 6.0, + "display": 48.0, + "value": null +} diff --git a/site/public/v1/smartphones/p30-global-td-lte-ele-l09-128gb/index.json b/site/public/v1/smartphones/p30-global-td-lte-ele-l09-128gb/index.json new file mode 100644 index 00000000000..2c905905f69 --- /dev/null +++ b/site/public/v1/smartphones/p30-global-td-lte-ele-l09-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1070, + "slug": "p30-global-td-lte-ele-l09-128gb", + "name": "P30 Global TD-LTE ELE-L09 128GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-04-03", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3650, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.7, + "performance": 54.5, + "camera": 13.9, + "battery": 11.1, + "display": 47.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.258097", + "updated_at": "2026-06-19T00:43:44.258097" +} diff --git a/site/public/v1/smartphones/p30-global-td-lte-ele-l09-128gb/score/index.json b/site/public/v1/smartphones/p30-global-td-lte-ele-l09-128gb/score/index.json new file mode 100644 index 00000000000..25ddb0ae5cc --- /dev/null +++ b/site/public/v1/smartphones/p30-global-td-lte-ele-l09-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.7, + "performance": 54.5, + "camera": 13.9, + "battery": 11.1, + "display": 47.2, + "value": null +} diff --git a/site/public/v1/smartphones/p30-lite-dual-sim-lte-a-am-128gb-mar-lx3-mar-lx3a-mar-l23-mar-l23a/index.json b/site/public/v1/smartphones/p30-lite-dual-sim-lte-a-am-128gb-mar-lx3-mar-lx3a-mar-l23-mar-l23a/index.json new file mode 100644 index 00000000000..7b71880f952 --- /dev/null +++ b/site/public/v1/smartphones/p30-lite-dual-sim-lte-a-am-128gb-mar-lx3-mar-lx3a-mar-l23-mar-l23a/index.json @@ -0,0 +1,76 @@ +{ + "id": 1071, + "slug": "p30-lite-dual-sim-lte-a-am-128gb-mar-lx3-mar-lx3a-mar-l23-mar-l23a", + "name": "P30 Lite Dual SIM LTE-A AM 128GB MAR-LX3 / MAR-LX3A / MAR-L23 / MAR-L23A", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.15, + "resolution": "1080x2312", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3340, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 0.0, + "camera": 8.8, + "battery": 5.7, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.258097", + "updated_at": "2026-06-19T00:43:44.258097" +} diff --git a/site/public/v1/smartphones/p30-lite-dual-sim-lte-a-am-128gb-mar-lx3-mar-lx3a-mar-l23-mar-l23a/score/index.json b/site/public/v1/smartphones/p30-lite-dual-sim-lte-a-am-128gb-mar-lx3-mar-lx3a-mar-l23-mar-l23a/score/index.json new file mode 100644 index 00000000000..81da392bd3a --- /dev/null +++ b/site/public/v1/smartphones/p30-lite-dual-sim-lte-a-am-128gb-mar-lx3-mar-lx3a-mar-l23-mar-l23a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 0.0, + "camera": 8.8, + "battery": 5.7, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/p30-lite-dual-sim-td-lte-emea-128gb-mar-lx1-mar-lx1m-mar-l21-mar-l21m/index.json b/site/public/v1/smartphones/p30-lite-dual-sim-td-lte-emea-128gb-mar-lx1-mar-lx1m-mar-l21-mar-l21m/index.json new file mode 100644 index 00000000000..0b1466e317f --- /dev/null +++ b/site/public/v1/smartphones/p30-lite-dual-sim-td-lte-emea-128gb-mar-lx1-mar-lx1m-mar-l21-mar-l21m/index.json @@ -0,0 +1,76 @@ +{ + "id": 1072, + "slug": "p30-lite-dual-sim-td-lte-emea-128gb-mar-lx1-mar-lx1m-mar-l21-mar-l21m", + "name": "P30 Lite Dual SIM TD-LTE EMEA 128GB MAR-LX1 / MAR-LX1M / MAR-L21 / MAR-L21M", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.15, + "resolution": "1080x2312", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3340, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 0.0, + "camera": 8.8, + "battery": 5.7, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.258097", + "updated_at": "2026-06-19T00:43:44.258097" +} diff --git a/site/public/v1/smartphones/p30-lite-dual-sim-td-lte-emea-128gb-mar-lx1-mar-lx1m-mar-l21-mar-l21m/score/index.json b/site/public/v1/smartphones/p30-lite-dual-sim-td-lte-emea-128gb-mar-lx1-mar-lx1m-mar-l21-mar-l21m/score/index.json new file mode 100644 index 00000000000..81da392bd3a --- /dev/null +++ b/site/public/v1/smartphones/p30-lite-dual-sim-td-lte-emea-128gb-mar-lx1-mar-lx1m-mar-l21-mar-l21m/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 0.0, + "camera": 8.8, + "battery": 5.7, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/p30-lite-dual-sim-td-lte-emea-128gb-mar-lx1a-mar-lx21a/index.json b/site/public/v1/smartphones/p30-lite-dual-sim-td-lte-emea-128gb-mar-lx1a-mar-lx21a/index.json new file mode 100644 index 00000000000..f7036d7ef0c --- /dev/null +++ b/site/public/v1/smartphones/p30-lite-dual-sim-td-lte-emea-128gb-mar-lx1a-mar-lx21a/index.json @@ -0,0 +1,76 @@ +{ + "id": 1073, + "slug": "p30-lite-dual-sim-td-lte-emea-128gb-mar-lx1a-mar-lx21a", + "name": "P30 Lite Dual SIM TD-LTE EMEA 128GB MAR-LX1A / MAR-LX21A", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.15, + "resolution": "1080x2312", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3340, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 0.0, + "camera": 16.5, + "battery": 5.7, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.258097", + "updated_at": "2026-06-19T00:43:44.258097" +} diff --git a/site/public/v1/smartphones/p30-lite-dual-sim-td-lte-emea-128gb-mar-lx1a-mar-lx21a/score/index.json b/site/public/v1/smartphones/p30-lite-dual-sim-td-lte-emea-128gb-mar-lx1a-mar-lx21a/score/index.json new file mode 100644 index 00000000000..d2a03c19e8e --- /dev/null +++ b/site/public/v1/smartphones/p30-lite-dual-sim-td-lte-emea-128gb-mar-lx1a-mar-lx21a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 0.0, + "camera": 16.5, + "battery": 5.7, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/p30-lite-dual-sim-td-lte-jp-64gb-mar-lx2j/index.json b/site/public/v1/smartphones/p30-lite-dual-sim-td-lte-jp-64gb-mar-lx2j/index.json new file mode 100644 index 00000000000..3169581861d --- /dev/null +++ b/site/public/v1/smartphones/p30-lite-dual-sim-td-lte-jp-64gb-mar-lx2j/index.json @@ -0,0 +1,76 @@ +{ + "id": 1074, + "slug": "p30-lite-dual-sim-td-lte-jp-64gb-mar-lx2j", + "name": "P30 Lite Dual SIM TD-LTE JP 64GB MAR-LX2J", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-08-09", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.15, + "resolution": "1080x2312", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3340, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 0.0, + "camera": 8.8, + "battery": 5.7, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.258097", + "updated_at": "2026-06-19T00:43:44.258097" +} diff --git a/site/public/v1/smartphones/p30-lite-dual-sim-td-lte-jp-64gb-mar-lx2j/score/index.json b/site/public/v1/smartphones/p30-lite-dual-sim-td-lte-jp-64gb-mar-lx2j/score/index.json new file mode 100644 index 00000000000..81da392bd3a --- /dev/null +++ b/site/public/v1/smartphones/p30-lite-dual-sim-td-lte-jp-64gb-mar-lx2j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 0.0, + "camera": 8.8, + "battery": 5.7, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/p30-lite-new-edition-dual-sim-td-lte-emea-256gb-mar-l21bx/index.json b/site/public/v1/smartphones/p30-lite-new-edition-dual-sim-td-lte-emea-256gb-mar-l21bx/index.json new file mode 100644 index 00000000000..907550148fa --- /dev/null +++ b/site/public/v1/smartphones/p30-lite-new-edition-dual-sim-td-lte-emea-256gb-mar-l21bx/index.json @@ -0,0 +1,76 @@ +{ + "id": 1208, + "slug": "p30-lite-new-edition-dual-sim-td-lte-emea-256gb-mar-l21bx", + "name": "P30 Lite New Edition Dual SIM TD-LTE EMEA 256GB MAR-L21BX", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2020-01-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.15, + "resolution": "1080x2312", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3340, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 1.5, + "camera": 16.5, + "battery": 5.7, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.275606", + "updated_at": "2026-06-19T00:43:44.275606" +} diff --git a/site/public/v1/smartphones/p30-lite-new-edition-dual-sim-td-lte-emea-256gb-mar-l21bx/score/index.json b/site/public/v1/smartphones/p30-lite-new-edition-dual-sim-td-lte-emea-256gb-mar-l21bx/score/index.json new file mode 100644 index 00000000000..c2443ce5f2a --- /dev/null +++ b/site/public/v1/smartphones/p30-lite-new-edition-dual-sim-td-lte-emea-256gb-mar-l21bx/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 1.5, + "camera": 16.5, + "battery": 5.7, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/p30-lite-premium-dual-sim-wimax-2-128gb-hwv33/index.json b/site/public/v1/smartphones/p30-lite-premium-dual-sim-wimax-2-128gb-hwv33/index.json new file mode 100644 index 00000000000..2c7b33c930c --- /dev/null +++ b/site/public/v1/smartphones/p30-lite-premium-dual-sim-wimax-2-128gb-hwv33/index.json @@ -0,0 +1,76 @@ +{ + "id": 1075, + "slug": "p30-lite-premium-dual-sim-wimax-2-128gb-hwv33", + "name": "P30 Lite Premium Dual SIM WiMAX 2+ 128GB HWV33", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-08-09", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.15, + "resolution": "1080x2312", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3340, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 0.0, + "camera": 8.8, + "battery": 5.7, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.258097", + "updated_at": "2026-06-19T00:43:44.258097" +} diff --git a/site/public/v1/smartphones/p30-lite-premium-dual-sim-wimax-2-128gb-hwv33/score/index.json b/site/public/v1/smartphones/p30-lite-premium-dual-sim-wimax-2-128gb-hwv33/score/index.json new file mode 100644 index 00000000000..81da392bd3a --- /dev/null +++ b/site/public/v1/smartphones/p30-lite-premium-dual-sim-wimax-2-128gb-hwv33/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 0.0, + "camera": 8.8, + "battery": 5.7, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/p30-lite-td-lte-emea-128gb-mar-l01-mar-l01m/index.json b/site/public/v1/smartphones/p30-lite-td-lte-emea-128gb-mar-l01-mar-l01m/index.json new file mode 100644 index 00000000000..fd395811e00 --- /dev/null +++ b/site/public/v1/smartphones/p30-lite-td-lte-emea-128gb-mar-l01-mar-l01m/index.json @@ -0,0 +1,76 @@ +{ + "id": 1076, + "slug": "p30-lite-td-lte-emea-128gb-mar-l01-mar-l01m", + "name": "P30 Lite TD-LTE EMEA 128GB MAR-L01 / MAR-L01M", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-05-01", + "msrp_usd": 222, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.15, + "resolution": "1080x2312", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3340, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 0.0, + "camera": 8.8, + "battery": 5.7, + "display": 46.5, + "value": 57.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.259096", + "updated_at": "2026-06-19T00:43:44.259096" +} diff --git a/site/public/v1/smartphones/p30-lite-td-lte-emea-128gb-mar-l01-mar-l01m/score/index.json b/site/public/v1/smartphones/p30-lite-td-lte-emea-128gb-mar-l01-mar-l01m/score/index.json new file mode 100644 index 00000000000..1e2bd7f4cd6 --- /dev/null +++ b/site/public/v1/smartphones/p30-lite-td-lte-emea-128gb-mar-l01-mar-l01m/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 0.0, + "camera": 8.8, + "battery": 5.7, + "display": 46.5, + "value": 57.6 +} diff --git a/site/public/v1/smartphones/p30-lite-td-lte-emea-128gb-mar-l01a/index.json b/site/public/v1/smartphones/p30-lite-td-lte-emea-128gb-mar-l01a/index.json new file mode 100644 index 00000000000..b62e90e5876 --- /dev/null +++ b/site/public/v1/smartphones/p30-lite-td-lte-emea-128gb-mar-l01a/index.json @@ -0,0 +1,76 @@ +{ + "id": 1077, + "slug": "p30-lite-td-lte-emea-128gb-mar-l01a", + "name": "P30 Lite TD-LTE EMEA 128GB MAR-L01A", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.15, + "resolution": "1080x2312", + "type": "Color IPS TFT LCD display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3340, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 0.0, + "camera": 16.5, + "battery": 5.7, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.259096", + "updated_at": "2026-06-19T00:43:44.259096" +} diff --git a/site/public/v1/smartphones/p30-lite-td-lte-emea-128gb-mar-l01a/score/index.json b/site/public/v1/smartphones/p30-lite-td-lte-emea-128gb-mar-l01a/score/index.json new file mode 100644 index 00000000000..d2a03c19e8e --- /dev/null +++ b/site/public/v1/smartphones/p30-lite-td-lte-emea-128gb-mar-l01a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 0.0, + "camera": 16.5, + "battery": 5.7, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/p30-note-premium-edition-dual-sim-td-lte-cn-xt1942-1-64gb/index.json b/site/public/v1/smartphones/p30-note-premium-edition-dual-sim-td-lte-cn-xt1942-1-64gb/index.json new file mode 100644 index 00000000000..cc2b2e09c24 --- /dev/null +++ b/site/public/v1/smartphones/p30-note-premium-edition-dual-sim-td-lte-cn-xt1942-1-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1999, + "slug": "p30-note-premium-edition-dual-sim-td-lte-cn-xt1942-1-64gb", + "name": "P30 Note Premium Edition Dual SIM TD-LTE CN XT1942-1 64GB", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 1.5, + "camera": 6.3, + "battery": 30.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.400874", + "updated_at": "2026-06-19T00:43:44.400874" +} diff --git a/site/public/v1/smartphones/p30-note-premium-edition-dual-sim-td-lte-cn-xt1942-1-64gb/score/index.json b/site/public/v1/smartphones/p30-note-premium-edition-dual-sim-td-lte-cn-xt1942-1-64gb/score/index.json new file mode 100644 index 00000000000..0853968c3b7 --- /dev/null +++ b/site/public/v1/smartphones/p30-note-premium-edition-dual-sim-td-lte-cn-xt1942-1-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 1.5, + "camera": 6.3, + "battery": 30.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/p30-note-standard-edition-dual-sim-td-lte-cn-xt1942-1-64gb/index.json b/site/public/v1/smartphones/p30-note-standard-edition-dual-sim-td-lte-cn-xt1942-1-64gb/index.json new file mode 100644 index 00000000000..b327edaafa0 --- /dev/null +++ b/site/public/v1/smartphones/p30-note-standard-edition-dual-sim-td-lte-cn-xt1942-1-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2000, + "slug": "p30-note-standard-edition-dual-sim-td-lte-cn-xt1942-1-64gb", + "name": "P30 Note Standard Edition Dual SIM TD-LTE CN XT1942-1 64GB", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.401875", + "updated_at": "2026-06-19T00:43:44.401875" +} diff --git a/site/public/v1/smartphones/p30-note-standard-edition-dual-sim-td-lte-cn-xt1942-1-64gb/score/index.json b/site/public/v1/smartphones/p30-note-standard-edition-dual-sim-td-lte-cn-xt1942-1-64gb/score/index.json new file mode 100644 index 00000000000..e545704978f --- /dev/null +++ b/site/public/v1/smartphones/p30-note-standard-edition-dual-sim-td-lte-cn-xt1942-1-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/p30-play-dual-sim-td-lte-cn-64gb-xt1941-2/index.json b/site/public/v1/smartphones/p30-play-dual-sim-td-lte-cn-64gb-xt1941-2/index.json new file mode 100644 index 00000000000..f7d7123f81b --- /dev/null +++ b/site/public/v1/smartphones/p30-play-dual-sim-td-lte-cn-64gb-xt1941-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 2001, + "slug": "p30-play-dual-sim-td-lte-cn-64gb-xt1941-2", + "name": "P30 Play Dual SIM TD-LTE CN 64GB XT1941-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 114, + "slug": "snapdragon-625", + "name": "Snapdragon 625", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-625" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.88, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 286 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.401875", + "updated_at": "2026-06-19T00:43:44.401875" +} diff --git a/site/public/v1/smartphones/p30-play-dual-sim-td-lte-cn-64gb-xt1941-2/score/index.json b/site/public/v1/smartphones/p30-play-dual-sim-td-lte-cn-64gb-xt1941-2/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/p30-play-dual-sim-td-lte-cn-64gb-xt1941-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/p30-premium-edition-dual-sim-td-lte-cn-128gb-ele-al00/index.json b/site/public/v1/smartphones/p30-premium-edition-dual-sim-td-lte-cn-128gb-ele-al00/index.json new file mode 100644 index 00000000000..5a527649cb1 --- /dev/null +++ b/site/public/v1/smartphones/p30-premium-edition-dual-sim-td-lte-cn-128gb-ele-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1078, + "slug": "p30-premium-edition-dual-sim-td-lte-cn-128gb-ele-al00", + "name": "P30 Premium Edition Dual SIM TD-LTE CN 128GB ELE-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-04-02", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3650, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.0, + "performance": 56.0, + "camera": 13.9, + "battery": 11.1, + "display": 47.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.259096", + "updated_at": "2026-06-19T00:43:44.259096" +} diff --git a/site/public/v1/smartphones/p30-premium-edition-dual-sim-td-lte-cn-128gb-ele-al00/score/index.json b/site/public/v1/smartphones/p30-premium-edition-dual-sim-td-lte-cn-128gb-ele-al00/score/index.json new file mode 100644 index 00000000000..b2263538ed3 --- /dev/null +++ b/site/public/v1/smartphones/p30-premium-edition-dual-sim-td-lte-cn-128gb-ele-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.0, + "performance": 56.0, + "camera": 13.9, + "battery": 11.1, + "display": 47.2, + "value": null +} diff --git a/site/public/v1/smartphones/p30-premium-edition-dual-sim-td-lte-cn-128gb-ele-tl00/index.json b/site/public/v1/smartphones/p30-premium-edition-dual-sim-td-lte-cn-128gb-ele-tl00/index.json new file mode 100644 index 00000000000..da1ea4b8eb3 --- /dev/null +++ b/site/public/v1/smartphones/p30-premium-edition-dual-sim-td-lte-cn-128gb-ele-tl00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1079, + "slug": "p30-premium-edition-dual-sim-td-lte-cn-128gb-ele-tl00", + "name": "P30 Premium Edition Dual SIM TD-LTE CN 128GB ELE-TL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-04-02", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3650, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.0, + "performance": 56.0, + "camera": 13.9, + "battery": 11.1, + "display": 47.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.259096", + "updated_at": "2026-06-19T00:43:44.259096" +} diff --git a/site/public/v1/smartphones/p30-premium-edition-dual-sim-td-lte-cn-128gb-ele-tl00/score/index.json b/site/public/v1/smartphones/p30-premium-edition-dual-sim-td-lte-cn-128gb-ele-tl00/score/index.json new file mode 100644 index 00000000000..b2263538ed3 --- /dev/null +++ b/site/public/v1/smartphones/p30-premium-edition-dual-sim-td-lte-cn-128gb-ele-tl00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.0, + "performance": 56.0, + "camera": 13.9, + "battery": 11.1, + "display": 47.2, + "value": null +} diff --git a/site/public/v1/smartphones/p30-premium-edition-dual-sim-td-lte-cn-256gb-ele-al00-ele-al10/index.json b/site/public/v1/smartphones/p30-premium-edition-dual-sim-td-lte-cn-256gb-ele-al00-ele-al10/index.json new file mode 100644 index 00000000000..016af26e12b --- /dev/null +++ b/site/public/v1/smartphones/p30-premium-edition-dual-sim-td-lte-cn-256gb-ele-al00-ele-al10/index.json @@ -0,0 +1,76 @@ +{ + "id": 1080, + "slug": "p30-premium-edition-dual-sim-td-lte-cn-256gb-ele-al00-ele-al10", + "name": "P30 Premium Edition Dual SIM TD-LTE CN 256GB ELE-AL00 / ELE-AL10", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-04-02", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3650, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.0, + "performance": 56.0, + "camera": 13.9, + "battery": 11.1, + "display": 47.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.259096", + "updated_at": "2026-06-19T00:43:44.259096" +} diff --git a/site/public/v1/smartphones/p30-premium-edition-dual-sim-td-lte-cn-256gb-ele-al00-ele-al10/score/index.json b/site/public/v1/smartphones/p30-premium-edition-dual-sim-td-lte-cn-256gb-ele-al00-ele-al10/score/index.json new file mode 100644 index 00000000000..b2263538ed3 --- /dev/null +++ b/site/public/v1/smartphones/p30-premium-edition-dual-sim-td-lte-cn-256gb-ele-al00-ele-al10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.0, + "performance": 56.0, + "camera": 13.9, + "battery": 11.1, + "display": 47.2, + "value": null +} diff --git a/site/public/v1/smartphones/p30-premium-edition-dual-sim-td-lte-cn-64gb-ele-al00/index.json b/site/public/v1/smartphones/p30-premium-edition-dual-sim-td-lte-cn-64gb-ele-al00/index.json new file mode 100644 index 00000000000..b11b1bc520f --- /dev/null +++ b/site/public/v1/smartphones/p30-premium-edition-dual-sim-td-lte-cn-64gb-ele-al00/index.json @@ -0,0 +1,76 @@ +{ + "id": 1081, + "slug": "p30-premium-edition-dual-sim-td-lte-cn-64gb-ele-al00", + "name": "P30 Premium Edition Dual SIM TD-LTE CN 64GB ELE-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-04-02", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3650, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.0, + "performance": 56.0, + "camera": 13.9, + "battery": 11.1, + "display": 47.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.259096", + "updated_at": "2026-06-19T00:43:44.259096" +} diff --git a/site/public/v1/smartphones/p30-premium-edition-dual-sim-td-lte-cn-64gb-ele-al00/score/index.json b/site/public/v1/smartphones/p30-premium-edition-dual-sim-td-lte-cn-64gb-ele-al00/score/index.json new file mode 100644 index 00000000000..b2263538ed3 --- /dev/null +++ b/site/public/v1/smartphones/p30-premium-edition-dual-sim-td-lte-cn-64gb-ele-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.0, + "performance": 56.0, + "camera": 13.9, + "battery": 11.1, + "display": 47.2, + "value": null +} diff --git a/site/public/v1/smartphones/p30-premium-edition-global-dual-sim-td-lte-ele-l29-128gb/index.json b/site/public/v1/smartphones/p30-premium-edition-global-dual-sim-td-lte-ele-l29-128gb/index.json new file mode 100644 index 00000000000..efd0052f10d --- /dev/null +++ b/site/public/v1/smartphones/p30-premium-edition-global-dual-sim-td-lte-ele-l29-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1082, + "slug": "p30-premium-edition-global-dual-sim-td-lte-ele-l29-128gb", + "name": "P30 Premium Edition Global Dual SIM TD-LTE ELE-L29 128GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-04-02", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3650, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.0, + "performance": 56.0, + "camera": 13.9, + "battery": 11.1, + "display": 47.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.260096", + "updated_at": "2026-06-19T00:43:44.260096" +} diff --git a/site/public/v1/smartphones/p30-premium-edition-global-dual-sim-td-lte-ele-l29-128gb/score/index.json b/site/public/v1/smartphones/p30-premium-edition-global-dual-sim-td-lte-ele-l29-128gb/score/index.json new file mode 100644 index 00000000000..b2263538ed3 --- /dev/null +++ b/site/public/v1/smartphones/p30-premium-edition-global-dual-sim-td-lte-ele-l29-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.0, + "performance": 56.0, + "camera": 13.9, + "battery": 11.1, + "display": 47.2, + "value": null +} diff --git a/site/public/v1/smartphones/p30-pro-new-edition-2020-global-dual-sim-td-lte-vog-l29-256gb/index.json b/site/public/v1/smartphones/p30-pro-new-edition-2020-global-dual-sim-td-lte-vog-l29-256gb/index.json new file mode 100644 index 00000000000..eb4fa1ab944 --- /dev/null +++ b/site/public/v1/smartphones/p30-pro-new-edition-2020-global-dual-sim-td-lte-vog-l29-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1209, + "slug": "p30-pro-new-edition-2020-global-dual-sim-td-lte-vog-l29-256gb", + "name": "P30 Pro New Edition 2020 Global Dual SIM TD-LTE VOG-L29 256GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2020-06-03", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 34.4, + "performance": 56.0, + "camera": 13.9, + "battery": 22.8, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.276606", + "updated_at": "2026-06-19T00:43:44.276606" +} diff --git a/site/public/v1/smartphones/p30-pro-new-edition-2020-global-dual-sim-td-lte-vog-l29-256gb/score/index.json b/site/public/v1/smartphones/p30-pro-new-edition-2020-global-dual-sim-td-lte-vog-l29-256gb/score/index.json new file mode 100644 index 00000000000..da27bbac876 --- /dev/null +++ b/site/public/v1/smartphones/p30-pro-new-edition-2020-global-dual-sim-td-lte-vog-l29-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 34.4, + "performance": 56.0, + "camera": 13.9, + "battery": 22.8, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/p30-pro-premium-edition-dual-sim-td-lte-cn-512gb-vog-al00-vog-al10/index.json b/site/public/v1/smartphones/p30-pro-premium-edition-dual-sim-td-lte-cn-512gb-vog-al00-vog-al10/index.json new file mode 100644 index 00000000000..5a76a7b4f5d --- /dev/null +++ b/site/public/v1/smartphones/p30-pro-premium-edition-dual-sim-td-lte-cn-512gb-vog-al00-vog-al10/index.json @@ -0,0 +1,76 @@ +{ + "id": 1083, + "slug": "p30-pro-premium-edition-dual-sim-td-lte-cn-512gb-vog-al00-vog-al10", + "name": "P30 Pro Premium Edition Dual SIM TD-LTE CN 512GB VOG-AL00 / VOG-AL10", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 34.4, + "performance": 56.0, + "camera": 13.9, + "battery": 22.8, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.260096", + "updated_at": "2026-06-19T00:43:44.260096" +} diff --git a/site/public/v1/smartphones/p30-pro-premium-edition-dual-sim-td-lte-cn-512gb-vog-al00-vog-al10/score/index.json b/site/public/v1/smartphones/p30-pro-premium-edition-dual-sim-td-lte-cn-512gb-vog-al00-vog-al10/score/index.json new file mode 100644 index 00000000000..da27bbac876 --- /dev/null +++ b/site/public/v1/smartphones/p30-pro-premium-edition-dual-sim-td-lte-cn-512gb-vog-al00-vog-al10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 34.4, + "performance": 56.0, + "camera": 13.9, + "battery": 22.8, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/p30-pro-premium-edition-dual-sim-td-lte-cn-vog-al00-128gb/index.json b/site/public/v1/smartphones/p30-pro-premium-edition-dual-sim-td-lte-cn-vog-al00-128gb/index.json new file mode 100644 index 00000000000..6cead8ecd9d --- /dev/null +++ b/site/public/v1/smartphones/p30-pro-premium-edition-dual-sim-td-lte-cn-vog-al00-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1084, + "slug": "p30-pro-premium-edition-dual-sim-td-lte-cn-vog-al00-128gb", + "name": "P30 Pro Premium Edition Dual SIM TD-LTE CN VOG-AL00 128GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 34.4, + "performance": 56.0, + "camera": 13.9, + "battery": 22.8, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.260096", + "updated_at": "2026-06-19T00:43:44.260096" +} diff --git a/site/public/v1/smartphones/p30-pro-premium-edition-dual-sim-td-lte-cn-vog-al00-128gb/score/index.json b/site/public/v1/smartphones/p30-pro-premium-edition-dual-sim-td-lte-cn-vog-al00-128gb/score/index.json new file mode 100644 index 00000000000..da27bbac876 --- /dev/null +++ b/site/public/v1/smartphones/p30-pro-premium-edition-dual-sim-td-lte-cn-vog-al00-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 34.4, + "performance": 56.0, + "camera": 13.9, + "battery": 22.8, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/p30-pro-premium-edition-dual-sim-td-lte-cn-vog-al00-256gb/index.json b/site/public/v1/smartphones/p30-pro-premium-edition-dual-sim-td-lte-cn-vog-al00-256gb/index.json new file mode 100644 index 00000000000..1ea7a1432ba --- /dev/null +++ b/site/public/v1/smartphones/p30-pro-premium-edition-dual-sim-td-lte-cn-vog-al00-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1085, + "slug": "p30-pro-premium-edition-dual-sim-td-lte-cn-vog-al00-256gb", + "name": "P30 Pro Premium Edition Dual SIM TD-LTE CN VOG-AL00 256GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 34.4, + "performance": 56.0, + "camera": 13.9, + "battery": 22.8, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.260096", + "updated_at": "2026-06-19T00:43:44.260096" +} diff --git a/site/public/v1/smartphones/p30-pro-premium-edition-dual-sim-td-lte-cn-vog-al00-256gb/score/index.json b/site/public/v1/smartphones/p30-pro-premium-edition-dual-sim-td-lte-cn-vog-al00-256gb/score/index.json new file mode 100644 index 00000000000..da27bbac876 --- /dev/null +++ b/site/public/v1/smartphones/p30-pro-premium-edition-dual-sim-td-lte-cn-vog-al00-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 34.4, + "performance": 56.0, + "camera": 13.9, + "battery": 22.8, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/p30-pro-premium-edition-dual-sim-td-lte-cn-vog-tl00-128gb/index.json b/site/public/v1/smartphones/p30-pro-premium-edition-dual-sim-td-lte-cn-vog-tl00-128gb/index.json new file mode 100644 index 00000000000..97a0e5a1b48 --- /dev/null +++ b/site/public/v1/smartphones/p30-pro-premium-edition-dual-sim-td-lte-cn-vog-tl00-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1086, + "slug": "p30-pro-premium-edition-dual-sim-td-lte-cn-vog-tl00-128gb", + "name": "P30 Pro Premium Edition Dual SIM TD-LTE CN VOG-TL00 128GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 34.4, + "performance": 56.0, + "camera": 13.9, + "battery": 22.8, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.260096", + "updated_at": "2026-06-19T00:43:44.260096" +} diff --git a/site/public/v1/smartphones/p30-pro-premium-edition-dual-sim-td-lte-cn-vog-tl00-128gb/score/index.json b/site/public/v1/smartphones/p30-pro-premium-edition-dual-sim-td-lte-cn-vog-tl00-128gb/score/index.json new file mode 100644 index 00000000000..da27bbac876 --- /dev/null +++ b/site/public/v1/smartphones/p30-pro-premium-edition-dual-sim-td-lte-cn-vog-tl00-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 34.4, + "performance": 56.0, + "camera": 13.9, + "battery": 22.8, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/p30-pro-premium-edition-global-dual-sim-td-lte-vog-l29-128gb/index.json b/site/public/v1/smartphones/p30-pro-premium-edition-global-dual-sim-td-lte-vog-l29-128gb/index.json new file mode 100644 index 00000000000..81af7b44dc9 --- /dev/null +++ b/site/public/v1/smartphones/p30-pro-premium-edition-global-dual-sim-td-lte-vog-l29-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1087, + "slug": "p30-pro-premium-edition-global-dual-sim-td-lte-vog-l29-128gb", + "name": "P30 Pro Premium Edition Global Dual SIM TD-LTE VOG-L29 128GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-04-09", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 34.4, + "performance": 56.0, + "camera": 13.9, + "battery": 22.8, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.260096", + "updated_at": "2026-06-19T00:43:44.260096" +} diff --git a/site/public/v1/smartphones/p30-pro-premium-edition-global-dual-sim-td-lte-vog-l29-128gb/score/index.json b/site/public/v1/smartphones/p30-pro-premium-edition-global-dual-sim-td-lte-vog-l29-128gb/score/index.json new file mode 100644 index 00000000000..da27bbac876 --- /dev/null +++ b/site/public/v1/smartphones/p30-pro-premium-edition-global-dual-sim-td-lte-vog-l29-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 34.4, + "performance": 56.0, + "camera": 13.9, + "battery": 22.8, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/p30-pro-premium-edition-global-dual-sim-td-lte-vog-l29-256gb/index.json b/site/public/v1/smartphones/p30-pro-premium-edition-global-dual-sim-td-lte-vog-l29-256gb/index.json new file mode 100644 index 00000000000..0c07ec4481d --- /dev/null +++ b/site/public/v1/smartphones/p30-pro-premium-edition-global-dual-sim-td-lte-vog-l29-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1088, + "slug": "p30-pro-premium-edition-global-dual-sim-td-lte-vog-l29-256gb", + "name": "P30 Pro Premium Edition Global Dual SIM TD-LTE VOG-L29 256GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 34.4, + "performance": 56.0, + "camera": 13.9, + "battery": 22.8, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.260096", + "updated_at": "2026-06-19T00:43:44.260096" +} diff --git a/site/public/v1/smartphones/p30-pro-premium-edition-global-dual-sim-td-lte-vog-l29-256gb/score/index.json b/site/public/v1/smartphones/p30-pro-premium-edition-global-dual-sim-td-lte-vog-l29-256gb/score/index.json new file mode 100644 index 00000000000..da27bbac876 --- /dev/null +++ b/site/public/v1/smartphones/p30-pro-premium-edition-global-dual-sim-td-lte-vog-l29-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 34.4, + "performance": 56.0, + "camera": 13.9, + "battery": 22.8, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/p30-pro-premium-edition-global-td-lte-vog-l09-128gb/index.json b/site/public/v1/smartphones/p30-pro-premium-edition-global-td-lte-vog-l09-128gb/index.json new file mode 100644 index 00000000000..05a11b595f0 --- /dev/null +++ b/site/public/v1/smartphones/p30-pro-premium-edition-global-td-lte-vog-l09-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1089, + "slug": "p30-pro-premium-edition-global-td-lte-vog-l09-128gb", + "name": "P30 Pro Premium Edition Global TD-LTE VOG-L09 128GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 34.4, + "performance": 56.0, + "camera": 13.9, + "battery": 22.8, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.261096", + "updated_at": "2026-06-19T00:43:44.261096" +} diff --git a/site/public/v1/smartphones/p30-pro-premium-edition-global-td-lte-vog-l09-128gb/score/index.json b/site/public/v1/smartphones/p30-pro-premium-edition-global-td-lte-vog-l09-128gb/score/index.json new file mode 100644 index 00000000000..da27bbac876 --- /dev/null +++ b/site/public/v1/smartphones/p30-pro-premium-edition-global-td-lte-vog-l09-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 34.4, + "performance": 56.0, + "camera": 13.9, + "battery": 22.8, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/p30-pro-premium-edition-global-td-lte-vog-l09-256gb/index.json b/site/public/v1/smartphones/p30-pro-premium-edition-global-td-lte-vog-l09-256gb/index.json new file mode 100644 index 00000000000..e003bcb7f3f --- /dev/null +++ b/site/public/v1/smartphones/p30-pro-premium-edition-global-td-lte-vog-l09-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1090, + "slug": "p30-pro-premium-edition-global-td-lte-vog-l09-256gb", + "name": "P30 Pro Premium Edition Global TD-LTE VOG-L09 256GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 34.4, + "performance": 56.0, + "camera": 13.9, + "battery": 22.8, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.261096", + "updated_at": "2026-06-19T00:43:44.261096" +} diff --git a/site/public/v1/smartphones/p30-pro-premium-edition-global-td-lte-vog-l09-256gb/score/index.json b/site/public/v1/smartphones/p30-pro-premium-edition-global-td-lte-vog-l09-256gb/score/index.json new file mode 100644 index 00000000000..da27bbac876 --- /dev/null +++ b/site/public/v1/smartphones/p30-pro-premium-edition-global-td-lte-vog-l09-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 34.4, + "performance": 56.0, + "camera": 13.9, + "battery": 22.8, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/p30-pro-premium-edition-td-lte-na-vog-l04-256gb/index.json b/site/public/v1/smartphones/p30-pro-premium-edition-td-lte-na-vog-l04-256gb/index.json new file mode 100644 index 00000000000..c8520cb32e4 --- /dev/null +++ b/site/public/v1/smartphones/p30-pro-premium-edition-td-lte-na-vog-l04-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1091, + "slug": "p30-pro-premium-edition-td-lte-na-vog-l04-256gb", + "name": "P30 Pro Premium Edition TD-LTE NA VOG-L04 256GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 34.4, + "performance": 56.0, + "camera": 13.9, + "battery": 22.8, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.261096", + "updated_at": "2026-06-19T00:43:44.261096" +} diff --git a/site/public/v1/smartphones/p30-pro-premium-edition-td-lte-na-vog-l04-256gb/score/index.json b/site/public/v1/smartphones/p30-pro-premium-edition-td-lte-na-vog-l04-256gb/score/index.json new file mode 100644 index 00000000000..da27bbac876 --- /dev/null +++ b/site/public/v1/smartphones/p30-pro-premium-edition-td-lte-na-vog-l04-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 34.4, + "performance": 56.0, + "camera": 13.9, + "battery": 22.8, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/p30-pro-standard-edition-global-dual-sim-td-lte-vog-l29-128gb/index.json b/site/public/v1/smartphones/p30-pro-standard-edition-global-dual-sim-td-lte-vog-l29-128gb/index.json new file mode 100644 index 00000000000..e6225cc4019 --- /dev/null +++ b/site/public/v1/smartphones/p30-pro-standard-edition-global-dual-sim-td-lte-vog-l29-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1092, + "slug": "p30-pro-standard-edition-global-dual-sim-td-lte-vog-l29-128gb", + "name": "P30 Pro Standard Edition Global Dual SIM TD-LTE VOG-L29 128GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 34.0, + "performance": 54.5, + "camera": 13.9, + "battery": 22.8, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.261096", + "updated_at": "2026-06-19T00:43:44.261096" +} diff --git a/site/public/v1/smartphones/p30-pro-standard-edition-global-dual-sim-td-lte-vog-l29-128gb/score/index.json b/site/public/v1/smartphones/p30-pro-standard-edition-global-dual-sim-td-lte-vog-l29-128gb/score/index.json new file mode 100644 index 00000000000..6edc9c4e1bb --- /dev/null +++ b/site/public/v1/smartphones/p30-pro-standard-edition-global-dual-sim-td-lte-vog-l29-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 34.0, + "performance": 54.5, + "camera": 13.9, + "battery": 22.8, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/p30-pro-standard-edition-td-lte-na-vog-l04-128gb/index.json b/site/public/v1/smartphones/p30-pro-standard-edition-td-lte-na-vog-l04-128gb/index.json new file mode 100644 index 00000000000..91225684311 --- /dev/null +++ b/site/public/v1/smartphones/p30-pro-standard-edition-td-lte-na-vog-l04-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1093, + "slug": "p30-pro-standard-edition-td-lte-na-vog-l04-128gb", + "name": "P30 Pro Standard Edition TD-LTE NA VOG-L04 128GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 34.0, + "performance": 54.5, + "camera": 13.9, + "battery": 22.8, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.261096", + "updated_at": "2026-06-19T00:43:44.261096" +} diff --git a/site/public/v1/smartphones/p30-pro-standard-edition-td-lte-na-vog-l04-128gb/score/index.json b/site/public/v1/smartphones/p30-pro-standard-edition-td-lte-na-vog-l04-128gb/score/index.json new file mode 100644 index 00000000000..6edc9c4e1bb --- /dev/null +++ b/site/public/v1/smartphones/p30-pro-standard-edition-td-lte-na-vog-l04-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 34.0, + "performance": 54.5, + "camera": 13.9, + "battery": 22.8, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/p30-pro-td-lte-jp-128gb-hw-02l-vog-l0j-vog-l01j/index.json b/site/public/v1/smartphones/p30-pro-td-lte-jp-128gb-hw-02l-vog-l0j-vog-l01j/index.json new file mode 100644 index 00000000000..38a8c8f845c --- /dev/null +++ b/site/public/v1/smartphones/p30-pro-td-lte-jp-128gb-hw-02l-vog-l0j-vog-l01j/index.json @@ -0,0 +1,76 @@ +{ + "id": 1094, + "slug": "p30-pro-td-lte-jp-128gb-hw-02l-vog-l0j-vog-l01j", + "name": "P30 Pro TD-LTE JP 128GB HW-02L VOG-L0J / VOG-L01J", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-09-13", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 34.0, + "performance": 54.5, + "camera": 13.9, + "battery": 22.8, + "display": 44.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.261096", + "updated_at": "2026-06-19T00:43:44.261096" +} diff --git a/site/public/v1/smartphones/p30-pro-td-lte-jp-128gb-hw-02l-vog-l0j-vog-l01j/score/index.json b/site/public/v1/smartphones/p30-pro-td-lte-jp-128gb-hw-02l-vog-l0j-vog-l01j/score/index.json new file mode 100644 index 00000000000..6edc9c4e1bb --- /dev/null +++ b/site/public/v1/smartphones/p30-pro-td-lte-jp-128gb-hw-02l-vog-l0j-vog-l01j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 34.0, + "performance": 54.5, + "camera": 13.9, + "battery": 22.8, + "display": 44.8, + "value": null +} diff --git a/site/public/v1/smartphones/p30-standard-edition-global-dual-sim-td-lte-ele-l29-128gb/index.json b/site/public/v1/smartphones/p30-standard-edition-global-dual-sim-td-lte-ele-l29-128gb/index.json new file mode 100644 index 00000000000..df909c6f85b --- /dev/null +++ b/site/public/v1/smartphones/p30-standard-edition-global-dual-sim-td-lte-ele-l29-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1095, + "slug": "p30-standard-edition-global-dual-sim-td-lte-ele-l29-128gb", + "name": "P30 Standard Edition Global Dual SIM TD-LTE ELE-L29 128GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-04-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3650, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.7, + "performance": 54.5, + "camera": 13.9, + "battery": 11.1, + "display": 47.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.261096", + "updated_at": "2026-06-19T00:43:44.261096" +} diff --git a/site/public/v1/smartphones/p30-standard-edition-global-dual-sim-td-lte-ele-l29-128gb/score/index.json b/site/public/v1/smartphones/p30-standard-edition-global-dual-sim-td-lte-ele-l29-128gb/score/index.json new file mode 100644 index 00000000000..25ddb0ae5cc --- /dev/null +++ b/site/public/v1/smartphones/p30-standard-edition-global-dual-sim-td-lte-ele-l29-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.7, + "performance": 54.5, + "camera": 13.9, + "battery": 11.1, + "display": 47.2, + "value": null +} diff --git a/site/public/v1/smartphones/p30-td-lte-cn-xt1943-1-128gb/index.json b/site/public/v1/smartphones/p30-td-lte-cn-xt1943-1-128gb/index.json new file mode 100644 index 00000000000..ef9076e13f1 --- /dev/null +++ b/site/public/v1/smartphones/p30-td-lte-cn-xt1943-1-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2002, + "slug": "p30-td-lte-cn-xt1943-1-128gb", + "name": "P30 TD-LTE CN XT1943-1 128GB", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 1.5, + "camera": 6.3, + "battery": 0.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.401875", + "updated_at": "2026-06-19T00:43:44.401875" +} diff --git a/site/public/v1/smartphones/p30-td-lte-cn-xt1943-1-128gb/score/index.json b/site/public/v1/smartphones/p30-td-lte-cn-xt1943-1-128gb/score/index.json new file mode 100644 index 00000000000..728f1bbb5e0 --- /dev/null +++ b/site/public/v1/smartphones/p30-td-lte-cn-xt1943-1-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 1.5, + "camera": 6.3, + "battery": 0.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/p30-td-lte-cn-xt1943-1-64gb/index.json b/site/public/v1/smartphones/p30-td-lte-cn-xt1943-1-64gb/index.json new file mode 100644 index 00000000000..139936814bb --- /dev/null +++ b/site/public/v1/smartphones/p30-td-lte-cn-xt1943-1-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2003, + "slug": "p30-td-lte-cn-xt1943-1-64gb", + "name": "P30 TD-LTE CN XT1943-1 64GB", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 1.5, + "camera": 6.3, + "battery": 0.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.401875", + "updated_at": "2026-06-19T00:43:44.401875" +} diff --git a/site/public/v1/smartphones/p30-td-lte-cn-xt1943-1-64gb/score/index.json b/site/public/v1/smartphones/p30-td-lte-cn-xt1943-1-64gb/score/index.json new file mode 100644 index 00000000000..728f1bbb5e0 --- /dev/null +++ b/site/public/v1/smartphones/p30-td-lte-cn-xt1943-1-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 1.5, + "camera": 6.3, + "battery": 0.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/p30-td-lte-na-ele-l04-128gb/index.json b/site/public/v1/smartphones/p30-td-lte-na-ele-l04-128gb/index.json new file mode 100644 index 00000000000..57f1c3b638e --- /dev/null +++ b/site/public/v1/smartphones/p30-td-lte-na-ele-l04-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1096, + "slug": "p30-td-lte-na-ele-l04-128gb", + "name": "P30 TD-LTE NA ELE-L04 128GB", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 28, + "slug": "kirin-980", + "name": "Kirin 980", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP10", + "url": "/v1/socs/kirin-980" + }, + "release_date": "2019-03-29", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3650, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.7, + "performance": 54.5, + "camera": 13.9, + "battery": 11.1, + "display": 47.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.261096", + "updated_at": "2026-06-19T00:43:44.261096" +} diff --git a/site/public/v1/smartphones/p30-td-lte-na-ele-l04-128gb/score/index.json b/site/public/v1/smartphones/p30-td-lte-na-ele-l04-128gb/score/index.json new file mode 100644 index 00000000000..25ddb0ae5cc --- /dev/null +++ b/site/public/v1/smartphones/p30-td-lte-na-ele-l04-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.7, + "performance": 54.5, + "camera": 13.9, + "battery": 11.1, + "display": 47.2, + "value": null +} diff --git a/site/public/v1/smartphones/p40-lite-4g-global-dual-sim-td-lte-128gb-jny-lx1-jny-l21a/index.json b/site/public/v1/smartphones/p40-lite-4g-global-dual-sim-td-lte-128gb-jny-lx1-jny-l21a/index.json new file mode 100644 index 00000000000..bcde60d678d --- /dev/null +++ b/site/public/v1/smartphones/p40-lite-4g-global-dual-sim-td-lte-128gb-jny-lx1-jny-l21a/index.json @@ -0,0 +1,76 @@ +{ + "id": 1210, + "slug": "p40-lite-4g-global-dual-sim-td-lte-128gb-jny-lx1-jny-l21a", + "name": "P40 Lite 4G Global Dual SIM TD-LTE 128GB JNY-LX1 / JNY-L21A", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 30, + "slug": "kirin-810", + "name": "Kirin 810", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G52 MP6", + "url": "/v1/socs/kirin-810" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 1.5, + "camera": 16.5, + "battery": 22.8, + "display": 44.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.276606", + "updated_at": "2026-06-19T00:43:44.276606" +} diff --git a/site/public/v1/smartphones/p40-lite-4g-global-dual-sim-td-lte-128gb-jny-lx1-jny-l21a/score/index.json b/site/public/v1/smartphones/p40-lite-4g-global-dual-sim-td-lte-128gb-jny-lx1-jny-l21a/score/index.json new file mode 100644 index 00000000000..753ce9e4f89 --- /dev/null +++ b/site/public/v1/smartphones/p40-lite-4g-global-dual-sim-td-lte-128gb-jny-lx1-jny-l21a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 1.5, + "camera": 16.5, + "battery": 22.8, + "display": 44.9, + "value": null +} diff --git a/site/public/v1/smartphones/p40-lite-4g-global-td-lte-128gb-jny-l01a/index.json b/site/public/v1/smartphones/p40-lite-4g-global-td-lte-128gb-jny-l01a/index.json new file mode 100644 index 00000000000..4a075bb89cf --- /dev/null +++ b/site/public/v1/smartphones/p40-lite-4g-global-td-lte-128gb-jny-l01a/index.json @@ -0,0 +1,76 @@ +{ + "id": 1211, + "slug": "p40-lite-4g-global-td-lte-128gb-jny-l01a", + "name": "P40 Lite 4G Global TD-LTE 128GB JNY-L01A", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 30, + "slug": "kirin-810", + "name": "Kirin 810", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G52 MP6", + "url": "/v1/socs/kirin-810" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 1.5, + "camera": 16.5, + "battery": 22.8, + "display": 44.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.276606", + "updated_at": "2026-06-19T00:43:44.276606" +} diff --git a/site/public/v1/smartphones/p40-lite-4g-global-td-lte-128gb-jny-l01a/score/index.json b/site/public/v1/smartphones/p40-lite-4g-global-td-lte-128gb-jny-l01a/score/index.json new file mode 100644 index 00000000000..753ce9e4f89 --- /dev/null +++ b/site/public/v1/smartphones/p40-lite-4g-global-td-lte-128gb-jny-l01a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 1.5, + "camera": 16.5, + "battery": 22.8, + "display": 44.9, + "value": null +} diff --git a/site/public/v1/smartphones/p40-lite-5g-global-dual-sim-td-lte-128gb-cdy-nx9a-cdy-n29a/index.json b/site/public/v1/smartphones/p40-lite-5g-global-dual-sim-td-lte-128gb-cdy-nx9a-cdy-n29a/index.json new file mode 100644 index 00000000000..9a067915955 --- /dev/null +++ b/site/public/v1/smartphones/p40-lite-5g-global-dual-sim-td-lte-128gb-cdy-nx9a-cdy-n29a/index.json @@ -0,0 +1,76 @@ +{ + "id": 1212, + "slug": "p40-lite-5g-global-dual-sim-td-lte-128gb-cdy-nx9a-cdy-n29a", + "name": "P40 Lite 5G Global Dual SIM TD-LTE 128GB CDY-NX9A / CDY-N29A", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 34, + "slug": "kirin-820", + "name": "Kirin 820", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MP6", + "url": "/v1/socs/kirin-820" + }, + "release_date": "2020-06-03", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 1.5, + "camera": 21.5, + "battery": 19.7, + "display": 45.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.276606", + "updated_at": "2026-06-19T00:43:44.276606" +} diff --git a/site/public/v1/smartphones/p40-lite-5g-global-dual-sim-td-lte-128gb-cdy-nx9a-cdy-n29a/score/index.json b/site/public/v1/smartphones/p40-lite-5g-global-dual-sim-td-lte-128gb-cdy-nx9a-cdy-n29a/score/index.json new file mode 100644 index 00000000000..ecbb4dea56d --- /dev/null +++ b/site/public/v1/smartphones/p40-lite-5g-global-dual-sim-td-lte-128gb-cdy-nx9a-cdy-n29a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 1.5, + "camera": 21.5, + "battery": 19.7, + "display": 45.5, + "value": null +} diff --git a/site/public/v1/smartphones/p40-lite-dual-sim-td-lte-latam-128gb-jny-l22a/index.json b/site/public/v1/smartphones/p40-lite-dual-sim-td-lte-latam-128gb-jny-l22a/index.json new file mode 100644 index 00000000000..d2308044109 --- /dev/null +++ b/site/public/v1/smartphones/p40-lite-dual-sim-td-lte-latam-128gb-jny-l22a/index.json @@ -0,0 +1,76 @@ +{ + "id": 1213, + "slug": "p40-lite-dual-sim-td-lte-latam-128gb-jny-l22a", + "name": "P40 Lite Dual SIM TD-LTE LATAM 128GB JNY-L22A", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 30, + "slug": "kirin-810", + "name": "Kirin 810", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G52 MP6", + "url": "/v1/socs/kirin-810" + }, + "release_date": "2020-02-14", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 1.5, + "camera": 16.5, + "battery": 22.8, + "display": 44.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.276606", + "updated_at": "2026-06-19T00:43:44.276606" +} diff --git a/site/public/v1/smartphones/p40-lite-dual-sim-td-lte-latam-128gb-jny-l22a/score/index.json b/site/public/v1/smartphones/p40-lite-dual-sim-td-lte-latam-128gb-jny-l22a/score/index.json new file mode 100644 index 00000000000..753ce9e4f89 --- /dev/null +++ b/site/public/v1/smartphones/p40-lite-dual-sim-td-lte-latam-128gb-jny-l22a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 1.5, + "camera": 16.5, + "battery": 22.8, + "display": 44.9, + "value": null +} diff --git a/site/public/v1/smartphones/p40-lite-e-dual-sim-td-lte-emea-64gb-art-l29-y7p-2020/index.json b/site/public/v1/smartphones/p40-lite-e-dual-sim-td-lte-emea-64gb-art-l29-y7p-2020/index.json new file mode 100644 index 00000000000..3351a00fa23 --- /dev/null +++ b/site/public/v1/smartphones/p40-lite-e-dual-sim-td-lte-emea-64gb-art-l29-y7p-2020/index.json @@ -0,0 +1,76 @@ +{ + "id": 1214, + "slug": "p40-lite-e-dual-sim-td-lte-emea-64gb-art-l29-y7p-2020", + "name": "P40 Lite E Dual SIM TD-LTE EMEA 64GB ART-L29 / Y7p 2020", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.276606", + "updated_at": "2026-06-19T00:43:44.276606" +} diff --git a/site/public/v1/smartphones/p40-lite-e-dual-sim-td-lte-emea-64gb-art-l29-y7p-2020/score/index.json b/site/public/v1/smartphones/p40-lite-e-dual-sim-td-lte-emea-64gb-art-l29-y7p-2020/score/index.json new file mode 100644 index 00000000000..6de7755463e --- /dev/null +++ b/site/public/v1/smartphones/p40-lite-e-dual-sim-td-lte-emea-64gb-art-l29-y7p-2020/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/p40-lite-td-lte-latam-128gb-jny-l02a/index.json b/site/public/v1/smartphones/p40-lite-td-lte-latam-128gb-jny-l02a/index.json new file mode 100644 index 00000000000..7568d2eb2ae --- /dev/null +++ b/site/public/v1/smartphones/p40-lite-td-lte-latam-128gb-jny-l02a/index.json @@ -0,0 +1,76 @@ +{ + "id": 1215, + "slug": "p40-lite-td-lte-latam-128gb-jny-l02a", + "name": "P40 Lite TD-LTE LATAM 128GB JNY-L02A", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 30, + "slug": "kirin-810", + "name": "Kirin 810", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G52 MP6", + "url": "/v1/socs/kirin-810" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 1.5, + "camera": 16.5, + "battery": 22.8, + "display": 44.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.276606", + "updated_at": "2026-06-19T00:43:44.276606" +} diff --git a/site/public/v1/smartphones/p40-lite-td-lte-latam-128gb-jny-l02a/score/index.json b/site/public/v1/smartphones/p40-lite-td-lte-latam-128gb-jny-l02a/score/index.json new file mode 100644 index 00000000000..753ce9e4f89 --- /dev/null +++ b/site/public/v1/smartphones/p40-lite-td-lte-latam-128gb-jny-l02a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 1.5, + "camera": 16.5, + "battery": 22.8, + "display": 44.9, + "value": null +} diff --git a/site/public/v1/smartphones/p50-4g-global-dual-sim-td-lte-128gb-abr-al00/index.json b/site/public/v1/smartphones/p50-4g-global-dual-sim-td-lte-128gb-abr-al00/index.json new file mode 100644 index 00000000000..12f6f9fde1e --- /dev/null +++ b/site/public/v1/smartphones/p50-4g-global-dual-sim-td-lte-128gb-abr-al00/index.json @@ -0,0 +1,77 @@ +{ + "id": 1281, + "slug": "p50-4g-global-dual-sim-td-lte-128gb-abr-al00", + "name": "P50 4G Global Dual SIM TD-LTE 128GB ABR-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1224x2700", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Huawei HarmonyOS 2.0", + "os_version": null, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 6.4, + "camera": 17.2, + "battery": 36.2, + "display": 45.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.312606", + "updated_at": "2026-06-19T00:43:44.312606" +} diff --git a/site/public/v1/smartphones/p50-4g-global-dual-sim-td-lte-128gb-abr-al00/score/index.json b/site/public/v1/smartphones/p50-4g-global-dual-sim-td-lte-128gb-abr-al00/score/index.json new file mode 100644 index 00000000000..4568dc5de56 --- /dev/null +++ b/site/public/v1/smartphones/p50-4g-global-dual-sim-td-lte-128gb-abr-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 6.4, + "camera": 17.2, + "battery": 36.2, + "display": 45.6, + "value": null +} diff --git a/site/public/v1/smartphones/p50-4g-global-dual-sim-td-lte-256gb-abr-al00/index.json b/site/public/v1/smartphones/p50-4g-global-dual-sim-td-lte-256gb-abr-al00/index.json new file mode 100644 index 00000000000..13d5c1b34ff --- /dev/null +++ b/site/public/v1/smartphones/p50-4g-global-dual-sim-td-lte-256gb-abr-al00/index.json @@ -0,0 +1,77 @@ +{ + "id": 1282, + "slug": "p50-4g-global-dual-sim-td-lte-256gb-abr-al00", + "name": "P50 4G Global Dual SIM TD-LTE 256GB ABR-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1224x2700", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 456 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Huawei HarmonyOS 2.0", + "os_version": null, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 6.4, + "camera": 17.2, + "battery": 36.2, + "display": 45.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.312606", + "updated_at": "2026-06-19T00:43:44.312606" +} diff --git a/site/public/v1/smartphones/p50-4g-global-dual-sim-td-lte-256gb-abr-al00/score/index.json b/site/public/v1/smartphones/p50-4g-global-dual-sim-td-lte-256gb-abr-al00/score/index.json new file mode 100644 index 00000000000..4568dc5de56 --- /dev/null +++ b/site/public/v1/smartphones/p50-4g-global-dual-sim-td-lte-256gb-abr-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 6.4, + "camera": 17.2, + "battery": 36.2, + "display": 45.6, + "value": null +} diff --git a/site/public/v1/smartphones/p50-dual-sim-td-lte-cn-128gb-xt1970-5/index.json b/site/public/v1/smartphones/p50-dual-sim-td-lte-cn-128gb-xt1970-5/index.json new file mode 100644 index 00000000000..c15fcdb0906 --- /dev/null +++ b/site/public/v1/smartphones/p50-dual-sim-td-lte-cn-128gb-xt1970-5/index.json @@ -0,0 +1,76 @@ +{ + "id": 2076, + "slug": "p50-dual-sim-td-lte-cn-128gb-xt1970-5", + "name": "P50 Dual SIM TD-LTE CN 128GB XT1970-5", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 191, + "slug": "exynos-9609", + "name": "Exynos 9609", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9609" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 435 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": 1.5, + "camera": 16.5, + "battery": 7.5, + "display": 48.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.410874", + "updated_at": "2026-06-19T00:43:44.410874" +} diff --git a/site/public/v1/smartphones/p50-dual-sim-td-lte-cn-128gb-xt1970-5/score/index.json b/site/public/v1/smartphones/p50-dual-sim-td-lte-cn-128gb-xt1970-5/score/index.json new file mode 100644 index 00000000000..ad0ae6e2187 --- /dev/null +++ b/site/public/v1/smartphones/p50-dual-sim-td-lte-cn-128gb-xt1970-5/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": 1.5, + "camera": 16.5, + "battery": 7.5, + "display": 48.5, + "value": null +} diff --git a/site/public/v1/smartphones/p50-pocket-4g-premium-art-edition-dual-sim-td-lte-cn-512gb-bal-al00/index.json b/site/public/v1/smartphones/p50-pocket-4g-premium-art-edition-dual-sim-td-lte-cn-512gb-bal-al00/index.json new file mode 100644 index 00000000000..856484b73f9 --- /dev/null +++ b/site/public/v1/smartphones/p50-pocket-4g-premium-art-edition-dual-sim-td-lte-cn-512gb-bal-al00/index.json @@ -0,0 +1,77 @@ +{ + "id": 1283, + "slug": "p50-pocket-4g-premium-art-edition-dual-sim-td-lte-cn-512gb-bal-al00", + "name": "P50 Pocket 4G Premium Art Edition Dual SIM TD-LTE CN 512GB BAL-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-12-24", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.9, + "resolution": "1188x2790", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 10.7 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Huawei HarmonyOS 2.0", + "os_version": null, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 9.4, + "camera": 13.9, + "battery": 29.7, + "display": 56.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.312606", + "updated_at": "2026-06-19T00:43:44.312606" +} diff --git a/site/public/v1/smartphones/p50-pocket-4g-premium-art-edition-dual-sim-td-lte-cn-512gb-bal-al00/score/index.json b/site/public/v1/smartphones/p50-pocket-4g-premium-art-edition-dual-sim-td-lte-cn-512gb-bal-al00/score/index.json new file mode 100644 index 00000000000..a97980fc478 --- /dev/null +++ b/site/public/v1/smartphones/p50-pocket-4g-premium-art-edition-dual-sim-td-lte-cn-512gb-bal-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 9.4, + "camera": 13.9, + "battery": 29.7, + "display": 56.4, + "value": null +} diff --git a/site/public/v1/smartphones/p50-pocket-4g-premium-edition-global-dual-sim-td-lte-512gb-bal-l49/index.json b/site/public/v1/smartphones/p50-pocket-4g-premium-edition-global-dual-sim-td-lte-512gb-bal-l49/index.json new file mode 100644 index 00000000000..a7a96392815 --- /dev/null +++ b/site/public/v1/smartphones/p50-pocket-4g-premium-edition-global-dual-sim-td-lte-512gb-bal-l49/index.json @@ -0,0 +1,77 @@ +{ + "id": 1301, + "slug": "p50-pocket-4g-premium-edition-global-dual-sim-td-lte-512gb-bal-l49", + "name": "P50 Pocket 4G Premium Edition Global Dual SIM TD-LTE 512GB BAL-L49", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2022-01-26", + "msrp_usd": 1299, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.9, + "resolution": "1188x2790", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 10.7 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Huawei HarmonyOS 2.0", + "os_version": null, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 9.4, + "camera": 13.9, + "battery": 29.7, + "display": 56.4, + "value": 25.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.315605", + "updated_at": "2026-06-19T00:43:44.315605" +} diff --git a/site/public/v1/smartphones/p50-pocket-4g-premium-edition-global-dual-sim-td-lte-512gb-bal-l49/score/index.json b/site/public/v1/smartphones/p50-pocket-4g-premium-edition-global-dual-sim-td-lte-512gb-bal-l49/score/index.json new file mode 100644 index 00000000000..5a680c01a34 --- /dev/null +++ b/site/public/v1/smartphones/p50-pocket-4g-premium-edition-global-dual-sim-td-lte-512gb-bal-l49/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 9.4, + "camera": 13.9, + "battery": 29.7, + "display": 56.4, + "value": 25.3 +} diff --git a/site/public/v1/smartphones/p50-pocket-4g-standard-edition-dual-sim-td-lte-cn-256gb-bal-al00/index.json b/site/public/v1/smartphones/p50-pocket-4g-standard-edition-dual-sim-td-lte-cn-256gb-bal-al00/index.json new file mode 100644 index 00000000000..b1f9671bcee --- /dev/null +++ b/site/public/v1/smartphones/p50-pocket-4g-standard-edition-dual-sim-td-lte-cn-256gb-bal-al00/index.json @@ -0,0 +1,77 @@ +{ + "id": 1284, + "slug": "p50-pocket-4g-standard-edition-dual-sim-td-lte-cn-256gb-bal-al00", + "name": "P50 Pocket 4G Standard Edition Dual SIM TD-LTE CN 256GB BAL-AL00", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-12-24", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.9, + "resolution": "1188x2790", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 10.7 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Huawei HarmonyOS 2.0", + "os_version": null, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 6.4, + "camera": 13.9, + "battery": 29.7, + "display": 56.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.312606", + "updated_at": "2026-06-19T00:43:44.312606" +} diff --git a/site/public/v1/smartphones/p50-pocket-4g-standard-edition-dual-sim-td-lte-cn-256gb-bal-al00/score/index.json b/site/public/v1/smartphones/p50-pocket-4g-standard-edition-dual-sim-td-lte-cn-256gb-bal-al00/score/index.json new file mode 100644 index 00000000000..28ef3fd77ce --- /dev/null +++ b/site/public/v1/smartphones/p50-pocket-4g-standard-edition-dual-sim-td-lte-cn-256gb-bal-al00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 6.4, + "camera": 13.9, + "battery": 29.7, + "display": 56.4, + "value": null +} diff --git a/site/public/v1/smartphones/p50-pocket-4g-standard-edition-global-dual-sim-td-lte-256gb-bal-l49/index.json b/site/public/v1/smartphones/p50-pocket-4g-standard-edition-global-dual-sim-td-lte-256gb-bal-l49/index.json new file mode 100644 index 00000000000..e8b45c147fc --- /dev/null +++ b/site/public/v1/smartphones/p50-pocket-4g-standard-edition-global-dual-sim-td-lte-256gb-bal-l49/index.json @@ -0,0 +1,77 @@ +{ + "id": 1285, + "slug": "p50-pocket-4g-standard-edition-global-dual-sim-td-lte-256gb-bal-l49", + "name": "P50 Pocket 4G Standard Edition Global Dual SIM TD-LTE 256GB BAL-L49", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-12-24", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.9, + "resolution": "1188x2790", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 39.9 + }, + { + "type": "selfie", + "mp": 10.7 + } + ], + "battery_mah": 4000, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Huawei HarmonyOS 2.0", + "os_version": null, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 6.4, + "camera": 13.9, + "battery": 29.7, + "display": 56.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.312606", + "updated_at": "2026-06-19T00:43:44.312606" +} diff --git a/site/public/v1/smartphones/p50-pocket-4g-standard-edition-global-dual-sim-td-lte-256gb-bal-l49/score/index.json b/site/public/v1/smartphones/p50-pocket-4g-standard-edition-global-dual-sim-td-lte-256gb-bal-l49/score/index.json new file mode 100644 index 00000000000..28ef3fd77ce --- /dev/null +++ b/site/public/v1/smartphones/p50-pocket-4g-standard-edition-global-dual-sim-td-lte-256gb-bal-l49/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 6.4, + "camera": 13.9, + "battery": 29.7, + "display": 56.4, + "value": null +} diff --git a/site/public/v1/smartphones/p50-pro-4g-dual-sim-td-lte-cn-256gb-jad-al50/index.json b/site/public/v1/smartphones/p50-pro-4g-dual-sim-td-lte-cn-256gb-jad-al50/index.json new file mode 100644 index 00000000000..f2ef5a7354c --- /dev/null +++ b/site/public/v1/smartphones/p50-pro-4g-dual-sim-td-lte-cn-256gb-jad-al50/index.json @@ -0,0 +1,77 @@ +{ + "id": 1287, + "slug": "p50-pro-4g-dual-sim-td-lte-cn-256gb-jad-al50", + "name": "P50 Pro 4G Dual SIM TD-LTE CN 256GB JAD-AL50", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 35, + "slug": "kirin-9000", + "name": "HiSilicon Kirin 9000", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP24", + "url": "/v1/socs/kirin-9000" + }, + "release_date": "2021-08-18", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.59, + "resolution": "1228x2700", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4360, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Huawei HarmonyOS 2.0", + "os_version": null, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.1, + "performance": 5.6, + "camera": 17.2, + "battery": 40.1, + "display": 57.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.312606", + "updated_at": "2026-06-19T00:43:44.312606" +} diff --git a/site/public/v1/smartphones/p50-pro-4g-dual-sim-td-lte-cn-256gb-jad-al50/score/index.json b/site/public/v1/smartphones/p50-pro-4g-dual-sim-td-lte-cn-256gb-jad-al50/score/index.json new file mode 100644 index 00000000000..bb524f0a763 --- /dev/null +++ b/site/public/v1/smartphones/p50-pro-4g-dual-sim-td-lte-cn-256gb-jad-al50/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.1, + "performance": 5.6, + "camera": 17.2, + "battery": 40.1, + "display": 57.5, + "value": null +} diff --git a/site/public/v1/smartphones/p50-pro-4g-dual-sim-td-lte-cn-512gb-jad-al50/index.json b/site/public/v1/smartphones/p50-pro-4g-dual-sim-td-lte-cn-512gb-jad-al50/index.json new file mode 100644 index 00000000000..588b5aa60e2 --- /dev/null +++ b/site/public/v1/smartphones/p50-pro-4g-dual-sim-td-lte-cn-512gb-jad-al50/index.json @@ -0,0 +1,77 @@ +{ + "id": 1288, + "slug": "p50-pro-4g-dual-sim-td-lte-cn-512gb-jad-al50", + "name": "P50 Pro 4G Dual SIM TD-LTE CN 512GB JAD-AL50", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 35, + "slug": "kirin-9000", + "name": "HiSilicon Kirin 9000", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP24", + "url": "/v1/socs/kirin-9000" + }, + "release_date": "2021-08-18", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.59, + "resolution": "1228x2700", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4360, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Huawei HarmonyOS 2.0", + "os_version": null, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.1, + "performance": 5.6, + "camera": 17.2, + "battery": 40.1, + "display": 57.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.313605", + "updated_at": "2026-06-19T00:43:44.313605" +} diff --git a/site/public/v1/smartphones/p50-pro-4g-dual-sim-td-lte-cn-512gb-jad-al50/score/index.json b/site/public/v1/smartphones/p50-pro-4g-dual-sim-td-lte-cn-512gb-jad-al50/score/index.json new file mode 100644 index 00000000000..bb524f0a763 --- /dev/null +++ b/site/public/v1/smartphones/p50-pro-4g-dual-sim-td-lte-cn-512gb-jad-al50/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.1, + "performance": 5.6, + "camera": 17.2, + "battery": 40.1, + "display": 57.5, + "value": null +} diff --git a/site/public/v1/smartphones/p50-pro-4g-global-dual-sim-td-lte-256gb-jad-lx9-jad-l29/index.json b/site/public/v1/smartphones/p50-pro-4g-global-dual-sim-td-lte-256gb-jad-lx9-jad-l29/index.json new file mode 100644 index 00000000000..a0b74ae737c --- /dev/null +++ b/site/public/v1/smartphones/p50-pro-4g-global-dual-sim-td-lte-256gb-jad-lx9-jad-l29/index.json @@ -0,0 +1,77 @@ +{ + "id": 1289, + "slug": "p50-pro-4g-global-dual-sim-td-lte-256gb-jad-lx9-jad-l29", + "name": "P50 Pro 4G Global Dual SIM TD-LTE 256GB JAD-LX9 / JAD-L29", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.59, + "resolution": "1228x2700", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4360, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Huawei HarmonyOS 2.0", + "os_version": null, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.3, + "performance": 6.4, + "camera": 17.2, + "battery": 40.1, + "display": 57.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.313605", + "updated_at": "2026-06-19T00:43:44.313605" +} diff --git a/site/public/v1/smartphones/p50-pro-4g-global-dual-sim-td-lte-256gb-jad-lx9-jad-l29/score/index.json b/site/public/v1/smartphones/p50-pro-4g-global-dual-sim-td-lte-256gb-jad-lx9-jad-l29/score/index.json new file mode 100644 index 00000000000..b9752413955 --- /dev/null +++ b/site/public/v1/smartphones/p50-pro-4g-global-dual-sim-td-lte-256gb-jad-lx9-jad-l29/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.3, + "performance": 6.4, + "camera": 17.2, + "battery": 40.1, + "display": 57.5, + "value": null +} diff --git a/site/public/v1/smartphones/p50-pro-4g-global-td-lte-256gb-jad-lx9-jad-l09/index.json b/site/public/v1/smartphones/p50-pro-4g-global-td-lte-256gb-jad-lx9-jad-l09/index.json new file mode 100644 index 00000000000..e044a354027 --- /dev/null +++ b/site/public/v1/smartphones/p50-pro-4g-global-td-lte-256gb-jad-lx9-jad-l09/index.json @@ -0,0 +1,77 @@ +{ + "id": 1290, + "slug": "p50-pro-4g-global-td-lte-256gb-jad-lx9-jad-l09", + "name": "P50 Pro 4G Global TD-LTE 256GB JAD-LX9 / JAD-L09", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.59, + "resolution": "1228x2700", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4360, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Huawei HarmonyOS 2.0", + "os_version": null, + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.3, + "performance": 6.4, + "camera": 17.2, + "battery": 40.1, + "display": 57.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.313605", + "updated_at": "2026-06-19T00:43:44.313605" +} diff --git a/site/public/v1/smartphones/p50-pro-4g-global-td-lte-256gb-jad-lx9-jad-l09/score/index.json b/site/public/v1/smartphones/p50-pro-4g-global-td-lte-256gb-jad-lx9-jad-l09/score/index.json new file mode 100644 index 00000000000..b9752413955 --- /dev/null +++ b/site/public/v1/smartphones/p50-pro-4g-global-td-lte-256gb-jad-lx9-jad-l09/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.3, + "performance": 6.4, + "camera": 17.2, + "battery": 40.1, + "display": 57.5, + "value": null +} diff --git a/site/public/v1/smartphones/p85-nxt-dual-sim-td-lte-in-eb-90s50p8n/index.json b/site/public/v1/smartphones/p85-nxt-dual-sim-td-lte-in-eb-90s50p8n/index.json new file mode 100644 index 00000000000..cad5e08e682 --- /dev/null +++ b/site/public/v1/smartphones/p85-nxt-dual-sim-td-lte-in-eb-90s50p8n/index.json @@ -0,0 +1,76 @@ +{ + "id": 3512, + "slug": "p85-nxt-dual-sim-td-lte-in-eb-90s50p8n", + "name": "P85 NXT Dual SIM TD-LTE IN EB-90S50P8N", + "brand": { + "id": 73, + "slug": "panasonic", + "name": "Panasonic", + "country": "JP", + "url": "/v1/brands/panasonic" + }, + "soc": { + "id": 104, + "slug": "snapdragon-210", + "name": "Snapdragon 210", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-210" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 173.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.606892", + "updated_at": "2026-06-19T00:43:44.606892" +} diff --git a/site/public/v1/smartphones/p85-nxt-dual-sim-td-lte-in-eb-90s50p8n/score/index.json b/site/public/v1/smartphones/p85-nxt-dual-sim-td-lte-in-eb-90s50p8n/score/index.json new file mode 100644 index 00000000000..7f209133483 --- /dev/null +++ b/site/public/v1/smartphones/p85-nxt-dual-sim-td-lte-in-eb-90s50p8n/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/p9-lite-mini-dual-sim-lte-latam-sla-l23/index.json b/site/public/v1/smartphones/p9-lite-mini-dual-sim-lte-latam-sla-l23/index.json new file mode 100644 index 00000000000..f57f55b08b5 --- /dev/null +++ b/site/public/v1/smartphones/p9-lite-mini-dual-sim-lte-latam-sla-l23/index.json @@ -0,0 +1,76 @@ +{ + "id": 808, + "slug": "p9-lite-mini-dual-sim-lte-latam-sla-l23", + "name": "P9 lite mini Dual SIM LTE LATAM SLA-L23", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2017-11-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3020, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": null, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.219932", + "updated_at": "2026-06-19T00:43:44.219932" +} diff --git a/site/public/v1/smartphones/p9-lite-mini-dual-sim-lte-latam-sla-l23/score/index.json b/site/public/v1/smartphones/p9-lite-mini-dual-sim-lte-latam-sla-l23/score/index.json new file mode 100644 index 00000000000..124cad705d7 --- /dev/null +++ b/site/public/v1/smartphones/p9-lite-mini-dual-sim-lte-latam-sla-l23/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": null, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/p95-dual-sim-td-lte-eb-90s50p95b/index.json b/site/public/v1/smartphones/p95-dual-sim-td-lte-eb-90s50p95b/index.json new file mode 100644 index 00000000000..529186b1df0 --- /dev/null +++ b/site/public/v1/smartphones/p95-dual-sim-td-lte-eb-90s50p95b/index.json @@ -0,0 +1,76 @@ +{ + "id": 3513, + "slug": "p95-dual-sim-td-lte-eb-90s50p95b", + "name": "P95 Dual SIM TD-LTE EB-90S50P95B", + "brand": { + "id": 73, + "slug": "panasonic", + "name": "Panasonic", + "country": "JP", + "url": "/v1/brands/panasonic" + }, + "soc": { + "id": 104, + "slug": "snapdragon-210", + "name": "Snapdragon 210", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-210" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 2300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.606892", + "updated_at": "2026-06-19T00:43:44.606892" +} diff --git a/site/public/v1/smartphones/p95-dual-sim-td-lte-eb-90s50p95b/score/index.json b/site/public/v1/smartphones/p95-dual-sim-td-lte-eb-90s50p95b/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/p95-dual-sim-td-lte-eb-90s50p95b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/palm-phone-2018-global-lte-pvg100e-pvg100eu/index.json b/site/public/v1/smartphones/palm-phone-2018-global-lte-pvg100e-pvg100eu/index.json new file mode 100644 index 00000000000..1ec9c5f45bf --- /dev/null +++ b/site/public/v1/smartphones/palm-phone-2018-global-lte-pvg100e-pvg100eu/index.json @@ -0,0 +1,76 @@ +{ + "id": 4927, + "slug": "palm-phone-2018-global-lte-pvg100e-pvg100eu", + "name": "Palm Phone 2018 Global LTE PVG100E / PVG100EU", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 113, + "slug": "snapdragon-435", + "name": "Snapdragon 435", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-435" + }, + "release_date": "2018-12-07", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 3.3, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 445 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 62.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": null, + "camera": 5.1, + "battery": 0.0, + "display": 49.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.830568", + "updated_at": "2026-06-19T00:43:44.830568" +} diff --git a/site/public/v1/smartphones/palm-phone-2018-global-lte-pvg100e-pvg100eu/score/index.json b/site/public/v1/smartphones/palm-phone-2018-global-lte-pvg100e-pvg100eu/score/index.json new file mode 100644 index 00000000000..05adc48a553 --- /dev/null +++ b/site/public/v1/smartphones/palm-phone-2018-global-lte-pvg100e-pvg100eu/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": null, + "camera": 5.1, + "battery": 0.0, + "display": 49.5, + "value": null +} diff --git a/site/public/v1/smartphones/palm-phone-2018-lte-us-pvg100/index.json b/site/public/v1/smartphones/palm-phone-2018-lte-us-pvg100/index.json new file mode 100644 index 00000000000..bd7b71114b0 --- /dev/null +++ b/site/public/v1/smartphones/palm-phone-2018-lte-us-pvg100/index.json @@ -0,0 +1,76 @@ +{ + "id": 4928, + "slug": "palm-phone-2018-lte-us-pvg100", + "name": "Palm Phone 2018 LTE US PVG100", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 113, + "slug": "snapdragon-435", + "name": "Snapdragon 435", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-435" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 3.3, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 445 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 62.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": null, + "camera": 5.1, + "battery": 0.0, + "display": 49.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.830568", + "updated_at": "2026-06-19T00:43:44.830568" +} diff --git a/site/public/v1/smartphones/palm-phone-2018-lte-us-pvg100/score/index.json b/site/public/v1/smartphones/palm-phone-2018-lte-us-pvg100/score/index.json new file mode 100644 index 00000000000..05adc48a553 --- /dev/null +++ b/site/public/v1/smartphones/palm-phone-2018-lte-us-pvg100/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": null, + "camera": 5.1, + "battery": 0.0, + "display": 49.5, + "value": null +} diff --git a/site/public/v1/smartphones/phantom-9-dual-sim-td-lte-128gb-ab7/index.json b/site/public/v1/smartphones/phantom-9-dual-sim-td-lte-128gb-ab7/index.json new file mode 100644 index 00000000000..820a1606408 --- /dev/null +++ b/site/public/v1/smartphones/phantom-9-dual-sim-td-lte-128gb-ab7/index.json @@ -0,0 +1,76 @@ +{ + "id": 4978, + "slug": "phantom-9-dual-sim-td-lte-128gb-ab7", + "name": "Phantom 9 Dual SIM TD-LTE 128GB AB7", + "brand": { + "id": 39, + "slug": "tecno", + "name": "Tecno Mobile", + "country": "CN", + "url": "/v1/brands/tecno" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2019-07-08", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": 1.5, + "camera": 6.3, + "battery": 7.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.836762", + "updated_at": "2026-06-19T00:43:44.836762" +} diff --git a/site/public/v1/smartphones/phantom-9-dual-sim-td-lte-128gb-ab7/score/index.json b/site/public/v1/smartphones/phantom-9-dual-sim-td-lte-128gb-ab7/score/index.json new file mode 100644 index 00000000000..58d574bab68 --- /dev/null +++ b/site/public/v1/smartphones/phantom-9-dual-sim-td-lte-128gb-ab7/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": 1.5, + "camera": 6.3, + "battery": 7.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/phone-2-global-td-lte-rz35-0259/index.json b/site/public/v1/smartphones/phone-2-global-td-lte-rz35-0259/index.json new file mode 100644 index 00000000000..d174b2b2bda --- /dev/null +++ b/site/public/v1/smartphones/phone-2-global-td-lte-rz35-0259/index.json @@ -0,0 +1,77 @@ +{ + "id": 3572, + "slug": "phone-2-global-td-lte-rz35-0259", + "name": "Phone 2 Global TD-LTE RZ35-0259", + "brand": { + "id": 86, + "slug": "razer", + "name": "Razer", + "country": "SG", + "url": "/v1/brands/razer" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.72, + "resolution": "1440x2560", + "refresh_hz": 120, + "type": "Color ASV TFT LCD display", + "ppi": 513 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 3.0, + "camera": 5.1, + "battery": 15.0, + "display": 63.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.616426", + "updated_at": "2026-06-19T00:43:44.616426" +} diff --git a/site/public/v1/smartphones/phone-2-global-td-lte-rz35-0259/score/index.json b/site/public/v1/smartphones/phone-2-global-td-lte-rz35-0259/score/index.json new file mode 100644 index 00000000000..6cf7c0b035f --- /dev/null +++ b/site/public/v1/smartphones/phone-2-global-td-lte-rz35-0259/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 3.0, + "camera": 5.1, + "battery": 15.0, + "display": 63.8, + "value": null +} diff --git a/site/public/v1/smartphones/pixel-3-phone-global-td-lte-128gb-g013a/index.json b/site/public/v1/smartphones/pixel-3-phone-global-td-lte-128gb-g013a/index.json new file mode 100644 index 00000000000..a3031ae02f0 --- /dev/null +++ b/site/public/v1/smartphones/pixel-3-phone-global-td-lte-128gb-g013a/index.json @@ -0,0 +1,76 @@ +{ + "id": 539, + "slug": "pixel-3-phone-global-td-lte-128gb-g013a", + "name": "Pixel 3 Phone Global TD-LTE 128GB G013A", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-10-17", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.47, + "resolution": "1080x2160", + "type": "Yes", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 2915, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 148.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 49.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.180932", + "updated_at": "2026-06-19T00:43:44.180932" +} diff --git a/site/public/v1/smartphones/pixel-3-phone-global-td-lte-128gb-g013a/score/index.json b/site/public/v1/smartphones/pixel-3-phone-global-td-lte-128gb-g013a/score/index.json new file mode 100644 index 00000000000..8f546463f8c --- /dev/null +++ b/site/public/v1/smartphones/pixel-3-phone-global-td-lte-128gb-g013a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 49.1, + "value": null +} diff --git a/site/public/v1/smartphones/pixel-3-phone-global-td-lte-64gb-g013a/index.json b/site/public/v1/smartphones/pixel-3-phone-global-td-lte-64gb-g013a/index.json new file mode 100644 index 00000000000..06827fec213 --- /dev/null +++ b/site/public/v1/smartphones/pixel-3-phone-global-td-lte-64gb-g013a/index.json @@ -0,0 +1,76 @@ +{ + "id": 540, + "slug": "pixel-3-phone-global-td-lte-64gb-g013a", + "name": "Pixel 3 Phone Global TD-LTE 64GB G013A", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-10-17", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.47, + "resolution": "1080x2160", + "type": "Yes", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 2915, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 148.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 49.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.180932", + "updated_at": "2026-06-19T00:43:44.180932" +} diff --git a/site/public/v1/smartphones/pixel-3-phone-global-td-lte-64gb-g013a/score/index.json b/site/public/v1/smartphones/pixel-3-phone-global-td-lte-64gb-g013a/score/index.json new file mode 100644 index 00000000000..8f546463f8c --- /dev/null +++ b/site/public/v1/smartphones/pixel-3-phone-global-td-lte-64gb-g013a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 49.1, + "value": null +} diff --git a/site/public/v1/smartphones/pixel-3-phone-td-lte-jp-64gb-g013b/index.json b/site/public/v1/smartphones/pixel-3-phone-td-lte-jp-64gb-g013b/index.json new file mode 100644 index 00000000000..2a1aac7e113 --- /dev/null +++ b/site/public/v1/smartphones/pixel-3-phone-td-lte-jp-64gb-g013b/index.json @@ -0,0 +1,76 @@ +{ + "id": 541, + "slug": "pixel-3-phone-td-lte-jp-64gb-g013b", + "name": "Pixel 3 Phone TD-LTE JP 64GB G013B", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-11-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.47, + "resolution": "1080x2160", + "type": "Yes", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 2915, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 148.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 49.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.181932", + "updated_at": "2026-06-19T00:43:44.181932" +} diff --git a/site/public/v1/smartphones/pixel-3-phone-td-lte-jp-64gb-g013b/score/index.json b/site/public/v1/smartphones/pixel-3-phone-td-lte-jp-64gb-g013b/score/index.json new file mode 100644 index 00000000000..8f546463f8c --- /dev/null +++ b/site/public/v1/smartphones/pixel-3-phone-td-lte-jp-64gb-g013b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 49.1, + "value": null +} diff --git a/site/public/v1/smartphones/pixel-3a-global-td-lte-g020f/index.json b/site/public/v1/smartphones/pixel-3a-global-td-lte-g020f/index.json new file mode 100644 index 00000000000..44dd5b1aaf3 --- /dev/null +++ b/site/public/v1/smartphones/pixel-3a-global-td-lte-g020f/index.json @@ -0,0 +1,76 @@ +{ + "id": 547, + "slug": "pixel-3a-global-td-lte-g020f", + "name": "Pixel 3a Global TD-LTE G020F", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 127, + "slug": "snapdragon-670", + "name": "Snapdragon 670", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 615", + "url": "/v1/socs/snapdragon-670" + }, + "release_date": "2019-05-08", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.6, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 147.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.7, + "performance": 0.0, + "camera": 5.1, + "battery": 0.6, + "display": 49.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.181932", + "updated_at": "2026-06-19T00:43:44.181932" +} diff --git a/site/public/v1/smartphones/pixel-3a-global-td-lte-g020f/score/index.json b/site/public/v1/smartphones/pixel-3a-global-td-lte-g020f/score/index.json new file mode 100644 index 00000000000..fb045255621 --- /dev/null +++ b/site/public/v1/smartphones/pixel-3a-global-td-lte-g020f/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.7, + "performance": 0.0, + "camera": 5.1, + "battery": 0.6, + "display": 49.1, + "value": null +} diff --git a/site/public/v1/smartphones/pixel-3a-td-lte-jp-g020h/index.json b/site/public/v1/smartphones/pixel-3a-td-lte-jp-g020h/index.json new file mode 100644 index 00000000000..8539e0416e4 --- /dev/null +++ b/site/public/v1/smartphones/pixel-3a-td-lte-jp-g020h/index.json @@ -0,0 +1,76 @@ +{ + "id": 548, + "slug": "pixel-3a-td-lte-jp-g020h", + "name": "Pixel 3a TD-LTE JP G020H", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 127, + "slug": "snapdragon-670", + "name": "Snapdragon 670", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 615", + "url": "/v1/socs/snapdragon-670" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.6, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 147.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.7, + "performance": 0.0, + "camera": 5.1, + "battery": 0.6, + "display": 49.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.181932", + "updated_at": "2026-06-19T00:43:44.181932" +} diff --git a/site/public/v1/smartphones/pixel-3a-td-lte-jp-g020h/score/index.json b/site/public/v1/smartphones/pixel-3a-td-lte-jp-g020h/score/index.json new file mode 100644 index 00000000000..fb045255621 --- /dev/null +++ b/site/public/v1/smartphones/pixel-3a-td-lte-jp-g020h/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.7, + "performance": 0.0, + "camera": 5.1, + "battery": 0.6, + "display": 49.1, + "value": null +} diff --git a/site/public/v1/smartphones/pixel-3a-td-lte-na-g020e/index.json b/site/public/v1/smartphones/pixel-3a-td-lte-na-g020e/index.json new file mode 100644 index 00000000000..e38b5070d36 --- /dev/null +++ b/site/public/v1/smartphones/pixel-3a-td-lte-na-g020e/index.json @@ -0,0 +1,76 @@ +{ + "id": 549, + "slug": "pixel-3a-td-lte-na-g020e", + "name": "Pixel 3a TD-LTE NA G020E", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 127, + "slug": "snapdragon-670", + "name": "Snapdragon 670", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 615", + "url": "/v1/socs/snapdragon-670" + }, + "release_date": "2019-05-08", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.6, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 147.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.7, + "performance": 0.0, + "camera": 5.1, + "battery": 0.6, + "display": 49.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.182932", + "updated_at": "2026-06-19T00:43:44.182932" +} diff --git a/site/public/v1/smartphones/pixel-3a-td-lte-na-g020e/score/index.json b/site/public/v1/smartphones/pixel-3a-td-lte-na-g020e/score/index.json new file mode 100644 index 00000000000..fb045255621 --- /dev/null +++ b/site/public/v1/smartphones/pixel-3a-td-lte-na-g020e/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.7, + "performance": 0.0, + "camera": 5.1, + "battery": 0.6, + "display": 49.1, + "value": null +} diff --git a/site/public/v1/smartphones/pixel-3a-td-lte-na-g020g/index.json b/site/public/v1/smartphones/pixel-3a-td-lte-na-g020g/index.json new file mode 100644 index 00000000000..c222e6e9355 --- /dev/null +++ b/site/public/v1/smartphones/pixel-3a-td-lte-na-g020g/index.json @@ -0,0 +1,76 @@ +{ + "id": 550, + "slug": "pixel-3a-td-lte-na-g020g", + "name": "Pixel 3a TD-LTE NA G020G", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 127, + "slug": "snapdragon-670", + "name": "Snapdragon 670", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 615", + "url": "/v1/socs/snapdragon-670" + }, + "release_date": "2019-05-08", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.6, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 147.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.7, + "performance": 0.0, + "camera": 5.1, + "battery": 0.6, + "display": 49.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.182932", + "updated_at": "2026-06-19T00:43:44.182932" +} diff --git a/site/public/v1/smartphones/pixel-3a-td-lte-na-g020g/score/index.json b/site/public/v1/smartphones/pixel-3a-td-lte-na-g020g/score/index.json new file mode 100644 index 00000000000..fb045255621 --- /dev/null +++ b/site/public/v1/smartphones/pixel-3a-td-lte-na-g020g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.7, + "performance": 0.0, + "camera": 5.1, + "battery": 0.6, + "display": 49.1, + "value": null +} diff --git a/site/public/v1/smartphones/pixel-3a-xl-global-td-lte-g020b/index.json b/site/public/v1/smartphones/pixel-3a-xl-global-td-lte-g020b/index.json new file mode 100644 index 00000000000..4f7b9b7163d --- /dev/null +++ b/site/public/v1/smartphones/pixel-3a-xl-global-td-lte-g020b/index.json @@ -0,0 +1,76 @@ +{ + "id": 551, + "slug": "pixel-3a-xl-global-td-lte-g020b", + "name": "Pixel 3a XL Global TD-LTE G020B", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 127, + "slug": "snapdragon-670", + "name": "Snapdragon 670", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 615", + "url": "/v1/socs/snapdragon-670" + }, + "release_date": "2019-05-08", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.4, + "performance": 0.0, + "camera": 5.1, + "battery": 11.1, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.182932", + "updated_at": "2026-06-19T00:43:44.182932" +} diff --git a/site/public/v1/smartphones/pixel-3a-xl-global-td-lte-g020b/score/index.json b/site/public/v1/smartphones/pixel-3a-xl-global-td-lte-g020b/score/index.json new file mode 100644 index 00000000000..6b1d0288a74 --- /dev/null +++ b/site/public/v1/smartphones/pixel-3a-xl-global-td-lte-g020b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.4, + "performance": 0.0, + "camera": 5.1, + "battery": 11.1, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/pixel-3a-xl-td-lte-jp-g020d/index.json b/site/public/v1/smartphones/pixel-3a-xl-td-lte-jp-g020d/index.json new file mode 100644 index 00000000000..7d3b1ca24e9 --- /dev/null +++ b/site/public/v1/smartphones/pixel-3a-xl-td-lte-jp-g020d/index.json @@ -0,0 +1,76 @@ +{ + "id": 552, + "slug": "pixel-3a-xl-td-lte-jp-g020d", + "name": "Pixel 3a XL TD-LTE JP G020D", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 127, + "slug": "snapdragon-670", + "name": "Snapdragon 670", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 615", + "url": "/v1/socs/snapdragon-670" + }, + "release_date": "2019-05-11", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.4, + "performance": 0.0, + "camera": 5.1, + "battery": 11.1, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.182932", + "updated_at": "2026-06-19T00:43:44.182932" +} diff --git a/site/public/v1/smartphones/pixel-3a-xl-td-lte-jp-g020d/score/index.json b/site/public/v1/smartphones/pixel-3a-xl-td-lte-jp-g020d/score/index.json new file mode 100644 index 00000000000..6b1d0288a74 --- /dev/null +++ b/site/public/v1/smartphones/pixel-3a-xl-td-lte-jp-g020d/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.4, + "performance": 0.0, + "camera": 5.1, + "battery": 11.1, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/pixel-3a-xl-td-lte-na-g020a/index.json b/site/public/v1/smartphones/pixel-3a-xl-td-lte-na-g020a/index.json new file mode 100644 index 00000000000..d6264ae0826 --- /dev/null +++ b/site/public/v1/smartphones/pixel-3a-xl-td-lte-na-g020a/index.json @@ -0,0 +1,76 @@ +{ + "id": 553, + "slug": "pixel-3a-xl-td-lte-na-g020a", + "name": "Pixel 3a XL TD-LTE NA G020A", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 127, + "slug": "snapdragon-670", + "name": "Snapdragon 670", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 615", + "url": "/v1/socs/snapdragon-670" + }, + "release_date": "2019-05-08", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.4, + "performance": 0.0, + "camera": 5.1, + "battery": 11.1, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.182932", + "updated_at": "2026-06-19T00:43:44.182932" +} diff --git a/site/public/v1/smartphones/pixel-3a-xl-td-lte-na-g020a/score/index.json b/site/public/v1/smartphones/pixel-3a-xl-td-lte-na-g020a/score/index.json new file mode 100644 index 00000000000..6b1d0288a74 --- /dev/null +++ b/site/public/v1/smartphones/pixel-3a-xl-td-lte-na-g020a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.4, + "performance": 0.0, + "camera": 5.1, + "battery": 11.1, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/pixel-3a-xl-td-lte-na-g020c/index.json b/site/public/v1/smartphones/pixel-3a-xl-td-lte-na-g020c/index.json new file mode 100644 index 00000000000..d7fe0d06beb --- /dev/null +++ b/site/public/v1/smartphones/pixel-3a-xl-td-lte-na-g020c/index.json @@ -0,0 +1,76 @@ +{ + "id": 554, + "slug": "pixel-3a-xl-td-lte-na-g020c", + "name": "Pixel 3a XL TD-LTE NA G020C", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 127, + "slug": "snapdragon-670", + "name": "Snapdragon 670", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 615", + "url": "/v1/socs/snapdragon-670" + }, + "release_date": "2019-05-08", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.4, + "performance": 0.0, + "camera": 5.1, + "battery": 11.1, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.182932", + "updated_at": "2026-06-19T00:43:44.182932" +} diff --git a/site/public/v1/smartphones/pixel-3a-xl-td-lte-na-g020c/score/index.json b/site/public/v1/smartphones/pixel-3a-xl-td-lte-na-g020c/score/index.json new file mode 100644 index 00000000000..6b1d0288a74 --- /dev/null +++ b/site/public/v1/smartphones/pixel-3a-xl-td-lte-na-g020c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.4, + "performance": 0.0, + "camera": 5.1, + "battery": 11.1, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/pixel-4-global-td-lte-128gb-g020m/index.json b/site/public/v1/smartphones/pixel-4-global-td-lte-128gb-g020m/index.json new file mode 100644 index 00000000000..2c057847d5b --- /dev/null +++ b/site/public/v1/smartphones/pixel-4-global-td-lte-128gb-g020m/index.json @@ -0,0 +1,77 @@ +{ + "id": 557, + "slug": "pixel-4-global-td-lte-128gb-g020m", + "name": "Pixel 4 Global TD-LTE 128GB G020M", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-10-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2280", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 443 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 2800, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.5, + "performance": 0.0, + "camera": 5.1, + "battery": 0.6, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.182932", + "updated_at": "2026-06-19T00:43:44.182932" +} diff --git a/site/public/v1/smartphones/pixel-4-global-td-lte-128gb-g020m/score/index.json b/site/public/v1/smartphones/pixel-4-global-td-lte-128gb-g020m/score/index.json new file mode 100644 index 00000000000..72ca137bd32 --- /dev/null +++ b/site/public/v1/smartphones/pixel-4-global-td-lte-128gb-g020m/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.5, + "performance": 0.0, + "camera": 5.1, + "battery": 0.6, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/pixel-4-global-td-lte-64gb-g020m/index.json b/site/public/v1/smartphones/pixel-4-global-td-lte-64gb-g020m/index.json new file mode 100644 index 00000000000..0ac88021edb --- /dev/null +++ b/site/public/v1/smartphones/pixel-4-global-td-lte-64gb-g020m/index.json @@ -0,0 +1,77 @@ +{ + "id": 558, + "slug": "pixel-4-global-td-lte-64gb-g020m", + "name": "Pixel 4 Global TD-LTE 64GB G020M", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-10-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2280", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 443 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 2800, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.5, + "performance": 0.0, + "camera": 5.1, + "battery": 0.6, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.183932", + "updated_at": "2026-06-19T00:43:44.183932" +} diff --git a/site/public/v1/smartphones/pixel-4-global-td-lte-64gb-g020m/score/index.json b/site/public/v1/smartphones/pixel-4-global-td-lte-64gb-g020m/score/index.json new file mode 100644 index 00000000000..72ca137bd32 --- /dev/null +++ b/site/public/v1/smartphones/pixel-4-global-td-lte-64gb-g020m/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.5, + "performance": 0.0, + "camera": 5.1, + "battery": 0.6, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/pixel-4-jp-td-lte-64gb-g020n/index.json b/site/public/v1/smartphones/pixel-4-jp-td-lte-64gb-g020n/index.json new file mode 100644 index 00000000000..f1518c2d3b9 --- /dev/null +++ b/site/public/v1/smartphones/pixel-4-jp-td-lte-64gb-g020n/index.json @@ -0,0 +1,77 @@ +{ + "id": 559, + "slug": "pixel-4-jp-td-lte-64gb-g020n", + "name": "Pixel 4 JP TD-LTE 64GB G020N", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-10-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2280", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 443 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 2800, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.5, + "performance": 0.0, + "camera": 5.1, + "battery": 0.6, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.183932", + "updated_at": "2026-06-19T00:43:44.183932" +} diff --git a/site/public/v1/smartphones/pixel-4-jp-td-lte-64gb-g020n/score/index.json b/site/public/v1/smartphones/pixel-4-jp-td-lte-64gb-g020n/score/index.json new file mode 100644 index 00000000000..72ca137bd32 --- /dev/null +++ b/site/public/v1/smartphones/pixel-4-jp-td-lte-64gb-g020n/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.5, + "performance": 0.0, + "camera": 5.1, + "battery": 0.6, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/pixel-4-us-td-lte-128gb-g020i/index.json b/site/public/v1/smartphones/pixel-4-us-td-lte-128gb-g020i/index.json new file mode 100644 index 00000000000..0e3c1144126 --- /dev/null +++ b/site/public/v1/smartphones/pixel-4-us-td-lte-128gb-g020i/index.json @@ -0,0 +1,77 @@ +{ + "id": 560, + "slug": "pixel-4-us-td-lte-128gb-g020i", + "name": "Pixel 4 US TD-LTE 128GB G020I", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-10-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2280", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 443 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 2800, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.5, + "performance": 0.0, + "camera": 5.1, + "battery": 0.6, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.183932", + "updated_at": "2026-06-19T00:43:44.183932" +} diff --git a/site/public/v1/smartphones/pixel-4-us-td-lte-128gb-g020i/score/index.json b/site/public/v1/smartphones/pixel-4-us-td-lte-128gb-g020i/score/index.json new file mode 100644 index 00000000000..72ca137bd32 --- /dev/null +++ b/site/public/v1/smartphones/pixel-4-us-td-lte-128gb-g020i/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.5, + "performance": 0.0, + "camera": 5.1, + "battery": 0.6, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/pixel-4-us-td-lte-64gb-g020i/index.json b/site/public/v1/smartphones/pixel-4-us-td-lte-64gb-g020i/index.json new file mode 100644 index 00000000000..e4ddcf2e7d4 --- /dev/null +++ b/site/public/v1/smartphones/pixel-4-us-td-lte-64gb-g020i/index.json @@ -0,0 +1,77 @@ +{ + "id": 561, + "slug": "pixel-4-us-td-lte-64gb-g020i", + "name": "Pixel 4 US TD-LTE 64GB G020I", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-10-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2280", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 443 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 2800, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 12.5, + "performance": 0.0, + "camera": 5.1, + "battery": 0.6, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.183932", + "updated_at": "2026-06-19T00:43:44.183932" +} diff --git a/site/public/v1/smartphones/pixel-4-us-td-lte-64gb-g020i/score/index.json b/site/public/v1/smartphones/pixel-4-us-td-lte-64gb-g020i/score/index.json new file mode 100644 index 00000000000..72ca137bd32 --- /dev/null +++ b/site/public/v1/smartphones/pixel-4-us-td-lte-64gb-g020i/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 12.5, + "performance": 0.0, + "camera": 5.1, + "battery": 0.6, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/pixel-4-xl-global-td-lte-128gb-g020p/index.json b/site/public/v1/smartphones/pixel-4-xl-global-td-lte-128gb-g020p/index.json new file mode 100644 index 00000000000..e9ddcd18d04 --- /dev/null +++ b/site/public/v1/smartphones/pixel-4-xl-global-td-lte-128gb-g020p/index.json @@ -0,0 +1,77 @@ +{ + "id": 562, + "slug": "pixel-4-xl-global-td-lte-128gb-g020p", + "name": "Pixel 4 XL Global TD-LTE 128GB G020P", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-10-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1440x3040", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 534 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.4, + "performance": 0.0, + "camera": 5.1, + "battery": 11.1, + "display": 53.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.183932", + "updated_at": "2026-06-19T00:43:44.183932" +} diff --git a/site/public/v1/smartphones/pixel-4-xl-global-td-lte-128gb-g020p/score/index.json b/site/public/v1/smartphones/pixel-4-xl-global-td-lte-128gb-g020p/score/index.json new file mode 100644 index 00000000000..aa2d1ee7173 --- /dev/null +++ b/site/public/v1/smartphones/pixel-4-xl-global-td-lte-128gb-g020p/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.4, + "performance": 0.0, + "camera": 5.1, + "battery": 11.1, + "display": 53.4, + "value": null +} diff --git a/site/public/v1/smartphones/pixel-4-xl-global-td-lte-64gb-g020p/index.json b/site/public/v1/smartphones/pixel-4-xl-global-td-lte-64gb-g020p/index.json new file mode 100644 index 00000000000..aa9f7974527 --- /dev/null +++ b/site/public/v1/smartphones/pixel-4-xl-global-td-lte-64gb-g020p/index.json @@ -0,0 +1,77 @@ +{ + "id": 563, + "slug": "pixel-4-xl-global-td-lte-64gb-g020p", + "name": "Pixel 4 XL Global TD-LTE 64GB G020P", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-10-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1440x3040", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 534 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.4, + "performance": 0.0, + "camera": 5.1, + "battery": 11.1, + "display": 53.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.183932", + "updated_at": "2026-06-19T00:43:44.183932" +} diff --git a/site/public/v1/smartphones/pixel-4-xl-global-td-lte-64gb-g020p/score/index.json b/site/public/v1/smartphones/pixel-4-xl-global-td-lte-64gb-g020p/score/index.json new file mode 100644 index 00000000000..aa2d1ee7173 --- /dev/null +++ b/site/public/v1/smartphones/pixel-4-xl-global-td-lte-64gb-g020p/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.4, + "performance": 0.0, + "camera": 5.1, + "battery": 11.1, + "display": 53.4, + "value": null +} diff --git a/site/public/v1/smartphones/pixel-4-xl-jp-td-lte-64gb-g020q/index.json b/site/public/v1/smartphones/pixel-4-xl-jp-td-lte-64gb-g020q/index.json new file mode 100644 index 00000000000..3248b540d0f --- /dev/null +++ b/site/public/v1/smartphones/pixel-4-xl-jp-td-lte-64gb-g020q/index.json @@ -0,0 +1,77 @@ +{ + "id": 564, + "slug": "pixel-4-xl-jp-td-lte-64gb-g020q", + "name": "Pixel 4 XL JP TD-LTE 64GB G020Q", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-10-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1440x3040", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 534 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.4, + "performance": 0.0, + "camera": 5.1, + "battery": 11.1, + "display": 53.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.183932", + "updated_at": "2026-06-19T00:43:44.183932" +} diff --git a/site/public/v1/smartphones/pixel-4-xl-jp-td-lte-64gb-g020q/score/index.json b/site/public/v1/smartphones/pixel-4-xl-jp-td-lte-64gb-g020q/score/index.json new file mode 100644 index 00000000000..aa2d1ee7173 --- /dev/null +++ b/site/public/v1/smartphones/pixel-4-xl-jp-td-lte-64gb-g020q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.4, + "performance": 0.0, + "camera": 5.1, + "battery": 11.1, + "display": 53.4, + "value": null +} diff --git a/site/public/v1/smartphones/pixel-4-xl-us-td-lte-128gb-g020j/index.json b/site/public/v1/smartphones/pixel-4-xl-us-td-lte-128gb-g020j/index.json new file mode 100644 index 00000000000..5095f3b0b7c --- /dev/null +++ b/site/public/v1/smartphones/pixel-4-xl-us-td-lte-128gb-g020j/index.json @@ -0,0 +1,77 @@ +{ + "id": 565, + "slug": "pixel-4-xl-us-td-lte-128gb-g020j", + "name": "Pixel 4 XL US TD-LTE 128GB G020J", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-10-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1440x3040", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 534 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.4, + "performance": 0.0, + "camera": 5.1, + "battery": 11.1, + "display": 53.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.183932", + "updated_at": "2026-06-19T00:43:44.183932" +} diff --git a/site/public/v1/smartphones/pixel-4-xl-us-td-lte-128gb-g020j/score/index.json b/site/public/v1/smartphones/pixel-4-xl-us-td-lte-128gb-g020j/score/index.json new file mode 100644 index 00000000000..aa2d1ee7173 --- /dev/null +++ b/site/public/v1/smartphones/pixel-4-xl-us-td-lte-128gb-g020j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.4, + "performance": 0.0, + "camera": 5.1, + "battery": 11.1, + "display": 53.4, + "value": null +} diff --git a/site/public/v1/smartphones/pixel-4-xl-us-td-lte-64gb-g020j/index.json b/site/public/v1/smartphones/pixel-4-xl-us-td-lte-64gb-g020j/index.json new file mode 100644 index 00000000000..fd5ebb89bcc --- /dev/null +++ b/site/public/v1/smartphones/pixel-4-xl-us-td-lte-64gb-g020j/index.json @@ -0,0 +1,77 @@ +{ + "id": 566, + "slug": "pixel-4-xl-us-td-lte-64gb-g020j", + "name": "Pixel 4 XL US TD-LTE 64GB G020J", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-10-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1440x3040", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 534 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.4, + "performance": 0.0, + "camera": 5.1, + "battery": 11.1, + "display": 53.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.184932", + "updated_at": "2026-06-19T00:43:44.184932" +} diff --git a/site/public/v1/smartphones/pixel-4-xl-us-td-lte-64gb-g020j/score/index.json b/site/public/v1/smartphones/pixel-4-xl-us-td-lte-64gb-g020j/score/index.json new file mode 100644 index 00000000000..aa2d1ee7173 --- /dev/null +++ b/site/public/v1/smartphones/pixel-4-xl-us-td-lte-64gb-g020j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.4, + "performance": 0.0, + "camera": 5.1, + "battery": 11.1, + "display": 53.4, + "value": null +} diff --git a/site/public/v1/smartphones/pixel-4a-5g-global-td-lte-128gb-g025i/index.json b/site/public/v1/smartphones/pixel-4a-5g-global-td-lte-128gb-g025i/index.json new file mode 100644 index 00000000000..99b339f569f --- /dev/null +++ b/site/public/v1/smartphones/pixel-4a-5g-global-td-lte-128gb-g025i/index.json @@ -0,0 +1,76 @@ +{ + "id": 570, + "slug": "pixel-4a-5g-global-td-lte-128gb-g025i", + "name": "Pixel 4a 5G Global TD-LTE 128GB G025I", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-11-01", + "msrp_usd": 499, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.22, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 414 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3885, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 5.1, + "battery": 13.9, + "display": 46.4, + "value": 50.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.184932", + "updated_at": "2026-06-19T00:43:44.184932" +} diff --git a/site/public/v1/smartphones/pixel-4a-5g-global-td-lte-128gb-g025i/score/index.json b/site/public/v1/smartphones/pixel-4a-5g-global-td-lte-128gb-g025i/score/index.json new file mode 100644 index 00000000000..c83bb934b4c --- /dev/null +++ b/site/public/v1/smartphones/pixel-4a-5g-global-td-lte-128gb-g025i/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 5.1, + "battery": 13.9, + "display": 46.4, + "value": 50.7 +} diff --git a/site/public/v1/smartphones/pixel-4a-5g-td-lte-jp-128gb-g025h/index.json b/site/public/v1/smartphones/pixel-4a-5g-td-lte-jp-128gb-g025h/index.json new file mode 100644 index 00000000000..b9442b2a52a --- /dev/null +++ b/site/public/v1/smartphones/pixel-4a-5g-td-lte-jp-128gb-g025h/index.json @@ -0,0 +1,76 @@ +{ + "id": 571, + "slug": "pixel-4a-5g-td-lte-jp-128gb-g025h", + "name": "Pixel 4a 5G TD-LTE JP 128GB G025H", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-10-16", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.22, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 414 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3885, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 5.1, + "battery": 13.9, + "display": 46.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.184932", + "updated_at": "2026-06-19T00:43:44.184932" +} diff --git a/site/public/v1/smartphones/pixel-4a-5g-td-lte-jp-128gb-g025h/score/index.json b/site/public/v1/smartphones/pixel-4a-5g-td-lte-jp-128gb-g025h/score/index.json new file mode 100644 index 00000000000..09e5d501b3c --- /dev/null +++ b/site/public/v1/smartphones/pixel-4a-5g-td-lte-jp-128gb-g025h/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 5.1, + "battery": 13.9, + "display": 46.4, + "value": null +} diff --git a/site/public/v1/smartphones/pixel-4a-5g-td-lte-us-128gb-g025e/index.json b/site/public/v1/smartphones/pixel-4a-5g-td-lte-us-128gb-g025e/index.json new file mode 100644 index 00000000000..c76a82432cf --- /dev/null +++ b/site/public/v1/smartphones/pixel-4a-5g-td-lte-us-128gb-g025e/index.json @@ -0,0 +1,76 @@ +{ + "id": 572, + "slug": "pixel-4a-5g-td-lte-us-128gb-g025e", + "name": "Pixel 4a 5G TD-LTE US 128GB G025E", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-10-19", + "msrp_usd": 499, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.22, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 414 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3885, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 5.1, + "battery": 13.9, + "display": 46.4, + "value": 50.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.184932", + "updated_at": "2026-06-19T00:43:44.184932" +} diff --git a/site/public/v1/smartphones/pixel-4a-5g-td-lte-us-128gb-g025e/score/index.json b/site/public/v1/smartphones/pixel-4a-5g-td-lte-us-128gb-g025e/score/index.json new file mode 100644 index 00000000000..c83bb934b4c --- /dev/null +++ b/site/public/v1/smartphones/pixel-4a-5g-td-lte-us-128gb-g025e/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 5.1, + "battery": 13.9, + "display": 46.4, + "value": 50.7 +} diff --git a/site/public/v1/smartphones/pixel-4a-5g-uw-td-lte-us-128gb-g6qu3/index.json b/site/public/v1/smartphones/pixel-4a-5g-uw-td-lte-us-128gb-g6qu3/index.json new file mode 100644 index 00000000000..4b31248b253 --- /dev/null +++ b/site/public/v1/smartphones/pixel-4a-5g-uw-td-lte-us-128gb-g6qu3/index.json @@ -0,0 +1,76 @@ +{ + "id": 573, + "slug": "pixel-4a-5g-uw-td-lte-us-128gb-g6qu3", + "name": "Pixel 4a 5G UW TD-LTE US 128GB G6QU3", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-11-06", + "msrp_usd": 499, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.22, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 414 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3885, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 5.1, + "battery": 13.9, + "display": 46.4, + "value": 50.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.184932", + "updated_at": "2026-06-19T00:43:44.184932" +} diff --git a/site/public/v1/smartphones/pixel-4a-5g-uw-td-lte-us-128gb-g6qu3/score/index.json b/site/public/v1/smartphones/pixel-4a-5g-uw-td-lte-us-128gb-g6qu3/score/index.json new file mode 100644 index 00000000000..c83bb934b4c --- /dev/null +++ b/site/public/v1/smartphones/pixel-4a-5g-uw-td-lte-us-128gb-g6qu3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 5.1, + "battery": 13.9, + "display": 46.4, + "value": 50.7 +} diff --git a/site/public/v1/smartphones/pixel-4a-global-td-lte-128gb-g025n/index.json b/site/public/v1/smartphones/pixel-4a-global-td-lte-128gb-g025n/index.json new file mode 100644 index 00000000000..029ba47ec31 --- /dev/null +++ b/site/public/v1/smartphones/pixel-4a-global-td-lte-128gb-g025n/index.json @@ -0,0 +1,76 @@ +{ + "id": 575, + "slug": "pixel-4a-global-td-lte-128gb-g025n", + "name": "Pixel 4a Global TD-LTE 128GB G025N", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2020-08-01", + "msrp_usd": 349, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.81, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 444 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3140, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 143.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 1.5, + "camera": 5.1, + "battery": 2.7, + "display": 49.4, + "value": 55.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.184932", + "updated_at": "2026-06-19T00:43:44.185932" +} diff --git a/site/public/v1/smartphones/pixel-4a-global-td-lte-128gb-g025n/score/index.json b/site/public/v1/smartphones/pixel-4a-global-td-lte-128gb-g025n/score/index.json new file mode 100644 index 00000000000..46ba3865f2b --- /dev/null +++ b/site/public/v1/smartphones/pixel-4a-global-td-lte-128gb-g025n/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 1.5, + "camera": 5.1, + "battery": 2.7, + "display": 49.4, + "value": 55.5 +} diff --git a/site/public/v1/smartphones/pixel-4a-td-lte-us-128gb-g025j/index.json b/site/public/v1/smartphones/pixel-4a-td-lte-us-128gb-g025j/index.json new file mode 100644 index 00000000000..af14d90f7a4 --- /dev/null +++ b/site/public/v1/smartphones/pixel-4a-td-lte-us-128gb-g025j/index.json @@ -0,0 +1,76 @@ +{ + "id": 576, + "slug": "pixel-4a-td-lte-us-128gb-g025j", + "name": "Pixel 4a TD-LTE US 128GB G025J", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2020-08-21", + "msrp_usd": 350, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.81, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 444 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3140, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 143.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 1.5, + "camera": 5.1, + "battery": 2.7, + "display": 49.4, + "value": 55.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.185932", + "updated_at": "2026-06-19T00:43:44.185932" +} diff --git a/site/public/v1/smartphones/pixel-4a-td-lte-us-128gb-g025j/score/index.json b/site/public/v1/smartphones/pixel-4a-td-lte-us-128gb-g025j/score/index.json new file mode 100644 index 00000000000..46ba3865f2b --- /dev/null +++ b/site/public/v1/smartphones/pixel-4a-td-lte-us-128gb-g025j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 1.5, + "camera": 5.1, + "battery": 2.7, + "display": 49.4, + "value": 55.5 +} diff --git a/site/public/v1/smartphones/pixel-5-5g-global-td-lte-128gb-gtt9q/index.json b/site/public/v1/smartphones/pixel-5-5g-global-td-lte-128gb-gtt9q/index.json new file mode 100644 index 00000000000..f3cb8adb5b1 --- /dev/null +++ b/site/public/v1/smartphones/pixel-5-5g-global-td-lte-128gb-gtt9q/index.json @@ -0,0 +1,77 @@ +{ + "id": 578, + "slug": "pixel-5-5g-global-td-lte-128gb-gtt9q", + "name": "Pixel 5 5G Global TD-LTE 128GB GTT9Q", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-10-19", + "msrp_usd": 599, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.94, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 434 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 151.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 3.0, + "camera": 5.1, + "battery": 15.6, + "display": 43.4, + "value": 46.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.185932", + "updated_at": "2026-06-19T00:43:44.185932" +} diff --git a/site/public/v1/smartphones/pixel-5-5g-global-td-lte-128gb-gtt9q/score/index.json b/site/public/v1/smartphones/pixel-5-5g-global-td-lte-128gb-gtt9q/score/index.json new file mode 100644 index 00000000000..39e806b4da2 --- /dev/null +++ b/site/public/v1/smartphones/pixel-5-5g-global-td-lte-128gb-gtt9q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 3.0, + "camera": 5.1, + "battery": 15.6, + "display": 43.4, + "value": 46.9 +} diff --git a/site/public/v1/smartphones/pixel-5-5g-td-lte-jp-128gb-g5nz6/index.json b/site/public/v1/smartphones/pixel-5-5g-td-lte-jp-128gb-g5nz6/index.json new file mode 100644 index 00000000000..943a2b3b70d --- /dev/null +++ b/site/public/v1/smartphones/pixel-5-5g-td-lte-jp-128gb-g5nz6/index.json @@ -0,0 +1,77 @@ +{ + "id": 579, + "slug": "pixel-5-5g-td-lte-jp-128gb-g5nz6", + "name": "Pixel 5 5G TD-LTE JP 128GB G5NZ6", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-10-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.94, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 434 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 151.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 3.0, + "camera": 5.1, + "battery": 15.6, + "display": 43.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.185932", + "updated_at": "2026-06-19T00:43:44.185932" +} diff --git a/site/public/v1/smartphones/pixel-5-5g-td-lte-jp-128gb-g5nz6/score/index.json b/site/public/v1/smartphones/pixel-5-5g-td-lte-jp-128gb-g5nz6/score/index.json new file mode 100644 index 00000000000..313143f3334 --- /dev/null +++ b/site/public/v1/smartphones/pixel-5-5g-td-lte-jp-128gb-g5nz6/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 3.0, + "camera": 5.1, + "battery": 15.6, + "display": 43.4, + "value": null +} diff --git a/site/public/v1/smartphones/pixel-5-5g-uw-td-lte-us-128gb-gd1yq/index.json b/site/public/v1/smartphones/pixel-5-5g-uw-td-lte-us-128gb-gd1yq/index.json new file mode 100644 index 00000000000..80c589e0d10 --- /dev/null +++ b/site/public/v1/smartphones/pixel-5-5g-uw-td-lte-us-128gb-gd1yq/index.json @@ -0,0 +1,77 @@ +{ + "id": 580, + "slug": "pixel-5-5g-uw-td-lte-us-128gb-gd1yq", + "name": "Pixel 5 5G UW TD-LTE US 128GB GD1YQ", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-10-19", + "msrp_usd": 699, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.94, + "resolution": "1080x2340", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 434 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 151.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 3.0, + "camera": 5.1, + "battery": 15.6, + "display": 43.4, + "value": 43.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.185932", + "updated_at": "2026-06-19T00:43:44.185932" +} diff --git a/site/public/v1/smartphones/pixel-5-5g-uw-td-lte-us-128gb-gd1yq/score/index.json b/site/public/v1/smartphones/pixel-5-5g-uw-td-lte-us-128gb-gd1yq/score/index.json new file mode 100644 index 00000000000..965e46bfcdc --- /dev/null +++ b/site/public/v1/smartphones/pixel-5-5g-uw-td-lte-us-128gb-gd1yq/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 3.0, + "camera": 5.1, + "battery": 15.6, + "display": 43.4, + "value": 43.0 +} diff --git a/site/public/v1/smartphones/pixel-5a-5g-td-lte-jp-128gb-g4s1m/index.json b/site/public/v1/smartphones/pixel-5a-5g-td-lte-jp-128gb-g4s1m/index.json new file mode 100644 index 00000000000..dddedf9573f --- /dev/null +++ b/site/public/v1/smartphones/pixel-5a-5g-td-lte-jp-128gb-g4s1m/index.json @@ -0,0 +1,76 @@ +{ + "id": 582, + "slug": "pixel-5a-5g-td-lte-jp-128gb-g4s1m", + "name": "Pixel 5a 5G TD-LTE JP 128GB G4S1M", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2021-08-26", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.34, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4680, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 5.1, + "battery": 25.8, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.185932", + "updated_at": "2026-06-19T00:43:44.185932" +} diff --git a/site/public/v1/smartphones/pixel-5a-5g-td-lte-jp-128gb-g4s1m/score/index.json b/site/public/v1/smartphones/pixel-5a-5g-td-lte-jp-128gb-g4s1m/score/index.json new file mode 100644 index 00000000000..f36d21a1002 --- /dev/null +++ b/site/public/v1/smartphones/pixel-5a-5g-td-lte-jp-128gb-g4s1m/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 5.1, + "battery": 25.8, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/pixel-5a-5g-td-lte-us-128gb-g1f8f/index.json b/site/public/v1/smartphones/pixel-5a-5g-td-lte-us-128gb-g1f8f/index.json new file mode 100644 index 00000000000..c8c7e781683 --- /dev/null +++ b/site/public/v1/smartphones/pixel-5a-5g-td-lte-us-128gb-g1f8f/index.json @@ -0,0 +1,76 @@ +{ + "id": 583, + "slug": "pixel-5a-5g-td-lte-us-128gb-g1f8f", + "name": "Pixel 5a 5G TD-LTE US 128GB G1F8F", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2021-08-26", + "msrp_usd": 449, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.34, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 415 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4680, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 5.1, + "battery": 25.8, + "display": 46.5, + "value": 54.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.185932", + "updated_at": "2026-06-19T00:43:44.185932" +} diff --git a/site/public/v1/smartphones/pixel-5a-5g-td-lte-us-128gb-g1f8f/score/index.json b/site/public/v1/smartphones/pixel-5a-5g-td-lte-us-128gb-g1f8f/score/index.json new file mode 100644 index 00000000000..20198a1d73a --- /dev/null +++ b/site/public/v1/smartphones/pixel-5a-5g-td-lte-us-128gb-g1f8f/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 5.1, + "battery": 25.8, + "display": 46.5, + "value": 54.1 +} diff --git a/site/public/v1/smartphones/pixel-6-5g-global-td-lte-128gb-gb7n6/index.json b/site/public/v1/smartphones/pixel-6-5g-global-td-lte-128gb-gb7n6/index.json new file mode 100644 index 00000000000..abe63062a63 --- /dev/null +++ b/site/public/v1/smartphones/pixel-6-5g-global-td-lte-128gb-gb7n6/index.json @@ -0,0 +1,77 @@ +{ + "id": 585, + "slug": "pixel-6-5g-global-td-lte-128gb-gb7n6", + "name": "Pixel 6 5G Global TD-LTE 128GB GB7N6", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 17, + "slug": "google-tensor", + "name": "Google Tensor", + "manufacturer": { + "slug": "google", + "name": "Google", + "url": "/v1/brands/google" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP20", + "url": "/v1/socs/google-tensor" + }, + "release_date": "2021-10-28", + "msrp_usd": 599, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 410 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4614, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 207.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.8, + "performance": 3.7, + "camera": 17.2, + "battery": 37.1, + "display": 41.0, + "value": 50.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.186931", + "updated_at": "2026-06-19T00:43:44.186931" +} diff --git a/site/public/v1/smartphones/pixel-6-5g-global-td-lte-128gb-gb7n6/score/index.json b/site/public/v1/smartphones/pixel-6-5g-global-td-lte-128gb-gb7n6/score/index.json new file mode 100644 index 00000000000..09bbb930216 --- /dev/null +++ b/site/public/v1/smartphones/pixel-6-5g-global-td-lte-128gb-gb7n6/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.8, + "performance": 3.7, + "camera": 17.2, + "battery": 37.1, + "display": 41.0, + "value": 50.9 +} diff --git a/site/public/v1/smartphones/pixel-6-5g-global-td-lte-256gb-gb7n6/index.json b/site/public/v1/smartphones/pixel-6-5g-global-td-lte-256gb-gb7n6/index.json new file mode 100644 index 00000000000..ab33978edc1 --- /dev/null +++ b/site/public/v1/smartphones/pixel-6-5g-global-td-lte-256gb-gb7n6/index.json @@ -0,0 +1,77 @@ +{ + "id": 586, + "slug": "pixel-6-5g-global-td-lte-256gb-gb7n6", + "name": "Pixel 6 5G Global TD-LTE 256GB GB7N6", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 17, + "slug": "google-tensor", + "name": "Google Tensor", + "manufacturer": { + "slug": "google", + "name": "Google", + "url": "/v1/brands/google" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP20", + "url": "/v1/socs/google-tensor" + }, + "release_date": "2021-10-28", + "msrp_usd": 1129, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 410 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4614, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 207.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.8, + "performance": 3.7, + "camera": 17.2, + "battery": 37.1, + "display": 41.0, + "value": 30.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.186931", + "updated_at": "2026-06-19T00:43:44.186931" +} diff --git a/site/public/v1/smartphones/pixel-6-5g-global-td-lte-256gb-gb7n6/score/index.json b/site/public/v1/smartphones/pixel-6-5g-global-td-lte-256gb-gb7n6/score/index.json new file mode 100644 index 00000000000..c706dc30331 --- /dev/null +++ b/site/public/v1/smartphones/pixel-6-5g-global-td-lte-256gb-gb7n6/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.8, + "performance": 3.7, + "camera": 17.2, + "battery": 37.1, + "display": 41.0, + "value": 30.5 +} diff --git a/site/public/v1/smartphones/pixel-6-5g-uw-td-lte-jp-128gb-gr1yh/index.json b/site/public/v1/smartphones/pixel-6-5g-uw-td-lte-jp-128gb-gr1yh/index.json new file mode 100644 index 00000000000..fd6cf3e0e91 --- /dev/null +++ b/site/public/v1/smartphones/pixel-6-5g-uw-td-lte-jp-128gb-gr1yh/index.json @@ -0,0 +1,77 @@ +{ + "id": 587, + "slug": "pixel-6-5g-uw-td-lte-jp-128gb-gr1yh", + "name": "Pixel 6 5G UW TD-LTE JP 128GB GR1YH", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 17, + "slug": "google-tensor", + "name": "Google Tensor", + "manufacturer": { + "slug": "google", + "name": "Google", + "url": "/v1/brands/google" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP20", + "url": "/v1/socs/google-tensor" + }, + "release_date": "2021-10-28", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 410 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4614, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 207.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.8, + "performance": 3.7, + "camera": 17.2, + "battery": 37.1, + "display": 41.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.186931", + "updated_at": "2026-06-19T00:43:44.186931" +} diff --git a/site/public/v1/smartphones/pixel-6-5g-uw-td-lte-jp-128gb-gr1yh/score/index.json b/site/public/v1/smartphones/pixel-6-5g-uw-td-lte-jp-128gb-gr1yh/score/index.json new file mode 100644 index 00000000000..0ca8c465b6d --- /dev/null +++ b/site/public/v1/smartphones/pixel-6-5g-uw-td-lte-jp-128gb-gr1yh/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.8, + "performance": 3.7, + "camera": 17.2, + "battery": 37.1, + "display": 41.0, + "value": null +} diff --git a/site/public/v1/smartphones/pixel-6-5g-uw-td-lte-jp-256gb-gr1yh/index.json b/site/public/v1/smartphones/pixel-6-5g-uw-td-lte-jp-256gb-gr1yh/index.json new file mode 100644 index 00000000000..ab55f765a87 --- /dev/null +++ b/site/public/v1/smartphones/pixel-6-5g-uw-td-lte-jp-256gb-gr1yh/index.json @@ -0,0 +1,77 @@ +{ + "id": 588, + "slug": "pixel-6-5g-uw-td-lte-jp-256gb-gr1yh", + "name": "Pixel 6 5G UW TD-LTE JP 256GB GR1YH", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 17, + "slug": "google-tensor", + "name": "Google Tensor", + "manufacturer": { + "slug": "google", + "name": "Google", + "url": "/v1/brands/google" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP20", + "url": "/v1/socs/google-tensor" + }, + "release_date": "2021-10-28", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 410 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4614, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 207.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.8, + "performance": 3.7, + "camera": 17.2, + "battery": 37.1, + "display": 41.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.186931", + "updated_at": "2026-06-19T00:43:44.186931" +} diff --git a/site/public/v1/smartphones/pixel-6-5g-uw-td-lte-jp-256gb-gr1yh/score/index.json b/site/public/v1/smartphones/pixel-6-5g-uw-td-lte-jp-256gb-gr1yh/score/index.json new file mode 100644 index 00000000000..0ca8c465b6d --- /dev/null +++ b/site/public/v1/smartphones/pixel-6-5g-uw-td-lte-jp-256gb-gr1yh/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.8, + "performance": 3.7, + "camera": 17.2, + "battery": 37.1, + "display": 41.0, + "value": null +} diff --git a/site/public/v1/smartphones/pixel-6-5g-uw-td-lte-us-128gb-g9s9b/index.json b/site/public/v1/smartphones/pixel-6-5g-uw-td-lte-us-128gb-g9s9b/index.json new file mode 100644 index 00000000000..c955ee272dc --- /dev/null +++ b/site/public/v1/smartphones/pixel-6-5g-uw-td-lte-us-128gb-g9s9b/index.json @@ -0,0 +1,77 @@ +{ + "id": 589, + "slug": "pixel-6-5g-uw-td-lte-us-128gb-g9s9b", + "name": "Pixel 6 5G UW TD-LTE US 128GB G9S9B", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 17, + "slug": "google-tensor", + "name": "Google Tensor", + "manufacturer": { + "slug": "google", + "name": "Google", + "url": "/v1/brands/google" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP20", + "url": "/v1/socs/google-tensor" + }, + "release_date": "2021-10-28", + "msrp_usd": 599, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 410 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4614, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 207.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.8, + "performance": 3.7, + "camera": 17.2, + "battery": 37.1, + "display": 41.0, + "value": 50.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.186931", + "updated_at": "2026-06-19T00:43:44.186931" +} diff --git a/site/public/v1/smartphones/pixel-6-5g-uw-td-lte-us-128gb-g9s9b/score/index.json b/site/public/v1/smartphones/pixel-6-5g-uw-td-lte-us-128gb-g9s9b/score/index.json new file mode 100644 index 00000000000..09bbb930216 --- /dev/null +++ b/site/public/v1/smartphones/pixel-6-5g-uw-td-lte-us-128gb-g9s9b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.8, + "performance": 3.7, + "camera": 17.2, + "battery": 37.1, + "display": 41.0, + "value": 50.9 +} diff --git a/site/public/v1/smartphones/pixel-6-5g-uw-td-lte-us-256gb-g9s9b/index.json b/site/public/v1/smartphones/pixel-6-5g-uw-td-lte-us-256gb-g9s9b/index.json new file mode 100644 index 00000000000..6408c71296e --- /dev/null +++ b/site/public/v1/smartphones/pixel-6-5g-uw-td-lte-us-256gb-g9s9b/index.json @@ -0,0 +1,77 @@ +{ + "id": 590, + "slug": "pixel-6-5g-uw-td-lte-us-256gb-g9s9b", + "name": "Pixel 6 5G UW TD-LTE US 256GB G9S9B", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 17, + "slug": "google-tensor", + "name": "Google Tensor", + "manufacturer": { + "slug": "google", + "name": "Google", + "url": "/v1/brands/google" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP20", + "url": "/v1/socs/google-tensor" + }, + "release_date": "2021-10-28", + "msrp_usd": 699, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 410 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4614, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 207.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.8, + "performance": 3.7, + "camera": 17.2, + "battery": 37.1, + "display": 41.0, + "value": 47.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.186931", + "updated_at": "2026-06-19T00:43:44.186931" +} diff --git a/site/public/v1/smartphones/pixel-6-5g-uw-td-lte-us-256gb-g9s9b/score/index.json b/site/public/v1/smartphones/pixel-6-5g-uw-td-lte-us-256gb-g9s9b/score/index.json new file mode 100644 index 00000000000..fa6d523c03b --- /dev/null +++ b/site/public/v1/smartphones/pixel-6-5g-uw-td-lte-us-256gb-g9s9b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.8, + "performance": 3.7, + "camera": 17.2, + "battery": 37.1, + "display": 41.0, + "value": 47.0 +} diff --git a/site/public/v1/smartphones/pixel-6-pro-5g-global-td-lte-128gb-gluog/index.json b/site/public/v1/smartphones/pixel-6-pro-5g-global-td-lte-128gb-gluog/index.json new file mode 100644 index 00000000000..26ef0ea1554 --- /dev/null +++ b/site/public/v1/smartphones/pixel-6-pro-5g-global-td-lte-128gb-gluog/index.json @@ -0,0 +1,77 @@ +{ + "id": 591, + "slug": "pixel-6-pro-5g-global-td-lte-128gb-gluog", + "name": "Pixel 6 Pro 5G Global TD-LTE 128GB GLUOG", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 17, + "slug": "google-tensor", + "name": "Google Tensor", + "manufacturer": { + "slug": "google", + "name": "Google", + "url": "/v1/brands/google" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP20", + "url": "/v1/socs/google-tensor" + }, + "release_date": "2021-10-28", + "msrp_usd": 849, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3120", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 513 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 11.1 + } + ], + "battery_mah": 5003, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 6.7, + "camera": 17.2, + "battery": 42.9, + "display": 63.8, + "value": 45.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.186931", + "updated_at": "2026-06-19T00:43:44.186931" +} diff --git a/site/public/v1/smartphones/pixel-6-pro-5g-global-td-lte-128gb-gluog/score/index.json b/site/public/v1/smartphones/pixel-6-pro-5g-global-td-lte-128gb-gluog/score/index.json new file mode 100644 index 00000000000..8c554f34ff3 --- /dev/null +++ b/site/public/v1/smartphones/pixel-6-pro-5g-global-td-lte-128gb-gluog/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 6.7, + "camera": 17.2, + "battery": 42.9, + "display": 63.8, + "value": 45.2 +} diff --git a/site/public/v1/smartphones/pixel-6-pro-5g-global-td-lte-256gb-gluog/index.json b/site/public/v1/smartphones/pixel-6-pro-5g-global-td-lte-256gb-gluog/index.json new file mode 100644 index 00000000000..466c8617c7c --- /dev/null +++ b/site/public/v1/smartphones/pixel-6-pro-5g-global-td-lte-256gb-gluog/index.json @@ -0,0 +1,77 @@ +{ + "id": 592, + "slug": "pixel-6-pro-5g-global-td-lte-256gb-gluog", + "name": "Pixel 6 Pro 5G Global TD-LTE 256GB GLUOG", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 17, + "slug": "google-tensor", + "name": "Google Tensor", + "manufacturer": { + "slug": "google", + "name": "Google", + "url": "/v1/brands/google" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP20", + "url": "/v1/socs/google-tensor" + }, + "release_date": "2021-10-28", + "msrp_usd": 999, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3120", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 513 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 11.1 + } + ], + "battery_mah": 5003, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 6.7, + "camera": 17.2, + "battery": 42.9, + "display": 63.8, + "value": 39.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.186931", + "updated_at": "2026-06-19T00:43:44.186931" +} diff --git a/site/public/v1/smartphones/pixel-6-pro-5g-global-td-lte-256gb-gluog/score/index.json b/site/public/v1/smartphones/pixel-6-pro-5g-global-td-lte-256gb-gluog/score/index.json new file mode 100644 index 00000000000..2324c700fd5 --- /dev/null +++ b/site/public/v1/smartphones/pixel-6-pro-5g-global-td-lte-256gb-gluog/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 6.7, + "camera": 17.2, + "battery": 42.9, + "display": 63.8, + "value": 39.4 +} diff --git a/site/public/v1/smartphones/pixel-6-pro-5g-global-td-lte-512gb-gluog/index.json b/site/public/v1/smartphones/pixel-6-pro-5g-global-td-lte-512gb-gluog/index.json new file mode 100644 index 00000000000..a923916298a --- /dev/null +++ b/site/public/v1/smartphones/pixel-6-pro-5g-global-td-lte-512gb-gluog/index.json @@ -0,0 +1,77 @@ +{ + "id": 593, + "slug": "pixel-6-pro-5g-global-td-lte-512gb-gluog", + "name": "Pixel 6 Pro 5G Global TD-LTE 512GB GLUOG", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 17, + "slug": "google-tensor", + "name": "Google Tensor", + "manufacturer": { + "slug": "google", + "name": "Google", + "url": "/v1/brands/google" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP20", + "url": "/v1/socs/google-tensor" + }, + "release_date": "2021-10-28", + "msrp_usd": 1599, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3120", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 513 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 11.1 + } + ], + "battery_mah": 5003, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 6.7, + "camera": 17.2, + "battery": 42.9, + "display": 63.8, + "value": 16.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.187932", + "updated_at": "2026-06-19T00:43:44.187932" +} diff --git a/site/public/v1/smartphones/pixel-6-pro-5g-global-td-lte-512gb-gluog/score/index.json b/site/public/v1/smartphones/pixel-6-pro-5g-global-td-lte-512gb-gluog/score/index.json new file mode 100644 index 00000000000..b5f8421c3c8 --- /dev/null +++ b/site/public/v1/smartphones/pixel-6-pro-5g-global-td-lte-512gb-gluog/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 6.7, + "camera": 17.2, + "battery": 42.9, + "display": 63.8, + "value": 16.4 +} diff --git a/site/public/v1/smartphones/pixel-6-pro-5g-uw-td-lte-jp-128gb-gf5kq/index.json b/site/public/v1/smartphones/pixel-6-pro-5g-uw-td-lte-jp-128gb-gf5kq/index.json new file mode 100644 index 00000000000..0c62d19754d --- /dev/null +++ b/site/public/v1/smartphones/pixel-6-pro-5g-uw-td-lte-jp-128gb-gf5kq/index.json @@ -0,0 +1,77 @@ +{ + "id": 594, + "slug": "pixel-6-pro-5g-uw-td-lte-jp-128gb-gf5kq", + "name": "Pixel 6 Pro 5G UW TD-LTE JP 128GB GF5KQ", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 17, + "slug": "google-tensor", + "name": "Google Tensor", + "manufacturer": { + "slug": "google", + "name": "Google", + "url": "/v1/brands/google" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP20", + "url": "/v1/socs/google-tensor" + }, + "release_date": "2021-10-28", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3120", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 513 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 11.1 + } + ], + "battery_mah": 5003, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 6.7, + "camera": 17.2, + "battery": 42.9, + "display": 63.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.187932", + "updated_at": "2026-06-19T00:43:44.187932" +} diff --git a/site/public/v1/smartphones/pixel-6-pro-5g-uw-td-lte-jp-128gb-gf5kq/score/index.json b/site/public/v1/smartphones/pixel-6-pro-5g-uw-td-lte-jp-128gb-gf5kq/score/index.json new file mode 100644 index 00000000000..e77d4343724 --- /dev/null +++ b/site/public/v1/smartphones/pixel-6-pro-5g-uw-td-lte-jp-128gb-gf5kq/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 6.7, + "camera": 17.2, + "battery": 42.9, + "display": 63.8, + "value": null +} diff --git a/site/public/v1/smartphones/pixel-6-pro-5g-uw-td-lte-jp-256gb-gf5kq/index.json b/site/public/v1/smartphones/pixel-6-pro-5g-uw-td-lte-jp-256gb-gf5kq/index.json new file mode 100644 index 00000000000..ba9d1b5fced --- /dev/null +++ b/site/public/v1/smartphones/pixel-6-pro-5g-uw-td-lte-jp-256gb-gf5kq/index.json @@ -0,0 +1,77 @@ +{ + "id": 595, + "slug": "pixel-6-pro-5g-uw-td-lte-jp-256gb-gf5kq", + "name": "Pixel 6 Pro 5G UW TD-LTE JP 256GB GF5KQ", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 17, + "slug": "google-tensor", + "name": "Google Tensor", + "manufacturer": { + "slug": "google", + "name": "Google", + "url": "/v1/brands/google" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP20", + "url": "/v1/socs/google-tensor" + }, + "release_date": "2021-10-28", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3120", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 513 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 11.1 + } + ], + "battery_mah": 5003, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 6.7, + "camera": 17.2, + "battery": 42.9, + "display": 63.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.187932", + "updated_at": "2026-06-19T00:43:44.187932" +} diff --git a/site/public/v1/smartphones/pixel-6-pro-5g-uw-td-lte-jp-256gb-gf5kq/score/index.json b/site/public/v1/smartphones/pixel-6-pro-5g-uw-td-lte-jp-256gb-gf5kq/score/index.json new file mode 100644 index 00000000000..e77d4343724 --- /dev/null +++ b/site/public/v1/smartphones/pixel-6-pro-5g-uw-td-lte-jp-256gb-gf5kq/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 6.7, + "camera": 17.2, + "battery": 42.9, + "display": 63.8, + "value": null +} diff --git a/site/public/v1/smartphones/pixel-6-pro-5g-uw-td-lte-us-128gb-g8vou/index.json b/site/public/v1/smartphones/pixel-6-pro-5g-uw-td-lte-us-128gb-g8vou/index.json new file mode 100644 index 00000000000..107f990cf13 --- /dev/null +++ b/site/public/v1/smartphones/pixel-6-pro-5g-uw-td-lte-us-128gb-g8vou/index.json @@ -0,0 +1,77 @@ +{ + "id": 596, + "slug": "pixel-6-pro-5g-uw-td-lte-us-128gb-g8vou", + "name": "Pixel 6 Pro 5G UW TD-LTE US 128GB G8VOU", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 17, + "slug": "google-tensor", + "name": "Google Tensor", + "manufacturer": { + "slug": "google", + "name": "Google", + "url": "/v1/brands/google" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP20", + "url": "/v1/socs/google-tensor" + }, + "release_date": "2021-10-28", + "msrp_usd": 899, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3120", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 513 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 11.1 + } + ], + "battery_mah": 5003, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 6.7, + "camera": 17.2, + "battery": 42.9, + "display": 63.8, + "value": 43.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.187932", + "updated_at": "2026-06-19T00:43:44.187932" +} diff --git a/site/public/v1/smartphones/pixel-6-pro-5g-uw-td-lte-us-128gb-g8vou/score/index.json b/site/public/v1/smartphones/pixel-6-pro-5g-uw-td-lte-us-128gb-g8vou/score/index.json new file mode 100644 index 00000000000..964758671ca --- /dev/null +++ b/site/public/v1/smartphones/pixel-6-pro-5g-uw-td-lte-us-128gb-g8vou/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 6.7, + "camera": 17.2, + "battery": 42.9, + "display": 63.8, + "value": 43.2 +} diff --git a/site/public/v1/smartphones/pixel-6-pro-5g-uw-td-lte-us-256gb-g8vou/index.json b/site/public/v1/smartphones/pixel-6-pro-5g-uw-td-lte-us-256gb-g8vou/index.json new file mode 100644 index 00000000000..0ad3752c51d --- /dev/null +++ b/site/public/v1/smartphones/pixel-6-pro-5g-uw-td-lte-us-256gb-g8vou/index.json @@ -0,0 +1,77 @@ +{ + "id": 597, + "slug": "pixel-6-pro-5g-uw-td-lte-us-256gb-g8vou", + "name": "Pixel 6 Pro 5G UW TD-LTE US 256GB G8VOU", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 17, + "slug": "google-tensor", + "name": "Google Tensor", + "manufacturer": { + "slug": "google", + "name": "Google", + "url": "/v1/brands/google" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP20", + "url": "/v1/socs/google-tensor" + }, + "release_date": "2021-10-28", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1440x3120", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 513 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 11.1 + } + ], + "battery_mah": 5003, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 6.7, + "camera": 17.2, + "battery": 42.9, + "display": 63.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.187932", + "updated_at": "2026-06-19T00:43:44.187932" +} diff --git a/site/public/v1/smartphones/pixel-6-pro-5g-uw-td-lte-us-256gb-g8vou/score/index.json b/site/public/v1/smartphones/pixel-6-pro-5g-uw-td-lte-us-256gb-g8vou/score/index.json new file mode 100644 index 00000000000..e77d4343724 --- /dev/null +++ b/site/public/v1/smartphones/pixel-6-pro-5g-uw-td-lte-us-256gb-g8vou/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 6.7, + "camera": 17.2, + "battery": 42.9, + "display": 63.8, + "value": null +} diff --git a/site/public/v1/smartphones/pixel-xl-3-phone-global-td-lte-128gb-g013c/index.json b/site/public/v1/smartphones/pixel-xl-3-phone-global-td-lte-128gb-g013c/index.json new file mode 100644 index 00000000000..cc2232498df --- /dev/null +++ b/site/public/v1/smartphones/pixel-xl-3-phone-global-td-lte-128gb-g013c/index.json @@ -0,0 +1,76 @@ +{ + "id": 544, + "slug": "pixel-xl-3-phone-global-td-lte-128gb-g013c", + "name": "Pixel XL 3 Phone Global TD-LTE 128GB G013C", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-10-17", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3430, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 0.0, + "camera": 5.1, + "battery": 6.4, + "display": 57.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.181932", + "updated_at": "2026-06-19T00:43:44.181932" +} diff --git a/site/public/v1/smartphones/pixel-xl-3-phone-global-td-lte-128gb-g013c/score/index.json b/site/public/v1/smartphones/pixel-xl-3-phone-global-td-lte-128gb-g013c/score/index.json new file mode 100644 index 00000000000..5acaee4ec24 --- /dev/null +++ b/site/public/v1/smartphones/pixel-xl-3-phone-global-td-lte-128gb-g013c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 0.0, + "camera": 5.1, + "battery": 6.4, + "display": 57.3, + "value": null +} diff --git a/site/public/v1/smartphones/pixel-xl-3-phone-global-td-lte-64gb-g013c/index.json b/site/public/v1/smartphones/pixel-xl-3-phone-global-td-lte-64gb-g013c/index.json new file mode 100644 index 00000000000..9e887dd312c --- /dev/null +++ b/site/public/v1/smartphones/pixel-xl-3-phone-global-td-lte-64gb-g013c/index.json @@ -0,0 +1,76 @@ +{ + "id": 545, + "slug": "pixel-xl-3-phone-global-td-lte-64gb-g013c", + "name": "Pixel XL 3 Phone Global TD-LTE 64GB G013C", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-10-17", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3430, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 0.0, + "camera": 5.1, + "battery": 6.4, + "display": 57.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.181932", + "updated_at": "2026-06-19T00:43:44.181932" +} diff --git a/site/public/v1/smartphones/pixel-xl-3-phone-global-td-lte-64gb-g013c/score/index.json b/site/public/v1/smartphones/pixel-xl-3-phone-global-td-lte-64gb-g013c/score/index.json new file mode 100644 index 00000000000..5acaee4ec24 --- /dev/null +++ b/site/public/v1/smartphones/pixel-xl-3-phone-global-td-lte-64gb-g013c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 0.0, + "camera": 5.1, + "battery": 6.4, + "display": 57.3, + "value": null +} diff --git a/site/public/v1/smartphones/pixel-xl-3-phone-td-lte-jp-128gb-g013d/index.json b/site/public/v1/smartphones/pixel-xl-3-phone-td-lte-jp-128gb-g013d/index.json new file mode 100644 index 00000000000..40de51976d4 --- /dev/null +++ b/site/public/v1/smartphones/pixel-xl-3-phone-td-lte-jp-128gb-g013d/index.json @@ -0,0 +1,76 @@ +{ + "id": 546, + "slug": "pixel-xl-3-phone-td-lte-jp-128gb-g013d", + "name": "Pixel XL 3 Phone TD-LTE JP 128GB G013D", + "brand": { + "id": 110, + "slug": "google", + "name": "Google", + "country": "US", + "url": "/v1/brands/google" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-11-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3430, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 0.0, + "camera": 5.1, + "battery": 6.4, + "display": 57.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.181932", + "updated_at": "2026-06-19T00:43:44.181932" +} diff --git a/site/public/v1/smartphones/pixel-xl-3-phone-td-lte-jp-128gb-g013d/score/index.json b/site/public/v1/smartphones/pixel-xl-3-phone-td-lte-jp-128gb-g013d/score/index.json new file mode 100644 index 00000000000..5acaee4ec24 --- /dev/null +++ b/site/public/v1/smartphones/pixel-xl-3-phone-td-lte-jp-128gb-g013d/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 0.0, + "camera": 5.1, + "battery": 6.4, + "display": 57.3, + "value": null +} diff --git a/site/public/v1/smartphones/play-7/index.json b/site/public/v1/smartphones/play-7/index.json new file mode 100644 index 00000000000..23d4068c255 --- /dev/null +++ b/site/public/v1/smartphones/play-7/index.json @@ -0,0 +1,68 @@ +{ + "id": 736, + "slug": "play-7", + "name": "Play 7", + "brand": { + "id": 16, + "slug": "honor", + "name": "HONOR", + "country": "CN", + "url": "/v1/brands/honor" + }, + "soc": { + "id": 72, + "slug": "helio-g37", + "name": "Helio G37", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g37" + }, + "release_date": "2023-01-01", + "msrp_usd": 159, + "ram_gb": 4, + "storage_options_gb": [], + "display": { + "size_inch": 6.74 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 5200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": null, + "camera": 5.3, + "battery": 33.0, + "display": null, + "value": 59.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.208934", + "updated_at": "2026-06-19T00:43:44.208934" +} diff --git a/site/public/v1/smartphones/play-7/score/index.json b/site/public/v1/smartphones/play-7/score/index.json new file mode 100644 index 00000000000..66ff833626d --- /dev/null +++ b/site/public/v1/smartphones/play-7/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": null, + "camera": 5.3, + "battery": 33.0, + "display": null, + "value": 59.5 +} diff --git a/site/public/v1/smartphones/plex-global-dual-sim-td-lte-t780h/index.json b/site/public/v1/smartphones/plex-global-dual-sim-td-lte-t780h/index.json new file mode 100644 index 00000000000..c00650f3488 --- /dev/null +++ b/site/public/v1/smartphones/plex-global-dual-sim-td-lte-t780h/index.json @@ -0,0 +1,76 @@ +{ + "id": 4929, + "slug": "plex-global-dual-sim-td-lte-t780h", + "name": "Plex Global Dual SIM TD-LTE T780H", + "brand": { + "id": 38, + "slug": "tcl", + "name": "TCL", + "country": "CN", + "url": "/v1/brands/tcl" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3820, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 1.5, + "camera": 16.5, + "battery": 12.3, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.830568", + "updated_at": "2026-06-19T00:43:44.830568" +} diff --git a/site/public/v1/smartphones/plex-global-dual-sim-td-lte-t780h/score/index.json b/site/public/v1/smartphones/plex-global-dual-sim-td-lte-t780h/score/index.json new file mode 100644 index 00000000000..9a23866b1e0 --- /dev/null +++ b/site/public/v1/smartphones/plex-global-dual-sim-td-lte-t780h/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 1.5, + "camera": 16.5, + "battery": 12.3, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/poco-f3-5g-premium-edition-global-dual-sim-td-lte-256gb-m2012k11ag/index.json b/site/public/v1/smartphones/poco-f3-5g-premium-edition-global-dual-sim-td-lte-256gb-m2012k11ag/index.json new file mode 100644 index 00000000000..dba86553b72 --- /dev/null +++ b/site/public/v1/smartphones/poco-f3-5g-premium-edition-global-dual-sim-td-lte-256gb-m2012k11ag/index.json @@ -0,0 +1,77 @@ +{ + "id": 6112, + "slug": "poco-f3-5g-premium-edition-global-dual-sim-td-lte-256gb-m2012k11ag", + "name": "Poco F3 5G Premium Edition Global Dual SIM TD-LTE 256GB M2012K11AG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2021-04-29", + "msrp_usd": 399, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4520, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 3.4, + "camera": 16.5, + "battery": 26.2, + "display": 52.0, + "value": 58.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.971311", + "updated_at": "2026-06-19T00:43:44.971311" +} diff --git a/site/public/v1/smartphones/poco-f3-5g-premium-edition-global-dual-sim-td-lte-256gb-m2012k11ag/score/index.json b/site/public/v1/smartphones/poco-f3-5g-premium-edition-global-dual-sim-td-lte-256gb-m2012k11ag/score/index.json new file mode 100644 index 00000000000..f60381ea78d --- /dev/null +++ b/site/public/v1/smartphones/poco-f3-5g-premium-edition-global-dual-sim-td-lte-256gb-m2012k11ag/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 3.4, + "camera": 16.5, + "battery": 26.2, + "display": 52.0, + "value": 58.5 +} diff --git a/site/public/v1/smartphones/poco-f3-5g-standard-edition-global-dual-sim-td-lte-128gb-m2012k11ag/index.json b/site/public/v1/smartphones/poco-f3-5g-standard-edition-global-dual-sim-td-lte-128gb-m2012k11ag/index.json new file mode 100644 index 00000000000..7b720f09460 --- /dev/null +++ b/site/public/v1/smartphones/poco-f3-5g-standard-edition-global-dual-sim-td-lte-128gb-m2012k11ag/index.json @@ -0,0 +1,77 @@ +{ + "id": 6113, + "slug": "poco-f3-5g-standard-edition-global-dual-sim-td-lte-128gb-m2012k11ag", + "name": "Poco F3 5G Standard Edition Global Dual SIM TD-LTE 128GB M2012K11AG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2021-04-29", + "msrp_usd": 349, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4520, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 1.9, + "camera": 16.5, + "battery": 26.2, + "display": 52.0, + "value": 60.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.971311", + "updated_at": "2026-06-19T00:43:44.971311" +} diff --git a/site/public/v1/smartphones/poco-f3-5g-standard-edition-global-dual-sim-td-lte-128gb-m2012k11ag/score/index.json b/site/public/v1/smartphones/poco-f3-5g-standard-edition-global-dual-sim-td-lte-128gb-m2012k11ag/score/index.json new file mode 100644 index 00000000000..93767351c04 --- /dev/null +++ b/site/public/v1/smartphones/poco-f3-5g-standard-edition-global-dual-sim-td-lte-128gb-m2012k11ag/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 1.9, + "camera": 16.5, + "battery": 26.2, + "display": 52.0, + "value": 60.2 +} diff --git a/site/public/v1/smartphones/poco-f3-gt-5g-premium-edition-dual-sim-td-lte-in-128gb-m2104k10i/index.json b/site/public/v1/smartphones/poco-f3-gt-5g-premium-edition-dual-sim-td-lte-in-128gb-m2104k10i/index.json new file mode 100644 index 00000000000..6a04afa94cc --- /dev/null +++ b/site/public/v1/smartphones/poco-f3-gt-5g-premium-edition-dual-sim-td-lte-in-128gb-m2104k10i/index.json @@ -0,0 +1,77 @@ +{ + "id": 6114, + "slug": "poco-f3-gt-5g-premium-edition-dual-sim-td-lte-in-128gb-m2104k10i", + "name": "Poco F3 GT 5G Premium Edition Dual SIM TD-LTE IN 128GB M2104K10I", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-07-23", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5065, + "charging_wired_w": 67.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.9, + "performance": 3.9, + "camera": 21.7, + "battery": 45.9, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.971311", + "updated_at": "2026-06-19T00:43:44.971311" +} diff --git a/site/public/v1/smartphones/poco-f3-gt-5g-premium-edition-dual-sim-td-lte-in-128gb-m2104k10i/score/index.json b/site/public/v1/smartphones/poco-f3-gt-5g-premium-edition-dual-sim-td-lte-in-128gb-m2104k10i/score/index.json new file mode 100644 index 00000000000..d57cbca3061 --- /dev/null +++ b/site/public/v1/smartphones/poco-f3-gt-5g-premium-edition-dual-sim-td-lte-in-128gb-m2104k10i/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.9, + "performance": 3.9, + "camera": 21.7, + "battery": 45.9, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/poco-f3-gt-5g-premium-edition-dual-sim-td-lte-in-256gb-m2104k10i/index.json b/site/public/v1/smartphones/poco-f3-gt-5g-premium-edition-dual-sim-td-lte-in-256gb-m2104k10i/index.json new file mode 100644 index 00000000000..f5c3aafc9e8 --- /dev/null +++ b/site/public/v1/smartphones/poco-f3-gt-5g-premium-edition-dual-sim-td-lte-in-256gb-m2104k10i/index.json @@ -0,0 +1,77 @@ +{ + "id": 6115, + "slug": "poco-f3-gt-5g-premium-edition-dual-sim-td-lte-in-256gb-m2104k10i", + "name": "Poco F3 GT 5G Premium Edition Dual SIM TD-LTE IN 256GB M2104K10I", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-07-23", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5065, + "charging_wired_w": 67.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.9, + "performance": 3.9, + "camera": 21.7, + "battery": 45.9, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.971311", + "updated_at": "2026-06-19T00:43:44.971311" +} diff --git a/site/public/v1/smartphones/poco-f3-gt-5g-premium-edition-dual-sim-td-lte-in-256gb-m2104k10i/score/index.json b/site/public/v1/smartphones/poco-f3-gt-5g-premium-edition-dual-sim-td-lte-in-256gb-m2104k10i/score/index.json new file mode 100644 index 00000000000..d57cbca3061 --- /dev/null +++ b/site/public/v1/smartphones/poco-f3-gt-5g-premium-edition-dual-sim-td-lte-in-256gb-m2104k10i/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.9, + "performance": 3.9, + "camera": 21.7, + "battery": 45.9, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/poco-f3-gt-5g-standard-edition-dual-sim-td-lte-in-128gb-m2104k10i/index.json b/site/public/v1/smartphones/poco-f3-gt-5g-standard-edition-dual-sim-td-lte-in-128gb-m2104k10i/index.json new file mode 100644 index 00000000000..4f5c55c6cc9 --- /dev/null +++ b/site/public/v1/smartphones/poco-f3-gt-5g-standard-edition-dual-sim-td-lte-in-128gb-m2104k10i/index.json @@ -0,0 +1,77 @@ +{ + "id": 6116, + "slug": "poco-f3-gt-5g-standard-edition-dual-sim-td-lte-in-128gb-m2104k10i", + "name": "Poco F3 GT 5G Standard Edition Dual SIM TD-LTE IN 128GB M2104K10I", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-07-23", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5065, + "charging_wired_w": 67.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.5, + "performance": 2.4, + "camera": 21.7, + "battery": 45.9, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.971311", + "updated_at": "2026-06-19T00:43:44.971311" +} diff --git a/site/public/v1/smartphones/poco-f3-gt-5g-standard-edition-dual-sim-td-lte-in-128gb-m2104k10i/score/index.json b/site/public/v1/smartphones/poco-f3-gt-5g-standard-edition-dual-sim-td-lte-in-128gb-m2104k10i/score/index.json new file mode 100644 index 00000000000..b7f453d75a4 --- /dev/null +++ b/site/public/v1/smartphones/poco-f3-gt-5g-standard-edition-dual-sim-td-lte-in-128gb-m2104k10i/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.5, + "performance": 2.4, + "camera": 21.7, + "battery": 45.9, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/poco-m2-premium-edition-dual-sim-td-lte-in-128gb-m2004j19pi/index.json b/site/public/v1/smartphones/poco-m2-premium-edition-dual-sim-td-lte-in-128gb-m2004j19pi/index.json new file mode 100644 index 00000000000..237ef7e348c --- /dev/null +++ b/site/public/v1/smartphones/poco-m2-premium-edition-dual-sim-td-lte-in-128gb-m2004j19pi/index.json @@ -0,0 +1,76 @@ +{ + "id": 5930, + "slug": "poco-m2-premium-edition-dual-sim-td-lte-in-128gb-m2004j19pi", + "name": "Poco M2 Premium Edition Dual SIM TD-LTE IN 128GB M2004J19PI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2020-09-08", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5020, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 1.5, + "camera": 5.3, + "battery": 30.9, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.951308", + "updated_at": "2026-06-19T00:43:44.951308" +} diff --git a/site/public/v1/smartphones/poco-m2-premium-edition-dual-sim-td-lte-in-128gb-m2004j19pi/score/index.json b/site/public/v1/smartphones/poco-m2-premium-edition-dual-sim-td-lte-in-128gb-m2004j19pi/score/index.json new file mode 100644 index 00000000000..7a73608fc7b --- /dev/null +++ b/site/public/v1/smartphones/poco-m2-premium-edition-dual-sim-td-lte-in-128gb-m2004j19pi/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 1.5, + "camera": 5.3, + "battery": 30.9, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/poco-m2-premium-edition-dual-sim-td-lte-in-64gb-m2004j19pi/index.json b/site/public/v1/smartphones/poco-m2-premium-edition-dual-sim-td-lte-in-64gb-m2004j19pi/index.json new file mode 100644 index 00000000000..d34752bfa60 --- /dev/null +++ b/site/public/v1/smartphones/poco-m2-premium-edition-dual-sim-td-lte-in-64gb-m2004j19pi/index.json @@ -0,0 +1,76 @@ +{ + "id": 5931, + "slug": "poco-m2-premium-edition-dual-sim-td-lte-in-64gb-m2004j19pi", + "name": "Poco M2 Premium Edition Dual SIM TD-LTE IN 64GB M2004J19PI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2020-09-08", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5020, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 1.5, + "camera": 5.3, + "battery": 30.9, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.951308", + "updated_at": "2026-06-19T00:43:44.951308" +} diff --git a/site/public/v1/smartphones/poco-m2-premium-edition-dual-sim-td-lte-in-64gb-m2004j19pi/score/index.json b/site/public/v1/smartphones/poco-m2-premium-edition-dual-sim-td-lte-in-64gb-m2004j19pi/score/index.json new file mode 100644 index 00000000000..7a73608fc7b --- /dev/null +++ b/site/public/v1/smartphones/poco-m2-premium-edition-dual-sim-td-lte-in-64gb-m2004j19pi/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 1.5, + "camera": 5.3, + "battery": 30.9, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/poco-m2-reloaded-dual-sim-td-lte-in-64gb-m2004j19pi/index.json b/site/public/v1/smartphones/poco-m2-reloaded-dual-sim-td-lte-in-64gb-m2004j19pi/index.json new file mode 100644 index 00000000000..35dd2ac6d18 --- /dev/null +++ b/site/public/v1/smartphones/poco-m2-reloaded-dual-sim-td-lte-in-64gb-m2004j19pi/index.json @@ -0,0 +1,76 @@ +{ + "id": 6118, + "slug": "poco-m2-reloaded-dual-sim-td-lte-in-64gb-m2004j19pi", + "name": "Poco M2 Reloaded Dual SIM TD-LTE IN 64GB M2004J19PI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2021-06-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5020, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.9, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.972815", + "updated_at": "2026-06-19T00:43:44.972815" +} diff --git a/site/public/v1/smartphones/poco-m2-reloaded-dual-sim-td-lte-in-64gb-m2004j19pi/score/index.json b/site/public/v1/smartphones/poco-m2-reloaded-dual-sim-td-lte-in-64gb-m2004j19pi/score/index.json new file mode 100644 index 00000000000..e51de834e63 --- /dev/null +++ b/site/public/v1/smartphones/poco-m2-reloaded-dual-sim-td-lte-in-64gb-m2004j19pi/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.9, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/poco-m2-standard-edition-dual-sim-td-lte-in-64gb-m2004j19pi/index.json b/site/public/v1/smartphones/poco-m2-standard-edition-dual-sim-td-lte-in-64gb-m2004j19pi/index.json new file mode 100644 index 00000000000..29c15d52f4a --- /dev/null +++ b/site/public/v1/smartphones/poco-m2-standard-edition-dual-sim-td-lte-in-64gb-m2004j19pi/index.json @@ -0,0 +1,76 @@ +{ + "id": 5932, + "slug": "poco-m2-standard-edition-dual-sim-td-lte-in-64gb-m2004j19pi", + "name": "Poco M2 Standard Edition Dual SIM TD-LTE IN 64GB M2004J19PI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2020-09-07", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5020, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.9, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.951308", + "updated_at": "2026-06-19T00:43:44.951308" +} diff --git a/site/public/v1/smartphones/poco-m2-standard-edition-dual-sim-td-lte-in-64gb-m2004j19pi/score/index.json b/site/public/v1/smartphones/poco-m2-standard-edition-dual-sim-td-lte-in-64gb-m2004j19pi/score/index.json new file mode 100644 index 00000000000..e51de834e63 --- /dev/null +++ b/site/public/v1/smartphones/poco-m2-standard-edition-dual-sim-td-lte-in-64gb-m2004j19pi/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.9, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/poco-m3-premium-edition-dual-sim-td-lte-in-128gb-m2010j19ci/index.json b/site/public/v1/smartphones/poco-m3-premium-edition-dual-sim-td-lte-in-128gb-m2010j19ci/index.json new file mode 100644 index 00000000000..0bc113c6330 --- /dev/null +++ b/site/public/v1/smartphones/poco-m3-premium-edition-dual-sim-td-lte-in-128gb-m2010j19ci/index.json @@ -0,0 +1,77 @@ +{ + "id": 5933, + "slug": "poco-m3-premium-edition-dual-sim-td-lte-in-128gb-m2010j19ci", + "name": "Poco M3 Premium Edition Dual SIM TD-LTE IN 128GB M2010J19CI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2020-02-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 1.5, + "camera": 16.5, + "battery": 45.6, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.951308", + "updated_at": "2026-06-19T00:43:44.951308" +} diff --git a/site/public/v1/smartphones/poco-m3-premium-edition-dual-sim-td-lte-in-128gb-m2010j19ci/score/index.json b/site/public/v1/smartphones/poco-m3-premium-edition-dual-sim-td-lte-in-128gb-m2010j19ci/score/index.json new file mode 100644 index 00000000000..e01ffd7b47b --- /dev/null +++ b/site/public/v1/smartphones/poco-m3-premium-edition-dual-sim-td-lte-in-128gb-m2010j19ci/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 1.5, + "camera": 16.5, + "battery": 45.6, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/poco-m3-premium-edition-dual-sim-td-lte-in-64gb-m2010j19ci/index.json b/site/public/v1/smartphones/poco-m3-premium-edition-dual-sim-td-lte-in-64gb-m2010j19ci/index.json new file mode 100644 index 00000000000..0b2ab919e1e --- /dev/null +++ b/site/public/v1/smartphones/poco-m3-premium-edition-dual-sim-td-lte-in-64gb-m2010j19ci/index.json @@ -0,0 +1,77 @@ +{ + "id": 5934, + "slug": "poco-m3-premium-edition-dual-sim-td-lte-in-64gb-m2010j19ci", + "name": "Poco M3 Premium Edition Dual SIM TD-LTE IN 64GB M2010J19CI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2020-02-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 1.5, + "camera": 16.5, + "battery": 45.6, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.951308", + "updated_at": "2026-06-19T00:43:44.951308" +} diff --git a/site/public/v1/smartphones/poco-m3-premium-edition-dual-sim-td-lte-in-64gb-m2010j19ci/score/index.json b/site/public/v1/smartphones/poco-m3-premium-edition-dual-sim-td-lte-in-64gb-m2010j19ci/score/index.json new file mode 100644 index 00000000000..e01ffd7b47b --- /dev/null +++ b/site/public/v1/smartphones/poco-m3-premium-edition-dual-sim-td-lte-in-64gb-m2010j19ci/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 1.5, + "camera": 16.5, + "battery": 45.6, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/poco-m3-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-m2103k19pi/index.json b/site/public/v1/smartphones/poco-m3-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-m2103k19pi/index.json new file mode 100644 index 00000000000..28c3a8ed35d --- /dev/null +++ b/site/public/v1/smartphones/poco-m3-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-m2103k19pi/index.json @@ -0,0 +1,77 @@ +{ + "id": 6119, + "slug": "poco-m3-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-m2103k19pi", + "name": "Poco M3 Pro 5G Premium Edition Dual SIM TD-LTE IN 128GB M2103K19PI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-06-12", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.972815", + "updated_at": "2026-06-19T00:43:44.972815" +} diff --git a/site/public/v1/smartphones/poco-m3-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-m2103k19pi/score/index.json b/site/public/v1/smartphones/poco-m3-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-m2103k19pi/score/index.json new file mode 100644 index 00000000000..885ce1795be --- /dev/null +++ b/site/public/v1/smartphones/poco-m3-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-m2103k19pi/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/poco-m3-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-m2103k19pg/index.json b/site/public/v1/smartphones/poco-m3-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-m2103k19pg/index.json new file mode 100644 index 00000000000..6026c6b0a99 --- /dev/null +++ b/site/public/v1/smartphones/poco-m3-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-m2103k19pg/index.json @@ -0,0 +1,77 @@ +{ + "id": 6120, + "slug": "poco-m3-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-m2103k19pg", + "name": "Poco M3 Pro 5G Premium Edition Global Dual SIM TD-LTE 128GB M2103K19PG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-05-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.973201", + "updated_at": "2026-06-19T00:43:44.973201" +} diff --git a/site/public/v1/smartphones/poco-m3-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-m2103k19pg/score/index.json b/site/public/v1/smartphones/poco-m3-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-m2103k19pg/score/index.json new file mode 100644 index 00000000000..885ce1795be --- /dev/null +++ b/site/public/v1/smartphones/poco-m3-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-m2103k19pg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/poco-m3-pro-5g-standard-edition-dual-sim-td-lte-in-64gb-m2103k19pi/index.json b/site/public/v1/smartphones/poco-m3-pro-5g-standard-edition-dual-sim-td-lte-in-64gb-m2103k19pi/index.json new file mode 100644 index 00000000000..350cf5326f7 --- /dev/null +++ b/site/public/v1/smartphones/poco-m3-pro-5g-standard-edition-dual-sim-td-lte-in-64gb-m2103k19pi/index.json @@ -0,0 +1,77 @@ +{ + "id": 6121, + "slug": "poco-m3-pro-5g-standard-edition-dual-sim-td-lte-in-64gb-m2103k19pi", + "name": "Poco M3 Pro 5G Standard Edition Dual SIM TD-LTE IN 64GB M2103K19PI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-06-12", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.973201", + "updated_at": "2026-06-19T00:43:44.973201" +} diff --git a/site/public/v1/smartphones/poco-m3-pro-5g-standard-edition-dual-sim-td-lte-in-64gb-m2103k19pi/score/index.json b/site/public/v1/smartphones/poco-m3-pro-5g-standard-edition-dual-sim-td-lte-in-64gb-m2103k19pi/score/index.json new file mode 100644 index 00000000000..158756846a2 --- /dev/null +++ b/site/public/v1/smartphones/poco-m3-pro-5g-standard-edition-dual-sim-td-lte-in-64gb-m2103k19pi/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/poco-m3-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-m2103k19pg/index.json b/site/public/v1/smartphones/poco-m3-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-m2103k19pg/index.json new file mode 100644 index 00000000000..401ded41a1d --- /dev/null +++ b/site/public/v1/smartphones/poco-m3-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-m2103k19pg/index.json @@ -0,0 +1,77 @@ +{ + "id": 6122, + "slug": "poco-m3-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-m2103k19pg", + "name": "Poco M3 Pro 5G Standard Edition Global Dual SIM TD-LTE 64GB M2103K19PG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.973201", + "updated_at": "2026-06-19T00:43:44.973201" +} diff --git a/site/public/v1/smartphones/poco-m3-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-m2103k19pg/score/index.json b/site/public/v1/smartphones/poco-m3-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-m2103k19pg/score/index.json new file mode 100644 index 00000000000..158756846a2 --- /dev/null +++ b/site/public/v1/smartphones/poco-m3-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-m2103k19pg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/poco-m3-standard-edition-dual-sim-td-lte-in-64gb-m2010j19ci/index.json b/site/public/v1/smartphones/poco-m3-standard-edition-dual-sim-td-lte-in-64gb-m2010j19ci/index.json new file mode 100644 index 00000000000..a6a5176b83c --- /dev/null +++ b/site/public/v1/smartphones/poco-m3-standard-edition-dual-sim-td-lte-in-64gb-m2010j19ci/index.json @@ -0,0 +1,76 @@ +{ + "id": 5935, + "slug": "poco-m3-standard-edition-dual-sim-td-lte-in-64gb-m2010j19ci", + "name": "Poco M3 Standard Edition Dual SIM TD-LTE IN 64GB M2010J19CI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2020-02-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.952308", + "updated_at": "2026-06-19T00:43:44.952308" +} diff --git a/site/public/v1/smartphones/poco-m3-standard-edition-dual-sim-td-lte-in-64gb-m2010j19ci/score/index.json b/site/public/v1/smartphones/poco-m3-standard-edition-dual-sim-td-lte-in-64gb-m2010j19ci/score/index.json new file mode 100644 index 00000000000..b52b29d6a13 --- /dev/null +++ b/site/public/v1/smartphones/poco-m3-standard-edition-dual-sim-td-lte-in-64gb-m2010j19ci/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/poco-m3-standard-edition-global-dual-sim-td-lte-128gb-m2010j19cg/index.json b/site/public/v1/smartphones/poco-m3-standard-edition-global-dual-sim-td-lte-128gb-m2010j19cg/index.json new file mode 100644 index 00000000000..e3de45e40a3 --- /dev/null +++ b/site/public/v1/smartphones/poco-m3-standard-edition-global-dual-sim-td-lte-128gb-m2010j19cg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5936, + "slug": "poco-m3-standard-edition-global-dual-sim-td-lte-128gb-m2010j19cg", + "name": "Poco M3 Standard Edition Global Dual SIM TD-LTE 128GB M2010J19CG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2020-11-27", + "msrp_usd": 149, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": 63.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.952308", + "updated_at": "2026-06-19T00:43:44.952308" +} diff --git a/site/public/v1/smartphones/poco-m3-standard-edition-global-dual-sim-td-lte-128gb-m2010j19cg/score/index.json b/site/public/v1/smartphones/poco-m3-standard-edition-global-dual-sim-td-lte-128gb-m2010j19cg/score/index.json new file mode 100644 index 00000000000..263dc293406 --- /dev/null +++ b/site/public/v1/smartphones/poco-m3-standard-edition-global-dual-sim-td-lte-128gb-m2010j19cg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": 63.3 +} diff --git a/site/public/v1/smartphones/poco-m3-standard-edition-global-dual-sim-td-lte-64gb-m2010j19cg/index.json b/site/public/v1/smartphones/poco-m3-standard-edition-global-dual-sim-td-lte-64gb-m2010j19cg/index.json new file mode 100644 index 00000000000..7836a8ce9e7 --- /dev/null +++ b/site/public/v1/smartphones/poco-m3-standard-edition-global-dual-sim-td-lte-64gb-m2010j19cg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5937, + "slug": "poco-m3-standard-edition-global-dual-sim-td-lte-64gb-m2010j19cg", + "name": "Poco M3 Standard Edition Global Dual SIM TD-LTE 64GB M2010J19CG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2020-11-27", + "msrp_usd": 129, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": 63.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.952308", + "updated_at": "2026-06-19T00:43:44.952308" +} diff --git a/site/public/v1/smartphones/poco-m3-standard-edition-global-dual-sim-td-lte-64gb-m2010j19cg/score/index.json b/site/public/v1/smartphones/poco-m3-standard-edition-global-dual-sim-td-lte-64gb-m2010j19cg/score/index.json new file mode 100644 index 00000000000..263dc293406 --- /dev/null +++ b/site/public/v1/smartphones/poco-m3-standard-edition-global-dual-sim-td-lte-64gb-m2010j19cg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": 63.3 +} diff --git a/site/public/v1/smartphones/poco-m4-pro-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117pi/index.json b/site/public/v1/smartphones/poco-m4-pro-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117pi/index.json new file mode 100644 index 00000000000..afa8a46cecd --- /dev/null +++ b/site/public/v1/smartphones/poco-m4-pro-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117pi/index.json @@ -0,0 +1,77 @@ +{ + "id": 6250, + "slug": "poco-m4-pro-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117pi", + "name": "Poco M4 Pro 4G Premium Edition Dual SIM TD-LTE IN 128GB 2201117PI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 74, + "slug": "helio-g96", + "name": "Helio G96", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali G57 MC2", + "url": "/v1/socs/helio-g96" + }, + "release_date": "2022-03-07", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 179.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.7, + "performance": 3.0, + "camera": 21.5, + "battery": 33.4, + "display": 40.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.988824", + "updated_at": "2026-06-19T00:43:44.988824" +} diff --git a/site/public/v1/smartphones/poco-m4-pro-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117pi/score/index.json b/site/public/v1/smartphones/poco-m4-pro-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117pi/score/index.json new file mode 100644 index 00000000000..88481f129a5 --- /dev/null +++ b/site/public/v1/smartphones/poco-m4-pro-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117pi/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.7, + "performance": 3.0, + "camera": 21.5, + "battery": 33.4, + "display": 40.9, + "value": null +} diff --git a/site/public/v1/smartphones/poco-m4-pro-4g-premium-edition-global-dual-sim-td-lte-256gb-2201117pg/index.json b/site/public/v1/smartphones/poco-m4-pro-4g-premium-edition-global-dual-sim-td-lte-256gb-2201117pg/index.json new file mode 100644 index 00000000000..259a57cd722 --- /dev/null +++ b/site/public/v1/smartphones/poco-m4-pro-4g-premium-edition-global-dual-sim-td-lte-256gb-2201117pg/index.json @@ -0,0 +1,77 @@ +{ + "id": 6251, + "slug": "poco-m4-pro-4g-premium-edition-global-dual-sim-td-lte-256gb-2201117pg", + "name": "Poco M4 Pro 4G Premium Edition Global Dual SIM TD-LTE 256GB 2201117PG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 74, + "slug": "helio-g96", + "name": "Helio G96", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali G57 MC2", + "url": "/v1/socs/helio-g96" + }, + "release_date": "2022-03-01", + "msrp_usd": 229, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 179.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.7, + "performance": 3.0, + "camera": 21.5, + "battery": 33.4, + "display": 40.9, + "value": 62.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.988824", + "updated_at": "2026-06-19T00:43:44.988824" +} diff --git a/site/public/v1/smartphones/poco-m4-pro-4g-premium-edition-global-dual-sim-td-lte-256gb-2201117pg/score/index.json b/site/public/v1/smartphones/poco-m4-pro-4g-premium-edition-global-dual-sim-td-lte-256gb-2201117pg/score/index.json new file mode 100644 index 00000000000..d3815aae7f7 --- /dev/null +++ b/site/public/v1/smartphones/poco-m4-pro-4g-premium-edition-global-dual-sim-td-lte-256gb-2201117pg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.7, + "performance": 3.0, + "camera": 21.5, + "battery": 33.4, + "display": 40.9, + "value": 62.4 +} diff --git a/site/public/v1/smartphones/poco-m4-pro-4g-standard-edition-dual-sim-td-lte-in-128gb-2201117pi/index.json b/site/public/v1/smartphones/poco-m4-pro-4g-standard-edition-dual-sim-td-lte-in-128gb-2201117pi/index.json new file mode 100644 index 00000000000..cb58ef8f3dc --- /dev/null +++ b/site/public/v1/smartphones/poco-m4-pro-4g-standard-edition-dual-sim-td-lte-in-128gb-2201117pi/index.json @@ -0,0 +1,77 @@ +{ + "id": 6252, + "slug": "poco-m4-pro-4g-standard-edition-dual-sim-td-lte-in-128gb-2201117pi", + "name": "Poco M4 Pro 4G Standard Edition Dual SIM TD-LTE IN 128GB 2201117PI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 74, + "slug": "helio-g96", + "name": "Helio G96", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali G57 MC2", + "url": "/v1/socs/helio-g96" + }, + "release_date": "2022-03-07", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 179.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.3, + "performance": 1.5, + "camera": 21.5, + "battery": 33.4, + "display": 40.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.988824", + "updated_at": "2026-06-19T00:43:44.988824" +} diff --git a/site/public/v1/smartphones/poco-m4-pro-4g-standard-edition-dual-sim-td-lte-in-128gb-2201117pi/score/index.json b/site/public/v1/smartphones/poco-m4-pro-4g-standard-edition-dual-sim-td-lte-in-128gb-2201117pi/score/index.json new file mode 100644 index 00000000000..739ff0e5149 --- /dev/null +++ b/site/public/v1/smartphones/poco-m4-pro-4g-standard-edition-dual-sim-td-lte-in-128gb-2201117pi/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.3, + "performance": 1.5, + "camera": 21.5, + "battery": 33.4, + "display": 40.9, + "value": null +} diff --git a/site/public/v1/smartphones/poco-m4-pro-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117pi/index.json b/site/public/v1/smartphones/poco-m4-pro-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117pi/index.json new file mode 100644 index 00000000000..c8fbb903d8a --- /dev/null +++ b/site/public/v1/smartphones/poco-m4-pro-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117pi/index.json @@ -0,0 +1,77 @@ +{ + "id": 6253, + "slug": "poco-m4-pro-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117pi", + "name": "Poco M4 Pro 4G Standard Edition Dual SIM TD-LTE IN 64GB 2201117PI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 74, + "slug": "helio-g96", + "name": "Helio G96", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali G57 MC2", + "url": "/v1/socs/helio-g96" + }, + "release_date": "2022-03-07", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 179.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.3, + "performance": 1.5, + "camera": 21.5, + "battery": 33.4, + "display": 40.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.988824", + "updated_at": "2026-06-19T00:43:44.988824" +} diff --git a/site/public/v1/smartphones/poco-m4-pro-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117pi/score/index.json b/site/public/v1/smartphones/poco-m4-pro-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117pi/score/index.json new file mode 100644 index 00000000000..739ff0e5149 --- /dev/null +++ b/site/public/v1/smartphones/poco-m4-pro-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117pi/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.3, + "performance": 1.5, + "camera": 21.5, + "battery": 33.4, + "display": 40.9, + "value": null +} diff --git a/site/public/v1/smartphones/poco-m4-pro-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117pg/index.json b/site/public/v1/smartphones/poco-m4-pro-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117pg/index.json new file mode 100644 index 00000000000..9e8bf8bd812 --- /dev/null +++ b/site/public/v1/smartphones/poco-m4-pro-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117pg/index.json @@ -0,0 +1,77 @@ +{ + "id": 6254, + "slug": "poco-m4-pro-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117pg", + "name": "Poco M4 Pro 4G Standard Edition Global Dual SIM TD-LTE 128GB 2201117PG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 74, + "slug": "helio-g96", + "name": "Helio G96", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali G57 MC2", + "url": "/v1/socs/helio-g96" + }, + "release_date": "2022-03-01", + "msrp_usd": 179, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 179.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.3, + "performance": 1.5, + "camera": 21.5, + "battery": 33.4, + "display": 40.9, + "value": 62.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.988824", + "updated_at": "2026-06-19T00:43:44.988824" +} diff --git a/site/public/v1/smartphones/poco-m4-pro-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117pg/score/index.json b/site/public/v1/smartphones/poco-m4-pro-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117pg/score/index.json new file mode 100644 index 00000000000..1a36a9dc241 --- /dev/null +++ b/site/public/v1/smartphones/poco-m4-pro-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117pg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.3, + "performance": 1.5, + "camera": 21.5, + "battery": 33.4, + "display": 40.9, + "value": 62.1 +} diff --git a/site/public/v1/smartphones/poco-m4-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-21091116ag/index.json b/site/public/v1/smartphones/poco-m4-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-21091116ag/index.json new file mode 100644 index 00000000000..f3da614266d --- /dev/null +++ b/site/public/v1/smartphones/poco-m4-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-21091116ag/index.json @@ -0,0 +1,77 @@ +{ + "id": 6123, + "slug": "poco-m4-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-21091116ag", + "name": "Poco M4 Pro 5G Premium Edition Global Dual SIM TD-LTE 128GB 21091116AG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 68, + "slug": "dimensity-810", + "name": "Dimensity 810", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-810" + }, + "release_date": "2021-11-11", + "msrp_usd": 219, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 1.5, + "camera": 17.2, + "battery": 38.4, + "display": 39.9, + "value": 62.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.973201", + "updated_at": "2026-06-19T00:43:44.973201" +} diff --git a/site/public/v1/smartphones/poco-m4-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-21091116ag/score/index.json b/site/public/v1/smartphones/poco-m4-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-21091116ag/score/index.json new file mode 100644 index 00000000000..717494340e9 --- /dev/null +++ b/site/public/v1/smartphones/poco-m4-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-21091116ag/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 1.5, + "camera": 17.2, + "battery": 38.4, + "display": 39.9, + "value": 62.1 +} diff --git a/site/public/v1/smartphones/poco-m4-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-21091116ag/index.json b/site/public/v1/smartphones/poco-m4-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-21091116ag/index.json new file mode 100644 index 00000000000..0ee9e3b6fb7 --- /dev/null +++ b/site/public/v1/smartphones/poco-m4-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-21091116ag/index.json @@ -0,0 +1,77 @@ +{ + "id": 6124, + "slug": "poco-m4-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-21091116ag", + "name": "Poco M4 Pro 5G Standard Edition Global Dual SIM TD-LTE 64GB 21091116AG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 68, + "slug": "dimensity-810", + "name": "Dimensity 810", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-810" + }, + "release_date": "2021-11-11", + "msrp_usd": 199, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 0.0, + "camera": 17.2, + "battery": 38.4, + "display": 39.9, + "value": 62.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.973201", + "updated_at": "2026-06-19T00:43:44.973201" +} diff --git a/site/public/v1/smartphones/poco-m4-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-21091116ag/score/index.json b/site/public/v1/smartphones/poco-m4-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-21091116ag/score/index.json new file mode 100644 index 00000000000..bd8ba104d21 --- /dev/null +++ b/site/public/v1/smartphones/poco-m4-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-21091116ag/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 0.0, + "camera": 17.2, + "battery": 38.4, + "display": 39.9, + "value": 62.0 +} diff --git a/site/public/v1/smartphones/poco-x3-gt-5g-global-dual-sim-td-lte-128gb-21061110ag/index.json b/site/public/v1/smartphones/poco-x3-gt-5g-global-dual-sim-td-lte-128gb-21061110ag/index.json new file mode 100644 index 00000000000..f4be23a4f3f --- /dev/null +++ b/site/public/v1/smartphones/poco-x3-gt-5g-global-dual-sim-td-lte-128gb-21061110ag/index.json @@ -0,0 +1,77 @@ +{ + "id": 6125, + "slug": "poco-x3-gt-5g-global-dual-sim-td-lte-128gb-21061110ag", + "name": "Poco X3 GT 5G Global Dual SIM TD-LTE 128GB 21061110AG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 66, + "slug": "dimensity-1100", + "name": "Dimensity 1100", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1100" + }, + "release_date": "2021-08-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 67.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.5, + "performance": 3.0, + "camera": 21.5, + "battery": 44.9, + "display": 52.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.973201", + "updated_at": "2026-06-19T00:43:44.973201" +} diff --git a/site/public/v1/smartphones/poco-x3-gt-5g-global-dual-sim-td-lte-128gb-21061110ag/score/index.json b/site/public/v1/smartphones/poco-x3-gt-5g-global-dual-sim-td-lte-128gb-21061110ag/score/index.json new file mode 100644 index 00000000000..bb4d97f9df1 --- /dev/null +++ b/site/public/v1/smartphones/poco-x3-gt-5g-global-dual-sim-td-lte-128gb-21061110ag/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.5, + "performance": 3.0, + "camera": 21.5, + "battery": 44.9, + "display": 52.5, + "value": null +} diff --git a/site/public/v1/smartphones/poco-x3-gt-5g-global-dual-sim-td-lte-256gb-21061110ag/index.json b/site/public/v1/smartphones/poco-x3-gt-5g-global-dual-sim-td-lte-256gb-21061110ag/index.json new file mode 100644 index 00000000000..82373a1bc92 --- /dev/null +++ b/site/public/v1/smartphones/poco-x3-gt-5g-global-dual-sim-td-lte-256gb-21061110ag/index.json @@ -0,0 +1,77 @@ +{ + "id": 6126, + "slug": "poco-x3-gt-5g-global-dual-sim-td-lte-256gb-21061110ag", + "name": "Poco X3 GT 5G Global Dual SIM TD-LTE 256GB 21061110AG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 66, + "slug": "dimensity-1100", + "name": "Dimensity 1100", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1100" + }, + "release_date": "2021-08-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 67.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.5, + "performance": 3.0, + "camera": 21.5, + "battery": 44.9, + "display": 52.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.973201", + "updated_at": "2026-06-19T00:43:44.973201" +} diff --git a/site/public/v1/smartphones/poco-x3-gt-5g-global-dual-sim-td-lte-256gb-21061110ag/score/index.json b/site/public/v1/smartphones/poco-x3-gt-5g-global-dual-sim-td-lte-256gb-21061110ag/score/index.json new file mode 100644 index 00000000000..bb4d97f9df1 --- /dev/null +++ b/site/public/v1/smartphones/poco-x3-gt-5g-global-dual-sim-td-lte-256gb-21061110ag/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.5, + "performance": 3.0, + "camera": 21.5, + "battery": 44.9, + "display": 52.5, + "value": null +} diff --git a/site/public/v1/smartphones/poco-x3-pro-premium-edition-dual-sim-td-lte-in-128gb-m2102j20si/index.json b/site/public/v1/smartphones/poco-x3-pro-premium-edition-dual-sim-td-lte-in-128gb-m2102j20si/index.json new file mode 100644 index 00000000000..fbc818300fd --- /dev/null +++ b/site/public/v1/smartphones/poco-x3-pro-premium-edition-dual-sim-td-lte-in-128gb-m2102j20si/index.json @@ -0,0 +1,77 @@ +{ + "id": 6127, + "slug": "poco-x3-pro-premium-edition-dual-sim-td-lte-in-128gb-m2102j20si", + "name": "Poco X3 Pro Premium Edition Dual SIM TD-LTE IN 128GB M2102J20SI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 158, + "slug": "snapdragon-860", + "name": "Snapdragon 860", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-860" + }, + "release_date": "2021-04-06", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5160, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.8, + "performance": 3.0, + "camera": 16.5, + "battery": 35.8, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.973201", + "updated_at": "2026-06-19T00:43:44.973201" +} diff --git a/site/public/v1/smartphones/poco-x3-pro-premium-edition-dual-sim-td-lte-in-128gb-m2102j20si/score/index.json b/site/public/v1/smartphones/poco-x3-pro-premium-edition-dual-sim-td-lte-in-128gb-m2102j20si/score/index.json new file mode 100644 index 00000000000..70a2754b96f --- /dev/null +++ b/site/public/v1/smartphones/poco-x3-pro-premium-edition-dual-sim-td-lte-in-128gb-m2102j20si/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.8, + "performance": 3.0, + "camera": 16.5, + "battery": 35.8, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/poco-x3-pro-premium-edition-global-dual-sim-td-lte-256gb-m2102j20sg/index.json b/site/public/v1/smartphones/poco-x3-pro-premium-edition-global-dual-sim-td-lte-256gb-m2102j20sg/index.json new file mode 100644 index 00000000000..a18b7da7310 --- /dev/null +++ b/site/public/v1/smartphones/poco-x3-pro-premium-edition-global-dual-sim-td-lte-256gb-m2102j20sg/index.json @@ -0,0 +1,77 @@ +{ + "id": 6128, + "slug": "poco-x3-pro-premium-edition-global-dual-sim-td-lte-256gb-m2102j20sg", + "name": "Poco X3 Pro Premium Edition Global Dual SIM TD-LTE 256GB M2102J20SG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 158, + "slug": "snapdragon-860", + "name": "Snapdragon 860", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-860" + }, + "release_date": "2021-03-29", + "msrp_usd": 399, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5160, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.8, + "performance": 3.0, + "camera": 16.5, + "battery": 35.8, + "display": 52.0, + "value": 59.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.974207", + "updated_at": "2026-06-19T00:43:44.974207" +} diff --git a/site/public/v1/smartphones/poco-x3-pro-premium-edition-global-dual-sim-td-lte-256gb-m2102j20sg/score/index.json b/site/public/v1/smartphones/poco-x3-pro-premium-edition-global-dual-sim-td-lte-256gb-m2102j20sg/score/index.json new file mode 100644 index 00000000000..af1a480e0a4 --- /dev/null +++ b/site/public/v1/smartphones/poco-x3-pro-premium-edition-global-dual-sim-td-lte-256gb-m2102j20sg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.8, + "performance": 3.0, + "camera": 16.5, + "battery": 35.8, + "display": 52.0, + "value": 59.6 +} diff --git a/site/public/v1/smartphones/poco-x3-pro-standard-edition-dual-sim-td-lte-in-128gb-m2102j20si/index.json b/site/public/v1/smartphones/poco-x3-pro-standard-edition-dual-sim-td-lte-in-128gb-m2102j20si/index.json new file mode 100644 index 00000000000..912c23570dd --- /dev/null +++ b/site/public/v1/smartphones/poco-x3-pro-standard-edition-dual-sim-td-lte-in-128gb-m2102j20si/index.json @@ -0,0 +1,77 @@ +{ + "id": 6129, + "slug": "poco-x3-pro-standard-edition-dual-sim-td-lte-in-128gb-m2102j20si", + "name": "Poco X3 Pro Standard Edition Dual SIM TD-LTE IN 128GB M2102J20SI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 158, + "slug": "snapdragon-860", + "name": "Snapdragon 860", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-860" + }, + "release_date": "2021-04-06", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5160, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 1.5, + "camera": 16.5, + "battery": 35.8, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.974207", + "updated_at": "2026-06-19T00:43:44.974207" +} diff --git a/site/public/v1/smartphones/poco-x3-pro-standard-edition-dual-sim-td-lte-in-128gb-m2102j20si/score/index.json b/site/public/v1/smartphones/poco-x3-pro-standard-edition-dual-sim-td-lte-in-128gb-m2102j20si/score/index.json new file mode 100644 index 00000000000..0c7516b2ba2 --- /dev/null +++ b/site/public/v1/smartphones/poco-x3-pro-standard-edition-dual-sim-td-lte-in-128gb-m2102j20si/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 1.5, + "camera": 16.5, + "battery": 35.8, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/poco-x3-pro-standard-edition-global-dual-sim-td-lte-128gb-m2102j20sg/index.json b/site/public/v1/smartphones/poco-x3-pro-standard-edition-global-dual-sim-td-lte-128gb-m2102j20sg/index.json new file mode 100644 index 00000000000..7ace75234ce --- /dev/null +++ b/site/public/v1/smartphones/poco-x3-pro-standard-edition-global-dual-sim-td-lte-128gb-m2102j20sg/index.json @@ -0,0 +1,77 @@ +{ + "id": 6130, + "slug": "poco-x3-pro-standard-edition-global-dual-sim-td-lte-128gb-m2102j20sg", + "name": "Poco X3 Pro Standard Edition Global Dual SIM TD-LTE 128GB M2102J20SG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 158, + "slug": "snapdragon-860", + "name": "Snapdragon 860", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-860" + }, + "release_date": "2021-03-29", + "msrp_usd": 349, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5160, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 1.5, + "camera": 16.5, + "battery": 35.8, + "display": 52.0, + "value": 61.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.974207", + "updated_at": "2026-06-19T00:43:44.974207" +} diff --git a/site/public/v1/smartphones/poco-x3-pro-standard-edition-global-dual-sim-td-lte-128gb-m2102j20sg/score/index.json b/site/public/v1/smartphones/poco-x3-pro-standard-edition-global-dual-sim-td-lte-128gb-m2102j20sg/score/index.json new file mode 100644 index 00000000000..d4041081b10 --- /dev/null +++ b/site/public/v1/smartphones/poco-x3-pro-standard-edition-global-dual-sim-td-lte-128gb-m2102j20sg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 1.5, + "camera": 16.5, + "battery": 35.8, + "display": 52.0, + "value": 61.3 +} diff --git a/site/public/v1/smartphones/pocophone-poco-c3-dual-sim-td-lte-in-32gb-m2006c3mi/index.json b/site/public/v1/smartphones/pocophone-poco-c3-dual-sim-td-lte-in-32gb-m2006c3mi/index.json new file mode 100644 index 00000000000..9fa87d93949 --- /dev/null +++ b/site/public/v1/smartphones/pocophone-poco-c3-dual-sim-td-lte-in-32gb-m2006c3mi/index.json @@ -0,0 +1,76 @@ +{ + "id": 5938, + "slug": "pocophone-poco-c3-dual-sim-td-lte-in-32gb-m2006c3mi", + "name": "Pocophone Poco C3 Dual SIM TD-LTE IN 32GB M2006C3MI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2020-10-11", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.952308", + "updated_at": "2026-06-19T00:43:44.952308" +} diff --git a/site/public/v1/smartphones/pocophone-poco-c3-dual-sim-td-lte-in-32gb-m2006c3mi/score/index.json b/site/public/v1/smartphones/pocophone-poco-c3-dual-sim-td-lte-in-32gb-m2006c3mi/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/pocophone-poco-c3-dual-sim-td-lte-in-32gb-m2006c3mi/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/pocophone-poco-c3-dual-sim-td-lte-in-64gb-m2006c3mi/index.json b/site/public/v1/smartphones/pocophone-poco-c3-dual-sim-td-lte-in-64gb-m2006c3mi/index.json new file mode 100644 index 00000000000..55bee986911 --- /dev/null +++ b/site/public/v1/smartphones/pocophone-poco-c3-dual-sim-td-lte-in-64gb-m2006c3mi/index.json @@ -0,0 +1,76 @@ +{ + "id": 5939, + "slug": "pocophone-poco-c3-dual-sim-td-lte-in-64gb-m2006c3mi", + "name": "Pocophone Poco C3 Dual SIM TD-LTE IN 64GB M2006C3MI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2020-10-11", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.952308", + "updated_at": "2026-06-19T00:43:44.952308" +} diff --git a/site/public/v1/smartphones/pocophone-poco-c3-dual-sim-td-lte-in-64gb-m2006c3mi/score/index.json b/site/public/v1/smartphones/pocophone-poco-c3-dual-sim-td-lte-in-64gb-m2006c3mi/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/pocophone-poco-c3-dual-sim-td-lte-in-64gb-m2006c3mi/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/pocophone-poco-c31-dual-sim-td-lte-in-32gb/index.json b/site/public/v1/smartphones/pocophone-poco-c31-dual-sim-td-lte-in-32gb/index.json new file mode 100644 index 00000000000..b7d2c771eb6 --- /dev/null +++ b/site/public/v1/smartphones/pocophone-poco-c31-dual-sim-td-lte-in-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 6131, + "slug": "pocophone-poco-c31-dual-sim-td-lte-in-32gb", + "name": "Pocophone Poco C31 Dual SIM TD-LTE IN 32GB", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-10-02", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.974207", + "updated_at": "2026-06-19T00:43:44.974207" +} diff --git a/site/public/v1/smartphones/pocophone-poco-c31-dual-sim-td-lte-in-32gb/score/index.json b/site/public/v1/smartphones/pocophone-poco-c31-dual-sim-td-lte-in-32gb/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/pocophone-poco-c31-dual-sim-td-lte-in-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/pocophone-poco-c31-dual-sim-td-lte-in-64gb/index.json b/site/public/v1/smartphones/pocophone-poco-c31-dual-sim-td-lte-in-64gb/index.json new file mode 100644 index 00000000000..55bd28a4452 --- /dev/null +++ b/site/public/v1/smartphones/pocophone-poco-c31-dual-sim-td-lte-in-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 6132, + "slug": "pocophone-poco-c31-dual-sim-td-lte-in-64gb", + "name": "Pocophone Poco C31 Dual SIM TD-LTE IN 64GB", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-10-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.974207", + "updated_at": "2026-06-19T00:43:44.974207" +} diff --git a/site/public/v1/smartphones/pocophone-poco-c31-dual-sim-td-lte-in-64gb/score/index.json b/site/public/v1/smartphones/pocophone-poco-c31-dual-sim-td-lte-in-64gb/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/pocophone-poco-c31-dual-sim-td-lte-in-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/pocophone-poco-f1-armoured-edition-global-dual-sim-td-lte-128gb-m1805e10a/index.json b/site/public/v1/smartphones/pocophone-poco-f1-armoured-edition-global-dual-sim-td-lte-128gb-m1805e10a/index.json new file mode 100644 index 00000000000..33e4bed2463 --- /dev/null +++ b/site/public/v1/smartphones/pocophone-poco-f1-armoured-edition-global-dual-sim-td-lte-128gb-m1805e10a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5654, + "slug": "pocophone-poco-f1-armoured-edition-global-dual-sim-td-lte-128gb-m1805e10a", + "name": "Pocophone Poco F1 Armoured Edition Global Dual SIM TD-LTE 128GB M1805E10A", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-12-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 187.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 5.0, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.920308", + "updated_at": "2026-06-19T00:43:44.920308" +} diff --git a/site/public/v1/smartphones/pocophone-poco-f1-armoured-edition-global-dual-sim-td-lte-128gb-m1805e10a/score/index.json b/site/public/v1/smartphones/pocophone-poco-f1-armoured-edition-global-dual-sim-td-lte-128gb-m1805e10a/score/index.json new file mode 100644 index 00000000000..fb29f69b43f --- /dev/null +++ b/site/public/v1/smartphones/pocophone-poco-f1-armoured-edition-global-dual-sim-td-lte-128gb-m1805e10a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 5.0, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/pocophone-poco-f1-armoured-edition-global-dual-sim-td-lte-256gb-m1805e10a/index.json b/site/public/v1/smartphones/pocophone-poco-f1-armoured-edition-global-dual-sim-td-lte-256gb-m1805e10a/index.json new file mode 100644 index 00000000000..a4d7bf39da3 --- /dev/null +++ b/site/public/v1/smartphones/pocophone-poco-f1-armoured-edition-global-dual-sim-td-lte-256gb-m1805e10a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5655, + "slug": "pocophone-poco-f1-armoured-edition-global-dual-sim-td-lte-256gb-m1805e10a", + "name": "Pocophone Poco F1 Armoured Edition Global Dual SIM TD-LTE 256GB M1805E10A", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-08-27", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 187.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 3.0, + "camera": 5.0, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.920308", + "updated_at": "2026-06-19T00:43:44.920308" +} diff --git a/site/public/v1/smartphones/pocophone-poco-f1-armoured-edition-global-dual-sim-td-lte-256gb-m1805e10a/score/index.json b/site/public/v1/smartphones/pocophone-poco-f1-armoured-edition-global-dual-sim-td-lte-256gb-m1805e10a/score/index.json new file mode 100644 index 00000000000..bf23aea706e --- /dev/null +++ b/site/public/v1/smartphones/pocophone-poco-f1-armoured-edition-global-dual-sim-td-lte-256gb-m1805e10a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 3.0, + "camera": 5.0, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/pocophone-poco-f1-dual-sim-td-lte-256gb-m1805e10a/index.json b/site/public/v1/smartphones/pocophone-poco-f1-dual-sim-td-lte-256gb-m1805e10a/index.json new file mode 100644 index 00000000000..7b38a8d0726 --- /dev/null +++ b/site/public/v1/smartphones/pocophone-poco-f1-dual-sim-td-lte-256gb-m1805e10a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5656, + "slug": "pocophone-poco-f1-dual-sim-td-lte-256gb-m1805e10a", + "name": "Pocophone Poco F1 Dual SIM TD-LTE 256GB M1805E10A", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-08-27", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 3.0, + "camera": 5.0, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.920308", + "updated_at": "2026-06-19T00:43:44.920308" +} diff --git a/site/public/v1/smartphones/pocophone-poco-f1-dual-sim-td-lte-256gb-m1805e10a/score/index.json b/site/public/v1/smartphones/pocophone-poco-f1-dual-sim-td-lte-256gb-m1805e10a/score/index.json new file mode 100644 index 00000000000..bf23aea706e --- /dev/null +++ b/site/public/v1/smartphones/pocophone-poco-f1-dual-sim-td-lte-256gb-m1805e10a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 3.0, + "camera": 5.0, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/pocophone-poco-f1-global-dual-sim-td-lte-128gb-m1805e10a/index.json b/site/public/v1/smartphones/pocophone-poco-f1-global-dual-sim-td-lte-128gb-m1805e10a/index.json new file mode 100644 index 00000000000..1b038b0398f --- /dev/null +++ b/site/public/v1/smartphones/pocophone-poco-f1-global-dual-sim-td-lte-128gb-m1805e10a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5657, + "slug": "pocophone-poco-f1-global-dual-sim-td-lte-128gb-m1805e10a", + "name": "Pocophone Poco F1 Global Dual SIM TD-LTE 128GB M1805E10A", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-08-27", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 5.0, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.920308", + "updated_at": "2026-06-19T00:43:44.920308" +} diff --git a/site/public/v1/smartphones/pocophone-poco-f1-global-dual-sim-td-lte-128gb-m1805e10a/score/index.json b/site/public/v1/smartphones/pocophone-poco-f1-global-dual-sim-td-lte-128gb-m1805e10a/score/index.json new file mode 100644 index 00000000000..fb29f69b43f --- /dev/null +++ b/site/public/v1/smartphones/pocophone-poco-f1-global-dual-sim-td-lte-128gb-m1805e10a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 5.0, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/pocophone-poco-f1-global-dual-sim-td-lte-64gb-m1805e10a/index.json b/site/public/v1/smartphones/pocophone-poco-f1-global-dual-sim-td-lte-64gb-m1805e10a/index.json new file mode 100644 index 00000000000..b8cf85a7016 --- /dev/null +++ b/site/public/v1/smartphones/pocophone-poco-f1-global-dual-sim-td-lte-64gb-m1805e10a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5658, + "slug": "pocophone-poco-f1-global-dual-sim-td-lte-64gb-m1805e10a", + "name": "Pocophone Poco F1 Global Dual SIM TD-LTE 64GB M1805E10A", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-08-27", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 5.0, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.920308", + "updated_at": "2026-06-19T00:43:44.920308" +} diff --git a/site/public/v1/smartphones/pocophone-poco-f1-global-dual-sim-td-lte-64gb-m1805e10a/score/index.json b/site/public/v1/smartphones/pocophone-poco-f1-global-dual-sim-td-lte-64gb-m1805e10a/score/index.json new file mode 100644 index 00000000000..fb29f69b43f --- /dev/null +++ b/site/public/v1/smartphones/pocophone-poco-f1-global-dual-sim-td-lte-64gb-m1805e10a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 5.0, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/pocophone-poco-f2-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-m2004j11g/index.json b/site/public/v1/smartphones/pocophone-poco-f2-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-m2004j11g/index.json new file mode 100644 index 00000000000..8ae873ab15f --- /dev/null +++ b/site/public/v1/smartphones/pocophone-poco-f2-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-m2004j11g/index.json @@ -0,0 +1,77 @@ +{ + "id": 5941, + "slug": "pocophone-poco-f2-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-m2004j11g", + "name": "Pocophone Poco F2 Pro 5G Premium Edition Global Dual SIM TD-LTE 256GB M2004J11G", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-05-19", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4700, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 219.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 3.0, + "camera": 21.5, + "battery": 28.9, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.953307", + "updated_at": "2026-06-19T00:43:44.953307" +} diff --git a/site/public/v1/smartphones/pocophone-poco-f2-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-m2004j11g/score/index.json b/site/public/v1/smartphones/pocophone-poco-f2-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-m2004j11g/score/index.json new file mode 100644 index 00000000000..d458a377d04 --- /dev/null +++ b/site/public/v1/smartphones/pocophone-poco-f2-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-m2004j11g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 3.0, + "camera": 21.5, + "battery": 28.9, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/pocophone-poco-f2-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-m2004j11g/index.json b/site/public/v1/smartphones/pocophone-poco-f2-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-m2004j11g/index.json new file mode 100644 index 00000000000..4097d7acb56 --- /dev/null +++ b/site/public/v1/smartphones/pocophone-poco-f2-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-m2004j11g/index.json @@ -0,0 +1,77 @@ +{ + "id": 5942, + "slug": "pocophone-poco-f2-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-m2004j11g", + "name": "Pocophone Poco F2 Pro 5G Standard Edition Global Dual SIM TD-LTE 128GB M2004J11G", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-05-19", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4700, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 219.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 21.5, + "battery": 28.9, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.953307", + "updated_at": "2026-06-19T00:43:44.953307" +} diff --git a/site/public/v1/smartphones/pocophone-poco-f2-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-m2004j11g/score/index.json b/site/public/v1/smartphones/pocophone-poco-f2-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-m2004j11g/score/index.json new file mode 100644 index 00000000000..6d7891d4afe --- /dev/null +++ b/site/public/v1/smartphones/pocophone-poco-f2-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-m2004j11g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 21.5, + "battery": 28.9, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/pocophone-poco-x2-premium-edition-dual-sim-td-lte-in-256gb-m1912g7bi/index.json b/site/public/v1/smartphones/pocophone-poco-x2-premium-edition-dual-sim-td-lte-in-256gb-m1912g7bi/index.json new file mode 100644 index 00000000000..eba32e2b945 --- /dev/null +++ b/site/public/v1/smartphones/pocophone-poco-x2-premium-edition-dual-sim-td-lte-in-256gb-m1912g7bi/index.json @@ -0,0 +1,77 @@ +{ + "id": 5946, + "slug": "pocophone-poco-x2-premium-edition-dual-sim-td-lte-in-256gb-m1912g7bi", + "name": "Pocophone Poco X2 Premium Edition Dual SIM TD-LTE IN 256GB M1912G7BI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2020-02-11", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.4, + "performance": 3.0, + "camera": 21.7, + "battery": 24.8, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.953307", + "updated_at": "2026-06-19T00:43:44.953307" +} diff --git a/site/public/v1/smartphones/pocophone-poco-x2-premium-edition-dual-sim-td-lte-in-256gb-m1912g7bi/score/index.json b/site/public/v1/smartphones/pocophone-poco-x2-premium-edition-dual-sim-td-lte-in-256gb-m1912g7bi/score/index.json new file mode 100644 index 00000000000..632b41c375f --- /dev/null +++ b/site/public/v1/smartphones/pocophone-poco-x2-premium-edition-dual-sim-td-lte-in-256gb-m1912g7bi/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.4, + "performance": 3.0, + "camera": 21.7, + "battery": 24.8, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/pocophone-poco-x2-standard-edition-dual-sim-td-lte-in-128gb-m1912g7bi/index.json b/site/public/v1/smartphones/pocophone-poco-x2-standard-edition-dual-sim-td-lte-in-128gb-m1912g7bi/index.json new file mode 100644 index 00000000000..9822ba80e16 --- /dev/null +++ b/site/public/v1/smartphones/pocophone-poco-x2-standard-edition-dual-sim-td-lte-in-128gb-m1912g7bi/index.json @@ -0,0 +1,77 @@ +{ + "id": 5948, + "slug": "pocophone-poco-x2-standard-edition-dual-sim-td-lte-in-128gb-m1912g7bi", + "name": "Pocophone Poco X2 Standard Edition Dual SIM TD-LTE IN 128GB M1912G7BI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2020-02-11", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.0, + "performance": 1.5, + "camera": 21.7, + "battery": 24.8, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.953307", + "updated_at": "2026-06-19T00:43:44.953307" +} diff --git a/site/public/v1/smartphones/pocophone-poco-x2-standard-edition-dual-sim-td-lte-in-128gb-m1912g7bi/score/index.json b/site/public/v1/smartphones/pocophone-poco-x2-standard-edition-dual-sim-td-lte-in-128gb-m1912g7bi/score/index.json new file mode 100644 index 00000000000..17a351a2b86 --- /dev/null +++ b/site/public/v1/smartphones/pocophone-poco-x2-standard-edition-dual-sim-td-lte-in-128gb-m1912g7bi/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.0, + "performance": 1.5, + "camera": 21.7, + "battery": 24.8, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/pocophone-poco-x2-standard-edition-dual-sim-td-lte-in-64gb/index.json b/site/public/v1/smartphones/pocophone-poco-x2-standard-edition-dual-sim-td-lte-in-64gb/index.json new file mode 100644 index 00000000000..3610cf26012 --- /dev/null +++ b/site/public/v1/smartphones/pocophone-poco-x2-standard-edition-dual-sim-td-lte-in-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 5949, + "slug": "pocophone-poco-x2-standard-edition-dual-sim-td-lte-in-64gb", + "name": "Pocophone Poco X2 Standard Edition Dual SIM TD-LTE IN 64GB", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2020-02-11", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.0, + "performance": 1.5, + "camera": 21.7, + "battery": 24.8, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.953307", + "updated_at": "2026-06-19T00:43:44.953307" +} diff --git a/site/public/v1/smartphones/pocophone-poco-x2-standard-edition-dual-sim-td-lte-in-64gb/score/index.json b/site/public/v1/smartphones/pocophone-poco-x2-standard-edition-dual-sim-td-lte-in-64gb/score/index.json new file mode 100644 index 00000000000..17a351a2b86 --- /dev/null +++ b/site/public/v1/smartphones/pocophone-poco-x2-standard-edition-dual-sim-td-lte-in-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.0, + "performance": 1.5, + "camera": 21.7, + "battery": 24.8, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/pouvoir-4-pro-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/pouvoir-4-pro-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..ac06e88ff99 --- /dev/null +++ b/site/public/v1/smartphones/pouvoir-4-pro-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4983, + "slug": "pouvoir-4-pro-dual-sim-td-lte-128gb", + "name": "Pouvoir 4 Pro Dual SIM TD-LTE 128GB", + "brand": { + "id": 39, + "slug": "tecno", + "name": "Tecno Mobile", + "country": "CN", + "url": "/v1/brands/tecno" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-07-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 7.0, + "resolution": "720x1640", + "type": "Color IPS TFT LCD display", + "ppi": 256 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.0, + "performance": null, + "camera": 6.3, + "battery": 45.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.836762", + "updated_at": "2026-06-19T00:43:44.836762" +} diff --git a/site/public/v1/smartphones/pouvoir-4-pro-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/pouvoir-4-pro-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..dc85a11eb89 --- /dev/null +++ b/site/public/v1/smartphones/pouvoir-4-pro-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.0, + "performance": null, + "camera": 6.3, + "battery": 45.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/power-3-dual-sim-lte/index.json b/site/public/v1/smartphones/power-3-dual-sim-lte/index.json new file mode 100644 index 00000000000..428ab326614 --- /dev/null +++ b/site/public/v1/smartphones/power-3-dual-sim-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 5020, + "slug": "power-3-dual-sim-lte", + "name": "Power 3 Dual SIM LTE", + "brand": { + "id": 41, + "slug": "ulefone", + "name": "Ulefone", + "country": "CN", + "url": "/v1/brands/ulefone" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2018-01-22", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 6080, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 1.5, + "camera": 6.3, + "battery": 45.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.842135", + "updated_at": "2026-06-19T00:43:44.842135" +} diff --git a/site/public/v1/smartphones/power-3-dual-sim-lte/score/index.json b/site/public/v1/smartphones/power-3-dual-sim-lte/score/index.json new file mode 100644 index 00000000000..05a5681133c --- /dev/null +++ b/site/public/v1/smartphones/power-3-dual-sim-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 1.5, + "camera": 6.3, + "battery": 45.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/power-3s-dual-sim-lte/index.json b/site/public/v1/smartphones/power-3s-dual-sim-lte/index.json new file mode 100644 index 00000000000..312a8c5093e --- /dev/null +++ b/site/public/v1/smartphones/power-3s-dual-sim-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 5021, + "slug": "power-3s-dual-sim-lte", + "name": "Power 3s Dual SIM LTE", + "brand": { + "id": 41, + "slug": "ulefone", + "name": "Ulefone", + "country": "CN", + "url": "/v1/brands/ulefone" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2018-02-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6350, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 0.0, + "camera": 5.3, + "battery": 45.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.842135", + "updated_at": "2026-06-19T00:43:44.842135" +} diff --git a/site/public/v1/smartphones/power-3s-dual-sim-lte/score/index.json b/site/public/v1/smartphones/power-3s-dual-sim-lte/score/index.json new file mode 100644 index 00000000000..3ea2eb0b56d --- /dev/null +++ b/site/public/v1/smartphones/power-3s-dual-sim-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 0.0, + "camera": 5.3, + "battery": 45.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/power-6-dual-sim-td-lte/index.json b/site/public/v1/smartphones/power-6-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..6ee36b8467f --- /dev/null +++ b/site/public/v1/smartphones/power-6-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 5030, + "slug": "power-6-dual-sim-td-lte", + "name": "Power 6 Dual SIM TD-LTE", + "brand": { + "id": 41, + "slug": "ulefone", + "name": "Ulefone", + "country": "CN", + "url": "/v1/brands/ulefone" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 6350, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 207.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.3, + "performance": 0.0, + "camera": 6.3, + "battery": 45.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.843776", + "updated_at": "2026-06-19T00:43:44.843776" +} diff --git a/site/public/v1/smartphones/power-6-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/power-6-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..dddf9a3643a --- /dev/null +++ b/site/public/v1/smartphones/power-6-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.3, + "performance": 0.0, + "camera": 6.3, + "battery": 45.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/q610ma-q7-td-lte-us/index.json b/site/public/v1/smartphones/q610ma-q7-td-lte-us/index.json new file mode 100644 index 00000000000..6c3064d526e --- /dev/null +++ b/site/public/v1/smartphones/q610ma-q7-td-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 1574, + "slug": "q610ma-q7-td-lte-us", + "name": "Q610MA Q7+ TD-LTE US", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 16.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 6.3, + "battery": 0.0, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.348605", + "updated_at": "2026-06-19T00:43:44.348605" +} diff --git a/site/public/v1/smartphones/q610ma-q7-td-lte-us/score/index.json b/site/public/v1/smartphones/q610ma-q7-td-lte-us/score/index.json new file mode 100644 index 00000000000..95e89c56193 --- /dev/null +++ b/site/public/v1/smartphones/q610ma-q7-td-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 6.3, + "battery": 0.0, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/q610ta-q7-td-lte-us/index.json b/site/public/v1/smartphones/q610ta-q7-td-lte-us/index.json new file mode 100644 index 00000000000..e2fd07b8e6b --- /dev/null +++ b/site/public/v1/smartphones/q610ta-q7-td-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 1575, + "slug": "q610ta-q7-td-lte-us", + "name": "Q610TA Q7+ TD-LTE US", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 16.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 6.3, + "battery": 0.0, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.348605", + "updated_at": "2026-06-19T00:43:44.348605" +} diff --git a/site/public/v1/smartphones/q610ta-q7-td-lte-us/score/index.json b/site/public/v1/smartphones/q610ta-q7-td-lte-us/score/index.json new file mode 100644 index 00000000000..95e89c56193 --- /dev/null +++ b/site/public/v1/smartphones/q610ta-q7-td-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 6.3, + "battery": 0.0, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/q710cs-stylo-4-lte-us/index.json b/site/public/v1/smartphones/q710cs-stylo-4-lte-us/index.json new file mode 100644 index 00000000000..e10a2e2952b --- /dev/null +++ b/site/public/v1/smartphones/q710cs-stylo-4-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 1576, + "slug": "q710cs-stylo-4-lte-us", + "name": "Q710CS Stylo 4 LTE US", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": null, + "camera": 5.3, + "battery": 4.5, + "display": 44.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.348605", + "updated_at": "2026-06-19T00:43:44.348605" +} diff --git a/site/public/v1/smartphones/q710cs-stylo-4-lte-us/score/index.json b/site/public/v1/smartphones/q710cs-stylo-4-lte-us/score/index.json new file mode 100644 index 00000000000..2606476b9f1 --- /dev/null +++ b/site/public/v1/smartphones/q710cs-stylo-4-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": null, + "camera": 5.3, + "battery": 4.5, + "display": 44.0, + "value": null +} diff --git a/site/public/v1/smartphones/q710ms-stylo-4-td-lte-us/index.json b/site/public/v1/smartphones/q710ms-stylo-4-td-lte-us/index.json new file mode 100644 index 00000000000..49610e65bb0 --- /dev/null +++ b/site/public/v1/smartphones/q710ms-stylo-4-td-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 1577, + "slug": "q710ms-stylo-4-td-lte-us", + "name": "Q710MS Stylo 4 TD-LTE US", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": null, + "camera": 5.3, + "battery": 4.5, + "display": 44.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.349605", + "updated_at": "2026-06-19T00:43:44.349605" +} diff --git a/site/public/v1/smartphones/q710ms-stylo-4-td-lte-us/score/index.json b/site/public/v1/smartphones/q710ms-stylo-4-td-lte-us/score/index.json new file mode 100644 index 00000000000..2606476b9f1 --- /dev/null +++ b/site/public/v1/smartphones/q710ms-stylo-4-td-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": null, + "camera": 5.3, + "battery": 4.5, + "display": 44.0, + "value": null +} diff --git a/site/public/v1/smartphones/q710ts-stylo-4-td-lte-us-q710pr/index.json b/site/public/v1/smartphones/q710ts-stylo-4-td-lte-us-q710pr/index.json new file mode 100644 index 00000000000..0a8179eb4f8 --- /dev/null +++ b/site/public/v1/smartphones/q710ts-stylo-4-td-lte-us-q710pr/index.json @@ -0,0 +1,76 @@ +{ + "id": 1578, + "slug": "q710ts-stylo-4-td-lte-us-q710pr", + "name": "Q710TS Stylo 4 TD-LTE US / Q710PR", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-07-13", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": null, + "camera": 5.3, + "battery": 4.5, + "display": 44.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.349605", + "updated_at": "2026-06-19T00:43:44.349605" +} diff --git a/site/public/v1/smartphones/q710ts-stylo-4-td-lte-us-q710pr/score/index.json b/site/public/v1/smartphones/q710ts-stylo-4-td-lte-us-q710pr/score/index.json new file mode 100644 index 00000000000..2606476b9f1 --- /dev/null +++ b/site/public/v1/smartphones/q710ts-stylo-4-td-lte-us-q710pr/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": null, + "camera": 5.3, + "battery": 4.5, + "display": 44.0, + "value": null +} diff --git a/site/public/v1/smartphones/q710ulm-stylo-4-lte-us/index.json b/site/public/v1/smartphones/q710ulm-stylo-4-lte-us/index.json new file mode 100644 index 00000000000..315145c148f --- /dev/null +++ b/site/public/v1/smartphones/q710ulm-stylo-4-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 1579, + "slug": "q710ulm-stylo-4-lte-us", + "name": "Q710ULM Stylo 4 LTE US", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-08-02", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": null, + "camera": 5.3, + "battery": 4.5, + "display": 44.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.349605", + "updated_at": "2026-06-19T00:43:44.349605" +} diff --git a/site/public/v1/smartphones/q710ulm-stylo-4-lte-us/score/index.json b/site/public/v1/smartphones/q710ulm-stylo-4-lte-us/score/index.json new file mode 100644 index 00000000000..2606476b9f1 --- /dev/null +++ b/site/public/v1/smartphones/q710ulm-stylo-4-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": null, + "camera": 5.3, + "battery": 4.5, + "display": 44.0, + "value": null +} diff --git a/site/public/v1/smartphones/q710uls-stylo-4-lte-us/index.json b/site/public/v1/smartphones/q710uls-stylo-4-lte-us/index.json new file mode 100644 index 00000000000..a8967764896 --- /dev/null +++ b/site/public/v1/smartphones/q710uls-stylo-4-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 1580, + "slug": "q710uls-stylo-4-lte-us", + "name": "Q710ULS Stylo 4 LTE US", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": null, + "camera": 5.3, + "battery": 4.5, + "display": 44.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.349605", + "updated_at": "2026-06-19T00:43:44.349605" +} diff --git a/site/public/v1/smartphones/q710uls-stylo-4-lte-us/score/index.json b/site/public/v1/smartphones/q710uls-stylo-4-lte-us/score/index.json new file mode 100644 index 00000000000..2606476b9f1 --- /dev/null +++ b/site/public/v1/smartphones/q710uls-stylo-4-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": null, + "camera": 5.3, + "battery": 4.5, + "display": 44.0, + "value": null +} diff --git a/site/public/v1/smartphones/q710us-stylo-4-lte-us/index.json b/site/public/v1/smartphones/q710us-stylo-4-lte-us/index.json new file mode 100644 index 00000000000..63a269aac08 --- /dev/null +++ b/site/public/v1/smartphones/q710us-stylo-4-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 1581, + "slug": "q710us-stylo-4-lte-us", + "name": "Q710US Stylo 4 LTE US", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": null, + "camera": 5.3, + "battery": 4.5, + "display": 44.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.349605", + "updated_at": "2026-06-19T00:43:44.349605" +} diff --git a/site/public/v1/smartphones/q710us-stylo-4-lte-us/score/index.json b/site/public/v1/smartphones/q710us-stylo-4-lte-us/score/index.json new file mode 100644 index 00000000000..2606476b9f1 --- /dev/null +++ b/site/public/v1/smartphones/q710us-stylo-4-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": null, + "camera": 5.3, + "battery": 4.5, + "display": 44.0, + "value": null +} diff --git a/site/public/v1/smartphones/q720k-q7-td-lte-kr/index.json b/site/public/v1/smartphones/q720k-q7-td-lte-kr/index.json new file mode 100644 index 00000000000..6447933cc0d --- /dev/null +++ b/site/public/v1/smartphones/q720k-q7-td-lte-kr/index.json @@ -0,0 +1,76 @@ +{ + "id": 1582, + "slug": "q720k-q7-td-lte-kr", + "name": "Q720K Q7 TD-LTE KR", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.349605", + "updated_at": "2026-06-19T00:43:44.349605" +} diff --git a/site/public/v1/smartphones/q720k-q7-td-lte-kr/score/index.json b/site/public/v1/smartphones/q720k-q7-td-lte-kr/score/index.json new file mode 100644 index 00000000000..a3cf614ebc2 --- /dev/null +++ b/site/public/v1/smartphones/q720k-q7-td-lte-kr/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/q720l-q7-td-lte-kr/index.json b/site/public/v1/smartphones/q720l-q7-td-lte-kr/index.json new file mode 100644 index 00000000000..27d8e8da365 --- /dev/null +++ b/site/public/v1/smartphones/q720l-q7-td-lte-kr/index.json @@ -0,0 +1,76 @@ +{ + "id": 1583, + "slug": "q720l-q7-td-lte-kr", + "name": "Q720L Q7 TD-LTE KR", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.349605", + "updated_at": "2026-06-19T00:43:44.349605" +} diff --git a/site/public/v1/smartphones/q720l-q7-td-lte-kr/score/index.json b/site/public/v1/smartphones/q720l-q7-td-lte-kr/score/index.json new file mode 100644 index 00000000000..a3cf614ebc2 --- /dev/null +++ b/site/public/v1/smartphones/q720l-q7-td-lte-kr/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/q720s-q7-td-lte-kr/index.json b/site/public/v1/smartphones/q720s-q7-td-lte-kr/index.json new file mode 100644 index 00000000000..b41a613961c --- /dev/null +++ b/site/public/v1/smartphones/q720s-q7-td-lte-kr/index.json @@ -0,0 +1,76 @@ +{ + "id": 1584, + "slug": "q720s-q7-td-lte-kr", + "name": "Q720S Q7 TD-LTE KR", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.349605", + "updated_at": "2026-06-19T00:43:44.349605" +} diff --git a/site/public/v1/smartphones/q720s-q7-td-lte-kr/score/index.json b/site/public/v1/smartphones/q720s-q7-td-lte-kr/score/index.json new file mode 100644 index 00000000000..a3cf614ebc2 --- /dev/null +++ b/site/public/v1/smartphones/q720s-q7-td-lte-kr/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/q725k-q7-td-lte-kr/index.json b/site/public/v1/smartphones/q725k-q7-td-lte-kr/index.json new file mode 100644 index 00000000000..dad8fcc34b2 --- /dev/null +++ b/site/public/v1/smartphones/q725k-q7-td-lte-kr/index.json @@ -0,0 +1,76 @@ +{ + "id": 1585, + "slug": "q725k-q7-td-lte-kr", + "name": "Q725K Q7+ TD-LTE KR", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 16.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 6.3, + "battery": 0.0, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.350605", + "updated_at": "2026-06-19T00:43:44.350605" +} diff --git a/site/public/v1/smartphones/q725k-q7-td-lte-kr/score/index.json b/site/public/v1/smartphones/q725k-q7-td-lte-kr/score/index.json new file mode 100644 index 00000000000..95e89c56193 --- /dev/null +++ b/site/public/v1/smartphones/q725k-q7-td-lte-kr/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 6.3, + "battery": 0.0, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/q725l-q7-td-lte-kr/index.json b/site/public/v1/smartphones/q725l-q7-td-lte-kr/index.json new file mode 100644 index 00000000000..a60d9f90357 --- /dev/null +++ b/site/public/v1/smartphones/q725l-q7-td-lte-kr/index.json @@ -0,0 +1,76 @@ +{ + "id": 1586, + "slug": "q725l-q7-td-lte-kr", + "name": "Q725L Q7+ TD-LTE KR", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 16.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 6.3, + "battery": 0.0, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.350605", + "updated_at": "2026-06-19T00:43:44.350605" +} diff --git a/site/public/v1/smartphones/q725l-q7-td-lte-kr/score/index.json b/site/public/v1/smartphones/q725l-q7-td-lte-kr/score/index.json new file mode 100644 index 00000000000..95e89c56193 --- /dev/null +++ b/site/public/v1/smartphones/q725l-q7-td-lte-kr/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 6.3, + "battery": 0.0, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/q725s-q7-td-lte-kr/index.json b/site/public/v1/smartphones/q725s-q7-td-lte-kr/index.json new file mode 100644 index 00000000000..591f4e0e9e1 --- /dev/null +++ b/site/public/v1/smartphones/q725s-q7-td-lte-kr/index.json @@ -0,0 +1,76 @@ +{ + "id": 1587, + "slug": "q725s-q7-td-lte-kr", + "name": "Q725S Q7+ TD-LTE KR", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 16.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 6.3, + "battery": 0.0, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.350605", + "updated_at": "2026-06-19T00:43:44.350605" +} diff --git a/site/public/v1/smartphones/q725s-q7-td-lte-kr/score/index.json b/site/public/v1/smartphones/q725s-q7-td-lte-kr/score/index.json new file mode 100644 index 00000000000..95e89c56193 --- /dev/null +++ b/site/public/v1/smartphones/q725s-q7-td-lte-kr/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 6.3, + "battery": 0.0, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/q727k-q7-bts-edition-td-lte-kr/index.json b/site/public/v1/smartphones/q727k-q7-bts-edition-td-lte-kr/index.json new file mode 100644 index 00000000000..a66dedca24a --- /dev/null +++ b/site/public/v1/smartphones/q727k-q7-bts-edition-td-lte-kr/index.json @@ -0,0 +1,76 @@ +{ + "id": 1588, + "slug": "q727k-q7-bts-edition-td-lte-kr", + "name": "Q727K Q7 BTS Edition TD-LTE KR", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.350605", + "updated_at": "2026-06-19T00:43:44.350605" +} diff --git a/site/public/v1/smartphones/q727k-q7-bts-edition-td-lte-kr/score/index.json b/site/public/v1/smartphones/q727k-q7-bts-edition-td-lte-kr/score/index.json new file mode 100644 index 00000000000..a3cf614ebc2 --- /dev/null +++ b/site/public/v1/smartphones/q727k-q7-bts-edition-td-lte-kr/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/q815l-q-series-q8-2018-td-lte-kr/index.json b/site/public/v1/smartphones/q815l-q-series-q8-2018-td-lte-kr/index.json new file mode 100644 index 00000000000..ac6b1f2ab3b --- /dev/null +++ b/site/public/v1/smartphones/q815l-q-series-q8-2018-td-lte-kr/index.json @@ -0,0 +1,76 @@ +{ + "id": 1589, + "slug": "q815l-q-series-q8-2018-td-lte-kr", + "name": "Q815L Q Series Q8 2018 TD-LTE KR", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 6.3, + "battery": 4.5, + "display": 44.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.350605", + "updated_at": "2026-06-19T00:43:44.350605" +} diff --git a/site/public/v1/smartphones/q815l-q-series-q8-2018-td-lte-kr/score/index.json b/site/public/v1/smartphones/q815l-q-series-q8-2018-td-lte-kr/score/index.json new file mode 100644 index 00000000000..94fa5113656 --- /dev/null +++ b/site/public/v1/smartphones/q815l-q-series-q8-2018-td-lte-kr/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 6.3, + "battery": 4.5, + "display": 44.0, + "value": null +} diff --git a/site/public/v1/smartphones/q815s-q-series-q8-2018-td-lte-kr/index.json b/site/public/v1/smartphones/q815s-q-series-q8-2018-td-lte-kr/index.json new file mode 100644 index 00000000000..369cba7179c --- /dev/null +++ b/site/public/v1/smartphones/q815s-q-series-q8-2018-td-lte-kr/index.json @@ -0,0 +1,76 @@ +{ + "id": 1590, + "slug": "q815s-q-series-q8-2018-td-lte-kr", + "name": "Q815S Q Series Q8 2018 TD-LTE KR", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 6.3, + "battery": 4.5, + "display": 44.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.350605", + "updated_at": "2026-06-19T00:43:44.350605" +} diff --git a/site/public/v1/smartphones/q815s-q-series-q8-2018-td-lte-kr/score/index.json b/site/public/v1/smartphones/q815s-q-series-q8-2018-td-lte-kr/score/index.json new file mode 100644 index 00000000000..94fa5113656 --- /dev/null +++ b/site/public/v1/smartphones/q815s-q-series-q8-2018-td-lte-kr/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 6.3, + "battery": 4.5, + "display": 44.0, + "value": null +} diff --git a/site/public/v1/smartphones/q925k-q9-td-lte-kr/index.json b/site/public/v1/smartphones/q925k-q9-td-lte-kr/index.json new file mode 100644 index 00000000000..f36f5face20 --- /dev/null +++ b/site/public/v1/smartphones/q925k-q9-td-lte-kr/index.json @@ -0,0 +1,76 @@ +{ + "id": 1709, + "slug": "q925k-q9-td-lte-kr", + "name": "Q925K Q9 TD-LTE KR", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 116, + "slug": "snapdragon-821", + "name": "Snapdragon 821", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 530", + "url": "/v1/socs/snapdragon-821" + }, + "release_date": "2019-07-11", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 158.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 11.8, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.366617", + "updated_at": "2026-06-19T00:43:44.366617" +} diff --git a/site/public/v1/smartphones/q925k-q9-td-lte-kr/score/index.json b/site/public/v1/smartphones/q925k-q9-td-lte-kr/score/index.json new file mode 100644 index 00000000000..b0d0bd4d903 --- /dev/null +++ b/site/public/v1/smartphones/q925k-q9-td-lte-kr/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 11.8, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null +} diff --git a/site/public/v1/smartphones/q925l-q9-lte-a-kr/index.json b/site/public/v1/smartphones/q925l-q9-lte-a-kr/index.json new file mode 100644 index 00000000000..0280c9970af --- /dev/null +++ b/site/public/v1/smartphones/q925l-q9-lte-a-kr/index.json @@ -0,0 +1,76 @@ +{ + "id": 1710, + "slug": "q925l-q9-lte-a-kr", + "name": "Q925L Q9 LTE-A KR", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 116, + "slug": "snapdragon-821", + "name": "Snapdragon 821", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 530", + "url": "/v1/socs/snapdragon-821" + }, + "release_date": "2019-07-11", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 158.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 11.8, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.366617", + "updated_at": "2026-06-19T00:43:44.366617" +} diff --git a/site/public/v1/smartphones/q925l-q9-lte-a-kr/score/index.json b/site/public/v1/smartphones/q925l-q9-lte-a-kr/score/index.json new file mode 100644 index 00000000000..b0d0bd4d903 --- /dev/null +++ b/site/public/v1/smartphones/q925l-q9-lte-a-kr/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 11.8, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null +} diff --git a/site/public/v1/smartphones/q925s-q9-td-lte-kr/index.json b/site/public/v1/smartphones/q925s-q9-td-lte-kr/index.json new file mode 100644 index 00000000000..6401b5d5edc --- /dev/null +++ b/site/public/v1/smartphones/q925s-q9-td-lte-kr/index.json @@ -0,0 +1,76 @@ +{ + "id": 1711, + "slug": "q925s-q9-td-lte-kr", + "name": "Q925S Q9 TD-LTE KR", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 116, + "slug": "snapdragon-821", + "name": "Snapdragon 821", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 530", + "url": "/v1/socs/snapdragon-821" + }, + "release_date": "2019-07-11", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 158.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 11.8, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.366617", + "updated_at": "2026-06-19T00:43:44.366617" +} diff --git a/site/public/v1/smartphones/q925s-q9-td-lte-kr/score/index.json b/site/public/v1/smartphones/q925s-q9-td-lte-kr/score/index.json new file mode 100644 index 00000000000..b0d0bd4d903 --- /dev/null +++ b/site/public/v1/smartphones/q925s-q9-td-lte-kr/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 11.8, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null +} diff --git a/site/public/v1/smartphones/q927l-q9-one-td-lte-kr/index.json b/site/public/v1/smartphones/q927l-q9-one-td-lte-kr/index.json new file mode 100644 index 00000000000..0f68b77de67 --- /dev/null +++ b/site/public/v1/smartphones/q927l-q9-one-td-lte-kr/index.json @@ -0,0 +1,76 @@ +{ + "id": 1712, + "slug": "q927l-q9-one-td-lte-kr", + "name": "Q927L Q9 One TD-LTE KR", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 122, + "slug": "snapdragon-835", + "name": "Snapdragon 835", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 540", + "url": "/v1/socs/snapdragon-835" + }, + "release_date": "2019-02-19", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "1440x3120", + "type": "Color IPS TFT LCD display", + "ppi": 564 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 158.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.7, + "performance": 23.1, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.366617", + "updated_at": "2026-06-19T00:43:44.366617" +} diff --git a/site/public/v1/smartphones/q927l-q9-one-td-lte-kr/score/index.json b/site/public/v1/smartphones/q927l-q9-one-td-lte-kr/score/index.json new file mode 100644 index 00000000000..e97af07ce40 --- /dev/null +++ b/site/public/v1/smartphones/q927l-q9-one-td-lte-kr/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.7, + "performance": 23.1, + "camera": 6.4, + "battery": 0.0, + "display": 61.4, + "value": null +} diff --git a/site/public/v1/smartphones/qingyou-1s-dual-sim-td-lte-cn-64gb-xt1925-10-moto-g6/index.json b/site/public/v1/smartphones/qingyou-1s-dual-sim-td-lte-cn-64gb-xt1925-10-moto-g6/index.json new file mode 100644 index 00000000000..384bba29701 --- /dev/null +++ b/site/public/v1/smartphones/qingyou-1s-dual-sim-td-lte-cn-64gb-xt1925-10-moto-g6/index.json @@ -0,0 +1,76 @@ +{ + "id": 2004, + "slug": "qingyou-1s-dual-sim-td-lte-cn-64gb-xt1925-10-moto-g6", + "name": "Qingyou 1s Dual SIM TD-LTE CN 64GB XT1925-10 / Moto G6", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 47.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.401875", + "updated_at": "2026-06-19T00:43:44.401875" +} diff --git a/site/public/v1/smartphones/qingyou-1s-dual-sim-td-lte-cn-64gb-xt1925-10-moto-g6/score/index.json b/site/public/v1/smartphones/qingyou-1s-dual-sim-td-lte-cn-64gb-xt1925-10-moto-g6/score/index.json new file mode 100644 index 00000000000..ef10d3f78b7 --- /dev/null +++ b/site/public/v1/smartphones/qingyou-1s-dual-sim-td-lte-cn-64gb-xt1925-10-moto-g6/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 47.6, + "value": null +} diff --git a/site/public/v1/smartphones/r15-dream-mirror-edition-dual-sim-td-lte-cn-paam00/index.json b/site/public/v1/smartphones/r15-dream-mirror-edition-dual-sim-td-lte-cn-paam00/index.json new file mode 100644 index 00000000000..3dc6f0223e7 --- /dev/null +++ b/site/public/v1/smartphones/r15-dream-mirror-edition-dual-sim-td-lte-cn-paam00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2776, + "slug": "r15-dream-mirror-edition-dual-sim-td-lte-cn-paam00", + "name": "R15 Dream Mirror Edition Dual SIM TD-LTE CN PAAM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-04-03", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 19.5, + "camera": 6.3, + "battery": 6.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.504300", + "updated_at": "2026-06-19T00:43:44.504300" +} diff --git a/site/public/v1/smartphones/r15-dream-mirror-edition-dual-sim-td-lte-cn-paam00/score/index.json b/site/public/v1/smartphones/r15-dream-mirror-edition-dual-sim-td-lte-cn-paam00/score/index.json new file mode 100644 index 00000000000..36d78061403 --- /dev/null +++ b/site/public/v1/smartphones/r15-dream-mirror-edition-dual-sim-td-lte-cn-paam00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 19.5, + "camera": 6.3, + "battery": 6.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/r15-dream-mirror-edition-dual-sim-td-lte-cn-paat00-r15-dme-4g/index.json b/site/public/v1/smartphones/r15-dream-mirror-edition-dual-sim-td-lte-cn-paat00-r15-dme-4g/index.json new file mode 100644 index 00000000000..891fe19525b --- /dev/null +++ b/site/public/v1/smartphones/r15-dream-mirror-edition-dual-sim-td-lte-cn-paat00-r15-dme-4g/index.json @@ -0,0 +1,76 @@ +{ + "id": 2777, + "slug": "r15-dream-mirror-edition-dual-sim-td-lte-cn-paat00-r15-dme-4g", + "name": "R15 Dream Mirror Edition Dual SIM TD-LTE CN PAAT00 / R15 DME 4G+", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-04-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 19.5, + "camera": 6.3, + "battery": 6.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.504300", + "updated_at": "2026-06-19T00:43:44.504300" +} diff --git a/site/public/v1/smartphones/r15-dream-mirror-edition-dual-sim-td-lte-cn-paat00-r15-dme-4g/score/index.json b/site/public/v1/smartphones/r15-dream-mirror-edition-dual-sim-td-lte-cn-paat00-r15-dme-4g/score/index.json new file mode 100644 index 00000000000..36d78061403 --- /dev/null +++ b/site/public/v1/smartphones/r15-dream-mirror-edition-dual-sim-td-lte-cn-paat00-r15-dme-4g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 19.5, + "camera": 6.3, + "battery": 6.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/r15-dual-sim-td-lte-cn-pacm00/index.json b/site/public/v1/smartphones/r15-dual-sim-td-lte-cn-pacm00/index.json new file mode 100644 index 00000000000..acdd539330a --- /dev/null +++ b/site/public/v1/smartphones/r15-dual-sim-td-lte-cn-pacm00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2778, + "slug": "r15-dual-sim-td-lte-cn-pacm00", + "name": "R15 Dual SIM TD-LTE CN PACM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 3450, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 1.5, + "camera": 6.3, + "battery": 6.8, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.504300", + "updated_at": "2026-06-19T00:43:44.504300" +} diff --git a/site/public/v1/smartphones/r15-dual-sim-td-lte-cn-pacm00/score/index.json b/site/public/v1/smartphones/r15-dual-sim-td-lte-cn-pacm00/score/index.json new file mode 100644 index 00000000000..9b8899f57e9 --- /dev/null +++ b/site/public/v1/smartphones/r15-dual-sim-td-lte-cn-pacm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 1.5, + "camera": 6.3, + "battery": 6.8, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/r15-dual-sim-td-lte-cn-pact00/index.json b/site/public/v1/smartphones/r15-dual-sim-td-lte-cn-pact00/index.json new file mode 100644 index 00000000000..fe306eec704 --- /dev/null +++ b/site/public/v1/smartphones/r15-dual-sim-td-lte-cn-pact00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2779, + "slug": "r15-dual-sim-td-lte-cn-pact00", + "name": "R15 Dual SIM TD-LTE CN PACT00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-04-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 3450, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 1.5, + "camera": 6.3, + "battery": 6.8, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.504300", + "updated_at": "2026-06-19T00:43:44.504300" +} diff --git a/site/public/v1/smartphones/r15-dual-sim-td-lte-cn-pact00/score/index.json b/site/public/v1/smartphones/r15-dual-sim-td-lte-cn-pact00/score/index.json new file mode 100644 index 00000000000..9b8899f57e9 --- /dev/null +++ b/site/public/v1/smartphones/r15-dual-sim-td-lte-cn-pact00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 1.5, + "camera": 6.3, + "battery": 6.8, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/r15-dual-sim-td-lte-tw-cph1835/index.json b/site/public/v1/smartphones/r15-dual-sim-td-lte-tw-cph1835/index.json new file mode 100644 index 00000000000..b64240f7480 --- /dev/null +++ b/site/public/v1/smartphones/r15-dual-sim-td-lte-tw-cph1835/index.json @@ -0,0 +1,76 @@ +{ + "id": 2780, + "slug": "r15-dual-sim-td-lte-tw-cph1835", + "name": "R15 Dual SIM TD-LTE TW CPH1835", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 3450, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 1.5, + "camera": 6.3, + "battery": 6.8, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.504300", + "updated_at": "2026-06-19T00:43:44.504300" +} diff --git a/site/public/v1/smartphones/r15-dual-sim-td-lte-tw-cph1835/score/index.json b/site/public/v1/smartphones/r15-dual-sim-td-lte-tw-cph1835/score/index.json new file mode 100644 index 00000000000..9b8899f57e9 --- /dev/null +++ b/site/public/v1/smartphones/r15-dual-sim-td-lte-tw-cph1835/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 1.5, + "camera": 6.3, + "battery": 6.8, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/r15-neo-dual-sim-td-lte-jp-au-cph1851/index.json b/site/public/v1/smartphones/r15-neo-dual-sim-td-lte-jp-au-cph1851/index.json new file mode 100644 index 00000000000..6a4075516d8 --- /dev/null +++ b/site/public/v1/smartphones/r15-neo-dual-sim-td-lte-jp-au-cph1851/index.json @@ -0,0 +1,76 @@ +{ + "id": 2781, + "slug": "r15-neo-dual-sim-td-lte-jp-au-cph1851", + "name": "R15 Neo Dual SIM TD-LTE JP AU CPH1851", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-09-09", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.504300", + "updated_at": "2026-06-19T00:43:44.504300" +} diff --git a/site/public/v1/smartphones/r15-neo-dual-sim-td-lte-jp-au-cph1851/score/index.json b/site/public/v1/smartphones/r15-neo-dual-sim-td-lte-jp-au-cph1851/score/index.json new file mode 100644 index 00000000000..8556f7d0cec --- /dev/null +++ b/site/public/v1/smartphones/r15-neo-dual-sim-td-lte-jp-au-cph1851/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/r15-pro-dual-sim-td-lte-au-my-sg-th-eu-version-1-cph1831/index.json b/site/public/v1/smartphones/r15-pro-dual-sim-td-lte-au-my-sg-th-eu-version-1-cph1831/index.json new file mode 100644 index 00000000000..1741a31dbd4 --- /dev/null +++ b/site/public/v1/smartphones/r15-pro-dual-sim-td-lte-au-my-sg-th-eu-version-1-cph1831/index.json @@ -0,0 +1,76 @@ +{ + "id": 2782, + "slug": "r15-pro-dual-sim-td-lte-au-my-sg-th-eu-version-1-cph1831", + "name": "R15 Pro Dual SIM TD-LTE AU MY SG TH EU Version 1 CPH1831", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 3430, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 19.5, + "camera": 6.3, + "battery": 6.4, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.505301", + "updated_at": "2026-06-19T00:43:44.505301" +} diff --git a/site/public/v1/smartphones/r15-pro-dual-sim-td-lte-au-my-sg-th-eu-version-1-cph1831/score/index.json b/site/public/v1/smartphones/r15-pro-dual-sim-td-lte-au-my-sg-th-eu-version-1-cph1831/score/index.json new file mode 100644 index 00000000000..c3eed473999 --- /dev/null +++ b/site/public/v1/smartphones/r15-pro-dual-sim-td-lte-au-my-sg-th-eu-version-1-cph1831/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 19.5, + "camera": 6.3, + "battery": 6.4, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/r15-pro-dual-sim-td-lte-jp-version-2-cph1833/index.json b/site/public/v1/smartphones/r15-pro-dual-sim-td-lte-jp-version-2-cph1833/index.json new file mode 100644 index 00000000000..9e87f86681d --- /dev/null +++ b/site/public/v1/smartphones/r15-pro-dual-sim-td-lte-jp-version-2-cph1833/index.json @@ -0,0 +1,76 @@ +{ + "id": 2783, + "slug": "r15-pro-dual-sim-td-lte-jp-version-2-cph1833", + "name": "R15 Pro Dual SIM TD-LTE JP Version 2 CPH1833", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-08-16", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 3430, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 19.5, + "camera": 6.3, + "battery": 6.4, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.505301", + "updated_at": "2026-06-19T00:43:44.505301" +} diff --git a/site/public/v1/smartphones/r15-pro-dual-sim-td-lte-jp-version-2-cph1833/score/index.json b/site/public/v1/smartphones/r15-pro-dual-sim-td-lte-jp-version-2-cph1833/score/index.json new file mode 100644 index 00000000000..c3eed473999 --- /dev/null +++ b/site/public/v1/smartphones/r15-pro-dual-sim-td-lte-jp-version-2-cph1833/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 19.5, + "camera": 6.3, + "battery": 6.4, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/r15-pro-dual-sim-td-lte-tw-cph1831/index.json b/site/public/v1/smartphones/r15-pro-dual-sim-td-lte-tw-cph1831/index.json new file mode 100644 index 00000000000..602f3b7555f --- /dev/null +++ b/site/public/v1/smartphones/r15-pro-dual-sim-td-lte-tw-cph1831/index.json @@ -0,0 +1,76 @@ +{ + "id": 2784, + "slug": "r15-pro-dual-sim-td-lte-tw-cph1831", + "name": "R15 Pro Dual SIM TD-LTE TW CPH1831", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 3400, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 19.5, + "camera": 6.3, + "battery": 7.9, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.505301", + "updated_at": "2026-06-19T00:43:44.505301" +} diff --git a/site/public/v1/smartphones/r15-pro-dual-sim-td-lte-tw-cph1831/score/index.json b/site/public/v1/smartphones/r15-pro-dual-sim-td-lte-tw-cph1831/score/index.json new file mode 100644 index 00000000000..44823ce8949 --- /dev/null +++ b/site/public/v1/smartphones/r15-pro-dual-sim-td-lte-tw-cph1831/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 19.5, + "camera": 6.3, + "battery": 7.9, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/r15-pro-td-lte-au-cph1831/index.json b/site/public/v1/smartphones/r15-pro-td-lte-au-cph1831/index.json new file mode 100644 index 00000000000..25a6db52496 --- /dev/null +++ b/site/public/v1/smartphones/r15-pro-td-lte-au-cph1831/index.json @@ -0,0 +1,76 @@ +{ + "id": 2785, + "slug": "r15-pro-td-lte-au-cph1831", + "name": "R15 Pro TD-LTE AU CPH1831", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 3430, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 19.5, + "camera": 6.3, + "battery": 8.3, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.505301", + "updated_at": "2026-06-19T00:43:44.505301" +} diff --git a/site/public/v1/smartphones/r15-pro-td-lte-au-cph1831/score/index.json b/site/public/v1/smartphones/r15-pro-td-lte-au-cph1831/score/index.json new file mode 100644 index 00000000000..415e4c261e4 --- /dev/null +++ b/site/public/v1/smartphones/r15-pro-td-lte-au-cph1831/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 19.5, + "camera": 6.3, + "battery": 8.3, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/r15x-dual-sim-td-lte-cn-pbcm10/index.json b/site/public/v1/smartphones/r15x-dual-sim-td-lte-cn-pbcm10/index.json new file mode 100644 index 00000000000..f727eb3d206 --- /dev/null +++ b/site/public/v1/smartphones/r15x-dual-sim-td-lte-cn-pbcm10/index.json @@ -0,0 +1,76 @@ +{ + "id": 2787, + "slug": "r15x-dual-sim-td-lte-cn-pbcm10", + "name": "R15x Dual SIM TD-LTE CN PBCM10", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-11-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3600, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 19.5, + "camera": 6.3, + "battery": 9.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.505907", + "updated_at": "2026-06-19T00:43:44.505907" +} diff --git a/site/public/v1/smartphones/r15x-dual-sim-td-lte-cn-pbcm10/score/index.json b/site/public/v1/smartphones/r15x-dual-sim-td-lte-cn-pbcm10/score/index.json new file mode 100644 index 00000000000..8d965566d57 --- /dev/null +++ b/site/public/v1/smartphones/r15x-dual-sim-td-lte-cn-pbcm10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 19.5, + "camera": 6.3, + "battery": 9.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/r15x-dual-sim-td-lte-cn-pbct10/index.json b/site/public/v1/smartphones/r15x-dual-sim-td-lte-cn-pbct10/index.json new file mode 100644 index 00000000000..4c3e2fc3092 --- /dev/null +++ b/site/public/v1/smartphones/r15x-dual-sim-td-lte-cn-pbct10/index.json @@ -0,0 +1,76 @@ +{ + "id": 2788, + "slug": "r15x-dual-sim-td-lte-cn-pbct10", + "name": "R15x Dual SIM TD-LTE CN PBCT10", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-11-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3600, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 19.5, + "camera": 6.3, + "battery": 9.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.505907", + "updated_at": "2026-06-19T00:43:44.505907" +} diff --git a/site/public/v1/smartphones/r15x-dual-sim-td-lte-cn-pbct10/score/index.json b/site/public/v1/smartphones/r15x-dual-sim-td-lte-cn-pbct10/score/index.json new file mode 100644 index 00000000000..8d965566d57 --- /dev/null +++ b/site/public/v1/smartphones/r15x-dual-sim-td-lte-cn-pbct10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 19.5, + "camera": 6.3, + "battery": 9.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/r17-dual-sim-td-lte-in-version-2-cph1879/index.json b/site/public/v1/smartphones/r17-dual-sim-td-lte-in-version-2-cph1879/index.json new file mode 100644 index 00000000000..91c5e710ca6 --- /dev/null +++ b/site/public/v1/smartphones/r17-dual-sim-td-lte-in-version-2-cph1879/index.json @@ -0,0 +1,76 @@ +{ + "id": 2789, + "slug": "r17-dual-sim-td-lte-in-version-2-cph1879", + "name": "R17 Dual SIM TD-LTE IN Version 2 CPH1879", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 127, + "slug": "snapdragon-670", + "name": "Snapdragon 670", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 615", + "url": "/v1/socs/snapdragon-670" + }, + "release_date": "2018-12-23", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.5, + "performance": 3.0, + "camera": 6.3, + "battery": 7.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.505907", + "updated_at": "2026-06-19T00:43:44.505907" +} diff --git a/site/public/v1/smartphones/r17-dual-sim-td-lte-in-version-2-cph1879/score/index.json b/site/public/v1/smartphones/r17-dual-sim-td-lte-in-version-2-cph1879/score/index.json new file mode 100644 index 00000000000..761a92881e5 --- /dev/null +++ b/site/public/v1/smartphones/r17-dual-sim-td-lte-in-version-2-cph1879/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.5, + "performance": 3.0, + "camera": 6.3, + "battery": 7.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/r17-dual-sim-td-lte-sg-tw-version-1-cph1879/index.json b/site/public/v1/smartphones/r17-dual-sim-td-lte-sg-tw-version-1-cph1879/index.json new file mode 100644 index 00000000000..9b9f82ca2c6 --- /dev/null +++ b/site/public/v1/smartphones/r17-dual-sim-td-lte-sg-tw-version-1-cph1879/index.json @@ -0,0 +1,76 @@ +{ + "id": 2790, + "slug": "r17-dual-sim-td-lte-sg-tw-version-1-cph1879", + "name": "R17 Dual SIM TD-LTE SG TW Version 1 CPH1879", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 127, + "slug": "snapdragon-670", + "name": "Snapdragon 670", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 615", + "url": "/v1/socs/snapdragon-670" + }, + "release_date": "2018-11-06", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": 1.5, + "camera": 6.3, + "battery": 7.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.505907", + "updated_at": "2026-06-19T00:43:44.505907" +} diff --git a/site/public/v1/smartphones/r17-dual-sim-td-lte-sg-tw-version-1-cph1879/score/index.json b/site/public/v1/smartphones/r17-dual-sim-td-lte-sg-tw-version-1-cph1879/score/index.json new file mode 100644 index 00000000000..58d574bab68 --- /dev/null +++ b/site/public/v1/smartphones/r17-dual-sim-td-lte-sg-tw-version-1-cph1879/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": 1.5, + "camera": 6.3, + "battery": 7.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/r17-premium-edition-dual-sim-td-lte-cn-pagm00/index.json b/site/public/v1/smartphones/r17-premium-edition-dual-sim-td-lte-cn-pagm00/index.json new file mode 100644 index 00000000000..20e9b948a80 --- /dev/null +++ b/site/public/v1/smartphones/r17-premium-edition-dual-sim-td-lte-cn-pagm00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2791, + "slug": "r17-premium-edition-dual-sim-td-lte-cn-pagm00", + "name": "R17 Premium Edition Dual SIM TD-LTE CN PAGM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 127, + "slug": "snapdragon-670", + "name": "Snapdragon 670", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 615", + "url": "/v1/socs/snapdragon-670" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.0, + "performance": 3.0, + "camera": 6.3, + "battery": 9.4, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.505907", + "updated_at": "2026-06-19T00:43:44.505907" +} diff --git a/site/public/v1/smartphones/r17-premium-edition-dual-sim-td-lte-cn-pagm00/score/index.json b/site/public/v1/smartphones/r17-premium-edition-dual-sim-td-lte-cn-pagm00/score/index.json new file mode 100644 index 00000000000..09414cd5f84 --- /dev/null +++ b/site/public/v1/smartphones/r17-premium-edition-dual-sim-td-lte-cn-pagm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.0, + "performance": 3.0, + "camera": 6.3, + "battery": 9.4, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/r17-pro-dual-sim-td-lte-cn-pbdm00/index.json b/site/public/v1/smartphones/r17-pro-dual-sim-td-lte-cn-pbdm00/index.json new file mode 100644 index 00000000000..25d4cf6f8fb --- /dev/null +++ b/site/public/v1/smartphones/r17-pro-dual-sim-td-lte-cn-pbdm00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2792, + "slug": "r17-pro-dual-sim-td-lte-cn-pbdm00", + "name": "R17 Pro Dual SIM TD-LTE CN PBDM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3700, + "charging_wired_w": 50.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 23.0, + "camera": 5.1, + "battery": 17.1, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.505907", + "updated_at": "2026-06-19T00:43:44.505907" +} diff --git a/site/public/v1/smartphones/r17-pro-dual-sim-td-lte-cn-pbdm00/score/index.json b/site/public/v1/smartphones/r17-pro-dual-sim-td-lte-cn-pbdm00/score/index.json new file mode 100644 index 00000000000..df582b954a9 --- /dev/null +++ b/site/public/v1/smartphones/r17-pro-dual-sim-td-lte-cn-pbdm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 23.0, + "camera": 5.1, + "battery": 17.1, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/r17-pro-dual-sim-td-lte-cn-pbdt00/index.json b/site/public/v1/smartphones/r17-pro-dual-sim-td-lte-cn-pbdt00/index.json new file mode 100644 index 00000000000..50e8fecd3c7 --- /dev/null +++ b/site/public/v1/smartphones/r17-pro-dual-sim-td-lte-cn-pbdt00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2793, + "slug": "r17-pro-dual-sim-td-lte-cn-pbdt00", + "name": "R17 Pro Dual SIM TD-LTE CN PBDT00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3700, + "charging_wired_w": 50.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 23.0, + "camera": 5.1, + "battery": 17.1, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.505907", + "updated_at": "2026-06-19T00:43:44.505907" +} diff --git a/site/public/v1/smartphones/r17-pro-dual-sim-td-lte-cn-pbdt00/score/index.json b/site/public/v1/smartphones/r17-pro-dual-sim-td-lte-cn-pbdt00/score/index.json new file mode 100644 index 00000000000..df582b954a9 --- /dev/null +++ b/site/public/v1/smartphones/r17-pro-dual-sim-td-lte-cn-pbdt00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 23.0, + "camera": 5.1, + "battery": 17.1, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/r17-pro-premium-edition-global-dual-sim-td-lte-version-1-cph1877/index.json b/site/public/v1/smartphones/r17-pro-premium-edition-global-dual-sim-td-lte-version-1-cph1877/index.json new file mode 100644 index 00000000000..e4be6fc5f6b --- /dev/null +++ b/site/public/v1/smartphones/r17-pro-premium-edition-global-dual-sim-td-lte-version-1-cph1877/index.json @@ -0,0 +1,76 @@ +{ + "id": 2794, + "slug": "r17-pro-premium-edition-global-dual-sim-td-lte-version-1-cph1877", + "name": "R17 Pro Premium Edition Global Dual SIM TD-LTE Version 1 CPH1877", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2018-11-04", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3700, + "charging_wired_w": 50.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 23.0, + "camera": 5.1, + "battery": 17.1, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.505907", + "updated_at": "2026-06-19T00:43:44.505907" +} diff --git a/site/public/v1/smartphones/r17-pro-premium-edition-global-dual-sim-td-lte-version-1-cph1877/score/index.json b/site/public/v1/smartphones/r17-pro-premium-edition-global-dual-sim-td-lte-version-1-cph1877/score/index.json new file mode 100644 index 00000000000..df582b954a9 --- /dev/null +++ b/site/public/v1/smartphones/r17-pro-premium-edition-global-dual-sim-td-lte-version-1-cph1877/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 23.0, + "camera": 5.1, + "battery": 17.1, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/r17-pro-standard-edition-dual-sim-td-lte-apac-version-2-cph1877/index.json b/site/public/v1/smartphones/r17-pro-standard-edition-dual-sim-td-lte-apac-version-2-cph1877/index.json new file mode 100644 index 00000000000..c46d888d559 --- /dev/null +++ b/site/public/v1/smartphones/r17-pro-standard-edition-dual-sim-td-lte-apac-version-2-cph1877/index.json @@ -0,0 +1,76 @@ +{ + "id": 2795, + "slug": "r17-pro-standard-edition-dual-sim-td-lte-apac-version-2-cph1877", + "name": "R17 Pro Standard Edition Dual SIM TD-LTE APAC Version 2 CPH1877", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3700, + "charging_wired_w": 50.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 21.5, + "camera": 5.1, + "battery": 17.1, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.506912", + "updated_at": "2026-06-19T00:43:44.506912" +} diff --git a/site/public/v1/smartphones/r17-pro-standard-edition-dual-sim-td-lte-apac-version-2-cph1877/score/index.json b/site/public/v1/smartphones/r17-pro-standard-edition-dual-sim-td-lte-apac-version-2-cph1877/score/index.json new file mode 100644 index 00000000000..0c6ab46ab06 --- /dev/null +++ b/site/public/v1/smartphones/r17-pro-standard-edition-dual-sim-td-lte-apac-version-2-cph1877/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 21.5, + "camera": 5.1, + "battery": 17.1, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/r17-standard-edition-dual-sim-td-lte-cn-pagm00/index.json b/site/public/v1/smartphones/r17-standard-edition-dual-sim-td-lte-cn-pagm00/index.json new file mode 100644 index 00000000000..09b4c183352 --- /dev/null +++ b/site/public/v1/smartphones/r17-standard-edition-dual-sim-td-lte-cn-pagm00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2796, + "slug": "r17-standard-edition-dual-sim-td-lte-cn-pagm00", + "name": "R17 Standard Edition Dual SIM TD-LTE CN PAGM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 127, + "slug": "snapdragon-670", + "name": "Snapdragon 670", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 615", + "url": "/v1/socs/snapdragon-670" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": 1.5, + "camera": 6.3, + "battery": 7.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.506912", + "updated_at": "2026-06-19T00:43:44.506912" +} diff --git a/site/public/v1/smartphones/r17-standard-edition-dual-sim-td-lte-cn-pagm00/score/index.json b/site/public/v1/smartphones/r17-standard-edition-dual-sim-td-lte-cn-pagm00/score/index.json new file mode 100644 index 00000000000..58d574bab68 --- /dev/null +++ b/site/public/v1/smartphones/r17-standard-edition-dual-sim-td-lte-cn-pagm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": 1.5, + "camera": 6.3, + "battery": 7.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/r17-standard-edition-dual-sim-td-lte-cn-pagt00/index.json b/site/public/v1/smartphones/r17-standard-edition-dual-sim-td-lte-cn-pagt00/index.json new file mode 100644 index 00000000000..8f8b2c071f6 --- /dev/null +++ b/site/public/v1/smartphones/r17-standard-edition-dual-sim-td-lte-cn-pagt00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2797, + "slug": "r17-standard-edition-dual-sim-td-lte-cn-pagt00", + "name": "R17 Standard Edition Dual SIM TD-LTE CN PAGT00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 127, + "slug": "snapdragon-670", + "name": "Snapdragon 670", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 615", + "url": "/v1/socs/snapdragon-670" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": 1.5, + "camera": 6.3, + "battery": 7.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.506912", + "updated_at": "2026-06-19T00:43:44.506912" +} diff --git a/site/public/v1/smartphones/r17-standard-edition-dual-sim-td-lte-cn-pagt00/score/index.json b/site/public/v1/smartphones/r17-standard-edition-dual-sim-td-lte-cn-pagt00/score/index.json new file mode 100644 index 00000000000..58d574bab68 --- /dev/null +++ b/site/public/v1/smartphones/r17-standard-edition-dual-sim-td-lte-cn-pagt00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": 1.5, + "camera": 6.3, + "battery": 7.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/radiant-max-lte-a-us-u705aa/index.json b/site/public/v1/smartphones/radiant-max-lte-a-us-u705aa/index.json new file mode 100644 index 00000000000..0120516bc47 --- /dev/null +++ b/site/public/v1/smartphones/radiant-max-lte-a-us-u705aa/index.json @@ -0,0 +1,76 @@ +{ + "id": 5592, + "slug": "radiant-max-lte-a-us-u705aa", + "name": "Radiant Max LTE-A US U705AA", + "brand": { + "id": 56, + "slug": "wiko", + "name": "Wiko", + "country": "FR", + "url": "/v1/brands/wiko" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-08-01", + "msrp_usd": 130, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 264 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 59.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.912308", + "updated_at": "2026-06-19T00:43:44.912308" +} diff --git a/site/public/v1/smartphones/radiant-max-lte-a-us-u705aa/score/index.json b/site/public/v1/smartphones/radiant-max-lte-a-us-u705aa/score/index.json new file mode 100644 index 00000000000..c9a1e1f5381 --- /dev/null +++ b/site/public/v1/smartphones/radiant-max-lte-a-us-u705aa/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 59.2 +} diff --git a/site/public/v1/smartphones/raku-raku-easy-smartphone-td-lte-jp-f-52b/index.json b/site/public/v1/smartphones/raku-raku-easy-smartphone-td-lte-jp-f-52b/index.json new file mode 100644 index 00000000000..3cb4fd1c030 --- /dev/null +++ b/site/public/v1/smartphones/raku-raku-easy-smartphone-td-lte-jp-f-52b/index.json @@ -0,0 +1,76 @@ +{ + "id": 534, + "slug": "raku-raku-easy-smartphone-td-lte-jp-f-52b", + "name": "Raku-Raku Easy Smartphone TD-LTE JP F-52B", + "brand": { + "id": 69, + "slug": "fujitsu", + "name": "Fujitsu", + "country": "JP", + "url": "/v1/brands/fujitsu" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2022-02-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.0, + "resolution": "1080x1980", + "type": "AM-OLED display", + "ppi": 451 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 153.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.3, + "performance": 0.0, + "camera": 5.3, + "battery": 6.0, + "display": 50.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.180932", + "updated_at": "2026-06-19T00:43:44.180932" +} diff --git a/site/public/v1/smartphones/raku-raku-easy-smartphone-td-lte-jp-f-52b/score/index.json b/site/public/v1/smartphones/raku-raku-easy-smartphone-td-lte-jp-f-52b/score/index.json new file mode 100644 index 00000000000..ecf2817632a --- /dev/null +++ b/site/public/v1/smartphones/raku-raku-easy-smartphone-td-lte-jp-f-52b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.3, + "performance": 0.0, + "camera": 5.3, + "battery": 6.0, + "display": 50.1, + "value": null +} diff --git a/site/public/v1/smartphones/raku-raku-me-f-01l-lte/index.json b/site/public/v1/smartphones/raku-raku-me-f-01l-lte/index.json new file mode 100644 index 00000000000..101662caa34 --- /dev/null +++ b/site/public/v1/smartphones/raku-raku-me-f-01l-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 525, + "slug": "raku-raku-me-f-01l-lte", + "name": "Raku-Raku me F-01L LTE", + "brand": { + "id": 69, + "slug": "fujitsu", + "name": "Fujitsu", + "country": "JP", + "url": "/v1/brands/fujitsu" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 4.7, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 312 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2110, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 36.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.179932", + "updated_at": "2026-06-19T00:43:44.179932" +} diff --git a/site/public/v1/smartphones/raku-raku-me-f-01l-lte/score/index.json b/site/public/v1/smartphones/raku-raku-me-f-01l-lte/score/index.json new file mode 100644 index 00000000000..b8d13cdcea8 --- /dev/null +++ b/site/public/v1/smartphones/raku-raku-me-f-01l-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 36.2, + "value": null +} diff --git a/site/public/v1/smartphones/rakuten-big-5g-td-lte-jp/index.json b/site/public/v1/smartphones/rakuten-big-5g-td-lte-jp/index.json new file mode 100644 index 00000000000..db4513bfee7 --- /dev/null +++ b/site/public/v1/smartphones/rakuten-big-5g-td-lte-jp/index.json @@ -0,0 +1,77 @@ +{ + "id": 6502, + "slug": "rakuten-big-5g-td-lte-jp", + "name": "Rakuten BIG 5G TD-LTE JP", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-11-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.92, + "resolution": "1080x2460", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4220, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 227.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 1.5, + "camera": 21.7, + "battery": 21.2, + "display": 38.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.017824", + "updated_at": "2026-06-19T00:43:45.017824" +} diff --git a/site/public/v1/smartphones/rakuten-big-5g-td-lte-jp/score/index.json b/site/public/v1/smartphones/rakuten-big-5g-td-lte-jp/score/index.json new file mode 100644 index 00000000000..62832ef60a9 --- /dev/null +++ b/site/public/v1/smartphones/rakuten-big-5g-td-lte-jp/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 1.5, + "camera": 21.7, + "battery": 21.2, + "display": 38.8, + "value": null +} diff --git a/site/public/v1/smartphones/rakuten-big-s-5g-uw-td-lte-jp-3917jr/index.json b/site/public/v1/smartphones/rakuten-big-s-5g-uw-td-lte-jp-3917jr/index.json new file mode 100644 index 00000000000..cc429312026 --- /dev/null +++ b/site/public/v1/smartphones/rakuten-big-s-5g-uw-td-lte-jp-3917jr/index.json @@ -0,0 +1,76 @@ +{ + "id": 505, + "slug": "rakuten-big-s-5g-uw-td-lte-jp-3917jr", + "name": "Rakuten BIG s 5G UW TD-LTE JP 3917JR", + "brand": { + "id": 10, + "slug": "coolpad", + "name": "Coolpad", + "country": "CN", + "url": "/v1/brands/coolpad" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2021-04-21", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3900, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 204.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 1.5, + "camera": 16.5, + "battery": 16.4, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.176932", + "updated_at": "2026-06-19T00:43:44.176932" +} diff --git a/site/public/v1/smartphones/rakuten-big-s-5g-uw-td-lte-jp-3917jr/score/index.json b/site/public/v1/smartphones/rakuten-big-s-5g-uw-td-lte-jp-3917jr/score/index.json new file mode 100644 index 00000000000..bf7fec6ba39 --- /dev/null +++ b/site/public/v1/smartphones/rakuten-big-s-5g-uw-td-lte-jp-3917jr/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 1.5, + "camera": 16.5, + "battery": 16.4, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/rakuten-hand-5g-dual-sim-td-lte-jp-p780/index.json b/site/public/v1/smartphones/rakuten-hand-5g-dual-sim-td-lte-jp-p780/index.json new file mode 100644 index 00000000000..c75be9ea49d --- /dev/null +++ b/site/public/v1/smartphones/rakuten-hand-5g-dual-sim-td-lte-jp-p780/index.json @@ -0,0 +1,76 @@ +{ + "id": 5598, + "slug": "rakuten-hand-5g-dual-sim-td-lte-jp-p780", + "name": "Rakuten Hand 5G Dual SIM TD-LTE JP P780", + "brand": { + "id": 56, + "slug": "wiko", + "name": "Wiko", + "country": "FR", + "url": "/v1/brands/wiko" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2022-02-14", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.1, + "resolution": "720x1520", + "type": "AM-OLED display", + "ppi": 330 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 2630, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 134.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": 0.0, + "camera": 21.5, + "battery": 0.0, + "display": 38.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.913307", + "updated_at": "2026-06-19T00:43:44.913307" +} diff --git a/site/public/v1/smartphones/rakuten-hand-5g-dual-sim-td-lte-jp-p780/score/index.json b/site/public/v1/smartphones/rakuten-hand-5g-dual-sim-td-lte-jp-p780/score/index.json new file mode 100644 index 00000000000..065020f464f --- /dev/null +++ b/site/public/v1/smartphones/rakuten-hand-5g-dual-sim-td-lte-jp-p780/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": 0.0, + "camera": 21.5, + "battery": 0.0, + "display": 38.0, + "value": null +} diff --git a/site/public/v1/smartphones/rakuten-mini-final-edition-td-lte-jp-c330/index.json b/site/public/v1/smartphones/rakuten-mini-final-edition-td-lte-jp-c330/index.json new file mode 100644 index 00000000000..5f333f46a5d --- /dev/null +++ b/site/public/v1/smartphones/rakuten-mini-final-edition-td-lte-jp-c330/index.json @@ -0,0 +1,76 @@ +{ + "id": 5593, + "slug": "rakuten-mini-final-edition-td-lte-jp-c330", + "name": "Rakuten Mini Final Edition TD-LTE JP C330", + "brand": { + "id": 56, + "slug": "wiko", + "name": "Wiko", + "country": "FR", + "url": "/v1/brands/wiko" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 3.58, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 410 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 1250, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 79.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 46.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.912308", + "updated_at": "2026-06-19T00:43:44.913307" +} diff --git a/site/public/v1/smartphones/rakuten-mini-final-edition-td-lte-jp-c330/score/index.json b/site/public/v1/smartphones/rakuten-mini-final-edition-td-lte-jp-c330/score/index.json new file mode 100644 index 00000000000..5853c99438c --- /dev/null +++ b/site/public/v1/smartphones/rakuten-mini-final-edition-td-lte-jp-c330/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 46.0, + "value": null +} diff --git a/site/public/v1/smartphones/rakuten-mini-initial-edition-td-lte-jp-c330/index.json b/site/public/v1/smartphones/rakuten-mini-initial-edition-td-lte-jp-c330/index.json new file mode 100644 index 00000000000..36f0371f4d6 --- /dev/null +++ b/site/public/v1/smartphones/rakuten-mini-initial-edition-td-lte-jp-c330/index.json @@ -0,0 +1,76 @@ +{ + "id": 5594, + "slug": "rakuten-mini-initial-edition-td-lte-jp-c330", + "name": "Rakuten Mini Initial Edition TD-LTE JP C330", + "brand": { + "id": 56, + "slug": "wiko", + "name": "Wiko", + "country": "FR", + "url": "/v1/brands/wiko" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2020-01-23", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 3.58, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 410 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 1250, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 79.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 46.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.913307", + "updated_at": "2026-06-19T00:43:44.913307" +} diff --git a/site/public/v1/smartphones/rakuten-mini-initial-edition-td-lte-jp-c330/score/index.json b/site/public/v1/smartphones/rakuten-mini-initial-edition-td-lte-jp-c330/score/index.json new file mode 100644 index 00000000000..5853c99438c --- /dev/null +++ b/site/public/v1/smartphones/rakuten-mini-initial-edition-td-lte-jp-c330/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 46.0, + "value": null +} diff --git a/site/public/v1/smartphones/razr-1st-gen-2019-global-td-lte-xt2000-2/index.json b/site/public/v1/smartphones/razr-1st-gen-2019-global-td-lte-xt2000-2/index.json new file mode 100644 index 00000000000..0866e9a85a5 --- /dev/null +++ b/site/public/v1/smartphones/razr-1st-gen-2019-global-td-lte-xt2000-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 2157, + "slug": "razr-1st-gen-2019-global-td-lte-xt2000-2", + "name": "RAZR 1st gen 2019 Global TD-LTE XT2000-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2020-04-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "876x2142", + "type": "AM-OLED display", + "ppi": 373 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2510, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 21.5, + "camera": 6.4, + "battery": 0.6, + "display": 42.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.421874", + "updated_at": "2026-06-19T00:43:44.421874" +} diff --git a/site/public/v1/smartphones/razr-1st-gen-2019-global-td-lte-xt2000-2/score/index.json b/site/public/v1/smartphones/razr-1st-gen-2019-global-td-lte-xt2000-2/score/index.json new file mode 100644 index 00000000000..e550614f4cb --- /dev/null +++ b/site/public/v1/smartphones/razr-1st-gen-2019-global-td-lte-xt2000-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 21.5, + "camera": 6.4, + "battery": 0.6, + "display": 42.3, + "value": null +} diff --git a/site/public/v1/smartphones/razr-1st-gen-2019-lte-a-na-xt2000-1/index.json b/site/public/v1/smartphones/razr-1st-gen-2019-lte-a-na-xt2000-1/index.json new file mode 100644 index 00000000000..2f31a579168 --- /dev/null +++ b/site/public/v1/smartphones/razr-1st-gen-2019-lte-a-na-xt2000-1/index.json @@ -0,0 +1,76 @@ +{ + "id": 2158, + "slug": "razr-1st-gen-2019-lte-a-na-xt2000-1", + "name": "RAZR 1st gen 2019 LTE-A NA XT2000-1", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2020-01-09", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "876x2142", + "type": "AM-OLED display", + "ppi": 373 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2510, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 21.5, + "camera": 6.4, + "battery": 0.0, + "display": 42.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.421874", + "updated_at": "2026-06-19T00:43:44.421874" +} diff --git a/site/public/v1/smartphones/razr-1st-gen-2019-lte-a-na-xt2000-1/score/index.json b/site/public/v1/smartphones/razr-1st-gen-2019-lte-a-na-xt2000-1/score/index.json new file mode 100644 index 00000000000..96837cd56e6 --- /dev/null +++ b/site/public/v1/smartphones/razr-1st-gen-2019-lte-a-na-xt2000-1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 21.5, + "camera": 6.4, + "battery": 0.0, + "display": 42.3, + "value": null +} diff --git a/site/public/v1/smartphones/razr-5g-2nd-gen-2020-dual-sim-td-lte-na-xt2071-3/index.json b/site/public/v1/smartphones/razr-5g-2nd-gen-2020-dual-sim-td-lte-na-xt2071-3/index.json new file mode 100644 index 00000000000..ac28312439d --- /dev/null +++ b/site/public/v1/smartphones/razr-5g-2nd-gen-2020-dual-sim-td-lte-na-xt2071-3/index.json @@ -0,0 +1,76 @@ +{ + "id": 2159, + "slug": "razr-5g-2nd-gen-2020-dual-sim-td-lte-na-xt2071-3", + "name": "RAZR 5G 2nd gen 2020 Dual SIM TD-LTE NA XT2071-3", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-09-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.2, + "resolution": "876x2142", + "type": "AM-OLED display", + "ppi": 373 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 2800, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.4, + "performance": 3.0, + "camera": 16.5, + "battery": 0.0, + "display": 42.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.421874", + "updated_at": "2026-06-19T00:43:44.421874" +} diff --git a/site/public/v1/smartphones/razr-5g-2nd-gen-2020-dual-sim-td-lte-na-xt2071-3/score/index.json b/site/public/v1/smartphones/razr-5g-2nd-gen-2020-dual-sim-td-lte-na-xt2071-3/score/index.json new file mode 100644 index 00000000000..9369c39af61 --- /dev/null +++ b/site/public/v1/smartphones/razr-5g-2nd-gen-2020-dual-sim-td-lte-na-xt2071-3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.4, + "performance": 3.0, + "camera": 16.5, + "battery": 0.0, + "display": 42.3, + "value": null +} diff --git a/site/public/v1/smartphones/razr-5g-2nd-gen-2020-dual-sim-td-lte-us-xt2071-2/index.json b/site/public/v1/smartphones/razr-5g-2nd-gen-2020-dual-sim-td-lte-us-xt2071-2/index.json new file mode 100644 index 00000000000..b81e07f342f --- /dev/null +++ b/site/public/v1/smartphones/razr-5g-2nd-gen-2020-dual-sim-td-lte-us-xt2071-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 2160, + "slug": "razr-5g-2nd-gen-2020-dual-sim-td-lte-us-xt2071-2", + "name": "RAZR 5G 2nd gen 2020 Dual SIM TD-LTE US XT2071-2", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-09-16", + "msrp_usd": 1399, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.2, + "resolution": "876x2142", + "type": "AM-OLED display", + "ppi": 373 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 2800, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.4, + "performance": 3.0, + "camera": 16.5, + "battery": 0.0, + "display": 42.3, + "value": 15.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.421874", + "updated_at": "2026-06-19T00:43:44.421874" +} diff --git a/site/public/v1/smartphones/razr-5g-2nd-gen-2020-dual-sim-td-lte-us-xt2071-2/score/index.json b/site/public/v1/smartphones/razr-5g-2nd-gen-2020-dual-sim-td-lte-us-xt2071-2/score/index.json new file mode 100644 index 00000000000..30ecf3a67a9 --- /dev/null +++ b/site/public/v1/smartphones/razr-5g-2nd-gen-2020-dual-sim-td-lte-us-xt2071-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.4, + "performance": 3.0, + "camera": 16.5, + "battery": 0.0, + "display": 42.3, + "value": 15.4 +} diff --git a/site/public/v1/smartphones/razr-5g-2nd-gen-2020-dual-sim-td-lte-us-xt2071-5/index.json b/site/public/v1/smartphones/razr-5g-2nd-gen-2020-dual-sim-td-lte-us-xt2071-5/index.json new file mode 100644 index 00000000000..53bceac9349 --- /dev/null +++ b/site/public/v1/smartphones/razr-5g-2nd-gen-2020-dual-sim-td-lte-us-xt2071-5/index.json @@ -0,0 +1,76 @@ +{ + "id": 2161, + "slug": "razr-5g-2nd-gen-2020-dual-sim-td-lte-us-xt2071-5", + "name": "RAZR 5G 2nd gen 2020 Dual SIM TD-LTE US XT2071-5", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-09-17", + "msrp_usd": 1399, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.2, + "resolution": "876x2142", + "type": "AM-OLED display", + "ppi": 373 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 2800, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.4, + "performance": 3.0, + "camera": 16.5, + "battery": 0.0, + "display": 42.3, + "value": 15.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.421874", + "updated_at": "2026-06-19T00:43:44.421874" +} diff --git a/site/public/v1/smartphones/razr-5g-2nd-gen-2020-dual-sim-td-lte-us-xt2071-5/score/index.json b/site/public/v1/smartphones/razr-5g-2nd-gen-2020-dual-sim-td-lte-us-xt2071-5/score/index.json new file mode 100644 index 00000000000..30ecf3a67a9 --- /dev/null +++ b/site/public/v1/smartphones/razr-5g-2nd-gen-2020-dual-sim-td-lte-us-xt2071-5/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.4, + "performance": 3.0, + "camera": 16.5, + "battery": 0.0, + "display": 42.3, + "value": 15.4 +} diff --git a/site/public/v1/smartphones/razr-5g-2nd-gen-2020-global-dual-sim-td-lte-xt2071-4/index.json b/site/public/v1/smartphones/razr-5g-2nd-gen-2020-global-dual-sim-td-lte-xt2071-4/index.json new file mode 100644 index 00000000000..995da342c9c --- /dev/null +++ b/site/public/v1/smartphones/razr-5g-2nd-gen-2020-global-dual-sim-td-lte-xt2071-4/index.json @@ -0,0 +1,76 @@ +{ + "id": 2162, + "slug": "razr-5g-2nd-gen-2020-global-dual-sim-td-lte-xt2071-4", + "name": "RAZR 5G 2nd gen 2020 Global Dual SIM TD-LTE XT2071-4", + "brand": { + "id": 117, + "slug": "motorola", + "name": "Motorola", + "country": "US", + "url": "/v1/brands/motorola" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-09-16", + "msrp_usd": 1200, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.2, + "resolution": "876x2142", + "type": "AM-OLED display", + "ppi": 373 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 2800, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.4, + "performance": 3.0, + "camera": 16.5, + "battery": 0.0, + "display": 42.3, + "value": 23.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.421874", + "updated_at": "2026-06-19T00:43:44.421874" +} diff --git a/site/public/v1/smartphones/razr-5g-2nd-gen-2020-global-dual-sim-td-lte-xt2071-4/score/index.json b/site/public/v1/smartphones/razr-5g-2nd-gen-2020-global-dual-sim-td-lte-xt2071-4/score/index.json new file mode 100644 index 00000000000..23128f5609c --- /dev/null +++ b/site/public/v1/smartphones/razr-5g-2nd-gen-2020-global-dual-sim-td-lte-xt2071-4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.4, + "performance": 3.0, + "camera": 16.5, + "battery": 0.0, + "display": 42.3, + "value": 23.1 +} diff --git a/site/public/v1/smartphones/realme-1-dual-sim-td-lte-in-128gb-cph1861-f7-youth/index.json b/site/public/v1/smartphones/realme-1-dual-sim-td-lte-in-128gb-cph1861-f7-youth/index.json new file mode 100644 index 00000000000..53ebfc092d8 --- /dev/null +++ b/site/public/v1/smartphones/realme-1-dual-sim-td-lte-in-128gb-cph1861-f7-youth/index.json @@ -0,0 +1,76 @@ +{ + "id": 2798, + "slug": "realme-1-dual-sim-td-lte-in-128gb-cph1861-f7-youth", + "name": "realme 1 Dual SIM TD-LTE IN 128GB CPH1861 / F7 Youth", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-05-26", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3410, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 155.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.6, + "performance": 1.5, + "camera": 5.3, + "battery": 6.2, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.506912", + "updated_at": "2026-06-19T00:43:44.506912" +} diff --git a/site/public/v1/smartphones/realme-1-dual-sim-td-lte-in-128gb-cph1861-f7-youth/score/index.json b/site/public/v1/smartphones/realme-1-dual-sim-td-lte-in-128gb-cph1861-f7-youth/score/index.json new file mode 100644 index 00000000000..457edfc0ac8 --- /dev/null +++ b/site/public/v1/smartphones/realme-1-dual-sim-td-lte-in-128gb-cph1861-f7-youth/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.6, + "performance": 1.5, + "camera": 5.3, + "battery": 6.2, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/realme-1-dual-sim-td-lte-in-32gb-cph1861-f7-youth/index.json b/site/public/v1/smartphones/realme-1-dual-sim-td-lte-in-32gb-cph1861-f7-youth/index.json new file mode 100644 index 00000000000..b2f8f50e7b1 --- /dev/null +++ b/site/public/v1/smartphones/realme-1-dual-sim-td-lte-in-32gb-cph1861-f7-youth/index.json @@ -0,0 +1,76 @@ +{ + "id": 2799, + "slug": "realme-1-dual-sim-td-lte-in-32gb-cph1861-f7-youth", + "name": "realme 1 Dual SIM TD-LTE IN 32GB CPH1861 / F7 Youth", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3410, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 155.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 0.0, + "camera": 5.3, + "battery": 6.2, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.506912", + "updated_at": "2026-06-19T00:43:44.506912" +} diff --git a/site/public/v1/smartphones/realme-1-dual-sim-td-lte-in-32gb-cph1861-f7-youth/score/index.json b/site/public/v1/smartphones/realme-1-dual-sim-td-lte-in-32gb-cph1861-f7-youth/score/index.json new file mode 100644 index 00000000000..c75032371f4 --- /dev/null +++ b/site/public/v1/smartphones/realme-1-dual-sim-td-lte-in-32gb-cph1861-f7-youth/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 0.0, + "camera": 5.3, + "battery": 6.2, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/realme-2-dual-sim-td-lte-in-id-32gb/index.json b/site/public/v1/smartphones/realme-2-dual-sim-td-lte-in-id-32gb/index.json new file mode 100644 index 00000000000..15bc59e97ab --- /dev/null +++ b/site/public/v1/smartphones/realme-2-dual-sim-td-lte-in-id-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2800, + "slug": "realme-2-dual-sim-td-lte-in-id-32gb", + "name": "Realme 2 Dual SIM TD-LTE IN ID 32GB", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-09-04", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.506912", + "updated_at": "2026-06-19T00:43:44.506912" +} diff --git a/site/public/v1/smartphones/realme-2-dual-sim-td-lte-in-id-32gb/score/index.json b/site/public/v1/smartphones/realme-2-dual-sim-td-lte-in-id-32gb/score/index.json new file mode 100644 index 00000000000..8556f7d0cec --- /dev/null +++ b/site/public/v1/smartphones/realme-2-dual-sim-td-lte-in-id-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-2-dual-sim-td-lte-in-id-64gb/index.json b/site/public/v1/smartphones/realme-2-dual-sim-td-lte-in-id-64gb/index.json new file mode 100644 index 00000000000..fdc95c4d1f0 --- /dev/null +++ b/site/public/v1/smartphones/realme-2-dual-sim-td-lte-in-id-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2801, + "slug": "realme-2-dual-sim-td-lte-in-id-64gb", + "name": "Realme 2 Dual SIM TD-LTE IN ID 64GB", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-09-04", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.507912", + "updated_at": "2026-06-19T00:43:44.507912" +} diff --git a/site/public/v1/smartphones/realme-2-dual-sim-td-lte-in-id-64gb/score/index.json b/site/public/v1/smartphones/realme-2-dual-sim-td-lte-in-id-64gb/score/index.json new file mode 100644 index 00000000000..8556f7d0cec --- /dev/null +++ b/site/public/v1/smartphones/realme-2-dual-sim-td-lte-in-id-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-2-pro-global-dual-sim-td-lte-128gb-rmx1807/index.json b/site/public/v1/smartphones/realme-2-pro-global-dual-sim-td-lte-128gb-rmx1807/index.json new file mode 100644 index 00000000000..5b6854bafed --- /dev/null +++ b/site/public/v1/smartphones/realme-2-pro-global-dual-sim-td-lte-128gb-rmx1807/index.json @@ -0,0 +1,76 @@ +{ + "id": 2802, + "slug": "realme-2-pro-global-dual-sim-td-lte-128gb-rmx1807", + "name": "Realme 2 Pro Global Dual SIM TD-LTE 128GB RMX1807", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-10-11", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 21.0, + "camera": 6.3, + "battery": 7.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.507912", + "updated_at": "2026-06-19T00:43:44.507912" +} diff --git a/site/public/v1/smartphones/realme-2-pro-global-dual-sim-td-lte-128gb-rmx1807/score/index.json b/site/public/v1/smartphones/realme-2-pro-global-dual-sim-td-lte-128gb-rmx1807/score/index.json new file mode 100644 index 00000000000..1e340397ba8 --- /dev/null +++ b/site/public/v1/smartphones/realme-2-pro-global-dual-sim-td-lte-128gb-rmx1807/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 21.0, + "camera": 6.3, + "battery": 7.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/realme-2-pro-premium-edition-dual-sim-td-lte-in-id-64gb-rmx1801/index.json b/site/public/v1/smartphones/realme-2-pro-premium-edition-dual-sim-td-lte-in-id-64gb-rmx1801/index.json new file mode 100644 index 00000000000..afe8874fc6f --- /dev/null +++ b/site/public/v1/smartphones/realme-2-pro-premium-edition-dual-sim-td-lte-in-id-64gb-rmx1801/index.json @@ -0,0 +1,76 @@ +{ + "id": 2803, + "slug": "realme-2-pro-premium-edition-dual-sim-td-lte-in-id-64gb-rmx1801", + "name": "Realme 2 Pro Premium Edition Dual SIM TD-LTE IN ID 64GB RMX1801", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-10-11", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 19.5, + "camera": 6.3, + "battery": 7.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.507912", + "updated_at": "2026-06-19T00:43:44.507912" +} diff --git a/site/public/v1/smartphones/realme-2-pro-premium-edition-dual-sim-td-lte-in-id-64gb-rmx1801/score/index.json b/site/public/v1/smartphones/realme-2-pro-premium-edition-dual-sim-td-lte-in-id-64gb-rmx1801/score/index.json new file mode 100644 index 00000000000..a1c3acf7fcb --- /dev/null +++ b/site/public/v1/smartphones/realme-2-pro-premium-edition-dual-sim-td-lte-in-id-64gb-rmx1801/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 19.5, + "camera": 6.3, + "battery": 7.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/realme-2-pro-standard-edition-dual-sim-td-lte-in-id-64gb-rmx1801/index.json b/site/public/v1/smartphones/realme-2-pro-standard-edition-dual-sim-td-lte-in-id-64gb-rmx1801/index.json new file mode 100644 index 00000000000..08c69291a50 --- /dev/null +++ b/site/public/v1/smartphones/realme-2-pro-standard-edition-dual-sim-td-lte-in-id-64gb-rmx1801/index.json @@ -0,0 +1,76 @@ +{ + "id": 2804, + "slug": "realme-2-pro-standard-edition-dual-sim-td-lte-in-id-64gb-rmx1801", + "name": "Realme 2 Pro Standard Edition Dual SIM TD-LTE IN ID 64GB RMX1801", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-10-11", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 18.0, + "camera": 6.3, + "battery": 7.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.507912", + "updated_at": "2026-06-19T00:43:44.507912" +} diff --git a/site/public/v1/smartphones/realme-2-pro-standard-edition-dual-sim-td-lte-in-id-64gb-rmx1801/score/index.json b/site/public/v1/smartphones/realme-2-pro-standard-edition-dual-sim-td-lte-in-id-64gb-rmx1801/score/index.json new file mode 100644 index 00000000000..d2f29d3209d --- /dev/null +++ b/site/public/v1/smartphones/realme-2-pro-standard-edition-dual-sim-td-lte-in-id-64gb-rmx1801/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 18.0, + "camera": 6.3, + "battery": 7.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/realme-3-global-dual-sim-td-lte-32gb-rmx1821/index.json b/site/public/v1/smartphones/realme-3-global-dual-sim-td-lte-32gb-rmx1821/index.json new file mode 100644 index 00000000000..66290775f19 --- /dev/null +++ b/site/public/v1/smartphones/realme-3-global-dual-sim-td-lte-32gb-rmx1821/index.json @@ -0,0 +1,76 @@ +{ + "id": 2891, + "slug": "realme-3-global-dual-sim-td-lte-32gb-rmx1821", + "name": "Realme 3 Global Dual SIM TD-LTE 32GB RMX1821", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2019-05-08", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.519921", + "updated_at": "2026-06-19T00:43:44.519921" +} diff --git a/site/public/v1/smartphones/realme-3-global-dual-sim-td-lte-32gb-rmx1821/score/index.json b/site/public/v1/smartphones/realme-3-global-dual-sim-td-lte-32gb-rmx1821/score/index.json new file mode 100644 index 00000000000..470feae9b91 --- /dev/null +++ b/site/public/v1/smartphones/realme-3-global-dual-sim-td-lte-32gb-rmx1821/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-3-global-dual-sim-td-lte-64gb-rmx1821/index.json b/site/public/v1/smartphones/realme-3-global-dual-sim-td-lte-64gb-rmx1821/index.json new file mode 100644 index 00000000000..4d36d78d0b7 --- /dev/null +++ b/site/public/v1/smartphones/realme-3-global-dual-sim-td-lte-64gb-rmx1821/index.json @@ -0,0 +1,76 @@ +{ + "id": 2892, + "slug": "realme-3-global-dual-sim-td-lte-64gb-rmx1821", + "name": "Realme 3 Global Dual SIM TD-LTE 64GB RMX1821", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2019-05-08", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.519921", + "updated_at": "2026-06-19T00:43:44.519921" +} diff --git a/site/public/v1/smartphones/realme-3-global-dual-sim-td-lte-64gb-rmx1821/score/index.json b/site/public/v1/smartphones/realme-3-global-dual-sim-td-lte-64gb-rmx1821/score/index.json new file mode 100644 index 00000000000..470feae9b91 --- /dev/null +++ b/site/public/v1/smartphones/realme-3-global-dual-sim-td-lte-64gb-rmx1821/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-3-premium-edition-dual-sim-td-lte-in-32gb-rmx1825/index.json b/site/public/v1/smartphones/realme-3-premium-edition-dual-sim-td-lte-in-32gb-rmx1825/index.json new file mode 100644 index 00000000000..e4a72fd7aa8 --- /dev/null +++ b/site/public/v1/smartphones/realme-3-premium-edition-dual-sim-td-lte-in-32gb-rmx1825/index.json @@ -0,0 +1,76 @@ +{ + "id": 2893, + "slug": "realme-3-premium-edition-dual-sim-td-lte-in-32gb-rmx1825", + "name": "Realme 3 Premium Edition Dual SIM TD-LTE IN 32GB RMX1825", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-05-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.520921", + "updated_at": "2026-06-19T00:43:44.520921" +} diff --git a/site/public/v1/smartphones/realme-3-premium-edition-dual-sim-td-lte-in-32gb-rmx1825/score/index.json b/site/public/v1/smartphones/realme-3-premium-edition-dual-sim-td-lte-in-32gb-rmx1825/score/index.json new file mode 100644 index 00000000000..470feae9b91 --- /dev/null +++ b/site/public/v1/smartphones/realme-3-premium-edition-dual-sim-td-lte-in-32gb-rmx1825/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-3-premium-edition-dual-sim-td-lte-in-64gb-rmx1825/index.json b/site/public/v1/smartphones/realme-3-premium-edition-dual-sim-td-lte-in-64gb-rmx1825/index.json new file mode 100644 index 00000000000..5be6937339d --- /dev/null +++ b/site/public/v1/smartphones/realme-3-premium-edition-dual-sim-td-lte-in-64gb-rmx1825/index.json @@ -0,0 +1,76 @@ +{ + "id": 2894, + "slug": "realme-3-premium-edition-dual-sim-td-lte-in-64gb-rmx1825", + "name": "Realme 3 Premium Edition Dual SIM TD-LTE IN 64GB RMX1825", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-03-12", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.520921", + "updated_at": "2026-06-19T00:43:44.520921" +} diff --git a/site/public/v1/smartphones/realme-3-premium-edition-dual-sim-td-lte-in-64gb-rmx1825/score/index.json b/site/public/v1/smartphones/realme-3-premium-edition-dual-sim-td-lte-in-64gb-rmx1825/score/index.json new file mode 100644 index 00000000000..470feae9b91 --- /dev/null +++ b/site/public/v1/smartphones/realme-3-premium-edition-dual-sim-td-lte-in-64gb-rmx1825/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-3-pro-global-dual-sim-td-lte-128gb-rmx1853/index.json b/site/public/v1/smartphones/realme-3-pro-global-dual-sim-td-lte-128gb-rmx1853/index.json new file mode 100644 index 00000000000..fe6e5bac736 --- /dev/null +++ b/site/public/v1/smartphones/realme-3-pro-global-dual-sim-td-lte-128gb-rmx1853/index.json @@ -0,0 +1,76 @@ +{ + "id": 2895, + "slug": "realme-3-pro-global-dual-sim-td-lte-128gb-rmx1853", + "name": "Realme 3 Pro Global Dual SIM TD-LTE 128GB RMX1853", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 4045, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 21.5, + "camera": 6.4, + "battery": 16.6, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.520921", + "updated_at": "2026-06-19T00:43:44.520921" +} diff --git a/site/public/v1/smartphones/realme-3-pro-global-dual-sim-td-lte-128gb-rmx1853/score/index.json b/site/public/v1/smartphones/realme-3-pro-global-dual-sim-td-lte-128gb-rmx1853/score/index.json new file mode 100644 index 00000000000..0d74962f08c --- /dev/null +++ b/site/public/v1/smartphones/realme-3-pro-global-dual-sim-td-lte-128gb-rmx1853/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 21.5, + "camera": 6.4, + "battery": 16.6, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/realme-3-pro-global-dual-sim-td-lte-64gb-rmx1853/index.json b/site/public/v1/smartphones/realme-3-pro-global-dual-sim-td-lte-64gb-rmx1853/index.json new file mode 100644 index 00000000000..a0fb98e3106 --- /dev/null +++ b/site/public/v1/smartphones/realme-3-pro-global-dual-sim-td-lte-64gb-rmx1853/index.json @@ -0,0 +1,76 @@ +{ + "id": 2896, + "slug": "realme-3-pro-global-dual-sim-td-lte-64gb-rmx1853", + "name": "Realme 3 Pro Global Dual SIM TD-LTE 64GB RMX1853", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 4045, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 20.0, + "camera": 6.4, + "battery": 16.6, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.520921", + "updated_at": "2026-06-19T00:43:44.520921" +} diff --git a/site/public/v1/smartphones/realme-3-pro-global-dual-sim-td-lte-64gb-rmx1853/score/index.json b/site/public/v1/smartphones/realme-3-pro-global-dual-sim-td-lte-64gb-rmx1853/score/index.json new file mode 100644 index 00000000000..57bd793f7c7 --- /dev/null +++ b/site/public/v1/smartphones/realme-3-pro-global-dual-sim-td-lte-64gb-rmx1853/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 20.0, + "camera": 6.4, + "battery": 16.6, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/realme-3-pro-premium-edition-dual-sim-td-lte-apac-128gb-rmx1851/index.json b/site/public/v1/smartphones/realme-3-pro-premium-edition-dual-sim-td-lte-apac-128gb-rmx1851/index.json new file mode 100644 index 00000000000..0b3615fc6b0 --- /dev/null +++ b/site/public/v1/smartphones/realme-3-pro-premium-edition-dual-sim-td-lte-apac-128gb-rmx1851/index.json @@ -0,0 +1,76 @@ +{ + "id": 2897, + "slug": "realme-3-pro-premium-edition-dual-sim-td-lte-apac-128gb-rmx1851", + "name": "Realme 3 Pro Premium Edition Dual SIM TD-LTE APAC 128GB RMX1851", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 4045, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 21.5, + "camera": 6.4, + "battery": 16.6, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.520921", + "updated_at": "2026-06-19T00:43:44.520921" +} diff --git a/site/public/v1/smartphones/realme-3-pro-premium-edition-dual-sim-td-lte-apac-128gb-rmx1851/score/index.json b/site/public/v1/smartphones/realme-3-pro-premium-edition-dual-sim-td-lte-apac-128gb-rmx1851/score/index.json new file mode 100644 index 00000000000..0d74962f08c --- /dev/null +++ b/site/public/v1/smartphones/realme-3-pro-premium-edition-dual-sim-td-lte-apac-128gb-rmx1851/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 21.5, + "camera": 6.4, + "battery": 16.6, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/realme-3-pro-premium-edition-dual-sim-td-lte-apac-64gb-rmx1851/index.json b/site/public/v1/smartphones/realme-3-pro-premium-edition-dual-sim-td-lte-apac-64gb-rmx1851/index.json new file mode 100644 index 00000000000..84b98de8594 --- /dev/null +++ b/site/public/v1/smartphones/realme-3-pro-premium-edition-dual-sim-td-lte-apac-64gb-rmx1851/index.json @@ -0,0 +1,76 @@ +{ + "id": 2898, + "slug": "realme-3-pro-premium-edition-dual-sim-td-lte-apac-64gb-rmx1851", + "name": "Realme 3 Pro Premium Edition Dual SIM TD-LTE APAC 64GB RMX1851", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 4045, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 21.5, + "camera": 6.4, + "battery": 16.6, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.520921", + "updated_at": "2026-06-19T00:43:44.520921" +} diff --git a/site/public/v1/smartphones/realme-3-pro-premium-edition-dual-sim-td-lte-apac-64gb-rmx1851/score/index.json b/site/public/v1/smartphones/realme-3-pro-premium-edition-dual-sim-td-lte-apac-64gb-rmx1851/score/index.json new file mode 100644 index 00000000000..0d74962f08c --- /dev/null +++ b/site/public/v1/smartphones/realme-3-pro-premium-edition-dual-sim-td-lte-apac-64gb-rmx1851/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 21.5, + "camera": 6.4, + "battery": 16.6, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/realme-3-pro-standard-edition-dual-sim-td-lte-apac-64gb-rmx1851/index.json b/site/public/v1/smartphones/realme-3-pro-standard-edition-dual-sim-td-lte-apac-64gb-rmx1851/index.json new file mode 100644 index 00000000000..065e1c9064a --- /dev/null +++ b/site/public/v1/smartphones/realme-3-pro-standard-edition-dual-sim-td-lte-apac-64gb-rmx1851/index.json @@ -0,0 +1,76 @@ +{ + "id": 2899, + "slug": "realme-3-pro-standard-edition-dual-sim-td-lte-apac-64gb-rmx1851", + "name": "Realme 3 Pro Standard Edition Dual SIM TD-LTE APAC 64GB RMX1851", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 4045, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 20.0, + "camera": 6.4, + "battery": 16.6, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.520921", + "updated_at": "2026-06-19T00:43:44.520921" +} diff --git a/site/public/v1/smartphones/realme-3-pro-standard-edition-dual-sim-td-lte-apac-64gb-rmx1851/score/index.json b/site/public/v1/smartphones/realme-3-pro-standard-edition-dual-sim-td-lte-apac-64gb-rmx1851/score/index.json new file mode 100644 index 00000000000..57bd793f7c7 --- /dev/null +++ b/site/public/v1/smartphones/realme-3-pro-standard-edition-dual-sim-td-lte-apac-64gb-rmx1851/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 20.0, + "camera": 6.4, + "battery": 16.6, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/realme-3-standard-edition-dual-sim-td-lte-in-32gb-rmx1825/index.json b/site/public/v1/smartphones/realme-3-standard-edition-dual-sim-td-lte-in-32gb-rmx1825/index.json new file mode 100644 index 00000000000..27e17482cc4 --- /dev/null +++ b/site/public/v1/smartphones/realme-3-standard-edition-dual-sim-td-lte-in-32gb-rmx1825/index.json @@ -0,0 +1,76 @@ +{ + "id": 2900, + "slug": "realme-3-standard-edition-dual-sim-td-lte-in-32gb-rmx1825", + "name": "Realme 3 Standard Edition Dual SIM TD-LTE IN 32GB RMX1825", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-03-12", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.520921", + "updated_at": "2026-06-19T00:43:44.520921" +} diff --git a/site/public/v1/smartphones/realme-3-standard-edition-dual-sim-td-lte-in-32gb-rmx1825/score/index.json b/site/public/v1/smartphones/realme-3-standard-edition-dual-sim-td-lte-in-32gb-rmx1825/score/index.json new file mode 100644 index 00000000000..470feae9b91 --- /dev/null +++ b/site/public/v1/smartphones/realme-3-standard-edition-dual-sim-td-lte-in-32gb-rmx1825/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-3i-dual-sim-td-lte-in-32gb-rmx1827/index.json b/site/public/v1/smartphones/realme-3i-dual-sim-td-lte-in-32gb-rmx1827/index.json new file mode 100644 index 00000000000..7257bba100d --- /dev/null +++ b/site/public/v1/smartphones/realme-3i-dual-sim-td-lte-in-32gb-rmx1827/index.json @@ -0,0 +1,76 @@ +{ + "id": 2901, + "slug": "realme-3i-dual-sim-td-lte-in-32gb-rmx1827", + "name": "Realme 3i Dual SIM TD-LTE IN 32GB RMX1827", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2019-07-23", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.521922", + "updated_at": "2026-06-19T00:43:44.521922" +} diff --git a/site/public/v1/smartphones/realme-3i-dual-sim-td-lte-in-32gb-rmx1827/score/index.json b/site/public/v1/smartphones/realme-3i-dual-sim-td-lte-in-32gb-rmx1827/score/index.json new file mode 100644 index 00000000000..470feae9b91 --- /dev/null +++ b/site/public/v1/smartphones/realme-3i-dual-sim-td-lte-in-32gb-rmx1827/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-3i-dual-sim-td-lte-in-64gb-rmx1827/index.json b/site/public/v1/smartphones/realme-3i-dual-sim-td-lte-in-64gb-rmx1827/index.json new file mode 100644 index 00000000000..307aa39b2a8 --- /dev/null +++ b/site/public/v1/smartphones/realme-3i-dual-sim-td-lte-in-64gb-rmx1827/index.json @@ -0,0 +1,76 @@ +{ + "id": 2902, + "slug": "realme-3i-dual-sim-td-lte-in-64gb-rmx1827", + "name": "Realme 3i Dual SIM TD-LTE IN 64GB RMX1827", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2019-07-23", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4230, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.521922", + "updated_at": "2026-06-19T00:43:44.521922" +} diff --git a/site/public/v1/smartphones/realme-3i-dual-sim-td-lte-in-64gb-rmx1827/score/index.json b/site/public/v1/smartphones/realme-3i-dual-sim-td-lte-in-64gb-rmx1827/score/index.json new file mode 100644 index 00000000000..470feae9b91 --- /dev/null +++ b/site/public/v1/smartphones/realme-3i-dual-sim-td-lte-in-64gb-rmx1827/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-5-premium-edition-dual-sim-td-lte-v1-in-id-ph-pk-th-vn-128gb-rmx1911/index.json b/site/public/v1/smartphones/realme-5-premium-edition-dual-sim-td-lte-v1-in-id-ph-pk-th-vn-128gb-rmx1911/index.json new file mode 100644 index 00000000000..896ceaf3059 --- /dev/null +++ b/site/public/v1/smartphones/realme-5-premium-edition-dual-sim-td-lte-v1-in-id-ph-pk-th-vn-128gb-rmx1911/index.json @@ -0,0 +1,76 @@ +{ + "id": 2903, + "slug": "realme-5-premium-edition-dual-sim-td-lte-v1-in-id-ph-pk-th-vn-128gb-rmx1911", + "name": "Realme 5 Premium Edition Dual SIM TD-LTE V1 IN ID PH PK TH VN 128GB RMX1911", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.1, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.521922", + "updated_at": "2026-06-19T00:43:44.521922" +} diff --git a/site/public/v1/smartphones/realme-5-premium-edition-dual-sim-td-lte-v1-in-id-ph-pk-th-vn-128gb-rmx1911/score/index.json b/site/public/v1/smartphones/realme-5-premium-edition-dual-sim-td-lte-v1-in-id-ph-pk-th-vn-128gb-rmx1911/score/index.json new file mode 100644 index 00000000000..fdbccbf2b7b --- /dev/null +++ b/site/public/v1/smartphones/realme-5-premium-edition-dual-sim-td-lte-v1-in-id-ph-pk-th-vn-128gb-rmx1911/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.1, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-5-premium-edition-dual-sim-td-lte-v1-in-th-64gb-rmx1911/index.json b/site/public/v1/smartphones/realme-5-premium-edition-dual-sim-td-lte-v1-in-th-64gb-rmx1911/index.json new file mode 100644 index 00000000000..a1e22652b19 --- /dev/null +++ b/site/public/v1/smartphones/realme-5-premium-edition-dual-sim-td-lte-v1-in-th-64gb-rmx1911/index.json @@ -0,0 +1,76 @@ +{ + "id": 2904, + "slug": "realme-5-premium-edition-dual-sim-td-lte-v1-in-th-64gb-rmx1911", + "name": "Realme 5 Premium Edition Dual SIM TD-LTE V1 IN TH 64GB RMX1911", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-08-27", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.1, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.521922", + "updated_at": "2026-06-19T00:43:44.521922" +} diff --git a/site/public/v1/smartphones/realme-5-premium-edition-dual-sim-td-lte-v1-in-th-64gb-rmx1911/score/index.json b/site/public/v1/smartphones/realme-5-premium-edition-dual-sim-td-lte-v1-in-th-64gb-rmx1911/score/index.json new file mode 100644 index 00000000000..fdbccbf2b7b --- /dev/null +++ b/site/public/v1/smartphones/realme-5-premium-edition-dual-sim-td-lte-v1-in-th-64gb-rmx1911/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.1, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-5-premium-edition-dual-sim-td-lte-v2-eg-v2-64gb-rmx1911/index.json b/site/public/v1/smartphones/realme-5-premium-edition-dual-sim-td-lte-v2-eg-v2-64gb-rmx1911/index.json new file mode 100644 index 00000000000..d161d831886 --- /dev/null +++ b/site/public/v1/smartphones/realme-5-premium-edition-dual-sim-td-lte-v2-eg-v2-64gb-rmx1911/index.json @@ -0,0 +1,76 @@ +{ + "id": 2905, + "slug": "realme-5-premium-edition-dual-sim-td-lte-v2-eg-v2-64gb-rmx1911", + "name": "Realme 5 Premium Edition Dual SIM TD-LTE V2 EG V2 64GB RMX1911", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-08-27", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.1, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.521922", + "updated_at": "2026-06-19T00:43:44.521922" +} diff --git a/site/public/v1/smartphones/realme-5-premium-edition-dual-sim-td-lte-v2-eg-v2-64gb-rmx1911/score/index.json b/site/public/v1/smartphones/realme-5-premium-edition-dual-sim-td-lte-v2-eg-v2-64gb-rmx1911/score/index.json new file mode 100644 index 00000000000..fdbccbf2b7b --- /dev/null +++ b/site/public/v1/smartphones/realme-5-premium-edition-dual-sim-td-lte-v2-eg-v2-64gb-rmx1911/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.1, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-5-premium-edition-dual-sim-td-lte-v2-eu-au-sg-my-eg-128gb-rmx1911/index.json b/site/public/v1/smartphones/realme-5-premium-edition-dual-sim-td-lte-v2-eu-au-sg-my-eg-128gb-rmx1911/index.json new file mode 100644 index 00000000000..8a2b9810438 --- /dev/null +++ b/site/public/v1/smartphones/realme-5-premium-edition-dual-sim-td-lte-v2-eu-au-sg-my-eg-128gb-rmx1911/index.json @@ -0,0 +1,76 @@ +{ + "id": 2906, + "slug": "realme-5-premium-edition-dual-sim-td-lte-v2-eu-au-sg-my-eg-128gb-rmx1911", + "name": "Realme 5 Premium Edition Dual SIM TD-LTE V2 EU AU SG MY EG 128GB RMX1911", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.1, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.521922", + "updated_at": "2026-06-19T00:43:44.521922" +} diff --git a/site/public/v1/smartphones/realme-5-premium-edition-dual-sim-td-lte-v2-eu-au-sg-my-eg-128gb-rmx1911/score/index.json b/site/public/v1/smartphones/realme-5-premium-edition-dual-sim-td-lte-v2-eu-au-sg-my-eg-128gb-rmx1911/score/index.json new file mode 100644 index 00000000000..fdbccbf2b7b --- /dev/null +++ b/site/public/v1/smartphones/realme-5-premium-edition-dual-sim-td-lte-v2-eu-au-sg-my-eg-128gb-rmx1911/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.1, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-5-pro-premium-edition-dual-sim-td-lte-in-64gb-rmx1971/index.json b/site/public/v1/smartphones/realme-5-pro-premium-edition-dual-sim-td-lte-in-64gb-rmx1971/index.json new file mode 100644 index 00000000000..8f31ffd8a25 --- /dev/null +++ b/site/public/v1/smartphones/realme-5-pro-premium-edition-dual-sim-td-lte-in-64gb-rmx1971/index.json @@ -0,0 +1,76 @@ +{ + "id": 2907, + "slug": "realme-5-pro-premium-edition-dual-sim-td-lte-in-64gb-rmx1971", + "name": "Realme 5 Pro Premium Edition Dual SIM TD-LTE IN 64GB RMX1971", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2019-09-11", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4035, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 16.5, + "battery": 16.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.521922", + "updated_at": "2026-06-19T00:43:44.521922" +} diff --git a/site/public/v1/smartphones/realme-5-pro-premium-edition-dual-sim-td-lte-in-64gb-rmx1971/score/index.json b/site/public/v1/smartphones/realme-5-pro-premium-edition-dual-sim-td-lte-in-64gb-rmx1971/score/index.json new file mode 100644 index 00000000000..01309a59e52 --- /dev/null +++ b/site/public/v1/smartphones/realme-5-pro-premium-edition-dual-sim-td-lte-in-64gb-rmx1971/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 16.5, + "battery": 16.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/realme-5-pro-premium-edition-dual-sim-td-lte-in-th-128gb-rmx1971/index.json b/site/public/v1/smartphones/realme-5-pro-premium-edition-dual-sim-td-lte-in-th-128gb-rmx1971/index.json new file mode 100644 index 00000000000..ee76a63a68c --- /dev/null +++ b/site/public/v1/smartphones/realme-5-pro-premium-edition-dual-sim-td-lte-in-th-128gb-rmx1971/index.json @@ -0,0 +1,76 @@ +{ + "id": 2908, + "slug": "realme-5-pro-premium-edition-dual-sim-td-lte-in-th-128gb-rmx1971", + "name": "Realme 5 Pro Premium Edition Dual SIM TD-LTE IN TH 128GB RMX1971", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2019-09-11", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4035, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 16.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.521922", + "updated_at": "2026-06-19T00:43:44.522930" +} diff --git a/site/public/v1/smartphones/realme-5-pro-premium-edition-dual-sim-td-lte-in-th-128gb-rmx1971/score/index.json b/site/public/v1/smartphones/realme-5-pro-premium-edition-dual-sim-td-lte-in-th-128gb-rmx1971/score/index.json new file mode 100644 index 00000000000..21f691c7103 --- /dev/null +++ b/site/public/v1/smartphones/realme-5-pro-premium-edition-dual-sim-td-lte-in-th-128gb-rmx1971/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 16.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/realme-5-pro-premium-edition-global-dual-sim-td-lte-128gb-rmx1971/index.json b/site/public/v1/smartphones/realme-5-pro-premium-edition-global-dual-sim-td-lte-128gb-rmx1971/index.json new file mode 100644 index 00000000000..0460f5ae78b --- /dev/null +++ b/site/public/v1/smartphones/realme-5-pro-premium-edition-global-dual-sim-td-lte-128gb-rmx1971/index.json @@ -0,0 +1,76 @@ +{ + "id": 2909, + "slug": "realme-5-pro-premium-edition-global-dual-sim-td-lte-128gb-rmx1971", + "name": "Realme 5 Pro Premium Edition Global Dual SIM TD-LTE 128GB RMX1971", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2019-10-18", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4035, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 16.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.522930", + "updated_at": "2026-06-19T00:43:44.522930" +} diff --git a/site/public/v1/smartphones/realme-5-pro-premium-edition-global-dual-sim-td-lte-128gb-rmx1971/score/index.json b/site/public/v1/smartphones/realme-5-pro-premium-edition-global-dual-sim-td-lte-128gb-rmx1971/score/index.json new file mode 100644 index 00000000000..21f691c7103 --- /dev/null +++ b/site/public/v1/smartphones/realme-5-pro-premium-edition-global-dual-sim-td-lte-128gb-rmx1971/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 16.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/realme-5-pro-standard-edition-dual-sim-td-lte-in-64gb-rmx1971/index.json b/site/public/v1/smartphones/realme-5-pro-standard-edition-dual-sim-td-lte-in-64gb-rmx1971/index.json new file mode 100644 index 00000000000..7e7d12c3fdf --- /dev/null +++ b/site/public/v1/smartphones/realme-5-pro-standard-edition-dual-sim-td-lte-in-64gb-rmx1971/index.json @@ -0,0 +1,76 @@ +{ + "id": 2910, + "slug": "realme-5-pro-standard-edition-dual-sim-td-lte-in-64gb-rmx1971", + "name": "Realme 5 Pro Standard Edition Dual SIM TD-LTE IN 64GB RMX1971", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2019-09-11", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4035, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 0.0, + "camera": 16.5, + "battery": 16.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.522930", + "updated_at": "2026-06-19T00:43:44.522930" +} diff --git a/site/public/v1/smartphones/realme-5-pro-standard-edition-dual-sim-td-lte-in-64gb-rmx1971/score/index.json b/site/public/v1/smartphones/realme-5-pro-standard-edition-dual-sim-td-lte-in-64gb-rmx1971/score/index.json new file mode 100644 index 00000000000..654dff9986a --- /dev/null +++ b/site/public/v1/smartphones/realme-5-pro-standard-edition-dual-sim-td-lte-in-64gb-rmx1971/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 0.0, + "camera": 16.5, + "battery": 16.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/realme-5-pro-standard-edition-dual-sim-td-lte-th-128gb-rmx1971/index.json b/site/public/v1/smartphones/realme-5-pro-standard-edition-dual-sim-td-lte-th-128gb-rmx1971/index.json new file mode 100644 index 00000000000..214444b523b --- /dev/null +++ b/site/public/v1/smartphones/realme-5-pro-standard-edition-dual-sim-td-lte-th-128gb-rmx1971/index.json @@ -0,0 +1,76 @@ +{ + "id": 2911, + "slug": "realme-5-pro-standard-edition-dual-sim-td-lte-th-128gb-rmx1971", + "name": "Realme 5 Pro Standard Edition Dual SIM TD-LTE TH 128GB RMX1971", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2019-09-11", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4035, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 0.0, + "camera": 16.5, + "battery": 16.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.522930", + "updated_at": "2026-06-19T00:43:44.522930" +} diff --git a/site/public/v1/smartphones/realme-5-pro-standard-edition-dual-sim-td-lte-th-128gb-rmx1971/score/index.json b/site/public/v1/smartphones/realme-5-pro-standard-edition-dual-sim-td-lte-th-128gb-rmx1971/score/index.json new file mode 100644 index 00000000000..654dff9986a --- /dev/null +++ b/site/public/v1/smartphones/realme-5-pro-standard-edition-dual-sim-td-lte-th-128gb-rmx1971/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 0.0, + "camera": 16.5, + "battery": 16.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/realme-5-pro-standard-edition-global-dual-sim-td-lte-128gb-rmx1971/index.json b/site/public/v1/smartphones/realme-5-pro-standard-edition-global-dual-sim-td-lte-128gb-rmx1971/index.json new file mode 100644 index 00000000000..0f888e2eee6 --- /dev/null +++ b/site/public/v1/smartphones/realme-5-pro-standard-edition-global-dual-sim-td-lte-128gb-rmx1971/index.json @@ -0,0 +1,76 @@ +{ + "id": 2912, + "slug": "realme-5-pro-standard-edition-global-dual-sim-td-lte-128gb-rmx1971", + "name": "Realme 5 Pro Standard Edition Global Dual SIM TD-LTE 128GB RMX1971", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2019-10-18", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4035, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 0.0, + "camera": 16.5, + "battery": 16.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.522930", + "updated_at": "2026-06-19T00:43:44.522930" +} diff --git a/site/public/v1/smartphones/realme-5-pro-standard-edition-global-dual-sim-td-lte-128gb-rmx1971/score/index.json b/site/public/v1/smartphones/realme-5-pro-standard-edition-global-dual-sim-td-lte-128gb-rmx1971/score/index.json new file mode 100644 index 00000000000..654dff9986a --- /dev/null +++ b/site/public/v1/smartphones/realme-5-pro-standard-edition-global-dual-sim-td-lte-128gb-rmx1971/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 0.0, + "camera": 16.5, + "battery": 16.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/realme-5-standard-edition-dual-sim-td-lte-v1-id-ph-64gb-rmx1911/index.json b/site/public/v1/smartphones/realme-5-standard-edition-dual-sim-td-lte-v1-id-ph-64gb-rmx1911/index.json new file mode 100644 index 00000000000..6356f1b9682 --- /dev/null +++ b/site/public/v1/smartphones/realme-5-standard-edition-dual-sim-td-lte-v1-id-ph-64gb-rmx1911/index.json @@ -0,0 +1,76 @@ +{ + "id": 2913, + "slug": "realme-5-standard-edition-dual-sim-td-lte-v1-id-ph-64gb-rmx1911", + "name": "Realme 5 Standard Edition Dual SIM TD-LTE V1 ID PH 64GB RMX1911", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-08-27", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.1, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.522930", + "updated_at": "2026-06-19T00:43:44.522930" +} diff --git a/site/public/v1/smartphones/realme-5-standard-edition-dual-sim-td-lte-v1-id-ph-64gb-rmx1911/score/index.json b/site/public/v1/smartphones/realme-5-standard-edition-dual-sim-td-lte-v1-id-ph-64gb-rmx1911/score/index.json new file mode 100644 index 00000000000..fdbccbf2b7b --- /dev/null +++ b/site/public/v1/smartphones/realme-5-standard-edition-dual-sim-td-lte-v1-id-ph-64gb-rmx1911/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.1, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-5-standard-edition-dual-sim-td-lte-v1-in-id-ph-th-vn-32gb-rmx1911/index.json b/site/public/v1/smartphones/realme-5-standard-edition-dual-sim-td-lte-v1-in-id-ph-th-vn-32gb-rmx1911/index.json new file mode 100644 index 00000000000..06074c70606 --- /dev/null +++ b/site/public/v1/smartphones/realme-5-standard-edition-dual-sim-td-lte-v1-in-id-ph-th-vn-32gb-rmx1911/index.json @@ -0,0 +1,76 @@ +{ + "id": 2914, + "slug": "realme-5-standard-edition-dual-sim-td-lte-v1-in-id-ph-th-vn-32gb-rmx1911", + "name": "Realme 5 Standard Edition Dual SIM TD-LTE V1 IN ID PH TH VN 32GB RMX1911", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-08-27", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.1, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.522930", + "updated_at": "2026-06-19T00:43:44.522930" +} diff --git a/site/public/v1/smartphones/realme-5-standard-edition-dual-sim-td-lte-v1-in-id-ph-th-vn-32gb-rmx1911/score/index.json b/site/public/v1/smartphones/realme-5-standard-edition-dual-sim-td-lte-v1-in-id-ph-th-vn-32gb-rmx1911/score/index.json new file mode 100644 index 00000000000..fdbccbf2b7b --- /dev/null +++ b/site/public/v1/smartphones/realme-5-standard-edition-dual-sim-td-lte-v1-in-id-ph-th-vn-32gb-rmx1911/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.1, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-5-standard-edition-dual-sim-td-lte-v2-my-32gb-rmx1911/index.json b/site/public/v1/smartphones/realme-5-standard-edition-dual-sim-td-lte-v2-my-32gb-rmx1911/index.json new file mode 100644 index 00000000000..86e6273adec --- /dev/null +++ b/site/public/v1/smartphones/realme-5-standard-edition-dual-sim-td-lte-v2-my-32gb-rmx1911/index.json @@ -0,0 +1,76 @@ +{ + "id": 2915, + "slug": "realme-5-standard-edition-dual-sim-td-lte-v2-my-32gb-rmx1911", + "name": "Realme 5 Standard Edition Dual SIM TD-LTE V2 MY 32GB RMX1911", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-08-27", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.1, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.522930", + "updated_at": "2026-06-19T00:43:44.522930" +} diff --git a/site/public/v1/smartphones/realme-5-standard-edition-dual-sim-td-lte-v2-my-32gb-rmx1911/score/index.json b/site/public/v1/smartphones/realme-5-standard-edition-dual-sim-td-lte-v2-my-32gb-rmx1911/score/index.json new file mode 100644 index 00000000000..fdbccbf2b7b --- /dev/null +++ b/site/public/v1/smartphones/realme-5-standard-edition-dual-sim-td-lte-v2-my-32gb-rmx1911/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.1, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-5-standard-edition-dual-sim-td-lte-v2-ru-64gb-rmx1911/index.json b/site/public/v1/smartphones/realme-5-standard-edition-dual-sim-td-lte-v2-ru-64gb-rmx1911/index.json new file mode 100644 index 00000000000..918d00275d2 --- /dev/null +++ b/site/public/v1/smartphones/realme-5-standard-edition-dual-sim-td-lte-v2-ru-64gb-rmx1911/index.json @@ -0,0 +1,76 @@ +{ + "id": 2916, + "slug": "realme-5-standard-edition-dual-sim-td-lte-v2-ru-64gb-rmx1911", + "name": "Realme 5 Standard Edition Dual SIM TD-LTE V2 RU 64GB RMX1911", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-11-21", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.1, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.522930", + "updated_at": "2026-06-19T00:43:44.522930" +} diff --git a/site/public/v1/smartphones/realme-5-standard-edition-dual-sim-td-lte-v2-ru-64gb-rmx1911/score/index.json b/site/public/v1/smartphones/realme-5-standard-edition-dual-sim-td-lte-v2-ru-64gb-rmx1911/score/index.json new file mode 100644 index 00000000000..fdbccbf2b7b --- /dev/null +++ b/site/public/v1/smartphones/realme-5-standard-edition-dual-sim-td-lte-v2-ru-64gb-rmx1911/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.1, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-5-standard-edition-dual-sim-td-lte-v2-sg-my-64gb-rmx1911/index.json b/site/public/v1/smartphones/realme-5-standard-edition-dual-sim-td-lte-v2-sg-my-64gb-rmx1911/index.json new file mode 100644 index 00000000000..31e7ad101ec --- /dev/null +++ b/site/public/v1/smartphones/realme-5-standard-edition-dual-sim-td-lte-v2-sg-my-64gb-rmx1911/index.json @@ -0,0 +1,76 @@ +{ + "id": 2917, + "slug": "realme-5-standard-edition-dual-sim-td-lte-v2-sg-my-64gb-rmx1911", + "name": "Realme 5 Standard Edition Dual SIM TD-LTE V2 SG MY 64GB RMX1911", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-08-27", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.1, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.523929", + "updated_at": "2026-06-19T00:43:44.523929" +} diff --git a/site/public/v1/smartphones/realme-5-standard-edition-dual-sim-td-lte-v2-sg-my-64gb-rmx1911/score/index.json b/site/public/v1/smartphones/realme-5-standard-edition-dual-sim-td-lte-v2-sg-my-64gb-rmx1911/score/index.json new file mode 100644 index 00000000000..fdbccbf2b7b --- /dev/null +++ b/site/public/v1/smartphones/realme-5-standard-edition-dual-sim-td-lte-v2-sg-my-64gb-rmx1911/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 0.0, + "camera": 5.1, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-5i-global-dual-sim-td-lte-v3-64gb-rmx2030/index.json b/site/public/v1/smartphones/realme-5i-global-dual-sim-td-lte-v3-64gb-rmx2030/index.json new file mode 100644 index 00000000000..7d2ef067f56 --- /dev/null +++ b/site/public/v1/smartphones/realme-5i-global-dual-sim-td-lte-v3-64gb-rmx2030/index.json @@ -0,0 +1,77 @@ +{ + "id": 3124, + "slug": "realme-5i-global-dual-sim-td-lte-v3-64gb-rmx2030", + "name": "Realme 5i Global Dual SIM TD-LTE V3 64GB RMX2030", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-05-04", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.553116", + "updated_at": "2026-06-19T00:43:44.553116" +} diff --git a/site/public/v1/smartphones/realme-5i-global-dual-sim-td-lte-v3-64gb-rmx2030/score/index.json b/site/public/v1/smartphones/realme-5i-global-dual-sim-td-lte-v3-64gb-rmx2030/score/index.json new file mode 100644 index 00000000000..e3b47d27ce7 --- /dev/null +++ b/site/public/v1/smartphones/realme-5i-global-dual-sim-td-lte-v3-64gb-rmx2030/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-5i-premium-edition-dual-sim-td-lte-v1-id-128gb-rmx2030/index.json b/site/public/v1/smartphones/realme-5i-premium-edition-dual-sim-td-lte-v1-id-128gb-rmx2030/index.json new file mode 100644 index 00000000000..0494bbf5a3b --- /dev/null +++ b/site/public/v1/smartphones/realme-5i-premium-edition-dual-sim-td-lte-v1-id-128gb-rmx2030/index.json @@ -0,0 +1,77 @@ +{ + "id": 3125, + "slug": "realme-5i-premium-edition-dual-sim-td-lte-v1-id-128gb-rmx2030", + "name": "Realme 5i Premium Edition Dual SIM TD-LTE V1 ID 128GB RMX2030", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-01-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.553116", + "updated_at": "2026-06-19T00:43:44.553116" +} diff --git a/site/public/v1/smartphones/realme-5i-premium-edition-dual-sim-td-lte-v1-id-128gb-rmx2030/score/index.json b/site/public/v1/smartphones/realme-5i-premium-edition-dual-sim-td-lte-v1-id-128gb-rmx2030/score/index.json new file mode 100644 index 00000000000..e3b47d27ce7 --- /dev/null +++ b/site/public/v1/smartphones/realme-5i-premium-edition-dual-sim-td-lte-v1-id-128gb-rmx2030/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-5i-premium-edition-dual-sim-td-lte-v1-in-id-vn-th-sg-tr-64gb-rmx2030/index.json b/site/public/v1/smartphones/realme-5i-premium-edition-dual-sim-td-lte-v1-in-id-vn-th-sg-tr-64gb-rmx2030/index.json new file mode 100644 index 00000000000..4bb0a517159 --- /dev/null +++ b/site/public/v1/smartphones/realme-5i-premium-edition-dual-sim-td-lte-v1-in-id-vn-th-sg-tr-64gb-rmx2030/index.json @@ -0,0 +1,77 @@ +{ + "id": 3126, + "slug": "realme-5i-premium-edition-dual-sim-td-lte-v1-in-id-vn-th-sg-tr-64gb-rmx2030", + "name": "Realme 5i Premium Edition Dual SIM TD-LTE V1 IN ID VN TH SG TR 64GB RMX2030", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-01-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.553116", + "updated_at": "2026-06-19T00:43:44.553116" +} diff --git a/site/public/v1/smartphones/realme-5i-premium-edition-dual-sim-td-lte-v1-in-id-vn-th-sg-tr-64gb-rmx2030/score/index.json b/site/public/v1/smartphones/realme-5i-premium-edition-dual-sim-td-lte-v1-in-id-vn-th-sg-tr-64gb-rmx2030/score/index.json new file mode 100644 index 00000000000..e3b47d27ce7 --- /dev/null +++ b/site/public/v1/smartphones/realme-5i-premium-edition-dual-sim-td-lte-v1-in-id-vn-th-sg-tr-64gb-rmx2030/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-5i-premium-edition-dual-sim-td-lte-v2-my-pk-64gb-rmx2030/index.json b/site/public/v1/smartphones/realme-5i-premium-edition-dual-sim-td-lte-v2-my-pk-64gb-rmx2030/index.json new file mode 100644 index 00000000000..86929c5ad36 --- /dev/null +++ b/site/public/v1/smartphones/realme-5i-premium-edition-dual-sim-td-lte-v2-my-pk-64gb-rmx2030/index.json @@ -0,0 +1,77 @@ +{ + "id": 3127, + "slug": "realme-5i-premium-edition-dual-sim-td-lte-v2-my-pk-64gb-rmx2030", + "name": "Realme 5i Premium Edition Dual SIM TD-LTE V2 MY PK 64GB RMX2030", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-01-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.553116", + "updated_at": "2026-06-19T00:43:44.553116" +} diff --git a/site/public/v1/smartphones/realme-5i-premium-edition-dual-sim-td-lte-v2-my-pk-64gb-rmx2030/score/index.json b/site/public/v1/smartphones/realme-5i-premium-edition-dual-sim-td-lte-v2-my-pk-64gb-rmx2030/score/index.json new file mode 100644 index 00000000000..e3b47d27ce7 --- /dev/null +++ b/site/public/v1/smartphones/realme-5i-premium-edition-dual-sim-td-lte-v2-my-pk-64gb-rmx2030/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-5i-standard-edition-dual-sim-td-lte-v1-id-vn-th-tr-32gb-rmx2030/index.json b/site/public/v1/smartphones/realme-5i-standard-edition-dual-sim-td-lte-v1-id-vn-th-tr-32gb-rmx2030/index.json new file mode 100644 index 00000000000..98dc8f839b6 --- /dev/null +++ b/site/public/v1/smartphones/realme-5i-standard-edition-dual-sim-td-lte-v1-id-vn-th-tr-32gb-rmx2030/index.json @@ -0,0 +1,77 @@ +{ + "id": 3128, + "slug": "realme-5i-standard-edition-dual-sim-td-lte-v1-id-vn-th-tr-32gb-rmx2030", + "name": "Realme 5i Standard Edition Dual SIM TD-LTE V1 ID VN TH TR 32GB RMX2030", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-01-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.554114", + "updated_at": "2026-06-19T00:43:44.554114" +} diff --git a/site/public/v1/smartphones/realme-5i-standard-edition-dual-sim-td-lte-v1-id-vn-th-tr-32gb-rmx2030/score/index.json b/site/public/v1/smartphones/realme-5i-standard-edition-dual-sim-td-lte-v1-id-vn-th-tr-32gb-rmx2030/score/index.json new file mode 100644 index 00000000000..e3b47d27ce7 --- /dev/null +++ b/site/public/v1/smartphones/realme-5i-standard-edition-dual-sim-td-lte-v1-id-vn-th-tr-32gb-rmx2030/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-5i-standard-edition-dual-sim-td-lte-v2-ph-64gb-rmx2030/index.json b/site/public/v1/smartphones/realme-5i-standard-edition-dual-sim-td-lte-v2-ph-64gb-rmx2030/index.json new file mode 100644 index 00000000000..71afbdca42a --- /dev/null +++ b/site/public/v1/smartphones/realme-5i-standard-edition-dual-sim-td-lte-v2-ph-64gb-rmx2030/index.json @@ -0,0 +1,77 @@ +{ + "id": 3129, + "slug": "realme-5i-standard-edition-dual-sim-td-lte-v2-ph-64gb-rmx2030", + "name": "Realme 5i Standard Edition Dual SIM TD-LTE V2 PH 64GB RMX2030", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-01-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.554114", + "updated_at": "2026-06-19T00:43:44.554114" +} diff --git a/site/public/v1/smartphones/realme-5i-standard-edition-dual-sim-td-lte-v2-ph-64gb-rmx2030/score/index.json b/site/public/v1/smartphones/realme-5i-standard-edition-dual-sim-td-lte-v2-ph-64gb-rmx2030/score/index.json new file mode 100644 index 00000000000..e3b47d27ce7 --- /dev/null +++ b/site/public/v1/smartphones/realme-5i-standard-edition-dual-sim-td-lte-v2-ph-64gb-rmx2030/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-5s-dual-sim-td-lte-v1-in-id-th-128gb-rmx1925/index.json b/site/public/v1/smartphones/realme-5s-dual-sim-td-lte-v1-in-id-th-128gb-rmx1925/index.json new file mode 100644 index 00000000000..7dac2b3d9aa --- /dev/null +++ b/site/public/v1/smartphones/realme-5s-dual-sim-td-lte-v1-in-id-th-128gb-rmx1925/index.json @@ -0,0 +1,76 @@ +{ + "id": 2918, + "slug": "realme-5s-dual-sim-td-lte-v1-in-id-th-128gb-rmx1925", + "name": "Realme 5s Dual SIM TD-LTE V1 IN ID TH 128GB RMX1925", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-12-12", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.523929", + "updated_at": "2026-06-19T00:43:44.523929" +} diff --git a/site/public/v1/smartphones/realme-5s-dual-sim-td-lte-v1-in-id-th-128gb-rmx1925/score/index.json b/site/public/v1/smartphones/realme-5s-dual-sim-td-lte-v1-in-id-th-128gb-rmx1925/score/index.json new file mode 100644 index 00000000000..99aee406377 --- /dev/null +++ b/site/public/v1/smartphones/realme-5s-dual-sim-td-lte-v1-in-id-th-128gb-rmx1925/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-5s-dual-sim-td-lte-v1-in-th-64gb-rmx1925/index.json b/site/public/v1/smartphones/realme-5s-dual-sim-td-lte-v1-in-th-64gb-rmx1925/index.json new file mode 100644 index 00000000000..8e9b300c566 --- /dev/null +++ b/site/public/v1/smartphones/realme-5s-dual-sim-td-lte-v1-in-th-64gb-rmx1925/index.json @@ -0,0 +1,76 @@ +{ + "id": 2919, + "slug": "realme-5s-dual-sim-td-lte-v1-in-th-64gb-rmx1925", + "name": "Realme 5s Dual SIM TD-LTE V1 IN TH 64GB RMX1925", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-12-12", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.523929", + "updated_at": "2026-06-19T00:43:44.523929" +} diff --git a/site/public/v1/smartphones/realme-5s-dual-sim-td-lte-v1-in-th-64gb-rmx1925/score/index.json b/site/public/v1/smartphones/realme-5s-dual-sim-td-lte-v1-in-th-64gb-rmx1925/score/index.json new file mode 100644 index 00000000000..99aee406377 --- /dev/null +++ b/site/public/v1/smartphones/realme-5s-dual-sim-td-lte-v1-in-th-64gb-rmx1925/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-6-premium-edition-dual-sim-td-lte-v1-in-id-sg-th-tr-128gb-rmx2001/index.json b/site/public/v1/smartphones/realme-6-premium-edition-dual-sim-td-lte-v1-in-id-sg-th-tr-128gb-rmx2001/index.json new file mode 100644 index 00000000000..a0f9feaf4da --- /dev/null +++ b/site/public/v1/smartphones/realme-6-premium-edition-dual-sim-td-lte-v1-in-id-sg-th-tr-128gb-rmx2001/index.json @@ -0,0 +1,77 @@ +{ + "id": 3130, + "slug": "realme-6-premium-edition-dual-sim-td-lte-v1-in-id-sg-th-tr-128gb-rmx2001", + "name": "Realme 6 Premium Edition Dual SIM TD-LTE V1 IN ID SG TH TR 128GB RMX2001", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 50, + "slug": "helio-g90", + "name": "Helio G90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 MC4", + "url": "/v1/socs/helio-g90" + }, + "release_date": "2020-03-11", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 3.0, + "camera": 21.7, + "battery": 22.3, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.554114", + "updated_at": "2026-06-19T00:43:44.554114" +} diff --git a/site/public/v1/smartphones/realme-6-premium-edition-dual-sim-td-lte-v1-in-id-sg-th-tr-128gb-rmx2001/score/index.json b/site/public/v1/smartphones/realme-6-premium-edition-dual-sim-td-lte-v1-in-id-sg-th-tr-128gb-rmx2001/score/index.json new file mode 100644 index 00000000000..8e7bb4d70f0 --- /dev/null +++ b/site/public/v1/smartphones/realme-6-premium-edition-dual-sim-td-lte-v1-in-id-sg-th-tr-128gb-rmx2001/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 3.0, + "camera": 21.7, + "battery": 22.3, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-6-premium-edition-dual-sim-td-lte-v1-it-pl-cz-128gb-rmx2001/index.json b/site/public/v1/smartphones/realme-6-premium-edition-dual-sim-td-lte-v1-it-pl-cz-128gb-rmx2001/index.json new file mode 100644 index 00000000000..923697cff9a --- /dev/null +++ b/site/public/v1/smartphones/realme-6-premium-edition-dual-sim-td-lte-v1-it-pl-cz-128gb-rmx2001/index.json @@ -0,0 +1,77 @@ +{ + "id": 3131, + "slug": "realme-6-premium-edition-dual-sim-td-lte-v1-it-pl-cz-128gb-rmx2001", + "name": "Realme 6 Premium Edition Dual SIM TD-LTE V1 IT PL CZ 128GB RMX2001", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 50, + "slug": "helio-g90", + "name": "Helio G90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 MC4", + "url": "/v1/socs/helio-g90" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 3.0, + "camera": 21.7, + "battery": 22.3, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.554114", + "updated_at": "2026-06-19T00:43:44.554114" +} diff --git a/site/public/v1/smartphones/realme-6-premium-edition-dual-sim-td-lte-v1-it-pl-cz-128gb-rmx2001/score/index.json b/site/public/v1/smartphones/realme-6-premium-edition-dual-sim-td-lte-v1-it-pl-cz-128gb-rmx2001/score/index.json new file mode 100644 index 00000000000..8e7bb4d70f0 --- /dev/null +++ b/site/public/v1/smartphones/realme-6-premium-edition-dual-sim-td-lte-v1-it-pl-cz-128gb-rmx2001/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 3.0, + "camera": 21.7, + "battery": 22.3, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-6-premium-edition-dual-sim-td-lte-v2-my-ph-sg-128gb-rmx2001/index.json b/site/public/v1/smartphones/realme-6-premium-edition-dual-sim-td-lte-v2-my-ph-sg-128gb-rmx2001/index.json new file mode 100644 index 00000000000..eeb05079848 --- /dev/null +++ b/site/public/v1/smartphones/realme-6-premium-edition-dual-sim-td-lte-v2-my-ph-sg-128gb-rmx2001/index.json @@ -0,0 +1,77 @@ +{ + "id": 3132, + "slug": "realme-6-premium-edition-dual-sim-td-lte-v2-my-ph-sg-128gb-rmx2001", + "name": "Realme 6 Premium Edition Dual SIM TD-LTE V2 MY PH SG 128GB RMX2001", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 50, + "slug": "helio-g90", + "name": "Helio G90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 MC4", + "url": "/v1/socs/helio-g90" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 3.0, + "camera": 21.7, + "battery": 22.3, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.554114", + "updated_at": "2026-06-19T00:43:44.554114" +} diff --git a/site/public/v1/smartphones/realme-6-premium-edition-dual-sim-td-lte-v2-my-ph-sg-128gb-rmx2001/score/index.json b/site/public/v1/smartphones/realme-6-premium-edition-dual-sim-td-lte-v2-my-ph-sg-128gb-rmx2001/score/index.json new file mode 100644 index 00000000000..8e7bb4d70f0 --- /dev/null +++ b/site/public/v1/smartphones/realme-6-premium-edition-dual-sim-td-lte-v2-my-ph-sg-128gb-rmx2001/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 3.0, + "camera": 21.7, + "battery": 22.3, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-6-premium-edition-dual-sim-td-lte-v4-ru-128gb-rmx2001/index.json b/site/public/v1/smartphones/realme-6-premium-edition-dual-sim-td-lte-v4-ru-128gb-rmx2001/index.json new file mode 100644 index 00000000000..9b3507fa466 --- /dev/null +++ b/site/public/v1/smartphones/realme-6-premium-edition-dual-sim-td-lte-v4-ru-128gb-rmx2001/index.json @@ -0,0 +1,77 @@ +{ + "id": 3133, + "slug": "realme-6-premium-edition-dual-sim-td-lte-v4-ru-128gb-rmx2001", + "name": "Realme 6 Premium Edition Dual SIM TD-LTE V4 RU 128GB RMX2001", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 50, + "slug": "helio-g90", + "name": "Helio G90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 MC4", + "url": "/v1/socs/helio-g90" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 3.0, + "camera": 21.7, + "battery": 22.3, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.554114", + "updated_at": "2026-06-19T00:43:44.554114" +} diff --git a/site/public/v1/smartphones/realme-6-premium-edition-dual-sim-td-lte-v4-ru-128gb-rmx2001/score/index.json b/site/public/v1/smartphones/realme-6-premium-edition-dual-sim-td-lte-v4-ru-128gb-rmx2001/score/index.json new file mode 100644 index 00000000000..8e7bb4d70f0 --- /dev/null +++ b/site/public/v1/smartphones/realme-6-premium-edition-dual-sim-td-lte-v4-ru-128gb-rmx2001/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 3.0, + "camera": 21.7, + "battery": 22.3, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-6-premium-edition-global-dual-sim-td-lte-v3-128gb-rmx2001/index.json b/site/public/v1/smartphones/realme-6-premium-edition-global-dual-sim-td-lte-v3-128gb-rmx2001/index.json new file mode 100644 index 00000000000..d5a90dd0f65 --- /dev/null +++ b/site/public/v1/smartphones/realme-6-premium-edition-global-dual-sim-td-lte-v3-128gb-rmx2001/index.json @@ -0,0 +1,77 @@ +{ + "id": 3134, + "slug": "realme-6-premium-edition-global-dual-sim-td-lte-v3-128gb-rmx2001", + "name": "Realme 6 Premium Edition Global Dual SIM TD-LTE V3 128GB RMX2001", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 50, + "slug": "helio-g90", + "name": "Helio G90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 MC4", + "url": "/v1/socs/helio-g90" + }, + "release_date": "2020-03-11", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 3.0, + "camera": 21.7, + "battery": 22.3, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.554114", + "updated_at": "2026-06-19T00:43:44.554114" +} diff --git a/site/public/v1/smartphones/realme-6-premium-edition-global-dual-sim-td-lte-v3-128gb-rmx2001/score/index.json b/site/public/v1/smartphones/realme-6-premium-edition-global-dual-sim-td-lte-v3-128gb-rmx2001/score/index.json new file mode 100644 index 00000000000..8e7bb4d70f0 --- /dev/null +++ b/site/public/v1/smartphones/realme-6-premium-edition-global-dual-sim-td-lte-v3-128gb-rmx2001/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 3.0, + "camera": 21.7, + "battery": 22.3, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v1-in-64gb-rmx2001/index.json b/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v1-in-64gb-rmx2001/index.json new file mode 100644 index 00000000000..58f19113755 --- /dev/null +++ b/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v1-in-64gb-rmx2001/index.json @@ -0,0 +1,77 @@ +{ + "id": 3135, + "slug": "realme-6-standard-edition-dual-sim-td-lte-v1-in-64gb-rmx2001", + "name": "Realme 6 Standard Edition Dual SIM TD-LTE V1 IN 64GB RMX2001", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 50, + "slug": "helio-g90", + "name": "Helio G90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 MC4", + "url": "/v1/socs/helio-g90" + }, + "release_date": "2020-03-11", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 0.0, + "camera": 21.7, + "battery": 22.3, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.554114", + "updated_at": "2026-06-19T00:43:44.554114" +} diff --git a/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v1-in-64gb-rmx2001/score/index.json b/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v1-in-64gb-rmx2001/score/index.json new file mode 100644 index 00000000000..e08f123d672 --- /dev/null +++ b/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v1-in-64gb-rmx2001/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 0.0, + "camera": 21.7, + "battery": 22.3, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v1-in-id-sg-th-tr-128gb-rmx2001/index.json b/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v1-in-id-sg-th-tr-128gb-rmx2001/index.json new file mode 100644 index 00000000000..a799c0149c8 --- /dev/null +++ b/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v1-in-id-sg-th-tr-128gb-rmx2001/index.json @@ -0,0 +1,77 @@ +{ + "id": 3136, + "slug": "realme-6-standard-edition-dual-sim-td-lte-v1-in-id-sg-th-tr-128gb-rmx2001", + "name": "Realme 6 Standard Edition Dual SIM TD-LTE V1 IN ID SG TH TR 128GB RMX2001", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 50, + "slug": "helio-g90", + "name": "Helio G90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 MC4", + "url": "/v1/socs/helio-g90" + }, + "release_date": "2020-03-11", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.5, + "performance": 1.5, + "camera": 21.7, + "battery": 22.3, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.554114", + "updated_at": "2026-06-19T00:43:44.554114" +} diff --git a/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v1-in-id-sg-th-tr-128gb-rmx2001/score/index.json b/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v1-in-id-sg-th-tr-128gb-rmx2001/score/index.json new file mode 100644 index 00000000000..8862db4a1f6 --- /dev/null +++ b/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v1-in-id-sg-th-tr-128gb-rmx2001/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.5, + "performance": 1.5, + "camera": 21.7, + "battery": 22.3, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v1-it-pl-cz-128gb-rmx2001/index.json b/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v1-it-pl-cz-128gb-rmx2001/index.json new file mode 100644 index 00000000000..76ae9227ccd --- /dev/null +++ b/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v1-it-pl-cz-128gb-rmx2001/index.json @@ -0,0 +1,77 @@ +{ + "id": 3137, + "slug": "realme-6-standard-edition-dual-sim-td-lte-v1-it-pl-cz-128gb-rmx2001", + "name": "Realme 6 Standard Edition Dual SIM TD-LTE V1 IT PL CZ 128GB RMX2001", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 50, + "slug": "helio-g90", + "name": "Helio G90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 MC4", + "url": "/v1/socs/helio-g90" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 0.0, + "camera": 21.7, + "battery": 22.3, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.555113", + "updated_at": "2026-06-19T00:43:44.555113" +} diff --git a/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v1-it-pl-cz-128gb-rmx2001/score/index.json b/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v1-it-pl-cz-128gb-rmx2001/score/index.json new file mode 100644 index 00000000000..e08f123d672 --- /dev/null +++ b/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v1-it-pl-cz-128gb-rmx2001/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 0.0, + "camera": 21.7, + "battery": 22.3, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v1-it-pl-cz-64gb-rmx2001/index.json b/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v1-it-pl-cz-64gb-rmx2001/index.json new file mode 100644 index 00000000000..741f5bb9e8d --- /dev/null +++ b/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v1-it-pl-cz-64gb-rmx2001/index.json @@ -0,0 +1,77 @@ +{ + "id": 3138, + "slug": "realme-6-standard-edition-dual-sim-td-lte-v1-it-pl-cz-64gb-rmx2001", + "name": "Realme 6 Standard Edition Dual SIM TD-LTE V1 IT PL CZ 64GB RMX2001", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 50, + "slug": "helio-g90", + "name": "Helio G90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 MC4", + "url": "/v1/socs/helio-g90" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 0.0, + "camera": 21.7, + "battery": 22.3, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.555113", + "updated_at": "2026-06-19T00:43:44.555113" +} diff --git a/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v1-it-pl-cz-64gb-rmx2001/score/index.json b/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v1-it-pl-cz-64gb-rmx2001/score/index.json new file mode 100644 index 00000000000..e08f123d672 --- /dev/null +++ b/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v1-it-pl-cz-64gb-rmx2001/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 0.0, + "camera": 21.7, + "battery": 22.3, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v2-my-ph-sg-128gb-rmx2001/index.json b/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v2-my-ph-sg-128gb-rmx2001/index.json new file mode 100644 index 00000000000..f3fc4e89d1f --- /dev/null +++ b/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v2-my-ph-sg-128gb-rmx2001/index.json @@ -0,0 +1,77 @@ +{ + "id": 3139, + "slug": "realme-6-standard-edition-dual-sim-td-lte-v2-my-ph-sg-128gb-rmx2001", + "name": "Realme 6 Standard Edition Dual SIM TD-LTE V2 MY PH SG 128GB RMX2001", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 50, + "slug": "helio-g90", + "name": "Helio G90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 MC4", + "url": "/v1/socs/helio-g90" + }, + "release_date": "2020-03-11", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.5, + "performance": 1.5, + "camera": 21.7, + "battery": 22.3, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.555113", + "updated_at": "2026-06-19T00:43:44.555113" +} diff --git a/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v2-my-ph-sg-128gb-rmx2001/score/index.json b/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v2-my-ph-sg-128gb-rmx2001/score/index.json new file mode 100644 index 00000000000..8862db4a1f6 --- /dev/null +++ b/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v2-my-ph-sg-128gb-rmx2001/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.5, + "performance": 1.5, + "camera": 21.7, + "battery": 22.3, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v4-ru-128gb-rmx2001/index.json b/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v4-ru-128gb-rmx2001/index.json new file mode 100644 index 00000000000..5453e960c33 --- /dev/null +++ b/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v4-ru-128gb-rmx2001/index.json @@ -0,0 +1,77 @@ +{ + "id": 3140, + "slug": "realme-6-standard-edition-dual-sim-td-lte-v4-ru-128gb-rmx2001", + "name": "Realme 6 Standard Edition Dual SIM TD-LTE V4 RU 128GB RMX2001", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 50, + "slug": "helio-g90", + "name": "Helio G90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 MC4", + "url": "/v1/socs/helio-g90" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 0.0, + "camera": 21.7, + "battery": 22.3, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.555113", + "updated_at": "2026-06-19T00:43:44.555113" +} diff --git a/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v4-ru-128gb-rmx2001/score/index.json b/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v4-ru-128gb-rmx2001/score/index.json new file mode 100644 index 00000000000..e08f123d672 --- /dev/null +++ b/site/public/v1/smartphones/realme-6-standard-edition-dual-sim-td-lte-v4-ru-128gb-rmx2001/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 0.0, + "camera": 21.7, + "battery": 22.3, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-6-standard-edition-global-dual-sim-td-lte-v3-128gb-rmx2001/index.json b/site/public/v1/smartphones/realme-6-standard-edition-global-dual-sim-td-lte-v3-128gb-rmx2001/index.json new file mode 100644 index 00000000000..d2cb4e1e44d --- /dev/null +++ b/site/public/v1/smartphones/realme-6-standard-edition-global-dual-sim-td-lte-v3-128gb-rmx2001/index.json @@ -0,0 +1,77 @@ +{ + "id": 3141, + "slug": "realme-6-standard-edition-global-dual-sim-td-lte-v3-128gb-rmx2001", + "name": "Realme 6 Standard Edition Global Dual SIM TD-LTE V3 128GB RMX2001", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 50, + "slug": "helio-g90", + "name": "Helio G90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 MC4", + "url": "/v1/socs/helio-g90" + }, + "release_date": "2020-03-11", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 0.0, + "camera": 21.7, + "battery": 22.3, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.555113", + "updated_at": "2026-06-19T00:43:44.555113" +} diff --git a/site/public/v1/smartphones/realme-6-standard-edition-global-dual-sim-td-lte-v3-128gb-rmx2001/score/index.json b/site/public/v1/smartphones/realme-6-standard-edition-global-dual-sim-td-lte-v3-128gb-rmx2001/score/index.json new file mode 100644 index 00000000000..e08f123d672 --- /dev/null +++ b/site/public/v1/smartphones/realme-6-standard-edition-global-dual-sim-td-lte-v3-128gb-rmx2001/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 0.0, + "camera": 21.7, + "battery": 22.3, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-6-standard-edition-global-dual-sim-td-lte-v3-64gb-rmx2001/index.json b/site/public/v1/smartphones/realme-6-standard-edition-global-dual-sim-td-lte-v3-64gb-rmx2001/index.json new file mode 100644 index 00000000000..576257b6174 --- /dev/null +++ b/site/public/v1/smartphones/realme-6-standard-edition-global-dual-sim-td-lte-v3-64gb-rmx2001/index.json @@ -0,0 +1,77 @@ +{ + "id": 3142, + "slug": "realme-6-standard-edition-global-dual-sim-td-lte-v3-64gb-rmx2001", + "name": "Realme 6 Standard Edition Global Dual SIM TD-LTE V3 64GB RMX2001", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 50, + "slug": "helio-g90", + "name": "Helio G90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 MC4", + "url": "/v1/socs/helio-g90" + }, + "release_date": "2020-03-11", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 0.0, + "camera": 21.7, + "battery": 22.3, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.555113", + "updated_at": "2026-06-19T00:43:44.555113" +} diff --git a/site/public/v1/smartphones/realme-6-standard-edition-global-dual-sim-td-lte-v3-64gb-rmx2001/score/index.json b/site/public/v1/smartphones/realme-6-standard-edition-global-dual-sim-td-lte-v3-64gb-rmx2001/score/index.json new file mode 100644 index 00000000000..e08f123d672 --- /dev/null +++ b/site/public/v1/smartphones/realme-6-standard-edition-global-dual-sim-td-lte-v3-64gb-rmx2001/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 0.0, + "camera": 21.7, + "battery": 22.3, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v1-pl-128gb-rmx2040/index.json b/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v1-pl-128gb-rmx2040/index.json new file mode 100644 index 00000000000..bd762575cdc --- /dev/null +++ b/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v1-pl-128gb-rmx2040/index.json @@ -0,0 +1,77 @@ +{ + "id": 3143, + "slug": "realme-6i-dual-sim-td-lte-v1-pl-128gb-rmx2040", + "name": "Realme 6i Dual SIM TD-LTE V1 PL 128GB RMX2040", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.555113", + "updated_at": "2026-06-19T00:43:44.555113" +} diff --git a/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v1-pl-128gb-rmx2040/score/index.json b/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v1-pl-128gb-rmx2040/score/index.json new file mode 100644 index 00000000000..f0a51b68d56 --- /dev/null +++ b/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v1-pl-128gb-rmx2040/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v1-th-pk-tr-128gb-rmx2040/index.json b/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v1-th-pk-tr-128gb-rmx2040/index.json new file mode 100644 index 00000000000..c2d239d6922 --- /dev/null +++ b/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v1-th-pk-tr-128gb-rmx2040/index.json @@ -0,0 +1,77 @@ +{ + "id": 3144, + "slug": "realme-6i-dual-sim-td-lte-v1-th-pk-tr-128gb-rmx2040", + "name": "Realme 6i Dual SIM TD-LTE V1 TH PK TR 128GB RMX2040", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.555113", + "updated_at": "2026-06-19T00:43:44.555113" +} diff --git a/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v1-th-pk-tr-128gb-rmx2040/score/index.json b/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v1-th-pk-tr-128gb-rmx2040/score/index.json new file mode 100644 index 00000000000..f0a51b68d56 --- /dev/null +++ b/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v1-th-pk-tr-128gb-rmx2040/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v1-th-pk-tr-64gb-rmx2040/index.json b/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v1-th-pk-tr-64gb-rmx2040/index.json new file mode 100644 index 00000000000..45f8f382cd4 --- /dev/null +++ b/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v1-th-pk-tr-64gb-rmx2040/index.json @@ -0,0 +1,77 @@ +{ + "id": 3145, + "slug": "realme-6i-dual-sim-td-lte-v1-th-pk-tr-64gb-rmx2040", + "name": "Realme 6i Dual SIM TD-LTE V1 TH PK TR 64GB RMX2040", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.556126", + "updated_at": "2026-06-19T00:43:44.556126" +} diff --git a/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v1-th-pk-tr-64gb-rmx2040/score/index.json b/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v1-th-pk-tr-64gb-rmx2040/score/index.json new file mode 100644 index 00000000000..f0a51b68d56 --- /dev/null +++ b/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v1-th-pk-tr-64gb-rmx2040/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v2-ph-my-sg-128gb-rmx2040/index.json b/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v2-ph-my-sg-128gb-rmx2040/index.json new file mode 100644 index 00000000000..0325943d7c4 --- /dev/null +++ b/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v2-ph-my-sg-128gb-rmx2040/index.json @@ -0,0 +1,77 @@ +{ + "id": 3146, + "slug": "realme-6i-dual-sim-td-lte-v2-ph-my-sg-128gb-rmx2040", + "name": "Realme 6i Dual SIM TD-LTE V2 PH MY SG 128GB RMX2040", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.556126", + "updated_at": "2026-06-19T00:43:44.556126" +} diff --git a/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v2-ph-my-sg-128gb-rmx2040/score/index.json b/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v2-ph-my-sg-128gb-rmx2040/score/index.json new file mode 100644 index 00000000000..f0a51b68d56 --- /dev/null +++ b/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v2-ph-my-sg-128gb-rmx2040/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v2-ph-my-sg-64gb-rmx2040/index.json b/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v2-ph-my-sg-64gb-rmx2040/index.json new file mode 100644 index 00000000000..73e1f4e6849 --- /dev/null +++ b/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v2-ph-my-sg-64gb-rmx2040/index.json @@ -0,0 +1,77 @@ +{ + "id": 3147, + "slug": "realme-6i-dual-sim-td-lte-v2-ph-my-sg-64gb-rmx2040", + "name": "Realme 6i Dual SIM TD-LTE V2 PH MY SG 64GB RMX2040", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.556126", + "updated_at": "2026-06-19T00:43:44.556126" +} diff --git a/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v2-ph-my-sg-64gb-rmx2040/score/index.json b/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v2-ph-my-sg-64gb-rmx2040/score/index.json new file mode 100644 index 00000000000..f0a51b68d56 --- /dev/null +++ b/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v2-ph-my-sg-64gb-rmx2040/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v2-ru-128gb-rmx2040/index.json b/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v2-ru-128gb-rmx2040/index.json new file mode 100644 index 00000000000..ebf58d04dc4 --- /dev/null +++ b/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v2-ru-128gb-rmx2040/index.json @@ -0,0 +1,77 @@ +{ + "id": 3148, + "slug": "realme-6i-dual-sim-td-lte-v2-ru-128gb-rmx2040", + "name": "Realme 6i Dual SIM TD-LTE V2 RU 128GB RMX2040", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.556126", + "updated_at": "2026-06-19T00:43:44.556126" +} diff --git a/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v2-ru-128gb-rmx2040/score/index.json b/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v2-ru-128gb-rmx2040/score/index.json new file mode 100644 index 00000000000..f0a51b68d56 --- /dev/null +++ b/site/public/v1/smartphones/realme-6i-dual-sim-td-lte-v2-ru-128gb-rmx2040/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-6i-global-dual-sim-td-lte-v3-128gb-rmx2040/index.json b/site/public/v1/smartphones/realme-6i-global-dual-sim-td-lte-v3-128gb-rmx2040/index.json new file mode 100644 index 00000000000..0fd34a41ca6 --- /dev/null +++ b/site/public/v1/smartphones/realme-6i-global-dual-sim-td-lte-v3-128gb-rmx2040/index.json @@ -0,0 +1,77 @@ +{ + "id": 3149, + "slug": "realme-6i-global-dual-sim-td-lte-v3-128gb-rmx2040", + "name": "Realme 6i Global Dual SIM TD-LTE V3 128GB RMX2040", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.556126", + "updated_at": "2026-06-19T00:43:44.556126" +} diff --git a/site/public/v1/smartphones/realme-6i-global-dual-sim-td-lte-v3-128gb-rmx2040/score/index.json b/site/public/v1/smartphones/realme-6i-global-dual-sim-td-lte-v3-128gb-rmx2040/score/index.json new file mode 100644 index 00000000000..f0a51b68d56 --- /dev/null +++ b/site/public/v1/smartphones/realme-6i-global-dual-sim-td-lte-v3-128gb-rmx2040/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-6s-global-dual-sim-td-lte-v3-64gb-rmx2002/index.json b/site/public/v1/smartphones/realme-6s-global-dual-sim-td-lte-v3-64gb-rmx2002/index.json new file mode 100644 index 00000000000..462eddb53ed --- /dev/null +++ b/site/public/v1/smartphones/realme-6s-global-dual-sim-td-lte-v3-64gb-rmx2002/index.json @@ -0,0 +1,77 @@ +{ + "id": 3150, + "slug": "realme-6s-global-dual-sim-td-lte-v3-64gb-rmx2002", + "name": "Realme 6s Global Dual SIM TD-LTE V3 64GB RMX2002", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 50, + "slug": "helio-g90", + "name": "Helio G90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 MC4", + "url": "/v1/socs/helio-g90" + }, + "release_date": "2020-06-16", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 0.0, + "camera": 16.5, + "battery": 22.3, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.556126", + "updated_at": "2026-06-19T00:43:44.556126" +} diff --git a/site/public/v1/smartphones/realme-6s-global-dual-sim-td-lte-v3-64gb-rmx2002/score/index.json b/site/public/v1/smartphones/realme-6s-global-dual-sim-td-lte-v3-64gb-rmx2002/score/index.json new file mode 100644 index 00000000000..363e316c73b --- /dev/null +++ b/site/public/v1/smartphones/realme-6s-global-dual-sim-td-lte-v3-64gb-rmx2002/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 0.0, + "camera": 16.5, + "battery": 22.3, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-7-5g-global-dual-sim-td-lte-128gb-rmx2111/index.json b/site/public/v1/smartphones/realme-7-5g-global-dual-sim-td-lte-128gb-rmx2111/index.json new file mode 100644 index 00000000000..3ad69de20fb --- /dev/null +++ b/site/public/v1/smartphones/realme-7-5g-global-dual-sim-td-lte-128gb-rmx2111/index.json @@ -0,0 +1,77 @@ +{ + "id": 3151, + "slug": "realme-7-5g-global-dual-sim-td-lte-128gb-rmx2111", + "name": "Realme 7 5G Global Dual SIM TD-LTE 128GB RMX2111", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2020-11-21", + "msrp_usd": 279, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.0, + "performance": 1.5, + "camera": 16.5, + "battery": 32.9, + "display": 53.0, + "value": 63.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.556126", + "updated_at": "2026-06-19T00:43:44.556126" +} diff --git a/site/public/v1/smartphones/realme-7-5g-global-dual-sim-td-lte-128gb-rmx2111/score/index.json b/site/public/v1/smartphones/realme-7-5g-global-dual-sim-td-lte-128gb-rmx2111/score/index.json new file mode 100644 index 00000000000..3a4ab95f7ac --- /dev/null +++ b/site/public/v1/smartphones/realme-7-5g-global-dual-sim-td-lte-128gb-rmx2111/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.0, + "performance": 1.5, + "camera": 16.5, + "battery": 32.9, + "display": 53.0, + "value": 63.0 +} diff --git a/site/public/v1/smartphones/realme-7-dual-sim-td-lte-v1-in-64gb-rmx2151/index.json b/site/public/v1/smartphones/realme-7-dual-sim-td-lte-v1-in-64gb-rmx2151/index.json new file mode 100644 index 00000000000..b1a3895e714 --- /dev/null +++ b/site/public/v1/smartphones/realme-7-dual-sim-td-lte-v1-in-64gb-rmx2151/index.json @@ -0,0 +1,77 @@ +{ + "id": 3152, + "slug": "realme-7-dual-sim-td-lte-v1-in-64gb-rmx2151", + "name": "Realme 7 Dual SIM TD-LTE V1 IN 64GB RMX2151", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 64, + "slug": "helio-g95", + "name": "Helio G95", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 3EEMC4", + "url": "/v1/socs/helio-g95" + }, + "release_date": "2020-10-12", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 196.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 1.5, + "camera": 21.5, + "battery": 32.9, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.556126", + "updated_at": "2026-06-19T00:43:44.556126" +} diff --git a/site/public/v1/smartphones/realme-7-dual-sim-td-lte-v1-in-64gb-rmx2151/score/index.json b/site/public/v1/smartphones/realme-7-dual-sim-td-lte-v1-in-64gb-rmx2151/score/index.json new file mode 100644 index 00000000000..7e7803fa753 --- /dev/null +++ b/site/public/v1/smartphones/realme-7-dual-sim-td-lte-v1-in-64gb-rmx2151/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 1.5, + "camera": 21.5, + "battery": 32.9, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-7-dual-sim-td-lte-v1-in-vn-ph-tr-128gb-rmx2151/index.json b/site/public/v1/smartphones/realme-7-dual-sim-td-lte-v1-in-vn-ph-tr-128gb-rmx2151/index.json new file mode 100644 index 00000000000..b2118217cd6 --- /dev/null +++ b/site/public/v1/smartphones/realme-7-dual-sim-td-lte-v1-in-vn-ph-tr-128gb-rmx2151/index.json @@ -0,0 +1,77 @@ +{ + "id": 3153, + "slug": "realme-7-dual-sim-td-lte-v1-in-vn-ph-tr-128gb-rmx2151", + "name": "Realme 7 Dual SIM TD-LTE V1 IN VN PH TR 128GB RMX2151", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 64, + "slug": "helio-g95", + "name": "Helio G95", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 3EEMC4", + "url": "/v1/socs/helio-g95" + }, + "release_date": "2020-10-12", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 196.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 3.0, + "camera": 21.5, + "battery": 32.9, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.556126", + "updated_at": "2026-06-19T00:43:44.556126" +} diff --git a/site/public/v1/smartphones/realme-7-dual-sim-td-lte-v1-in-vn-ph-tr-128gb-rmx2151/score/index.json b/site/public/v1/smartphones/realme-7-dual-sim-td-lte-v1-in-vn-ph-tr-128gb-rmx2151/score/index.json new file mode 100644 index 00000000000..d8383194b66 --- /dev/null +++ b/site/public/v1/smartphones/realme-7-dual-sim-td-lte-v1-in-vn-ph-tr-128gb-rmx2151/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 3.0, + "camera": 21.5, + "battery": 32.9, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-7-dual-sim-td-lte-v2-my-128gb-rmx2151/index.json b/site/public/v1/smartphones/realme-7-dual-sim-td-lte-v2-my-128gb-rmx2151/index.json new file mode 100644 index 00000000000..96e6ee971b4 --- /dev/null +++ b/site/public/v1/smartphones/realme-7-dual-sim-td-lte-v2-my-128gb-rmx2151/index.json @@ -0,0 +1,77 @@ +{ + "id": 3154, + "slug": "realme-7-dual-sim-td-lte-v2-my-128gb-rmx2151", + "name": "Realme 7 Dual SIM TD-LTE V2 MY 128GB RMX2151", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 64, + "slug": "helio-g95", + "name": "Helio G95", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 3EEMC4", + "url": "/v1/socs/helio-g95" + }, + "release_date": "2020-10-12", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 196.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 3.0, + "camera": 21.5, + "battery": 32.9, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.557114", + "updated_at": "2026-06-19T00:43:44.557114" +} diff --git a/site/public/v1/smartphones/realme-7-dual-sim-td-lte-v2-my-128gb-rmx2151/score/index.json b/site/public/v1/smartphones/realme-7-dual-sim-td-lte-v2-my-128gb-rmx2151/score/index.json new file mode 100644 index 00000000000..d8383194b66 --- /dev/null +++ b/site/public/v1/smartphones/realme-7-dual-sim-td-lte-v2-my-128gb-rmx2151/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 3.0, + "camera": 21.5, + "battery": 32.9, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-7-nfc-dual-sim-td-lte-v1-id-128gb-rmx2155/index.json b/site/public/v1/smartphones/realme-7-nfc-dual-sim-td-lte-v1-id-128gb-rmx2155/index.json new file mode 100644 index 00000000000..39f3ff482db --- /dev/null +++ b/site/public/v1/smartphones/realme-7-nfc-dual-sim-td-lte-v1-id-128gb-rmx2155/index.json @@ -0,0 +1,77 @@ +{ + "id": 3155, + "slug": "realme-7-nfc-dual-sim-td-lte-v1-id-128gb-rmx2155", + "name": "Realme 7 NFC Dual SIM TD-LTE V1 ID 128GB RMX2155", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 64, + "slug": "helio-g95", + "name": "Helio G95", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 3EEMC4", + "url": "/v1/socs/helio-g95" + }, + "release_date": "2020-09-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 196.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 3.0, + "camera": 21.5, + "battery": 32.9, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.557114", + "updated_at": "2026-06-19T00:43:44.557114" +} diff --git a/site/public/v1/smartphones/realme-7-nfc-dual-sim-td-lte-v1-id-128gb-rmx2155/score/index.json b/site/public/v1/smartphones/realme-7-nfc-dual-sim-td-lte-v1-id-128gb-rmx2155/score/index.json new file mode 100644 index 00000000000..d8383194b66 --- /dev/null +++ b/site/public/v1/smartphones/realme-7-nfc-dual-sim-td-lte-v1-id-128gb-rmx2155/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 3.0, + "camera": 21.5, + "battery": 32.9, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-7-nfc-dual-sim-td-lte-v2-latam-128gb-rmx2155/index.json b/site/public/v1/smartphones/realme-7-nfc-dual-sim-td-lte-v2-latam-128gb-rmx2155/index.json new file mode 100644 index 00000000000..d5f9979868d --- /dev/null +++ b/site/public/v1/smartphones/realme-7-nfc-dual-sim-td-lte-v2-latam-128gb-rmx2155/index.json @@ -0,0 +1,77 @@ +{ + "id": 3156, + "slug": "realme-7-nfc-dual-sim-td-lte-v2-latam-128gb-rmx2155", + "name": "Realme 7 NFC Dual SIM TD-LTE V2 LATAM 128GB RMX2155", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 64, + "slug": "helio-g95", + "name": "Helio G95", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 3EEMC4", + "url": "/v1/socs/helio-g95" + }, + "release_date": "2020-10-12", + "msrp_usd": 2299, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 196.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 3.0, + "camera": 21.5, + "battery": 32.9, + "display": 40.5, + "value": 12.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.557114", + "updated_at": "2026-06-19T00:43:44.557114" +} diff --git a/site/public/v1/smartphones/realme-7-nfc-dual-sim-td-lte-v2-latam-128gb-rmx2155/score/index.json b/site/public/v1/smartphones/realme-7-nfc-dual-sim-td-lte-v2-latam-128gb-rmx2155/score/index.json new file mode 100644 index 00000000000..204949a2a61 --- /dev/null +++ b/site/public/v1/smartphones/realme-7-nfc-dual-sim-td-lte-v2-latam-128gb-rmx2155/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 3.0, + "camera": 21.5, + "battery": 32.9, + "display": 40.5, + "value": 12.2 +} diff --git a/site/public/v1/smartphones/realme-7-nfc-premium-edition-dual-sim-td-lte-v3-eu-64gb-rmx2155/index.json b/site/public/v1/smartphones/realme-7-nfc-premium-edition-dual-sim-td-lte-v3-eu-64gb-rmx2155/index.json new file mode 100644 index 00000000000..8471f344060 --- /dev/null +++ b/site/public/v1/smartphones/realme-7-nfc-premium-edition-dual-sim-td-lte-v3-eu-64gb-rmx2155/index.json @@ -0,0 +1,77 @@ +{ + "id": 3157, + "slug": "realme-7-nfc-premium-edition-dual-sim-td-lte-v3-eu-64gb-rmx2155", + "name": "Realme 7 NFC Premium Edition Dual SIM TD-LTE V3 EU 64GB RMX2155", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 64, + "slug": "helio-g95", + "name": "Helio G95", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 3EEMC4", + "url": "/v1/socs/helio-g95" + }, + "release_date": "2020-10-12", + "msrp_usd": 199, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 196.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 1.5, + "camera": 21.5, + "battery": 32.9, + "display": 40.5, + "value": 62.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.557114", + "updated_at": "2026-06-19T00:43:44.557114" +} diff --git a/site/public/v1/smartphones/realme-7-nfc-premium-edition-dual-sim-td-lte-v3-eu-64gb-rmx2155/score/index.json b/site/public/v1/smartphones/realme-7-nfc-premium-edition-dual-sim-td-lte-v3-eu-64gb-rmx2155/score/index.json new file mode 100644 index 00000000000..3ee19cb7ba1 --- /dev/null +++ b/site/public/v1/smartphones/realme-7-nfc-premium-edition-dual-sim-td-lte-v3-eu-64gb-rmx2155/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 1.5, + "camera": 21.5, + "battery": 32.9, + "display": 40.5, + "value": 62.0 +} diff --git a/site/public/v1/smartphones/realme-7-nfc-standard-edition-dual-sim-td-lte-v3-eu-64gb-rmx2155/index.json b/site/public/v1/smartphones/realme-7-nfc-standard-edition-dual-sim-td-lte-v3-eu-64gb-rmx2155/index.json new file mode 100644 index 00000000000..181304a32ed --- /dev/null +++ b/site/public/v1/smartphones/realme-7-nfc-standard-edition-dual-sim-td-lte-v3-eu-64gb-rmx2155/index.json @@ -0,0 +1,77 @@ +{ + "id": 3158, + "slug": "realme-7-nfc-standard-edition-dual-sim-td-lte-v3-eu-64gb-rmx2155", + "name": "Realme 7 NFC Standard Edition Dual SIM TD-LTE V3 EU 64GB RMX2155", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 64, + "slug": "helio-g95", + "name": "Helio G95", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 3EEMC4", + "url": "/v1/socs/helio-g95" + }, + "release_date": "2020-10-12", + "msrp_usd": 179, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 196.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.7, + "performance": 0.0, + "camera": 21.5, + "battery": 32.9, + "display": 40.5, + "value": 61.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.557114", + "updated_at": "2026-06-19T00:43:44.557114" +} diff --git a/site/public/v1/smartphones/realme-7-nfc-standard-edition-dual-sim-td-lte-v3-eu-64gb-rmx2155/score/index.json b/site/public/v1/smartphones/realme-7-nfc-standard-edition-dual-sim-td-lte-v3-eu-64gb-rmx2155/score/index.json new file mode 100644 index 00000000000..db0dcfb0536 --- /dev/null +++ b/site/public/v1/smartphones/realme-7-nfc-standard-edition-dual-sim-td-lte-v3-eu-64gb-rmx2155/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.7, + "performance": 0.0, + "camera": 21.5, + "battery": 32.9, + "display": 40.5, + "value": 61.9 +} diff --git a/site/public/v1/smartphones/realme-7i-dual-sim-td-lte-v1-id-128gb-rmx2103/index.json b/site/public/v1/smartphones/realme-7i-dual-sim-td-lte-v1-id-128gb-rmx2103/index.json new file mode 100644 index 00000000000..0c8c220fee5 --- /dev/null +++ b/site/public/v1/smartphones/realme-7i-dual-sim-td-lte-v1-id-128gb-rmx2103/index.json @@ -0,0 +1,77 @@ +{ + "id": 3159, + "slug": "realme-7i-dual-sim-td-lte-v1-id-128gb-rmx2103", + "name": "Realme 7i Dual SIM TD-LTE V1 ID 128GB RMX2103", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2020-10-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 3.0, + "camera": 21.7, + "battery": 30.6, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.557114", + "updated_at": "2026-06-19T00:43:44.557114" +} diff --git a/site/public/v1/smartphones/realme-7i-dual-sim-td-lte-v1-id-128gb-rmx2103/score/index.json b/site/public/v1/smartphones/realme-7i-dual-sim-td-lte-v1-id-128gb-rmx2103/score/index.json new file mode 100644 index 00000000000..d4b1d7a4e6a --- /dev/null +++ b/site/public/v1/smartphones/realme-7i-dual-sim-td-lte-v1-id-128gb-rmx2103/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 3.0, + "camera": 21.7, + "battery": 30.6, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-7i-dual-sim-td-lte-v1-in-128gb-rmx2103/index.json b/site/public/v1/smartphones/realme-7i-dual-sim-td-lte-v1-in-128gb-rmx2103/index.json new file mode 100644 index 00000000000..b7bf4010ffa --- /dev/null +++ b/site/public/v1/smartphones/realme-7i-dual-sim-td-lte-v1-in-128gb-rmx2103/index.json @@ -0,0 +1,77 @@ +{ + "id": 3160, + "slug": "realme-7i-dual-sim-td-lte-v1-in-128gb-rmx2103", + "name": "Realme 7i Dual SIM TD-LTE V1 IN 128GB RMX2103", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2020-10-16", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 0.0, + "camera": 21.7, + "battery": 30.6, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.557114", + "updated_at": "2026-06-19T00:43:44.557114" +} diff --git a/site/public/v1/smartphones/realme-7i-dual-sim-td-lte-v1-in-128gb-rmx2103/score/index.json b/site/public/v1/smartphones/realme-7i-dual-sim-td-lte-v1-in-128gb-rmx2103/score/index.json new file mode 100644 index 00000000000..10970003ee8 --- /dev/null +++ b/site/public/v1/smartphones/realme-7i-dual-sim-td-lte-v1-in-128gb-rmx2103/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 0.0, + "camera": 21.7, + "battery": 30.6, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-7i-dual-sim-td-lte-v1-in-64gb-rmx2103/index.json b/site/public/v1/smartphones/realme-7i-dual-sim-td-lte-v1-in-64gb-rmx2103/index.json new file mode 100644 index 00000000000..a4a925de4a7 --- /dev/null +++ b/site/public/v1/smartphones/realme-7i-dual-sim-td-lte-v1-in-64gb-rmx2103/index.json @@ -0,0 +1,77 @@ +{ + "id": 3161, + "slug": "realme-7i-dual-sim-td-lte-v1-in-64gb-rmx2103", + "name": "Realme 7i Dual SIM TD-LTE V1 IN 64GB RMX2103", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2020-10-16", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 0.0, + "camera": 21.7, + "battery": 30.6, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.557114", + "updated_at": "2026-06-19T00:43:44.557114" +} diff --git a/site/public/v1/smartphones/realme-7i-dual-sim-td-lte-v1-in-64gb-rmx2103/score/index.json b/site/public/v1/smartphones/realme-7i-dual-sim-td-lte-v1-in-64gb-rmx2103/score/index.json new file mode 100644 index 00000000000..10970003ee8 --- /dev/null +++ b/site/public/v1/smartphones/realme-7i-dual-sim-td-lte-v1-in-64gb-rmx2103/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 0.0, + "camera": 21.7, + "battery": 30.6, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-8-5g-2021-dual-sim-td-lte-v1-apac-128gb-rmx3241/index.json b/site/public/v1/smartphones/realme-8-5g-2021-dual-sim-td-lte-v1-apac-128gb-rmx3241/index.json new file mode 100644 index 00000000000..a215c080d58 --- /dev/null +++ b/site/public/v1/smartphones/realme-8-5g-2021-dual-sim-td-lte-v1-apac-128gb-rmx3241/index.json @@ -0,0 +1,77 @@ +{ + "id": 3343, + "slug": "realme-8-5g-2021-dual-sim-td-lte-v1-apac-128gb-rmx3241", + "name": "Realme 8 5G 2021 Dual SIM TD-LTE V1 APAC 128GB RMX3241", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-04-27", + "msrp_usd": 399, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": 57.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.583893", + "updated_at": "2026-06-19T00:43:44.583893" +} diff --git a/site/public/v1/smartphones/realme-8-5g-2021-dual-sim-td-lte-v1-apac-128gb-rmx3241/score/index.json b/site/public/v1/smartphones/realme-8-5g-2021-dual-sim-td-lte-v1-apac-128gb-rmx3241/score/index.json new file mode 100644 index 00000000000..242ac174a76 --- /dev/null +++ b/site/public/v1/smartphones/realme-8-5g-2021-dual-sim-td-lte-v1-apac-128gb-rmx3241/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": 57.5 +} diff --git a/site/public/v1/smartphones/realme-8-5g-2021-dual-sim-td-lte-v1-apac-64gb-rmx3241/index.json b/site/public/v1/smartphones/realme-8-5g-2021-dual-sim-td-lte-v1-apac-64gb-rmx3241/index.json new file mode 100644 index 00000000000..4149ddae444 --- /dev/null +++ b/site/public/v1/smartphones/realme-8-5g-2021-dual-sim-td-lte-v1-apac-64gb-rmx3241/index.json @@ -0,0 +1,77 @@ +{ + "id": 3344, + "slug": "realme-8-5g-2021-dual-sim-td-lte-v1-apac-64gb-rmx3241", + "name": "Realme 8 5G 2021 Dual SIM TD-LTE V1 APAC 64GB RMX3241", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-04-27", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.584891", + "updated_at": "2026-06-19T00:43:44.584891" +} diff --git a/site/public/v1/smartphones/realme-8-5g-2021-dual-sim-td-lte-v1-apac-64gb-rmx3241/score/index.json b/site/public/v1/smartphones/realme-8-5g-2021-dual-sim-td-lte-v1-apac-64gb-rmx3241/score/index.json new file mode 100644 index 00000000000..158756846a2 --- /dev/null +++ b/site/public/v1/smartphones/realme-8-5g-2021-dual-sim-td-lte-v1-apac-64gb-rmx3241/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-8-5g-2021-global-dual-sim-td-lte-v2-128gb-rmx3241/index.json b/site/public/v1/smartphones/realme-8-5g-2021-global-dual-sim-td-lte-v2-128gb-rmx3241/index.json new file mode 100644 index 00000000000..ad44958d2dc --- /dev/null +++ b/site/public/v1/smartphones/realme-8-5g-2021-global-dual-sim-td-lte-v2-128gb-rmx3241/index.json @@ -0,0 +1,77 @@ +{ + "id": 3345, + "slug": "realme-8-5g-2021-global-dual-sim-td-lte-v2-128gb-rmx3241", + "name": "Realme 8 5G 2021 Global Dual SIM TD-LTE V2 128GB RMX3241", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-04-27", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.584891", + "updated_at": "2026-06-19T00:43:44.584891" +} diff --git a/site/public/v1/smartphones/realme-8-5g-2021-global-dual-sim-td-lte-v2-128gb-rmx3241/score/index.json b/site/public/v1/smartphones/realme-8-5g-2021-global-dual-sim-td-lte-v2-128gb-rmx3241/score/index.json new file mode 100644 index 00000000000..4fe44915390 --- /dev/null +++ b/site/public/v1/smartphones/realme-8-5g-2021-global-dual-sim-td-lte-v2-128gb-rmx3241/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-8-5g-2021-global-dual-sim-td-lte-v2-64gb-rmx3241/index.json b/site/public/v1/smartphones/realme-8-5g-2021-global-dual-sim-td-lte-v2-64gb-rmx3241/index.json new file mode 100644 index 00000000000..3ce9a0aa04a --- /dev/null +++ b/site/public/v1/smartphones/realme-8-5g-2021-global-dual-sim-td-lte-v2-64gb-rmx3241/index.json @@ -0,0 +1,77 @@ +{ + "id": 3346, + "slug": "realme-8-5g-2021-global-dual-sim-td-lte-v2-64gb-rmx3241", + "name": "Realme 8 5G 2021 Global Dual SIM TD-LTE V2 64GB RMX3241", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-04-27", + "msrp_usd": 199, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": 61.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.584891", + "updated_at": "2026-06-19T00:43:44.584891" +} diff --git a/site/public/v1/smartphones/realme-8-5g-2021-global-dual-sim-td-lte-v2-64gb-rmx3241/score/index.json b/site/public/v1/smartphones/realme-8-5g-2021-global-dual-sim-td-lte-v2-64gb-rmx3241/score/index.json new file mode 100644 index 00000000000..c543a54fd5c --- /dev/null +++ b/site/public/v1/smartphones/realme-8-5g-2021-global-dual-sim-td-lte-v2-64gb-rmx3241/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": 61.0 +} diff --git a/site/public/v1/smartphones/realme-8s-5g-2021-premium-edition-dual-sim-td-lte-in-128gb-rmx3381/index.json b/site/public/v1/smartphones/realme-8s-5g-2021-premium-edition-dual-sim-td-lte-in-128gb-rmx3381/index.json new file mode 100644 index 00000000000..74e518f7832 --- /dev/null +++ b/site/public/v1/smartphones/realme-8s-5g-2021-premium-edition-dual-sim-td-lte-in-128gb-rmx3381/index.json @@ -0,0 +1,77 @@ +{ + "id": 3347, + "slug": "realme-8s-5g-2021-premium-edition-dual-sim-td-lte-in-128gb-rmx3381", + "name": "Realme 8s 5G 2021 Premium Edition Dual SIM TD-LTE IN 128GB RMX3381", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 68, + "slug": "dimensity-810", + "name": "Dimensity 810", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-810" + }, + "release_date": "2021-09-13", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.9, + "performance": 3.0, + "camera": 21.5, + "battery": 38.4, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.584891", + "updated_at": "2026-06-19T00:43:44.584891" +} diff --git a/site/public/v1/smartphones/realme-8s-5g-2021-premium-edition-dual-sim-td-lte-in-128gb-rmx3381/score/index.json b/site/public/v1/smartphones/realme-8s-5g-2021-premium-edition-dual-sim-td-lte-in-128gb-rmx3381/score/index.json new file mode 100644 index 00000000000..d65b7aa461c --- /dev/null +++ b/site/public/v1/smartphones/realme-8s-5g-2021-premium-edition-dual-sim-td-lte-in-128gb-rmx3381/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.9, + "performance": 3.0, + "camera": 21.5, + "battery": 38.4, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-8s-5g-2021-standard-edition-dual-sim-td-lte-in-128gb-rmx3381/index.json b/site/public/v1/smartphones/realme-8s-5g-2021-standard-edition-dual-sim-td-lte-in-128gb-rmx3381/index.json new file mode 100644 index 00000000000..c1318ca1032 --- /dev/null +++ b/site/public/v1/smartphones/realme-8s-5g-2021-standard-edition-dual-sim-td-lte-in-128gb-rmx3381/index.json @@ -0,0 +1,77 @@ +{ + "id": 3348, + "slug": "realme-8s-5g-2021-standard-edition-dual-sim-td-lte-in-128gb-rmx3381", + "name": "Realme 8s 5G 2021 Standard Edition Dual SIM TD-LTE IN 128GB RMX3381", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 68, + "slug": "dimensity-810", + "name": "Dimensity 810", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-810" + }, + "release_date": "2021-09-13", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.5, + "performance": 1.5, + "camera": 21.5, + "battery": 38.4, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.584891", + "updated_at": "2026-06-19T00:43:44.584891" +} diff --git a/site/public/v1/smartphones/realme-8s-5g-2021-standard-edition-dual-sim-td-lte-in-128gb-rmx3381/score/index.json b/site/public/v1/smartphones/realme-8s-5g-2021-standard-edition-dual-sim-td-lte-in-128gb-rmx3381/score/index.json new file mode 100644 index 00000000000..d2a2786ee53 --- /dev/null +++ b/site/public/v1/smartphones/realme-8s-5g-2021-standard-edition-dual-sim-td-lte-in-128gb-rmx3381/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.5, + "performance": 1.5, + "camera": 21.5, + "battery": 38.4, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c1-2019-premium-edition-dual-sim-td-lte-in-32gb-rmx1811/index.json b/site/public/v1/smartphones/realme-c1-2019-premium-edition-dual-sim-td-lte-in-32gb-rmx1811/index.json new file mode 100644 index 00000000000..d20b5da9b2f --- /dev/null +++ b/site/public/v1/smartphones/realme-c1-2019-premium-edition-dual-sim-td-lte-in-32gb-rmx1811/index.json @@ -0,0 +1,76 @@ +{ + "id": 2920, + "slug": "realme-c1-2019-premium-edition-dual-sim-td-lte-in-32gb-rmx1811", + "name": "Realme C1 2019 Premium Edition Dual SIM TD-LTE IN 32GB RMX1811", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-02-06", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.523929", + "updated_at": "2026-06-19T00:43:44.523929" +} diff --git a/site/public/v1/smartphones/realme-c1-2019-premium-edition-dual-sim-td-lte-in-32gb-rmx1811/score/index.json b/site/public/v1/smartphones/realme-c1-2019-premium-edition-dual-sim-td-lte-in-32gb-rmx1811/score/index.json new file mode 100644 index 00000000000..8556f7d0cec --- /dev/null +++ b/site/public/v1/smartphones/realme-c1-2019-premium-edition-dual-sim-td-lte-in-32gb-rmx1811/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c1-2019-standard-edition-dual-sim-td-lte-in-32gb-rmx1811/index.json b/site/public/v1/smartphones/realme-c1-2019-standard-edition-dual-sim-td-lte-in-32gb-rmx1811/index.json new file mode 100644 index 00000000000..d50c21d6bd9 --- /dev/null +++ b/site/public/v1/smartphones/realme-c1-2019-standard-edition-dual-sim-td-lte-in-32gb-rmx1811/index.json @@ -0,0 +1,76 @@ +{ + "id": 2921, + "slug": "realme-c1-2019-standard-edition-dual-sim-td-lte-in-32gb-rmx1811", + "name": "Realme C1 2019 Standard Edition Dual SIM TD-LTE IN 32GB RMX1811", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-02-06", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.523929", + "updated_at": "2026-06-19T00:43:44.523929" +} diff --git a/site/public/v1/smartphones/realme-c1-2019-standard-edition-dual-sim-td-lte-in-32gb-rmx1811/score/index.json b/site/public/v1/smartphones/realme-c1-2019-standard-edition-dual-sim-td-lte-in-32gb-rmx1811/score/index.json new file mode 100644 index 00000000000..8556f7d0cec --- /dev/null +++ b/site/public/v1/smartphones/realme-c1-2019-standard-edition-dual-sim-td-lte-in-32gb-rmx1811/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c1-dual-sim-td-lte-in-id-16gb-rmx1811/index.json b/site/public/v1/smartphones/realme-c1-dual-sim-td-lte-in-id-16gb-rmx1811/index.json new file mode 100644 index 00000000000..6abfbec33a9 --- /dev/null +++ b/site/public/v1/smartphones/realme-c1-dual-sim-td-lte-in-id-16gb-rmx1811/index.json @@ -0,0 +1,76 @@ +{ + "id": 2805, + "slug": "realme-c1-dual-sim-td-lte-in-id-16gb-rmx1811", + "name": "Realme C1 Dual SIM TD-LTE IN ID 16GB RMX1811", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-10-11", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4230, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.507912", + "updated_at": "2026-06-19T00:43:44.507912" +} diff --git a/site/public/v1/smartphones/realme-c1-dual-sim-td-lte-in-id-16gb-rmx1811/score/index.json b/site/public/v1/smartphones/realme-c1-dual-sim-td-lte-in-id-16gb-rmx1811/score/index.json new file mode 100644 index 00000000000..8556f7d0cec --- /dev/null +++ b/site/public/v1/smartphones/realme-c1-dual-sim-td-lte-in-id-16gb-rmx1811/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": null, + "camera": 5.3, + "battery": 18.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c11-2020-dual-sim-td-lte-v2-my-32gb-rmx2185/index.json b/site/public/v1/smartphones/realme-c11-2020-dual-sim-td-lte-v2-my-32gb-rmx2185/index.json new file mode 100644 index 00000000000..10c63742f76 --- /dev/null +++ b/site/public/v1/smartphones/realme-c11-2020-dual-sim-td-lte-v2-my-32gb-rmx2185/index.json @@ -0,0 +1,76 @@ +{ + "id": 3162, + "slug": "realme-c11-2020-dual-sim-td-lte-v2-my-32gb-rmx2185", + "name": "Realme C11 2020 Dual SIM TD-LTE V2 MY 32GB RMX2185", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2020-07-06", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.558123", + "updated_at": "2026-06-19T00:43:44.558123" +} diff --git a/site/public/v1/smartphones/realme-c11-2020-dual-sim-td-lte-v2-my-32gb-rmx2185/score/index.json b/site/public/v1/smartphones/realme-c11-2020-dual-sim-td-lte-v2-my-32gb-rmx2185/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/realme-c11-2020-dual-sim-td-lte-v2-my-32gb-rmx2185/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c11-2020-premium-edition-dual-sim-td-lte-v1-id-32gb-rmx2185/index.json b/site/public/v1/smartphones/realme-c11-2020-premium-edition-dual-sim-td-lte-v1-id-32gb-rmx2185/index.json new file mode 100644 index 00000000000..194e6b2e5fa --- /dev/null +++ b/site/public/v1/smartphones/realme-c11-2020-premium-edition-dual-sim-td-lte-v1-id-32gb-rmx2185/index.json @@ -0,0 +1,76 @@ +{ + "id": 3163, + "slug": "realme-c11-2020-premium-edition-dual-sim-td-lte-v1-id-32gb-rmx2185", + "name": "Realme C11 2020 Premium Edition Dual SIM TD-LTE V1 ID 32GB RMX2185", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2020-07-22", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.558123", + "updated_at": "2026-06-19T00:43:44.558123" +} diff --git a/site/public/v1/smartphones/realme-c11-2020-premium-edition-dual-sim-td-lte-v1-id-32gb-rmx2185/score/index.json b/site/public/v1/smartphones/realme-c11-2020-premium-edition-dual-sim-td-lte-v1-id-32gb-rmx2185/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/realme-c11-2020-premium-edition-dual-sim-td-lte-v1-id-32gb-rmx2185/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c11-2020-standard-edition-dual-sim-td-lte-v1-id-32gb-rmx2185/index.json b/site/public/v1/smartphones/realme-c11-2020-standard-edition-dual-sim-td-lte-v1-id-32gb-rmx2185/index.json new file mode 100644 index 00000000000..d47e217db18 --- /dev/null +++ b/site/public/v1/smartphones/realme-c11-2020-standard-edition-dual-sim-td-lte-v1-id-32gb-rmx2185/index.json @@ -0,0 +1,76 @@ +{ + "id": 3164, + "slug": "realme-c11-2020-standard-edition-dual-sim-td-lte-v1-id-32gb-rmx2185", + "name": "Realme C11 2020 Standard Edition Dual SIM TD-LTE V1 ID 32GB RMX2185", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2020-07-22", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.558123", + "updated_at": "2026-06-19T00:43:44.558123" +} diff --git a/site/public/v1/smartphones/realme-c11-2020-standard-edition-dual-sim-td-lte-v1-id-32gb-rmx2185/score/index.json b/site/public/v1/smartphones/realme-c11-2020-standard-edition-dual-sim-td-lte-v1-id-32gb-rmx2185/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/realme-c11-2020-standard-edition-dual-sim-td-lte-v1-id-32gb-rmx2185/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c12-2020-dual-sim-td-lte-v1-in-id-32gb-rmx2189/index.json b/site/public/v1/smartphones/realme-c12-2020-dual-sim-td-lte-v1-in-id-32gb-rmx2189/index.json new file mode 100644 index 00000000000..9f3de078b36 --- /dev/null +++ b/site/public/v1/smartphones/realme-c12-2020-dual-sim-td-lte-v1-in-id-32gb-rmx2189/index.json @@ -0,0 +1,76 @@ +{ + "id": 3165, + "slug": "realme-c12-2020-dual-sim-td-lte-v1-in-id-32gb-rmx2189", + "name": "Realme C12 2020 Dual SIM TD-LTE V1 IN ID 32GB RMX2189", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2020-08-18", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 209.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 0.0, + "camera": 5.3, + "battery": 45.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.558123", + "updated_at": "2026-06-19T00:43:44.558123" +} diff --git a/site/public/v1/smartphones/realme-c12-2020-dual-sim-td-lte-v1-in-id-32gb-rmx2189/score/index.json b/site/public/v1/smartphones/realme-c12-2020-dual-sim-td-lte-v1-in-id-32gb-rmx2189/score/index.json new file mode 100644 index 00000000000..4e43e2911ea --- /dev/null +++ b/site/public/v1/smartphones/realme-c12-2020-dual-sim-td-lte-v1-in-id-32gb-rmx2189/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 0.0, + "camera": 5.3, + "battery": 45.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c15-2020-premium-edition-dual-sim-td-lte-v1-in-id-128gb-rmx2186/index.json b/site/public/v1/smartphones/realme-c15-2020-premium-edition-dual-sim-td-lte-v1-in-id-128gb-rmx2186/index.json new file mode 100644 index 00000000000..d5c2673429d --- /dev/null +++ b/site/public/v1/smartphones/realme-c15-2020-premium-edition-dual-sim-td-lte-v1-in-id-128gb-rmx2186/index.json @@ -0,0 +1,76 @@ +{ + "id": 3166, + "slug": "realme-c15-2020-premium-edition-dual-sim-td-lte-v1-in-id-128gb-rmx2186", + "name": "Realme C15 2020 Premium Edition Dual SIM TD-LTE V1 IN ID 128GB RMX2186", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2020-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 209.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.5, + "performance": 0.0, + "camera": 5.3, + "battery": 45.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.558123", + "updated_at": "2026-06-19T00:43:44.558123" +} diff --git a/site/public/v1/smartphones/realme-c15-2020-premium-edition-dual-sim-td-lte-v1-in-id-128gb-rmx2186/score/index.json b/site/public/v1/smartphones/realme-c15-2020-premium-edition-dual-sim-td-lte-v1-in-id-128gb-rmx2186/score/index.json new file mode 100644 index 00000000000..5311936d624 --- /dev/null +++ b/site/public/v1/smartphones/realme-c15-2020-premium-edition-dual-sim-td-lte-v1-in-id-128gb-rmx2186/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.5, + "performance": 0.0, + "camera": 5.3, + "battery": 45.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c15-2020-premium-edition-dual-sim-td-lte-v1-in-id-64gb-rmx2186/index.json b/site/public/v1/smartphones/realme-c15-2020-premium-edition-dual-sim-td-lte-v1-in-id-64gb-rmx2186/index.json new file mode 100644 index 00000000000..cead5f08747 --- /dev/null +++ b/site/public/v1/smartphones/realme-c15-2020-premium-edition-dual-sim-td-lte-v1-in-id-64gb-rmx2186/index.json @@ -0,0 +1,76 @@ +{ + "id": 3167, + "slug": "realme-c15-2020-premium-edition-dual-sim-td-lte-v1-in-id-64gb-rmx2186", + "name": "Realme C15 2020 Premium Edition Dual SIM TD-LTE V1 IN ID 64GB RMX2186", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2020-08-18", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 209.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.5, + "performance": 0.0, + "camera": 5.3, + "battery": 45.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.558123", + "updated_at": "2026-06-19T00:43:44.558123" +} diff --git a/site/public/v1/smartphones/realme-c15-2020-premium-edition-dual-sim-td-lte-v1-in-id-64gb-rmx2186/score/index.json b/site/public/v1/smartphones/realme-c15-2020-premium-edition-dual-sim-td-lte-v1-in-id-64gb-rmx2186/score/index.json new file mode 100644 index 00000000000..5311936d624 --- /dev/null +++ b/site/public/v1/smartphones/realme-c15-2020-premium-edition-dual-sim-td-lte-v1-in-id-64gb-rmx2186/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.5, + "performance": 0.0, + "camera": 5.3, + "battery": 45.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c15-2020-standard-edition-dual-sim-td-lte-v1-in-id-64gb-rmx2186/index.json b/site/public/v1/smartphones/realme-c15-2020-standard-edition-dual-sim-td-lte-v1-in-id-64gb-rmx2186/index.json new file mode 100644 index 00000000000..5bc828f0ff1 --- /dev/null +++ b/site/public/v1/smartphones/realme-c15-2020-standard-edition-dual-sim-td-lte-v1-in-id-64gb-rmx2186/index.json @@ -0,0 +1,76 @@ +{ + "id": 3168, + "slug": "realme-c15-2020-standard-edition-dual-sim-td-lte-v1-in-id-64gb-rmx2186", + "name": "Realme C15 2020 Standard Edition Dual SIM TD-LTE V1 IN ID 64GB RMX2186", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2020-08-18", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 209.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.5, + "performance": 0.0, + "camera": 5.3, + "battery": 45.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.558123", + "updated_at": "2026-06-19T00:43:44.558123" +} diff --git a/site/public/v1/smartphones/realme-c15-2020-standard-edition-dual-sim-td-lte-v1-in-id-64gb-rmx2186/score/index.json b/site/public/v1/smartphones/realme-c15-2020-standard-edition-dual-sim-td-lte-v1-in-id-64gb-rmx2186/score/index.json new file mode 100644 index 00000000000..5311936d624 --- /dev/null +++ b/site/public/v1/smartphones/realme-c15-2020-standard-edition-dual-sim-td-lte-v1-in-id-64gb-rmx2186/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.5, + "performance": 0.0, + "camera": 5.3, + "battery": 45.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c17-2020-dual-sim-td-lte-v1-id-pk-256gb-rmx2101/index.json b/site/public/v1/smartphones/realme-c17-2020-dual-sim-td-lte-v1-id-pk-256gb-rmx2101/index.json new file mode 100644 index 00000000000..10e3b1f4114 --- /dev/null +++ b/site/public/v1/smartphones/realme-c17-2020-dual-sim-td-lte-v1-id-pk-256gb-rmx2101/index.json @@ -0,0 +1,77 @@ +{ + "id": 3169, + "slug": "realme-c17-2020-dual-sim-td-lte-v1-id-pk-256gb-rmx2101", + "name": "Realme C17 2020 Dual SIM TD-LTE V1 ID PK 256GB RMX2101", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2020-09-22", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 1.5, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.558123", + "updated_at": "2026-06-19T00:43:44.558123" +} diff --git a/site/public/v1/smartphones/realme-c17-2020-dual-sim-td-lte-v1-id-pk-256gb-rmx2101/score/index.json b/site/public/v1/smartphones/realme-c17-2020-dual-sim-td-lte-v1-id-pk-256gb-rmx2101/score/index.json new file mode 100644 index 00000000000..f26413df4b3 --- /dev/null +++ b/site/public/v1/smartphones/realme-c17-2020-dual-sim-td-lte-v1-id-pk-256gb-rmx2101/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 1.5, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c17-2020-dual-sim-td-lte-v1-vn-bd-eg-128gb-rmx2101/index.json b/site/public/v1/smartphones/realme-c17-2020-dual-sim-td-lte-v1-vn-bd-eg-128gb-rmx2101/index.json new file mode 100644 index 00000000000..37329fb3163 --- /dev/null +++ b/site/public/v1/smartphones/realme-c17-2020-dual-sim-td-lte-v1-vn-bd-eg-128gb-rmx2101/index.json @@ -0,0 +1,77 @@ +{ + "id": 3170, + "slug": "realme-c17-2020-dual-sim-td-lte-v1-vn-bd-eg-128gb-rmx2101", + "name": "Realme C17 2020 Dual SIM TD-LTE V1 VN BD EG 128GB RMX2101", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2020-09-22", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 1.5, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.558123", + "updated_at": "2026-06-19T00:43:44.558123" +} diff --git a/site/public/v1/smartphones/realme-c17-2020-dual-sim-td-lte-v1-vn-bd-eg-128gb-rmx2101/score/index.json b/site/public/v1/smartphones/realme-c17-2020-dual-sim-td-lte-v1-vn-bd-eg-128gb-rmx2101/score/index.json new file mode 100644 index 00000000000..f26413df4b3 --- /dev/null +++ b/site/public/v1/smartphones/realme-c17-2020-dual-sim-td-lte-v1-vn-bd-eg-128gb-rmx2101/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 1.5, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c17-2020-dual-sim-td-lte-v2-my-256gb-rmx2101/index.json b/site/public/v1/smartphones/realme-c17-2020-dual-sim-td-lte-v2-my-256gb-rmx2101/index.json new file mode 100644 index 00000000000..e5b08a0015e --- /dev/null +++ b/site/public/v1/smartphones/realme-c17-2020-dual-sim-td-lte-v2-my-256gb-rmx2101/index.json @@ -0,0 +1,77 @@ +{ + "id": 3171, + "slug": "realme-c17-2020-dual-sim-td-lte-v2-my-256gb-rmx2101", + "name": "Realme C17 2020 Dual SIM TD-LTE V2 MY 256GB RMX2101", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2020-09-22", + "msrp_usd": 899, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 1.5, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": 35.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.559124", + "updated_at": "2026-06-19T00:43:44.559124" +} diff --git a/site/public/v1/smartphones/realme-c17-2020-dual-sim-td-lte-v2-my-256gb-rmx2101/score/index.json b/site/public/v1/smartphones/realme-c17-2020-dual-sim-td-lte-v2-my-256gb-rmx2101/score/index.json new file mode 100644 index 00000000000..0ac77ee3c0f --- /dev/null +++ b/site/public/v1/smartphones/realme-c17-2020-dual-sim-td-lte-v2-my-256gb-rmx2101/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 1.5, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": 35.4 +} diff --git a/site/public/v1/smartphones/realme-c17-2020-dual-sim-td-lte-v2-sg-128gb-rmx2101/index.json b/site/public/v1/smartphones/realme-c17-2020-dual-sim-td-lte-v2-sg-128gb-rmx2101/index.json new file mode 100644 index 00000000000..9bc4065c879 --- /dev/null +++ b/site/public/v1/smartphones/realme-c17-2020-dual-sim-td-lte-v2-sg-128gb-rmx2101/index.json @@ -0,0 +1,77 @@ +{ + "id": 3172, + "slug": "realme-c17-2020-dual-sim-td-lte-v2-sg-128gb-rmx2101", + "name": "Realme C17 2020 Dual SIM TD-LTE V2 SG 128GB RMX2101", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2020-09-22", + "msrp_usd": 299, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 1.5, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": 58.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.559124", + "updated_at": "2026-06-19T00:43:44.559124" +} diff --git a/site/public/v1/smartphones/realme-c17-2020-dual-sim-td-lte-v2-sg-128gb-rmx2101/score/index.json b/site/public/v1/smartphones/realme-c17-2020-dual-sim-td-lte-v2-sg-128gb-rmx2101/score/index.json new file mode 100644 index 00000000000..ee7d526095a --- /dev/null +++ b/site/public/v1/smartphones/realme-c17-2020-dual-sim-td-lte-v2-sg-128gb-rmx2101/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 1.5, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": 58.5 +} diff --git a/site/public/v1/smartphones/realme-c17-2020-dual-sim-td-lte-v2-th-64gb-rmx2101/index.json b/site/public/v1/smartphones/realme-c17-2020-dual-sim-td-lte-v2-th-64gb-rmx2101/index.json new file mode 100644 index 00000000000..21bdb1cc045 --- /dev/null +++ b/site/public/v1/smartphones/realme-c17-2020-dual-sim-td-lte-v2-th-64gb-rmx2101/index.json @@ -0,0 +1,77 @@ +{ + "id": 3173, + "slug": "realme-c17-2020-dual-sim-td-lte-v2-th-64gb-rmx2101", + "name": "Realme C17 2020 Dual SIM TD-LTE V2 TH 64GB RMX2101", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2020-10-01", + "msrp_usd": 4999, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": 8.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.559124", + "updated_at": "2026-06-19T00:43:44.559124" +} diff --git a/site/public/v1/smartphones/realme-c17-2020-dual-sim-td-lte-v2-th-64gb-rmx2101/score/index.json b/site/public/v1/smartphones/realme-c17-2020-dual-sim-td-lte-v2-th-64gb-rmx2101/score/index.json new file mode 100644 index 00000000000..a61c91a1a12 --- /dev/null +++ b/site/public/v1/smartphones/realme-c17-2020-dual-sim-td-lte-v2-th-64gb-rmx2101/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 30.0, + "value": 8.2 +} diff --git a/site/public/v1/smartphones/realme-c2-premium-edition-dual-sim-td-lte-in-32gb-rmx1941/index.json b/site/public/v1/smartphones/realme-c2-premium-edition-dual-sim-td-lte-in-32gb-rmx1941/index.json new file mode 100644 index 00000000000..ecd18d02027 --- /dev/null +++ b/site/public/v1/smartphones/realme-c2-premium-edition-dual-sim-td-lte-in-32gb-rmx1941/index.json @@ -0,0 +1,76 @@ +{ + "id": 2922, + "slug": "realme-c2-premium-edition-dual-sim-td-lte-in-32gb-rmx1941", + "name": "Realme C2 Premium Edition Dual SIM TD-LTE IN 32GB RMX1941", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-05-16", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.523929", + "updated_at": "2026-06-19T00:43:44.523929" +} diff --git a/site/public/v1/smartphones/realme-c2-premium-edition-dual-sim-td-lte-in-32gb-rmx1941/score/index.json b/site/public/v1/smartphones/realme-c2-premium-edition-dual-sim-td-lte-in-32gb-rmx1941/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/realme-c2-premium-edition-dual-sim-td-lte-in-32gb-rmx1941/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c2-premium-edition-dual-sim-td-lte-vn-my-32gb-rmx1941/index.json b/site/public/v1/smartphones/realme-c2-premium-edition-dual-sim-td-lte-vn-my-32gb-rmx1941/index.json new file mode 100644 index 00000000000..275190d622a --- /dev/null +++ b/site/public/v1/smartphones/realme-c2-premium-edition-dual-sim-td-lte-vn-my-32gb-rmx1941/index.json @@ -0,0 +1,76 @@ +{ + "id": 2923, + "slug": "realme-c2-premium-edition-dual-sim-td-lte-vn-my-32gb-rmx1941", + "name": "Realme C2 Premium Edition Dual SIM TD-LTE VN MY 32GB RMX1941", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-05-16", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.523929", + "updated_at": "2026-06-19T00:43:44.523929" +} diff --git a/site/public/v1/smartphones/realme-c2-premium-edition-dual-sim-td-lte-vn-my-32gb-rmx1941/score/index.json b/site/public/v1/smartphones/realme-c2-premium-edition-dual-sim-td-lte-vn-my-32gb-rmx1941/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/realme-c2-premium-edition-dual-sim-td-lte-vn-my-32gb-rmx1941/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c2-standard-edition-dual-sim-td-lte-in-32gb-rmx1941/index.json b/site/public/v1/smartphones/realme-c2-standard-edition-dual-sim-td-lte-in-32gb-rmx1941/index.json new file mode 100644 index 00000000000..6841b130ea3 --- /dev/null +++ b/site/public/v1/smartphones/realme-c2-standard-edition-dual-sim-td-lte-in-32gb-rmx1941/index.json @@ -0,0 +1,76 @@ +{ + "id": 2924, + "slug": "realme-c2-standard-edition-dual-sim-td-lte-in-32gb-rmx1941", + "name": "Realme C2 Standard Edition Dual SIM TD-LTE IN 32GB RMX1941", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-05-16", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.523929", + "updated_at": "2026-06-19T00:43:44.523929" +} diff --git a/site/public/v1/smartphones/realme-c2-standard-edition-dual-sim-td-lte-in-32gb-rmx1941/score/index.json b/site/public/v1/smartphones/realme-c2-standard-edition-dual-sim-td-lte-in-32gb-rmx1941/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/realme-c2-standard-edition-dual-sim-td-lte-in-32gb-rmx1941/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c2-standard-edition-dual-sim-td-lte-in-id-16gb-rmx1945/index.json b/site/public/v1/smartphones/realme-c2-standard-edition-dual-sim-td-lte-in-id-16gb-rmx1945/index.json new file mode 100644 index 00000000000..4bfff36e0af --- /dev/null +++ b/site/public/v1/smartphones/realme-c2-standard-edition-dual-sim-td-lte-in-id-16gb-rmx1945/index.json @@ -0,0 +1,76 @@ +{ + "id": 2925, + "slug": "realme-c2-standard-edition-dual-sim-td-lte-in-id-16gb-rmx1945", + "name": "Realme C2 Standard Edition Dual SIM TD-LTE IN ID 16GB RMX1945", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-05-16", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.524922", + "updated_at": "2026-06-19T00:43:44.524922" +} diff --git a/site/public/v1/smartphones/realme-c2-standard-edition-dual-sim-td-lte-in-id-16gb-rmx1945/score/index.json b/site/public/v1/smartphones/realme-c2-standard-edition-dual-sim-td-lte-in-id-16gb-rmx1945/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/realme-c2-standard-edition-dual-sim-td-lte-in-id-16gb-rmx1945/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c2-standard-edition-dual-sim-td-lte-ru-16gb-rmx1945/index.json b/site/public/v1/smartphones/realme-c2-standard-edition-dual-sim-td-lte-ru-16gb-rmx1945/index.json new file mode 100644 index 00000000000..a1cc73c040d --- /dev/null +++ b/site/public/v1/smartphones/realme-c2-standard-edition-dual-sim-td-lte-ru-16gb-rmx1945/index.json @@ -0,0 +1,76 @@ +{ + "id": 2926, + "slug": "realme-c2-standard-edition-dual-sim-td-lte-ru-16gb-rmx1945", + "name": "Realme C2 Standard Edition Dual SIM TD-LTE RU 16GB RMX1945", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-05-16", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.524922", + "updated_at": "2026-06-19T00:43:44.524922" +} diff --git a/site/public/v1/smartphones/realme-c2-standard-edition-dual-sim-td-lte-ru-16gb-rmx1945/score/index.json b/site/public/v1/smartphones/realme-c2-standard-edition-dual-sim-td-lte-ru-16gb-rmx1945/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/realme-c2-standard-edition-dual-sim-td-lte-ru-16gb-rmx1945/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c2-standard-edition-dual-sim-td-lte-vn-my-16gb-rmx1945/index.json b/site/public/v1/smartphones/realme-c2-standard-edition-dual-sim-td-lte-vn-my-16gb-rmx1945/index.json new file mode 100644 index 00000000000..840797be240 --- /dev/null +++ b/site/public/v1/smartphones/realme-c2-standard-edition-dual-sim-td-lte-vn-my-16gb-rmx1945/index.json @@ -0,0 +1,76 @@ +{ + "id": 2927, + "slug": "realme-c2-standard-edition-dual-sim-td-lte-vn-my-16gb-rmx1945", + "name": "Realme C2 Standard Edition Dual SIM TD-LTE VN MY 16GB RMX1945", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-05-16", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.524922", + "updated_at": "2026-06-19T00:43:44.524922" +} diff --git a/site/public/v1/smartphones/realme-c2-standard-edition-dual-sim-td-lte-vn-my-16gb-rmx1945/score/index.json b/site/public/v1/smartphones/realme-c2-standard-edition-dual-sim-td-lte-vn-my-16gb-rmx1945/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/realme-c2-standard-edition-dual-sim-td-lte-vn-my-16gb-rmx1945/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c2-standard-edition-dual-sim-td-lte-vn-my-32gb-rmx1941/index.json b/site/public/v1/smartphones/realme-c2-standard-edition-dual-sim-td-lte-vn-my-32gb-rmx1941/index.json new file mode 100644 index 00000000000..d51808c55cf --- /dev/null +++ b/site/public/v1/smartphones/realme-c2-standard-edition-dual-sim-td-lte-vn-my-32gb-rmx1941/index.json @@ -0,0 +1,76 @@ +{ + "id": 2928, + "slug": "realme-c2-standard-edition-dual-sim-td-lte-vn-my-32gb-rmx1941", + "name": "Realme C2 Standard Edition Dual SIM TD-LTE VN MY 32GB RMX1941", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-05-16", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.524922", + "updated_at": "2026-06-19T00:43:44.524922" +} diff --git a/site/public/v1/smartphones/realme-c2-standard-edition-dual-sim-td-lte-vn-my-32gb-rmx1941/score/index.json b/site/public/v1/smartphones/realme-c2-standard-edition-dual-sim-td-lte-vn-my-32gb-rmx1941/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/realme-c2-standard-edition-dual-sim-td-lte-vn-my-32gb-rmx1941/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c20-2021-dual-sim-td-lte-v1-in-32gb-rmx3063/index.json b/site/public/v1/smartphones/realme-c20-2021-dual-sim-td-lte-v1-in-32gb-rmx3063/index.json new file mode 100644 index 00000000000..5b565283924 --- /dev/null +++ b/site/public/v1/smartphones/realme-c20-2021-dual-sim-td-lte-v1-in-32gb-rmx3063/index.json @@ -0,0 +1,77 @@ +{ + "id": 3349, + "slug": "realme-c20-2021-dual-sim-td-lte-v1-in-32gb-rmx3063", + "name": "Realme C20 2021 Dual SIM TD-LTE V1 IN 32GB RMX3063", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-04-09", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.584891", + "updated_at": "2026-06-19T00:43:44.584891" +} diff --git a/site/public/v1/smartphones/realme-c20-2021-dual-sim-td-lte-v1-in-32gb-rmx3063/score/index.json b/site/public/v1/smartphones/realme-c20-2021-dual-sim-td-lte-v1-in-32gb-rmx3063/score/index.json new file mode 100644 index 00000000000..e3b47d27ce7 --- /dev/null +++ b/site/public/v1/smartphones/realme-c20-2021-dual-sim-td-lte-v1-in-32gb-rmx3063/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c20-2021-dual-sim-td-lte-v2-id-vn-bd-32gb-rmx3061-c20a/index.json b/site/public/v1/smartphones/realme-c20-2021-dual-sim-td-lte-v2-id-vn-bd-32gb-rmx3061-c20a/index.json new file mode 100644 index 00000000000..cfc0c6c8329 --- /dev/null +++ b/site/public/v1/smartphones/realme-c20-2021-dual-sim-td-lte-v2-id-vn-bd-32gb-rmx3061-c20a/index.json @@ -0,0 +1,77 @@ +{ + "id": 3350, + "slug": "realme-c20-2021-dual-sim-td-lte-v2-id-vn-bd-32gb-rmx3061-c20a", + "name": "Realme C20 2021 Dual SIM TD-LTE V2 ID VN BD 32GB RMX3061 / C20A", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-01-23", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.585892", + "updated_at": "2026-06-19T00:43:44.585892" +} diff --git a/site/public/v1/smartphones/realme-c20-2021-dual-sim-td-lte-v2-id-vn-bd-32gb-rmx3061-c20a/score/index.json b/site/public/v1/smartphones/realme-c20-2021-dual-sim-td-lte-v2-id-vn-bd-32gb-rmx3061-c20a/score/index.json new file mode 100644 index 00000000000..e3b47d27ce7 --- /dev/null +++ b/site/public/v1/smartphones/realme-c20-2021-dual-sim-td-lte-v2-id-vn-bd-32gb-rmx3061-c20a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c20-2021-dual-sim-td-lte-v3-latam-32gb-rmx3061-c20a/index.json b/site/public/v1/smartphones/realme-c20-2021-dual-sim-td-lte-v3-latam-32gb-rmx3061-c20a/index.json new file mode 100644 index 00000000000..a447dbe977e --- /dev/null +++ b/site/public/v1/smartphones/realme-c20-2021-dual-sim-td-lte-v3-latam-32gb-rmx3061-c20a/index.json @@ -0,0 +1,77 @@ +{ + "id": 3351, + "slug": "realme-c20-2021-dual-sim-td-lte-v3-latam-32gb-rmx3061-c20a", + "name": "Realme C20 2021 Dual SIM TD-LTE V3 LATAM 32GB RMX3061 / C20A", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-11-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.585892", + "updated_at": "2026-06-19T00:43:44.585892" +} diff --git a/site/public/v1/smartphones/realme-c20-2021-dual-sim-td-lte-v3-latam-32gb-rmx3061-c20a/score/index.json b/site/public/v1/smartphones/realme-c20-2021-dual-sim-td-lte-v3-latam-32gb-rmx3061-c20a/score/index.json new file mode 100644 index 00000000000..e3b47d27ce7 --- /dev/null +++ b/site/public/v1/smartphones/realme-c20-2021-dual-sim-td-lte-v3-latam-32gb-rmx3061-c20a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c21-2021-global-dual-sim-td-lte-v2-32gb-rmx3201/index.json b/site/public/v1/smartphones/realme-c21-2021-global-dual-sim-td-lte-v2-32gb-rmx3201/index.json new file mode 100644 index 00000000000..fbe0b1e2261 --- /dev/null +++ b/site/public/v1/smartphones/realme-c21-2021-global-dual-sim-td-lte-v2-32gb-rmx3201/index.json @@ -0,0 +1,76 @@ +{ + "id": 3352, + "slug": "realme-c21-2021-global-dual-sim-td-lte-v2-32gb-rmx3201", + "name": "Realme C21 2021 Global Dual SIM TD-LTE V2 32GB RMX3201", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-03-01", + "msrp_usd": 479, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 51.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.585892", + "updated_at": "2026-06-19T00:43:44.585892" +} diff --git a/site/public/v1/smartphones/realme-c21-2021-global-dual-sim-td-lte-v2-32gb-rmx3201/score/index.json b/site/public/v1/smartphones/realme-c21-2021-global-dual-sim-td-lte-v2-32gb-rmx3201/score/index.json new file mode 100644 index 00000000000..e9b5060a72d --- /dev/null +++ b/site/public/v1/smartphones/realme-c21-2021-global-dual-sim-td-lte-v2-32gb-rmx3201/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 51.9 +} diff --git a/site/public/v1/smartphones/realme-c21-2021-global-dual-sim-td-lte-v2-64gb-rmx3201/index.json b/site/public/v1/smartphones/realme-c21-2021-global-dual-sim-td-lte-v2-64gb-rmx3201/index.json new file mode 100644 index 00000000000..600060635a1 --- /dev/null +++ b/site/public/v1/smartphones/realme-c21-2021-global-dual-sim-td-lte-v2-64gb-rmx3201/index.json @@ -0,0 +1,76 @@ +{ + "id": 3353, + "slug": "realme-c21-2021-global-dual-sim-td-lte-v2-64gb-rmx3201", + "name": "Realme C21 2021 Global Dual SIM TD-LTE V2 64GB RMX3201", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-03-01", + "msrp_usd": 139, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 58.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.585892", + "updated_at": "2026-06-19T00:43:44.585892" +} diff --git a/site/public/v1/smartphones/realme-c21-2021-global-dual-sim-td-lte-v2-64gb-rmx3201/score/index.json b/site/public/v1/smartphones/realme-c21-2021-global-dual-sim-td-lte-v2-64gb-rmx3201/score/index.json new file mode 100644 index 00000000000..eb339cb8c55 --- /dev/null +++ b/site/public/v1/smartphones/realme-c21-2021-global-dual-sim-td-lte-v2-64gb-rmx3201/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 58.8 +} diff --git a/site/public/v1/smartphones/realme-c21-2021-td-lte-latam-v3-64gb-rmx3203/index.json b/site/public/v1/smartphones/realme-c21-2021-td-lte-latam-v3-64gb-rmx3203/index.json new file mode 100644 index 00000000000..9c2b096b019 --- /dev/null +++ b/site/public/v1/smartphones/realme-c21-2021-td-lte-latam-v3-64gb-rmx3203/index.json @@ -0,0 +1,76 @@ +{ + "id": 3354, + "slug": "realme-c21-2021-td-lte-latam-v3-64gb-rmx3203", + "name": "Realme C21 2021 TD-LTE LATAM V3 64GB RMX3203", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-04-01", + "msrp_usd": 3999, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 8.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.585892", + "updated_at": "2026-06-19T00:43:44.585892" +} diff --git a/site/public/v1/smartphones/realme-c21-2021-td-lte-latam-v3-64gb-rmx3203/score/index.json b/site/public/v1/smartphones/realme-c21-2021-td-lte-latam-v3-64gb-rmx3203/score/index.json new file mode 100644 index 00000000000..0aa133a66b7 --- /dev/null +++ b/site/public/v1/smartphones/realme-c21-2021-td-lte-latam-v3-64gb-rmx3203/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 8.8 +} diff --git a/site/public/v1/smartphones/realme-c21y-2021-dual-sim-td-lte-v2-apac-32gb-rmx3261/index.json b/site/public/v1/smartphones/realme-c21y-2021-dual-sim-td-lte-v2-apac-32gb-rmx3261/index.json new file mode 100644 index 00000000000..0de9b75dea1 --- /dev/null +++ b/site/public/v1/smartphones/realme-c21y-2021-dual-sim-td-lte-v2-apac-32gb-rmx3261/index.json @@ -0,0 +1,76 @@ +{ + "id": 3355, + "slug": "realme-c21y-2021-dual-sim-td-lte-v2-apac-32gb-rmx3261", + "name": "Realme C21Y 2021 Dual SIM TD-LTE V2 APAC 32GB RMX3261", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 211, + "slug": "tiger-t610", + "name": "Unisoc Tiger T610", + "manufacturer": { + "slug": "unisoc", + "name": "UNISOC", + "url": "/v1/brands/unisoc" + }, + "process_nm": 12.0, + "gpu_name": "Mali G52 MP2", + "url": "/v1/socs/tiger-t610" + }, + "release_date": "2021-07-04", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.585892", + "updated_at": "2026-06-19T00:43:44.585892" +} diff --git a/site/public/v1/smartphones/realme-c21y-2021-dual-sim-td-lte-v2-apac-32gb-rmx3261/score/index.json b/site/public/v1/smartphones/realme-c21y-2021-dual-sim-td-lte-v2-apac-32gb-rmx3261/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/realme-c21y-2021-dual-sim-td-lte-v2-apac-32gb-rmx3261/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c21y-2021-dual-sim-td-lte-v2-apac-64gb-rmx3261/index.json b/site/public/v1/smartphones/realme-c21y-2021-dual-sim-td-lte-v2-apac-64gb-rmx3261/index.json new file mode 100644 index 00000000000..925260c6805 --- /dev/null +++ b/site/public/v1/smartphones/realme-c21y-2021-dual-sim-td-lte-v2-apac-64gb-rmx3261/index.json @@ -0,0 +1,76 @@ +{ + "id": 3356, + "slug": "realme-c21y-2021-dual-sim-td-lte-v2-apac-64gb-rmx3261", + "name": "Realme C21Y 2021 Dual SIM TD-LTE V2 APAC 64GB RMX3261", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 211, + "slug": "tiger-t610", + "name": "Unisoc Tiger T610", + "manufacturer": { + "slug": "unisoc", + "name": "UNISOC", + "url": "/v1/brands/unisoc" + }, + "process_nm": 12.0, + "gpu_name": "Mali G52 MP2", + "url": "/v1/socs/tiger-t610" + }, + "release_date": "2021-07-04", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.586899", + "updated_at": "2026-06-19T00:43:44.586899" +} diff --git a/site/public/v1/smartphones/realme-c21y-2021-dual-sim-td-lte-v2-apac-64gb-rmx3261/score/index.json b/site/public/v1/smartphones/realme-c21y-2021-dual-sim-td-lte-v2-apac-64gb-rmx3261/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/realme-c21y-2021-dual-sim-td-lte-v2-apac-64gb-rmx3261/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c25-dual-sim-td-lte-v1-id-pk-th-ph-64gb-rmx31391/index.json b/site/public/v1/smartphones/realme-c25-dual-sim-td-lte-v1-id-pk-th-ph-64gb-rmx31391/index.json new file mode 100644 index 00000000000..572a07547ba --- /dev/null +++ b/site/public/v1/smartphones/realme-c25-dual-sim-td-lte-v1-id-pk-th-ph-64gb-rmx31391/index.json @@ -0,0 +1,77 @@ +{ + "id": 3357, + "slug": "realme-c25-dual-sim-td-lte-v1-id-pk-th-ph-64gb-rmx31391", + "name": "Realme C25 Dual SIM TD-LTE V1 ID PK TH PH 64GB RMX31391", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 61, + "slug": "helio-g70", + "name": "Helio G70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 2EEMC2", + "url": "/v1/socs/helio-g70" + }, + "release_date": "2021-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.586899", + "updated_at": "2026-06-19T00:43:44.586899" +} diff --git a/site/public/v1/smartphones/realme-c25-dual-sim-td-lte-v1-id-pk-th-ph-64gb-rmx31391/score/index.json b/site/public/v1/smartphones/realme-c25-dual-sim-td-lte-v1-id-pk-th-ph-64gb-rmx31391/score/index.json new file mode 100644 index 00000000000..09102a29e22 --- /dev/null +++ b/site/public/v1/smartphones/realme-c25-dual-sim-td-lte-v1-id-pk-th-ph-64gb-rmx31391/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c25-dual-sim-td-lte-v1-id-pk-vn-ph-128gb-rmx31391/index.json b/site/public/v1/smartphones/realme-c25-dual-sim-td-lte-v1-id-pk-vn-ph-128gb-rmx31391/index.json new file mode 100644 index 00000000000..5230166fb26 --- /dev/null +++ b/site/public/v1/smartphones/realme-c25-dual-sim-td-lte-v1-id-pk-vn-ph-128gb-rmx31391/index.json @@ -0,0 +1,77 @@ +{ + "id": 3358, + "slug": "realme-c25-dual-sim-td-lte-v1-id-pk-vn-ph-128gb-rmx31391", + "name": "Realme C25 Dual SIM TD-LTE V1 ID PK VN PH 128GB RMX31391", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 61, + "slug": "helio-g70", + "name": "Helio G70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 2EEMC2", + "url": "/v1/socs/helio-g70" + }, + "release_date": "2021-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.586899", + "updated_at": "2026-06-19T00:43:44.586899" +} diff --git a/site/public/v1/smartphones/realme-c25-dual-sim-td-lte-v1-id-pk-vn-ph-128gb-rmx31391/score/index.json b/site/public/v1/smartphones/realme-c25-dual-sim-td-lte-v1-id-pk-vn-ph-128gb-rmx31391/score/index.json new file mode 100644 index 00000000000..09102a29e22 --- /dev/null +++ b/site/public/v1/smartphones/realme-c25-dual-sim-td-lte-v1-id-pk-vn-ph-128gb-rmx31391/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c25-dual-sim-td-lte-v1-in-128gb-rmx3193/index.json b/site/public/v1/smartphones/realme-c25-dual-sim-td-lte-v1-in-128gb-rmx3193/index.json new file mode 100644 index 00000000000..693f9099150 --- /dev/null +++ b/site/public/v1/smartphones/realme-c25-dual-sim-td-lte-v1-in-128gb-rmx3193/index.json @@ -0,0 +1,77 @@ +{ + "id": 3359, + "slug": "realme-c25-dual-sim-td-lte-v1-in-128gb-rmx3193", + "name": "Realme C25 Dual SIM TD-LTE V1 IN 128GB RMX3193", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 61, + "slug": "helio-g70", + "name": "Helio G70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 2EEMC2", + "url": "/v1/socs/helio-g70" + }, + "release_date": "2021-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 0.0, + "camera": 5.4, + "battery": 45.6, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.586899", + "updated_at": "2026-06-19T00:43:44.586899" +} diff --git a/site/public/v1/smartphones/realme-c25-dual-sim-td-lte-v1-in-128gb-rmx3193/score/index.json b/site/public/v1/smartphones/realme-c25-dual-sim-td-lte-v1-in-128gb-rmx3193/score/index.json new file mode 100644 index 00000000000..8a7e673e607 --- /dev/null +++ b/site/public/v1/smartphones/realme-c25-dual-sim-td-lte-v1-in-128gb-rmx3193/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 0.0, + "camera": 5.4, + "battery": 45.6, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c25-dual-sim-td-lte-v1-in-64gb-rmx3193/index.json b/site/public/v1/smartphones/realme-c25-dual-sim-td-lte-v1-in-64gb-rmx3193/index.json new file mode 100644 index 00000000000..9ed5cb708cf --- /dev/null +++ b/site/public/v1/smartphones/realme-c25-dual-sim-td-lte-v1-in-64gb-rmx3193/index.json @@ -0,0 +1,77 @@ +{ + "id": 3360, + "slug": "realme-c25-dual-sim-td-lte-v1-in-64gb-rmx3193", + "name": "Realme C25 Dual SIM TD-LTE V1 IN 64GB RMX3193", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 61, + "slug": "helio-g70", + "name": "Helio G70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 2EEMC2", + "url": "/v1/socs/helio-g70" + }, + "release_date": "2021-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 0.0, + "camera": 5.4, + "battery": 45.6, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.586899", + "updated_at": "2026-06-19T00:43:44.586899" +} diff --git a/site/public/v1/smartphones/realme-c25-dual-sim-td-lte-v1-in-64gb-rmx3193/score/index.json b/site/public/v1/smartphones/realme-c25-dual-sim-td-lte-v1-in-64gb-rmx3193/score/index.json new file mode 100644 index 00000000000..8a7e673e607 --- /dev/null +++ b/site/public/v1/smartphones/realme-c25-dual-sim-td-lte-v1-in-64gb-rmx3193/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 0.0, + "camera": 5.4, + "battery": 45.6, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c25s-2021-dual-sim-td-lte-v1-in-128gb-rmx3197/index.json b/site/public/v1/smartphones/realme-c25s-2021-dual-sim-td-lte-v1-in-128gb-rmx3197/index.json new file mode 100644 index 00000000000..ce97c5f4b36 --- /dev/null +++ b/site/public/v1/smartphones/realme-c25s-2021-dual-sim-td-lte-v1-in-128gb-rmx3197/index.json @@ -0,0 +1,77 @@ +{ + "id": 3361, + "slug": "realme-c25s-2021-dual-sim-td-lte-v1-in-128gb-rmx3197", + "name": "Realme C25s 2021 Dual SIM TD-LTE V1 IN 128GB RMX3197", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 63, + "slug": "helio-g85", + "name": "MediaTek Helio G85", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g85" + }, + "release_date": "2021-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 209.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 0.0, + "camera": 5.4, + "battery": 45.6, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.586899", + "updated_at": "2026-06-19T00:43:44.586899" +} diff --git a/site/public/v1/smartphones/realme-c25s-2021-dual-sim-td-lte-v1-in-128gb-rmx3197/score/index.json b/site/public/v1/smartphones/realme-c25s-2021-dual-sim-td-lte-v1-in-128gb-rmx3197/score/index.json new file mode 100644 index 00000000000..8a7e673e607 --- /dev/null +++ b/site/public/v1/smartphones/realme-c25s-2021-dual-sim-td-lte-v1-in-128gb-rmx3197/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 0.0, + "camera": 5.4, + "battery": 45.6, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c25s-2021-dual-sim-td-lte-v1-in-64gb-rmx3197/index.json b/site/public/v1/smartphones/realme-c25s-2021-dual-sim-td-lte-v1-in-64gb-rmx3197/index.json new file mode 100644 index 00000000000..63b935d2980 --- /dev/null +++ b/site/public/v1/smartphones/realme-c25s-2021-dual-sim-td-lte-v1-in-64gb-rmx3197/index.json @@ -0,0 +1,77 @@ +{ + "id": 3362, + "slug": "realme-c25s-2021-dual-sim-td-lte-v1-in-64gb-rmx3197", + "name": "Realme C25s 2021 Dual SIM TD-LTE V1 IN 64GB RMX3197", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 63, + "slug": "helio-g85", + "name": "MediaTek Helio G85", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g85" + }, + "release_date": "2021-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 209.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 0.0, + "camera": 5.4, + "battery": 45.6, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.586899", + "updated_at": "2026-06-19T00:43:44.586899" +} diff --git a/site/public/v1/smartphones/realme-c25s-2021-dual-sim-td-lte-v1-in-64gb-rmx3197/score/index.json b/site/public/v1/smartphones/realme-c25s-2021-dual-sim-td-lte-v1-in-64gb-rmx3197/score/index.json new file mode 100644 index 00000000000..8a7e673e607 --- /dev/null +++ b/site/public/v1/smartphones/realme-c25s-2021-dual-sim-td-lte-v1-in-64gb-rmx3197/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 0.0, + "camera": 5.4, + "battery": 45.6, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c25s-2021-dual-sim-td-lte-v2-apac-128gb-rmx3195/index.json b/site/public/v1/smartphones/realme-c25s-2021-dual-sim-td-lte-v2-apac-128gb-rmx3195/index.json new file mode 100644 index 00000000000..2f26429530c --- /dev/null +++ b/site/public/v1/smartphones/realme-c25s-2021-dual-sim-td-lte-v2-apac-128gb-rmx3195/index.json @@ -0,0 +1,77 @@ +{ + "id": 3363, + "slug": "realme-c25s-2021-dual-sim-td-lte-v2-apac-128gb-rmx3195", + "name": "Realme C25s 2021 Dual SIM TD-LTE V2 APAC 128GB RMX3195", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 63, + "slug": "helio-g85", + "name": "MediaTek Helio G85", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g85" + }, + "release_date": "2021-06-01", + "msrp_usd": 699, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 17.5, + "value": 44.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.586899", + "updated_at": "2026-06-19T00:43:44.586899" +} diff --git a/site/public/v1/smartphones/realme-c25s-2021-dual-sim-td-lte-v2-apac-128gb-rmx3195/score/index.json b/site/public/v1/smartphones/realme-c25s-2021-dual-sim-td-lte-v2-apac-128gb-rmx3195/score/index.json new file mode 100644 index 00000000000..a3de84f63b8 --- /dev/null +++ b/site/public/v1/smartphones/realme-c25s-2021-dual-sim-td-lte-v2-apac-128gb-rmx3195/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 17.5, + "value": 44.6 +} diff --git a/site/public/v1/smartphones/realme-c25s-2021-dual-sim-td-lte-v2-apac-64gb-rmx3195/index.json b/site/public/v1/smartphones/realme-c25s-2021-dual-sim-td-lte-v2-apac-64gb-rmx3195/index.json new file mode 100644 index 00000000000..18fb7accfb5 --- /dev/null +++ b/site/public/v1/smartphones/realme-c25s-2021-dual-sim-td-lte-v2-apac-64gb-rmx3195/index.json @@ -0,0 +1,77 @@ +{ + "id": 3364, + "slug": "realme-c25s-2021-dual-sim-td-lte-v2-apac-64gb-rmx3195", + "name": "Realme C25s 2021 Dual SIM TD-LTE V2 APAC 64GB RMX3195", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 63, + "slug": "helio-g85", + "name": "MediaTek Helio G85", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g85" + }, + "release_date": "2021-06-01", + "msrp_usd": 229, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 17.5, + "value": 60.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.586899", + "updated_at": "2026-06-19T00:43:44.586899" +} diff --git a/site/public/v1/smartphones/realme-c25s-2021-dual-sim-td-lte-v2-apac-64gb-rmx3195/score/index.json b/site/public/v1/smartphones/realme-c25s-2021-dual-sim-td-lte-v2-apac-64gb-rmx3195/score/index.json new file mode 100644 index 00000000000..d1fcda1741d --- /dev/null +++ b/site/public/v1/smartphones/realme-c25s-2021-dual-sim-td-lte-v2-apac-64gb-rmx3195/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 17.5, + "value": 60.0 +} diff --git a/site/public/v1/smartphones/realme-c2s-dual-sim-td-lte-th-32gb/index.json b/site/public/v1/smartphones/realme-c2s-dual-sim-td-lte-th-32gb/index.json new file mode 100644 index 00000000000..1f5d1b264cd --- /dev/null +++ b/site/public/v1/smartphones/realme-c2s-dual-sim-td-lte-th-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3174, + "slug": "realme-c2s-dual-sim-td-lte-th-32gb", + "name": "Realme C2s Dual SIM TD-LTE TH 32GB", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-01-08", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.1, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.559124", + "updated_at": "2026-06-19T00:43:44.559124" +} diff --git a/site/public/v1/smartphones/realme-c2s-dual-sim-td-lte-th-32gb/score/index.json b/site/public/v1/smartphones/realme-c2s-dual-sim-td-lte-th-32gb/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/realme-c2s-dual-sim-td-lte-th-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c3-premium-edition-dual-sim-td-lte-id-pk-vn-ph-64gb-rmx2020/index.json b/site/public/v1/smartphones/realme-c3-premium-edition-dual-sim-td-lte-id-pk-vn-ph-64gb-rmx2020/index.json new file mode 100644 index 00000000000..d061511e15f --- /dev/null +++ b/site/public/v1/smartphones/realme-c3-premium-edition-dual-sim-td-lte-id-pk-vn-ph-64gb-rmx2020/index.json @@ -0,0 +1,77 @@ +{ + "id": 3175, + "slug": "realme-c3-premium-edition-dual-sim-td-lte-id-pk-vn-ph-64gb-rmx2020", + "name": "Realme C3 Premium Edition Dual SIM TD-LTE ID PK VN PH 64GB RMX2020", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 61, + "slug": "helio-g70", + "name": "Helio G70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 2EEMC2", + "url": "/v1/socs/helio-g70" + }, + "release_date": "2020-02-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.559124", + "updated_at": "2026-06-19T00:43:44.559124" +} diff --git a/site/public/v1/smartphones/realme-c3-premium-edition-dual-sim-td-lte-id-pk-vn-ph-64gb-rmx2020/score/index.json b/site/public/v1/smartphones/realme-c3-premium-edition-dual-sim-td-lte-id-pk-vn-ph-64gb-rmx2020/score/index.json new file mode 100644 index 00000000000..e3b47d27ce7 --- /dev/null +++ b/site/public/v1/smartphones/realme-c3-premium-edition-dual-sim-td-lte-id-pk-vn-ph-64gb-rmx2020/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c3-standard-edition-dual-sim-td-lte-id-pk-vn-ph-32gb-rmx2020/index.json b/site/public/v1/smartphones/realme-c3-standard-edition-dual-sim-td-lte-id-pk-vn-ph-32gb-rmx2020/index.json new file mode 100644 index 00000000000..c9a1e2373f1 --- /dev/null +++ b/site/public/v1/smartphones/realme-c3-standard-edition-dual-sim-td-lte-id-pk-vn-ph-32gb-rmx2020/index.json @@ -0,0 +1,77 @@ +{ + "id": 3176, + "slug": "realme-c3-standard-edition-dual-sim-td-lte-id-pk-vn-ph-32gb-rmx2020", + "name": "Realme C3 Standard Edition Dual SIM TD-LTE ID PK VN PH 32GB RMX2020", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 61, + "slug": "helio-g70", + "name": "Helio G70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 2EEMC2", + "url": "/v1/socs/helio-g70" + }, + "release_date": "2020-02-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.559124", + "updated_at": "2026-06-19T00:43:44.559124" +} diff --git a/site/public/v1/smartphones/realme-c3-standard-edition-dual-sim-td-lte-id-pk-vn-ph-32gb-rmx2020/score/index.json b/site/public/v1/smartphones/realme-c3-standard-edition-dual-sim-td-lte-id-pk-vn-ph-32gb-rmx2020/score/index.json new file mode 100644 index 00000000000..e3b47d27ce7 --- /dev/null +++ b/site/public/v1/smartphones/realme-c3-standard-edition-dual-sim-td-lte-id-pk-vn-ph-32gb-rmx2020/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c3-standard-edition-dual-sim-td-lte-in-32gb-rmx2027-c3i/index.json b/site/public/v1/smartphones/realme-c3-standard-edition-dual-sim-td-lte-in-32gb-rmx2027-c3i/index.json new file mode 100644 index 00000000000..d61374bf162 --- /dev/null +++ b/site/public/v1/smartphones/realme-c3-standard-edition-dual-sim-td-lte-in-32gb-rmx2027-c3i/index.json @@ -0,0 +1,77 @@ +{ + "id": 3177, + "slug": "realme-c3-standard-edition-dual-sim-td-lte-in-32gb-rmx2027-c3i", + "name": "Realme C3 Standard Edition Dual SIM TD-LTE IN 32GB RMX2027 / C3i", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 61, + "slug": "helio-g70", + "name": "Helio G70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 2EEMC2", + "url": "/v1/socs/helio-g70" + }, + "release_date": "2020-02-14", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.559124", + "updated_at": "2026-06-19T00:43:44.559124" +} diff --git a/site/public/v1/smartphones/realme-c3-standard-edition-dual-sim-td-lte-in-32gb-rmx2027-c3i/score/index.json b/site/public/v1/smartphones/realme-c3-standard-edition-dual-sim-td-lte-in-32gb-rmx2027-c3i/score/index.json new file mode 100644 index 00000000000..e3b47d27ce7 --- /dev/null +++ b/site/public/v1/smartphones/realme-c3-standard-edition-dual-sim-td-lte-in-32gb-rmx2027-c3i/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c3-standard-edition-dual-sim-td-lte-in-64gb-rmx2027-c3i/index.json b/site/public/v1/smartphones/realme-c3-standard-edition-dual-sim-td-lte-in-64gb-rmx2027-c3i/index.json new file mode 100644 index 00000000000..b1d563afeb2 --- /dev/null +++ b/site/public/v1/smartphones/realme-c3-standard-edition-dual-sim-td-lte-in-64gb-rmx2027-c3i/index.json @@ -0,0 +1,77 @@ +{ + "id": 3178, + "slug": "realme-c3-standard-edition-dual-sim-td-lte-in-64gb-rmx2027-c3i", + "name": "Realme C3 Standard Edition Dual SIM TD-LTE IN 64GB RMX2027 / C3i", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 61, + "slug": "helio-g70", + "name": "Helio G70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 2EEMC2", + "url": "/v1/socs/helio-g70" + }, + "release_date": "2020-02-14", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.559124", + "updated_at": "2026-06-19T00:43:44.559124" +} diff --git a/site/public/v1/smartphones/realme-c3-standard-edition-dual-sim-td-lte-in-64gb-rmx2027-c3i/score/index.json b/site/public/v1/smartphones/realme-c3-standard-edition-dual-sim-td-lte-in-64gb-rmx2027-c3i/score/index.json new file mode 100644 index 00000000000..e3b47d27ce7 --- /dev/null +++ b/site/public/v1/smartphones/realme-c3-standard-edition-dual-sim-td-lte-in-64gb-rmx2027-c3i/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c3-standard-edition-dual-sim-td-lte-my-32gb-rmx2020/index.json b/site/public/v1/smartphones/realme-c3-standard-edition-dual-sim-td-lte-my-32gb-rmx2020/index.json new file mode 100644 index 00000000000..bfa9fe5cf83 --- /dev/null +++ b/site/public/v1/smartphones/realme-c3-standard-edition-dual-sim-td-lte-my-32gb-rmx2020/index.json @@ -0,0 +1,77 @@ +{ + "id": 3179, + "slug": "realme-c3-standard-edition-dual-sim-td-lte-my-32gb-rmx2020", + "name": "Realme C3 Standard Edition Dual SIM TD-LTE MY 32GB RMX2020", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 61, + "slug": "helio-g70", + "name": "Helio G70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 2EEMC2", + "url": "/v1/socs/helio-g70" + }, + "release_date": "2020-02-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.559124", + "updated_at": "2026-06-19T00:43:44.559124" +} diff --git a/site/public/v1/smartphones/realme-c3-standard-edition-dual-sim-td-lte-my-32gb-rmx2020/score/index.json b/site/public/v1/smartphones/realme-c3-standard-edition-dual-sim-td-lte-my-32gb-rmx2020/score/index.json new file mode 100644 index 00000000000..e3b47d27ce7 --- /dev/null +++ b/site/public/v1/smartphones/realme-c3-standard-edition-dual-sim-td-lte-my-32gb-rmx2020/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c3-standard-edition-dual-sim-td-lte-th-32gb-rmx2020/index.json b/site/public/v1/smartphones/realme-c3-standard-edition-dual-sim-td-lte-th-32gb-rmx2020/index.json new file mode 100644 index 00000000000..ba446765304 --- /dev/null +++ b/site/public/v1/smartphones/realme-c3-standard-edition-dual-sim-td-lte-th-32gb-rmx2020/index.json @@ -0,0 +1,77 @@ +{ + "id": 3180, + "slug": "realme-c3-standard-edition-dual-sim-td-lte-th-32gb-rmx2020", + "name": "Realme C3 Standard Edition Dual SIM TD-LTE TH 32GB RMX2020", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 61, + "slug": "helio-g70", + "name": "Helio G70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 2EEMC2", + "url": "/v1/socs/helio-g70" + }, + "release_date": "2020-02-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.560126", + "updated_at": "2026-06-19T00:43:44.560126" +} diff --git a/site/public/v1/smartphones/realme-c3-standard-edition-dual-sim-td-lte-th-32gb-rmx2020/score/index.json b/site/public/v1/smartphones/realme-c3-standard-edition-dual-sim-td-lte-th-32gb-rmx2020/score/index.json new file mode 100644 index 00000000000..e3b47d27ce7 --- /dev/null +++ b/site/public/v1/smartphones/realme-c3-standard-edition-dual-sim-td-lte-th-32gb-rmx2020/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-c3i-standard-edition-dual-sim-td-lte-vn-32gb-rmx2027/index.json b/site/public/v1/smartphones/realme-c3i-standard-edition-dual-sim-td-lte-vn-32gb-rmx2027/index.json new file mode 100644 index 00000000000..6f486133f72 --- /dev/null +++ b/site/public/v1/smartphones/realme-c3i-standard-edition-dual-sim-td-lte-vn-32gb-rmx2027/index.json @@ -0,0 +1,77 @@ +{ + "id": 3181, + "slug": "realme-c3i-standard-edition-dual-sim-td-lte-vn-32gb-rmx2027", + "name": "Realme C3i Standard Edition Dual SIM TD-LTE VN 32GB RMX2027", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 61, + "slug": "helio-g70", + "name": "Helio G70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 2EEMC2", + "url": "/v1/socs/helio-g70" + }, + "release_date": "2020-06-24", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.560126", + "updated_at": "2026-06-19T00:43:44.560126" +} diff --git a/site/public/v1/smartphones/realme-c3i-standard-edition-dual-sim-td-lte-vn-32gb-rmx2027/score/index.json b/site/public/v1/smartphones/realme-c3i-standard-edition-dual-sim-td-lte-vn-32gb-rmx2027/score/index.json new file mode 100644 index 00000000000..e3b47d27ce7 --- /dev/null +++ b/site/public/v1/smartphones/realme-c3i-standard-edition-dual-sim-td-lte-vn-32gb-rmx2027/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-gt-5g-2021-leather-edition-dual-sim-td-lte-cn-256gb-rmx2202/index.json b/site/public/v1/smartphones/realme-gt-5g-2021-leather-edition-dual-sim-td-lte-cn-256gb-rmx2202/index.json new file mode 100644 index 00000000000..280f17aa5c2 --- /dev/null +++ b/site/public/v1/smartphones/realme-gt-5g-2021-leather-edition-dual-sim-td-lte-cn-256gb-rmx2202/index.json @@ -0,0 +1,77 @@ +{ + "id": 3365, + "slug": "realme-gt-5g-2021-leather-edition-dual-sim-td-lte-cn-256gb-rmx2202", + "name": "Realme GT 5G 2021 Leather Edition Dual SIM TD-LTE CN 256GB RMX2202", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-01", + "msrp_usd": 3399, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 186.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.6, + "performance": 9.4, + "camera": 21.7, + "battery": 42.0, + "display": 53.4, + "value": 15.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.587896", + "updated_at": "2026-06-19T00:43:44.587896" +} diff --git a/site/public/v1/smartphones/realme-gt-5g-2021-leather-edition-dual-sim-td-lte-cn-256gb-rmx2202/score/index.json b/site/public/v1/smartphones/realme-gt-5g-2021-leather-edition-dual-sim-td-lte-cn-256gb-rmx2202/score/index.json new file mode 100644 index 00000000000..5712af38df6 --- /dev/null +++ b/site/public/v1/smartphones/realme-gt-5g-2021-leather-edition-dual-sim-td-lte-cn-256gb-rmx2202/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.6, + "performance": 9.4, + "camera": 21.7, + "battery": 42.0, + "display": 53.4, + "value": 15.8 +} diff --git a/site/public/v1/smartphones/realme-gt-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-rmx2202/index.json b/site/public/v1/smartphones/realme-gt-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-rmx2202/index.json new file mode 100644 index 00000000000..9efff589948 --- /dev/null +++ b/site/public/v1/smartphones/realme-gt-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-rmx2202/index.json @@ -0,0 +1,77 @@ +{ + "id": 3366, + "slug": "realme-gt-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-rmx2202", + "name": "Realme GT 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB RMX2202", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-01", + "msrp_usd": 3399, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.6, + "performance": 9.4, + "camera": 21.7, + "battery": 42.0, + "display": 53.4, + "value": 15.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.587896", + "updated_at": "2026-06-19T00:43:44.587896" +} diff --git a/site/public/v1/smartphones/realme-gt-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-rmx2202/score/index.json b/site/public/v1/smartphones/realme-gt-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-rmx2202/score/index.json new file mode 100644 index 00000000000..5712af38df6 --- /dev/null +++ b/site/public/v1/smartphones/realme-gt-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-rmx2202/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.6, + "performance": 9.4, + "camera": 21.7, + "battery": 42.0, + "display": 53.4, + "value": 15.8 +} diff --git a/site/public/v1/smartphones/realme-gt-5g-2021-premium-edition-global-dual-sim-td-lte-256gb-rmx2202/index.json b/site/public/v1/smartphones/realme-gt-5g-2021-premium-edition-global-dual-sim-td-lte-256gb-rmx2202/index.json new file mode 100644 index 00000000000..f924729d913 --- /dev/null +++ b/site/public/v1/smartphones/realme-gt-5g-2021-premium-edition-global-dual-sim-td-lte-256gb-rmx2202/index.json @@ -0,0 +1,77 @@ +{ + "id": 3367, + "slug": "realme-gt-5g-2021-premium-edition-global-dual-sim-td-lte-256gb-rmx2202", + "name": "Realme GT 5G 2021 Premium Edition Global Dual SIM TD-LTE 256GB RMX2202", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-06-01", + "msrp_usd": 599, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.6, + "performance": 9.4, + "camera": 21.7, + "battery": 42.0, + "display": 53.4, + "value": 54.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.587896", + "updated_at": "2026-06-19T00:43:44.587896" +} diff --git a/site/public/v1/smartphones/realme-gt-5g-2021-premium-edition-global-dual-sim-td-lte-256gb-rmx2202/score/index.json b/site/public/v1/smartphones/realme-gt-5g-2021-premium-edition-global-dual-sim-td-lte-256gb-rmx2202/score/index.json new file mode 100644 index 00000000000..6f645227ba1 --- /dev/null +++ b/site/public/v1/smartphones/realme-gt-5g-2021-premium-edition-global-dual-sim-td-lte-256gb-rmx2202/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.6, + "performance": 9.4, + "camera": 21.7, + "battery": 42.0, + "display": 53.4, + "value": 54.3 +} diff --git a/site/public/v1/smartphones/realme-gt-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-rmx2202/index.json b/site/public/v1/smartphones/realme-gt-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-rmx2202/index.json new file mode 100644 index 00000000000..5e0af830578 --- /dev/null +++ b/site/public/v1/smartphones/realme-gt-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-rmx2202/index.json @@ -0,0 +1,77 @@ +{ + "id": 3368, + "slug": "realme-gt-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-rmx2202", + "name": "Realme GT 5G 2021 Standard Edition Dual SIM TD-LTE CN 256GB RMX2202", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-01", + "msrp_usd": 3099, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.9, + "performance": 6.4, + "camera": 21.7, + "battery": 42.0, + "display": 53.4, + "value": 15.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.587896", + "updated_at": "2026-06-19T00:43:44.587896" +} diff --git a/site/public/v1/smartphones/realme-gt-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-rmx2202/score/index.json b/site/public/v1/smartphones/realme-gt-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-rmx2202/score/index.json new file mode 100644 index 00000000000..d019f56e577 --- /dev/null +++ b/site/public/v1/smartphones/realme-gt-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-rmx2202/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.9, + "performance": 6.4, + "camera": 21.7, + "battery": 42.0, + "display": 53.4, + "value": 15.4 +} diff --git a/site/public/v1/smartphones/realme-gt-5g-2021-standard-edition-global-dual-sim-td-lte-128gb-rmx2202/index.json b/site/public/v1/smartphones/realme-gt-5g-2021-standard-edition-global-dual-sim-td-lte-128gb-rmx2202/index.json new file mode 100644 index 00000000000..e746f582310 --- /dev/null +++ b/site/public/v1/smartphones/realme-gt-5g-2021-standard-edition-global-dual-sim-td-lte-128gb-rmx2202/index.json @@ -0,0 +1,77 @@ +{ + "id": 3369, + "slug": "realme-gt-5g-2021-standard-edition-global-dual-sim-td-lte-128gb-rmx2202", + "name": "Realme GT 5G 2021 Standard Edition Global Dual SIM TD-LTE 128GB RMX2202", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-06-01", + "msrp_usd": 499, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.9, + "performance": 6.4, + "camera": 21.7, + "battery": 42.0, + "display": 53.4, + "value": 57.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.587896", + "updated_at": "2026-06-19T00:43:44.587896" +} diff --git a/site/public/v1/smartphones/realme-gt-5g-2021-standard-edition-global-dual-sim-td-lte-128gb-rmx2202/score/index.json b/site/public/v1/smartphones/realme-gt-5g-2021-standard-edition-global-dual-sim-td-lte-128gb-rmx2202/score/index.json new file mode 100644 index 00000000000..782c4728ebf --- /dev/null +++ b/site/public/v1/smartphones/realme-gt-5g-2021-standard-edition-global-dual-sim-td-lte-128gb-rmx2202/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.9, + "performance": 6.4, + "camera": 21.7, + "battery": 42.0, + "display": 53.4, + "value": 57.8 +} diff --git a/site/public/v1/smartphones/realme-gt-master-explorer-edition-5g-dual-sim-td-lte-cn-256gb-rmx3366/index.json b/site/public/v1/smartphones/realme-gt-master-explorer-edition-5g-dual-sim-td-lte-cn-256gb-rmx3366/index.json new file mode 100644 index 00000000000..e309de02624 --- /dev/null +++ b/site/public/v1/smartphones/realme-gt-master-explorer-edition-5g-dual-sim-td-lte-cn-256gb-rmx3366/index.json @@ -0,0 +1,77 @@ +{ + "id": 3370, + "slug": "realme-gt-master-explorer-edition-5g-dual-sim-td-lte-cn-256gb-rmx3366", + "name": "Realme GT Master Explorer Edition 5G Dual SIM TD-LTE CN 256GB RMX3366", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-07-01", + "msrp_usd": 3199, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4400, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 183.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 9.1, + "camera": 17.2, + "battery": 30.5, + "display": 52.7, + "value": 13.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.587896", + "updated_at": "2026-06-19T00:43:44.587896" +} diff --git a/site/public/v1/smartphones/realme-gt-master-explorer-edition-5g-dual-sim-td-lte-cn-256gb-rmx3366/score/index.json b/site/public/v1/smartphones/realme-gt-master-explorer-edition-5g-dual-sim-td-lte-cn-256gb-rmx3366/score/index.json new file mode 100644 index 00000000000..f9b5c97b78d --- /dev/null +++ b/site/public/v1/smartphones/realme-gt-master-explorer-edition-5g-dual-sim-td-lte-cn-256gb-rmx3366/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 9.1, + "camera": 17.2, + "battery": 30.5, + "display": 52.7, + "value": 13.7 +} diff --git a/site/public/v1/smartphones/realme-gt-neo-2-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx3370/index.json b/site/public/v1/smartphones/realme-gt-neo-2-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx3370/index.json new file mode 100644 index 00000000000..69ae8b60a98 --- /dev/null +++ b/site/public/v1/smartphones/realme-gt-neo-2-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx3370/index.json @@ -0,0 +1,77 @@ +{ + "id": 3371, + "slug": "realme-gt-neo-2-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx3370", + "name": "Realme GT Neo 2 5G Premium Edition Dual SIM TD-LTE CN 256GB RMX3370", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-09-01", + "msrp_usd": 2999, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 199.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.6, + "performance": 9.1, + "camera": 21.5, + "battery": 39.5, + "display": 52.3, + "value": 15.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.587896", + "updated_at": "2026-06-19T00:43:44.587896" +} diff --git a/site/public/v1/smartphones/realme-gt-neo-2-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx3370/score/index.json b/site/public/v1/smartphones/realme-gt-neo-2-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx3370/score/index.json new file mode 100644 index 00000000000..0b83de6b3fe --- /dev/null +++ b/site/public/v1/smartphones/realme-gt-neo-2-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx3370/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.6, + "performance": 9.1, + "camera": 21.5, + "battery": 39.5, + "display": 52.3, + "value": 15.3 +} diff --git a/site/public/v1/smartphones/realme-gt-neo-2-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx3370/index.json b/site/public/v1/smartphones/realme-gt-neo-2-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx3370/index.json new file mode 100644 index 00000000000..6e344c69e34 --- /dev/null +++ b/site/public/v1/smartphones/realme-gt-neo-2-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx3370/index.json @@ -0,0 +1,77 @@ +{ + "id": 3372, + "slug": "realme-gt-neo-2-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx3370", + "name": "Realme GT Neo 2 5G Standard Edition Dual SIM TD-LTE CN 128GB RMX3370", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-09-01", + "msrp_usd": 2499, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 199.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.8, + "performance": 6.1, + "camera": 21.5, + "battery": 39.5, + "display": 52.3, + "value": 14.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.587896", + "updated_at": "2026-06-19T00:43:44.587896" +} diff --git a/site/public/v1/smartphones/realme-gt-neo-2-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx3370/score/index.json b/site/public/v1/smartphones/realme-gt-neo-2-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx3370/score/index.json new file mode 100644 index 00000000000..78eab83688a --- /dev/null +++ b/site/public/v1/smartphones/realme-gt-neo-2-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx3370/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.8, + "performance": 6.1, + "camera": 21.5, + "battery": 39.5, + "display": 52.3, + "value": 14.9 +} diff --git a/site/public/v1/smartphones/realme-gt-neo-2-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx3370/index.json b/site/public/v1/smartphones/realme-gt-neo-2-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx3370/index.json new file mode 100644 index 00000000000..784d597e77a --- /dev/null +++ b/site/public/v1/smartphones/realme-gt-neo-2-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx3370/index.json @@ -0,0 +1,77 @@ +{ + "id": 3373, + "slug": "realme-gt-neo-2-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx3370", + "name": "Realme GT Neo 2 5G Standard Edition Dual SIM TD-LTE CN 256GB RMX3370", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-09-01", + "msrp_usd": 2699, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 199.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.8, + "performance": 6.1, + "camera": 21.5, + "battery": 39.5, + "display": 52.3, + "value": 14.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.587896", + "updated_at": "2026-06-19T00:43:44.587896" +} diff --git a/site/public/v1/smartphones/realme-gt-neo-2-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx3370/score/index.json b/site/public/v1/smartphones/realme-gt-neo-2-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx3370/score/index.json new file mode 100644 index 00000000000..78eab83688a --- /dev/null +++ b/site/public/v1/smartphones/realme-gt-neo-2-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx3370/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.8, + "performance": 6.1, + "camera": 21.5, + "battery": 39.5, + "display": 52.3, + "value": 14.9 +} diff --git a/site/public/v1/smartphones/realme-gt-neo-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-rmx3031/index.json b/site/public/v1/smartphones/realme-gt-neo-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-rmx3031/index.json new file mode 100644 index 00000000000..20cdcf8b232 --- /dev/null +++ b/site/public/v1/smartphones/realme-gt-neo-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-rmx3031/index.json @@ -0,0 +1,77 @@ +{ + "id": 3374, + "slug": "realme-gt-neo-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-rmx3031", + "name": "Realme GT Neo 5G 2021 Premium Edition Dual SIM TD-LTE CN 128GB RMX3031", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-04-01", + "msrp_usd": 1999, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 50.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.3, + "performance": 3.9, + "camera": 21.7, + "battery": 34.2, + "display": 53.4, + "value": 14.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.587896", + "updated_at": "2026-06-19T00:43:44.587896" +} diff --git a/site/public/v1/smartphones/realme-gt-neo-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-rmx3031/score/index.json b/site/public/v1/smartphones/realme-gt-neo-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-rmx3031/score/index.json new file mode 100644 index 00000000000..023f30d455d --- /dev/null +++ b/site/public/v1/smartphones/realme-gt-neo-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-rmx3031/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.3, + "performance": 3.9, + "camera": 21.7, + "battery": 34.2, + "display": 53.4, + "value": 14.2 +} diff --git a/site/public/v1/smartphones/realme-gt-neo-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-rmx3031/index.json b/site/public/v1/smartphones/realme-gt-neo-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-rmx3031/index.json new file mode 100644 index 00000000000..ba94a8b859f --- /dev/null +++ b/site/public/v1/smartphones/realme-gt-neo-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-rmx3031/index.json @@ -0,0 +1,77 @@ +{ + "id": 3375, + "slug": "realme-gt-neo-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-rmx3031", + "name": "Realme GT Neo 5G 2021 Standard Edition Dual SIM TD-LTE CN 128GB RMX3031", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-04-09", + "msrp_usd": 1799, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 50.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.9, + "performance": 2.4, + "camera": 21.7, + "battery": 34.2, + "display": 53.4, + "value": 13.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.588891", + "updated_at": "2026-06-19T00:43:44.588891" +} diff --git a/site/public/v1/smartphones/realme-gt-neo-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-rmx3031/score/index.json b/site/public/v1/smartphones/realme-gt-neo-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-rmx3031/score/index.json new file mode 100644 index 00000000000..1288d4a3d6b --- /dev/null +++ b/site/public/v1/smartphones/realme-gt-neo-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-rmx3031/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.9, + "performance": 2.4, + "camera": 21.7, + "battery": 34.2, + "display": 53.4, + "value": 13.9 +} diff --git a/site/public/v1/smartphones/realme-gt-neo-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-rmx3031/index.json b/site/public/v1/smartphones/realme-gt-neo-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-rmx3031/index.json new file mode 100644 index 00000000000..310f6f0196b --- /dev/null +++ b/site/public/v1/smartphones/realme-gt-neo-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-rmx3031/index.json @@ -0,0 +1,77 @@ +{ + "id": 3376, + "slug": "realme-gt-neo-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-rmx3031", + "name": "Realme GT Neo 5G 2021 Top Edition Dual SIM TD-LTE CN 256GB RMX3031", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-04-02", + "msrp_usd": 2399, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 50.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.1, + "performance": 6.9, + "camera": 21.7, + "battery": 34.2, + "display": 53.4, + "value": 14.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.588891", + "updated_at": "2026-06-19T00:43:44.588891" +} diff --git a/site/public/v1/smartphones/realme-gt-neo-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-rmx3031/score/index.json b/site/public/v1/smartphones/realme-gt-neo-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-rmx3031/score/index.json new file mode 100644 index 00000000000..f7df97c1bcf --- /dev/null +++ b/site/public/v1/smartphones/realme-gt-neo-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-rmx3031/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.1, + "performance": 6.9, + "camera": 21.7, + "battery": 34.2, + "display": 53.4, + "value": 14.6 +} diff --git a/site/public/v1/smartphones/realme-gt-neo-flash-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-rmx3350/index.json b/site/public/v1/smartphones/realme-gt-neo-flash-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-rmx3350/index.json new file mode 100644 index 00000000000..7f8772478ad --- /dev/null +++ b/site/public/v1/smartphones/realme-gt-neo-flash-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-rmx3350/index.json @@ -0,0 +1,77 @@ +{ + "id": 3377, + "slug": "realme-gt-neo-flash-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-rmx3350", + "name": "Realme GT Neo Flash 5G 2021 Premium Edition Dual SIM TD-LTE CN 128GB RMX3350", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-06-08", + "msrp_usd": 2099, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.0, + "performance": 3.9, + "camera": 21.7, + "battery": 37.0, + "display": 53.4, + "value": 14.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.588891", + "updated_at": "2026-06-19T00:43:44.588891" +} diff --git a/site/public/v1/smartphones/realme-gt-neo-flash-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-rmx3350/score/index.json b/site/public/v1/smartphones/realme-gt-neo-flash-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-rmx3350/score/index.json new file mode 100644 index 00000000000..34d9c9b9b6e --- /dev/null +++ b/site/public/v1/smartphones/realme-gt-neo-flash-5g-2021-premium-edition-dual-sim-td-lte-cn-128gb-rmx3350/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.0, + "performance": 3.9, + "camera": 21.7, + "battery": 37.0, + "display": 53.4, + "value": 14.5 +} diff --git a/site/public/v1/smartphones/realme-gt-neo-flash-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-rmx3350/index.json b/site/public/v1/smartphones/realme-gt-neo-flash-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-rmx3350/index.json new file mode 100644 index 00000000000..69b550d05e6 --- /dev/null +++ b/site/public/v1/smartphones/realme-gt-neo-flash-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-rmx3350/index.json @@ -0,0 +1,77 @@ +{ + "id": 3378, + "slug": "realme-gt-neo-flash-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-rmx3350", + "name": "Realme GT Neo Flash 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB RMX3350", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-06-08", + "msrp_usd": 2299, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.0, + "performance": 3.9, + "camera": 21.7, + "battery": 37.0, + "display": 53.4, + "value": 14.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.588891", + "updated_at": "2026-06-19T00:43:44.588891" +} diff --git a/site/public/v1/smartphones/realme-gt-neo-flash-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-rmx3350/score/index.json b/site/public/v1/smartphones/realme-gt-neo-flash-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-rmx3350/score/index.json new file mode 100644 index 00000000000..34d9c9b9b6e --- /dev/null +++ b/site/public/v1/smartphones/realme-gt-neo-flash-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-rmx3350/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.0, + "performance": 3.9, + "camera": 21.7, + "battery": 37.0, + "display": 53.4, + "value": 14.5 +} diff --git a/site/public/v1/smartphones/realme-gt-neo-flash-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-rmx3350/index.json b/site/public/v1/smartphones/realme-gt-neo-flash-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-rmx3350/index.json new file mode 100644 index 00000000000..997212d4fa7 --- /dev/null +++ b/site/public/v1/smartphones/realme-gt-neo-flash-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-rmx3350/index.json @@ -0,0 +1,77 @@ +{ + "id": 3379, + "slug": "realme-gt-neo-flash-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-rmx3350", + "name": "Realme GT Neo Flash 5G 2021 Top Edition Dual SIM TD-LTE CN 256GB RMX3350", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-06-08", + "msrp_usd": 2499, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 186.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.8, + "performance": 6.9, + "camera": 21.7, + "battery": 37.0, + "display": 53.4, + "value": 14.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.588891", + "updated_at": "2026-06-19T00:43:44.588891" +} diff --git a/site/public/v1/smartphones/realme-gt-neo-flash-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-rmx3350/score/index.json b/site/public/v1/smartphones/realme-gt-neo-flash-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-rmx3350/score/index.json new file mode 100644 index 00000000000..a2921db0ddc --- /dev/null +++ b/site/public/v1/smartphones/realme-gt-neo-flash-5g-2021-top-edition-dual-sim-td-lte-cn-256gb-rmx3350/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.8, + "performance": 6.9, + "camera": 21.7, + "battery": 37.0, + "display": 53.4, + "value": 14.9 +} diff --git a/site/public/v1/smartphones/realme-narzo-10-dual-sim-td-lte-in-128gb-rmx2040/index.json b/site/public/v1/smartphones/realme-narzo-10-dual-sim-td-lte-in-128gb-rmx2040/index.json new file mode 100644 index 00000000000..f96486baf1a --- /dev/null +++ b/site/public/v1/smartphones/realme-narzo-10-dual-sim-td-lte-in-128gb-rmx2040/index.json @@ -0,0 +1,77 @@ +{ + "id": 3182, + "slug": "realme-narzo-10-dual-sim-td-lte-in-128gb-rmx2040", + "name": "Realme Narzo 10 Dual SIM TD-LTE IN 128GB RMX2040", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2020-05-18", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.560126", + "updated_at": "2026-06-19T00:43:44.560126" +} diff --git a/site/public/v1/smartphones/realme-narzo-10-dual-sim-td-lte-in-128gb-rmx2040/score/index.json b/site/public/v1/smartphones/realme-narzo-10-dual-sim-td-lte-in-128gb-rmx2040/score/index.json new file mode 100644 index 00000000000..f0a51b68d56 --- /dev/null +++ b/site/public/v1/smartphones/realme-narzo-10-dual-sim-td-lte-in-128gb-rmx2040/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-narzo-10a-dual-sim-td-lte-in-32-gb-rmx2020/index.json b/site/public/v1/smartphones/realme-narzo-10a-dual-sim-td-lte-in-32-gb-rmx2020/index.json new file mode 100644 index 00000000000..35a3753b83f --- /dev/null +++ b/site/public/v1/smartphones/realme-narzo-10a-dual-sim-td-lte-in-32-gb-rmx2020/index.json @@ -0,0 +1,77 @@ +{ + "id": 3183, + "slug": "realme-narzo-10a-dual-sim-td-lte-in-32-gb-rmx2020", + "name": "Realme Narzo 10A Dual SIM TD-LTE IN 32 GB RMX2020", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 61, + "slug": "helio-g70", + "name": "Helio G70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 2EEMC2", + "url": "/v1/socs/helio-g70" + }, + "release_date": "2020-05-22", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.560126", + "updated_at": "2026-06-19T00:43:44.560126" +} diff --git a/site/public/v1/smartphones/realme-narzo-10a-dual-sim-td-lte-in-32-gb-rmx2020/score/index.json b/site/public/v1/smartphones/realme-narzo-10a-dual-sim-td-lte-in-32-gb-rmx2020/score/index.json new file mode 100644 index 00000000000..e3b47d27ce7 --- /dev/null +++ b/site/public/v1/smartphones/realme-narzo-10a-dual-sim-td-lte-in-32-gb-rmx2020/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-narzo-20-dual-sim-td-lte-in-id-128gb-rmx2193/index.json b/site/public/v1/smartphones/realme-narzo-20-dual-sim-td-lte-in-id-128gb-rmx2193/index.json new file mode 100644 index 00000000000..8c006026885 --- /dev/null +++ b/site/public/v1/smartphones/realme-narzo-20-dual-sim-td-lte-in-id-128gb-rmx2193/index.json @@ -0,0 +1,77 @@ +{ + "id": 3184, + "slug": "realme-narzo-20-dual-sim-td-lte-in-id-128gb-rmx2193", + "name": "Realme Narzo 20 Dual SIM TD-LTE IN ID 128GB RMX2193", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 63, + "slug": "helio-g85", + "name": "MediaTek Helio G85", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g85" + }, + "release_date": "2020-09-28", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.560126", + "updated_at": "2026-06-19T00:43:44.560126" +} diff --git a/site/public/v1/smartphones/realme-narzo-20-dual-sim-td-lte-in-id-128gb-rmx2193/score/index.json b/site/public/v1/smartphones/realme-narzo-20-dual-sim-td-lte-in-id-128gb-rmx2193/score/index.json new file mode 100644 index 00000000000..09102a29e22 --- /dev/null +++ b/site/public/v1/smartphones/realme-narzo-20-dual-sim-td-lte-in-id-128gb-rmx2193/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-narzo-20-dual-sim-td-lte-in-id-64gb-rmx2193/index.json b/site/public/v1/smartphones/realme-narzo-20-dual-sim-td-lte-in-id-64gb-rmx2193/index.json new file mode 100644 index 00000000000..fadd7cac2ba --- /dev/null +++ b/site/public/v1/smartphones/realme-narzo-20-dual-sim-td-lte-in-id-64gb-rmx2193/index.json @@ -0,0 +1,77 @@ +{ + "id": 3185, + "slug": "realme-narzo-20-dual-sim-td-lte-in-id-64gb-rmx2193", + "name": "Realme Narzo 20 Dual SIM TD-LTE IN ID 64GB RMX2193", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 63, + "slug": "helio-g85", + "name": "MediaTek Helio G85", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g85" + }, + "release_date": "2020-09-28", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.560126", + "updated_at": "2026-06-19T00:43:44.560126" +} diff --git a/site/public/v1/smartphones/realme-narzo-20-dual-sim-td-lte-in-id-64gb-rmx2193/score/index.json b/site/public/v1/smartphones/realme-narzo-20-dual-sim-td-lte-in-id-64gb-rmx2193/score/index.json new file mode 100644 index 00000000000..09102a29e22 --- /dev/null +++ b/site/public/v1/smartphones/realme-narzo-20-dual-sim-td-lte-in-id-64gb-rmx2193/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-narzo-20-pro-dual-sim-td-lte-v1-in-id-128gb-rmx2161/index.json b/site/public/v1/smartphones/realme-narzo-20-pro-dual-sim-td-lte-v1-in-id-128gb-rmx2161/index.json new file mode 100644 index 00000000000..8c37f0c5b9f --- /dev/null +++ b/site/public/v1/smartphones/realme-narzo-20-pro-dual-sim-td-lte-v1-in-id-128gb-rmx2161/index.json @@ -0,0 +1,77 @@ +{ + "id": 3186, + "slug": "realme-narzo-20-pro-dual-sim-td-lte-v1-in-id-128gb-rmx2161", + "name": "Realme Narzo 20 Pro Dual SIM TD-LTE V1 IN ID 128GB RMX2161", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 64, + "slug": "helio-g95", + "name": "Helio G95", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 3EEMC4", + "url": "/v1/socs/helio-g95" + }, + "release_date": "2020-10-12", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.0, + "performance": 3.0, + "camera": 16.5, + "battery": 32.0, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.560126", + "updated_at": "2026-06-19T00:43:44.560126" +} diff --git a/site/public/v1/smartphones/realme-narzo-20-pro-dual-sim-td-lte-v1-in-id-128gb-rmx2161/score/index.json b/site/public/v1/smartphones/realme-narzo-20-pro-dual-sim-td-lte-v1-in-id-128gb-rmx2161/score/index.json new file mode 100644 index 00000000000..26222ed4f89 --- /dev/null +++ b/site/public/v1/smartphones/realme-narzo-20-pro-dual-sim-td-lte-v1-in-id-128gb-rmx2161/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.0, + "performance": 3.0, + "camera": 16.5, + "battery": 32.0, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-narzo-20-pro-dual-sim-td-lte-v1-in-id-64gb-rmx2161-rmx2163/index.json b/site/public/v1/smartphones/realme-narzo-20-pro-dual-sim-td-lte-v1-in-id-64gb-rmx2161-rmx2163/index.json new file mode 100644 index 00000000000..1952b14f308 --- /dev/null +++ b/site/public/v1/smartphones/realme-narzo-20-pro-dual-sim-td-lte-v1-in-id-64gb-rmx2161-rmx2163/index.json @@ -0,0 +1,77 @@ +{ + "id": 3187, + "slug": "realme-narzo-20-pro-dual-sim-td-lte-v1-in-id-64gb-rmx2161-rmx2163", + "name": "Realme Narzo 20 Pro Dual SIM TD-LTE V1 IN ID 64GB RMX2161 / RMX2163", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 64, + "slug": "helio-g95", + "name": "Helio G95", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 3EEMC4", + "url": "/v1/socs/helio-g95" + }, + "release_date": "2020-10-12", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 1.5, + "camera": 16.5, + "battery": 32.0, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.560126", + "updated_at": "2026-06-19T00:43:44.560126" +} diff --git a/site/public/v1/smartphones/realme-narzo-20-pro-dual-sim-td-lte-v1-in-id-64gb-rmx2161-rmx2163/score/index.json b/site/public/v1/smartphones/realme-narzo-20-pro-dual-sim-td-lte-v1-in-id-64gb-rmx2161-rmx2163/score/index.json new file mode 100644 index 00000000000..fd9bd9ec8cd --- /dev/null +++ b/site/public/v1/smartphones/realme-narzo-20-pro-dual-sim-td-lte-v1-in-id-64gb-rmx2161-rmx2163/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 1.5, + "camera": 16.5, + "battery": 32.0, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-narzo-20a-dual-sim-td-lte-v1-in-32gb-rmx2050/index.json b/site/public/v1/smartphones/realme-narzo-20a-dual-sim-td-lte-v1-in-32gb-rmx2050/index.json new file mode 100644 index 00000000000..a8f7e31f0a2 --- /dev/null +++ b/site/public/v1/smartphones/realme-narzo-20a-dual-sim-td-lte-v1-in-32gb-rmx2050/index.json @@ -0,0 +1,77 @@ +{ + "id": 3188, + "slug": "realme-narzo-20a-dual-sim-td-lte-v1-in-32gb-rmx2050", + "name": "Realme Narzo 20A Dual SIM TD-LTE V1 IN 32GB RMX2050", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.561124", + "updated_at": "2026-06-19T00:43:44.561124" +} diff --git a/site/public/v1/smartphones/realme-narzo-20a-dual-sim-td-lte-v1-in-32gb-rmx2050/score/index.json b/site/public/v1/smartphones/realme-narzo-20a-dual-sim-td-lte-v1-in-32gb-rmx2050/score/index.json new file mode 100644 index 00000000000..e3b47d27ce7 --- /dev/null +++ b/site/public/v1/smartphones/realme-narzo-20a-dual-sim-td-lte-v1-in-32gb-rmx2050/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-narzo-20a-dual-sim-td-lte-v1-in-64gb-rmx2050/index.json b/site/public/v1/smartphones/realme-narzo-20a-dual-sim-td-lte-v1-in-64gb-rmx2050/index.json new file mode 100644 index 00000000000..0b20031a4f9 --- /dev/null +++ b/site/public/v1/smartphones/realme-narzo-20a-dual-sim-td-lte-v1-in-64gb-rmx2050/index.json @@ -0,0 +1,77 @@ +{ + "id": 3189, + "slug": "realme-narzo-20a-dual-sim-td-lte-v1-in-64gb-rmx2050", + "name": "Realme Narzo 20A Dual SIM TD-LTE V1 IN 64GB RMX2050", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.561124", + "updated_at": "2026-06-19T00:43:44.561124" +} diff --git a/site/public/v1/smartphones/realme-narzo-20a-dual-sim-td-lte-v1-in-64gb-rmx2050/score/index.json b/site/public/v1/smartphones/realme-narzo-20a-dual-sim-td-lte-v1-in-64gb-rmx2050/score/index.json new file mode 100644 index 00000000000..e3b47d27ce7 --- /dev/null +++ b/site/public/v1/smartphones/realme-narzo-20a-dual-sim-td-lte-v1-in-64gb-rmx2050/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 30.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-narzo-30-5g-2021-premium-edition-dual-sim-td-lte-in-128gb-rmx3242/index.json b/site/public/v1/smartphones/realme-narzo-30-5g-2021-premium-edition-dual-sim-td-lte-in-128gb-rmx3242/index.json new file mode 100644 index 00000000000..979e9a50b65 --- /dev/null +++ b/site/public/v1/smartphones/realme-narzo-30-5g-2021-premium-edition-dual-sim-td-lte-in-128gb-rmx3242/index.json @@ -0,0 +1,77 @@ +{ + "id": 3380, + "slug": "realme-narzo-30-5g-2021-premium-edition-dual-sim-td-lte-in-128gb-rmx3242", + "name": "Realme Narzo 30 5G 2021 Premium Edition Dual SIM TD-LTE IN 128GB RMX3242", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-06-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.588891", + "updated_at": "2026-06-19T00:43:44.588891" +} diff --git a/site/public/v1/smartphones/realme-narzo-30-5g-2021-premium-edition-dual-sim-td-lte-in-128gb-rmx3242/score/index.json b/site/public/v1/smartphones/realme-narzo-30-5g-2021-premium-edition-dual-sim-td-lte-in-128gb-rmx3242/score/index.json new file mode 100644 index 00000000000..885ce1795be --- /dev/null +++ b/site/public/v1/smartphones/realme-narzo-30-5g-2021-premium-edition-dual-sim-td-lte-in-128gb-rmx3242/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-narzo-30-5g-2021-standard-edition-dual-sim-td-lte-in-64gb-rmx3242/index.json b/site/public/v1/smartphones/realme-narzo-30-5g-2021-standard-edition-dual-sim-td-lte-in-64gb-rmx3242/index.json new file mode 100644 index 00000000000..6745cbf4b0f --- /dev/null +++ b/site/public/v1/smartphones/realme-narzo-30-5g-2021-standard-edition-dual-sim-td-lte-in-64gb-rmx3242/index.json @@ -0,0 +1,77 @@ +{ + "id": 3381, + "slug": "realme-narzo-30-5g-2021-standard-edition-dual-sim-td-lte-in-64gb-rmx3242", + "name": "Realme Narzo 30 5G 2021 Standard Edition Dual SIM TD-LTE IN 64GB RMX3242", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.588891", + "updated_at": "2026-06-19T00:43:44.588891" +} diff --git a/site/public/v1/smartphones/realme-narzo-30-5g-2021-standard-edition-dual-sim-td-lte-in-64gb-rmx3242/score/index.json b/site/public/v1/smartphones/realme-narzo-30-5g-2021-standard-edition-dual-sim-td-lte-in-64gb-rmx3242/score/index.json new file mode 100644 index 00000000000..158756846a2 --- /dev/null +++ b/site/public/v1/smartphones/realme-narzo-30-5g-2021-standard-edition-dual-sim-td-lte-in-64gb-rmx3242/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-narzo-30-5g-2021-standard-edition-global-dual-sim-td-lte-128gb-rmx3242/index.json b/site/public/v1/smartphones/realme-narzo-30-5g-2021-standard-edition-global-dual-sim-td-lte-128gb-rmx3242/index.json new file mode 100644 index 00000000000..8411c13c205 --- /dev/null +++ b/site/public/v1/smartphones/realme-narzo-30-5g-2021-standard-edition-global-dual-sim-td-lte-128gb-rmx3242/index.json @@ -0,0 +1,77 @@ +{ + "id": 3382, + "slug": "realme-narzo-30-5g-2021-standard-edition-global-dual-sim-td-lte-128gb-rmx3242", + "name": "Realme Narzo 30 5G 2021 Standard Edition Global Dual SIM TD-LTE 128GB RMX3242", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-06-01", + "msrp_usd": 229, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": 61.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.588891", + "updated_at": "2026-06-19T00:43:44.588891" +} diff --git a/site/public/v1/smartphones/realme-narzo-30-5g-2021-standard-edition-global-dual-sim-td-lte-128gb-rmx3242/score/index.json b/site/public/v1/smartphones/realme-narzo-30-5g-2021-standard-edition-global-dual-sim-td-lte-128gb-rmx3242/score/index.json new file mode 100644 index 00000000000..c543a54fd5c --- /dev/null +++ b/site/public/v1/smartphones/realme-narzo-30-5g-2021-standard-edition-global-dual-sim-td-lte-128gb-rmx3242/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": 61.0 +} diff --git a/site/public/v1/smartphones/realme-narzo-50a-dual-sim-td-lte-in-id-128gb-rmx3430/index.json b/site/public/v1/smartphones/realme-narzo-50a-dual-sim-td-lte-in-id-128gb-rmx3430/index.json new file mode 100644 index 00000000000..4690503b546 --- /dev/null +++ b/site/public/v1/smartphones/realme-narzo-50a-dual-sim-td-lte-in-id-128gb-rmx3430/index.json @@ -0,0 +1,77 @@ +{ + "id": 3383, + "slug": "realme-narzo-50a-dual-sim-td-lte-in-id-128gb-rmx3430", + "name": "Realme Narzo 50A Dual SIM TD-LTE IN ID 128GB ‎RMX3430", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 63, + "slug": "helio-g85", + "name": "MediaTek Helio G85", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g85" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 207.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 0.0, + "camera": 17.2, + "battery": 45.6, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.589899", + "updated_at": "2026-06-19T00:43:44.589899" +} diff --git a/site/public/v1/smartphones/realme-narzo-50a-dual-sim-td-lte-in-id-128gb-rmx3430/score/index.json b/site/public/v1/smartphones/realme-narzo-50a-dual-sim-td-lte-in-id-128gb-rmx3430/score/index.json new file mode 100644 index 00000000000..794d844c8f8 --- /dev/null +++ b/site/public/v1/smartphones/realme-narzo-50a-dual-sim-td-lte-in-id-128gb-rmx3430/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 0.0, + "camera": 17.2, + "battery": 45.6, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-narzo-50a-dual-sim-td-lte-in-id-64gb-rmx3430/index.json b/site/public/v1/smartphones/realme-narzo-50a-dual-sim-td-lte-in-id-64gb-rmx3430/index.json new file mode 100644 index 00000000000..914cf9405bd --- /dev/null +++ b/site/public/v1/smartphones/realme-narzo-50a-dual-sim-td-lte-in-id-64gb-rmx3430/index.json @@ -0,0 +1,77 @@ +{ + "id": 3384, + "slug": "realme-narzo-50a-dual-sim-td-lte-in-id-64gb-rmx3430", + "name": "Realme Narzo 50A Dual SIM TD-LTE IN ID 64GB ‎RMX3430", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 63, + "slug": "helio-g85", + "name": "MediaTek Helio G85", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g85" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 207.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 0.0, + "camera": 17.2, + "battery": 45.6, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.589899", + "updated_at": "2026-06-19T00:43:44.589899" +} diff --git a/site/public/v1/smartphones/realme-narzo-50a-dual-sim-td-lte-in-id-64gb-rmx3430/score/index.json b/site/public/v1/smartphones/realme-narzo-50a-dual-sim-td-lte-in-id-64gb-rmx3430/score/index.json new file mode 100644 index 00000000000..794d844c8f8 --- /dev/null +++ b/site/public/v1/smartphones/realme-narzo-50a-dual-sim-td-lte-in-id-64gb-rmx3430/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 0.0, + "camera": 17.2, + "battery": 45.6, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-narzo-dual-sim-td-lte-v1-id-128gb-rmx2002/index.json b/site/public/v1/smartphones/realme-narzo-dual-sim-td-lte-v1-id-128gb-rmx2002/index.json new file mode 100644 index 00000000000..6fadecfcaf3 --- /dev/null +++ b/site/public/v1/smartphones/realme-narzo-dual-sim-td-lte-v1-id-128gb-rmx2002/index.json @@ -0,0 +1,77 @@ +{ + "id": 3190, + "slug": "realme-narzo-dual-sim-td-lte-v1-id-128gb-rmx2002", + "name": "Realme Narzo Dual SIM TD-LTE V1 ID 128GB RMX2002", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 50, + "slug": "helio-g90", + "name": "Helio G90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 MC4", + "url": "/v1/socs/helio-g90" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 0.0, + "camera": 16.5, + "battery": 22.3, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.561124", + "updated_at": "2026-06-19T00:43:44.561124" +} diff --git a/site/public/v1/smartphones/realme-narzo-dual-sim-td-lte-v1-id-128gb-rmx2002/score/index.json b/site/public/v1/smartphones/realme-narzo-dual-sim-td-lte-v1-id-128gb-rmx2002/score/index.json new file mode 100644 index 00000000000..363e316c73b --- /dev/null +++ b/site/public/v1/smartphones/realme-narzo-dual-sim-td-lte-v1-id-128gb-rmx2002/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 0.0, + "camera": 16.5, + "battery": 22.3, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-q-premium-edition-dual-sim-td-lte-cn-128gb-rmx1971/index.json b/site/public/v1/smartphones/realme-q-premium-edition-dual-sim-td-lte-cn-128gb-rmx1971/index.json new file mode 100644 index 00000000000..d8b2e4d64ca --- /dev/null +++ b/site/public/v1/smartphones/realme-q-premium-edition-dual-sim-td-lte-cn-128gb-rmx1971/index.json @@ -0,0 +1,76 @@ +{ + "id": 2929, + "slug": "realme-q-premium-edition-dual-sim-td-lte-cn-128gb-rmx1971", + "name": "Realme Q Premium Edition Dual SIM TD-LTE CN 128GB RMX1971", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2019-09-11", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4035, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 16.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.524922", + "updated_at": "2026-06-19T00:43:44.524922" +} diff --git a/site/public/v1/smartphones/realme-q-premium-edition-dual-sim-td-lte-cn-128gb-rmx1971/score/index.json b/site/public/v1/smartphones/realme-q-premium-edition-dual-sim-td-lte-cn-128gb-rmx1971/score/index.json new file mode 100644 index 00000000000..21f691c7103 --- /dev/null +++ b/site/public/v1/smartphones/realme-q-premium-edition-dual-sim-td-lte-cn-128gb-rmx1971/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 16.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/realme-q-premium-edition-dual-sim-td-lte-cn-64gb-rmx1971/index.json b/site/public/v1/smartphones/realme-q-premium-edition-dual-sim-td-lte-cn-64gb-rmx1971/index.json new file mode 100644 index 00000000000..3fee6133458 --- /dev/null +++ b/site/public/v1/smartphones/realme-q-premium-edition-dual-sim-td-lte-cn-64gb-rmx1971/index.json @@ -0,0 +1,76 @@ +{ + "id": 2930, + "slug": "realme-q-premium-edition-dual-sim-td-lte-cn-64gb-rmx1971", + "name": "Realme Q Premium Edition Dual SIM TD-LTE CN 64GB RMX1971", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2019-09-11", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4035, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 16.5, + "battery": 16.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.524922", + "updated_at": "2026-06-19T00:43:44.524922" +} diff --git a/site/public/v1/smartphones/realme-q-premium-edition-dual-sim-td-lte-cn-64gb-rmx1971/score/index.json b/site/public/v1/smartphones/realme-q-premium-edition-dual-sim-td-lte-cn-64gb-rmx1971/score/index.json new file mode 100644 index 00000000000..01309a59e52 --- /dev/null +++ b/site/public/v1/smartphones/realme-q-premium-edition-dual-sim-td-lte-cn-64gb-rmx1971/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 16.5, + "battery": 16.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/realme-q-standard-edition-dual-sim-td-lte-cn-64gb-rmx1971/index.json b/site/public/v1/smartphones/realme-q-standard-edition-dual-sim-td-lte-cn-64gb-rmx1971/index.json new file mode 100644 index 00000000000..a3d309274a8 --- /dev/null +++ b/site/public/v1/smartphones/realme-q-standard-edition-dual-sim-td-lte-cn-64gb-rmx1971/index.json @@ -0,0 +1,76 @@ +{ + "id": 2931, + "slug": "realme-q-standard-edition-dual-sim-td-lte-cn-64gb-rmx1971", + "name": "Realme Q Standard Edition Dual SIM TD-LTE CN 64GB RMX1971", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2019-09-11", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4035, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 0.0, + "camera": 16.5, + "battery": 16.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.524922", + "updated_at": "2026-06-19T00:43:44.524922" +} diff --git a/site/public/v1/smartphones/realme-q-standard-edition-dual-sim-td-lte-cn-64gb-rmx1971/score/index.json b/site/public/v1/smartphones/realme-q-standard-edition-dual-sim-td-lte-cn-64gb-rmx1971/score/index.json new file mode 100644 index 00000000000..654dff9986a --- /dev/null +++ b/site/public/v1/smartphones/realme-q-standard-edition-dual-sim-td-lte-cn-64gb-rmx1971/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 0.0, + "camera": 16.5, + "battery": 16.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/realme-q2-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2117/index.json b/site/public/v1/smartphones/realme-q2-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2117/index.json new file mode 100644 index 00000000000..3dbed5d6905 --- /dev/null +++ b/site/public/v1/smartphones/realme-q2-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2117/index.json @@ -0,0 +1,77 @@ +{ + "id": 3191, + "slug": "realme-q2-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2117", + "name": "Realme Q2 5G Premium Edition Dual SIM TD-LTE CN 128GB RMX2117", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2020-10-18", + "msrp_usd": 1399, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.0, + "performance": 1.5, + "camera": 16.5, + "battery": 32.9, + "display": 53.0, + "value": 20.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.562121", + "updated_at": "2026-06-19T00:43:44.562121" +} diff --git a/site/public/v1/smartphones/realme-q2-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2117/score/index.json b/site/public/v1/smartphones/realme-q2-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2117/score/index.json new file mode 100644 index 00000000000..65720798b00 --- /dev/null +++ b/site/public/v1/smartphones/realme-q2-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2117/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.0, + "performance": 1.5, + "camera": 16.5, + "battery": 32.9, + "display": 53.0, + "value": 20.8 +} diff --git a/site/public/v1/smartphones/realme-q2-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2117/index.json b/site/public/v1/smartphones/realme-q2-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2117/index.json new file mode 100644 index 00000000000..c8889edefbf --- /dev/null +++ b/site/public/v1/smartphones/realme-q2-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2117/index.json @@ -0,0 +1,77 @@ +{ + "id": 3192, + "slug": "realme-q2-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2117", + "name": "Realme Q2 5G Standard Edition Dual SIM TD-LTE CN 128GB RMX2117", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2020-10-18", + "msrp_usd": 1299, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 0.0, + "camera": 16.5, + "battery": 32.9, + "display": 53.0, + "value": 24.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.562121", + "updated_at": "2026-06-19T00:43:44.562121" +} diff --git a/site/public/v1/smartphones/realme-q2-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2117/score/index.json b/site/public/v1/smartphones/realme-q2-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2117/score/index.json new file mode 100644 index 00000000000..48e4c5c7f48 --- /dev/null +++ b/site/public/v1/smartphones/realme-q2-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2117/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 0.0, + "camera": 16.5, + "battery": 32.9, + "display": 53.0, + "value": 24.4 +} diff --git a/site/public/v1/smartphones/realme-q2-pro-5g-dual-sim-td-lte-cn-128gb-rmx2173/index.json b/site/public/v1/smartphones/realme-q2-pro-5g-dual-sim-td-lte-cn-128gb-rmx2173/index.json new file mode 100644 index 00000000000..33d96a04a06 --- /dev/null +++ b/site/public/v1/smartphones/realme-q2-pro-5g-dual-sim-td-lte-cn-128gb-rmx2173/index.json @@ -0,0 +1,77 @@ +{ + "id": 3193, + "slug": "realme-q2-pro-5g-dual-sim-td-lte-cn-128gb-rmx2173", + "name": "Realme Q2 Pro 5G Dual SIM TD-LTE CN 128GB RMX2173", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2020-10-01", + "msrp_usd": 1799, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.4, + "performance": 3.0, + "camera": 16.5, + "battery": 29.0, + "display": 41.1, + "value": 11.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.562121", + "updated_at": "2026-06-19T00:43:44.562121" +} diff --git a/site/public/v1/smartphones/realme-q2-pro-5g-dual-sim-td-lte-cn-128gb-rmx2173/score/index.json b/site/public/v1/smartphones/realme-q2-pro-5g-dual-sim-td-lte-cn-128gb-rmx2173/score/index.json new file mode 100644 index 00000000000..d1d7f213659 --- /dev/null +++ b/site/public/v1/smartphones/realme-q2-pro-5g-dual-sim-td-lte-cn-128gb-rmx2173/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.4, + "performance": 3.0, + "camera": 16.5, + "battery": 29.0, + "display": 41.1, + "value": 11.2 +} diff --git a/site/public/v1/smartphones/realme-q2i-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-rmx2201/index.json b/site/public/v1/smartphones/realme-q2i-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-rmx2201/index.json new file mode 100644 index 00000000000..13576e23f15 --- /dev/null +++ b/site/public/v1/smartphones/realme-q2i-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-rmx2201/index.json @@ -0,0 +1,76 @@ +{ + "id": 3194, + "slug": "realme-q2i-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-rmx2201", + "name": "Realme Q2i 5G 2020 Standard Edition Dual SIM TD-LTE CN 128GB RMX2201", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2020-10-01", + "msrp_usd": 1199, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 189.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": 24.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.562121", + "updated_at": "2026-06-19T00:43:44.562121" +} diff --git a/site/public/v1/smartphones/realme-q2i-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-rmx2201/score/index.json b/site/public/v1/smartphones/realme-q2i-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-rmx2201/score/index.json new file mode 100644 index 00000000000..b4c19072099 --- /dev/null +++ b/site/public/v1/smartphones/realme-q2i-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-rmx2201/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": 24.2 +} diff --git a/site/public/v1/smartphones/realme-q3i-5g-premium-edition-2021-dual-sim-td-lte-cn-128gb-rmx3042/index.json b/site/public/v1/smartphones/realme-q3i-5g-premium-edition-2021-dual-sim-td-lte-cn-128gb-rmx3042/index.json new file mode 100644 index 00000000000..fe6cb5bbfb6 --- /dev/null +++ b/site/public/v1/smartphones/realme-q3i-5g-premium-edition-2021-dual-sim-td-lte-cn-128gb-rmx3042/index.json @@ -0,0 +1,77 @@ +{ + "id": 3385, + "slug": "realme-q3i-5g-premium-edition-2021-dual-sim-td-lte-cn-128gb-rmx3042", + "name": "Realme Q3i 5G Premium Edition 2021 Dual SIM TD-LTE CN 128GB RMX3042", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-04-22", + "msrp_usd": 1199, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": 26.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.589899", + "updated_at": "2026-06-19T00:43:44.589899" +} diff --git a/site/public/v1/smartphones/realme-q3i-5g-premium-edition-2021-dual-sim-td-lte-cn-128gb-rmx3042/score/index.json b/site/public/v1/smartphones/realme-q3i-5g-premium-edition-2021-dual-sim-td-lte-cn-128gb-rmx3042/score/index.json new file mode 100644 index 00000000000..95fb61a5bbe --- /dev/null +++ b/site/public/v1/smartphones/realme-q3i-5g-premium-edition-2021-dual-sim-td-lte-cn-128gb-rmx3042/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": 26.6 +} diff --git a/site/public/v1/smartphones/realme-q3i-5g-standard-edition-2021-dual-sim-td-lte-cn-128gb-rmx3042/index.json b/site/public/v1/smartphones/realme-q3i-5g-standard-edition-2021-dual-sim-td-lte-cn-128gb-rmx3042/index.json new file mode 100644 index 00000000000..bb6bfe8f7ea --- /dev/null +++ b/site/public/v1/smartphones/realme-q3i-5g-standard-edition-2021-dual-sim-td-lte-cn-128gb-rmx3042/index.json @@ -0,0 +1,77 @@ +{ + "id": 3386, + "slug": "realme-q3i-5g-standard-edition-2021-dual-sim-td-lte-cn-128gb-rmx3042", + "name": "Realme Q3i 5G Standard Edition 2021 Dual SIM TD-LTE CN 128GB RMX3042", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-04-22", + "msrp_usd": 1099, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": 30.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.589899", + "updated_at": "2026-06-19T00:43:44.589899" +} diff --git a/site/public/v1/smartphones/realme-q3i-5g-standard-edition-2021-dual-sim-td-lte-cn-128gb-rmx3042/score/index.json b/site/public/v1/smartphones/realme-q3i-5g-standard-edition-2021-dual-sim-td-lte-cn-128gb-rmx3042/score/index.json new file mode 100644 index 00000000000..86961648f0a --- /dev/null +++ b/site/public/v1/smartphones/realme-q3i-5g-standard-edition-2021-dual-sim-td-lte-cn-128gb-rmx3042/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": 30.2 +} diff --git a/site/public/v1/smartphones/realme-u1-dual-sim-td-lte-in-32gb-rmx1833/index.json b/site/public/v1/smartphones/realme-u1-dual-sim-td-lte-in-32gb-rmx1833/index.json new file mode 100644 index 00000000000..a15163fc40c --- /dev/null +++ b/site/public/v1/smartphones/realme-u1-dual-sim-td-lte-in-32gb-rmx1833/index.json @@ -0,0 +1,76 @@ +{ + "id": 2806, + "slug": "realme-u1-dual-sim-td-lte-in-32gb-rmx1833", + "name": "Realme U1 Dual SIM TD-LTE IN 32GB RMX1833", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2018-12-06", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.32, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.6, + "performance": 0.0, + "camera": 5.3, + "battery": 7.5, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.507912", + "updated_at": "2026-06-19T00:43:44.507912" +} diff --git a/site/public/v1/smartphones/realme-u1-dual-sim-td-lte-in-32gb-rmx1833/score/index.json b/site/public/v1/smartphones/realme-u1-dual-sim-td-lte-in-32gb-rmx1833/score/index.json new file mode 100644 index 00000000000..efbfe56fffc --- /dev/null +++ b/site/public/v1/smartphones/realme-u1-dual-sim-td-lte-in-32gb-rmx1833/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.6, + "performance": 0.0, + "camera": 5.3, + "battery": 7.5, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/realme-u1-dual-sim-td-lte-in-64gb-rmx1833/index.json b/site/public/v1/smartphones/realme-u1-dual-sim-td-lte-in-64gb-rmx1833/index.json new file mode 100644 index 00000000000..e9d5dc2e30d --- /dev/null +++ b/site/public/v1/smartphones/realme-u1-dual-sim-td-lte-in-64gb-rmx1833/index.json @@ -0,0 +1,76 @@ +{ + "id": 2807, + "slug": "realme-u1-dual-sim-td-lte-in-64gb-rmx1833", + "name": "Realme U1 Dual SIM TD-LTE IN 64GB RMX1833", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2018-12-06", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.32, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.6, + "performance": 0.0, + "camera": 5.3, + "battery": 7.5, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.507912", + "updated_at": "2026-06-19T00:43:44.507912" +} diff --git a/site/public/v1/smartphones/realme-u1-dual-sim-td-lte-in-64gb-rmx1833/score/index.json b/site/public/v1/smartphones/realme-u1-dual-sim-td-lte-in-64gb-rmx1833/score/index.json new file mode 100644 index 00000000000..efbfe56fffc --- /dev/null +++ b/site/public/v1/smartphones/realme-u1-dual-sim-td-lte-in-64gb-rmx1833/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.6, + "performance": 0.0, + "camera": 5.3, + "battery": 7.5, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/realme-v11-5g-2021-dual-sim-td-lte-cn-128gb-rmx3121/index.json b/site/public/v1/smartphones/realme-v11-5g-2021-dual-sim-td-lte-cn-128gb-rmx3121/index.json new file mode 100644 index 00000000000..84f215290e5 --- /dev/null +++ b/site/public/v1/smartphones/realme-v11-5g-2021-dual-sim-td-lte-cn-128gb-rmx3121/index.json @@ -0,0 +1,77 @@ +{ + "id": 3387, + "slug": "realme-v11-5g-2021-dual-sim-td-lte-cn-128gb-rmx3121", + "name": "Realme V11 5G 2021 Dual SIM TD-LTE CN 128GB RMX3121", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-02-06", + "msrp_usd": 1199, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 17.5, + "value": 22.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.589899", + "updated_at": "2026-06-19T00:43:44.589899" +} diff --git a/site/public/v1/smartphones/realme-v11-5g-2021-dual-sim-td-lte-cn-128gb-rmx3121/score/index.json b/site/public/v1/smartphones/realme-v11-5g-2021-dual-sim-td-lte-cn-128gb-rmx3121/score/index.json new file mode 100644 index 00000000000..74fbaa0f2e6 --- /dev/null +++ b/site/public/v1/smartphones/realme-v11-5g-2021-dual-sim-td-lte-cn-128gb-rmx3121/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 17.5, + "value": 22.1 +} diff --git a/site/public/v1/smartphones/realme-v13-5g-2021-dual-sim-td-lte-cn-128gb-rmx3041/index.json b/site/public/v1/smartphones/realme-v13-5g-2021-dual-sim-td-lte-cn-128gb-rmx3041/index.json new file mode 100644 index 00000000000..36ae23a9974 --- /dev/null +++ b/site/public/v1/smartphones/realme-v13-5g-2021-dual-sim-td-lte-cn-128gb-rmx3041/index.json @@ -0,0 +1,77 @@ +{ + "id": 3388, + "slug": "realme-v13-5g-2021-dual-sim-td-lte-cn-128gb-rmx3041", + "name": "Realme V13 5G 2021 Dual SIM TD-LTE CN 128GB RMX3041", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-04-01", + "msrp_usd": 1599, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": 11.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.589899", + "updated_at": "2026-06-19T00:43:44.589899" +} diff --git a/site/public/v1/smartphones/realme-v13-5g-2021-dual-sim-td-lte-cn-128gb-rmx3041/score/index.json b/site/public/v1/smartphones/realme-v13-5g-2021-dual-sim-td-lte-cn-128gb-rmx3041/score/index.json new file mode 100644 index 00000000000..76930383622 --- /dev/null +++ b/site/public/v1/smartphones/realme-v13-5g-2021-dual-sim-td-lte-cn-128gb-rmx3041/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": 11.4 +} diff --git a/site/public/v1/smartphones/realme-v13-5g-2021-dual-sim-td-lte-cn-256gb-rmx3041/index.json b/site/public/v1/smartphones/realme-v13-5g-2021-dual-sim-td-lte-cn-256gb-rmx3041/index.json new file mode 100644 index 00000000000..aac418c6f75 --- /dev/null +++ b/site/public/v1/smartphones/realme-v13-5g-2021-dual-sim-td-lte-cn-256gb-rmx3041/index.json @@ -0,0 +1,77 @@ +{ + "id": 3389, + "slug": "realme-v13-5g-2021-dual-sim-td-lte-cn-256gb-rmx3041", + "name": "Realme V13 5G 2021 Dual SIM TD-LTE CN 256GB RMX3041", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-04-01", + "msrp_usd": 1799, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": 11.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.589899", + "updated_at": "2026-06-19T00:43:44.589899" +} diff --git a/site/public/v1/smartphones/realme-v13-5g-2021-dual-sim-td-lte-cn-256gb-rmx3041/score/index.json b/site/public/v1/smartphones/realme-v13-5g-2021-dual-sim-td-lte-cn-256gb-rmx3041/score/index.json new file mode 100644 index 00000000000..a5c3f9a6a36 --- /dev/null +++ b/site/public/v1/smartphones/realme-v13-5g-2021-dual-sim-td-lte-cn-256gb-rmx3041/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": 11.3 +} diff --git a/site/public/v1/smartphones/realme-v15-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx3092/index.json b/site/public/v1/smartphones/realme-v15-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx3092/index.json new file mode 100644 index 00000000000..bb9f0c8b6b1 --- /dev/null +++ b/site/public/v1/smartphones/realme-v15-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx3092/index.json @@ -0,0 +1,76 @@ +{ + "id": 3390, + "slug": "realme-v15-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx3092", + "name": "Realme V15 5G Premium Edition Dual SIM TD-LTE CN 128GB RMX3092", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2021-01-14", + "msrp_usd": 1999, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4230, + "charging_wired_w": 50.0, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 3.0, + "camera": 21.5, + "battery": 25.1, + "display": 46.1, + "value": 11.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.589899", + "updated_at": "2026-06-19T00:43:44.589899" +} diff --git a/site/public/v1/smartphones/realme-v15-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx3092/score/index.json b/site/public/v1/smartphones/realme-v15-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx3092/score/index.json new file mode 100644 index 00000000000..fd8a58bd43b --- /dev/null +++ b/site/public/v1/smartphones/realme-v15-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx3092/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 3.0, + "camera": 21.5, + "battery": 25.1, + "display": 46.1, + "value": 11.9 +} diff --git a/site/public/v1/smartphones/realme-v15-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx3092/index.json b/site/public/v1/smartphones/realme-v15-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx3092/index.json new file mode 100644 index 00000000000..d7007688b29 --- /dev/null +++ b/site/public/v1/smartphones/realme-v15-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx3092/index.json @@ -0,0 +1,76 @@ +{ + "id": 3391, + "slug": "realme-v15-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx3092", + "name": "Realme V15 5G Standard Edition Dual SIM TD-LTE CN 128GB RMX3092", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2021-01-14", + "msrp_usd": 1499, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4230, + "charging_wired_w": 50.0, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 1.5, + "camera": 21.5, + "battery": 25.1, + "display": 46.1, + "value": 15.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.589899", + "updated_at": "2026-06-19T00:43:44.589899" +} diff --git a/site/public/v1/smartphones/realme-v15-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx3092/score/index.json b/site/public/v1/smartphones/realme-v15-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx3092/score/index.json new file mode 100644 index 00000000000..9984b2e271b --- /dev/null +++ b/site/public/v1/smartphones/realme-v15-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx3092/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 1.5, + "camera": 21.5, + "battery": 25.1, + "display": 46.1, + "value": 15.7 +} diff --git a/site/public/v1/smartphones/realme-v3-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-rmx2200/index.json b/site/public/v1/smartphones/realme-v3-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-rmx2200/index.json new file mode 100644 index 00000000000..3566e2439ff --- /dev/null +++ b/site/public/v1/smartphones/realme-v3-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-rmx2200/index.json @@ -0,0 +1,76 @@ +{ + "id": 3195, + "slug": "realme-v3-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-rmx2200", + "name": "Realme V3 5G 2020 Premium Edition Dual SIM TD-LTE CN 128GB RMX2200", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2020-09-01", + "msrp_usd": 1599, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 189.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": 3.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": 9.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.562121", + "updated_at": "2026-06-19T00:43:44.562121" +} diff --git a/site/public/v1/smartphones/realme-v3-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-rmx2200/score/index.json b/site/public/v1/smartphones/realme-v3-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-rmx2200/score/index.json new file mode 100644 index 00000000000..277c5f90010 --- /dev/null +++ b/site/public/v1/smartphones/realme-v3-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-rmx2200/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": 3.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": 9.3 +} diff --git a/site/public/v1/smartphones/realme-v3-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-rmx2200/index.json b/site/public/v1/smartphones/realme-v3-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-rmx2200/index.json new file mode 100644 index 00000000000..4fc0bc8da21 --- /dev/null +++ b/site/public/v1/smartphones/realme-v3-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-rmx2200/index.json @@ -0,0 +1,76 @@ +{ + "id": 3196, + "slug": "realme-v3-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-rmx2200", + "name": "Realme V3 5G 2020 Standard Edition Dual SIM TD-LTE CN 128GB RMX2200", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2020-09-09", + "msrp_usd": 1399, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 189.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 1.5, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": 16.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.562121", + "updated_at": "2026-06-19T00:43:44.562121" +} diff --git a/site/public/v1/smartphones/realme-v3-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-rmx2200/score/index.json b/site/public/v1/smartphones/realme-v3-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-rmx2200/score/index.json new file mode 100644 index 00000000000..ce18f6aaaed --- /dev/null +++ b/site/public/v1/smartphones/realme-v3-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-rmx2200/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 1.5, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": 16.8 +} diff --git a/site/public/v1/smartphones/realme-v3-5g-2020-standard-edition-dual-sim-td-lte-cn-64gb-rmx2200/index.json b/site/public/v1/smartphones/realme-v3-5g-2020-standard-edition-dual-sim-td-lte-cn-64gb-rmx2200/index.json new file mode 100644 index 00000000000..63d0f053ea2 --- /dev/null +++ b/site/public/v1/smartphones/realme-v3-5g-2020-standard-edition-dual-sim-td-lte-cn-64gb-rmx2200/index.json @@ -0,0 +1,76 @@ +{ + "id": 3197, + "slug": "realme-v3-5g-2020-standard-edition-dual-sim-td-lte-cn-64gb-rmx2200", + "name": "Realme V3 5G 2020 Standard Edition Dual SIM TD-LTE CN 64GB RMX2200", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2020-09-09", + "msrp_usd": 1099, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 189.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 1.5, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": 28.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.562121", + "updated_at": "2026-06-19T00:43:44.562121" +} diff --git a/site/public/v1/smartphones/realme-v3-5g-2020-standard-edition-dual-sim-td-lte-cn-64gb-rmx2200/score/index.json b/site/public/v1/smartphones/realme-v3-5g-2020-standard-edition-dual-sim-td-lte-cn-64gb-rmx2200/score/index.json new file mode 100644 index 00000000000..fab9eb74918 --- /dev/null +++ b/site/public/v1/smartphones/realme-v3-5g-2020-standard-edition-dual-sim-td-lte-cn-64gb-rmx2200/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 1.5, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": 28.3 +} diff --git a/site/public/v1/smartphones/realme-v5-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2111-rmx2112/index.json b/site/public/v1/smartphones/realme-v5-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2111-rmx2112/index.json new file mode 100644 index 00000000000..256a7549de9 --- /dev/null +++ b/site/public/v1/smartphones/realme-v5-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2111-rmx2112/index.json @@ -0,0 +1,77 @@ +{ + "id": 3198, + "slug": "realme-v5-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2111-rmx2112", + "name": "Realme V5 5G Premium Edition Dual SIM TD-LTE CN 128GB RMX2111 / RMX2112", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2020-08-07", + "msrp_usd": 1899, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 3.0, + "camera": 16.5, + "battery": 32.9, + "display": 40.5, + "value": 11.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.563119", + "updated_at": "2026-06-19T00:43:44.563119" +} diff --git a/site/public/v1/smartphones/realme-v5-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2111-rmx2112/score/index.json b/site/public/v1/smartphones/realme-v5-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2111-rmx2112/score/index.json new file mode 100644 index 00000000000..8d47376d974 --- /dev/null +++ b/site/public/v1/smartphones/realme-v5-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2111-rmx2112/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 3.0, + "camera": 16.5, + "battery": 32.9, + "display": 40.5, + "value": 11.6 +} diff --git a/site/public/v1/smartphones/realme-v5-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2111-rmx2112/index.json b/site/public/v1/smartphones/realme-v5-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2111-rmx2112/index.json new file mode 100644 index 00000000000..aea96baa4e2 --- /dev/null +++ b/site/public/v1/smartphones/realme-v5-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2111-rmx2112/index.json @@ -0,0 +1,77 @@ +{ + "id": 3199, + "slug": "realme-v5-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2111-rmx2112", + "name": "Realme V5 5G Standard Edition Dual SIM TD-LTE CN 128GB RMX2111 / RMX2112", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2020-08-07", + "msrp_usd": 1499, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 1.5, + "camera": 16.5, + "battery": 32.9, + "display": 40.5, + "value": 15.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.563119", + "updated_at": "2026-06-19T00:43:44.563119" +} diff --git a/site/public/v1/smartphones/realme-v5-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2111-rmx2112/score/index.json b/site/public/v1/smartphones/realme-v5-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2111-rmx2112/score/index.json new file mode 100644 index 00000000000..6b152d3029e --- /dev/null +++ b/site/public/v1/smartphones/realme-v5-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2111-rmx2112/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 1.5, + "camera": 16.5, + "battery": 32.9, + "display": 40.5, + "value": 15.3 +} diff --git a/site/public/v1/smartphones/realme-x-lite-premium-edition-dual-sim-td-lte-cn-128gb-rmx1851/index.json b/site/public/v1/smartphones/realme-x-lite-premium-edition-dual-sim-td-lte-cn-128gb-rmx1851/index.json new file mode 100644 index 00000000000..df2f8a5eda3 --- /dev/null +++ b/site/public/v1/smartphones/realme-x-lite-premium-edition-dual-sim-td-lte-cn-128gb-rmx1851/index.json @@ -0,0 +1,76 @@ +{ + "id": 2932, + "slug": "realme-x-lite-premium-edition-dual-sim-td-lte-cn-128gb-rmx1851", + "name": "Realme X Lite Premium Edition Dual SIM TD-LTE CN 128GB RMX1851", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 4045, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 21.5, + "camera": 6.4, + "battery": 16.6, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.524922", + "updated_at": "2026-06-19T00:43:44.524922" +} diff --git a/site/public/v1/smartphones/realme-x-lite-premium-edition-dual-sim-td-lte-cn-128gb-rmx1851/score/index.json b/site/public/v1/smartphones/realme-x-lite-premium-edition-dual-sim-td-lte-cn-128gb-rmx1851/score/index.json new file mode 100644 index 00000000000..0d74962f08c --- /dev/null +++ b/site/public/v1/smartphones/realme-x-lite-premium-edition-dual-sim-td-lte-cn-128gb-rmx1851/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 21.5, + "camera": 6.4, + "battery": 16.6, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x-lite-premium-edition-dual-sim-td-lte-cn-64gb-rmx1851/index.json b/site/public/v1/smartphones/realme-x-lite-premium-edition-dual-sim-td-lte-cn-64gb-rmx1851/index.json new file mode 100644 index 00000000000..12f7e8b2974 --- /dev/null +++ b/site/public/v1/smartphones/realme-x-lite-premium-edition-dual-sim-td-lte-cn-64gb-rmx1851/index.json @@ -0,0 +1,76 @@ +{ + "id": 2933, + "slug": "realme-x-lite-premium-edition-dual-sim-td-lte-cn-64gb-rmx1851", + "name": "Realme X Lite Premium Edition Dual SIM TD-LTE CN 64GB RMX1851", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 4045, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 21.5, + "camera": 6.4, + "battery": 16.6, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.524922", + "updated_at": "2026-06-19T00:43:44.524922" +} diff --git a/site/public/v1/smartphones/realme-x-lite-premium-edition-dual-sim-td-lte-cn-64gb-rmx1851/score/index.json b/site/public/v1/smartphones/realme-x-lite-premium-edition-dual-sim-td-lte-cn-64gb-rmx1851/score/index.json new file mode 100644 index 00000000000..0d74962f08c --- /dev/null +++ b/site/public/v1/smartphones/realme-x-lite-premium-edition-dual-sim-td-lte-cn-64gb-rmx1851/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 21.5, + "camera": 6.4, + "battery": 16.6, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x-lite-standard-edition-dual-sim-td-lte-cn-64gb-rmx1851-realme-x-youth-edit/index.json b/site/public/v1/smartphones/realme-x-lite-standard-edition-dual-sim-td-lte-cn-64gb-rmx1851-realme-x-youth-edit/index.json new file mode 100644 index 00000000000..b096798aeeb --- /dev/null +++ b/site/public/v1/smartphones/realme-x-lite-standard-edition-dual-sim-td-lte-cn-64gb-rmx1851-realme-x-youth-edit/index.json @@ -0,0 +1,76 @@ +{ + "id": 2934, + "slug": "realme-x-lite-standard-edition-dual-sim-td-lte-cn-64gb-rmx1851-realme-x-youth-edit", + "name": "Realme X Lite Standard Edition Dual SIM TD-LTE CN 64GB RMX1851 / Realme X Youth Edit", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 4045, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 20.0, + "camera": 6.4, + "battery": 16.6, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.524922", + "updated_at": "2026-06-19T00:43:44.524922" +} diff --git a/site/public/v1/smartphones/realme-x-lite-standard-edition-dual-sim-td-lte-cn-64gb-rmx1851-realme-x-youth-edit/score/index.json b/site/public/v1/smartphones/realme-x-lite-standard-edition-dual-sim-td-lte-cn-64gb-rmx1851-realme-x-youth-edit/score/index.json new file mode 100644 index 00000000000..57bd793f7c7 --- /dev/null +++ b/site/public/v1/smartphones/realme-x-lite-standard-edition-dual-sim-td-lte-cn-64gb-rmx1851-realme-x-youth-edit/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 20.0, + "camera": 6.4, + "battery": 16.6, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x-master-edition-dual-sim-td-lte-cn-128gb-rmx1903/index.json b/site/public/v1/smartphones/realme-x-master-edition-dual-sim-td-lte-cn-128gb-rmx1903/index.json new file mode 100644 index 00000000000..a217fe68a4a --- /dev/null +++ b/site/public/v1/smartphones/realme-x-master-edition-dual-sim-td-lte-cn-128gb-rmx1903/index.json @@ -0,0 +1,76 @@ +{ + "id": 2935, + "slug": "realme-x-master-edition-dual-sim-td-lte-cn-128gb-rmx1903", + "name": "Realme X Master Edition Dual SIM TD-LTE CN 128GB RMX1903", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-08-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3765, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 23.0, + "camera": 16.5, + "battery": 12.4, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.525921", + "updated_at": "2026-06-19T00:43:44.525921" +} diff --git a/site/public/v1/smartphones/realme-x-master-edition-dual-sim-td-lte-cn-128gb-rmx1903/score/index.json b/site/public/v1/smartphones/realme-x-master-edition-dual-sim-td-lte-cn-128gb-rmx1903/score/index.json new file mode 100644 index 00000000000..a4935bed0bc --- /dev/null +++ b/site/public/v1/smartphones/realme-x-master-edition-dual-sim-td-lte-cn-128gb-rmx1903/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 23.0, + "camera": 16.5, + "battery": 12.4, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x-premium-edition-dual-sim-td-lte-apac-128gb-rmx1903/index.json b/site/public/v1/smartphones/realme-x-premium-edition-dual-sim-td-lte-apac-128gb-rmx1903/index.json new file mode 100644 index 00000000000..b83edc90f99 --- /dev/null +++ b/site/public/v1/smartphones/realme-x-premium-edition-dual-sim-td-lte-apac-128gb-rmx1903/index.json @@ -0,0 +1,76 @@ +{ + "id": 2936, + "slug": "realme-x-premium-edition-dual-sim-td-lte-apac-128gb-rmx1903", + "name": "Realme X Premium Edition Dual SIM TD-LTE APAC 128GB RMX1903", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-07-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3765, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 23.0, + "camera": 16.5, + "battery": 12.4, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.525921", + "updated_at": "2026-06-19T00:43:44.525921" +} diff --git a/site/public/v1/smartphones/realme-x-premium-edition-dual-sim-td-lte-apac-128gb-rmx1903/score/index.json b/site/public/v1/smartphones/realme-x-premium-edition-dual-sim-td-lte-apac-128gb-rmx1903/score/index.json new file mode 100644 index 00000000000..a4935bed0bc --- /dev/null +++ b/site/public/v1/smartphones/realme-x-premium-edition-dual-sim-td-lte-apac-128gb-rmx1903/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 23.0, + "camera": 16.5, + "battery": 12.4, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x-premium-edition-dual-sim-td-lte-cn-128gb-rmx1903/index.json b/site/public/v1/smartphones/realme-x-premium-edition-dual-sim-td-lte-cn-128gb-rmx1903/index.json new file mode 100644 index 00000000000..40f25b8cf76 --- /dev/null +++ b/site/public/v1/smartphones/realme-x-premium-edition-dual-sim-td-lte-cn-128gb-rmx1903/index.json @@ -0,0 +1,76 @@ +{ + "id": 2937, + "slug": "realme-x-premium-edition-dual-sim-td-lte-cn-128gb-rmx1903", + "name": "Realme X Premium Edition Dual SIM TD-LTE CN 128GB RMX1903", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-07-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3765, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 23.0, + "camera": 16.5, + "battery": 12.4, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.525921", + "updated_at": "2026-06-19T00:43:44.525921" +} diff --git a/site/public/v1/smartphones/realme-x-premium-edition-dual-sim-td-lte-cn-128gb-rmx1903/score/index.json b/site/public/v1/smartphones/realme-x-premium-edition-dual-sim-td-lte-cn-128gb-rmx1903/score/index.json new file mode 100644 index 00000000000..a4935bed0bc --- /dev/null +++ b/site/public/v1/smartphones/realme-x-premium-edition-dual-sim-td-lte-cn-128gb-rmx1903/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 23.0, + "camera": 16.5, + "battery": 12.4, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x-premium-edition-dual-sim-td-lte-cn-256gb-rmx1903/index.json b/site/public/v1/smartphones/realme-x-premium-edition-dual-sim-td-lte-cn-256gb-rmx1903/index.json new file mode 100644 index 00000000000..ea54c14f381 --- /dev/null +++ b/site/public/v1/smartphones/realme-x-premium-edition-dual-sim-td-lte-cn-256gb-rmx1903/index.json @@ -0,0 +1,76 @@ +{ + "id": 2938, + "slug": "realme-x-premium-edition-dual-sim-td-lte-cn-256gb-rmx1903", + "name": "Realme X Premium Edition Dual SIM TD-LTE CN 256GB RMX1903", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-08-18", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3765, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 23.0, + "camera": 16.5, + "battery": 12.4, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.525921", + "updated_at": "2026-06-19T00:43:44.525921" +} diff --git a/site/public/v1/smartphones/realme-x-premium-edition-dual-sim-td-lte-cn-256gb-rmx1903/score/index.json b/site/public/v1/smartphones/realme-x-premium-edition-dual-sim-td-lte-cn-256gb-rmx1903/score/index.json new file mode 100644 index 00000000000..a4935bed0bc --- /dev/null +++ b/site/public/v1/smartphones/realme-x-premium-edition-dual-sim-td-lte-cn-256gb-rmx1903/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 23.0, + "camera": 16.5, + "battery": 12.4, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x-premium-edition-dual-sim-td-lte-cn-64gb-rmx1901/index.json b/site/public/v1/smartphones/realme-x-premium-edition-dual-sim-td-lte-cn-64gb-rmx1901/index.json new file mode 100644 index 00000000000..69e149f1ffa --- /dev/null +++ b/site/public/v1/smartphones/realme-x-premium-edition-dual-sim-td-lte-cn-64gb-rmx1901/index.json @@ -0,0 +1,76 @@ +{ + "id": 2939, + "slug": "realme-x-premium-edition-dual-sim-td-lte-cn-64gb-rmx1901", + "name": "Realme X Premium Edition Dual SIM TD-LTE CN 64GB RMX1901", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3765, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.7, + "performance": 21.5, + "camera": 16.5, + "battery": 12.4, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.525921", + "updated_at": "2026-06-19T00:43:44.525921" +} diff --git a/site/public/v1/smartphones/realme-x-premium-edition-dual-sim-td-lte-cn-64gb-rmx1901/score/index.json b/site/public/v1/smartphones/realme-x-premium-edition-dual-sim-td-lte-cn-64gb-rmx1901/score/index.json new file mode 100644 index 00000000000..19f2aae7341 --- /dev/null +++ b/site/public/v1/smartphones/realme-x-premium-edition-dual-sim-td-lte-cn-64gb-rmx1901/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.7, + "performance": 21.5, + "camera": 16.5, + "battery": 12.4, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x-standard-edition-dual-sim-td-lte-apac-128gb-rmx1901/index.json b/site/public/v1/smartphones/realme-x-standard-edition-dual-sim-td-lte-apac-128gb-rmx1901/index.json new file mode 100644 index 00000000000..d0155666575 --- /dev/null +++ b/site/public/v1/smartphones/realme-x-standard-edition-dual-sim-td-lte-apac-128gb-rmx1901/index.json @@ -0,0 +1,76 @@ +{ + "id": 2940, + "slug": "realme-x-standard-edition-dual-sim-td-lte-apac-128gb-rmx1901", + "name": "Realme X Standard Edition Dual SIM TD-LTE APAC 128GB RMX1901", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-07-16", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3765, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": 20.0, + "camera": 16.5, + "battery": 12.4, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.525921", + "updated_at": "2026-06-19T00:43:44.525921" +} diff --git a/site/public/v1/smartphones/realme-x-standard-edition-dual-sim-td-lte-apac-128gb-rmx1901/score/index.json b/site/public/v1/smartphones/realme-x-standard-edition-dual-sim-td-lte-apac-128gb-rmx1901/score/index.json new file mode 100644 index 00000000000..545a0585bd8 --- /dev/null +++ b/site/public/v1/smartphones/realme-x-standard-edition-dual-sim-td-lte-apac-128gb-rmx1901/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": 20.0, + "camera": 16.5, + "battery": 12.4, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x-standard-edition-dual-sim-td-lte-cn-64gb-rmx1901/index.json b/site/public/v1/smartphones/realme-x-standard-edition-dual-sim-td-lte-cn-64gb-rmx1901/index.json new file mode 100644 index 00000000000..3d90e53c36f --- /dev/null +++ b/site/public/v1/smartphones/realme-x-standard-edition-dual-sim-td-lte-cn-64gb-rmx1901/index.json @@ -0,0 +1,76 @@ +{ + "id": 2941, + "slug": "realme-x-standard-edition-dual-sim-td-lte-cn-64gb-rmx1901", + "name": "Realme X Standard Edition Dual SIM TD-LTE CN 64GB RMX1901", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3765, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": 20.0, + "camera": 16.5, + "battery": 12.4, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.525921", + "updated_at": "2026-06-19T00:43:44.525921" +} diff --git a/site/public/v1/smartphones/realme-x-standard-edition-dual-sim-td-lte-cn-64gb-rmx1901/score/index.json b/site/public/v1/smartphones/realme-x-standard-edition-dual-sim-td-lte-cn-64gb-rmx1901/score/index.json new file mode 100644 index 00000000000..545a0585bd8 --- /dev/null +++ b/site/public/v1/smartphones/realme-x-standard-edition-dual-sim-td-lte-cn-64gb-rmx1901/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": 20.0, + "camera": 16.5, + "battery": 12.4, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x2-premium-edition-dual-sim-td-lte-cn-128gb-rmx1991/index.json b/site/public/v1/smartphones/realme-x2-premium-edition-dual-sim-td-lte-cn-128gb-rmx1991/index.json new file mode 100644 index 00000000000..c2cb54347af --- /dev/null +++ b/site/public/v1/smartphones/realme-x2-premium-edition-dual-sim-td-lte-cn-128gb-rmx1991/index.json @@ -0,0 +1,76 @@ +{ + "id": 2942, + "slug": "realme-x2-premium-edition-dual-sim-td-lte-cn-128gb-rmx1991", + "name": "Realme X2 Premium Edition Dual SIM TD-LTE CN 128GB RMX1991", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-10-29", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 3.0, + "camera": 21.7, + "battery": 17.8, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.525921", + "updated_at": "2026-06-19T00:43:44.525921" +} diff --git a/site/public/v1/smartphones/realme-x2-premium-edition-dual-sim-td-lte-cn-128gb-rmx1991/score/index.json b/site/public/v1/smartphones/realme-x2-premium-edition-dual-sim-td-lte-cn-128gb-rmx1991/score/index.json new file mode 100644 index 00000000000..1e9acbbfa41 --- /dev/null +++ b/site/public/v1/smartphones/realme-x2-premium-edition-dual-sim-td-lte-cn-128gb-rmx1991/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 3.0, + "camera": 21.7, + "battery": 17.8, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x2-premium-edition-dual-sim-td-lte-cn-256gb-rmx1991/index.json b/site/public/v1/smartphones/realme-x2-premium-edition-dual-sim-td-lte-cn-256gb-rmx1991/index.json new file mode 100644 index 00000000000..4447e378646 --- /dev/null +++ b/site/public/v1/smartphones/realme-x2-premium-edition-dual-sim-td-lte-cn-256gb-rmx1991/index.json @@ -0,0 +1,76 @@ +{ + "id": 2943, + "slug": "realme-x2-premium-edition-dual-sim-td-lte-cn-256gb-rmx1991", + "name": "Realme X2 Premium Edition Dual SIM TD-LTE CN 256GB RMX1991", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 3.0, + "camera": 21.7, + "battery": 17.8, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.526922", + "updated_at": "2026-06-19T00:43:44.526922" +} diff --git a/site/public/v1/smartphones/realme-x2-premium-edition-dual-sim-td-lte-cn-256gb-rmx1991/score/index.json b/site/public/v1/smartphones/realme-x2-premium-edition-dual-sim-td-lte-cn-256gb-rmx1991/score/index.json new file mode 100644 index 00000000000..1e9acbbfa41 --- /dev/null +++ b/site/public/v1/smartphones/realme-x2-premium-edition-dual-sim-td-lte-cn-256gb-rmx1991/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 3.0, + "camera": 21.7, + "battery": 17.8, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x2-premium-edition-global-dual-sim-td-lte-128gb-rmx1991/index.json b/site/public/v1/smartphones/realme-x2-premium-edition-global-dual-sim-td-lte-128gb-rmx1991/index.json new file mode 100644 index 00000000000..b9537ff27e2 --- /dev/null +++ b/site/public/v1/smartphones/realme-x2-premium-edition-global-dual-sim-td-lte-128gb-rmx1991/index.json @@ -0,0 +1,76 @@ +{ + "id": 2944, + "slug": "realme-x2-premium-edition-global-dual-sim-td-lte-128gb-rmx1991", + "name": "Realme X2 Premium Edition Global Dual SIM TD-LTE 128GB RMX1991", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-10-29", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 3.0, + "camera": 21.7, + "battery": 17.8, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.526922", + "updated_at": "2026-06-19T00:43:44.526922" +} diff --git a/site/public/v1/smartphones/realme-x2-premium-edition-global-dual-sim-td-lte-128gb-rmx1991/score/index.json b/site/public/v1/smartphones/realme-x2-premium-edition-global-dual-sim-td-lte-128gb-rmx1991/score/index.json new file mode 100644 index 00000000000..1e9acbbfa41 --- /dev/null +++ b/site/public/v1/smartphones/realme-x2-premium-edition-global-dual-sim-td-lte-128gb-rmx1991/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 3.0, + "camera": 21.7, + "battery": 17.8, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x2-standard-edition-dual-sim-td-lte-cn-128gb-rmx1991/index.json b/site/public/v1/smartphones/realme-x2-standard-edition-dual-sim-td-lte-cn-128gb-rmx1991/index.json new file mode 100644 index 00000000000..aad35f6931e --- /dev/null +++ b/site/public/v1/smartphones/realme-x2-standard-edition-dual-sim-td-lte-cn-128gb-rmx1991/index.json @@ -0,0 +1,76 @@ +{ + "id": 2945, + "slug": "realme-x2-standard-edition-dual-sim-td-lte-cn-128gb-rmx1991", + "name": "Realme X2 Standard Edition Dual SIM TD-LTE CN 128GB RMX1991", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-10-29", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 1.5, + "camera": 21.7, + "battery": 17.8, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.526922", + "updated_at": "2026-06-19T00:43:44.526922" +} diff --git a/site/public/v1/smartphones/realme-x2-standard-edition-dual-sim-td-lte-cn-128gb-rmx1991/score/index.json b/site/public/v1/smartphones/realme-x2-standard-edition-dual-sim-td-lte-cn-128gb-rmx1991/score/index.json new file mode 100644 index 00000000000..ba30e2c54e9 --- /dev/null +++ b/site/public/v1/smartphones/realme-x2-standard-edition-dual-sim-td-lte-cn-128gb-rmx1991/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 1.5, + "camera": 21.7, + "battery": 17.8, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x2-standard-edition-dual-sim-td-lte-cn-64gb-rmx1991/index.json b/site/public/v1/smartphones/realme-x2-standard-edition-dual-sim-td-lte-cn-64gb-rmx1991/index.json new file mode 100644 index 00000000000..f7f76a558d5 --- /dev/null +++ b/site/public/v1/smartphones/realme-x2-standard-edition-dual-sim-td-lte-cn-64gb-rmx1991/index.json @@ -0,0 +1,76 @@ +{ + "id": 2946, + "slug": "realme-x2-standard-edition-dual-sim-td-lte-cn-64gb-rmx1991", + "name": "Realme X2 Standard Edition Dual SIM TD-LTE CN 64GB RMX1991", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-10-29", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 1.5, + "camera": 21.7, + "battery": 17.8, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.526922", + "updated_at": "2026-06-19T00:43:44.526922" +} diff --git a/site/public/v1/smartphones/realme-x2-standard-edition-dual-sim-td-lte-cn-64gb-rmx1991/score/index.json b/site/public/v1/smartphones/realme-x2-standard-edition-dual-sim-td-lte-cn-64gb-rmx1991/score/index.json new file mode 100644 index 00000000000..ba30e2c54e9 --- /dev/null +++ b/site/public/v1/smartphones/realme-x2-standard-edition-dual-sim-td-lte-cn-64gb-rmx1991/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 1.5, + "camera": 21.7, + "battery": 17.8, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x2-standard-edition-global-dual-sim-td-lte-128gb-rmx1991/index.json b/site/public/v1/smartphones/realme-x2-standard-edition-global-dual-sim-td-lte-128gb-rmx1991/index.json new file mode 100644 index 00000000000..7c96056d2b7 --- /dev/null +++ b/site/public/v1/smartphones/realme-x2-standard-edition-global-dual-sim-td-lte-128gb-rmx1991/index.json @@ -0,0 +1,76 @@ +{ + "id": 2947, + "slug": "realme-x2-standard-edition-global-dual-sim-td-lte-128gb-rmx1991", + "name": "Realme X2 Standard Edition Global Dual SIM TD-LTE 128GB RMX1991", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-10-29", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 1.5, + "camera": 21.7, + "battery": 17.8, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.526922", + "updated_at": "2026-06-19T00:43:44.526922" +} diff --git a/site/public/v1/smartphones/realme-x2-standard-edition-global-dual-sim-td-lte-128gb-rmx1991/score/index.json b/site/public/v1/smartphones/realme-x2-standard-edition-global-dual-sim-td-lte-128gb-rmx1991/score/index.json new file mode 100644 index 00000000000..ba30e2c54e9 --- /dev/null +++ b/site/public/v1/smartphones/realme-x2-standard-edition-global-dual-sim-td-lte-128gb-rmx1991/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 1.5, + "camera": 21.7, + "battery": 17.8, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x2-standard-edition-global-dual-sim-td-lte-64gb-rmx1991/index.json b/site/public/v1/smartphones/realme-x2-standard-edition-global-dual-sim-td-lte-64gb-rmx1991/index.json new file mode 100644 index 00000000000..c79c9aa5d54 --- /dev/null +++ b/site/public/v1/smartphones/realme-x2-standard-edition-global-dual-sim-td-lte-64gb-rmx1991/index.json @@ -0,0 +1,76 @@ +{ + "id": 2948, + "slug": "realme-x2-standard-edition-global-dual-sim-td-lte-64gb-rmx1991", + "name": "Realme X2 Standard Edition Global Dual SIM TD-LTE 64GB RMX1991", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-10-29", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 1.5, + "camera": 21.7, + "battery": 17.8, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.526922", + "updated_at": "2026-06-19T00:43:44.526922" +} diff --git a/site/public/v1/smartphones/realme-x2-standard-edition-global-dual-sim-td-lte-64gb-rmx1991/score/index.json b/site/public/v1/smartphones/realme-x2-standard-edition-global-dual-sim-td-lte-64gb-rmx1991/score/index.json new file mode 100644 index 00000000000..ba30e2c54e9 --- /dev/null +++ b/site/public/v1/smartphones/realme-x2-standard-edition-global-dual-sim-td-lte-64gb-rmx1991/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 1.5, + "camera": 21.7, + "battery": 17.8, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x3-premium-edition-dual-sim-td-lte-v2-in-128gb-rmx2081/index.json b/site/public/v1/smartphones/realme-x3-premium-edition-dual-sim-td-lte-v2-in-128gb-rmx2081/index.json new file mode 100644 index 00000000000..f0b2ac40337 --- /dev/null +++ b/site/public/v1/smartphones/realme-x3-premium-edition-dual-sim-td-lte-v2-in-128gb-rmx2081/index.json @@ -0,0 +1,77 @@ +{ + "id": 3200, + "slug": "realme-x3-premium-edition-dual-sim-td-lte-v2-in-128gb-rmx2081", + "name": "Realme X3 Premium Edition Dual SIM TD-LTE V2 IN 128GB RMX2081", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2020-07-12", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 202.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 3.0, + "camera": 21.7, + "battery": 20.9, + "display": 52.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.563119", + "updated_at": "2026-06-19T00:43:44.563119" +} diff --git a/site/public/v1/smartphones/realme-x3-premium-edition-dual-sim-td-lte-v2-in-128gb-rmx2081/score/index.json b/site/public/v1/smartphones/realme-x3-premium-edition-dual-sim-td-lte-v2-in-128gb-rmx2081/score/index.json new file mode 100644 index 00000000000..dffa563ba4c --- /dev/null +++ b/site/public/v1/smartphones/realme-x3-premium-edition-dual-sim-td-lte-v2-in-128gb-rmx2081/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 3.0, + "camera": 21.7, + "battery": 20.9, + "display": 52.4, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x3-standard-edition-dual-sim-td-lte-v2-in-128gb-rmx2081/index.json b/site/public/v1/smartphones/realme-x3-standard-edition-dual-sim-td-lte-v2-in-128gb-rmx2081/index.json new file mode 100644 index 00000000000..54484b862ce --- /dev/null +++ b/site/public/v1/smartphones/realme-x3-standard-edition-dual-sim-td-lte-v2-in-128gb-rmx2081/index.json @@ -0,0 +1,77 @@ +{ + "id": 3201, + "slug": "realme-x3-standard-edition-dual-sim-td-lte-v2-in-128gb-rmx2081", + "name": "Realme X3 Standard Edition Dual SIM TD-LTE V2 IN 128GB RMX2081", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2020-07-12", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 202.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 1.5, + "camera": 21.7, + "battery": 20.9, + "display": 52.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.563119", + "updated_at": "2026-06-19T00:43:44.563119" +} diff --git a/site/public/v1/smartphones/realme-x3-standard-edition-dual-sim-td-lte-v2-in-128gb-rmx2081/score/index.json b/site/public/v1/smartphones/realme-x3-standard-edition-dual-sim-td-lte-v2-in-128gb-rmx2081/score/index.json new file mode 100644 index 00000000000..4788849e4be --- /dev/null +++ b/site/public/v1/smartphones/realme-x3-standard-edition-dual-sim-td-lte-v2-in-128gb-rmx2081/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 1.5, + "camera": 21.7, + "battery": 20.9, + "display": 52.4, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x3-superzoom-dual-sim-td-lte-v2-id-th-pl-128gb-rmx2085/index.json b/site/public/v1/smartphones/realme-x3-superzoom-dual-sim-td-lte-v2-id-th-pl-128gb-rmx2085/index.json new file mode 100644 index 00000000000..8700625e6f2 --- /dev/null +++ b/site/public/v1/smartphones/realme-x3-superzoom-dual-sim-td-lte-v2-id-th-pl-128gb-rmx2085/index.json @@ -0,0 +1,77 @@ +{ + "id": 3202, + "slug": "realme-x3-superzoom-dual-sim-td-lte-v2-id-th-pl-128gb-rmx2085", + "name": "Realme X3 SuperZoom Dual SIM TD-LTE V2 ID TH PL 128GB RMX2085", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2020-06-03", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 202.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 3.0, + "camera": 21.7, + "battery": 20.9, + "display": 52.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.563119", + "updated_at": "2026-06-19T00:43:44.563119" +} diff --git a/site/public/v1/smartphones/realme-x3-superzoom-dual-sim-td-lte-v2-id-th-pl-128gb-rmx2085/score/index.json b/site/public/v1/smartphones/realme-x3-superzoom-dual-sim-td-lte-v2-id-th-pl-128gb-rmx2085/score/index.json new file mode 100644 index 00000000000..dffa563ba4c --- /dev/null +++ b/site/public/v1/smartphones/realme-x3-superzoom-dual-sim-td-lte-v2-id-th-pl-128gb-rmx2085/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 3.0, + "camera": 21.7, + "battery": 20.9, + "display": 52.4, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x3-superzoom-dual-sim-td-lte-v2-id-th-pl-256gb-rmx2085/index.json b/site/public/v1/smartphones/realme-x3-superzoom-dual-sim-td-lte-v2-id-th-pl-256gb-rmx2085/index.json new file mode 100644 index 00000000000..22dab9de879 --- /dev/null +++ b/site/public/v1/smartphones/realme-x3-superzoom-dual-sim-td-lte-v2-id-th-pl-256gb-rmx2085/index.json @@ -0,0 +1,77 @@ +{ + "id": 3203, + "slug": "realme-x3-superzoom-dual-sim-td-lte-v2-id-th-pl-256gb-rmx2085", + "name": "Realme X3 SuperZoom Dual SIM TD-LTE V2 ID TH PL 256GB RMX2085", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2020-06-03", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 202.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 6.0, + "camera": 21.7, + "battery": 20.9, + "display": 52.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.563119", + "updated_at": "2026-06-19T00:43:44.563119" +} diff --git a/site/public/v1/smartphones/realme-x3-superzoom-dual-sim-td-lte-v2-id-th-pl-256gb-rmx2085/score/index.json b/site/public/v1/smartphones/realme-x3-superzoom-dual-sim-td-lte-v2-id-th-pl-256gb-rmx2085/score/index.json new file mode 100644 index 00000000000..6a510a0c83b --- /dev/null +++ b/site/public/v1/smartphones/realme-x3-superzoom-dual-sim-td-lte-v2-id-th-pl-256gb-rmx2085/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 6.0, + "camera": 21.7, + "battery": 20.9, + "display": 52.4, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x3-superzoom-global-dual-sim-td-lte-v1-128gb-rmx2086/index.json b/site/public/v1/smartphones/realme-x3-superzoom-global-dual-sim-td-lte-v1-128gb-rmx2086/index.json new file mode 100644 index 00000000000..fa4f46e6854 --- /dev/null +++ b/site/public/v1/smartphones/realme-x3-superzoom-global-dual-sim-td-lte-v1-128gb-rmx2086/index.json @@ -0,0 +1,77 @@ +{ + "id": 3204, + "slug": "realme-x3-superzoom-global-dual-sim-td-lte-v1-128gb-rmx2086", + "name": "Realme X3 SuperZoom Global Dual SIM TD-LTE V1 128GB RMX2086", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2020-06-03", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 202.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 3.0, + "camera": 21.7, + "battery": 20.9, + "display": 52.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.564119", + "updated_at": "2026-06-19T00:43:44.564119" +} diff --git a/site/public/v1/smartphones/realme-x3-superzoom-global-dual-sim-td-lte-v1-128gb-rmx2086/score/index.json b/site/public/v1/smartphones/realme-x3-superzoom-global-dual-sim-td-lte-v1-128gb-rmx2086/score/index.json new file mode 100644 index 00000000000..dffa563ba4c --- /dev/null +++ b/site/public/v1/smartphones/realme-x3-superzoom-global-dual-sim-td-lte-v1-128gb-rmx2086/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 3.0, + "camera": 21.7, + "battery": 20.9, + "display": 52.4, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x3-superzoom-global-dual-sim-td-lte-v1-256gb-rmx2086/index.json b/site/public/v1/smartphones/realme-x3-superzoom-global-dual-sim-td-lte-v1-256gb-rmx2086/index.json new file mode 100644 index 00000000000..d3afdc38d57 --- /dev/null +++ b/site/public/v1/smartphones/realme-x3-superzoom-global-dual-sim-td-lte-v1-256gb-rmx2086/index.json @@ -0,0 +1,77 @@ +{ + "id": 3205, + "slug": "realme-x3-superzoom-global-dual-sim-td-lte-v1-256gb-rmx2086", + "name": "Realme X3 SuperZoom Global Dual SIM TD-LTE V1 256GB RMX2086", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2020-06-03", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 202.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 6.0, + "camera": 21.7, + "battery": 20.9, + "display": 52.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.564119", + "updated_at": "2026-06-19T00:43:44.564119" +} diff --git a/site/public/v1/smartphones/realme-x3-superzoom-global-dual-sim-td-lte-v1-256gb-rmx2086/score/index.json b/site/public/v1/smartphones/realme-x3-superzoom-global-dual-sim-td-lte-v1-256gb-rmx2086/score/index.json new file mode 100644 index 00000000000..6a510a0c83b --- /dev/null +++ b/site/public/v1/smartphones/realme-x3-superzoom-global-dual-sim-td-lte-v1-256gb-rmx2086/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 6.0, + "camera": 21.7, + "battery": 20.9, + "display": 52.4, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x50-5g-master-edition-dual-sim-td-lte-cn-256gb-rmx2025/index.json b/site/public/v1/smartphones/realme-x50-5g-master-edition-dual-sim-td-lte-cn-256gb-rmx2025/index.json new file mode 100644 index 00000000000..9a460e3bace --- /dev/null +++ b/site/public/v1/smartphones/realme-x50-5g-master-edition-dual-sim-td-lte-cn-256gb-rmx2025/index.json @@ -0,0 +1,77 @@ +{ + "id": 3206, + "slug": "realme-x50-5g-master-edition-dual-sim-td-lte-cn-256gb-rmx2025", + "name": "Realme X50 5G Master Edition Dual SIM TD-LTE CN 256GB RMX2025", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-01-14", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 202.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 6.0, + "camera": 21.5, + "battery": 20.9, + "display": 52.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.564119", + "updated_at": "2026-06-19T00:43:44.564119" +} diff --git a/site/public/v1/smartphones/realme-x50-5g-master-edition-dual-sim-td-lte-cn-256gb-rmx2025/score/index.json b/site/public/v1/smartphones/realme-x50-5g-master-edition-dual-sim-td-lte-cn-256gb-rmx2025/score/index.json new file mode 100644 index 00000000000..2efed220e1a --- /dev/null +++ b/site/public/v1/smartphones/realme-x50-5g-master-edition-dual-sim-td-lte-cn-256gb-rmx2025/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 6.0, + "camera": 21.5, + "battery": 20.9, + "display": 52.6, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x50-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx2025-rmx2025cn/index.json b/site/public/v1/smartphones/realme-x50-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx2025-rmx2025cn/index.json new file mode 100644 index 00000000000..ed16a6a3b98 --- /dev/null +++ b/site/public/v1/smartphones/realme-x50-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx2025-rmx2025cn/index.json @@ -0,0 +1,77 @@ +{ + "id": 3207, + "slug": "realme-x50-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx2025-rmx2025cn", + "name": "Realme X50 5G Premium Edition Dual SIM TD-LTE CN 256GB RMX2025 / RMX2025CN", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-01-07", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 202.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 6.0, + "camera": 21.5, + "battery": 20.9, + "display": 52.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.564119", + "updated_at": "2026-06-19T00:43:44.564119" +} diff --git a/site/public/v1/smartphones/realme-x50-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx2025-rmx2025cn/score/index.json b/site/public/v1/smartphones/realme-x50-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx2025-rmx2025cn/score/index.json new file mode 100644 index 00000000000..2efed220e1a --- /dev/null +++ b/site/public/v1/smartphones/realme-x50-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx2025-rmx2025cn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 6.0, + "camera": 21.5, + "battery": 20.9, + "display": 52.6, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x50-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2025-rmx2051/index.json b/site/public/v1/smartphones/realme-x50-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2025-rmx2051/index.json new file mode 100644 index 00000000000..86604ccd7f2 --- /dev/null +++ b/site/public/v1/smartphones/realme-x50-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2025-rmx2051/index.json @@ -0,0 +1,77 @@ +{ + "id": 3208, + "slug": "realme-x50-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2025-rmx2051", + "name": "Realme X50 5G Standard Edition Dual SIM TD-LTE CN 128GB RMX2025 / RMX2051", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-01-07", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 202.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 3.0, + "camera": 21.5, + "battery": 20.9, + "display": 52.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.564119", + "updated_at": "2026-06-19T00:43:44.564119" +} diff --git a/site/public/v1/smartphones/realme-x50-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2025-rmx2051/score/index.json b/site/public/v1/smartphones/realme-x50-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2025-rmx2051/score/index.json new file mode 100644 index 00000000000..3bde31b6219 --- /dev/null +++ b/site/public/v1/smartphones/realme-x50-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2025-rmx2051/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 3.0, + "camera": 21.5, + "battery": 20.9, + "display": 52.6, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x50-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx2025/index.json b/site/public/v1/smartphones/realme-x50-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx2025/index.json new file mode 100644 index 00000000000..61ea17801b0 --- /dev/null +++ b/site/public/v1/smartphones/realme-x50-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx2025/index.json @@ -0,0 +1,77 @@ +{ + "id": 3209, + "slug": "realme-x50-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx2025", + "name": "Realme X50 5G Standard Edition Dual SIM TD-LTE CN 256GB RMX2025", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-01-07", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 202.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 1.5, + "camera": 21.5, + "battery": 20.9, + "display": 52.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.564119", + "updated_at": "2026-06-19T00:43:44.565119" +} diff --git a/site/public/v1/smartphones/realme-x50-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx2025/score/index.json b/site/public/v1/smartphones/realme-x50-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx2025/score/index.json new file mode 100644 index 00000000000..5d425aba4b2 --- /dev/null +++ b/site/public/v1/smartphones/realme-x50-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx2025/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 1.5, + "camera": 21.5, + "battery": 20.9, + "display": 52.6, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x50-5g-standard-edition-dual-sim-td-lte-cn-64gb-rmx2025/index.json b/site/public/v1/smartphones/realme-x50-5g-standard-edition-dual-sim-td-lte-cn-64gb-rmx2025/index.json new file mode 100644 index 00000000000..87b2e3fb6b0 --- /dev/null +++ b/site/public/v1/smartphones/realme-x50-5g-standard-edition-dual-sim-td-lte-cn-64gb-rmx2025/index.json @@ -0,0 +1,77 @@ +{ + "id": 3210, + "slug": "realme-x50-5g-standard-edition-dual-sim-td-lte-cn-64gb-rmx2025", + "name": "Realme X50 5G Standard Edition Dual SIM TD-LTE CN 64GB RMX2025", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-01-07", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 202.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 1.5, + "camera": 21.5, + "battery": 20.9, + "display": 52.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.565119", + "updated_at": "2026-06-19T00:43:44.565119" +} diff --git a/site/public/v1/smartphones/realme-x50-5g-standard-edition-dual-sim-td-lte-cn-64gb-rmx2025/score/index.json b/site/public/v1/smartphones/realme-x50-5g-standard-edition-dual-sim-td-lte-cn-64gb-rmx2025/score/index.json new file mode 100644 index 00000000000..5d425aba4b2 --- /dev/null +++ b/site/public/v1/smartphones/realme-x50-5g-standard-edition-dual-sim-td-lte-cn-64gb-rmx2025/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 1.5, + "camera": 21.5, + "battery": 20.9, + "display": 52.6, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x50-pro-5g-player-premium-edition-dual-sim-td-lte-cn-128gb-rmx2072/index.json b/site/public/v1/smartphones/realme-x50-pro-5g-player-premium-edition-dual-sim-td-lte-cn-128gb-rmx2072/index.json new file mode 100644 index 00000000000..70bbaf4791b --- /dev/null +++ b/site/public/v1/smartphones/realme-x50-pro-5g-player-premium-edition-dual-sim-td-lte-cn-128gb-rmx2072/index.json @@ -0,0 +1,77 @@ +{ + "id": 3211, + "slug": "realme-x50-pro-5g-player-premium-edition-dual-sim-td-lte-cn-128gb-rmx2072", + "name": "Realme X50 Pro 5G Player Premium Edition Dual SIM TD-LTE CN 128GB RMX2072", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-05-31", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 209.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 3.0, + "camera": 16.5, + "battery": 27.5, + "display": 40.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.565119", + "updated_at": "2026-06-19T00:43:44.565119" +} diff --git a/site/public/v1/smartphones/realme-x50-pro-5g-player-premium-edition-dual-sim-td-lte-cn-128gb-rmx2072/score/index.json b/site/public/v1/smartphones/realme-x50-pro-5g-player-premium-edition-dual-sim-td-lte-cn-128gb-rmx2072/score/index.json new file mode 100644 index 00000000000..65c4219fea9 --- /dev/null +++ b/site/public/v1/smartphones/realme-x50-pro-5g-player-premium-edition-dual-sim-td-lte-cn-128gb-rmx2072/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 3.0, + "camera": 16.5, + "battery": 27.5, + "display": 40.9, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x50-pro-5g-player-standard-edition-dual-sim-td-lte-cn-128gb-rmx2072/index.json b/site/public/v1/smartphones/realme-x50-pro-5g-player-standard-edition-dual-sim-td-lte-cn-128gb-rmx2072/index.json new file mode 100644 index 00000000000..a689a57526b --- /dev/null +++ b/site/public/v1/smartphones/realme-x50-pro-5g-player-standard-edition-dual-sim-td-lte-cn-128gb-rmx2072/index.json @@ -0,0 +1,77 @@ +{ + "id": 3212, + "slug": "realme-x50-pro-5g-player-standard-edition-dual-sim-td-lte-cn-128gb-rmx2072", + "name": "Realme X50 Pro 5G Player Standard Edition Dual SIM TD-LTE CN 128GB RMX2072", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-05-31", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 209.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 1.5, + "camera": 16.5, + "battery": 27.5, + "display": 40.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.565119", + "updated_at": "2026-06-19T00:43:44.565119" +} diff --git a/site/public/v1/smartphones/realme-x50-pro-5g-player-standard-edition-dual-sim-td-lte-cn-128gb-rmx2072/score/index.json b/site/public/v1/smartphones/realme-x50-pro-5g-player-standard-edition-dual-sim-td-lte-cn-128gb-rmx2072/score/index.json new file mode 100644 index 00000000000..134038455f9 --- /dev/null +++ b/site/public/v1/smartphones/realme-x50-pro-5g-player-standard-edition-dual-sim-td-lte-cn-128gb-rmx2072/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 1.5, + "camera": 16.5, + "battery": 27.5, + "display": 40.9, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x50-pro-5g-player-top-edition-dual-sim-td-lte-cn-128gb-rmx2072/index.json b/site/public/v1/smartphones/realme-x50-pro-5g-player-top-edition-dual-sim-td-lte-cn-128gb-rmx2072/index.json new file mode 100644 index 00000000000..6cfb93c098c --- /dev/null +++ b/site/public/v1/smartphones/realme-x50-pro-5g-player-top-edition-dual-sim-td-lte-cn-128gb-rmx2072/index.json @@ -0,0 +1,77 @@ +{ + "id": 3213, + "slug": "realme-x50-pro-5g-player-top-edition-dual-sim-td-lte-cn-128gb-rmx2072", + "name": "Realme X50 Pro 5G Player Top Edition Dual SIM TD-LTE CN 128GB RMX2072", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-05-31", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 209.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.7, + "performance": 6.0, + "camera": 16.5, + "battery": 27.5, + "display": 40.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.565119", + "updated_at": "2026-06-19T00:43:44.565119" +} diff --git a/site/public/v1/smartphones/realme-x50-pro-5g-player-top-edition-dual-sim-td-lte-cn-128gb-rmx2072/score/index.json b/site/public/v1/smartphones/realme-x50-pro-5g-player-top-edition-dual-sim-td-lte-cn-128gb-rmx2072/score/index.json new file mode 100644 index 00000000000..8c614cf91d5 --- /dev/null +++ b/site/public/v1/smartphones/realme-x50-pro-5g-player-top-edition-dual-sim-td-lte-cn-128gb-rmx2072/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.7, + "performance": 6.0, + "camera": 16.5, + "battery": 27.5, + "display": 40.9, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x50-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx2071/index.json b/site/public/v1/smartphones/realme-x50-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx2071/index.json new file mode 100644 index 00000000000..e07ec0cebda --- /dev/null +++ b/site/public/v1/smartphones/realme-x50-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx2071/index.json @@ -0,0 +1,77 @@ +{ + "id": 3214, + "slug": "realme-x50-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx2071", + "name": "Realme X50 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB RMX2071", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-12", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4200, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 207.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.0, + "performance": 6.0, + "camera": 21.5, + "battery": 27.5, + "display": 40.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.565119", + "updated_at": "2026-06-19T00:43:44.565119" +} diff --git a/site/public/v1/smartphones/realme-x50-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx2071/score/index.json b/site/public/v1/smartphones/realme-x50-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx2071/score/index.json new file mode 100644 index 00000000000..8aa871a6613 --- /dev/null +++ b/site/public/v1/smartphones/realme-x50-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-rmx2071/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.0, + "performance": 6.0, + "camera": 21.5, + "battery": 27.5, + "display": 40.9, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x50-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-rmx2076/index.json b/site/public/v1/smartphones/realme-x50-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-rmx2076/index.json new file mode 100644 index 00000000000..1ba87d51f1a --- /dev/null +++ b/site/public/v1/smartphones/realme-x50-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-rmx2076/index.json @@ -0,0 +1,77 @@ +{ + "id": 3215, + "slug": "realme-x50-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-rmx2076", + "name": "Realme X50 Pro 5G Premium Edition Dual SIM TD-LTE IN 256GB RMX2076", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4200, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 207.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.0, + "performance": 6.0, + "camera": 21.5, + "battery": 27.5, + "display": 40.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.565119", + "updated_at": "2026-06-19T00:43:44.565119" +} diff --git a/site/public/v1/smartphones/realme-x50-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-rmx2076/score/index.json b/site/public/v1/smartphones/realme-x50-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-rmx2076/score/index.json new file mode 100644 index 00000000000..8aa871a6613 --- /dev/null +++ b/site/public/v1/smartphones/realme-x50-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-rmx2076/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.0, + "performance": 6.0, + "camera": 21.5, + "battery": 27.5, + "display": 40.9, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x50-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-rmx2075/index.json b/site/public/v1/smartphones/realme-x50-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-rmx2075/index.json new file mode 100644 index 00000000000..9abee426d16 --- /dev/null +++ b/site/public/v1/smartphones/realme-x50-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-rmx2075/index.json @@ -0,0 +1,77 @@ +{ + "id": 3216, + "slug": "realme-x50-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-rmx2075", + "name": "Realme X50 Pro 5G Premium Edition Global Dual SIM TD-LTE 128GB RMX2075", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-05-04", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4200, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 207.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 3.0, + "camera": 21.5, + "battery": 27.5, + "display": 40.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.566119", + "updated_at": "2026-06-19T00:43:44.566119" +} diff --git a/site/public/v1/smartphones/realme-x50-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-rmx2075/score/index.json b/site/public/v1/smartphones/realme-x50-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-rmx2075/score/index.json new file mode 100644 index 00000000000..206e80bc612 --- /dev/null +++ b/site/public/v1/smartphones/realme-x50-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-rmx2075/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 3.0, + "camera": 21.5, + "battery": 27.5, + "display": 40.9, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x50-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-rmx2075/index.json b/site/public/v1/smartphones/realme-x50-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-rmx2075/index.json new file mode 100644 index 00000000000..318d634f9f0 --- /dev/null +++ b/site/public/v1/smartphones/realme-x50-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-rmx2075/index.json @@ -0,0 +1,77 @@ +{ + "id": 3217, + "slug": "realme-x50-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-rmx2075", + "name": "Realme X50 Pro 5G Premium Edition Global Dual SIM TD-LTE 256GB RMX2075", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-05-04", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4200, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 207.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.0, + "performance": 6.0, + "camera": 21.5, + "battery": 27.5, + "display": 40.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.566119", + "updated_at": "2026-06-19T00:43:44.566119" +} diff --git a/site/public/v1/smartphones/realme-x50-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-rmx2075/score/index.json b/site/public/v1/smartphones/realme-x50-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-rmx2075/score/index.json new file mode 100644 index 00000000000..8aa871a6613 --- /dev/null +++ b/site/public/v1/smartphones/realme-x50-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-rmx2075/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.0, + "performance": 6.0, + "camera": 21.5, + "battery": 27.5, + "display": 40.9, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2071/index.json b/site/public/v1/smartphones/realme-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2071/index.json new file mode 100644 index 00000000000..e51927d211c --- /dev/null +++ b/site/public/v1/smartphones/realme-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2071/index.json @@ -0,0 +1,77 @@ +{ + "id": 3218, + "slug": "realme-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2071", + "name": "Realme X50 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB RMX2071", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-12", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4200, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 207.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 3.0, + "camera": 21.5, + "battery": 27.5, + "display": 40.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.566119", + "updated_at": "2026-06-19T00:43:44.566119" +} diff --git a/site/public/v1/smartphones/realme-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2071/score/index.json b/site/public/v1/smartphones/realme-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2071/score/index.json new file mode 100644 index 00000000000..206e80bc612 --- /dev/null +++ b/site/public/v1/smartphones/realme-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2071/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 3.0, + "camera": 21.5, + "battery": 27.5, + "display": 40.9, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx2071/index.json b/site/public/v1/smartphones/realme-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx2071/index.json new file mode 100644 index 00000000000..5e1bc086cac --- /dev/null +++ b/site/public/v1/smartphones/realme-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx2071/index.json @@ -0,0 +1,77 @@ +{ + "id": 3219, + "slug": "realme-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx2071", + "name": "Realme X50 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB RMX2071", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-12", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4200, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 207.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 3.0, + "camera": 21.5, + "battery": 27.5, + "display": 40.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.566119", + "updated_at": "2026-06-19T00:43:44.566119" +} diff --git a/site/public/v1/smartphones/realme-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx2071/score/index.json b/site/public/v1/smartphones/realme-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx2071/score/index.json new file mode 100644 index 00000000000..206e80bc612 --- /dev/null +++ b/site/public/v1/smartphones/realme-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-rmx2071/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 3.0, + "camera": 21.5, + "battery": 27.5, + "display": 40.9, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x50-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-rmx2076/index.json b/site/public/v1/smartphones/realme-x50-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-rmx2076/index.json new file mode 100644 index 00000000000..c8af575664d --- /dev/null +++ b/site/public/v1/smartphones/realme-x50-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-rmx2076/index.json @@ -0,0 +1,77 @@ +{ + "id": 3220, + "slug": "realme-x50-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-rmx2076", + "name": "Realme X50 Pro 5G Standard Edition Dual SIM TD-LTE IN 128GB RMX2076", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4200, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 207.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 1.5, + "camera": 21.5, + "battery": 27.5, + "display": 40.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.566119", + "updated_at": "2026-06-19T00:43:44.566119" +} diff --git a/site/public/v1/smartphones/realme-x50-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-rmx2076/score/index.json b/site/public/v1/smartphones/realme-x50-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-rmx2076/score/index.json new file mode 100644 index 00000000000..ea77ec37ed5 --- /dev/null +++ b/site/public/v1/smartphones/realme-x50-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-rmx2076/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 1.5, + "camera": 21.5, + "battery": 27.5, + "display": 40.9, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x50-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-rmx2075/index.json b/site/public/v1/smartphones/realme-x50-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-rmx2075/index.json new file mode 100644 index 00000000000..f8e8320960e --- /dev/null +++ b/site/public/v1/smartphones/realme-x50-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-rmx2075/index.json @@ -0,0 +1,77 @@ +{ + "id": 3221, + "slug": "realme-x50-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-rmx2075", + "name": "Realme X50 Pro 5G Standard Edition Global Dual SIM TD-LTE 128GB RMX2075", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4200, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 207.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 1.5, + "camera": 21.5, + "battery": 27.5, + "display": 40.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.566119", + "updated_at": "2026-06-19T00:43:44.566119" +} diff --git a/site/public/v1/smartphones/realme-x50-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-rmx2075/score/index.json b/site/public/v1/smartphones/realme-x50-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-rmx2075/score/index.json new file mode 100644 index 00000000000..ea77ec37ed5 --- /dev/null +++ b/site/public/v1/smartphones/realme-x50-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-rmx2075/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 1.5, + "camera": 21.5, + "battery": 27.5, + "display": 40.9, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x50m-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2142/index.json b/site/public/v1/smartphones/realme-x50m-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2142/index.json new file mode 100644 index 00000000000..6e1932400bf --- /dev/null +++ b/site/public/v1/smartphones/realme-x50m-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2142/index.json @@ -0,0 +1,77 @@ +{ + "id": 3222, + "slug": "realme-x50m-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2142", + "name": "Realme X50m 5G Premium Edition Dual SIM TD-LTE CN 128GB RMX2142", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-04-29", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 3.0, + "camera": 16.5, + "battery": 20.9, + "display": 52.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.567120", + "updated_at": "2026-06-19T00:43:44.567120" +} diff --git a/site/public/v1/smartphones/realme-x50m-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2142/score/index.json b/site/public/v1/smartphones/realme-x50m-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2142/score/index.json new file mode 100644 index 00000000000..177afd4803f --- /dev/null +++ b/site/public/v1/smartphones/realme-x50m-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2142/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 3.0, + "camera": 16.5, + "battery": 20.9, + "display": 52.6, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x50m-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2142/index.json b/site/public/v1/smartphones/realme-x50m-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2142/index.json new file mode 100644 index 00000000000..5f43cd37de3 --- /dev/null +++ b/site/public/v1/smartphones/realme-x50m-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2142/index.json @@ -0,0 +1,77 @@ +{ + "id": 3223, + "slug": "realme-x50m-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2142", + "name": "Realme X50m 5G Standard Edition Dual SIM TD-LTE CN 128GB RMX2142", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-04-29", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 1.5, + "camera": 16.5, + "battery": 20.9, + "display": 52.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.567120", + "updated_at": "2026-06-19T00:43:44.567120" +} diff --git a/site/public/v1/smartphones/realme-x50m-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2142/score/index.json b/site/public/v1/smartphones/realme-x50m-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2142/score/index.json new file mode 100644 index 00000000000..e5c55322270 --- /dev/null +++ b/site/public/v1/smartphones/realme-x50m-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2142/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 1.5, + "camera": 16.5, + "battery": 20.9, + "display": 52.6, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x50t-5g-dual-sim-td-lte-cn-128gb-rmx2052-rmx2052cn/index.json b/site/public/v1/smartphones/realme-x50t-5g-dual-sim-td-lte-cn-128gb-rmx2052-rmx2052cn/index.json new file mode 100644 index 00000000000..6913d328fe6 --- /dev/null +++ b/site/public/v1/smartphones/realme-x50t-5g-dual-sim-td-lte-cn-128gb-rmx2052-rmx2052cn/index.json @@ -0,0 +1,77 @@ +{ + "id": 3224, + "slug": "realme-x50t-5g-dual-sim-td-lte-cn-128gb-rmx2052-rmx2052cn", + "name": "Realme X50t 5G Dual SIM TD-LTE CN 128GB RMX2052 / RMX2052CN", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-06-21", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4100, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 3.0, + "camera": 16.5, + "battery": 19.4, + "display": 52.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.567120", + "updated_at": "2026-06-19T00:43:44.567120" +} diff --git a/site/public/v1/smartphones/realme-x50t-5g-dual-sim-td-lte-cn-128gb-rmx2052-rmx2052cn/score/index.json b/site/public/v1/smartphones/realme-x50t-5g-dual-sim-td-lte-cn-128gb-rmx2052-rmx2052cn/score/index.json new file mode 100644 index 00000000000..b1121941e59 --- /dev/null +++ b/site/public/v1/smartphones/realme-x50t-5g-dual-sim-td-lte-cn-128gb-rmx2052-rmx2052cn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 3.0, + "camera": 16.5, + "battery": 19.4, + "display": 52.6, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x7-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2176/index.json b/site/public/v1/smartphones/realme-x7-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2176/index.json new file mode 100644 index 00000000000..238835266c6 --- /dev/null +++ b/site/public/v1/smartphones/realme-x7-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2176/index.json @@ -0,0 +1,76 @@ +{ + "id": 3225, + "slug": "realme-x7-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2176", + "name": "Realme X7 5G Premium Edition Dual SIM TD-LTE CN 128GB RMX2176", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2020-09-01", + "msrp_usd": 2399, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.9, + "performance": 3.0, + "camera": 21.5, + "battery": 29.0, + "display": 46.1, + "value": 12.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.567120", + "updated_at": "2026-06-19T00:43:44.567120" +} diff --git a/site/public/v1/smartphones/realme-x7-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2176/score/index.json b/site/public/v1/smartphones/realme-x7-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2176/score/index.json new file mode 100644 index 00000000000..8831b9d0677 --- /dev/null +++ b/site/public/v1/smartphones/realme-x7-5g-premium-edition-dual-sim-td-lte-cn-128gb-rmx2176/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.9, + "performance": 3.0, + "camera": 21.5, + "battery": 29.0, + "display": 46.1, + "value": 12.4 +} diff --git a/site/public/v1/smartphones/realme-x7-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2176/index.json b/site/public/v1/smartphones/realme-x7-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2176/index.json new file mode 100644 index 00000000000..f7cf961675f --- /dev/null +++ b/site/public/v1/smartphones/realme-x7-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2176/index.json @@ -0,0 +1,76 @@ +{ + "id": 3226, + "slug": "realme-x7-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2176", + "name": "Realme X7 5G Standard Edition Dual SIM TD-LTE CN 128GB RMX2176", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2020-09-01", + "msrp_usd": 1799, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 1.5, + "camera": 21.5, + "battery": 29.0, + "display": 46.1, + "value": 12.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.567120", + "updated_at": "2026-06-19T00:43:44.567120" +} diff --git a/site/public/v1/smartphones/realme-x7-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2176/score/index.json b/site/public/v1/smartphones/realme-x7-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2176/score/index.json new file mode 100644 index 00000000000..78b574394dc --- /dev/null +++ b/site/public/v1/smartphones/realme-x7-5g-standard-edition-dual-sim-td-lte-cn-128gb-rmx2176/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 1.5, + "camera": 21.5, + "battery": 29.0, + "display": 46.1, + "value": 12.2 +} diff --git a/site/public/v1/smartphones/realme-x7-max-5g-2021-premium-edition-dual-sim-td-lte-in-128gb/index.json b/site/public/v1/smartphones/realme-x7-max-5g-2021-premium-edition-dual-sim-td-lte-in-128gb/index.json new file mode 100644 index 00000000000..7748f5f8935 --- /dev/null +++ b/site/public/v1/smartphones/realme-x7-max-5g-2021-premium-edition-dual-sim-td-lte-in-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 3392, + "slug": "realme-x7-max-5g-2021-premium-edition-dual-sim-td-lte-in-128gb", + "name": "Realme X7 Max 5G 2021 Premium Edition Dual SIM TD-LTE IN 128GB", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-06-02", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.0, + "performance": 3.9, + "camera": 21.7, + "battery": 37.0, + "display": 53.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.590896", + "updated_at": "2026-06-19T00:43:44.590896" +} diff --git a/site/public/v1/smartphones/realme-x7-max-5g-2021-premium-edition-dual-sim-td-lte-in-128gb/score/index.json b/site/public/v1/smartphones/realme-x7-max-5g-2021-premium-edition-dual-sim-td-lte-in-128gb/score/index.json new file mode 100644 index 00000000000..139b29dbf9f --- /dev/null +++ b/site/public/v1/smartphones/realme-x7-max-5g-2021-premium-edition-dual-sim-td-lte-in-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.0, + "performance": 3.9, + "camera": 21.7, + "battery": 37.0, + "display": 53.4, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x7-max-5g-2021-top-edition-dual-sim-td-lte-in-256gb-rmx3031/index.json b/site/public/v1/smartphones/realme-x7-max-5g-2021-top-edition-dual-sim-td-lte-in-256gb-rmx3031/index.json new file mode 100644 index 00000000000..f2bac61db76 --- /dev/null +++ b/site/public/v1/smartphones/realme-x7-max-5g-2021-top-edition-dual-sim-td-lte-in-256gb-rmx3031/index.json @@ -0,0 +1,77 @@ +{ + "id": 3393, + "slug": "realme-x7-max-5g-2021-top-edition-dual-sim-td-lte-in-256gb-rmx3031", + "name": "Realme X7 Max 5G 2021 Top Edition Dual SIM TD-LTE IN 256GB RMX3031", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-06-02", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.8, + "performance": 6.9, + "camera": 21.7, + "battery": 37.0, + "display": 53.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.590896", + "updated_at": "2026-06-19T00:43:44.590896" +} diff --git a/site/public/v1/smartphones/realme-x7-max-5g-2021-top-edition-dual-sim-td-lte-in-256gb-rmx3031/score/index.json b/site/public/v1/smartphones/realme-x7-max-5g-2021-top-edition-dual-sim-td-lte-in-256gb-rmx3031/score/index.json new file mode 100644 index 00000000000..c96eaaeb1bb --- /dev/null +++ b/site/public/v1/smartphones/realme-x7-max-5g-2021-top-edition-dual-sim-td-lte-in-256gb-rmx3031/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.8, + "performance": 6.9, + "camera": 21.7, + "battery": 37.0, + "display": 53.4, + "value": null +} diff --git a/site/public/v1/smartphones/realme-x7-pro-5g-dual-sim-td-lte-cn-128gb-rmx2121/index.json b/site/public/v1/smartphones/realme-x7-pro-5g-dual-sim-td-lte-cn-128gb-rmx2121/index.json new file mode 100644 index 00000000000..63a2bb833c2 --- /dev/null +++ b/site/public/v1/smartphones/realme-x7-pro-5g-dual-sim-td-lte-cn-128gb-rmx2121/index.json @@ -0,0 +1,77 @@ +{ + "id": 3227, + "slug": "realme-x7-pro-5g-dual-sim-td-lte-cn-128gb-rmx2121", + "name": "Realme X7 Pro 5G Dual SIM TD-LTE CN 128GB RMX2121", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 53, + "slug": "dimensity-1000-plus", + "name": "Dimensity 1000 Plus", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1000-plus" + }, + "release_date": "2020-09-01", + "msrp_usd": 2499, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 3.0, + "camera": 21.7, + "battery": 32.0, + "display": 52.7, + "value": 13.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.567120", + "updated_at": "2026-06-19T00:43:44.567120" +} diff --git a/site/public/v1/smartphones/realme-x7-pro-5g-dual-sim-td-lte-cn-128gb-rmx2121/score/index.json b/site/public/v1/smartphones/realme-x7-pro-5g-dual-sim-td-lte-cn-128gb-rmx2121/score/index.json new file mode 100644 index 00000000000..57daf5a3fcc --- /dev/null +++ b/site/public/v1/smartphones/realme-x7-pro-5g-dual-sim-td-lte-cn-128gb-rmx2121/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 3.0, + "camera": 21.7, + "battery": 32.0, + "display": 52.7, + "value": 13.7 +} diff --git a/site/public/v1/smartphones/realme-x7-pro-5g-dual-sim-td-lte-cn-256gb-rmx2121/index.json b/site/public/v1/smartphones/realme-x7-pro-5g-dual-sim-td-lte-cn-256gb-rmx2121/index.json new file mode 100644 index 00000000000..31dcdbe1e90 --- /dev/null +++ b/site/public/v1/smartphones/realme-x7-pro-5g-dual-sim-td-lte-cn-256gb-rmx2121/index.json @@ -0,0 +1,77 @@ +{ + "id": 3228, + "slug": "realme-x7-pro-5g-dual-sim-td-lte-cn-256gb-rmx2121", + "name": "Realme X7 Pro 5G Dual SIM TD-LTE CN 256GB RMX2121", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 53, + "slug": "dimensity-1000-plus", + "name": "Dimensity 1000 Plus", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1000-plus" + }, + "release_date": "2020-09-01", + "msrp_usd": 3199, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 3.0, + "camera": 21.7, + "battery": 32.0, + "display": 52.7, + "value": 13.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.567120", + "updated_at": "2026-06-19T00:43:44.567120" +} diff --git a/site/public/v1/smartphones/realme-x7-pro-5g-dual-sim-td-lte-cn-256gb-rmx2121/score/index.json b/site/public/v1/smartphones/realme-x7-pro-5g-dual-sim-td-lte-cn-256gb-rmx2121/score/index.json new file mode 100644 index 00000000000..57daf5a3fcc --- /dev/null +++ b/site/public/v1/smartphones/realme-x7-pro-5g-dual-sim-td-lte-cn-256gb-rmx2121/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 3.0, + "camera": 21.7, + "battery": 32.0, + "display": 52.7, + "value": 13.7 +} diff --git a/site/public/v1/smartphones/realme-xt-premium-edition-dual-sim-td-lte-v1-in-id-pk-th-vn-ph-128gb-rmx1921/index.json b/site/public/v1/smartphones/realme-xt-premium-edition-dual-sim-td-lte-v1-in-id-pk-th-vn-ph-128gb-rmx1921/index.json new file mode 100644 index 00000000000..52051cea7a9 --- /dev/null +++ b/site/public/v1/smartphones/realme-xt-premium-edition-dual-sim-td-lte-v1-in-id-pk-th-vn-ph-128gb-rmx1921/index.json @@ -0,0 +1,76 @@ +{ + "id": 2949, + "slug": "realme-xt-premium-edition-dual-sim-td-lte-v1-in-id-pk-th-vn-ph-128gb-rmx1921", + "name": "Realme XT Premium Edition Dual SIM TD-LTE V1 IN ID PK TH VN PH 128GB RMX1921", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2019-10-21", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 3.0, + "camera": 21.5, + "battery": 15.9, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.526922", + "updated_at": "2026-06-19T00:43:44.526922" +} diff --git a/site/public/v1/smartphones/realme-xt-premium-edition-dual-sim-td-lte-v1-in-id-pk-th-vn-ph-128gb-rmx1921/score/index.json b/site/public/v1/smartphones/realme-xt-premium-edition-dual-sim-td-lte-v1-in-id-pk-th-vn-ph-128gb-rmx1921/score/index.json new file mode 100644 index 00000000000..e88c1b7e554 --- /dev/null +++ b/site/public/v1/smartphones/realme-xt-premium-edition-dual-sim-td-lte-v1-in-id-pk-th-vn-ph-128gb-rmx1921/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 3.0, + "camera": 21.5, + "battery": 15.9, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/realme-xt-premium-edition-dual-sim-td-lte-v1-in-vn-64gb-rmx1921/index.json b/site/public/v1/smartphones/realme-xt-premium-edition-dual-sim-td-lte-v1-in-vn-64gb-rmx1921/index.json new file mode 100644 index 00000000000..1668e244104 --- /dev/null +++ b/site/public/v1/smartphones/realme-xt-premium-edition-dual-sim-td-lte-v1-in-vn-64gb-rmx1921/index.json @@ -0,0 +1,76 @@ +{ + "id": 2950, + "slug": "realme-xt-premium-edition-dual-sim-td-lte-v1-in-vn-64gb-rmx1921", + "name": "Realme XT Premium Edition Dual SIM TD-LTE V1 IN VN 64GB RMX1921", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2019-10-21", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 1.5, + "camera": 21.5, + "battery": 15.9, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.526922", + "updated_at": "2026-06-19T00:43:44.526922" +} diff --git a/site/public/v1/smartphones/realme-xt-premium-edition-dual-sim-td-lte-v1-in-vn-64gb-rmx1921/score/index.json b/site/public/v1/smartphones/realme-xt-premium-edition-dual-sim-td-lte-v1-in-vn-64gb-rmx1921/score/index.json new file mode 100644 index 00000000000..309739f0458 --- /dev/null +++ b/site/public/v1/smartphones/realme-xt-premium-edition-dual-sim-td-lte-v1-in-vn-64gb-rmx1921/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 1.5, + "camera": 21.5, + "battery": 15.9, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/realme-xt-premium-edition-dual-sim-td-lte-v2-ru-128gb-rmx1921/index.json b/site/public/v1/smartphones/realme-xt-premium-edition-dual-sim-td-lte-v2-ru-128gb-rmx1921/index.json new file mode 100644 index 00000000000..7b731e953a6 --- /dev/null +++ b/site/public/v1/smartphones/realme-xt-premium-edition-dual-sim-td-lte-v2-ru-128gb-rmx1921/index.json @@ -0,0 +1,76 @@ +{ + "id": 2951, + "slug": "realme-xt-premium-edition-dual-sim-td-lte-v2-ru-128gb-rmx1921", + "name": "Realme XT Premium Edition Dual SIM TD-LTE V2 RU 128GB RMX1921", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2019-10-21", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 3.0, + "camera": 21.5, + "battery": 15.9, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.527924", + "updated_at": "2026-06-19T00:43:44.527924" +} diff --git a/site/public/v1/smartphones/realme-xt-premium-edition-dual-sim-td-lte-v2-ru-128gb-rmx1921/score/index.json b/site/public/v1/smartphones/realme-xt-premium-edition-dual-sim-td-lte-v2-ru-128gb-rmx1921/score/index.json new file mode 100644 index 00000000000..e88c1b7e554 --- /dev/null +++ b/site/public/v1/smartphones/realme-xt-premium-edition-dual-sim-td-lte-v2-ru-128gb-rmx1921/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 3.0, + "camera": 21.5, + "battery": 15.9, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/realme-xt-premium-edition-global-dual-sim-td-lte-v2-128gb-rmx1921/index.json b/site/public/v1/smartphones/realme-xt-premium-edition-global-dual-sim-td-lte-v2-128gb-rmx1921/index.json new file mode 100644 index 00000000000..31c2d67119e --- /dev/null +++ b/site/public/v1/smartphones/realme-xt-premium-edition-global-dual-sim-td-lte-v2-128gb-rmx1921/index.json @@ -0,0 +1,76 @@ +{ + "id": 2952, + "slug": "realme-xt-premium-edition-global-dual-sim-td-lte-v2-128gb-rmx1921", + "name": "Realme XT Premium Edition Global Dual SIM TD-LTE V2 128GB RMX1921", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 3.0, + "camera": 21.5, + "battery": 15.9, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.527924", + "updated_at": "2026-06-19T00:43:44.527924" +} diff --git a/site/public/v1/smartphones/realme-xt-premium-edition-global-dual-sim-td-lte-v2-128gb-rmx1921/score/index.json b/site/public/v1/smartphones/realme-xt-premium-edition-global-dual-sim-td-lte-v2-128gb-rmx1921/score/index.json new file mode 100644 index 00000000000..e88c1b7e554 --- /dev/null +++ b/site/public/v1/smartphones/realme-xt-premium-edition-global-dual-sim-td-lte-v2-128gb-rmx1921/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 3.0, + "camera": 21.5, + "battery": 15.9, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/realme-xt-standard-edition-dual-sim-td-lte-v1-id-128gb-rmx1921/index.json b/site/public/v1/smartphones/realme-xt-standard-edition-dual-sim-td-lte-v1-id-128gb-rmx1921/index.json new file mode 100644 index 00000000000..7b820333630 --- /dev/null +++ b/site/public/v1/smartphones/realme-xt-standard-edition-dual-sim-td-lte-v1-id-128gb-rmx1921/index.json @@ -0,0 +1,76 @@ +{ + "id": 2953, + "slug": "realme-xt-standard-edition-dual-sim-td-lte-v1-id-128gb-rmx1921", + "name": "Realme XT Standard Edition Dual SIM TD-LTE V1 ID 128GB RMX1921", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 0.0, + "camera": 21.5, + "battery": 15.9, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.527924", + "updated_at": "2026-06-19T00:43:44.527924" +} diff --git a/site/public/v1/smartphones/realme-xt-standard-edition-dual-sim-td-lte-v1-id-128gb-rmx1921/score/index.json b/site/public/v1/smartphones/realme-xt-standard-edition-dual-sim-td-lte-v1-id-128gb-rmx1921/score/index.json new file mode 100644 index 00000000000..69d8e6d39e4 --- /dev/null +++ b/site/public/v1/smartphones/realme-xt-standard-edition-dual-sim-td-lte-v1-id-128gb-rmx1921/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 0.0, + "camera": 21.5, + "battery": 15.9, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/realme-xt-standard-edition-dual-sim-td-lte-v1-in-vn-64gb-rmx1921/index.json b/site/public/v1/smartphones/realme-xt-standard-edition-dual-sim-td-lte-v1-in-vn-64gb-rmx1921/index.json new file mode 100644 index 00000000000..3df0207d906 --- /dev/null +++ b/site/public/v1/smartphones/realme-xt-standard-edition-dual-sim-td-lte-v1-in-vn-64gb-rmx1921/index.json @@ -0,0 +1,76 @@ +{ + "id": 2954, + "slug": "realme-xt-standard-edition-dual-sim-td-lte-v1-in-vn-64gb-rmx1921", + "name": "Realme XT Standard Edition Dual SIM TD-LTE V1 IN VN 64GB RMX1921", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2019-10-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 0.0, + "camera": 21.5, + "battery": 15.9, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.527924", + "updated_at": "2026-06-19T00:43:44.527924" +} diff --git a/site/public/v1/smartphones/realme-xt-standard-edition-dual-sim-td-lte-v1-in-vn-64gb-rmx1921/score/index.json b/site/public/v1/smartphones/realme-xt-standard-edition-dual-sim-td-lte-v1-in-vn-64gb-rmx1921/score/index.json new file mode 100644 index 00000000000..69d8e6d39e4 --- /dev/null +++ b/site/public/v1/smartphones/realme-xt-standard-edition-dual-sim-td-lte-v1-in-vn-64gb-rmx1921/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 0.0, + "camera": 21.5, + "battery": 15.9, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-10-2021-premium-edition-dual-sim-td-lte-latam-128gb-21061119al/index.json b/site/public/v1/smartphones/redmi-10-2021-premium-edition-dual-sim-td-lte-latam-128gb-21061119al/index.json new file mode 100644 index 00000000000..2ee3be0290d --- /dev/null +++ b/site/public/v1/smartphones/redmi-10-2021-premium-edition-dual-sim-td-lte-latam-128gb-21061119al/index.json @@ -0,0 +1,77 @@ +{ + "id": 6134, + "slug": "redmi-10-2021-premium-edition-dual-sim-td-lte-latam-128gb-21061119al", + "name": "Redmi 10 2021 Premium Edition Dual SIM TD-LTE LATAM 128GB 21061119AL", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 73, + "slug": "helio-g88", + "name": "MediaTek Helio G88", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g88" + }, + "release_date": "2021-08-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "2560x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 465 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 1.5, + "camera": 17.2, + "battery": 30.6, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.974207", + "updated_at": "2026-06-19T00:43:44.974207" +} diff --git a/site/public/v1/smartphones/redmi-10-2021-premium-edition-dual-sim-td-lte-latam-128gb-21061119al/score/index.json b/site/public/v1/smartphones/redmi-10-2021-premium-edition-dual-sim-td-lte-latam-128gb-21061119al/score/index.json new file mode 100644 index 00000000000..388507b2cc4 --- /dev/null +++ b/site/public/v1/smartphones/redmi-10-2021-premium-edition-dual-sim-td-lte-latam-128gb-21061119al/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 1.5, + "camera": 17.2, + "battery": 30.6, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-10-2021-premium-edition-global-dual-sim-td-lte-128gb-21061119ag/index.json b/site/public/v1/smartphones/redmi-10-2021-premium-edition-global-dual-sim-td-lte-128gb-21061119ag/index.json new file mode 100644 index 00000000000..d8490da4822 --- /dev/null +++ b/site/public/v1/smartphones/redmi-10-2021-premium-edition-global-dual-sim-td-lte-128gb-21061119ag/index.json @@ -0,0 +1,77 @@ +{ + "id": 6135, + "slug": "redmi-10-2021-premium-edition-global-dual-sim-td-lte-128gb-21061119ag", + "name": "Redmi 10 2021 Premium Edition Global Dual SIM TD-LTE 128GB 21061119AG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 73, + "slug": "helio-g88", + "name": "MediaTek Helio G88", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g88" + }, + "release_date": "2021-08-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "2560x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 465 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 1.5, + "camera": 17.2, + "battery": 30.6, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.974207", + "updated_at": "2026-06-19T00:43:44.974207" +} diff --git a/site/public/v1/smartphones/redmi-10-2021-premium-edition-global-dual-sim-td-lte-128gb-21061119ag/score/index.json b/site/public/v1/smartphones/redmi-10-2021-premium-edition-global-dual-sim-td-lte-128gb-21061119ag/score/index.json new file mode 100644 index 00000000000..388507b2cc4 --- /dev/null +++ b/site/public/v1/smartphones/redmi-10-2021-premium-edition-global-dual-sim-td-lte-128gb-21061119ag/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 1.5, + "camera": 17.2, + "battery": 30.6, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-10-2021-premium-edition-global-dual-sim-td-lte-128gb-21061119dg/index.json b/site/public/v1/smartphones/redmi-10-2021-premium-edition-global-dual-sim-td-lte-128gb-21061119dg/index.json new file mode 100644 index 00000000000..c3d27cdd41b --- /dev/null +++ b/site/public/v1/smartphones/redmi-10-2021-premium-edition-global-dual-sim-td-lte-128gb-21061119dg/index.json @@ -0,0 +1,77 @@ +{ + "id": 6136, + "slug": "redmi-10-2021-premium-edition-global-dual-sim-td-lte-128gb-21061119dg", + "name": "Redmi 10 2021 Premium Edition Global Dual SIM TD-LTE 128GB 21061119DG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 73, + "slug": "helio-g88", + "name": "MediaTek Helio G88", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g88" + }, + "release_date": "2021-08-01", + "msrp_usd": 749, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "2560x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 465 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 1.5, + "camera": 17.2, + "battery": 30.6, + "display": 46.5, + "value": 44.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.974207", + "updated_at": "2026-06-19T00:43:44.974207" +} diff --git a/site/public/v1/smartphones/redmi-10-2021-premium-edition-global-dual-sim-td-lte-128gb-21061119dg/score/index.json b/site/public/v1/smartphones/redmi-10-2021-premium-edition-global-dual-sim-td-lte-128gb-21061119dg/score/index.json new file mode 100644 index 00000000000..f26509ef664 --- /dev/null +++ b/site/public/v1/smartphones/redmi-10-2021-premium-edition-global-dual-sim-td-lte-128gb-21061119dg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 1.5, + "camera": 17.2, + "battery": 30.6, + "display": 46.5, + "value": 44.7 +} diff --git a/site/public/v1/smartphones/redmi-10-2021-standard-edition-dual-sim-td-lte-latam-128gb-21061119al/index.json b/site/public/v1/smartphones/redmi-10-2021-standard-edition-dual-sim-td-lte-latam-128gb-21061119al/index.json new file mode 100644 index 00000000000..db3e4b753c7 --- /dev/null +++ b/site/public/v1/smartphones/redmi-10-2021-standard-edition-dual-sim-td-lte-latam-128gb-21061119al/index.json @@ -0,0 +1,77 @@ +{ + "id": 6138, + "slug": "redmi-10-2021-standard-edition-dual-sim-td-lte-latam-128gb-21061119al", + "name": "Redmi 10 2021 Standard Edition Dual SIM TD-LTE LATAM 128GB 21061119AL", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 73, + "slug": "helio-g88", + "name": "MediaTek Helio G88", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g88" + }, + "release_date": "2021-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "2560x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 465 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 0.0, + "camera": 17.2, + "battery": 30.6, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.975725", + "updated_at": "2026-06-19T00:43:44.975725" +} diff --git a/site/public/v1/smartphones/redmi-10-2021-standard-edition-dual-sim-td-lte-latam-128gb-21061119al/score/index.json b/site/public/v1/smartphones/redmi-10-2021-standard-edition-dual-sim-td-lte-latam-128gb-21061119al/score/index.json new file mode 100644 index 00000000000..56deec1893f --- /dev/null +++ b/site/public/v1/smartphones/redmi-10-2021-standard-edition-dual-sim-td-lte-latam-128gb-21061119al/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 0.0, + "camera": 17.2, + "battery": 30.6, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-10-2021-standard-edition-dual-sim-td-lte-latam-64gb-21061119al/index.json b/site/public/v1/smartphones/redmi-10-2021-standard-edition-dual-sim-td-lte-latam-64gb-21061119al/index.json new file mode 100644 index 00000000000..6fb2c4c96d0 --- /dev/null +++ b/site/public/v1/smartphones/redmi-10-2021-standard-edition-dual-sim-td-lte-latam-64gb-21061119al/index.json @@ -0,0 +1,77 @@ +{ + "id": 6139, + "slug": "redmi-10-2021-standard-edition-dual-sim-td-lte-latam-64gb-21061119al", + "name": "Redmi 10 2021 Standard Edition Dual SIM TD-LTE LATAM 64GB 21061119AL", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 73, + "slug": "helio-g88", + "name": "MediaTek Helio G88", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g88" + }, + "release_date": "2021-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "2560x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 465 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 0.0, + "camera": 17.2, + "battery": 30.6, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.975725", + "updated_at": "2026-06-19T00:43:44.975725" +} diff --git a/site/public/v1/smartphones/redmi-10-2021-standard-edition-dual-sim-td-lte-latam-64gb-21061119al/score/index.json b/site/public/v1/smartphones/redmi-10-2021-standard-edition-dual-sim-td-lte-latam-64gb-21061119al/score/index.json new file mode 100644 index 00000000000..56deec1893f --- /dev/null +++ b/site/public/v1/smartphones/redmi-10-2021-standard-edition-dual-sim-td-lte-latam-64gb-21061119al/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 0.0, + "camera": 17.2, + "battery": 30.6, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-10-2021-standard-edition-global-dual-sim-td-lte-128gb-21061119ag/index.json b/site/public/v1/smartphones/redmi-10-2021-standard-edition-global-dual-sim-td-lte-128gb-21061119ag/index.json new file mode 100644 index 00000000000..e8f3a211436 --- /dev/null +++ b/site/public/v1/smartphones/redmi-10-2021-standard-edition-global-dual-sim-td-lte-128gb-21061119ag/index.json @@ -0,0 +1,77 @@ +{ + "id": 6140, + "slug": "redmi-10-2021-standard-edition-global-dual-sim-td-lte-128gb-21061119ag", + "name": "Redmi 10 2021 Standard Edition Global Dual SIM TD-LTE 128GB 21061119AG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 73, + "slug": "helio-g88", + "name": "MediaTek Helio G88", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g88" + }, + "release_date": "2021-08-01", + "msrp_usd": 230, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "2560x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 465 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 0.0, + "camera": 17.2, + "battery": 30.6, + "display": 46.5, + "value": 61.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.975725", + "updated_at": "2026-06-19T00:43:44.975725" +} diff --git a/site/public/v1/smartphones/redmi-10-2021-standard-edition-global-dual-sim-td-lte-128gb-21061119ag/score/index.json b/site/public/v1/smartphones/redmi-10-2021-standard-edition-global-dual-sim-td-lte-128gb-21061119ag/score/index.json new file mode 100644 index 00000000000..63674820d34 --- /dev/null +++ b/site/public/v1/smartphones/redmi-10-2021-standard-edition-global-dual-sim-td-lte-128gb-21061119ag/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 0.0, + "camera": 17.2, + "battery": 30.6, + "display": 46.5, + "value": 61.8 +} diff --git a/site/public/v1/smartphones/redmi-10-2021-standard-edition-global-dual-sim-td-lte-128gb-21061119dg/index.json b/site/public/v1/smartphones/redmi-10-2021-standard-edition-global-dual-sim-td-lte-128gb-21061119dg/index.json new file mode 100644 index 00000000000..1dad6b71247 --- /dev/null +++ b/site/public/v1/smartphones/redmi-10-2021-standard-edition-global-dual-sim-td-lte-128gb-21061119dg/index.json @@ -0,0 +1,77 @@ +{ + "id": 6141, + "slug": "redmi-10-2021-standard-edition-global-dual-sim-td-lte-128gb-21061119dg", + "name": "Redmi 10 2021 Standard Edition Global Dual SIM TD-LTE 128GB 21061119DG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 73, + "slug": "helio-g88", + "name": "MediaTek Helio G88", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g88" + }, + "release_date": "2021-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "2560x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 465 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 0.0, + "camera": 17.2, + "battery": 30.6, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.975725", + "updated_at": "2026-06-19T00:43:44.975725" +} diff --git a/site/public/v1/smartphones/redmi-10-2021-standard-edition-global-dual-sim-td-lte-128gb-21061119dg/score/index.json b/site/public/v1/smartphones/redmi-10-2021-standard-edition-global-dual-sim-td-lte-128gb-21061119dg/score/index.json new file mode 100644 index 00000000000..56deec1893f --- /dev/null +++ b/site/public/v1/smartphones/redmi-10-2021-standard-edition-global-dual-sim-td-lte-128gb-21061119dg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 0.0, + "camera": 17.2, + "battery": 30.6, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-10-2021-standard-edition-global-dual-sim-td-lte-64gb-21061119ag/index.json b/site/public/v1/smartphones/redmi-10-2021-standard-edition-global-dual-sim-td-lte-64gb-21061119ag/index.json new file mode 100644 index 00000000000..ca702b3c5d8 --- /dev/null +++ b/site/public/v1/smartphones/redmi-10-2021-standard-edition-global-dual-sim-td-lte-64gb-21061119ag/index.json @@ -0,0 +1,77 @@ +{ + "id": 6142, + "slug": "redmi-10-2021-standard-edition-global-dual-sim-td-lte-64gb-21061119ag", + "name": "Redmi 10 2021 Standard Edition Global Dual SIM TD-LTE 64GB 21061119AG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 73, + "slug": "helio-g88", + "name": "MediaTek Helio G88", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g88" + }, + "release_date": "2021-08-01", + "msrp_usd": 199, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "2560x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 465 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 0.0, + "camera": 17.2, + "battery": 30.6, + "display": 46.5, + "value": 61.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.975725", + "updated_at": "2026-06-19T00:43:44.975725" +} diff --git a/site/public/v1/smartphones/redmi-10-2021-standard-edition-global-dual-sim-td-lte-64gb-21061119ag/score/index.json b/site/public/v1/smartphones/redmi-10-2021-standard-edition-global-dual-sim-td-lte-64gb-21061119ag/score/index.json new file mode 100644 index 00000000000..63674820d34 --- /dev/null +++ b/site/public/v1/smartphones/redmi-10-2021-standard-edition-global-dual-sim-td-lte-64gb-21061119ag/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 0.0, + "camera": 17.2, + "battery": 30.6, + "display": 46.5, + "value": 61.8 +} diff --git a/site/public/v1/smartphones/redmi-10-2021-standard-edition-global-dual-sim-td-lte-64gb-21061119dg/index.json b/site/public/v1/smartphones/redmi-10-2021-standard-edition-global-dual-sim-td-lte-64gb-21061119dg/index.json new file mode 100644 index 00000000000..f0a05fde6b3 --- /dev/null +++ b/site/public/v1/smartphones/redmi-10-2021-standard-edition-global-dual-sim-td-lte-64gb-21061119dg/index.json @@ -0,0 +1,77 @@ +{ + "id": 6143, + "slug": "redmi-10-2021-standard-edition-global-dual-sim-td-lte-64gb-21061119dg", + "name": "Redmi 10 2021 Standard Edition Global Dual SIM TD-LTE 64GB 21061119DG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 73, + "slug": "helio-g88", + "name": "MediaTek Helio G88", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g88" + }, + "release_date": "2021-08-01", + "msrp_usd": 229, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "2560x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 465 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 0.0, + "camera": 17.2, + "battery": 30.6, + "display": 46.5, + "value": 61.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.975725", + "updated_at": "2026-06-19T00:43:44.975725" +} diff --git a/site/public/v1/smartphones/redmi-10-2021-standard-edition-global-dual-sim-td-lte-64gb-21061119dg/score/index.json b/site/public/v1/smartphones/redmi-10-2021-standard-edition-global-dual-sim-td-lte-64gb-21061119dg/score/index.json new file mode 100644 index 00000000000..63674820d34 --- /dev/null +++ b/site/public/v1/smartphones/redmi-10-2021-standard-edition-global-dual-sim-td-lte-64gb-21061119dg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 0.0, + "camera": 17.2, + "battery": 30.6, + "display": 46.5, + "value": 61.8 +} diff --git a/site/public/v1/smartphones/redmi-10-2022-premium-edition-global-dual-sim-td-lte-128gb-21121119sg/index.json b/site/public/v1/smartphones/redmi-10-2022-premium-edition-global-dual-sim-td-lte-128gb-21121119sg/index.json new file mode 100644 index 00000000000..9acc9735274 --- /dev/null +++ b/site/public/v1/smartphones/redmi-10-2022-premium-edition-global-dual-sim-td-lte-128gb-21121119sg/index.json @@ -0,0 +1,77 @@ +{ + "id": 6256, + "slug": "redmi-10-2022-premium-edition-global-dual-sim-td-lte-128gb-21121119sg", + "name": "Redmi 10 2022 Premium Edition Global Dual SIM TD-LTE 128GB 21121119SG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 73, + "slug": "helio-g88", + "name": "MediaTek Helio G88", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g88" + }, + "release_date": "2022-02-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.4, + "performance": 1.5, + "camera": 17.2, + "battery": 30.6, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.988824", + "updated_at": "2026-06-19T00:43:44.988824" +} diff --git a/site/public/v1/smartphones/redmi-10-2022-premium-edition-global-dual-sim-td-lte-128gb-21121119sg/score/index.json b/site/public/v1/smartphones/redmi-10-2022-premium-edition-global-dual-sim-td-lte-128gb-21121119sg/score/index.json new file mode 100644 index 00000000000..14ffe40abe9 --- /dev/null +++ b/site/public/v1/smartphones/redmi-10-2022-premium-edition-global-dual-sim-td-lte-128gb-21121119sg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.4, + "performance": 1.5, + "camera": 17.2, + "battery": 30.6, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-10-2022-standard-edition-global-dual-sim-td-lte-128gb-21121119sg/index.json b/site/public/v1/smartphones/redmi-10-2022-standard-edition-global-dual-sim-td-lte-128gb-21121119sg/index.json new file mode 100644 index 00000000000..fb5af31ffba --- /dev/null +++ b/site/public/v1/smartphones/redmi-10-2022-standard-edition-global-dual-sim-td-lte-128gb-21121119sg/index.json @@ -0,0 +1,77 @@ +{ + "id": 6258, + "slug": "redmi-10-2022-standard-edition-global-dual-sim-td-lte-128gb-21121119sg", + "name": "Redmi 10 2022 Standard Edition Global Dual SIM TD-LTE 128GB 21121119SG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 73, + "slug": "helio-g88", + "name": "MediaTek Helio G88", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g88" + }, + "release_date": "2022-02-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 0.0, + "camera": 17.2, + "battery": 30.6, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.989824", + "updated_at": "2026-06-19T00:43:44.989824" +} diff --git a/site/public/v1/smartphones/redmi-10-2022-standard-edition-global-dual-sim-td-lte-128gb-21121119sg/score/index.json b/site/public/v1/smartphones/redmi-10-2022-standard-edition-global-dual-sim-td-lte-128gb-21121119sg/score/index.json new file mode 100644 index 00000000000..0891b49cea9 --- /dev/null +++ b/site/public/v1/smartphones/redmi-10-2022-standard-edition-global-dual-sim-td-lte-128gb-21121119sg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 0.0, + "camera": 17.2, + "battery": 30.6, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-10-2022-standard-edition-global-dual-sim-td-lte-64gb-21121119sg/index.json b/site/public/v1/smartphones/redmi-10-2022-standard-edition-global-dual-sim-td-lte-64gb-21121119sg/index.json new file mode 100644 index 00000000000..ac3033aff24 --- /dev/null +++ b/site/public/v1/smartphones/redmi-10-2022-standard-edition-global-dual-sim-td-lte-64gb-21121119sg/index.json @@ -0,0 +1,77 @@ +{ + "id": 6259, + "slug": "redmi-10-2022-standard-edition-global-dual-sim-td-lte-64gb-21121119sg", + "name": "Redmi 10 2022 Standard Edition Global Dual SIM TD-LTE 64GB 21121119SG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 73, + "slug": "helio-g88", + "name": "MediaTek Helio G88", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g88" + }, + "release_date": "2022-02-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 0.0, + "camera": 17.2, + "battery": 30.6, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.989824", + "updated_at": "2026-06-19T00:43:44.989824" +} diff --git a/site/public/v1/smartphones/redmi-10-2022-standard-edition-global-dual-sim-td-lte-64gb-21121119sg/score/index.json b/site/public/v1/smartphones/redmi-10-2022-standard-edition-global-dual-sim-td-lte-64gb-21121119sg/score/index.json new file mode 100644 index 00000000000..0891b49cea9 --- /dev/null +++ b/site/public/v1/smartphones/redmi-10-2022-standard-edition-global-dual-sim-td-lte-64gb-21121119sg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 0.0, + "camera": 17.2, + "battery": 30.6, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-10-prime-2021-premium-edition-dual-sim-td-lte-in-128gb-21061119bi/index.json b/site/public/v1/smartphones/redmi-10-prime-2021-premium-edition-dual-sim-td-lte-in-128gb-21061119bi/index.json new file mode 100644 index 00000000000..48b5ad50927 --- /dev/null +++ b/site/public/v1/smartphones/redmi-10-prime-2021-premium-edition-dual-sim-td-lte-in-128gb-21061119bi/index.json @@ -0,0 +1,77 @@ +{ + "id": 6145, + "slug": "redmi-10-prime-2021-premium-edition-dual-sim-td-lte-in-128gb-21061119bi", + "name": "Redmi 10 Prime 2021 Premium Edition Dual SIM TD-LTE IN 128GB 21061119BI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 73, + "slug": "helio-g88", + "name": "MediaTek Helio G88", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g88" + }, + "release_date": "2021-09-03", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "2560x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 465 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.7, + "performance": 1.5, + "camera": 17.2, + "battery": 45.6, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.975725", + "updated_at": "2026-06-19T00:43:44.975725" +} diff --git a/site/public/v1/smartphones/redmi-10-prime-2021-premium-edition-dual-sim-td-lte-in-128gb-21061119bi/score/index.json b/site/public/v1/smartphones/redmi-10-prime-2021-premium-edition-dual-sim-td-lte-in-128gb-21061119bi/score/index.json new file mode 100644 index 00000000000..d4c3d5e49b0 --- /dev/null +++ b/site/public/v1/smartphones/redmi-10-prime-2021-premium-edition-dual-sim-td-lte-in-128gb-21061119bi/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.7, + "performance": 1.5, + "camera": 17.2, + "battery": 45.6, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-10-prime-2021-standard-edition-dual-sim-td-lte-in-64gb-21061119bi/index.json b/site/public/v1/smartphones/redmi-10-prime-2021-standard-edition-dual-sim-td-lte-in-64gb-21061119bi/index.json new file mode 100644 index 00000000000..43761022bd6 --- /dev/null +++ b/site/public/v1/smartphones/redmi-10-prime-2021-standard-edition-dual-sim-td-lte-in-64gb-21061119bi/index.json @@ -0,0 +1,77 @@ +{ + "id": 6147, + "slug": "redmi-10-prime-2021-standard-edition-dual-sim-td-lte-in-64gb-21061119bi", + "name": "Redmi 10 Prime 2021 Standard Edition Dual SIM TD-LTE IN 64GB 21061119BI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 73, + "slug": "helio-g88", + "name": "MediaTek Helio G88", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g88" + }, + "release_date": "2021-09-03", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "2560x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 465 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.3, + "performance": 0.0, + "camera": 17.2, + "battery": 45.6, + "display": 46.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.975725", + "updated_at": "2026-06-19T00:43:44.975725" +} diff --git a/site/public/v1/smartphones/redmi-10-prime-2021-standard-edition-dual-sim-td-lte-in-64gb-21061119bi/score/index.json b/site/public/v1/smartphones/redmi-10-prime-2021-standard-edition-dual-sim-td-lte-in-64gb-21061119bi/score/index.json new file mode 100644 index 00000000000..8b01d8d26b8 --- /dev/null +++ b/site/public/v1/smartphones/redmi-10-prime-2021-standard-edition-dual-sim-td-lte-in-64gb-21061119bi/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.3, + "performance": 0.0, + "camera": 17.2, + "battery": 45.6, + "display": 46.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-10x-4g-premium-edition-dual-sim-td-lte-cn-128gb-m2003j15sc/index.json b/site/public/v1/smartphones/redmi-10x-4g-premium-edition-dual-sim-td-lte-cn-128gb-m2003j15sc/index.json new file mode 100644 index 00000000000..8d8bc8718c1 --- /dev/null +++ b/site/public/v1/smartphones/redmi-10x-4g-premium-edition-dual-sim-td-lte-cn-128gb-m2003j15sc/index.json @@ -0,0 +1,77 @@ +{ + "id": 5951, + "slug": "redmi-10x-4g-premium-edition-dual-sim-td-lte-cn-128gb-m2003j15sc", + "name": "Redmi 10X 4G Premium Edition Dual SIM TD-LTE CN 128GB M2003J15SC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 63, + "slug": "helio-g85", + "name": "MediaTek Helio G85", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g85" + }, + "release_date": "2020-05-27", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5020, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 1.5, + "camera": 16.5, + "battery": 30.9, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.954307", + "updated_at": "2026-06-19T00:43:44.954307" +} diff --git a/site/public/v1/smartphones/redmi-10x-4g-premium-edition-dual-sim-td-lte-cn-128gb-m2003j15sc/score/index.json b/site/public/v1/smartphones/redmi-10x-4g-premium-edition-dual-sim-td-lte-cn-128gb-m2003j15sc/score/index.json new file mode 100644 index 00000000000..d87b873b3fb --- /dev/null +++ b/site/public/v1/smartphones/redmi-10x-4g-premium-edition-dual-sim-td-lte-cn-128gb-m2003j15sc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 1.5, + "camera": 16.5, + "battery": 30.9, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-10x-4g-standard-edition-dual-sim-td-lte-cn-128gb-m2003j15sc/index.json b/site/public/v1/smartphones/redmi-10x-4g-standard-edition-dual-sim-td-lte-cn-128gb-m2003j15sc/index.json new file mode 100644 index 00000000000..0416ef57a37 --- /dev/null +++ b/site/public/v1/smartphones/redmi-10x-4g-standard-edition-dual-sim-td-lte-cn-128gb-m2003j15sc/index.json @@ -0,0 +1,77 @@ +{ + "id": 5952, + "slug": "redmi-10x-4g-standard-edition-dual-sim-td-lte-cn-128gb-m2003j15sc", + "name": "Redmi 10X 4G Standard Edition Dual SIM TD-LTE CN 128GB M2003J15SC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 63, + "slug": "helio-g85", + "name": "MediaTek Helio G85", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g85" + }, + "release_date": "2020-05-27", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5020, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 0.0, + "camera": 16.5, + "battery": 30.9, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.954307", + "updated_at": "2026-06-19T00:43:44.954307" +} diff --git a/site/public/v1/smartphones/redmi-10x-4g-standard-edition-dual-sim-td-lte-cn-128gb-m2003j15sc/score/index.json b/site/public/v1/smartphones/redmi-10x-4g-standard-edition-dual-sim-td-lte-cn-128gb-m2003j15sc/score/index.json new file mode 100644 index 00000000000..2b1bab1ff31 --- /dev/null +++ b/site/public/v1/smartphones/redmi-10x-4g-standard-edition-dual-sim-td-lte-cn-128gb-m2003j15sc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 0.0, + "camera": 16.5, + "battery": 30.9, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-10x-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2004j7ac/index.json b/site/public/v1/smartphones/redmi-10x-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2004j7ac/index.json new file mode 100644 index 00000000000..bdfa079125f --- /dev/null +++ b/site/public/v1/smartphones/redmi-10x-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2004j7ac/index.json @@ -0,0 +1,76 @@ +{ + "id": 5953, + "slug": "redmi-10x-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2004j7ac", + "name": "Redmi 10X 5G Premium Edition Dual SIM TD-LTE CN 128GB M2004J7AC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 57, + "slug": "dimensity-820", + "name": "Dimensity 820", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC5", + "url": "/v1/socs/dimensity-820" + }, + "release_date": "2020-06-02", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4520, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 3.0, + "camera": 16.5, + "battery": 24.2, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.954307", + "updated_at": "2026-06-19T00:43:44.954307" +} diff --git a/site/public/v1/smartphones/redmi-10x-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2004j7ac/score/index.json b/site/public/v1/smartphones/redmi-10x-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2004j7ac/score/index.json new file mode 100644 index 00000000000..043394d9fd4 --- /dev/null +++ b/site/public/v1/smartphones/redmi-10x-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2004j7ac/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 3.0, + "camera": 16.5, + "battery": 24.2, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-10x-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2004j7ac/index.json b/site/public/v1/smartphones/redmi-10x-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2004j7ac/index.json new file mode 100644 index 00000000000..fd122be767f --- /dev/null +++ b/site/public/v1/smartphones/redmi-10x-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2004j7ac/index.json @@ -0,0 +1,76 @@ +{ + "id": 5954, + "slug": "redmi-10x-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2004j7ac", + "name": "Redmi 10X 5G Standard Edition Dual SIM TD-LTE CN 128GB M2004J7AC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 57, + "slug": "dimensity-820", + "name": "Dimensity 820", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC5", + "url": "/v1/socs/dimensity-820" + }, + "release_date": "2020-06-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4520, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 1.5, + "camera": 16.5, + "battery": 24.2, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.954307", + "updated_at": "2026-06-19T00:43:44.954307" +} diff --git a/site/public/v1/smartphones/redmi-10x-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2004j7ac/score/index.json b/site/public/v1/smartphones/redmi-10x-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2004j7ac/score/index.json new file mode 100644 index 00000000000..249a16055f1 --- /dev/null +++ b/site/public/v1/smartphones/redmi-10x-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2004j7ac/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 1.5, + "camera": 16.5, + "battery": 24.2, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-10x-pro-5g-dual-sim-td-lte-cn-128gb-m2004j7bc/index.json b/site/public/v1/smartphones/redmi-10x-pro-5g-dual-sim-td-lte-cn-128gb-m2004j7bc/index.json new file mode 100644 index 00000000000..1654841faf0 --- /dev/null +++ b/site/public/v1/smartphones/redmi-10x-pro-5g-dual-sim-td-lte-cn-128gb-m2004j7bc/index.json @@ -0,0 +1,76 @@ +{ + "id": 5955, + "slug": "redmi-10x-pro-5g-dual-sim-td-lte-cn-128gb-m2004j7bc", + "name": "Redmi 10X Pro 5G Dual SIM TD-LTE CN 128GB M2004J7BC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 57, + "slug": "dimensity-820", + "name": "Dimensity 820", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC5", + "url": "/v1/socs/dimensity-820" + }, + "release_date": "2020-06-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 4520, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.7, + "performance": 3.0, + "camera": 16.5, + "battery": 26.2, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.954307", + "updated_at": "2026-06-19T00:43:44.954307" +} diff --git a/site/public/v1/smartphones/redmi-10x-pro-5g-dual-sim-td-lte-cn-128gb-m2004j7bc/score/index.json b/site/public/v1/smartphones/redmi-10x-pro-5g-dual-sim-td-lte-cn-128gb-m2004j7bc/score/index.json new file mode 100644 index 00000000000..b059bed6aea --- /dev/null +++ b/site/public/v1/smartphones/redmi-10x-pro-5g-dual-sim-td-lte-cn-128gb-m2004j7bc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.7, + "performance": 3.0, + "camera": 16.5, + "battery": 26.2, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-10x-pro-5g-dual-sim-td-lte-cn-256gb-m2004j7bc/index.json b/site/public/v1/smartphones/redmi-10x-pro-5g-dual-sim-td-lte-cn-256gb-m2004j7bc/index.json new file mode 100644 index 00000000000..72c0ed8b4ed --- /dev/null +++ b/site/public/v1/smartphones/redmi-10x-pro-5g-dual-sim-td-lte-cn-256gb-m2004j7bc/index.json @@ -0,0 +1,76 @@ +{ + "id": 5956, + "slug": "redmi-10x-pro-5g-dual-sim-td-lte-cn-256gb-m2004j7bc", + "name": "Redmi 10X Pro 5G Dual SIM TD-LTE CN 256GB M2004J7BC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 57, + "slug": "dimensity-820", + "name": "Dimensity 820", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC5", + "url": "/v1/socs/dimensity-820" + }, + "release_date": "2020-06-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 4520, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.7, + "performance": 3.0, + "camera": 16.5, + "battery": 26.2, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.954307", + "updated_at": "2026-06-19T00:43:44.954307" +} diff --git a/site/public/v1/smartphones/redmi-10x-pro-5g-dual-sim-td-lte-cn-256gb-m2004j7bc/score/index.json b/site/public/v1/smartphones/redmi-10x-pro-5g-dual-sim-td-lte-cn-256gb-m2004j7bc/score/index.json new file mode 100644 index 00000000000..b059bed6aea --- /dev/null +++ b/site/public/v1/smartphones/redmi-10x-pro-5g-dual-sim-td-lte-cn-256gb-m2004j7bc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.7, + "performance": 3.0, + "camera": 16.5, + "battery": 26.2, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-6-dual-sim-global-td-lte-32gb-m1804c3dg/index.json b/site/public/v1/smartphones/redmi-6-dual-sim-global-td-lte-32gb-m1804c3dg/index.json new file mode 100644 index 00000000000..c567ca427c4 --- /dev/null +++ b/site/public/v1/smartphones/redmi-6-dual-sim-global-td-lte-32gb-m1804c3dg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5659, + "slug": "redmi-6-dual-sim-global-td-lte-32gb-m1804c3dg", + "name": "Redmi 6 Dual SIM Global TD-LTE 32GB M1804C3DG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.1, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.920308", + "updated_at": "2026-06-19T00:43:44.920308" +} diff --git a/site/public/v1/smartphones/redmi-6-dual-sim-global-td-lte-32gb-m1804c3dg/score/index.json b/site/public/v1/smartphones/redmi-6-dual-sim-global-td-lte-32gb-m1804c3dg/score/index.json new file mode 100644 index 00000000000..42df51812b8 --- /dev/null +++ b/site/public/v1/smartphones/redmi-6-dual-sim-global-td-lte-32gb-m1804c3dg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.1, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-6-dual-sim-global-td-lte-64gb-m1804c3dg/index.json b/site/public/v1/smartphones/redmi-6-dual-sim-global-td-lte-64gb-m1804c3dg/index.json new file mode 100644 index 00000000000..527e949cad5 --- /dev/null +++ b/site/public/v1/smartphones/redmi-6-dual-sim-global-td-lte-64gb-m1804c3dg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5660, + "slug": "redmi-6-dual-sim-global-td-lte-64gb-m1804c3dg", + "name": "Redmi 6 Dual SIM Global TD-LTE 64GB M1804C3DG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.1, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.920308", + "updated_at": "2026-06-19T00:43:44.920308" +} diff --git a/site/public/v1/smartphones/redmi-6-dual-sim-global-td-lte-64gb-m1804c3dg/score/index.json b/site/public/v1/smartphones/redmi-6-dual-sim-global-td-lte-64gb-m1804c3dg/score/index.json new file mode 100644 index 00000000000..42df51812b8 --- /dev/null +++ b/site/public/v1/smartphones/redmi-6-dual-sim-global-td-lte-64gb-m1804c3dg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.1, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-6-dual-sim-td-lte-apac-32gb-m1804c3dh/index.json b/site/public/v1/smartphones/redmi-6-dual-sim-td-lte-apac-32gb-m1804c3dh/index.json new file mode 100644 index 00000000000..4695d05be67 --- /dev/null +++ b/site/public/v1/smartphones/redmi-6-dual-sim-td-lte-apac-32gb-m1804c3dh/index.json @@ -0,0 +1,76 @@ +{ + "id": 5661, + "slug": "redmi-6-dual-sim-td-lte-apac-32gb-m1804c3dh", + "name": "Redmi 6 Dual SIM TD-LTE APAC 32GB M1804C3DH", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.1, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.920308", + "updated_at": "2026-06-19T00:43:44.920308" +} diff --git a/site/public/v1/smartphones/redmi-6-dual-sim-td-lte-apac-32gb-m1804c3dh/score/index.json b/site/public/v1/smartphones/redmi-6-dual-sim-td-lte-apac-32gb-m1804c3dh/score/index.json new file mode 100644 index 00000000000..42df51812b8 --- /dev/null +++ b/site/public/v1/smartphones/redmi-6-dual-sim-td-lte-apac-32gb-m1804c3dh/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.1, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-6-dual-sim-td-lte-cn-32gb-m1804c3dc-m1804c3de/index.json b/site/public/v1/smartphones/redmi-6-dual-sim-td-lte-cn-32gb-m1804c3dc-m1804c3de/index.json new file mode 100644 index 00000000000..b1236f5fa6d --- /dev/null +++ b/site/public/v1/smartphones/redmi-6-dual-sim-td-lte-cn-32gb-m1804c3dc-m1804c3de/index.json @@ -0,0 +1,76 @@ +{ + "id": 5662, + "slug": "redmi-6-dual-sim-td-lte-cn-32gb-m1804c3dc-m1804c3de", + "name": "Redmi 6 Dual SIM TD-LTE CN 32GB M1804C3DC / M1804C3DE", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-06-27", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.1, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.920308", + "updated_at": "2026-06-19T00:43:44.920308" +} diff --git a/site/public/v1/smartphones/redmi-6-dual-sim-td-lte-cn-32gb-m1804c3dc-m1804c3de/score/index.json b/site/public/v1/smartphones/redmi-6-dual-sim-td-lte-cn-32gb-m1804c3dc-m1804c3de/score/index.json new file mode 100644 index 00000000000..42df51812b8 --- /dev/null +++ b/site/public/v1/smartphones/redmi-6-dual-sim-td-lte-cn-32gb-m1804c3dc-m1804c3de/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.1, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-6-dual-sim-td-lte-cn-32gb-m1804c3dt/index.json b/site/public/v1/smartphones/redmi-6-dual-sim-td-lte-cn-32gb-m1804c3dt/index.json new file mode 100644 index 00000000000..f24dde8daec --- /dev/null +++ b/site/public/v1/smartphones/redmi-6-dual-sim-td-lte-cn-32gb-m1804c3dt/index.json @@ -0,0 +1,76 @@ +{ + "id": 5663, + "slug": "redmi-6-dual-sim-td-lte-cn-32gb-m1804c3dt", + "name": "Redmi 6 Dual SIM TD-LTE CN 32GB M1804C3DT", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-06-27", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.1, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.920308", + "updated_at": "2026-06-19T00:43:44.920308" +} diff --git a/site/public/v1/smartphones/redmi-6-dual-sim-td-lte-cn-32gb-m1804c3dt/score/index.json b/site/public/v1/smartphones/redmi-6-dual-sim-td-lte-cn-32gb-m1804c3dt/score/index.json new file mode 100644 index 00000000000..42df51812b8 --- /dev/null +++ b/site/public/v1/smartphones/redmi-6-dual-sim-td-lte-cn-32gb-m1804c3dt/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.1, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-6-dual-sim-td-lte-cn-64gb-m1804c3dc-m1804c3de/index.json b/site/public/v1/smartphones/redmi-6-dual-sim-td-lte-cn-64gb-m1804c3dc-m1804c3de/index.json new file mode 100644 index 00000000000..2a4ba01ef8a --- /dev/null +++ b/site/public/v1/smartphones/redmi-6-dual-sim-td-lte-cn-64gb-m1804c3dc-m1804c3de/index.json @@ -0,0 +1,76 @@ +{ + "id": 5664, + "slug": "redmi-6-dual-sim-td-lte-cn-64gb-m1804c3dc-m1804c3de", + "name": "Redmi 6 Dual SIM TD-LTE CN 64GB M1804C3DC / M1804C3DE", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-06-27", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.1, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.921307", + "updated_at": "2026-06-19T00:43:44.921307" +} diff --git a/site/public/v1/smartphones/redmi-6-dual-sim-td-lte-cn-64gb-m1804c3dc-m1804c3de/score/index.json b/site/public/v1/smartphones/redmi-6-dual-sim-td-lte-cn-64gb-m1804c3dc-m1804c3de/score/index.json new file mode 100644 index 00000000000..42df51812b8 --- /dev/null +++ b/site/public/v1/smartphones/redmi-6-dual-sim-td-lte-cn-64gb-m1804c3dc-m1804c3de/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.1, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-6-dual-sim-td-lte-cn-64gb-m1804c3dt/index.json b/site/public/v1/smartphones/redmi-6-dual-sim-td-lte-cn-64gb-m1804c3dt/index.json new file mode 100644 index 00000000000..bdc94027af1 --- /dev/null +++ b/site/public/v1/smartphones/redmi-6-dual-sim-td-lte-cn-64gb-m1804c3dt/index.json @@ -0,0 +1,76 @@ +{ + "id": 5665, + "slug": "redmi-6-dual-sim-td-lte-cn-64gb-m1804c3dt", + "name": "Redmi 6 Dual SIM TD-LTE CN 64GB M1804C3DT", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-06-27", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.1, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.921307", + "updated_at": "2026-06-19T00:43:44.921307" +} diff --git a/site/public/v1/smartphones/redmi-6-dual-sim-td-lte-cn-64gb-m1804c3dt/score/index.json b/site/public/v1/smartphones/redmi-6-dual-sim-td-lte-cn-64gb-m1804c3dt/score/index.json new file mode 100644 index 00000000000..42df51812b8 --- /dev/null +++ b/site/public/v1/smartphones/redmi-6-dual-sim-td-lte-cn-64gb-m1804c3dt/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.1, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-6-pro-dual-sim-td-lte-in-32gb-m1805d1sh/index.json b/site/public/v1/smartphones/redmi-6-pro-dual-sim-td-lte-in-32gb-m1805d1sh/index.json new file mode 100644 index 00000000000..d01a168ef02 --- /dev/null +++ b/site/public/v1/smartphones/redmi-6-pro-dual-sim-td-lte-in-32gb-m1805d1sh/index.json @@ -0,0 +1,76 @@ +{ + "id": 5666, + "slug": "redmi-6-pro-dual-sim-td-lte-in-32gb-m1805d1sh", + "name": "Redmi 6 Pro Dual SIM TD-LTE IN 32GB M1805D1SH", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 114, + "slug": "snapdragon-625", + "name": "Snapdragon 625", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-625" + }, + "release_date": "2018-10-02", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": null, + "camera": 5.1, + "battery": 15.0, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.921307", + "updated_at": "2026-06-19T00:43:44.921307" +} diff --git a/site/public/v1/smartphones/redmi-6-pro-dual-sim-td-lte-in-32gb-m1805d1sh/score/index.json b/site/public/v1/smartphones/redmi-6-pro-dual-sim-td-lte-in-32gb-m1805d1sh/score/index.json new file mode 100644 index 00000000000..e87beadf09c --- /dev/null +++ b/site/public/v1/smartphones/redmi-6-pro-dual-sim-td-lte-in-32gb-m1805d1sh/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": null, + "camera": 5.1, + "battery": 15.0, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-6-pro-dual-sim-td-lte-in-64gb-m1805d1sh/index.json b/site/public/v1/smartphones/redmi-6-pro-dual-sim-td-lte-in-64gb-m1805d1sh/index.json new file mode 100644 index 00000000000..1152d70feb5 --- /dev/null +++ b/site/public/v1/smartphones/redmi-6-pro-dual-sim-td-lte-in-64gb-m1805d1sh/index.json @@ -0,0 +1,76 @@ +{ + "id": 5667, + "slug": "redmi-6-pro-dual-sim-td-lte-in-64gb-m1805d1sh", + "name": "Redmi 6 Pro Dual SIM TD-LTE IN 64GB M1805D1SH", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 114, + "slug": "snapdragon-625", + "name": "Snapdragon 625", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-625" + }, + "release_date": "2018-10-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": null, + "camera": 5.1, + "battery": 15.0, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.921307", + "updated_at": "2026-06-19T00:43:44.921307" +} diff --git a/site/public/v1/smartphones/redmi-6-pro-dual-sim-td-lte-in-64gb-m1805d1sh/score/index.json b/site/public/v1/smartphones/redmi-6-pro-dual-sim-td-lte-in-64gb-m1805d1sh/score/index.json new file mode 100644 index 00000000000..e87beadf09c --- /dev/null +++ b/site/public/v1/smartphones/redmi-6-pro-dual-sim-td-lte-in-64gb-m1805d1sh/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": null, + "camera": 5.1, + "battery": 15.0, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-6-pro-pemium-edition-dual-sim-td-lte-64gb-cn-m1805d1se-m1805d1sc/index.json b/site/public/v1/smartphones/redmi-6-pro-pemium-edition-dual-sim-td-lte-64gb-cn-m1805d1se-m1805d1sc/index.json new file mode 100644 index 00000000000..ed12c0df79c --- /dev/null +++ b/site/public/v1/smartphones/redmi-6-pro-pemium-edition-dual-sim-td-lte-64gb-cn-m1805d1se-m1805d1sc/index.json @@ -0,0 +1,76 @@ +{ + "id": 5668, + "slug": "redmi-6-pro-pemium-edition-dual-sim-td-lte-64gb-cn-m1805d1se-m1805d1sc", + "name": "Redmi 6 Pro Pemium Edition Dual SIM TD-LTE 64GB CN M1805D1SE / M1805D1SC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 114, + "slug": "snapdragon-625", + "name": "Snapdragon 625", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-625" + }, + "release_date": "2018-06-27", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": null, + "camera": 5.1, + "battery": 15.0, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.921307", + "updated_at": "2026-06-19T00:43:44.921307" +} diff --git a/site/public/v1/smartphones/redmi-6-pro-pemium-edition-dual-sim-td-lte-64gb-cn-m1805d1se-m1805d1sc/score/index.json b/site/public/v1/smartphones/redmi-6-pro-pemium-edition-dual-sim-td-lte-64gb-cn-m1805d1se-m1805d1sc/score/index.json new file mode 100644 index 00000000000..e87beadf09c --- /dev/null +++ b/site/public/v1/smartphones/redmi-6-pro-pemium-edition-dual-sim-td-lte-64gb-cn-m1805d1se-m1805d1sc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": null, + "camera": 5.1, + "battery": 15.0, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-6-pro-premium-edition-dual-sim-td-lte-32gb-cn-m1805d1se-m1805d1sc/index.json b/site/public/v1/smartphones/redmi-6-pro-premium-edition-dual-sim-td-lte-32gb-cn-m1805d1se-m1805d1sc/index.json new file mode 100644 index 00000000000..d9cec909638 --- /dev/null +++ b/site/public/v1/smartphones/redmi-6-pro-premium-edition-dual-sim-td-lte-32gb-cn-m1805d1se-m1805d1sc/index.json @@ -0,0 +1,76 @@ +{ + "id": 5669, + "slug": "redmi-6-pro-premium-edition-dual-sim-td-lte-32gb-cn-m1805d1se-m1805d1sc", + "name": "Redmi 6 Pro Premium Edition Dual SIM TD-LTE 32GB CN M1805D1SE / M1805D1SC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 114, + "slug": "snapdragon-625", + "name": "Snapdragon 625", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-625" + }, + "release_date": "2018-06-28", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": null, + "camera": 5.1, + "battery": 15.0, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.921307", + "updated_at": "2026-06-19T00:43:44.921307" +} diff --git a/site/public/v1/smartphones/redmi-6-pro-premium-edition-dual-sim-td-lte-32gb-cn-m1805d1se-m1805d1sc/score/index.json b/site/public/v1/smartphones/redmi-6-pro-premium-edition-dual-sim-td-lte-32gb-cn-m1805d1se-m1805d1sc/score/index.json new file mode 100644 index 00000000000..e87beadf09c --- /dev/null +++ b/site/public/v1/smartphones/redmi-6-pro-premium-edition-dual-sim-td-lte-32gb-cn-m1805d1se-m1805d1sc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": null, + "camera": 5.1, + "battery": 15.0, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-6-pro-premium-edition-dual-sim-td-lte-64gb-cn-m1805d1st/index.json b/site/public/v1/smartphones/redmi-6-pro-premium-edition-dual-sim-td-lte-64gb-cn-m1805d1st/index.json new file mode 100644 index 00000000000..af7f8a3457f --- /dev/null +++ b/site/public/v1/smartphones/redmi-6-pro-premium-edition-dual-sim-td-lte-64gb-cn-m1805d1st/index.json @@ -0,0 +1,76 @@ +{ + "id": 5670, + "slug": "redmi-6-pro-premium-edition-dual-sim-td-lte-64gb-cn-m1805d1st", + "name": "Redmi 6 Pro Premium Edition Dual SIM TD-LTE 64GB CN M1805D1ST", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 114, + "slug": "snapdragon-625", + "name": "Snapdragon 625", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-625" + }, + "release_date": "2018-06-29", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": null, + "camera": 5.1, + "battery": 15.0, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.921307", + "updated_at": "2026-06-19T00:43:44.921307" +} diff --git a/site/public/v1/smartphones/redmi-6-pro-premium-edition-dual-sim-td-lte-64gb-cn-m1805d1st/score/index.json b/site/public/v1/smartphones/redmi-6-pro-premium-edition-dual-sim-td-lte-64gb-cn-m1805d1st/score/index.json new file mode 100644 index 00000000000..e87beadf09c --- /dev/null +++ b/site/public/v1/smartphones/redmi-6-pro-premium-edition-dual-sim-td-lte-64gb-cn-m1805d1st/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": null, + "camera": 5.1, + "battery": 15.0, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-6-pro-standard-edition-dual-sim-td-lte-32gb-cn-m1805d1se-m1805d1sc/index.json b/site/public/v1/smartphones/redmi-6-pro-standard-edition-dual-sim-td-lte-32gb-cn-m1805d1se-m1805d1sc/index.json new file mode 100644 index 00000000000..6a31d1b2c80 --- /dev/null +++ b/site/public/v1/smartphones/redmi-6-pro-standard-edition-dual-sim-td-lte-32gb-cn-m1805d1se-m1805d1sc/index.json @@ -0,0 +1,76 @@ +{ + "id": 5671, + "slug": "redmi-6-pro-standard-edition-dual-sim-td-lte-32gb-cn-m1805d1se-m1805d1sc", + "name": "Redmi 6 Pro Standard Edition Dual SIM TD-LTE 32GB CN M1805D1SE / M1805D1SC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 114, + "slug": "snapdragon-625", + "name": "Snapdragon 625", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-625" + }, + "release_date": "2018-06-28", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": null, + "camera": 5.1, + "battery": 15.0, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.921307", + "updated_at": "2026-06-19T00:43:44.921307" +} diff --git a/site/public/v1/smartphones/redmi-6-pro-standard-edition-dual-sim-td-lte-32gb-cn-m1805d1se-m1805d1sc/score/index.json b/site/public/v1/smartphones/redmi-6-pro-standard-edition-dual-sim-td-lte-32gb-cn-m1805d1se-m1805d1sc/score/index.json new file mode 100644 index 00000000000..e87beadf09c --- /dev/null +++ b/site/public/v1/smartphones/redmi-6-pro-standard-edition-dual-sim-td-lte-32gb-cn-m1805d1se-m1805d1sc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": null, + "camera": 5.1, + "battery": 15.0, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-6-pro-stardard-edition-dual-sim-td-lte-32gb-cn-m1805d1st/index.json b/site/public/v1/smartphones/redmi-6-pro-stardard-edition-dual-sim-td-lte-32gb-cn-m1805d1st/index.json new file mode 100644 index 00000000000..9adab82e295 --- /dev/null +++ b/site/public/v1/smartphones/redmi-6-pro-stardard-edition-dual-sim-td-lte-32gb-cn-m1805d1st/index.json @@ -0,0 +1,76 @@ +{ + "id": 5672, + "slug": "redmi-6-pro-stardard-edition-dual-sim-td-lte-32gb-cn-m1805d1st", + "name": "Redmi 6 Pro Stardard Edition Dual SIM TD-LTE 32GB CN M1805D1ST", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 114, + "slug": "snapdragon-625", + "name": "Snapdragon 625", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-625" + }, + "release_date": "2018-06-27", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.84, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 432 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": null, + "camera": 5.1, + "battery": 15.0, + "display": 48.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.921307", + "updated_at": "2026-06-19T00:43:44.921307" +} diff --git a/site/public/v1/smartphones/redmi-6-pro-stardard-edition-dual-sim-td-lte-32gb-cn-m1805d1st/score/index.json b/site/public/v1/smartphones/redmi-6-pro-stardard-edition-dual-sim-td-lte-32gb-cn-m1805d1st/score/index.json new file mode 100644 index 00000000000..e87beadf09c --- /dev/null +++ b/site/public/v1/smartphones/redmi-6-pro-stardard-edition-dual-sim-td-lte-32gb-cn-m1805d1st/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": null, + "camera": 5.1, + "battery": 15.0, + "display": 48.2, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-6a-dual-sim-global-td-lte-16gb-m1804c3cg/index.json b/site/public/v1/smartphones/redmi-6a-dual-sim-global-td-lte-16gb-m1804c3cg/index.json new file mode 100644 index 00000000000..a1280edf8bc --- /dev/null +++ b/site/public/v1/smartphones/redmi-6a-dual-sim-global-td-lte-16gb-m1804c3cg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5674, + "slug": "redmi-6a-dual-sim-global-td-lte-16gb-m1804c3cg", + "name": "Redmi 6A Dual SIM Global TD-LTE 16GB M1804C3CG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.922307", + "updated_at": "2026-06-19T00:43:44.922307" +} diff --git a/site/public/v1/smartphones/redmi-6a-dual-sim-global-td-lte-16gb-m1804c3cg/score/index.json b/site/public/v1/smartphones/redmi-6a-dual-sim-global-td-lte-16gb-m1804c3cg/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/redmi-6a-dual-sim-global-td-lte-16gb-m1804c3cg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-6a-dual-sim-td-lte-apac-16gb-m1804c3ch/index.json b/site/public/v1/smartphones/redmi-6a-dual-sim-td-lte-apac-16gb-m1804c3ch/index.json new file mode 100644 index 00000000000..6c6dbcfa73b --- /dev/null +++ b/site/public/v1/smartphones/redmi-6a-dual-sim-td-lte-apac-16gb-m1804c3ch/index.json @@ -0,0 +1,76 @@ +{ + "id": 5675, + "slug": "redmi-6a-dual-sim-td-lte-apac-16gb-m1804c3ch", + "name": "Redmi 6A Dual SIM TD-LTE APAC 16GB M1804C3CH", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.922307", + "updated_at": "2026-06-19T00:43:44.922307" +} diff --git a/site/public/v1/smartphones/redmi-6a-dual-sim-td-lte-apac-16gb-m1804c3ch/score/index.json b/site/public/v1/smartphones/redmi-6a-dual-sim-td-lte-apac-16gb-m1804c3ch/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/redmi-6a-dual-sim-td-lte-apac-16gb-m1804c3ch/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-6a-dual-sim-td-lte-cn-16gb-m1804c3cc-m1804c3ce/index.json b/site/public/v1/smartphones/redmi-6a-dual-sim-td-lte-cn-16gb-m1804c3cc-m1804c3ce/index.json new file mode 100644 index 00000000000..efd0c143d5b --- /dev/null +++ b/site/public/v1/smartphones/redmi-6a-dual-sim-td-lte-cn-16gb-m1804c3cc-m1804c3ce/index.json @@ -0,0 +1,76 @@ +{ + "id": 5676, + "slug": "redmi-6a-dual-sim-td-lte-cn-16gb-m1804c3cc-m1804c3ce", + "name": "Redmi 6A Dual SIM TD-LTE CN 16GB M1804C3CC / M1804C3CE", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.922307", + "updated_at": "2026-06-19T00:43:44.922307" +} diff --git a/site/public/v1/smartphones/redmi-6a-dual-sim-td-lte-cn-16gb-m1804c3cc-m1804c3ce/score/index.json b/site/public/v1/smartphones/redmi-6a-dual-sim-td-lte-cn-16gb-m1804c3cc-m1804c3ce/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/redmi-6a-dual-sim-td-lte-cn-16gb-m1804c3cc-m1804c3ce/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-6a-dual-sim-td-lte-cn-16gb-m1804c3ct/index.json b/site/public/v1/smartphones/redmi-6a-dual-sim-td-lte-cn-16gb-m1804c3ct/index.json new file mode 100644 index 00000000000..6b2162f99b5 --- /dev/null +++ b/site/public/v1/smartphones/redmi-6a-dual-sim-td-lte-cn-16gb-m1804c3ct/index.json @@ -0,0 +1,76 @@ +{ + "id": 5677, + "slug": "redmi-6a-dual-sim-td-lte-cn-16gb-m1804c3ct", + "name": "Redmi 6A Dual SIM TD-LTE CN 16GB M1804C3CT", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.922307", + "updated_at": "2026-06-19T00:43:44.922307" +} diff --git a/site/public/v1/smartphones/redmi-6a-dual-sim-td-lte-cn-16gb-m1804c3ct/score/index.json b/site/public/v1/smartphones/redmi-6a-dual-sim-td-lte-cn-16gb-m1804c3ct/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/redmi-6a-dual-sim-td-lte-cn-16gb-m1804c3ct/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-6a-dual-sim-td-lte-cn-32gb-m1804c3cc-m1804c3ce/index.json b/site/public/v1/smartphones/redmi-6a-dual-sim-td-lte-cn-32gb-m1804c3cc-m1804c3ce/index.json new file mode 100644 index 00000000000..e95251f828a --- /dev/null +++ b/site/public/v1/smartphones/redmi-6a-dual-sim-td-lte-cn-32gb-m1804c3cc-m1804c3ce/index.json @@ -0,0 +1,76 @@ +{ + "id": 5678, + "slug": "redmi-6a-dual-sim-td-lte-cn-32gb-m1804c3cc-m1804c3ce", + "name": "Redmi 6A Dual SIM TD-LTE CN 32GB M1804C3CC / M1804C3CE", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2018-07-09", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.922307", + "updated_at": "2026-06-19T00:43:44.922307" +} diff --git a/site/public/v1/smartphones/redmi-6a-dual-sim-td-lte-cn-32gb-m1804c3cc-m1804c3ce/score/index.json b/site/public/v1/smartphones/redmi-6a-dual-sim-td-lte-cn-32gb-m1804c3cc-m1804c3ce/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/redmi-6a-dual-sim-td-lte-cn-32gb-m1804c3cc-m1804c3ce/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-6a-dual-sim-td-lte-cn-32gb-m1804c3ct/index.json b/site/public/v1/smartphones/redmi-6a-dual-sim-td-lte-cn-32gb-m1804c3ct/index.json new file mode 100644 index 00000000000..1f217ef0423 --- /dev/null +++ b/site/public/v1/smartphones/redmi-6a-dual-sim-td-lte-cn-32gb-m1804c3ct/index.json @@ -0,0 +1,76 @@ +{ + "id": 5679, + "slug": "redmi-6a-dual-sim-td-lte-cn-32gb-m1804c3ct", + "name": "Redmi 6A Dual SIM TD-LTE CN 32GB M1804C3CT", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2018-07-09", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 145.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.922307", + "updated_at": "2026-06-19T00:43:44.922307" +} diff --git a/site/public/v1/smartphones/redmi-6a-dual-sim-td-lte-cn-32gb-m1804c3ct/score/index.json b/site/public/v1/smartphones/redmi-6a-dual-sim-td-lte-cn-32gb-m1804c3ct/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/redmi-6a-dual-sim-td-lte-cn-32gb-m1804c3ct/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-7-dual-sim-td-lte-apac-64gb-m1810f6lh/index.json b/site/public/v1/smartphones/redmi-7-dual-sim-td-lte-apac-64gb-m1810f6lh/index.json new file mode 100644 index 00000000000..ead1a05b5dd --- /dev/null +++ b/site/public/v1/smartphones/redmi-7-dual-sim-td-lte-apac-64gb-m1810f6lh/index.json @@ -0,0 +1,76 @@ +{ + "id": 5762, + "slug": "redmi-7-dual-sim-td-lte-apac-64gb-m1810f6lh", + "name": "Redmi 7 Dual SIM TD-LTE APAC 64GB M1810F6LH", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-03-26", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "1520x720", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.931307", + "updated_at": "2026-06-19T00:43:44.931307" +} diff --git a/site/public/v1/smartphones/redmi-7-dual-sim-td-lte-apac-64gb-m1810f6lh/score/index.json b/site/public/v1/smartphones/redmi-7-dual-sim-td-lte-apac-64gb-m1810f6lh/score/index.json new file mode 100644 index 00000000000..5427221399e --- /dev/null +++ b/site/public/v1/smartphones/redmi-7-dual-sim-td-lte-apac-64gb-m1810f6lh/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-7-dual-sim-td-lte-cn-16gb-m1810f6le/index.json b/site/public/v1/smartphones/redmi-7-dual-sim-td-lte-cn-16gb-m1810f6le/index.json new file mode 100644 index 00000000000..7d3c6e2a4d4 --- /dev/null +++ b/site/public/v1/smartphones/redmi-7-dual-sim-td-lte-cn-16gb-m1810f6le/index.json @@ -0,0 +1,76 @@ +{ + "id": 5763, + "slug": "redmi-7-dual-sim-td-lte-cn-16gb-m1810f6le", + "name": "Redmi 7 Dual SIM TD-LTE CN 16GB M1810F6LE", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-03-26", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.26, + "resolution": "1520x720", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.932307", + "updated_at": "2026-06-19T00:43:44.932307" +} diff --git a/site/public/v1/smartphones/redmi-7-dual-sim-td-lte-cn-16gb-m1810f6le/score/index.json b/site/public/v1/smartphones/redmi-7-dual-sim-td-lte-cn-16gb-m1810f6le/score/index.json new file mode 100644 index 00000000000..5427221399e --- /dev/null +++ b/site/public/v1/smartphones/redmi-7-dual-sim-td-lte-cn-16gb-m1810f6le/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-7-dual-sim-td-lte-cn-32gb-m1810f6le/index.json b/site/public/v1/smartphones/redmi-7-dual-sim-td-lte-cn-32gb-m1810f6le/index.json new file mode 100644 index 00000000000..c5b5f4ab899 --- /dev/null +++ b/site/public/v1/smartphones/redmi-7-dual-sim-td-lte-cn-32gb-m1810f6le/index.json @@ -0,0 +1,76 @@ +{ + "id": 5764, + "slug": "redmi-7-dual-sim-td-lte-cn-32gb-m1810f6le", + "name": "Redmi 7 Dual SIM TD-LTE CN 32GB M1810F6LE", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-03-26", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "1520x720", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.932307", + "updated_at": "2026-06-19T00:43:44.932307" +} diff --git a/site/public/v1/smartphones/redmi-7-dual-sim-td-lte-cn-32gb-m1810f6le/score/index.json b/site/public/v1/smartphones/redmi-7-dual-sim-td-lte-cn-32gb-m1810f6le/score/index.json new file mode 100644 index 00000000000..5427221399e --- /dev/null +++ b/site/public/v1/smartphones/redmi-7-dual-sim-td-lte-cn-32gb-m1810f6le/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-7-dual-sim-td-lte-cn-64gb-m1810f6le/index.json b/site/public/v1/smartphones/redmi-7-dual-sim-td-lte-cn-64gb-m1810f6le/index.json new file mode 100644 index 00000000000..59b8aeea29d --- /dev/null +++ b/site/public/v1/smartphones/redmi-7-dual-sim-td-lte-cn-64gb-m1810f6le/index.json @@ -0,0 +1,76 @@ +{ + "id": 5765, + "slug": "redmi-7-dual-sim-td-lte-cn-64gb-m1810f6le", + "name": "Redmi 7 Dual SIM TD-LTE CN 64GB M1810F6LE", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-03-26", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "1520x720", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.932307", + "updated_at": "2026-06-19T00:43:44.932307" +} diff --git a/site/public/v1/smartphones/redmi-7-dual-sim-td-lte-cn-64gb-m1810f6le/score/index.json b/site/public/v1/smartphones/redmi-7-dual-sim-td-lte-cn-64gb-m1810f6le/score/index.json new file mode 100644 index 00000000000..5427221399e --- /dev/null +++ b/site/public/v1/smartphones/redmi-7-dual-sim-td-lte-cn-64gb-m1810f6le/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-7-global-dual-sim-td-lte-16gb-m1810f6lg/index.json b/site/public/v1/smartphones/redmi-7-global-dual-sim-td-lte-16gb-m1810f6lg/index.json new file mode 100644 index 00000000000..44680d9ce3a --- /dev/null +++ b/site/public/v1/smartphones/redmi-7-global-dual-sim-td-lte-16gb-m1810f6lg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5766, + "slug": "redmi-7-global-dual-sim-td-lte-16gb-m1810f6lg", + "name": "Redmi 7 Global Dual SIM TD-LTE 16GB M1810F6LG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-03-26", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.26, + "resolution": "1520x720", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.932307", + "updated_at": "2026-06-19T00:43:44.932307" +} diff --git a/site/public/v1/smartphones/redmi-7-global-dual-sim-td-lte-16gb-m1810f6lg/score/index.json b/site/public/v1/smartphones/redmi-7-global-dual-sim-td-lte-16gb-m1810f6lg/score/index.json new file mode 100644 index 00000000000..5427221399e --- /dev/null +++ b/site/public/v1/smartphones/redmi-7-global-dual-sim-td-lte-16gb-m1810f6lg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-7-global-dual-sim-td-lte-32gb-m1810f6lg/index.json b/site/public/v1/smartphones/redmi-7-global-dual-sim-td-lte-32gb-m1810f6lg/index.json new file mode 100644 index 00000000000..680647ba162 --- /dev/null +++ b/site/public/v1/smartphones/redmi-7-global-dual-sim-td-lte-32gb-m1810f6lg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5767, + "slug": "redmi-7-global-dual-sim-td-lte-32gb-m1810f6lg", + "name": "Redmi 7 Global Dual SIM TD-LTE 32GB M1810F6LG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-03-26", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "1520x720", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.932307", + "updated_at": "2026-06-19T00:43:44.932307" +} diff --git a/site/public/v1/smartphones/redmi-7-global-dual-sim-td-lte-32gb-m1810f6lg/score/index.json b/site/public/v1/smartphones/redmi-7-global-dual-sim-td-lte-32gb-m1810f6lg/score/index.json new file mode 100644 index 00000000000..5427221399e --- /dev/null +++ b/site/public/v1/smartphones/redmi-7-global-dual-sim-td-lte-32gb-m1810f6lg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-7-global-dual-sim-td-lte-64gb-m1810f6lg/index.json b/site/public/v1/smartphones/redmi-7-global-dual-sim-td-lte-64gb-m1810f6lg/index.json new file mode 100644 index 00000000000..a60aff8ec7d --- /dev/null +++ b/site/public/v1/smartphones/redmi-7-global-dual-sim-td-lte-64gb-m1810f6lg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5768, + "slug": "redmi-7-global-dual-sim-td-lte-64gb-m1810f6lg", + "name": "Redmi 7 Global Dual SIM TD-LTE 64GB M1810F6LG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-03-26", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "1520x720", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.932307", + "updated_at": "2026-06-19T00:43:44.932307" +} diff --git a/site/public/v1/smartphones/redmi-7-global-dual-sim-td-lte-64gb-m1810f6lg/score/index.json b/site/public/v1/smartphones/redmi-7-global-dual-sim-td-lte-64gb-m1810f6lg/score/index.json new file mode 100644 index 00000000000..5427221399e --- /dev/null +++ b/site/public/v1/smartphones/redmi-7-global-dual-sim-td-lte-64gb-m1810f6lg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-7-premium-edition-dual-sim-td-lte-in-32gb-m1810f6li/index.json b/site/public/v1/smartphones/redmi-7-premium-edition-dual-sim-td-lte-in-32gb-m1810f6li/index.json new file mode 100644 index 00000000000..eed59065dee --- /dev/null +++ b/site/public/v1/smartphones/redmi-7-premium-edition-dual-sim-td-lte-in-32gb-m1810f6li/index.json @@ -0,0 +1,76 @@ +{ + "id": 5769, + "slug": "redmi-7-premium-edition-dual-sim-td-lte-in-32gb-m1810f6li", + "name": "Redmi 7 Premium Edition Dual SIM TD-LTE IN 32GB M1810F6LI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "1520x720", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.932307", + "updated_at": "2026-06-19T00:43:44.932307" +} diff --git a/site/public/v1/smartphones/redmi-7-premium-edition-dual-sim-td-lte-in-32gb-m1810f6li/score/index.json b/site/public/v1/smartphones/redmi-7-premium-edition-dual-sim-td-lte-in-32gb-m1810f6li/score/index.json new file mode 100644 index 00000000000..5427221399e --- /dev/null +++ b/site/public/v1/smartphones/redmi-7-premium-edition-dual-sim-td-lte-in-32gb-m1810f6li/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-7-standard-edition-dual-sim-td-lte-in-32gb-m1810f6li/index.json b/site/public/v1/smartphones/redmi-7-standard-edition-dual-sim-td-lte-in-32gb-m1810f6li/index.json new file mode 100644 index 00000000000..bfaceabea7c --- /dev/null +++ b/site/public/v1/smartphones/redmi-7-standard-edition-dual-sim-td-lte-in-32gb-m1810f6li/index.json @@ -0,0 +1,76 @@ +{ + "id": 5770, + "slug": "redmi-7-standard-edition-dual-sim-td-lte-in-32gb-m1810f6li", + "name": "Redmi 7 Standard Edition Dual SIM TD-LTE IN 32GB M1810F6LI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "1520x720", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.932307", + "updated_at": "2026-06-19T00:43:44.932307" +} diff --git a/site/public/v1/smartphones/redmi-7-standard-edition-dual-sim-td-lte-in-32gb-m1810f6li/score/index.json b/site/public/v1/smartphones/redmi-7-standard-edition-dual-sim-td-lte-in-32gb-m1810f6li/score/index.json new file mode 100644 index 00000000000..5427221399e --- /dev/null +++ b/site/public/v1/smartphones/redmi-7-standard-edition-dual-sim-td-lte-in-32gb-m1810f6li/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-7a-dual-sim-td-lte-apac-16gb-m1903c3eh/index.json b/site/public/v1/smartphones/redmi-7a-dual-sim-td-lte-apac-16gb-m1903c3eh/index.json new file mode 100644 index 00000000000..77d5a9d5cf3 --- /dev/null +++ b/site/public/v1/smartphones/redmi-7a-dual-sim-td-lte-apac-16gb-m1903c3eh/index.json @@ -0,0 +1,76 @@ +{ + "id": 5771, + "slug": "redmi-7a-dual-sim-td-lte-apac-16gb-m1903c3eh", + "name": "Redmi 7A Dual SIM TD-LTE APAC 16GB M1903C3EH", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.933307", + "updated_at": "2026-06-19T00:43:44.933307" +} diff --git a/site/public/v1/smartphones/redmi-7a-dual-sim-td-lte-apac-16gb-m1903c3eh/score/index.json b/site/public/v1/smartphones/redmi-7a-dual-sim-td-lte-apac-16gb-m1903c3eh/score/index.json new file mode 100644 index 00000000000..5427221399e --- /dev/null +++ b/site/public/v1/smartphones/redmi-7a-dual-sim-td-lte-apac-16gb-m1903c3eh/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-7a-dual-sim-td-lte-apac-32gb-m1903c3eh/index.json b/site/public/v1/smartphones/redmi-7a-dual-sim-td-lte-apac-32gb-m1903c3eh/index.json new file mode 100644 index 00000000000..58eee92336c --- /dev/null +++ b/site/public/v1/smartphones/redmi-7a-dual-sim-td-lte-apac-32gb-m1903c3eh/index.json @@ -0,0 +1,76 @@ +{ + "id": 5772, + "slug": "redmi-7a-dual-sim-td-lte-apac-32gb-m1903c3eh", + "name": "Redmi 7A Dual SIM TD-LTE APAC 32GB M1903C3EH", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.933307", + "updated_at": "2026-06-19T00:43:44.933307" +} diff --git a/site/public/v1/smartphones/redmi-7a-dual-sim-td-lte-apac-32gb-m1903c3eh/score/index.json b/site/public/v1/smartphones/redmi-7a-dual-sim-td-lte-apac-32gb-m1903c3eh/score/index.json new file mode 100644 index 00000000000..5427221399e --- /dev/null +++ b/site/public/v1/smartphones/redmi-7a-dual-sim-td-lte-apac-32gb-m1903c3eh/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-7a-dual-sim-td-lte-in-16gb-m1903c3ei-mzb7995in-mzb7798in-mzb7799in/index.json b/site/public/v1/smartphones/redmi-7a-dual-sim-td-lte-in-16gb-m1903c3ei-mzb7995in-mzb7798in-mzb7799in/index.json new file mode 100644 index 00000000000..136a2742070 --- /dev/null +++ b/site/public/v1/smartphones/redmi-7a-dual-sim-td-lte-in-16gb-m1903c3ei-mzb7995in-mzb7798in-mzb7799in/index.json @@ -0,0 +1,76 @@ +{ + "id": 5773, + "slug": "redmi-7a-dual-sim-td-lte-in-16gb-m1903c3ei-mzb7995in-mzb7798in-mzb7799in", + "name": "Redmi 7A Dual SIM TD-LTE IN 16GB M1903C3EI / MZB7995IN / MZB7798IN / MZB7799IN", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-07-11", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.933307", + "updated_at": "2026-06-19T00:43:44.933307" +} diff --git a/site/public/v1/smartphones/redmi-7a-dual-sim-td-lte-in-16gb-m1903c3ei-mzb7995in-mzb7798in-mzb7799in/score/index.json b/site/public/v1/smartphones/redmi-7a-dual-sim-td-lte-in-16gb-m1903c3ei-mzb7995in-mzb7798in-mzb7799in/score/index.json new file mode 100644 index 00000000000..5427221399e --- /dev/null +++ b/site/public/v1/smartphones/redmi-7a-dual-sim-td-lte-in-16gb-m1903c3ei-mzb7995in-mzb7798in-mzb7799in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-7a-dual-sim-td-lte-in-32gb-m1903c3ei-mzb7989in-mzb7800in-mzb8008in/index.json b/site/public/v1/smartphones/redmi-7a-dual-sim-td-lte-in-32gb-m1903c3ei-mzb7989in-mzb7800in-mzb8008in/index.json new file mode 100644 index 00000000000..33996feec9e --- /dev/null +++ b/site/public/v1/smartphones/redmi-7a-dual-sim-td-lte-in-32gb-m1903c3ei-mzb7989in-mzb7800in-mzb8008in/index.json @@ -0,0 +1,76 @@ +{ + "id": 5774, + "slug": "redmi-7a-dual-sim-td-lte-in-32gb-m1903c3ei-mzb7989in-mzb7800in-mzb8008in", + "name": "Redmi 7A Dual SIM TD-LTE IN 32GB M1903C3EI / MZB7989IN / MZB7800IN / MZB8008IN", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-07-11", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.933307", + "updated_at": "2026-06-19T00:43:44.933307" +} diff --git a/site/public/v1/smartphones/redmi-7a-dual-sim-td-lte-in-32gb-m1903c3ei-mzb7989in-mzb7800in-mzb8008in/score/index.json b/site/public/v1/smartphones/redmi-7a-dual-sim-td-lte-in-32gb-m1903c3ei-mzb7989in-mzb7800in-mzb8008in/score/index.json new file mode 100644 index 00000000000..5427221399e --- /dev/null +++ b/site/public/v1/smartphones/redmi-7a-dual-sim-td-lte-in-32gb-m1903c3ei-mzb7989in-mzb7800in-mzb8008in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-7a-global-dual-sim-td-lte-16gb-m1903c3eg/index.json b/site/public/v1/smartphones/redmi-7a-global-dual-sim-td-lte-16gb-m1903c3eg/index.json new file mode 100644 index 00000000000..60107b6dc18 --- /dev/null +++ b/site/public/v1/smartphones/redmi-7a-global-dual-sim-td-lte-16gb-m1903c3eg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5775, + "slug": "redmi-7a-global-dual-sim-td-lte-16gb-m1903c3eg", + "name": "Redmi 7A Global Dual SIM TD-LTE 16GB M1903C3EG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-07-18", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.933307", + "updated_at": "2026-06-19T00:43:44.933307" +} diff --git a/site/public/v1/smartphones/redmi-7a-global-dual-sim-td-lte-16gb-m1903c3eg/score/index.json b/site/public/v1/smartphones/redmi-7a-global-dual-sim-td-lte-16gb-m1903c3eg/score/index.json new file mode 100644 index 00000000000..5427221399e --- /dev/null +++ b/site/public/v1/smartphones/redmi-7a-global-dual-sim-td-lte-16gb-m1903c3eg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-7a-global-dual-sim-td-lte-32gb-m1903c3eg/index.json b/site/public/v1/smartphones/redmi-7a-global-dual-sim-td-lte-32gb-m1903c3eg/index.json new file mode 100644 index 00000000000..ac9d4f386f6 --- /dev/null +++ b/site/public/v1/smartphones/redmi-7a-global-dual-sim-td-lte-32gb-m1903c3eg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5776, + "slug": "redmi-7a-global-dual-sim-td-lte-32gb-m1903c3eg", + "name": "Redmi 7A Global Dual SIM TD-LTE 32GB M1903C3EG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-07-18", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.933307", + "updated_at": "2026-06-19T00:43:44.933307" +} diff --git a/site/public/v1/smartphones/redmi-7a-global-dual-sim-td-lte-32gb-m1903c3eg/score/index.json b/site/public/v1/smartphones/redmi-7a-global-dual-sim-td-lte-32gb-m1903c3eg/score/index.json new file mode 100644 index 00000000000..5427221399e --- /dev/null +++ b/site/public/v1/smartphones/redmi-7a-global-dual-sim-td-lte-32gb-m1903c3eg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-7a-premium-edition-dual-sim-td-lte-32gb-cn-m1903c3ee-m1903c3ec/index.json b/site/public/v1/smartphones/redmi-7a-premium-edition-dual-sim-td-lte-32gb-cn-m1903c3ee-m1903c3ec/index.json new file mode 100644 index 00000000000..eac7065447e --- /dev/null +++ b/site/public/v1/smartphones/redmi-7a-premium-edition-dual-sim-td-lte-32gb-cn-m1903c3ee-m1903c3ec/index.json @@ -0,0 +1,76 @@ +{ + "id": 5777, + "slug": "redmi-7a-premium-edition-dual-sim-td-lte-32gb-cn-m1903c3ee-m1903c3ec", + "name": "Redmi 7A Premium Edition Dual SIM TD-LTE 32GB CN M1903C3EE / M1903C3EC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.933307", + "updated_at": "2026-06-19T00:43:44.933307" +} diff --git a/site/public/v1/smartphones/redmi-7a-premium-edition-dual-sim-td-lte-32gb-cn-m1903c3ee-m1903c3ec/score/index.json b/site/public/v1/smartphones/redmi-7a-premium-edition-dual-sim-td-lte-32gb-cn-m1903c3ee-m1903c3ec/score/index.json new file mode 100644 index 00000000000..a59635bee66 --- /dev/null +++ b/site/public/v1/smartphones/redmi-7a-premium-edition-dual-sim-td-lte-32gb-cn-m1903c3ee-m1903c3ec/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-7a-premium-edition-dual-sim-td-lte-32gb-cn-m1903c3et/index.json b/site/public/v1/smartphones/redmi-7a-premium-edition-dual-sim-td-lte-32gb-cn-m1903c3et/index.json new file mode 100644 index 00000000000..f1c8214b601 --- /dev/null +++ b/site/public/v1/smartphones/redmi-7a-premium-edition-dual-sim-td-lte-32gb-cn-m1903c3et/index.json @@ -0,0 +1,76 @@ +{ + "id": 5778, + "slug": "redmi-7a-premium-edition-dual-sim-td-lte-32gb-cn-m1903c3et", + "name": "Redmi 7A Premium Edition Dual SIM TD-LTE 32GB CN M1903C3ET", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.933307", + "updated_at": "2026-06-19T00:43:44.933307" +} diff --git a/site/public/v1/smartphones/redmi-7a-premium-edition-dual-sim-td-lte-32gb-cn-m1903c3et/score/index.json b/site/public/v1/smartphones/redmi-7a-premium-edition-dual-sim-td-lte-32gb-cn-m1903c3et/score/index.json new file mode 100644 index 00000000000..a59635bee66 --- /dev/null +++ b/site/public/v1/smartphones/redmi-7a-premium-edition-dual-sim-td-lte-32gb-cn-m1903c3et/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-7a-standard-edition-dual-sim-td-lte-16gb-cn-m1903c3ee-m1903c3ec/index.json b/site/public/v1/smartphones/redmi-7a-standard-edition-dual-sim-td-lte-16gb-cn-m1903c3ee-m1903c3ec/index.json new file mode 100644 index 00000000000..45b1f7bcfe6 --- /dev/null +++ b/site/public/v1/smartphones/redmi-7a-standard-edition-dual-sim-td-lte-16gb-cn-m1903c3ee-m1903c3ec/index.json @@ -0,0 +1,76 @@ +{ + "id": 5779, + "slug": "redmi-7a-standard-edition-dual-sim-td-lte-16gb-cn-m1903c3ee-m1903c3ec", + "name": "Redmi 7A Standard Edition Dual SIM TD-LTE 16GB CN M1903C3EE / M1903C3EC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.933307", + "updated_at": "2026-06-19T00:43:44.933307" +} diff --git a/site/public/v1/smartphones/redmi-7a-standard-edition-dual-sim-td-lte-16gb-cn-m1903c3ee-m1903c3ec/score/index.json b/site/public/v1/smartphones/redmi-7a-standard-edition-dual-sim-td-lte-16gb-cn-m1903c3ee-m1903c3ec/score/index.json new file mode 100644 index 00000000000..a59635bee66 --- /dev/null +++ b/site/public/v1/smartphones/redmi-7a-standard-edition-dual-sim-td-lte-16gb-cn-m1903c3ee-m1903c3ec/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-7a-standard-edition-dual-sim-td-lte-32gb-cn-m1903c3ee-m1903c3ec/index.json b/site/public/v1/smartphones/redmi-7a-standard-edition-dual-sim-td-lte-32gb-cn-m1903c3ee-m1903c3ec/index.json new file mode 100644 index 00000000000..e66abbf4323 --- /dev/null +++ b/site/public/v1/smartphones/redmi-7a-standard-edition-dual-sim-td-lte-32gb-cn-m1903c3ee-m1903c3ec/index.json @@ -0,0 +1,76 @@ +{ + "id": 5780, + "slug": "redmi-7a-standard-edition-dual-sim-td-lte-32gb-cn-m1903c3ee-m1903c3ec", + "name": "Redmi 7A Standard Edition Dual SIM TD-LTE 32GB CN M1903C3EE / M1903C3EC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.933307", + "updated_at": "2026-06-19T00:43:44.933307" +} diff --git a/site/public/v1/smartphones/redmi-7a-standard-edition-dual-sim-td-lte-32gb-cn-m1903c3ee-m1903c3ec/score/index.json b/site/public/v1/smartphones/redmi-7a-standard-edition-dual-sim-td-lte-32gb-cn-m1903c3ee-m1903c3ec/score/index.json new file mode 100644 index 00000000000..a59635bee66 --- /dev/null +++ b/site/public/v1/smartphones/redmi-7a-standard-edition-dual-sim-td-lte-32gb-cn-m1903c3ee-m1903c3ec/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-8-dual-sim-td-lte-apac-64gb-m1908c3ih/index.json b/site/public/v1/smartphones/redmi-8-dual-sim-td-lte-apac-64gb-m1908c3ih/index.json new file mode 100644 index 00000000000..91cecaf7a44 --- /dev/null +++ b/site/public/v1/smartphones/redmi-8-dual-sim-td-lte-apac-64gb-m1908c3ih/index.json @@ -0,0 +1,76 @@ +{ + "id": 5781, + "slug": "redmi-8-dual-sim-td-lte-apac-64gb-m1908c3ih", + "name": "Redmi 8 Dual SIM TD-LTE APAC 64GB M1908C3IH", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.1, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.934306", + "updated_at": "2026-06-19T00:43:44.934306" +} diff --git a/site/public/v1/smartphones/redmi-8-dual-sim-td-lte-apac-64gb-m1908c3ih/score/index.json b/site/public/v1/smartphones/redmi-8-dual-sim-td-lte-apac-64gb-m1908c3ih/score/index.json new file mode 100644 index 00000000000..7c2629aa2a0 --- /dev/null +++ b/site/public/v1/smartphones/redmi-8-dual-sim-td-lte-apac-64gb-m1908c3ih/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.1, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-8-dual-sim-td-lte-cn-32gb-m1908c3ie-m1908c3ic/index.json b/site/public/v1/smartphones/redmi-8-dual-sim-td-lte-cn-32gb-m1908c3ie-m1908c3ic/index.json new file mode 100644 index 00000000000..2c709096362 --- /dev/null +++ b/site/public/v1/smartphones/redmi-8-dual-sim-td-lte-cn-32gb-m1908c3ie-m1908c3ic/index.json @@ -0,0 +1,76 @@ +{ + "id": 5782, + "slug": "redmi-8-dual-sim-td-lte-cn-32gb-m1908c3ie-m1908c3ic", + "name": "Redmi 8 Dual SIM TD-LTE CN 32GB M1908C3IE / M1908C3IC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.1, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.934306", + "updated_at": "2026-06-19T00:43:44.934306" +} diff --git a/site/public/v1/smartphones/redmi-8-dual-sim-td-lte-cn-32gb-m1908c3ie-m1908c3ic/score/index.json b/site/public/v1/smartphones/redmi-8-dual-sim-td-lte-cn-32gb-m1908c3ie-m1908c3ic/score/index.json new file mode 100644 index 00000000000..7c2629aa2a0 --- /dev/null +++ b/site/public/v1/smartphones/redmi-8-dual-sim-td-lte-cn-32gb-m1908c3ie-m1908c3ic/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.1, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-8-dual-sim-td-lte-cn-64gb-m1908c3ie-m1908c3ic/index.json b/site/public/v1/smartphones/redmi-8-dual-sim-td-lte-cn-64gb-m1908c3ie-m1908c3ic/index.json new file mode 100644 index 00000000000..e1fd5e491f9 --- /dev/null +++ b/site/public/v1/smartphones/redmi-8-dual-sim-td-lte-cn-64gb-m1908c3ie-m1908c3ic/index.json @@ -0,0 +1,76 @@ +{ + "id": 5783, + "slug": "redmi-8-dual-sim-td-lte-cn-64gb-m1908c3ie-m1908c3ic", + "name": "Redmi 8 Dual SIM TD-LTE CN 64GB M1908C3IE / M1908C3IC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-10-14", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.1, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.934306", + "updated_at": "2026-06-19T00:43:44.934306" +} diff --git a/site/public/v1/smartphones/redmi-8-dual-sim-td-lte-cn-64gb-m1908c3ie-m1908c3ic/score/index.json b/site/public/v1/smartphones/redmi-8-dual-sim-td-lte-cn-64gb-m1908c3ie-m1908c3ic/score/index.json new file mode 100644 index 00000000000..7c2629aa2a0 --- /dev/null +++ b/site/public/v1/smartphones/redmi-8-dual-sim-td-lte-cn-64gb-m1908c3ie-m1908c3ic/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.1, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-8-dual-sim-td-lte-in-64gb-mzb8254in-mzb8255in-mzb8256in-mzb8257in/index.json b/site/public/v1/smartphones/redmi-8-dual-sim-td-lte-in-64gb-mzb8254in-mzb8255in-mzb8256in-mzb8257in/index.json new file mode 100644 index 00000000000..5e38ab32264 --- /dev/null +++ b/site/public/v1/smartphones/redmi-8-dual-sim-td-lte-in-64gb-mzb8254in-mzb8255in-mzb8256in-mzb8257in/index.json @@ -0,0 +1,76 @@ +{ + "id": 5784, + "slug": "redmi-8-dual-sim-td-lte-in-64gb-mzb8254in-mzb8255in-mzb8256in-mzb8257in", + "name": "Redmi 8 Dual SIM TD-LTE IN 64GB MZB8254IN / MZB8255IN / MZB8256IN / MZB8257IN", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-10-12", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.1, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.934306", + "updated_at": "2026-06-19T00:43:44.934306" +} diff --git a/site/public/v1/smartphones/redmi-8-dual-sim-td-lte-in-64gb-mzb8254in-mzb8255in-mzb8256in-mzb8257in/score/index.json b/site/public/v1/smartphones/redmi-8-dual-sim-td-lte-in-64gb-mzb8254in-mzb8255in-mzb8256in-mzb8257in/score/index.json new file mode 100644 index 00000000000..7c2629aa2a0 --- /dev/null +++ b/site/public/v1/smartphones/redmi-8-dual-sim-td-lte-in-64gb-mzb8254in-mzb8255in-mzb8256in-mzb8257in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.1, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-8-global-dual-sim-td-lte-32gb-m1908c3ig/index.json b/site/public/v1/smartphones/redmi-8-global-dual-sim-td-lte-32gb-m1908c3ig/index.json new file mode 100644 index 00000000000..6dceefe6a43 --- /dev/null +++ b/site/public/v1/smartphones/redmi-8-global-dual-sim-td-lte-32gb-m1908c3ig/index.json @@ -0,0 +1,76 @@ +{ + "id": 5785, + "slug": "redmi-8-global-dual-sim-td-lte-32gb-m1908c3ig", + "name": "Redmi 8 Global Dual SIM TD-LTE 32GB M1908C3IG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.1, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.934306", + "updated_at": "2026-06-19T00:43:44.934306" +} diff --git a/site/public/v1/smartphones/redmi-8-global-dual-sim-td-lte-32gb-m1908c3ig/score/index.json b/site/public/v1/smartphones/redmi-8-global-dual-sim-td-lte-32gb-m1908c3ig/score/index.json new file mode 100644 index 00000000000..7c2629aa2a0 --- /dev/null +++ b/site/public/v1/smartphones/redmi-8-global-dual-sim-td-lte-32gb-m1908c3ig/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.1, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-8a-dual-premium-edition-dual-sim-td-lte-in-32gb-m2001c3k3i-redmi-8a-pro/index.json b/site/public/v1/smartphones/redmi-8a-dual-premium-edition-dual-sim-td-lte-in-32gb-m2001c3k3i-redmi-8a-pro/index.json new file mode 100644 index 00000000000..074e97b9415 --- /dev/null +++ b/site/public/v1/smartphones/redmi-8a-dual-premium-edition-dual-sim-td-lte-in-32gb-m2001c3k3i-redmi-8a-pro/index.json @@ -0,0 +1,76 @@ +{ + "id": 5959, + "slug": "redmi-8a-dual-premium-edition-dual-sim-td-lte-in-32gb-m2001c3k3i-redmi-8a-pro", + "name": "Redmi 8A Dual Premium Edition Dual SIM TD-LTE IN 32GB M2001C3K3I / Redmi 8A Pro", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2020-02-18", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 5.4, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.954307", + "updated_at": "2026-06-19T00:43:44.955307" +} diff --git a/site/public/v1/smartphones/redmi-8a-dual-premium-edition-dual-sim-td-lte-in-32gb-m2001c3k3i-redmi-8a-pro/score/index.json b/site/public/v1/smartphones/redmi-8a-dual-premium-edition-dual-sim-td-lte-in-32gb-m2001c3k3i-redmi-8a-pro/score/index.json new file mode 100644 index 00000000000..de34047f1f5 --- /dev/null +++ b/site/public/v1/smartphones/redmi-8a-dual-premium-edition-dual-sim-td-lte-in-32gb-m2001c3k3i-redmi-8a-pro/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 5.4, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-8a-dual-standard-edition-dual-sim-td-lte-in-32gb-m2001c3k3i-redmi-8a-pro/index.json b/site/public/v1/smartphones/redmi-8a-dual-standard-edition-dual-sim-td-lte-in-32gb-m2001c3k3i-redmi-8a-pro/index.json new file mode 100644 index 00000000000..61ade1d1587 --- /dev/null +++ b/site/public/v1/smartphones/redmi-8a-dual-standard-edition-dual-sim-td-lte-in-32gb-m2001c3k3i-redmi-8a-pro/index.json @@ -0,0 +1,76 @@ +{ + "id": 5960, + "slug": "redmi-8a-dual-standard-edition-dual-sim-td-lte-in-32gb-m2001c3k3i-redmi-8a-pro", + "name": "Redmi 8A Dual Standard Edition Dual SIM TD-LTE IN 32GB M2001C3K3I / Redmi 8A Pro", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2020-02-18", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 5.4, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.955307", + "updated_at": "2026-06-19T00:43:44.955307" +} diff --git a/site/public/v1/smartphones/redmi-8a-dual-standard-edition-dual-sim-td-lte-in-32gb-m2001c3k3i-redmi-8a-pro/score/index.json b/site/public/v1/smartphones/redmi-8a-dual-standard-edition-dual-sim-td-lte-in-32gb-m2001c3k3i-redmi-8a-pro/score/index.json new file mode 100644 index 00000000000..de34047f1f5 --- /dev/null +++ b/site/public/v1/smartphones/redmi-8a-dual-standard-edition-dual-sim-td-lte-in-32gb-m2001c3k3i-redmi-8a-pro/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 5.4, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-8a-premium-edition-dual-sim-td-lte-cn-32gb-m1908c3ke-m1908c3kc/index.json b/site/public/v1/smartphones/redmi-8a-premium-edition-dual-sim-td-lte-cn-32gb-m1908c3ke-m1908c3kc/index.json new file mode 100644 index 00000000000..c5573c227b6 --- /dev/null +++ b/site/public/v1/smartphones/redmi-8a-premium-edition-dual-sim-td-lte-cn-32gb-m1908c3ke-m1908c3kc/index.json @@ -0,0 +1,76 @@ +{ + "id": 5786, + "slug": "redmi-8a-premium-edition-dual-sim-td-lte-cn-32gb-m1908c3ke-m1908c3kc", + "name": "Redmi 8A Premium Edition Dual SIM TD-LTE CN 32GB M1908C3KE / M1908C3KC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-10-14", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.1, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.934306", + "updated_at": "2026-06-19T00:43:44.934306" +} diff --git a/site/public/v1/smartphones/redmi-8a-premium-edition-dual-sim-td-lte-cn-32gb-m1908c3ke-m1908c3kc/score/index.json b/site/public/v1/smartphones/redmi-8a-premium-edition-dual-sim-td-lte-cn-32gb-m1908c3ke-m1908c3kc/score/index.json new file mode 100644 index 00000000000..7c2629aa2a0 --- /dev/null +++ b/site/public/v1/smartphones/redmi-8a-premium-edition-dual-sim-td-lte-cn-32gb-m1908c3ke-m1908c3kc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.1, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-8a-premium-edition-dual-sim-td-lte-cn-64gb-m1908c3ke-m1908c3kc/index.json b/site/public/v1/smartphones/redmi-8a-premium-edition-dual-sim-td-lte-cn-64gb-m1908c3ke-m1908c3kc/index.json new file mode 100644 index 00000000000..48dba66fcc1 --- /dev/null +++ b/site/public/v1/smartphones/redmi-8a-premium-edition-dual-sim-td-lte-cn-64gb-m1908c3ke-m1908c3kc/index.json @@ -0,0 +1,76 @@ +{ + "id": 5787, + "slug": "redmi-8a-premium-edition-dual-sim-td-lte-cn-64gb-m1908c3ke-m1908c3kc", + "name": "Redmi 8A Premium Edition Dual SIM TD-LTE CN 64GB M1908C3KE / M1908C3KC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.1, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.934306", + "updated_at": "2026-06-19T00:43:44.934306" +} diff --git a/site/public/v1/smartphones/redmi-8a-premium-edition-dual-sim-td-lte-cn-64gb-m1908c3ke-m1908c3kc/score/index.json b/site/public/v1/smartphones/redmi-8a-premium-edition-dual-sim-td-lte-cn-64gb-m1908c3ke-m1908c3kc/score/index.json new file mode 100644 index 00000000000..7c2629aa2a0 --- /dev/null +++ b/site/public/v1/smartphones/redmi-8a-premium-edition-dual-sim-td-lte-cn-64gb-m1908c3ke-m1908c3kc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.1, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-8a-premium-edition-dual-sim-td-lte-in-32gb-m1908c3ki/index.json b/site/public/v1/smartphones/redmi-8a-premium-edition-dual-sim-td-lte-in-32gb-m1908c3ki/index.json new file mode 100644 index 00000000000..572b061f6b7 --- /dev/null +++ b/site/public/v1/smartphones/redmi-8a-premium-edition-dual-sim-td-lte-in-32gb-m1908c3ki/index.json @@ -0,0 +1,76 @@ +{ + "id": 5788, + "slug": "redmi-8a-premium-edition-dual-sim-td-lte-in-32gb-m1908c3ki", + "name": "Redmi 8A Premium Edition Dual SIM TD-LTE IN 32GB M1908C3KI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-10-12", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.1, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.934306", + "updated_at": "2026-06-19T00:43:44.934306" +} diff --git a/site/public/v1/smartphones/redmi-8a-premium-edition-dual-sim-td-lte-in-32gb-m1908c3ki/score/index.json b/site/public/v1/smartphones/redmi-8a-premium-edition-dual-sim-td-lte-in-32gb-m1908c3ki/score/index.json new file mode 100644 index 00000000000..7c2629aa2a0 --- /dev/null +++ b/site/public/v1/smartphones/redmi-8a-premium-edition-dual-sim-td-lte-in-32gb-m1908c3ki/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.1, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-8a-standard-edition-dual-sim-td-lte-in-32gb-m1908c3ki/index.json b/site/public/v1/smartphones/redmi-8a-standard-edition-dual-sim-td-lte-in-32gb-m1908c3ki/index.json new file mode 100644 index 00000000000..5f35fe2537f --- /dev/null +++ b/site/public/v1/smartphones/redmi-8a-standard-edition-dual-sim-td-lte-in-32gb-m1908c3ki/index.json @@ -0,0 +1,76 @@ +{ + "id": 5789, + "slug": "redmi-8a-standard-edition-dual-sim-td-lte-in-32gb-m1908c3ki", + "name": "Redmi 8A Standard Edition Dual SIM TD-LTE IN 32GB M1908C3KI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-10-12", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.1, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.934306", + "updated_at": "2026-06-19T00:43:44.934306" +} diff --git a/site/public/v1/smartphones/redmi-8a-standard-edition-dual-sim-td-lte-in-32gb-m1908c3ki/score/index.json b/site/public/v1/smartphones/redmi-8a-standard-edition-dual-sim-td-lte-in-32gb-m1908c3ki/score/index.json new file mode 100644 index 00000000000..7c2629aa2a0 --- /dev/null +++ b/site/public/v1/smartphones/redmi-8a-standard-edition-dual-sim-td-lte-in-32gb-m1908c3ki/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.1, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-8a-standard-edition-global-dual-sim-td-lte-32gb-m1908c3kg/index.json b/site/public/v1/smartphones/redmi-8a-standard-edition-global-dual-sim-td-lte-32gb-m1908c3kg/index.json new file mode 100644 index 00000000000..291314e828b --- /dev/null +++ b/site/public/v1/smartphones/redmi-8a-standard-edition-global-dual-sim-td-lte-32gb-m1908c3kg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5790, + "slug": "redmi-8a-standard-edition-global-dual-sim-td-lte-32gb-m1908c3kg", + "name": "Redmi 8A Standard Edition Global Dual SIM TD-LTE 32GB M1908C3KG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.1, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.934306", + "updated_at": "2026-06-19T00:43:44.934306" +} diff --git a/site/public/v1/smartphones/redmi-8a-standard-edition-global-dual-sim-td-lte-32gb-m1908c3kg/score/index.json b/site/public/v1/smartphones/redmi-8a-standard-edition-global-dual-sim-td-lte-32gb-m1908c3kg/score/index.json new file mode 100644 index 00000000000..7c2629aa2a0 --- /dev/null +++ b/site/public/v1/smartphones/redmi-8a-standard-edition-global-dual-sim-td-lte-32gb-m1908c3kg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.1, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-9-dual-sim-td-lte-in-128gb-m2006c3mii-redmi-9c/index.json b/site/public/v1/smartphones/redmi-9-dual-sim-td-lte-in-128gb-m2006c3mii-redmi-9c/index.json new file mode 100644 index 00000000000..adab7998d75 --- /dev/null +++ b/site/public/v1/smartphones/redmi-9-dual-sim-td-lte-in-128gb-m2006c3mii-redmi-9c/index.json @@ -0,0 +1,76 @@ +{ + "id": 5961, + "slug": "redmi-9-dual-sim-td-lte-in-128gb-m2006c3mii-redmi-9c", + "name": "Redmi 9 Dual SIM TD-LTE IN 128GB M2006C3MII / Redmi 9C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.955307", + "updated_at": "2026-06-19T00:43:44.955307" +} diff --git a/site/public/v1/smartphones/redmi-9-dual-sim-td-lte-in-128gb-m2006c3mii-redmi-9c/score/index.json b/site/public/v1/smartphones/redmi-9-dual-sim-td-lte-in-128gb-m2006c3mii-redmi-9c/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/redmi-9-dual-sim-td-lte-in-128gb-m2006c3mii-redmi-9c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-9-dual-sim-td-lte-in-64gb-m2006c3mii-redmi-9c/index.json b/site/public/v1/smartphones/redmi-9-dual-sim-td-lte-in-64gb-m2006c3mii-redmi-9c/index.json new file mode 100644 index 00000000000..6a898d35fb4 --- /dev/null +++ b/site/public/v1/smartphones/redmi-9-dual-sim-td-lte-in-64gb-m2006c3mii-redmi-9c/index.json @@ -0,0 +1,76 @@ +{ + "id": 5962, + "slug": "redmi-9-dual-sim-td-lte-in-64gb-m2006c3mii-redmi-9c", + "name": "Redmi 9 Dual SIM TD-LTE IN 64GB M2006C3MII / Redmi 9C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.955307", + "updated_at": "2026-06-19T00:43:44.955307" +} diff --git a/site/public/v1/smartphones/redmi-9-dual-sim-td-lte-in-64gb-m2006c3mii-redmi-9c/score/index.json b/site/public/v1/smartphones/redmi-9-dual-sim-td-lte-in-64gb-m2006c3mii-redmi-9c/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/redmi-9-dual-sim-td-lte-in-64gb-m2006c3mii-redmi-9c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-9-global-dual-sim-td-lte-32gb-m2004j19g/index.json b/site/public/v1/smartphones/redmi-9-global-dual-sim-td-lte-32gb-m2004j19g/index.json new file mode 100644 index 00000000000..2e70cc5f4a1 --- /dev/null +++ b/site/public/v1/smartphones/redmi-9-global-dual-sim-td-lte-32gb-m2004j19g/index.json @@ -0,0 +1,76 @@ +{ + "id": 5963, + "slug": "redmi-9-global-dual-sim-td-lte-32gb-m2004j19g", + "name": "Redmi 9 Global Dual SIM TD-LTE 32GB M2004J19G", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2020-06-18", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5020, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.9, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.955307", + "updated_at": "2026-06-19T00:43:44.955307" +} diff --git a/site/public/v1/smartphones/redmi-9-global-dual-sim-td-lte-32gb-m2004j19g/score/index.json b/site/public/v1/smartphones/redmi-9-global-dual-sim-td-lte-32gb-m2004j19g/score/index.json new file mode 100644 index 00000000000..e51de834e63 --- /dev/null +++ b/site/public/v1/smartphones/redmi-9-global-dual-sim-td-lte-32gb-m2004j19g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.9, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-9-global-dual-sim-td-lte-64gb-m2004j19g/index.json b/site/public/v1/smartphones/redmi-9-global-dual-sim-td-lte-64gb-m2004j19g/index.json new file mode 100644 index 00000000000..8062b99ada5 --- /dev/null +++ b/site/public/v1/smartphones/redmi-9-global-dual-sim-td-lte-64gb-m2004j19g/index.json @@ -0,0 +1,76 @@ +{ + "id": 5964, + "slug": "redmi-9-global-dual-sim-td-lte-64gb-m2004j19g", + "name": "Redmi 9 Global Dual SIM TD-LTE 64GB M2004J19G", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2020-06-18", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5020, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.9, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.955307", + "updated_at": "2026-06-19T00:43:44.955307" +} diff --git a/site/public/v1/smartphones/redmi-9-global-dual-sim-td-lte-64gb-m2004j19g/score/index.json b/site/public/v1/smartphones/redmi-9-global-dual-sim-td-lte-64gb-m2004j19g/score/index.json new file mode 100644 index 00000000000..e51de834e63 --- /dev/null +++ b/site/public/v1/smartphones/redmi-9-global-dual-sim-td-lte-64gb-m2004j19g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.9, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-9-power-4g-premium-edition-dual-sim-td-lte-in-128gb-m2010j19si/index.json b/site/public/v1/smartphones/redmi-9-power-4g-premium-edition-dual-sim-td-lte-in-128gb-m2010j19si/index.json new file mode 100644 index 00000000000..6d38b04d21a --- /dev/null +++ b/site/public/v1/smartphones/redmi-9-power-4g-premium-edition-dual-sim-td-lte-in-128gb-m2010j19si/index.json @@ -0,0 +1,76 @@ +{ + "id": 5965, + "slug": "redmi-9-power-4g-premium-edition-dual-sim-td-lte-in-128gb-m2010j19si", + "name": "Redmi 9 Power 4G Premium Edition Dual SIM TD-LTE IN 128GB M2010J19SI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2020-12-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.0, + "performance": 1.5, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.955307", + "updated_at": "2026-06-19T00:43:44.955307" +} diff --git a/site/public/v1/smartphones/redmi-9-power-4g-premium-edition-dual-sim-td-lte-in-128gb-m2010j19si/score/index.json b/site/public/v1/smartphones/redmi-9-power-4g-premium-edition-dual-sim-td-lte-in-128gb-m2010j19si/score/index.json new file mode 100644 index 00000000000..5f35c89dff5 --- /dev/null +++ b/site/public/v1/smartphones/redmi-9-power-4g-premium-edition-dual-sim-td-lte-in-128gb-m2010j19si/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.0, + "performance": 1.5, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-9-power-4g-standard-edition-dual-sim-td-lte-in-128gb-m2010j19si/index.json b/site/public/v1/smartphones/redmi-9-power-4g-standard-edition-dual-sim-td-lte-in-128gb-m2010j19si/index.json new file mode 100644 index 00000000000..748b647891e --- /dev/null +++ b/site/public/v1/smartphones/redmi-9-power-4g-standard-edition-dual-sim-td-lte-in-128gb-m2010j19si/index.json @@ -0,0 +1,76 @@ +{ + "id": 5966, + "slug": "redmi-9-power-4g-standard-edition-dual-sim-td-lte-in-128gb-m2010j19si", + "name": "Redmi 9 Power 4G Standard Edition Dual SIM TD-LTE IN 128GB M2010J19SI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2020-12-22", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.955307", + "updated_at": "2026-06-19T00:43:44.955307" +} diff --git a/site/public/v1/smartphones/redmi-9-power-4g-standard-edition-dual-sim-td-lte-in-128gb-m2010j19si/score/index.json b/site/public/v1/smartphones/redmi-9-power-4g-standard-edition-dual-sim-td-lte-in-128gb-m2010j19si/score/index.json new file mode 100644 index 00000000000..b52b29d6a13 --- /dev/null +++ b/site/public/v1/smartphones/redmi-9-power-4g-standard-edition-dual-sim-td-lte-in-128gb-m2010j19si/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-9-power-4g-standard-edition-dual-sim-td-lte-in-64gb-m2010j19si/index.json b/site/public/v1/smartphones/redmi-9-power-4g-standard-edition-dual-sim-td-lte-in-64gb-m2010j19si/index.json new file mode 100644 index 00000000000..7978f840c8f --- /dev/null +++ b/site/public/v1/smartphones/redmi-9-power-4g-standard-edition-dual-sim-td-lte-in-64gb-m2010j19si/index.json @@ -0,0 +1,76 @@ +{ + "id": 5967, + "slug": "redmi-9-power-4g-standard-edition-dual-sim-td-lte-in-64gb-m2010j19si", + "name": "Redmi 9 Power 4G Standard Edition Dual SIM TD-LTE IN 64GB M2010J19SI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2020-12-22", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.956307", + "updated_at": "2026-06-19T00:43:44.956307" +} diff --git a/site/public/v1/smartphones/redmi-9-power-4g-standard-edition-dual-sim-td-lte-in-64gb-m2010j19si/score/index.json b/site/public/v1/smartphones/redmi-9-power-4g-standard-edition-dual-sim-td-lte-in-64gb-m2010j19si/score/index.json new file mode 100644 index 00000000000..b52b29d6a13 --- /dev/null +++ b/site/public/v1/smartphones/redmi-9-power-4g-standard-edition-dual-sim-td-lte-in-64gb-m2010j19si/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-9-premium-edition-dual-sim-td-lte-cn-128gb-m2004j19c/index.json b/site/public/v1/smartphones/redmi-9-premium-edition-dual-sim-td-lte-cn-128gb-m2004j19c/index.json new file mode 100644 index 00000000000..7eae9ca372b --- /dev/null +++ b/site/public/v1/smartphones/redmi-9-premium-edition-dual-sim-td-lte-cn-128gb-m2004j19c/index.json @@ -0,0 +1,76 @@ +{ + "id": 5968, + "slug": "redmi-9-premium-edition-dual-sim-td-lte-cn-128gb-m2004j19c", + "name": "Redmi 9 Premium Edition Dual SIM TD-LTE CN 128GB M2004J19C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2020-06-29", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5020, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 1.5, + "camera": 5.3, + "battery": 30.9, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.956307", + "updated_at": "2026-06-19T00:43:44.956307" +} diff --git a/site/public/v1/smartphones/redmi-9-premium-edition-dual-sim-td-lte-cn-128gb-m2004j19c/score/index.json b/site/public/v1/smartphones/redmi-9-premium-edition-dual-sim-td-lte-cn-128gb-m2004j19c/score/index.json new file mode 100644 index 00000000000..7a73608fc7b --- /dev/null +++ b/site/public/v1/smartphones/redmi-9-premium-edition-dual-sim-td-lte-cn-128gb-m2004j19c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 1.5, + "camera": 5.3, + "battery": 30.9, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-9-prime-dual-sim-td-lte-in-128gb-m2004j19i/index.json b/site/public/v1/smartphones/redmi-9-prime-dual-sim-td-lte-in-128gb-m2004j19i/index.json new file mode 100644 index 00000000000..99befb22cb7 --- /dev/null +++ b/site/public/v1/smartphones/redmi-9-prime-dual-sim-td-lte-in-128gb-m2004j19i/index.json @@ -0,0 +1,76 @@ +{ + "id": 5970, + "slug": "redmi-9-prime-dual-sim-td-lte-in-128gb-m2004j19i", + "name": "Redmi 9 Prime Dual SIM TD-LTE IN 128GB M2004J19I", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2020-06-18", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5020, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.9, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.956307", + "updated_at": "2026-06-19T00:43:44.956307" +} diff --git a/site/public/v1/smartphones/redmi-9-prime-dual-sim-td-lte-in-128gb-m2004j19i/score/index.json b/site/public/v1/smartphones/redmi-9-prime-dual-sim-td-lte-in-128gb-m2004j19i/score/index.json new file mode 100644 index 00000000000..e51de834e63 --- /dev/null +++ b/site/public/v1/smartphones/redmi-9-prime-dual-sim-td-lte-in-128gb-m2004j19i/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.9, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-9-prime-dual-sim-td-lte-in-64gb-m2004j19i/index.json b/site/public/v1/smartphones/redmi-9-prime-dual-sim-td-lte-in-64gb-m2004j19i/index.json new file mode 100644 index 00000000000..a29334fba63 --- /dev/null +++ b/site/public/v1/smartphones/redmi-9-prime-dual-sim-td-lte-in-64gb-m2004j19i/index.json @@ -0,0 +1,76 @@ +{ + "id": 5971, + "slug": "redmi-9-prime-dual-sim-td-lte-in-64gb-m2004j19i", + "name": "Redmi 9 Prime Dual SIM TD-LTE IN 64GB M2004J19I", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2020-06-18", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5020, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.9, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.956307", + "updated_at": "2026-06-19T00:43:44.956307" +} diff --git a/site/public/v1/smartphones/redmi-9-prime-dual-sim-td-lte-in-64gb-m2004j19i/score/index.json b/site/public/v1/smartphones/redmi-9-prime-dual-sim-td-lte-in-64gb-m2004j19i/score/index.json new file mode 100644 index 00000000000..e51de834e63 --- /dev/null +++ b/site/public/v1/smartphones/redmi-9-prime-dual-sim-td-lte-in-64gb-m2004j19i/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.9, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-9-standard-edition-dual-sim-td-lte-cn-128gb-m2004j19c/index.json b/site/public/v1/smartphones/redmi-9-standard-edition-dual-sim-td-lte-cn-128gb-m2004j19c/index.json new file mode 100644 index 00000000000..4b299b163b1 --- /dev/null +++ b/site/public/v1/smartphones/redmi-9-standard-edition-dual-sim-td-lte-cn-128gb-m2004j19c/index.json @@ -0,0 +1,76 @@ +{ + "id": 5973, + "slug": "redmi-9-standard-edition-dual-sim-td-lte-cn-128gb-m2004j19c", + "name": "Redmi 9 Standard Edition Dual SIM TD-LTE CN 128GB M2004J19C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2020-06-29", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5020, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.9, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.956307", + "updated_at": "2026-06-19T00:43:44.956307" +} diff --git a/site/public/v1/smartphones/redmi-9-standard-edition-dual-sim-td-lte-cn-128gb-m2004j19c/score/index.json b/site/public/v1/smartphones/redmi-9-standard-edition-dual-sim-td-lte-cn-128gb-m2004j19c/score/index.json new file mode 100644 index 00000000000..e51de834e63 --- /dev/null +++ b/site/public/v1/smartphones/redmi-9-standard-edition-dual-sim-td-lte-cn-128gb-m2004j19c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.9, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-9-standard-edition-dual-sim-td-lte-cn-64gb-m2004j19c/index.json b/site/public/v1/smartphones/redmi-9-standard-edition-dual-sim-td-lte-cn-64gb-m2004j19c/index.json new file mode 100644 index 00000000000..69da705e56c --- /dev/null +++ b/site/public/v1/smartphones/redmi-9-standard-edition-dual-sim-td-lte-cn-64gb-m2004j19c/index.json @@ -0,0 +1,76 @@ +{ + "id": 5974, + "slug": "redmi-9-standard-edition-dual-sim-td-lte-cn-64gb-m2004j19c", + "name": "Redmi 9 Standard Edition Dual SIM TD-LTE CN 64GB M2004J19C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2020-06-29", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5020, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.9, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.956307", + "updated_at": "2026-06-19T00:43:44.956307" +} diff --git a/site/public/v1/smartphones/redmi-9-standard-edition-dual-sim-td-lte-cn-64gb-m2004j19c/score/index.json b/site/public/v1/smartphones/redmi-9-standard-edition-dual-sim-td-lte-cn-64gb-m2004j19c/score/index.json new file mode 100644 index 00000000000..e51de834e63 --- /dev/null +++ b/site/public/v1/smartphones/redmi-9-standard-edition-dual-sim-td-lte-cn-64gb-m2004j19c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.9, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-9a-dual-sim-td-lte-cn-32gb-m2006c3lc/index.json b/site/public/v1/smartphones/redmi-9a-dual-sim-td-lte-cn-32gb-m2006c3lc/index.json new file mode 100644 index 00000000000..03738dde0fe --- /dev/null +++ b/site/public/v1/smartphones/redmi-9a-dual-sim-td-lte-cn-32gb-m2006c3lc/index.json @@ -0,0 +1,77 @@ +{ + "id": 5977, + "slug": "redmi-9a-dual-sim-td-lte-cn-32gb-m2006c3lc", + "name": "Redmi 9A Dual SIM TD-LTE CN 32GB M2006C3LC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 59, + "slug": "helio-g25", + "name": "Helio G25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g25" + }, + "release_date": "2020-08-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.4, + "battery": 30.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.957307", + "updated_at": "2026-06-19T00:43:44.957307" +} diff --git a/site/public/v1/smartphones/redmi-9a-dual-sim-td-lte-cn-32gb-m2006c3lc/score/index.json b/site/public/v1/smartphones/redmi-9a-dual-sim-td-lte-cn-32gb-m2006c3lc/score/index.json new file mode 100644 index 00000000000..ae74617c93c --- /dev/null +++ b/site/public/v1/smartphones/redmi-9a-dual-sim-td-lte-cn-32gb-m2006c3lc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.4, + "battery": 30.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-9a-global-dual-sim-td-lte-32gb-m2006c3lg/index.json b/site/public/v1/smartphones/redmi-9a-global-dual-sim-td-lte-32gb-m2006c3lg/index.json new file mode 100644 index 00000000000..43a08b6e621 --- /dev/null +++ b/site/public/v1/smartphones/redmi-9a-global-dual-sim-td-lte-32gb-m2006c3lg/index.json @@ -0,0 +1,77 @@ +{ + "id": 5978, + "slug": "redmi-9a-global-dual-sim-td-lte-32gb-m2006c3lg", + "name": "Redmi 9A Global Dual SIM TD-LTE 32GB M2006C3LG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 59, + "slug": "helio-g25", + "name": "Helio G25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g25" + }, + "release_date": "2020-07-07", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.4, + "battery": 30.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.957307", + "updated_at": "2026-06-19T00:43:44.957307" +} diff --git a/site/public/v1/smartphones/redmi-9a-global-dual-sim-td-lte-32gb-m2006c3lg/score/index.json b/site/public/v1/smartphones/redmi-9a-global-dual-sim-td-lte-32gb-m2006c3lg/score/index.json new file mode 100644 index 00000000000..ae74617c93c --- /dev/null +++ b/site/public/v1/smartphones/redmi-9a-global-dual-sim-td-lte-32gb-m2006c3lg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.4, + "battery": 30.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-9a-premium-edition-dual-sim-td-lte-in-32gb-m2006c3li/index.json b/site/public/v1/smartphones/redmi-9a-premium-edition-dual-sim-td-lte-in-32gb-m2006c3li/index.json new file mode 100644 index 00000000000..75fdf87cb8c --- /dev/null +++ b/site/public/v1/smartphones/redmi-9a-premium-edition-dual-sim-td-lte-in-32gb-m2006c3li/index.json @@ -0,0 +1,77 @@ +{ + "id": 5979, + "slug": "redmi-9a-premium-edition-dual-sim-td-lte-in-32gb-m2006c3li", + "name": "Redmi 9A Premium Edition Dual SIM TD-LTE IN 32GB M2006C3LI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 59, + "slug": "helio-g25", + "name": "Helio G25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g25" + }, + "release_date": "2020-09-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.4, + "battery": 30.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.957307", + "updated_at": "2026-06-19T00:43:44.957307" +} diff --git a/site/public/v1/smartphones/redmi-9a-premium-edition-dual-sim-td-lte-in-32gb-m2006c3li/score/index.json b/site/public/v1/smartphones/redmi-9a-premium-edition-dual-sim-td-lte-in-32gb-m2006c3li/score/index.json new file mode 100644 index 00000000000..ae74617c93c --- /dev/null +++ b/site/public/v1/smartphones/redmi-9a-premium-edition-dual-sim-td-lte-in-32gb-m2006c3li/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.4, + "battery": 30.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-9a-sport-premium-edition-dual-sim-td-lte-in-32gb-m2006c3li/index.json b/site/public/v1/smartphones/redmi-9a-sport-premium-edition-dual-sim-td-lte-in-32gb-m2006c3li/index.json new file mode 100644 index 00000000000..15fd11928a0 --- /dev/null +++ b/site/public/v1/smartphones/redmi-9a-sport-premium-edition-dual-sim-td-lte-in-32gb-m2006c3li/index.json @@ -0,0 +1,77 @@ +{ + "id": 6151, + "slug": "redmi-9a-sport-premium-edition-dual-sim-td-lte-in-32gb-m2006c3li", + "name": "Redmi 9A Sport Premium Edition Dual SIM TD-LTE IN 32GB M2006C3LI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 59, + "slug": "helio-g25", + "name": "Helio G25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g25" + }, + "release_date": "2021-09-28", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.4, + "battery": 30.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.975725", + "updated_at": "2026-06-19T00:43:44.975725" +} diff --git a/site/public/v1/smartphones/redmi-9a-sport-premium-edition-dual-sim-td-lte-in-32gb-m2006c3li/score/index.json b/site/public/v1/smartphones/redmi-9a-sport-premium-edition-dual-sim-td-lte-in-32gb-m2006c3li/score/index.json new file mode 100644 index 00000000000..ae74617c93c --- /dev/null +++ b/site/public/v1/smartphones/redmi-9a-sport-premium-edition-dual-sim-td-lte-in-32gb-m2006c3li/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.4, + "battery": 30.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-9a-sport-standard-edition-dual-sim-td-lte-in-32gb-m2006c3li/index.json b/site/public/v1/smartphones/redmi-9a-sport-standard-edition-dual-sim-td-lte-in-32gb-m2006c3li/index.json new file mode 100644 index 00000000000..03dd487cf0d --- /dev/null +++ b/site/public/v1/smartphones/redmi-9a-sport-standard-edition-dual-sim-td-lte-in-32gb-m2006c3li/index.json @@ -0,0 +1,77 @@ +{ + "id": 6153, + "slug": "redmi-9a-sport-standard-edition-dual-sim-td-lte-in-32gb-m2006c3li", + "name": "Redmi 9A Sport Standard Edition Dual SIM TD-LTE IN 32GB M2006C3LI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 59, + "slug": "helio-g25", + "name": "Helio G25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g25" + }, + "release_date": "2021-09-28", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.4, + "battery": 30.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.977251", + "updated_at": "2026-06-19T00:43:44.977251" +} diff --git a/site/public/v1/smartphones/redmi-9a-sport-standard-edition-dual-sim-td-lte-in-32gb-m2006c3li/score/index.json b/site/public/v1/smartphones/redmi-9a-sport-standard-edition-dual-sim-td-lte-in-32gb-m2006c3li/score/index.json new file mode 100644 index 00000000000..ae74617c93c --- /dev/null +++ b/site/public/v1/smartphones/redmi-9a-sport-standard-edition-dual-sim-td-lte-in-32gb-m2006c3li/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.4, + "battery": 30.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-9a-standard-edition-dual-sim-td-lte-in-32gb-m2006c3li/index.json b/site/public/v1/smartphones/redmi-9a-standard-edition-dual-sim-td-lte-in-32gb-m2006c3li/index.json new file mode 100644 index 00000000000..2d31bc1e470 --- /dev/null +++ b/site/public/v1/smartphones/redmi-9a-standard-edition-dual-sim-td-lte-in-32gb-m2006c3li/index.json @@ -0,0 +1,77 @@ +{ + "id": 5981, + "slug": "redmi-9a-standard-edition-dual-sim-td-lte-in-32gb-m2006c3li", + "name": "Redmi 9A Standard Edition Dual SIM TD-LTE IN 32GB M2006C3LI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 59, + "slug": "helio-g25", + "name": "Helio G25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g25" + }, + "release_date": "2020-09-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.4, + "battery": 30.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.957307", + "updated_at": "2026-06-19T00:43:44.957307" +} diff --git a/site/public/v1/smartphones/redmi-9a-standard-edition-dual-sim-td-lte-in-32gb-m2006c3li/score/index.json b/site/public/v1/smartphones/redmi-9a-standard-edition-dual-sim-td-lte-in-32gb-m2006c3li/score/index.json new file mode 100644 index 00000000000..ae74617c93c --- /dev/null +++ b/site/public/v1/smartphones/redmi-9a-standard-edition-dual-sim-td-lte-in-32gb-m2006c3li/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.4, + "battery": 30.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-9at-standard-edition-global-dual-sim-td-lte-32gb-m2006c3lvg/index.json b/site/public/v1/smartphones/redmi-9at-standard-edition-global-dual-sim-td-lte-32gb-m2006c3lvg/index.json new file mode 100644 index 00000000000..6e71de789be --- /dev/null +++ b/site/public/v1/smartphones/redmi-9at-standard-edition-global-dual-sim-td-lte-32gb-m2006c3lvg/index.json @@ -0,0 +1,77 @@ +{ + "id": 5984, + "slug": "redmi-9at-standard-edition-global-dual-sim-td-lte-32gb-m2006c3lvg", + "name": "Redmi 9AT Standard Edition Global Dual SIM TD-LTE 32GB M2006C3LVG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 59, + "slug": "helio-g25", + "name": "Helio G25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g25" + }, + "release_date": "2020-07-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.4, + "battery": 30.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.957307", + "updated_at": "2026-06-19T00:43:44.957307" +} diff --git a/site/public/v1/smartphones/redmi-9at-standard-edition-global-dual-sim-td-lte-32gb-m2006c3lvg/score/index.json b/site/public/v1/smartphones/redmi-9at-standard-edition-global-dual-sim-td-lte-32gb-m2006c3lvg/score/index.json new file mode 100644 index 00000000000..ae74617c93c --- /dev/null +++ b/site/public/v1/smartphones/redmi-9at-standard-edition-global-dual-sim-td-lte-32gb-m2006c3lvg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.4, + "battery": 30.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-9c-global-dual-sim-td-lte-32gb-m2006c3mg/index.json b/site/public/v1/smartphones/redmi-9c-global-dual-sim-td-lte-32gb-m2006c3mg/index.json new file mode 100644 index 00000000000..d824750a354 --- /dev/null +++ b/site/public/v1/smartphones/redmi-9c-global-dual-sim-td-lte-32gb-m2006c3mg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5986, + "slug": "redmi-9c-global-dual-sim-td-lte-32gb-m2006c3mg", + "name": "Redmi 9C Global Dual SIM TD-LTE 32GB M2006C3MG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2020-08-07", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.958312", + "updated_at": "2026-06-19T00:43:44.958312" +} diff --git a/site/public/v1/smartphones/redmi-9c-global-dual-sim-td-lte-32gb-m2006c3mg/score/index.json b/site/public/v1/smartphones/redmi-9c-global-dual-sim-td-lte-32gb-m2006c3mg/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/redmi-9c-global-dual-sim-td-lte-32gb-m2006c3mg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-9c-global-dual-sim-td-lte-64gb-m2006c3mg/index.json b/site/public/v1/smartphones/redmi-9c-global-dual-sim-td-lte-64gb-m2006c3mg/index.json new file mode 100644 index 00000000000..35ecd56ddce --- /dev/null +++ b/site/public/v1/smartphones/redmi-9c-global-dual-sim-td-lte-64gb-m2006c3mg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5987, + "slug": "redmi-9c-global-dual-sim-td-lte-64gb-m2006c3mg", + "name": "Redmi 9C Global Dual SIM TD-LTE 64GB M2006C3MG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2020-08-07", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.958312", + "updated_at": "2026-06-19T00:43:44.958312" +} diff --git a/site/public/v1/smartphones/redmi-9c-global-dual-sim-td-lte-64gb-m2006c3mg/score/index.json b/site/public/v1/smartphones/redmi-9c-global-dual-sim-td-lte-64gb-m2006c3mg/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/redmi-9c-global-dual-sim-td-lte-64gb-m2006c3mg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-9c-nfc-global-dual-sim-td-lte-32gb-m2006c3mng/index.json b/site/public/v1/smartphones/redmi-9c-nfc-global-dual-sim-td-lte-32gb-m2006c3mng/index.json new file mode 100644 index 00000000000..4b1508933cb --- /dev/null +++ b/site/public/v1/smartphones/redmi-9c-nfc-global-dual-sim-td-lte-32gb-m2006c3mng/index.json @@ -0,0 +1,76 @@ +{ + "id": 5988, + "slug": "redmi-9c-nfc-global-dual-sim-td-lte-32gb-m2006c3mng", + "name": "Redmi 9C NFC Global Dual SIM TD-LTE 32GB M2006C3MNG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2020-08-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.958312", + "updated_at": "2026-06-19T00:43:44.958312" +} diff --git a/site/public/v1/smartphones/redmi-9c-nfc-global-dual-sim-td-lte-32gb-m2006c3mng/score/index.json b/site/public/v1/smartphones/redmi-9c-nfc-global-dual-sim-td-lte-32gb-m2006c3mng/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/redmi-9c-nfc-global-dual-sim-td-lte-32gb-m2006c3mng/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-9c-nfc-global-dual-sim-td-lte-64gb-m2006c3mng/index.json b/site/public/v1/smartphones/redmi-9c-nfc-global-dual-sim-td-lte-64gb-m2006c3mng/index.json new file mode 100644 index 00000000000..487495901c5 --- /dev/null +++ b/site/public/v1/smartphones/redmi-9c-nfc-global-dual-sim-td-lte-64gb-m2006c3mng/index.json @@ -0,0 +1,76 @@ +{ + "id": 5989, + "slug": "redmi-9c-nfc-global-dual-sim-td-lte-64gb-m2006c3mng", + "name": "Redmi 9C NFC Global Dual SIM TD-LTE 64GB M2006C3MNG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2020-08-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.958312", + "updated_at": "2026-06-19T00:43:44.958312" +} diff --git a/site/public/v1/smartphones/redmi-9c-nfc-global-dual-sim-td-lte-64gb-m2006c3mng/score/index.json b/site/public/v1/smartphones/redmi-9c-nfc-global-dual-sim-td-lte-64gb-m2006c3mng/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/redmi-9c-nfc-global-dual-sim-td-lte-64gb-m2006c3mng/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-9i-dual-sim-td-lte-in-128gb-m2006c3lii/index.json b/site/public/v1/smartphones/redmi-9i-dual-sim-td-lte-in-128gb-m2006c3lii/index.json new file mode 100644 index 00000000000..1f71472467b --- /dev/null +++ b/site/public/v1/smartphones/redmi-9i-dual-sim-td-lte-in-128gb-m2006c3lii/index.json @@ -0,0 +1,77 @@ +{ + "id": 5992, + "slug": "redmi-9i-dual-sim-td-lte-in-128gb-m2006c3lii", + "name": "Redmi 9i Dual SIM TD-LTE IN 128GB M2006C3LII", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 59, + "slug": "helio-g25", + "name": "Helio G25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g25" + }, + "release_date": "2020-09-16", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.4, + "battery": 30.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.958312", + "updated_at": "2026-06-19T00:43:44.958312" +} diff --git a/site/public/v1/smartphones/redmi-9i-dual-sim-td-lte-in-128gb-m2006c3lii/score/index.json b/site/public/v1/smartphones/redmi-9i-dual-sim-td-lte-in-128gb-m2006c3lii/score/index.json new file mode 100644 index 00000000000..ae74617c93c --- /dev/null +++ b/site/public/v1/smartphones/redmi-9i-dual-sim-td-lte-in-128gb-m2006c3lii/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.4, + "battery": 30.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-9i-dual-sim-td-lte-in-64gb-m2006c3lii/index.json b/site/public/v1/smartphones/redmi-9i-dual-sim-td-lte-in-64gb-m2006c3lii/index.json new file mode 100644 index 00000000000..12c11da8287 --- /dev/null +++ b/site/public/v1/smartphones/redmi-9i-dual-sim-td-lte-in-64gb-m2006c3lii/index.json @@ -0,0 +1,77 @@ +{ + "id": 5993, + "slug": "redmi-9i-dual-sim-td-lte-in-64gb-m2006c3lii", + "name": "Redmi 9i Dual SIM TD-LTE IN 64GB M2006C3LII", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 59, + "slug": "helio-g25", + "name": "Helio G25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g25" + }, + "release_date": "2020-09-16", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.4, + "battery": 30.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.958312", + "updated_at": "2026-06-19T00:43:44.958312" +} diff --git a/site/public/v1/smartphones/redmi-9i-dual-sim-td-lte-in-64gb-m2006c3lii/score/index.json b/site/public/v1/smartphones/redmi-9i-dual-sim-td-lte-in-64gb-m2006c3lii/score/index.json new file mode 100644 index 00000000000..ae74617c93c --- /dev/null +++ b/site/public/v1/smartphones/redmi-9i-dual-sim-td-lte-in-64gb-m2006c3lii/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.4, + "battery": 30.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-9i-sport-dual-sim-td-lte-in-128gb-m2006c3lii/index.json b/site/public/v1/smartphones/redmi-9i-sport-dual-sim-td-lte-in-128gb-m2006c3lii/index.json new file mode 100644 index 00000000000..e47b8cc0290 --- /dev/null +++ b/site/public/v1/smartphones/redmi-9i-sport-dual-sim-td-lte-in-128gb-m2006c3lii/index.json @@ -0,0 +1,77 @@ +{ + "id": 6155, + "slug": "redmi-9i-sport-dual-sim-td-lte-in-128gb-m2006c3lii", + "name": "Redmi 9i Sport Dual SIM TD-LTE IN 128GB M2006C3LII", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 59, + "slug": "helio-g25", + "name": "Helio G25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g25" + }, + "release_date": "2021-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.4, + "battery": 30.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.977251", + "updated_at": "2026-06-19T00:43:44.977251" +} diff --git a/site/public/v1/smartphones/redmi-9i-sport-dual-sim-td-lte-in-128gb-m2006c3lii/score/index.json b/site/public/v1/smartphones/redmi-9i-sport-dual-sim-td-lte-in-128gb-m2006c3lii/score/index.json new file mode 100644 index 00000000000..ae74617c93c --- /dev/null +++ b/site/public/v1/smartphones/redmi-9i-sport-dual-sim-td-lte-in-128gb-m2006c3lii/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.4, + "battery": 30.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-9i-sport-dual-sim-td-lte-in-64gb-m2006c3lii/index.json b/site/public/v1/smartphones/redmi-9i-sport-dual-sim-td-lte-in-64gb-m2006c3lii/index.json new file mode 100644 index 00000000000..7b8fd3325bc --- /dev/null +++ b/site/public/v1/smartphones/redmi-9i-sport-dual-sim-td-lte-in-64gb-m2006c3lii/index.json @@ -0,0 +1,77 @@ +{ + "id": 6156, + "slug": "redmi-9i-sport-dual-sim-td-lte-in-64gb-m2006c3lii", + "name": "Redmi 9i Sport Dual SIM TD-LTE IN 64GB M2006C3LII", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 59, + "slug": "helio-g25", + "name": "Helio G25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-g25" + }, + "release_date": "2021-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 194.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.4, + "battery": 30.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.977251", + "updated_at": "2026-06-19T00:43:44.977251" +} diff --git a/site/public/v1/smartphones/redmi-9i-sport-dual-sim-td-lte-in-64gb-m2006c3lii/score/index.json b/site/public/v1/smartphones/redmi-9i-sport-dual-sim-td-lte-in-64gb-m2006c3lii/score/index.json new file mode 100644 index 00000000000..ae74617c93c --- /dev/null +++ b/site/public/v1/smartphones/redmi-9i-sport-dual-sim-td-lte-in-64gb-m2006c3lii/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.4, + "battery": 30.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-9t-premium-edition-global-dual-sim-td-lte-128gb-m2010j19sg/index.json b/site/public/v1/smartphones/redmi-9t-premium-edition-global-dual-sim-td-lte-128gb-m2010j19sg/index.json new file mode 100644 index 00000000000..803d60e20ff --- /dev/null +++ b/site/public/v1/smartphones/redmi-9t-premium-edition-global-dual-sim-td-lte-128gb-m2010j19sg/index.json @@ -0,0 +1,76 @@ +{ + "id": 6158, + "slug": "redmi-9t-premium-edition-global-dual-sim-td-lte-128gb-m2010j19sg", + "name": "Redmi 9T Premium Edition Global Dual SIM TD-LTE 128GB M2010J19SG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-02-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.0, + "performance": 1.5, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.977251", + "updated_at": "2026-06-19T00:43:44.977251" +} diff --git a/site/public/v1/smartphones/redmi-9t-premium-edition-global-dual-sim-td-lte-128gb-m2010j19sg/score/index.json b/site/public/v1/smartphones/redmi-9t-premium-edition-global-dual-sim-td-lte-128gb-m2010j19sg/score/index.json new file mode 100644 index 00000000000..5f35c89dff5 --- /dev/null +++ b/site/public/v1/smartphones/redmi-9t-premium-edition-global-dual-sim-td-lte-128gb-m2010j19sg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.0, + "performance": 1.5, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-9t-standard-edition-dual-sim-td-lte-jp-64gb-m2010j19sr/index.json b/site/public/v1/smartphones/redmi-9t-standard-edition-dual-sim-td-lte-jp-64gb-m2010j19sr/index.json new file mode 100644 index 00000000000..79180252255 --- /dev/null +++ b/site/public/v1/smartphones/redmi-9t-standard-edition-dual-sim-td-lte-jp-64gb-m2010j19sr/index.json @@ -0,0 +1,76 @@ +{ + "id": 6159, + "slug": "redmi-9t-standard-edition-dual-sim-td-lte-jp-64gb-m2010j19sr", + "name": "Redmi 9T Standard Edition Dual SIM TD-LTE JP 64GB M2010J19SR", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-02-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.977251", + "updated_at": "2026-06-19T00:43:44.977251" +} diff --git a/site/public/v1/smartphones/redmi-9t-standard-edition-dual-sim-td-lte-jp-64gb-m2010j19sr/score/index.json b/site/public/v1/smartphones/redmi-9t-standard-edition-dual-sim-td-lte-jp-64gb-m2010j19sr/score/index.json new file mode 100644 index 00000000000..b52b29d6a13 --- /dev/null +++ b/site/public/v1/smartphones/redmi-9t-standard-edition-dual-sim-td-lte-jp-64gb-m2010j19sr/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-9t-standard-edition-dual-sim-td-lte-latam-128gb-m2010j19sl/index.json b/site/public/v1/smartphones/redmi-9t-standard-edition-dual-sim-td-lte-latam-128gb-m2010j19sl/index.json new file mode 100644 index 00000000000..0a027e66e3b --- /dev/null +++ b/site/public/v1/smartphones/redmi-9t-standard-edition-dual-sim-td-lte-latam-128gb-m2010j19sl/index.json @@ -0,0 +1,76 @@ +{ + "id": 6160, + "slug": "redmi-9t-standard-edition-dual-sim-td-lte-latam-128gb-m2010j19sl", + "name": "Redmi 9T Standard Edition Dual SIM TD-LTE LATAM 128GB M2010J19SL", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-02-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.977251", + "updated_at": "2026-06-19T00:43:44.977251" +} diff --git a/site/public/v1/smartphones/redmi-9t-standard-edition-dual-sim-td-lte-latam-128gb-m2010j19sl/score/index.json b/site/public/v1/smartphones/redmi-9t-standard-edition-dual-sim-td-lte-latam-128gb-m2010j19sl/score/index.json new file mode 100644 index 00000000000..b52b29d6a13 --- /dev/null +++ b/site/public/v1/smartphones/redmi-9t-standard-edition-dual-sim-td-lte-latam-128gb-m2010j19sl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-9t-standard-edition-dual-sim-td-lte-ru-128gb-m2010j19sy/index.json b/site/public/v1/smartphones/redmi-9t-standard-edition-dual-sim-td-lte-ru-128gb-m2010j19sy/index.json new file mode 100644 index 00000000000..1d85bc8b5fa --- /dev/null +++ b/site/public/v1/smartphones/redmi-9t-standard-edition-dual-sim-td-lte-ru-128gb-m2010j19sy/index.json @@ -0,0 +1,76 @@ +{ + "id": 6161, + "slug": "redmi-9t-standard-edition-dual-sim-td-lte-ru-128gb-m2010j19sy", + "name": "Redmi 9T Standard Edition Dual SIM TD-LTE RU 128GB M2010J19SY", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-01-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.977251", + "updated_at": "2026-06-19T00:43:44.977251" +} diff --git a/site/public/v1/smartphones/redmi-9t-standard-edition-dual-sim-td-lte-ru-128gb-m2010j19sy/score/index.json b/site/public/v1/smartphones/redmi-9t-standard-edition-dual-sim-td-lte-ru-128gb-m2010j19sy/score/index.json new file mode 100644 index 00000000000..b52b29d6a13 --- /dev/null +++ b/site/public/v1/smartphones/redmi-9t-standard-edition-dual-sim-td-lte-ru-128gb-m2010j19sy/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-9t-standard-edition-dual-sim-td-lte-ru-64gb-m2010j19sy/index.json b/site/public/v1/smartphones/redmi-9t-standard-edition-dual-sim-td-lte-ru-64gb-m2010j19sy/index.json new file mode 100644 index 00000000000..78226830a25 --- /dev/null +++ b/site/public/v1/smartphones/redmi-9t-standard-edition-dual-sim-td-lte-ru-64gb-m2010j19sy/index.json @@ -0,0 +1,76 @@ +{ + "id": 6162, + "slug": "redmi-9t-standard-edition-dual-sim-td-lte-ru-64gb-m2010j19sy", + "name": "Redmi 9T Standard Edition Dual SIM TD-LTE RU 64GB M2010J19SY", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-01-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.978775", + "updated_at": "2026-06-19T00:43:44.978775" +} diff --git a/site/public/v1/smartphones/redmi-9t-standard-edition-dual-sim-td-lte-ru-64gb-m2010j19sy/score/index.json b/site/public/v1/smartphones/redmi-9t-standard-edition-dual-sim-td-lte-ru-64gb-m2010j19sy/score/index.json new file mode 100644 index 00000000000..b52b29d6a13 --- /dev/null +++ b/site/public/v1/smartphones/redmi-9t-standard-edition-dual-sim-td-lte-ru-64gb-m2010j19sy/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-9t-standard-edition-global-dual-sim-td-lte-128gb-m2010j19sg/index.json b/site/public/v1/smartphones/redmi-9t-standard-edition-global-dual-sim-td-lte-128gb-m2010j19sg/index.json new file mode 100644 index 00000000000..7ee18cc7730 --- /dev/null +++ b/site/public/v1/smartphones/redmi-9t-standard-edition-global-dual-sim-td-lte-128gb-m2010j19sg/index.json @@ -0,0 +1,76 @@ +{ + "id": 6163, + "slug": "redmi-9t-standard-edition-global-dual-sim-td-lte-128gb-m2010j19sg", + "name": "Redmi 9T Standard Edition Global Dual SIM TD-LTE 128GB M2010J19SG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-01-01", + "msrp_usd": 189, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": 63.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.978775", + "updated_at": "2026-06-19T00:43:44.978775" +} diff --git a/site/public/v1/smartphones/redmi-9t-standard-edition-global-dual-sim-td-lte-128gb-m2010j19sg/score/index.json b/site/public/v1/smartphones/redmi-9t-standard-edition-global-dual-sim-td-lte-128gb-m2010j19sg/score/index.json new file mode 100644 index 00000000000..263dc293406 --- /dev/null +++ b/site/public/v1/smartphones/redmi-9t-standard-edition-global-dual-sim-td-lte-128gb-m2010j19sg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": 63.3 +} diff --git a/site/public/v1/smartphones/redmi-9t-standard-edition-global-dual-sim-td-lte-64gb-m2010j19sg/index.json b/site/public/v1/smartphones/redmi-9t-standard-edition-global-dual-sim-td-lte-64gb-m2010j19sg/index.json new file mode 100644 index 00000000000..99c7e63280b --- /dev/null +++ b/site/public/v1/smartphones/redmi-9t-standard-edition-global-dual-sim-td-lte-64gb-m2010j19sg/index.json @@ -0,0 +1,76 @@ +{ + "id": 6164, + "slug": "redmi-9t-standard-edition-global-dual-sim-td-lte-64gb-m2010j19sg", + "name": "Redmi 9T Standard Edition Global Dual SIM TD-LTE 64GB M2010J19SG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2021-01-16", + "msrp_usd": 159, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": 63.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.978775", + "updated_at": "2026-06-19T00:43:44.978775" +} diff --git a/site/public/v1/smartphones/redmi-9t-standard-edition-global-dual-sim-td-lte-64gb-m2010j19sg/score/index.json b/site/public/v1/smartphones/redmi-9t-standard-edition-global-dual-sim-td-lte-64gb-m2010j19sg/score/index.json new file mode 100644 index 00000000000..263dc293406 --- /dev/null +++ b/site/public/v1/smartphones/redmi-9t-standard-edition-global-dual-sim-td-lte-64gb-m2010j19sg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": 63.3 +} diff --git a/site/public/v1/smartphones/redmi-go-dual-sim-td-lte-apac-latam-m1903c3gh/index.json b/site/public/v1/smartphones/redmi-go-dual-sim-td-lte-apac-latam-m1903c3gh/index.json new file mode 100644 index 00000000000..e7775858582 --- /dev/null +++ b/site/public/v1/smartphones/redmi-go-dual-sim-td-lte-apac-latam-m1903c3gh/index.json @@ -0,0 +1,76 @@ +{ + "id": 5791, + "slug": "redmi-go-dual-sim-td-lte-apac-latam-m1903c3gh", + "name": "Redmi Go Dual SIM TD-LTE APAC LATAM M1903C3GH", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2019-03-22", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 137.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.935306", + "updated_at": "2026-06-19T00:43:44.935306" +} diff --git a/site/public/v1/smartphones/redmi-go-dual-sim-td-lte-apac-latam-m1903c3gh/score/index.json b/site/public/v1/smartphones/redmi-go-dual-sim-td-lte-apac-latam-m1903c3gh/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/redmi-go-dual-sim-td-lte-apac-latam-m1903c3gh/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-go-global-dual-sim-td-lte-m1903c3gg/index.json b/site/public/v1/smartphones/redmi-go-global-dual-sim-td-lte-m1903c3gg/index.json new file mode 100644 index 00000000000..af5eac8925e --- /dev/null +++ b/site/public/v1/smartphones/redmi-go-global-dual-sim-td-lte-m1903c3gg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5792, + "slug": "redmi-go-global-dual-sim-td-lte-m1903c3gg", + "name": "Redmi Go Global Dual SIM TD-LTE M1903C3GG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2019-02-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 137.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.935306", + "updated_at": "2026-06-19T00:43:44.935306" +} diff --git a/site/public/v1/smartphones/redmi-go-global-dual-sim-td-lte-m1903c3gg/score/index.json b/site/public/v1/smartphones/redmi-go-global-dual-sim-td-lte-m1903c3gg/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/redmi-go-global-dual-sim-td-lte-m1903c3gg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k20-dual-sim-td-lte-in-128gb-mzb7757in-mzb7758in-mzb7759in/index.json b/site/public/v1/smartphones/redmi-k20-dual-sim-td-lte-in-128gb-mzb7757in-mzb7758in-mzb7759in/index.json new file mode 100644 index 00000000000..9d6b89a064d --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-dual-sim-td-lte-in-128gb-mzb7757in-mzb7758in-mzb7759in/index.json @@ -0,0 +1,76 @@ +{ + "id": 5793, + "slug": "redmi-k20-dual-sim-td-lte-in-128gb-mzb7757in-mzb7758in-mzb7759in", + "name": "Redmi K20 Dual SIM TD-LTE IN 128GB MZB7757IN / MZB7758IN / MZB7759IN", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-07-22", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.935306", + "updated_at": "2026-06-19T00:43:44.935306" +} diff --git a/site/public/v1/smartphones/redmi-k20-dual-sim-td-lte-in-128gb-mzb7757in-mzb7758in-mzb7759in/score/index.json b/site/public/v1/smartphones/redmi-k20-dual-sim-td-lte-in-128gb-mzb7757in-mzb7758in-mzb7759in/score/index.json new file mode 100644 index 00000000000..cd3a8b6de7a --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-dual-sim-td-lte-in-128gb-mzb7757in-mzb7758in-mzb7759in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k20-dual-sim-td-lte-in-64gb-mzb7754in-mzb7755in-mzb7756in/index.json b/site/public/v1/smartphones/redmi-k20-dual-sim-td-lte-in-64gb-mzb7754in-mzb7755in-mzb7756in/index.json new file mode 100644 index 00000000000..2ce018b573d --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-dual-sim-td-lte-in-64gb-mzb7754in-mzb7755in-mzb7756in/index.json @@ -0,0 +1,76 @@ +{ + "id": 5794, + "slug": "redmi-k20-dual-sim-td-lte-in-64gb-mzb7754in-mzb7755in-mzb7756in", + "name": "Redmi K20 Dual SIM TD-LTE IN 64GB MZB7754IN / MZB7755IN / MZB7756IN", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-07-22", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.935306", + "updated_at": "2026-06-19T00:43:44.935306" +} diff --git a/site/public/v1/smartphones/redmi-k20-dual-sim-td-lte-in-64gb-mzb7754in-mzb7755in-mzb7756in/score/index.json b/site/public/v1/smartphones/redmi-k20-dual-sim-td-lte-in-64gb-mzb7754in-mzb7755in-mzb7756in/score/index.json new file mode 100644 index 00000000000..cd3a8b6de7a --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-dual-sim-td-lte-in-64gb-mzb7754in-mzb7755in-mzb7756in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k20-premium-edition-dual-sim-td-lte-cn-256gb-m1903f10a-m1903f10c/index.json b/site/public/v1/smartphones/redmi-k20-premium-edition-dual-sim-td-lte-cn-256gb-m1903f10a-m1903f10c/index.json new file mode 100644 index 00000000000..2ca65b6f162 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-premium-edition-dual-sim-td-lte-cn-256gb-m1903f10a-m1903f10c/index.json @@ -0,0 +1,76 @@ +{ + "id": 5795, + "slug": "redmi-k20-premium-edition-dual-sim-td-lte-cn-256gb-m1903f10a-m1903f10c", + "name": "Redmi K20 Premium Edition Dual SIM TD-LTE CN 256GB M1903F10A / M1903F10C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 3.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.935306", + "updated_at": "2026-06-19T00:43:44.935306" +} diff --git a/site/public/v1/smartphones/redmi-k20-premium-edition-dual-sim-td-lte-cn-256gb-m1903f10a-m1903f10c/score/index.json b/site/public/v1/smartphones/redmi-k20-premium-edition-dual-sim-td-lte-cn-256gb-m1903f10a-m1903f10c/score/index.json new file mode 100644 index 00000000000..99cc2291f4a --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-premium-edition-dual-sim-td-lte-cn-256gb-m1903f10a-m1903f10c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 3.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k20-pro-dual-sim-td-lte-in-128gb-mzb7748in-mzb7749in-mzb7750in/index.json b/site/public/v1/smartphones/redmi-k20-pro-dual-sim-td-lte-in-128gb-mzb7748in-mzb7749in-mzb7750in/index.json new file mode 100644 index 00000000000..45f1475941f --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-pro-dual-sim-td-lte-in-128gb-mzb7748in-mzb7749in-mzb7750in/index.json @@ -0,0 +1,76 @@ +{ + "id": 5796, + "slug": "redmi-k20-pro-dual-sim-td-lte-in-128gb-mzb7748in-mzb7749in-mzb7750in", + "name": "Redmi K20 Pro Dual SIM TD-LTE IN 128GB MZB7748IN / MZB7749IN / MZB7750IN", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-07-22", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.935306", + "updated_at": "2026-06-19T00:43:44.935306" +} diff --git a/site/public/v1/smartphones/redmi-k20-pro-dual-sim-td-lte-in-128gb-mzb7748in-mzb7749in-mzb7750in/score/index.json b/site/public/v1/smartphones/redmi-k20-pro-dual-sim-td-lte-in-128gb-mzb7748in-mzb7749in-mzb7750in/score/index.json new file mode 100644 index 00000000000..a3b77af19b0 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-pro-dual-sim-td-lte-in-128gb-mzb7748in-mzb7749in-mzb7750in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k20-pro-dual-sim-td-lte-in-256gb-mzb7751in-mzb7752in-mzb7753in/index.json b/site/public/v1/smartphones/redmi-k20-pro-dual-sim-td-lte-in-256gb-mzb7751in-mzb7752in-mzb7753in/index.json new file mode 100644 index 00000000000..2ecfe93c6d6 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-pro-dual-sim-td-lte-in-256gb-mzb7751in-mzb7752in-mzb7753in/index.json @@ -0,0 +1,76 @@ +{ + "id": 5797, + "slug": "redmi-k20-pro-dual-sim-td-lte-in-256gb-mzb7751in-mzb7752in-mzb7753in", + "name": "Redmi K20 Pro Dual SIM TD-LTE IN 256GB MZB7751IN / MZB7752IN / MZB7753IN", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-07-22", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.935306", + "updated_at": "2026-06-19T00:43:44.935306" +} diff --git a/site/public/v1/smartphones/redmi-k20-pro-dual-sim-td-lte-in-256gb-mzb7751in-mzb7752in-mzb7753in/score/index.json b/site/public/v1/smartphones/redmi-k20-pro-dual-sim-td-lte-in-256gb-mzb7751in-mzb7752in-mzb7753in/score/index.json new file mode 100644 index 00000000000..c9e71136cc6 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-pro-dual-sim-td-lte-in-256gb-mzb7751in-mzb7752in-mzb7753in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1903f11a-m1903f11c/index.json b/site/public/v1/smartphones/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1903f11a-m1903f11c/index.json new file mode 100644 index 00000000000..75fc8c226b6 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1903f11a-m1903f11c/index.json @@ -0,0 +1,76 @@ +{ + "id": 5798, + "slug": "redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1903f11a-m1903f11c", + "name": "Redmi K20 Pro Premium Edition Dual SIM TD-LTE CN 128GB M1903F11A / M1903F11C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.936307", + "updated_at": "2026-06-19T00:43:44.936307" +} diff --git a/site/public/v1/smartphones/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1903f11a-m1903f11c/score/index.json b/site/public/v1/smartphones/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1903f11a-m1903f11c/score/index.json new file mode 100644 index 00000000000..c9e71136cc6 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1903f11a-m1903f11c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1903f11t/index.json b/site/public/v1/smartphones/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1903f11t/index.json new file mode 100644 index 00000000000..17a8ba94feb --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1903f11t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5799, + "slug": "redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1903f11t", + "name": "Redmi K20 Pro Premium Edition Dual SIM TD-LTE CN 128GB M1903F11T", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-02", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.936307", + "updated_at": "2026-06-19T00:43:44.936307" +} diff --git a/site/public/v1/smartphones/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1903f11t/score/index.json b/site/public/v1/smartphones/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1903f11t/score/index.json new file mode 100644 index 00000000000..c9e71136cc6 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1903f11t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1903f11a-m1903f11c/index.json b/site/public/v1/smartphones/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1903f11a-m1903f11c/index.json new file mode 100644 index 00000000000..2254313b3b9 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1903f11a-m1903f11c/index.json @@ -0,0 +1,76 @@ +{ + "id": 5800, + "slug": "redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1903f11a-m1903f11c", + "name": "Redmi K20 Pro Premium Edition Dual SIM TD-LTE CN 256GB M1903F11A / M1903F11C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-02", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.936307", + "updated_at": "2026-06-19T00:43:44.936307" +} diff --git a/site/public/v1/smartphones/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1903f11a-m1903f11c/score/index.json b/site/public/v1/smartphones/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1903f11a-m1903f11c/score/index.json new file mode 100644 index 00000000000..c9e71136cc6 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1903f11a-m1903f11c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1903f11t/index.json b/site/public/v1/smartphones/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1903f11t/index.json new file mode 100644 index 00000000000..a5e5d98e92a --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1903f11t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5801, + "slug": "redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1903f11t", + "name": "Redmi K20 Pro Premium Edition Dual SIM TD-LTE CN 256GB M1903F11T", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-02", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.936307", + "updated_at": "2026-06-19T00:43:44.936307" +} diff --git a/site/public/v1/smartphones/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1903f11t/score/index.json b/site/public/v1/smartphones/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1903f11t/score/index.json new file mode 100644 index 00000000000..c9e71136cc6 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-pro-premium-edition-dual-sim-td-lte-cn-256gb-m1903f11t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k20-pro-prime-premium-edition-dual-sim-td-lte-cn-512gb-m1903f11a/index.json b/site/public/v1/smartphones/redmi-k20-pro-prime-premium-edition-dual-sim-td-lte-cn-512gb-m1903f11a/index.json new file mode 100644 index 00000000000..a70b4b0eb42 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-pro-prime-premium-edition-dual-sim-td-lte-cn-512gb-m1903f11a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5802, + "slug": "redmi-k20-pro-prime-premium-edition-dual-sim-td-lte-cn-512gb-m1903f11a", + "name": "Redmi K20 Pro Prime Premium Edition Dual SIM TD-LTE CN 512GB M1903F11A", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 6.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.936307", + "updated_at": "2026-06-19T00:43:44.936307" +} diff --git a/site/public/v1/smartphones/redmi-k20-pro-prime-premium-edition-dual-sim-td-lte-cn-512gb-m1903f11a/score/index.json b/site/public/v1/smartphones/redmi-k20-pro-prime-premium-edition-dual-sim-td-lte-cn-512gb-m1903f11a/score/index.json new file mode 100644 index 00000000000..f679648eefe --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-pro-prime-premium-edition-dual-sim-td-lte-cn-512gb-m1903f11a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 6.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k20-pro-prime-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11a/index.json b/site/public/v1/smartphones/redmi-k20-pro-prime-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11a/index.json new file mode 100644 index 00000000000..06d1ad8dc39 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-pro-prime-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5804, + "slug": "redmi-k20-pro-prime-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11a", + "name": "Redmi K20 Pro Prime Standard Edition Dual SIM TD-LTE CN 128GB M1903F11A", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.936307", + "updated_at": "2026-06-19T00:43:44.936307" +} diff --git a/site/public/v1/smartphones/redmi-k20-pro-prime-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11a/score/index.json b/site/public/v1/smartphones/redmi-k20-pro-prime-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11a/score/index.json new file mode 100644 index 00000000000..c9e71136cc6 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-pro-prime-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k20-pro-prime-standard-edition-dual-sim-td-lte-cn-512gb-m1903f11a/index.json b/site/public/v1/smartphones/redmi-k20-pro-prime-standard-edition-dual-sim-td-lte-cn-512gb-m1903f11a/index.json new file mode 100644 index 00000000000..c1a6035a0aa --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-pro-prime-standard-edition-dual-sim-td-lte-cn-512gb-m1903f11a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5805, + "slug": "redmi-k20-pro-prime-standard-edition-dual-sim-td-lte-cn-512gb-m1903f11a", + "name": "Redmi K20 Pro Prime Standard Edition Dual SIM TD-LTE CN 512GB M1903F11A", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.936307", + "updated_at": "2026-06-19T00:43:44.936307" +} diff --git a/site/public/v1/smartphones/redmi-k20-pro-prime-standard-edition-dual-sim-td-lte-cn-512gb-m1903f11a/score/index.json b/site/public/v1/smartphones/redmi-k20-pro-prime-standard-edition-dual-sim-td-lte-cn-512gb-m1903f11a/score/index.json new file mode 100644 index 00000000000..c9e71136cc6 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-pro-prime-standard-edition-dual-sim-td-lte-cn-512gb-m1903f11a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11a-m1903f11c/index.json b/site/public/v1/smartphones/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11a-m1903f11c/index.json new file mode 100644 index 00000000000..8bcce66b0b2 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11a-m1903f11c/index.json @@ -0,0 +1,76 @@ +{ + "id": 5807, + "slug": "redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11a-m1903f11c", + "name": "Redmi K20 Pro Standard Edition Dual SIM TD-LTE CN 128GB M1903F11A / M1903F11C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.937308", + "updated_at": "2026-06-19T00:43:44.937308" +} diff --git a/site/public/v1/smartphones/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11a-m1903f11c/score/index.json b/site/public/v1/smartphones/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11a-m1903f11c/score/index.json new file mode 100644 index 00000000000..a3b77af19b0 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11a-m1903f11c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11t/index.json b/site/public/v1/smartphones/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11t/index.json new file mode 100644 index 00000000000..aceb51a45d3 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5808, + "slug": "redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11t", + "name": "Redmi K20 Pro Standard Edition Dual SIM TD-LTE CN 128GB M1903F11T", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.937308", + "updated_at": "2026-06-19T00:43:44.937308" +} diff --git a/site/public/v1/smartphones/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11t/score/index.json b/site/public/v1/smartphones/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11t/score/index.json new file mode 100644 index 00000000000..a3b77af19b0 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1903f11t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1903f11a-m1903f11c/index.json b/site/public/v1/smartphones/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1903f11a-m1903f11c/index.json new file mode 100644 index 00000000000..5d1036a7988 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1903f11a-m1903f11c/index.json @@ -0,0 +1,76 @@ +{ + "id": 5809, + "slug": "redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1903f11a-m1903f11c", + "name": "Redmi K20 Pro Standard Edition Dual SIM TD-LTE CN 64GB M1903F11A / M1903F11C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.937308", + "updated_at": "2026-06-19T00:43:44.937308" +} diff --git a/site/public/v1/smartphones/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1903f11a-m1903f11c/score/index.json b/site/public/v1/smartphones/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1903f11a-m1903f11c/score/index.json new file mode 100644 index 00000000000..a3b77af19b0 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1903f11a-m1903f11c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1903f11t/index.json b/site/public/v1/smartphones/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1903f11t/index.json new file mode 100644 index 00000000000..a7cf444b57a --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1903f11t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5810, + "slug": "redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1903f11t", + "name": "Redmi K20 Pro Standard Edition Dual SIM TD-LTE CN 64GB M1903F11T", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.937308", + "updated_at": "2026-06-19T00:43:44.937308" +} diff --git a/site/public/v1/smartphones/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1903f11t/score/index.json b/site/public/v1/smartphones/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1903f11t/score/index.json new file mode 100644 index 00000000000..a3b77af19b0 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1903f11t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k20-standard-edition-dual-sim-td-lte-cn-128gb-m1903f10a-m1903f10c/index.json b/site/public/v1/smartphones/redmi-k20-standard-edition-dual-sim-td-lte-cn-128gb-m1903f10a-m1903f10c/index.json new file mode 100644 index 00000000000..889af651318 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-standard-edition-dual-sim-td-lte-cn-128gb-m1903f10a-m1903f10c/index.json @@ -0,0 +1,76 @@ +{ + "id": 5811, + "slug": "redmi-k20-standard-edition-dual-sim-td-lte-cn-128gb-m1903f10a-m1903f10c", + "name": "Redmi K20 Standard Edition Dual SIM TD-LTE CN 128GB M1903F10A / M1903F10C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.937308", + "updated_at": "2026-06-19T00:43:44.937308" +} diff --git a/site/public/v1/smartphones/redmi-k20-standard-edition-dual-sim-td-lte-cn-128gb-m1903f10a-m1903f10c/score/index.json b/site/public/v1/smartphones/redmi-k20-standard-edition-dual-sim-td-lte-cn-128gb-m1903f10a-m1903f10c/score/index.json new file mode 100644 index 00000000000..cd3a8b6de7a --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-standard-edition-dual-sim-td-lte-cn-128gb-m1903f10a-m1903f10c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k20-standard-edition-dual-sim-td-lte-cn-128gb-m1903f10t/index.json b/site/public/v1/smartphones/redmi-k20-standard-edition-dual-sim-td-lte-cn-128gb-m1903f10t/index.json new file mode 100644 index 00000000000..51b1f128969 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-standard-edition-dual-sim-td-lte-cn-128gb-m1903f10t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5812, + "slug": "redmi-k20-standard-edition-dual-sim-td-lte-cn-128gb-m1903f10t", + "name": "Redmi K20 Standard Edition Dual SIM TD-LTE CN 128GB M1903F10T", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-06-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.937308", + "updated_at": "2026-06-19T00:43:44.937308" +} diff --git a/site/public/v1/smartphones/redmi-k20-standard-edition-dual-sim-td-lte-cn-128gb-m1903f10t/score/index.json b/site/public/v1/smartphones/redmi-k20-standard-edition-dual-sim-td-lte-cn-128gb-m1903f10t/score/index.json new file mode 100644 index 00000000000..cd3a8b6de7a --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-standard-edition-dual-sim-td-lte-cn-128gb-m1903f10t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k20-standard-edition-dual-sim-td-lte-cn-256gb-m1903f10t/index.json b/site/public/v1/smartphones/redmi-k20-standard-edition-dual-sim-td-lte-cn-256gb-m1903f10t/index.json new file mode 100644 index 00000000000..13cc4c5e98e --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-standard-edition-dual-sim-td-lte-cn-256gb-m1903f10t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5813, + "slug": "redmi-k20-standard-edition-dual-sim-td-lte-cn-256gb-m1903f10t", + "name": "Redmi K20 Standard Edition Dual SIM TD-LTE CN 256GB M1903F10T", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-06-02", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 3.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.937308", + "updated_at": "2026-06-19T00:43:44.937308" +} diff --git a/site/public/v1/smartphones/redmi-k20-standard-edition-dual-sim-td-lte-cn-256gb-m1903f10t/score/index.json b/site/public/v1/smartphones/redmi-k20-standard-edition-dual-sim-td-lte-cn-256gb-m1903f10t/score/index.json new file mode 100644 index 00000000000..99cc2291f4a --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-standard-edition-dual-sim-td-lte-cn-256gb-m1903f10t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 3.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k20-standard-edition-dual-sim-td-lte-cn-64gb-m1903f10a-m1903f10c/index.json b/site/public/v1/smartphones/redmi-k20-standard-edition-dual-sim-td-lte-cn-64gb-m1903f10a-m1903f10c/index.json new file mode 100644 index 00000000000..ad40661472f --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-standard-edition-dual-sim-td-lte-cn-64gb-m1903f10a-m1903f10c/index.json @@ -0,0 +1,76 @@ +{ + "id": 5814, + "slug": "redmi-k20-standard-edition-dual-sim-td-lte-cn-64gb-m1903f10a-m1903f10c", + "name": "Redmi K20 Standard Edition Dual SIM TD-LTE CN 64GB M1903F10A / M1903F10C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.937308", + "updated_at": "2026-06-19T00:43:44.937308" +} diff --git a/site/public/v1/smartphones/redmi-k20-standard-edition-dual-sim-td-lte-cn-64gb-m1903f10a-m1903f10c/score/index.json b/site/public/v1/smartphones/redmi-k20-standard-edition-dual-sim-td-lte-cn-64gb-m1903f10a-m1903f10c/score/index.json new file mode 100644 index 00000000000..cd3a8b6de7a --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-standard-edition-dual-sim-td-lte-cn-64gb-m1903f10a-m1903f10c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k20-standard-edition-dual-sim-td-lte-cn-64gb-m1903f10t/index.json b/site/public/v1/smartphones/redmi-k20-standard-edition-dual-sim-td-lte-cn-64gb-m1903f10t/index.json new file mode 100644 index 00000000000..1ba0b24dd06 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-standard-edition-dual-sim-td-lte-cn-64gb-m1903f10t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5815, + "slug": "redmi-k20-standard-edition-dual-sim-td-lte-cn-64gb-m1903f10t", + "name": "Redmi K20 Standard Edition Dual SIM TD-LTE CN 64GB M1903F10T", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-06-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.938307", + "updated_at": "2026-06-19T00:43:44.938307" +} diff --git a/site/public/v1/smartphones/redmi-k20-standard-edition-dual-sim-td-lte-cn-64gb-m1903f10t/score/index.json b/site/public/v1/smartphones/redmi-k20-standard-edition-dual-sim-td-lte-cn-64gb-m1903f10t/score/index.json new file mode 100644 index 00000000000..cd3a8b6de7a --- /dev/null +++ b/site/public/v1/smartphones/redmi-k20-standard-edition-dual-sim-td-lte-cn-64gb-m1903f10t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k30-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2001g7ae-m2001g7ac/index.json b/site/public/v1/smartphones/redmi-k30-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2001g7ae-m2001g7ac/index.json new file mode 100644 index 00000000000..6b59bbe2197 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2001g7ae-m2001g7ac/index.json @@ -0,0 +1,77 @@ +{ + "id": 5995, + "slug": "redmi-k30-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2001g7ae-m2001g7ac", + "name": "Redmi K30 5G Premium Edition Dual SIM TD-LTE CN 128GB M2001G7AE / M2001G7AC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-01-07", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.5, + "performance": 3.0, + "camera": 21.7, + "battery": 25.4, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.959311", + "updated_at": "2026-06-19T00:43:44.959311" +} diff --git a/site/public/v1/smartphones/redmi-k30-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2001g7ae-m2001g7ac/score/index.json b/site/public/v1/smartphones/redmi-k30-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2001g7ae-m2001g7ac/score/index.json new file mode 100644 index 00000000000..1228988b95a --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2001g7ae-m2001g7ac/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.5, + "performance": 3.0, + "camera": 21.7, + "battery": 25.4, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k30-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001g7ae-m2001g7ac/index.json b/site/public/v1/smartphones/redmi-k30-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001g7ae-m2001g7ac/index.json new file mode 100644 index 00000000000..d9f0c21ae75 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001g7ae-m2001g7ac/index.json @@ -0,0 +1,77 @@ +{ + "id": 5996, + "slug": "redmi-k30-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001g7ae-m2001g7ac", + "name": "Redmi K30 5G Premium Edition Dual SIM TD-LTE CN 256GB M2001G7AE / M2001G7AC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-01-07", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.5, + "performance": 3.0, + "camera": 21.7, + "battery": 25.4, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.959311", + "updated_at": "2026-06-19T00:43:44.959311" +} diff --git a/site/public/v1/smartphones/redmi-k30-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001g7ae-m2001g7ac/score/index.json b/site/public/v1/smartphones/redmi-k30-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001g7ae-m2001g7ac/score/index.json new file mode 100644 index 00000000000..1228988b95a --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2001g7ae-m2001g7ac/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.5, + "performance": 3.0, + "camera": 21.7, + "battery": 25.4, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k30-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2001g7ae-m2001g7ac/index.json b/site/public/v1/smartphones/redmi-k30-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2001g7ae-m2001g7ac/index.json new file mode 100644 index 00000000000..f765554665d --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2001g7ae-m2001g7ac/index.json @@ -0,0 +1,77 @@ +{ + "id": 5997, + "slug": "redmi-k30-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2001g7ae-m2001g7ac", + "name": "Redmi K30 5G Standard Edition Dual SIM TD-LTE CN 128GB M2001G7AE / M2001G7AC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-01-07", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 1.5, + "camera": 21.7, + "battery": 25.4, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.959311", + "updated_at": "2026-06-19T00:43:44.959311" +} diff --git a/site/public/v1/smartphones/redmi-k30-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2001g7ae-m2001g7ac/score/index.json b/site/public/v1/smartphones/redmi-k30-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2001g7ae-m2001g7ac/score/index.json new file mode 100644 index 00000000000..d17122a6a4f --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2001g7ae-m2001g7ac/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 1.5, + "camera": 21.7, + "battery": 25.4, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k30-5g-standard-edition-dual-sim-td-lte-cn-64gb-m2001g7ae-m2001g7ac/index.json b/site/public/v1/smartphones/redmi-k30-5g-standard-edition-dual-sim-td-lte-cn-64gb-m2001g7ae-m2001g7ac/index.json new file mode 100644 index 00000000000..c98472a8fe4 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30-5g-standard-edition-dual-sim-td-lte-cn-64gb-m2001g7ae-m2001g7ac/index.json @@ -0,0 +1,77 @@ +{ + "id": 5998, + "slug": "redmi-k30-5g-standard-edition-dual-sim-td-lte-cn-64gb-m2001g7ae-m2001g7ac", + "name": "Redmi K30 5G Standard Edition Dual SIM TD-LTE CN 64GB M2001G7AE / M2001G7AC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-01-07", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 1.5, + "camera": 21.7, + "battery": 25.4, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.959311", + "updated_at": "2026-06-19T00:43:44.959311" +} diff --git a/site/public/v1/smartphones/redmi-k30-5g-standard-edition-dual-sim-td-lte-cn-64gb-m2001g7ae-m2001g7ac/score/index.json b/site/public/v1/smartphones/redmi-k30-5g-standard-edition-dual-sim-td-lte-cn-64gb-m2001g7ae-m2001g7ac/score/index.json new file mode 100644 index 00000000000..d17122a6a4f --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30-5g-standard-edition-dual-sim-td-lte-cn-64gb-m2001g7ae-m2001g7ac/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 1.5, + "camera": 21.7, + "battery": 25.4, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k30-premium-edition-dual-sim-td-lte-cn-128gb-m1912g7be-m1912g7bc/index.json b/site/public/v1/smartphones/redmi-k30-premium-edition-dual-sim-td-lte-cn-128gb-m1912g7be-m1912g7bc/index.json new file mode 100644 index 00000000000..d4bdd2efc87 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30-premium-edition-dual-sim-td-lte-cn-128gb-m1912g7be-m1912g7bc/index.json @@ -0,0 +1,77 @@ +{ + "id": 5816, + "slug": "redmi-k30-premium-edition-dual-sim-td-lte-cn-128gb-m1912g7be-m1912g7bc", + "name": "Redmi K30 Premium Edition Dual SIM TD-LTE CN 128GB M1912G7BE / M1912G7BC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-12-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.4, + "performance": 3.0, + "camera": 21.7, + "battery": 24.8, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.938307", + "updated_at": "2026-06-19T00:43:44.938307" +} diff --git a/site/public/v1/smartphones/redmi-k30-premium-edition-dual-sim-td-lte-cn-128gb-m1912g7be-m1912g7bc/score/index.json b/site/public/v1/smartphones/redmi-k30-premium-edition-dual-sim-td-lte-cn-128gb-m1912g7be-m1912g7bc/score/index.json new file mode 100644 index 00000000000..632b41c375f --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30-premium-edition-dual-sim-td-lte-cn-128gb-m1912g7be-m1912g7bc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.4, + "performance": 3.0, + "camera": 21.7, + "battery": 24.8, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k30-premium-edition-dual-sim-td-lte-cn-256gb-m1912g7be-m1912g7bc/index.json b/site/public/v1/smartphones/redmi-k30-premium-edition-dual-sim-td-lte-cn-256gb-m1912g7be-m1912g7bc/index.json new file mode 100644 index 00000000000..e94375f73f5 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30-premium-edition-dual-sim-td-lte-cn-256gb-m1912g7be-m1912g7bc/index.json @@ -0,0 +1,77 @@ +{ + "id": 5817, + "slug": "redmi-k30-premium-edition-dual-sim-td-lte-cn-256gb-m1912g7be-m1912g7bc", + "name": "Redmi K30 Premium Edition Dual SIM TD-LTE CN 256GB M1912G7BE / M1912G7BC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-12-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.4, + "performance": 3.0, + "camera": 21.7, + "battery": 24.8, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.938307", + "updated_at": "2026-06-19T00:43:44.938307" +} diff --git a/site/public/v1/smartphones/redmi-k30-premium-edition-dual-sim-td-lte-cn-256gb-m1912g7be-m1912g7bc/score/index.json b/site/public/v1/smartphones/redmi-k30-premium-edition-dual-sim-td-lte-cn-256gb-m1912g7be-m1912g7bc/score/index.json new file mode 100644 index 00000000000..632b41c375f --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30-premium-edition-dual-sim-td-lte-cn-256gb-m1912g7be-m1912g7bc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.4, + "performance": 3.0, + "camera": 21.7, + "battery": 24.8, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k30-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2006j10c/index.json b/site/public/v1/smartphones/redmi-k30-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2006j10c/index.json new file mode 100644 index 00000000000..5d21937ed72 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2006j10c/index.json @@ -0,0 +1,77 @@ +{ + "id": 5999, + "slug": "redmi-k30-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2006j10c", + "name": "Redmi K30 Pro 5G Premium Edition Dual SIM TD-LTE CN 128GB M2006J10C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-04", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4700, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 218.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 3.0, + "camera": 21.5, + "battery": 28.9, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.959311", + "updated_at": "2026-06-19T00:43:44.959311" +} diff --git a/site/public/v1/smartphones/redmi-k30-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2006j10c/score/index.json b/site/public/v1/smartphones/redmi-k30-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2006j10c/score/index.json new file mode 100644 index 00000000000..d458a377d04 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2006j10c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 3.0, + "camera": 21.5, + "battery": 28.9, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k30-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2006j10c/index.json b/site/public/v1/smartphones/redmi-k30-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2006j10c/index.json new file mode 100644 index 00000000000..e2dbc91eab8 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2006j10c/index.json @@ -0,0 +1,77 @@ +{ + "id": 6000, + "slug": "redmi-k30-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2006j10c", + "name": "Redmi K30 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB M2006J10C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-04", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4700, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 218.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 3.0, + "camera": 21.5, + "battery": 28.9, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.959311", + "updated_at": "2026-06-19T00:43:44.959311" +} diff --git a/site/public/v1/smartphones/redmi-k30-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2006j10c/score/index.json b/site/public/v1/smartphones/redmi-k30-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2006j10c/score/index.json new file mode 100644 index 00000000000..d458a377d04 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2006j10c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 3.0, + "camera": 21.5, + "battery": 28.9, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k30-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2006j10c/index.json b/site/public/v1/smartphones/redmi-k30-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2006j10c/index.json new file mode 100644 index 00000000000..887e4463783 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2006j10c/index.json @@ -0,0 +1,77 @@ +{ + "id": 6001, + "slug": "redmi-k30-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2006j10c", + "name": "Redmi K30 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB M2006J10C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-04", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4700, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 218.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 21.5, + "battery": 28.9, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.959311", + "updated_at": "2026-06-19T00:43:44.959311" +} diff --git a/site/public/v1/smartphones/redmi-k30-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2006j10c/score/index.json b/site/public/v1/smartphones/redmi-k30-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2006j10c/score/index.json new file mode 100644 index 00000000000..6d7891d4afe --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2006j10c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 21.5, + "battery": 28.9, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-128gb-m2001j11e-m2001j11c/index.json b/site/public/v1/smartphones/redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-128gb-m2001j11e-m2001j11c/index.json new file mode 100644 index 00000000000..da3bdb3487e --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-128gb-m2001j11e-m2001j11c/index.json @@ -0,0 +1,77 @@ +{ + "id": 6002, + "slug": "redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-128gb-m2001j11e-m2001j11c", + "name": "Redmi K30 Pro Zoom 5G Dual SIM TD-LTE CN 128GB M2001J11E / M2001J11C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-04", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4700, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 218.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 3.0, + "camera": 21.5, + "battery": 28.9, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.959311", + "updated_at": "2026-06-19T00:43:44.959311" +} diff --git a/site/public/v1/smartphones/redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-128gb-m2001j11e-m2001j11c/score/index.json b/site/public/v1/smartphones/redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-128gb-m2001j11e-m2001j11c/score/index.json new file mode 100644 index 00000000000..d458a377d04 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-128gb-m2001j11e-m2001j11c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 3.0, + "camera": 21.5, + "battery": 28.9, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-256gb-m2001j11e-m2001j11c/index.json b/site/public/v1/smartphones/redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-256gb-m2001j11e-m2001j11c/index.json new file mode 100644 index 00000000000..e3f4f126812 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-256gb-m2001j11e-m2001j11c/index.json @@ -0,0 +1,77 @@ +{ + "id": 6003, + "slug": "redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-256gb-m2001j11e-m2001j11c", + "name": "Redmi K30 Pro Zoom 5G Dual SIM TD-LTE CN 256GB M2001J11E / M2001J11C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-04", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4700, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 218.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 3.0, + "camera": 21.5, + "battery": 28.9, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.960311", + "updated_at": "2026-06-19T00:43:44.960311" +} diff --git a/site/public/v1/smartphones/redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-256gb-m2001j11e-m2001j11c/score/index.json b/site/public/v1/smartphones/redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-256gb-m2001j11e-m2001j11c/score/index.json new file mode 100644 index 00000000000..d458a377d04 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-256gb-m2001j11e-m2001j11c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 3.0, + "camera": 21.5, + "battery": 28.9, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-512gb-m2001j11e-m2001j11c/index.json b/site/public/v1/smartphones/redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-512gb-m2001j11e-m2001j11c/index.json new file mode 100644 index 00000000000..0692d0cdff9 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-512gb-m2001j11e-m2001j11c/index.json @@ -0,0 +1,77 @@ +{ + "id": 6004, + "slug": "redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-512gb-m2001j11e-m2001j11c", + "name": "Redmi K30 Pro Zoom 5G Dual SIM TD-LTE CN 512GB M2001J11E / M2001J11C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-04-04", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4700, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 218.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": 6.0, + "camera": 21.5, + "battery": 28.9, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.960311", + "updated_at": "2026-06-19T00:43:44.960311" +} diff --git a/site/public/v1/smartphones/redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-512gb-m2001j11e-m2001j11c/score/index.json b/site/public/v1/smartphones/redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-512gb-m2001j11e-m2001j11c/score/index.json new file mode 100644 index 00000000000..63625758ee9 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30-pro-zoom-5g-dual-sim-td-lte-cn-512gb-m2001j11e-m2001j11c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": 6.0, + "camera": 21.5, + "battery": 28.9, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k30-standard-edition-dual-sim-td-lte-cn-128gb-m1912g7be-m1912g7bc/index.json b/site/public/v1/smartphones/redmi-k30-standard-edition-dual-sim-td-lte-cn-128gb-m1912g7be-m1912g7bc/index.json new file mode 100644 index 00000000000..07915f4c5f8 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30-standard-edition-dual-sim-td-lte-cn-128gb-m1912g7be-m1912g7bc/index.json @@ -0,0 +1,77 @@ +{ + "id": 5819, + "slug": "redmi-k30-standard-edition-dual-sim-td-lte-cn-128gb-m1912g7be-m1912g7bc", + "name": "Redmi K30 Standard Edition Dual SIM TD-LTE CN 128GB M1912G7BE / M1912G7BC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-12-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.0, + "performance": 1.5, + "camera": 21.7, + "battery": 24.8, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.938307", + "updated_at": "2026-06-19T00:43:44.938307" +} diff --git a/site/public/v1/smartphones/redmi-k30-standard-edition-dual-sim-td-lte-cn-128gb-m1912g7be-m1912g7bc/score/index.json b/site/public/v1/smartphones/redmi-k30-standard-edition-dual-sim-td-lte-cn-128gb-m1912g7be-m1912g7bc/score/index.json new file mode 100644 index 00000000000..17a351a2b86 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30-standard-edition-dual-sim-td-lte-cn-128gb-m1912g7be-m1912g7bc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.0, + "performance": 1.5, + "camera": 21.7, + "battery": 24.8, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k30-standard-edition-dual-sim-td-lte-cn-64gb-m1912g7be-m1912g7bc/index.json b/site/public/v1/smartphones/redmi-k30-standard-edition-dual-sim-td-lte-cn-64gb-m1912g7be-m1912g7bc/index.json new file mode 100644 index 00000000000..7d43c1c2641 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30-standard-edition-dual-sim-td-lte-cn-64gb-m1912g7be-m1912g7bc/index.json @@ -0,0 +1,77 @@ +{ + "id": 5820, + "slug": "redmi-k30-standard-edition-dual-sim-td-lte-cn-64gb-m1912g7be-m1912g7bc", + "name": "Redmi K30 Standard Edition Dual SIM TD-LTE CN 64GB M1912G7BE / M1912G7BC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-12-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.0, + "performance": 1.5, + "camera": 21.7, + "battery": 24.8, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.938307", + "updated_at": "2026-06-19T00:43:44.938307" +} diff --git a/site/public/v1/smartphones/redmi-k30-standard-edition-dual-sim-td-lte-cn-64gb-m1912g7be-m1912g7bc/score/index.json b/site/public/v1/smartphones/redmi-k30-standard-edition-dual-sim-td-lte-cn-64gb-m1912g7be-m1912g7bc/score/index.json new file mode 100644 index 00000000000..17a351a2b86 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30-standard-edition-dual-sim-td-lte-cn-64gb-m1912g7be-m1912g7bc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.0, + "performance": 1.5, + "camera": 21.7, + "battery": 24.8, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-k30-ultra-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2006j10c/index.json b/site/public/v1/smartphones/redmi-k30-ultra-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2006j10c/index.json new file mode 100644 index 00000000000..3f39a577e4e --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30-ultra-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2006j10c/index.json @@ -0,0 +1,77 @@ +{ + "id": 6007, + "slug": "redmi-k30-ultra-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2006j10c", + "name": "Redmi K30 Ultra 5G Premium Edition Dual SIM TD-LTE CN 128GB M2006J10C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 53, + "slug": "dimensity-1000-plus", + "name": "Dimensity 1000 Plus", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1000-plus" + }, + "release_date": "2020-08-14", + "msrp_usd": 2199, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 213.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 3.0, + "camera": 21.7, + "battery": 25.9, + "display": 52.0, + "value": 12.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.960311", + "updated_at": "2026-06-19T00:43:44.960311" +} diff --git a/site/public/v1/smartphones/redmi-k30-ultra-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2006j10c/score/index.json b/site/public/v1/smartphones/redmi-k30-ultra-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2006j10c/score/index.json new file mode 100644 index 00000000000..6d2c96a0259 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30-ultra-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2006j10c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 3.0, + "camera": 21.7, + "battery": 25.9, + "display": 52.0, + "value": 12.8 +} diff --git a/site/public/v1/smartphones/redmi-k30-ultra-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2006j10c/index.json b/site/public/v1/smartphones/redmi-k30-ultra-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2006j10c/index.json new file mode 100644 index 00000000000..ce6162ef4c9 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30-ultra-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2006j10c/index.json @@ -0,0 +1,77 @@ +{ + "id": 6008, + "slug": "redmi-k30-ultra-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2006j10c", + "name": "Redmi K30 Ultra 5G Premium Edition Dual SIM TD-LTE CN 512GB M2006J10C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 53, + "slug": "dimensity-1000-plus", + "name": "Dimensity 1000 Plus", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1000-plus" + }, + "release_date": "2020-08-14", + "msrp_usd": 2499, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 213.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 3.0, + "camera": 21.7, + "battery": 25.9, + "display": 52.0, + "value": 12.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.960311", + "updated_at": "2026-06-19T00:43:44.960311" +} diff --git a/site/public/v1/smartphones/redmi-k30-ultra-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2006j10c/score/index.json b/site/public/v1/smartphones/redmi-k30-ultra-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2006j10c/score/index.json new file mode 100644 index 00000000000..6d2c96a0259 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30-ultra-5g-premium-edition-dual-sim-td-lte-cn-512gb-m2006j10c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 3.0, + "camera": 21.7, + "battery": 25.9, + "display": 52.0, + "value": 12.8 +} diff --git a/site/public/v1/smartphones/redmi-k30-ultra-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2006j10c/index.json b/site/public/v1/smartphones/redmi-k30-ultra-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2006j10c/index.json new file mode 100644 index 00000000000..7ecb084e520 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30-ultra-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2006j10c/index.json @@ -0,0 +1,77 @@ +{ + "id": 6009, + "slug": "redmi-k30-ultra-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2006j10c", + "name": "Redmi K30 Ultra 5G Standard Edition Dual SIM TD-LTE CN 128GB M2006J10C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 53, + "slug": "dimensity-1000-plus", + "name": "Dimensity 1000 Plus", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1000-plus" + }, + "release_date": "2020-08-14", + "msrp_usd": 1999, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 213.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.3, + "performance": 1.5, + "camera": 21.7, + "battery": 25.9, + "display": 52.0, + "value": 12.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.960311", + "updated_at": "2026-06-19T00:43:44.960311" +} diff --git a/site/public/v1/smartphones/redmi-k30-ultra-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2006j10c/score/index.json b/site/public/v1/smartphones/redmi-k30-ultra-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2006j10c/score/index.json new file mode 100644 index 00000000000..dbad9562b95 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30-ultra-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2006j10c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.3, + "performance": 1.5, + "camera": 21.7, + "battery": 25.9, + "display": 52.0, + "value": 12.7 +} diff --git a/site/public/v1/smartphones/redmi-k30s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2007j3sc/index.json b/site/public/v1/smartphones/redmi-k30s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2007j3sc/index.json new file mode 100644 index 00000000000..ccbe34e5188 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2007j3sc/index.json @@ -0,0 +1,77 @@ +{ + "id": 6012, + "slug": "redmi-k30s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2007j3sc", + "name": "Redmi K30S 5G Standard Edition Dual SIM TD-LTE CN 128GB M2007J3SC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-11-02", + "msrp_usd": 2599, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 216.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.0, + "performance": 3.0, + "camera": 21.5, + "battery": 33.4, + "display": 62.0, + "value": 15.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.961311", + "updated_at": "2026-06-19T00:43:44.961311" +} diff --git a/site/public/v1/smartphones/redmi-k30s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2007j3sc/score/index.json b/site/public/v1/smartphones/redmi-k30s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2007j3sc/score/index.json new file mode 100644 index 00000000000..d7394d328fa --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30s-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2007j3sc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.0, + "performance": 3.0, + "camera": 21.5, + "battery": 33.4, + "display": 62.0, + "value": 15.0 +} diff --git a/site/public/v1/smartphones/redmi-k30s-5g-supreme-edition-dual-sim-td-lte-cn-256gb-m2007j3sc/index.json b/site/public/v1/smartphones/redmi-k30s-5g-supreme-edition-dual-sim-td-lte-cn-256gb-m2007j3sc/index.json new file mode 100644 index 00000000000..ef8b0251e99 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30s-5g-supreme-edition-dual-sim-td-lte-cn-256gb-m2007j3sc/index.json @@ -0,0 +1,77 @@ +{ + "id": 6013, + "slug": "redmi-k30s-5g-supreme-edition-dual-sim-td-lte-cn-256gb-m2007j3sc", + "name": "Redmi K30S 5G Supreme Edition Dual SIM TD-LTE CN 256GB M2007J3SC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-11-02", + "msrp_usd": 2799, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 216.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.0, + "performance": 3.0, + "camera": 21.5, + "battery": 33.4, + "display": 62.0, + "value": 15.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.961311", + "updated_at": "2026-06-19T00:43:44.961311" +} diff --git a/site/public/v1/smartphones/redmi-k30s-5g-supreme-edition-dual-sim-td-lte-cn-256gb-m2007j3sc/score/index.json b/site/public/v1/smartphones/redmi-k30s-5g-supreme-edition-dual-sim-td-lte-cn-256gb-m2007j3sc/score/index.json new file mode 100644 index 00000000000..d7394d328fa --- /dev/null +++ b/site/public/v1/smartphones/redmi-k30s-5g-supreme-edition-dual-sim-td-lte-cn-256gb-m2007j3sc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.0, + "performance": 3.0, + "camera": 21.5, + "battery": 33.4, + "display": 62.0, + "value": 15.0 +} diff --git a/site/public/v1/smartphones/redmi-k40-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2012k11ac/index.json b/site/public/v1/smartphones/redmi-k40-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2012k11ac/index.json new file mode 100644 index 00000000000..13511a241e6 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k40-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2012k11ac/index.json @@ -0,0 +1,77 @@ +{ + "id": 6165, + "slug": "redmi-k40-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2012k11ac", + "name": "Redmi K40 5G Premium Edition Dual SIM TD-LTE CN 128GB M2012K11AC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-03-04", + "msrp_usd": 2199, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4520, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 6.1, + "camera": 16.5, + "battery": 26.2, + "display": 52.0, + "value": 12.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.978775", + "updated_at": "2026-06-19T00:43:44.978775" +} diff --git a/site/public/v1/smartphones/redmi-k40-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2012k11ac/score/index.json b/site/public/v1/smartphones/redmi-k40-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2012k11ac/score/index.json new file mode 100644 index 00000000000..18c1ca49da7 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k40-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2012k11ac/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 6.1, + "camera": 16.5, + "battery": 26.2, + "display": 52.0, + "value": 12.6 +} diff --git a/site/public/v1/smartphones/redmi-k40-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2012k11ac/index.json b/site/public/v1/smartphones/redmi-k40-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2012k11ac/index.json new file mode 100644 index 00000000000..5cdb1632f76 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k40-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2012k11ac/index.json @@ -0,0 +1,77 @@ +{ + "id": 6166, + "slug": "redmi-k40-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2012k11ac", + "name": "Redmi K40 5G Premium Edition Dual SIM TD-LTE CN 256GB M2012K11AC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-03-04", + "msrp_usd": 2499, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4520, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 6.1, + "camera": 16.5, + "battery": 26.2, + "display": 52.0, + "value": 12.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.978775", + "updated_at": "2026-06-19T00:43:44.978775" +} diff --git a/site/public/v1/smartphones/redmi-k40-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2012k11ac/score/index.json b/site/public/v1/smartphones/redmi-k40-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2012k11ac/score/index.json new file mode 100644 index 00000000000..18c1ca49da7 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k40-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2012k11ac/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 6.1, + "camera": 16.5, + "battery": 26.2, + "display": 52.0, + "value": 12.6 +} diff --git a/site/public/v1/smartphones/redmi-k40-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2012k11ac/index.json b/site/public/v1/smartphones/redmi-k40-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2012k11ac/index.json new file mode 100644 index 00000000000..c64d551d3ca --- /dev/null +++ b/site/public/v1/smartphones/redmi-k40-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2012k11ac/index.json @@ -0,0 +1,77 @@ +{ + "id": 6167, + "slug": "redmi-k40-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2012k11ac", + "name": "Redmi K40 5G Standard Edition Dual SIM TD-LTE CN 128GB M2012K11AC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-03-04", + "msrp_usd": 1999, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4520, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.8, + "performance": 4.6, + "camera": 16.5, + "battery": 26.2, + "display": 52.0, + "value": 12.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.978775", + "updated_at": "2026-06-19T00:43:44.978775" +} diff --git a/site/public/v1/smartphones/redmi-k40-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2012k11ac/score/index.json b/site/public/v1/smartphones/redmi-k40-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2012k11ac/score/index.json new file mode 100644 index 00000000000..d7634268911 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k40-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2012k11ac/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.8, + "performance": 4.6, + "camera": 16.5, + "battery": 26.2, + "display": 52.0, + "value": 12.4 +} diff --git a/site/public/v1/smartphones/redmi-k40-5g-top-edition-dual-sim-td-lte-cn-256gb-m2012k11ac/index.json b/site/public/v1/smartphones/redmi-k40-5g-top-edition-dual-sim-td-lte-cn-256gb-m2012k11ac/index.json new file mode 100644 index 00000000000..7077fea5b78 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k40-5g-top-edition-dual-sim-td-lte-cn-256gb-m2012k11ac/index.json @@ -0,0 +1,77 @@ +{ + "id": 6168, + "slug": "redmi-k40-5g-top-edition-dual-sim-td-lte-cn-256gb-m2012k11ac", + "name": "Redmi K40 5G Top Edition Dual SIM TD-LTE CN 256GB M2012K11AC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-03-01", + "msrp_usd": 2699, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4520, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.9, + "performance": 9.1, + "camera": 16.5, + "battery": 26.2, + "display": 52.0, + "value": 12.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.978775", + "updated_at": "2026-06-19T00:43:44.978775" +} diff --git a/site/public/v1/smartphones/redmi-k40-5g-top-edition-dual-sim-td-lte-cn-256gb-m2012k11ac/score/index.json b/site/public/v1/smartphones/redmi-k40-5g-top-edition-dual-sim-td-lte-cn-256gb-m2012k11ac/score/index.json new file mode 100644 index 00000000000..c98884de735 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k40-5g-top-edition-dual-sim-td-lte-cn-256gb-m2012k11ac/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.9, + "performance": 9.1, + "camera": 16.5, + "battery": 26.2, + "display": 52.0, + "value": 12.9 +} diff --git a/site/public/v1/smartphones/redmi-k40-game-enhanced-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c/index.json b/site/public/v1/smartphones/redmi-k40-game-enhanced-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c/index.json new file mode 100644 index 00000000000..dd7dabb9347 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k40-game-enhanced-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c/index.json @@ -0,0 +1,77 @@ +{ + "id": 6169, + "slug": "redmi-k40-game-enhanced-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c", + "name": "Redmi K40 Game Enhanced Edition 5G Dual SIM TD-LTE CN 128GB M2104K10C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-04-27", + "msrp_usd": 2399, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5065, + "charging_wired_w": 67.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.6, + "performance": 6.9, + "camera": 21.7, + "battery": 45.9, + "display": 52.0, + "value": 15.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.978775", + "updated_at": "2026-06-19T00:43:44.978775" +} diff --git a/site/public/v1/smartphones/redmi-k40-game-enhanced-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c/score/index.json b/site/public/v1/smartphones/redmi-k40-game-enhanced-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c/score/index.json new file mode 100644 index 00000000000..3537befbd83 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k40-game-enhanced-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.6, + "performance": 6.9, + "camera": 21.7, + "battery": 45.9, + "display": 52.0, + "value": 15.8 +} diff --git a/site/public/v1/smartphones/redmi-k40-game-enhanced-edition-5g-dual-sim-td-lte-cn-256gb-m2104k10c/index.json b/site/public/v1/smartphones/redmi-k40-game-enhanced-edition-5g-dual-sim-td-lte-cn-256gb-m2104k10c/index.json new file mode 100644 index 00000000000..13dbf0bf29e --- /dev/null +++ b/site/public/v1/smartphones/redmi-k40-game-enhanced-edition-5g-dual-sim-td-lte-cn-256gb-m2104k10c/index.json @@ -0,0 +1,77 @@ +{ + "id": 6170, + "slug": "redmi-k40-game-enhanced-edition-5g-dual-sim-td-lte-cn-256gb-m2104k10c", + "name": "Redmi K40 Game Enhanced Edition 5G Dual SIM TD-LTE CN 256GB M2104K10C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-04-27", + "msrp_usd": 2699, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5065, + "charging_wired_w": 67.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.6, + "performance": 6.9, + "camera": 21.7, + "battery": 45.9, + "display": 52.0, + "value": 15.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.978775", + "updated_at": "2026-06-19T00:43:44.978775" +} diff --git a/site/public/v1/smartphones/redmi-k40-game-enhanced-edition-5g-dual-sim-td-lte-cn-256gb-m2104k10c/score/index.json b/site/public/v1/smartphones/redmi-k40-game-enhanced-edition-5g-dual-sim-td-lte-cn-256gb-m2104k10c/score/index.json new file mode 100644 index 00000000000..3537befbd83 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k40-game-enhanced-edition-5g-dual-sim-td-lte-cn-256gb-m2104k10c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.6, + "performance": 6.9, + "camera": 21.7, + "battery": 45.9, + "display": 52.0, + "value": 15.8 +} diff --git a/site/public/v1/smartphones/redmi-k40-game-premium-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c/index.json b/site/public/v1/smartphones/redmi-k40-game-premium-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c/index.json new file mode 100644 index 00000000000..e493766d17e --- /dev/null +++ b/site/public/v1/smartphones/redmi-k40-game-premium-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c/index.json @@ -0,0 +1,77 @@ +{ + "id": 6172, + "slug": "redmi-k40-game-premium-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c", + "name": "Redmi K40 Game Premium Edition 5G Dual SIM TD-LTE CN 128GB M2104K10C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-04-27", + "msrp_usd": 2199, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5065, + "charging_wired_w": 67.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.9, + "performance": 3.9, + "camera": 21.7, + "battery": 45.9, + "display": 52.0, + "value": 15.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.978775", + "updated_at": "2026-06-19T00:43:44.978775" +} diff --git a/site/public/v1/smartphones/redmi-k40-game-premium-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c/score/index.json b/site/public/v1/smartphones/redmi-k40-game-premium-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c/score/index.json new file mode 100644 index 00000000000..9bb77cf640d --- /dev/null +++ b/site/public/v1/smartphones/redmi-k40-game-premium-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.9, + "performance": 3.9, + "camera": 21.7, + "battery": 45.9, + "display": 52.0, + "value": 15.4 +} diff --git a/site/public/v1/smartphones/redmi-k40-game-premium-edition-5g-dual-sim-td-lte-cn-256gb-m2104k10c/index.json b/site/public/v1/smartphones/redmi-k40-game-premium-edition-5g-dual-sim-td-lte-cn-256gb-m2104k10c/index.json new file mode 100644 index 00000000000..31f7d855c1f --- /dev/null +++ b/site/public/v1/smartphones/redmi-k40-game-premium-edition-5g-dual-sim-td-lte-cn-256gb-m2104k10c/index.json @@ -0,0 +1,77 @@ +{ + "id": 6173, + "slug": "redmi-k40-game-premium-edition-5g-dual-sim-td-lte-cn-256gb-m2104k10c", + "name": "Redmi K40 Game Premium Edition 5G Dual SIM TD-LTE CN 256GB M2104K10C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-04-27", + "msrp_usd": 2399, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5065, + "charging_wired_w": 67.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.9, + "performance": 3.9, + "camera": 21.7, + "battery": 45.9, + "display": 52.0, + "value": 15.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.978775", + "updated_at": "2026-06-19T00:43:44.978775" +} diff --git a/site/public/v1/smartphones/redmi-k40-game-premium-edition-5g-dual-sim-td-lte-cn-256gb-m2104k10c/score/index.json b/site/public/v1/smartphones/redmi-k40-game-premium-edition-5g-dual-sim-td-lte-cn-256gb-m2104k10c/score/index.json new file mode 100644 index 00000000000..9bb77cf640d --- /dev/null +++ b/site/public/v1/smartphones/redmi-k40-game-premium-edition-5g-dual-sim-td-lte-cn-256gb-m2104k10c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.9, + "performance": 3.9, + "camera": 21.7, + "battery": 45.9, + "display": 52.0, + "value": 15.4 +} diff --git a/site/public/v1/smartphones/redmi-k40-game-standard-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c/index.json b/site/public/v1/smartphones/redmi-k40-game-standard-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c/index.json new file mode 100644 index 00000000000..450fd75b550 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k40-game-standard-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c/index.json @@ -0,0 +1,77 @@ +{ + "id": 6175, + "slug": "redmi-k40-game-standard-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c", + "name": "Redmi K40 Game Standard Edition 5G Dual SIM TD-LTE CN 128GB M2104K10C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-04-27", + "msrp_usd": 1999, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5065, + "charging_wired_w": 67.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.5, + "performance": 2.4, + "camera": 21.7, + "battery": 45.9, + "display": 52.0, + "value": 15.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.978775", + "updated_at": "2026-06-19T00:43:44.978775" +} diff --git a/site/public/v1/smartphones/redmi-k40-game-standard-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c/score/index.json b/site/public/v1/smartphones/redmi-k40-game-standard-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c/score/index.json new file mode 100644 index 00000000000..56a81eb8df0 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k40-game-standard-edition-5g-dual-sim-td-lte-cn-128gb-m2104k10c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.5, + "performance": 2.4, + "camera": 21.7, + "battery": 45.9, + "display": 52.0, + "value": 15.2 +} diff --git a/site/public/v1/smartphones/redmi-k40-pro-5g-dual-sim-td-lte-cn-256gb-m2012k11q-redmi-k40-ulta/index.json b/site/public/v1/smartphones/redmi-k40-pro-5g-dual-sim-td-lte-cn-256gb-m2012k11q-redmi-k40-ulta/index.json new file mode 100644 index 00000000000..a448fcc2ad0 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k40-pro-5g-dual-sim-td-lte-cn-256gb-m2012k11q-redmi-k40-ulta/index.json @@ -0,0 +1,77 @@ +{ + "id": 6177, + "slug": "redmi-k40-pro-5g-dual-sim-td-lte-cn-256gb-m2012k11q-redmi-k40-ulta", + "name": "Redmi K40 Pro+ 5G Dual SIM TD-LTE CN 256GB M2012K11Q / Redmi K40 Ulta", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-04", + "msrp_usd": 3699, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4520, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.3, + "performance": 9.4, + "camera": 35.7, + "battery": 36.2, + "display": 52.0, + "value": 16.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.980296", + "updated_at": "2026-06-19T00:43:44.980296" +} diff --git a/site/public/v1/smartphones/redmi-k40-pro-5g-dual-sim-td-lte-cn-256gb-m2012k11q-redmi-k40-ulta/score/index.json b/site/public/v1/smartphones/redmi-k40-pro-5g-dual-sim-td-lte-cn-256gb-m2012k11q-redmi-k40-ulta/score/index.json new file mode 100644 index 00000000000..56fdf50e7b2 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k40-pro-5g-dual-sim-td-lte-cn-256gb-m2012k11q-redmi-k40-ulta/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.3, + "performance": 9.4, + "camera": 35.7, + "battery": 36.2, + "display": 52.0, + "value": 16.6 +} diff --git a/site/public/v1/smartphones/redmi-k40-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2012k11c/index.json b/site/public/v1/smartphones/redmi-k40-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2012k11c/index.json new file mode 100644 index 00000000000..27bf0586e80 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k40-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2012k11c/index.json @@ -0,0 +1,77 @@ +{ + "id": 6178, + "slug": "redmi-k40-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2012k11c", + "name": "Redmi K40 Pro 5G Premium Edition Dual SIM TD-LTE CN 128GB M2012K11C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-04", + "msrp_usd": 2999, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4520, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.1, + "performance": 6.4, + "camera": 21.7, + "battery": 36.2, + "display": 52.0, + "value": 14.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.980296", + "updated_at": "2026-06-19T00:43:44.980296" +} diff --git a/site/public/v1/smartphones/redmi-k40-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2012k11c/score/index.json b/site/public/v1/smartphones/redmi-k40-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2012k11c/score/index.json new file mode 100644 index 00000000000..bcc9e06f380 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k40-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2012k11c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.1, + "performance": 6.4, + "camera": 21.7, + "battery": 36.2, + "display": 52.0, + "value": 14.6 +} diff --git a/site/public/v1/smartphones/redmi-k40-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2012k11c/index.json b/site/public/v1/smartphones/redmi-k40-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2012k11c/index.json new file mode 100644 index 00000000000..e7635c738d1 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k40-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2012k11c/index.json @@ -0,0 +1,77 @@ +{ + "id": 6179, + "slug": "redmi-k40-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2012k11c", + "name": "Redmi K40 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB M2012K11C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-04", + "msrp_usd": 3299, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4520, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.1, + "performance": 6.4, + "camera": 21.7, + "battery": 36.2, + "display": 52.0, + "value": 14.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.980296", + "updated_at": "2026-06-19T00:43:44.980296" +} diff --git a/site/public/v1/smartphones/redmi-k40-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2012k11c/score/index.json b/site/public/v1/smartphones/redmi-k40-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2012k11c/score/index.json new file mode 100644 index 00000000000..bcc9e06f380 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k40-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2012k11c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.1, + "performance": 6.4, + "camera": 21.7, + "battery": 36.2, + "display": 52.0, + "value": 14.6 +} diff --git a/site/public/v1/smartphones/redmi-k40-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2012k11c/index.json b/site/public/v1/smartphones/redmi-k40-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2012k11c/index.json new file mode 100644 index 00000000000..a1c669be3b9 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k40-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2012k11c/index.json @@ -0,0 +1,77 @@ +{ + "id": 6180, + "slug": "redmi-k40-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2012k11c", + "name": "Redmi K40 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB M2012K11C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-03-04", + "msrp_usd": 2799, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4520, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.7, + "performance": 4.9, + "camera": 21.7, + "battery": 36.2, + "display": 52.0, + "value": 14.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.980296", + "updated_at": "2026-06-19T00:43:44.980296" +} diff --git a/site/public/v1/smartphones/redmi-k40-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2012k11c/score/index.json b/site/public/v1/smartphones/redmi-k40-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2012k11c/score/index.json new file mode 100644 index 00000000000..207876344e5 --- /dev/null +++ b/site/public/v1/smartphones/redmi-k40-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2012k11c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.7, + "performance": 4.9, + "camera": 21.7, + "battery": 36.2, + "display": 52.0, + "value": 14.3 +} diff --git a/site/public/v1/smartphones/redmi-note-10-4g-premium-edition-dual-sim-td-lte-in-128gb-m2101k7ai/index.json b/site/public/v1/smartphones/redmi-note-10-4g-premium-edition-dual-sim-td-lte-in-128gb-m2101k7ai/index.json new file mode 100644 index 00000000000..f2c7d2da647 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-10-4g-premium-edition-dual-sim-td-lte-in-128gb-m2101k7ai/index.json @@ -0,0 +1,76 @@ +{ + "id": 6183, + "slug": "redmi-note-10-4g-premium-edition-dual-sim-td-lte-in-128gb-m2101k7ai", + "name": "Redmi Note 10 4G Premium Edition Dual SIM TD-LTE IN 128GB M2101K7AI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 142, + "slug": "snapdragon-678", + "name": "Snapdragon 678", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-678" + }, + "release_date": "2021-03-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 178.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.3, + "performance": 1.5, + "camera": 16.5, + "battery": 33.4, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.980296", + "updated_at": "2026-06-19T00:43:44.980296" +} diff --git a/site/public/v1/smartphones/redmi-note-10-4g-premium-edition-dual-sim-td-lte-in-128gb-m2101k7ai/score/index.json b/site/public/v1/smartphones/redmi-note-10-4g-premium-edition-dual-sim-td-lte-in-128gb-m2101k7ai/score/index.json new file mode 100644 index 00000000000..0448687f1a3 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-10-4g-premium-edition-dual-sim-td-lte-in-128gb-m2101k7ai/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.3, + "performance": 1.5, + "camera": 16.5, + "battery": 33.4, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-10-4g-premium-edition-global-dual-sim-td-lte-128gb-m2101k7ag/index.json b/site/public/v1/smartphones/redmi-note-10-4g-premium-edition-global-dual-sim-td-lte-128gb-m2101k7ag/index.json new file mode 100644 index 00000000000..d046233a07f --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-10-4g-premium-edition-global-dual-sim-td-lte-128gb-m2101k7ag/index.json @@ -0,0 +1,76 @@ +{ + "id": 6184, + "slug": "redmi-note-10-4g-premium-edition-global-dual-sim-td-lte-128gb-m2101k7ag", + "name": "Redmi Note 10 4G Premium Edition Global Dual SIM TD-LTE 128GB M2101K7AG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 142, + "slug": "snapdragon-678", + "name": "Snapdragon 678", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-678" + }, + "release_date": "2021-03-08", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 178.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.3, + "performance": 1.5, + "camera": 16.5, + "battery": 33.4, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.980296", + "updated_at": "2026-06-19T00:43:44.980296" +} diff --git a/site/public/v1/smartphones/redmi-note-10-4g-premium-edition-global-dual-sim-td-lte-128gb-m2101k7ag/score/index.json b/site/public/v1/smartphones/redmi-note-10-4g-premium-edition-global-dual-sim-td-lte-128gb-m2101k7ag/score/index.json new file mode 100644 index 00000000000..0448687f1a3 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-10-4g-premium-edition-global-dual-sim-td-lte-128gb-m2101k7ag/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.3, + "performance": 1.5, + "camera": 16.5, + "battery": 33.4, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-10-4g-standard-edition-dual-sim-td-lte-in-64gb-m2101k7ai/index.json b/site/public/v1/smartphones/redmi-note-10-4g-standard-edition-dual-sim-td-lte-in-64gb-m2101k7ai/index.json new file mode 100644 index 00000000000..3a23be2b0fd --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-10-4g-standard-edition-dual-sim-td-lte-in-64gb-m2101k7ai/index.json @@ -0,0 +1,76 @@ +{ + "id": 6185, + "slug": "redmi-note-10-4g-standard-edition-dual-sim-td-lte-in-64gb-m2101k7ai", + "name": "Redmi Note 10 4G Standard Edition Dual SIM TD-LTE IN 64GB M2101K7AI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 142, + "slug": "snapdragon-678", + "name": "Snapdragon 678", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-678" + }, + "release_date": "2021-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 178.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 0.0, + "camera": 16.5, + "battery": 33.4, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.980296", + "updated_at": "2026-06-19T00:43:44.980296" +} diff --git a/site/public/v1/smartphones/redmi-note-10-4g-standard-edition-dual-sim-td-lte-in-64gb-m2101k7ai/score/index.json b/site/public/v1/smartphones/redmi-note-10-4g-standard-edition-dual-sim-td-lte-in-64gb-m2101k7ai/score/index.json new file mode 100644 index 00000000000..06989480161 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-10-4g-standard-edition-dual-sim-td-lte-in-64gb-m2101k7ai/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 0.0, + "camera": 16.5, + "battery": 33.4, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-10-4g-standard-edition-global-dual-sim-td-lte-128gb-m2101k7ag/index.json b/site/public/v1/smartphones/redmi-note-10-4g-standard-edition-global-dual-sim-td-lte-128gb-m2101k7ag/index.json new file mode 100644 index 00000000000..8cbada5f6fe --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-10-4g-standard-edition-global-dual-sim-td-lte-128gb-m2101k7ag/index.json @@ -0,0 +1,76 @@ +{ + "id": 6186, + "slug": "redmi-note-10-4g-standard-edition-global-dual-sim-td-lte-128gb-m2101k7ag", + "name": "Redmi Note 10 4G Standard Edition Global Dual SIM TD-LTE 128GB M2101K7AG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 142, + "slug": "snapdragon-678", + "name": "Snapdragon 678", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-678" + }, + "release_date": "2021-03-08", + "msrp_usd": 200, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 178.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 0.0, + "camera": 16.5, + "battery": 33.4, + "display": 45.9, + "value": 62.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.980296", + "updated_at": "2026-06-19T00:43:44.980296" +} diff --git a/site/public/v1/smartphones/redmi-note-10-4g-standard-edition-global-dual-sim-td-lte-128gb-m2101k7ag/score/index.json b/site/public/v1/smartphones/redmi-note-10-4g-standard-edition-global-dual-sim-td-lte-128gb-m2101k7ag/score/index.json new file mode 100644 index 00000000000..6d63dae0f2a --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-10-4g-standard-edition-global-dual-sim-td-lte-128gb-m2101k7ag/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 0.0, + "camera": 16.5, + "battery": 33.4, + "display": 45.9, + "value": 62.0 +} diff --git a/site/public/v1/smartphones/redmi-note-10-4g-standard-edition-global-dual-sim-td-lte-64gb-m2101k7ag/index.json b/site/public/v1/smartphones/redmi-note-10-4g-standard-edition-global-dual-sim-td-lte-64gb-m2101k7ag/index.json new file mode 100644 index 00000000000..0204357c5ca --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-10-4g-standard-edition-global-dual-sim-td-lte-64gb-m2101k7ag/index.json @@ -0,0 +1,76 @@ +{ + "id": 6187, + "slug": "redmi-note-10-4g-standard-edition-global-dual-sim-td-lte-64gb-m2101k7ag", + "name": "Redmi Note 10 4G Standard Edition Global Dual SIM TD-LTE 64GB M2101K7AG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 142, + "slug": "snapdragon-678", + "name": "Snapdragon 678", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-678" + }, + "release_date": "2021-03-08", + "msrp_usd": 180, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 178.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 0.0, + "camera": 16.5, + "battery": 33.4, + "display": 45.9, + "value": 62.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.980296", + "updated_at": "2026-06-19T00:43:44.980296" +} diff --git a/site/public/v1/smartphones/redmi-note-10-4g-standard-edition-global-dual-sim-td-lte-64gb-m2101k7ag/score/index.json b/site/public/v1/smartphones/redmi-note-10-4g-standard-edition-global-dual-sim-td-lte-64gb-m2101k7ag/score/index.json new file mode 100644 index 00000000000..6d63dae0f2a --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-10-4g-standard-edition-global-dual-sim-td-lte-64gb-m2101k7ag/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 0.0, + "camera": 16.5, + "battery": 33.4, + "display": 45.9, + "value": 62.0 +} diff --git a/site/public/v1/smartphones/redmi-note-10-5g-premium-edition-global-dual-sim-td-lte-128gb-m2103k19g/index.json b/site/public/v1/smartphones/redmi-note-10-5g-premium-edition-global-dual-sim-td-lte-128gb-m2103k19g/index.json new file mode 100644 index 00000000000..1f4c666f5f6 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-10-5g-premium-edition-global-dual-sim-td-lte-128gb-m2103k19g/index.json @@ -0,0 +1,77 @@ +{ + "id": 6188, + "slug": "redmi-note-10-5g-premium-edition-global-dual-sim-td-lte-128gb-m2103k19g", + "name": "Redmi Note 10 5G Premium Edition Global Dual SIM TD-LTE 128GB M2103K19G", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.980296", + "updated_at": "2026-06-19T00:43:44.980296" +} diff --git a/site/public/v1/smartphones/redmi-note-10-5g-premium-edition-global-dual-sim-td-lte-128gb-m2103k19g/score/index.json b/site/public/v1/smartphones/redmi-note-10-5g-premium-edition-global-dual-sim-td-lte-128gb-m2103k19g/score/index.json new file mode 100644 index 00000000000..885ce1795be --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-10-5g-premium-edition-global-dual-sim-td-lte-128gb-m2103k19g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-10-5g-standard-edition-global-dual-sim-td-lte-128gb-m2103k19g/index.json b/site/public/v1/smartphones/redmi-note-10-5g-standard-edition-global-dual-sim-td-lte-128gb-m2103k19g/index.json new file mode 100644 index 00000000000..5bcf4894148 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-10-5g-standard-edition-global-dual-sim-td-lte-128gb-m2103k19g/index.json @@ -0,0 +1,77 @@ +{ + "id": 6189, + "slug": "redmi-note-10-5g-standard-edition-global-dual-sim-td-lte-128gb-m2103k19g", + "name": "Redmi Note 10 5G Standard Edition Global Dual SIM TD-LTE 128GB M2103K19G", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-04-01", + "msrp_usd": 229, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": 61.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.980296", + "updated_at": "2026-06-19T00:43:44.980296" +} diff --git a/site/public/v1/smartphones/redmi-note-10-5g-standard-edition-global-dual-sim-td-lte-128gb-m2103k19g/score/index.json b/site/public/v1/smartphones/redmi-note-10-5g-standard-edition-global-dual-sim-td-lte-128gb-m2103k19g/score/index.json new file mode 100644 index 00000000000..c543a54fd5c --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-10-5g-standard-edition-global-dual-sim-td-lte-128gb-m2103k19g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": 61.0 +} diff --git a/site/public/v1/smartphones/redmi-note-10-5g-standard-edition-global-dual-sim-td-lte-64gb-m2103k19g/index.json b/site/public/v1/smartphones/redmi-note-10-5g-standard-edition-global-dual-sim-td-lte-64gb-m2103k19g/index.json new file mode 100644 index 00000000000..1192989d711 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-10-5g-standard-edition-global-dual-sim-td-lte-64gb-m2103k19g/index.json @@ -0,0 +1,77 @@ +{ + "id": 6190, + "slug": "redmi-note-10-5g-standard-edition-global-dual-sim-td-lte-64gb-m2103k19g", + "name": "Redmi Note 10 5G Standard Edition Global Dual SIM TD-LTE 64GB M2103K19G", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-04-01", + "msrp_usd": 199, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": 61.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.981820", + "updated_at": "2026-06-19T00:43:44.981820" +} diff --git a/site/public/v1/smartphones/redmi-note-10-5g-standard-edition-global-dual-sim-td-lte-64gb-m2103k19g/score/index.json b/site/public/v1/smartphones/redmi-note-10-5g-standard-edition-global-dual-sim-td-lte-64gb-m2103k19g/score/index.json new file mode 100644 index 00000000000..c543a54fd5c --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-10-5g-standard-edition-global-dual-sim-td-lte-64gb-m2103k19g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": 61.0 +} diff --git a/site/public/v1/smartphones/redmi-note-10-je-xig02-td-lte-jp-64gb/index.json b/site/public/v1/smartphones/redmi-note-10-je-xig02-td-lte-jp-64gb/index.json new file mode 100644 index 00000000000..b829dff6ff4 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-10-je-xig02-td-lte-jp-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 6191, + "slug": "redmi-note-10-je-xig02-td-lte-jp-64gb", + "name": "Redmi Note 10 JE XIG02 TD-LTE JP 64GB", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-08-13", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4800, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 0.0, + "camera": 16.5, + "battery": 27.6, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.981820", + "updated_at": "2026-06-19T00:43:44.981820" +} diff --git a/site/public/v1/smartphones/redmi-note-10-je-xig02-td-lte-jp-64gb/score/index.json b/site/public/v1/smartphones/redmi-note-10-je-xig02-td-lte-jp-64gb/score/index.json new file mode 100644 index 00000000000..ad74a907624 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-10-je-xig02-td-lte-jp-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 0.0, + "camera": 16.5, + "battery": 27.6, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-10s-premium-edition-global-dual-sim-td-lte-128gb-m2101k7bg/index.json b/site/public/v1/smartphones/redmi-note-10s-premium-edition-global-dual-sim-td-lte-128gb-m2101k7bg/index.json new file mode 100644 index 00000000000..73710f59f29 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-10s-premium-edition-global-dual-sim-td-lte-128gb-m2101k7bg/index.json @@ -0,0 +1,76 @@ +{ + "id": 6200, + "slug": "redmi-note-10s-premium-edition-global-dual-sim-td-lte-128gb-m2101k7bg", + "name": "Redmi Note 10S Premium Edition Global Dual SIM TD-LTE 128GB M2101K7BG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 64, + "slug": "helio-g95", + "name": "Helio G95", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 3EEMC4", + "url": "/v1/socs/helio-g95" + }, + "release_date": "2021-04-27", + "msrp_usd": 279, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 178.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.0, + "performance": 3.0, + "camera": 21.7, + "battery": 33.4, + "display": 45.9, + "value": 63.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.982825", + "updated_at": "2026-06-19T00:43:44.982825" +} diff --git a/site/public/v1/smartphones/redmi-note-10s-premium-edition-global-dual-sim-td-lte-128gb-m2101k7bg/score/index.json b/site/public/v1/smartphones/redmi-note-10s-premium-edition-global-dual-sim-td-lte-128gb-m2101k7bg/score/index.json new file mode 100644 index 00000000000..fad514574f7 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-10s-premium-edition-global-dual-sim-td-lte-128gb-m2101k7bg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.0, + "performance": 3.0, + "camera": 21.7, + "battery": 33.4, + "display": 45.9, + "value": 63.0 +} diff --git a/site/public/v1/smartphones/redmi-note-10s-standard-edition-global-dual-sim-td-lte-128gb-m2101k7bg/index.json b/site/public/v1/smartphones/redmi-note-10s-standard-edition-global-dual-sim-td-lte-128gb-m2101k7bg/index.json new file mode 100644 index 00000000000..a260df0af91 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-10s-standard-edition-global-dual-sim-td-lte-128gb-m2101k7bg/index.json @@ -0,0 +1,76 @@ +{ + "id": 6202, + "slug": "redmi-note-10s-standard-edition-global-dual-sim-td-lte-128gb-m2101k7bg", + "name": "Redmi Note 10S Standard Edition Global Dual SIM TD-LTE 128GB M2101K7BG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 64, + "slug": "helio-g95", + "name": "Helio G95", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 3EEMC4", + "url": "/v1/socs/helio-g95" + }, + "release_date": "2021-04-27", + "msrp_usd": 249, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 178.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 1.5, + "camera": 21.7, + "battery": 33.4, + "display": 45.9, + "value": 62.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.982825", + "updated_at": "2026-06-19T00:43:44.982825" +} diff --git a/site/public/v1/smartphones/redmi-note-10s-standard-edition-global-dual-sim-td-lte-128gb-m2101k7bg/score/index.json b/site/public/v1/smartphones/redmi-note-10s-standard-edition-global-dual-sim-td-lte-128gb-m2101k7bg/score/index.json new file mode 100644 index 00000000000..99c742ba7a1 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-10s-standard-edition-global-dual-sim-td-lte-128gb-m2101k7bg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 1.5, + "camera": 21.7, + "battery": 33.4, + "display": 45.9, + "value": 62.8 +} diff --git a/site/public/v1/smartphones/redmi-note-10s-standard-edition-global-dual-sim-td-lte-64gb-m2101k7bg/index.json b/site/public/v1/smartphones/redmi-note-10s-standard-edition-global-dual-sim-td-lte-64gb-m2101k7bg/index.json new file mode 100644 index 00000000000..61285e13283 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-10s-standard-edition-global-dual-sim-td-lte-64gb-m2101k7bg/index.json @@ -0,0 +1,76 @@ +{ + "id": 6203, + "slug": "redmi-note-10s-standard-edition-global-dual-sim-td-lte-64gb-m2101k7bg", + "name": "Redmi Note 10S Standard Edition Global Dual SIM TD-LTE 64GB M2101K7BG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 64, + "slug": "helio-g95", + "name": "Helio G95", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 3EEMC4", + "url": "/v1/socs/helio-g95" + }, + "release_date": "2021-04-27", + "msrp_usd": 229, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 178.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 1.5, + "camera": 21.7, + "battery": 33.4, + "display": 45.9, + "value": 62.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.982825", + "updated_at": "2026-06-19T00:43:44.982825" +} diff --git a/site/public/v1/smartphones/redmi-note-10s-standard-edition-global-dual-sim-td-lte-64gb-m2101k7bg/score/index.json b/site/public/v1/smartphones/redmi-note-10s-standard-edition-global-dual-sim-td-lte-64gb-m2101k7bg/score/index.json new file mode 100644 index 00000000000..99c742ba7a1 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-10s-standard-edition-global-dual-sim-td-lte-64gb-m2101k7bg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 1.5, + "camera": 21.7, + "battery": 33.4, + "display": 45.9, + "value": 62.8 +} diff --git a/site/public/v1/smartphones/redmi-note-10t-5g-premium-edition-dual-sim-td-lte-in-128gb-m2103k19i/index.json b/site/public/v1/smartphones/redmi-note-10t-5g-premium-edition-dual-sim-td-lte-in-128gb-m2103k19i/index.json new file mode 100644 index 00000000000..118910c4e76 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-10t-5g-premium-edition-dual-sim-td-lte-in-128gb-m2103k19i/index.json @@ -0,0 +1,77 @@ +{ + "id": 6205, + "slug": "redmi-note-10t-5g-premium-edition-dual-sim-td-lte-in-128gb-m2103k19i", + "name": "Redmi Note 10T 5G Premium Edition Dual SIM TD-LTE IN 128GB M2103K19I", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-07-23", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.982825", + "updated_at": "2026-06-19T00:43:44.982825" +} diff --git a/site/public/v1/smartphones/redmi-note-10t-5g-premium-edition-dual-sim-td-lte-in-128gb-m2103k19i/score/index.json b/site/public/v1/smartphones/redmi-note-10t-5g-premium-edition-dual-sim-td-lte-in-128gb-m2103k19i/score/index.json new file mode 100644 index 00000000000..885ce1795be --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-10t-5g-premium-edition-dual-sim-td-lte-in-128gb-m2103k19i/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-10t-5g-standard-edition-dual-sim-td-lte-in-64gb-m2103k19i/index.json b/site/public/v1/smartphones/redmi-note-10t-5g-standard-edition-dual-sim-td-lte-in-64gb-m2103k19i/index.json new file mode 100644 index 00000000000..b15fa280671 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-10t-5g-standard-edition-dual-sim-td-lte-in-64gb-m2103k19i/index.json @@ -0,0 +1,77 @@ +{ + "id": 6206, + "slug": "redmi-note-10t-5g-standard-edition-dual-sim-td-lte-in-64gb-m2103k19i", + "name": "Redmi Note 10T 5G Standard Edition Dual SIM TD-LTE IN 64GB M2103K19I", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-07-23", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.983826", + "updated_at": "2026-06-19T00:43:44.983826" +} diff --git a/site/public/v1/smartphones/redmi-note-10t-5g-standard-edition-dual-sim-td-lte-in-64gb-m2103k19i/score/index.json b/site/public/v1/smartphones/redmi-note-10t-5g-standard-edition-dual-sim-td-lte-in-64gb-m2103k19i/score/index.json new file mode 100644 index 00000000000..158756846a2 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-10t-5g-standard-edition-dual-sim-td-lte-in-64gb-m2103k19i/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-11-4g-premium-edition-dual-sim-td-lte-cn-128gb-21121119sc/index.json b/site/public/v1/smartphones/redmi-note-11-4g-premium-edition-dual-sim-td-lte-cn-128gb-21121119sc/index.json new file mode 100644 index 00000000000..fdc062bd97a --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-4g-premium-edition-dual-sim-td-lte-cn-128gb-21121119sc/index.json @@ -0,0 +1,77 @@ +{ + "id": 6208, + "slug": "redmi-note-11-4g-premium-edition-dual-sim-td-lte-cn-128gb-21121119sc", + "name": "Redmi Note 11 4G Premium Edition Dual SIM TD-LTE CN 128GB 21121119SC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 73, + "slug": "helio-g88", + "name": "MediaTek Helio G88", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g88" + }, + "release_date": "2021-12-01", + "msrp_usd": 1099, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.4, + "performance": 1.5, + "camera": 17.2, + "battery": 30.6, + "display": 40.5, + "value": 30.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.983826", + "updated_at": "2026-06-19T00:43:44.983826" +} diff --git a/site/public/v1/smartphones/redmi-note-11-4g-premium-edition-dual-sim-td-lte-cn-128gb-21121119sc/score/index.json b/site/public/v1/smartphones/redmi-note-11-4g-premium-edition-dual-sim-td-lte-cn-128gb-21121119sc/score/index.json new file mode 100644 index 00000000000..dbb48738d40 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-4g-premium-edition-dual-sim-td-lte-cn-128gb-21121119sc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.4, + "performance": 1.5, + "camera": 17.2, + "battery": 30.6, + "display": 40.5, + "value": 30.4 +} diff --git a/site/public/v1/smartphones/redmi-note-11-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117ti/index.json b/site/public/v1/smartphones/redmi-note-11-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117ti/index.json new file mode 100644 index 00000000000..070feb79688 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117ti/index.json @@ -0,0 +1,77 @@ +{ + "id": 6280, + "slug": "redmi-note-11-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117ti", + "name": "Redmi Note 11 4G Premium Edition Dual SIM TD-LTE IN 128GB 2201117TI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 152, + "slug": "snapdragon-680", + "name": "Snapdragon 680 4G", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 6.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-680" + }, + "release_date": "2022-03-09", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 1.5, + "camera": 17.2, + "battery": 38.4, + "display": 40.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.991824", + "updated_at": "2026-06-19T00:43:44.991824" +} diff --git a/site/public/v1/smartphones/redmi-note-11-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117ti/score/index.json b/site/public/v1/smartphones/redmi-note-11-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117ti/score/index.json new file mode 100644 index 00000000000..58512e9e8ed --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117ti/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 1.5, + "camera": 17.2, + "battery": 38.4, + "display": 40.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-11-4g-premium-edition-dual-sim-td-lte-in-64gb-2201117ti/index.json b/site/public/v1/smartphones/redmi-note-11-4g-premium-edition-dual-sim-td-lte-in-64gb-2201117ti/index.json new file mode 100644 index 00000000000..88073226680 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-4g-premium-edition-dual-sim-td-lte-in-64gb-2201117ti/index.json @@ -0,0 +1,77 @@ +{ + "id": 6281, + "slug": "redmi-note-11-4g-premium-edition-dual-sim-td-lte-in-64gb-2201117ti", + "name": "Redmi Note 11 4G Premium Edition Dual SIM TD-LTE IN 64GB 2201117TI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 152, + "slug": "snapdragon-680", + "name": "Snapdragon 680 4G", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 6.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-680" + }, + "release_date": "2022-03-09", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 1.5, + "camera": 17.2, + "battery": 38.4, + "display": 40.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.991824", + "updated_at": "2026-06-19T00:43:44.991824" +} diff --git a/site/public/v1/smartphones/redmi-note-11-4g-premium-edition-dual-sim-td-lte-in-64gb-2201117ti/score/index.json b/site/public/v1/smartphones/redmi-note-11-4g-premium-edition-dual-sim-td-lte-in-64gb-2201117ti/score/index.json new file mode 100644 index 00000000000..58512e9e8ed --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-4g-premium-edition-dual-sim-td-lte-in-64gb-2201117ti/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 1.5, + "camera": 17.2, + "battery": 38.4, + "display": 40.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-11-4g-premium-edition-global-dual-sim-td-lte-128gb-2201117tg/index.json b/site/public/v1/smartphones/redmi-note-11-4g-premium-edition-global-dual-sim-td-lte-128gb-2201117tg/index.json new file mode 100644 index 00000000000..95fa9743bb2 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-4g-premium-edition-global-dual-sim-td-lte-128gb-2201117tg/index.json @@ -0,0 +1,77 @@ +{ + "id": 6282, + "slug": "redmi-note-11-4g-premium-edition-global-dual-sim-td-lte-128gb-2201117tg", + "name": "Redmi Note 11 4G Premium Edition Global Dual SIM TD-LTE 128GB 2201117TG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 152, + "slug": "snapdragon-680", + "name": "Snapdragon 680 4G", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 6.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-680" + }, + "release_date": "2022-02-09", + "msrp_usd": 229, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 1.5, + "camera": 17.2, + "battery": 38.4, + "display": 40.9, + "value": 62.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.991824", + "updated_at": "2026-06-19T00:43:44.991824" +} diff --git a/site/public/v1/smartphones/redmi-note-11-4g-premium-edition-global-dual-sim-td-lte-128gb-2201117tg/score/index.json b/site/public/v1/smartphones/redmi-note-11-4g-premium-edition-global-dual-sim-td-lte-128gb-2201117tg/score/index.json new file mode 100644 index 00000000000..152e720d0b3 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-4g-premium-edition-global-dual-sim-td-lte-128gb-2201117tg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.5, + "performance": 1.5, + "camera": 17.2, + "battery": 38.4, + "display": 40.9, + "value": 62.2 +} diff --git a/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-dual-sim-td-lte-cn-128gb-21121119sc/index.json b/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-dual-sim-td-lte-cn-128gb-21121119sc/index.json new file mode 100644 index 00000000000..f87a78fec59 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-dual-sim-td-lte-cn-128gb-21121119sc/index.json @@ -0,0 +1,77 @@ +{ + "id": 6209, + "slug": "redmi-note-11-4g-standard-edition-dual-sim-td-lte-cn-128gb-21121119sc", + "name": "Redmi Note 11 4G Standard Edition Dual SIM TD-LTE CN 128GB 21121119SC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 73, + "slug": "helio-g88", + "name": "MediaTek Helio G88", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g88" + }, + "release_date": "2021-12-01", + "msrp_usd": 999, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 0.0, + "camera": 17.2, + "battery": 30.6, + "display": 40.5, + "value": 34.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.983826", + "updated_at": "2026-06-19T00:43:44.983826" +} diff --git a/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-dual-sim-td-lte-cn-128gb-21121119sc/score/index.json b/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-dual-sim-td-lte-cn-128gb-21121119sc/score/index.json new file mode 100644 index 00000000000..db0eebff54d --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-dual-sim-td-lte-cn-128gb-21121119sc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 0.0, + "camera": 17.2, + "battery": 30.6, + "display": 40.5, + "value": 34.2 +} diff --git a/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117ti/index.json b/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117ti/index.json new file mode 100644 index 00000000000..5b80fd90e94 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117ti/index.json @@ -0,0 +1,77 @@ +{ + "id": 6283, + "slug": "redmi-note-11-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117ti", + "name": "Redmi Note 11 4G Standard Edition Dual SIM TD-LTE IN 64GB 2201117TI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 152, + "slug": "snapdragon-680", + "name": "Snapdragon 680 4G", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 6.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-680" + }, + "release_date": "2022-03-09", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 0.0, + "camera": 17.2, + "battery": 38.4, + "display": 40.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.992824", + "updated_at": "2026-06-19T00:43:44.992824" +} diff --git a/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117ti/score/index.json b/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117ti/score/index.json new file mode 100644 index 00000000000..676e52b51be --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117ti/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 0.0, + "camera": 17.2, + "battery": 38.4, + "display": 40.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-dual-sim-td-lte-latam-jp-64gb-2201117tl/index.json b/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-dual-sim-td-lte-latam-jp-64gb-2201117tl/index.json new file mode 100644 index 00000000000..9bd15afcbac --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-dual-sim-td-lte-latam-jp-64gb-2201117tl/index.json @@ -0,0 +1,77 @@ +{ + "id": 6284, + "slug": "redmi-note-11-4g-standard-edition-dual-sim-td-lte-latam-jp-64gb-2201117tl", + "name": "Redmi Note 11 4G Standard Edition Dual SIM TD-LTE LATAM JP 64GB 2201117TL", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 152, + "slug": "snapdragon-680", + "name": "Snapdragon 680 4G", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 6.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-680" + }, + "release_date": "2022-03-09", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 0.0, + "camera": 17.2, + "battery": 38.4, + "display": 40.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.992824", + "updated_at": "2026-06-19T00:43:44.992824" +} diff --git a/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-dual-sim-td-lte-latam-jp-64gb-2201117tl/score/index.json b/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-dual-sim-td-lte-latam-jp-64gb-2201117tl/score/index.json new file mode 100644 index 00000000000..676e52b51be --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-dual-sim-td-lte-latam-jp-64gb-2201117tl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 0.0, + "camera": 17.2, + "battery": 38.4, + "display": 40.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117tg/index.json b/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117tg/index.json new file mode 100644 index 00000000000..831d51e9c44 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117tg/index.json @@ -0,0 +1,77 @@ +{ + "id": 6285, + "slug": "redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117tg", + "name": "Redmi Note 11 4G Standard Edition Global Dual SIM TD-LTE 128GB 2201117TG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 152, + "slug": "snapdragon-680", + "name": "Snapdragon 680 4G", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 6.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-680" + }, + "release_date": "2022-02-09", + "msrp_usd": 230, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 0.0, + "camera": 17.2, + "battery": 38.4, + "display": 40.9, + "value": 62.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.992824", + "updated_at": "2026-06-19T00:43:44.992824" +} diff --git a/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117tg/score/index.json b/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117tg/score/index.json new file mode 100644 index 00000000000..ebfcbc104fd --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117tg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 0.0, + "camera": 17.2, + "battery": 38.4, + "display": 40.9, + "value": 62.0 +} diff --git a/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117ty/index.json b/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117ty/index.json new file mode 100644 index 00000000000..f80777a76a0 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117ty/index.json @@ -0,0 +1,77 @@ +{ + "id": 6286, + "slug": "redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117ty", + "name": "Redmi Note 11 4G Standard Edition Global Dual SIM TD-LTE 128GB 2201117TY", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 152, + "slug": "snapdragon-680", + "name": "Snapdragon 680 4G", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 6.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-680" + }, + "release_date": "2022-02-09", + "msrp_usd": 230, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 0.0, + "camera": 17.2, + "battery": 38.4, + "display": 40.9, + "value": 62.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.992824", + "updated_at": "2026-06-19T00:43:44.992824" +} diff --git a/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117ty/score/index.json b/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117ty/score/index.json new file mode 100644 index 00000000000..ebfcbc104fd --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117ty/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 0.0, + "camera": 17.2, + "battery": 38.4, + "display": 40.9, + "value": 62.0 +} diff --git a/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-64gb-2201117ty/index.json b/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-64gb-2201117ty/index.json new file mode 100644 index 00000000000..0f3a611df90 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-64gb-2201117ty/index.json @@ -0,0 +1,77 @@ +{ + "id": 6287, + "slug": "redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-64gb-2201117ty", + "name": "Redmi Note 11 4G Standard Edition Global Dual SIM TD-LTE 64GB 2201117TY", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 152, + "slug": "snapdragon-680", + "name": "Snapdragon 680 4G", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 6.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-680" + }, + "release_date": "2022-02-09", + "msrp_usd": 199, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 0.0, + "camera": 17.2, + "battery": 38.4, + "display": 40.9, + "value": 62.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.992824", + "updated_at": "2026-06-19T00:43:44.992824" +} diff --git a/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-64gb-2201117ty/score/index.json b/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-64gb-2201117ty/score/index.json new file mode 100644 index 00000000000..ebfcbc104fd --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-4g-standard-edition-global-dual-sim-td-lte-64gb-2201117ty/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 0.0, + "camera": 17.2, + "battery": 38.4, + "display": 40.9, + "value": 62.0 +} diff --git a/site/public/v1/smartphones/redmi-note-11-5g-premium-edition-dual-sim-td-lte-cn-128gb-21091116ac/index.json b/site/public/v1/smartphones/redmi-note-11-5g-premium-edition-dual-sim-td-lte-cn-128gb-21091116ac/index.json new file mode 100644 index 00000000000..3292d9043e2 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-5g-premium-edition-dual-sim-td-lte-cn-128gb-21091116ac/index.json @@ -0,0 +1,77 @@ +{ + "id": 6210, + "slug": "redmi-note-11-5g-premium-edition-dual-sim-td-lte-cn-128gb-21091116ac", + "name": "Redmi Note 11 5G Premium Edition Dual SIM TD-LTE CN 128GB 21091116AC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 68, + "slug": "dimensity-810", + "name": "Dimensity 810", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-810" + }, + "release_date": "2021-11-01", + "msrp_usd": 1299, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 1.5, + "camera": 17.2, + "battery": 38.4, + "display": 39.9, + "value": 23.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.983826", + "updated_at": "2026-06-19T00:43:44.983826" +} diff --git a/site/public/v1/smartphones/redmi-note-11-5g-premium-edition-dual-sim-td-lte-cn-128gb-21091116ac/score/index.json b/site/public/v1/smartphones/redmi-note-11-5g-premium-edition-dual-sim-td-lte-cn-128gb-21091116ac/score/index.json new file mode 100644 index 00000000000..c65b61fa847 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-5g-premium-edition-dual-sim-td-lte-cn-128gb-21091116ac/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 1.5, + "camera": 17.2, + "battery": 38.4, + "display": 39.9, + "value": 23.7 +} diff --git a/site/public/v1/smartphones/redmi-note-11-5g-standard-edition-dual-sim-td-lte-cn-128gb-21091116ac/index.json b/site/public/v1/smartphones/redmi-note-11-5g-standard-edition-dual-sim-td-lte-cn-128gb-21091116ac/index.json new file mode 100644 index 00000000000..8fbff61dffb --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-5g-standard-edition-dual-sim-td-lte-cn-128gb-21091116ac/index.json @@ -0,0 +1,77 @@ +{ + "id": 6211, + "slug": "redmi-note-11-5g-standard-edition-dual-sim-td-lte-cn-128gb-21091116ac", + "name": "Redmi Note 11 5G Standard Edition Dual SIM TD-LTE CN 128GB 21091116AC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 68, + "slug": "dimensity-810", + "name": "Dimensity 810", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-810" + }, + "release_date": "2021-11-02", + "msrp_usd": 1199, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 0.0, + "camera": 17.2, + "battery": 38.4, + "display": 39.9, + "value": 27.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.983826", + "updated_at": "2026-06-19T00:43:44.983826" +} diff --git a/site/public/v1/smartphones/redmi-note-11-5g-standard-edition-dual-sim-td-lte-cn-128gb-21091116ac/score/index.json b/site/public/v1/smartphones/redmi-note-11-5g-standard-edition-dual-sim-td-lte-cn-128gb-21091116ac/score/index.json new file mode 100644 index 00000000000..971b3b7259d --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-5g-standard-edition-dual-sim-td-lte-cn-128gb-21091116ac/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 0.0, + "camera": 17.2, + "battery": 38.4, + "display": 39.9, + "value": 27.4 +} diff --git a/site/public/v1/smartphones/redmi-note-11-5g-top-edition-dual-sim-td-lte-cn-128gb-21091116ac/index.json b/site/public/v1/smartphones/redmi-note-11-5g-top-edition-dual-sim-td-lte-cn-128gb-21091116ac/index.json new file mode 100644 index 00000000000..6963e998c57 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-5g-top-edition-dual-sim-td-lte-cn-128gb-21091116ac/index.json @@ -0,0 +1,77 @@ +{ + "id": 6212, + "slug": "redmi-note-11-5g-top-edition-dual-sim-td-lte-cn-128gb-21091116ac", + "name": "Redmi Note 11 5G Top Edition Dual SIM TD-LTE CN 128GB 21091116AC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 68, + "slug": "dimensity-810", + "name": "Dimensity 810", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-810" + }, + "release_date": "2021-11-01", + "msrp_usd": 1499, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 3.0, + "camera": 17.2, + "battery": 38.4, + "display": 39.9, + "value": 16.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.983826", + "updated_at": "2026-06-19T00:43:44.983826" +} diff --git a/site/public/v1/smartphones/redmi-note-11-5g-top-edition-dual-sim-td-lte-cn-128gb-21091116ac/score/index.json b/site/public/v1/smartphones/redmi-note-11-5g-top-edition-dual-sim-td-lte-cn-128gb-21091116ac/score/index.json new file mode 100644 index 00000000000..8549011b2b1 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-5g-top-edition-dual-sim-td-lte-cn-128gb-21091116ac/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 3.0, + "camera": 17.2, + "battery": 38.4, + "display": 39.9, + "value": 16.2 +} diff --git a/site/public/v1/smartphones/redmi-note-11-5g-top-edition-dual-sim-td-lte-cn-256gb-21091116ac/index.json b/site/public/v1/smartphones/redmi-note-11-5g-top-edition-dual-sim-td-lte-cn-256gb-21091116ac/index.json new file mode 100644 index 00000000000..fe9e210355e --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-5g-top-edition-dual-sim-td-lte-cn-256gb-21091116ac/index.json @@ -0,0 +1,77 @@ +{ + "id": 6213, + "slug": "redmi-note-11-5g-top-edition-dual-sim-td-lte-cn-256gb-21091116ac", + "name": "Redmi Note 11 5G Top Edition Dual SIM TD-LTE CN 256GB 21091116AC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 68, + "slug": "dimensity-810", + "name": "Dimensity 810", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-810" + }, + "release_date": "2021-11-01", + "msrp_usd": 1699, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 3.0, + "camera": 17.2, + "battery": 38.4, + "display": 39.9, + "value": 12.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.983826", + "updated_at": "2026-06-19T00:43:44.983826" +} diff --git a/site/public/v1/smartphones/redmi-note-11-5g-top-edition-dual-sim-td-lte-cn-256gb-21091116ac/score/index.json b/site/public/v1/smartphones/redmi-note-11-5g-top-edition-dual-sim-td-lte-cn-256gb-21091116ac/score/index.json new file mode 100644 index 00000000000..528e9c501c2 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-5g-top-edition-dual-sim-td-lte-cn-256gb-21091116ac/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 3.0, + "camera": 17.2, + "battery": 38.4, + "display": 39.9, + "value": 12.3 +} diff --git a/site/public/v1/smartphones/redmi-note-11-pro-4g-premium-edition-global-dual-sim-td-lte-128gb-2201116tg/index.json b/site/public/v1/smartphones/redmi-note-11-pro-4g-premium-edition-global-dual-sim-td-lte-128gb-2201116tg/index.json new file mode 100644 index 00000000000..0a6fe42c49f --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-pro-4g-premium-edition-global-dual-sim-td-lte-128gb-2201116tg/index.json @@ -0,0 +1,77 @@ +{ + "id": 6288, + "slug": "redmi-note-11-pro-4g-premium-edition-global-dual-sim-td-lte-128gb-2201116tg", + "name": "Redmi Note 11 Pro 4G Premium Edition Global Dual SIM TD-LTE 128GB 2201116TG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 74, + "slug": "helio-g96", + "name": "Helio G96", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali G57 MC2", + "url": "/v1/socs/helio-g96" + }, + "release_date": "2022-02-19", + "msrp_usd": 1099, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 67.0, + "charging_wireless_w": null, + "weight_g": 202.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 3.0, + "camera": 35.7, + "battery": 39.9, + "display": 52.0, + "value": 35.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.992824", + "updated_at": "2026-06-19T00:43:44.992824" +} diff --git a/site/public/v1/smartphones/redmi-note-11-pro-4g-premium-edition-global-dual-sim-td-lte-128gb-2201116tg/score/index.json b/site/public/v1/smartphones/redmi-note-11-pro-4g-premium-edition-global-dual-sim-td-lte-128gb-2201116tg/score/index.json new file mode 100644 index 00000000000..e038cd2e101 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-pro-4g-premium-edition-global-dual-sim-td-lte-128gb-2201116tg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 3.0, + "camera": 35.7, + "battery": 39.9, + "display": 52.0, + "value": 35.5 +} diff --git a/site/public/v1/smartphones/redmi-note-11-pro-4g-standard-edition-global-dual-sim-td-lte-128gb-2201116tg/index.json b/site/public/v1/smartphones/redmi-note-11-pro-4g-standard-edition-global-dual-sim-td-lte-128gb-2201116tg/index.json new file mode 100644 index 00000000000..b83fb0eaa7e --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-pro-4g-standard-edition-global-dual-sim-td-lte-128gb-2201116tg/index.json @@ -0,0 +1,77 @@ +{ + "id": 6289, + "slug": "redmi-note-11-pro-4g-standard-edition-global-dual-sim-td-lte-128gb-2201116tg", + "name": "Redmi Note 11 Pro 4G Standard Edition Global Dual SIM TD-LTE 128GB 2201116TG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 74, + "slug": "helio-g96", + "name": "Helio G96", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali G57 MC2", + "url": "/v1/socs/helio-g96" + }, + "release_date": "2022-02-19", + "msrp_usd": 999, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 67.0, + "charging_wireless_w": null, + "weight_g": 202.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 1.5, + "camera": 35.7, + "battery": 39.9, + "display": 52.0, + "value": 39.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.992824", + "updated_at": "2026-06-19T00:43:44.992824" +} diff --git a/site/public/v1/smartphones/redmi-note-11-pro-4g-standard-edition-global-dual-sim-td-lte-128gb-2201116tg/score/index.json b/site/public/v1/smartphones/redmi-note-11-pro-4g-standard-edition-global-dual-sim-td-lte-128gb-2201116tg/score/index.json new file mode 100644 index 00000000000..ad2fac6dcd1 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-pro-4g-standard-edition-global-dual-sim-td-lte-128gb-2201116tg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 1.5, + "camera": 35.7, + "battery": 39.9, + "display": 52.0, + "value": 39.2 +} diff --git a/site/public/v1/smartphones/redmi-note-11-pro-4g-standard-edition-global-dual-sim-td-lte-64gb-2201116tg/index.json b/site/public/v1/smartphones/redmi-note-11-pro-4g-standard-edition-global-dual-sim-td-lte-64gb-2201116tg/index.json new file mode 100644 index 00000000000..cebad9a4676 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-pro-4g-standard-edition-global-dual-sim-td-lte-64gb-2201116tg/index.json @@ -0,0 +1,77 @@ +{ + "id": 6290, + "slug": "redmi-note-11-pro-4g-standard-edition-global-dual-sim-td-lte-64gb-2201116tg", + "name": "Redmi Note 11 Pro 4G Standard Edition Global Dual SIM TD-LTE 64GB 2201116TG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 74, + "slug": "helio-g96", + "name": "Helio G96", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali G57 MC2", + "url": "/v1/socs/helio-g96" + }, + "release_date": "2022-02-19", + "msrp_usd": 299, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 67.0, + "charging_wireless_w": null, + "weight_g": 202.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 1.5, + "camera": 35.7, + "battery": 39.9, + "display": 52.0, + "value": 66.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.992824", + "updated_at": "2026-06-19T00:43:44.992824" +} diff --git a/site/public/v1/smartphones/redmi-note-11-pro-4g-standard-edition-global-dual-sim-td-lte-64gb-2201116tg/score/index.json b/site/public/v1/smartphones/redmi-note-11-pro-4g-standard-edition-global-dual-sim-td-lte-64gb-2201116tg/score/index.json new file mode 100644 index 00000000000..b6d2d532b8a --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-pro-4g-standard-edition-global-dual-sim-td-lte-64gb-2201116tg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.3, + "performance": 1.5, + "camera": 35.7, + "battery": 39.9, + "display": 52.0, + "value": 66.2 +} diff --git a/site/public/v1/smartphones/redmi-note-11-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-2201116si/index.json b/site/public/v1/smartphones/redmi-note-11-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-2201116si/index.json new file mode 100644 index 00000000000..a57b0a224e9 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-2201116si/index.json @@ -0,0 +1,77 @@ +{ + "id": 6291, + "slug": "redmi-note-11-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-2201116si", + "name": "Redmi Note 11 Pro+ 5G Premium Edition Dual SIM TD-LTE IN 128GB 2201116SI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 153, + "slug": "snapdragon-695", + "name": "Snapdragon 695 5G", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 6.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-695" + }, + "release_date": "2022-03-08", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 67.0, + "charging_wireless_w": null, + "weight_g": 202.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.9, + "performance": 3.0, + "camera": 35.7, + "battery": 44.9, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.992824", + "updated_at": "2026-06-19T00:43:44.992824" +} diff --git a/site/public/v1/smartphones/redmi-note-11-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-2201116si/score/index.json b/site/public/v1/smartphones/redmi-note-11-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-2201116si/score/index.json new file mode 100644 index 00000000000..2d5149c38e5 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-pro-5g-premium-edition-dual-sim-td-lte-in-128gb-2201116si/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.9, + "performance": 3.0, + "camera": 35.7, + "battery": 44.9, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-11-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-2201116si/index.json b/site/public/v1/smartphones/redmi-note-11-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-2201116si/index.json new file mode 100644 index 00000000000..c670156dd2b --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-2201116si/index.json @@ -0,0 +1,77 @@ +{ + "id": 6292, + "slug": "redmi-note-11-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-2201116si", + "name": "Redmi Note 11 Pro+ 5G Premium Edition Dual SIM TD-LTE IN 256GB 2201116SI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 153, + "slug": "snapdragon-695", + "name": "Snapdragon 695 5G", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 6.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-695" + }, + "release_date": "2022-03-08", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 67.0, + "charging_wireless_w": null, + "weight_g": 202.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.9, + "performance": 3.0, + "camera": 35.7, + "battery": 44.9, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.993824", + "updated_at": "2026-06-19T00:43:44.993824" +} diff --git a/site/public/v1/smartphones/redmi-note-11-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-2201116si/score/index.json b/site/public/v1/smartphones/redmi-note-11-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-2201116si/score/index.json new file mode 100644 index 00000000000..2d5149c38e5 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-pro-5g-premium-edition-dual-sim-td-lte-in-256gb-2201116si/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.9, + "performance": 3.0, + "camera": 35.7, + "battery": 44.9, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-21091116ug/index.json b/site/public/v1/smartphones/redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-21091116ug/index.json new file mode 100644 index 00000000000..331ca2cc3f9 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-21091116ug/index.json @@ -0,0 +1,77 @@ +{ + "id": 6293, + "slug": "redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-21091116ug", + "name": "Redmi Note 11 Pro+ 5G Premium Edition Global Dual SIM TD-LTE 128GB 21091116UG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 71, + "slug": "dimensity-920", + "name": "Dimensity 920", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G68 MC4", + "url": "/v1/socs/dimensity-920" + }, + "release_date": "2022-03-01", + "msrp_usd": 399, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 204.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 34.5, + "performance": 3.0, + "camera": 35.7, + "battery": 47.5, + "display": 52.0, + "value": 63.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.993824", + "updated_at": "2026-06-19T00:43:44.993824" +} diff --git a/site/public/v1/smartphones/redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-21091116ug/score/index.json b/site/public/v1/smartphones/redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-21091116ug/score/index.json new file mode 100644 index 00000000000..3361bd6e38c --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-21091116ug/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 34.5, + "performance": 3.0, + "camera": 35.7, + "battery": 47.5, + "display": 52.0, + "value": 63.5 +} diff --git a/site/public/v1/smartphones/redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-2201116sg/index.json b/site/public/v1/smartphones/redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-2201116sg/index.json new file mode 100644 index 00000000000..c5363fa2809 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-2201116sg/index.json @@ -0,0 +1,77 @@ +{ + "id": 6294, + "slug": "redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-2201116sg", + "name": "Redmi Note 11 Pro 5G Premium Edition Global Dual SIM TD-LTE 128GB 2201116SG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 153, + "slug": "snapdragon-695", + "name": "Snapdragon 695 5G", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 6.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-695" + }, + "release_date": "2022-02-19", + "msrp_usd": 1299, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 67.0, + "charging_wireless_w": null, + "weight_g": 202.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.9, + "performance": 3.0, + "camera": 35.7, + "battery": 44.9, + "display": 52.0, + "value": 28.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.993824", + "updated_at": "2026-06-19T00:43:44.993824" +} diff --git a/site/public/v1/smartphones/redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-2201116sg/score/index.json b/site/public/v1/smartphones/redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-2201116sg/score/index.json new file mode 100644 index 00000000000..d9fab04d7af --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-128gb-2201116sg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.9, + "performance": 3.0, + "camera": 35.7, + "battery": 44.9, + "display": 52.0, + "value": 28.5 +} diff --git a/site/public/v1/smartphones/redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-21091116ug/index.json b/site/public/v1/smartphones/redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-21091116ug/index.json new file mode 100644 index 00000000000..bad34e52ed6 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-21091116ug/index.json @@ -0,0 +1,77 @@ +{ + "id": 6295, + "slug": "redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-21091116ug", + "name": "Redmi Note 11 Pro+ 5G Premium Edition Global Dual SIM TD-LTE 256GB 21091116UG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 71, + "slug": "dimensity-920", + "name": "Dimensity 920", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G68 MC4", + "url": "/v1/socs/dimensity-920" + }, + "release_date": "2022-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 204.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 34.5, + "performance": 3.0, + "camera": 35.7, + "battery": 47.5, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.993824", + "updated_at": "2026-06-19T00:43:44.993824" +} diff --git a/site/public/v1/smartphones/redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-21091116ug/score/index.json b/site/public/v1/smartphones/redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-21091116ug/score/index.json new file mode 100644 index 00000000000..6aac645e91d --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-21091116ug/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 34.5, + "performance": 3.0, + "camera": 35.7, + "battery": 47.5, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-11-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-2201116si/index.json b/site/public/v1/smartphones/redmi-note-11-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-2201116si/index.json new file mode 100644 index 00000000000..44d40095746 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-2201116si/index.json @@ -0,0 +1,77 @@ +{ + "id": 6296, + "slug": "redmi-note-11-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-2201116si", + "name": "Redmi Note 11 Pro+ 5G Standard Edition Dual SIM TD-LTE IN 128GB 2201116SI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 153, + "slug": "snapdragon-695", + "name": "Snapdragon 695 5G", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 6.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-695" + }, + "release_date": "2022-03-08", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 67.0, + "charging_wireless_w": null, + "weight_g": 202.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.5, + "performance": 1.5, + "camera": 35.7, + "battery": 44.9, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.993824", + "updated_at": "2026-06-19T00:43:44.993824" +} diff --git a/site/public/v1/smartphones/redmi-note-11-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-2201116si/score/index.json b/site/public/v1/smartphones/redmi-note-11-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-2201116si/score/index.json new file mode 100644 index 00000000000..4bb32ed2f54 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-pro-5g-standard-edition-dual-sim-td-lte-in-128gb-2201116si/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.5, + "performance": 1.5, + "camera": 35.7, + "battery": 44.9, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-11-pro-5g-standard-edition-dual-sim-td-lte-jp-128gb-2201116sr/index.json b/site/public/v1/smartphones/redmi-note-11-pro-5g-standard-edition-dual-sim-td-lte-jp-128gb-2201116sr/index.json new file mode 100644 index 00000000000..a3381dbb0e4 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-pro-5g-standard-edition-dual-sim-td-lte-jp-128gb-2201116sr/index.json @@ -0,0 +1,77 @@ +{ + "id": 6297, + "slug": "redmi-note-11-pro-5g-standard-edition-dual-sim-td-lte-jp-128gb-2201116sr", + "name": "Redmi Note 11 Pro 5G Standard Edition Dual SIM TD-LTE JP 128GB 2201116SR", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 153, + "slug": "snapdragon-695", + "name": "Snapdragon 695 5G", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 6.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-695" + }, + "release_date": "2022-05-29", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 67.0, + "charging_wireless_w": null, + "weight_g": 202.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.5, + "performance": 1.5, + "camera": 35.7, + "battery": 44.9, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.993824", + "updated_at": "2026-06-19T00:43:44.993824" +} diff --git a/site/public/v1/smartphones/redmi-note-11-pro-5g-standard-edition-dual-sim-td-lte-jp-128gb-2201116sr/score/index.json b/site/public/v1/smartphones/redmi-note-11-pro-5g-standard-edition-dual-sim-td-lte-jp-128gb-2201116sr/score/index.json new file mode 100644 index 00000000000..4bb32ed2f54 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-pro-5g-standard-edition-dual-sim-td-lte-jp-128gb-2201116sr/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.5, + "performance": 1.5, + "camera": 35.7, + "battery": 44.9, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-21091116ug/index.json b/site/public/v1/smartphones/redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-21091116ug/index.json new file mode 100644 index 00000000000..98661e815dd --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-21091116ug/index.json @@ -0,0 +1,77 @@ +{ + "id": 6298, + "slug": "redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-21091116ug", + "name": "Redmi Note 11 Pro+ 5G Standard Edition Global Dual SIM TD-LTE 128GB 21091116UG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 71, + "slug": "dimensity-920", + "name": "Dimensity 920", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G68 MC4", + "url": "/v1/socs/dimensity-920" + }, + "release_date": "2022-03-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 204.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 34.2, + "performance": 1.5, + "camera": 35.7, + "battery": 47.5, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.993824", + "updated_at": "2026-06-19T00:43:44.993824" +} diff --git a/site/public/v1/smartphones/redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-21091116ug/score/index.json b/site/public/v1/smartphones/redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-21091116ug/score/index.json new file mode 100644 index 00000000000..3e4ad264c9c --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-21091116ug/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 34.2, + "performance": 1.5, + "camera": 35.7, + "battery": 47.5, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-2201116sg/index.json b/site/public/v1/smartphones/redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-2201116sg/index.json new file mode 100644 index 00000000000..2288c540fea --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-2201116sg/index.json @@ -0,0 +1,77 @@ +{ + "id": 6299, + "slug": "redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-2201116sg", + "name": "Redmi Note 11 Pro 5G Standard Edition Global Dual SIM TD-LTE 128GB 2201116SG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 153, + "slug": "snapdragon-695", + "name": "Snapdragon 695 5G", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 6.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-695" + }, + "release_date": "2022-02-19", + "msrp_usd": 349, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 67.0, + "charging_wireless_w": null, + "weight_g": 202.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.5, + "performance": 1.5, + "camera": 35.7, + "battery": 44.9, + "display": 52.0, + "value": 64.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.993824", + "updated_at": "2026-06-19T00:43:44.993824" +} diff --git a/site/public/v1/smartphones/redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-2201116sg/score/index.json b/site/public/v1/smartphones/redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-2201116sg/score/index.json new file mode 100644 index 00000000000..cbd612cc52a --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-128gb-2201116sg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.5, + "performance": 1.5, + "camera": 35.7, + "battery": 44.9, + "display": 52.0, + "value": 64.8 +} diff --git a/site/public/v1/smartphones/redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-2201116sg/index.json b/site/public/v1/smartphones/redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-2201116sg/index.json new file mode 100644 index 00000000000..e6795eff628 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-2201116sg/index.json @@ -0,0 +1,77 @@ +{ + "id": 6300, + "slug": "redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-2201116sg", + "name": "Redmi Note 11 Pro 5G Standard Edition Global Dual SIM TD-LTE 64GB 2201116SG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 153, + "slug": "snapdragon-695", + "name": "Snapdragon 695 5G", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 6.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-695" + }, + "release_date": "2022-02-19", + "msrp_usd": 329, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 67.0, + "charging_wireless_w": null, + "weight_g": 202.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.5, + "performance": 1.5, + "camera": 35.7, + "battery": 44.9, + "display": 52.0, + "value": 65.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.994824", + "updated_at": "2026-06-19T00:43:44.994824" +} diff --git a/site/public/v1/smartphones/redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-2201116sg/score/index.json b/site/public/v1/smartphones/redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-2201116sg/score/index.json new file mode 100644 index 00000000000..851b81d719f --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11-pro-5g-standard-edition-global-dual-sim-td-lte-64gb-2201116sg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.5, + "performance": 1.5, + "camera": 35.7, + "battery": 44.9, + "display": 52.0, + "value": 65.7 +} diff --git a/site/public/v1/smartphones/redmi-note-11i-hypercharge-5g-premium-edition-dual-sim-td-lte-in-128gb-21091116ui/index.json b/site/public/v1/smartphones/redmi-note-11i-hypercharge-5g-premium-edition-dual-sim-td-lte-in-128gb-21091116ui/index.json new file mode 100644 index 00000000000..cf41844e0db --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11i-hypercharge-5g-premium-edition-dual-sim-td-lte-in-128gb-21091116ui/index.json @@ -0,0 +1,77 @@ +{ + "id": 6303, + "slug": "redmi-note-11i-hypercharge-5g-premium-edition-dual-sim-td-lte-in-128gb-21091116ui", + "name": "Redmi Note 11i Hypercharge 5G Premium Edition Dual SIM TD-LTE IN 128GB 21091116UI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 71, + "slug": "dimensity-920", + "name": "Dimensity 920", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G68 MC4", + "url": "/v1/socs/dimensity-920" + }, + "release_date": "2022-01-12", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 204.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 34.5, + "performance": 3.0, + "camera": 35.7, + "battery": 47.5, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.994824", + "updated_at": "2026-06-19T00:43:44.994824" +} diff --git a/site/public/v1/smartphones/redmi-note-11i-hypercharge-5g-premium-edition-dual-sim-td-lte-in-128gb-21091116ui/score/index.json b/site/public/v1/smartphones/redmi-note-11i-hypercharge-5g-premium-edition-dual-sim-td-lte-in-128gb-21091116ui/score/index.json new file mode 100644 index 00000000000..6aac645e91d --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11i-hypercharge-5g-premium-edition-dual-sim-td-lte-in-128gb-21091116ui/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 34.5, + "performance": 3.0, + "camera": 35.7, + "battery": 47.5, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-11i-hypercharge-5g-standard-edition-dual-sim-td-lte-in-128gb-21091116ui/index.json b/site/public/v1/smartphones/redmi-note-11i-hypercharge-5g-standard-edition-dual-sim-td-lte-in-128gb-21091116ui/index.json new file mode 100644 index 00000000000..88597b176fd --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11i-hypercharge-5g-standard-edition-dual-sim-td-lte-in-128gb-21091116ui/index.json @@ -0,0 +1,77 @@ +{ + "id": 6304, + "slug": "redmi-note-11i-hypercharge-5g-standard-edition-dual-sim-td-lte-in-128gb-21091116ui", + "name": "Redmi Note 11i Hypercharge 5G Standard Edition Dual SIM TD-LTE IN 128GB 21091116UI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 71, + "slug": "dimensity-920", + "name": "Dimensity 920", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G68 MC4", + "url": "/v1/socs/dimensity-920" + }, + "release_date": "2022-01-12", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 204.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 34.2, + "performance": 1.5, + "camera": 35.7, + "battery": 47.5, + "display": 52.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.994824", + "updated_at": "2026-06-19T00:43:44.994824" +} diff --git a/site/public/v1/smartphones/redmi-note-11i-hypercharge-5g-standard-edition-dual-sim-td-lte-in-128gb-21091116ui/score/index.json b/site/public/v1/smartphones/redmi-note-11i-hypercharge-5g-standard-edition-dual-sim-td-lte-in-128gb-21091116ui/score/index.json new file mode 100644 index 00000000000..3e4ad264c9c --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11i-hypercharge-5g-standard-edition-dual-sim-td-lte-in-128gb-21091116ui/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 34.2, + "performance": 1.5, + "camera": 35.7, + "battery": 47.5, + "display": 52.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-11s-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117si/index.json b/site/public/v1/smartphones/redmi-note-11s-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117si/index.json new file mode 100644 index 00000000000..00eb396773f --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11s-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117si/index.json @@ -0,0 +1,77 @@ +{ + "id": 6308, + "slug": "redmi-note-11s-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117si", + "name": "Redmi Note 11S 4G Premium Edition Dual SIM TD-LTE IN 128GB 2201117SI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 74, + "slug": "helio-g96", + "name": "Helio G96", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali G57 MC2", + "url": "/v1/socs/helio-g96" + }, + "release_date": "2022-01-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.2, + "performance": 3.0, + "camera": 35.7, + "battery": 33.4, + "display": 40.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.994824", + "updated_at": "2026-06-19T00:43:44.994824" +} diff --git a/site/public/v1/smartphones/redmi-note-11s-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117si/score/index.json b/site/public/v1/smartphones/redmi-note-11s-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117si/score/index.json new file mode 100644 index 00000000000..341ff412959 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11s-4g-premium-edition-dual-sim-td-lte-in-128gb-2201117si/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.2, + "performance": 3.0, + "camera": 35.7, + "battery": 33.4, + "display": 40.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-11s-4g-premium-edition-global-dual-sim-td-lte-128gb-2201117sy/index.json b/site/public/v1/smartphones/redmi-note-11s-4g-premium-edition-global-dual-sim-td-lte-128gb-2201117sy/index.json new file mode 100644 index 00000000000..b2ee4599976 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11s-4g-premium-edition-global-dual-sim-td-lte-128gb-2201117sy/index.json @@ -0,0 +1,77 @@ +{ + "id": 6309, + "slug": "redmi-note-11s-4g-premium-edition-global-dual-sim-td-lte-128gb-2201117sy", + "name": "Redmi Note 11S 4G Premium Edition Global Dual SIM TD-LTE 128GB 2201117SY", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 74, + "slug": "helio-g96", + "name": "Helio G96", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali G57 MC2", + "url": "/v1/socs/helio-g96" + }, + "release_date": "2022-02-09", + "msrp_usd": 299, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.2, + "performance": 3.0, + "camera": 35.7, + "battery": 33.4, + "display": 40.9, + "value": 64.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.995824", + "updated_at": "2026-06-19T00:43:44.995824" +} diff --git a/site/public/v1/smartphones/redmi-note-11s-4g-premium-edition-global-dual-sim-td-lte-128gb-2201117sy/score/index.json b/site/public/v1/smartphones/redmi-note-11s-4g-premium-edition-global-dual-sim-td-lte-128gb-2201117sy/score/index.json new file mode 100644 index 00000000000..c0e068d0145 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11s-4g-premium-edition-global-dual-sim-td-lte-128gb-2201117sy/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.2, + "performance": 3.0, + "camera": 35.7, + "battery": 33.4, + "display": 40.9, + "value": 64.1 +} diff --git a/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-dual-sim-td-lte-in-128gb-2201117si/index.json b/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-dual-sim-td-lte-in-128gb-2201117si/index.json new file mode 100644 index 00000000000..0338e054185 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-dual-sim-td-lte-in-128gb-2201117si/index.json @@ -0,0 +1,77 @@ +{ + "id": 6310, + "slug": "redmi-note-11s-4g-standard-edition-dual-sim-td-lte-in-128gb-2201117si", + "name": "Redmi Note 11S 4G Standard Edition Dual SIM TD-LTE IN 128GB 2201117SI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 74, + "slug": "helio-g96", + "name": "Helio G96", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali G57 MC2", + "url": "/v1/socs/helio-g96" + }, + "release_date": "2022-01-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.9, + "performance": 1.5, + "camera": 35.7, + "battery": 33.4, + "display": 40.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.995824", + "updated_at": "2026-06-19T00:43:44.995824" +} diff --git a/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-dual-sim-td-lte-in-128gb-2201117si/score/index.json b/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-dual-sim-td-lte-in-128gb-2201117si/score/index.json new file mode 100644 index 00000000000..4a563c6e020 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-dual-sim-td-lte-in-128gb-2201117si/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.9, + "performance": 1.5, + "camera": 35.7, + "battery": 33.4, + "display": 40.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117si/index.json b/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117si/index.json new file mode 100644 index 00000000000..668fa71e1ea --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117si/index.json @@ -0,0 +1,77 @@ +{ + "id": 6311, + "slug": "redmi-note-11s-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117si", + "name": "Redmi Note 11S 4G Standard Edition Dual SIM TD-LTE IN 64GB 2201117SI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 74, + "slug": "helio-g96", + "name": "Helio G96", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali G57 MC2", + "url": "/v1/socs/helio-g96" + }, + "release_date": "2022-01-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.9, + "performance": 1.5, + "camera": 35.7, + "battery": 33.4, + "display": 40.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.995824", + "updated_at": "2026-06-19T00:43:44.995824" +} diff --git a/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117si/score/index.json b/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117si/score/index.json new file mode 100644 index 00000000000..4a563c6e020 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-dual-sim-td-lte-in-64gb-2201117si/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.9, + "performance": 1.5, + "camera": 35.7, + "battery": 33.4, + "display": 40.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-dual-sim-td-lte-latam-128gb-2201117sl/index.json b/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-dual-sim-td-lte-latam-128gb-2201117sl/index.json new file mode 100644 index 00000000000..faa2a5a99a2 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-dual-sim-td-lte-latam-128gb-2201117sl/index.json @@ -0,0 +1,77 @@ +{ + "id": 6312, + "slug": "redmi-note-11s-4g-standard-edition-dual-sim-td-lte-latam-128gb-2201117sl", + "name": "Redmi Note 11S 4G Standard Edition Dual SIM TD-LTE LATAM 128GB 2201117SL", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 74, + "slug": "helio-g96", + "name": "Helio G96", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali G57 MC2", + "url": "/v1/socs/helio-g96" + }, + "release_date": "2022-03-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.9, + "performance": 1.5, + "camera": 35.7, + "battery": 33.4, + "display": 40.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.995824", + "updated_at": "2026-06-19T00:43:44.995824" +} diff --git a/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-dual-sim-td-lte-latam-128gb-2201117sl/score/index.json b/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-dual-sim-td-lte-latam-128gb-2201117sl/score/index.json new file mode 100644 index 00000000000..4a563c6e020 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-dual-sim-td-lte-latam-128gb-2201117sl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.9, + "performance": 1.5, + "camera": 35.7, + "battery": 33.4, + "display": 40.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117sg/index.json b/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117sg/index.json new file mode 100644 index 00000000000..b0c47a730be --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117sg/index.json @@ -0,0 +1,77 @@ +{ + "id": 6313, + "slug": "redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117sg", + "name": "Redmi Note 11S 4G Standard Edition Global Dual SIM TD-LTE 128GB 2201117SG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 74, + "slug": "helio-g96", + "name": "Helio G96", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali G57 MC2", + "url": "/v1/socs/helio-g96" + }, + "release_date": "2022-02-09", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.9, + "performance": 1.5, + "camera": 35.7, + "battery": 33.4, + "display": 40.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.995824", + "updated_at": "2026-06-19T00:43:44.995824" +} diff --git a/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117sg/score/index.json b/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117sg/score/index.json new file mode 100644 index 00000000000..4a563c6e020 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117sg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.9, + "performance": 1.5, + "camera": 35.7, + "battery": 33.4, + "display": 40.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117sy/index.json b/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117sy/index.json new file mode 100644 index 00000000000..54b4dff1876 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117sy/index.json @@ -0,0 +1,77 @@ +{ + "id": 6314, + "slug": "redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117sy", + "name": "Redmi Note 11S 4G Standard Edition Global Dual SIM TD-LTE 128GB 2201117SY", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 74, + "slug": "helio-g96", + "name": "Helio G96", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali G57 MC2", + "url": "/v1/socs/helio-g96" + }, + "release_date": "2022-02-09", + "msrp_usd": 279, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.9, + "performance": 1.5, + "camera": 35.7, + "battery": 33.4, + "display": 40.9, + "value": 64.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.995824", + "updated_at": "2026-06-19T00:43:44.995824" +} diff --git a/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117sy/score/index.json b/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117sy/score/index.json new file mode 100644 index 00000000000..abb6476acfb --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-128gb-2201117sy/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.9, + "performance": 1.5, + "camera": 35.7, + "battery": 33.4, + "display": 40.9, + "value": 64.0 +} diff --git a/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-64gb-2201117sy/index.json b/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-64gb-2201117sy/index.json new file mode 100644 index 00000000000..268fd14a505 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-64gb-2201117sy/index.json @@ -0,0 +1,77 @@ +{ + "id": 6315, + "slug": "redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-64gb-2201117sy", + "name": "Redmi Note 11S 4G Standard Edition Global Dual SIM TD-LTE 64GB 2201117SY", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 74, + "slug": "helio-g96", + "name": "Helio G96", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali G57 MC2", + "url": "/v1/socs/helio-g96" + }, + "release_date": "2022-02-09", + "msrp_usd": 249, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.9, + "performance": 1.5, + "camera": 35.7, + "battery": 33.4, + "display": 40.9, + "value": 64.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.995824", + "updated_at": "2026-06-19T00:43:44.995824" +} diff --git a/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-64gb-2201117sy/score/index.json b/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-64gb-2201117sy/score/index.json new file mode 100644 index 00000000000..abb6476acfb --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11s-4g-standard-edition-global-dual-sim-td-lte-64gb-2201117sy/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.9, + "performance": 1.5, + "camera": 35.7, + "battery": 33.4, + "display": 40.9, + "value": 64.0 +} diff --git a/site/public/v1/smartphones/redmi-note-11t-5g-premium-edition-dual-sim-td-lte-in-128gb-21091116ai/index.json b/site/public/v1/smartphones/redmi-note-11t-5g-premium-edition-dual-sim-td-lte-in-128gb-21091116ai/index.json new file mode 100644 index 00000000000..2caaf94e320 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11t-5g-premium-edition-dual-sim-td-lte-in-128gb-21091116ai/index.json @@ -0,0 +1,77 @@ +{ + "id": 6216, + "slug": "redmi-note-11t-5g-premium-edition-dual-sim-td-lte-in-128gb-21091116ai", + "name": "Redmi Note 11T 5G Premium Edition Dual SIM TD-LTE IN 128GB 21091116AI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 68, + "slug": "dimensity-810", + "name": "Dimensity 810", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-810" + }, + "release_date": "2021-12-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 3.0, + "camera": 17.2, + "battery": 38.4, + "display": 39.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.984825", + "updated_at": "2026-06-19T00:43:44.984825" +} diff --git a/site/public/v1/smartphones/redmi-note-11t-5g-premium-edition-dual-sim-td-lte-in-128gb-21091116ai/score/index.json b/site/public/v1/smartphones/redmi-note-11t-5g-premium-edition-dual-sim-td-lte-in-128gb-21091116ai/score/index.json new file mode 100644 index 00000000000..fdcdd77f382 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11t-5g-premium-edition-dual-sim-td-lte-in-128gb-21091116ai/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 3.0, + "camera": 17.2, + "battery": 38.4, + "display": 39.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-11t-5g-standard-edition-dual-sim-td-lte-in-128gb-21091116ai/index.json b/site/public/v1/smartphones/redmi-note-11t-5g-standard-edition-dual-sim-td-lte-in-128gb-21091116ai/index.json new file mode 100644 index 00000000000..fca0623bfb9 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11t-5g-standard-edition-dual-sim-td-lte-in-128gb-21091116ai/index.json @@ -0,0 +1,77 @@ +{ + "id": 6217, + "slug": "redmi-note-11t-5g-standard-edition-dual-sim-td-lte-in-128gb-21091116ai", + "name": "Redmi Note 11T 5G Standard Edition Dual SIM TD-LTE IN 128GB 21091116AI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 68, + "slug": "dimensity-810", + "name": "Dimensity 810", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-810" + }, + "release_date": "2021-12-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 1.5, + "camera": 17.2, + "battery": 38.4, + "display": 39.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.984825", + "updated_at": "2026-06-19T00:43:44.984825" +} diff --git a/site/public/v1/smartphones/redmi-note-11t-5g-standard-edition-dual-sim-td-lte-in-128gb-21091116ai/score/index.json b/site/public/v1/smartphones/redmi-note-11t-5g-standard-edition-dual-sim-td-lte-in-128gb-21091116ai/score/index.json new file mode 100644 index 00000000000..d76e58955b3 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11t-5g-standard-edition-dual-sim-td-lte-in-128gb-21091116ai/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 1.5, + "camera": 17.2, + "battery": 38.4, + "display": 39.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-11t-5g-standard-edition-dual-sim-td-lte-in-64gb-21091116ai/index.json b/site/public/v1/smartphones/redmi-note-11t-5g-standard-edition-dual-sim-td-lte-in-64gb-21091116ai/index.json new file mode 100644 index 00000000000..fb3077c08e0 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11t-5g-standard-edition-dual-sim-td-lte-in-64gb-21091116ai/index.json @@ -0,0 +1,77 @@ +{ + "id": 6218, + "slug": "redmi-note-11t-5g-standard-edition-dual-sim-td-lte-in-64gb-21091116ai", + "name": "Redmi Note 11T 5G Standard Edition Dual SIM TD-LTE IN 64GB 21091116AI", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 68, + "slug": "dimensity-810", + "name": "Dimensity 810", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-810" + }, + "release_date": "2021-12-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.6, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 1.5, + "camera": 17.2, + "battery": 38.4, + "display": 39.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.984825", + "updated_at": "2026-06-19T00:43:44.984825" +} diff --git a/site/public/v1/smartphones/redmi-note-11t-5g-standard-edition-dual-sim-td-lte-in-64gb-21091116ai/score/index.json b/site/public/v1/smartphones/redmi-note-11t-5g-standard-edition-dual-sim-td-lte-in-64gb-21091116ai/score/index.json new file mode 100644 index 00000000000..d76e58955b3 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-11t-5g-standard-edition-dual-sim-td-lte-in-64gb-21091116ai/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 1.5, + "camera": 17.2, + "battery": 38.4, + "display": 39.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-5-premium-edition-dual-sim-td-lte-cn-64gb-mec7s-m1803e7sc/index.json b/site/public/v1/smartphones/redmi-note-5-premium-edition-dual-sim-td-lte-cn-64gb-mec7s-m1803e7sc/index.json new file mode 100644 index 00000000000..9c488402f39 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-5-premium-edition-dual-sim-td-lte-cn-64gb-mec7s-m1803e7sc/index.json @@ -0,0 +1,76 @@ +{ + "id": 5681, + "slug": "redmi-note-5-premium-edition-dual-sim-td-lte-cn-64gb-mec7s-m1803e7sc", + "name": "Redmi Note 5 Premium Edition Dual SIM TD-LTE CN 64GB MEC7S / M1803E7SC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.923307", + "updated_at": "2026-06-19T00:43:44.923307" +} diff --git a/site/public/v1/smartphones/redmi-note-5-premium-edition-dual-sim-td-lte-cn-64gb-mec7s-m1803e7sc/score/index.json b/site/public/v1/smartphones/redmi-note-5-premium-edition-dual-sim-td-lte-cn-64gb-mec7s-m1803e7sc/score/index.json new file mode 100644 index 00000000000..c0aa0f02657 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-5-premium-edition-dual-sim-td-lte-cn-64gb-mec7s-m1803e7sc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-5-premium-edition-global-dual-sim-td-lte-64gb-meg7s-m1803e7sg/index.json b/site/public/v1/smartphones/redmi-note-5-premium-edition-global-dual-sim-td-lte-64gb-meg7s-m1803e7sg/index.json new file mode 100644 index 00000000000..44008913c28 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-5-premium-edition-global-dual-sim-td-lte-64gb-meg7s-m1803e7sg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5682, + "slug": "redmi-note-5-premium-edition-global-dual-sim-td-lte-64gb-meg7s-m1803e7sg", + "name": "Redmi Note 5 Premium Edition Global Dual SIM TD-LTE 64GB MEG7S / M1803E7SG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-05-09", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.923307", + "updated_at": "2026-06-19T00:43:44.923307" +} diff --git a/site/public/v1/smartphones/redmi-note-5-premium-edition-global-dual-sim-td-lte-64gb-meg7s-m1803e7sg/score/index.json b/site/public/v1/smartphones/redmi-note-5-premium-edition-global-dual-sim-td-lte-64gb-meg7s-m1803e7sg/score/index.json new file mode 100644 index 00000000000..c0aa0f02657 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-5-premium-edition-global-dual-sim-td-lte-64gb-meg7s-m1803e7sg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-5-pro-standard-edition-dual-sim-td-lte-in-mzb6079in-m1803e7sh/index.json b/site/public/v1/smartphones/redmi-note-5-pro-standard-edition-dual-sim-td-lte-in-mzb6079in-m1803e7sh/index.json new file mode 100644 index 00000000000..32e60a4233b --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-5-pro-standard-edition-dual-sim-td-lte-in-mzb6079in-m1803e7sh/index.json @@ -0,0 +1,76 @@ +{ + "id": 5683, + "slug": "redmi-note-5-pro-standard-edition-dual-sim-td-lte-in-mzb6079in-m1803e7sh", + "name": "Redmi Note 5 Pro Standard Edition Dual SIM TD-LTE IN MZB6079IN / M1803E7SH", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.923307", + "updated_at": "2026-06-19T00:43:44.923307" +} diff --git a/site/public/v1/smartphones/redmi-note-5-pro-standard-edition-dual-sim-td-lte-in-mzb6079in-m1803e7sh/score/index.json b/site/public/v1/smartphones/redmi-note-5-pro-standard-edition-dual-sim-td-lte-in-mzb6079in-m1803e7sh/score/index.json new file mode 100644 index 00000000000..ada315ee5bb --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-5-pro-standard-edition-dual-sim-td-lte-in-mzb6079in-m1803e7sh/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-5-standard-edition-dual-sim-td-lte-cn-32gb-mee7s/index.json b/site/public/v1/smartphones/redmi-note-5-standard-edition-dual-sim-td-lte-cn-32gb-mee7s/index.json new file mode 100644 index 00000000000..a7c4d3d0fd3 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-5-standard-edition-dual-sim-td-lte-cn-32gb-mee7s/index.json @@ -0,0 +1,76 @@ +{ + "id": 5684, + "slug": "redmi-note-5-standard-edition-dual-sim-td-lte-cn-32gb-mee7s", + "name": "Redmi Note 5 Standard Edition Dual SIM TD-LTE CN 32GB MEE7S", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.923307", + "updated_at": "2026-06-19T00:43:44.923307" +} diff --git a/site/public/v1/smartphones/redmi-note-5-standard-edition-dual-sim-td-lte-cn-32gb-mee7s/score/index.json b/site/public/v1/smartphones/redmi-note-5-standard-edition-dual-sim-td-lte-cn-32gb-mee7s/score/index.json new file mode 100644 index 00000000000..ada315ee5bb --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-5-standard-edition-dual-sim-td-lte-cn-32gb-mee7s/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-5-standard-edition-dual-sim-td-lte-cn-64gb-mee7s-m1803e7se/index.json b/site/public/v1/smartphones/redmi-note-5-standard-edition-dual-sim-td-lte-cn-64gb-mee7s-m1803e7se/index.json new file mode 100644 index 00000000000..bc8a99076d9 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-5-standard-edition-dual-sim-td-lte-cn-64gb-mee7s-m1803e7se/index.json @@ -0,0 +1,76 @@ +{ + "id": 5685, + "slug": "redmi-note-5-standard-edition-dual-sim-td-lte-cn-64gb-mee7s-m1803e7se", + "name": "Redmi Note 5 Standard Edition Dual SIM TD-LTE CN 64GB MEE7S / M1803E7SE", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.923307", + "updated_at": "2026-06-19T00:43:44.923307" +} diff --git a/site/public/v1/smartphones/redmi-note-5-standard-edition-dual-sim-td-lte-cn-64gb-mee7s-m1803e7se/score/index.json b/site/public/v1/smartphones/redmi-note-5-standard-edition-dual-sim-td-lte-cn-64gb-mee7s-m1803e7se/score/index.json new file mode 100644 index 00000000000..ada315ee5bb --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-5-standard-edition-dual-sim-td-lte-cn-64gb-mee7s-m1803e7se/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-5-standard-edition-global-dual-sim-td-lte-32gb-meg7s-m1803e7sg/index.json b/site/public/v1/smartphones/redmi-note-5-standard-edition-global-dual-sim-td-lte-32gb-meg7s-m1803e7sg/index.json new file mode 100644 index 00000000000..efc92c38dab --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-5-standard-edition-global-dual-sim-td-lte-32gb-meg7s-m1803e7sg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5686, + "slug": "redmi-note-5-standard-edition-global-dual-sim-td-lte-32gb-meg7s-m1803e7sg", + "name": "Redmi Note 5 Standard Edition Global Dual SIM TD-LTE 32GB MEG7S / M1803E7SG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-05-09", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.923307", + "updated_at": "2026-06-19T00:43:44.923307" +} diff --git a/site/public/v1/smartphones/redmi-note-5-standard-edition-global-dual-sim-td-lte-32gb-meg7s-m1803e7sg/score/index.json b/site/public/v1/smartphones/redmi-note-5-standard-edition-global-dual-sim-td-lte-32gb-meg7s-m1803e7sg/score/index.json new file mode 100644 index 00000000000..ada315ee5bb --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-5-standard-edition-global-dual-sim-td-lte-32gb-meg7s-m1803e7sg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-5-standard-edition-global-dual-sim-td-lte-64gb-meg7s-m1803e7sg/index.json b/site/public/v1/smartphones/redmi-note-5-standard-edition-global-dual-sim-td-lte-64gb-meg7s-m1803e7sg/index.json new file mode 100644 index 00000000000..6ffb81cacb4 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-5-standard-edition-global-dual-sim-td-lte-64gb-meg7s-m1803e7sg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5687, + "slug": "redmi-note-5-standard-edition-global-dual-sim-td-lte-64gb-meg7s-m1803e7sg", + "name": "Redmi Note 5 Standard Edition Global Dual SIM TD-LTE 64GB MEG7S / M1803E7SG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-05-09", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.923307", + "updated_at": "2026-06-19T00:43:44.923307" +} diff --git a/site/public/v1/smartphones/redmi-note-5-standard-edition-global-dual-sim-td-lte-64gb-meg7s-m1803e7sg/score/index.json b/site/public/v1/smartphones/redmi-note-5-standard-edition-global-dual-sim-td-lte-64gb-meg7s-m1803e7sg/score/index.json new file mode 100644 index 00000000000..ada315ee5bb --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-5-standard-edition-global-dual-sim-td-lte-64gb-meg7s-m1803e7sg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-6-pro-dual-sim-td-lte-apac-32gb-m1806e7th/index.json b/site/public/v1/smartphones/redmi-note-6-pro-dual-sim-td-lte-apac-32gb-m1806e7th/index.json new file mode 100644 index 00000000000..58bf953b22c --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-6-pro-dual-sim-td-lte-apac-32gb-m1806e7th/index.json @@ -0,0 +1,76 @@ +{ + "id": 5688, + "slug": "redmi-note-6-pro-dual-sim-td-lte-apac-32gb-m1806e7th", + "name": "Redmi Note 6 Pro Dual SIM TD-LTE APAC 32GB M1806E7TH", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.923307", + "updated_at": "2026-06-19T00:43:44.923307" +} diff --git a/site/public/v1/smartphones/redmi-note-6-pro-dual-sim-td-lte-apac-32gb-m1806e7th/score/index.json b/site/public/v1/smartphones/redmi-note-6-pro-dual-sim-td-lte-apac-32gb-m1806e7th/score/index.json new file mode 100644 index 00000000000..ada315ee5bb --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-6-pro-dual-sim-td-lte-apac-32gb-m1806e7th/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-6-pro-dual-sim-td-lte-apac-64gb-m1806e7th/index.json b/site/public/v1/smartphones/redmi-note-6-pro-dual-sim-td-lte-apac-64gb-m1806e7th/index.json new file mode 100644 index 00000000000..66eb8632fef --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-6-pro-dual-sim-td-lte-apac-64gb-m1806e7th/index.json @@ -0,0 +1,76 @@ +{ + "id": 5689, + "slug": "redmi-note-6-pro-dual-sim-td-lte-apac-64gb-m1806e7th", + "name": "Redmi Note 6 Pro Dual SIM TD-LTE APAC 64GB M1806E7TH", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.923307", + "updated_at": "2026-06-19T00:43:44.923307" +} diff --git a/site/public/v1/smartphones/redmi-note-6-pro-dual-sim-td-lte-apac-64gb-m1806e7th/score/index.json b/site/public/v1/smartphones/redmi-note-6-pro-dual-sim-td-lte-apac-64gb-m1806e7th/score/index.json new file mode 100644 index 00000000000..ada315ee5bb --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-6-pro-dual-sim-td-lte-apac-64gb-m1806e7th/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-6-pro-dual-sim-td-lte-cn-32gb-m1806e7te-m1806e7tc/index.json b/site/public/v1/smartphones/redmi-note-6-pro-dual-sim-td-lte-cn-32gb-m1806e7te-m1806e7tc/index.json new file mode 100644 index 00000000000..fdf1158f330 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-6-pro-dual-sim-td-lte-cn-32gb-m1806e7te-m1806e7tc/index.json @@ -0,0 +1,76 @@ +{ + "id": 5822, + "slug": "redmi-note-6-pro-dual-sim-td-lte-cn-32gb-m1806e7te-m1806e7tc", + "name": "Redmi Note 6 Pro Dual SIM TD-LTE CN 32GB M1806E7TE / M1806E7TC", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2019-02-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.938307", + "updated_at": "2026-06-19T00:43:44.938307" +} diff --git a/site/public/v1/smartphones/redmi-note-6-pro-dual-sim-td-lte-cn-32gb-m1806e7te-m1806e7tc/score/index.json b/site/public/v1/smartphones/redmi-note-6-pro-dual-sim-td-lte-cn-32gb-m1806e7te-m1806e7tc/score/index.json new file mode 100644 index 00000000000..ada315ee5bb --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-6-pro-dual-sim-td-lte-cn-32gb-m1806e7te-m1806e7tc/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-6-pro-dual-sim-td-lte-in-my-mzb6876in-mzb6877in-mzb6878in-mzb6882in/index.json b/site/public/v1/smartphones/redmi-note-6-pro-dual-sim-td-lte-in-my-mzb6876in-mzb6877in-mzb6878in-mzb6882in/index.json new file mode 100644 index 00000000000..ef32a145747 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-6-pro-dual-sim-td-lte-in-my-mzb6876in-mzb6877in-mzb6878in-mzb6882in/index.json @@ -0,0 +1,76 @@ +{ + "id": 5690, + "slug": "redmi-note-6-pro-dual-sim-td-lte-in-my-mzb6876in-mzb6877in-mzb6878in-mzb6882in", + "name": "Redmi Note 6 Pro Dual SIM TD-LTE IN MY MZB6876IN / MZB6877IN / MZB6878IN / MZB6882IN", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-11-28", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.923307", + "updated_at": "2026-06-19T00:43:44.923307" +} diff --git a/site/public/v1/smartphones/redmi-note-6-pro-dual-sim-td-lte-in-my-mzb6876in-mzb6877in-mzb6878in-mzb6882in/score/index.json b/site/public/v1/smartphones/redmi-note-6-pro-dual-sim-td-lte-in-my-mzb6876in-mzb6877in-mzb6878in-mzb6882in/score/index.json new file mode 100644 index 00000000000..ada315ee5bb --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-6-pro-dual-sim-td-lte-in-my-mzb6876in-mzb6877in-mzb6878in-mzb6882in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-6-pro-dual-sim-td-lte-in-my-mzb6879in-mzb6880in-mzb6881in-mzb6883in/index.json b/site/public/v1/smartphones/redmi-note-6-pro-dual-sim-td-lte-in-my-mzb6879in-mzb6880in-mzb6881in-mzb6883in/index.json new file mode 100644 index 00000000000..4e58495970e --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-6-pro-dual-sim-td-lte-in-my-mzb6879in-mzb6880in-mzb6881in-mzb6883in/index.json @@ -0,0 +1,76 @@ +{ + "id": 5691, + "slug": "redmi-note-6-pro-dual-sim-td-lte-in-my-mzb6879in-mzb6880in-mzb6881in-mzb6883in", + "name": "Redmi Note 6 Pro Dual SIM TD-LTE IN MY MZB6879IN / MZB6880IN / MZB6881IN / MZB6883IN", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-11-28", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.924307", + "updated_at": "2026-06-19T00:43:44.924307" +} diff --git a/site/public/v1/smartphones/redmi-note-6-pro-dual-sim-td-lte-in-my-mzb6879in-mzb6880in-mzb6881in-mzb6883in/score/index.json b/site/public/v1/smartphones/redmi-note-6-pro-dual-sim-td-lte-in-my-mzb6879in-mzb6880in-mzb6881in-mzb6883in/score/index.json new file mode 100644 index 00000000000..c0aa0f02657 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-6-pro-dual-sim-td-lte-in-my-mzb6879in-mzb6880in-mzb6881in-mzb6883in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 1.5, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-6-pro-global-dual-sim-td-lte-32gb-m1806e7tg/index.json b/site/public/v1/smartphones/redmi-note-6-pro-global-dual-sim-td-lte-32gb-m1806e7tg/index.json new file mode 100644 index 00000000000..9f151ddd100 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-6-pro-global-dual-sim-td-lte-32gb-m1806e7tg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5692, + "slug": "redmi-note-6-pro-global-dual-sim-td-lte-32gb-m1806e7tg", + "name": "Redmi Note 6 Pro Global Dual SIM TD-LTE 32GB M1806E7TG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.924307", + "updated_at": "2026-06-19T00:43:44.924307" +} diff --git a/site/public/v1/smartphones/redmi-note-6-pro-global-dual-sim-td-lte-32gb-m1806e7tg/score/index.json b/site/public/v1/smartphones/redmi-note-6-pro-global-dual-sim-td-lte-32gb-m1806e7tg/score/index.json new file mode 100644 index 00000000000..ada315ee5bb --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-6-pro-global-dual-sim-td-lte-32gb-m1806e7tg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-6-pro-global-dual-sim-td-lte-64gb-m1806e7tg/index.json b/site/public/v1/smartphones/redmi-note-6-pro-global-dual-sim-td-lte-64gb-m1806e7tg/index.json new file mode 100644 index 00000000000..4400542089b --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-6-pro-global-dual-sim-td-lte-64gb-m1806e7tg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5693, + "slug": "redmi-note-6-pro-global-dual-sim-td-lte-64gb-m1806e7tg", + "name": "Redmi Note 6 Pro Global Dual SIM TD-LTE 64GB M1806E7TG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 19.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.924307", + "updated_at": "2026-06-19T00:43:44.924307" +} diff --git a/site/public/v1/smartphones/redmi-note-6-pro-global-dual-sim-td-lte-64gb-m1806e7tg/score/index.json b/site/public/v1/smartphones/redmi-note-6-pro-global-dual-sim-td-lte-64gb-m1806e7tg/score/index.json new file mode 100644 index 00000000000..ada315ee5bb --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-6-pro-global-dual-sim-td-lte-64gb-m1806e7tg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-apac-latam-128gb-m1901f7h/index.json b/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-apac-latam-128gb-m1901f7h/index.json new file mode 100644 index 00000000000..b7a7e3f1331 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-apac-latam-128gb-m1901f7h/index.json @@ -0,0 +1,76 @@ +{ + "id": 5823, + "slug": "redmi-note-7-dual-sim-td-lte-apac-latam-128gb-m1901f7h", + "name": "Redmi Note 7 Dual SIM TD-LTE APAC LATAM 128GB M1901F7H", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 18.0, + "camera": 16.5, + "battery": 15.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.939307", + "updated_at": "2026-06-19T00:43:44.939307" +} diff --git a/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-apac-latam-128gb-m1901f7h/score/index.json b/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-apac-latam-128gb-m1901f7h/score/index.json new file mode 100644 index 00000000000..c6401aa4598 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-apac-latam-128gb-m1901f7h/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 18.0, + "camera": 16.5, + "battery": 15.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-apac-latam-32gb-m1901f7h/index.json b/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-apac-latam-32gb-m1901f7h/index.json new file mode 100644 index 00000000000..5a6258fe1af --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-apac-latam-32gb-m1901f7h/index.json @@ -0,0 +1,76 @@ +{ + "id": 5824, + "slug": "redmi-note-7-dual-sim-td-lte-apac-latam-32gb-m1901f7h", + "name": "Redmi Note 7 Dual SIM TD-LTE APAC LATAM 32GB M1901F7H", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 18.0, + "camera": 16.5, + "battery": 15.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.939307", + "updated_at": "2026-06-19T00:43:44.939307" +} diff --git a/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-apac-latam-32gb-m1901f7h/score/index.json b/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-apac-latam-32gb-m1901f7h/score/index.json new file mode 100644 index 00000000000..c6401aa4598 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-apac-latam-32gb-m1901f7h/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 18.0, + "camera": 16.5, + "battery": 15.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-apac-latam-64gb-m1901f7h/index.json b/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-apac-latam-64gb-m1901f7h/index.json new file mode 100644 index 00000000000..4b838e9a050 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-apac-latam-64gb-m1901f7h/index.json @@ -0,0 +1,76 @@ +{ + "id": 5825, + "slug": "redmi-note-7-dual-sim-td-lte-apac-latam-64gb-m1901f7h", + "name": "Redmi Note 7 Dual SIM TD-LTE APAC LATAM 64GB M1901F7H", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 18.0, + "camera": 16.5, + "battery": 15.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.939307", + "updated_at": "2026-06-19T00:43:44.939307" +} diff --git a/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-apac-latam-64gb-m1901f7h/score/index.json b/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-apac-latam-64gb-m1901f7h/score/index.json new file mode 100644 index 00000000000..c6401aa4598 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-apac-latam-64gb-m1901f7h/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 18.0, + "camera": 16.5, + "battery": 15.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-in-32gb-m1901f7i-mzb7411in-mzb7263in-mzb7264in/index.json b/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-in-32gb-m1901f7i-mzb7411in-mzb7263in-mzb7264in/index.json new file mode 100644 index 00000000000..d95895a45f9 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-in-32gb-m1901f7i-mzb7411in-mzb7263in-mzb7264in/index.json @@ -0,0 +1,76 @@ +{ + "id": 5826, + "slug": "redmi-note-7-dual-sim-td-lte-in-32gb-m1901f7i-mzb7411in-mzb7263in-mzb7264in", + "name": "Redmi Note 7 Dual SIM TD-LTE IN 32GB M1901F7I / MZB7411IN / MZB7263IN / MZB7264IN", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2019-02-28", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 18.0, + "camera": 5.0, + "battery": 15.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.939307", + "updated_at": "2026-06-19T00:43:44.939307" +} diff --git a/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-in-32gb-m1901f7i-mzb7411in-mzb7263in-mzb7264in/score/index.json b/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-in-32gb-m1901f7i-mzb7411in-mzb7263in-mzb7264in/score/index.json new file mode 100644 index 00000000000..8f7b07b526b --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-in-32gb-m1901f7i-mzb7411in-mzb7263in-mzb7264in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 18.0, + "camera": 5.0, + "battery": 15.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-in-64gb-m1901f7i-mzb7412in-mzb7265in-mzb7266in/index.json b/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-in-64gb-m1901f7i-mzb7412in-mzb7265in-mzb7266in/index.json new file mode 100644 index 00000000000..f983cb5ee92 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-in-64gb-m1901f7i-mzb7412in-mzb7265in-mzb7266in/index.json @@ -0,0 +1,76 @@ +{ + "id": 5827, + "slug": "redmi-note-7-dual-sim-td-lte-in-64gb-m1901f7i-mzb7412in-mzb7265in-mzb7266in", + "name": "Redmi Note 7 Dual SIM TD-LTE IN 64GB M1901F7I / MZB7412IN / MZB7265IN / MZB7266IN", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2019-02-28", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 18.0, + "camera": 5.0, + "battery": 15.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.939307", + "updated_at": "2026-06-19T00:43:44.939307" +} diff --git a/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-in-64gb-m1901f7i-mzb7412in-mzb7265in-mzb7266in/score/index.json b/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-in-64gb-m1901f7i-mzb7412in-mzb7265in-mzb7266in/score/index.json new file mode 100644 index 00000000000..8f7b07b526b --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-in-64gb-m1901f7i-mzb7412in-mzb7265in-mzb7266in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 18.0, + "camera": 5.0, + "battery": 15.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-th-64gb-m1901f7i/index.json b/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-th-64gb-m1901f7i/index.json new file mode 100644 index 00000000000..4ba5b0c174d --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-th-64gb-m1901f7i/index.json @@ -0,0 +1,76 @@ +{ + "id": 5828, + "slug": "redmi-note-7-dual-sim-td-lte-th-64gb-m1901f7i", + "name": "Redmi Note 7 Dual SIM TD-LTE TH 64GB M1901F7I", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 18.0, + "camera": 16.5, + "battery": 15.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.939307", + "updated_at": "2026-06-19T00:43:44.939307" +} diff --git a/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-th-64gb-m1901f7i/score/index.json b/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-th-64gb-m1901f7i/score/index.json new file mode 100644 index 00000000000..c6401aa4598 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-7-dual-sim-td-lte-th-64gb-m1901f7i/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 18.0, + "camera": 16.5, + "battery": 15.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-7-global-dual-sim-td-lte-128gb-m1901f7g-redmi-note-seven/index.json b/site/public/v1/smartphones/redmi-note-7-global-dual-sim-td-lte-128gb-m1901f7g-redmi-note-seven/index.json new file mode 100644 index 00000000000..511caff4186 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-7-global-dual-sim-td-lte-128gb-m1901f7g-redmi-note-seven/index.json @@ -0,0 +1,76 @@ +{ + "id": 5829, + "slug": "redmi-note-7-global-dual-sim-td-lte-128gb-m1901f7g-redmi-note-seven", + "name": "Redmi Note 7 Global Dual SIM TD-LTE 128GB M1901F7G / Redmi Note Seven", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2019-03-12", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 18.0, + "camera": 16.5, + "battery": 15.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.939307", + "updated_at": "2026-06-19T00:43:44.939307" +} diff --git a/site/public/v1/smartphones/redmi-note-7-global-dual-sim-td-lte-128gb-m1901f7g-redmi-note-seven/score/index.json b/site/public/v1/smartphones/redmi-note-7-global-dual-sim-td-lte-128gb-m1901f7g-redmi-note-seven/score/index.json new file mode 100644 index 00000000000..c6401aa4598 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-7-global-dual-sim-td-lte-128gb-m1901f7g-redmi-note-seven/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 18.0, + "camera": 16.5, + "battery": 15.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-7-global-dual-sim-td-lte-32gb-m1901f7g/index.json b/site/public/v1/smartphones/redmi-note-7-global-dual-sim-td-lte-32gb-m1901f7g/index.json new file mode 100644 index 00000000000..6c59814a537 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-7-global-dual-sim-td-lte-32gb-m1901f7g/index.json @@ -0,0 +1,76 @@ +{ + "id": 5830, + "slug": "redmi-note-7-global-dual-sim-td-lte-32gb-m1901f7g", + "name": "Redmi Note 7 Global Dual SIM TD-LTE 32GB M1901F7G", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2019-03-12", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 18.0, + "camera": 16.5, + "battery": 15.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.939307", + "updated_at": "2026-06-19T00:43:44.939307" +} diff --git a/site/public/v1/smartphones/redmi-note-7-global-dual-sim-td-lte-32gb-m1901f7g/score/index.json b/site/public/v1/smartphones/redmi-note-7-global-dual-sim-td-lte-32gb-m1901f7g/score/index.json new file mode 100644 index 00000000000..c6401aa4598 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-7-global-dual-sim-td-lte-32gb-m1901f7g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 18.0, + "camera": 16.5, + "battery": 15.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-7-global-dual-sim-td-lte-64gb-m1901f7g-redmi-note-seven/index.json b/site/public/v1/smartphones/redmi-note-7-global-dual-sim-td-lte-64gb-m1901f7g-redmi-note-seven/index.json new file mode 100644 index 00000000000..022c7f94fd5 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-7-global-dual-sim-td-lte-64gb-m1901f7g-redmi-note-seven/index.json @@ -0,0 +1,76 @@ +{ + "id": 5831, + "slug": "redmi-note-7-global-dual-sim-td-lte-64gb-m1901f7g-redmi-note-seven", + "name": "Redmi Note 7 Global Dual SIM TD-LTE 64GB M1901F7G / Redmi Note Seven", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2019-03-14", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 18.0, + "camera": 16.5, + "battery": 15.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.939307", + "updated_at": "2026-06-19T00:43:44.939307" +} diff --git a/site/public/v1/smartphones/redmi-note-7-global-dual-sim-td-lte-64gb-m1901f7g-redmi-note-seven/score/index.json b/site/public/v1/smartphones/redmi-note-7-global-dual-sim-td-lte-64gb-m1901f7g-redmi-note-seven/score/index.json new file mode 100644 index 00000000000..c6401aa4598 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-7-global-dual-sim-td-lte-64gb-m1901f7g-redmi-note-seven/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 18.0, + "camera": 16.5, + "battery": 15.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-7-premium-edition-dual-sim-td-lte-cn-64gb-m1901f7e-m1901f7c/index.json b/site/public/v1/smartphones/redmi-note-7-premium-edition-dual-sim-td-lte-cn-64gb-m1901f7e-m1901f7c/index.json new file mode 100644 index 00000000000..85186ab5d43 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-7-premium-edition-dual-sim-td-lte-cn-64gb-m1901f7e-m1901f7c/index.json @@ -0,0 +1,76 @@ +{ + "id": 5832, + "slug": "redmi-note-7-premium-edition-dual-sim-td-lte-cn-64gb-m1901f7e-m1901f7c", + "name": "Redmi Note 7 Premium Edition Dual SIM TD-LTE CN 64GB M1901F7E / M1901F7C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2019-01-17", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 19.5, + "camera": 16.5, + "battery": 15.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.939307", + "updated_at": "2026-06-19T00:43:44.939307" +} diff --git a/site/public/v1/smartphones/redmi-note-7-premium-edition-dual-sim-td-lte-cn-64gb-m1901f7e-m1901f7c/score/index.json b/site/public/v1/smartphones/redmi-note-7-premium-edition-dual-sim-td-lte-cn-64gb-m1901f7e-m1901f7c/score/index.json new file mode 100644 index 00000000000..9f4c72987eb --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-7-premium-edition-dual-sim-td-lte-cn-64gb-m1901f7e-m1901f7c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 19.5, + "camera": 16.5, + "battery": 15.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-7-pro-dual-sim-td-lte-cn-128gb-m1901f7be/index.json b/site/public/v1/smartphones/redmi-note-7-pro-dual-sim-td-lte-cn-128gb-m1901f7be/index.json new file mode 100644 index 00000000000..5a0fb5960fb --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-7-pro-dual-sim-td-lte-cn-128gb-m1901f7be/index.json @@ -0,0 +1,76 @@ +{ + "id": 5833, + "slug": "redmi-note-7-pro-dual-sim-td-lte-cn-128gb-m1901f7be", + "name": "Redmi Note 7 Pro Dual SIM TD-LTE CN 128GB M1901F7BE", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-03-17", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.940307", + "updated_at": "2026-06-19T00:43:44.940307" +} diff --git a/site/public/v1/smartphones/redmi-note-7-pro-dual-sim-td-lte-cn-128gb-m1901f7be/score/index.json b/site/public/v1/smartphones/redmi-note-7-pro-dual-sim-td-lte-cn-128gb-m1901f7be/score/index.json new file mode 100644 index 00000000000..449540e604a --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-7-pro-dual-sim-td-lte-cn-128gb-m1901f7be/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-7-pro-dual-sim-td-lte-in-128gb-m1901f7s/index.json b/site/public/v1/smartphones/redmi-note-7-pro-dual-sim-td-lte-in-128gb-m1901f7s/index.json new file mode 100644 index 00000000000..1e9234b14fd --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-7-pro-dual-sim-td-lte-in-128gb-m1901f7s/index.json @@ -0,0 +1,76 @@ +{ + "id": 5834, + "slug": "redmi-note-7-pro-dual-sim-td-lte-in-128gb-m1901f7s", + "name": "Redmi Note 7 Pro Dual SIM TD-LTE IN 128GB M1901F7S", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-04-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.940307", + "updated_at": "2026-06-19T00:43:44.940307" +} diff --git a/site/public/v1/smartphones/redmi-note-7-pro-dual-sim-td-lte-in-128gb-m1901f7s/score/index.json b/site/public/v1/smartphones/redmi-note-7-pro-dual-sim-td-lte-in-128gb-m1901f7s/score/index.json new file mode 100644 index 00000000000..dd5815a4570 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-7-pro-dual-sim-td-lte-in-128gb-m1901f7s/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-7-pro-dual-sim-td-lte-in-64gb-m1901f7s-mzb7462in-mzb7464in/index.json b/site/public/v1/smartphones/redmi-note-7-pro-dual-sim-td-lte-in-64gb-m1901f7s-mzb7462in-mzb7464in/index.json new file mode 100644 index 00000000000..99c9ac2ce04 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-7-pro-dual-sim-td-lte-in-64gb-m1901f7s-mzb7462in-mzb7464in/index.json @@ -0,0 +1,76 @@ +{ + "id": 5835, + "slug": "redmi-note-7-pro-dual-sim-td-lte-in-64gb-m1901f7s-mzb7462in-mzb7464in", + "name": "Redmi Note 7 Pro Dual SIM TD-LTE IN 64GB M1901F7S / MZB7462IN / MZB7464IN", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-03-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.940307", + "updated_at": "2026-06-19T00:43:44.940307" +} diff --git a/site/public/v1/smartphones/redmi-note-7-pro-dual-sim-td-lte-in-64gb-m1901f7s-mzb7462in-mzb7464in/score/index.json b/site/public/v1/smartphones/redmi-note-7-pro-dual-sim-td-lte-in-64gb-m1901f7s-mzb7462in-mzb7464in/score/index.json new file mode 100644 index 00000000000..b5753fbe0c7 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-7-pro-dual-sim-td-lte-in-64gb-m1901f7s-mzb7462in-mzb7464in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-7-standard-edition-dual-sim-td-lte-cn-32gb-m1901f7e-m1901f7c/index.json b/site/public/v1/smartphones/redmi-note-7-standard-edition-dual-sim-td-lte-cn-32gb-m1901f7e-m1901f7c/index.json new file mode 100644 index 00000000000..7497c1faa19 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-7-standard-edition-dual-sim-td-lte-cn-32gb-m1901f7e-m1901f7c/index.json @@ -0,0 +1,76 @@ +{ + "id": 5836, + "slug": "redmi-note-7-standard-edition-dual-sim-td-lte-cn-32gb-m1901f7e-m1901f7c", + "name": "Redmi Note 7 Standard Edition Dual SIM TD-LTE CN 32GB M1901F7E / M1901F7C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2019-01-16", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 18.0, + "camera": 16.5, + "battery": 15.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.940307", + "updated_at": "2026-06-19T00:43:44.940307" +} diff --git a/site/public/v1/smartphones/redmi-note-7-standard-edition-dual-sim-td-lte-cn-32gb-m1901f7e-m1901f7c/score/index.json b/site/public/v1/smartphones/redmi-note-7-standard-edition-dual-sim-td-lte-cn-32gb-m1901f7e-m1901f7c/score/index.json new file mode 100644 index 00000000000..c6401aa4598 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-7-standard-edition-dual-sim-td-lte-cn-32gb-m1901f7e-m1901f7c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 18.0, + "camera": 16.5, + "battery": 15.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-7-standard-edition-dual-sim-td-lte-cn-64gb-m1901f7e-m1901f7c/index.json b/site/public/v1/smartphones/redmi-note-7-standard-edition-dual-sim-td-lte-cn-64gb-m1901f7e-m1901f7c/index.json new file mode 100644 index 00000000000..f456da4b7fe --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-7-standard-edition-dual-sim-td-lte-cn-64gb-m1901f7e-m1901f7c/index.json @@ -0,0 +1,76 @@ +{ + "id": 5837, + "slug": "redmi-note-7-standard-edition-dual-sim-td-lte-cn-64gb-m1901f7e-m1901f7c", + "name": "Redmi Note 7 Standard Edition Dual SIM TD-LTE CN 64GB M1901F7E / M1901F7C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2019-01-16", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 18.0, + "camera": 16.5, + "battery": 15.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.940307", + "updated_at": "2026-06-19T00:43:44.940307" +} diff --git a/site/public/v1/smartphones/redmi-note-7-standard-edition-dual-sim-td-lte-cn-64gb-m1901f7e-m1901f7c/score/index.json b/site/public/v1/smartphones/redmi-note-7-standard-edition-dual-sim-td-lte-cn-64gb-m1901f7e-m1901f7c/score/index.json new file mode 100644 index 00000000000..c6401aa4598 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-7-standard-edition-dual-sim-td-lte-cn-64gb-m1901f7e-m1901f7c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 18.0, + "camera": 16.5, + "battery": 15.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-7s-dual-sim-td-lte-in-32gb-mzb7744in-mzb7745in-mzb7746in/index.json b/site/public/v1/smartphones/redmi-note-7s-dual-sim-td-lte-in-32gb-mzb7744in-mzb7745in-mzb7746in/index.json new file mode 100644 index 00000000000..016235ca626 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-7s-dual-sim-td-lte-in-32gb-mzb7744in-mzb7745in-mzb7746in/index.json @@ -0,0 +1,76 @@ +{ + "id": 5838, + "slug": "redmi-note-7s-dual-sim-td-lte-in-32gb-mzb7744in-mzb7745in-mzb7746in", + "name": "Redmi Note 7S Dual SIM TD-LTE IN 32GB MZB7744IN / MZB7745IN / MZB7746IN", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2019-05-23", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 18.0, + "camera": 16.5, + "battery": 15.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.940307", + "updated_at": "2026-06-19T00:43:44.940307" +} diff --git a/site/public/v1/smartphones/redmi-note-7s-dual-sim-td-lte-in-32gb-mzb7744in-mzb7745in-mzb7746in/score/index.json b/site/public/v1/smartphones/redmi-note-7s-dual-sim-td-lte-in-32gb-mzb7744in-mzb7745in-mzb7746in/score/index.json new file mode 100644 index 00000000000..c6401aa4598 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-7s-dual-sim-td-lte-in-32gb-mzb7744in-mzb7745in-mzb7746in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 18.0, + "camera": 16.5, + "battery": 15.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-7s-dual-sim-td-lte-in-64gb-mzb7741in-mzb7742in-mzb7743in/index.json b/site/public/v1/smartphones/redmi-note-7s-dual-sim-td-lte-in-64gb-mzb7741in-mzb7742in-mzb7743in/index.json new file mode 100644 index 00000000000..be1fca418b8 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-7s-dual-sim-td-lte-in-64gb-mzb7741in-mzb7742in-mzb7743in/index.json @@ -0,0 +1,76 @@ +{ + "id": 5839, + "slug": "redmi-note-7s-dual-sim-td-lte-in-64gb-mzb7741in-mzb7742in-mzb7743in", + "name": "Redmi Note 7S Dual SIM TD-LTE IN 64GB MZB7741IN / MZB7742IN / MZB7743IN", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2019-05-23", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 18.0, + "camera": 16.5, + "battery": 15.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.940307", + "updated_at": "2026-06-19T00:43:44.940307" +} diff --git a/site/public/v1/smartphones/redmi-note-7s-dual-sim-td-lte-in-64gb-mzb7741in-mzb7742in-mzb7743in/score/index.json b/site/public/v1/smartphones/redmi-note-7s-dual-sim-td-lte-in-64gb-mzb7741in-mzb7742in-mzb7743in/score/index.json new file mode 100644 index 00000000000..c6401aa4598 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-7s-dual-sim-td-lte-in-64gb-mzb7741in-mzb7742in-mzb7743in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 18.0, + "camera": 16.5, + "battery": 15.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-8-2021-global-dual-sim-td-lte-128gb-m1908c3jgg/index.json b/site/public/v1/smartphones/redmi-note-8-2021-global-dual-sim-td-lte-128gb-m1908c3jgg/index.json new file mode 100644 index 00000000000..de286614e8a --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-2021-global-dual-sim-td-lte-128gb-m1908c3jgg/index.json @@ -0,0 +1,76 @@ +{ + "id": 6220, + "slug": "redmi-note-8-2021-global-dual-sim-td-lte-128gb-m1908c3jgg", + "name": "Redmi Note 8 2021 Global Dual SIM TD-LTE 128GB M1908C3JGG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 63, + "slug": "helio-g85", + "name": "MediaTek Helio G85", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g85" + }, + "release_date": "2021-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.5, + "performance": 0.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.984825", + "updated_at": "2026-06-19T00:43:44.984825" +} diff --git a/site/public/v1/smartphones/redmi-note-8-2021-global-dual-sim-td-lte-128gb-m1908c3jgg/score/index.json b/site/public/v1/smartphones/redmi-note-8-2021-global-dual-sim-td-lte-128gb-m1908c3jgg/score/index.json new file mode 100644 index 00000000000..894d80d1265 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-2021-global-dual-sim-td-lte-128gb-m1908c3jgg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.5, + "performance": 0.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-8-2021-global-dual-sim-td-lte-64gb-m1908c3jgg/index.json b/site/public/v1/smartphones/redmi-note-8-2021-global-dual-sim-td-lte-64gb-m1908c3jgg/index.json new file mode 100644 index 00000000000..14165b45008 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-2021-global-dual-sim-td-lte-64gb-m1908c3jgg/index.json @@ -0,0 +1,76 @@ +{ + "id": 6221, + "slug": "redmi-note-8-2021-global-dual-sim-td-lte-64gb-m1908c3jgg", + "name": "Redmi Note 8 2021 Global Dual SIM TD-LTE 64GB M1908C3JGG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 63, + "slug": "helio-g85", + "name": "MediaTek Helio G85", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g85" + }, + "release_date": "2021-06-01", + "msrp_usd": 169, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.5, + "performance": 0.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.9, + "value": 59.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.984825", + "updated_at": "2026-06-19T00:43:44.984825" +} diff --git a/site/public/v1/smartphones/redmi-note-8-2021-global-dual-sim-td-lte-64gb-m1908c3jgg/score/index.json b/site/public/v1/smartphones/redmi-note-8-2021-global-dual-sim-td-lte-64gb-m1908c3jgg/score/index.json new file mode 100644 index 00000000000..f73964b18bb --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-2021-global-dual-sim-td-lte-64gb-m1908c3jgg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.5, + "performance": 0.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.9, + "value": 59.8 +} diff --git a/site/public/v1/smartphones/redmi-note-8-dual-sim-td-lte-apac-64gb-m1908c3jh/index.json b/site/public/v1/smartphones/redmi-note-8-dual-sim-td-lte-apac-64gb-m1908c3jh/index.json new file mode 100644 index 00000000000..9e7783ec84c --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-dual-sim-td-lte-apac-64gb-m1908c3jh/index.json @@ -0,0 +1,76 @@ +{ + "id": 5840, + "slug": "redmi-note-8-dual-sim-td-lte-apac-64gb-m1908c3jh", + "name": "Redmi Note 8 Dual SIM TD-LTE APAC 64GB M1908C3JH", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.940307", + "updated_at": "2026-06-19T00:43:44.940307" +} diff --git a/site/public/v1/smartphones/redmi-note-8-dual-sim-td-lte-apac-64gb-m1908c3jh/score/index.json b/site/public/v1/smartphones/redmi-note-8-dual-sim-td-lte-apac-64gb-m1908c3jh/score/index.json new file mode 100644 index 00000000000..449540e604a --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-dual-sim-td-lte-apac-64gb-m1908c3jh/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-8-global-dual-sim-td-lte-64gb-m1908c3jg/index.json b/site/public/v1/smartphones/redmi-note-8-global-dual-sim-td-lte-64gb-m1908c3jg/index.json new file mode 100644 index 00000000000..482fb473ffa --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-global-dual-sim-td-lte-64gb-m1908c3jg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5841, + "slug": "redmi-note-8-global-dual-sim-td-lte-64gb-m1908c3jg", + "name": "Redmi Note 8 Global Dual SIM TD-LTE 64GB M1908C3JG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.5, + "performance": 0.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.940307", + "updated_at": "2026-06-19T00:43:44.940307" +} diff --git a/site/public/v1/smartphones/redmi-note-8-global-dual-sim-td-lte-64gb-m1908c3jg/score/index.json b/site/public/v1/smartphones/redmi-note-8-global-dual-sim-td-lte-64gb-m1908c3jg/score/index.json new file mode 100644 index 00000000000..894d80d1265 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-global-dual-sim-td-lte-64gb-m1908c3jg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.5, + "performance": 0.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-8-premium-edition-dual-sim-td-lte-cn-128gb-m1908c3je/index.json b/site/public/v1/smartphones/redmi-note-8-premium-edition-dual-sim-td-lte-cn-128gb-m1908c3je/index.json new file mode 100644 index 00000000000..2a94dada3f8 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-premium-edition-dual-sim-td-lte-cn-128gb-m1908c3je/index.json @@ -0,0 +1,76 @@ +{ + "id": 5842, + "slug": "redmi-note-8-premium-edition-dual-sim-td-lte-cn-128gb-m1908c3je", + "name": "Redmi Note 8 Premium Edition Dual SIM TD-LTE CN 128GB M1908C3JE", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-08-29", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.941307", + "updated_at": "2026-06-19T00:43:44.941307" +} diff --git a/site/public/v1/smartphones/redmi-note-8-premium-edition-dual-sim-td-lte-cn-128gb-m1908c3je/score/index.json b/site/public/v1/smartphones/redmi-note-8-premium-edition-dual-sim-td-lte-cn-128gb-m1908c3je/score/index.json new file mode 100644 index 00000000000..449540e604a --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-premium-edition-dual-sim-td-lte-cn-128gb-m1908c3je/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-8-premium-edition-dual-sim-td-lte-cn-64gb-m1908c3je/index.json b/site/public/v1/smartphones/redmi-note-8-premium-edition-dual-sim-td-lte-cn-64gb-m1908c3je/index.json new file mode 100644 index 00000000000..4b62aa23a4b --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-premium-edition-dual-sim-td-lte-cn-64gb-m1908c3je/index.json @@ -0,0 +1,76 @@ +{ + "id": 5843, + "slug": "redmi-note-8-premium-edition-dual-sim-td-lte-cn-64gb-m1908c3je", + "name": "Redmi Note 8 Premium Edition Dual SIM TD-LTE CN 64GB M1908C3JE", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-08-29", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.941307", + "updated_at": "2026-06-19T00:43:44.941307" +} diff --git a/site/public/v1/smartphones/redmi-note-8-premium-edition-dual-sim-td-lte-cn-64gb-m1908c3je/score/index.json b/site/public/v1/smartphones/redmi-note-8-premium-edition-dual-sim-td-lte-cn-64gb-m1908c3je/score/index.json new file mode 100644 index 00000000000..449540e604a --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-premium-edition-dual-sim-td-lte-cn-64gb-m1908c3je/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 1.5, + "camera": 16.5, + "battery": 15.6, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-8-pro-global-dual-sim-td-lte-128gb-m1906g7g/index.json b/site/public/v1/smartphones/redmi-note-8-pro-global-dual-sim-td-lte-128gb-m1906g7g/index.json new file mode 100644 index 00000000000..a4893d8f463 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-pro-global-dual-sim-td-lte-128gb-m1906g7g/index.json @@ -0,0 +1,77 @@ +{ + "id": 5844, + "slug": "redmi-note-8-pro-global-dual-sim-td-lte-128gb-m1906g7g", + "name": "Redmi Note 8 Pro Global Dual SIM TD-LTE 128GB M1906G7G", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 50, + "slug": "helio-g90", + "name": "Helio G90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 MC4", + "url": "/v1/socs/helio-g90" + }, + "release_date": "2019-09-26", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 199.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 1.5, + "camera": 21.7, + "battery": 23.1, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.941307", + "updated_at": "2026-06-19T00:43:44.941307" +} diff --git a/site/public/v1/smartphones/redmi-note-8-pro-global-dual-sim-td-lte-128gb-m1906g7g/score/index.json b/site/public/v1/smartphones/redmi-note-8-pro-global-dual-sim-td-lte-128gb-m1906g7g/score/index.json new file mode 100644 index 00000000000..800eed5f87b --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-pro-global-dual-sim-td-lte-128gb-m1906g7g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 1.5, + "camera": 21.7, + "battery": 23.1, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-8-pro-global-dual-sim-td-lte-64gb-m1906g7g/index.json b/site/public/v1/smartphones/redmi-note-8-pro-global-dual-sim-td-lte-64gb-m1906g7g/index.json new file mode 100644 index 00000000000..5f1b079de33 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-pro-global-dual-sim-td-lte-64gb-m1906g7g/index.json @@ -0,0 +1,77 @@ +{ + "id": 5845, + "slug": "redmi-note-8-pro-global-dual-sim-td-lte-64gb-m1906g7g", + "name": "Redmi Note 8 Pro Global Dual SIM TD-LTE 64GB M1906G7G", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 50, + "slug": "helio-g90", + "name": "Helio G90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 MC4", + "url": "/v1/socs/helio-g90" + }, + "release_date": "2019-09-26", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 199.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 1.5, + "camera": 21.7, + "battery": 23.1, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.941307", + "updated_at": "2026-06-19T00:43:44.941307" +} diff --git a/site/public/v1/smartphones/redmi-note-8-pro-global-dual-sim-td-lte-64gb-m1906g7g/score/index.json b/site/public/v1/smartphones/redmi-note-8-pro-global-dual-sim-td-lte-64gb-m1906g7g/score/index.json new file mode 100644 index 00000000000..800eed5f87b --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-pro-global-dual-sim-td-lte-64gb-m1906g7g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 1.5, + "camera": 21.7, + "battery": 23.1, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-8-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1906g7e/index.json b/site/public/v1/smartphones/redmi-note-8-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1906g7e/index.json new file mode 100644 index 00000000000..2552118ebaf --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1906g7e/index.json @@ -0,0 +1,77 @@ +{ + "id": 5846, + "slug": "redmi-note-8-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1906g7e", + "name": "Redmi Note 8 Pro Premium Edition Dual SIM TD-LTE CN 128GB M1906G7E", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 50, + "slug": "helio-g90", + "name": "Helio G90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 MC4", + "url": "/v1/socs/helio-g90" + }, + "release_date": "2019-08-29", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 199.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 3.0, + "camera": 21.7, + "battery": 23.1, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.941307", + "updated_at": "2026-06-19T00:43:44.941307" +} diff --git a/site/public/v1/smartphones/redmi-note-8-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1906g7e/score/index.json b/site/public/v1/smartphones/redmi-note-8-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1906g7e/score/index.json new file mode 100644 index 00000000000..22fbcf850ba --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1906g7e/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 3.0, + "camera": 21.7, + "battery": 23.1, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-8-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1906g7t/index.json b/site/public/v1/smartphones/redmi-note-8-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1906g7t/index.json new file mode 100644 index 00000000000..a5eec96bdd0 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1906g7t/index.json @@ -0,0 +1,77 @@ +{ + "id": 5847, + "slug": "redmi-note-8-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1906g7t", + "name": "Redmi Note 8 Pro Premium Edition Dual SIM TD-LTE CN 128GB M1906G7T", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 50, + "slug": "helio-g90", + "name": "Helio G90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 MC4", + "url": "/v1/socs/helio-g90" + }, + "release_date": "2019-08-29", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 199.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 3.0, + "camera": 21.7, + "battery": 23.1, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.941307", + "updated_at": "2026-06-19T00:43:44.941307" +} diff --git a/site/public/v1/smartphones/redmi-note-8-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1906g7t/score/index.json b/site/public/v1/smartphones/redmi-note-8-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1906g7t/score/index.json new file mode 100644 index 00000000000..22fbcf850ba --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-pro-premium-edition-dual-sim-td-lte-cn-128gb-m1906g7t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 3.0, + "camera": 21.7, + "battery": 23.1, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-8-pro-premium-edition-dual-sim-td-lte-in-128gb-m1906g7i/index.json b/site/public/v1/smartphones/redmi-note-8-pro-premium-edition-dual-sim-td-lte-in-128gb-m1906g7i/index.json new file mode 100644 index 00000000000..4c05fbe1a8d --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-pro-premium-edition-dual-sim-td-lte-in-128gb-m1906g7i/index.json @@ -0,0 +1,77 @@ +{ + "id": 5848, + "slug": "redmi-note-8-pro-premium-edition-dual-sim-td-lte-in-128gb-m1906g7i", + "name": "Redmi Note 8 Pro Premium Edition Dual SIM TD-LTE IN 128GB M1906G7I", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 50, + "slug": "helio-g90", + "name": "Helio G90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 MC4", + "url": "/v1/socs/helio-g90" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 199.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 1.5, + "camera": 21.7, + "battery": 23.1, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.941307", + "updated_at": "2026-06-19T00:43:44.941307" +} diff --git a/site/public/v1/smartphones/redmi-note-8-pro-premium-edition-dual-sim-td-lte-in-128gb-m1906g7i/score/index.json b/site/public/v1/smartphones/redmi-note-8-pro-premium-edition-dual-sim-td-lte-in-128gb-m1906g7i/score/index.json new file mode 100644 index 00000000000..800eed5f87b --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-pro-premium-edition-dual-sim-td-lte-in-128gb-m1906g7i/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 1.5, + "camera": 21.7, + "battery": 23.1, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1906g7e/index.json b/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1906g7e/index.json new file mode 100644 index 00000000000..c6d3de82be1 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1906g7e/index.json @@ -0,0 +1,77 @@ +{ + "id": 5850, + "slug": "redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1906g7e", + "name": "Redmi Note 8 Pro Standard Edition Dual SIM TD-LTE CN 128GB M1906G7E", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 50, + "slug": "helio-g90", + "name": "Helio G90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 MC4", + "url": "/v1/socs/helio-g90" + }, + "release_date": "2019-08-29", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 199.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 1.5, + "camera": 21.7, + "battery": 23.1, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.941307", + "updated_at": "2026-06-19T00:43:44.941307" +} diff --git a/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1906g7e/score/index.json b/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1906g7e/score/index.json new file mode 100644 index 00000000000..800eed5f87b --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1906g7e/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 1.5, + "camera": 21.7, + "battery": 23.1, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1906g7t/index.json b/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1906g7t/index.json new file mode 100644 index 00000000000..7f226c99af8 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1906g7t/index.json @@ -0,0 +1,77 @@ +{ + "id": 5851, + "slug": "redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1906g7t", + "name": "Redmi Note 8 Pro Standard Edition Dual SIM TD-LTE CN 128GB M1906G7T", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 50, + "slug": "helio-g90", + "name": "Helio G90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 MC4", + "url": "/v1/socs/helio-g90" + }, + "release_date": "2019-08-29", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 199.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 1.5, + "camera": 21.7, + "battery": 23.1, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.942307", + "updated_at": "2026-06-19T00:43:44.942307" +} diff --git a/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1906g7t/score/index.json b/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1906g7t/score/index.json new file mode 100644 index 00000000000..800eed5f87b --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-128gb-m1906g7t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 1.5, + "camera": 21.7, + "battery": 23.1, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1906g7e/index.json b/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1906g7e/index.json new file mode 100644 index 00000000000..abf5e96aa95 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1906g7e/index.json @@ -0,0 +1,77 @@ +{ + "id": 5852, + "slug": "redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1906g7e", + "name": "Redmi Note 8 Pro Standard Edition Dual SIM TD-LTE CN 64GB M1906G7E", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 50, + "slug": "helio-g90", + "name": "Helio G90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 MC4", + "url": "/v1/socs/helio-g90" + }, + "release_date": "2019-08-29", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 199.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 1.5, + "camera": 21.7, + "battery": 23.1, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.942307", + "updated_at": "2026-06-19T00:43:44.942307" +} diff --git a/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1906g7e/score/index.json b/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1906g7e/score/index.json new file mode 100644 index 00000000000..800eed5f87b --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1906g7e/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 1.5, + "camera": 21.7, + "battery": 23.1, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1906g7t/index.json b/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1906g7t/index.json new file mode 100644 index 00000000000..998e83920af --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1906g7t/index.json @@ -0,0 +1,77 @@ +{ + "id": 5853, + "slug": "redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1906g7t", + "name": "Redmi Note 8 Pro Standard Edition Dual SIM TD-LTE CN 64GB M1906G7T", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 50, + "slug": "helio-g90", + "name": "Helio G90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 MC4", + "url": "/v1/socs/helio-g90" + }, + "release_date": "2019-08-29", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 199.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 1.5, + "camera": 21.7, + "battery": 23.1, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.942307", + "updated_at": "2026-06-19T00:43:44.942307" +} diff --git a/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1906g7t/score/index.json b/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1906g7t/score/index.json new file mode 100644 index 00000000000..800eed5f87b --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-cn-64gb-m1906g7t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 1.5, + "camera": 21.7, + "battery": 23.1, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-in-128gb-m1906g7i/index.json b/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-in-128gb-m1906g7i/index.json new file mode 100644 index 00000000000..de6cd4e9076 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-in-128gb-m1906g7i/index.json @@ -0,0 +1,77 @@ +{ + "id": 5854, + "slug": "redmi-note-8-pro-standard-edition-dual-sim-td-lte-in-128gb-m1906g7i", + "name": "Redmi Note 8 Pro Standard Edition Dual SIM TD-LTE IN 128GB M1906G7I", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 50, + "slug": "helio-g90", + "name": "Helio G90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 MC4", + "url": "/v1/socs/helio-g90" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 199.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 1.5, + "camera": 21.7, + "battery": 23.1, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.942307", + "updated_at": "2026-06-19T00:43:44.942307" +} diff --git a/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-in-128gb-m1906g7i/score/index.json b/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-in-128gb-m1906g7i/score/index.json new file mode 100644 index 00000000000..800eed5f87b --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-in-128gb-m1906g7i/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 1.5, + "camera": 21.7, + "battery": 23.1, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-in-64gb-m1906g7i/index.json b/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-in-64gb-m1906g7i/index.json new file mode 100644 index 00000000000..7e63dd8af76 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-in-64gb-m1906g7i/index.json @@ -0,0 +1,77 @@ +{ + "id": 5855, + "slug": "redmi-note-8-pro-standard-edition-dual-sim-td-lte-in-64gb-m1906g7i", + "name": "Redmi Note 8 Pro Standard Edition Dual SIM TD-LTE IN 64GB M1906G7I", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 50, + "slug": "helio-g90", + "name": "Helio G90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G76 MC4", + "url": "/v1/socs/helio-g90" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 199.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 1.5, + "camera": 21.7, + "battery": 23.1, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.942307", + "updated_at": "2026-06-19T00:43:44.942307" +} diff --git a/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-in-64gb-m1906g7i/score/index.json b/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-in-64gb-m1906g7i/score/index.json new file mode 100644 index 00000000000..800eed5f87b --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-pro-standard-edition-dual-sim-td-lte-in-64gb-m1906g7i/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 1.5, + "camera": 21.7, + "battery": 23.1, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-8-standard-edition-dual-sim-td-lte-cn-64gb-m1908c3je/index.json b/site/public/v1/smartphones/redmi-note-8-standard-edition-dual-sim-td-lte-cn-64gb-m1908c3je/index.json new file mode 100644 index 00000000000..ea0574c5e83 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-standard-edition-dual-sim-td-lte-cn-64gb-m1908c3je/index.json @@ -0,0 +1,76 @@ +{ + "id": 5858, + "slug": "redmi-note-8-standard-edition-dual-sim-td-lte-cn-64gb-m1908c3je", + "name": "Redmi Note 8 Standard Edition Dual SIM TD-LTE CN 64GB M1908C3JE", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-08-29", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.5, + "performance": 0.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.942307", + "updated_at": "2026-06-19T00:43:44.942307" +} diff --git a/site/public/v1/smartphones/redmi-note-8-standard-edition-dual-sim-td-lte-cn-64gb-m1908c3je/score/index.json b/site/public/v1/smartphones/redmi-note-8-standard-edition-dual-sim-td-lte-cn-64gb-m1908c3je/score/index.json new file mode 100644 index 00000000000..894d80d1265 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8-standard-edition-dual-sim-td-lte-cn-64gb-m1908c3je/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.5, + "performance": 0.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-8t-premium-edition-global-dual-sim-td-lte-128gb-m1908c3xg/index.json b/site/public/v1/smartphones/redmi-note-8t-premium-edition-global-dual-sim-td-lte-128gb-m1908c3xg/index.json new file mode 100644 index 00000000000..eb8c2ece0cf --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8t-premium-edition-global-dual-sim-td-lte-128gb-m1908c3xg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5859, + "slug": "redmi-note-8t-premium-edition-global-dual-sim-td-lte-128gb-m1908c3xg", + "name": "Redmi Note 8T Premium Edition Global Dual SIM TD-LTE 128GB M1908C3XG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-11-13", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 199.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.5, + "performance": 0.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.942307", + "updated_at": "2026-06-19T00:43:44.942307" +} diff --git a/site/public/v1/smartphones/redmi-note-8t-premium-edition-global-dual-sim-td-lte-128gb-m1908c3xg/score/index.json b/site/public/v1/smartphones/redmi-note-8t-premium-edition-global-dual-sim-td-lte-128gb-m1908c3xg/score/index.json new file mode 100644 index 00000000000..894d80d1265 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8t-premium-edition-global-dual-sim-td-lte-128gb-m1908c3xg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.5, + "performance": 0.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-8t-premium-edition-global-dual-sim-td-lte-64gb-m1908c3xg/index.json b/site/public/v1/smartphones/redmi-note-8t-premium-edition-global-dual-sim-td-lte-64gb-m1908c3xg/index.json new file mode 100644 index 00000000000..6b14550bb9b --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8t-premium-edition-global-dual-sim-td-lte-64gb-m1908c3xg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5860, + "slug": "redmi-note-8t-premium-edition-global-dual-sim-td-lte-64gb-m1908c3xg", + "name": "Redmi Note 8T Premium Edition Global Dual SIM TD-LTE 64GB M1908C3XG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-11-11", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 199.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.5, + "performance": 0.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.942307", + "updated_at": "2026-06-19T00:43:44.942307" +} diff --git a/site/public/v1/smartphones/redmi-note-8t-premium-edition-global-dual-sim-td-lte-64gb-m1908c3xg/score/index.json b/site/public/v1/smartphones/redmi-note-8t-premium-edition-global-dual-sim-td-lte-64gb-m1908c3xg/score/index.json new file mode 100644 index 00000000000..894d80d1265 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8t-premium-edition-global-dual-sim-td-lte-64gb-m1908c3xg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.5, + "performance": 0.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-8t-standard-edition-global-dual-sim-td-lte-32gb-m1908c3xg/index.json b/site/public/v1/smartphones/redmi-note-8t-standard-edition-global-dual-sim-td-lte-32gb-m1908c3xg/index.json new file mode 100644 index 00000000000..f00ea36fbf1 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8t-standard-edition-global-dual-sim-td-lte-32gb-m1908c3xg/index.json @@ -0,0 +1,76 @@ +{ + "id": 5861, + "slug": "redmi-note-8t-standard-edition-global-dual-sim-td-lte-32gb-m1908c3xg", + "name": "Redmi Note 8T Standard Edition Global Dual SIM TD-LTE 32GB M1908C3XG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-11-11", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 199.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.5, + "performance": 0.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.943306", + "updated_at": "2026-06-19T00:43:44.943306" +} diff --git a/site/public/v1/smartphones/redmi-note-8t-standard-edition-global-dual-sim-td-lte-32gb-m1908c3xg/score/index.json b/site/public/v1/smartphones/redmi-note-8t-standard-edition-global-dual-sim-td-lte-32gb-m1908c3xg/score/index.json new file mode 100644 index 00000000000..894d80d1265 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-8t-standard-edition-global-dual-sim-td-lte-32gb-m1908c3xg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.5, + "performance": 0.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-9-4g-premium-edition-dual-sim-td-lte-cn-128gb-m2010j19ct/index.json b/site/public/v1/smartphones/redmi-note-9-4g-premium-edition-dual-sim-td-lte-cn-128gb-m2010j19ct/index.json new file mode 100644 index 00000000000..fef50d9c6a2 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-9-4g-premium-edition-dual-sim-td-lte-cn-128gb-m2010j19ct/index.json @@ -0,0 +1,76 @@ +{ + "id": 6015, + "slug": "redmi-note-9-4g-premium-edition-dual-sim-td-lte-cn-128gb-m2010j19ct", + "name": "Redmi Note 9 4G Premium Edition Dual SIM TD-LTE CN 128GB M2010J19CT", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2020-11-27", + "msrp_usd": 1099, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.0, + "performance": 1.5, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": 32.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.961311", + "updated_at": "2026-06-19T00:43:44.961311" +} diff --git a/site/public/v1/smartphones/redmi-note-9-4g-premium-edition-dual-sim-td-lte-cn-128gb-m2010j19ct/score/index.json b/site/public/v1/smartphones/redmi-note-9-4g-premium-edition-dual-sim-td-lte-cn-128gb-m2010j19ct/score/index.json new file mode 100644 index 00000000000..6f185778344 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-9-4g-premium-edition-dual-sim-td-lte-cn-128gb-m2010j19ct/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.0, + "performance": 1.5, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": 32.8 +} diff --git a/site/public/v1/smartphones/redmi-note-9-4g-standard-edition-dual-sim-td-lte-cn-128gb-m2010j19ct/index.json b/site/public/v1/smartphones/redmi-note-9-4g-standard-edition-dual-sim-td-lte-cn-128gb-m2010j19ct/index.json new file mode 100644 index 00000000000..0031ffae434 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-9-4g-standard-edition-dual-sim-td-lte-cn-128gb-m2010j19ct/index.json @@ -0,0 +1,76 @@ +{ + "id": 6016, + "slug": "redmi-note-9-4g-standard-edition-dual-sim-td-lte-cn-128gb-m2010j19ct", + "name": "Redmi Note 9 4G Standard Edition Dual SIM TD-LTE CN 128GB M2010J19CT", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2020-11-27", + "msrp_usd": 999, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": 36.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.961311", + "updated_at": "2026-06-19T00:43:44.961311" +} diff --git a/site/public/v1/smartphones/redmi-note-9-4g-standard-edition-dual-sim-td-lte-cn-128gb-m2010j19ct/score/index.json b/site/public/v1/smartphones/redmi-note-9-4g-standard-edition-dual-sim-td-lte-cn-128gb-m2010j19ct/score/index.json new file mode 100644 index 00000000000..1622a7f250a --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-9-4g-standard-edition-dual-sim-td-lte-cn-128gb-m2010j19ct/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.6, + "performance": 0.0, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": 36.4 +} diff --git a/site/public/v1/smartphones/redmi-note-9-4g-top-edition-dual-sim-td-lte-cn-128gb-m2010j19ct/index.json b/site/public/v1/smartphones/redmi-note-9-4g-top-edition-dual-sim-td-lte-cn-128gb-m2010j19ct/index.json new file mode 100644 index 00000000000..ba3cd890f66 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-9-4g-top-edition-dual-sim-td-lte-cn-128gb-m2010j19ct/index.json @@ -0,0 +1,76 @@ +{ + "id": 6017, + "slug": "redmi-note-9-4g-top-edition-dual-sim-td-lte-cn-128gb-m2010j19ct", + "name": "Redmi Note 9 4G Top Edition Dual SIM TD-LTE CN 128GB M2010J19CT", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2020-11-27", + "msrp_usd": 1299, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 3.0, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": 25.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.961311", + "updated_at": "2026-06-19T00:43:44.961311" +} diff --git a/site/public/v1/smartphones/redmi-note-9-4g-top-edition-dual-sim-td-lte-cn-128gb-m2010j19ct/score/index.json b/site/public/v1/smartphones/redmi-note-9-4g-top-edition-dual-sim-td-lte-cn-128gb-m2010j19ct/score/index.json new file mode 100644 index 00000000000..dcc00c37459 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-9-4g-top-edition-dual-sim-td-lte-cn-128gb-m2010j19ct/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 3.0, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": 25.3 +} diff --git a/site/public/v1/smartphones/redmi-note-9-4g-top-edition-dual-sim-td-lte-cn-256gb-m2010j19ct/index.json b/site/public/v1/smartphones/redmi-note-9-4g-top-edition-dual-sim-td-lte-cn-256gb-m2010j19ct/index.json new file mode 100644 index 00000000000..4240cc15072 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-9-4g-top-edition-dual-sim-td-lte-cn-256gb-m2010j19ct/index.json @@ -0,0 +1,76 @@ +{ + "id": 6018, + "slug": "redmi-note-9-4g-top-edition-dual-sim-td-lte-cn-256gb-m2010j19ct", + "name": "Redmi Note 9 4G Top Edition Dual SIM TD-LTE CN 256GB M2010J19CT", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2020-12-01", + "msrp_usd": 1499, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 3.0, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": 17.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.961311", + "updated_at": "2026-06-19T00:43:44.961311" +} diff --git a/site/public/v1/smartphones/redmi-note-9-4g-top-edition-dual-sim-td-lte-cn-256gb-m2010j19ct/score/index.json b/site/public/v1/smartphones/redmi-note-9-4g-top-edition-dual-sim-td-lte-cn-256gb-m2010j19ct/score/index.json new file mode 100644 index 00000000000..1f0546da3c7 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-9-4g-top-edition-dual-sim-td-lte-cn-256gb-m2010j19ct/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 3.0, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": 17.6 +} diff --git a/site/public/v1/smartphones/redmi-note-9-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2007j22c/index.json b/site/public/v1/smartphones/redmi-note-9-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2007j22c/index.json new file mode 100644 index 00000000000..b707cdab551 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-9-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2007j22c/index.json @@ -0,0 +1,77 @@ +{ + "id": 6019, + "slug": "redmi-note-9-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2007j22c", + "name": "Redmi Note 9 5G Premium Edition Dual SIM TD-LTE CN 128GB M2007J22C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2020-11-29", + "msrp_usd": 1499, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 27.0, + "value": 13.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.961311", + "updated_at": "2026-06-19T00:43:44.961311" +} diff --git a/site/public/v1/smartphones/redmi-note-9-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2007j22c/score/index.json b/site/public/v1/smartphones/redmi-note-9-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2007j22c/score/index.json new file mode 100644 index 00000000000..101d39191fd --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-9-5g-premium-edition-dual-sim-td-lte-cn-128gb-m2007j22c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 27.0, + "value": 13.6 +} diff --git a/site/public/v1/smartphones/redmi-note-9-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2007j22c/index.json b/site/public/v1/smartphones/redmi-note-9-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2007j22c/index.json new file mode 100644 index 00000000000..791bc190ae5 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-9-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2007j22c/index.json @@ -0,0 +1,77 @@ +{ + "id": 6020, + "slug": "redmi-note-9-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2007j22c", + "name": "Redmi Note 9 5G Premium Edition Dual SIM TD-LTE CN 256GB M2007J22C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2020-11-29", + "msrp_usd": 1699, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 27.0, + "value": 9.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.961311", + "updated_at": "2026-06-19T00:43:44.961311" +} diff --git a/site/public/v1/smartphones/redmi-note-9-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2007j22c/score/index.json b/site/public/v1/smartphones/redmi-note-9-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2007j22c/score/index.json new file mode 100644 index 00000000000..e20d28d1df8 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-9-5g-premium-edition-dual-sim-td-lte-cn-256gb-m2007j22c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 27.0, + "value": 9.7 +} diff --git a/site/public/v1/smartphones/redmi-note-9-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2007j22c/index.json b/site/public/v1/smartphones/redmi-note-9-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2007j22c/index.json new file mode 100644 index 00000000000..211a10c32b4 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-9-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2007j22c/index.json @@ -0,0 +1,77 @@ +{ + "id": 6021, + "slug": "redmi-note-9-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2007j22c", + "name": "Redmi Note 9 5G Standard Edition Dual SIM TD-LTE CN 128GB M2007J22C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2020-11-29", + "msrp_usd": 1299, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 27.0, + "value": 21.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.962311", + "updated_at": "2026-06-19T00:43:44.962311" +} diff --git a/site/public/v1/smartphones/redmi-note-9-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2007j22c/score/index.json b/site/public/v1/smartphones/redmi-note-9-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2007j22c/score/index.json new file mode 100644 index 00000000000..b5189d15080 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-9-5g-standard-edition-dual-sim-td-lte-cn-128gb-m2007j22c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 27.0, + "value": 21.0 +} diff --git a/site/public/v1/smartphones/redmi-note-9-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2007j22c/index.json b/site/public/v1/smartphones/redmi-note-9-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2007j22c/index.json new file mode 100644 index 00000000000..1fe7d02b568 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-9-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2007j22c/index.json @@ -0,0 +1,77 @@ +{ + "id": 6022, + "slug": "redmi-note-9-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2007j22c", + "name": "Redmi Note 9 5G Standard Edition Dual SIM TD-LTE CN 256GB M2007J22C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2020-12-01", + "msrp_usd": 1599, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 27.0, + "value": 9.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.962311", + "updated_at": "2026-06-19T00:43:44.962311" +} diff --git a/site/public/v1/smartphones/redmi-note-9-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2007j22c/score/index.json b/site/public/v1/smartphones/redmi-note-9-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2007j22c/score/index.json new file mode 100644 index 00000000000..58f757243b1 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-9-5g-standard-edition-dual-sim-td-lte-cn-256gb-m2007j22c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 27.0, + "value": 9.5 +} diff --git a/site/public/v1/smartphones/redmi-note-9-global-dual-sim-td-lte-128gb-m2003j15sg/index.json b/site/public/v1/smartphones/redmi-note-9-global-dual-sim-td-lte-128gb-m2003j15sg/index.json new file mode 100644 index 00000000000..59f489d0644 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-9-global-dual-sim-td-lte-128gb-m2003j15sg/index.json @@ -0,0 +1,77 @@ +{ + "id": 6023, + "slug": "redmi-note-9-global-dual-sim-td-lte-128gb-m2003j15sg", + "name": "Redmi Note 9 Global Dual SIM TD-LTE 128GB M2003J15SG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 63, + "slug": "helio-g85", + "name": "MediaTek Helio G85", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g85" + }, + "release_date": "2020-05-13", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5020, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 0.0, + "camera": 16.5, + "battery": 30.9, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.962311", + "updated_at": "2026-06-19T00:43:44.962311" +} diff --git a/site/public/v1/smartphones/redmi-note-9-global-dual-sim-td-lte-128gb-m2003j15sg/score/index.json b/site/public/v1/smartphones/redmi-note-9-global-dual-sim-td-lte-128gb-m2003j15sg/score/index.json new file mode 100644 index 00000000000..2b1bab1ff31 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-9-global-dual-sim-td-lte-128gb-m2003j15sg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 0.0, + "camera": 16.5, + "battery": 30.9, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-9-global-dual-sim-td-lte-128gb-m2003j15ss/index.json b/site/public/v1/smartphones/redmi-note-9-global-dual-sim-td-lte-128gb-m2003j15ss/index.json new file mode 100644 index 00000000000..69d8ad1ba4f --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-9-global-dual-sim-td-lte-128gb-m2003j15ss/index.json @@ -0,0 +1,77 @@ +{ + "id": 6024, + "slug": "redmi-note-9-global-dual-sim-td-lte-128gb-m2003j15ss", + "name": "Redmi Note 9 Global Dual SIM TD-LTE 128GB M2003J15SS", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 63, + "slug": "helio-g85", + "name": "MediaTek Helio G85", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g85" + }, + "release_date": "2020-05-13", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5020, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 0.0, + "camera": 16.5, + "battery": 30.9, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.962311", + "updated_at": "2026-06-19T00:43:44.962311" +} diff --git a/site/public/v1/smartphones/redmi-note-9-global-dual-sim-td-lte-128gb-m2003j15ss/score/index.json b/site/public/v1/smartphones/redmi-note-9-global-dual-sim-td-lte-128gb-m2003j15ss/score/index.json new file mode 100644 index 00000000000..2b1bab1ff31 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-9-global-dual-sim-td-lte-128gb-m2003j15ss/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 0.0, + "camera": 16.5, + "battery": 30.9, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-9-global-dual-sim-td-lte-64gb-m2003j15sg/index.json b/site/public/v1/smartphones/redmi-note-9-global-dual-sim-td-lte-64gb-m2003j15sg/index.json new file mode 100644 index 00000000000..f88a32ffa9d --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-9-global-dual-sim-td-lte-64gb-m2003j15sg/index.json @@ -0,0 +1,77 @@ +{ + "id": 6025, + "slug": "redmi-note-9-global-dual-sim-td-lte-64gb-m2003j15sg", + "name": "Redmi Note 9 Global Dual SIM TD-LTE 64GB M2003J15SG", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 63, + "slug": "helio-g85", + "name": "MediaTek Helio G85", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g85" + }, + "release_date": "2020-05-13", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5020, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 0.0, + "camera": 16.5, + "battery": 30.9, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.962311", + "updated_at": "2026-06-19T00:43:44.962311" +} diff --git a/site/public/v1/smartphones/redmi-note-9-global-dual-sim-td-lte-64gb-m2003j15sg/score/index.json b/site/public/v1/smartphones/redmi-note-9-global-dual-sim-td-lte-64gb-m2003j15sg/score/index.json new file mode 100644 index 00000000000..2b1bab1ff31 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-9-global-dual-sim-td-lte-64gb-m2003j15sg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 0.0, + "camera": 16.5, + "battery": 30.9, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-9-global-dual-sim-td-lte-64gb-m2003j15ss/index.json b/site/public/v1/smartphones/redmi-note-9-global-dual-sim-td-lte-64gb-m2003j15ss/index.json new file mode 100644 index 00000000000..300a8dce9b9 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-9-global-dual-sim-td-lte-64gb-m2003j15ss/index.json @@ -0,0 +1,77 @@ +{ + "id": 6026, + "slug": "redmi-note-9-global-dual-sim-td-lte-64gb-m2003j15ss", + "name": "Redmi Note 9 Global Dual SIM TD-LTE 64GB M2003J15SS", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 63, + "slug": "helio-g85", + "name": "MediaTek Helio G85", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-g85" + }, + "release_date": "2020-05-13", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5020, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 0.0, + "camera": 16.5, + "battery": 30.9, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.962311", + "updated_at": "2026-06-19T00:43:44.962311" +} diff --git a/site/public/v1/smartphones/redmi-note-9-global-dual-sim-td-lte-64gb-m2003j15ss/score/index.json b/site/public/v1/smartphones/redmi-note-9-global-dual-sim-td-lte-64gb-m2003j15ss/score/index.json new file mode 100644 index 00000000000..2b1bab1ff31 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-9-global-dual-sim-td-lte-64gb-m2003j15ss/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 0.0, + "camera": 16.5, + "battery": 30.9, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-9t-5g-a001xm-dual-sim-td-lte-jp-64gb-m2007j22r/index.json b/site/public/v1/smartphones/redmi-note-9t-5g-a001xm-dual-sim-td-lte-jp-64gb-m2007j22r/index.json new file mode 100644 index 00000000000..befb88edb05 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-9t-5g-a001xm-dual-sim-td-lte-jp-64gb-m2007j22r/index.json @@ -0,0 +1,77 @@ +{ + "id": 6223, + "slug": "redmi-note-9t-5g-a001xm-dual-sim-td-lte-jp-64gb-m2007j22r", + "name": "Redmi Note 9T 5G A001XM Dual SIM TD-LTE JP 64GB M2007J22R", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2021-02-26", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.985824", + "updated_at": "2026-06-19T00:43:44.985824" +} diff --git a/site/public/v1/smartphones/redmi-note-9t-5g-a001xm-dual-sim-td-lte-jp-64gb-m2007j22r/score/index.json b/site/public/v1/smartphones/redmi-note-9t-5g-a001xm-dual-sim-td-lte-jp-64gb-m2007j22r/score/index.json new file mode 100644 index 00000000000..e0270cc5d56 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-9t-5g-a001xm-dual-sim-td-lte-jp-64gb-m2007j22r/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-note-9t-5g-global-dual-sim-td-lte-128gb-m2007j22g/index.json b/site/public/v1/smartphones/redmi-note-9t-5g-global-dual-sim-td-lte-128gb-m2007j22g/index.json new file mode 100644 index 00000000000..d435b07de2f --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-9t-5g-global-dual-sim-td-lte-128gb-m2007j22g/index.json @@ -0,0 +1,77 @@ +{ + "id": 6224, + "slug": "redmi-note-9t-5g-global-dual-sim-td-lte-128gb-m2007j22g", + "name": "Redmi Note 9T 5G Global Dual SIM TD-LTE 128GB M2007J22G", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2021-01-01", + "msrp_usd": 269, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 27.0, + "value": 59.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.985824", + "updated_at": "2026-06-19T00:43:44.985824" +} diff --git a/site/public/v1/smartphones/redmi-note-9t-5g-global-dual-sim-td-lte-128gb-m2007j22g/score/index.json b/site/public/v1/smartphones/redmi-note-9t-5g-global-dual-sim-td-lte-128gb-m2007j22g/score/index.json new file mode 100644 index 00000000000..9a634b17e46 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-9t-5g-global-dual-sim-td-lte-128gb-m2007j22g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 27.0, + "value": 59.2 +} diff --git a/site/public/v1/smartphones/redmi-note-9t-5g-global-dual-sim-td-lte-64gb-m2007j22g/index.json b/site/public/v1/smartphones/redmi-note-9t-5g-global-dual-sim-td-lte-64gb-m2007j22g/index.json new file mode 100644 index 00000000000..811696d920d --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-9t-5g-global-dual-sim-td-lte-64gb-m2007j22g/index.json @@ -0,0 +1,77 @@ +{ + "id": 6225, + "slug": "redmi-note-9t-5g-global-dual-sim-td-lte-64gb-m2007j22g", + "name": "Redmi Note 9T 5G Global Dual SIM TD-LTE 64GB M2007J22G", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2021-01-16", + "msrp_usd": 229, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.1 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 27.0, + "value": 59.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.985824", + "updated_at": "2026-06-19T00:43:44.985824" +} diff --git a/site/public/v1/smartphones/redmi-note-9t-5g-global-dual-sim-td-lte-64gb-m2007j22g/score/index.json b/site/public/v1/smartphones/redmi-note-9t-5g-global-dual-sim-td-lte-64gb-m2007j22g/score/index.json new file mode 100644 index 00000000000..9a634b17e46 --- /dev/null +++ b/site/public/v1/smartphones/redmi-note-9t-5g-global-dual-sim-td-lte-64gb-m2007j22g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 27.0, + "value": 59.2 +} diff --git a/site/public/v1/smartphones/redmi-s2-dual-sim-global-td-lte-32gb-m1803e6g/index.json b/site/public/v1/smartphones/redmi-s2-dual-sim-global-td-lte-32gb-m1803e6g/index.json new file mode 100644 index 00000000000..a6f719dea4f --- /dev/null +++ b/site/public/v1/smartphones/redmi-s2-dual-sim-global-td-lte-32gb-m1803e6g/index.json @@ -0,0 +1,76 @@ +{ + "id": 5694, + "slug": "redmi-s2-dual-sim-global-td-lte-32gb-m1803e6g", + "name": "Redmi S2 Dual SIM Global TD-LTE 32GB M1803E6G", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 114, + "slug": "snapdragon-625", + "name": "Snapdragon 625", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-625" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3080, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 5.1, + "battery": 1.2, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.924307", + "updated_at": "2026-06-19T00:43:44.924307" +} diff --git a/site/public/v1/smartphones/redmi-s2-dual-sim-global-td-lte-32gb-m1803e6g/score/index.json b/site/public/v1/smartphones/redmi-s2-dual-sim-global-td-lte-32gb-m1803e6g/score/index.json new file mode 100644 index 00000000000..ce9c672fa40 --- /dev/null +++ b/site/public/v1/smartphones/redmi-s2-dual-sim-global-td-lte-32gb-m1803e6g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 5.1, + "battery": 1.2, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-s2-dual-sim-global-td-lte-64gb-m1803e6g/index.json b/site/public/v1/smartphones/redmi-s2-dual-sim-global-td-lte-64gb-m1803e6g/index.json new file mode 100644 index 00000000000..f3426998123 --- /dev/null +++ b/site/public/v1/smartphones/redmi-s2-dual-sim-global-td-lte-64gb-m1803e6g/index.json @@ -0,0 +1,76 @@ +{ + "id": 5695, + "slug": "redmi-s2-dual-sim-global-td-lte-64gb-m1803e6g", + "name": "Redmi S2 Dual SIM Global TD-LTE 64GB M1803E6G", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 114, + "slug": "snapdragon-625", + "name": "Snapdragon 625", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-625" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3080, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 5.1, + "battery": 1.2, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.924307", + "updated_at": "2026-06-19T00:43:44.924307" +} diff --git a/site/public/v1/smartphones/redmi-s2-dual-sim-global-td-lte-64gb-m1803e6g/score/index.json b/site/public/v1/smartphones/redmi-s2-dual-sim-global-td-lte-64gb-m1803e6g/score/index.json new file mode 100644 index 00000000000..ce9c672fa40 --- /dev/null +++ b/site/public/v1/smartphones/redmi-s2-dual-sim-global-td-lte-64gb-m1803e6g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 5.1, + "battery": 1.2, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-cn-32gb-m1803e6e-m1803e6c/index.json b/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-cn-32gb-m1803e6e-m1803e6c/index.json new file mode 100644 index 00000000000..e271bafe42a --- /dev/null +++ b/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-cn-32gb-m1803e6e-m1803e6c/index.json @@ -0,0 +1,76 @@ +{ + "id": 5696, + "slug": "redmi-s2-dual-sim-td-lte-cn-32gb-m1803e6e-m1803e6c", + "name": "Redmi S2 Dual SIM TD-LTE CN 32GB M1803E6E / M1803E6C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 114, + "slug": "snapdragon-625", + "name": "Snapdragon 625", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-625" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3080, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 5.1, + "battery": 1.2, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.924307", + "updated_at": "2026-06-19T00:43:44.924307" +} diff --git a/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-cn-32gb-m1803e6e-m1803e6c/score/index.json b/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-cn-32gb-m1803e6e-m1803e6c/score/index.json new file mode 100644 index 00000000000..ce9c672fa40 --- /dev/null +++ b/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-cn-32gb-m1803e6e-m1803e6c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 5.1, + "battery": 1.2, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-cn-32gb-m1803e6t/index.json b/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-cn-32gb-m1803e6t/index.json new file mode 100644 index 00000000000..12d0bb619ef --- /dev/null +++ b/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-cn-32gb-m1803e6t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5697, + "slug": "redmi-s2-dual-sim-td-lte-cn-32gb-m1803e6t", + "name": "Redmi S2 Dual SIM TD-LTE CN 32GB M1803E6T", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 114, + "slug": "snapdragon-625", + "name": "Snapdragon 625", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-625" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3080, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 5.1, + "battery": 1.2, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.924307", + "updated_at": "2026-06-19T00:43:44.924307" +} diff --git a/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-cn-32gb-m1803e6t/score/index.json b/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-cn-32gb-m1803e6t/score/index.json new file mode 100644 index 00000000000..ce9c672fa40 --- /dev/null +++ b/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-cn-32gb-m1803e6t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 5.1, + "battery": 1.2, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-cn-64gb-m1803e6e-m1803e6c/index.json b/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-cn-64gb-m1803e6e-m1803e6c/index.json new file mode 100644 index 00000000000..4aea2632cc3 --- /dev/null +++ b/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-cn-64gb-m1803e6e-m1803e6c/index.json @@ -0,0 +1,76 @@ +{ + "id": 5698, + "slug": "redmi-s2-dual-sim-td-lte-cn-64gb-m1803e6e-m1803e6c", + "name": "Redmi S2 Dual SIM TD-LTE CN 64GB M1803E6E / M1803E6C", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 114, + "slug": "snapdragon-625", + "name": "Snapdragon 625", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-625" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3080, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 5.1, + "battery": 1.2, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.924307", + "updated_at": "2026-06-19T00:43:44.924307" +} diff --git a/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-cn-64gb-m1803e6e-m1803e6c/score/index.json b/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-cn-64gb-m1803e6e-m1803e6c/score/index.json new file mode 100644 index 00000000000..ce9c672fa40 --- /dev/null +++ b/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-cn-64gb-m1803e6e-m1803e6c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 5.1, + "battery": 1.2, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-cn-64gb-m1803e6t/index.json b/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-cn-64gb-m1803e6t/index.json new file mode 100644 index 00000000000..bd8fd1fb9b8 --- /dev/null +++ b/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-cn-64gb-m1803e6t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5699, + "slug": "redmi-s2-dual-sim-td-lte-cn-64gb-m1803e6t", + "name": "Redmi S2 Dual SIM TD-LTE CN 64GB M1803E6T", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 114, + "slug": "snapdragon-625", + "name": "Snapdragon 625", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-625" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3080, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 5.1, + "battery": 1.2, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.924307", + "updated_at": "2026-06-19T00:43:44.924307" +} diff --git a/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-cn-64gb-m1803e6t/score/index.json b/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-cn-64gb-m1803e6t/score/index.json new file mode 100644 index 00000000000..ce9c672fa40 --- /dev/null +++ b/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-cn-64gb-m1803e6t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 5.1, + "battery": 1.2, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-eg-bd-mx-32gb-m1803e6h/index.json b/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-eg-bd-mx-32gb-m1803e6h/index.json new file mode 100644 index 00000000000..61e7bccf36d --- /dev/null +++ b/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-eg-bd-mx-32gb-m1803e6h/index.json @@ -0,0 +1,76 @@ +{ + "id": 5700, + "slug": "redmi-s2-dual-sim-td-lte-eg-bd-mx-32gb-m1803e6h", + "name": "Redmi S2 Dual SIM TD-LTE EG BD MX 32GB M1803E6H", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 114, + "slug": "snapdragon-625", + "name": "Snapdragon 625", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-625" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.1, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.925307", + "updated_at": "2026-06-19T00:43:44.925307" +} diff --git a/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-eg-bd-mx-32gb-m1803e6h/score/index.json b/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-eg-bd-mx-32gb-m1803e6h/score/index.json new file mode 100644 index 00000000000..42df51812b8 --- /dev/null +++ b/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-eg-bd-mx-32gb-m1803e6h/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.1, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-eg-bd-mx-64gb-m1803e6h/index.json b/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-eg-bd-mx-64gb-m1803e6h/index.json new file mode 100644 index 00000000000..33bc2c04ddb --- /dev/null +++ b/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-eg-bd-mx-64gb-m1803e6h/index.json @@ -0,0 +1,76 @@ +{ + "id": 5701, + "slug": "redmi-s2-dual-sim-td-lte-eg-bd-mx-64gb-m1803e6h", + "name": "Redmi S2 Dual SIM TD-LTE EG BD MX 64GB M1803E6H", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 114, + "slug": "snapdragon-625", + "name": "Snapdragon 625", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-625" + }, + "release_date": "2018-06-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.1, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.925307", + "updated_at": "2026-06-19T00:43:44.925307" +} diff --git a/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-eg-bd-mx-64gb-m1803e6h/score/index.json b/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-eg-bd-mx-64gb-m1803e6h/score/index.json new file mode 100644 index 00000000000..42df51812b8 --- /dev/null +++ b/site/public/v1/smartphones/redmi-s2-dual-sim-td-lte-eg-bd-mx-64gb-m1803e6h/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.1, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-y2-dual-sim-td-lte-in-32gb-mzb6144in-mzb6145in-mzb6783in-mzb6784in/index.json b/site/public/v1/smartphones/redmi-y2-dual-sim-td-lte-in-32gb-mzb6144in-mzb6145in-mzb6783in-mzb6784in/index.json new file mode 100644 index 00000000000..36c4e040385 --- /dev/null +++ b/site/public/v1/smartphones/redmi-y2-dual-sim-td-lte-in-32gb-mzb6144in-mzb6145in-mzb6783in-mzb6784in/index.json @@ -0,0 +1,76 @@ +{ + "id": 5702, + "slug": "redmi-y2-dual-sim-td-lte-in-32gb-mzb6144in-mzb6145in-mzb6783in-mzb6784in", + "name": "Redmi Y2 Dual SIM TD-LTE IN 32GB MZB6144IN / MZB6145IN / MZB6783IN / MZB6784IN", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 114, + "slug": "snapdragon-625", + "name": "Snapdragon 625", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-625" + }, + "release_date": "2018-06-19", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3080, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 5.1, + "battery": 1.2, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.925307", + "updated_at": "2026-06-19T00:43:44.925307" +} diff --git a/site/public/v1/smartphones/redmi-y2-dual-sim-td-lte-in-32gb-mzb6144in-mzb6145in-mzb6783in-mzb6784in/score/index.json b/site/public/v1/smartphones/redmi-y2-dual-sim-td-lte-in-32gb-mzb6144in-mzb6145in-mzb6783in-mzb6784in/score/index.json new file mode 100644 index 00000000000..ce9c672fa40 --- /dev/null +++ b/site/public/v1/smartphones/redmi-y2-dual-sim-td-lte-in-32gb-mzb6144in-mzb6145in-mzb6783in-mzb6784in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 5.1, + "battery": 1.2, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-y2-dual-sim-td-lte-in-64gb-mzb6305in-mzb6306in-mzb6307in/index.json b/site/public/v1/smartphones/redmi-y2-dual-sim-td-lte-in-64gb-mzb6305in-mzb6306in-mzb6307in/index.json new file mode 100644 index 00000000000..5a8c84df1ee --- /dev/null +++ b/site/public/v1/smartphones/redmi-y2-dual-sim-td-lte-in-64gb-mzb6305in-mzb6306in-mzb6307in/index.json @@ -0,0 +1,76 @@ +{ + "id": 5703, + "slug": "redmi-y2-dual-sim-td-lte-in-64gb-mzb6305in-mzb6306in-mzb6307in", + "name": "Redmi Y2 Dual SIM TD-LTE IN 64GB MZB6305IN / MZB6306IN / MZB6307IN", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 114, + "slug": "snapdragon-625", + "name": "Snapdragon 625", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-625" + }, + "release_date": "2018-06-19", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3080, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 5.1, + "battery": 1.2, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.925307", + "updated_at": "2026-06-19T00:43:44.925307" +} diff --git a/site/public/v1/smartphones/redmi-y2-dual-sim-td-lte-in-64gb-mzb6305in-mzb6306in-mzb6307in/score/index.json b/site/public/v1/smartphones/redmi-y2-dual-sim-td-lte-in-64gb-mzb6305in-mzb6306in-mzb6307in/score/index.json new file mode 100644 index 00000000000..ce9c672fa40 --- /dev/null +++ b/site/public/v1/smartphones/redmi-y2-dual-sim-td-lte-in-64gb-mzb6305in-mzb6306in-mzb6307in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 5.1, + "battery": 1.2, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-y3-global-dual-sim-td-lte-32gb-m1810f6g/index.json b/site/public/v1/smartphones/redmi-y3-global-dual-sim-td-lte-32gb-m1810f6g/index.json new file mode 100644 index 00000000000..abd9604c9c1 --- /dev/null +++ b/site/public/v1/smartphones/redmi-y3-global-dual-sim-td-lte-32gb-m1810f6g/index.json @@ -0,0 +1,76 @@ +{ + "id": 5862, + "slug": "redmi-y3-global-dual-sim-td-lte-32gb-m1810f6g", + "name": "Redmi Y3 Global Dual SIM TD-LTE 32GB M1810F6G", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "1520x720", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.943306", + "updated_at": "2026-06-19T00:43:44.943306" +} diff --git a/site/public/v1/smartphones/redmi-y3-global-dual-sim-td-lte-32gb-m1810f6g/score/index.json b/site/public/v1/smartphones/redmi-y3-global-dual-sim-td-lte-32gb-m1810f6g/score/index.json new file mode 100644 index 00000000000..5427221399e --- /dev/null +++ b/site/public/v1/smartphones/redmi-y3-global-dual-sim-td-lte-32gb-m1810f6g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-y3-premium-edition-dual-sim-td-lte-in-32gb-m1810f6i/index.json b/site/public/v1/smartphones/redmi-y3-premium-edition-dual-sim-td-lte-in-32gb-m1810f6i/index.json new file mode 100644 index 00000000000..fcd529f64fd --- /dev/null +++ b/site/public/v1/smartphones/redmi-y3-premium-edition-dual-sim-td-lte-in-32gb-m1810f6i/index.json @@ -0,0 +1,76 @@ +{ + "id": 5863, + "slug": "redmi-y3-premium-edition-dual-sim-td-lte-in-32gb-m1810f6i", + "name": "Redmi Y3 Premium Edition Dual SIM TD-LTE IN 32GB M1810F6I", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-04-29", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "1520x720", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.943306", + "updated_at": "2026-06-19T00:43:44.943306" +} diff --git a/site/public/v1/smartphones/redmi-y3-premium-edition-dual-sim-td-lte-in-32gb-m1810f6i/score/index.json b/site/public/v1/smartphones/redmi-y3-premium-edition-dual-sim-td-lte-in-32gb-m1810f6i/score/index.json new file mode 100644 index 00000000000..5427221399e --- /dev/null +++ b/site/public/v1/smartphones/redmi-y3-premium-edition-dual-sim-td-lte-in-32gb-m1810f6i/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/redmi-y3-standard-edition-dual-sim-td-lte-in-32gb-m1810f6i/index.json b/site/public/v1/smartphones/redmi-y3-standard-edition-dual-sim-td-lte-in-32gb-m1810f6i/index.json new file mode 100644 index 00000000000..7e9528b81f9 --- /dev/null +++ b/site/public/v1/smartphones/redmi-y3-standard-edition-dual-sim-td-lte-in-32gb-m1810f6i/index.json @@ -0,0 +1,76 @@ +{ + "id": 5864, + "slug": "redmi-y3-standard-edition-dual-sim-td-lte-in-32gb-m1810f6i", + "name": "Redmi Y3 Standard Edition Dual SIM TD-LTE IN 32GB M1810F6I", + "brand": { + "id": 45, + "slug": "xiaomi", + "name": "Xiaomi", + "country": "CN", + "url": "/v1/brands/xiaomi" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-04-29", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "1520x720", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.943306", + "updated_at": "2026-06-19T00:43:44.943306" +} diff --git a/site/public/v1/smartphones/redmi-y3-standard-edition-dual-sim-td-lte-in-32gb-m1810f6i/score/index.json b/site/public/v1/smartphones/redmi-y3-standard-edition-dual-sim-td-lte-in-32gb-m1810f6i/score/index.json new file mode 100644 index 00000000000..5427221399e --- /dev/null +++ b/site/public/v1/smartphones/redmi-y3-standard-edition-dual-sim-td-lte-in-32gb-m1810f6i/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.1, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/reno-10x-zoom-edition-dual-sim-td-lte-id-my-v3-256gb-cph1919/index.json b/site/public/v1/smartphones/reno-10x-zoom-edition-dual-sim-td-lte-id-my-v3-256gb-cph1919/index.json new file mode 100644 index 00000000000..a7538147443 --- /dev/null +++ b/site/public/v1/smartphones/reno-10x-zoom-edition-dual-sim-td-lte-id-my-v3-256gb-cph1919/index.json @@ -0,0 +1,76 @@ +{ + "id": 2955, + "slug": "reno-10x-zoom-edition-dual-sim-td-lte-id-my-v3-256gb-cph1919", + "name": "Reno 10x Zoom Edition Dual SIM TD-LTE ID MY V3 256GB CPH1919", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-28", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4065, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 3.0, + "camera": 16.5, + "battery": 16.0, + "display": 43.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.527924", + "updated_at": "2026-06-19T00:43:44.527924" +} diff --git a/site/public/v1/smartphones/reno-10x-zoom-edition-dual-sim-td-lte-id-my-v3-256gb-cph1919/score/index.json b/site/public/v1/smartphones/reno-10x-zoom-edition-dual-sim-td-lte-id-my-v3-256gb-cph1919/score/index.json new file mode 100644 index 00000000000..fe07777bde2 --- /dev/null +++ b/site/public/v1/smartphones/reno-10x-zoom-edition-dual-sim-td-lte-id-my-v3-256gb-cph1919/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 3.0, + "camera": 16.5, + "battery": 16.0, + "display": 43.8, + "value": null +} diff --git a/site/public/v1/smartphones/reno-10x-zoom-edition-dual-sim-td-lte-tw-v2-256gb-cph1919/index.json b/site/public/v1/smartphones/reno-10x-zoom-edition-dual-sim-td-lte-tw-v2-256gb-cph1919/index.json new file mode 100644 index 00000000000..6d7c7bc4b2b --- /dev/null +++ b/site/public/v1/smartphones/reno-10x-zoom-edition-dual-sim-td-lte-tw-v2-256gb-cph1919/index.json @@ -0,0 +1,76 @@ +{ + "id": 2956, + "slug": "reno-10x-zoom-edition-dual-sim-td-lte-tw-v2-256gb-cph1919", + "name": "Reno 10x Zoom Edition Dual SIM TD-LTE TW V2 256GB CPH1919", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4065, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 3.0, + "camera": 16.5, + "battery": 16.0, + "display": 43.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.527924", + "updated_at": "2026-06-19T00:43:44.527924" +} diff --git a/site/public/v1/smartphones/reno-10x-zoom-edition-dual-sim-td-lte-tw-v2-256gb-cph1919/score/index.json b/site/public/v1/smartphones/reno-10x-zoom-edition-dual-sim-td-lte-tw-v2-256gb-cph1919/score/index.json new file mode 100644 index 00000000000..fe07777bde2 --- /dev/null +++ b/site/public/v1/smartphones/reno-10x-zoom-edition-dual-sim-td-lte-tw-v2-256gb-cph1919/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 3.0, + "camera": 16.5, + "battery": 16.0, + "display": 43.8, + "value": null +} diff --git a/site/public/v1/smartphones/reno-10x-zoom-edition-global-dual-sim-td-lte-v1-128gb-cph1919/index.json b/site/public/v1/smartphones/reno-10x-zoom-edition-global-dual-sim-td-lte-v1-128gb-cph1919/index.json new file mode 100644 index 00000000000..ea333053b9d --- /dev/null +++ b/site/public/v1/smartphones/reno-10x-zoom-edition-global-dual-sim-td-lte-v1-128gb-cph1919/index.json @@ -0,0 +1,76 @@ +{ + "id": 2957, + "slug": "reno-10x-zoom-edition-global-dual-sim-td-lte-v1-128gb-cph1919", + "name": "Reno 10x Zoom Edition Global Dual SIM TD-LTE V1 128GB CPH1919", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4065, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 16.5, + "battery": 16.0, + "display": 43.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.527924", + "updated_at": "2026-06-19T00:43:44.527924" +} diff --git a/site/public/v1/smartphones/reno-10x-zoom-edition-global-dual-sim-td-lte-v1-128gb-cph1919/score/index.json b/site/public/v1/smartphones/reno-10x-zoom-edition-global-dual-sim-td-lte-v1-128gb-cph1919/score/index.json new file mode 100644 index 00000000000..78d12bb5255 --- /dev/null +++ b/site/public/v1/smartphones/reno-10x-zoom-edition-global-dual-sim-td-lte-v1-128gb-cph1919/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 16.5, + "battery": 16.0, + "display": 43.8, + "value": null +} diff --git a/site/public/v1/smartphones/reno-10x-zoom-edition-global-dual-sim-td-lte-v1-256gb-cph1919/index.json b/site/public/v1/smartphones/reno-10x-zoom-edition-global-dual-sim-td-lte-v1-256gb-cph1919/index.json new file mode 100644 index 00000000000..859749dfd64 --- /dev/null +++ b/site/public/v1/smartphones/reno-10x-zoom-edition-global-dual-sim-td-lte-v1-256gb-cph1919/index.json @@ -0,0 +1,76 @@ +{ + "id": 2958, + "slug": "reno-10x-zoom-edition-global-dual-sim-td-lte-v1-256gb-cph1919", + "name": "Reno 10x Zoom Edition Global Dual SIM TD-LTE V1 256GB CPH1919", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4065, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 3.0, + "camera": 16.5, + "battery": 16.0, + "display": 43.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.527924", + "updated_at": "2026-06-19T00:43:44.527924" +} diff --git a/site/public/v1/smartphones/reno-10x-zoom-edition-global-dual-sim-td-lte-v1-256gb-cph1919/score/index.json b/site/public/v1/smartphones/reno-10x-zoom-edition-global-dual-sim-td-lte-v1-256gb-cph1919/score/index.json new file mode 100644 index 00000000000..fe07777bde2 --- /dev/null +++ b/site/public/v1/smartphones/reno-10x-zoom-edition-global-dual-sim-td-lte-v1-256gb-cph1919/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 3.0, + "camera": 16.5, + "battery": 16.0, + "display": 43.8, + "value": null +} diff --git a/site/public/v1/smartphones/reno-10x-zoom-premium-edition-dual-sim-td-lte-cn-256gb-pccm00/index.json b/site/public/v1/smartphones/reno-10x-zoom-premium-edition-dual-sim-td-lte-cn-256gb-pccm00/index.json new file mode 100644 index 00000000000..90fe8923fbc --- /dev/null +++ b/site/public/v1/smartphones/reno-10x-zoom-premium-edition-dual-sim-td-lte-cn-256gb-pccm00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2959, + "slug": "reno-10x-zoom-premium-edition-dual-sim-td-lte-cn-256gb-pccm00", + "name": "Reno 10x Zoom Premium Edition Dual SIM TD-LTE CN 256GB PCCM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-11", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4065, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 3.0, + "camera": 16.5, + "battery": 16.0, + "display": 43.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.527924", + "updated_at": "2026-06-19T00:43:44.527924" +} diff --git a/site/public/v1/smartphones/reno-10x-zoom-premium-edition-dual-sim-td-lte-cn-256gb-pccm00/score/index.json b/site/public/v1/smartphones/reno-10x-zoom-premium-edition-dual-sim-td-lte-cn-256gb-pccm00/score/index.json new file mode 100644 index 00000000000..fe07777bde2 --- /dev/null +++ b/site/public/v1/smartphones/reno-10x-zoom-premium-edition-dual-sim-td-lte-cn-256gb-pccm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 3.0, + "camera": 16.5, + "battery": 16.0, + "display": 43.8, + "value": null +} diff --git a/site/public/v1/smartphones/reno-10x-zoom-special-edition-dual-sim-td-lte-id-my-v3-256gb/index.json b/site/public/v1/smartphones/reno-10x-zoom-special-edition-dual-sim-td-lte-id-my-v3-256gb/index.json new file mode 100644 index 00000000000..ead028879a3 --- /dev/null +++ b/site/public/v1/smartphones/reno-10x-zoom-special-edition-dual-sim-td-lte-id-my-v3-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2960, + "slug": "reno-10x-zoom-special-edition-dual-sim-td-lte-id-my-v3-256gb", + "name": "Reno 10x Zoom Special Edition Dual SIM TD-LTE ID MY V3 256GB", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-11-29", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4065, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 6.0, + "camera": 16.5, + "battery": 16.0, + "display": 43.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.528924", + "updated_at": "2026-06-19T00:43:44.528924" +} diff --git a/site/public/v1/smartphones/reno-10x-zoom-special-edition-dual-sim-td-lte-id-my-v3-256gb/score/index.json b/site/public/v1/smartphones/reno-10x-zoom-special-edition-dual-sim-td-lte-id-my-v3-256gb/score/index.json new file mode 100644 index 00000000000..27f41a1af12 --- /dev/null +++ b/site/public/v1/smartphones/reno-10x-zoom-special-edition-dual-sim-td-lte-id-my-v3-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 6.0, + "camera": 16.5, + "battery": 16.0, + "display": 43.8, + "value": null +} diff --git a/site/public/v1/smartphones/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-128gb-pccm00/index.json b/site/public/v1/smartphones/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-128gb-pccm00/index.json new file mode 100644 index 00000000000..1f53403fb5f --- /dev/null +++ b/site/public/v1/smartphones/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-128gb-pccm00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2961, + "slug": "reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-128gb-pccm00", + "name": "Reno 10x Zoom Standard Edition Dual SIM TD-LTE CN 128GB PCCM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-11", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4065, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 16.5, + "battery": 16.0, + "display": 43.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.528924", + "updated_at": "2026-06-19T00:43:44.528924" +} diff --git a/site/public/v1/smartphones/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-128gb-pccm00/score/index.json b/site/public/v1/smartphones/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-128gb-pccm00/score/index.json new file mode 100644 index 00000000000..78d12bb5255 --- /dev/null +++ b/site/public/v1/smartphones/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-128gb-pccm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 16.5, + "battery": 16.0, + "display": 43.8, + "value": null +} diff --git a/site/public/v1/smartphones/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-128gb-pcct00/index.json b/site/public/v1/smartphones/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-128gb-pcct00/index.json new file mode 100644 index 00000000000..309da3bfd12 --- /dev/null +++ b/site/public/v1/smartphones/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-128gb-pcct00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2962, + "slug": "reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-128gb-pcct00", + "name": "Reno 10x Zoom Standard Edition Dual SIM TD-LTE CN 128GB PCCT00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-11", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4065, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 16.5, + "battery": 16.0, + "display": 43.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.528924", + "updated_at": "2026-06-19T00:43:44.528924" +} diff --git a/site/public/v1/smartphones/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-128gb-pcct00/score/index.json b/site/public/v1/smartphones/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-128gb-pcct00/score/index.json new file mode 100644 index 00000000000..78d12bb5255 --- /dev/null +++ b/site/public/v1/smartphones/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-128gb-pcct00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 16.5, + "battery": 16.0, + "display": 43.8, + "value": null +} diff --git a/site/public/v1/smartphones/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-256gb-pccm00/index.json b/site/public/v1/smartphones/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-256gb-pccm00/index.json new file mode 100644 index 00000000000..e3a7b2b3c75 --- /dev/null +++ b/site/public/v1/smartphones/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-256gb-pccm00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2963, + "slug": "reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-256gb-pccm00", + "name": "Reno 10x Zoom Standard Edition Dual SIM TD-LTE CN 256GB PCCM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-11", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4065, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 16.5, + "battery": 16.0, + "display": 43.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.528924", + "updated_at": "2026-06-19T00:43:44.528924" +} diff --git a/site/public/v1/smartphones/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-256gb-pccm00/score/index.json b/site/public/v1/smartphones/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-256gb-pccm00/score/index.json new file mode 100644 index 00000000000..78d12bb5255 --- /dev/null +++ b/site/public/v1/smartphones/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-256gb-pccm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 16.5, + "battery": 16.0, + "display": 43.8, + "value": null +} diff --git a/site/public/v1/smartphones/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-256gb-pcct00/index.json b/site/public/v1/smartphones/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-256gb-pcct00/index.json new file mode 100644 index 00000000000..64db1c0905d --- /dev/null +++ b/site/public/v1/smartphones/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-256gb-pcct00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2964, + "slug": "reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-256gb-pcct00", + "name": "Reno 10x Zoom Standard Edition Dual SIM TD-LTE CN 256GB PCCT00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-11", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4065, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 3.0, + "camera": 16.5, + "battery": 16.0, + "display": 43.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.528924", + "updated_at": "2026-06-19T00:43:44.528924" +} diff --git a/site/public/v1/smartphones/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-256gb-pcct00/score/index.json b/site/public/v1/smartphones/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-256gb-pcct00/score/index.json new file mode 100644 index 00000000000..fe07777bde2 --- /dev/null +++ b/site/public/v1/smartphones/reno-10x-zoom-standard-edition-dual-sim-td-lte-cn-256gb-pcct00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 3.0, + "camera": 16.5, + "battery": 16.0, + "display": 43.8, + "value": null +} diff --git a/site/public/v1/smartphones/reno-5f-2021-dual-sim-td-lte-v1-id-128gb-cph2217/index.json b/site/public/v1/smartphones/reno-5f-2021-dual-sim-td-lte-v1-id-128gb-cph2217/index.json new file mode 100644 index 00000000000..6397af1c1c5 --- /dev/null +++ b/site/public/v1/smartphones/reno-5f-2021-dual-sim-td-lte-v1-id-128gb-cph2217/index.json @@ -0,0 +1,77 @@ +{ + "id": 3394, + "slug": "reno-5f-2021-dual-sim-td-lte-v1-id-128gb-cph2217", + "name": "Reno 5F 2021 Dual SIM TD-LTE V1 ID 128GB CPH2217", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 65, + "slug": "helio-p95", + "name": "Helio P95", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GM9446", + "url": "/v1/socs/helio-p95" + }, + "release_date": "2021-03-17", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4310, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 3.0, + "camera": 16.5, + "battery": 22.5, + "display": 28.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.590896", + "updated_at": "2026-06-19T00:43:44.590896" +} diff --git a/site/public/v1/smartphones/reno-5f-2021-dual-sim-td-lte-v1-id-128gb-cph2217/score/index.json b/site/public/v1/smartphones/reno-5f-2021-dual-sim-td-lte-v1-id-128gb-cph2217/score/index.json new file mode 100644 index 00000000000..49b86e4f49f --- /dev/null +++ b/site/public/v1/smartphones/reno-5f-2021-dual-sim-td-lte-v1-id-128gb-cph2217/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 3.0, + "camera": 16.5, + "battery": 22.5, + "display": 28.4, + "value": null +} diff --git a/site/public/v1/smartphones/reno-5f-2021-dual-sim-td-lte-v2-my-ke-128gb-cph2217/index.json b/site/public/v1/smartphones/reno-5f-2021-dual-sim-td-lte-v2-my-ke-128gb-cph2217/index.json new file mode 100644 index 00000000000..8c04fa670cd --- /dev/null +++ b/site/public/v1/smartphones/reno-5f-2021-dual-sim-td-lte-v2-my-ke-128gb-cph2217/index.json @@ -0,0 +1,77 @@ +{ + "id": 3395, + "slug": "reno-5f-2021-dual-sim-td-lte-v2-my-ke-128gb-cph2217", + "name": "Reno 5F 2021 Dual SIM TD-LTE V2 MY KE 128GB CPH2217", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 65, + "slug": "helio-p95", + "name": "Helio P95", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GM9446", + "url": "/v1/socs/helio-p95" + }, + "release_date": "2021-03-17", + "msrp_usd": 1199, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4310, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 3.0, + "camera": 16.5, + "battery": 22.5, + "display": 28.4, + "value": 24.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.590896", + "updated_at": "2026-06-19T00:43:44.590896" +} diff --git a/site/public/v1/smartphones/reno-5f-2021-dual-sim-td-lte-v2-my-ke-128gb-cph2217/score/index.json b/site/public/v1/smartphones/reno-5f-2021-dual-sim-td-lte-v2-my-ke-128gb-cph2217/score/index.json new file mode 100644 index 00000000000..f2fd534f296 --- /dev/null +++ b/site/public/v1/smartphones/reno-5f-2021-dual-sim-td-lte-v2-my-ke-128gb-cph2217/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 3.0, + "camera": 16.5, + "battery": 22.5, + "display": 28.4, + "value": 24.2 +} diff --git a/site/public/v1/smartphones/reno-5g-global-td-lte-256gb-cph1921/index.json b/site/public/v1/smartphones/reno-5g-global-td-lte-256gb-cph1921/index.json new file mode 100644 index 00000000000..ab2cd1ff606 --- /dev/null +++ b/site/public/v1/smartphones/reno-5g-global-td-lte-256gb-cph1921/index.json @@ -0,0 +1,76 @@ +{ + "id": 2965, + "slug": "reno-5g-global-td-lte-256gb-cph1921", + "name": "Reno 5G Global TD-LTE 256GB CPH1921", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-08-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.65, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4065, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 3.0, + "camera": 16.5, + "battery": 16.0, + "display": 43.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.528924", + "updated_at": "2026-06-19T00:43:44.528924" +} diff --git a/site/public/v1/smartphones/reno-5g-global-td-lte-256gb-cph1921/score/index.json b/site/public/v1/smartphones/reno-5g-global-td-lte-256gb-cph1921/score/index.json new file mode 100644 index 00000000000..fe07777bde2 --- /dev/null +++ b/site/public/v1/smartphones/reno-5g-global-td-lte-256gb-cph1921/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 3.0, + "camera": 16.5, + "battery": 16.0, + "display": 43.8, + "value": null +} diff --git a/site/public/v1/smartphones/reno-5z-5g-2021-dual-sim-td-lte-eu-v1-128gb-cph2211/index.json b/site/public/v1/smartphones/reno-5z-5g-2021-dual-sim-td-lte-eu-v1-128gb-cph2211/index.json new file mode 100644 index 00000000000..228e22b340f --- /dev/null +++ b/site/public/v1/smartphones/reno-5z-5g-2021-dual-sim-td-lte-eu-v1-128gb-cph2211/index.json @@ -0,0 +1,77 @@ +{ + "id": 3397, + "slug": "reno-5z-5g-2021-dual-sim-td-lte-eu-v1-128gb-cph2211", + "name": "Reno 5Z 5G 2021 Dual SIM TD-LTE EU V1 128GB CPH2211", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2021-06-01", + "msrp_usd": 1799, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 4310, + "charging_wired_w": 50.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 3.0, + "camera": 16.5, + "battery": 26.3, + "display": 28.4, + "value": 9.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.590896", + "updated_at": "2026-06-19T00:43:44.590896" +} diff --git a/site/public/v1/smartphones/reno-5z-5g-2021-dual-sim-td-lte-eu-v1-128gb-cph2211/score/index.json b/site/public/v1/smartphones/reno-5z-5g-2021-dual-sim-td-lte-eu-v1-128gb-cph2211/score/index.json new file mode 100644 index 00000000000..227e020fda5 --- /dev/null +++ b/site/public/v1/smartphones/reno-5z-5g-2021-dual-sim-td-lte-eu-v1-128gb-cph2211/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 3.0, + "camera": 16.5, + "battery": 26.3, + "display": 28.4, + "value": 9.3 +} diff --git a/site/public/v1/smartphones/reno-5z-5g-2021-global-dual-sim-td-lte-v2-128gb-cph2211-a94-5g/index.json b/site/public/v1/smartphones/reno-5z-5g-2021-global-dual-sim-td-lte-v2-128gb-cph2211-a94-5g/index.json new file mode 100644 index 00000000000..3ff440e3b74 --- /dev/null +++ b/site/public/v1/smartphones/reno-5z-5g-2021-global-dual-sim-td-lte-v2-128gb-cph2211-a94-5g/index.json @@ -0,0 +1,77 @@ +{ + "id": 3398, + "slug": "reno-5z-5g-2021-global-dual-sim-td-lte-v2-128gb-cph2211-a94-5g", + "name": "Reno 5Z 5G 2021 Global Dual SIM TD-LTE V2 128GB CPH2211 / A94 5G", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2021-04-07", + "msrp_usd": 529, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 4310, + "charging_wired_w": 50.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 3.0, + "camera": 16.5, + "battery": 26.3, + "display": 28.4, + "value": 50.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.590896", + "updated_at": "2026-06-19T00:43:44.590896" +} diff --git a/site/public/v1/smartphones/reno-5z-5g-2021-global-dual-sim-td-lte-v2-128gb-cph2211-a94-5g/score/index.json b/site/public/v1/smartphones/reno-5z-5g-2021-global-dual-sim-td-lte-v2-128gb-cph2211-a94-5g/score/index.json new file mode 100644 index 00000000000..aafc3c8b6eb --- /dev/null +++ b/site/public/v1/smartphones/reno-5z-5g-2021-global-dual-sim-td-lte-v2-128gb-cph2211-a94-5g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 3.0, + "camera": 16.5, + "battery": 26.3, + "display": 28.4, + "value": 50.5 +} diff --git a/site/public/v1/smartphones/reno-6-5g-2021-dual-sim-td-lte-cn-128gb-peqm00/index.json b/site/public/v1/smartphones/reno-6-5g-2021-dual-sim-td-lte-cn-128gb-peqm00/index.json new file mode 100644 index 00000000000..253951bfd59 --- /dev/null +++ b/site/public/v1/smartphones/reno-6-5g-2021-dual-sim-td-lte-cn-128gb-peqm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3400, + "slug": "reno-6-5g-2021-dual-sim-td-lte-cn-128gb-peqm00", + "name": "Reno 6 5G 2021 Dual SIM TD-LTE CN 128GB PEQM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 69, + "slug": "dimensity-900", + "name": "Dimensity 900", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G68 MC4", + "url": "/v1/socs/dimensity-900" + }, + "release_date": "2021-06-11", + "msrp_usd": 2799, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 2150, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 3.0, + "camera": 21.5, + "battery": 14.5, + "display": 40.9, + "value": 10.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.590896", + "updated_at": "2026-06-19T00:43:44.590896" +} diff --git a/site/public/v1/smartphones/reno-6-5g-2021-dual-sim-td-lte-cn-128gb-peqm00/score/index.json b/site/public/v1/smartphones/reno-6-5g-2021-dual-sim-td-lte-cn-128gb-peqm00/score/index.json new file mode 100644 index 00000000000..2aa57fce116 --- /dev/null +++ b/site/public/v1/smartphones/reno-6-5g-2021-dual-sim-td-lte-cn-128gb-peqm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 3.0, + "camera": 21.5, + "battery": 14.5, + "display": 40.9, + "value": 10.0 +} diff --git a/site/public/v1/smartphones/reno-6-5g-2021-dual-sim-td-lte-cn-256gb-peqm00/index.json b/site/public/v1/smartphones/reno-6-5g-2021-dual-sim-td-lte-cn-256gb-peqm00/index.json new file mode 100644 index 00000000000..f9a2daf4849 --- /dev/null +++ b/site/public/v1/smartphones/reno-6-5g-2021-dual-sim-td-lte-cn-256gb-peqm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3401, + "slug": "reno-6-5g-2021-dual-sim-td-lte-cn-256gb-peqm00", + "name": "Reno 6 5G 2021 Dual SIM TD-LTE CN 256GB PEQM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 69, + "slug": "dimensity-900", + "name": "Dimensity 900", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G68 MC4", + "url": "/v1/socs/dimensity-900" + }, + "release_date": "2021-06-11", + "msrp_usd": 3199, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 2150, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 6.0, + "camera": 21.5, + "battery": 14.5, + "display": 40.9, + "value": 10.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.591897", + "updated_at": "2026-06-19T00:43:44.591897" +} diff --git a/site/public/v1/smartphones/reno-6-5g-2021-dual-sim-td-lte-cn-256gb-peqm00/score/index.json b/site/public/v1/smartphones/reno-6-5g-2021-dual-sim-td-lte-cn-256gb-peqm00/score/index.json new file mode 100644 index 00000000000..cd0c2efb672 --- /dev/null +++ b/site/public/v1/smartphones/reno-6-5g-2021-dual-sim-td-lte-cn-256gb-peqm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 6.0, + "camera": 21.5, + "battery": 14.5, + "display": 40.9, + "value": 10.3 +} diff --git a/site/public/v1/smartphones/reno-6-5g-2021-global-dual-sim-td-lte-128gb-cph2215/index.json b/site/public/v1/smartphones/reno-6-5g-2021-global-dual-sim-td-lte-128gb-cph2215/index.json new file mode 100644 index 00000000000..521a5353dce --- /dev/null +++ b/site/public/v1/smartphones/reno-6-5g-2021-global-dual-sim-td-lte-128gb-cph2215/index.json @@ -0,0 +1,77 @@ +{ + "id": 3402, + "slug": "reno-6-5g-2021-global-dual-sim-td-lte-128gb-cph2215", + "name": "Reno 6 5G 2021 Global Dual SIM TD-LTE 128GB CPH2215", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 69, + "slug": "dimensity-900", + "name": "Dimensity 900", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G68 MC4", + "url": "/v1/socs/dimensity-900" + }, + "release_date": "2021-06-11", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 64.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 2150, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 3.0, + "camera": 21.6, + "battery": 14.5, + "display": 40.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.591897", + "updated_at": "2026-06-19T00:43:44.591897" +} diff --git a/site/public/v1/smartphones/reno-6-5g-2021-global-dual-sim-td-lte-128gb-cph2215/score/index.json b/site/public/v1/smartphones/reno-6-5g-2021-global-dual-sim-td-lte-128gb-cph2215/score/index.json new file mode 100644 index 00000000000..3f6c7afdbfe --- /dev/null +++ b/site/public/v1/smartphones/reno-6-5g-2021-global-dual-sim-td-lte-128gb-cph2215/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 3.0, + "camera": 21.6, + "battery": 14.5, + "display": 40.9, + "value": null +} diff --git a/site/public/v1/smartphones/reno-6-pro-5g-2021-dual-sim-td-lte-apac-256gb-cph2249/index.json b/site/public/v1/smartphones/reno-6-pro-5g-2021-dual-sim-td-lte-apac-256gb-cph2249/index.json new file mode 100644 index 00000000000..c05c4948507 --- /dev/null +++ b/site/public/v1/smartphones/reno-6-pro-5g-2021-dual-sim-td-lte-apac-256gb-cph2249/index.json @@ -0,0 +1,77 @@ +{ + "id": 3403, + "slug": "reno-6-pro-5g-2021-dual-sim-td-lte-apac-256gb-cph2249", + "name": "Reno 6 Pro 5G 2021 Dual SIM TD-LTE APAC 256GB CPH2249", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-06-02", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 64.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 6.9, + "camera": 21.6, + "battery": 37.0, + "display": 40.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.591897", + "updated_at": "2026-06-19T00:43:44.591897" +} diff --git a/site/public/v1/smartphones/reno-6-pro-5g-2021-dual-sim-td-lte-apac-256gb-cph2249/score/index.json b/site/public/v1/smartphones/reno-6-pro-5g-2021-dual-sim-td-lte-apac-256gb-cph2249/score/index.json new file mode 100644 index 00000000000..97edc70a9b6 --- /dev/null +++ b/site/public/v1/smartphones/reno-6-pro-5g-2021-dual-sim-td-lte-apac-256gb-cph2249/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 6.9, + "camera": 21.6, + "battery": 37.0, + "display": 40.2, + "value": null +} diff --git a/site/public/v1/smartphones/reno-6-pro-5g-2021-global-dual-sim-td-lte-256gb-cph2247/index.json b/site/public/v1/smartphones/reno-6-pro-5g-2021-global-dual-sim-td-lte-256gb-cph2247/index.json new file mode 100644 index 00000000000..610ac073946 --- /dev/null +++ b/site/public/v1/smartphones/reno-6-pro-5g-2021-global-dual-sim-td-lte-256gb-cph2247/index.json @@ -0,0 +1,77 @@ +{ + "id": 3404, + "slug": "reno-6-pro-5g-2021-global-dual-sim-td-lte-256gb-cph2247", + "name": "Reno 6 Pro 5G 2021 Global Dual SIM TD-LTE 256GB CPH2247", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-09-08", + "msrp_usd": 800, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.7, + "performance": 9.1, + "camera": 17.2, + "battery": 32.0, + "display": 40.5, + "value": 43.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.592897", + "updated_at": "2026-06-19T00:43:44.592897" +} diff --git a/site/public/v1/smartphones/reno-6-pro-5g-2021-global-dual-sim-td-lte-256gb-cph2247/score/index.json b/site/public/v1/smartphones/reno-6-pro-5g-2021-global-dual-sim-td-lte-256gb-cph2247/score/index.json new file mode 100644 index 00000000000..1917b6ac8f6 --- /dev/null +++ b/site/public/v1/smartphones/reno-6-pro-5g-2021-global-dual-sim-td-lte-256gb-cph2247/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.7, + "performance": 9.1, + "camera": 17.2, + "battery": 32.0, + "display": 40.5, + "value": 43.1 +} diff --git a/site/public/v1/smartphones/reno-6-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-penm00/index.json b/site/public/v1/smartphones/reno-6-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-penm00/index.json new file mode 100644 index 00000000000..35d4b47da82 --- /dev/null +++ b/site/public/v1/smartphones/reno-6-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-penm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3405, + "slug": "reno-6-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-penm00", + "name": "Reno 6 Pro+ 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB PENM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-05-01", + "msrp_usd": 4499, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.7, + "performance": 9.1, + "camera": 17.2, + "battery": 32.0, + "display": 40.5, + "value": 12.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.592897", + "updated_at": "2026-06-19T00:43:44.592897" +} diff --git a/site/public/v1/smartphones/reno-6-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-penm00/score/index.json b/site/public/v1/smartphones/reno-6-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-penm00/score/index.json new file mode 100644 index 00000000000..d07e3b32ab0 --- /dev/null +++ b/site/public/v1/smartphones/reno-6-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-penm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.7, + "performance": 9.1, + "camera": 17.2, + "battery": 32.0, + "display": 40.5, + "value": 12.3 +} diff --git a/site/public/v1/smartphones/reno-6-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pepm00/index.json b/site/public/v1/smartphones/reno-6-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pepm00/index.json new file mode 100644 index 00000000000..6f0af342169 --- /dev/null +++ b/site/public/v1/smartphones/reno-6-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pepm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3406, + "slug": "reno-6-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pepm00", + "name": "Reno 6 Pro 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB PEPM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-05-01", + "msrp_usd": 3799, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 64.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 6.9, + "camera": 21.6, + "battery": 37.0, + "display": 40.2, + "value": 13.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.592897", + "updated_at": "2026-06-19T00:43:44.592897" +} diff --git a/site/public/v1/smartphones/reno-6-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pepm00/score/index.json b/site/public/v1/smartphones/reno-6-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pepm00/score/index.json new file mode 100644 index 00000000000..913b50f3fb5 --- /dev/null +++ b/site/public/v1/smartphones/reno-6-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pepm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 6.9, + "camera": 21.6, + "battery": 37.0, + "display": 40.2, + "value": 13.2 +} diff --git a/site/public/v1/smartphones/reno-6-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-penm00/index.json b/site/public/v1/smartphones/reno-6-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-penm00/index.json new file mode 100644 index 00000000000..7b94e7161f6 --- /dev/null +++ b/site/public/v1/smartphones/reno-6-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-penm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3407, + "slug": "reno-6-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-penm00", + "name": "Reno 6 Pro+ 5G 2021 Standard Edition Dual SIM TD-LTE CN 128GB PENM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-05-01", + "msrp_usd": 3999, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 6.1, + "camera": 17.2, + "battery": 32.0, + "display": 40.5, + "value": 11.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.592897", + "updated_at": "2026-06-19T00:43:44.592897" +} diff --git a/site/public/v1/smartphones/reno-6-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-penm00/score/index.json b/site/public/v1/smartphones/reno-6-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-penm00/score/index.json new file mode 100644 index 00000000000..71c38c4a4f8 --- /dev/null +++ b/site/public/v1/smartphones/reno-6-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-penm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 6.1, + "camera": 17.2, + "battery": 32.0, + "display": 40.5, + "value": 11.9 +} diff --git a/site/public/v1/smartphones/reno-6-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-pepm00/index.json b/site/public/v1/smartphones/reno-6-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-pepm00/index.json new file mode 100644 index 00000000000..1965efba10c --- /dev/null +++ b/site/public/v1/smartphones/reno-6-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-pepm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3408, + "slug": "reno-6-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-pepm00", + "name": "Reno 6 Pro 5G 2021 Standard Edition Dual SIM TD-LTE CN 128GB PEPM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-05-01", + "msrp_usd": 3499, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 64.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.7, + "performance": 3.9, + "camera": 21.6, + "battery": 37.0, + "display": 40.2, + "value": 12.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.593893", + "updated_at": "2026-06-19T00:43:44.593893" +} diff --git a/site/public/v1/smartphones/reno-6-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-pepm00/score/index.json b/site/public/v1/smartphones/reno-6-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-pepm00/score/index.json new file mode 100644 index 00000000000..d3f80cb7cf2 --- /dev/null +++ b/site/public/v1/smartphones/reno-6-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-pepm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.7, + "performance": 3.9, + "camera": 21.6, + "battery": 37.0, + "display": 40.2, + "value": 12.8 +} diff --git a/site/public/v1/smartphones/reno-6z-5g-2021-global-dual-sim-td-lte-v1-128gb-cph2237/index.json b/site/public/v1/smartphones/reno-6z-5g-2021-global-dual-sim-td-lte-v1-128gb-cph2237/index.json new file mode 100644 index 00000000000..4ded981174b --- /dev/null +++ b/site/public/v1/smartphones/reno-6z-5g-2021-global-dual-sim-td-lte-v1-128gb-cph2237/index.json @@ -0,0 +1,77 @@ +{ + "id": 3411, + "slug": "reno-6z-5g-2021-global-dual-sim-td-lte-v1-128gb-cph2237", + "name": "Reno 6Z 5G 2021 Global Dual SIM TD-LTE V1 128GB CPH2237", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2021-08-01", + "msrp_usd": 1699, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 413 + }, + "cameras": [ + { + "type": "main", + "mp": 64.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4310, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 3.0, + "camera": 21.6, + "battery": 22.5, + "display": 28.8, + "value": 9.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.593893", + "updated_at": "2026-06-19T00:43:44.593893" +} diff --git a/site/public/v1/smartphones/reno-6z-5g-2021-global-dual-sim-td-lte-v1-128gb-cph2237/score/index.json b/site/public/v1/smartphones/reno-6z-5g-2021-global-dual-sim-td-lte-v1-128gb-cph2237/score/index.json new file mode 100644 index 00000000000..182b62620d2 --- /dev/null +++ b/site/public/v1/smartphones/reno-6z-5g-2021-global-dual-sim-td-lte-v1-128gb-cph2237/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 3.0, + "camera": 21.6, + "battery": 22.5, + "display": 28.8, + "value": 9.5 +} diff --git a/site/public/v1/smartphones/reno-7-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pfdm00/index.json b/site/public/v1/smartphones/reno-7-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pfdm00/index.json new file mode 100644 index 00000000000..9ac5d367224 --- /dev/null +++ b/site/public/v1/smartphones/reno-7-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pfdm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3413, + "slug": "reno-7-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pfdm00", + "name": "Reno 7 Pro 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB PFDM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-11-01", + "msrp_usd": 3999, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.3, + "performance": 6.9, + "camera": 17.2, + "battery": 37.0, + "display": 40.2, + "value": 12.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.593893", + "updated_at": "2026-06-19T00:43:44.593893" +} diff --git a/site/public/v1/smartphones/reno-7-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pfdm00/score/index.json b/site/public/v1/smartphones/reno-7-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pfdm00/score/index.json new file mode 100644 index 00000000000..840e20348d0 --- /dev/null +++ b/site/public/v1/smartphones/reno-7-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-pfdm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.3, + "performance": 6.9, + "camera": 17.2, + "battery": 37.0, + "display": 40.2, + "value": 12.7 +} diff --git a/site/public/v1/smartphones/reno-7-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-pfdm00/index.json b/site/public/v1/smartphones/reno-7-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-pfdm00/index.json new file mode 100644 index 00000000000..08adc70fb41 --- /dev/null +++ b/site/public/v1/smartphones/reno-7-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-pfdm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3414, + "slug": "reno-7-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-pfdm00", + "name": "Reno 7 Pro 5G 2021 Standard Edition Dual SIM TD-LTE CN 256GB PFDM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-11-01", + "msrp_usd": 3699, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 3.9, + "camera": 17.2, + "battery": 37.0, + "display": 40.2, + "value": 12.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.594892", + "updated_at": "2026-06-19T00:43:44.594892" +} diff --git a/site/public/v1/smartphones/reno-7-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-pfdm00/score/index.json b/site/public/v1/smartphones/reno-7-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-pfdm00/score/index.json new file mode 100644 index 00000000000..6ac4692c98b --- /dev/null +++ b/site/public/v1/smartphones/reno-7-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-pfdm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 3.9, + "camera": 17.2, + "battery": 37.0, + "display": 40.2, + "value": 12.3 +} diff --git a/site/public/v1/smartphones/reno-7-se-5g-2021-dual-sim-td-lte-cn-128gb-pfcm00/index.json b/site/public/v1/smartphones/reno-7-se-5g-2021-dual-sim-td-lte-cn-128gb-pfcm00/index.json new file mode 100644 index 00000000000..162321e3aa8 --- /dev/null +++ b/site/public/v1/smartphones/reno-7-se-5g-2021-dual-sim-td-lte-cn-128gb-pfcm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3416, + "slug": "reno-7-se-5g-2021-dual-sim-td-lte-cn-128gb-pfcm00", + "name": "Reno 7 SE 5G 2021 Dual SIM TD-LTE CN 128GB PFCM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 69, + "slug": "dimensity-900", + "name": "Dimensity 900", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G68 MC4", + "url": "/v1/socs/dimensity-900" + }, + "release_date": "2021-12-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 3.0, + "camera": 16.5, + "battery": 30.9, + "display": 40.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.594892", + "updated_at": "2026-06-19T00:43:44.594892" +} diff --git a/site/public/v1/smartphones/reno-7-se-5g-2021-dual-sim-td-lte-cn-128gb-pfcm00/score/index.json b/site/public/v1/smartphones/reno-7-se-5g-2021-dual-sim-td-lte-cn-128gb-pfcm00/score/index.json new file mode 100644 index 00000000000..d6280ee037e --- /dev/null +++ b/site/public/v1/smartphones/reno-7-se-5g-2021-dual-sim-td-lte-cn-128gb-pfcm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 3.0, + "camera": 16.5, + "battery": 30.9, + "display": 40.9, + "value": null +} diff --git a/site/public/v1/smartphones/reno-7-se-5g-2021-dual-sim-td-lte-cn-256gb-pfcm00/index.json b/site/public/v1/smartphones/reno-7-se-5g-2021-dual-sim-td-lte-cn-256gb-pfcm00/index.json new file mode 100644 index 00000000000..e2a28316fd5 --- /dev/null +++ b/site/public/v1/smartphones/reno-7-se-5g-2021-dual-sim-td-lte-cn-256gb-pfcm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3417, + "slug": "reno-7-se-5g-2021-dual-sim-td-lte-cn-256gb-pfcm00", + "name": "Reno 7 SE 5G 2021 Dual SIM TD-LTE CN 256GB PFCM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 69, + "slug": "dimensity-900", + "name": "Dimensity 900", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G68 MC4", + "url": "/v1/socs/dimensity-900" + }, + "release_date": "2021-12-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 3.0, + "camera": 16.5, + "battery": 30.9, + "display": 40.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.594892", + "updated_at": "2026-06-19T00:43:44.594892" +} diff --git a/site/public/v1/smartphones/reno-7-se-5g-2021-dual-sim-td-lte-cn-256gb-pfcm00/score/index.json b/site/public/v1/smartphones/reno-7-se-5g-2021-dual-sim-td-lte-cn-256gb-pfcm00/score/index.json new file mode 100644 index 00000000000..d6280ee037e --- /dev/null +++ b/site/public/v1/smartphones/reno-7-se-5g-2021-dual-sim-td-lte-cn-256gb-pfcm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 3.0, + "camera": 16.5, + "battery": 30.9, + "display": 40.9, + "value": null +} diff --git a/site/public/v1/smartphones/reno-a-dual-sim-td-lte-apac-128gb-cph1983/index.json b/site/public/v1/smartphones/reno-a-dual-sim-td-lte-apac-128gb-cph1983/index.json new file mode 100644 index 00000000000..41d26e96c67 --- /dev/null +++ b/site/public/v1/smartphones/reno-a-dual-sim-td-lte-apac-128gb-cph1983/index.json @@ -0,0 +1,76 @@ +{ + "id": 2966, + "slug": "reno-a-dual-sim-td-lte-apac-128gb-cph1983", + "name": "Reno A Dual SIM TD-LTE APAC 128GB CPH1983", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-10-18", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3600, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 21.5, + "camera": 6.3, + "battery": 9.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.528924", + "updated_at": "2026-06-19T00:43:44.528924" +} diff --git a/site/public/v1/smartphones/reno-a-dual-sim-td-lte-apac-128gb-cph1983/score/index.json b/site/public/v1/smartphones/reno-a-dual-sim-td-lte-apac-128gb-cph1983/score/index.json new file mode 100644 index 00000000000..490de29ab1f --- /dev/null +++ b/site/public/v1/smartphones/reno-a-dual-sim-td-lte-apac-128gb-cph1983/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 21.5, + "camera": 6.3, + "battery": 9.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/reno-a-dual-sim-td-lte-apac-64gb-cph1983/index.json b/site/public/v1/smartphones/reno-a-dual-sim-td-lte-apac-64gb-cph1983/index.json new file mode 100644 index 00000000000..50c4405dd80 --- /dev/null +++ b/site/public/v1/smartphones/reno-a-dual-sim-td-lte-apac-64gb-cph1983/index.json @@ -0,0 +1,76 @@ +{ + "id": 2967, + "slug": "reno-a-dual-sim-td-lte-apac-64gb-cph1983", + "name": "Reno A Dual SIM TD-LTE APAC 64GB CPH1983", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-10-18", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3600, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 21.5, + "camera": 6.3, + "battery": 9.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.528924", + "updated_at": "2026-06-19T00:43:44.528924" +} diff --git a/site/public/v1/smartphones/reno-a-dual-sim-td-lte-apac-64gb-cph1983/score/index.json b/site/public/v1/smartphones/reno-a-dual-sim-td-lte-apac-64gb-cph1983/score/index.json new file mode 100644 index 00000000000..490de29ab1f --- /dev/null +++ b/site/public/v1/smartphones/reno-a-dual-sim-td-lte-apac-64gb-cph1983/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 21.5, + "camera": 6.3, + "battery": 9.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/reno-ace-premium-edition-dual-sim-td-lte-cn-256gb-pclm10/index.json b/site/public/v1/smartphones/reno-ace-premium-edition-dual-sim-td-lte-cn-256gb-pclm10/index.json new file mode 100644 index 00000000000..44d403513cb --- /dev/null +++ b/site/public/v1/smartphones/reno-ace-premium-edition-dual-sim-td-lte-cn-256gb-pclm10/index.json @@ -0,0 +1,77 @@ +{ + "id": 2968, + "slug": "reno-ace-premium-edition-dual-sim-td-lte-cn-256gb-pclm10", + "name": "Reno Ace Premium Edition Dual SIM TD-LTE CN 256GB PCLM10", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-10-12", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 6.0, + "camera": 16.5, + "battery": 24.5, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.528924", + "updated_at": "2026-06-19T00:43:44.528924" +} diff --git a/site/public/v1/smartphones/reno-ace-premium-edition-dual-sim-td-lte-cn-256gb-pclm10/score/index.json b/site/public/v1/smartphones/reno-ace-premium-edition-dual-sim-td-lte-cn-256gb-pclm10/score/index.json new file mode 100644 index 00000000000..c0341a48506 --- /dev/null +++ b/site/public/v1/smartphones/reno-ace-premium-edition-dual-sim-td-lte-cn-256gb-pclm10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 6.0, + "camera": 16.5, + "battery": 24.5, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/reno-ace-standard-edition-dual-sim-td-lte-cn-128gb-pclm10/index.json b/site/public/v1/smartphones/reno-ace-standard-edition-dual-sim-td-lte-cn-128gb-pclm10/index.json new file mode 100644 index 00000000000..12de427628c --- /dev/null +++ b/site/public/v1/smartphones/reno-ace-standard-edition-dual-sim-td-lte-cn-128gb-pclm10/index.json @@ -0,0 +1,77 @@ +{ + "id": 2970, + "slug": "reno-ace-standard-edition-dual-sim-td-lte-cn-128gb-pclm10", + "name": "Reno Ace Standard Edition Dual SIM TD-LTE CN 128GB PCLM10", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-10-12", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 16.5, + "battery": 24.5, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.529925", + "updated_at": "2026-06-19T00:43:44.529925" +} diff --git a/site/public/v1/smartphones/reno-ace-standard-edition-dual-sim-td-lte-cn-128gb-pclm10/score/index.json b/site/public/v1/smartphones/reno-ace-standard-edition-dual-sim-td-lte-cn-128gb-pclm10/score/index.json new file mode 100644 index 00000000000..fdfb86c351a --- /dev/null +++ b/site/public/v1/smartphones/reno-ace-standard-edition-dual-sim-td-lte-cn-128gb-pclm10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 16.5, + "battery": 24.5, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/reno-ace-standard-edition-dual-sim-td-lte-cn-256gb-pclm10/index.json b/site/public/v1/smartphones/reno-ace-standard-edition-dual-sim-td-lte-cn-256gb-pclm10/index.json new file mode 100644 index 00000000000..40f3b36ea2c --- /dev/null +++ b/site/public/v1/smartphones/reno-ace-standard-edition-dual-sim-td-lte-cn-256gb-pclm10/index.json @@ -0,0 +1,77 @@ +{ + "id": 2971, + "slug": "reno-ace-standard-edition-dual-sim-td-lte-cn-256gb-pclm10", + "name": "Reno Ace Standard Edition Dual SIM TD-LTE CN 256GB PCLM10", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-10-12", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 16.5, + "battery": 24.5, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.529925", + "updated_at": "2026-06-19T00:43:44.529925" +} diff --git a/site/public/v1/smartphones/reno-ace-standard-edition-dual-sim-td-lte-cn-256gb-pclm10/score/index.json b/site/public/v1/smartphones/reno-ace-standard-edition-dual-sim-td-lte-cn-256gb-pclm10/score/index.json new file mode 100644 index 00000000000..fdfb86c351a --- /dev/null +++ b/site/public/v1/smartphones/reno-ace-standard-edition-dual-sim-td-lte-cn-256gb-pclm10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 16.5, + "battery": 24.5, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/reno-premium-edition-dual-sim-td-lte-cn-256gb-pcam00/index.json b/site/public/v1/smartphones/reno-premium-edition-dual-sim-td-lte-cn-256gb-pcam00/index.json new file mode 100644 index 00000000000..b637a1e8155 --- /dev/null +++ b/site/public/v1/smartphones/reno-premium-edition-dual-sim-td-lte-cn-256gb-pcam00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2973, + "slug": "reno-premium-edition-dual-sim-td-lte-cn-256gb-pcam00", + "name": "Reno Premium Edition Dual SIM TD-LTE CN 256GB PCAM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3765, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 23.0, + "camera": 16.5, + "battery": 11.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.530925", + "updated_at": "2026-06-19T00:43:44.530925" +} diff --git a/site/public/v1/smartphones/reno-premium-edition-dual-sim-td-lte-cn-256gb-pcam00/score/index.json b/site/public/v1/smartphones/reno-premium-edition-dual-sim-td-lte-cn-256gb-pcam00/score/index.json new file mode 100644 index 00000000000..00908e3635d --- /dev/null +++ b/site/public/v1/smartphones/reno-premium-edition-dual-sim-td-lte-cn-256gb-pcam00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 23.0, + "camera": 16.5, + "battery": 11.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/reno-premium-edition-dual-sim-td-lte-in-id-th-pk-bd-np-v3-256gb-cph1917/index.json b/site/public/v1/smartphones/reno-premium-edition-dual-sim-td-lte-in-id-th-pk-bd-np-v3-256gb-cph1917/index.json new file mode 100644 index 00000000000..afc74b9629f --- /dev/null +++ b/site/public/v1/smartphones/reno-premium-edition-dual-sim-td-lte-in-id-th-pk-bd-np-v3-256gb-cph1917/index.json @@ -0,0 +1,76 @@ +{ + "id": 2974, + "slug": "reno-premium-edition-dual-sim-td-lte-in-id-th-pk-bd-np-v3-256gb-cph1917", + "name": "Reno Premium Edition Dual SIM TD-LTE IN ID TH PK BD NP V3 256GB CPH1917", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3765, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 23.0, + "camera": 16.5, + "battery": 11.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.530925", + "updated_at": "2026-06-19T00:43:44.530925" +} diff --git a/site/public/v1/smartphones/reno-premium-edition-dual-sim-td-lte-in-id-th-pk-bd-np-v3-256gb-cph1917/score/index.json b/site/public/v1/smartphones/reno-premium-edition-dual-sim-td-lte-in-id-th-pk-bd-np-v3-256gb-cph1917/score/index.json new file mode 100644 index 00000000000..00908e3635d --- /dev/null +++ b/site/public/v1/smartphones/reno-premium-edition-dual-sim-td-lte-in-id-th-pk-bd-np-v3-256gb-cph1917/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 23.0, + "camera": 16.5, + "battery": 11.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/reno-premium-edition-dual-sim-td-lte-tw-sg-v4-256gb-cph1917/index.json b/site/public/v1/smartphones/reno-premium-edition-dual-sim-td-lte-tw-sg-v4-256gb-cph1917/index.json new file mode 100644 index 00000000000..a02fc855a7e --- /dev/null +++ b/site/public/v1/smartphones/reno-premium-edition-dual-sim-td-lte-tw-sg-v4-256gb-cph1917/index.json @@ -0,0 +1,76 @@ +{ + "id": 2975, + "slug": "reno-premium-edition-dual-sim-td-lte-tw-sg-v4-256gb-cph1917", + "name": "Reno Premium Edition Dual SIM TD-LTE TW SG V4 256GB CPH1917", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3765, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 23.0, + "camera": 16.5, + "battery": 11.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.530925", + "updated_at": "2026-06-19T00:43:44.530925" +} diff --git a/site/public/v1/smartphones/reno-premium-edition-dual-sim-td-lte-tw-sg-v4-256gb-cph1917/score/index.json b/site/public/v1/smartphones/reno-premium-edition-dual-sim-td-lte-tw-sg-v4-256gb-cph1917/score/index.json new file mode 100644 index 00000000000..00908e3635d --- /dev/null +++ b/site/public/v1/smartphones/reno-premium-edition-dual-sim-td-lte-tw-sg-v4-256gb-cph1917/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 23.0, + "camera": 16.5, + "battery": 11.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/reno-premium-edition-dual-sim-td-lte-vn-kh-my-v2-256gb-cph1917/index.json b/site/public/v1/smartphones/reno-premium-edition-dual-sim-td-lte-vn-kh-my-v2-256gb-cph1917/index.json new file mode 100644 index 00000000000..7644c77f3d7 --- /dev/null +++ b/site/public/v1/smartphones/reno-premium-edition-dual-sim-td-lte-vn-kh-my-v2-256gb-cph1917/index.json @@ -0,0 +1,76 @@ +{ + "id": 2976, + "slug": "reno-premium-edition-dual-sim-td-lte-vn-kh-my-v2-256gb-cph1917", + "name": "Reno Premium Edition Dual SIM TD-LTE VN KH MY V2 256GB CPH1917", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3765, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 23.0, + "camera": 16.5, + "battery": 11.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.531925", + "updated_at": "2026-06-19T00:43:44.531925" +} diff --git a/site/public/v1/smartphones/reno-premium-edition-dual-sim-td-lte-vn-kh-my-v2-256gb-cph1917/score/index.json b/site/public/v1/smartphones/reno-premium-edition-dual-sim-td-lte-vn-kh-my-v2-256gb-cph1917/score/index.json new file mode 100644 index 00000000000..00908e3635d --- /dev/null +++ b/site/public/v1/smartphones/reno-premium-edition-dual-sim-td-lte-vn-kh-my-v2-256gb-cph1917/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 23.0, + "camera": 16.5, + "battery": 11.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/reno-premium-edition-global-dual-sim-td-lte-v1-256gb-cph1917/index.json b/site/public/v1/smartphones/reno-premium-edition-global-dual-sim-td-lte-v1-256gb-cph1917/index.json new file mode 100644 index 00000000000..db5c7d1b688 --- /dev/null +++ b/site/public/v1/smartphones/reno-premium-edition-global-dual-sim-td-lte-v1-256gb-cph1917/index.json @@ -0,0 +1,76 @@ +{ + "id": 2977, + "slug": "reno-premium-edition-global-dual-sim-td-lte-v1-256gb-cph1917", + "name": "Reno Premium Edition Global Dual SIM TD-LTE V1 256GB CPH1917", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3765, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 23.0, + "camera": 16.5, + "battery": 11.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.531925", + "updated_at": "2026-06-19T00:43:44.531925" +} diff --git a/site/public/v1/smartphones/reno-premium-edition-global-dual-sim-td-lte-v1-256gb-cph1917/score/index.json b/site/public/v1/smartphones/reno-premium-edition-global-dual-sim-td-lte-v1-256gb-cph1917/score/index.json new file mode 100644 index 00000000000..00908e3635d --- /dev/null +++ b/site/public/v1/smartphones/reno-premium-edition-global-dual-sim-td-lte-v1-256gb-cph1917/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 23.0, + "camera": 16.5, + "battery": 11.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/reno-standard-edition-dual-sim-td-lte-cn-128gb-pcam00/index.json b/site/public/v1/smartphones/reno-standard-edition-dual-sim-td-lte-cn-128gb-pcam00/index.json new file mode 100644 index 00000000000..b093fe6d8cf --- /dev/null +++ b/site/public/v1/smartphones/reno-standard-edition-dual-sim-td-lte-cn-128gb-pcam00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2978, + "slug": "reno-standard-edition-dual-sim-td-lte-cn-128gb-pcam00", + "name": "Reno Standard Edition Dual SIM TD-LTE CN 128GB PCAM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3765, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.7, + "performance": 21.5, + "camera": 16.5, + "battery": 11.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.531925", + "updated_at": "2026-06-19T00:43:44.531925" +} diff --git a/site/public/v1/smartphones/reno-standard-edition-dual-sim-td-lte-cn-128gb-pcam00/score/index.json b/site/public/v1/smartphones/reno-standard-edition-dual-sim-td-lte-cn-128gb-pcam00/score/index.json new file mode 100644 index 00000000000..6b58413d41a --- /dev/null +++ b/site/public/v1/smartphones/reno-standard-edition-dual-sim-td-lte-cn-128gb-pcam00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.7, + "performance": 21.5, + "camera": 16.5, + "battery": 11.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/reno-standard-edition-dual-sim-td-lte-cn-256gb-pcam00/index.json b/site/public/v1/smartphones/reno-standard-edition-dual-sim-td-lte-cn-256gb-pcam00/index.json new file mode 100644 index 00000000000..5b2e7b11df4 --- /dev/null +++ b/site/public/v1/smartphones/reno-standard-edition-dual-sim-td-lte-cn-256gb-pcam00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2979, + "slug": "reno-standard-edition-dual-sim-td-lte-cn-256gb-pcam00", + "name": "Reno Standard Edition Dual SIM TD-LTE CN 256GB PCAM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3765, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.7, + "performance": 21.5, + "camera": 16.5, + "battery": 11.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.531925", + "updated_at": "2026-06-19T00:43:44.531925" +} diff --git a/site/public/v1/smartphones/reno-standard-edition-dual-sim-td-lte-cn-256gb-pcam00/score/index.json b/site/public/v1/smartphones/reno-standard-edition-dual-sim-td-lte-cn-256gb-pcam00/score/index.json new file mode 100644 index 00000000000..6b58413d41a --- /dev/null +++ b/site/public/v1/smartphones/reno-standard-edition-dual-sim-td-lte-cn-256gb-pcam00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.7, + "performance": 21.5, + "camera": 16.5, + "battery": 11.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/reno-standard-edition-dual-sim-td-lte-cn-256gb-pcat00/index.json b/site/public/v1/smartphones/reno-standard-edition-dual-sim-td-lte-cn-256gb-pcat00/index.json new file mode 100644 index 00000000000..8035975fdb5 --- /dev/null +++ b/site/public/v1/smartphones/reno-standard-edition-dual-sim-td-lte-cn-256gb-pcat00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2980, + "slug": "reno-standard-edition-dual-sim-td-lte-cn-256gb-pcat00", + "name": "Reno Standard Edition Dual SIM TD-LTE CN 256GB PCAT00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3765, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.7, + "performance": 21.5, + "camera": 16.5, + "battery": 11.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.531925", + "updated_at": "2026-06-19T00:43:44.531925" +} diff --git a/site/public/v1/smartphones/reno-standard-edition-dual-sim-td-lte-cn-256gb-pcat00/score/index.json b/site/public/v1/smartphones/reno-standard-edition-dual-sim-td-lte-cn-256gb-pcat00/score/index.json new file mode 100644 index 00000000000..6b58413d41a --- /dev/null +++ b/site/public/v1/smartphones/reno-standard-edition-dual-sim-td-lte-cn-256gb-pcat00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.7, + "performance": 21.5, + "camera": 16.5, + "battery": 11.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/reno-z-dual-sim-td-lte-cn-128gb-pcdm10/index.json b/site/public/v1/smartphones/reno-z-dual-sim-td-lte-cn-128gb-pcdm10/index.json new file mode 100644 index 00000000000..6042dccd9b3 --- /dev/null +++ b/site/public/v1/smartphones/reno-z-dual-sim-td-lte-cn-128gb-pcdm10/index.json @@ -0,0 +1,76 @@ +{ + "id": 2981, + "slug": "reno-z-dual-sim-td-lte-cn-128gb-pcdm10", + "name": "Reno Z Dual SIM TD-LTE CN 128GB PCDM10", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 46, + "slug": "helio-p90", + "name": "Helio P90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GM9446", + "url": "/v1/socs/helio-p90" + }, + "release_date": "2019-06-06", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4035, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 3.0, + "camera": 16.5, + "battery": 15.5, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.531925", + "updated_at": "2026-06-19T00:43:44.531925" +} diff --git a/site/public/v1/smartphones/reno-z-dual-sim-td-lte-cn-128gb-pcdm10/score/index.json b/site/public/v1/smartphones/reno-z-dual-sim-td-lte-cn-128gb-pcdm10/score/index.json new file mode 100644 index 00000000000..8a0b525d375 --- /dev/null +++ b/site/public/v1/smartphones/reno-z-dual-sim-td-lte-cn-128gb-pcdm10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 3.0, + "camera": 16.5, + "battery": 15.5, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/reno-z-dual-sim-td-lte-cn-128gb-pcdt10/index.json b/site/public/v1/smartphones/reno-z-dual-sim-td-lte-cn-128gb-pcdt10/index.json new file mode 100644 index 00000000000..3cfff8d7d0b --- /dev/null +++ b/site/public/v1/smartphones/reno-z-dual-sim-td-lte-cn-128gb-pcdt10/index.json @@ -0,0 +1,76 @@ +{ + "id": 2982, + "slug": "reno-z-dual-sim-td-lte-cn-128gb-pcdt10", + "name": "Reno Z Dual SIM TD-LTE CN 128GB PCDT10", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 46, + "slug": "helio-p90", + "name": "Helio P90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GM9446", + "url": "/v1/socs/helio-p90" + }, + "release_date": "2019-06-06", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4035, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 3.0, + "camera": 16.5, + "battery": 15.5, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.531925", + "updated_at": "2026-06-19T00:43:44.531925" +} diff --git a/site/public/v1/smartphones/reno-z-dual-sim-td-lte-cn-128gb-pcdt10/score/index.json b/site/public/v1/smartphones/reno-z-dual-sim-td-lte-cn-128gb-pcdt10/score/index.json new file mode 100644 index 00000000000..8a0b525d375 --- /dev/null +++ b/site/public/v1/smartphones/reno-z-dual-sim-td-lte-cn-128gb-pcdt10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 3.0, + "camera": 16.5, + "battery": 15.5, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/reno-z-dual-sim-td-lte-cn-256gb-pcdm10/index.json b/site/public/v1/smartphones/reno-z-dual-sim-td-lte-cn-256gb-pcdm10/index.json new file mode 100644 index 00000000000..e55208b5215 --- /dev/null +++ b/site/public/v1/smartphones/reno-z-dual-sim-td-lte-cn-256gb-pcdm10/index.json @@ -0,0 +1,76 @@ +{ + "id": 2983, + "slug": "reno-z-dual-sim-td-lte-cn-256gb-pcdm10", + "name": "Reno Z Dual SIM TD-LTE CN 256GB PCDM10", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 46, + "slug": "helio-p90", + "name": "Helio P90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GM9446", + "url": "/v1/socs/helio-p90" + }, + "release_date": "2019-06-06", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4035, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 16.5, + "battery": 15.5, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.532923", + "updated_at": "2026-06-19T00:43:44.532923" +} diff --git a/site/public/v1/smartphones/reno-z-dual-sim-td-lte-cn-256gb-pcdm10/score/index.json b/site/public/v1/smartphones/reno-z-dual-sim-td-lte-cn-256gb-pcdm10/score/index.json new file mode 100644 index 00000000000..b17009db39a --- /dev/null +++ b/site/public/v1/smartphones/reno-z-dual-sim-td-lte-cn-256gb-pcdm10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 16.5, + "battery": 15.5, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/reno-z-dual-sim-td-lte-cn-256gb-pcdt10/index.json b/site/public/v1/smartphones/reno-z-dual-sim-td-lte-cn-256gb-pcdt10/index.json new file mode 100644 index 00000000000..244f3399f1c --- /dev/null +++ b/site/public/v1/smartphones/reno-z-dual-sim-td-lte-cn-256gb-pcdt10/index.json @@ -0,0 +1,76 @@ +{ + "id": 2984, + "slug": "reno-z-dual-sim-td-lte-cn-256gb-pcdt10", + "name": "Reno Z Dual SIM TD-LTE CN 256GB PCDT10", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 46, + "slug": "helio-p90", + "name": "Helio P90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GM9446", + "url": "/v1/socs/helio-p90" + }, + "release_date": "2019-06-06", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4035, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 16.5, + "battery": 15.5, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.532923", + "updated_at": "2026-06-19T00:43:44.532923" +} diff --git a/site/public/v1/smartphones/reno-z-dual-sim-td-lte-cn-256gb-pcdt10/score/index.json b/site/public/v1/smartphones/reno-z-dual-sim-td-lte-cn-256gb-pcdt10/score/index.json new file mode 100644 index 00000000000..b17009db39a --- /dev/null +++ b/site/public/v1/smartphones/reno-z-dual-sim-td-lte-cn-256gb-pcdt10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 1.5, + "camera": 16.5, + "battery": 15.5, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/reno-z-dual-sim-td-lte-tw-128gb-cph1979/index.json b/site/public/v1/smartphones/reno-z-dual-sim-td-lte-tw-128gb-cph1979/index.json new file mode 100644 index 00000000000..5c53bf979cf --- /dev/null +++ b/site/public/v1/smartphones/reno-z-dual-sim-td-lte-tw-128gb-cph1979/index.json @@ -0,0 +1,76 @@ +{ + "id": 2985, + "slug": "reno-z-dual-sim-td-lte-tw-128gb-cph1979", + "name": "Reno Z Dual SIM TD-LTE TW 128GB CPH1979", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 46, + "slug": "helio-p90", + "name": "Helio P90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GM9446", + "url": "/v1/socs/helio-p90" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4035, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 3.0, + "camera": 16.5, + "battery": 15.5, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.532923", + "updated_at": "2026-06-19T00:43:44.532923" +} diff --git a/site/public/v1/smartphones/reno-z-dual-sim-td-lte-tw-128gb-cph1979/score/index.json b/site/public/v1/smartphones/reno-z-dual-sim-td-lte-tw-128gb-cph1979/score/index.json new file mode 100644 index 00000000000..8a0b525d375 --- /dev/null +++ b/site/public/v1/smartphones/reno-z-dual-sim-td-lte-tw-128gb-cph1979/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 3.0, + "camera": 16.5, + "battery": 15.5, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/reno-z-global-dual-sim-td-lte-128gb-cph1979/index.json b/site/public/v1/smartphones/reno-z-global-dual-sim-td-lte-128gb-cph1979/index.json new file mode 100644 index 00000000000..87cffbaee94 --- /dev/null +++ b/site/public/v1/smartphones/reno-z-global-dual-sim-td-lte-128gb-cph1979/index.json @@ -0,0 +1,76 @@ +{ + "id": 2986, + "slug": "reno-z-global-dual-sim-td-lte-128gb-cph1979", + "name": "Reno Z Global Dual SIM TD-LTE 128GB CPH1979", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 46, + "slug": "helio-p90", + "name": "Helio P90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GM9446", + "url": "/v1/socs/helio-p90" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4035, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 0.0, + "camera": 16.5, + "battery": 15.5, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.532923", + "updated_at": "2026-06-19T00:43:44.532923" +} diff --git a/site/public/v1/smartphones/reno-z-global-dual-sim-td-lte-128gb-cph1979/score/index.json b/site/public/v1/smartphones/reno-z-global-dual-sim-td-lte-128gb-cph1979/score/index.json new file mode 100644 index 00000000000..cd4405eb163 --- /dev/null +++ b/site/public/v1/smartphones/reno-z-global-dual-sim-td-lte-128gb-cph1979/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 0.0, + "camera": 16.5, + "battery": 15.5, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/reno2-dual-sim-td-lte-cn-256gb-pckm00/index.json b/site/public/v1/smartphones/reno2-dual-sim-td-lte-cn-256gb-pckm00/index.json new file mode 100644 index 00000000000..3003f961f85 --- /dev/null +++ b/site/public/v1/smartphones/reno2-dual-sim-td-lte-cn-256gb-pckm00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2988, + "slug": "reno2-dual-sim-td-lte-cn-256gb-pckm00", + "name": "Reno2 Dual SIM TD-LTE CN 256GB PCKM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-09-09", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.54, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 3.0, + "camera": 16.5, + "battery": 15.9, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.532923", + "updated_at": "2026-06-19T00:43:44.532923" +} diff --git a/site/public/v1/smartphones/reno2-dual-sim-td-lte-cn-256gb-pckm00/score/index.json b/site/public/v1/smartphones/reno2-dual-sim-td-lte-cn-256gb-pckm00/score/index.json new file mode 100644 index 00000000000..3690560c334 --- /dev/null +++ b/site/public/v1/smartphones/reno2-dual-sim-td-lte-cn-256gb-pckm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 3.0, + "camera": 16.5, + "battery": 15.9, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/reno2-dual-sim-td-lte-cn-256gb-pckt00/index.json b/site/public/v1/smartphones/reno2-dual-sim-td-lte-cn-256gb-pckt00/index.json new file mode 100644 index 00000000000..0b18f77bc12 --- /dev/null +++ b/site/public/v1/smartphones/reno2-dual-sim-td-lte-cn-256gb-pckt00/index.json @@ -0,0 +1,76 @@ +{ + "id": 2989, + "slug": "reno2-dual-sim-td-lte-cn-256gb-pckt00", + "name": "Reno2 Dual SIM TD-LTE CN 256GB PCKT00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-09-09", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.54, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 3.0, + "camera": 16.5, + "battery": 15.9, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.533922", + "updated_at": "2026-06-19T00:43:44.533922" +} diff --git a/site/public/v1/smartphones/reno2-dual-sim-td-lte-cn-256gb-pckt00/score/index.json b/site/public/v1/smartphones/reno2-dual-sim-td-lte-cn-256gb-pckt00/score/index.json new file mode 100644 index 00000000000..3690560c334 --- /dev/null +++ b/site/public/v1/smartphones/reno2-dual-sim-td-lte-cn-256gb-pckt00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 3.0, + "camera": 16.5, + "battery": 15.9, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/reno2-dual-sim-td-lte-id-v3-256gb-cph1907/index.json b/site/public/v1/smartphones/reno2-dual-sim-td-lte-id-v3-256gb-cph1907/index.json new file mode 100644 index 00000000000..ce8037e3544 --- /dev/null +++ b/site/public/v1/smartphones/reno2-dual-sim-td-lte-id-v3-256gb-cph1907/index.json @@ -0,0 +1,76 @@ +{ + "id": 2990, + "slug": "reno2-dual-sim-td-lte-id-v3-256gb-cph1907", + "name": "Reno2 Dual SIM TD-LTE ID V3 256GB CPH1907", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.54, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 3.0, + "camera": 16.5, + "battery": 15.9, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.533922", + "updated_at": "2026-06-19T00:43:44.533922" +} diff --git a/site/public/v1/smartphones/reno2-dual-sim-td-lte-id-v3-256gb-cph1907/score/index.json b/site/public/v1/smartphones/reno2-dual-sim-td-lte-id-v3-256gb-cph1907/score/index.json new file mode 100644 index 00000000000..3690560c334 --- /dev/null +++ b/site/public/v1/smartphones/reno2-dual-sim-td-lte-id-v3-256gb-cph1907/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 3.0, + "camera": 16.5, + "battery": 15.9, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/reno2-dual-sim-td-lte-tw-v2-256gb-cph1907/index.json b/site/public/v1/smartphones/reno2-dual-sim-td-lte-tw-v2-256gb-cph1907/index.json new file mode 100644 index 00000000000..896b729c0ce --- /dev/null +++ b/site/public/v1/smartphones/reno2-dual-sim-td-lte-tw-v2-256gb-cph1907/index.json @@ -0,0 +1,76 @@ +{ + "id": 2991, + "slug": "reno2-dual-sim-td-lte-tw-v2-256gb-cph1907", + "name": "Reno2 Dual SIM TD-LTE TW V2 256GB CPH1907", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.54, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 3.0, + "camera": 16.5, + "battery": 15.9, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.533922", + "updated_at": "2026-06-19T00:43:44.533922" +} diff --git a/site/public/v1/smartphones/reno2-dual-sim-td-lte-tw-v2-256gb-cph1907/score/index.json b/site/public/v1/smartphones/reno2-dual-sim-td-lte-tw-v2-256gb-cph1907/score/index.json new file mode 100644 index 00000000000..3690560c334 --- /dev/null +++ b/site/public/v1/smartphones/reno2-dual-sim-td-lte-tw-v2-256gb-cph1907/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 3.0, + "camera": 16.5, + "battery": 15.9, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/reno2-f-dual-sim-td-lte-in-id-pk-np-v1-128gb-cph1989/index.json b/site/public/v1/smartphones/reno2-f-dual-sim-td-lte-in-id-pk-np-v1-128gb-cph1989/index.json new file mode 100644 index 00000000000..ee92276d89e --- /dev/null +++ b/site/public/v1/smartphones/reno2-f-dual-sim-td-lte-in-id-pk-np-v1-128gb-cph1989/index.json @@ -0,0 +1,76 @@ +{ + "id": 2992, + "slug": "reno2-f-dual-sim-td-lte-in-id-pk-np-v1-128gb-cph1989", + "name": "Reno2 F Dual SIM TD-LTE IN ID PK NP V1 128GB CPH1989", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 3.0, + "camera": 16.5, + "battery": 15.9, + "display": 44.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.533922", + "updated_at": "2026-06-19T00:43:44.533922" +} diff --git a/site/public/v1/smartphones/reno2-f-dual-sim-td-lte-in-id-pk-np-v1-128gb-cph1989/score/index.json b/site/public/v1/smartphones/reno2-f-dual-sim-td-lte-in-id-pk-np-v1-128gb-cph1989/score/index.json new file mode 100644 index 00000000000..e36a0a6b14b --- /dev/null +++ b/site/public/v1/smartphones/reno2-f-dual-sim-td-lte-in-id-pk-np-v1-128gb-cph1989/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 3.0, + "camera": 16.5, + "battery": 15.9, + "display": 44.7, + "value": null +} diff --git a/site/public/v1/smartphones/reno2-f-dual-sim-td-lte-vn-th-v2-128gb-cph1989/index.json b/site/public/v1/smartphones/reno2-f-dual-sim-td-lte-vn-th-v2-128gb-cph1989/index.json new file mode 100644 index 00000000000..837b50fc999 --- /dev/null +++ b/site/public/v1/smartphones/reno2-f-dual-sim-td-lte-vn-th-v2-128gb-cph1989/index.json @@ -0,0 +1,76 @@ +{ + "id": 2993, + "slug": "reno2-f-dual-sim-td-lte-vn-th-v2-128gb-cph1989", + "name": "Reno2 F Dual SIM TD-LTE VN TH V2 128GB CPH1989", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 3.0, + "camera": 16.5, + "battery": 15.9, + "display": 44.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.533922", + "updated_at": "2026-06-19T00:43:44.533922" +} diff --git a/site/public/v1/smartphones/reno2-f-dual-sim-td-lte-vn-th-v2-128gb-cph1989/score/index.json b/site/public/v1/smartphones/reno2-f-dual-sim-td-lte-vn-th-v2-128gb-cph1989/score/index.json new file mode 100644 index 00000000000..e36a0a6b14b --- /dev/null +++ b/site/public/v1/smartphones/reno2-f-dual-sim-td-lte-vn-th-v2-128gb-cph1989/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 3.0, + "camera": 16.5, + "battery": 15.9, + "display": 44.7, + "value": null +} diff --git a/site/public/v1/smartphones/reno2-f-global-dual-sim-td-lte-v3-128gb-cph1989/index.json b/site/public/v1/smartphones/reno2-f-global-dual-sim-td-lte-v3-128gb-cph1989/index.json new file mode 100644 index 00000000000..f896525407f --- /dev/null +++ b/site/public/v1/smartphones/reno2-f-global-dual-sim-td-lte-v3-128gb-cph1989/index.json @@ -0,0 +1,76 @@ +{ + "id": 2994, + "slug": "reno2-f-global-dual-sim-td-lte-v3-128gb-cph1989", + "name": "Reno2 F Global Dual SIM TD-LTE V3 128GB CPH1989", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 3.0, + "camera": 16.5, + "battery": 15.9, + "display": 44.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.533922", + "updated_at": "2026-06-19T00:43:44.533922" +} diff --git a/site/public/v1/smartphones/reno2-f-global-dual-sim-td-lte-v3-128gb-cph1989/score/index.json b/site/public/v1/smartphones/reno2-f-global-dual-sim-td-lte-v3-128gb-cph1989/score/index.json new file mode 100644 index 00000000000..e36a0a6b14b --- /dev/null +++ b/site/public/v1/smartphones/reno2-f-global-dual-sim-td-lte-v3-128gb-cph1989/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 3.0, + "camera": 16.5, + "battery": 15.9, + "display": 44.7, + "value": null +} diff --git a/site/public/v1/smartphones/reno2-global-dual-sim-td-lte-v1-256gb-cph1907/index.json b/site/public/v1/smartphones/reno2-global-dual-sim-td-lte-v1-256gb-cph1907/index.json new file mode 100644 index 00000000000..a272c39c30e --- /dev/null +++ b/site/public/v1/smartphones/reno2-global-dual-sim-td-lte-v1-256gb-cph1907/index.json @@ -0,0 +1,76 @@ +{ + "id": 2996, + "slug": "reno2-global-dual-sim-td-lte-v1-256gb-cph1907", + "name": "Reno2 Global Dual SIM TD-LTE V1 256GB CPH1907", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-09-09", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.54, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 3.0, + "camera": 16.5, + "battery": 15.9, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.534923", + "updated_at": "2026-06-19T00:43:44.534923" +} diff --git a/site/public/v1/smartphones/reno2-global-dual-sim-td-lte-v1-256gb-cph1907/score/index.json b/site/public/v1/smartphones/reno2-global-dual-sim-td-lte-v1-256gb-cph1907/score/index.json new file mode 100644 index 00000000000..3690560c334 --- /dev/null +++ b/site/public/v1/smartphones/reno2-global-dual-sim-td-lte-v1-256gb-cph1907/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 3.0, + "camera": 16.5, + "battery": 15.9, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/reno2-z-dual-sim-td-lte-cn-128gb-pckm80/index.json b/site/public/v1/smartphones/reno2-z-dual-sim-td-lte-cn-128gb-pckm80/index.json new file mode 100644 index 00000000000..9a4fa07594c --- /dev/null +++ b/site/public/v1/smartphones/reno2-z-dual-sim-td-lte-cn-128gb-pckm80/index.json @@ -0,0 +1,76 @@ +{ + "id": 2997, + "slug": "reno2-z-dual-sim-td-lte-cn-128gb-pckm80", + "name": "Reno2 Z Dual SIM TD-LTE CN 128GB PCKM80", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 46, + "slug": "helio-p90", + "name": "Helio P90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GM9446", + "url": "/v1/socs/helio-p90" + }, + "release_date": "2019-09-06", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 3.0, + "camera": 16.5, + "battery": 15.9, + "display": 44.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.534923", + "updated_at": "2026-06-19T00:43:44.534923" +} diff --git a/site/public/v1/smartphones/reno2-z-dual-sim-td-lte-cn-128gb-pckm80/score/index.json b/site/public/v1/smartphones/reno2-z-dual-sim-td-lte-cn-128gb-pckm80/score/index.json new file mode 100644 index 00000000000..e36a0a6b14b --- /dev/null +++ b/site/public/v1/smartphones/reno2-z-dual-sim-td-lte-cn-128gb-pckm80/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 3.0, + "camera": 16.5, + "battery": 15.9, + "display": 44.7, + "value": null +} diff --git a/site/public/v1/smartphones/reno2-z-dual-sim-td-lte-in-v1-256gb-cph1945/index.json b/site/public/v1/smartphones/reno2-z-dual-sim-td-lte-in-v1-256gb-cph1945/index.json new file mode 100644 index 00000000000..b78d1a0e052 --- /dev/null +++ b/site/public/v1/smartphones/reno2-z-dual-sim-td-lte-in-v1-256gb-cph1945/index.json @@ -0,0 +1,76 @@ +{ + "id": 2998, + "slug": "reno2-z-dual-sim-td-lte-in-v1-256gb-cph1945", + "name": "Reno2 Z Dual SIM TD-LTE IN V1 256GB CPH1945", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 46, + "slug": "helio-p90", + "name": "Helio P90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GM9446", + "url": "/v1/socs/helio-p90" + }, + "release_date": "2019-09-06", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 3.0, + "camera": 16.5, + "battery": 15.9, + "display": 44.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.534923", + "updated_at": "2026-06-19T00:43:44.534923" +} diff --git a/site/public/v1/smartphones/reno2-z-dual-sim-td-lte-in-v1-256gb-cph1945/score/index.json b/site/public/v1/smartphones/reno2-z-dual-sim-td-lte-in-v1-256gb-cph1945/score/index.json new file mode 100644 index 00000000000..e36a0a6b14b --- /dev/null +++ b/site/public/v1/smartphones/reno2-z-dual-sim-td-lte-in-v1-256gb-cph1945/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 3.0, + "camera": 16.5, + "battery": 15.9, + "display": 44.7, + "value": null +} diff --git a/site/public/v1/smartphones/reno2-z-global-dual-sim-td-lte-v2-128gb-cph1951/index.json b/site/public/v1/smartphones/reno2-z-global-dual-sim-td-lte-v2-128gb-cph1951/index.json new file mode 100644 index 00000000000..9c105a6f2c2 --- /dev/null +++ b/site/public/v1/smartphones/reno2-z-global-dual-sim-td-lte-v2-128gb-cph1951/index.json @@ -0,0 +1,76 @@ +{ + "id": 2999, + "slug": "reno2-z-global-dual-sim-td-lte-v2-128gb-cph1951", + "name": "Reno2 Z Global Dual SIM TD-LTE V2 128GB CPH1951", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 46, + "slug": "helio-p90", + "name": "Helio P90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GM9446", + "url": "/v1/socs/helio-p90" + }, + "release_date": "2019-09-06", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": 20.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 3.0, + "camera": 16.5, + "battery": 15.9, + "display": 44.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.534923", + "updated_at": "2026-06-19T00:43:44.534923" +} diff --git a/site/public/v1/smartphones/reno2-z-global-dual-sim-td-lte-v2-128gb-cph1951/score/index.json b/site/public/v1/smartphones/reno2-z-global-dual-sim-td-lte-v2-128gb-cph1951/score/index.json new file mode 100644 index 00000000000..e36a0a6b14b --- /dev/null +++ b/site/public/v1/smartphones/reno2-z-global-dual-sim-td-lte-v2-128gb-cph1951/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 3.0, + "camera": 16.5, + "battery": 15.9, + "display": 44.7, + "value": null +} diff --git a/site/public/v1/smartphones/reno3-5g-aura-edition-dual-sim-td-lte-cn-128gb-pclm50/index.json b/site/public/v1/smartphones/reno3-5g-aura-edition-dual-sim-td-lte-cn-128gb-pclm50/index.json new file mode 100644 index 00000000000..084fb09b361 --- /dev/null +++ b/site/public/v1/smartphones/reno3-5g-aura-edition-dual-sim-td-lte-cn-128gb-pclm50/index.json @@ -0,0 +1,77 @@ +{ + "id": 3229, + "slug": "reno3-5g-aura-edition-dual-sim-td-lte-cn-128gb-pclm50", + "name": "Reno3 5G Aura Edition Dual SIM TD-LTE CN 128GB PCLM50", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-02-14", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4025, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 3.0, + "camera": 16.5, + "battery": 18.3, + "display": 41.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.568119", + "updated_at": "2026-06-19T00:43:44.568119" +} diff --git a/site/public/v1/smartphones/reno3-5g-aura-edition-dual-sim-td-lte-cn-128gb-pclm50/score/index.json b/site/public/v1/smartphones/reno3-5g-aura-edition-dual-sim-td-lte-cn-128gb-pclm50/score/index.json new file mode 100644 index 00000000000..4908984b3e8 --- /dev/null +++ b/site/public/v1/smartphones/reno3-5g-aura-edition-dual-sim-td-lte-cn-128gb-pclm50/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 3.0, + "camera": 16.5, + "battery": 18.3, + "display": 41.1, + "value": null +} diff --git a/site/public/v1/smartphones/reno3-5g-premium-edition-dual-sim-td-lte-cn-128gb-pdcm00/index.json b/site/public/v1/smartphones/reno3-5g-premium-edition-dual-sim-td-lte-cn-128gb-pdcm00/index.json new file mode 100644 index 00000000000..161a0e60828 --- /dev/null +++ b/site/public/v1/smartphones/reno3-5g-premium-edition-dual-sim-td-lte-cn-128gb-pdcm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3002, + "slug": "reno3-5g-premium-edition-dual-sim-td-lte-cn-128gb-pdcm00", + "name": "Reno3 5G Premium Edition Dual SIM TD-LTE CN 128GB PDCM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 47, + "slug": "dimensity-1000", + "name": "Dimensity 1000", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP9", + "url": "/v1/socs/dimensity-1000" + }, + "release_date": "2019-12-31", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4025, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.9, + "performance": 6.0, + "camera": 21.7, + "battery": 18.3, + "display": 53.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.535922", + "updated_at": "2026-06-19T00:43:44.535922" +} diff --git a/site/public/v1/smartphones/reno3-5g-premium-edition-dual-sim-td-lte-cn-128gb-pdcm00/score/index.json b/site/public/v1/smartphones/reno3-5g-premium-edition-dual-sim-td-lte-cn-128gb-pdcm00/score/index.json new file mode 100644 index 00000000000..3441c36d630 --- /dev/null +++ b/site/public/v1/smartphones/reno3-5g-premium-edition-dual-sim-td-lte-cn-128gb-pdcm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.9, + "performance": 6.0, + "camera": 21.7, + "battery": 18.3, + "display": 53.6, + "value": null +} diff --git a/site/public/v1/smartphones/reno3-5g-premium-edition-dual-sim-td-lte-cn-128gb-pdct00/index.json b/site/public/v1/smartphones/reno3-5g-premium-edition-dual-sim-td-lte-cn-128gb-pdct00/index.json new file mode 100644 index 00000000000..83a7d98dbea --- /dev/null +++ b/site/public/v1/smartphones/reno3-5g-premium-edition-dual-sim-td-lte-cn-128gb-pdct00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3003, + "slug": "reno3-5g-premium-edition-dual-sim-td-lte-cn-128gb-pdct00", + "name": "Reno3 5G Premium Edition Dual SIM TD-LTE CN 128GB PDCT00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 47, + "slug": "dimensity-1000", + "name": "Dimensity 1000", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP9", + "url": "/v1/socs/dimensity-1000" + }, + "release_date": "2019-12-31", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4025, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.9, + "performance": 6.0, + "camera": 21.7, + "battery": 18.3, + "display": 53.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.535922", + "updated_at": "2026-06-19T00:43:44.535922" +} diff --git a/site/public/v1/smartphones/reno3-5g-premium-edition-dual-sim-td-lte-cn-128gb-pdct00/score/index.json b/site/public/v1/smartphones/reno3-5g-premium-edition-dual-sim-td-lte-cn-128gb-pdct00/score/index.json new file mode 100644 index 00000000000..3441c36d630 --- /dev/null +++ b/site/public/v1/smartphones/reno3-5g-premium-edition-dual-sim-td-lte-cn-128gb-pdct00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.9, + "performance": 6.0, + "camera": 21.7, + "battery": 18.3, + "display": 53.6, + "value": null +} diff --git a/site/public/v1/smartphones/reno3-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdcm00/index.json b/site/public/v1/smartphones/reno3-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdcm00/index.json new file mode 100644 index 00000000000..5b57a005d68 --- /dev/null +++ b/site/public/v1/smartphones/reno3-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdcm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3004, + "slug": "reno3-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdcm00", + "name": "Reno3 5G Standard Edition Dual SIM TD-LTE CN 128GB PDCM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 47, + "slug": "dimensity-1000", + "name": "Dimensity 1000", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP9", + "url": "/v1/socs/dimensity-1000" + }, + "release_date": "2019-12-31", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4025, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 3.0, + "camera": 21.7, + "battery": 18.3, + "display": 53.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.535922", + "updated_at": "2026-06-19T00:43:44.535922" +} diff --git a/site/public/v1/smartphones/reno3-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdcm00/score/index.json b/site/public/v1/smartphones/reno3-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdcm00/score/index.json new file mode 100644 index 00000000000..cbf807209d0 --- /dev/null +++ b/site/public/v1/smartphones/reno3-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdcm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 3.0, + "camera": 21.7, + "battery": 18.3, + "display": 53.6, + "value": null +} diff --git a/site/public/v1/smartphones/reno3-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdct00/index.json b/site/public/v1/smartphones/reno3-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdct00/index.json new file mode 100644 index 00000000000..ef10c4a5670 --- /dev/null +++ b/site/public/v1/smartphones/reno3-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdct00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3005, + "slug": "reno3-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdct00", + "name": "Reno3 5G Standard Edition Dual SIM TD-LTE CN 128GB PDCT00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 47, + "slug": "dimensity-1000", + "name": "Dimensity 1000", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP9", + "url": "/v1/socs/dimensity-1000" + }, + "release_date": "2019-12-31", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4025, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 3.0, + "camera": 21.7, + "battery": 18.3, + "display": 53.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.535922", + "updated_at": "2026-06-19T00:43:44.535922" +} diff --git a/site/public/v1/smartphones/reno3-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdct00/score/index.json b/site/public/v1/smartphones/reno3-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdct00/score/index.json new file mode 100644 index 00000000000..cbf807209d0 --- /dev/null +++ b/site/public/v1/smartphones/reno3-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdct00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 3.0, + "camera": 21.7, + "battery": 18.3, + "display": 53.6, + "value": null +} diff --git a/site/public/v1/smartphones/reno3-5g-td-lte-jp-a001op/index.json b/site/public/v1/smartphones/reno3-5g-td-lte-jp-a001op/index.json new file mode 100644 index 00000000000..ff89e830a95 --- /dev/null +++ b/site/public/v1/smartphones/reno3-5g-td-lte-jp-a001op/index.json @@ -0,0 +1,77 @@ +{ + "id": 3230, + "slug": "reno3-5g-td-lte-jp-a001op", + "name": "Reno3 5G TD-LTE JP A001OP", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-07-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4025, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 3.0, + "camera": 16.5, + "battery": 18.3, + "display": 41.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.568119", + "updated_at": "2026-06-19T00:43:44.568119" +} diff --git a/site/public/v1/smartphones/reno3-5g-td-lte-jp-a001op/score/index.json b/site/public/v1/smartphones/reno3-5g-td-lte-jp-a001op/score/index.json new file mode 100644 index 00000000000..4908984b3e8 --- /dev/null +++ b/site/public/v1/smartphones/reno3-5g-td-lte-jp-a001op/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 3.0, + "camera": 16.5, + "battery": 18.3, + "display": 41.1, + "value": null +} diff --git a/site/public/v1/smartphones/reno3-a-2020-global-dual-sim-td-lte-128gb-cph2013-a002op/index.json b/site/public/v1/smartphones/reno3-a-2020-global-dual-sim-td-lte-128gb-cph2013-a002op/index.json new file mode 100644 index 00000000000..a4ebcd5880a --- /dev/null +++ b/site/public/v1/smartphones/reno3-a-2020-global-dual-sim-td-lte-128gb-cph2013-a002op/index.json @@ -0,0 +1,76 @@ +{ + "id": 3231, + "slug": "reno3-a-2020-global-dual-sim-td-lte-128gb-cph2013-a002op", + "name": "Reno3 A 2020 Global Dual SIM TD-LTE 128GB CPH2013 / A002OP", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-08-14", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4025, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 1.5, + "camera": 16.5, + "battery": 16.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.568119", + "updated_at": "2026-06-19T00:43:44.568119" +} diff --git a/site/public/v1/smartphones/reno3-a-2020-global-dual-sim-td-lte-128gb-cph2013-a002op/score/index.json b/site/public/v1/smartphones/reno3-a-2020-global-dual-sim-td-lte-128gb-cph2013-a002op/score/index.json new file mode 100644 index 00000000000..636ced46b70 --- /dev/null +++ b/site/public/v1/smartphones/reno3-a-2020-global-dual-sim-td-lte-128gb-cph2013-a002op/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 1.5, + "camera": 16.5, + "battery": 16.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/reno3-pro-5g-global-dual-sim-td-lte-256gb-cph2009-find-x2-neo/index.json b/site/public/v1/smartphones/reno3-pro-5g-global-dual-sim-td-lte-256gb-cph2009-find-x2-neo/index.json new file mode 100644 index 00000000000..a0d3111f2c9 --- /dev/null +++ b/site/public/v1/smartphones/reno3-pro-5g-global-dual-sim-td-lte-256gb-cph2009-find-x2-neo/index.json @@ -0,0 +1,77 @@ +{ + "id": 3232, + "slug": "reno3-pro-5g-global-dual-sim-td-lte-256gb-cph2009-find-x2-neo", + "name": "Reno3 Pro 5G Global Dual SIM TD-LTE 256GB CPH2009 / Find X2 Neo", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-04-21", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4025, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 6.0, + "camera": 16.5, + "battery": 18.3, + "display": 41.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.568119", + "updated_at": "2026-06-19T00:43:44.568119" +} diff --git a/site/public/v1/smartphones/reno3-pro-5g-global-dual-sim-td-lte-256gb-cph2009-find-x2-neo/score/index.json b/site/public/v1/smartphones/reno3-pro-5g-global-dual-sim-td-lte-256gb-cph2009-find-x2-neo/score/index.json new file mode 100644 index 00000000000..b2d2766762a --- /dev/null +++ b/site/public/v1/smartphones/reno3-pro-5g-global-dual-sim-td-lte-256gb-cph2009-find-x2-neo/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 6.0, + "camera": 16.5, + "battery": 18.3, + "display": 41.1, + "value": null +} diff --git a/site/public/v1/smartphones/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-pcrm00/index.json b/site/public/v1/smartphones/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-pcrm00/index.json new file mode 100644 index 00000000000..44702c15746 --- /dev/null +++ b/site/public/v1/smartphones/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-pcrm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3007, + "slug": "reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-pcrm00", + "name": "Reno3 Pro 5G Premium Edition Dual SIM TD-LTE CN 128GB PCRM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2019-12-31", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4025, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 6.0, + "camera": 16.5, + "battery": 18.3, + "display": 41.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.535922", + "updated_at": "2026-06-19T00:43:44.535922" +} diff --git a/site/public/v1/smartphones/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-pcrm00/score/index.json b/site/public/v1/smartphones/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-pcrm00/score/index.json new file mode 100644 index 00000000000..b2d2766762a --- /dev/null +++ b/site/public/v1/smartphones/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-pcrm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 6.0, + "camera": 16.5, + "battery": 18.3, + "display": 41.1, + "value": null +} diff --git a/site/public/v1/smartphones/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-pcrt00/index.json b/site/public/v1/smartphones/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-pcrt00/index.json new file mode 100644 index 00000000000..8a460f5bf7f --- /dev/null +++ b/site/public/v1/smartphones/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-pcrt00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3008, + "slug": "reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-pcrt00", + "name": "Reno3 Pro 5G Premium Edition Dual SIM TD-LTE CN 128GB PCRT00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2019-12-31", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4025, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 6.0, + "camera": 16.5, + "battery": 18.3, + "display": 41.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.535922", + "updated_at": "2026-06-19T00:43:44.535922" +} diff --git a/site/public/v1/smartphones/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-pcrt00/score/index.json b/site/public/v1/smartphones/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-pcrt00/score/index.json new file mode 100644 index 00000000000..b2d2766762a --- /dev/null +++ b/site/public/v1/smartphones/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-pcrt00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 6.0, + "camera": 16.5, + "battery": 18.3, + "display": 41.1, + "value": null +} diff --git a/site/public/v1/smartphones/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pcrm00/index.json b/site/public/v1/smartphones/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pcrm00/index.json new file mode 100644 index 00000000000..0fb89776ee5 --- /dev/null +++ b/site/public/v1/smartphones/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pcrm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3233, + "slug": "reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pcrm00", + "name": "Reno3 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB PCRM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-01-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4025, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 6.0, + "camera": 16.5, + "battery": 18.3, + "display": 41.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.568119", + "updated_at": "2026-06-19T00:43:44.568119" +} diff --git a/site/public/v1/smartphones/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pcrm00/score/index.json b/site/public/v1/smartphones/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pcrm00/score/index.json new file mode 100644 index 00000000000..b2d2766762a --- /dev/null +++ b/site/public/v1/smartphones/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pcrm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 6.0, + "camera": 16.5, + "battery": 18.3, + "display": 41.1, + "value": null +} diff --git a/site/public/v1/smartphones/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pcrt00/index.json b/site/public/v1/smartphones/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pcrt00/index.json new file mode 100644 index 00000000000..3701f15c5f5 --- /dev/null +++ b/site/public/v1/smartphones/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pcrt00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3009, + "slug": "reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pcrt00", + "name": "Reno3 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB PCRT00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2019-12-31", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4025, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 6.0, + "camera": 16.5, + "battery": 18.3, + "display": 41.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.536922", + "updated_at": "2026-06-19T00:43:44.536922" +} diff --git a/site/public/v1/smartphones/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pcrt00/score/index.json b/site/public/v1/smartphones/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pcrt00/score/index.json new file mode 100644 index 00000000000..b2d2766762a --- /dev/null +++ b/site/public/v1/smartphones/reno3-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pcrt00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 6.0, + "camera": 16.5, + "battery": 18.3, + "display": 41.1, + "value": null +} diff --git a/site/public/v1/smartphones/reno3-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pcrm00/index.json b/site/public/v1/smartphones/reno3-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pcrm00/index.json new file mode 100644 index 00000000000..f39fe6e0c04 --- /dev/null +++ b/site/public/v1/smartphones/reno3-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pcrm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3010, + "slug": "reno3-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pcrm00", + "name": "Reno3 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB PCRM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2019-12-31", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4025, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 3.0, + "camera": 16.5, + "battery": 18.3, + "display": 41.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.536922", + "updated_at": "2026-06-19T00:43:44.536922" +} diff --git a/site/public/v1/smartphones/reno3-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pcrm00/score/index.json b/site/public/v1/smartphones/reno3-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pcrm00/score/index.json new file mode 100644 index 00000000000..4908984b3e8 --- /dev/null +++ b/site/public/v1/smartphones/reno3-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pcrm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 3.0, + "camera": 16.5, + "battery": 18.3, + "display": 41.1, + "value": null +} diff --git a/site/public/v1/smartphones/reno3-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pcrt00/index.json b/site/public/v1/smartphones/reno3-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pcrt00/index.json new file mode 100644 index 00000000000..7cf78ae3528 --- /dev/null +++ b/site/public/v1/smartphones/reno3-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pcrt00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3011, + "slug": "reno3-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pcrt00", + "name": "Reno3 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB PCRT00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2019-12-31", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4025, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 3.0, + "camera": 16.5, + "battery": 18.3, + "display": 41.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.536922", + "updated_at": "2026-06-19T00:43:44.536922" +} diff --git a/site/public/v1/smartphones/reno3-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pcrt00/score/index.json b/site/public/v1/smartphones/reno3-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pcrt00/score/index.json new file mode 100644 index 00000000000..4908984b3e8 --- /dev/null +++ b/site/public/v1/smartphones/reno3-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pcrt00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.7, + "performance": 3.0, + "camera": 16.5, + "battery": 18.3, + "display": 41.1, + "value": null +} diff --git a/site/public/v1/smartphones/reno3-pro-dual-sim-td-lte-in-128gb-cph2035/index.json b/site/public/v1/smartphones/reno3-pro-dual-sim-td-lte-in-128gb-cph2035/index.json new file mode 100644 index 00000000000..5f790ba3920 --- /dev/null +++ b/site/public/v1/smartphones/reno3-pro-dual-sim-td-lte-in-128gb-cph2035/index.json @@ -0,0 +1,76 @@ +{ + "id": 3234, + "slug": "reno3-pro-dual-sim-td-lte-in-128gb-cph2035", + "name": "Reno3 Pro Dual SIM TD-LTE IN 128GB CPH2035", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 65, + "slug": "helio-p95", + "name": "Helio P95", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GM9446", + "url": "/v1/socs/helio-p95" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 410 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 43.7 + } + ], + "battery_mah": 4025, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 3.0, + "camera": 21.7, + "battery": 18.3, + "display": 46.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.568119", + "updated_at": "2026-06-19T00:43:44.568119" +} diff --git a/site/public/v1/smartphones/reno3-pro-dual-sim-td-lte-in-128gb-cph2035/score/index.json b/site/public/v1/smartphones/reno3-pro-dual-sim-td-lte-in-128gb-cph2035/score/index.json new file mode 100644 index 00000000000..24be69caa44 --- /dev/null +++ b/site/public/v1/smartphones/reno3-pro-dual-sim-td-lte-in-128gb-cph2035/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 3.0, + "camera": 21.7, + "battery": 18.3, + "display": 46.0, + "value": null +} diff --git a/site/public/v1/smartphones/reno3-pro-dual-sim-td-lte-in-256gb-cph2035/index.json b/site/public/v1/smartphones/reno3-pro-dual-sim-td-lte-in-256gb-cph2035/index.json new file mode 100644 index 00000000000..0f9d3af92b5 --- /dev/null +++ b/site/public/v1/smartphones/reno3-pro-dual-sim-td-lte-in-256gb-cph2035/index.json @@ -0,0 +1,76 @@ +{ + "id": 3235, + "slug": "reno3-pro-dual-sim-td-lte-in-256gb-cph2035", + "name": "Reno3 Pro Dual SIM TD-LTE IN 256GB CPH2035", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 65, + "slug": "helio-p95", + "name": "Helio P95", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GM9446", + "url": "/v1/socs/helio-p95" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.42, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 410 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 43.7 + } + ], + "battery_mah": 4025, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 3.0, + "camera": 21.7, + "battery": 18.3, + "display": 46.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.569119", + "updated_at": "2026-06-19T00:43:44.569119" +} diff --git a/site/public/v1/smartphones/reno3-pro-dual-sim-td-lte-in-256gb-cph2035/score/index.json b/site/public/v1/smartphones/reno3-pro-dual-sim-td-lte-in-256gb-cph2035/score/index.json new file mode 100644 index 00000000000..24be69caa44 --- /dev/null +++ b/site/public/v1/smartphones/reno3-pro-dual-sim-td-lte-in-256gb-cph2035/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 3.0, + "camera": 21.7, + "battery": 18.3, + "display": 46.0, + "value": null +} diff --git a/site/public/v1/smartphones/reno3-td-lte-apac-128gb-cph2043/index.json b/site/public/v1/smartphones/reno3-td-lte-apac-128gb-cph2043/index.json new file mode 100644 index 00000000000..f4881b37d17 --- /dev/null +++ b/site/public/v1/smartphones/reno3-td-lte-apac-128gb-cph2043/index.json @@ -0,0 +1,76 @@ +{ + "id": 3236, + "slug": "reno3-td-lte-apac-128gb-cph2043", + "name": "Reno3 TD-LTE APAC 128GB CPH2043", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 46, + "slug": "helio-p90", + "name": "Helio P90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GM9446", + "url": "/v1/socs/helio-p90" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "type": "Yes", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "battery_mah": 4025, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 3.0, + "camera": 16.5, + "battery": 15.4, + "display": 46.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.569119", + "updated_at": "2026-06-19T00:43:44.569119" +} diff --git a/site/public/v1/smartphones/reno3-td-lte-apac-128gb-cph2043/score/index.json b/site/public/v1/smartphones/reno3-td-lte-apac-128gb-cph2043/score/index.json new file mode 100644 index 00000000000..8a1e69cf390 --- /dev/null +++ b/site/public/v1/smartphones/reno3-td-lte-apac-128gb-cph2043/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 3.0, + "camera": 16.5, + "battery": 15.4, + "display": 46.1, + "value": null +} diff --git a/site/public/v1/smartphones/reno4-5g-dual-sim-td-lte-cn-128gb-pdpm00/index.json b/site/public/v1/smartphones/reno4-5g-dual-sim-td-lte-cn-128gb-pdpm00/index.json new file mode 100644 index 00000000000..3f7f4e95c75 --- /dev/null +++ b/site/public/v1/smartphones/reno4-5g-dual-sim-td-lte-cn-128gb-pdpm00/index.json @@ -0,0 +1,76 @@ +{ + "id": 3237, + "slug": "reno4-5g-dual-sim-td-lte-cn-128gb-pdpm00", + "name": "Reno4 5G Dual SIM TD-LTE CN 128GB PDPM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-06-12", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4020, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 24.8, + "display": 46.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.569119", + "updated_at": "2026-06-19T00:43:44.569119" +} diff --git a/site/public/v1/smartphones/reno4-5g-dual-sim-td-lte-cn-128gb-pdpm00/score/index.json b/site/public/v1/smartphones/reno4-5g-dual-sim-td-lte-cn-128gb-pdpm00/score/index.json new file mode 100644 index 00000000000..dfd812d3f9b --- /dev/null +++ b/site/public/v1/smartphones/reno4-5g-dual-sim-td-lte-cn-128gb-pdpm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 24.8, + "display": 46.1, + "value": null +} diff --git a/site/public/v1/smartphones/reno4-5g-dual-sim-td-lte-cn-128gb-pdpt00/index.json b/site/public/v1/smartphones/reno4-5g-dual-sim-td-lte-cn-128gb-pdpt00/index.json new file mode 100644 index 00000000000..d0aaf1f7f6f --- /dev/null +++ b/site/public/v1/smartphones/reno4-5g-dual-sim-td-lte-cn-128gb-pdpt00/index.json @@ -0,0 +1,76 @@ +{ + "id": 3238, + "slug": "reno4-5g-dual-sim-td-lte-cn-128gb-pdpt00", + "name": "Reno4 5G Dual SIM TD-LTE CN 128GB PDPT00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-06-12", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4020, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 24.8, + "display": 46.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.569119", + "updated_at": "2026-06-19T00:43:44.569119" +} diff --git a/site/public/v1/smartphones/reno4-5g-dual-sim-td-lte-cn-128gb-pdpt00/score/index.json b/site/public/v1/smartphones/reno4-5g-dual-sim-td-lte-cn-128gb-pdpt00/score/index.json new file mode 100644 index 00000000000..dfd812d3f9b --- /dev/null +++ b/site/public/v1/smartphones/reno4-5g-dual-sim-td-lte-cn-128gb-pdpt00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 24.8, + "display": 46.1, + "value": null +} diff --git a/site/public/v1/smartphones/reno4-5g-dual-sim-td-lte-cn-256gb-pdpm00/index.json b/site/public/v1/smartphones/reno4-5g-dual-sim-td-lte-cn-256gb-pdpm00/index.json new file mode 100644 index 00000000000..93385abd354 --- /dev/null +++ b/site/public/v1/smartphones/reno4-5g-dual-sim-td-lte-cn-256gb-pdpm00/index.json @@ -0,0 +1,76 @@ +{ + "id": 3239, + "slug": "reno4-5g-dual-sim-td-lte-cn-256gb-pdpm00", + "name": "Reno4 5G Dual SIM TD-LTE CN 256GB PDPM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-06-12", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 411 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4020, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 24.8, + "display": 46.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.569119", + "updated_at": "2026-06-19T00:43:44.569119" +} diff --git a/site/public/v1/smartphones/reno4-5g-dual-sim-td-lte-cn-256gb-pdpm00/score/index.json b/site/public/v1/smartphones/reno4-5g-dual-sim-td-lte-cn-256gb-pdpm00/score/index.json new file mode 100644 index 00000000000..dfd812d3f9b --- /dev/null +++ b/site/public/v1/smartphones/reno4-5g-dual-sim-td-lte-cn-256gb-pdpm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 24.8, + "display": 46.1, + "value": null +} diff --git a/site/public/v1/smartphones/reno4-lite-global-dual-sim-td-lte-v4-128gb-cph2125/index.json b/site/public/v1/smartphones/reno4-lite-global-dual-sim-td-lte-v4-128gb-cph2125/index.json new file mode 100644 index 00000000000..d4cc145311f --- /dev/null +++ b/site/public/v1/smartphones/reno4-lite-global-dual-sim-td-lte-v4-128gb-cph2125/index.json @@ -0,0 +1,77 @@ +{ + "id": 3241, + "slug": "reno4-lite-global-dual-sim-td-lte-v4-128gb-cph2125", + "name": "Reno4 Lite Global Dual SIM TD-LTE V4 128GB CPH2125", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 65, + "slug": "helio-p95", + "name": "Helio P95", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GM9446", + "url": "/v1/socs/helio-p95" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": 3.0, + "camera": 16.5, + "battery": 15.6, + "display": 28.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.570119", + "updated_at": "2026-06-19T00:43:44.570119" +} diff --git a/site/public/v1/smartphones/reno4-lite-global-dual-sim-td-lte-v4-128gb-cph2125/score/index.json b/site/public/v1/smartphones/reno4-lite-global-dual-sim-td-lte-v4-128gb-cph2125/score/index.json new file mode 100644 index 00000000000..d2205e6b002 --- /dev/null +++ b/site/public/v1/smartphones/reno4-lite-global-dual-sim-td-lte-v4-128gb-cph2125/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.9, + "performance": 3.0, + "camera": 16.5, + "battery": 15.6, + "display": 28.4, + "value": null +} diff --git a/site/public/v1/smartphones/reno4-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pdnm00/index.json b/site/public/v1/smartphones/reno4-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pdnm00/index.json new file mode 100644 index 00000000000..531e930b8b4 --- /dev/null +++ b/site/public/v1/smartphones/reno4-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pdnm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3243, + "slug": "reno4-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pdnm00", + "name": "Reno4 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB PDNM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-06-12", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.54, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 6.0, + "camera": 16.5, + "battery": 24.5, + "display": 40.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.570119", + "updated_at": "2026-06-19T00:43:44.570119" +} diff --git a/site/public/v1/smartphones/reno4-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pdnm00/score/index.json b/site/public/v1/smartphones/reno4-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pdnm00/score/index.json new file mode 100644 index 00000000000..6c6510dd26f --- /dev/null +++ b/site/public/v1/smartphones/reno4-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-pdnm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 6.0, + "camera": 16.5, + "battery": 24.5, + "display": 40.3, + "value": null +} diff --git a/site/public/v1/smartphones/reno4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdnm00/index.json b/site/public/v1/smartphones/reno4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdnm00/index.json new file mode 100644 index 00000000000..f4eb83ff4de --- /dev/null +++ b/site/public/v1/smartphones/reno4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdnm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3244, + "slug": "reno4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdnm00", + "name": "Reno4 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB PDNM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-06-12", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.54, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 16.5, + "battery": 24.5, + "display": 40.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.570119", + "updated_at": "2026-06-19T00:43:44.570119" +} diff --git a/site/public/v1/smartphones/reno4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdnm00/score/index.json b/site/public/v1/smartphones/reno4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdnm00/score/index.json new file mode 100644 index 00000000000..f4348c8304f --- /dev/null +++ b/site/public/v1/smartphones/reno4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdnm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 16.5, + "battery": 24.5, + "display": 40.3, + "value": null +} diff --git a/site/public/v1/smartphones/reno4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdnt00/index.json b/site/public/v1/smartphones/reno4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdnt00/index.json new file mode 100644 index 00000000000..ad8cef2b24f --- /dev/null +++ b/site/public/v1/smartphones/reno4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdnt00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3245, + "slug": "reno4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdnt00", + "name": "Reno4 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB PDNT00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-06-12", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.54, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 16.5, + "battery": 24.5, + "display": 40.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.570119", + "updated_at": "2026-06-19T00:43:44.570119" +} diff --git a/site/public/v1/smartphones/reno4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdnt00/score/index.json b/site/public/v1/smartphones/reno4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdnt00/score/index.json new file mode 100644 index 00000000000..f4348c8304f --- /dev/null +++ b/site/public/v1/smartphones/reno4-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-pdnt00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 16.5, + "battery": 24.5, + "display": 40.3, + "value": null +} diff --git a/site/public/v1/smartphones/reno4-se-5g-dual-sim-td-lte-cn-128gb-peam00/index.json b/site/public/v1/smartphones/reno4-se-5g-dual-sim-td-lte-cn-128gb-peam00/index.json new file mode 100644 index 00000000000..444529abde0 --- /dev/null +++ b/site/public/v1/smartphones/reno4-se-5g-dual-sim-td-lte-cn-128gb-peam00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3248, + "slug": "reno4-se-5g-dual-sim-td-lte-cn-128gb-peam00", + "name": "Reno4 SE 5G Dual SIM TD-LTE CN 128GB PEAM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2020-09-01", + "msrp_usd": 2499, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 2150, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.3, + "performance": 3.0, + "camera": 16.5, + "battery": 9.5, + "display": 28.4, + "value": 7.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.570119", + "updated_at": "2026-06-19T00:43:44.570119" +} diff --git a/site/public/v1/smartphones/reno4-se-5g-dual-sim-td-lte-cn-128gb-peam00/score/index.json b/site/public/v1/smartphones/reno4-se-5g-dual-sim-td-lte-cn-128gb-peam00/score/index.json new file mode 100644 index 00000000000..34710bfe249 --- /dev/null +++ b/site/public/v1/smartphones/reno4-se-5g-dual-sim-td-lte-cn-128gb-peam00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.3, + "performance": 3.0, + "camera": 16.5, + "battery": 9.5, + "display": 28.4, + "value": 7.2 +} diff --git a/site/public/v1/smartphones/reno4-se-5g-dual-sim-td-lte-cn-128gb-peat00/index.json b/site/public/v1/smartphones/reno4-se-5g-dual-sim-td-lte-cn-128gb-peat00/index.json new file mode 100644 index 00000000000..3c32181ab8b --- /dev/null +++ b/site/public/v1/smartphones/reno4-se-5g-dual-sim-td-lte-cn-128gb-peat00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3249, + "slug": "reno4-se-5g-dual-sim-td-lte-cn-128gb-peat00", + "name": "Reno4 SE 5G Dual SIM TD-LTE CN 128GB PEAT00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2020-09-26", + "msrp_usd": 2499, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 2150, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.3, + "performance": 3.0, + "camera": 16.5, + "battery": 9.5, + "display": 28.4, + "value": 7.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.571119", + "updated_at": "2026-06-19T00:43:44.571119" +} diff --git a/site/public/v1/smartphones/reno4-se-5g-dual-sim-td-lte-cn-128gb-peat00/score/index.json b/site/public/v1/smartphones/reno4-se-5g-dual-sim-td-lte-cn-128gb-peat00/score/index.json new file mode 100644 index 00000000000..34710bfe249 --- /dev/null +++ b/site/public/v1/smartphones/reno4-se-5g-dual-sim-td-lte-cn-128gb-peat00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.3, + "performance": 3.0, + "camera": 16.5, + "battery": 9.5, + "display": 28.4, + "value": 7.2 +} diff --git a/site/public/v1/smartphones/reno4-se-5g-dual-sim-td-lte-cn-256gb-peam00/index.json b/site/public/v1/smartphones/reno4-se-5g-dual-sim-td-lte-cn-256gb-peam00/index.json new file mode 100644 index 00000000000..3e1aeed2acd --- /dev/null +++ b/site/public/v1/smartphones/reno4-se-5g-dual-sim-td-lte-cn-256gb-peam00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3250, + "slug": "reno4-se-5g-dual-sim-td-lte-cn-256gb-peam00", + "name": "Reno4 SE 5G Dual SIM TD-LTE CN 256GB PEAM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2020-09-26", + "msrp_usd": 2799, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 2150, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.3, + "performance": 3.0, + "camera": 16.5, + "battery": 9.5, + "display": 28.4, + "value": 7.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.571119", + "updated_at": "2026-06-19T00:43:44.571119" +} diff --git a/site/public/v1/smartphones/reno4-se-5g-dual-sim-td-lte-cn-256gb-peam00/score/index.json b/site/public/v1/smartphones/reno4-se-5g-dual-sim-td-lte-cn-256gb-peam00/score/index.json new file mode 100644 index 00000000000..34710bfe249 --- /dev/null +++ b/site/public/v1/smartphones/reno4-se-5g-dual-sim-td-lte-cn-256gb-peam00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.3, + "performance": 3.0, + "camera": 16.5, + "battery": 9.5, + "display": 28.4, + "value": 7.2 +} diff --git a/site/public/v1/smartphones/reno5-5g-dual-sim-td-lte-cn-128gb-pegm00/index.json b/site/public/v1/smartphones/reno5-5g-dual-sim-td-lte-cn-128gb-pegm00/index.json new file mode 100644 index 00000000000..34b1fabadae --- /dev/null +++ b/site/public/v1/smartphones/reno5-5g-dual-sim-td-lte-cn-128gb-pegm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3253, + "slug": "reno5-5g-dual-sim-td-lte-cn-128gb-pegm00", + "name": "Reno5 5G Dual SIM TD-LTE CN 128GB PEGM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-12-01", + "msrp_usd": 2699, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4300, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 3.0, + "camera": 21.5, + "battery": 29.0, + "display": 40.9, + "value": 11.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.571119", + "updated_at": "2026-06-19T00:43:44.571119" +} diff --git a/site/public/v1/smartphones/reno5-5g-dual-sim-td-lte-cn-128gb-pegm00/score/index.json b/site/public/v1/smartphones/reno5-5g-dual-sim-td-lte-cn-128gb-pegm00/score/index.json new file mode 100644 index 00000000000..bcb68911593 --- /dev/null +++ b/site/public/v1/smartphones/reno5-5g-dual-sim-td-lte-cn-128gb-pegm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 3.0, + "camera": 21.5, + "battery": 29.0, + "display": 40.9, + "value": 11.8 +} diff --git a/site/public/v1/smartphones/reno5-5g-dual-sim-td-lte-cn-128gb-pegt00/index.json b/site/public/v1/smartphones/reno5-5g-dual-sim-td-lte-cn-128gb-pegt00/index.json new file mode 100644 index 00000000000..6a82387e3b5 --- /dev/null +++ b/site/public/v1/smartphones/reno5-5g-dual-sim-td-lte-cn-128gb-pegt00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3254, + "slug": "reno5-5g-dual-sim-td-lte-cn-128gb-pegt00", + "name": "Reno5 5G Dual SIM TD-LTE CN 128GB PEGT00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-12-01", + "msrp_usd": 2699, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4300, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 3.0, + "camera": 21.5, + "battery": 29.0, + "display": 40.9, + "value": 11.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.571119", + "updated_at": "2026-06-19T00:43:44.571119" +} diff --git a/site/public/v1/smartphones/reno5-5g-dual-sim-td-lte-cn-128gb-pegt00/score/index.json b/site/public/v1/smartphones/reno5-5g-dual-sim-td-lte-cn-128gb-pegt00/score/index.json new file mode 100644 index 00000000000..bcb68911593 --- /dev/null +++ b/site/public/v1/smartphones/reno5-5g-dual-sim-td-lte-cn-128gb-pegt00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 3.0, + "camera": 21.5, + "battery": 29.0, + "display": 40.9, + "value": 11.8 +} diff --git a/site/public/v1/smartphones/reno5-5g-dual-sim-td-lte-cn-256gb-pegm00/index.json b/site/public/v1/smartphones/reno5-5g-dual-sim-td-lte-cn-256gb-pegm00/index.json new file mode 100644 index 00000000000..2ee705e4e46 --- /dev/null +++ b/site/public/v1/smartphones/reno5-5g-dual-sim-td-lte-cn-256gb-pegm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3255, + "slug": "reno5-5g-dual-sim-td-lte-cn-256gb-pegm00", + "name": "Reno5 5G Dual SIM TD-LTE CN 256GB PEGM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-12-31", + "msrp_usd": 2999, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4300, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 6.0, + "camera": 21.5, + "battery": 29.0, + "display": 40.9, + "value": 12.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.571119", + "updated_at": "2026-06-19T00:43:44.571119" +} diff --git a/site/public/v1/smartphones/reno5-5g-dual-sim-td-lte-cn-256gb-pegm00/score/index.json b/site/public/v1/smartphones/reno5-5g-dual-sim-td-lte-cn-256gb-pegm00/score/index.json new file mode 100644 index 00000000000..0536a2794e9 --- /dev/null +++ b/site/public/v1/smartphones/reno5-5g-dual-sim-td-lte-cn-256gb-pegm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 6.0, + "camera": 21.5, + "battery": 29.0, + "display": 40.9, + "value": 12.2 +} diff --git a/site/public/v1/smartphones/reno5-5g-global-dual-sim-td-lte-128gb-cph2145/index.json b/site/public/v1/smartphones/reno5-5g-global-dual-sim-td-lte-128gb-cph2145/index.json new file mode 100644 index 00000000000..aec1b4e5c5b --- /dev/null +++ b/site/public/v1/smartphones/reno5-5g-global-dual-sim-td-lte-128gb-cph2145/index.json @@ -0,0 +1,77 @@ +{ + "id": 3420, + "slug": "reno5-5g-global-dual-sim-td-lte-128gb-cph2145", + "name": "Reno5 5G Global Dual SIM TD-LTE 128GB CPH2145", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2021-01-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.43, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4300, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 3.0, + "camera": 21.5, + "battery": 29.0, + "display": 40.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.594892", + "updated_at": "2026-06-19T00:43:44.594892" +} diff --git a/site/public/v1/smartphones/reno5-5g-global-dual-sim-td-lte-128gb-cph2145/score/index.json b/site/public/v1/smartphones/reno5-5g-global-dual-sim-td-lte-128gb-cph2145/score/index.json new file mode 100644 index 00000000000..37572403325 --- /dev/null +++ b/site/public/v1/smartphones/reno5-5g-global-dual-sim-td-lte-128gb-cph2145/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 3.0, + "camera": 21.5, + "battery": 29.0, + "display": 40.9, + "value": null +} diff --git a/site/public/v1/smartphones/reno5-a-5g-dual-sim-td-lte-jp-cph2199/index.json b/site/public/v1/smartphones/reno5-a-5g-dual-sim-td-lte-jp-cph2199/index.json new file mode 100644 index 00000000000..aef2844e860 --- /dev/null +++ b/site/public/v1/smartphones/reno5-a-5g-dual-sim-td-lte-jp-cph2199/index.json @@ -0,0 +1,77 @@ +{ + "id": 3421, + "slug": "reno5-a-5g-dual-sim-td-lte-jp-cph2199", + "name": "Reno5 A 5G Dual SIM TD-LTE JP CPH2199", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2021-06-11", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 64.1 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 1.5, + "camera": 21.6, + "battery": 15.6, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.594892", + "updated_at": "2026-06-19T00:43:44.595892" +} diff --git a/site/public/v1/smartphones/reno5-a-5g-dual-sim-td-lte-jp-cph2199/score/index.json b/site/public/v1/smartphones/reno5-a-5g-dual-sim-td-lte-jp-cph2199/score/index.json new file mode 100644 index 00000000000..fa58d20bf3f --- /dev/null +++ b/site/public/v1/smartphones/reno5-a-5g-dual-sim-td-lte-jp-cph2199/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 1.5, + "camera": 21.6, + "battery": 15.6, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/reno5-a-5g-td-lte-jp-a101op/index.json b/site/public/v1/smartphones/reno5-a-5g-td-lte-jp-a101op/index.json new file mode 100644 index 00000000000..1557b022e20 --- /dev/null +++ b/site/public/v1/smartphones/reno5-a-5g-td-lte-jp-a101op/index.json @@ -0,0 +1,77 @@ +{ + "id": 3422, + "slug": "reno5-a-5g-td-lte-jp-a101op", + "name": "Reno5 A 5G TD-LTE JP A101OP", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2021-06-03", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 405 + }, + "cameras": [ + { + "type": "main", + "mp": 64.1 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 1.5, + "camera": 21.6, + "battery": 15.6, + "display": 40.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.595892", + "updated_at": "2026-06-19T00:43:44.595892" +} diff --git a/site/public/v1/smartphones/reno5-a-5g-td-lte-jp-a101op/score/index.json b/site/public/v1/smartphones/reno5-a-5g-td-lte-jp-a101op/score/index.json new file mode 100644 index 00000000000..fa58d20bf3f --- /dev/null +++ b/site/public/v1/smartphones/reno5-a-5g-td-lte-jp-a101op/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 1.5, + "camera": 21.6, + "battery": 15.6, + "display": 40.5, + "value": null +} diff --git a/site/public/v1/smartphones/reno5-pro-5g-artist-limited-edition-dual-sim-td-lte-cn-256gb-pdrm00/index.json b/site/public/v1/smartphones/reno5-pro-5g-artist-limited-edition-dual-sim-td-lte-cn-256gb-pdrm00/index.json new file mode 100644 index 00000000000..16adb01c711 --- /dev/null +++ b/site/public/v1/smartphones/reno5-pro-5g-artist-limited-edition-dual-sim-td-lte-cn-256gb-pdrm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3425, + "slug": "reno5-pro-5g-artist-limited-edition-dual-sim-td-lte-cn-256gb-pdrm00", + "name": "Reno5 Pro+ 5G Artist Limited Edition Dual SIM TD-LTE CN 256GB PDRM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2021-01-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 187.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 6.0, + "camera": 17.2, + "battery": 32.0, + "display": 40.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.595892", + "updated_at": "2026-06-19T00:43:44.595892" +} diff --git a/site/public/v1/smartphones/reno5-pro-5g-artist-limited-edition-dual-sim-td-lte-cn-256gb-pdrm00/score/index.json b/site/public/v1/smartphones/reno5-pro-5g-artist-limited-edition-dual-sim-td-lte-cn-256gb-pdrm00/score/index.json new file mode 100644 index 00000000000..e2980f6524f --- /dev/null +++ b/site/public/v1/smartphones/reno5-pro-5g-artist-limited-edition-dual-sim-td-lte-cn-256gb-pdrm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 6.0, + "camera": 17.2, + "battery": 32.0, + "display": 40.2, + "value": null +} diff --git a/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdrm00/index.json b/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdrm00/index.json new file mode 100644 index 00000000000..dc9d15ee29d --- /dev/null +++ b/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdrm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3426, + "slug": "reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdrm00", + "name": "Reno5 Pro+ 5G Dual SIM TD-LTE CN 128GB PDRM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2021-01-01", + "msrp_usd": 3999, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 3.0, + "camera": 17.2, + "battery": 32.0, + "display": 40.2, + "value": 11.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.595892", + "updated_at": "2026-06-19T00:43:44.595892" +} diff --git a/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdrm00/score/index.json b/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdrm00/score/index.json new file mode 100644 index 00000000000..a911f4bf014 --- /dev/null +++ b/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdrm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 3.0, + "camera": 17.2, + "battery": 32.0, + "display": 40.2, + "value": 11.6 +} diff --git a/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdrt00/index.json b/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdrt00/index.json new file mode 100644 index 00000000000..1469c26a438 --- /dev/null +++ b/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdrt00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3427, + "slug": "reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdrt00", + "name": "Reno5 Pro+ 5G Dual SIM TD-LTE CN 128GB PDRT00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2021-01-01", + "msrp_usd": 3999, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 3.0, + "camera": 17.2, + "battery": 32.0, + "display": 40.2, + "value": 11.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.595892", + "updated_at": "2026-06-19T00:43:44.595892" +} diff --git a/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdrt00/score/index.json b/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdrt00/score/index.json new file mode 100644 index 00000000000..a911f4bf014 --- /dev/null +++ b/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdrt00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 3.0, + "camera": 17.2, + "battery": 32.0, + "display": 40.2, + "value": 11.6 +} diff --git a/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdsm00/index.json b/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdsm00/index.json new file mode 100644 index 00000000000..19479b1bf5a --- /dev/null +++ b/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdsm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3257, + "slug": "reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdsm00", + "name": "Reno5 Pro 5G Dual SIM TD-LTE CN 128GB PDSM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 53, + "slug": "dimensity-1000-plus", + "name": "Dimensity 1000 Plus", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1000-plus" + }, + "release_date": "2020-12-01", + "msrp_usd": 3399, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4350, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.7, + "performance": 3.0, + "camera": 21.7, + "battery": 29.8, + "display": 40.2, + "value": 11.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.572626", + "updated_at": "2026-06-19T00:43:44.572626" +} diff --git a/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdsm00/score/index.json b/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdsm00/score/index.json new file mode 100644 index 00000000000..f1d7e8973e2 --- /dev/null +++ b/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdsm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.7, + "performance": 3.0, + "camera": 21.7, + "battery": 29.8, + "display": 40.2, + "value": 11.8 +} diff --git a/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdst00/index.json b/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdst00/index.json new file mode 100644 index 00000000000..1b1aeca1c08 --- /dev/null +++ b/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdst00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3258, + "slug": "reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdst00", + "name": "Reno5 Pro 5G Dual SIM TD-LTE CN 128GB PDST00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 53, + "slug": "dimensity-1000-plus", + "name": "Dimensity 1000 Plus", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1000-plus" + }, + "release_date": "2020-12-01", + "msrp_usd": 3399, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4350, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.7, + "performance": 3.0, + "camera": 21.7, + "battery": 29.8, + "display": 40.2, + "value": 11.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.572626", + "updated_at": "2026-06-19T00:43:44.572626" +} diff --git a/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdst00/score/index.json b/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdst00/score/index.json new file mode 100644 index 00000000000..f1d7e8973e2 --- /dev/null +++ b/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-128gb-pdst00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.7, + "performance": 3.0, + "camera": 21.7, + "battery": 29.8, + "display": 40.2, + "value": 11.8 +} diff --git a/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-256gb-pdrm00/index.json b/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-256gb-pdrm00/index.json new file mode 100644 index 00000000000..e9a80722780 --- /dev/null +++ b/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-256gb-pdrm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3428, + "slug": "reno5-pro-5g-dual-sim-td-lte-cn-256gb-pdrm00", + "name": "Reno5 Pro+ 5G Dual SIM TD-LTE CN 256GB PDRM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2021-01-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 6.0, + "camera": 17.2, + "battery": 32.0, + "display": 40.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.596891", + "updated_at": "2026-06-19T00:43:44.596891" +} diff --git a/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-256gb-pdrm00/score/index.json b/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-256gb-pdrm00/score/index.json new file mode 100644 index 00000000000..e2980f6524f --- /dev/null +++ b/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-256gb-pdrm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 6.0, + "camera": 17.2, + "battery": 32.0, + "display": 40.2, + "value": null +} diff --git a/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-256gb-pdsm00/index.json b/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-256gb-pdsm00/index.json new file mode 100644 index 00000000000..811dc158176 --- /dev/null +++ b/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-256gb-pdsm00/index.json @@ -0,0 +1,77 @@ +{ + "id": 3259, + "slug": "reno5-pro-5g-dual-sim-td-lte-cn-256gb-pdsm00", + "name": "Reno5 Pro 5G Dual SIM TD-LTE CN 256GB PDSM00", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 53, + "slug": "dimensity-1000-plus", + "name": "Dimensity 1000 Plus", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1000-plus" + }, + "release_date": "2020-12-01", + "msrp_usd": 3799, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4350, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 6.0, + "camera": 21.7, + "battery": 29.8, + "display": 40.2, + "value": 12.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.572626", + "updated_at": "2026-06-19T00:43:44.572626" +} diff --git a/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-256gb-pdsm00/score/index.json b/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-256gb-pdsm00/score/index.json new file mode 100644 index 00000000000..49028da6892 --- /dev/null +++ b/site/public/v1/smartphones/reno5-pro-5g-dual-sim-td-lte-cn-256gb-pdsm00/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 6.0, + "camera": 21.7, + "battery": 29.8, + "display": 40.2, + "value": 12.2 +} diff --git a/site/public/v1/smartphones/reno5-pro-5g-global-dual-sim-td-lte-256gb-cph2201/index.json b/site/public/v1/smartphones/reno5-pro-5g-global-dual-sim-td-lte-256gb-cph2201/index.json new file mode 100644 index 00000000000..69569e43bbf --- /dev/null +++ b/site/public/v1/smartphones/reno5-pro-5g-global-dual-sim-td-lte-256gb-cph2201/index.json @@ -0,0 +1,77 @@ +{ + "id": 3429, + "slug": "reno5-pro-5g-global-dual-sim-td-lte-256gb-cph2201", + "name": "Reno5 Pro 5G Global Dual SIM TD-LTE 256GB CPH2201", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 53, + "slug": "dimensity-1000-plus", + "name": "Dimensity 1000 Plus", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1000-plus" + }, + "release_date": "2021-01-16", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.55, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4350, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 6.0, + "camera": 21.7, + "battery": 29.8, + "display": 40.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.596891", + "updated_at": "2026-06-19T00:43:44.596891" +} diff --git a/site/public/v1/smartphones/reno5-pro-5g-global-dual-sim-td-lte-256gb-cph2201/score/index.json b/site/public/v1/smartphones/reno5-pro-5g-global-dual-sim-td-lte-256gb-cph2201/score/index.json new file mode 100644 index 00000000000..9c74ec8490f --- /dev/null +++ b/site/public/v1/smartphones/reno5-pro-5g-global-dual-sim-td-lte-256gb-cph2201/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 6.0, + "camera": 21.7, + "battery": 29.8, + "display": 40.2, + "value": null +} diff --git a/site/public/v1/smartphones/robby-2-dual-sim-m1853/index.json b/site/public/v1/smartphones/robby-2-dual-sim-m1853/index.json new file mode 100644 index 00000000000..9a3a061e504 --- /dev/null +++ b/site/public/v1/smartphones/robby-2-dual-sim-m1853/index.json @@ -0,0 +1,76 @@ +{ + "id": 5581, + "slug": "robby-2-dual-sim-m1853", + "name": "Robby 2 Dual SIM M1853", + "brand": { + "id": 56, + "slug": "wiko", + "name": "Wiko", + "country": "FR", + "url": "/v1/brands/wiko" + }, + "soc": { + "id": 104, + "slug": "snapdragon-210", + "name": "Snapdragon 210", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-210" + }, + "release_date": "2017-11-12", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.911308", + "updated_at": "2026-06-19T00:43:44.911308" +} diff --git a/site/public/v1/smartphones/robby-2-dual-sim-m1853/score/index.json b/site/public/v1/smartphones/robby-2-dual-sim-m1853/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/robby-2-dual-sim-m1853/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/rog-phone-3-5g-classic-edition-dual-sim-td-lte-cn-version-c-256gb-zs661ks/index.json b/site/public/v1/smartphones/rog-phone-3-5g-classic-edition-dual-sim-td-lte-cn-version-c-256gb-zs661ks/index.json new file mode 100644 index 00000000000..e4db3001225 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-3-5g-classic-edition-dual-sim-td-lte-cn-version-c-256gb-zs661ks/index.json @@ -0,0 +1,77 @@ +{ + "id": 379, + "slug": "rog-phone-3-5g-classic-edition-dual-sim-td-lte-cn-version-c-256gb-zs661ks", + "name": "ROG Phone 3 5G Classic Edition Dual SIM TD-LTE CN Version C 256GB ZS661KS", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-08-18", + "msrp_usd": 4699, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 240.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 34.4, + "performance": 6.4, + "camera": 21.6, + "battery": 47.9, + "display": 61.6, + "value": 17.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.160426", + "updated_at": "2026-06-19T00:43:44.160426" +} diff --git a/site/public/v1/smartphones/rog-phone-3-5g-classic-edition-dual-sim-td-lte-cn-version-c-256gb-zs661ks/score/index.json b/site/public/v1/smartphones/rog-phone-3-5g-classic-edition-dual-sim-td-lte-cn-version-c-256gb-zs661ks/score/index.json new file mode 100644 index 00000000000..3afa33831a3 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-3-5g-classic-edition-dual-sim-td-lte-cn-version-c-256gb-zs661ks/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 34.4, + "performance": 6.4, + "camera": 21.6, + "battery": 47.9, + "display": 61.6, + "value": 17.2 +} diff --git a/site/public/v1/smartphones/rog-phone-3-5g-elite-edition-dual-sim-td-lte-cn-version-c-128gb-zs661ks/index.json b/site/public/v1/smartphones/rog-phone-3-5g-elite-edition-dual-sim-td-lte-cn-version-c-128gb-zs661ks/index.json new file mode 100644 index 00000000000..a3a75005f2e --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-3-5g-elite-edition-dual-sim-td-lte-cn-version-c-128gb-zs661ks/index.json @@ -0,0 +1,77 @@ +{ + "id": 380, + "slug": "rog-phone-3-5g-elite-edition-dual-sim-td-lte-cn-version-c-128gb-zs661ks", + "name": "ROG Phone 3 5G Elite Edition Dual SIM TD-LTE CN Version C 128GB ZS661KS", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-08-18", + "msrp_usd": 3999, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 240.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 34.3, + "performance": 6.0, + "camera": 21.6, + "battery": 47.9, + "display": 61.6, + "value": 17.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.160426", + "updated_at": "2026-06-19T00:43:44.160426" +} diff --git a/site/public/v1/smartphones/rog-phone-3-5g-elite-edition-dual-sim-td-lte-cn-version-c-128gb-zs661ks/score/index.json b/site/public/v1/smartphones/rog-phone-3-5g-elite-edition-dual-sim-td-lte-cn-version-c-128gb-zs661ks/score/index.json new file mode 100644 index 00000000000..8dad3a08c67 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-3-5g-elite-edition-dual-sim-td-lte-cn-version-c-128gb-zs661ks/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 34.3, + "performance": 6.0, + "camera": 21.6, + "battery": 47.9, + "display": 61.6, + "value": 17.1 +} diff --git a/site/public/v1/smartphones/rog-phone-3-5g-extreme-edition-dual-sim-td-lte-cn-version-c-512gb-zs661ks/index.json b/site/public/v1/smartphones/rog-phone-3-5g-extreme-edition-dual-sim-td-lte-cn-version-c-512gb-zs661ks/index.json new file mode 100644 index 00000000000..9a6c8507cf4 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-3-5g-extreme-edition-dual-sim-td-lte-cn-version-c-512gb-zs661ks/index.json @@ -0,0 +1,77 @@ +{ + "id": 381, + "slug": "rog-phone-3-5g-extreme-edition-dual-sim-td-lte-cn-version-c-512gb-zs661ks", + "name": "ROG Phone 3 5G Extreme Edition Dual SIM TD-LTE CN Version C 512GB ZS661KS", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-08-18", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 240.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 34.4, + "performance": 6.4, + "camera": 21.6, + "battery": 47.9, + "display": 61.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.160426", + "updated_at": "2026-06-19T00:43:44.160426" +} diff --git a/site/public/v1/smartphones/rog-phone-3-5g-extreme-edition-dual-sim-td-lte-cn-version-c-512gb-zs661ks/score/index.json b/site/public/v1/smartphones/rog-phone-3-5g-extreme-edition-dual-sim-td-lte-cn-version-c-512gb-zs661ks/score/index.json new file mode 100644 index 00000000000..40c0a7b2956 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-3-5g-extreme-edition-dual-sim-td-lte-cn-version-c-512gb-zs661ks/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 34.4, + "performance": 6.4, + "camera": 21.6, + "battery": 47.9, + "display": 61.6, + "value": null +} diff --git a/site/public/v1/smartphones/rog-phone-3-5g-extreme-edition-global-dual-sim-td-lte-version-a-512gb-zs661ks/index.json b/site/public/v1/smartphones/rog-phone-3-5g-extreme-edition-global-dual-sim-td-lte-version-a-512gb-zs661ks/index.json new file mode 100644 index 00000000000..fa805206131 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-3-5g-extreme-edition-global-dual-sim-td-lte-version-a-512gb-zs661ks/index.json @@ -0,0 +1,77 @@ +{ + "id": 382, + "slug": "rog-phone-3-5g-extreme-edition-global-dual-sim-td-lte-version-a-512gb-zs661ks", + "name": "ROG Phone 3 5G Extreme Edition Global Dual SIM TD-LTE Version A 512GB ZS661KS", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-08-18", + "msrp_usd": 999, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 240.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 34.4, + "performance": 6.4, + "camera": 21.6, + "battery": 47.9, + "display": 61.6, + "value": 40.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.160426", + "updated_at": "2026-06-19T00:43:44.160426" +} diff --git a/site/public/v1/smartphones/rog-phone-3-5g-extreme-edition-global-dual-sim-td-lte-version-a-512gb-zs661ks/score/index.json b/site/public/v1/smartphones/rog-phone-3-5g-extreme-edition-global-dual-sim-td-lte-version-a-512gb-zs661ks/score/index.json new file mode 100644 index 00000000000..faf1d207667 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-3-5g-extreme-edition-global-dual-sim-td-lte-version-a-512gb-zs661ks/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 34.4, + "performance": 6.4, + "camera": 21.6, + "battery": 47.9, + "display": 61.6, + "value": 40.3 +} diff --git a/site/public/v1/smartphones/rog-phone-3-5g-premium-edition-dual-sim-td-lte-in-version-b-256gb-zs661ks/index.json b/site/public/v1/smartphones/rog-phone-3-5g-premium-edition-dual-sim-td-lte-in-version-b-256gb-zs661ks/index.json new file mode 100644 index 00000000000..edd15e8257e --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-3-5g-premium-edition-dual-sim-td-lte-in-version-b-256gb-zs661ks/index.json @@ -0,0 +1,77 @@ +{ + "id": 383, + "slug": "rog-phone-3-5g-premium-edition-dual-sim-td-lte-in-version-b-256gb-zs661ks", + "name": "ROG Phone 3 5G Premium Edition Dual SIM TD-LTE IN Version B 256GB ZS661KS", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-08-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 240.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 34.4, + "performance": 6.4, + "camera": 21.6, + "battery": 47.9, + "display": 61.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.161424", + "updated_at": "2026-06-19T00:43:44.161424" +} diff --git a/site/public/v1/smartphones/rog-phone-3-5g-premium-edition-dual-sim-td-lte-in-version-b-256gb-zs661ks/score/index.json b/site/public/v1/smartphones/rog-phone-3-5g-premium-edition-dual-sim-td-lte-in-version-b-256gb-zs661ks/score/index.json new file mode 100644 index 00000000000..40c0a7b2956 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-3-5g-premium-edition-dual-sim-td-lte-in-version-b-256gb-zs661ks/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 34.4, + "performance": 6.4, + "camera": 21.6, + "battery": 47.9, + "display": 61.6, + "value": null +} diff --git a/site/public/v1/smartphones/rog-phone-3-5g-standard-edition-dual-sim-td-lte-in-version-b-128gb-zs661ks/index.json b/site/public/v1/smartphones/rog-phone-3-5g-standard-edition-dual-sim-td-lte-in-version-b-128gb-zs661ks/index.json new file mode 100644 index 00000000000..1766d549e7d --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-3-5g-standard-edition-dual-sim-td-lte-in-version-b-128gb-zs661ks/index.json @@ -0,0 +1,77 @@ +{ + "id": 384, + "slug": "rog-phone-3-5g-standard-edition-dual-sim-td-lte-in-version-b-128gb-zs661ks", + "name": "ROG Phone 3 5G Standard Edition Dual SIM TD-LTE IN Version B 128GB ZS661KS", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-08-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 240.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.6, + "performance": 3.4, + "camera": 21.6, + "battery": 47.9, + "display": 61.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.161424", + "updated_at": "2026-06-19T00:43:44.161424" +} diff --git a/site/public/v1/smartphones/rog-phone-3-5g-standard-edition-dual-sim-td-lte-in-version-b-128gb-zs661ks/score/index.json b/site/public/v1/smartphones/rog-phone-3-5g-standard-edition-dual-sim-td-lte-in-version-b-128gb-zs661ks/score/index.json new file mode 100644 index 00000000000..d3bbfe46044 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-3-5g-standard-edition-dual-sim-td-lte-in-version-b-128gb-zs661ks/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.6, + "performance": 3.4, + "camera": 21.6, + "battery": 47.9, + "display": 61.6, + "value": null +} diff --git a/site/public/v1/smartphones/rog-phone-3-5g-strix-edition-global-dual-sim-td-lte-version-b-128gb-zs661ks/index.json b/site/public/v1/smartphones/rog-phone-3-5g-strix-edition-global-dual-sim-td-lte-version-b-128gb-zs661ks/index.json new file mode 100644 index 00000000000..9c187fd32d7 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-3-5g-strix-edition-global-dual-sim-td-lte-version-b-128gb-zs661ks/index.json @@ -0,0 +1,77 @@ +{ + "id": 385, + "slug": "rog-phone-3-5g-strix-edition-global-dual-sim-td-lte-version-b-128gb-zs661ks", + "name": "ROG Phone 3 5G Strix Edition Global Dual SIM TD-LTE Version B 128GB ZS661KS", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-08-18", + "msrp_usd": 799, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 240.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.5, + "performance": 3.0, + "camera": 21.6, + "battery": 47.9, + "display": 61.6, + "value": 47.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.161424", + "updated_at": "2026-06-19T00:43:44.161424" +} diff --git a/site/public/v1/smartphones/rog-phone-3-5g-strix-edition-global-dual-sim-td-lte-version-b-128gb-zs661ks/score/index.json b/site/public/v1/smartphones/rog-phone-3-5g-strix-edition-global-dual-sim-td-lte-version-b-128gb-zs661ks/score/index.json new file mode 100644 index 00000000000..636a2738698 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-3-5g-strix-edition-global-dual-sim-td-lte-version-b-128gb-zs661ks/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.5, + "performance": 3.0, + "camera": 21.6, + "battery": 47.9, + "display": 61.6, + "value": 47.5 +} diff --git a/site/public/v1/smartphones/rog-phone-3-5g-ultimate-edition-dual-sim-td-lte-cn-version-c-512gb-zs661ks/index.json b/site/public/v1/smartphones/rog-phone-3-5g-ultimate-edition-dual-sim-td-lte-cn-version-c-512gb-zs661ks/index.json new file mode 100644 index 00000000000..a878210d21d --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-3-5g-ultimate-edition-dual-sim-td-lte-cn-version-c-512gb-zs661ks/index.json @@ -0,0 +1,77 @@ +{ + "id": 386, + "slug": "rog-phone-3-5g-ultimate-edition-dual-sim-td-lte-cn-version-c-512gb-zs661ks", + "name": "ROG Phone 3 5G Ultimate Edition Dual SIM TD-LTE CN Version C 512GB ZS661KS", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-08-18", + "msrp_usd": null, + "ram_gb": 16, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 240.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 35.1, + "performance": 9.4, + "camera": 21.6, + "battery": 47.9, + "display": 61.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.161424", + "updated_at": "2026-06-19T00:43:44.161424" +} diff --git a/site/public/v1/smartphones/rog-phone-3-5g-ultimate-edition-dual-sim-td-lte-cn-version-c-512gb-zs661ks/score/index.json b/site/public/v1/smartphones/rog-phone-3-5g-ultimate-edition-dual-sim-td-lte-cn-version-c-512gb-zs661ks/score/index.json new file mode 100644 index 00000000000..ad3ebc8825f --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-3-5g-ultimate-edition-dual-sim-td-lte-cn-version-c-512gb-zs661ks/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 35.1, + "performance": 9.4, + "camera": 21.6, + "battery": 47.9, + "display": 61.6, + "value": null +} diff --git a/site/public/v1/smartphones/rog-phone-5-5g-base-edition-dual-sim-td-lte-apac-version-f-h-128gb-zs673ks/index.json b/site/public/v1/smartphones/rog-phone-5-5g-base-edition-dual-sim-td-lte-apac-version-f-h-128gb-zs673ks/index.json new file mode 100644 index 00000000000..c16a8887dc9 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5-5g-base-edition-dual-sim-td-lte-apac-version-f-h-128gb-zs673ks/index.json @@ -0,0 +1,77 @@ +{ + "id": 396, + "slug": "rog-phone-5-5g-base-edition-dual-sim-td-lte-apac-version-f-h-128gb-zs673ks", + "name": "ROG Phone 5 5G Base Edition Dual SIM TD-LTE APAC Version F H 128GB ZS673KS", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-11", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "battery_mah": 6000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 239.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 38.6, + "performance": 6.4, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.162423", + "updated_at": "2026-06-19T00:43:44.162423" +} diff --git a/site/public/v1/smartphones/rog-phone-5-5g-base-edition-dual-sim-td-lte-apac-version-f-h-128gb-zs673ks/score/index.json b/site/public/v1/smartphones/rog-phone-5-5g-base-edition-dual-sim-td-lte-apac-version-f-h-128gb-zs673ks/score/index.json new file mode 100644 index 00000000000..d92db28de9f --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5-5g-base-edition-dual-sim-td-lte-apac-version-f-h-128gb-zs673ks/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 38.6, + "performance": 6.4, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": null +} diff --git a/site/public/v1/smartphones/rog-phone-5-5g-base-edition-dual-sim-td-lte-cn-version-c-g-128gb-zs673ks/index.json b/site/public/v1/smartphones/rog-phone-5-5g-base-edition-dual-sim-td-lte-cn-version-c-g-128gb-zs673ks/index.json new file mode 100644 index 00000000000..9baf9fa5d33 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5-5g-base-edition-dual-sim-td-lte-cn-version-c-g-128gb-zs673ks/index.json @@ -0,0 +1,77 @@ +{ + "id": 397, + "slug": "rog-phone-5-5g-base-edition-dual-sim-td-lte-cn-version-c-g-128gb-zs673ks", + "name": "ROG Phone 5 5G Base Edition Dual SIM TD-LTE CN Version C G 128GB ZS673KS", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-11", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "battery_mah": 6000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 239.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 38.6, + "performance": 6.4, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.163423", + "updated_at": "2026-06-19T00:43:44.163423" +} diff --git a/site/public/v1/smartphones/rog-phone-5-5g-base-edition-dual-sim-td-lte-cn-version-c-g-128gb-zs673ks/score/index.json b/site/public/v1/smartphones/rog-phone-5-5g-base-edition-dual-sim-td-lte-cn-version-c-g-128gb-zs673ks/score/index.json new file mode 100644 index 00000000000..d92db28de9f --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5-5g-base-edition-dual-sim-td-lte-cn-version-c-g-128gb-zs673ks/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 38.6, + "performance": 6.4, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": null +} diff --git a/site/public/v1/smartphones/rog-phone-5-5g-base-edition-global-dual-sim-td-lte-version-a-d-128gb-zs673ks/index.json b/site/public/v1/smartphones/rog-phone-5-5g-base-edition-global-dual-sim-td-lte-version-a-d-128gb-zs673ks/index.json new file mode 100644 index 00000000000..04784799f30 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5-5g-base-edition-global-dual-sim-td-lte-version-a-d-128gb-zs673ks/index.json @@ -0,0 +1,77 @@ +{ + "id": 398, + "slug": "rog-phone-5-5g-base-edition-global-dual-sim-td-lte-version-a-d-128gb-zs673ks", + "name": "ROG Phone 5 5G Base Edition Global Dual SIM TD-LTE Version A D 128GB ZS673KS", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-11", + "msrp_usd": 799, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "battery_mah": 6000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 239.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 38.6, + "performance": 6.4, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": 50.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.163423", + "updated_at": "2026-06-19T00:43:44.163423" +} diff --git a/site/public/v1/smartphones/rog-phone-5-5g-base-edition-global-dual-sim-td-lte-version-a-d-128gb-zs673ks/score/index.json b/site/public/v1/smartphones/rog-phone-5-5g-base-edition-global-dual-sim-td-lte-version-a-d-128gb-zs673ks/score/index.json new file mode 100644 index 00000000000..74da9817573 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5-5g-base-edition-global-dual-sim-td-lte-version-a-d-128gb-zs673ks/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 38.6, + "performance": 6.4, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": 50.1 +} diff --git a/site/public/v1/smartphones/rog-phone-5-5g-premium-edition-dual-sim-td-lte-apac-version-f-h-256gb-zs673ks/index.json b/site/public/v1/smartphones/rog-phone-5-5g-premium-edition-dual-sim-td-lte-apac-version-f-h-256gb-zs673ks/index.json new file mode 100644 index 00000000000..ef6bb1aabae --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5-5g-premium-edition-dual-sim-td-lte-apac-version-f-h-256gb-zs673ks/index.json @@ -0,0 +1,77 @@ +{ + "id": 399, + "slug": "rog-phone-5-5g-premium-edition-dual-sim-td-lte-apac-version-f-h-256gb-zs673ks", + "name": "ROG Phone 5 5G Premium Edition Dual SIM TD-LTE APAC Version F H 256GB ZS673KS", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-11", + "msrp_usd": null, + "ram_gb": 16, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "battery_mah": 6000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 239.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.1, + "performance": 12.4, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.163423", + "updated_at": "2026-06-19T00:43:44.163423" +} diff --git a/site/public/v1/smartphones/rog-phone-5-5g-premium-edition-dual-sim-td-lte-apac-version-f-h-256gb-zs673ks/score/index.json b/site/public/v1/smartphones/rog-phone-5-5g-premium-edition-dual-sim-td-lte-apac-version-f-h-256gb-zs673ks/score/index.json new file mode 100644 index 00000000000..ccadee0dd23 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5-5g-premium-edition-dual-sim-td-lte-apac-version-f-h-256gb-zs673ks/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.1, + "performance": 12.4, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": null +} diff --git a/site/public/v1/smartphones/rog-phone-5-5g-premium-edition-dual-sim-td-lte-cn-version-c-g-256gb-zs673ks/index.json b/site/public/v1/smartphones/rog-phone-5-5g-premium-edition-dual-sim-td-lte-cn-version-c-g-256gb-zs673ks/index.json new file mode 100644 index 00000000000..f5ab16d2577 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5-5g-premium-edition-dual-sim-td-lte-cn-version-c-g-256gb-zs673ks/index.json @@ -0,0 +1,77 @@ +{ + "id": 400, + "slug": "rog-phone-5-5g-premium-edition-dual-sim-td-lte-cn-version-c-g-256gb-zs673ks", + "name": "ROG Phone 5 5G Premium Edition Dual SIM TD-LTE CN Version C G 256GB ZS673KS", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-11", + "msrp_usd": null, + "ram_gb": 16, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "battery_mah": 6000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 239.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.1, + "performance": 12.4, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.163423", + "updated_at": "2026-06-19T00:43:44.163423" +} diff --git a/site/public/v1/smartphones/rog-phone-5-5g-premium-edition-dual-sim-td-lte-cn-version-c-g-256gb-zs673ks/score/index.json b/site/public/v1/smartphones/rog-phone-5-5g-premium-edition-dual-sim-td-lte-cn-version-c-g-256gb-zs673ks/score/index.json new file mode 100644 index 00000000000..ccadee0dd23 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5-5g-premium-edition-dual-sim-td-lte-cn-version-c-g-256gb-zs673ks/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.1, + "performance": 12.4, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": null +} diff --git a/site/public/v1/smartphones/rog-phone-5-5g-premium-edition-dual-sim-td-lte-na-version-b-e-256gb-zs673ks/index.json b/site/public/v1/smartphones/rog-phone-5-5g-premium-edition-dual-sim-td-lte-na-version-b-e-256gb-zs673ks/index.json new file mode 100644 index 00000000000..ba3d492d16e --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5-5g-premium-edition-dual-sim-td-lte-na-version-b-e-256gb-zs673ks/index.json @@ -0,0 +1,77 @@ +{ + "id": 401, + "slug": "rog-phone-5-5g-premium-edition-dual-sim-td-lte-na-version-b-e-256gb-zs673ks", + "name": "ROG Phone 5 5G Premium Edition Dual SIM TD-LTE NA Version B E 256GB ZS673KS", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-11", + "msrp_usd": 1000, + "ram_gb": 16, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "battery_mah": 6000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 239.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.1, + "performance": 12.4, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": 43.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.163423", + "updated_at": "2026-06-19T00:43:44.163423" +} diff --git a/site/public/v1/smartphones/rog-phone-5-5g-premium-edition-dual-sim-td-lte-na-version-b-e-256gb-zs673ks/score/index.json b/site/public/v1/smartphones/rog-phone-5-5g-premium-edition-dual-sim-td-lte-na-version-b-e-256gb-zs673ks/score/index.json new file mode 100644 index 00000000000..a7cc8f6be28 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5-5g-premium-edition-dual-sim-td-lte-na-version-b-e-256gb-zs673ks/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.1, + "performance": 12.4, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": 43.2 +} diff --git a/site/public/v1/smartphones/rog-phone-5-5g-premium-edition-global-dual-sim-td-lte-version-a-d-256gb-zs673ks/index.json b/site/public/v1/smartphones/rog-phone-5-5g-premium-edition-global-dual-sim-td-lte-version-a-d-256gb-zs673ks/index.json new file mode 100644 index 00000000000..c9f50ec1088 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5-5g-premium-edition-global-dual-sim-td-lte-version-a-d-256gb-zs673ks/index.json @@ -0,0 +1,77 @@ +{ + "id": 402, + "slug": "rog-phone-5-5g-premium-edition-global-dual-sim-td-lte-version-a-d-256gb-zs673ks", + "name": "ROG Phone 5 5G Premium Edition Global Dual SIM TD-LTE Version A D 256GB ZS673KS", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-11", + "msrp_usd": 999, + "ram_gb": 16, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "battery_mah": 6000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 239.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.1, + "performance": 12.4, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": 43.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.163423", + "updated_at": "2026-06-19T00:43:44.163423" +} diff --git a/site/public/v1/smartphones/rog-phone-5-5g-premium-edition-global-dual-sim-td-lte-version-a-d-256gb-zs673ks/score/index.json b/site/public/v1/smartphones/rog-phone-5-5g-premium-edition-global-dual-sim-td-lte-version-a-d-256gb-zs673ks/score/index.json new file mode 100644 index 00000000000..a7cc8f6be28 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5-5g-premium-edition-global-dual-sim-td-lte-version-a-d-256gb-zs673ks/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.1, + "performance": 12.4, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": 43.2 +} diff --git a/site/public/v1/smartphones/rog-phone-5-5g-pro-global-dual-sim-td-lte-version-a-d-512gb-zs673ks/index.json b/site/public/v1/smartphones/rog-phone-5-5g-pro-global-dual-sim-td-lte-version-a-d-512gb-zs673ks/index.json new file mode 100644 index 00000000000..3d2cd4efbc6 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5-5g-pro-global-dual-sim-td-lte-version-a-d-512gb-zs673ks/index.json @@ -0,0 +1,77 @@ +{ + "id": 403, + "slug": "rog-phone-5-5g-pro-global-dual-sim-td-lte-version-a-d-512gb-zs673ks", + "name": "ROG Phone 5 5G Pro Global Dual SIM TD-LTE Version A D 512GB ZS673KS", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-07-01", + "msrp_usd": null, + "ram_gb": 16, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "battery_mah": 6000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 239.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.1, + "performance": 12.4, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.163423", + "updated_at": "2026-06-19T00:43:44.163423" +} diff --git a/site/public/v1/smartphones/rog-phone-5-5g-pro-global-dual-sim-td-lte-version-a-d-512gb-zs673ks/score/index.json b/site/public/v1/smartphones/rog-phone-5-5g-pro-global-dual-sim-td-lte-version-a-d-512gb-zs673ks/score/index.json new file mode 100644 index 00000000000..ccadee0dd23 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5-5g-pro-global-dual-sim-td-lte-version-a-d-512gb-zs673ks/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.1, + "performance": 12.4, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": null +} diff --git a/site/public/v1/smartphones/rog-phone-5-5g-standard-edition-dual-sim-td-lte-apac-version-f-h-256gb-zs673ks/index.json b/site/public/v1/smartphones/rog-phone-5-5g-standard-edition-dual-sim-td-lte-apac-version-f-h-256gb-zs673ks/index.json new file mode 100644 index 00000000000..a2d1367fb6c --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5-5g-standard-edition-dual-sim-td-lte-apac-version-f-h-256gb-zs673ks/index.json @@ -0,0 +1,77 @@ +{ + "id": 404, + "slug": "rog-phone-5-5g-standard-edition-dual-sim-td-lte-apac-version-f-h-256gb-zs673ks", + "name": "ROG Phone 5 5G Standard Edition Dual SIM TD-LTE APAC Version F H 256GB ZS673KS", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-11", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "battery_mah": 6000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 239.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 39.4, + "performance": 9.4, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.163423", + "updated_at": "2026-06-19T00:43:44.163423" +} diff --git a/site/public/v1/smartphones/rog-phone-5-5g-standard-edition-dual-sim-td-lte-apac-version-f-h-256gb-zs673ks/score/index.json b/site/public/v1/smartphones/rog-phone-5-5g-standard-edition-dual-sim-td-lte-apac-version-f-h-256gb-zs673ks/score/index.json new file mode 100644 index 00000000000..d35f4c3e08a --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5-5g-standard-edition-dual-sim-td-lte-apac-version-f-h-256gb-zs673ks/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 39.4, + "performance": 9.4, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": null +} diff --git a/site/public/v1/smartphones/rog-phone-5-5g-standard-edition-dual-sim-td-lte-cn-version-c-g-256gb-zs673ks/index.json b/site/public/v1/smartphones/rog-phone-5-5g-standard-edition-dual-sim-td-lte-cn-version-c-g-256gb-zs673ks/index.json new file mode 100644 index 00000000000..a459c94beb6 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5-5g-standard-edition-dual-sim-td-lte-cn-version-c-g-256gb-zs673ks/index.json @@ -0,0 +1,77 @@ +{ + "id": 405, + "slug": "rog-phone-5-5g-standard-edition-dual-sim-td-lte-cn-version-c-g-256gb-zs673ks", + "name": "ROG Phone 5 5G Standard Edition Dual SIM TD-LTE CN Version C G 256GB ZS673KS", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-11", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "battery_mah": 6000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 239.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 39.4, + "performance": 9.4, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.164423", + "updated_at": "2026-06-19T00:43:44.164423" +} diff --git a/site/public/v1/smartphones/rog-phone-5-5g-standard-edition-dual-sim-td-lte-cn-version-c-g-256gb-zs673ks/score/index.json b/site/public/v1/smartphones/rog-phone-5-5g-standard-edition-dual-sim-td-lte-cn-version-c-g-256gb-zs673ks/score/index.json new file mode 100644 index 00000000000..d35f4c3e08a --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5-5g-standard-edition-dual-sim-td-lte-cn-version-c-g-256gb-zs673ks/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 39.4, + "performance": 9.4, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": null +} diff --git a/site/public/v1/smartphones/rog-phone-5-5g-standard-edition-global-dual-sim-td-lte-version-a-d-256gb-zs673ks/index.json b/site/public/v1/smartphones/rog-phone-5-5g-standard-edition-global-dual-sim-td-lte-version-a-d-256gb-zs673ks/index.json new file mode 100644 index 00000000000..c5e2646e1ac --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5-5g-standard-edition-global-dual-sim-td-lte-version-a-d-256gb-zs673ks/index.json @@ -0,0 +1,77 @@ +{ + "id": 406, + "slug": "rog-phone-5-5g-standard-edition-global-dual-sim-td-lte-version-a-d-256gb-zs673ks", + "name": "ROG Phone 5 5G Standard Edition Global Dual SIM TD-LTE Version A D 256GB ZS673KS", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-11", + "msrp_usd": 899, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "battery_mah": 6000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 239.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 39.4, + "performance": 9.4, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": 46.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.164423", + "updated_at": "2026-06-19T00:43:44.164423" +} diff --git a/site/public/v1/smartphones/rog-phone-5-5g-standard-edition-global-dual-sim-td-lte-version-a-d-256gb-zs673ks/score/index.json b/site/public/v1/smartphones/rog-phone-5-5g-standard-edition-global-dual-sim-td-lte-version-a-d-256gb-zs673ks/score/index.json new file mode 100644 index 00000000000..e87367b61b0 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5-5g-standard-edition-global-dual-sim-td-lte-version-a-d-256gb-zs673ks/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 39.4, + "performance": 9.4, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": 46.6 +} diff --git a/site/public/v1/smartphones/rog-phone-5-5g-ultimate-dual-sim-td-lte-cn-version-c-g-512gb-zs673ks/index.json b/site/public/v1/smartphones/rog-phone-5-5g-ultimate-dual-sim-td-lte-cn-version-c-g-512gb-zs673ks/index.json new file mode 100644 index 00000000000..1b3b73fdb9f --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5-5g-ultimate-dual-sim-td-lte-cn-version-c-g-512gb-zs673ks/index.json @@ -0,0 +1,77 @@ +{ + "id": 407, + "slug": "rog-phone-5-5g-ultimate-dual-sim-td-lte-cn-version-c-g-512gb-zs673ks", + "name": "ROG Phone 5 5G Ultimate Dual SIM TD-LTE CN Version C G 512GB ZS673KS", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-06-01", + "msrp_usd": null, + "ram_gb": 18, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "battery_mah": 6000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 239.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.5, + "performance": 13.9, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.164423", + "updated_at": "2026-06-19T00:43:44.164423" +} diff --git a/site/public/v1/smartphones/rog-phone-5-5g-ultimate-dual-sim-td-lte-cn-version-c-g-512gb-zs673ks/score/index.json b/site/public/v1/smartphones/rog-phone-5-5g-ultimate-dual-sim-td-lte-cn-version-c-g-512gb-zs673ks/score/index.json new file mode 100644 index 00000000000..fc5fdca8ca7 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5-5g-ultimate-dual-sim-td-lte-cn-version-c-g-512gb-zs673ks/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.5, + "performance": 13.9, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": null +} diff --git a/site/public/v1/smartphones/rog-phone-5-5g-ultimate-dual-sim-td-lte-na-version-b-e-512gb-zs673ks/index.json b/site/public/v1/smartphones/rog-phone-5-5g-ultimate-dual-sim-td-lte-na-version-b-e-512gb-zs673ks/index.json new file mode 100644 index 00000000000..53696afe617 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5-5g-ultimate-dual-sim-td-lte-na-version-b-e-512gb-zs673ks/index.json @@ -0,0 +1,77 @@ +{ + "id": 408, + "slug": "rog-phone-5-5g-ultimate-dual-sim-td-lte-na-version-b-e-512gb-zs673ks", + "name": "ROG Phone 5 5G Ultimate Dual SIM TD-LTE NA Version B E 512GB ZS673KS", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-06-01", + "msrp_usd": 1300, + "ram_gb": 18, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "battery_mah": 6000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 239.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.5, + "performance": 13.9, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": 31.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.164423", + "updated_at": "2026-06-19T00:43:44.164423" +} diff --git a/site/public/v1/smartphones/rog-phone-5-5g-ultimate-dual-sim-td-lte-na-version-b-e-512gb-zs673ks/score/index.json b/site/public/v1/smartphones/rog-phone-5-5g-ultimate-dual-sim-td-lte-na-version-b-e-512gb-zs673ks/score/index.json new file mode 100644 index 00000000000..55bda9e067a --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5-5g-ultimate-dual-sim-td-lte-na-version-b-e-512gb-zs673ks/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.5, + "performance": 13.9, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": 31.8 +} diff --git a/site/public/v1/smartphones/rog-phone-5-5g-ultimate-global-dual-sim-td-lte-version-a-d-512gb-zs673ks/index.json b/site/public/v1/smartphones/rog-phone-5-5g-ultimate-global-dual-sim-td-lte-version-a-d-512gb-zs673ks/index.json new file mode 100644 index 00000000000..8dd9e6923e1 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5-5g-ultimate-global-dual-sim-td-lte-version-a-d-512gb-zs673ks/index.json @@ -0,0 +1,77 @@ +{ + "id": 409, + "slug": "rog-phone-5-5g-ultimate-global-dual-sim-td-lte-version-a-d-512gb-zs673ks", + "name": "ROG Phone 5 5G Ultimate Global Dual SIM TD-LTE Version A D 512GB ZS673KS", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-06-01", + "msrp_usd": 1299, + "ram_gb": 18, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "battery_mah": 6000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 239.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.5, + "performance": 13.9, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": 31.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.164423", + "updated_at": "2026-06-19T00:43:44.164423" +} diff --git a/site/public/v1/smartphones/rog-phone-5-5g-ultimate-global-dual-sim-td-lte-version-a-d-512gb-zs673ks/score/index.json b/site/public/v1/smartphones/rog-phone-5-5g-ultimate-global-dual-sim-td-lte-version-a-d-512gb-zs673ks/score/index.json new file mode 100644 index 00000000000..16f73b24012 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5-5g-ultimate-global-dual-sim-td-lte-version-a-d-512gb-zs673ks/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.5, + "performance": 13.9, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": 31.9 +} diff --git a/site/public/v1/smartphones/rog-phone-5s-5g-base-edition-dual-sim-td-lte-cn-version-c-256gb-zs676ks/index.json b/site/public/v1/smartphones/rog-phone-5s-5g-base-edition-dual-sim-td-lte-cn-version-c-256gb-zs676ks/index.json new file mode 100644 index 00000000000..b68bcf134fb --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5s-5g-base-edition-dual-sim-td-lte-cn-version-c-256gb-zs676ks/index.json @@ -0,0 +1,77 @@ +{ + "id": 411, + "slug": "rog-phone-5s-5g-base-edition-dual-sim-td-lte-cn-version-c-256gb-zs676ks", + "name": "ROG Phone 5s 5G Base Edition Dual SIM TD-LTE CN Version C 256GB ZS676KS", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-09-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "battery_mah": 6000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 239.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 39.8, + "performance": 11.2, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.164423", + "updated_at": "2026-06-19T00:43:44.164423" +} diff --git a/site/public/v1/smartphones/rog-phone-5s-5g-base-edition-dual-sim-td-lte-cn-version-c-256gb-zs676ks/score/index.json b/site/public/v1/smartphones/rog-phone-5s-5g-base-edition-dual-sim-td-lte-cn-version-c-256gb-zs676ks/score/index.json new file mode 100644 index 00000000000..dcdf2fed4b5 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5s-5g-base-edition-dual-sim-td-lte-cn-version-c-256gb-zs676ks/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 39.8, + "performance": 11.2, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": null +} diff --git a/site/public/v1/smartphones/rog-phone-5s-5g-base-edition-dual-sim-td-lte-na-version-b-512gb-zs676ks/index.json b/site/public/v1/smartphones/rog-phone-5s-5g-base-edition-dual-sim-td-lte-na-version-b-512gb-zs676ks/index.json new file mode 100644 index 00000000000..49d105d6b73 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5s-5g-base-edition-dual-sim-td-lte-na-version-b-512gb-zs676ks/index.json @@ -0,0 +1,77 @@ +{ + "id": 412, + "slug": "rog-phone-5s-5g-base-edition-dual-sim-td-lte-na-version-b-512gb-zs676ks", + "name": "ROG Phone 5s 5G Base Edition Dual SIM TD-LTE NA Version B 512GB ZS676KS", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-10-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "battery_mah": 6000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 239.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 39.8, + "performance": 11.2, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.164423", + "updated_at": "2026-06-19T00:43:44.164423" +} diff --git a/site/public/v1/smartphones/rog-phone-5s-5g-base-edition-dual-sim-td-lte-na-version-b-512gb-zs676ks/score/index.json b/site/public/v1/smartphones/rog-phone-5s-5g-base-edition-dual-sim-td-lte-na-version-b-512gb-zs676ks/score/index.json new file mode 100644 index 00000000000..dcdf2fed4b5 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5s-5g-base-edition-dual-sim-td-lte-na-version-b-512gb-zs676ks/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 39.8, + "performance": 11.2, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": null +} diff --git a/site/public/v1/smartphones/rog-phone-5s-5g-premium-edition-dual-sim-td-lte-cn-version-c-512gb-zs676ks/index.json b/site/public/v1/smartphones/rog-phone-5s-5g-premium-edition-dual-sim-td-lte-cn-version-c-512gb-zs676ks/index.json new file mode 100644 index 00000000000..7b7c70caf6f --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5s-5g-premium-edition-dual-sim-td-lte-cn-version-c-512gb-zs676ks/index.json @@ -0,0 +1,77 @@ +{ + "id": 413, + "slug": "rog-phone-5s-5g-premium-edition-dual-sim-td-lte-cn-version-c-512gb-zs676ks", + "name": "ROG Phone 5s 5G Premium Edition Dual SIM TD-LTE CN Version C 512GB ZS676KS", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-09-01", + "msrp_usd": null, + "ram_gb": 18, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "battery_mah": 6000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 239.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 41.0, + "performance": 15.7, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.164423", + "updated_at": "2026-06-19T00:43:44.164423" +} diff --git a/site/public/v1/smartphones/rog-phone-5s-5g-premium-edition-dual-sim-td-lte-cn-version-c-512gb-zs676ks/score/index.json b/site/public/v1/smartphones/rog-phone-5s-5g-premium-edition-dual-sim-td-lte-cn-version-c-512gb-zs676ks/score/index.json new file mode 100644 index 00000000000..c70d53e934f --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5s-5g-premium-edition-dual-sim-td-lte-cn-version-c-512gb-zs676ks/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 41.0, + "performance": 15.7, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": null +} diff --git a/site/public/v1/smartphones/rog-phone-5s-5g-premium-edition-global-dual-sim-td-lte-version-a-d-512gb-zs676ks/index.json b/site/public/v1/smartphones/rog-phone-5s-5g-premium-edition-global-dual-sim-td-lte-version-a-d-512gb-zs676ks/index.json new file mode 100644 index 00000000000..2093a8bc5e7 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5s-5g-premium-edition-global-dual-sim-td-lte-version-a-d-512gb-zs676ks/index.json @@ -0,0 +1,77 @@ +{ + "id": 414, + "slug": "rog-phone-5s-5g-premium-edition-global-dual-sim-td-lte-version-a-d-512gb-zs676ks", + "name": "ROG Phone 5s 5G Premium Edition Global Dual SIM TD-LTE Version A D 512GB ZS676KS", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-09-01", + "msrp_usd": null, + "ram_gb": 18, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "battery_mah": 6000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 239.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 41.0, + "performance": 15.7, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.165423", + "updated_at": "2026-06-19T00:43:44.165423" +} diff --git a/site/public/v1/smartphones/rog-phone-5s-5g-premium-edition-global-dual-sim-td-lte-version-a-d-512gb-zs676ks/score/index.json b/site/public/v1/smartphones/rog-phone-5s-5g-premium-edition-global-dual-sim-td-lte-version-a-d-512gb-zs676ks/score/index.json new file mode 100644 index 00000000000..c70d53e934f --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5s-5g-premium-edition-global-dual-sim-td-lte-version-a-d-512gb-zs676ks/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 41.0, + "performance": 15.7, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": null +} diff --git a/site/public/v1/smartphones/rog-phone-5s-5g-standard-edition-dual-sim-td-lte-na-version-b-512gb-zs676ks/index.json b/site/public/v1/smartphones/rog-phone-5s-5g-standard-edition-dual-sim-td-lte-na-version-b-512gb-zs676ks/index.json new file mode 100644 index 00000000000..385d3d81b09 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5s-5g-standard-edition-dual-sim-td-lte-na-version-b-512gb-zs676ks/index.json @@ -0,0 +1,77 @@ +{ + "id": 415, + "slug": "rog-phone-5s-5g-standard-edition-dual-sim-td-lte-na-version-b-512gb-zs676ks", + "name": "ROG Phone 5s 5G Standard Edition Dual SIM TD-LTE NA Version B 512GB ZS676KS", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-10-01", + "msrp_usd": null, + "ram_gb": 16, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "battery_mah": 6000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 239.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.6, + "performance": 14.2, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.165423", + "updated_at": "2026-06-19T00:43:44.165423" +} diff --git a/site/public/v1/smartphones/rog-phone-5s-5g-standard-edition-dual-sim-td-lte-na-version-b-512gb-zs676ks/score/index.json b/site/public/v1/smartphones/rog-phone-5s-5g-standard-edition-dual-sim-td-lte-na-version-b-512gb-zs676ks/score/index.json new file mode 100644 index 00000000000..1e7aee43458 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5s-5g-standard-edition-dual-sim-td-lte-na-version-b-512gb-zs676ks/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.6, + "performance": 14.2, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": null +} diff --git a/site/public/v1/smartphones/rog-phone-5s-5g-standard-edition-global-dual-sim-td-lte-version-a-d-256gb-zs676ks/index.json b/site/public/v1/smartphones/rog-phone-5s-5g-standard-edition-global-dual-sim-td-lte-version-a-d-256gb-zs676ks/index.json new file mode 100644 index 00000000000..ba5a97c49eb --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5s-5g-standard-edition-global-dual-sim-td-lte-version-a-d-256gb-zs676ks/index.json @@ -0,0 +1,77 @@ +{ + "id": 416, + "slug": "rog-phone-5s-5g-standard-edition-global-dual-sim-td-lte-version-a-d-256gb-zs676ks", + "name": "ROG Phone 5s 5G Standard Edition Global Dual SIM TD-LTE Version A D 256GB ZS676KS", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-09-01", + "msrp_usd": null, + "ram_gb": 16, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "battery_mah": 6000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 239.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.6, + "performance": 14.2, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.165423", + "updated_at": "2026-06-19T00:43:44.165423" +} diff --git a/site/public/v1/smartphones/rog-phone-5s-5g-standard-edition-global-dual-sim-td-lte-version-a-d-256gb-zs676ks/score/index.json b/site/public/v1/smartphones/rog-phone-5s-5g-standard-edition-global-dual-sim-td-lte-version-a-d-256gb-zs676ks/score/index.json new file mode 100644 index 00000000000..1e7aee43458 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5s-5g-standard-edition-global-dual-sim-td-lte-version-a-d-256gb-zs676ks/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.6, + "performance": 14.2, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": null +} diff --git a/site/public/v1/smartphones/rog-phone-5s-5g-standard-edition-global-dual-sim-td-lte-version-a-d-512gb-zs676ks/index.json b/site/public/v1/smartphones/rog-phone-5s-5g-standard-edition-global-dual-sim-td-lte-version-a-d-512gb-zs676ks/index.json new file mode 100644 index 00000000000..96f71af3da9 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5s-5g-standard-edition-global-dual-sim-td-lte-version-a-d-512gb-zs676ks/index.json @@ -0,0 +1,77 @@ +{ + "id": 417, + "slug": "rog-phone-5s-5g-standard-edition-global-dual-sim-td-lte-version-a-d-512gb-zs676ks", + "name": "ROG Phone 5s 5G Standard Edition Global Dual SIM TD-LTE Version A D 512GB ZS676KS", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-09-01", + "msrp_usd": null, + "ram_gb": 16, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "battery_mah": 6000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 239.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.6, + "performance": 14.2, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.165423", + "updated_at": "2026-06-19T00:43:44.165423" +} diff --git a/site/public/v1/smartphones/rog-phone-5s-5g-standard-edition-global-dual-sim-td-lte-version-a-d-512gb-zs676ks/score/index.json b/site/public/v1/smartphones/rog-phone-5s-5g-standard-edition-global-dual-sim-td-lte-version-a-d-512gb-zs676ks/score/index.json new file mode 100644 index 00000000000..1e7aee43458 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5s-5g-standard-edition-global-dual-sim-td-lte-version-a-d-512gb-zs676ks/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.6, + "performance": 14.2, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": null +} diff --git a/site/public/v1/smartphones/rog-phone-5s-pro-5g-dual-sim-td-lte-cn-version-c-512gb-zs676ks/index.json b/site/public/v1/smartphones/rog-phone-5s-pro-5g-dual-sim-td-lte-cn-version-c-512gb-zs676ks/index.json new file mode 100644 index 00000000000..a778ee42b7a --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5s-pro-5g-dual-sim-td-lte-cn-version-c-512gb-zs676ks/index.json @@ -0,0 +1,77 @@ +{ + "id": 418, + "slug": "rog-phone-5s-pro-5g-dual-sim-td-lte-cn-version-c-512gb-zs676ks", + "name": "ROG Phone 5s Pro 5G Dual SIM TD-LTE CN Version C 512GB ZS676KS", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-09-01", + "msrp_usd": null, + "ram_gb": 18, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "battery_mah": 6000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 238.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 41.0, + "performance": 15.7, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.165423", + "updated_at": "2026-06-19T00:43:44.165423" +} diff --git a/site/public/v1/smartphones/rog-phone-5s-pro-5g-dual-sim-td-lte-cn-version-c-512gb-zs676ks/score/index.json b/site/public/v1/smartphones/rog-phone-5s-pro-5g-dual-sim-td-lte-cn-version-c-512gb-zs676ks/score/index.json new file mode 100644 index 00000000000..c70d53e934f --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5s-pro-5g-dual-sim-td-lte-cn-version-c-512gb-zs676ks/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 41.0, + "performance": 15.7, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": null +} diff --git a/site/public/v1/smartphones/rog-phone-5s-pro-5g-global-dual-sim-td-lte-version-a-d-512gb-zs676ks/index.json b/site/public/v1/smartphones/rog-phone-5s-pro-5g-global-dual-sim-td-lte-version-a-d-512gb-zs676ks/index.json new file mode 100644 index 00000000000..98d417a80f4 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5s-pro-5g-global-dual-sim-td-lte-version-a-d-512gb-zs676ks/index.json @@ -0,0 +1,77 @@ +{ + "id": 419, + "slug": "rog-phone-5s-pro-5g-global-dual-sim-td-lte-version-a-d-512gb-zs676ks", + "name": "ROG Phone 5s Pro 5G Global Dual SIM TD-LTE Version A D 512GB ZS676KS", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-09-01", + "msrp_usd": null, + "ram_gb": 18, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.78, + "resolution": "1080x2448", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.0 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "battery_mah": 6000, + "charging_wired_w": 65.0, + "charging_wireless_w": null, + "weight_g": 238.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 41.0, + "performance": 15.7, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.165423", + "updated_at": "2026-06-19T00:43:44.165423" +} diff --git a/site/public/v1/smartphones/rog-phone-5s-pro-5g-global-dual-sim-td-lte-version-a-d-512gb-zs676ks/score/index.json b/site/public/v1/smartphones/rog-phone-5s-pro-5g-global-dual-sim-td-lte-version-a-d-512gb-zs676ks/score/index.json new file mode 100644 index 00000000000..c70d53e934f --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-5s-pro-5g-global-dual-sim-td-lte-version-a-d-512gb-zs676ks/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 41.0, + "performance": 15.7, + "camera": 21.6, + "battery": 64.5, + "display": 62.0, + "value": null +} diff --git a/site/public/v1/smartphones/rog-phone-dual-sim-td-lte-cn-version-b-zs600kl-128gb/index.json b/site/public/v1/smartphones/rog-phone-dual-sim-td-lte-cn-version-b-zs600kl-128gb/index.json new file mode 100644 index 00000000000..dfd618bf23f --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-dual-sim-td-lte-cn-version-b-zs600kl-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 308, + "slug": "rog-phone-dual-sim-td-lte-cn-version-b-zs600kl-128gb", + "name": "ROG Phone Dual SIM TD-LTE CN Version B ZS600KL 128GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 3.0, + "camera": 5.1, + "battery": 15.0, + "display": 40.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.150418", + "updated_at": "2026-06-19T00:43:44.150418" +} diff --git a/site/public/v1/smartphones/rog-phone-dual-sim-td-lte-cn-version-b-zs600kl-128gb/score/index.json b/site/public/v1/smartphones/rog-phone-dual-sim-td-lte-cn-version-b-zs600kl-128gb/score/index.json new file mode 100644 index 00000000000..751631f9a7f --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-dual-sim-td-lte-cn-version-b-zs600kl-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 3.0, + "camera": 5.1, + "battery": 15.0, + "display": 40.2, + "value": null +} diff --git a/site/public/v1/smartphones/rog-phone-global-dual-sim-td-lte-version-a-zs600kl-128gb/index.json b/site/public/v1/smartphones/rog-phone-global-dual-sim-td-lte-version-a-zs600kl-128gb/index.json new file mode 100644 index 00000000000..0bf26228d0f --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-global-dual-sim-td-lte-version-a-zs600kl-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 309, + "slug": "rog-phone-global-dual-sim-td-lte-version-a-zs600kl-128gb", + "name": "ROG Phone Global Dual SIM TD-LTE Version A ZS600KL 128GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 3.0, + "camera": 5.1, + "battery": 15.0, + "display": 40.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.150418", + "updated_at": "2026-06-19T00:43:44.150418" +} diff --git a/site/public/v1/smartphones/rog-phone-global-dual-sim-td-lte-version-a-zs600kl-128gb/score/index.json b/site/public/v1/smartphones/rog-phone-global-dual-sim-td-lte-version-a-zs600kl-128gb/score/index.json new file mode 100644 index 00000000000..751631f9a7f --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-global-dual-sim-td-lte-version-a-zs600kl-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 3.0, + "camera": 5.1, + "battery": 15.0, + "display": 40.2, + "value": null +} diff --git a/site/public/v1/smartphones/rog-phone-global-dual-sim-td-lte-version-a-zs600kl-512gb/index.json b/site/public/v1/smartphones/rog-phone-global-dual-sim-td-lte-version-a-zs600kl-512gb/index.json new file mode 100644 index 00000000000..25c88c8a8cc --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-global-dual-sim-td-lte-version-a-zs600kl-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 310, + "slug": "rog-phone-global-dual-sim-td-lte-version-a-zs600kl-512gb", + "name": "ROG Phone Global Dual SIM TD-LTE Version A ZS600KL 512GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Proprietary" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 3.0, + "camera": 5.1, + "battery": 15.0, + "display": 40.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.150418", + "updated_at": "2026-06-19T00:43:44.150418" +} diff --git a/site/public/v1/smartphones/rog-phone-global-dual-sim-td-lte-version-a-zs600kl-512gb/score/index.json b/site/public/v1/smartphones/rog-phone-global-dual-sim-td-lte-version-a-zs600kl-512gb/score/index.json new file mode 100644 index 00000000000..751631f9a7f --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-global-dual-sim-td-lte-version-a-zs600kl-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 3.0, + "camera": 5.1, + "battery": 15.0, + "display": 40.2, + "value": null +} diff --git a/site/public/v1/smartphones/rog-phone-ii-dual-sim-td-lte-cn-128gb-zs660kl/index.json b/site/public/v1/smartphones/rog-phone-ii-dual-sim-td-lte-cn-128gb-zs660kl/index.json new file mode 100644 index 00000000000..8f341f1bae4 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-ii-dual-sim-td-lte-cn-128gb-zs660kl/index.json @@ -0,0 +1,77 @@ +{ + "id": 357, + "slug": "rog-phone-ii-dual-sim-td-lte-cn-128gb-zs660kl", + "name": "ROG Phone II Dual SIM TD-LTE CN 128GB ZS660KL", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-08-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 240.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.8, + "performance": 3.0, + "camera": 16.5, + "battery": 47.9, + "display": 51.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.156419", + "updated_at": "2026-06-19T00:43:44.156419" +} diff --git a/site/public/v1/smartphones/rog-phone-ii-dual-sim-td-lte-cn-128gb-zs660kl/score/index.json b/site/public/v1/smartphones/rog-phone-ii-dual-sim-td-lte-cn-128gb-zs660kl/score/index.json new file mode 100644 index 00000000000..b322d92a7c7 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-ii-dual-sim-td-lte-cn-128gb-zs660kl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.8, + "performance": 3.0, + "camera": 16.5, + "battery": 47.9, + "display": 51.6, + "value": null +} diff --git a/site/public/v1/smartphones/rog-phone-ii-dual-sim-td-lte-cn-512gb-zs660kl/index.json b/site/public/v1/smartphones/rog-phone-ii-dual-sim-td-lte-cn-512gb-zs660kl/index.json new file mode 100644 index 00000000000..f982910a6f3 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-ii-dual-sim-td-lte-cn-512gb-zs660kl/index.json @@ -0,0 +1,77 @@ +{ + "id": 358, + "slug": "rog-phone-ii-dual-sim-td-lte-cn-512gb-zs660kl", + "name": "ROG Phone II Dual SIM TD-LTE CN 512GB ZS660KL", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-08-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 240.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.5, + "performance": 6.0, + "camera": 16.5, + "battery": 47.9, + "display": 51.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.156419", + "updated_at": "2026-06-19T00:43:44.156419" +} diff --git a/site/public/v1/smartphones/rog-phone-ii-dual-sim-td-lte-cn-512gb-zs660kl/score/index.json b/site/public/v1/smartphones/rog-phone-ii-dual-sim-td-lte-cn-512gb-zs660kl/score/index.json new file mode 100644 index 00000000000..daba5fea088 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-ii-dual-sim-td-lte-cn-512gb-zs660kl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.5, + "performance": 6.0, + "camera": 16.5, + "battery": 47.9, + "display": 51.6, + "value": null +} diff --git a/site/public/v1/smartphones/rog-phone-ii-global-dual-sim-td-lte-512gb-zs660kl/index.json b/site/public/v1/smartphones/rog-phone-ii-global-dual-sim-td-lte-512gb-zs660kl/index.json new file mode 100644 index 00000000000..4fe47492a0b --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-ii-global-dual-sim-td-lte-512gb-zs660kl/index.json @@ -0,0 +1,77 @@ +{ + "id": 359, + "slug": "rog-phone-ii-global-dual-sim-td-lte-512gb-zs660kl", + "name": "ROG Phone II Global Dual SIM TD-LTE 512GB ZS660KL", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 240.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.5, + "performance": 6.0, + "camera": 16.5, + "battery": 47.9, + "display": 51.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.157419", + "updated_at": "2026-06-19T00:43:44.157419" +} diff --git a/site/public/v1/smartphones/rog-phone-ii-global-dual-sim-td-lte-512gb-zs660kl/score/index.json b/site/public/v1/smartphones/rog-phone-ii-global-dual-sim-td-lte-512gb-zs660kl/score/index.json new file mode 100644 index 00000000000..daba5fea088 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-ii-global-dual-sim-td-lte-512gb-zs660kl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.5, + "performance": 6.0, + "camera": 16.5, + "battery": 47.9, + "display": 51.6, + "value": null +} diff --git a/site/public/v1/smartphones/rog-phone-ii-strix-edition-global-dual-sim-td-lte-128gb-zs660kl/index.json b/site/public/v1/smartphones/rog-phone-ii-strix-edition-global-dual-sim-td-lte-128gb-zs660kl/index.json new file mode 100644 index 00000000000..376db4698d5 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-ii-strix-edition-global-dual-sim-td-lte-128gb-zs660kl/index.json @@ -0,0 +1,77 @@ +{ + "id": 360, + "slug": "rog-phone-ii-strix-edition-global-dual-sim-td-lte-128gb-zs660kl", + "name": "ROG Phone II Strix Edition Global Dual SIM TD-LTE 128GB ZS660KL", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-12-11", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 240.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.8, + "performance": 3.0, + "camera": 16.5, + "battery": 47.9, + "display": 51.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.157419", + "updated_at": "2026-06-19T00:43:44.157419" +} diff --git a/site/public/v1/smartphones/rog-phone-ii-strix-edition-global-dual-sim-td-lte-128gb-zs660kl/score/index.json b/site/public/v1/smartphones/rog-phone-ii-strix-edition-global-dual-sim-td-lte-128gb-zs660kl/score/index.json new file mode 100644 index 00000000000..b322d92a7c7 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-ii-strix-edition-global-dual-sim-td-lte-128gb-zs660kl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.8, + "performance": 3.0, + "camera": 16.5, + "battery": 47.9, + "display": 51.6, + "value": null +} diff --git a/site/public/v1/smartphones/rog-phone-ii-ultimate-edition-global-dual-sim-td-lte-1tb-zs660kl/index.json b/site/public/v1/smartphones/rog-phone-ii-ultimate-edition-global-dual-sim-td-lte-1tb-zs660kl/index.json new file mode 100644 index 00000000000..25a7ab73cd9 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-ii-ultimate-edition-global-dual-sim-td-lte-1tb-zs660kl/index.json @@ -0,0 +1,77 @@ +{ + "id": 362, + "slug": "rog-phone-ii-ultimate-edition-global-dual-sim-td-lte-1tb-zs660kl", + "name": "ROG Phone II Ultimate Edition Global Dual SIM TD-LTE 1TB ZS660KL", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-12-11", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 240.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.5, + "performance": 6.0, + "camera": 16.5, + "battery": 47.9, + "display": 51.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.157419", + "updated_at": "2026-06-19T00:43:44.157419" +} diff --git a/site/public/v1/smartphones/rog-phone-ii-ultimate-edition-global-dual-sim-td-lte-1tb-zs660kl/score/index.json b/site/public/v1/smartphones/rog-phone-ii-ultimate-edition-global-dual-sim-td-lte-1tb-zs660kl/score/index.json new file mode 100644 index 00000000000..daba5fea088 --- /dev/null +++ b/site/public/v1/smartphones/rog-phone-ii-ultimate-edition-global-dual-sim-td-lte-1tb-zs660kl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.5, + "performance": 6.0, + "camera": 16.5, + "battery": 47.9, + "display": 51.6, + "value": null +} diff --git a/site/public/v1/smartphones/rs501-k-series-k20-lra-2017-lte/index.json b/site/public/v1/smartphones/rs501-k-series-k20-lra-2017-lte/index.json new file mode 100644 index 00000000000..8b3556c3361 --- /dev/null +++ b/site/public/v1/smartphones/rs501-k-series-k20-lra-2017-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 1522, + "slug": "rs501-k-series-k20-lra-2017-lte", + "name": "RS501 K Series K20 LRA 2017 LTE", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2017-05-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.28, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 278 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 142.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.342605", + "updated_at": "2026-06-19T00:43:44.342605" +} diff --git a/site/public/v1/smartphones/rs501-k-series-k20-lra-2017-lte/score/index.json b/site/public/v1/smartphones/rs501-k-series-k20-lra-2017-lte/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/rs501-k-series-k20-lra-2017-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/rx17-neo-global-dual-sim-td-lte-cph1893-r17-neo/index.json b/site/public/v1/smartphones/rx17-neo-global-dual-sim-td-lte-cph1893-r17-neo/index.json new file mode 100644 index 00000000000..36a4211f2d5 --- /dev/null +++ b/site/public/v1/smartphones/rx17-neo-global-dual-sim-td-lte-cph1893-r17-neo/index.json @@ -0,0 +1,76 @@ +{ + "id": 2808, + "slug": "rx17-neo-global-dual-sim-td-lte-cph1893-r17-neo", + "name": "RX17 Neo Global Dual SIM TD-LTE CPH1893 / R17 Neo", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-11-16", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3600, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 18.0, + "camera": 6.3, + "battery": 9.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.507912", + "updated_at": "2026-06-19T00:43:44.507912" +} diff --git a/site/public/v1/smartphones/rx17-neo-global-dual-sim-td-lte-cph1893-r17-neo/score/index.json b/site/public/v1/smartphones/rx17-neo-global-dual-sim-td-lte-cph1893-r17-neo/score/index.json new file mode 100644 index 00000000000..9785e49586a --- /dev/null +++ b/site/public/v1/smartphones/rx17-neo-global-dual-sim-td-lte-cph1893-r17-neo/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 18.0, + "camera": 6.3, + "battery": 9.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/rx17-pro-standard-edition-global-dual-sim-td-lte-version-1-cph1877-r17-pro/index.json b/site/public/v1/smartphones/rx17-pro-standard-edition-global-dual-sim-td-lte-version-1-cph1877-r17-pro/index.json new file mode 100644 index 00000000000..851c2a78cf3 --- /dev/null +++ b/site/public/v1/smartphones/rx17-pro-standard-edition-global-dual-sim-td-lte-version-1-cph1877-r17-pro/index.json @@ -0,0 +1,76 @@ +{ + "id": 2809, + "slug": "rx17-pro-standard-edition-global-dual-sim-td-lte-version-1-cph1877-r17-pro", + "name": "RX17 Pro Standard Edition Global Dual SIM TD-LTE Version 1 CPH1877 / R17 Pro", + "brand": { + "id": 29, + "slug": "oppo", + "name": "OPPO", + "country": "CN", + "url": "/v1/brands/oppo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2018-11-16", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3700, + "charging_wired_w": 50.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 21.5, + "camera": 5.1, + "battery": 17.1, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.507912", + "updated_at": "2026-06-19T00:43:44.508912" +} diff --git a/site/public/v1/smartphones/rx17-pro-standard-edition-global-dual-sim-td-lte-version-1-cph1877-r17-pro/score/index.json b/site/public/v1/smartphones/rx17-pro-standard-edition-global-dual-sim-td-lte-version-1-cph1877-r17-pro/score/index.json new file mode 100644 index 00000000000..0c6ab46ab06 --- /dev/null +++ b/site/public/v1/smartphones/rx17-pro-standard-edition-global-dual-sim-td-lte-version-1-cph1877-r17-pro/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 21.5, + "camera": 5.1, + "battery": 17.1, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/s30-5g-dual-sim-td-lte-cn-128gb-9030n/index.json b/site/public/v1/smartphones/s30-5g-dual-sim-td-lte-cn-128gb-9030n/index.json new file mode 100644 index 00000000000..e315469fcec --- /dev/null +++ b/site/public/v1/smartphones/s30-5g-dual-sim-td-lte-cn-128gb-9030n/index.json @@ -0,0 +1,77 @@ +{ + "id": 6540, + "slug": "s30-5g-dual-sim-td-lte-cn-128gb-9030n", + "name": "S30 5G Dual SIM TD-LTE CN 128GB 9030N", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2021-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 3.0, + "camera": 21.5, + "battery": 17.8, + "display": 39.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.021823", + "updated_at": "2026-06-19T00:43:45.021823" +} diff --git a/site/public/v1/smartphones/s30-5g-dual-sim-td-lte-cn-128gb-9030n/score/index.json b/site/public/v1/smartphones/s30-5g-dual-sim-td-lte-cn-128gb-9030n/score/index.json new file mode 100644 index 00000000000..6ff16573395 --- /dev/null +++ b/site/public/v1/smartphones/s30-5g-dual-sim-td-lte-cn-128gb-9030n/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 3.0, + "camera": 21.5, + "battery": 17.8, + "display": 39.5, + "value": null +} diff --git a/site/public/v1/smartphones/s30-5g-dual-sim-td-lte-cn-256gb-9030n/index.json b/site/public/v1/smartphones/s30-5g-dual-sim-td-lte-cn-256gb-9030n/index.json new file mode 100644 index 00000000000..432746e99c0 --- /dev/null +++ b/site/public/v1/smartphones/s30-5g-dual-sim-td-lte-cn-256gb-9030n/index.json @@ -0,0 +1,77 @@ +{ + "id": 6541, + "slug": "s30-5g-dual-sim-td-lte-cn-256gb-9030n", + "name": "S30 5G Dual SIM TD-LTE CN 256GB 9030N", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2021-04-02", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 3.0, + "camera": 21.5, + "battery": 17.8, + "display": 39.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.021823", + "updated_at": "2026-06-19T00:43:45.021823" +} diff --git a/site/public/v1/smartphones/s30-5g-dual-sim-td-lte-cn-256gb-9030n/score/index.json b/site/public/v1/smartphones/s30-5g-dual-sim-td-lte-cn-256gb-9030n/score/index.json new file mode 100644 index 00000000000..6ff16573395 --- /dev/null +++ b/site/public/v1/smartphones/s30-5g-dual-sim-td-lte-cn-256gb-9030n/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 3.0, + "camera": 21.5, + "battery": 17.8, + "display": 39.5, + "value": null +} diff --git a/site/public/v1/smartphones/s30-se-5g-dual-sim-td-lte-cn-128gb-8030n/index.json b/site/public/v1/smartphones/s30-se-5g-dual-sim-td-lte-cn-128gb-8030n/index.json new file mode 100644 index 00000000000..305e5df90f3 --- /dev/null +++ b/site/public/v1/smartphones/s30-se-5g-dual-sim-td-lte-cn-128gb-8030n/index.json @@ -0,0 +1,77 @@ +{ + "id": 6542, + "slug": "s30-se-5g-dual-sim-td-lte-cn-128gb-8030n", + "name": "S30 SE 5G Dual SIM TD-LTE CN 128GB 8030N", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-03-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.8, + "performance": 1.5, + "camera": 16.5, + "battery": 45.6, + "display": 39.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.021823", + "updated_at": "2026-06-19T00:43:45.021823" +} diff --git a/site/public/v1/smartphones/s30-se-5g-dual-sim-td-lte-cn-128gb-8030n/score/index.json b/site/public/v1/smartphones/s30-se-5g-dual-sim-td-lte-cn-128gb-8030n/score/index.json new file mode 100644 index 00000000000..628c0a1f989 --- /dev/null +++ b/site/public/v1/smartphones/s30-se-5g-dual-sim-td-lte-cn-128gb-8030n/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.8, + "performance": 1.5, + "camera": 16.5, + "battery": 45.6, + "display": 39.5, + "value": null +} diff --git a/site/public/v1/smartphones/s5-dual-sim-td-lte-apac-x652/index.json b/site/public/v1/smartphones/s5-dual-sim-td-lte-apac-x652/index.json new file mode 100644 index 00000000000..e846c53630a --- /dev/null +++ b/site/public/v1/smartphones/s5-dual-sim-td-lte-apac-x652/index.json @@ -0,0 +1,76 @@ +{ + "id": 1335, + "slug": "s5-dual-sim-td-lte-apac-x652", + "name": "S5 Dual SIM TD-LTE APAC X652", + "brand": { + "id": 19, + "slug": "infinix", + "name": "Infinix Mobile", + "country": "CN", + "url": "/v1/brands/infinix" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.8, + "performance": null, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.319606", + "updated_at": "2026-06-19T00:43:44.319606" +} diff --git a/site/public/v1/smartphones/s5-dual-sim-td-lte-apac-x652/score/index.json b/site/public/v1/smartphones/s5-dual-sim-td-lte-apac-x652/score/index.json new file mode 100644 index 00000000000..7f41dfc3901 --- /dev/null +++ b/site/public/v1/smartphones/s5-dual-sim-td-lte-apac-x652/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.8, + "performance": null, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/s5-dual-sim-td-lte-cn-128gb-pabx0010cn-pabx0011cn/index.json b/site/public/v1/smartphones/s5-dual-sim-td-lte-cn-128gb-pabx0010cn-pabx0011cn/index.json new file mode 100644 index 00000000000..5ea5b0d8998 --- /dev/null +++ b/site/public/v1/smartphones/s5-dual-sim-td-lte-cn-128gb-pabx0010cn-pabx0011cn/index.json @@ -0,0 +1,76 @@ +{ + "id": 1435, + "slug": "s5-dual-sim-td-lte-cn-128gb-pabx0010cn-pabx0011cn", + "name": "S5 Dual SIM TD-LTE CN 128GB PABX0010CN / PABX0011CN", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 114, + "slug": "snapdragon-625", + "name": "Snapdragon 625", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-625" + }, + "release_date": "2018-04-11", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 13.2 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 155.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": null, + "camera": 5.4, + "battery": 0.0, + "display": 47.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.332605", + "updated_at": "2026-06-19T00:43:44.332605" +} diff --git a/site/public/v1/smartphones/s5-dual-sim-td-lte-cn-128gb-pabx0010cn-pabx0011cn/score/index.json b/site/public/v1/smartphones/s5-dual-sim-td-lte-cn-128gb-pabx0010cn-pabx0011cn/score/index.json new file mode 100644 index 00000000000..809d3e5b665 --- /dev/null +++ b/site/public/v1/smartphones/s5-dual-sim-td-lte-cn-128gb-pabx0010cn-pabx0011cn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": null, + "camera": 5.4, + "battery": 0.0, + "display": 47.4, + "value": null +} diff --git a/site/public/v1/smartphones/s5-dual-sim-td-lte-cn-32gb-pabx0000cn-pabx0001cn/index.json b/site/public/v1/smartphones/s5-dual-sim-td-lte-cn-32gb-pabx0000cn-pabx0001cn/index.json new file mode 100644 index 00000000000..0126e8cf86e --- /dev/null +++ b/site/public/v1/smartphones/s5-dual-sim-td-lte-cn-32gb-pabx0000cn-pabx0001cn/index.json @@ -0,0 +1,76 @@ +{ + "id": 1436, + "slug": "s5-dual-sim-td-lte-cn-32gb-pabx0000cn-pabx0001cn", + "name": "S5 Dual SIM TD-LTE CN 32GB PABX0000CN / PABX0001CN", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 114, + "slug": "snapdragon-625", + "name": "Snapdragon 625", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-625" + }, + "release_date": "2018-04-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 13.2 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 155.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": null, + "camera": 5.4, + "battery": 0.0, + "display": 47.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.332605", + "updated_at": "2026-06-19T00:43:44.332605" +} diff --git a/site/public/v1/smartphones/s5-dual-sim-td-lte-cn-32gb-pabx0000cn-pabx0001cn/score/index.json b/site/public/v1/smartphones/s5-dual-sim-td-lte-cn-32gb-pabx0000cn-pabx0001cn/score/index.json new file mode 100644 index 00000000000..809d3e5b665 --- /dev/null +++ b/site/public/v1/smartphones/s5-dual-sim-td-lte-cn-32gb-pabx0000cn-pabx0001cn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": null, + "camera": 5.4, + "battery": 0.0, + "display": 47.4, + "value": null +} diff --git a/site/public/v1/smartphones/s5-dual-sim-td-lte-cn-64gb-pabx0002cn-pabx0003cn/index.json b/site/public/v1/smartphones/s5-dual-sim-td-lte-cn-64gb-pabx0002cn-pabx0003cn/index.json new file mode 100644 index 00000000000..d92dbd54d01 --- /dev/null +++ b/site/public/v1/smartphones/s5-dual-sim-td-lte-cn-64gb-pabx0002cn-pabx0003cn/index.json @@ -0,0 +1,76 @@ +{ + "id": 1437, + "slug": "s5-dual-sim-td-lte-cn-64gb-pabx0002cn-pabx0003cn", + "name": "S5 Dual SIM TD-LTE CN 64GB PABX0002CN / PABX0003CN", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 114, + "slug": "snapdragon-625", + "name": "Snapdragon 625", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-625" + }, + "release_date": "2018-04-11", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 13.2 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 155.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": null, + "camera": 5.4, + "battery": 0.0, + "display": 47.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.332605", + "updated_at": "2026-06-19T00:43:44.332605" +} diff --git a/site/public/v1/smartphones/s5-dual-sim-td-lte-cn-64gb-pabx0002cn-pabx0003cn/score/index.json b/site/public/v1/smartphones/s5-dual-sim-td-lte-cn-64gb-pabx0002cn-pabx0003cn/score/index.json new file mode 100644 index 00000000000..809d3e5b665 --- /dev/null +++ b/site/public/v1/smartphones/s5-dual-sim-td-lte-cn-64gb-pabx0002cn-pabx0003cn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": null, + "camera": 5.4, + "battery": 0.0, + "display": 47.4, + "value": null +} diff --git a/site/public/v1/smartphones/s5-dual-sim-td-lte-emea-x652/index.json b/site/public/v1/smartphones/s5-dual-sim-td-lte-emea-x652/index.json new file mode 100644 index 00000000000..33b1b0e2998 --- /dev/null +++ b/site/public/v1/smartphones/s5-dual-sim-td-lte-emea-x652/index.json @@ -0,0 +1,76 @@ +{ + "id": 1336, + "slug": "s5-dual-sim-td-lte-emea-x652", + "name": "S5 Dual SIM TD-LTE EMEA X652", + "brand": { + "id": 19, + "slug": "infinix", + "name": "Infinix Mobile", + "country": "CN", + "url": "/v1/brands/infinix" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.8, + "performance": null, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.319606", + "updated_at": "2026-06-19T00:43:44.319606" +} diff --git a/site/public/v1/smartphones/s5-dual-sim-td-lte-emea-x652/score/index.json b/site/public/v1/smartphones/s5-dual-sim-td-lte-emea-x652/score/index.json new file mode 100644 index 00000000000..7f41dfc3901 --- /dev/null +++ b/site/public/v1/smartphones/s5-dual-sim-td-lte-emea-x652/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.8, + "performance": null, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/s5-pro-dual-sim-lte-emea/index.json b/site/public/v1/smartphones/s5-pro-dual-sim-lte-emea/index.json new file mode 100644 index 00000000000..781d7f66fa1 --- /dev/null +++ b/site/public/v1/smartphones/s5-pro-dual-sim-lte-emea/index.json @@ -0,0 +1,76 @@ +{ + "id": 1362, + "slug": "s5-pro-dual-sim-lte-emea", + "name": "S5 Pro Dual SIM LTE EMEA", + "brand": { + "id": 19, + "slug": "infinix", + "name": "Infinix Mobile", + "country": "CN", + "url": "/v1/brands/infinix" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.322606", + "updated_at": "2026-06-19T00:43:44.322606" +} diff --git a/site/public/v1/smartphones/s5-pro-dual-sim-lte-emea/score/index.json b/site/public/v1/smartphones/s5-pro-dual-sim-lte-emea/score/index.json new file mode 100644 index 00000000000..bc41c79e644 --- /dev/null +++ b/site/public/v1/smartphones/s5-pro-dual-sim-lte-emea/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/s5-pro-dual-sim-td-lte-apac/index.json b/site/public/v1/smartphones/s5-pro-dual-sim-td-lte-apac/index.json new file mode 100644 index 00000000000..79b5e9fe37a --- /dev/null +++ b/site/public/v1/smartphones/s5-pro-dual-sim-td-lte-apac/index.json @@ -0,0 +1,76 @@ +{ + "id": 1363, + "slug": "s5-pro-dual-sim-td-lte-apac", + "name": "S5 Pro Dual SIM TD-LTE APAC", + "brand": { + "id": 19, + "slug": "infinix", + "name": "Infinix Mobile", + "country": "CN", + "url": "/v1/brands/infinix" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.322606", + "updated_at": "2026-06-19T00:43:44.322606" +} diff --git a/site/public/v1/smartphones/s5-pro-dual-sim-td-lte-apac/score/index.json b/site/public/v1/smartphones/s5-pro-dual-sim-td-lte-apac/score/index.json new file mode 100644 index 00000000000..bc41c79e644 --- /dev/null +++ b/site/public/v1/smartphones/s5-pro-dual-sim-td-lte-apac/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/s5-pro-td-lte-dual-sim-paeg0005cn/index.json b/site/public/v1/smartphones/s5-pro-td-lte-dual-sim-paeg0005cn/index.json new file mode 100644 index 00000000000..6f6c18fe85d --- /dev/null +++ b/site/public/v1/smartphones/s5-pro-td-lte-dual-sim-paeg0005cn/index.json @@ -0,0 +1,76 @@ +{ + "id": 1438, + "slug": "s5-pro-td-lte-dual-sim-paeg0005cn", + "name": "S5 Pro TD-LTE Dual SIM PAEG0005CN", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 20.1 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.5, + "performance": 1.5, + "camera": 7.6, + "battery": 7.5, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.332605", + "updated_at": "2026-06-19T00:43:44.332605" +} diff --git a/site/public/v1/smartphones/s5-pro-td-lte-dual-sim-paeg0005cn/score/index.json b/site/public/v1/smartphones/s5-pro-td-lte-dual-sim-paeg0005cn/score/index.json new file mode 100644 index 00000000000..eef27a4707b --- /dev/null +++ b/site/public/v1/smartphones/s5-pro-td-lte-dual-sim-paeg0005cn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.5, + "performance": 1.5, + "camera": 7.6, + "battery": 7.5, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/s70-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/s70-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..8f395dabfb9 --- /dev/null +++ b/site/public/v1/smartphones/s70-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 508, + "slug": "s70-global-dual-sim-td-lte", + "name": "S70 Global Dual SIM TD-LTE", + "brand": { + "id": 11, + "slug": "doogee", + "name": "DOOGEE", + "country": "CN", + "url": "/v1/brands/doogee" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5500, + "charging_wired_w": 24.0, + "charging_wireless_w": null, + "weight_g": 278.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Yes", + "usb": "Yes" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 1.5, + "camera": 5.4, + "battery": 39.2, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.176932", + "updated_at": "2026-06-19T00:43:44.176932" +} diff --git a/site/public/v1/smartphones/s70-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/s70-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..df18a82580f --- /dev/null +++ b/site/public/v1/smartphones/s70-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 1.5, + "camera": 5.4, + "battery": 39.2, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/s70-lite-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/s70-lite-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..d26be136bc3 --- /dev/null +++ b/site/public/v1/smartphones/s70-lite-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 509, + "slug": "s70-lite-global-dual-sim-td-lte", + "name": "S70 Lite Global Dual SIM TD-LTE", + "brand": { + "id": 11, + "slug": "doogee", + "name": "DOOGEE", + "country": "CN", + "url": "/v1/brands/doogee" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5500, + "charging_wired_w": 24.0, + "charging_wireless_w": null, + "weight_g": 278.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Yes", + "usb": "Yes" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.4, + "performance": 0.0, + "camera": 5.3, + "battery": 39.2, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.176932", + "updated_at": "2026-06-19T00:43:44.176932" +} diff --git a/site/public/v1/smartphones/s70-lite-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/s70-lite-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..f604f97f257 --- /dev/null +++ b/site/public/v1/smartphones/s70-lite-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.4, + "performance": 0.0, + "camera": 5.3, + "battery": 39.2, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/s80-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/s80-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..85833526d8d --- /dev/null +++ b/site/public/v1/smartphones/s80-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 510, + "slug": "s80-global-dual-sim-td-lte", + "name": "S80 Global Dual SIM TD-LTE", + "brand": { + "id": 11, + "slug": "doogee", + "name": "DOOGEE", + "country": "CN", + "url": "/v1/brands/doogee" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 10080, + "charging_wired_w": 24.0, + "charging_wireless_w": null, + "weight_g": 398.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 1.5, + "camera": 5.1, + "battery": 46.7, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.176932", + "updated_at": "2026-06-19T00:43:44.176932" +} diff --git a/site/public/v1/smartphones/s80-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/s80-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..62420905549 --- /dev/null +++ b/site/public/v1/smartphones/s80-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 1.5, + "camera": 5.1, + "battery": 46.7, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/s80-lite-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/s80-lite-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..b444cf08193 --- /dev/null +++ b/site/public/v1/smartphones/s80-lite-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 511, + "slug": "s80-lite-global-dual-sim-td-lte", + "name": "S80 Lite Global Dual SIM TD-LTE", + "brand": { + "id": 11, + "slug": "doogee", + "name": "DOOGEE", + "country": "CN", + "url": "/v1/brands/doogee" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2018-12-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 10080, + "charging_wired_w": 24.0, + "charging_wireless_w": null, + "weight_g": 398.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 0.0, + "camera": 5.4, + "battery": 46.7, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.177932", + "updated_at": "2026-06-19T00:43:44.177932" +} diff --git a/site/public/v1/smartphones/s80-lite-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/s80-lite-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..a8a927bcd4d --- /dev/null +++ b/site/public/v1/smartphones/s80-lite-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 0.0, + "camera": 5.4, + "battery": 46.7, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/s90-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/s90-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..725c3ddf091 --- /dev/null +++ b/site/public/v1/smartphones/s90-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 514, + "slug": "s90-global-dual-sim-td-lte", + "name": "S90 Global Dual SIM TD-LTE", + "brand": { + "id": 11, + "slug": "doogee", + "name": "DOOGEE", + "country": "CN", + "url": "/v1/brands/doogee" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2019-02-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5050, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 300.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": 1.5, + "camera": 6.3, + "battery": 30.7, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.177932", + "updated_at": "2026-06-19T00:43:44.177932" +} diff --git a/site/public/v1/smartphones/s90-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/s90-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..0d1f65a96b3 --- /dev/null +++ b/site/public/v1/smartphones/s90-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": 1.5, + "camera": 6.3, + "battery": 30.7, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/s90-pro-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/s90-pro-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..84a79e9a426 --- /dev/null +++ b/site/public/v1/smartphones/s90-pro-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 515, + "slug": "s90-pro-global-dual-sim-td-lte", + "name": "S90 Pro Global Dual SIM TD-LTE", + "brand": { + "id": 11, + "slug": "doogee", + "name": "DOOGEE", + "country": "CN", + "url": "/v1/brands/doogee" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-07-16", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5050, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 300.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": 1.5, + "camera": 6.3, + "battery": 30.7, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.177932", + "updated_at": "2026-06-19T00:43:44.177932" +} diff --git a/site/public/v1/smartphones/s90-pro-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/s90-pro-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..0d1f65a96b3 --- /dev/null +++ b/site/public/v1/smartphones/s90-pro-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.9, + "performance": 1.5, + "camera": 6.3, + "battery": 30.7, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/s90c-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/s90c-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..f891c1b6d24 --- /dev/null +++ b/site/public/v1/smartphones/s90c-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 516, + "slug": "s90c-global-dual-sim-td-lte", + "name": "S90C Global Dual SIM TD-LTE", + "brand": { + "id": 11, + "slug": "doogee", + "name": "DOOGEE", + "country": "CN", + "url": "/v1/brands/doogee" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5050, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 285.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 0.0, + "camera": 6.3, + "battery": 31.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.177932", + "updated_at": "2026-06-19T00:43:44.177932" +} diff --git a/site/public/v1/smartphones/s90c-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/s90c-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..55809936647 --- /dev/null +++ b/site/public/v1/smartphones/s90c-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 0.0, + "camera": 6.3, + "battery": 31.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/s95-pro-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/s95-pro-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..15194aeb0ca --- /dev/null +++ b/site/public/v1/smartphones/s95-pro-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 517, + "slug": "s95-pro-global-dual-sim-td-lte", + "name": "S95 Pro Global Dual SIM TD-LTE", + "brand": { + "id": 11, + "slug": "doogee", + "name": "DOOGEE", + "country": "CN", + "url": "/v1/brands/doogee" + }, + "soc": { + "id": 46, + "slug": "helio-p90", + "name": "Helio P90", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GM9446", + "url": "/v1/socs/helio-p90" + }, + "release_date": "2020-01-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5150, + "charging_wired_w": 24.0, + "charging_wireless_w": null, + "weight_g": 285.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.9, + "performance": 3.0, + "camera": 16.5, + "battery": 34.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.178933", + "updated_at": "2026-06-19T00:43:44.178933" +} diff --git a/site/public/v1/smartphones/s95-pro-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/s95-pro-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..66a67f0a7ba --- /dev/null +++ b/site/public/v1/smartphones/s95-pro-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.9, + "performance": 3.0, + "camera": 16.5, + "battery": 34.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/simple-sumaho-4-td-lte/index.json b/site/public/v1/smartphones/simple-sumaho-4-td-lte/index.json new file mode 100644 index 00000000000..4ca05301590 --- /dev/null +++ b/site/public/v1/smartphones/simple-sumaho-4-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 4725, + "slug": "simple-sumaho-4-td-lte", + "name": "simple sumaho 4 TD-LTE", + "brand": { + "id": 75, + "slug": "sharp", + "name": "Sharp", + "country": "JP", + "url": "/v1/brands/sharp" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color ASV TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.803714", + "updated_at": "2026-06-19T00:43:44.803714" +} diff --git a/site/public/v1/smartphones/simple-sumaho-4-td-lte/score/index.json b/site/public/v1/smartphones/simple-sumaho-4-td-lte/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/simple-sumaho-4-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a015f-ds-galaxy-a01-2019-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/sm-a015f-ds-galaxy-a01-2019-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..d3b3f08ce51 --- /dev/null +++ b/site/public/v1/smartphones/sm-a015f-ds-galaxy-a01-2019-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 3859, + "slug": "sm-a015f-ds-galaxy-a01-2019-global-dual-sim-td-lte", + "name": "SM-A015F/DS Galaxy A01 2019 Global Dual SIM TD-LTE", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-12-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color PLS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 149.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.655758", + "updated_at": "2026-06-19T00:43:44.655758" +} diff --git a/site/public/v1/smartphones/sm-a015f-ds-galaxy-a01-2019-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/sm-a015f-ds-galaxy-a01-2019-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..8dd4f57a73b --- /dev/null +++ b/site/public/v1/smartphones/sm-a015f-ds-galaxy-a01-2019-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a015f-galaxy-a01-2019-global-td-lte/index.json b/site/public/v1/smartphones/sm-a015f-galaxy-a01-2019-global-td-lte/index.json new file mode 100644 index 00000000000..aff985a265c --- /dev/null +++ b/site/public/v1/smartphones/sm-a015f-galaxy-a01-2019-global-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 4067, + "slug": "sm-a015f-galaxy-a01-2019-global-td-lte", + "name": "SM-A015F Galaxy A01 2019 Global TD-LTE", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2020-02-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color PLS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 149.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.683781", + "updated_at": "2026-06-19T00:43:44.683781" +} diff --git a/site/public/v1/smartphones/sm-a015f-galaxy-a01-2019-global-td-lte/score/index.json b/site/public/v1/smartphones/sm-a015f-galaxy-a01-2019-global-td-lte/score/index.json new file mode 100644 index 00000000000..8dd4f57a73b --- /dev/null +++ b/site/public/v1/smartphones/sm-a015f-galaxy-a01-2019-global-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a015g-ds-galaxy-a01-2019-dual-sim-td-lte-apac/index.json b/site/public/v1/smartphones/sm-a015g-ds-galaxy-a01-2019-dual-sim-td-lte-apac/index.json new file mode 100644 index 00000000000..192477951f9 --- /dev/null +++ b/site/public/v1/smartphones/sm-a015g-ds-galaxy-a01-2019-dual-sim-td-lte-apac/index.json @@ -0,0 +1,76 @@ +{ + "id": 4068, + "slug": "sm-a015g-ds-galaxy-a01-2019-dual-sim-td-lte-apac", + "name": "SM-A015G/DS Galaxy A01 2019 Dual SIM TD-LTE APAC", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2020-02-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color PLS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 149.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.683781", + "updated_at": "2026-06-19T00:43:44.683781" +} diff --git a/site/public/v1/smartphones/sm-a015g-ds-galaxy-a01-2019-dual-sim-td-lte-apac/score/index.json b/site/public/v1/smartphones/sm-a015g-ds-galaxy-a01-2019-dual-sim-td-lte-apac/score/index.json new file mode 100644 index 00000000000..8dd4f57a73b --- /dev/null +++ b/site/public/v1/smartphones/sm-a015g-ds-galaxy-a01-2019-dual-sim-td-lte-apac/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a015m-ds-galaxy-a01-2019-dual-sim-lte-latam/index.json b/site/public/v1/smartphones/sm-a015m-ds-galaxy-a01-2019-dual-sim-lte-latam/index.json new file mode 100644 index 00000000000..7f759c02fab --- /dev/null +++ b/site/public/v1/smartphones/sm-a015m-ds-galaxy-a01-2019-dual-sim-lte-latam/index.json @@ -0,0 +1,76 @@ +{ + "id": 4069, + "slug": "sm-a015m-ds-galaxy-a01-2019-dual-sim-lte-latam", + "name": "SM-A015M/DS Galaxy A01 2019 Dual SIM LTE LATAM", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2020-03-01", + "msrp_usd": 160, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color PLS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 149.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 55.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.683781", + "updated_at": "2026-06-19T00:43:44.683781" +} diff --git a/site/public/v1/smartphones/sm-a015m-ds-galaxy-a01-2019-dual-sim-lte-latam/score/index.json b/site/public/v1/smartphones/sm-a015m-ds-galaxy-a01-2019-dual-sim-lte-latam/score/index.json new file mode 100644 index 00000000000..30ce20552f5 --- /dev/null +++ b/site/public/v1/smartphones/sm-a015m-ds-galaxy-a01-2019-dual-sim-lte-latam/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 55.0 +} diff --git a/site/public/v1/smartphones/sm-a015m-galaxy-a01-2019-lte-latam/index.json b/site/public/v1/smartphones/sm-a015m-galaxy-a01-2019-lte-latam/index.json new file mode 100644 index 00000000000..cc042796e0c --- /dev/null +++ b/site/public/v1/smartphones/sm-a015m-galaxy-a01-2019-lte-latam/index.json @@ -0,0 +1,76 @@ +{ + "id": 4070, + "slug": "sm-a015m-galaxy-a01-2019-lte-latam", + "name": "SM-A015M Galaxy A01 2019 LTE LATAM", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2020-03-01", + "msrp_usd": 2680, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color PLS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 149.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 5.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.683781", + "updated_at": "2026-06-19T00:43:44.683781" +} diff --git a/site/public/v1/smartphones/sm-a015m-galaxy-a01-2019-lte-latam/score/index.json b/site/public/v1/smartphones/sm-a015m-galaxy-a01-2019-lte-latam/score/index.json new file mode 100644 index 00000000000..238e4057d3e --- /dev/null +++ b/site/public/v1/smartphones/sm-a015m-galaxy-a01-2019-lte-latam/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": 5.0 +} diff --git a/site/public/v1/smartphones/sm-a015v-galaxy-a01-2019-lte-us/index.json b/site/public/v1/smartphones/sm-a015v-galaxy-a01-2019-lte-us/index.json new file mode 100644 index 00000000000..7ddc8628c93 --- /dev/null +++ b/site/public/v1/smartphones/sm-a015v-galaxy-a01-2019-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 4071, + "slug": "sm-a015v-galaxy-a01-2019-lte-us", + "name": "SM-A015V Galaxy A01 2019 LTE US", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color PLS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 149.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.683781", + "updated_at": "2026-06-19T00:43:44.683781" +} diff --git a/site/public/v1/smartphones/sm-a015v-galaxy-a01-2019-lte-us/score/index.json b/site/public/v1/smartphones/sm-a015v-galaxy-a01-2019-lte-us/score/index.json new file mode 100644 index 00000000000..8dd4f57a73b --- /dev/null +++ b/site/public/v1/smartphones/sm-a015v-galaxy-a01-2019-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a025f-ds-galaxy-a02s-2020-global-dual-sim-td-lte-32gb/index.json b/site/public/v1/smartphones/sm-a025f-ds-galaxy-a02s-2020-global-dual-sim-td-lte-32gb/index.json new file mode 100644 index 00000000000..56ed58d0a70 --- /dev/null +++ b/site/public/v1/smartphones/sm-a025f-ds-galaxy-a02s-2020-global-dual-sim-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4072, + "slug": "sm-a025f-ds-galaxy-a02s-2020-global-dual-sim-td-lte-32gb", + "name": "SM-A025F/DS Galaxy A02s 2020 Global Dual SIM TD-LTE 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2020-12-01", + "msrp_usd": 149, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 61.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.683781", + "updated_at": "2026-06-19T00:43:44.683781" +} diff --git a/site/public/v1/smartphones/sm-a025f-ds-galaxy-a02s-2020-global-dual-sim-td-lte-32gb/score/index.json b/site/public/v1/smartphones/sm-a025f-ds-galaxy-a02s-2020-global-dual-sim-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..f30fbd0b4af --- /dev/null +++ b/site/public/v1/smartphones/sm-a025f-ds-galaxy-a02s-2020-global-dual-sim-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 61.7 +} diff --git a/site/public/v1/smartphones/sm-a025f-ds-galaxy-a02s-2020-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-a025f-ds-galaxy-a02s-2020-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..5b86f6ce4d5 --- /dev/null +++ b/site/public/v1/smartphones/sm-a025f-ds-galaxy-a02s-2020-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4073, + "slug": "sm-a025f-ds-galaxy-a02s-2020-global-dual-sim-td-lte-64gb", + "name": "SM-A025F/DS Galaxy A02s 2020 Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2020-12-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.684785", + "updated_at": "2026-06-19T00:43:44.684785" +} diff --git a/site/public/v1/smartphones/sm-a025f-ds-galaxy-a02s-2020-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-a025f-ds-galaxy-a02s-2020-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..d19ba3069c5 --- /dev/null +++ b/site/public/v1/smartphones/sm-a025f-ds-galaxy-a02s-2020-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a025f-galaxy-a02s-2020-global-td-lte-32gb/index.json b/site/public/v1/smartphones/sm-a025f-galaxy-a02s-2020-global-td-lte-32gb/index.json new file mode 100644 index 00000000000..f1e88cdb747 --- /dev/null +++ b/site/public/v1/smartphones/sm-a025f-galaxy-a02s-2020-global-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4074, + "slug": "sm-a025f-galaxy-a02s-2020-global-td-lte-32gb", + "name": "SM-A025F Galaxy A02s 2020 Global TD-LTE 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2020-12-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.684785", + "updated_at": "2026-06-19T00:43:44.684785" +} diff --git a/site/public/v1/smartphones/sm-a025f-galaxy-a02s-2020-global-td-lte-32gb/score/index.json b/site/public/v1/smartphones/sm-a025f-galaxy-a02s-2020-global-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..d19ba3069c5 --- /dev/null +++ b/site/public/v1/smartphones/sm-a025f-galaxy-a02s-2020-global-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a025g-dsn-galaxy-a02s-2020-global-dual-sim-td-lte-32gb/index.json b/site/public/v1/smartphones/sm-a025g-dsn-galaxy-a02s-2020-global-dual-sim-td-lte-32gb/index.json new file mode 100644 index 00000000000..cc32fb31817 --- /dev/null +++ b/site/public/v1/smartphones/sm-a025g-dsn-galaxy-a02s-2020-global-dual-sim-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4326, + "slug": "sm-a025g-dsn-galaxy-a02s-2020-global-dual-sim-td-lte-32gb", + "name": "SM-A025G/DSN Galaxy A02s 2020 Global Dual SIM TD-LTE 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2021-01-01", + "msrp_usd": 139, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 61.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.720205", + "updated_at": "2026-06-19T00:43:44.720205" +} diff --git a/site/public/v1/smartphones/sm-a025g-dsn-galaxy-a02s-2020-global-dual-sim-td-lte-32gb/score/index.json b/site/public/v1/smartphones/sm-a025g-dsn-galaxy-a02s-2020-global-dual-sim-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..f30fbd0b4af --- /dev/null +++ b/site/public/v1/smartphones/sm-a025g-dsn-galaxy-a02s-2020-global-dual-sim-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 61.7 +} diff --git a/site/public/v1/smartphones/sm-a025m-ds-galaxy-a02s-2020-dual-sim-lte-a-latam-32gb/index.json b/site/public/v1/smartphones/sm-a025m-ds-galaxy-a02s-2020-dual-sim-lte-a-latam-32gb/index.json new file mode 100644 index 00000000000..b8ac70eeed2 --- /dev/null +++ b/site/public/v1/smartphones/sm-a025m-ds-galaxy-a02s-2020-dual-sim-lte-a-latam-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4327, + "slug": "sm-a025m-ds-galaxy-a02s-2020-dual-sim-lte-a-latam-32gb", + "name": "SM-A025M/DS Galaxy A02s 2020 Dual SIM LTE-A LATAM 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2021-02-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.720205", + "updated_at": "2026-06-19T00:43:44.720205" +} diff --git a/site/public/v1/smartphones/sm-a025m-ds-galaxy-a02s-2020-dual-sim-lte-a-latam-32gb/score/index.json b/site/public/v1/smartphones/sm-a025m-ds-galaxy-a02s-2020-dual-sim-lte-a-latam-32gb/score/index.json new file mode 100644 index 00000000000..d19ba3069c5 --- /dev/null +++ b/site/public/v1/smartphones/sm-a025m-ds-galaxy-a02s-2020-dual-sim-lte-a-latam-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a025m-ds-galaxy-a02s-2020-dual-sim-lte-a-latam-64gb/index.json b/site/public/v1/smartphones/sm-a025m-ds-galaxy-a02s-2020-dual-sim-lte-a-latam-64gb/index.json new file mode 100644 index 00000000000..365175049b8 --- /dev/null +++ b/site/public/v1/smartphones/sm-a025m-ds-galaxy-a02s-2020-dual-sim-lte-a-latam-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4328, + "slug": "sm-a025m-ds-galaxy-a02s-2020-dual-sim-lte-a-latam-64gb", + "name": "SM-A025M/DS Galaxy A02s 2020 Dual SIM LTE-A LATAM 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2021-02-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.720205", + "updated_at": "2026-06-19T00:43:44.720205" +} diff --git a/site/public/v1/smartphones/sm-a025m-ds-galaxy-a02s-2020-dual-sim-lte-a-latam-64gb/score/index.json b/site/public/v1/smartphones/sm-a025m-ds-galaxy-a02s-2020-dual-sim-lte-a-latam-64gb/score/index.json new file mode 100644 index 00000000000..d19ba3069c5 --- /dev/null +++ b/site/public/v1/smartphones/sm-a025m-ds-galaxy-a02s-2020-dual-sim-lte-a-latam-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a025m-galaxy-a02s-2020-lte-a-latam-64gb/index.json b/site/public/v1/smartphones/sm-a025m-galaxy-a02s-2020-lte-a-latam-64gb/index.json new file mode 100644 index 00000000000..b39a5b455f7 --- /dev/null +++ b/site/public/v1/smartphones/sm-a025m-galaxy-a02s-2020-lte-a-latam-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4329, + "slug": "sm-a025m-galaxy-a02s-2020-lte-a-latam-64gb", + "name": "SM-A025M Galaxy A02s 2020 LTE-A LATAM 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2021-02-01", + "msrp_usd": 4139, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 11.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.721204", + "updated_at": "2026-06-19T00:43:44.721204" +} diff --git a/site/public/v1/smartphones/sm-a025m-galaxy-a02s-2020-lte-a-latam-64gb/score/index.json b/site/public/v1/smartphones/sm-a025m-galaxy-a02s-2020-lte-a-latam-64gb/score/index.json new file mode 100644 index 00000000000..9131a266253 --- /dev/null +++ b/site/public/v1/smartphones/sm-a025m-galaxy-a02s-2020-lte-a-latam-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 11.7 +} diff --git a/site/public/v1/smartphones/sm-a025u-galaxy-a02s-2020-td-lte-us-32gb-sm-a025r4/index.json b/site/public/v1/smartphones/sm-a025u-galaxy-a02s-2020-td-lte-us-32gb-sm-a025r4/index.json new file mode 100644 index 00000000000..35fec9e8179 --- /dev/null +++ b/site/public/v1/smartphones/sm-a025u-galaxy-a02s-2020-td-lte-us-32gb-sm-a025r4/index.json @@ -0,0 +1,77 @@ +{ + "id": 4330, + "slug": "sm-a025u-galaxy-a02s-2020-td-lte-us-32gb-sm-a025r4", + "name": "SM-A025U Galaxy A02s 2020 TD-LTE US 32GB / SM-A025R4", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2021-06-24", + "msrp_usd": 160, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color PLS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 17.5, + "value": 58.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.721204", + "updated_at": "2026-06-19T00:43:44.721204" +} diff --git a/site/public/v1/smartphones/sm-a025u-galaxy-a02s-2020-td-lte-us-32gb-sm-a025r4/score/index.json b/site/public/v1/smartphones/sm-a025u-galaxy-a02s-2020-td-lte-us-32gb-sm-a025r4/score/index.json new file mode 100644 index 00000000000..dd0766d45b9 --- /dev/null +++ b/site/public/v1/smartphones/sm-a025u-galaxy-a02s-2020-td-lte-us-32gb-sm-a025r4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 17.5, + "value": 58.8 +} diff --git a/site/public/v1/smartphones/sm-a025u-galaxy-a02s-2020-td-lte-us-32gb-sm-a025t/index.json b/site/public/v1/smartphones/sm-a025u-galaxy-a02s-2020-td-lte-us-32gb-sm-a025t/index.json new file mode 100644 index 00000000000..a0f21f8c2b2 --- /dev/null +++ b/site/public/v1/smartphones/sm-a025u-galaxy-a02s-2020-td-lte-us-32gb-sm-a025t/index.json @@ -0,0 +1,77 @@ +{ + "id": 4331, + "slug": "sm-a025u-galaxy-a02s-2020-td-lte-us-32gb-sm-a025t", + "name": "SM-A025U Galaxy A02s 2020 TD-LTE US 32GB / SM-A025T", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2021-06-24", + "msrp_usd": 160, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color PLS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 17.5, + "value": 58.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.721204", + "updated_at": "2026-06-19T00:43:44.721204" +} diff --git a/site/public/v1/smartphones/sm-a025u-galaxy-a02s-2020-td-lte-us-32gb-sm-a025t/score/index.json b/site/public/v1/smartphones/sm-a025u-galaxy-a02s-2020-td-lte-us-32gb-sm-a025t/score/index.json new file mode 100644 index 00000000000..dd0766d45b9 --- /dev/null +++ b/site/public/v1/smartphones/sm-a025u-galaxy-a02s-2020-td-lte-us-32gb-sm-a025t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 17.5, + "value": 58.8 +} diff --git a/site/public/v1/smartphones/sm-a025u1-ds-galaxy-a02s-2020-dual-sim-td-lte-us-32gb/index.json b/site/public/v1/smartphones/sm-a025u1-ds-galaxy-a02s-2020-dual-sim-td-lte-us-32gb/index.json new file mode 100644 index 00000000000..26003ddccff --- /dev/null +++ b/site/public/v1/smartphones/sm-a025u1-ds-galaxy-a02s-2020-dual-sim-td-lte-us-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4332, + "slug": "sm-a025u1-ds-galaxy-a02s-2020-dual-sim-td-lte-us-32gb", + "name": "SM-A025U1/DS Galaxy A02s 2020 Dual SIM TD-LTE US 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2021-03-01", + "msrp_usd": 110, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 61.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.721204", + "updated_at": "2026-06-19T00:43:44.721204" +} diff --git a/site/public/v1/smartphones/sm-a025u1-ds-galaxy-a02s-2020-dual-sim-td-lte-us-32gb/score/index.json b/site/public/v1/smartphones/sm-a025u1-ds-galaxy-a02s-2020-dual-sim-td-lte-us-32gb/score/index.json new file mode 100644 index 00000000000..f30fbd0b4af --- /dev/null +++ b/site/public/v1/smartphones/sm-a025u1-ds-galaxy-a02s-2020-dual-sim-td-lte-us-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 61.7 +} diff --git a/site/public/v1/smartphones/sm-a025v-galaxy-a02s-2020-lte-a-us-32gb-sm-a025u/index.json b/site/public/v1/smartphones/sm-a025v-galaxy-a02s-2020-lte-a-us-32gb-sm-a025u/index.json new file mode 100644 index 00000000000..5ed55e2b228 --- /dev/null +++ b/site/public/v1/smartphones/sm-a025v-galaxy-a02s-2020-lte-a-us-32gb-sm-a025u/index.json @@ -0,0 +1,77 @@ +{ + "id": 4333, + "slug": "sm-a025v-galaxy-a02s-2020-lte-a-us-32gb-sm-a025u", + "name": "SM-A025V Galaxy A02s 2020 LTE-A US 32GB / SM-A025U", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2021-04-29", + "msrp_usd": 150, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color PLS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 17.5, + "value": 58.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.721204", + "updated_at": "2026-06-19T00:43:44.721204" +} diff --git a/site/public/v1/smartphones/sm-a025v-galaxy-a02s-2020-lte-a-us-32gb-sm-a025u/score/index.json b/site/public/v1/smartphones/sm-a025v-galaxy-a02s-2020-lte-a-us-32gb-sm-a025u/score/index.json new file mode 100644 index 00000000000..dd0766d45b9 --- /dev/null +++ b/site/public/v1/smartphones/sm-a025v-galaxy-a02s-2020-lte-a-us-32gb-sm-a025u/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 17.5, + "value": 58.8 +} diff --git a/site/public/v1/smartphones/sm-a035g-dsn-galaxy-a03-2021-premium-edition-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-a035g-dsn-galaxy-a03-2021-premium-edition-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..866fedc3fe8 --- /dev/null +++ b/site/public/v1/smartphones/sm-a035g-dsn-galaxy-a03-2021-premium-edition-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4540, + "slug": "sm-a035g-dsn-galaxy-a03-2021-premium-edition-global-dual-sim-td-lte-64gb", + "name": "SM-A035G/DSN Galaxy A03 2021 Premium Edition Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 215, + "slug": "unisoc-t606", + "name": "Unisoc T606", + "manufacturer": { + "slug": "unisoc", + "name": "UNISOC", + "url": "/v1/brands/unisoc" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G57 MP1", + "url": "/v1/socs/unisoc-t606" + }, + "release_date": "2022-01-09", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.746204", + "updated_at": "2026-06-19T00:43:44.746204" +} diff --git a/site/public/v1/smartphones/sm-a035g-dsn-galaxy-a03-2021-premium-edition-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-a035g-dsn-galaxy-a03-2021-premium-edition-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..99aee406377 --- /dev/null +++ b/site/public/v1/smartphones/sm-a035g-dsn-galaxy-a03-2021-premium-edition-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a037f-ds-galaxy-a03s-2021-premium-edition-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-a037f-ds-galaxy-a03s-2021-premium-edition-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..8c2c91d7c22 --- /dev/null +++ b/site/public/v1/smartphones/sm-a037f-ds-galaxy-a03s-2021-premium-edition-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4334, + "slug": "sm-a037f-ds-galaxy-a03s-2021-premium-edition-global-dual-sim-td-lte-64gb", + "name": "SM-A037F/DS Galaxy A03s 2021 Premium Edition Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2021-08-17", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.721204", + "updated_at": "2026-06-19T00:43:44.721204" +} diff --git a/site/public/v1/smartphones/sm-a037f-ds-galaxy-a03s-2021-premium-edition-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-a037f-ds-galaxy-a03s-2021-premium-edition-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/sm-a037f-ds-galaxy-a03s-2021-premium-edition-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a037f-ds-galaxy-a03s-2021-standard-edition-global-dual-sim-td-lte-32gb/index.json b/site/public/v1/smartphones/sm-a037f-ds-galaxy-a03s-2021-standard-edition-global-dual-sim-td-lte-32gb/index.json new file mode 100644 index 00000000000..f20b5b0d26c --- /dev/null +++ b/site/public/v1/smartphones/sm-a037f-ds-galaxy-a03s-2021-standard-edition-global-dual-sim-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4335, + "slug": "sm-a037f-ds-galaxy-a03s-2021-standard-edition-global-dual-sim-td-lte-32gb", + "name": "SM-A037F/DS Galaxy A03s 2021 Standard Edition Global Dual SIM TD-LTE 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2021-08-17", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.721204", + "updated_at": "2026-06-19T00:43:44.721204" +} diff --git a/site/public/v1/smartphones/sm-a037f-ds-galaxy-a03s-2021-standard-edition-global-dual-sim-td-lte-32gb/score/index.json b/site/public/v1/smartphones/sm-a037f-ds-galaxy-a03s-2021-standard-edition-global-dual-sim-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/sm-a037f-ds-galaxy-a03s-2021-standard-edition-global-dual-sim-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a037g-dsn-galaxy-a03s-2021-standard-edition-global-dual-sim-td-lte-32gb/index.json b/site/public/v1/smartphones/sm-a037g-dsn-galaxy-a03s-2021-standard-edition-global-dual-sim-td-lte-32gb/index.json new file mode 100644 index 00000000000..7f28273137f --- /dev/null +++ b/site/public/v1/smartphones/sm-a037g-dsn-galaxy-a03s-2021-standard-edition-global-dual-sim-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4336, + "slug": "sm-a037g-dsn-galaxy-a03s-2021-standard-edition-global-dual-sim-td-lte-32gb", + "name": "SM-A037G/DSN Galaxy A03s 2021 Standard Edition Global Dual SIM TD-LTE 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2021-08-01", + "msrp_usd": 139, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 58.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.721204", + "updated_at": "2026-06-19T00:43:44.721204" +} diff --git a/site/public/v1/smartphones/sm-a037g-dsn-galaxy-a03s-2021-standard-edition-global-dual-sim-td-lte-32gb/score/index.json b/site/public/v1/smartphones/sm-a037g-dsn-galaxy-a03s-2021-standard-edition-global-dual-sim-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..eb339cb8c55 --- /dev/null +++ b/site/public/v1/smartphones/sm-a037g-dsn-galaxy-a03s-2021-standard-edition-global-dual-sim-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 58.8 +} diff --git a/site/public/v1/smartphones/sm-a037m-ds-galaxy-a03s-2021-premium-edition-dual-sim-lte-latam-64gb/index.json b/site/public/v1/smartphones/sm-a037m-ds-galaxy-a03s-2021-premium-edition-dual-sim-lte-latam-64gb/index.json new file mode 100644 index 00000000000..ae29908c4bd --- /dev/null +++ b/site/public/v1/smartphones/sm-a037m-ds-galaxy-a03s-2021-premium-edition-dual-sim-lte-latam-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4337, + "slug": "sm-a037m-ds-galaxy-a03s-2021-premium-edition-dual-sim-lte-latam-64gb", + "name": "SM-A037M/DS Galaxy A03s 2021 Premium Edition Dual SIM LTE LATAM 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2021-08-26", + "msrp_usd": 1299, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 20.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.722204", + "updated_at": "2026-06-19T00:43:44.722204" +} diff --git a/site/public/v1/smartphones/sm-a037m-ds-galaxy-a03s-2021-premium-edition-dual-sim-lte-latam-64gb/score/index.json b/site/public/v1/smartphones/sm-a037m-ds-galaxy-a03s-2021-premium-edition-dual-sim-lte-latam-64gb/score/index.json new file mode 100644 index 00000000000..f52bfd5ad04 --- /dev/null +++ b/site/public/v1/smartphones/sm-a037m-ds-galaxy-a03s-2021-premium-edition-dual-sim-lte-latam-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 20.4 +} diff --git a/site/public/v1/smartphones/sm-a037m-ds-galaxy-a03s-2021-standard-edition-dual-sim-lte-latam-32gb/index.json b/site/public/v1/smartphones/sm-a037m-ds-galaxy-a03s-2021-standard-edition-dual-sim-lte-latam-32gb/index.json new file mode 100644 index 00000000000..f3717c97a9e --- /dev/null +++ b/site/public/v1/smartphones/sm-a037m-ds-galaxy-a03s-2021-standard-edition-dual-sim-lte-latam-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4338, + "slug": "sm-a037m-ds-galaxy-a03s-2021-standard-edition-dual-sim-lte-latam-32gb", + "name": "SM-A037M/DS Galaxy A03s 2021 Standard Edition Dual SIM LTE LATAM 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2021-08-26", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.722204", + "updated_at": "2026-06-19T00:43:44.722204" +} diff --git a/site/public/v1/smartphones/sm-a037m-ds-galaxy-a03s-2021-standard-edition-dual-sim-lte-latam-32gb/score/index.json b/site/public/v1/smartphones/sm-a037m-ds-galaxy-a03s-2021-standard-edition-dual-sim-lte-latam-32gb/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/sm-a037m-ds-galaxy-a03s-2021-standard-edition-dual-sim-lte-latam-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a037m-galaxy-a03s-2021-premium-edition-lte-latam-64gb/index.json b/site/public/v1/smartphones/sm-a037m-galaxy-a03s-2021-premium-edition-lte-latam-64gb/index.json new file mode 100644 index 00000000000..720c68b64f5 --- /dev/null +++ b/site/public/v1/smartphones/sm-a037m-galaxy-a03s-2021-premium-edition-lte-latam-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4339, + "slug": "sm-a037m-galaxy-a03s-2021-premium-edition-lte-latam-64gb", + "name": "SM-A037M Galaxy A03s 2021 Premium Edition LTE LATAM 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2021-08-26", + "msrp_usd": 4200, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 8.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.722204", + "updated_at": "2026-06-19T00:43:44.722204" +} diff --git a/site/public/v1/smartphones/sm-a037m-galaxy-a03s-2021-premium-edition-lte-latam-64gb/score/index.json b/site/public/v1/smartphones/sm-a037m-galaxy-a03s-2021-premium-edition-lte-latam-64gb/score/index.json new file mode 100644 index 00000000000..0aa133a66b7 --- /dev/null +++ b/site/public/v1/smartphones/sm-a037m-galaxy-a03s-2021-premium-edition-lte-latam-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 8.8 +} diff --git a/site/public/v1/smartphones/sm-a037u-galaxy-a03s-2021-standard-edition-td-lte-us-32gb-sm-a037t/index.json b/site/public/v1/smartphones/sm-a037u-galaxy-a03s-2021-standard-edition-td-lte-us-32gb-sm-a037t/index.json new file mode 100644 index 00000000000..b38bc1793e0 --- /dev/null +++ b/site/public/v1/smartphones/sm-a037u-galaxy-a03s-2021-standard-edition-td-lte-us-32gb-sm-a037t/index.json @@ -0,0 +1,77 @@ +{ + "id": 4541, + "slug": "sm-a037u-galaxy-a03s-2021-standard-edition-td-lte-us-32gb-sm-a037t", + "name": "SM-A037U Galaxy A03s 2021 Standard Edition TD-LTE US 32GB / SM-A037T", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2022-01-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 8.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.746204", + "updated_at": "2026-06-19T00:43:44.746204" +} diff --git a/site/public/v1/smartphones/sm-a037u-galaxy-a03s-2021-standard-edition-td-lte-us-32gb-sm-a037t/score/index.json b/site/public/v1/smartphones/sm-a037u-galaxy-a03s-2021-standard-edition-td-lte-us-32gb-sm-a037t/score/index.json new file mode 100644 index 00000000000..ff129acafc5 --- /dev/null +++ b/site/public/v1/smartphones/sm-a037u-galaxy-a03s-2021-standard-edition-td-lte-us-32gb-sm-a037t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a107f-ds-galaxy-a10s-2019-premium-edition-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/sm-a107f-ds-galaxy-a10s-2019-premium-edition-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..8ee88ef5867 --- /dev/null +++ b/site/public/v1/smartphones/sm-a107f-ds-galaxy-a10s-2019-premium-edition-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 3860, + "slug": "sm-a107f-ds-galaxy-a10s-2019-premium-edition-global-dual-sim-td-lte", + "name": "SM-A107F/DS Galaxy A10s 2019 Premium Edition Global Dual SIM TD-LTE", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-09-13", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color PLS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.656757", + "updated_at": "2026-06-19T00:43:44.656757" +} diff --git a/site/public/v1/smartphones/sm-a107f-ds-galaxy-a10s-2019-premium-edition-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/sm-a107f-ds-galaxy-a10s-2019-premium-edition-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/sm-a107f-ds-galaxy-a10s-2019-premium-edition-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a107f-ds-galaxy-a10s-2019-standard-edition-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/sm-a107f-ds-galaxy-a10s-2019-standard-edition-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..e734623573a --- /dev/null +++ b/site/public/v1/smartphones/sm-a107f-ds-galaxy-a10s-2019-standard-edition-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 3861, + "slug": "sm-a107f-ds-galaxy-a10s-2019-standard-edition-global-dual-sim-td-lte", + "name": "SM-A107F/DS Galaxy A10s 2019 Standard Edition Global Dual SIM TD-LTE", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-09-13", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color PLS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.656757", + "updated_at": "2026-06-19T00:43:44.656757" +} diff --git a/site/public/v1/smartphones/sm-a107f-ds-galaxy-a10s-2019-standard-edition-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/sm-a107f-ds-galaxy-a10s-2019-standard-edition-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/sm-a107f-ds-galaxy-a10s-2019-standard-edition-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a107f-galaxy-a10s-2019-standard-edition-global-td-lte/index.json b/site/public/v1/smartphones/sm-a107f-galaxy-a10s-2019-standard-edition-global-td-lte/index.json new file mode 100644 index 00000000000..072c02a2578 --- /dev/null +++ b/site/public/v1/smartphones/sm-a107f-galaxy-a10s-2019-standard-edition-global-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 3862, + "slug": "sm-a107f-galaxy-a10s-2019-standard-edition-global-td-lte", + "name": "SM-A107F Galaxy A10s 2019 Standard Edition Global TD-LTE", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-09-13", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color PLS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.656757", + "updated_at": "2026-06-19T00:43:44.656757" +} diff --git a/site/public/v1/smartphones/sm-a107f-galaxy-a10s-2019-standard-edition-global-td-lte/score/index.json b/site/public/v1/smartphones/sm-a107f-galaxy-a10s-2019-standard-edition-global-td-lte/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/sm-a107f-galaxy-a10s-2019-standard-edition-global-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a107m-ds-galaxy-a10s-2019-standard-edition-dual-sim-lte-latam/index.json b/site/public/v1/smartphones/sm-a107m-ds-galaxy-a10s-2019-standard-edition-dual-sim-lte-latam/index.json new file mode 100644 index 00000000000..c34039e0de1 --- /dev/null +++ b/site/public/v1/smartphones/sm-a107m-ds-galaxy-a10s-2019-standard-edition-dual-sim-lte-latam/index.json @@ -0,0 +1,76 @@ +{ + "id": 3863, + "slug": "sm-a107m-ds-galaxy-a10s-2019-standard-edition-dual-sim-lte-latam", + "name": "SM-A107M/DS Galaxy A10s 2019 Standard Edition Dual SIM LTE LATAM", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color PLS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.656757", + "updated_at": "2026-06-19T00:43:44.656757" +} diff --git a/site/public/v1/smartphones/sm-a107m-ds-galaxy-a10s-2019-standard-edition-dual-sim-lte-latam/score/index.json b/site/public/v1/smartphones/sm-a107m-ds-galaxy-a10s-2019-standard-edition-dual-sim-lte-latam/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/sm-a107m-ds-galaxy-a10s-2019-standard-edition-dual-sim-lte-latam/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a107m-galaxy-a10s-2019-standard-edition-lte-latam/index.json b/site/public/v1/smartphones/sm-a107m-galaxy-a10s-2019-standard-edition-lte-latam/index.json new file mode 100644 index 00000000000..81c58491e98 --- /dev/null +++ b/site/public/v1/smartphones/sm-a107m-galaxy-a10s-2019-standard-edition-lte-latam/index.json @@ -0,0 +1,76 @@ +{ + "id": 3864, + "slug": "sm-a107m-galaxy-a10s-2019-standard-edition-lte-latam", + "name": "SM-A107M Galaxy A10s 2019 Standard Edition LTE LATAM", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-09-13", + "msrp_usd": 4139, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color PLS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 9.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.656757", + "updated_at": "2026-06-19T00:43:44.656757" +} diff --git a/site/public/v1/smartphones/sm-a107m-galaxy-a10s-2019-standard-edition-lte-latam/score/index.json b/site/public/v1/smartphones/sm-a107m-galaxy-a10s-2019-standard-edition-lte-latam/score/index.json new file mode 100644 index 00000000000..63e5535a3cc --- /dev/null +++ b/site/public/v1/smartphones/sm-a107m-galaxy-a10s-2019-standard-edition-lte-latam/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 9.2 +} diff --git a/site/public/v1/smartphones/sm-a115f-ds-galaxy-a11-2020-global-dual-sim-td-lte-32gb/index.json b/site/public/v1/smartphones/sm-a115f-ds-galaxy-a11-2020-global-dual-sim-td-lte-32gb/index.json new file mode 100644 index 00000000000..3373bd65777 --- /dev/null +++ b/site/public/v1/smartphones/sm-a115f-ds-galaxy-a11-2020-global-dual-sim-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4075, + "slug": "sm-a115f-ds-galaxy-a11-2020-global-dual-sim-td-lte-32gb", + "name": "SM-A115F/DS Galaxy A11 2020 Global Dual SIM TD-LTE 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2020-04-01", + "msrp_usd": 160, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 59.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.684785", + "updated_at": "2026-06-19T00:43:44.684785" +} diff --git a/site/public/v1/smartphones/sm-a115f-ds-galaxy-a11-2020-global-dual-sim-td-lte-32gb/score/index.json b/site/public/v1/smartphones/sm-a115f-ds-galaxy-a11-2020-global-dual-sim-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..c9a1e1f5381 --- /dev/null +++ b/site/public/v1/smartphones/sm-a115f-ds-galaxy-a11-2020-global-dual-sim-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 59.2 +} diff --git a/site/public/v1/smartphones/sm-a115f-dsn-galaxy-a11-2020-global-dual-sim-td-lte-32gb/index.json b/site/public/v1/smartphones/sm-a115f-dsn-galaxy-a11-2020-global-dual-sim-td-lte-32gb/index.json new file mode 100644 index 00000000000..04d293eb17b --- /dev/null +++ b/site/public/v1/smartphones/sm-a115f-dsn-galaxy-a11-2020-global-dual-sim-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4076, + "slug": "sm-a115f-dsn-galaxy-a11-2020-global-dual-sim-td-lte-32gb", + "name": "SM-A115F/DSN Galaxy A11 2020 Global Dual SIM TD-LTE 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2020-07-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.684785", + "updated_at": "2026-06-19T00:43:44.684785" +} diff --git a/site/public/v1/smartphones/sm-a115f-dsn-galaxy-a11-2020-global-dual-sim-td-lte-32gb/score/index.json b/site/public/v1/smartphones/sm-a115f-dsn-galaxy-a11-2020-global-dual-sim-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/sm-a115f-dsn-galaxy-a11-2020-global-dual-sim-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a115f-galaxy-a11-2020-global-td-lte-32gb/index.json b/site/public/v1/smartphones/sm-a115f-galaxy-a11-2020-global-td-lte-32gb/index.json new file mode 100644 index 00000000000..788dd7ecfe7 --- /dev/null +++ b/site/public/v1/smartphones/sm-a115f-galaxy-a11-2020-global-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4077, + "slug": "sm-a115f-galaxy-a11-2020-global-td-lte-32gb", + "name": "SM-A115F Galaxy A11 2020 Global TD-LTE 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.684785", + "updated_at": "2026-06-19T00:43:44.684785" +} diff --git a/site/public/v1/smartphones/sm-a115f-galaxy-a11-2020-global-td-lte-32gb/score/index.json b/site/public/v1/smartphones/sm-a115f-galaxy-a11-2020-global-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/sm-a115f-galaxy-a11-2020-global-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a115m-ds-galaxy-a11-2020-dual-sim-lte-apac-latam-32gb/index.json b/site/public/v1/smartphones/sm-a115m-ds-galaxy-a11-2020-dual-sim-lte-apac-latam-32gb/index.json new file mode 100644 index 00000000000..85a56947d53 --- /dev/null +++ b/site/public/v1/smartphones/sm-a115m-ds-galaxy-a11-2020-dual-sim-lte-apac-latam-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4078, + "slug": "sm-a115m-ds-galaxy-a11-2020-dual-sim-lte-apac-latam-32gb", + "name": "SM-A115M/DS Galaxy A11 2020 Dual SIM LTE APAC LATAM 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2020-04-01", + "msrp_usd": 160, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 59.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.684785", + "updated_at": "2026-06-19T00:43:44.684785" +} diff --git a/site/public/v1/smartphones/sm-a115m-ds-galaxy-a11-2020-dual-sim-lte-apac-latam-32gb/score/index.json b/site/public/v1/smartphones/sm-a115m-ds-galaxy-a11-2020-dual-sim-lte-apac-latam-32gb/score/index.json new file mode 100644 index 00000000000..c9a1e1f5381 --- /dev/null +++ b/site/public/v1/smartphones/sm-a115m-ds-galaxy-a11-2020-dual-sim-lte-apac-latam-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 59.2 +} diff --git a/site/public/v1/smartphones/sm-a115m-galaxy-a11-2020-lte-latam-32gb/index.json b/site/public/v1/smartphones/sm-a115m-galaxy-a11-2020-lte-latam-32gb/index.json new file mode 100644 index 00000000000..438b9e461c8 --- /dev/null +++ b/site/public/v1/smartphones/sm-a115m-galaxy-a11-2020-lte-latam-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4079, + "slug": "sm-a115m-galaxy-a11-2020-lte-latam-32gb", + "name": "SM-A115M Galaxy A11 2020 LTE LATAM 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.685788", + "updated_at": "2026-06-19T00:43:44.685788" +} diff --git a/site/public/v1/smartphones/sm-a115m-galaxy-a11-2020-lte-latam-32gb/score/index.json b/site/public/v1/smartphones/sm-a115m-galaxy-a11-2020-lte-latam-32gb/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/sm-a115m-galaxy-a11-2020-lte-latam-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a115m-galaxy-a11-2020-lte-latam-64gb/index.json b/site/public/v1/smartphones/sm-a115m-galaxy-a11-2020-lte-latam-64gb/index.json new file mode 100644 index 00000000000..d11fa01558c --- /dev/null +++ b/site/public/v1/smartphones/sm-a115m-galaxy-a11-2020-lte-latam-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4080, + "slug": "sm-a115m-galaxy-a11-2020-lte-latam-64gb", + "name": "SM-A115M Galaxy A11 2020 LTE LATAM 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.685788", + "updated_at": "2026-06-19T00:43:44.685788" +} diff --git a/site/public/v1/smartphones/sm-a115m-galaxy-a11-2020-lte-latam-64gb/score/index.json b/site/public/v1/smartphones/sm-a115m-galaxy-a11-2020-lte-latam-64gb/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/sm-a115m-galaxy-a11-2020-lte-latam-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a115u-galaxy-a11-2020-lte-us-32gb-sm-a115r4/index.json b/site/public/v1/smartphones/sm-a115u-galaxy-a11-2020-lte-us-32gb-sm-a115r4/index.json new file mode 100644 index 00000000000..3e24baf45b3 --- /dev/null +++ b/site/public/v1/smartphones/sm-a115u-galaxy-a11-2020-lte-us-32gb-sm-a115r4/index.json @@ -0,0 +1,76 @@ +{ + "id": 4081, + "slug": "sm-a115u-galaxy-a11-2020-lte-us-32gb-sm-a115r4", + "name": "SM-A115U Galaxy A11 2020 LTE US 32GB / SM-A115R4", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2020-06-01", + "msrp_usd": 180, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 59.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.685788", + "updated_at": "2026-06-19T00:43:44.685788" +} diff --git a/site/public/v1/smartphones/sm-a115u-galaxy-a11-2020-lte-us-32gb-sm-a115r4/score/index.json b/site/public/v1/smartphones/sm-a115u-galaxy-a11-2020-lte-us-32gb-sm-a115r4/score/index.json new file mode 100644 index 00000000000..c9a1e1f5381 --- /dev/null +++ b/site/public/v1/smartphones/sm-a115u-galaxy-a11-2020-lte-us-32gb-sm-a115r4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 59.2 +} diff --git a/site/public/v1/smartphones/sm-a115u-galaxy-a11-2020-lte-us-32gb-sm-a115v/index.json b/site/public/v1/smartphones/sm-a115u-galaxy-a11-2020-lte-us-32gb-sm-a115v/index.json new file mode 100644 index 00000000000..f0f917b37ff --- /dev/null +++ b/site/public/v1/smartphones/sm-a115u-galaxy-a11-2020-lte-us-32gb-sm-a115v/index.json @@ -0,0 +1,76 @@ +{ + "id": 4082, + "slug": "sm-a115u-galaxy-a11-2020-lte-us-32gb-sm-a115v", + "name": "SM-A115U Galaxy A11 2020 LTE US 32GB / SM-A115V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2020-06-01", + "msrp_usd": 180, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 59.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.685788", + "updated_at": "2026-06-19T00:43:44.685788" +} diff --git a/site/public/v1/smartphones/sm-a115u-galaxy-a11-2020-lte-us-32gb-sm-a115v/score/index.json b/site/public/v1/smartphones/sm-a115u-galaxy-a11-2020-lte-us-32gb-sm-a115v/score/index.json new file mode 100644 index 00000000000..c9a1e1f5381 --- /dev/null +++ b/site/public/v1/smartphones/sm-a115u-galaxy-a11-2020-lte-us-32gb-sm-a115v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 59.2 +} diff --git a/site/public/v1/smartphones/sm-a115u-galaxy-a11-2020-td-lte-us-32gb-sm-a115a/index.json b/site/public/v1/smartphones/sm-a115u-galaxy-a11-2020-td-lte-us-32gb-sm-a115a/index.json new file mode 100644 index 00000000000..85db9c722cc --- /dev/null +++ b/site/public/v1/smartphones/sm-a115u-galaxy-a11-2020-td-lte-us-32gb-sm-a115a/index.json @@ -0,0 +1,76 @@ +{ + "id": 4083, + "slug": "sm-a115u-galaxy-a11-2020-td-lte-us-32gb-sm-a115a", + "name": "SM-A115U Galaxy A11 2020 TD-LTE US 32GB / SM-A115A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2020-06-01", + "msrp_usd": 180, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 59.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.685788", + "updated_at": "2026-06-19T00:43:44.685788" +} diff --git a/site/public/v1/smartphones/sm-a115u-galaxy-a11-2020-td-lte-us-32gb-sm-a115a/score/index.json b/site/public/v1/smartphones/sm-a115u-galaxy-a11-2020-td-lte-us-32gb-sm-a115a/score/index.json new file mode 100644 index 00000000000..c9a1e1f5381 --- /dev/null +++ b/site/public/v1/smartphones/sm-a115u-galaxy-a11-2020-td-lte-us-32gb-sm-a115a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 59.2 +} diff --git a/site/public/v1/smartphones/sm-a115u-galaxy-a11-2020-td-lte-us-32gb-sm-a115t/index.json b/site/public/v1/smartphones/sm-a115u-galaxy-a11-2020-td-lte-us-32gb-sm-a115t/index.json new file mode 100644 index 00000000000..34a2a2f2948 --- /dev/null +++ b/site/public/v1/smartphones/sm-a115u-galaxy-a11-2020-td-lte-us-32gb-sm-a115t/index.json @@ -0,0 +1,76 @@ +{ + "id": 4084, + "slug": "sm-a115u-galaxy-a11-2020-td-lte-us-32gb-sm-a115t", + "name": "SM-A115U Galaxy A11 2020 TD-LTE US 32GB / SM-A115T", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2020-06-01", + "msrp_usd": 180, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 59.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.685788", + "updated_at": "2026-06-19T00:43:44.685788" +} diff --git a/site/public/v1/smartphones/sm-a115u-galaxy-a11-2020-td-lte-us-32gb-sm-a115t/score/index.json b/site/public/v1/smartphones/sm-a115u-galaxy-a11-2020-td-lte-us-32gb-sm-a115t/score/index.json new file mode 100644 index 00000000000..c9a1e1f5381 --- /dev/null +++ b/site/public/v1/smartphones/sm-a115u-galaxy-a11-2020-td-lte-us-32gb-sm-a115t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 59.2 +} diff --git a/site/public/v1/smartphones/sm-a115u1-galaxy-a11-2020-td-lte-us-32gb/index.json b/site/public/v1/smartphones/sm-a115u1-galaxy-a11-2020-td-lte-us-32gb/index.json new file mode 100644 index 00000000000..22de5d6f130 --- /dev/null +++ b/site/public/v1/smartphones/sm-a115u1-galaxy-a11-2020-td-lte-us-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4085, + "slug": "sm-a115u1-galaxy-a11-2020-td-lte-us-32gb", + "name": "SM-A115U1 Galaxy A11 2020 TD-LTE US 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2020-06-01", + "msrp_usd": 180, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 59.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.685788", + "updated_at": "2026-06-19T00:43:44.685788" +} diff --git a/site/public/v1/smartphones/sm-a115u1-galaxy-a11-2020-td-lte-us-32gb/score/index.json b/site/public/v1/smartphones/sm-a115u1-galaxy-a11-2020-td-lte-us-32gb/score/index.json new file mode 100644 index 00000000000..c9a1e1f5381 --- /dev/null +++ b/site/public/v1/smartphones/sm-a115u1-galaxy-a11-2020-td-lte-us-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 59.2 +} diff --git a/site/public/v1/smartphones/sm-a115w-galaxy-a11-2020-td-lte-ca-32gb/index.json b/site/public/v1/smartphones/sm-a115w-galaxy-a11-2020-td-lte-ca-32gb/index.json new file mode 100644 index 00000000000..d566aa991ce --- /dev/null +++ b/site/public/v1/smartphones/sm-a115w-galaxy-a11-2020-td-lte-ca-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4086, + "slug": "sm-a115w-galaxy-a11-2020-td-lte-ca-32gb", + "name": "SM-A115W Galaxy A11 2020 TD-LTE CA 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.685788", + "updated_at": "2026-06-19T00:43:44.685788" +} diff --git a/site/public/v1/smartphones/sm-a115w-galaxy-a11-2020-td-lte-ca-32gb/score/index.json b/site/public/v1/smartphones/sm-a115w-galaxy-a11-2020-td-lte-ca-32gb/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/sm-a115w-galaxy-a11-2020-td-lte-ca-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a125f-ds-galaxy-a12-2020-premium-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a125f-ds-galaxy-a12-2020-premium-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..0ff64167309 --- /dev/null +++ b/site/public/v1/smartphones/sm-a125f-ds-galaxy-a12-2020-premium-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4340, + "slug": "sm-a125f-ds-galaxy-a12-2020-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A125F/DS Galaxy A12 2020 Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-01-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 1.5, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.722204", + "updated_at": "2026-06-19T00:43:44.722204" +} diff --git a/site/public/v1/smartphones/sm-a125f-ds-galaxy-a12-2020-premium-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a125f-ds-galaxy-a12-2020-premium-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..821e1e74f88 --- /dev/null +++ b/site/public/v1/smartphones/sm-a125f-ds-galaxy-a12-2020-premium-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 1.5, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a125f-ds-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a125f-ds-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..b0a941f6937 --- /dev/null +++ b/site/public/v1/smartphones/sm-a125f-ds-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4341, + "slug": "sm-a125f-ds-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A125F/DS Galaxy A12 2020 Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-01-19", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.722204", + "updated_at": "2026-06-19T00:43:44.722204" +} diff --git a/site/public/v1/smartphones/sm-a125f-ds-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a125f-ds-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..99aee406377 --- /dev/null +++ b/site/public/v1/smartphones/sm-a125f-ds-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a125f-ds-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-a125f-ds-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..41893feff63 --- /dev/null +++ b/site/public/v1/smartphones/sm-a125f-ds-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4342, + "slug": "sm-a125f-ds-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-64gb", + "name": "SM-A125F/DS Galaxy A12 2020 Standard Edition Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-01-19", + "msrp_usd": 179, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": 60.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.722204", + "updated_at": "2026-06-19T00:43:44.722204" +} diff --git a/site/public/v1/smartphones/sm-a125f-ds-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-a125f-ds-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..e86f5013ea6 --- /dev/null +++ b/site/public/v1/smartphones/sm-a125f-ds-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": 60.2 +} diff --git a/site/public/v1/smartphones/sm-a125f-dsn-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-a125f-dsn-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..1100c7c746c --- /dev/null +++ b/site/public/v1/smartphones/sm-a125f-dsn-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4343, + "slug": "sm-a125f-dsn-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-64gb", + "name": "SM-A125F/DSN Galaxy A12 2020 Standard Edition Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-01-19", + "msrp_usd": 169, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": 60.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.722204", + "updated_at": "2026-06-19T00:43:44.722204" +} diff --git a/site/public/v1/smartphones/sm-a125f-dsn-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-a125f-dsn-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..e86f5013ea6 --- /dev/null +++ b/site/public/v1/smartphones/sm-a125f-dsn-galaxy-a12-2020-standard-edition-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": 60.2 +} diff --git a/site/public/v1/smartphones/sm-a125f-galaxy-a12-2020-standard-edition-global-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a125f-galaxy-a12-2020-standard-edition-global-td-lte-128gb/index.json new file mode 100644 index 00000000000..cf487b0d5d7 --- /dev/null +++ b/site/public/v1/smartphones/sm-a125f-galaxy-a12-2020-standard-edition-global-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4344, + "slug": "sm-a125f-galaxy-a12-2020-standard-edition-global-td-lte-128gb", + "name": "SM-A125F Galaxy A12 2020 Standard Edition Global TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-01-01", + "msrp_usd": 299, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": 60.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.723204", + "updated_at": "2026-06-19T00:43:44.723204" +} diff --git a/site/public/v1/smartphones/sm-a125f-galaxy-a12-2020-standard-edition-global-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a125f-galaxy-a12-2020-standard-edition-global-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..e86f5013ea6 --- /dev/null +++ b/site/public/v1/smartphones/sm-a125f-galaxy-a12-2020-standard-edition-global-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": 60.2 +} diff --git a/site/public/v1/smartphones/sm-a125m-ds-galaxy-a12-2020-standard-edition-dual-sim-td-lte-latam-32gb/index.json b/site/public/v1/smartphones/sm-a125m-ds-galaxy-a12-2020-standard-edition-dual-sim-td-lte-latam-32gb/index.json new file mode 100644 index 00000000000..29ed69541b6 --- /dev/null +++ b/site/public/v1/smartphones/sm-a125m-ds-galaxy-a12-2020-standard-edition-dual-sim-td-lte-latam-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4345, + "slug": "sm-a125m-ds-galaxy-a12-2020-standard-edition-dual-sim-td-lte-latam-32gb", + "name": "SM-A125M/DS Galaxy A12 2020 Standard Edition Dual SIM TD-LTE LATAM 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-02-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.723204", + "updated_at": "2026-06-19T00:43:44.723204" +} diff --git a/site/public/v1/smartphones/sm-a125m-ds-galaxy-a12-2020-standard-edition-dual-sim-td-lte-latam-32gb/score/index.json b/site/public/v1/smartphones/sm-a125m-ds-galaxy-a12-2020-standard-edition-dual-sim-td-lte-latam-32gb/score/index.json new file mode 100644 index 00000000000..99aee406377 --- /dev/null +++ b/site/public/v1/smartphones/sm-a125m-ds-galaxy-a12-2020-standard-edition-dual-sim-td-lte-latam-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a125m-ds-galaxy-a12-2020-standard-edition-dual-sim-td-lte-latam-64gb/index.json b/site/public/v1/smartphones/sm-a125m-ds-galaxy-a12-2020-standard-edition-dual-sim-td-lte-latam-64gb/index.json new file mode 100644 index 00000000000..a78456f253d --- /dev/null +++ b/site/public/v1/smartphones/sm-a125m-ds-galaxy-a12-2020-standard-edition-dual-sim-td-lte-latam-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4346, + "slug": "sm-a125m-ds-galaxy-a12-2020-standard-edition-dual-sim-td-lte-latam-64gb", + "name": "SM-A125M/DS Galaxy A12 2020 Standard Edition Dual SIM TD-LTE LATAM 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-02-01", + "msrp_usd": 180, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": 60.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.723204", + "updated_at": "2026-06-19T00:43:44.723204" +} diff --git a/site/public/v1/smartphones/sm-a125m-ds-galaxy-a12-2020-standard-edition-dual-sim-td-lte-latam-64gb/score/index.json b/site/public/v1/smartphones/sm-a125m-ds-galaxy-a12-2020-standard-edition-dual-sim-td-lte-latam-64gb/score/index.json new file mode 100644 index 00000000000..e86f5013ea6 --- /dev/null +++ b/site/public/v1/smartphones/sm-a125m-ds-galaxy-a12-2020-standard-edition-dual-sim-td-lte-latam-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": 60.2 +} diff --git a/site/public/v1/smartphones/sm-a125m-galaxy-a12-2020-standard-edition-td-lte-latam-64gb/index.json b/site/public/v1/smartphones/sm-a125m-galaxy-a12-2020-standard-edition-td-lte-latam-64gb/index.json new file mode 100644 index 00000000000..3e88857c528 --- /dev/null +++ b/site/public/v1/smartphones/sm-a125m-galaxy-a12-2020-standard-edition-td-lte-latam-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4347, + "slug": "sm-a125m-galaxy-a12-2020-standard-edition-td-lte-latam-64gb", + "name": "SM-A125M Galaxy A12 2020 Standard Edition TD-LTE LATAM 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-02-01", + "msrp_usd": 4889, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": 10.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.723204", + "updated_at": "2026-06-19T00:43:44.723204" +} diff --git a/site/public/v1/smartphones/sm-a125m-galaxy-a12-2020-standard-edition-td-lte-latam-64gb/score/index.json b/site/public/v1/smartphones/sm-a125m-galaxy-a12-2020-standard-edition-td-lte-latam-64gb/score/index.json new file mode 100644 index 00000000000..356163ac572 --- /dev/null +++ b/site/public/v1/smartphones/sm-a125m-galaxy-a12-2020-standard-edition-td-lte-latam-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": 10.2 +} diff --git a/site/public/v1/smartphones/sm-a125n-galaxy-a12-2020-td-lte-kr-32gb/index.json b/site/public/v1/smartphones/sm-a125n-galaxy-a12-2020-td-lte-kr-32gb/index.json new file mode 100644 index 00000000000..90e57022c01 --- /dev/null +++ b/site/public/v1/smartphones/sm-a125n-galaxy-a12-2020-td-lte-kr-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4348, + "slug": "sm-a125n-galaxy-a12-2020-td-lte-kr-32gb", + "name": "SM-A125N Galaxy A12 2020 TD-LTE KR 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-01-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.723204", + "updated_at": "2026-06-19T00:43:44.723204" +} diff --git a/site/public/v1/smartphones/sm-a125n-galaxy-a12-2020-td-lte-kr-32gb/score/index.json b/site/public/v1/smartphones/sm-a125n-galaxy-a12-2020-td-lte-kr-32gb/score/index.json new file mode 100644 index 00000000000..99aee406377 --- /dev/null +++ b/site/public/v1/smartphones/sm-a125n-galaxy-a12-2020-td-lte-kr-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-lte-a-us-32gb-sm-a125v/index.json b/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-lte-a-us-32gb-sm-a125v/index.json new file mode 100644 index 00000000000..4d2ce196953 --- /dev/null +++ b/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-lte-a-us-32gb-sm-a125v/index.json @@ -0,0 +1,77 @@ +{ + "id": 4349, + "slug": "sm-a125u-galaxy-a12-2020-lte-a-us-32gb-sm-a125v", + "name": "SM-A125U Galaxy A12 2020 LTE-A US 32GB / SM-A125V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-04-08", + "msrp_usd": 180, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 17.5, + "value": 56.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.723204", + "updated_at": "2026-06-19T00:43:44.723204" +} diff --git a/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-lte-a-us-32gb-sm-a125v/score/index.json b/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-lte-a-us-32gb-sm-a125v/score/index.json new file mode 100644 index 00000000000..eb26dd74c27 --- /dev/null +++ b/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-lte-a-us-32gb-sm-a125v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 17.5, + "value": 56.7 +} diff --git a/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125a/index.json b/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125a/index.json new file mode 100644 index 00000000000..2803a46f9ea --- /dev/null +++ b/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125a/index.json @@ -0,0 +1,76 @@ +{ + "id": 4350, + "slug": "sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125a", + "name": "SM-A125U Galaxy A12 2020 TD-LTE US 32GB / SM-A125A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-04-06", + "msrp_usd": 180, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 35.0, + "value": 58.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.723204", + "updated_at": "2026-06-19T00:43:44.723204" +} diff --git a/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125a/score/index.json b/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125a/score/index.json new file mode 100644 index 00000000000..398999bdb82 --- /dev/null +++ b/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 35.0, + "value": 58.9 +} diff --git a/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125az/index.json b/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125az/index.json new file mode 100644 index 00000000000..9cc16bc750b --- /dev/null +++ b/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125az/index.json @@ -0,0 +1,76 @@ +{ + "id": 4351, + "slug": "sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125az", + "name": "SM-A125U Galaxy A12 2020 TD-LTE US 32GB / SM-A125AZ", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-04-13", + "msrp_usd": 180, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 35.0, + "value": 58.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.723204", + "updated_at": "2026-06-19T00:43:44.723204" +} diff --git a/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125az/score/index.json b/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125az/score/index.json new file mode 100644 index 00000000000..398999bdb82 --- /dev/null +++ b/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125az/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 35.0, + "value": 58.9 +} diff --git a/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125r4/index.json b/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125r4/index.json new file mode 100644 index 00000000000..599b6968f49 --- /dev/null +++ b/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125r4/index.json @@ -0,0 +1,76 @@ +{ + "id": 4352, + "slug": "sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125r4", + "name": "SM-A125U Galaxy A12 2020 TD-LTE US 32GB / SM-A125R4", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-04-01", + "msrp_usd": 180, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 35.0, + "value": 58.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.723204", + "updated_at": "2026-06-19T00:43:44.723204" +} diff --git a/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125r4/score/index.json b/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125r4/score/index.json new file mode 100644 index 00000000000..398999bdb82 --- /dev/null +++ b/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125r4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 35.0, + "value": 58.9 +} diff --git a/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125t-sm-a125p/index.json b/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125t-sm-a125p/index.json new file mode 100644 index 00000000000..3822ab21ec2 --- /dev/null +++ b/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125t-sm-a125p/index.json @@ -0,0 +1,76 @@ +{ + "id": 4353, + "slug": "sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125t-sm-a125p", + "name": "SM-A125U Galaxy A12 2020 TD-LTE US 32GB / SM-A125T / SM-A125P", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-04-01", + "msrp_usd": 180, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 35.0, + "value": 58.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.724203", + "updated_at": "2026-06-19T00:43:44.724203" +} diff --git a/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125t-sm-a125p/score/index.json b/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125t-sm-a125p/score/index.json new file mode 100644 index 00000000000..398999bdb82 --- /dev/null +++ b/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-a125t-sm-a125p/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 35.0, + "value": 58.9 +} diff --git a/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-s127dl/index.json b/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-s127dl/index.json new file mode 100644 index 00000000000..ff7245b631d --- /dev/null +++ b/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-s127dl/index.json @@ -0,0 +1,76 @@ +{ + "id": 4354, + "slug": "sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-s127dl", + "name": "SM-A125U Galaxy A12 2020 TD-LTE US 32GB / SM-S127DL", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-04-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.724203", + "updated_at": "2026-06-19T00:43:44.724203" +} diff --git a/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-s127dl/score/index.json b/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-s127dl/score/index.json new file mode 100644 index 00000000000..5a744494124 --- /dev/null +++ b/site/public/v1/smartphones/sm-a125u-galaxy-a12-2020-td-lte-us-32gb-sm-s127dl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 6.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a125u1-ds-galaxy-a12-2020-dual-sim-td-lte-us/index.json b/site/public/v1/smartphones/sm-a125u1-ds-galaxy-a12-2020-dual-sim-td-lte-us/index.json new file mode 100644 index 00000000000..24670f2fad6 --- /dev/null +++ b/site/public/v1/smartphones/sm-a125u1-ds-galaxy-a12-2020-dual-sim-td-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 4355, + "slug": "sm-a125u1-ds-galaxy-a12-2020-dual-sim-td-lte-us", + "name": "SM-A125U1/DS Galaxy A12 2020 Dual SIM TD-LTE US", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 60, + "slug": "helio-g35", + "name": "Helio G35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-g35" + }, + "release_date": "2021-01-01", + "msrp_usd": 180, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": 60.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.724203", + "updated_at": "2026-06-19T00:43:44.724203" +} diff --git a/site/public/v1/smartphones/sm-a125u1-ds-galaxy-a12-2020-dual-sim-td-lte-us/score/index.json b/site/public/v1/smartphones/sm-a125u1-ds-galaxy-a12-2020-dual-sim-td-lte-us/score/index.json new file mode 100644 index 00000000000..e86f5013ea6 --- /dev/null +++ b/site/public/v1/smartphones/sm-a125u1-ds-galaxy-a12-2020-dual-sim-td-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": 60.2 +} diff --git a/site/public/v1/smartphones/sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..a95f9c0ca0e --- /dev/null +++ b/site/public/v1/smartphones/sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4356, + "slug": "sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-128gb", + "name": "SM-A127F/DSN Galaxy A12 Nacho 2021 Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 197, + "slug": "exynos-850", + "name": "Exynos 850", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G52 MP1", + "url": "/v1/socs/exynos-850" + }, + "release_date": "2021-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.724203", + "updated_at": "2026-06-19T00:43:44.724203" +} diff --git a/site/public/v1/smartphones/sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..99aee406377 --- /dev/null +++ b/site/public/v1/smartphones/sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-32gb/index.json b/site/public/v1/smartphones/sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-32gb/index.json new file mode 100644 index 00000000000..7e5025b7b31 --- /dev/null +++ b/site/public/v1/smartphones/sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4357, + "slug": "sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-32gb", + "name": "SM-A127F/DSN Galaxy A12 Nacho 2021 Global Dual SIM TD-LTE 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 197, + "slug": "exynos-850", + "name": "Exynos 850", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G52 MP1", + "url": "/v1/socs/exynos-850" + }, + "release_date": "2021-08-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.724203", + "updated_at": "2026-06-19T00:43:44.724203" +} diff --git a/site/public/v1/smartphones/sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-32gb/score/index.json b/site/public/v1/smartphones/sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..99aee406377 --- /dev/null +++ b/site/public/v1/smartphones/sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..f76b6583c34 --- /dev/null +++ b/site/public/v1/smartphones/sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4358, + "slug": "sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-64gb", + "name": "SM-A127F/DSN Galaxy A12 Nacho 2021 Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 197, + "slug": "exynos-850", + "name": "Exynos 850", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G52 MP1", + "url": "/v1/socs/exynos-850" + }, + "release_date": "2021-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.724203", + "updated_at": "2026-06-19T00:43:44.724203" +} diff --git a/site/public/v1/smartphones/sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..99aee406377 --- /dev/null +++ b/site/public/v1/smartphones/sm-a127f-dsn-galaxy-a12-nacho-2021-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a127m-ds-galaxy-a12-nacho-2021-dual-sim-td-lte-latam-64gb/index.json b/site/public/v1/smartphones/sm-a127m-ds-galaxy-a12-nacho-2021-dual-sim-td-lte-latam-64gb/index.json new file mode 100644 index 00000000000..28c8f7f4c6f --- /dev/null +++ b/site/public/v1/smartphones/sm-a127m-ds-galaxy-a12-nacho-2021-dual-sim-td-lte-latam-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4359, + "slug": "sm-a127m-ds-galaxy-a12-nacho-2021-dual-sim-td-lte-latam-64gb", + "name": "SM-A127M/DS Galaxy A12 Nacho 2021 Dual SIM TD-LTE LATAM 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 197, + "slug": "exynos-850", + "name": "Exynos 850", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G52 MP1", + "url": "/v1/socs/exynos-850" + }, + "release_date": "2021-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.724203", + "updated_at": "2026-06-19T00:43:44.724203" +} diff --git a/site/public/v1/smartphones/sm-a127m-ds-galaxy-a12-nacho-2021-dual-sim-td-lte-latam-64gb/score/index.json b/site/public/v1/smartphones/sm-a127m-ds-galaxy-a12-nacho-2021-dual-sim-td-lte-latam-64gb/score/index.json new file mode 100644 index 00000000000..99aee406377 --- /dev/null +++ b/site/public/v1/smartphones/sm-a127m-ds-galaxy-a12-nacho-2021-dual-sim-td-lte-latam-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a136u-galaxy-a13-5g-2021-td-lte-us-64gb-sm-a136a/index.json b/site/public/v1/smartphones/sm-a136u-galaxy-a13-5g-2021-td-lte-us-64gb-sm-a136a/index.json new file mode 100644 index 00000000000..63071222342 --- /dev/null +++ b/site/public/v1/smartphones/sm-a136u-galaxy-a13-5g-2021-td-lte-us-64gb-sm-a136a/index.json @@ -0,0 +1,77 @@ +{ + "id": 4360, + "slug": "sm-a136u-galaxy-a13-5g-2021-td-lte-us-64gb-sm-a136a", + "name": "SM-A136U Galaxy A13 5G 2021 TD-LTE US 64GB / SM-A136A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-12-04", + "msrp_usd": 250, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 0.0, + "camera": 17.2, + "battery": 30.0, + "display": 30.0, + "value": 59.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.724203", + "updated_at": "2026-06-19T00:43:44.724203" +} diff --git a/site/public/v1/smartphones/sm-a136u-galaxy-a13-5g-2021-td-lte-us-64gb-sm-a136a/score/index.json b/site/public/v1/smartphones/sm-a136u-galaxy-a13-5g-2021-td-lte-us-64gb-sm-a136a/score/index.json new file mode 100644 index 00000000000..7d97b3b8613 --- /dev/null +++ b/site/public/v1/smartphones/sm-a136u-galaxy-a13-5g-2021-td-lte-us-64gb-sm-a136a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 0.0, + "camera": 17.2, + "battery": 30.0, + "display": 30.0, + "value": 59.6 +} diff --git a/site/public/v1/smartphones/sm-a136u-galaxy-a13-5g-2021-td-lte-us-64gb-sm-s136dl/index.json b/site/public/v1/smartphones/sm-a136u-galaxy-a13-5g-2021-td-lte-us-64gb-sm-s136dl/index.json new file mode 100644 index 00000000000..04c7a1cfacc --- /dev/null +++ b/site/public/v1/smartphones/sm-a136u-galaxy-a13-5g-2021-td-lte-us-64gb-sm-s136dl/index.json @@ -0,0 +1,77 @@ +{ + "id": 4542, + "slug": "sm-a136u-galaxy-a13-5g-2021-td-lte-us-64gb-sm-s136dl", + "name": "SM-A136U Galaxy A13 5G 2021 TD-LTE US 64GB / SM-S136DL", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2022-02-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 0.0, + "camera": 17.2, + "battery": 30.0, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.746204", + "updated_at": "2026-06-19T00:43:44.746204" +} diff --git a/site/public/v1/smartphones/sm-a136u-galaxy-a13-5g-2021-td-lte-us-64gb-sm-s136dl/score/index.json b/site/public/v1/smartphones/sm-a136u-galaxy-a13-5g-2021-td-lte-us-64gb-sm-s136dl/score/index.json new file mode 100644 index 00000000000..f107ab70c5c --- /dev/null +++ b/site/public/v1/smartphones/sm-a136u-galaxy-a13-5g-2021-td-lte-us-64gb-sm-s136dl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 0.0, + "camera": 17.2, + "battery": 30.0, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a136u1-galaxy-a13-5g-2021-td-lte-us-64gb/index.json b/site/public/v1/smartphones/sm-a136u1-galaxy-a13-5g-2021-td-lte-us-64gb/index.json new file mode 100644 index 00000000000..471c341ae7e --- /dev/null +++ b/site/public/v1/smartphones/sm-a136u1-galaxy-a13-5g-2021-td-lte-us-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4543, + "slug": "sm-a136u1-galaxy-a13-5g-2021-td-lte-us-64gb", + "name": "SM-A136U1 Galaxy A13 5G 2021 TD-LTE US 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2022-01-01", + "msrp_usd": 250, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 0.0, + "camera": 17.2, + "battery": 30.0, + "display": 30.0, + "value": 59.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.746204", + "updated_at": "2026-06-19T00:43:44.746204" +} diff --git a/site/public/v1/smartphones/sm-a136u1-galaxy-a13-5g-2021-td-lte-us-64gb/score/index.json b/site/public/v1/smartphones/sm-a136u1-galaxy-a13-5g-2021-td-lte-us-64gb/score/index.json new file mode 100644 index 00000000000..7d97b3b8613 --- /dev/null +++ b/site/public/v1/smartphones/sm-a136u1-galaxy-a13-5g-2021-td-lte-us-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 0.0, + "camera": 17.2, + "battery": 30.0, + "display": 30.0, + "value": 59.6 +} diff --git a/site/public/v1/smartphones/sm-a136w-galaxy-a13-5g-2021-td-lte-ca-64gb/index.json b/site/public/v1/smartphones/sm-a136w-galaxy-a13-5g-2021-td-lte-ca-64gb/index.json new file mode 100644 index 00000000000..ccc88d0e28d --- /dev/null +++ b/site/public/v1/smartphones/sm-a136w-galaxy-a13-5g-2021-td-lte-ca-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4544, + "slug": "sm-a136w-galaxy-a13-5g-2021-td-lte-ca-64gb", + "name": "SM-A136W Galaxy A13 5G 2021 TD-LTE CA 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2022-01-01", + "msrp_usd": 330, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 0.0, + "camera": 17.2, + "battery": 30.0, + "display": 30.0, + "value": 58.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.746204", + "updated_at": "2026-06-19T00:43:44.746204" +} diff --git a/site/public/v1/smartphones/sm-a136w-galaxy-a13-5g-2021-td-lte-ca-64gb/score/index.json b/site/public/v1/smartphones/sm-a136w-galaxy-a13-5g-2021-td-lte-ca-64gb/score/index.json new file mode 100644 index 00000000000..15acc077887 --- /dev/null +++ b/site/public/v1/smartphones/sm-a136w-galaxy-a13-5g-2021-td-lte-ca-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 0.0, + "camera": 17.2, + "battery": 30.0, + "display": 30.0, + "value": 58.5 +} diff --git a/site/public/v1/smartphones/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205p/index.json b/site/public/v1/smartphones/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205p/index.json new file mode 100644 index 00000000000..582f527e074 --- /dev/null +++ b/site/public/v1/smartphones/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205p/index.json @@ -0,0 +1,76 @@ +{ + "id": 3865, + "slug": "sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205p", + "name": "SM-A205U Galaxy A20 2019 TD-LTE US / SM-A205P", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 190, + "slug": "exynos-7904", + "name": "Exynos 7904", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7904" + }, + "release_date": "2019-07-31", + "msrp_usd": 250, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.38, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 56.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.656757", + "updated_at": "2026-06-19T00:43:44.656757" +} diff --git a/site/public/v1/smartphones/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205p/score/index.json b/site/public/v1/smartphones/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205p/score/index.json new file mode 100644 index 00000000000..8998cfefb03 --- /dev/null +++ b/site/public/v1/smartphones/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205p/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 56.9 +} diff --git a/site/public/v1/smartphones/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205r4/index.json b/site/public/v1/smartphones/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205r4/index.json new file mode 100644 index 00000000000..ea1a1da6068 --- /dev/null +++ b/site/public/v1/smartphones/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205r4/index.json @@ -0,0 +1,76 @@ +{ + "id": 3866, + "slug": "sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205r4", + "name": "SM-A205U Galaxy A20 2019 TD-LTE US / SM-A205R4", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 190, + "slug": "exynos-7904", + "name": "Exynos 7904", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7904" + }, + "release_date": "2019-07-31", + "msrp_usd": 250, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.38, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 56.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.656757", + "updated_at": "2026-06-19T00:43:44.656757" +} diff --git a/site/public/v1/smartphones/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205r4/score/index.json b/site/public/v1/smartphones/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205r4/score/index.json new file mode 100644 index 00000000000..8998cfefb03 --- /dev/null +++ b/site/public/v1/smartphones/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205r4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 56.9 +} diff --git a/site/public/v1/smartphones/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205t/index.json b/site/public/v1/smartphones/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205t/index.json new file mode 100644 index 00000000000..3d2f58c6c65 --- /dev/null +++ b/site/public/v1/smartphones/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205t/index.json @@ -0,0 +1,76 @@ +{ + "id": 3867, + "slug": "sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205t", + "name": "SM-A205U Galaxy A20 2019 TD-LTE US / SM-A205T", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 190, + "slug": "exynos-7904", + "name": "Exynos 7904", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7904" + }, + "release_date": "2019-07-26", + "msrp_usd": 249, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.38, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 56.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.656757", + "updated_at": "2026-06-19T00:43:44.656757" +} diff --git a/site/public/v1/smartphones/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205t/score/index.json b/site/public/v1/smartphones/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205t/score/index.json new file mode 100644 index 00000000000..8998cfefb03 --- /dev/null +++ b/site/public/v1/smartphones/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 56.9 +} diff --git a/site/public/v1/smartphones/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205v/index.json b/site/public/v1/smartphones/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205v/index.json new file mode 100644 index 00000000000..a6e136615a9 --- /dev/null +++ b/site/public/v1/smartphones/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205v/index.json @@ -0,0 +1,76 @@ +{ + "id": 3868, + "slug": "sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205v", + "name": "SM-A205U Galaxy A20 2019 TD-LTE US / SM-A205V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 190, + "slug": "exynos-7904", + "name": "Exynos 7904", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7904" + }, + "release_date": "2019-08-01", + "msrp_usd": 250, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.38, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 56.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.657757", + "updated_at": "2026-06-19T00:43:44.657757" +} diff --git a/site/public/v1/smartphones/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205v/score/index.json b/site/public/v1/smartphones/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205v/score/index.json new file mode 100644 index 00000000000..8998cfefb03 --- /dev/null +++ b/site/public/v1/smartphones/sm-a205u-galaxy-a20-2019-td-lte-us-sm-a205v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 56.9 +} diff --git a/site/public/v1/smartphones/sm-a205u1-galaxy-a20-2019-td-lte-us/index.json b/site/public/v1/smartphones/sm-a205u1-galaxy-a20-2019-td-lte-us/index.json new file mode 100644 index 00000000000..54250b409d3 --- /dev/null +++ b/site/public/v1/smartphones/sm-a205u1-galaxy-a20-2019-td-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 3869, + "slug": "sm-a205u1-galaxy-a20-2019-td-lte-us", + "name": "SM-A205U1 Galaxy A20 2019 TD-LTE US", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 190, + "slug": "exynos-7904", + "name": "Exynos 7904", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7904" + }, + "release_date": "2019-08-01", + "msrp_usd": 250, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.38, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 56.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.657757", + "updated_at": "2026-06-19T00:43:44.657757" +} diff --git a/site/public/v1/smartphones/sm-a205u1-galaxy-a20-2019-td-lte-us/score/index.json b/site/public/v1/smartphones/sm-a205u1-galaxy-a20-2019-td-lte-us/score/index.json new file mode 100644 index 00000000000..8998cfefb03 --- /dev/null +++ b/site/public/v1/smartphones/sm-a205u1-galaxy-a20-2019-td-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 56.9 +} diff --git a/site/public/v1/smartphones/sm-a2070-galaxy-a20s-2019-dual-sim-td-lte-cn-64gb/index.json b/site/public/v1/smartphones/sm-a2070-galaxy-a20s-2019-dual-sim-td-lte-cn-64gb/index.json new file mode 100644 index 00000000000..4a292c3a733 --- /dev/null +++ b/site/public/v1/smartphones/sm-a2070-galaxy-a20s-2019-dual-sim-td-lte-cn-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3870, + "slug": "sm-a2070-galaxy-a20s-2019-dual-sim-td-lte-cn-64gb", + "name": "SM-A2070 Galaxy A20s 2019 Dual SIM TD-LTE CN 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.49, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 265 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.657757", + "updated_at": "2026-06-19T00:43:44.657757" +} diff --git a/site/public/v1/smartphones/sm-a2070-galaxy-a20s-2019-dual-sim-td-lte-cn-64gb/score/index.json b/site/public/v1/smartphones/sm-a2070-galaxy-a20s-2019-dual-sim-td-lte-cn-64gb/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/sm-a2070-galaxy-a20s-2019-dual-sim-td-lte-cn-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a207f-ds-galaxy-a20s-2019-global-dual-sim-td-lte-32gb/index.json b/site/public/v1/smartphones/sm-a207f-ds-galaxy-a20s-2019-global-dual-sim-td-lte-32gb/index.json new file mode 100644 index 00000000000..a991eda45de --- /dev/null +++ b/site/public/v1/smartphones/sm-a207f-ds-galaxy-a20s-2019-global-dual-sim-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3871, + "slug": "sm-a207f-ds-galaxy-a20s-2019-global-dual-sim-td-lte-32gb", + "name": "SM-A207F/DS Galaxy A20s 2019 Global Dual SIM TD-LTE 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.49, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 265 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.657757", + "updated_at": "2026-06-19T00:43:44.657757" +} diff --git a/site/public/v1/smartphones/sm-a207f-ds-galaxy-a20s-2019-global-dual-sim-td-lte-32gb/score/index.json b/site/public/v1/smartphones/sm-a207f-ds-galaxy-a20s-2019-global-dual-sim-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/sm-a207f-ds-galaxy-a20s-2019-global-dual-sim-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a207f-ds-galaxy-a20s-2019-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-a207f-ds-galaxy-a20s-2019-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..fe591bed164 --- /dev/null +++ b/site/public/v1/smartphones/sm-a207f-ds-galaxy-a20s-2019-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3872, + "slug": "sm-a207f-ds-galaxy-a20s-2019-global-dual-sim-td-lte-64gb", + "name": "SM-A207F/DS Galaxy A20s 2019 Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.49, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 265 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.657757", + "updated_at": "2026-06-19T00:43:44.657757" +} diff --git a/site/public/v1/smartphones/sm-a207f-ds-galaxy-a20s-2019-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-a207f-ds-galaxy-a20s-2019-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/sm-a207f-ds-galaxy-a20s-2019-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a207f-galaxy-a20s-2019-global-td-lte-32gb/index.json b/site/public/v1/smartphones/sm-a207f-galaxy-a20s-2019-global-td-lte-32gb/index.json new file mode 100644 index 00000000000..4ffd0f42ea4 --- /dev/null +++ b/site/public/v1/smartphones/sm-a207f-galaxy-a20s-2019-global-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3873, + "slug": "sm-a207f-galaxy-a20s-2019-global-td-lte-32gb", + "name": "SM-A207F Galaxy A20s 2019 Global TD-LTE 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-09-23", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.49, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 265 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.657757", + "updated_at": "2026-06-19T00:43:44.657757" +} diff --git a/site/public/v1/smartphones/sm-a207f-galaxy-a20s-2019-global-td-lte-32gb/score/index.json b/site/public/v1/smartphones/sm-a207f-galaxy-a20s-2019-global-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/sm-a207f-galaxy-a20s-2019-global-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a207m-ds-galaxy-a20s-2019-dual-sim-td-lte-latam-32gb/index.json b/site/public/v1/smartphones/sm-a207m-ds-galaxy-a20s-2019-dual-sim-td-lte-latam-32gb/index.json new file mode 100644 index 00000000000..ed8ace9af26 --- /dev/null +++ b/site/public/v1/smartphones/sm-a207m-ds-galaxy-a20s-2019-dual-sim-td-lte-latam-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3874, + "slug": "sm-a207m-ds-galaxy-a20s-2019-dual-sim-td-lte-latam-32gb", + "name": "SM-A207M/DS Galaxy A20s 2019 Dual SIM TD-LTE LATAM 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-10-01", + "msrp_usd": 170, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.49, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 265 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 59.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.657757", + "updated_at": "2026-06-19T00:43:44.657757" +} diff --git a/site/public/v1/smartphones/sm-a207m-ds-galaxy-a20s-2019-dual-sim-td-lte-latam-32gb/score/index.json b/site/public/v1/smartphones/sm-a207m-ds-galaxy-a20s-2019-dual-sim-td-lte-latam-32gb/score/index.json new file mode 100644 index 00000000000..c9a1e1f5381 --- /dev/null +++ b/site/public/v1/smartphones/sm-a207m-ds-galaxy-a20s-2019-dual-sim-td-lte-latam-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 59.2 +} diff --git a/site/public/v1/smartphones/sm-a207m-galaxy-a20s-2019-td-lte-latam-32gb/index.json b/site/public/v1/smartphones/sm-a207m-galaxy-a20s-2019-td-lte-latam-32gb/index.json new file mode 100644 index 00000000000..712f975bccc --- /dev/null +++ b/site/public/v1/smartphones/sm-a207m-galaxy-a20s-2019-td-lte-latam-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3875, + "slug": "sm-a207m-galaxy-a20s-2019-td-lte-latam-32gb", + "name": "SM-A207M Galaxy A20s 2019 TD-LTE LATAM 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.49, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 265 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.657757", + "updated_at": "2026-06-19T00:43:44.657757" +} diff --git a/site/public/v1/smartphones/sm-a207m-galaxy-a20s-2019-td-lte-latam-32gb/score/index.json b/site/public/v1/smartphones/sm-a207m-galaxy-a20s-2019-td-lte-latam-32gb/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/sm-a207m-galaxy-a20s-2019-td-lte-latam-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215p/index.json b/site/public/v1/smartphones/sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215p/index.json new file mode 100644 index 00000000000..68552462ac4 --- /dev/null +++ b/site/public/v1/smartphones/sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215p/index.json @@ -0,0 +1,76 @@ +{ + "id": 4087, + "slug": "sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215p", + "name": "SM-A215U Galaxy A21 2020 TD-LTE US / SM-A215P", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-06-26", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.686788", + "updated_at": "2026-06-19T00:43:44.686788" +} diff --git a/site/public/v1/smartphones/sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215p/score/index.json b/site/public/v1/smartphones/sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215p/score/index.json new file mode 100644 index 00000000000..82b598c31b6 --- /dev/null +++ b/site/public/v1/smartphones/sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215p/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215r4/index.json b/site/public/v1/smartphones/sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215r4/index.json new file mode 100644 index 00000000000..368fd59dae0 --- /dev/null +++ b/site/public/v1/smartphones/sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215r4/index.json @@ -0,0 +1,76 @@ +{ + "id": 4088, + "slug": "sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215r4", + "name": "SM-A215U Galaxy A21 2020 TD-LTE US / SM-A215R4", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-07-01", + "msrp_usd": 250, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": 57.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.686788", + "updated_at": "2026-06-19T00:43:44.686788" +} diff --git a/site/public/v1/smartphones/sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215r4/score/index.json b/site/public/v1/smartphones/sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215r4/score/index.json new file mode 100644 index 00000000000..ba271865130 --- /dev/null +++ b/site/public/v1/smartphones/sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215r4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": 57.0 +} diff --git a/site/public/v1/smartphones/sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215t/index.json b/site/public/v1/smartphones/sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215t/index.json new file mode 100644 index 00000000000..cbcb5713ac6 --- /dev/null +++ b/site/public/v1/smartphones/sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215t/index.json @@ -0,0 +1,76 @@ +{ + "id": 4089, + "slug": "sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215t", + "name": "SM-A215U Galaxy A21 2020 TD-LTE US / SM-A215T", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-06-19", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.686788", + "updated_at": "2026-06-19T00:43:44.686788" +} diff --git a/site/public/v1/smartphones/sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215t/score/index.json b/site/public/v1/smartphones/sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215t/score/index.json new file mode 100644 index 00000000000..82b598c31b6 --- /dev/null +++ b/site/public/v1/smartphones/sm-a215u-galaxy-a21-2020-td-lte-us-sm-a215t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a215u1-galaxy-a21-2020-td-lte-us/index.json b/site/public/v1/smartphones/sm-a215u1-galaxy-a21-2020-td-lte-us/index.json new file mode 100644 index 00000000000..4bf247a1257 --- /dev/null +++ b/site/public/v1/smartphones/sm-a215u1-galaxy-a21-2020-td-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 4090, + "slug": "sm-a215u1-galaxy-a21-2020-td-lte-us", + "name": "SM-A215U1 Galaxy A21 2020 TD-LTE US", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-07-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.686788", + "updated_at": "2026-06-19T00:43:44.686788" +} diff --git a/site/public/v1/smartphones/sm-a215u1-galaxy-a21-2020-td-lte-us/score/index.json b/site/public/v1/smartphones/sm-a215u1-galaxy-a21-2020-td-lte-us/score/index.json new file mode 100644 index 00000000000..82b598c31b6 --- /dev/null +++ b/site/public/v1/smartphones/sm-a215u1-galaxy-a21-2020-td-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a215w-galaxy-a21-2020-td-lte-ca/index.json b/site/public/v1/smartphones/sm-a215w-galaxy-a21-2020-td-lte-ca/index.json new file mode 100644 index 00000000000..7d48bb2086a --- /dev/null +++ b/site/public/v1/smartphones/sm-a215w-galaxy-a21-2020-td-lte-ca/index.json @@ -0,0 +1,76 @@ +{ + "id": 4091, + "slug": "sm-a215w-galaxy-a21-2020-td-lte-ca", + "name": "SM-A215W Galaxy A21 2020 TD-LTE CA", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-07-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.5, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.686788", + "updated_at": "2026-06-19T00:43:44.686788" +} diff --git a/site/public/v1/smartphones/sm-a215w-galaxy-a21-2020-td-lte-ca/score/index.json b/site/public/v1/smartphones/sm-a215w-galaxy-a21-2020-td-lte-ca/score/index.json new file mode 100644 index 00000000000..82b598c31b6 --- /dev/null +++ b/site/public/v1/smartphones/sm-a215w-galaxy-a21-2020-td-lte-ca/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a217f-ds-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a217f-ds-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..5f9874ecd5b --- /dev/null +++ b/site/public/v1/smartphones/sm-a217f-ds-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4092, + "slug": "sm-a217f-ds-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A217F/DS Galaxy A21s 2020 Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 197, + "slug": "exynos-850", + "name": "Exynos 850", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G52 MP1", + "url": "/v1/socs/exynos-850" + }, + "release_date": "2020-06-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 1.5, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.686788", + "updated_at": "2026-06-19T00:43:44.686788" +} diff --git a/site/public/v1/smartphones/sm-a217f-ds-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a217f-ds-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..821e1e74f88 --- /dev/null +++ b/site/public/v1/smartphones/sm-a217f-ds-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 1.5, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a217f-ds-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-a217f-ds-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..df968180756 --- /dev/null +++ b/site/public/v1/smartphones/sm-a217f-ds-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4093, + "slug": "sm-a217f-ds-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-64gb", + "name": "SM-A217F/DS Galaxy A21s 2020 Premium Edition Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 197, + "slug": "exynos-850", + "name": "Exynos 850", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G52 MP1", + "url": "/v1/socs/exynos-850" + }, + "release_date": "2020-06-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 1.5, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.686788", + "updated_at": "2026-06-19T00:43:44.686788" +} diff --git a/site/public/v1/smartphones/sm-a217f-ds-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-a217f-ds-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..821e1e74f88 --- /dev/null +++ b/site/public/v1/smartphones/sm-a217f-ds-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 1.5, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a217f-ds-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-32gb/index.json b/site/public/v1/smartphones/sm-a217f-ds-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-32gb/index.json new file mode 100644 index 00000000000..4024cd048ae --- /dev/null +++ b/site/public/v1/smartphones/sm-a217f-ds-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4094, + "slug": "sm-a217f-ds-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-32gb", + "name": "SM-A217F/DS Galaxy A21s 2020 Standard Edition Global Dual SIM TD-LTE 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 197, + "slug": "exynos-850", + "name": "Exynos 850", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G52 MP1", + "url": "/v1/socs/exynos-850" + }, + "release_date": "2020-06-02", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.686788", + "updated_at": "2026-06-19T00:43:44.686788" +} diff --git a/site/public/v1/smartphones/sm-a217f-ds-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-32gb/score/index.json b/site/public/v1/smartphones/sm-a217f-ds-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..99aee406377 --- /dev/null +++ b/site/public/v1/smartphones/sm-a217f-ds-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a217f-ds-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-a217f-ds-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..d86026e0d90 --- /dev/null +++ b/site/public/v1/smartphones/sm-a217f-ds-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4095, + "slug": "sm-a217f-ds-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-64gb", + "name": "SM-A217F/DS Galaxy A21s 2020 Standard Edition Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 197, + "slug": "exynos-850", + "name": "Exynos 850", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G52 MP1", + "url": "/v1/socs/exynos-850" + }, + "release_date": "2020-06-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.687786", + "updated_at": "2026-06-19T00:43:44.687786" +} diff --git a/site/public/v1/smartphones/sm-a217f-ds-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-a217f-ds-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..99aee406377 --- /dev/null +++ b/site/public/v1/smartphones/sm-a217f-ds-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a217f-dsn-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-a217f-dsn-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..3b083cdd6d6 --- /dev/null +++ b/site/public/v1/smartphones/sm-a217f-dsn-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4096, + "slug": "sm-a217f-dsn-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-64gb", + "name": "SM-A217F/DSN Galaxy A21s 2020 Premium Edition Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 197, + "slug": "exynos-850", + "name": "Exynos 850", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G52 MP1", + "url": "/v1/socs/exynos-850" + }, + "release_date": "2020-06-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 1.5, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.687786", + "updated_at": "2026-06-19T00:43:44.687786" +} diff --git a/site/public/v1/smartphones/sm-a217f-dsn-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-a217f-dsn-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..821e1e74f88 --- /dev/null +++ b/site/public/v1/smartphones/sm-a217f-dsn-galaxy-a21s-2020-premium-edition-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 1.5, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a217f-dsn-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-32gb/index.json b/site/public/v1/smartphones/sm-a217f-dsn-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-32gb/index.json new file mode 100644 index 00000000000..a5928d89995 --- /dev/null +++ b/site/public/v1/smartphones/sm-a217f-dsn-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4097, + "slug": "sm-a217f-dsn-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-32gb", + "name": "SM-A217F/DSN Galaxy A21s 2020 Standard Edition Global Dual SIM TD-LTE 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 197, + "slug": "exynos-850", + "name": "Exynos 850", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G52 MP1", + "url": "/v1/socs/exynos-850" + }, + "release_date": "2020-06-02", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.687786", + "updated_at": "2026-06-19T00:43:44.687786" +} diff --git a/site/public/v1/smartphones/sm-a217f-dsn-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-32gb/score/index.json b/site/public/v1/smartphones/sm-a217f-dsn-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..99aee406377 --- /dev/null +++ b/site/public/v1/smartphones/sm-a217f-dsn-galaxy-a21s-2020-standard-edition-global-dual-sim-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a217f-galaxy-a21s-2020-premium-edition-global-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a217f-galaxy-a21s-2020-premium-edition-global-td-lte-128gb/index.json new file mode 100644 index 00000000000..5cac933eac5 --- /dev/null +++ b/site/public/v1/smartphones/sm-a217f-galaxy-a21s-2020-premium-edition-global-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4098, + "slug": "sm-a217f-galaxy-a21s-2020-premium-edition-global-td-lte-128gb", + "name": "SM-A217F Galaxy A21s 2020 Premium Edition Global TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 197, + "slug": "exynos-850", + "name": "Exynos 850", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G52 MP1", + "url": "/v1/socs/exynos-850" + }, + "release_date": "2020-06-02", + "msrp_usd": 349, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 1.5, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": 58.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.687786", + "updated_at": "2026-06-19T00:43:44.687786" +} diff --git a/site/public/v1/smartphones/sm-a217f-galaxy-a21s-2020-premium-edition-global-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a217f-galaxy-a21s-2020-premium-edition-global-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..63c1589789d --- /dev/null +++ b/site/public/v1/smartphones/sm-a217f-galaxy-a21s-2020-premium-edition-global-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 1.5, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": 58.5 +} diff --git a/site/public/v1/smartphones/sm-a217f-galaxy-a21s-2020-standard-edition-global-td-lte-32gb/index.json b/site/public/v1/smartphones/sm-a217f-galaxy-a21s-2020-standard-edition-global-td-lte-32gb/index.json new file mode 100644 index 00000000000..e63d9d62043 --- /dev/null +++ b/site/public/v1/smartphones/sm-a217f-galaxy-a21s-2020-standard-edition-global-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4099, + "slug": "sm-a217f-galaxy-a21s-2020-standard-edition-global-td-lte-32gb", + "name": "SM-A217F Galaxy A21s 2020 Standard Edition Global TD-LTE 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 197, + "slug": "exynos-850", + "name": "Exynos 850", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G52 MP1", + "url": "/v1/socs/exynos-850" + }, + "release_date": "2020-06-02", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.687786", + "updated_at": "2026-06-19T00:43:44.687786" +} diff --git a/site/public/v1/smartphones/sm-a217f-galaxy-a21s-2020-standard-edition-global-td-lte-32gb/score/index.json b/site/public/v1/smartphones/sm-a217f-galaxy-a21s-2020-standard-edition-global-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..99aee406377 --- /dev/null +++ b/site/public/v1/smartphones/sm-a217f-galaxy-a21s-2020-standard-edition-global-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a217m-ds-galaxy-a21s-2020-standard-edition-dual-sim-td-lte-latam-64gb/index.json b/site/public/v1/smartphones/sm-a217m-ds-galaxy-a21s-2020-standard-edition-dual-sim-td-lte-latam-64gb/index.json new file mode 100644 index 00000000000..06666aff9d5 --- /dev/null +++ b/site/public/v1/smartphones/sm-a217m-ds-galaxy-a21s-2020-standard-edition-dual-sim-td-lte-latam-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4100, + "slug": "sm-a217m-ds-galaxy-a21s-2020-standard-edition-dual-sim-td-lte-latam-64gb", + "name": "SM-A217M/DS Galaxy A21s 2020 Standard Edition Dual SIM TD-LTE LATAM 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 197, + "slug": "exynos-850", + "name": "Exynos 850", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G52 MP1", + "url": "/v1/socs/exynos-850" + }, + "release_date": "2020-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.687786", + "updated_at": "2026-06-19T00:43:44.687786" +} diff --git a/site/public/v1/smartphones/sm-a217m-ds-galaxy-a21s-2020-standard-edition-dual-sim-td-lte-latam-64gb/score/index.json b/site/public/v1/smartphones/sm-a217m-ds-galaxy-a21s-2020-standard-edition-dual-sim-td-lte-latam-64gb/score/index.json new file mode 100644 index 00000000000..99aee406377 --- /dev/null +++ b/site/public/v1/smartphones/sm-a217m-ds-galaxy-a21s-2020-standard-edition-dual-sim-td-lte-latam-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a217m-galaxy-a21s-2020-standard-edition-td-lte-latam-64gb/index.json b/site/public/v1/smartphones/sm-a217m-galaxy-a21s-2020-standard-edition-td-lte-latam-64gb/index.json new file mode 100644 index 00000000000..91877ef131e --- /dev/null +++ b/site/public/v1/smartphones/sm-a217m-galaxy-a21s-2020-standard-edition-td-lte-latam-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4101, + "slug": "sm-a217m-galaxy-a21s-2020-standard-edition-td-lte-latam-64gb", + "name": "SM-A217M Galaxy A21s 2020 Standard Edition TD-LTE LATAM 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 197, + "slug": "exynos-850", + "name": "Exynos 850", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G52 MP1", + "url": "/v1/socs/exynos-850" + }, + "release_date": "2020-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.687786", + "updated_at": "2026-06-19T00:43:44.687786" +} diff --git a/site/public/v1/smartphones/sm-a217m-galaxy-a21s-2020-standard-edition-td-lte-latam-64gb/score/index.json b/site/public/v1/smartphones/sm-a217m-galaxy-a21s-2020-standard-edition-td-lte-latam-64gb/score/index.json new file mode 100644 index 00000000000..99aee406377 --- /dev/null +++ b/site/public/v1/smartphones/sm-a217m-galaxy-a21s-2020-standard-edition-td-lte-latam-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a217n-galaxy-a21s-2020-standard-edition-td-lte-kr-32gb/index.json b/site/public/v1/smartphones/sm-a217n-galaxy-a21s-2020-standard-edition-td-lte-kr-32gb/index.json new file mode 100644 index 00000000000..e5bcdb98191 --- /dev/null +++ b/site/public/v1/smartphones/sm-a217n-galaxy-a21s-2020-standard-edition-td-lte-kr-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4102, + "slug": "sm-a217n-galaxy-a21s-2020-standard-edition-td-lte-kr-32gb", + "name": "SM-A217N Galaxy A21s 2020 Standard Edition TD-LTE KR 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 197, + "slug": "exynos-850", + "name": "Exynos 850", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G52 MP1", + "url": "/v1/socs/exynos-850" + }, + "release_date": "2020-07-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.688788", + "updated_at": "2026-06-19T00:43:44.688788" +} diff --git a/site/public/v1/smartphones/sm-a217n-galaxy-a21s-2020-standard-edition-td-lte-kr-32gb/score/index.json b/site/public/v1/smartphones/sm-a217n-galaxy-a21s-2020-standard-edition-td-lte-kr-32gb/score/index.json new file mode 100644 index 00000000000..99aee406377 --- /dev/null +++ b/site/public/v1/smartphones/sm-a217n-galaxy-a21s-2020-standard-edition-td-lte-kr-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a223d-galaxy-a22-5g-2021-td-lte-jp-64gb-sc-56b/index.json b/site/public/v1/smartphones/sm-a223d-galaxy-a22-5g-2021-td-lte-jp-64gb-sc-56b/index.json new file mode 100644 index 00000000000..7d2edb98cd2 --- /dev/null +++ b/site/public/v1/smartphones/sm-a223d-galaxy-a22-5g-2021-td-lte-jp-64gb-sc-56b/index.json @@ -0,0 +1,77 @@ +{ + "id": 4361, + "slug": "sm-a223d-galaxy-a22-5g-2021-td-lte-jp-64gb-sc-56b", + "name": "SM-A223D Galaxy A22 5G 2021 TD-LTE JP 64GB SC-56B", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-12-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.8, + "resolution": "720x1560", + "refresh_hz": 60, + "type": "Color PLS TFT LCD display", + "ppi": 296 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 9.4, + "performance": 0.0, + "camera": 5.2, + "battery": 15.0, + "display": 17.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.724203", + "updated_at": "2026-06-19T00:43:44.724203" +} diff --git a/site/public/v1/smartphones/sm-a223d-galaxy-a22-5g-2021-td-lte-jp-64gb-sc-56b/score/index.json b/site/public/v1/smartphones/sm-a223d-galaxy-a22-5g-2021-td-lte-jp-64gb-sc-56b/score/index.json new file mode 100644 index 00000000000..cb8fa607cba --- /dev/null +++ b/site/public/v1/smartphones/sm-a223d-galaxy-a22-5g-2021-td-lte-jp-64gb-sc-56b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 9.4, + "performance": 0.0, + "camera": 5.2, + "battery": 15.0, + "display": 17.5, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a225f-ds-galaxy-a22-4g-2021-premium-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a225f-ds-galaxy-a22-4g-2021-premium-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..fa49f937611 --- /dev/null +++ b/site/public/v1/smartphones/sm-a225f-ds-galaxy-a22-4g-2021-premium-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4362, + "slug": "sm-a225f-ds-galaxy-a22-4g-2021-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A225F/DS Galaxy A22 4G 2021 Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2021-07-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 275 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.5, + "performance": 1.5, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.725203", + "updated_at": "2026-06-19T00:43:44.725203" +} diff --git a/site/public/v1/smartphones/sm-a225f-ds-galaxy-a22-4g-2021-premium-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a225f-ds-galaxy-a22-4g-2021-premium-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..a3d40cb3a09 --- /dev/null +++ b/site/public/v1/smartphones/sm-a225f-ds-galaxy-a22-4g-2021-premium-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.5, + "performance": 1.5, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a225f-dsn-galaxy-a22-4g-2021-standard-edition-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-a225f-dsn-galaxy-a22-4g-2021-standard-edition-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..bbd6a34295e --- /dev/null +++ b/site/public/v1/smartphones/sm-a225f-dsn-galaxy-a22-4g-2021-standard-edition-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4363, + "slug": "sm-a225f-dsn-galaxy-a22-4g-2021-standard-edition-global-dual-sim-td-lte-64gb", + "name": "SM-A225F/DSN Galaxy A22 4G 2021 Standard Edition Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2021-06-27", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 275 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.725203", + "updated_at": "2026-06-19T00:43:44.725203" +} diff --git a/site/public/v1/smartphones/sm-a225f-dsn-galaxy-a22-4g-2021-standard-edition-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-a225f-dsn-galaxy-a22-4g-2021-standard-edition-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..602742251c0 --- /dev/null +++ b/site/public/v1/smartphones/sm-a225f-dsn-galaxy-a22-4g-2021-standard-edition-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a225m-dsn-galaxy-a22-4g-2021-standard-edition-dual-sim-td-lte-latam-128gb/index.json b/site/public/v1/smartphones/sm-a225m-dsn-galaxy-a22-4g-2021-standard-edition-dual-sim-td-lte-latam-128gb/index.json new file mode 100644 index 00000000000..cc5891c6e64 --- /dev/null +++ b/site/public/v1/smartphones/sm-a225m-dsn-galaxy-a22-4g-2021-standard-edition-dual-sim-td-lte-latam-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4364, + "slug": "sm-a225m-dsn-galaxy-a22-4g-2021-standard-edition-dual-sim-td-lte-latam-128gb", + "name": "SM-A225M/DSN Galaxy A22 4G 2021 Standard Edition Dual SIM TD-LTE LATAM 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2021-07-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 275 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.725203", + "updated_at": "2026-06-19T00:43:44.725203" +} diff --git a/site/public/v1/smartphones/sm-a225m-dsn-galaxy-a22-4g-2021-standard-edition-dual-sim-td-lte-latam-128gb/score/index.json b/site/public/v1/smartphones/sm-a225m-dsn-galaxy-a22-4g-2021-standard-edition-dual-sim-td-lte-latam-128gb/score/index.json new file mode 100644 index 00000000000..602742251c0 --- /dev/null +++ b/site/public/v1/smartphones/sm-a225m-dsn-galaxy-a22-4g-2021-standard-edition-dual-sim-td-lte-latam-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a225m-n-galaxy-a22-4g-2021-standard-edition-td-lte-latam-128gb/index.json b/site/public/v1/smartphones/sm-a225m-n-galaxy-a22-4g-2021-standard-edition-td-lte-latam-128gb/index.json new file mode 100644 index 00000000000..1ca41a086d0 --- /dev/null +++ b/site/public/v1/smartphones/sm-a225m-n-galaxy-a22-4g-2021-standard-edition-td-lte-latam-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4365, + "slug": "sm-a225m-n-galaxy-a22-4g-2021-standard-edition-td-lte-latam-128gb", + "name": "SM-A225M/N Galaxy A22 4G 2021 Standard Edition TD-LTE LATAM 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2021-06-28", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 275 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.725203", + "updated_at": "2026-06-19T00:43:44.725203" +} diff --git a/site/public/v1/smartphones/sm-a225m-n-galaxy-a22-4g-2021-standard-edition-td-lte-latam-128gb/score/index.json b/site/public/v1/smartphones/sm-a225m-n-galaxy-a22-4g-2021-standard-edition-td-lte-latam-128gb/score/index.json new file mode 100644 index 00000000000..602742251c0 --- /dev/null +++ b/site/public/v1/smartphones/sm-a225m-n-galaxy-a22-4g-2021-standard-edition-td-lte-latam-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a225m-n-galaxy-a22-4g-2021-standard-edition-td-lte-latam-64gb/index.json b/site/public/v1/smartphones/sm-a225m-n-galaxy-a22-4g-2021-standard-edition-td-lte-latam-64gb/index.json new file mode 100644 index 00000000000..492f795b47f --- /dev/null +++ b/site/public/v1/smartphones/sm-a225m-n-galaxy-a22-4g-2021-standard-edition-td-lte-latam-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4366, + "slug": "sm-a225m-n-galaxy-a22-4g-2021-standard-edition-td-lte-latam-64gb", + "name": "SM-A225M/N Galaxy A22 4G 2021 Standard Edition TD-LTE LATAM 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2021-06-28", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 275 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.725203", + "updated_at": "2026-06-19T00:43:44.725203" +} diff --git a/site/public/v1/smartphones/sm-a225m-n-galaxy-a22-4g-2021-standard-edition-td-lte-latam-64gb/score/index.json b/site/public/v1/smartphones/sm-a225m-n-galaxy-a22-4g-2021-standard-edition-td-lte-latam-64gb/score/index.json new file mode 100644 index 00000000000..602742251c0 --- /dev/null +++ b/site/public/v1/smartphones/sm-a225m-n-galaxy-a22-4g-2021-standard-edition-td-lte-latam-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a226b-ds-galaxy-a22-5g-2021-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a226b-ds-galaxy-a22-5g-2021-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..fdc699b65af --- /dev/null +++ b/site/public/v1/smartphones/sm-a226b-ds-galaxy-a22-5g-2021-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4367, + "slug": "sm-a226b-ds-galaxy-a22-5g-2021-global-dual-sim-td-lte-128gb", + "name": "SM-A226B/DS Galaxy A22 5G 2021 Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-07-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 40.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.725203", + "updated_at": "2026-06-19T00:43:44.725203" +} diff --git a/site/public/v1/smartphones/sm-a226b-ds-galaxy-a22-5g-2021-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a226b-ds-galaxy-a22-5g-2021-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..0bb7f84148f --- /dev/null +++ b/site/public/v1/smartphones/sm-a226b-ds-galaxy-a22-5g-2021-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 40.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a226b-ds-galaxy-a22-5g-2021-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-a226b-ds-galaxy-a22-5g-2021-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..c4992336651 --- /dev/null +++ b/site/public/v1/smartphones/sm-a226b-ds-galaxy-a22-5g-2021-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4368, + "slug": "sm-a226b-ds-galaxy-a22-5g-2021-global-dual-sim-td-lte-64gb", + "name": "SM-A226B/DS Galaxy A22 5G 2021 Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-06-26", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 40.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.725203", + "updated_at": "2026-06-19T00:43:44.725203" +} diff --git a/site/public/v1/smartphones/sm-a226b-ds-galaxy-a22-5g-2021-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-a226b-ds-galaxy-a22-5g-2021-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..0bb7f84148f --- /dev/null +++ b/site/public/v1/smartphones/sm-a226b-ds-galaxy-a22-5g-2021-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 40.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a226b-dsn-galaxy-a22-5g-2021-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a226b-dsn-galaxy-a22-5g-2021-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..05e29ae8a5b --- /dev/null +++ b/site/public/v1/smartphones/sm-a226b-dsn-galaxy-a22-5g-2021-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4369, + "slug": "sm-a226b-dsn-galaxy-a22-5g-2021-global-dual-sim-td-lte-128gb", + "name": "SM-A226B/DSN Galaxy A22 5G 2021 Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-07-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 40.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.725203", + "updated_at": "2026-06-19T00:43:44.725203" +} diff --git a/site/public/v1/smartphones/sm-a226b-dsn-galaxy-a22-5g-2021-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a226b-dsn-galaxy-a22-5g-2021-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..0bb7f84148f --- /dev/null +++ b/site/public/v1/smartphones/sm-a226b-dsn-galaxy-a22-5g-2021-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 40.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a226b-dsn-galaxy-a22-5g-2021-global-dual-sim-td-lte-64gb-galaxy-a22s/index.json b/site/public/v1/smartphones/sm-a226b-dsn-galaxy-a22-5g-2021-global-dual-sim-td-lte-64gb-galaxy-a22s/index.json new file mode 100644 index 00000000000..2564e35114b --- /dev/null +++ b/site/public/v1/smartphones/sm-a226b-dsn-galaxy-a22-5g-2021-global-dual-sim-td-lte-64gb-galaxy-a22s/index.json @@ -0,0 +1,77 @@ +{ + "id": 4370, + "slug": "sm-a226b-dsn-galaxy-a22-5g-2021-global-dual-sim-td-lte-64gb-galaxy-a22s", + "name": "SM-A226B/DSN Galaxy A22 5G 2021 Global Dual SIM TD-LTE 64GB / Galaxy A22s", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-06-26", + "msrp_usd": 229, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 40.1, + "value": 60.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.726204", + "updated_at": "2026-06-19T00:43:44.726204" +} diff --git a/site/public/v1/smartphones/sm-a226b-dsn-galaxy-a22-5g-2021-global-dual-sim-td-lte-64gb-galaxy-a22s/score/index.json b/site/public/v1/smartphones/sm-a226b-dsn-galaxy-a22-5g-2021-global-dual-sim-td-lte-64gb-galaxy-a22s/score/index.json new file mode 100644 index 00000000000..778040c861c --- /dev/null +++ b/site/public/v1/smartphones/sm-a226b-dsn-galaxy-a22-5g-2021-global-dual-sim-td-lte-64gb-galaxy-a22s/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 40.1, + "value": 60.8 +} diff --git a/site/public/v1/smartphones/sm-a226l-galaxy-buddy-5g-2021-td-lte-kr-128gb/index.json b/site/public/v1/smartphones/sm-a226l-galaxy-buddy-5g-2021-td-lte-kr-128gb/index.json new file mode 100644 index 00000000000..ca3e21eda5f --- /dev/null +++ b/site/public/v1/smartphones/sm-a226l-galaxy-buddy-5g-2021-td-lte-kr-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4371, + "slug": "sm-a226l-galaxy-buddy-5g-2021-td-lte-kr-128gb", + "name": "SM-A226L Galaxy Buddy 5G 2021 TD-LTE KR 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 40.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.726204", + "updated_at": "2026-06-19T00:43:44.726204" +} diff --git a/site/public/v1/smartphones/sm-a226l-galaxy-buddy-5g-2021-td-lte-kr-128gb/score/index.json b/site/public/v1/smartphones/sm-a226l-galaxy-buddy-5g-2021-td-lte-kr-128gb/score/index.json new file mode 100644 index 00000000000..0bb7f84148f --- /dev/null +++ b/site/public/v1/smartphones/sm-a226l-galaxy-buddy-5g-2021-td-lte-kr-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 40.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a3050-ds-galaxy-a40s-2019-dual-sim-td-lte-cn/index.json b/site/public/v1/smartphones/sm-a3050-ds-galaxy-a40s-2019-dual-sim-td-lte-cn/index.json new file mode 100644 index 00000000000..6ef94c5d510 --- /dev/null +++ b/site/public/v1/smartphones/sm-a3050-ds-galaxy-a40s-2019-dual-sim-td-lte-cn/index.json @@ -0,0 +1,76 @@ +{ + "id": 3876, + "slug": "sm-a3050-ds-galaxy-a40s-2019-dual-sim-td-lte-cn", + "name": "SM-A3050/DS Galaxy A40s 2019 Dual SIM TD-LTE CN", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 190, + "slug": "exynos-7904", + "name": "Exynos 7904", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7904" + }, + "release_date": "2019-05-04", + "msrp_usd": 1499, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": 1.5, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 12.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.658762", + "updated_at": "2026-06-19T00:43:44.658762" +} diff --git a/site/public/v1/smartphones/sm-a3050-ds-galaxy-a40s-2019-dual-sim-td-lte-cn/score/index.json b/site/public/v1/smartphones/sm-a3050-ds-galaxy-a40s-2019-dual-sim-td-lte-cn/score/index.json new file mode 100644 index 00000000000..4839d8109b0 --- /dev/null +++ b/site/public/v1/smartphones/sm-a3050-ds-galaxy-a40s-2019-dual-sim-td-lte-cn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": 1.5, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 12.8 +} diff --git a/site/public/v1/smartphones/sm-a3058-ds-galaxy-a40s-4g-2019-dual-sim-td-lte-cn/index.json b/site/public/v1/smartphones/sm-a3058-ds-galaxy-a40s-4g-2019-dual-sim-td-lte-cn/index.json new file mode 100644 index 00000000000..a1efcd13fc3 --- /dev/null +++ b/site/public/v1/smartphones/sm-a3058-ds-galaxy-a40s-4g-2019-dual-sim-td-lte-cn/index.json @@ -0,0 +1,76 @@ +{ + "id": 3877, + "slug": "sm-a3058-ds-galaxy-a40s-4g-2019-dual-sim-td-lte-cn", + "name": "SM-A3058/DS Galaxy A40s 4G+ 2019 Dual SIM TD-LTE CN", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 190, + "slug": "exynos-7904", + "name": "Exynos 7904", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7904" + }, + "release_date": "2019-05-04", + "msrp_usd": 1499, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": 1.5, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 12.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.658762", + "updated_at": "2026-06-19T00:43:44.658762" +} diff --git a/site/public/v1/smartphones/sm-a3058-ds-galaxy-a40s-4g-2019-dual-sim-td-lte-cn/score/index.json b/site/public/v1/smartphones/sm-a3058-ds-galaxy-a40s-4g-2019-dual-sim-td-lte-cn/score/index.json new file mode 100644 index 00000000000..4839d8109b0 --- /dev/null +++ b/site/public/v1/smartphones/sm-a3058-ds-galaxy-a40s-4g-2019-dual-sim-td-lte-cn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": 1.5, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 12.8 +} diff --git a/site/public/v1/smartphones/sm-a305f-ds-galaxy-a30-2019-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-a305f-ds-galaxy-a30-2019-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..5875b950d4d --- /dev/null +++ b/site/public/v1/smartphones/sm-a305f-ds-galaxy-a30-2019-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3878, + "slug": "sm-a305f-ds-galaxy-a30-2019-global-dual-sim-td-lte-64gb", + "name": "SM-A305F/DS Galaxy A30 2019 Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 190, + "slug": "exynos-7904", + "name": "Exynos 7904", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7904" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.658762", + "updated_at": "2026-06-19T00:43:44.658762" +} diff --git a/site/public/v1/smartphones/sm-a305f-ds-galaxy-a30-2019-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-a305f-ds-galaxy-a30-2019-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..723c5aaa0d3 --- /dev/null +++ b/site/public/v1/smartphones/sm-a305f-ds-galaxy-a30-2019-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a305fn-galaxy-a30-2019-td-lte-emea-64gb/index.json b/site/public/v1/smartphones/sm-a305fn-galaxy-a30-2019-td-lte-emea-64gb/index.json new file mode 100644 index 00000000000..df95fce995a --- /dev/null +++ b/site/public/v1/smartphones/sm-a305fn-galaxy-a30-2019-td-lte-emea-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3879, + "slug": "sm-a305fn-galaxy-a30-2019-td-lte-emea-64gb", + "name": "SM-A305FN Galaxy A30 2019 TD-LTE EMEA 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 190, + "slug": "exynos-7904", + "name": "Exynos 7904", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7904" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.658762", + "updated_at": "2026-06-19T00:43:44.658762" +} diff --git a/site/public/v1/smartphones/sm-a305fn-galaxy-a30-2019-td-lte-emea-64gb/score/index.json b/site/public/v1/smartphones/sm-a305fn-galaxy-a30-2019-td-lte-emea-64gb/score/index.json new file mode 100644 index 00000000000..723c5aaa0d3 --- /dev/null +++ b/site/public/v1/smartphones/sm-a305fn-galaxy-a30-2019-td-lte-emea-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a305g-ds-galaxy-a30-2019-dual-sim-td-lte-latam-32gb/index.json b/site/public/v1/smartphones/sm-a305g-ds-galaxy-a30-2019-dual-sim-td-lte-latam-32gb/index.json new file mode 100644 index 00000000000..597cff7e3a4 --- /dev/null +++ b/site/public/v1/smartphones/sm-a305g-ds-galaxy-a30-2019-dual-sim-td-lte-latam-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3880, + "slug": "sm-a305g-ds-galaxy-a30-2019-dual-sim-td-lte-latam-32gb", + "name": "SM-A305G/DS Galaxy A30 2019 Dual SIM TD-LTE LATAM 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 190, + "slug": "exynos-7904", + "name": "Exynos 7904", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7904" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.658762", + "updated_at": "2026-06-19T00:43:44.658762" +} diff --git a/site/public/v1/smartphones/sm-a305g-ds-galaxy-a30-2019-dual-sim-td-lte-latam-32gb/score/index.json b/site/public/v1/smartphones/sm-a305g-ds-galaxy-a30-2019-dual-sim-td-lte-latam-32gb/score/index.json new file mode 100644 index 00000000000..723c5aaa0d3 --- /dev/null +++ b/site/public/v1/smartphones/sm-a305g-ds-galaxy-a30-2019-dual-sim-td-lte-latam-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a305g-galaxy-a30-2019-td-lte-latam-32gb/index.json b/site/public/v1/smartphones/sm-a305g-galaxy-a30-2019-td-lte-latam-32gb/index.json new file mode 100644 index 00000000000..51bf47d2c61 --- /dev/null +++ b/site/public/v1/smartphones/sm-a305g-galaxy-a30-2019-td-lte-latam-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3881, + "slug": "sm-a305g-galaxy-a30-2019-td-lte-latam-32gb", + "name": "SM-A305G Galaxy A30 2019 TD-LTE LATAM 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 190, + "slug": "exynos-7904", + "name": "Exynos 7904", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7904" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.658762", + "updated_at": "2026-06-19T00:43:44.658762" +} diff --git a/site/public/v1/smartphones/sm-a305g-galaxy-a30-2019-td-lte-latam-32gb/score/index.json b/site/public/v1/smartphones/sm-a305g-galaxy-a30-2019-td-lte-latam-32gb/score/index.json new file mode 100644 index 00000000000..723c5aaa0d3 --- /dev/null +++ b/site/public/v1/smartphones/sm-a305g-galaxy-a30-2019-td-lte-latam-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a305j-galaxy-a30-2019-td-lte-jp-64gb-scv43-sm-a305jx/index.json b/site/public/v1/smartphones/sm-a305j-galaxy-a30-2019-td-lte-jp-64gb-scv43-sm-a305jx/index.json new file mode 100644 index 00000000000..104da623616 --- /dev/null +++ b/site/public/v1/smartphones/sm-a305j-galaxy-a30-2019-td-lte-jp-64gb-scv43-sm-a305jx/index.json @@ -0,0 +1,76 @@ +{ + "id": 3882, + "slug": "sm-a305j-galaxy-a30-2019-td-lte-jp-64gb-scv43-sm-a305jx", + "name": "SM-A305J Galaxy A30 2019 TD-LTE JP 64GB SCV43 / SM-A305JX", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 190, + "slug": "exynos-7904", + "name": "Exynos 7904", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7904" + }, + "release_date": "2019-06-06", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.4, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.658762", + "updated_at": "2026-06-19T00:43:44.658762" +} diff --git a/site/public/v1/smartphones/sm-a305j-galaxy-a30-2019-td-lte-jp-64gb-scv43-sm-a305jx/score/index.json b/site/public/v1/smartphones/sm-a305j-galaxy-a30-2019-td-lte-jp-64gb-scv43-sm-a305jx/score/index.json new file mode 100644 index 00000000000..e7bb1d4143a --- /dev/null +++ b/site/public/v1/smartphones/sm-a305j-galaxy-a30-2019-td-lte-jp-64gb-scv43-sm-a305jx/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.4, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a305n-galaxy-a30-2019-td-lte-kr-32gb/index.json b/site/public/v1/smartphones/sm-a305n-galaxy-a30-2019-td-lte-kr-32gb/index.json new file mode 100644 index 00000000000..b475b50247f --- /dev/null +++ b/site/public/v1/smartphones/sm-a305n-galaxy-a30-2019-td-lte-kr-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3883, + "slug": "sm-a305n-galaxy-a30-2019-td-lte-kr-32gb", + "name": "SM-A305N Galaxy A30 2019 TD-LTE KR 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 190, + "slug": "exynos-7904", + "name": "Exynos 7904", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7904" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.658762", + "updated_at": "2026-06-19T00:43:44.658762" +} diff --git a/site/public/v1/smartphones/sm-a305n-galaxy-a30-2019-td-lte-kr-32gb/score/index.json b/site/public/v1/smartphones/sm-a305n-galaxy-a30-2019-td-lte-kr-32gb/score/index.json new file mode 100644 index 00000000000..723c5aaa0d3 --- /dev/null +++ b/site/public/v1/smartphones/sm-a305n-galaxy-a30-2019-td-lte-kr-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a307fn-ds-galaxy-a30s-2019-dual-sim-td-lte-emea-in-128gb/index.json b/site/public/v1/smartphones/sm-a307fn-ds-galaxy-a30s-2019-dual-sim-td-lte-emea-in-128gb/index.json new file mode 100644 index 00000000000..9a694fe1e14 --- /dev/null +++ b/site/public/v1/smartphones/sm-a307fn-ds-galaxy-a30s-2019-dual-sim-td-lte-emea-in-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3884, + "slug": "sm-a307fn-ds-galaxy-a30s-2019-dual-sim-td-lte-emea-in-128gb", + "name": "SM-A307FN/DS Galaxy A30s 2019 Dual SIM TD-LTE EMEA IN 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 190, + "slug": "exynos-7904", + "name": "Exynos 7904", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7904" + }, + "release_date": "2019-12-28", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 24.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 9.1, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.659762", + "updated_at": "2026-06-19T00:43:44.659762" +} diff --git a/site/public/v1/smartphones/sm-a307fn-ds-galaxy-a30s-2019-dual-sim-td-lte-emea-in-128gb/score/index.json b/site/public/v1/smartphones/sm-a307fn-ds-galaxy-a30s-2019-dual-sim-td-lte-emea-in-128gb/score/index.json new file mode 100644 index 00000000000..3a928d07181 --- /dev/null +++ b/site/public/v1/smartphones/sm-a307fn-ds-galaxy-a30s-2019-dual-sim-td-lte-emea-in-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 9.1, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a307fn-ds-galaxy-a30s-2019-dual-sim-td-lte-emea-in-64gb/index.json b/site/public/v1/smartphones/sm-a307fn-ds-galaxy-a30s-2019-dual-sim-td-lte-emea-in-64gb/index.json new file mode 100644 index 00000000000..072473a166a --- /dev/null +++ b/site/public/v1/smartphones/sm-a307fn-ds-galaxy-a30s-2019-dual-sim-td-lte-emea-in-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3885, + "slug": "sm-a307fn-ds-galaxy-a30s-2019-dual-sim-td-lte-emea-in-64gb", + "name": "SM-A307FN/DS Galaxy A30s 2019 Dual SIM TD-LTE EMEA IN 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 190, + "slug": "exynos-7904", + "name": "Exynos 7904", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7904" + }, + "release_date": "2019-08-01", + "msrp_usd": 279, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 24.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 9.1, + "battery": 15.0, + "display": 35.0, + "value": 57.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.659762", + "updated_at": "2026-06-19T00:43:44.659762" +} diff --git a/site/public/v1/smartphones/sm-a307fn-ds-galaxy-a30s-2019-dual-sim-td-lte-emea-in-64gb/score/index.json b/site/public/v1/smartphones/sm-a307fn-ds-galaxy-a30s-2019-dual-sim-td-lte-emea-in-64gb/score/index.json new file mode 100644 index 00000000000..5ce29d874d5 --- /dev/null +++ b/site/public/v1/smartphones/sm-a307fn-ds-galaxy-a30s-2019-dual-sim-td-lte-emea-in-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 9.1, + "battery": 15.0, + "display": 35.0, + "value": 57.4 +} diff --git a/site/public/v1/smartphones/sm-a307g-ds-galaxy-a30s-2019-dual-sim-td-lte-latam/index.json b/site/public/v1/smartphones/sm-a307g-ds-galaxy-a30s-2019-dual-sim-td-lte-latam/index.json new file mode 100644 index 00000000000..a3259b633df --- /dev/null +++ b/site/public/v1/smartphones/sm-a307g-ds-galaxy-a30s-2019-dual-sim-td-lte-latam/index.json @@ -0,0 +1,76 @@ +{ + "id": 3886, + "slug": "sm-a307g-ds-galaxy-a30s-2019-dual-sim-td-lte-latam", + "name": "SM-A307G/DS Galaxy A30s 2019 Dual SIM TD-LTE LATAM", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 190, + "slug": "exynos-7904", + "name": "Exynos 7904", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7904" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 24.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 9.1, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.659762", + "updated_at": "2026-06-19T00:43:44.659762" +} diff --git a/site/public/v1/smartphones/sm-a307g-ds-galaxy-a30s-2019-dual-sim-td-lte-latam/score/index.json b/site/public/v1/smartphones/sm-a307g-ds-galaxy-a30s-2019-dual-sim-td-lte-latam/score/index.json new file mode 100644 index 00000000000..3a928d07181 --- /dev/null +++ b/site/public/v1/smartphones/sm-a307g-ds-galaxy-a30s-2019-dual-sim-td-lte-latam/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 9.1, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a307g-galaxy-a30s-2019-td-lte-latam/index.json b/site/public/v1/smartphones/sm-a307g-galaxy-a30s-2019-td-lte-latam/index.json new file mode 100644 index 00000000000..7e70db96446 --- /dev/null +++ b/site/public/v1/smartphones/sm-a307g-galaxy-a30s-2019-td-lte-latam/index.json @@ -0,0 +1,76 @@ +{ + "id": 3887, + "slug": "sm-a307g-galaxy-a30s-2019-td-lte-latam", + "name": "SM-A307G Galaxy A30s 2019 TD-LTE LATAM", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 190, + "slug": "exynos-7904", + "name": "Exynos 7904", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7904" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 24.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 9.1, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.659762", + "updated_at": "2026-06-19T00:43:44.659762" +} diff --git a/site/public/v1/smartphones/sm-a307g-galaxy-a30s-2019-td-lte-latam/score/index.json b/site/public/v1/smartphones/sm-a307g-galaxy-a30s-2019-td-lte-latam/score/index.json new file mode 100644 index 00000000000..3a928d07181 --- /dev/null +++ b/site/public/v1/smartphones/sm-a307g-galaxy-a30s-2019-td-lte-latam/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 9.1, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a307gn-ds-galaxy-a30s-2019-dual-sim-td-lte-apac-na-128gb/index.json b/site/public/v1/smartphones/sm-a307gn-ds-galaxy-a30s-2019-dual-sim-td-lte-apac-na-128gb/index.json new file mode 100644 index 00000000000..eeb0552b631 --- /dev/null +++ b/site/public/v1/smartphones/sm-a307gn-ds-galaxy-a30s-2019-dual-sim-td-lte-apac-na-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3888, + "slug": "sm-a307gn-ds-galaxy-a30s-2019-dual-sim-td-lte-apac-na-128gb", + "name": "SM-A307GN/DS Galaxy A30s 2019 Dual SIM TD-LTE APAC NA 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 190, + "slug": "exynos-7904", + "name": "Exynos 7904", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7904" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 24.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 9.1, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.659762", + "updated_at": "2026-06-19T00:43:44.659762" +} diff --git a/site/public/v1/smartphones/sm-a307gn-ds-galaxy-a30s-2019-dual-sim-td-lte-apac-na-128gb/score/index.json b/site/public/v1/smartphones/sm-a307gn-ds-galaxy-a30s-2019-dual-sim-td-lte-apac-na-128gb/score/index.json new file mode 100644 index 00000000000..3a928d07181 --- /dev/null +++ b/site/public/v1/smartphones/sm-a307gn-ds-galaxy-a30s-2019-dual-sim-td-lte-apac-na-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 9.1, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a307gn-ds-galaxy-a30s-2019-dual-sim-td-lte-apac-na-64gb/index.json b/site/public/v1/smartphones/sm-a307gn-ds-galaxy-a30s-2019-dual-sim-td-lte-apac-na-64gb/index.json new file mode 100644 index 00000000000..5e918c973aa --- /dev/null +++ b/site/public/v1/smartphones/sm-a307gn-ds-galaxy-a30s-2019-dual-sim-td-lte-apac-na-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3889, + "slug": "sm-a307gn-ds-galaxy-a30s-2019-dual-sim-td-lte-apac-na-64gb", + "name": "SM-A307GN/DS Galaxy A30s 2019 Dual SIM TD-LTE APAC NA 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 190, + "slug": "exynos-7904", + "name": "Exynos 7904", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7904" + }, + "release_date": "2019-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 24.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 9.1, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.659762", + "updated_at": "2026-06-19T00:43:44.659762" +} diff --git a/site/public/v1/smartphones/sm-a307gn-ds-galaxy-a30s-2019-dual-sim-td-lte-apac-na-64gb/score/index.json b/site/public/v1/smartphones/sm-a307gn-ds-galaxy-a30s-2019-dual-sim-td-lte-apac-na-64gb/score/index.json new file mode 100644 index 00000000000..3a928d07181 --- /dev/null +++ b/site/public/v1/smartphones/sm-a307gn-ds-galaxy-a30s-2019-dual-sim-td-lte-apac-na-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 9.1, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a307gt-ds-galaxy-a30s-dtv-2019-dual-sim-td-lte-br-64gb/index.json b/site/public/v1/smartphones/sm-a307gt-ds-galaxy-a30s-dtv-2019-dual-sim-td-lte-br-64gb/index.json new file mode 100644 index 00000000000..681113f0dde --- /dev/null +++ b/site/public/v1/smartphones/sm-a307gt-ds-galaxy-a30s-dtv-2019-dual-sim-td-lte-br-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3890, + "slug": "sm-a307gt-ds-galaxy-a30s-dtv-2019-dual-sim-td-lte-br-64gb", + "name": "SM-A307GT/DS Galaxy A30s DTV 2019 Dual SIM TD-LTE BR 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 190, + "slug": "exynos-7904", + "name": "Exynos 7904", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7904" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "720x1560", + "type": "AM-OLED display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 24.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 9.1, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.659762", + "updated_at": "2026-06-19T00:43:44.659762" +} diff --git a/site/public/v1/smartphones/sm-a307gt-ds-galaxy-a30s-dtv-2019-dual-sim-td-lte-br-64gb/score/index.json b/site/public/v1/smartphones/sm-a307gt-ds-galaxy-a30s-dtv-2019-dual-sim-td-lte-br-64gb/score/index.json new file mode 100644 index 00000000000..3a928d07181 --- /dev/null +++ b/site/public/v1/smartphones/sm-a307gt-ds-galaxy-a30s-dtv-2019-dual-sim-td-lte-br-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 9.1, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a315f-ds-galaxy-a31-2020-premium-edition-dual-sim-td-lte-in-128gb/index.json b/site/public/v1/smartphones/sm-a315f-ds-galaxy-a31-2020-premium-edition-dual-sim-td-lte-in-128gb/index.json new file mode 100644 index 00000000000..a799afd67ee --- /dev/null +++ b/site/public/v1/smartphones/sm-a315f-ds-galaxy-a31-2020-premium-edition-dual-sim-td-lte-in-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4103, + "slug": "sm-a315f-ds-galaxy-a31-2020-premium-edition-dual-sim-td-lte-in-128gb", + "name": "SM-A315F/DS Galaxy A31 2020 Premium Edition Dual SIM TD-LTE IN 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 52, + "slug": "helio-p65", + "name": "Helio P65", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-p65" + }, + "release_date": "2020-06-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 1.5, + "camera": 16.5, + "battery": 30.0, + "display": 46.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.688788", + "updated_at": "2026-06-19T00:43:44.688788" +} diff --git a/site/public/v1/smartphones/sm-a315f-ds-galaxy-a31-2020-premium-edition-dual-sim-td-lte-in-128gb/score/index.json b/site/public/v1/smartphones/sm-a315f-ds-galaxy-a31-2020-premium-edition-dual-sim-td-lte-in-128gb/score/index.json new file mode 100644 index 00000000000..2c3e100e344 --- /dev/null +++ b/site/public/v1/smartphones/sm-a315f-ds-galaxy-a31-2020-premium-edition-dual-sim-td-lte-in-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 1.5, + "camera": 16.5, + "battery": 30.0, + "display": 46.2, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a315f-ds-galaxy-a31-2020-standard-edition-dual-sim-td-lte-emea-128gb/index.json b/site/public/v1/smartphones/sm-a315f-ds-galaxy-a31-2020-standard-edition-dual-sim-td-lte-emea-128gb/index.json new file mode 100644 index 00000000000..ba443cfbf90 --- /dev/null +++ b/site/public/v1/smartphones/sm-a315f-ds-galaxy-a31-2020-standard-edition-dual-sim-td-lte-emea-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4104, + "slug": "sm-a315f-ds-galaxy-a31-2020-standard-edition-dual-sim-td-lte-emea-128gb", + "name": "SM-A315F/DS Galaxy A31 2020 Standard Edition Dual SIM TD-LTE EMEA 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 52, + "slug": "helio-p65", + "name": "Helio P65", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-p65" + }, + "release_date": "2020-05-04", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 46.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.688788", + "updated_at": "2026-06-19T00:43:44.688788" +} diff --git a/site/public/v1/smartphones/sm-a315f-ds-galaxy-a31-2020-standard-edition-dual-sim-td-lte-emea-128gb/score/index.json b/site/public/v1/smartphones/sm-a315f-ds-galaxy-a31-2020-standard-edition-dual-sim-td-lte-emea-128gb/score/index.json new file mode 100644 index 00000000000..df67b9cf26d --- /dev/null +++ b/site/public/v1/smartphones/sm-a315f-ds-galaxy-a31-2020-standard-edition-dual-sim-td-lte-emea-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 46.2, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a315f-galaxy-a31-2020-standard-edition-td-lte-emea-128gb/index.json b/site/public/v1/smartphones/sm-a315f-galaxy-a31-2020-standard-edition-td-lte-emea-128gb/index.json new file mode 100644 index 00000000000..e05438aeb7b --- /dev/null +++ b/site/public/v1/smartphones/sm-a315f-galaxy-a31-2020-standard-edition-td-lte-emea-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4105, + "slug": "sm-a315f-galaxy-a31-2020-standard-edition-td-lte-emea-128gb", + "name": "SM-A315F Galaxy A31 2020 Standard Edition TD-LTE EMEA 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 52, + "slug": "helio-p65", + "name": "Helio P65", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-p65" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 46.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.688788", + "updated_at": "2026-06-19T00:43:44.688788" +} diff --git a/site/public/v1/smartphones/sm-a315f-galaxy-a31-2020-standard-edition-td-lte-emea-128gb/score/index.json b/site/public/v1/smartphones/sm-a315f-galaxy-a31-2020-standard-edition-td-lte-emea-128gb/score/index.json new file mode 100644 index 00000000000..df67b9cf26d --- /dev/null +++ b/site/public/v1/smartphones/sm-a315f-galaxy-a31-2020-standard-edition-td-lte-emea-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 46.2, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a315g-ds-galaxy-a31-2020-premium-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a315g-ds-galaxy-a31-2020-premium-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..88332141034 --- /dev/null +++ b/site/public/v1/smartphones/sm-a315g-ds-galaxy-a31-2020-premium-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4106, + "slug": "sm-a315g-ds-galaxy-a31-2020-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A315G/DS Galaxy A31 2020 Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 52, + "slug": "helio-p65", + "name": "Helio P65", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-p65" + }, + "release_date": "2020-04-27", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 1.5, + "camera": 16.5, + "battery": 30.0, + "display": 46.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.688788", + "updated_at": "2026-06-19T00:43:44.688788" +} diff --git a/site/public/v1/smartphones/sm-a315g-ds-galaxy-a31-2020-premium-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a315g-ds-galaxy-a31-2020-premium-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..2c3e100e344 --- /dev/null +++ b/site/public/v1/smartphones/sm-a315g-ds-galaxy-a31-2020-premium-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 1.5, + "camera": 16.5, + "battery": 30.0, + "display": 46.2, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a315g-ds-galaxy-a31-2020-standard-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a315g-ds-galaxy-a31-2020-standard-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..10a697b7979 --- /dev/null +++ b/site/public/v1/smartphones/sm-a315g-ds-galaxy-a31-2020-standard-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4107, + "slug": "sm-a315g-ds-galaxy-a31-2020-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A315G/DS Galaxy A31 2020 Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 52, + "slug": "helio-p65", + "name": "Helio P65", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-p65" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 46.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.688788", + "updated_at": "2026-06-19T00:43:44.688788" +} diff --git a/site/public/v1/smartphones/sm-a315g-ds-galaxy-a31-2020-standard-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a315g-ds-galaxy-a31-2020-standard-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..df67b9cf26d --- /dev/null +++ b/site/public/v1/smartphones/sm-a315g-ds-galaxy-a31-2020-standard-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 46.2, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a315g-ds-galaxy-a31-2020-standard-edition-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-a315g-ds-galaxy-a31-2020-standard-edition-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..1dec353bada --- /dev/null +++ b/site/public/v1/smartphones/sm-a315g-ds-galaxy-a31-2020-standard-edition-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4108, + "slug": "sm-a315g-ds-galaxy-a31-2020-standard-edition-global-dual-sim-td-lte-64gb", + "name": "SM-A315G/DS Galaxy A31 2020 Standard Edition Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 52, + "slug": "helio-p65", + "name": "Helio P65", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-p65" + }, + "release_date": "2020-04-01", + "msrp_usd": 299, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 46.2, + "value": 61.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.688788", + "updated_at": "2026-06-19T00:43:44.688788" +} diff --git a/site/public/v1/smartphones/sm-a315g-ds-galaxy-a31-2020-standard-edition-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-a315g-ds-galaxy-a31-2020-standard-edition-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..fb8aae48c17 --- /dev/null +++ b/site/public/v1/smartphones/sm-a315g-ds-galaxy-a31-2020-standard-edition-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 46.2, + "value": 61.6 +} diff --git a/site/public/v1/smartphones/sm-a315g-dsl-galaxy-a31-2020-standard-edition-dual-sim-td-lte-latam-128gb/index.json b/site/public/v1/smartphones/sm-a315g-dsl-galaxy-a31-2020-standard-edition-dual-sim-td-lte-latam-128gb/index.json new file mode 100644 index 00000000000..1ea19a78aee --- /dev/null +++ b/site/public/v1/smartphones/sm-a315g-dsl-galaxy-a31-2020-standard-edition-dual-sim-td-lte-latam-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4109, + "slug": "sm-a315g-dsl-galaxy-a31-2020-standard-edition-dual-sim-td-lte-latam-128gb", + "name": "SM-A315G/DSL Galaxy A31 2020 Standard Edition Dual SIM TD-LTE LATAM 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 52, + "slug": "helio-p65", + "name": "Helio P65", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-p65" + }, + "release_date": "2020-05-04", + "msrp_usd": 1999, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 46.2, + "value": 11.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.688788", + "updated_at": "2026-06-19T00:43:44.688788" +} diff --git a/site/public/v1/smartphones/sm-a315g-dsl-galaxy-a31-2020-standard-edition-dual-sim-td-lte-latam-128gb/score/index.json b/site/public/v1/smartphones/sm-a315g-dsl-galaxy-a31-2020-standard-edition-dual-sim-td-lte-latam-128gb/score/index.json new file mode 100644 index 00000000000..1f97d4960c6 --- /dev/null +++ b/site/public/v1/smartphones/sm-a315g-dsl-galaxy-a31-2020-standard-edition-dual-sim-td-lte-latam-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 46.2, + "value": 11.6 +} diff --git a/site/public/v1/smartphones/sm-a315g-dsl-galaxy-a31-2020-standard-edition-dual-sim-td-lte-latam-64gb/index.json b/site/public/v1/smartphones/sm-a315g-dsl-galaxy-a31-2020-standard-edition-dual-sim-td-lte-latam-64gb/index.json new file mode 100644 index 00000000000..d5a3b261300 --- /dev/null +++ b/site/public/v1/smartphones/sm-a315g-dsl-galaxy-a31-2020-standard-edition-dual-sim-td-lte-latam-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4110, + "slug": "sm-a315g-dsl-galaxy-a31-2020-standard-edition-dual-sim-td-lte-latam-64gb", + "name": "SM-A315G/DSL Galaxy A31 2020 Standard Edition Dual SIM TD-LTE LATAM 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 52, + "slug": "helio-p65", + "name": "Helio P65", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-p65" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 46.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.688788", + "updated_at": "2026-06-19T00:43:44.689781" +} diff --git a/site/public/v1/smartphones/sm-a315g-dsl-galaxy-a31-2020-standard-edition-dual-sim-td-lte-latam-64gb/score/index.json b/site/public/v1/smartphones/sm-a315g-dsl-galaxy-a31-2020-standard-edition-dual-sim-td-lte-latam-64gb/score/index.json new file mode 100644 index 00000000000..df67b9cf26d --- /dev/null +++ b/site/public/v1/smartphones/sm-a315g-dsl-galaxy-a31-2020-standard-edition-dual-sim-td-lte-latam-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 46.2, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a315g-galaxy-a31-2020-standard-edition-global-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a315g-galaxy-a31-2020-standard-edition-global-td-lte-128gb/index.json new file mode 100644 index 00000000000..14f39cba7a5 --- /dev/null +++ b/site/public/v1/smartphones/sm-a315g-galaxy-a31-2020-standard-edition-global-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4111, + "slug": "sm-a315g-galaxy-a31-2020-standard-edition-global-td-lte-128gb", + "name": "SM-A315G Galaxy A31 2020 Standard Edition Global TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 52, + "slug": "helio-p65", + "name": "Helio P65", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-p65" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 46.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.689781", + "updated_at": "2026-06-19T00:43:44.689781" +} diff --git a/site/public/v1/smartphones/sm-a315g-galaxy-a31-2020-standard-edition-global-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a315g-galaxy-a31-2020-standard-edition-global-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..df67b9cf26d --- /dev/null +++ b/site/public/v1/smartphones/sm-a315g-galaxy-a31-2020-standard-edition-global-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 46.2, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a315g-l-galaxy-a31-2020-standard-edition-td-lte-latam-128gb/index.json b/site/public/v1/smartphones/sm-a315g-l-galaxy-a31-2020-standard-edition-td-lte-latam-128gb/index.json new file mode 100644 index 00000000000..51df4e89f06 --- /dev/null +++ b/site/public/v1/smartphones/sm-a315g-l-galaxy-a31-2020-standard-edition-td-lte-latam-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4112, + "slug": "sm-a315g-l-galaxy-a31-2020-standard-edition-td-lte-latam-128gb", + "name": "SM-A315G/L Galaxy A31 2020 Standard Edition TD-LTE LATAM 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 52, + "slug": "helio-p65", + "name": "Helio P65", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-p65" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 46.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.689781", + "updated_at": "2026-06-19T00:43:44.689781" +} diff --git a/site/public/v1/smartphones/sm-a315g-l-galaxy-a31-2020-standard-edition-td-lte-latam-128gb/score/index.json b/site/public/v1/smartphones/sm-a315g-l-galaxy-a31-2020-standard-edition-td-lte-latam-128gb/score/index.json new file mode 100644 index 00000000000..df67b9cf26d --- /dev/null +++ b/site/public/v1/smartphones/sm-a315g-l-galaxy-a31-2020-standard-edition-td-lte-latam-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 46.2, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a315g-l-galaxy-a31-2020-standard-edition-td-lte-latam-64gb/index.json b/site/public/v1/smartphones/sm-a315g-l-galaxy-a31-2020-standard-edition-td-lte-latam-64gb/index.json new file mode 100644 index 00000000000..18a7daae1c3 --- /dev/null +++ b/site/public/v1/smartphones/sm-a315g-l-galaxy-a31-2020-standard-edition-td-lte-latam-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4113, + "slug": "sm-a315g-l-galaxy-a31-2020-standard-edition-td-lte-latam-64gb", + "name": "SM-A315G/L Galaxy A31 2020 Standard Edition TD-LTE LATAM 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 52, + "slug": "helio-p65", + "name": "Helio P65", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-p65" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 46.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.689781", + "updated_at": "2026-06-19T00:43:44.689781" +} diff --git a/site/public/v1/smartphones/sm-a315g-l-galaxy-a31-2020-standard-edition-td-lte-latam-64gb/score/index.json b/site/public/v1/smartphones/sm-a315g-l-galaxy-a31-2020-standard-edition-td-lte-latam-64gb/score/index.json new file mode 100644 index 00000000000..df67b9cf26d --- /dev/null +++ b/site/public/v1/smartphones/sm-a315g-l-galaxy-a31-2020-standard-edition-td-lte-latam-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 46.2, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a315n-galaxy-a31-2020-standard-edition-td-lte-kr-64gb/index.json b/site/public/v1/smartphones/sm-a315n-galaxy-a31-2020-standard-edition-td-lte-kr-64gb/index.json new file mode 100644 index 00000000000..f2428001bc7 --- /dev/null +++ b/site/public/v1/smartphones/sm-a315n-galaxy-a31-2020-standard-edition-td-lte-kr-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4114, + "slug": "sm-a315n-galaxy-a31-2020-standard-edition-td-lte-kr-64gb", + "name": "SM-A315N Galaxy A31 2020 Standard Edition TD-LTE KR 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 52, + "slug": "helio-p65", + "name": "Helio P65", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-p65" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 46.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.689781", + "updated_at": "2026-06-19T00:43:44.689781" +} diff --git a/site/public/v1/smartphones/sm-a315n-galaxy-a31-2020-standard-edition-td-lte-kr-64gb/score/index.json b/site/public/v1/smartphones/sm-a315n-galaxy-a31-2020-standard-edition-td-lte-kr-64gb/score/index.json new file mode 100644 index 00000000000..df67b9cf26d --- /dev/null +++ b/site/public/v1/smartphones/sm-a315n-galaxy-a31-2020-standard-edition-td-lte-kr-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 46.2, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a325f-ds-galaxy-a32-4g-2021-premium-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a325f-ds-galaxy-a32-4g-2021-premium-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..5811d723e1b --- /dev/null +++ b/site/public/v1/smartphones/sm-a325f-ds-galaxy-a32-4g-2021-premium-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4372, + "slug": "sm-a325f-ds-galaxy-a32-4g-2021-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A325F/DS Galaxy A32 4G 2021 Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2021-03-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 57.9 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 1.5, + "camera": 19.6, + "battery": 30.0, + "display": 41.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.726204", + "updated_at": "2026-06-19T00:43:44.726204" +} diff --git a/site/public/v1/smartphones/sm-a325f-ds-galaxy-a32-4g-2021-premium-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a325f-ds-galaxy-a32-4g-2021-premium-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..1706fb6f3f5 --- /dev/null +++ b/site/public/v1/smartphones/sm-a325f-ds-galaxy-a32-4g-2021-premium-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 1.5, + "camera": 19.6, + "battery": 30.0, + "display": 41.2, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a325f-ds-galaxy-a32-4g-2021-standard-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a325f-ds-galaxy-a32-4g-2021-standard-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..9e42586dfd9 --- /dev/null +++ b/site/public/v1/smartphones/sm-a325f-ds-galaxy-a32-4g-2021-standard-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4373, + "slug": "sm-a325f-ds-galaxy-a32-4g-2021-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A325F/DS Galaxy A32 4G 2021 Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2021-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 57.9 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.7, + "performance": 0.0, + "camera": 19.6, + "battery": 30.0, + "display": 41.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.726204", + "updated_at": "2026-06-19T00:43:44.726204" +} diff --git a/site/public/v1/smartphones/sm-a325f-ds-galaxy-a32-4g-2021-standard-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a325f-ds-galaxy-a32-4g-2021-standard-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..842a32c0e6e --- /dev/null +++ b/site/public/v1/smartphones/sm-a325f-ds-galaxy-a32-4g-2021-standard-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.7, + "performance": 0.0, + "camera": 19.6, + "battery": 30.0, + "display": 41.2, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a325m-ds-galaxy-a32-4g-2021-standard-edition-dual-sim-td-lte-latam-128gb/index.json b/site/public/v1/smartphones/sm-a325m-ds-galaxy-a32-4g-2021-standard-edition-dual-sim-td-lte-latam-128gb/index.json new file mode 100644 index 00000000000..1d52069fd06 --- /dev/null +++ b/site/public/v1/smartphones/sm-a325m-ds-galaxy-a32-4g-2021-standard-edition-dual-sim-td-lte-latam-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4374, + "slug": "sm-a325m-ds-galaxy-a32-4g-2021-standard-edition-dual-sim-td-lte-latam-128gb", + "name": "SM-A325M/DS Galaxy A32 4G 2021 Standard Edition Dual SIM TD-LTE LATAM 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2021-03-01", + "msrp_usd": 289, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 57.9 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.7, + "performance": 0.0, + "camera": 19.6, + "battery": 30.0, + "display": 41.2, + "value": 61.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.726204", + "updated_at": "2026-06-19T00:43:44.726204" +} diff --git a/site/public/v1/smartphones/sm-a325m-ds-galaxy-a32-4g-2021-standard-edition-dual-sim-td-lte-latam-128gb/score/index.json b/site/public/v1/smartphones/sm-a325m-ds-galaxy-a32-4g-2021-standard-edition-dual-sim-td-lte-latam-128gb/score/index.json new file mode 100644 index 00000000000..61d0079b7b1 --- /dev/null +++ b/site/public/v1/smartphones/sm-a325m-ds-galaxy-a32-4g-2021-standard-edition-dual-sim-td-lte-latam-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.7, + "performance": 0.0, + "camera": 19.6, + "battery": 30.0, + "display": 41.2, + "value": 61.4 +} diff --git a/site/public/v1/smartphones/sm-a325n-galaxy-a32-4g-2021-standard-edition-td-lte-kr-64gb/index.json b/site/public/v1/smartphones/sm-a325n-galaxy-a32-4g-2021-standard-edition-td-lte-kr-64gb/index.json new file mode 100644 index 00000000000..fc957c79a2a --- /dev/null +++ b/site/public/v1/smartphones/sm-a325n-galaxy-a32-4g-2021-standard-edition-td-lte-kr-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4375, + "slug": "sm-a325n-galaxy-a32-4g-2021-standard-edition-td-lte-kr-64gb", + "name": "SM-A325N Galaxy A32 4G 2021 Standard Edition TD-LTE KR 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2021-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 57.9 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.7, + "performance": 0.0, + "camera": 19.6, + "battery": 30.0, + "display": 41.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.726204", + "updated_at": "2026-06-19T00:43:44.726204" +} diff --git a/site/public/v1/smartphones/sm-a325n-galaxy-a32-4g-2021-standard-edition-td-lte-kr-64gb/score/index.json b/site/public/v1/smartphones/sm-a325n-galaxy-a32-4g-2021-standard-edition-td-lte-kr-64gb/score/index.json new file mode 100644 index 00000000000..842a32c0e6e --- /dev/null +++ b/site/public/v1/smartphones/sm-a325n-galaxy-a32-4g-2021-standard-edition-td-lte-kr-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.7, + "performance": 0.0, + "camera": 19.6, + "battery": 30.0, + "display": 41.2, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a326b-ds-galaxy-a32-5g-2021-premium-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a326b-ds-galaxy-a32-5g-2021-premium-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..d3ae279fde3 --- /dev/null +++ b/site/public/v1/smartphones/sm-a326b-ds-galaxy-a32-5g-2021-premium-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4376, + "slug": "sm-a326b-ds-galaxy-a32-5g-2021-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A326B/DS Galaxy A32 5G 2021 Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2021-02-19", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 1.5, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.726204", + "updated_at": "2026-06-19T00:43:44.726204" +} diff --git a/site/public/v1/smartphones/sm-a326b-ds-galaxy-a32-5g-2021-premium-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a326b-ds-galaxy-a32-5g-2021-premium-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..821e1e74f88 --- /dev/null +++ b/site/public/v1/smartphones/sm-a326b-ds-galaxy-a32-5g-2021-premium-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 1.5, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a326b-ds-galaxy-a32-5g-2021-standard-edition-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-a326b-ds-galaxy-a32-5g-2021-standard-edition-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..7d3e996730f --- /dev/null +++ b/site/public/v1/smartphones/sm-a326b-ds-galaxy-a32-5g-2021-standard-edition-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4377, + "slug": "sm-a326b-ds-galaxy-a32-5g-2021-standard-edition-global-dual-sim-td-lte-64gb", + "name": "SM-A326B/DS Galaxy A32 5G 2021 Standard Edition Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2021-02-19", + "msrp_usd": 249, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": 60.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.726204", + "updated_at": "2026-06-19T00:43:44.726204" +} diff --git a/site/public/v1/smartphones/sm-a326b-ds-galaxy-a32-5g-2021-standard-edition-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-a326b-ds-galaxy-a32-5g-2021-standard-edition-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..e86f5013ea6 --- /dev/null +++ b/site/public/v1/smartphones/sm-a326b-ds-galaxy-a32-5g-2021-standard-edition-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": 60.2 +} diff --git a/site/public/v1/smartphones/sm-a326j-galaxy-a32-5g-2021-td-lte-jp-scg08/index.json b/site/public/v1/smartphones/sm-a326j-galaxy-a32-5g-2021-td-lte-jp-scg08/index.json new file mode 100644 index 00000000000..32345015958 --- /dev/null +++ b/site/public/v1/smartphones/sm-a326j-galaxy-a32-5g-2021-td-lte-jp-scg08/index.json @@ -0,0 +1,76 @@ +{ + "id": 4378, + "slug": "sm-a326j-galaxy-a32-5g-2021-td-lte-jp-scg08", + "name": "SM-A326J Galaxy A32 5G 2021 TD-LTE JP SCG08", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2021-02-26", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 209.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.726204", + "updated_at": "2026-06-19T00:43:44.726204" +} diff --git a/site/public/v1/smartphones/sm-a326j-galaxy-a32-5g-2021-td-lte-jp-scg08/score/index.json b/site/public/v1/smartphones/sm-a326j-galaxy-a32-5g-2021-td-lte-jp-scg08/score/index.json new file mode 100644 index 00000000000..99aee406377 --- /dev/null +++ b/site/public/v1/smartphones/sm-a326j-galaxy-a32-5g-2021-td-lte-jp-scg08/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a326k-galaxy-jump-5g-2021-td-lte-kr-128gb/index.json b/site/public/v1/smartphones/sm-a326k-galaxy-jump-5g-2021-td-lte-kr-128gb/index.json new file mode 100644 index 00000000000..1c9e1a4eedd --- /dev/null +++ b/site/public/v1/smartphones/sm-a326k-galaxy-jump-5g-2021-td-lte-kr-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4379, + "slug": "sm-a326k-galaxy-jump-5g-2021-td-lte-kr-128gb", + "name": "SM-A326K Galaxy Jump 5G 2021 TD-LTE KR 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2021-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 209.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.727204", + "updated_at": "2026-06-19T00:43:44.727204" +} diff --git a/site/public/v1/smartphones/sm-a326k-galaxy-jump-5g-2021-td-lte-kr-128gb/score/index.json b/site/public/v1/smartphones/sm-a326k-galaxy-jump-5g-2021-td-lte-kr-128gb/score/index.json new file mode 100644 index 00000000000..99aee406377 --- /dev/null +++ b/site/public/v1/smartphones/sm-a326k-galaxy-jump-5g-2021-td-lte-kr-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326a/index.json b/site/public/v1/smartphones/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326a/index.json new file mode 100644 index 00000000000..bb3b9243822 --- /dev/null +++ b/site/public/v1/smartphones/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326a/index.json @@ -0,0 +1,77 @@ +{ + "id": 4380, + "slug": "sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326a", + "name": "SM-A326U Galaxy A32 5G 2021 TD-LTE US 64GB / SM-A326A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2021-05-01", + "msrp_usd": 280, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 59.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.727204", + "updated_at": "2026-06-19T00:43:44.727204" +} diff --git a/site/public/v1/smartphones/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326a/score/index.json b/site/public/v1/smartphones/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326a/score/index.json new file mode 100644 index 00000000000..d0434da1826 --- /dev/null +++ b/site/public/v1/smartphones/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 59.5 +} diff --git a/site/public/v1/smartphones/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326r4/index.json b/site/public/v1/smartphones/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326r4/index.json new file mode 100644 index 00000000000..c019c06b49f --- /dev/null +++ b/site/public/v1/smartphones/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326r4/index.json @@ -0,0 +1,77 @@ +{ + "id": 4381, + "slug": "sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326r4", + "name": "SM-A326U Galaxy A32 5G 2021 TD-LTE US 64GB / SM-A326R4", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2021-04-09", + "msrp_usd": 280, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 59.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.727204", + "updated_at": "2026-06-19T00:43:44.727204" +} diff --git a/site/public/v1/smartphones/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326r4/score/index.json b/site/public/v1/smartphones/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326r4/score/index.json new file mode 100644 index 00000000000..d0434da1826 --- /dev/null +++ b/site/public/v1/smartphones/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326r4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 59.5 +} diff --git a/site/public/v1/smartphones/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326t-sm-a326p/index.json b/site/public/v1/smartphones/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326t-sm-a326p/index.json new file mode 100644 index 00000000000..be74ca7bda6 --- /dev/null +++ b/site/public/v1/smartphones/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326t-sm-a326p/index.json @@ -0,0 +1,77 @@ +{ + "id": 4382, + "slug": "sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326t-sm-a326p", + "name": "SM-A326U Galaxy A32 5G 2021 TD-LTE US 64GB / SM-A326T / SM-A326P", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2021-04-08", + "msrp_usd": 280, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 59.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.727204", + "updated_at": "2026-06-19T00:43:44.727204" +} diff --git a/site/public/v1/smartphones/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326t-sm-a326p/score/index.json b/site/public/v1/smartphones/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326t-sm-a326p/score/index.json new file mode 100644 index 00000000000..d0434da1826 --- /dev/null +++ b/site/public/v1/smartphones/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-a326t-sm-a326p/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 59.5 +} diff --git a/site/public/v1/smartphones/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-s326dl/index.json b/site/public/v1/smartphones/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-s326dl/index.json new file mode 100644 index 00000000000..889b9471d6a --- /dev/null +++ b/site/public/v1/smartphones/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-s326dl/index.json @@ -0,0 +1,77 @@ +{ + "id": 4383, + "slug": "sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-s326dl", + "name": "SM-A326U Galaxy A32 5G 2021 TD-LTE US 64GB / SM-S326DL", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2021-05-01", + "msrp_usd": 320, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 58.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.727204", + "updated_at": "2026-06-19T00:43:44.727204" +} diff --git a/site/public/v1/smartphones/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-s326dl/score/index.json b/site/public/v1/smartphones/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-s326dl/score/index.json new file mode 100644 index 00000000000..91d2e6c040c --- /dev/null +++ b/site/public/v1/smartphones/sm-a326u-galaxy-a32-5g-2021-td-lte-us-64gb-sm-s326dl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 58.8 +} diff --git a/site/public/v1/smartphones/sm-a326u1-galaxy-a32-5g-2021-td-lte-us-64gb/index.json b/site/public/v1/smartphones/sm-a326u1-galaxy-a32-5g-2021-td-lte-us-64gb/index.json new file mode 100644 index 00000000000..562b4334318 --- /dev/null +++ b/site/public/v1/smartphones/sm-a326u1-galaxy-a32-5g-2021-td-lte-us-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4384, + "slug": "sm-a326u1-galaxy-a32-5g-2021-td-lte-us-64gb", + "name": "SM-A326U1 Galaxy A32 5G 2021 TD-LTE US 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2021-04-08", + "msrp_usd": 280, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 59.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.727204", + "updated_at": "2026-06-19T00:43:44.727204" +} diff --git a/site/public/v1/smartphones/sm-a326u1-galaxy-a32-5g-2021-td-lte-us-64gb/score/index.json b/site/public/v1/smartphones/sm-a326u1-galaxy-a32-5g-2021-td-lte-us-64gb/score/index.json new file mode 100644 index 00000000000..d0434da1826 --- /dev/null +++ b/site/public/v1/smartphones/sm-a326u1-galaxy-a32-5g-2021-td-lte-us-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 59.5 +} diff --git a/site/public/v1/smartphones/sm-a326w-galaxy-a32-5g-2021-td-lte-ca-64gb/index.json b/site/public/v1/smartphones/sm-a326w-galaxy-a32-5g-2021-td-lte-ca-64gb/index.json new file mode 100644 index 00000000000..7af7cfdd7c3 --- /dev/null +++ b/site/public/v1/smartphones/sm-a326w-galaxy-a32-5g-2021-td-lte-ca-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4385, + "slug": "sm-a326w-galaxy-a32-5g-2021-td-lte-ca-64gb", + "name": "SM-A326W Galaxy A32 5G 2021 TD-LTE CA 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2021-02-01", + "msrp_usd": 370, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 205.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": 57.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.727204", + "updated_at": "2026-06-19T00:43:44.727204" +} diff --git a/site/public/v1/smartphones/sm-a326w-galaxy-a32-5g-2021-td-lte-ca-64gb/score/index.json b/site/public/v1/smartphones/sm-a326w-galaxy-a32-5g-2021-td-lte-ca-64gb/score/index.json new file mode 100644 index 00000000000..1f828119a45 --- /dev/null +++ b/site/public/v1/smartphones/sm-a326w-galaxy-a32-5g-2021-td-lte-ca-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": 57.5 +} diff --git a/site/public/v1/smartphones/sm-a3360-galaxy-a33-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-128gb/index.json b/site/public/v1/smartphones/sm-a3360-galaxy-a33-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-128gb/index.json new file mode 100644 index 00000000000..bc515c3ad0e --- /dev/null +++ b/site/public/v1/smartphones/sm-a3360-galaxy-a33-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4545, + "slug": "sm-a3360-galaxy-a33-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-128gb", + "name": "SM-A3360 Galaxy A33 5G 2022 Premium Edition Dual SIM TD-LTE CN HK 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 201, + "slug": "exynos-1280", + "name": "Samsung Exynos 1280", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G68 MP4", + "url": "/v1/socs/exynos-1280" + }, + "release_date": "2022-04-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 3.0, + "camera": 16.5, + "battery": 41.9, + "display": 41.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.746204", + "updated_at": "2026-06-19T00:43:44.746204" +} diff --git a/site/public/v1/smartphones/sm-a3360-galaxy-a33-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-128gb/score/index.json b/site/public/v1/smartphones/sm-a3360-galaxy-a33-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-128gb/score/index.json new file mode 100644 index 00000000000..0aed9fbe605 --- /dev/null +++ b/site/public/v1/smartphones/sm-a3360-galaxy-a33-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 3.0, + "camera": 16.5, + "battery": 41.9, + "display": 41.2, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a336b-dsn-galaxy-a33-5g-2022-standard-edition-dual-sim-td-lte-eu-latam-128gb/index.json b/site/public/v1/smartphones/sm-a336b-dsn-galaxy-a33-5g-2022-standard-edition-dual-sim-td-lte-eu-latam-128gb/index.json new file mode 100644 index 00000000000..57d4b5c9004 --- /dev/null +++ b/site/public/v1/smartphones/sm-a336b-dsn-galaxy-a33-5g-2022-standard-edition-dual-sim-td-lte-eu-latam-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4546, + "slug": "sm-a336b-dsn-galaxy-a33-5g-2022-standard-edition-dual-sim-td-lte-eu-latam-128gb", + "name": "SM-A336B/DSN Galaxy A33 5G 2022 Standard Edition Dual SIM TD-LTE EU LATAM 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 201, + "slug": "exynos-1280", + "name": "Samsung Exynos 1280", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G68 MP4", + "url": "/v1/socs/exynos-1280" + }, + "release_date": "2022-04-22", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.3, + "performance": 1.5, + "camera": 16.5, + "battery": 41.9, + "display": 41.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.746204", + "updated_at": "2026-06-19T00:43:44.746204" +} diff --git a/site/public/v1/smartphones/sm-a336b-dsn-galaxy-a33-5g-2022-standard-edition-dual-sim-td-lte-eu-latam-128gb/score/index.json b/site/public/v1/smartphones/sm-a336b-dsn-galaxy-a33-5g-2022-standard-edition-dual-sim-td-lte-eu-latam-128gb/score/index.json new file mode 100644 index 00000000000..9be9582f091 --- /dev/null +++ b/site/public/v1/smartphones/sm-a336b-dsn-galaxy-a33-5g-2022-standard-edition-dual-sim-td-lte-eu-latam-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.3, + "performance": 1.5, + "camera": 16.5, + "battery": 41.9, + "display": 41.2, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a336e-ds-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a336e-ds-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..c378ded168d --- /dev/null +++ b/site/public/v1/smartphones/sm-a336e-ds-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4547, + "slug": "sm-a336e-ds-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A336E/DS Galaxy A33 5G 2022 Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 201, + "slug": "exynos-1280", + "name": "Samsung Exynos 1280", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G68 MP4", + "url": "/v1/socs/exynos-1280" + }, + "release_date": "2022-04-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 3.0, + "camera": 16.5, + "battery": 41.9, + "display": 41.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.746204", + "updated_at": "2026-06-19T00:43:44.746204" +} diff --git a/site/public/v1/smartphones/sm-a336e-ds-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a336e-ds-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..0aed9fbe605 --- /dev/null +++ b/site/public/v1/smartphones/sm-a336e-ds-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 3.0, + "camera": 16.5, + "battery": 41.9, + "display": 41.2, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a336e-ds-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-256gb/index.json b/site/public/v1/smartphones/sm-a336e-ds-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-256gb/index.json new file mode 100644 index 00000000000..719f0e5363c --- /dev/null +++ b/site/public/v1/smartphones/sm-a336e-ds-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4548, + "slug": "sm-a336e-ds-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-256gb", + "name": "SM-A336E/DS Galaxy A33 5G 2022 Premium Edition Global Dual SIM TD-LTE 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 201, + "slug": "exynos-1280", + "name": "Samsung Exynos 1280", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G68 MP4", + "url": "/v1/socs/exynos-1280" + }, + "release_date": "2022-04-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 3.0, + "camera": 16.5, + "battery": 41.9, + "display": 41.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.747203", + "updated_at": "2026-06-19T00:43:44.747203" +} diff --git a/site/public/v1/smartphones/sm-a336e-ds-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-256gb/score/index.json b/site/public/v1/smartphones/sm-a336e-ds-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..0aed9fbe605 --- /dev/null +++ b/site/public/v1/smartphones/sm-a336e-ds-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 3.0, + "camera": 16.5, + "battery": 41.9, + "display": 41.2, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a336e-ds-galaxy-a33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a336e-ds-galaxy-a33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..7348fdef914 --- /dev/null +++ b/site/public/v1/smartphones/sm-a336e-ds-galaxy-a33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4549, + "slug": "sm-a336e-ds-galaxy-a33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A336E/DS Galaxy A33 5G 2022 Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 201, + "slug": "exynos-1280", + "name": "Samsung Exynos 1280", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G68 MP4", + "url": "/v1/socs/exynos-1280" + }, + "release_date": "2022-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.3, + "performance": 1.5, + "camera": 16.5, + "battery": 41.9, + "display": 41.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.747203", + "updated_at": "2026-06-19T00:43:44.747203" +} diff --git a/site/public/v1/smartphones/sm-a336e-ds-galaxy-a33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a336e-ds-galaxy-a33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..9be9582f091 --- /dev/null +++ b/site/public/v1/smartphones/sm-a336e-ds-galaxy-a33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.3, + "performance": 1.5, + "camera": 16.5, + "battery": 41.9, + "display": 41.2, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a336e-dsn-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a336e-dsn-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..713ef328efa --- /dev/null +++ b/site/public/v1/smartphones/sm-a336e-dsn-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4550, + "slug": "sm-a336e-dsn-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A336E/DSN Galaxy A33 5G 2022 Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 201, + "slug": "exynos-1280", + "name": "Samsung Exynos 1280", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G68 MP4", + "url": "/v1/socs/exynos-1280" + }, + "release_date": "2022-04-14", + "msrp_usd": 1499, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 3.0, + "camera": 16.5, + "battery": 41.9, + "display": 41.2, + "value": 16.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.747203", + "updated_at": "2026-06-19T00:43:44.747203" +} diff --git a/site/public/v1/smartphones/sm-a336e-dsn-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a336e-dsn-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..b2e91a8585b --- /dev/null +++ b/site/public/v1/smartphones/sm-a336e-dsn-galaxy-a33-5g-2022-premium-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 3.0, + "camera": 16.5, + "battery": 41.9, + "display": 41.2, + "value": 16.7 +} diff --git a/site/public/v1/smartphones/sm-a336e-dsn-galaxy-a33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a336e-dsn-galaxy-a33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..63222579575 --- /dev/null +++ b/site/public/v1/smartphones/sm-a336e-dsn-galaxy-a33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4551, + "slug": "sm-a336e-dsn-galaxy-a33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A336E/DSN Galaxy A33 5G 2022 Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 201, + "slug": "exynos-1280", + "name": "Samsung Exynos 1280", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G68 MP4", + "url": "/v1/socs/exynos-1280" + }, + "release_date": "2022-04-22", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.3, + "performance": 1.5, + "camera": 16.5, + "battery": 41.9, + "display": 41.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.747203", + "updated_at": "2026-06-19T00:43:44.747203" +} diff --git a/site/public/v1/smartphones/sm-a336e-dsn-galaxy-a33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a336e-dsn-galaxy-a33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..9be9582f091 --- /dev/null +++ b/site/public/v1/smartphones/sm-a336e-dsn-galaxy-a33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.3, + "performance": 1.5, + "camera": 16.5, + "battery": 41.9, + "display": 41.2, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a336e-galaxy-a33-5g-2022-standard-edition-global-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a336e-galaxy-a33-5g-2022-standard-edition-global-td-lte-128gb/index.json new file mode 100644 index 00000000000..34b1f68ac3d --- /dev/null +++ b/site/public/v1/smartphones/sm-a336e-galaxy-a33-5g-2022-standard-edition-global-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4552, + "slug": "sm-a336e-galaxy-a33-5g-2022-standard-edition-global-td-lte-128gb", + "name": "SM-A336E Galaxy A33 5G 2022 Standard Edition Global TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 201, + "slug": "exynos-1280", + "name": "Samsung Exynos 1280", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G68 MP4", + "url": "/v1/socs/exynos-1280" + }, + "release_date": "2022-04-01", + "msrp_usd": 599, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.3, + "performance": 1.5, + "camera": 16.5, + "battery": 41.9, + "display": 41.2, + "value": 51.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.747203", + "updated_at": "2026-06-19T00:43:44.747203" +} diff --git a/site/public/v1/smartphones/sm-a336e-galaxy-a33-5g-2022-standard-edition-global-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a336e-galaxy-a33-5g-2022-standard-edition-global-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..b6e916ee798 --- /dev/null +++ b/site/public/v1/smartphones/sm-a336e-galaxy-a33-5g-2022-standard-edition-global-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.3, + "performance": 1.5, + "camera": 16.5, + "battery": 41.9, + "display": 41.2, + "value": 51.1 +} diff --git a/site/public/v1/smartphones/sm-a405fm-ds-galaxy-a40-2019-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-a405fm-ds-galaxy-a40-2019-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..75af5fb9c53 --- /dev/null +++ b/site/public/v1/smartphones/sm-a405fm-ds-galaxy-a40-2019-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3891, + "slug": "sm-a405fm-ds-galaxy-a40-2019-global-dual-sim-td-lte-64gb", + "name": "SM-A405FM/DS Galaxy A40 2019 Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 186, + "slug": "exynos-7885", + "name": "Exynos 7885", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7885" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.87, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 3100, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 0.0, + "camera": 6.3, + "battery": 1.5, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.659762", + "updated_at": "2026-06-19T00:43:44.659762" +} diff --git a/site/public/v1/smartphones/sm-a405fm-ds-galaxy-a40-2019-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-a405fm-ds-galaxy-a40-2019-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..ef315c0eb15 --- /dev/null +++ b/site/public/v1/smartphones/sm-a405fm-ds-galaxy-a40-2019-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 0.0, + "camera": 6.3, + "battery": 1.5, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a405fn-ds-galaxy-a40-2019-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-a405fn-ds-galaxy-a40-2019-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..63504efc2cd --- /dev/null +++ b/site/public/v1/smartphones/sm-a405fn-ds-galaxy-a40-2019-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3892, + "slug": "sm-a405fn-ds-galaxy-a40-2019-global-dual-sim-td-lte-64gb", + "name": "SM-A405FN/DS Galaxy A40 2019 Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 186, + "slug": "exynos-7885", + "name": "Exynos 7885", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7885" + }, + "release_date": "2019-04-09", + "msrp_usd": 249, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.87, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 3100, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 0.0, + "camera": 6.3, + "battery": 1.5, + "display": 48.9, + "value": 57.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.659762", + "updated_at": "2026-06-19T00:43:44.659762" +} diff --git a/site/public/v1/smartphones/sm-a405fn-ds-galaxy-a40-2019-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-a405fn-ds-galaxy-a40-2019-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..f4684065862 --- /dev/null +++ b/site/public/v1/smartphones/sm-a405fn-ds-galaxy-a40-2019-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 0.0, + "camera": 6.3, + "battery": 1.5, + "display": 48.9, + "value": 57.1 +} diff --git a/site/public/v1/smartphones/sm-a415f-dsn-galaxy-a41-2020-global-dual-sim-td-lte-sm-a415f-ds/index.json b/site/public/v1/smartphones/sm-a415f-dsn-galaxy-a41-2020-global-dual-sim-td-lte-sm-a415f-ds/index.json new file mode 100644 index 00000000000..a9cd5117242 --- /dev/null +++ b/site/public/v1/smartphones/sm-a415f-dsn-galaxy-a41-2020-global-dual-sim-td-lte-sm-a415f-ds/index.json @@ -0,0 +1,76 @@ +{ + "id": 4115, + "slug": "sm-a415f-dsn-galaxy-a41-2020-global-dual-sim-td-lte-sm-a415f-ds", + "name": "SM-A415F/DSN Galaxy A41 2020 Global Dual SIM TD-LTE / SM-A415F/DS", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 52, + "slug": "helio-p65", + "name": "Helio P65", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-p65" + }, + "release_date": "2020-05-16", + "msrp_usd": 299, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 431 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3500, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 152.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": 0.0, + "camera": 16.5, + "battery": 7.5, + "display": 48.1, + "value": 59.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.689781", + "updated_at": "2026-06-19T00:43:44.689781" +} diff --git a/site/public/v1/smartphones/sm-a415f-dsn-galaxy-a41-2020-global-dual-sim-td-lte-sm-a415f-ds/score/index.json b/site/public/v1/smartphones/sm-a415f-dsn-galaxy-a41-2020-global-dual-sim-td-lte-sm-a415f-ds/score/index.json new file mode 100644 index 00000000000..ecea3c06096 --- /dev/null +++ b/site/public/v1/smartphones/sm-a415f-dsn-galaxy-a41-2020-global-dual-sim-td-lte-sm-a415f-ds/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": 0.0, + "camera": 16.5, + "battery": 7.5, + "display": 48.1, + "value": 59.0 +} diff --git a/site/public/v1/smartphones/sm-a505f-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a505f-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..04e0782a777 --- /dev/null +++ b/site/public/v1/smartphones/sm-a505f-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3893, + "slug": "sm-a505f-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb", + "name": "SM-A505F/DS Galaxy A50 2019 Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 187, + "slug": "exynos-9610", + "name": "Exynos 9610", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9610" + }, + "release_date": "2019-03-18", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 17.3, + "camera": 9.1, + "battery": 15.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.660763", + "updated_at": "2026-06-19T00:43:44.660763" +} diff --git a/site/public/v1/smartphones/sm-a505f-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a505f-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..32e5e475913 --- /dev/null +++ b/site/public/v1/smartphones/sm-a505f-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 17.3, + "camera": 9.1, + "battery": 15.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a505f-galaxy-a50-2019-global-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a505f-galaxy-a50-2019-global-td-lte-128gb/index.json new file mode 100644 index 00000000000..a5d56727484 --- /dev/null +++ b/site/public/v1/smartphones/sm-a505f-galaxy-a50-2019-global-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3894, + "slug": "sm-a505f-galaxy-a50-2019-global-td-lte-128gb", + "name": "SM-A505F Galaxy A50 2019 Global TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 187, + "slug": "exynos-9610", + "name": "Exynos 9610", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9610" + }, + "release_date": "2019-03-18", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 17.3, + "camera": 9.1, + "battery": 15.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.660763", + "updated_at": "2026-06-19T00:43:44.660763" +} diff --git a/site/public/v1/smartphones/sm-a505f-galaxy-a50-2019-global-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a505f-galaxy-a50-2019-global-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..32e5e475913 --- /dev/null +++ b/site/public/v1/smartphones/sm-a505f-galaxy-a50-2019-global-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 17.3, + "camera": 9.1, + "battery": 15.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a505fm-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a505fm-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..144391f7078 --- /dev/null +++ b/site/public/v1/smartphones/sm-a505fm-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3895, + "slug": "sm-a505fm-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb", + "name": "SM-A505FM/DS Galaxy A50 2019 Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 187, + "slug": "exynos-9610", + "name": "Exynos 9610", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9610" + }, + "release_date": "2019-03-18", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 18.8, + "camera": 9.1, + "battery": 15.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.660763", + "updated_at": "2026-06-19T00:43:44.660763" +} diff --git a/site/public/v1/smartphones/sm-a505fm-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a505fm-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..33d6a3811b5 --- /dev/null +++ b/site/public/v1/smartphones/sm-a505fm-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 18.8, + "camera": 9.1, + "battery": 15.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a505fm-ds-galaxy-a50-2019-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-a505fm-ds-galaxy-a50-2019-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..22df5df6ee4 --- /dev/null +++ b/site/public/v1/smartphones/sm-a505fm-ds-galaxy-a50-2019-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3896, + "slug": "sm-a505fm-ds-galaxy-a50-2019-global-dual-sim-td-lte-64gb", + "name": "SM-A505FM/DS Galaxy A50 2019 Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 187, + "slug": "exynos-9610", + "name": "Exynos 9610", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9610" + }, + "release_date": "2019-03-18", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 17.3, + "camera": 9.1, + "battery": 15.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.660763", + "updated_at": "2026-06-19T00:43:44.660763" +} diff --git a/site/public/v1/smartphones/sm-a505fm-ds-galaxy-a50-2019-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-a505fm-ds-galaxy-a50-2019-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..32e5e475913 --- /dev/null +++ b/site/public/v1/smartphones/sm-a505fm-ds-galaxy-a50-2019-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 17.3, + "camera": 9.1, + "battery": 15.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a505fn-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a505fn-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..96c4ddf9d95 --- /dev/null +++ b/site/public/v1/smartphones/sm-a505fn-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3897, + "slug": "sm-a505fn-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb", + "name": "SM-A505FN/DS Galaxy A50 2019 Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 187, + "slug": "exynos-9610", + "name": "Exynos 9610", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9610" + }, + "release_date": "2019-03-18", + "msrp_usd": 349, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 17.3, + "camera": 9.1, + "battery": 15.0, + "display": 45.4, + "value": 59.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.660763", + "updated_at": "2026-06-19T00:43:44.660763" +} diff --git a/site/public/v1/smartphones/sm-a505fn-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a505fn-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..1343b933c95 --- /dev/null +++ b/site/public/v1/smartphones/sm-a505fn-ds-galaxy-a50-2019-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 17.3, + "camera": 9.1, + "battery": 15.0, + "display": 45.4, + "value": 59.0 +} diff --git a/site/public/v1/smartphones/sm-a505g-ds-galaxy-a50-2019-dual-sim-td-lte-latam-64gb/index.json b/site/public/v1/smartphones/sm-a505g-ds-galaxy-a50-2019-dual-sim-td-lte-latam-64gb/index.json new file mode 100644 index 00000000000..b2f4e045c20 --- /dev/null +++ b/site/public/v1/smartphones/sm-a505g-ds-galaxy-a50-2019-dual-sim-td-lte-latam-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3898, + "slug": "sm-a505g-ds-galaxy-a50-2019-dual-sim-td-lte-latam-64gb", + "name": "SM-A505G/DS Galaxy A50 2019 Dual SIM TD-LTE LATAM 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 187, + "slug": "exynos-9610", + "name": "Exynos 9610", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9610" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 17.3, + "camera": 9.1, + "battery": 15.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.660763", + "updated_at": "2026-06-19T00:43:44.660763" +} diff --git a/site/public/v1/smartphones/sm-a505g-ds-galaxy-a50-2019-dual-sim-td-lte-latam-64gb/score/index.json b/site/public/v1/smartphones/sm-a505g-ds-galaxy-a50-2019-dual-sim-td-lte-latam-64gb/score/index.json new file mode 100644 index 00000000000..32e5e475913 --- /dev/null +++ b/site/public/v1/smartphones/sm-a505g-ds-galaxy-a50-2019-dual-sim-td-lte-latam-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 17.3, + "camera": 9.1, + "battery": 15.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a505g-galaxy-a50-2019-td-lte-latam-128gb/index.json b/site/public/v1/smartphones/sm-a505g-galaxy-a50-2019-td-lte-latam-128gb/index.json new file mode 100644 index 00000000000..ebc0cda815d --- /dev/null +++ b/site/public/v1/smartphones/sm-a505g-galaxy-a50-2019-td-lte-latam-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3899, + "slug": "sm-a505g-galaxy-a50-2019-td-lte-latam-128gb", + "name": "SM-A505G Galaxy A50 2019 TD-LTE LATAM 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 187, + "slug": "exynos-9610", + "name": "Exynos 9610", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9610" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 17.3, + "camera": 9.1, + "battery": 15.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.660763", + "updated_at": "2026-06-19T00:43:44.660763" +} diff --git a/site/public/v1/smartphones/sm-a505g-galaxy-a50-2019-td-lte-latam-128gb/score/index.json b/site/public/v1/smartphones/sm-a505g-galaxy-a50-2019-td-lte-latam-128gb/score/index.json new file mode 100644 index 00000000000..32e5e475913 --- /dev/null +++ b/site/public/v1/smartphones/sm-a505g-galaxy-a50-2019-td-lte-latam-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 17.3, + "camera": 9.1, + "battery": 15.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a505g-galaxy-a50-2019-td-lte-latam-64gb/index.json b/site/public/v1/smartphones/sm-a505g-galaxy-a50-2019-td-lte-latam-64gb/index.json new file mode 100644 index 00000000000..b3421dda485 --- /dev/null +++ b/site/public/v1/smartphones/sm-a505g-galaxy-a50-2019-td-lte-latam-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3900, + "slug": "sm-a505g-galaxy-a50-2019-td-lte-latam-64gb", + "name": "SM-A505G Galaxy A50 2019 TD-LTE LATAM 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 187, + "slug": "exynos-9610", + "name": "Exynos 9610", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9610" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 17.3, + "camera": 9.1, + "battery": 15.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.661763", + "updated_at": "2026-06-19T00:43:44.661763" +} diff --git a/site/public/v1/smartphones/sm-a505g-galaxy-a50-2019-td-lte-latam-64gb/score/index.json b/site/public/v1/smartphones/sm-a505g-galaxy-a50-2019-td-lte-latam-64gb/score/index.json new file mode 100644 index 00000000000..32e5e475913 --- /dev/null +++ b/site/public/v1/smartphones/sm-a505g-galaxy-a50-2019-td-lte-latam-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 17.3, + "camera": 9.1, + "battery": 15.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a505gn-ds-galaxy-a50-2019-dual-sim-td-lte-apac-128gb-sm-a505yn-ds/index.json b/site/public/v1/smartphones/sm-a505gn-ds-galaxy-a50-2019-dual-sim-td-lte-apac-128gb-sm-a505yn-ds/index.json new file mode 100644 index 00000000000..718849e2c46 --- /dev/null +++ b/site/public/v1/smartphones/sm-a505gn-ds-galaxy-a50-2019-dual-sim-td-lte-apac-128gb-sm-a505yn-ds/index.json @@ -0,0 +1,76 @@ +{ + "id": 3901, + "slug": "sm-a505gn-ds-galaxy-a50-2019-dual-sim-td-lte-apac-128gb-sm-a505yn-ds", + "name": "SM-A505GN/DS Galaxy A50 2019 Dual SIM TD-LTE APAC 128GB / SM-A505YN/DS", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 187, + "slug": "exynos-9610", + "name": "Exynos 9610", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9610" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 18.8, + "camera": 9.1, + "battery": 15.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.661763", + "updated_at": "2026-06-19T00:43:44.661763" +} diff --git a/site/public/v1/smartphones/sm-a505gn-ds-galaxy-a50-2019-dual-sim-td-lte-apac-128gb-sm-a505yn-ds/score/index.json b/site/public/v1/smartphones/sm-a505gn-ds-galaxy-a50-2019-dual-sim-td-lte-apac-128gb-sm-a505yn-ds/score/index.json new file mode 100644 index 00000000000..33d6a3811b5 --- /dev/null +++ b/site/public/v1/smartphones/sm-a505gn-ds-galaxy-a50-2019-dual-sim-td-lte-apac-128gb-sm-a505yn-ds/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 18.8, + "camera": 9.1, + "battery": 15.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a505n-galaxy-a50-2019-td-lte-kr-64gb/index.json b/site/public/v1/smartphones/sm-a505n-galaxy-a50-2019-td-lte-kr-64gb/index.json new file mode 100644 index 00000000000..ad6e86d0ced --- /dev/null +++ b/site/public/v1/smartphones/sm-a505n-galaxy-a50-2019-td-lte-kr-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3902, + "slug": "sm-a505n-galaxy-a50-2019-td-lte-kr-64gb", + "name": "SM-A505N Galaxy A50 2019 TD-LTE KR 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 187, + "slug": "exynos-9610", + "name": "Exynos 9610", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9610" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 17.3, + "camera": 9.1, + "battery": 15.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.661763", + "updated_at": "2026-06-19T00:43:44.661763" +} diff --git a/site/public/v1/smartphones/sm-a505n-galaxy-a50-2019-td-lte-kr-64gb/score/index.json b/site/public/v1/smartphones/sm-a505n-galaxy-a50-2019-td-lte-kr-64gb/score/index.json new file mode 100644 index 00000000000..32e5e475913 --- /dev/null +++ b/site/public/v1/smartphones/sm-a505n-galaxy-a50-2019-td-lte-kr-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 17.3, + "camera": 9.1, + "battery": 15.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a505u-galaxy-a50-2019-lte-a-us-64gb-sm-a505v/index.json b/site/public/v1/smartphones/sm-a505u-galaxy-a50-2019-lte-a-us-64gb-sm-a505v/index.json new file mode 100644 index 00000000000..a02b266c05d --- /dev/null +++ b/site/public/v1/smartphones/sm-a505u-galaxy-a50-2019-lte-a-us-64gb-sm-a505v/index.json @@ -0,0 +1,76 @@ +{ + "id": 3903, + "slug": "sm-a505u-galaxy-a50-2019-lte-a-us-64gb-sm-a505v", + "name": "SM-A505U Galaxy A50 2019 LTE-A US 64GB / SM-A505V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 187, + "slug": "exynos-9610", + "name": "Exynos 9610", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9610" + }, + "release_date": "2019-06-13", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 17.3, + "camera": 9.1, + "battery": 15.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.661763", + "updated_at": "2026-06-19T00:43:44.661763" +} diff --git a/site/public/v1/smartphones/sm-a505u-galaxy-a50-2019-lte-a-us-64gb-sm-a505v/score/index.json b/site/public/v1/smartphones/sm-a505u-galaxy-a50-2019-lte-a-us-64gb-sm-a505v/score/index.json new file mode 100644 index 00000000000..32e5e475913 --- /dev/null +++ b/site/public/v1/smartphones/sm-a505u-galaxy-a50-2019-lte-a-us-64gb-sm-a505v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 17.3, + "camera": 9.1, + "battery": 15.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a505u-galaxy-a50-2019-td-lte-us-64gb-sm-a505p/index.json b/site/public/v1/smartphones/sm-a505u-galaxy-a50-2019-td-lte-us-64gb-sm-a505p/index.json new file mode 100644 index 00000000000..de6fdeaa577 --- /dev/null +++ b/site/public/v1/smartphones/sm-a505u-galaxy-a50-2019-td-lte-us-64gb-sm-a505p/index.json @@ -0,0 +1,76 @@ +{ + "id": 3904, + "slug": "sm-a505u-galaxy-a50-2019-td-lte-us-64gb-sm-a505p", + "name": "SM-A505U Galaxy A50 2019 TD-LTE US 64GB / SM-A505P", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 187, + "slug": "exynos-9610", + "name": "Exynos 9610", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9610" + }, + "release_date": "2019-06-13", + "msrp_usd": 350, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 17.3, + "camera": 9.1, + "battery": 15.0, + "display": 45.4, + "value": 59.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.661763", + "updated_at": "2026-06-19T00:43:44.661763" +} diff --git a/site/public/v1/smartphones/sm-a505u-galaxy-a50-2019-td-lte-us-64gb-sm-a505p/score/index.json b/site/public/v1/smartphones/sm-a505u-galaxy-a50-2019-td-lte-us-64gb-sm-a505p/score/index.json new file mode 100644 index 00000000000..1343b933c95 --- /dev/null +++ b/site/public/v1/smartphones/sm-a505u-galaxy-a50-2019-td-lte-us-64gb-sm-a505p/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 17.3, + "camera": 9.1, + "battery": 15.0, + "display": 45.4, + "value": 59.0 +} diff --git a/site/public/v1/smartphones/sm-a505u-galaxy-a50-2019-td-lte-us-64gb-sm-a505r4/index.json b/site/public/v1/smartphones/sm-a505u-galaxy-a50-2019-td-lte-us-64gb-sm-a505r4/index.json new file mode 100644 index 00000000000..c5d2940aa01 --- /dev/null +++ b/site/public/v1/smartphones/sm-a505u-galaxy-a50-2019-td-lte-us-64gb-sm-a505r4/index.json @@ -0,0 +1,76 @@ +{ + "id": 3905, + "slug": "sm-a505u-galaxy-a50-2019-td-lte-us-64gb-sm-a505r4", + "name": "SM-A505U Galaxy A50 2019 TD-LTE US 64GB / SM-A505R4", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 187, + "slug": "exynos-9610", + "name": "Exynos 9610", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9610" + }, + "release_date": "2019-06-13", + "msrp_usd": 350, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 17.3, + "camera": 9.1, + "battery": 15.0, + "display": 45.4, + "value": 59.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.661763", + "updated_at": "2026-06-19T00:43:44.661763" +} diff --git a/site/public/v1/smartphones/sm-a505u-galaxy-a50-2019-td-lte-us-64gb-sm-a505r4/score/index.json b/site/public/v1/smartphones/sm-a505u-galaxy-a50-2019-td-lte-us-64gb-sm-a505r4/score/index.json new file mode 100644 index 00000000000..1343b933c95 --- /dev/null +++ b/site/public/v1/smartphones/sm-a505u-galaxy-a50-2019-td-lte-us-64gb-sm-a505r4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 17.3, + "camera": 9.1, + "battery": 15.0, + "display": 45.4, + "value": 59.0 +} diff --git a/site/public/v1/smartphones/sm-a505u1-galaxy-a50-2019-td-lte-us-64gb/index.json b/site/public/v1/smartphones/sm-a505u1-galaxy-a50-2019-td-lte-us-64gb/index.json new file mode 100644 index 00000000000..6adae09c54b --- /dev/null +++ b/site/public/v1/smartphones/sm-a505u1-galaxy-a50-2019-td-lte-us-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3906, + "slug": "sm-a505u1-galaxy-a50-2019-td-lte-us-64gb", + "name": "SM-A505U1 Galaxy A50 2019 TD-LTE US 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 187, + "slug": "exynos-9610", + "name": "Exynos 9610", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9610" + }, + "release_date": "2019-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 17.3, + "camera": 9.1, + "battery": 15.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.661763", + "updated_at": "2026-06-19T00:43:44.661763" +} diff --git a/site/public/v1/smartphones/sm-a505u1-galaxy-a50-2019-td-lte-us-64gb/score/index.json b/site/public/v1/smartphones/sm-a505u1-galaxy-a50-2019-td-lte-us-64gb/score/index.json new file mode 100644 index 00000000000..32e5e475913 --- /dev/null +++ b/site/public/v1/smartphones/sm-a505u1-galaxy-a50-2019-td-lte-us-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 17.3, + "camera": 9.1, + "battery": 15.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a505w-galaxy-a50-2019-td-lte-ca-64gb/index.json b/site/public/v1/smartphones/sm-a505w-galaxy-a50-2019-td-lte-ca-64gb/index.json new file mode 100644 index 00000000000..5a2882a5e96 --- /dev/null +++ b/site/public/v1/smartphones/sm-a505w-galaxy-a50-2019-td-lte-ca-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3907, + "slug": "sm-a505w-galaxy-a50-2019-td-lte-ca-64gb", + "name": "SM-A505W Galaxy A50 2019 TD-LTE CA 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 187, + "slug": "exynos-9610", + "name": "Exynos 9610", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9610" + }, + "release_date": "2019-06-07", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 17.3, + "camera": 9.1, + "battery": 15.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.661763", + "updated_at": "2026-06-19T00:43:44.661763" +} diff --git a/site/public/v1/smartphones/sm-a505w-galaxy-a50-2019-td-lte-ca-64gb/score/index.json b/site/public/v1/smartphones/sm-a505w-galaxy-a50-2019-td-lte-ca-64gb/score/index.json new file mode 100644 index 00000000000..32e5e475913 --- /dev/null +++ b/site/public/v1/smartphones/sm-a505w-galaxy-a50-2019-td-lte-ca-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 17.3, + "camera": 9.1, + "battery": 15.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a505yn-galaxy-a50-2019-td-lte-au-64gb-sm-a505gn/index.json b/site/public/v1/smartphones/sm-a505yn-galaxy-a50-2019-td-lte-au-64gb-sm-a505gn/index.json new file mode 100644 index 00000000000..fd2a487a980 --- /dev/null +++ b/site/public/v1/smartphones/sm-a505yn-galaxy-a50-2019-td-lte-au-64gb-sm-a505gn/index.json @@ -0,0 +1,76 @@ +{ + "id": 3908, + "slug": "sm-a505yn-galaxy-a50-2019-td-lte-au-64gb-sm-a505gn", + "name": "SM-A505YN Galaxy A50 2019 TD-LTE AU 64GB / SM-A505GN", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 187, + "slug": "exynos-9610", + "name": "Exynos 9610", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9610" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 17.3, + "camera": 9.1, + "battery": 15.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.662763", + "updated_at": "2026-06-19T00:43:44.662763" +} diff --git a/site/public/v1/smartphones/sm-a505yn-galaxy-a50-2019-td-lte-au-64gb-sm-a505gn/score/index.json b/site/public/v1/smartphones/sm-a505yn-galaxy-a50-2019-td-lte-au-64gb-sm-a505gn/score/index.json new file mode 100644 index 00000000000..32e5e475913 --- /dev/null +++ b/site/public/v1/smartphones/sm-a505yn-galaxy-a50-2019-td-lte-au-64gb-sm-a505gn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 17.3, + "camera": 9.1, + "battery": 15.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a5070-galaxy-a50s-2019-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/sm-a5070-galaxy-a50s-2019-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..e4e0b561632 --- /dev/null +++ b/site/public/v1/smartphones/sm-a5070-galaxy-a50s-2019-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3909, + "slug": "sm-a5070-galaxy-a50s-2019-dual-sim-td-lte-cn-128gb", + "name": "SM-A5070 Galaxy A50s 2019 Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 187, + "slug": "exynos-9610", + "name": "Exynos 9610", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9610" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 18.8, + "camera": 16.5, + "battery": 15.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.662763", + "updated_at": "2026-06-19T00:43:44.662763" +} diff --git a/site/public/v1/smartphones/sm-a5070-galaxy-a50s-2019-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/sm-a5070-galaxy-a50s-2019-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..2177c751277 --- /dev/null +++ b/site/public/v1/smartphones/sm-a5070-galaxy-a50s-2019-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 18.8, + "camera": 16.5, + "battery": 15.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a507fn-ds-galaxy-a50s-2019-premium-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a507fn-ds-galaxy-a50s-2019-premium-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..c7778b5ae9e --- /dev/null +++ b/site/public/v1/smartphones/sm-a507fn-ds-galaxy-a50s-2019-premium-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3910, + "slug": "sm-a507fn-ds-galaxy-a50s-2019-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A507FN/DS Galaxy A50s 2019 Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 187, + "slug": "exynos-9610", + "name": "Exynos 9610", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9610" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 18.8, + "camera": 16.5, + "battery": 15.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.662763", + "updated_at": "2026-06-19T00:43:44.662763" +} diff --git a/site/public/v1/smartphones/sm-a507fn-ds-galaxy-a50s-2019-premium-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a507fn-ds-galaxy-a50s-2019-premium-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..2177c751277 --- /dev/null +++ b/site/public/v1/smartphones/sm-a507fn-ds-galaxy-a50s-2019-premium-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 18.8, + "camera": 16.5, + "battery": 15.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a507fn-ds-galaxy-a50s-2019-standard-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a507fn-ds-galaxy-a50s-2019-standard-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..db8b958005e --- /dev/null +++ b/site/public/v1/smartphones/sm-a507fn-ds-galaxy-a50s-2019-standard-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3911, + "slug": "sm-a507fn-ds-galaxy-a50s-2019-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A507FN/DS Galaxy A50s 2019 Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 187, + "slug": "exynos-9610", + "name": "Exynos 9610", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9610" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 17.3, + "camera": 16.5, + "battery": 15.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.662763", + "updated_at": "2026-06-19T00:43:44.662763" +} diff --git a/site/public/v1/smartphones/sm-a507fn-ds-galaxy-a50s-2019-standard-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a507fn-ds-galaxy-a50s-2019-standard-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..6e71a330698 --- /dev/null +++ b/site/public/v1/smartphones/sm-a507fn-ds-galaxy-a50s-2019-standard-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 17.3, + "camera": 16.5, + "battery": 15.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a515f-ds-galaxy-a51-2019-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a515f-ds-galaxy-a51-2019-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..117315d4364 --- /dev/null +++ b/site/public/v1/smartphones/sm-a515f-ds-galaxy-a51-2019-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4116, + "slug": "sm-a515f-ds-galaxy-a51-2019-global-dual-sim-td-lte-128gb", + "name": "SM-A515F/DS Galaxy A51 2019 Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2020-01-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.8, + "performance": 17.7, + "camera": 16.5, + "battery": 15.0, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.689781", + "updated_at": "2026-06-19T00:43:44.689781" +} diff --git a/site/public/v1/smartphones/sm-a515f-ds-galaxy-a51-2019-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a515f-ds-galaxy-a51-2019-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..98fc6f1ea6a --- /dev/null +++ b/site/public/v1/smartphones/sm-a515f-ds-galaxy-a51-2019-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.8, + "performance": 17.7, + "camera": 16.5, + "battery": 15.0, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a515f-dsm-galaxy-a51-2019-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a515f-dsm-galaxy-a51-2019-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..e15bc0a211c --- /dev/null +++ b/site/public/v1/smartphones/sm-a515f-dsm-galaxy-a51-2019-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4117, + "slug": "sm-a515f-dsm-galaxy-a51-2019-global-dual-sim-td-lte-128gb", + "name": "SM-A515F/DSM Galaxy A51 2019 Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2020-01-16", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 19.2, + "camera": 16.5, + "battery": 15.0, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.689781", + "updated_at": "2026-06-19T00:43:44.689781" +} diff --git a/site/public/v1/smartphones/sm-a515f-dsm-galaxy-a51-2019-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a515f-dsm-galaxy-a51-2019-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..68365c26359 --- /dev/null +++ b/site/public/v1/smartphones/sm-a515f-dsm-galaxy-a51-2019-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 19.2, + "camera": 16.5, + "battery": 15.0, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a515f-dsm-galaxy-a51-2019-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-a515f-dsm-galaxy-a51-2019-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..d170285cf9f --- /dev/null +++ b/site/public/v1/smartphones/sm-a515f-dsm-galaxy-a51-2019-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4118, + "slug": "sm-a515f-dsm-galaxy-a51-2019-global-dual-sim-td-lte-64gb", + "name": "SM-A515F/DSM Galaxy A51 2019 Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2020-01-16", + "msrp_usd": 284, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.8, + "performance": 17.7, + "camera": 16.5, + "battery": 15.0, + "display": 45.8, + "value": 61.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.689781", + "updated_at": "2026-06-19T00:43:44.689781" +} diff --git a/site/public/v1/smartphones/sm-a515f-dsm-galaxy-a51-2019-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-a515f-dsm-galaxy-a51-2019-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..b0f5f8c15c5 --- /dev/null +++ b/site/public/v1/smartphones/sm-a515f-dsm-galaxy-a51-2019-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.8, + "performance": 17.7, + "camera": 16.5, + "battery": 15.0, + "display": 45.8, + "value": 61.9 +} diff --git a/site/public/v1/smartphones/sm-a515f-dsn-galaxy-a51-2019-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a515f-dsn-galaxy-a51-2019-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..42237f8cbc2 --- /dev/null +++ b/site/public/v1/smartphones/sm-a515f-dsn-galaxy-a51-2019-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4119, + "slug": "sm-a515f-dsn-galaxy-a51-2019-global-dual-sim-td-lte-128gb", + "name": "SM-A515F/DSN Galaxy A51 2019 Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2020-01-29", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 19.2, + "camera": 16.5, + "battery": 15.0, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.690780", + "updated_at": "2026-06-19T00:43:44.690780" +} diff --git a/site/public/v1/smartphones/sm-a515f-dsn-galaxy-a51-2019-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a515f-dsn-galaxy-a51-2019-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..68365c26359 --- /dev/null +++ b/site/public/v1/smartphones/sm-a515f-dsn-galaxy-a51-2019-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 19.2, + "camera": 16.5, + "battery": 15.0, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a515f-dst-galaxy-a51-2019-dual-sim-td-lte-latam-128gb/index.json b/site/public/v1/smartphones/sm-a515f-dst-galaxy-a51-2019-dual-sim-td-lte-latam-128gb/index.json new file mode 100644 index 00000000000..d80318388ca --- /dev/null +++ b/site/public/v1/smartphones/sm-a515f-dst-galaxy-a51-2019-dual-sim-td-lte-latam-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4120, + "slug": "sm-a515f-dst-galaxy-a51-2019-dual-sim-td-lte-latam-128gb", + "name": "SM-A515F/DST Galaxy A51 2019 Dual SIM TD-LTE LATAM 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2020-01-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.8, + "performance": 17.7, + "camera": 16.5, + "battery": 15.0, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.690780", + "updated_at": "2026-06-19T00:43:44.690780" +} diff --git a/site/public/v1/smartphones/sm-a515f-dst-galaxy-a51-2019-dual-sim-td-lte-latam-128gb/score/index.json b/site/public/v1/smartphones/sm-a515f-dst-galaxy-a51-2019-dual-sim-td-lte-latam-128gb/score/index.json new file mode 100644 index 00000000000..98fc6f1ea6a --- /dev/null +++ b/site/public/v1/smartphones/sm-a515f-dst-galaxy-a51-2019-dual-sim-td-lte-latam-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.8, + "performance": 17.7, + "camera": 16.5, + "battery": 15.0, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a515f-galaxy-a51-2019-global-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a515f-galaxy-a51-2019-global-td-lte-128gb/index.json new file mode 100644 index 00000000000..b42d6e1398f --- /dev/null +++ b/site/public/v1/smartphones/sm-a515f-galaxy-a51-2019-global-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4121, + "slug": "sm-a515f-galaxy-a51-2019-global-td-lte-128gb", + "name": "SM-A515F Galaxy A51 2019 Global TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2020-01-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.8, + "performance": 17.7, + "camera": 16.5, + "battery": 15.0, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.690780", + "updated_at": "2026-06-19T00:43:44.690780" +} diff --git a/site/public/v1/smartphones/sm-a515f-galaxy-a51-2019-global-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a515f-galaxy-a51-2019-global-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..98fc6f1ea6a --- /dev/null +++ b/site/public/v1/smartphones/sm-a515f-galaxy-a51-2019-global-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.8, + "performance": 17.7, + "camera": 16.5, + "battery": 15.0, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a515f-n-galaxy-a51-2019-global-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a515f-n-galaxy-a51-2019-global-td-lte-128gb/index.json new file mode 100644 index 00000000000..881ff24b295 --- /dev/null +++ b/site/public/v1/smartphones/sm-a515f-n-galaxy-a51-2019-global-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4122, + "slug": "sm-a515f-n-galaxy-a51-2019-global-td-lte-128gb", + "name": "SM-A515F/N Galaxy A51 2019 Global TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2020-01-29", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 19.2, + "camera": 16.5, + "battery": 15.0, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.690780", + "updated_at": "2026-06-19T00:43:44.690780" +} diff --git a/site/public/v1/smartphones/sm-a515f-n-galaxy-a51-2019-global-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a515f-n-galaxy-a51-2019-global-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..68365c26359 --- /dev/null +++ b/site/public/v1/smartphones/sm-a515f-n-galaxy-a51-2019-global-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 19.2, + "camera": 16.5, + "battery": 15.0, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a515u-galaxy-a51-2019-lte-a-us-128gb-sm-a515v/index.json b/site/public/v1/smartphones/sm-a515u-galaxy-a51-2019-lte-a-us-128gb-sm-a515v/index.json new file mode 100644 index 00000000000..9b373ba2b90 --- /dev/null +++ b/site/public/v1/smartphones/sm-a515u-galaxy-a51-2019-lte-a-us-128gb-sm-a515v/index.json @@ -0,0 +1,76 @@ +{ + "id": 4123, + "slug": "sm-a515u-galaxy-a51-2019-lte-a-us-128gb-sm-a515v", + "name": "SM-A515U Galaxy A51 2019 LTE-A US 128GB / SM-A515V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2020-04-01", + "msrp_usd": 399, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.8, + "performance": 17.7, + "camera": 16.5, + "battery": 15.0, + "display": 45.8, + "value": 58.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.690780", + "updated_at": "2026-06-19T00:43:44.690780" +} diff --git a/site/public/v1/smartphones/sm-a515u-galaxy-a51-2019-lte-a-us-128gb-sm-a515v/score/index.json b/site/public/v1/smartphones/sm-a515u-galaxy-a51-2019-lte-a-us-128gb-sm-a515v/score/index.json new file mode 100644 index 00000000000..bb753e271c5 --- /dev/null +++ b/site/public/v1/smartphones/sm-a515u-galaxy-a51-2019-lte-a-us-128gb-sm-a515v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.8, + "performance": 17.7, + "camera": 16.5, + "battery": 15.0, + "display": 45.8, + "value": 58.1 +} diff --git a/site/public/v1/smartphones/sm-a515u-galaxy-a51-2019-td-lte-us-128gb-sm-a515a/index.json b/site/public/v1/smartphones/sm-a515u-galaxy-a51-2019-td-lte-us-128gb-sm-a515a/index.json new file mode 100644 index 00000000000..30cc14a4140 --- /dev/null +++ b/site/public/v1/smartphones/sm-a515u-galaxy-a51-2019-td-lte-us-128gb-sm-a515a/index.json @@ -0,0 +1,76 @@ +{ + "id": 4124, + "slug": "sm-a515u-galaxy-a51-2019-td-lte-us-128gb-sm-a515a", + "name": "SM-A515U Galaxy A51 2019 TD-LTE US 128GB / SM-A515A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2020-05-02", + "msrp_usd": 399, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.8, + "performance": 17.7, + "camera": 16.5, + "battery": 15.0, + "display": 45.8, + "value": 58.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.691779", + "updated_at": "2026-06-19T00:43:44.691779" +} diff --git a/site/public/v1/smartphones/sm-a515u-galaxy-a51-2019-td-lte-us-128gb-sm-a515a/score/index.json b/site/public/v1/smartphones/sm-a515u-galaxy-a51-2019-td-lte-us-128gb-sm-a515a/score/index.json new file mode 100644 index 00000000000..bb753e271c5 --- /dev/null +++ b/site/public/v1/smartphones/sm-a515u-galaxy-a51-2019-td-lte-us-128gb-sm-a515a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.8, + "performance": 17.7, + "camera": 16.5, + "battery": 15.0, + "display": 45.8, + "value": 58.1 +} diff --git a/site/public/v1/smartphones/sm-a515u-galaxy-a51-2019-td-lte-us-128gb-sm-a515p/index.json b/site/public/v1/smartphones/sm-a515u-galaxy-a51-2019-td-lte-us-128gb-sm-a515p/index.json new file mode 100644 index 00000000000..f4319519594 --- /dev/null +++ b/site/public/v1/smartphones/sm-a515u-galaxy-a51-2019-td-lte-us-128gb-sm-a515p/index.json @@ -0,0 +1,76 @@ +{ + "id": 4125, + "slug": "sm-a515u-galaxy-a51-2019-td-lte-us-128gb-sm-a515p", + "name": "SM-A515U Galaxy A51 2019 TD-LTE US 128GB / SM-A515P", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2020-04-11", + "msrp_usd": 399, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.8, + "performance": 17.7, + "camera": 16.5, + "battery": 15.0, + "display": 45.8, + "value": 58.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.691779", + "updated_at": "2026-06-19T00:43:44.691779" +} diff --git a/site/public/v1/smartphones/sm-a515u-galaxy-a51-2019-td-lte-us-128gb-sm-a515p/score/index.json b/site/public/v1/smartphones/sm-a515u-galaxy-a51-2019-td-lte-us-128gb-sm-a515p/score/index.json new file mode 100644 index 00000000000..bb753e271c5 --- /dev/null +++ b/site/public/v1/smartphones/sm-a515u-galaxy-a51-2019-td-lte-us-128gb-sm-a515p/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.8, + "performance": 17.7, + "camera": 16.5, + "battery": 15.0, + "display": 45.8, + "value": 58.1 +} diff --git a/site/public/v1/smartphones/sm-a515u1-galaxy-a51-2019-td-lte-us-128gb/index.json b/site/public/v1/smartphones/sm-a515u1-galaxy-a51-2019-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..2d5ec06db50 --- /dev/null +++ b/site/public/v1/smartphones/sm-a515u1-galaxy-a51-2019-td-lte-us-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4126, + "slug": "sm-a515u1-galaxy-a51-2019-td-lte-us-128gb", + "name": "SM-A515U1 Galaxy A51 2019 TD-LTE US 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2020-05-06", + "msrp_usd": 399, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.8, + "performance": 17.7, + "camera": 16.5, + "battery": 15.0, + "display": 45.8, + "value": 58.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.691779", + "updated_at": "2026-06-19T00:43:44.691779" +} diff --git a/site/public/v1/smartphones/sm-a515u1-galaxy-a51-2019-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/sm-a515u1-galaxy-a51-2019-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..bb753e271c5 --- /dev/null +++ b/site/public/v1/smartphones/sm-a515u1-galaxy-a51-2019-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.8, + "performance": 17.7, + "camera": 16.5, + "battery": 15.0, + "display": 45.8, + "value": 58.1 +} diff --git a/site/public/v1/smartphones/sm-a515w-galaxy-a51-2019-td-lte-ca-64gb/index.json b/site/public/v1/smartphones/sm-a515w-galaxy-a51-2019-td-lte-ca-64gb/index.json new file mode 100644 index 00000000000..bd589a0853d --- /dev/null +++ b/site/public/v1/smartphones/sm-a515w-galaxy-a51-2019-td-lte-ca-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4127, + "slug": "sm-a515w-galaxy-a51-2019-td-lte-ca-64gb", + "name": "SM-A515W Galaxy A51 2019 TD-LTE CA 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.8, + "performance": 17.7, + "camera": 16.5, + "battery": 15.0, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.691779", + "updated_at": "2026-06-19T00:43:44.691779" +} diff --git a/site/public/v1/smartphones/sm-a515w-galaxy-a51-2019-td-lte-ca-64gb/score/index.json b/site/public/v1/smartphones/sm-a515w-galaxy-a51-2019-td-lte-ca-64gb/score/index.json new file mode 100644 index 00000000000..98fc6f1ea6a --- /dev/null +++ b/site/public/v1/smartphones/sm-a515w-galaxy-a51-2019-td-lte-ca-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.8, + "performance": 17.7, + "camera": 16.5, + "battery": 15.0, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a5160-galaxy-a51-5g-dual-sim-td-lte-cn/index.json b/site/public/v1/smartphones/sm-a5160-galaxy-a51-5g-dual-sim-td-lte-cn/index.json new file mode 100644 index 00000000000..1be6779e883 --- /dev/null +++ b/site/public/v1/smartphones/sm-a5160-galaxy-a51-5g-dual-sim-td-lte-cn/index.json @@ -0,0 +1,76 @@ +{ + "id": 4128, + "slug": "sm-a5160-galaxy-a51-5g-dual-sim-td-lte-cn", + "name": "SM-A5160 Galaxy A51 5G Dual SIM TD-LTE CN", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 193, + "slug": "exynos-980", + "name": "Exynos 980", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali G76 MP5", + "url": "/v1/socs/exynos-980" + }, + "release_date": "2020-06-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 187.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 3.0, + "camera": 16.5, + "battery": 22.5, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.691779", + "updated_at": "2026-06-19T00:43:44.691779" +} diff --git a/site/public/v1/smartphones/sm-a5160-galaxy-a51-5g-dual-sim-td-lte-cn/score/index.json b/site/public/v1/smartphones/sm-a5160-galaxy-a51-5g-dual-sim-td-lte-cn/score/index.json new file mode 100644 index 00000000000..71605390e97 --- /dev/null +++ b/site/public/v1/smartphones/sm-a5160-galaxy-a51-5g-dual-sim-td-lte-cn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 3.0, + "camera": 16.5, + "battery": 22.5, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a516b-ds-galaxy-a51-5g-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a516b-ds-galaxy-a51-5g-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..325ad757969 --- /dev/null +++ b/site/public/v1/smartphones/sm-a516b-ds-galaxy-a51-5g-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4129, + "slug": "sm-a516b-ds-galaxy-a51-5g-global-dual-sim-td-lte-128gb", + "name": "SM-A516B/DS Galaxy A51 5G Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 193, + "slug": "exynos-980", + "name": "Exynos 980", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali G76 MP5", + "url": "/v1/socs/exynos-980" + }, + "release_date": "2020-06-18", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 187.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 1.5, + "camera": 16.5, + "battery": 22.5, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.691779", + "updated_at": "2026-06-19T00:43:44.691779" +} diff --git a/site/public/v1/smartphones/sm-a516b-ds-galaxy-a51-5g-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a516b-ds-galaxy-a51-5g-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..a6c5ef93ca6 --- /dev/null +++ b/site/public/v1/smartphones/sm-a516b-ds-galaxy-a51-5g-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 1.5, + "camera": 16.5, + "battery": 22.5, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a516b-galaxy-a51-5g-global-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a516b-galaxy-a51-5g-global-td-lte-128gb/index.json new file mode 100644 index 00000000000..20dd6ea5d96 --- /dev/null +++ b/site/public/v1/smartphones/sm-a516b-galaxy-a51-5g-global-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4130, + "slug": "sm-a516b-galaxy-a51-5g-global-td-lte-128gb", + "name": "SM-A516B Galaxy A51 5G Global TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 193, + "slug": "exynos-980", + "name": "Exynos 980", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali G76 MP5", + "url": "/v1/socs/exynos-980" + }, + "release_date": "2020-06-18", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 187.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 1.5, + "camera": 16.5, + "battery": 22.5, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.691779", + "updated_at": "2026-06-19T00:43:44.691779" +} diff --git a/site/public/v1/smartphones/sm-a516b-galaxy-a51-5g-global-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a516b-galaxy-a51-5g-global-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..a6c5ef93ca6 --- /dev/null +++ b/site/public/v1/smartphones/sm-a516b-galaxy-a51-5g-global-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 1.5, + "camera": 16.5, + "battery": 22.5, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a516d-galaxy-a51-5g-td-lte-jp-sc-54a/index.json b/site/public/v1/smartphones/sm-a516d-galaxy-a51-5g-td-lte-jp-sc-54a/index.json new file mode 100644 index 00000000000..069799bdcff --- /dev/null +++ b/site/public/v1/smartphones/sm-a516d-galaxy-a51-5g-td-lte-jp-sc-54a/index.json @@ -0,0 +1,76 @@ +{ + "id": 4131, + "slug": "sm-a516d-galaxy-a51-5g-td-lte-jp-sc-54a", + "name": "SM-A516D Galaxy A51 5G TD-LTE JP SC-54A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-11-06", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 1.5, + "camera": 16.5, + "battery": 22.5, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.691779", + "updated_at": "2026-06-19T00:43:44.691779" +} diff --git a/site/public/v1/smartphones/sm-a516d-galaxy-a51-5g-td-lte-jp-sc-54a/score/index.json b/site/public/v1/smartphones/sm-a516d-galaxy-a51-5g-td-lte-jp-sc-54a/score/index.json new file mode 100644 index 00000000000..a6c5ef93ca6 --- /dev/null +++ b/site/public/v1/smartphones/sm-a516d-galaxy-a51-5g-td-lte-jp-sc-54a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 1.5, + "camera": 16.5, + "battery": 22.5, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a516j-galaxy-a51-5g-td-lte-jp-scg07/index.json b/site/public/v1/smartphones/sm-a516j-galaxy-a51-5g-td-lte-jp-scg07/index.json new file mode 100644 index 00000000000..c4582076af2 --- /dev/null +++ b/site/public/v1/smartphones/sm-a516j-galaxy-a51-5g-td-lte-jp-scg07/index.json @@ -0,0 +1,76 @@ +{ + "id": 4132, + "slug": "sm-a516j-galaxy-a51-5g-td-lte-jp-scg07", + "name": "SM-A516J Galaxy A51 5G TD-LTE JP SCG07", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-11-07", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 1.5, + "camera": 16.5, + "battery": 22.5, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.691779", + "updated_at": "2026-06-19T00:43:44.691779" +} diff --git a/site/public/v1/smartphones/sm-a516j-galaxy-a51-5g-td-lte-jp-scg07/score/index.json b/site/public/v1/smartphones/sm-a516j-galaxy-a51-5g-td-lte-jp-scg07/score/index.json new file mode 100644 index 00000000000..a6c5ef93ca6 --- /dev/null +++ b/site/public/v1/smartphones/sm-a516j-galaxy-a51-5g-td-lte-jp-scg07/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 1.5, + "camera": 16.5, + "battery": 22.5, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a516n-galaxy-a51-5g-td-lte-kr/index.json b/site/public/v1/smartphones/sm-a516n-galaxy-a51-5g-td-lte-kr/index.json new file mode 100644 index 00000000000..5028fdaa779 --- /dev/null +++ b/site/public/v1/smartphones/sm-a516n-galaxy-a51-5g-td-lte-kr/index.json @@ -0,0 +1,76 @@ +{ + "id": 4133, + "slug": "sm-a516n-galaxy-a51-5g-td-lte-kr", + "name": "SM-A516N Galaxy A51 5G TD-LTE KR", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 193, + "slug": "exynos-980", + "name": "Exynos 980", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali G76 MP5", + "url": "/v1/socs/exynos-980" + }, + "release_date": "2020-05-07", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 187.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 1.5, + "camera": 16.5, + "battery": 22.5, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.692786", + "updated_at": "2026-06-19T00:43:44.692786" +} diff --git a/site/public/v1/smartphones/sm-a516n-galaxy-a51-5g-td-lte-kr/score/index.json b/site/public/v1/smartphones/sm-a516n-galaxy-a51-5g-td-lte-kr/score/index.json new file mode 100644 index 00000000000..a6c5ef93ca6 --- /dev/null +++ b/site/public/v1/smartphones/sm-a516n-galaxy-a51-5g-td-lte-kr/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 1.5, + "camera": 16.5, + "battery": 22.5, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516a/index.json b/site/public/v1/smartphones/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516a/index.json new file mode 100644 index 00000000000..48110dc3cb3 --- /dev/null +++ b/site/public/v1/smartphones/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516a/index.json @@ -0,0 +1,77 @@ +{ + "id": 4134, + "slug": "sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516a", + "name": "SM-A516U Galaxy A51 5G TD-LTE US / SM-A516A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 193, + "slug": "exynos-980", + "name": "Exynos 980", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali G76 MP5", + "url": "/v1/socs/exynos-980" + }, + "release_date": "2020-08-21", + "msrp_usd": 499, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 1.5, + "camera": 16.5, + "battery": 22.5, + "display": 28.3, + "value": 51.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.692786", + "updated_at": "2026-06-19T00:43:44.692786" +} diff --git a/site/public/v1/smartphones/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516a/score/index.json b/site/public/v1/smartphones/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516a/score/index.json new file mode 100644 index 00000000000..df987627b7c --- /dev/null +++ b/site/public/v1/smartphones/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 1.5, + "camera": 16.5, + "battery": 22.5, + "display": 28.3, + "value": 51.0 +} diff --git a/site/public/v1/smartphones/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516p/index.json b/site/public/v1/smartphones/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516p/index.json new file mode 100644 index 00000000000..c3c7fa47282 --- /dev/null +++ b/site/public/v1/smartphones/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516p/index.json @@ -0,0 +1,77 @@ +{ + "id": 4135, + "slug": "sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516p", + "name": "SM-A516U Galaxy A51 5G TD-LTE US / SM-A516P", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 193, + "slug": "exynos-980", + "name": "Exynos 980", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali G76 MP5", + "url": "/v1/socs/exynos-980" + }, + "release_date": "2020-08-21", + "msrp_usd": 500, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 1.5, + "camera": 16.5, + "battery": 22.5, + "display": 28.3, + "value": 50.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.692786", + "updated_at": "2026-06-19T00:43:44.692786" +} diff --git a/site/public/v1/smartphones/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516p/score/index.json b/site/public/v1/smartphones/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516p/score/index.json new file mode 100644 index 00000000000..6f690de57f2 --- /dev/null +++ b/site/public/v1/smartphones/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516p/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 1.5, + "camera": 16.5, + "battery": 22.5, + "display": 28.3, + "value": 50.9 +} diff --git a/site/public/v1/smartphones/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516r4/index.json b/site/public/v1/smartphones/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516r4/index.json new file mode 100644 index 00000000000..f118b3c4a4c --- /dev/null +++ b/site/public/v1/smartphones/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516r4/index.json @@ -0,0 +1,77 @@ +{ + "id": 4136, + "slug": "sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516r4", + "name": "SM-A516U Galaxy A51 5G TD-LTE US / SM-A516R4", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 193, + "slug": "exynos-980", + "name": "Exynos 980", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali G76 MP5", + "url": "/v1/socs/exynos-980" + }, + "release_date": "2020-08-01", + "msrp_usd": 500, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 1.5, + "camera": 16.5, + "battery": 22.5, + "display": 28.3, + "value": 50.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.692786", + "updated_at": "2026-06-19T00:43:44.692786" +} diff --git a/site/public/v1/smartphones/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516r4/score/index.json b/site/public/v1/smartphones/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516r4/score/index.json new file mode 100644 index 00000000000..6f690de57f2 --- /dev/null +++ b/site/public/v1/smartphones/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516r4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 1.5, + "camera": 16.5, + "battery": 22.5, + "display": 28.3, + "value": 50.9 +} diff --git a/site/public/v1/smartphones/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516t/index.json b/site/public/v1/smartphones/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516t/index.json new file mode 100644 index 00000000000..a60131ad741 --- /dev/null +++ b/site/public/v1/smartphones/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516t/index.json @@ -0,0 +1,77 @@ +{ + "id": 4137, + "slug": "sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516t", + "name": "SM-A516U Galaxy A51 5G TD-LTE US / SM-A516T", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 193, + "slug": "exynos-980", + "name": "Exynos 980", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali G76 MP5", + "url": "/v1/socs/exynos-980" + }, + "release_date": "2020-08-21", + "msrp_usd": 499, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 1.5, + "camera": 16.5, + "battery": 22.5, + "display": 28.3, + "value": 51.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.692786", + "updated_at": "2026-06-19T00:43:44.692786" +} diff --git a/site/public/v1/smartphones/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516t/score/index.json b/site/public/v1/smartphones/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516t/score/index.json new file mode 100644 index 00000000000..df987627b7c --- /dev/null +++ b/site/public/v1/smartphones/sm-a516u-galaxy-a51-5g-td-lte-us-sm-a516t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 1.5, + "camera": 16.5, + "battery": 22.5, + "display": 28.3, + "value": 51.0 +} diff --git a/site/public/v1/smartphones/sm-a516u-galaxy-a51-uw-5g-td-lte-us-sm-a516v/index.json b/site/public/v1/smartphones/sm-a516u-galaxy-a51-uw-5g-td-lte-us-sm-a516v/index.json new file mode 100644 index 00000000000..f2e2c19b146 --- /dev/null +++ b/site/public/v1/smartphones/sm-a516u-galaxy-a51-uw-5g-td-lte-us-sm-a516v/index.json @@ -0,0 +1,77 @@ +{ + "id": 4138, + "slug": "sm-a516u-galaxy-a51-uw-5g-td-lte-us-sm-a516v", + "name": "SM-A516U Galaxy A51 UW 5G TD-LTE US / SM-A516V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-08-14", + "msrp_usd": 550, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 187.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 1.5, + "camera": 16.5, + "battery": 22.5, + "display": 28.3, + "value": 49.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.692786", + "updated_at": "2026-06-19T00:43:44.692786" +} diff --git a/site/public/v1/smartphones/sm-a516u-galaxy-a51-uw-5g-td-lte-us-sm-a516v/score/index.json b/site/public/v1/smartphones/sm-a516u-galaxy-a51-uw-5g-td-lte-us-sm-a516v/score/index.json new file mode 100644 index 00000000000..cd5c2366ed8 --- /dev/null +++ b/site/public/v1/smartphones/sm-a516u-galaxy-a51-uw-5g-td-lte-us-sm-a516v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.2, + "performance": 1.5, + "camera": 16.5, + "battery": 22.5, + "display": 28.3, + "value": 49.0 +} diff --git a/site/public/v1/smartphones/sm-a530d-galaxy-feel-2-lte-jp-sc-02l-sgh-n767/index.json b/site/public/v1/smartphones/sm-a530d-galaxy-feel-2-lte-jp-sc-02l-sgh-n767/index.json new file mode 100644 index 00000000000..9e3782120f3 --- /dev/null +++ b/site/public/v1/smartphones/sm-a530d-galaxy-feel-2-lte-jp-sc-02l-sgh-n767/index.json @@ -0,0 +1,76 @@ +{ + "id": 3745, + "slug": "sm-a530d-galaxy-feel-2-lte-jp-sc-02l-sgh-n767", + "name": "SM-A530D Galaxy Feel 2 LTE JP SC-02L / SGH-N767", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 186, + "slug": "exynos-7885", + "name": "Exynos 7885", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7885" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.59, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 442 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 49.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.638430", + "updated_at": "2026-06-19T00:43:44.638430" +} diff --git a/site/public/v1/smartphones/sm-a530d-galaxy-feel-2-lte-jp-sc-02l-sgh-n767/score/index.json b/site/public/v1/smartphones/sm-a530d-galaxy-feel-2-lte-jp-sc-02l-sgh-n767/score/index.json new file mode 100644 index 00000000000..060c7dca397 --- /dev/null +++ b/site/public/v1/smartphones/sm-a530d-galaxy-feel-2-lte-jp-sc-02l-sgh-n767/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 49.2, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a5360-galaxy-a53-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-tw-128gb/index.json b/site/public/v1/smartphones/sm-a5360-galaxy-a53-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-tw-128gb/index.json new file mode 100644 index 00000000000..a09586cb6a7 --- /dev/null +++ b/site/public/v1/smartphones/sm-a5360-galaxy-a53-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-tw-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4553, + "slug": "sm-a5360-galaxy-a53-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-tw-128gb", + "name": "SM-A5360 Galaxy A53 5G 2022 Premium Edition Dual SIM TD-LTE CN HK TW 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 201, + "slug": "exynos-1280", + "name": "Samsung Exynos 1280", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G68 MP4", + "url": "/v1/socs/exynos-1280" + }, + "release_date": "2022-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.9, + "performance": 3.0, + "camera": 21.5, + "battery": 41.9, + "display": 53.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.747203", + "updated_at": "2026-06-19T00:43:44.747203" +} diff --git a/site/public/v1/smartphones/sm-a5360-galaxy-a53-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-tw-128gb/score/index.json b/site/public/v1/smartphones/sm-a5360-galaxy-a53-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-tw-128gb/score/index.json new file mode 100644 index 00000000000..b2e5eaf3c78 --- /dev/null +++ b/site/public/v1/smartphones/sm-a5360-galaxy-a53-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-tw-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.9, + "performance": 3.0, + "camera": 21.5, + "battery": 41.9, + "display": 53.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a5360-galaxy-a53-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-tw-256gb/index.json b/site/public/v1/smartphones/sm-a5360-galaxy-a53-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-tw-256gb/index.json new file mode 100644 index 00000000000..c9b0281337e --- /dev/null +++ b/site/public/v1/smartphones/sm-a5360-galaxy-a53-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-tw-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4554, + "slug": "sm-a5360-galaxy-a53-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-tw-256gb", + "name": "SM-A5360 Galaxy A53 5G 2022 Premium Edition Dual SIM TD-LTE CN HK TW 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 201, + "slug": "exynos-1280", + "name": "Samsung Exynos 1280", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G68 MP4", + "url": "/v1/socs/exynos-1280" + }, + "release_date": "2022-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.9, + "performance": 3.0, + "camera": 21.5, + "battery": 41.9, + "display": 53.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.747203", + "updated_at": "2026-06-19T00:43:44.747203" +} diff --git a/site/public/v1/smartphones/sm-a5360-galaxy-a53-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-tw-256gb/score/index.json b/site/public/v1/smartphones/sm-a5360-galaxy-a53-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-tw-256gb/score/index.json new file mode 100644 index 00000000000..b2e5eaf3c78 --- /dev/null +++ b/site/public/v1/smartphones/sm-a5360-galaxy-a53-5g-2022-premium-edition-dual-sim-td-lte-cn-hk-tw-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.9, + "performance": 3.0, + "camera": 21.5, + "battery": 41.9, + "display": 53.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a536b-ds-galaxy-a53-5g-2022-standard-edition-dual-sim-td-lte-eu-128gb/index.json b/site/public/v1/smartphones/sm-a536b-ds-galaxy-a53-5g-2022-standard-edition-dual-sim-td-lte-eu-128gb/index.json new file mode 100644 index 00000000000..0318cb6fc57 --- /dev/null +++ b/site/public/v1/smartphones/sm-a536b-ds-galaxy-a53-5g-2022-standard-edition-dual-sim-td-lte-eu-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4555, + "slug": "sm-a536b-ds-galaxy-a53-5g-2022-standard-edition-dual-sim-td-lte-eu-128gb", + "name": "SM-A536B/DS Galaxy A53 5G 2022 Standard Edition Dual SIM TD-LTE EU 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 201, + "slug": "exynos-1280", + "name": "Samsung Exynos 1280", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G68 MP4", + "url": "/v1/socs/exynos-1280" + }, + "release_date": "2022-04-02", + "msrp_usd": 399, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.5, + "performance": 1.5, + "camera": 21.5, + "battery": 41.9, + "display": 53.3, + "value": 61.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.747203", + "updated_at": "2026-06-19T00:43:44.747203" +} diff --git a/site/public/v1/smartphones/sm-a536b-ds-galaxy-a53-5g-2022-standard-edition-dual-sim-td-lte-eu-128gb/score/index.json b/site/public/v1/smartphones/sm-a536b-ds-galaxy-a53-5g-2022-standard-edition-dual-sim-td-lte-eu-128gb/score/index.json new file mode 100644 index 00000000000..de8cef35968 --- /dev/null +++ b/site/public/v1/smartphones/sm-a536b-ds-galaxy-a53-5g-2022-standard-edition-dual-sim-td-lte-eu-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.5, + "performance": 1.5, + "camera": 21.5, + "battery": 41.9, + "display": 53.3, + "value": 61.0 +} diff --git a/site/public/v1/smartphones/sm-a536d-galaxy-a53-5g-2022-standard-edition-td-lte-jp-128gb-sc-53c/index.json b/site/public/v1/smartphones/sm-a536d-galaxy-a53-5g-2022-standard-edition-td-lte-jp-128gb-sc-53c/index.json new file mode 100644 index 00000000000..c2556442582 --- /dev/null +++ b/site/public/v1/smartphones/sm-a536d-galaxy-a53-5g-2022-standard-edition-td-lte-jp-128gb-sc-53c/index.json @@ -0,0 +1,77 @@ +{ + "id": 4556, + "slug": "sm-a536d-galaxy-a53-5g-2022-standard-edition-td-lte-jp-128gb-sc-53c", + "name": "SM-A536D Galaxy A53 5G 2022 Standard Edition TD-LTE JP 128GB SC-53C", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 201, + "slug": "exynos-1280", + "name": "Samsung Exynos 1280", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G68 MP4", + "url": "/v1/socs/exynos-1280" + }, + "release_date": "2022-05-27", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.5, + "performance": 1.5, + "camera": 21.5, + "battery": 41.9, + "display": 53.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.748205", + "updated_at": "2026-06-19T00:43:44.748205" +} diff --git a/site/public/v1/smartphones/sm-a536d-galaxy-a53-5g-2022-standard-edition-td-lte-jp-128gb-sc-53c/score/index.json b/site/public/v1/smartphones/sm-a536d-galaxy-a53-5g-2022-standard-edition-td-lte-jp-128gb-sc-53c/score/index.json new file mode 100644 index 00000000000..e4020549893 --- /dev/null +++ b/site/public/v1/smartphones/sm-a536d-galaxy-a53-5g-2022-standard-edition-td-lte-jp-128gb-sc-53c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.5, + "performance": 1.5, + "camera": 21.5, + "battery": 41.9, + "display": 53.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a536e-ds-galaxy-a53-5g-2022-premium-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a536e-ds-galaxy-a53-5g-2022-premium-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..bbe5dc77b43 --- /dev/null +++ b/site/public/v1/smartphones/sm-a536e-ds-galaxy-a53-5g-2022-premium-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4557, + "slug": "sm-a536e-ds-galaxy-a53-5g-2022-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A536E/DS Galaxy A53 5G 2022 Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 201, + "slug": "exynos-1280", + "name": "Samsung Exynos 1280", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G68 MP4", + "url": "/v1/socs/exynos-1280" + }, + "release_date": "2022-04-02", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.9, + "performance": 3.0, + "camera": 21.5, + "battery": 41.9, + "display": 53.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.748205", + "updated_at": "2026-06-19T00:43:44.748205" +} diff --git a/site/public/v1/smartphones/sm-a536e-ds-galaxy-a53-5g-2022-premium-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a536e-ds-galaxy-a53-5g-2022-premium-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..b2e5eaf3c78 --- /dev/null +++ b/site/public/v1/smartphones/sm-a536e-ds-galaxy-a53-5g-2022-premium-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.9, + "performance": 3.0, + "camera": 21.5, + "battery": 41.9, + "display": 53.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a536e-ds-galaxy-a53-5g-2022-premium-edition-global-dual-sim-td-lte-256gb/index.json b/site/public/v1/smartphones/sm-a536e-ds-galaxy-a53-5g-2022-premium-edition-global-dual-sim-td-lte-256gb/index.json new file mode 100644 index 00000000000..a6a8ebabcdc --- /dev/null +++ b/site/public/v1/smartphones/sm-a536e-ds-galaxy-a53-5g-2022-premium-edition-global-dual-sim-td-lte-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4558, + "slug": "sm-a536e-ds-galaxy-a53-5g-2022-premium-edition-global-dual-sim-td-lte-256gb", + "name": "SM-A536E/DS Galaxy A53 5G 2022 Premium Edition Global Dual SIM TD-LTE 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 201, + "slug": "exynos-1280", + "name": "Samsung Exynos 1280", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G68 MP4", + "url": "/v1/socs/exynos-1280" + }, + "release_date": "2022-04-02", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.9, + "performance": 3.0, + "camera": 21.5, + "battery": 41.9, + "display": 53.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.748205", + "updated_at": "2026-06-19T00:43:44.748205" +} diff --git a/site/public/v1/smartphones/sm-a536e-ds-galaxy-a53-5g-2022-premium-edition-global-dual-sim-td-lte-256gb/score/index.json b/site/public/v1/smartphones/sm-a536e-ds-galaxy-a53-5g-2022-premium-edition-global-dual-sim-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..b2e5eaf3c78 --- /dev/null +++ b/site/public/v1/smartphones/sm-a536e-ds-galaxy-a53-5g-2022-premium-edition-global-dual-sim-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.9, + "performance": 3.0, + "camera": 21.5, + "battery": 41.9, + "display": 53.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a536e-ds-galaxy-a53-5g-2022-standard-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a536e-ds-galaxy-a53-5g-2022-standard-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..2a92268b44c --- /dev/null +++ b/site/public/v1/smartphones/sm-a536e-ds-galaxy-a53-5g-2022-standard-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4559, + "slug": "sm-a536e-ds-galaxy-a53-5g-2022-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A536E/DS Galaxy A53 5G 2022 Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 201, + "slug": "exynos-1280", + "name": "Samsung Exynos 1280", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G68 MP4", + "url": "/v1/socs/exynos-1280" + }, + "release_date": "2022-04-02", + "msrp_usd": 598, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.5, + "performance": 1.5, + "camera": 21.5, + "battery": 41.9, + "display": 53.3, + "value": 53.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.748205", + "updated_at": "2026-06-19T00:43:44.748205" +} diff --git a/site/public/v1/smartphones/sm-a536e-ds-galaxy-a53-5g-2022-standard-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a536e-ds-galaxy-a53-5g-2022-standard-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..8cea891aa16 --- /dev/null +++ b/site/public/v1/smartphones/sm-a536e-ds-galaxy-a53-5g-2022-standard-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.5, + "performance": 1.5, + "camera": 21.5, + "battery": 41.9, + "display": 53.3, + "value": 53.3 +} diff --git a/site/public/v1/smartphones/sm-a536e-galaxy-a53-5g-2022-standard-edition-global-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a536e-galaxy-a53-5g-2022-standard-edition-global-td-lte-128gb/index.json new file mode 100644 index 00000000000..e8e04e6fa48 --- /dev/null +++ b/site/public/v1/smartphones/sm-a536e-galaxy-a53-5g-2022-standard-edition-global-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4560, + "slug": "sm-a536e-galaxy-a53-5g-2022-standard-edition-global-td-lte-128gb", + "name": "SM-A536E Galaxy A53 5G 2022 Standard Edition Global TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 201, + "slug": "exynos-1280", + "name": "Samsung Exynos 1280", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G68 MP4", + "url": "/v1/socs/exynos-1280" + }, + "release_date": "2022-04-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.5, + "performance": 1.5, + "camera": 21.5, + "battery": 41.9, + "display": 53.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.748205", + "updated_at": "2026-06-19T00:43:44.748205" +} diff --git a/site/public/v1/smartphones/sm-a536e-galaxy-a53-5g-2022-standard-edition-global-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a536e-galaxy-a53-5g-2022-standard-edition-global-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..e4020549893 --- /dev/null +++ b/site/public/v1/smartphones/sm-a536e-galaxy-a53-5g-2022-standard-edition-global-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.5, + "performance": 1.5, + "camera": 21.5, + "battery": 41.9, + "display": 53.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a536j-galaxy-a53-5g-2022-standard-edition-td-lte-jp-128gb-scg15/index.json b/site/public/v1/smartphones/sm-a536j-galaxy-a53-5g-2022-standard-edition-td-lte-jp-128gb-scg15/index.json new file mode 100644 index 00000000000..44ec3db9b18 --- /dev/null +++ b/site/public/v1/smartphones/sm-a536j-galaxy-a53-5g-2022-standard-edition-td-lte-jp-128gb-scg15/index.json @@ -0,0 +1,77 @@ +{ + "id": 4561, + "slug": "sm-a536j-galaxy-a53-5g-2022-standard-edition-td-lte-jp-128gb-scg15", + "name": "SM-A536J Galaxy A53 5G 2022 Standard Edition TD-LTE JP 128GB SCG15", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 201, + "slug": "exynos-1280", + "name": "Samsung Exynos 1280", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G68 MP4", + "url": "/v1/socs/exynos-1280" + }, + "release_date": "2022-05-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.5, + "performance": 1.5, + "camera": 21.5, + "battery": 41.9, + "display": 53.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.748205", + "updated_at": "2026-06-19T00:43:44.748205" +} diff --git a/site/public/v1/smartphones/sm-a536j-galaxy-a53-5g-2022-standard-edition-td-lte-jp-128gb-scg15/score/index.json b/site/public/v1/smartphones/sm-a536j-galaxy-a53-5g-2022-standard-edition-td-lte-jp-128gb-scg15/score/index.json new file mode 100644 index 00000000000..e4020549893 --- /dev/null +++ b/site/public/v1/smartphones/sm-a536j-galaxy-a53-5g-2022-standard-edition-td-lte-jp-128gb-scg15/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.5, + "performance": 1.5, + "camera": 21.5, + "battery": 41.9, + "display": 53.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a536n-galaxy-a53-5g-2022-standard-edition-td-lte-kr-128gb/index.json b/site/public/v1/smartphones/sm-a536n-galaxy-a53-5g-2022-standard-edition-td-lte-kr-128gb/index.json new file mode 100644 index 00000000000..1815abe5947 --- /dev/null +++ b/site/public/v1/smartphones/sm-a536n-galaxy-a53-5g-2022-standard-edition-td-lte-kr-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4562, + "slug": "sm-a536n-galaxy-a53-5g-2022-standard-edition-td-lte-kr-128gb", + "name": "SM-A536N Galaxy A53 5G 2022 Standard Edition TD-LTE KR 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 201, + "slug": "exynos-1280", + "name": "Samsung Exynos 1280", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G68 MP4", + "url": "/v1/socs/exynos-1280" + }, + "release_date": "2022-03-29", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.5, + "performance": 1.5, + "camera": 21.5, + "battery": 41.9, + "display": 53.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.748205", + "updated_at": "2026-06-19T00:43:44.748205" +} diff --git a/site/public/v1/smartphones/sm-a536n-galaxy-a53-5g-2022-standard-edition-td-lte-kr-128gb/score/index.json b/site/public/v1/smartphones/sm-a536n-galaxy-a53-5g-2022-standard-edition-td-lte-kr-128gb/score/index.json new file mode 100644 index 00000000000..e4020549893 --- /dev/null +++ b/site/public/v1/smartphones/sm-a536n-galaxy-a53-5g-2022-standard-edition-td-lte-kr-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.5, + "performance": 1.5, + "camera": 21.5, + "battery": 41.9, + "display": 53.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536a/index.json b/site/public/v1/smartphones/sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536a/index.json new file mode 100644 index 00000000000..824dc14a823 --- /dev/null +++ b/site/public/v1/smartphones/sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536a/index.json @@ -0,0 +1,77 @@ +{ + "id": 4563, + "slug": "sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536a", + "name": "SM-A536U Galaxy A53 5G 2022 Standard Edition TD-LTE US 128GB / SM-A536A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 201, + "slug": "exynos-1280", + "name": "Samsung Exynos 1280", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G68 MP4", + "url": "/v1/socs/exynos-1280" + }, + "release_date": "2022-03-29", + "msrp_usd": 450, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.5, + "performance": 1.5, + "camera": 21.5, + "battery": 41.9, + "display": 53.3, + "value": 59.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.749205", + "updated_at": "2026-06-19T00:43:44.749205" +} diff --git a/site/public/v1/smartphones/sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536a/score/index.json b/site/public/v1/smartphones/sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536a/score/index.json new file mode 100644 index 00000000000..acbadf2e524 --- /dev/null +++ b/site/public/v1/smartphones/sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.5, + "performance": 1.5, + "camera": 21.5, + "battery": 41.9, + "display": 53.3, + "value": 59.0 +} diff --git a/site/public/v1/smartphones/sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536r4/index.json b/site/public/v1/smartphones/sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536r4/index.json new file mode 100644 index 00000000000..99a399de2ad --- /dev/null +++ b/site/public/v1/smartphones/sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536r4/index.json @@ -0,0 +1,77 @@ +{ + "id": 4564, + "slug": "sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536r4", + "name": "SM-A536U Galaxy A53 5G 2022 Standard Edition TD-LTE US 128GB / SM-A536R4", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 201, + "slug": "exynos-1280", + "name": "Samsung Exynos 1280", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G68 MP4", + "url": "/v1/socs/exynos-1280" + }, + "release_date": "2022-03-29", + "msrp_usd": 450, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.5, + "performance": 1.5, + "camera": 21.5, + "battery": 41.9, + "display": 53.3, + "value": 59.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.749205", + "updated_at": "2026-06-19T00:43:44.749205" +} diff --git a/site/public/v1/smartphones/sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536r4/score/index.json b/site/public/v1/smartphones/sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536r4/score/index.json new file mode 100644 index 00000000000..acbadf2e524 --- /dev/null +++ b/site/public/v1/smartphones/sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536r4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.5, + "performance": 1.5, + "camera": 21.5, + "battery": 41.9, + "display": 53.3, + "value": 59.0 +} diff --git a/site/public/v1/smartphones/sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536t/index.json b/site/public/v1/smartphones/sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536t/index.json new file mode 100644 index 00000000000..b13c57a9ba1 --- /dev/null +++ b/site/public/v1/smartphones/sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536t/index.json @@ -0,0 +1,77 @@ +{ + "id": 4565, + "slug": "sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536t", + "name": "SM-A536U Galaxy A53 5G 2022 Standard Edition TD-LTE US 128GB / SM-A536T", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 201, + "slug": "exynos-1280", + "name": "Samsung Exynos 1280", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G68 MP4", + "url": "/v1/socs/exynos-1280" + }, + "release_date": "2022-03-29", + "msrp_usd": 450, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.5, + "performance": 1.5, + "camera": 21.5, + "battery": 41.9, + "display": 53.3, + "value": 59.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.749205", + "updated_at": "2026-06-19T00:43:44.749205" +} diff --git a/site/public/v1/smartphones/sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536t/score/index.json b/site/public/v1/smartphones/sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536t/score/index.json new file mode 100644 index 00000000000..acbadf2e524 --- /dev/null +++ b/site/public/v1/smartphones/sm-a536u-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb-sm-a536t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.5, + "performance": 1.5, + "camera": 21.5, + "battery": 41.9, + "display": 53.3, + "value": 59.0 +} diff --git a/site/public/v1/smartphones/sm-a536u-galaxy-a53-5g-uw-2022-standard-edition-td-lte-us-128gb-sm-a536v/index.json b/site/public/v1/smartphones/sm-a536u-galaxy-a53-5g-uw-2022-standard-edition-td-lte-us-128gb-sm-a536v/index.json new file mode 100644 index 00000000000..2bfa74c437f --- /dev/null +++ b/site/public/v1/smartphones/sm-a536u-galaxy-a53-5g-uw-2022-standard-edition-td-lte-us-128gb-sm-a536v/index.json @@ -0,0 +1,77 @@ +{ + "id": 4566, + "slug": "sm-a536u-galaxy-a53-5g-uw-2022-standard-edition-td-lte-us-128gb-sm-a536v", + "name": "SM-A536U Galaxy A53 5G UW 2022 Standard Edition TD-LTE US 128GB / SM-A536V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 201, + "slug": "exynos-1280", + "name": "Samsung Exynos 1280", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G68 MP4", + "url": "/v1/socs/exynos-1280" + }, + "release_date": "2022-03-29", + "msrp_usd": 500, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.5, + "performance": 1.5, + "camera": 21.5, + "battery": 41.9, + "display": 53.3, + "value": 57.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.749205", + "updated_at": "2026-06-19T00:43:44.749205" +} diff --git a/site/public/v1/smartphones/sm-a536u-galaxy-a53-5g-uw-2022-standard-edition-td-lte-us-128gb-sm-a536v/score/index.json b/site/public/v1/smartphones/sm-a536u-galaxy-a53-5g-uw-2022-standard-edition-td-lte-us-128gb-sm-a536v/score/index.json new file mode 100644 index 00000000000..bfbeab8aa46 --- /dev/null +++ b/site/public/v1/smartphones/sm-a536u-galaxy-a53-5g-uw-2022-standard-edition-td-lte-us-128gb-sm-a536v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.5, + "performance": 1.5, + "camera": 21.5, + "battery": 41.9, + "display": 53.3, + "value": 57.0 +} diff --git a/site/public/v1/smartphones/sm-a536u1-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb/index.json b/site/public/v1/smartphones/sm-a536u1-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..47c91daae0b --- /dev/null +++ b/site/public/v1/smartphones/sm-a536u1-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4567, + "slug": "sm-a536u1-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb", + "name": "SM-A536U1 Galaxy A53 5G 2022 Standard Edition TD-LTE US 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 201, + "slug": "exynos-1280", + "name": "Samsung Exynos 1280", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G68 MP4", + "url": "/v1/socs/exynos-1280" + }, + "release_date": "2022-03-29", + "msrp_usd": 450, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.5, + "performance": 1.5, + "camera": 21.5, + "battery": 41.9, + "display": 53.3, + "value": 59.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.749205", + "updated_at": "2026-06-19T00:43:44.749205" +} diff --git a/site/public/v1/smartphones/sm-a536u1-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/sm-a536u1-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..acbadf2e524 --- /dev/null +++ b/site/public/v1/smartphones/sm-a536u1-galaxy-a53-5g-2022-standard-edition-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.5, + "performance": 1.5, + "camera": 21.5, + "battery": 41.9, + "display": 53.3, + "value": 59.0 +} diff --git a/site/public/v1/smartphones/sm-a6050-galaxy-a9-star-lite-2018-duos-td-lte-cn-64gb/index.json b/site/public/v1/smartphones/sm-a6050-galaxy-a9-star-lite-2018-duos-td-lte-cn-64gb/index.json new file mode 100644 index 00000000000..4097e5b0375 --- /dev/null +++ b/site/public/v1/smartphones/sm-a6050-galaxy-a9-star-lite-2018-duos-td-lte-cn-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3746, + "slug": "sm-a6050-galaxy-a9-star-lite-2018-duos-td-lte-cn-64gb", + "name": "SM-A6050 Galaxy A9 Star Lite 2018 Duos TD-LTE CN 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.638430", + "updated_at": "2026-06-19T00:43:44.638430" +} diff --git a/site/public/v1/smartphones/sm-a6050-galaxy-a9-star-lite-2018-duos-td-lte-cn-64gb/score/index.json b/site/public/v1/smartphones/sm-a6050-galaxy-a9-star-lite-2018-duos-td-lte-cn-64gb/score/index.json new file mode 100644 index 00000000000..b567619fc1f --- /dev/null +++ b/site/public/v1/smartphones/sm-a6050-galaxy-a9-star-lite-2018-duos-td-lte-cn-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a6058-galaxy-a9-star-lite-4g-2018-duos-td-lte-cn-64gb/index.json b/site/public/v1/smartphones/sm-a6058-galaxy-a9-star-lite-4g-2018-duos-td-lte-cn-64gb/index.json new file mode 100644 index 00000000000..9c2997b1d61 --- /dev/null +++ b/site/public/v1/smartphones/sm-a6058-galaxy-a9-star-lite-4g-2018-duos-td-lte-cn-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3747, + "slug": "sm-a6058-galaxy-a9-star-lite-4g-2018-duos-td-lte-cn-64gb", + "name": "SM-A6058 Galaxy A9 Star Lite 4G+ 2018 Duos TD-LTE CN 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.638430", + "updated_at": "2026-06-19T00:43:44.638430" +} diff --git a/site/public/v1/smartphones/sm-a6058-galaxy-a9-star-lite-4g-2018-duos-td-lte-cn-64gb/score/index.json b/site/public/v1/smartphones/sm-a6058-galaxy-a9-star-lite-4g-2018-duos-td-lte-cn-64gb/score/index.json new file mode 100644 index 00000000000..b567619fc1f --- /dev/null +++ b/site/public/v1/smartphones/sm-a6058-galaxy-a9-star-lite-4g-2018-duos-td-lte-cn-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a605f-ds-galaxy-a6-2018-duos-global-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-a605f-ds-galaxy-a6-2018-duos-global-td-lte-64gb/index.json new file mode 100644 index 00000000000..02967c96e58 --- /dev/null +++ b/site/public/v1/smartphones/sm-a605f-ds-galaxy-a6-2018-duos-global-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3748, + "slug": "sm-a605f-ds-galaxy-a6-2018-duos-global-td-lte-64gb", + "name": "SM-A605F/DS Galaxy A6+ 2018 Duos Global TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.638430", + "updated_at": "2026-06-19T00:43:44.638430" +} diff --git a/site/public/v1/smartphones/sm-a605f-ds-galaxy-a6-2018-duos-global-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-a605f-ds-galaxy-a6-2018-duos-global-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..b567619fc1f --- /dev/null +++ b/site/public/v1/smartphones/sm-a605f-ds-galaxy-a6-2018-duos-global-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a605fn-ds-galaxy-a6-2018-duos-global-td-lte-32gb/index.json b/site/public/v1/smartphones/sm-a605fn-ds-galaxy-a6-2018-duos-global-td-lte-32gb/index.json new file mode 100644 index 00000000000..498c3974ab8 --- /dev/null +++ b/site/public/v1/smartphones/sm-a605fn-ds-galaxy-a6-2018-duos-global-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3749, + "slug": "sm-a605fn-ds-galaxy-a6-2018-duos-global-td-lte-32gb", + "name": "SM-A605FN/DS Galaxy A6+ 2018 Duos Global TD-LTE 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.638430", + "updated_at": "2026-06-19T00:43:44.638430" +} diff --git a/site/public/v1/smartphones/sm-a605fn-ds-galaxy-a6-2018-duos-global-td-lte-32gb/score/index.json b/site/public/v1/smartphones/sm-a605fn-ds-galaxy-a6-2018-duos-global-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..b567619fc1f --- /dev/null +++ b/site/public/v1/smartphones/sm-a605fn-ds-galaxy-a6-2018-duos-global-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a605fn-galaxy-a6-2018-global-td-lte-32gb/index.json b/site/public/v1/smartphones/sm-a605fn-galaxy-a6-2018-global-td-lte-32gb/index.json new file mode 100644 index 00000000000..a93f5338a64 --- /dev/null +++ b/site/public/v1/smartphones/sm-a605fn-galaxy-a6-2018-global-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3750, + "slug": "sm-a605fn-galaxy-a6-2018-global-td-lte-32gb", + "name": "SM-A605FN Galaxy A6+ 2018 Global TD-LTE 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.638430", + "updated_at": "2026-06-19T00:43:44.638430" +} diff --git a/site/public/v1/smartphones/sm-a605fn-galaxy-a6-2018-global-td-lte-32gb/score/index.json b/site/public/v1/smartphones/sm-a605fn-galaxy-a6-2018-global-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..b567619fc1f --- /dev/null +++ b/site/public/v1/smartphones/sm-a605fn-galaxy-a6-2018-global-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a605g-ds-galaxy-a6-2018-duos-td-lte-apac-64gb/index.json b/site/public/v1/smartphones/sm-a605g-ds-galaxy-a6-2018-duos-td-lte-apac-64gb/index.json new file mode 100644 index 00000000000..21098998aae --- /dev/null +++ b/site/public/v1/smartphones/sm-a605g-ds-galaxy-a6-2018-duos-td-lte-apac-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3751, + "slug": "sm-a605g-ds-galaxy-a6-2018-duos-td-lte-apac-64gb", + "name": "SM-A605G/DS Galaxy A6+ 2018 Duos TD-LTE APAC 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.639427", + "updated_at": "2026-06-19T00:43:44.639427" +} diff --git a/site/public/v1/smartphones/sm-a605g-ds-galaxy-a6-2018-duos-td-lte-apac-64gb/score/index.json b/site/public/v1/smartphones/sm-a605g-ds-galaxy-a6-2018-duos-td-lte-apac-64gb/score/index.json new file mode 100644 index 00000000000..b567619fc1f --- /dev/null +++ b/site/public/v1/smartphones/sm-a605g-ds-galaxy-a6-2018-duos-td-lte-apac-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a605gn-ds-galaxy-a6-2018-duos-td-lte-latam-32gb/index.json b/site/public/v1/smartphones/sm-a605gn-ds-galaxy-a6-2018-duos-td-lte-latam-32gb/index.json new file mode 100644 index 00000000000..09e7076194d --- /dev/null +++ b/site/public/v1/smartphones/sm-a605gn-ds-galaxy-a6-2018-duos-td-lte-latam-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3752, + "slug": "sm-a605gn-ds-galaxy-a6-2018-duos-td-lte-latam-32gb", + "name": "SM-A605GN/DS Galaxy A6+ 2018 Duos TD-LTE LATAM 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.639427", + "updated_at": "2026-06-19T00:43:44.639427" +} diff --git a/site/public/v1/smartphones/sm-a605gn-ds-galaxy-a6-2018-duos-td-lte-latam-32gb/score/index.json b/site/public/v1/smartphones/sm-a605gn-ds-galaxy-a6-2018-duos-td-lte-latam-32gb/score/index.json new file mode 100644 index 00000000000..b567619fc1f --- /dev/null +++ b/site/public/v1/smartphones/sm-a605gn-ds-galaxy-a6-2018-duos-td-lte-latam-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a605gn-galaxy-a6-2018-td-lte-latam-32gb/index.json b/site/public/v1/smartphones/sm-a605gn-galaxy-a6-2018-td-lte-latam-32gb/index.json new file mode 100644 index 00000000000..d3e8d1cf675 --- /dev/null +++ b/site/public/v1/smartphones/sm-a605gn-galaxy-a6-2018-td-lte-latam-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3753, + "slug": "sm-a605gn-galaxy-a6-2018-td-lte-latam-32gb", + "name": "SM-A605GN Galaxy A6+ 2018 TD-LTE LATAM 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.639427", + "updated_at": "2026-06-19T00:43:44.639427" +} diff --git a/site/public/v1/smartphones/sm-a605gn-galaxy-a6-2018-td-lte-latam-32gb/score/index.json b/site/public/v1/smartphones/sm-a605gn-galaxy-a6-2018-td-lte-latam-32gb/score/index.json new file mode 100644 index 00000000000..b567619fc1f --- /dev/null +++ b/site/public/v1/smartphones/sm-a605gn-galaxy-a6-2018-td-lte-latam-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a605k-galaxy-jean-td-lte-kr-32gb/index.json b/site/public/v1/smartphones/sm-a605k-galaxy-jean-td-lte-kr-32gb/index.json new file mode 100644 index 00000000000..db36fd0a1fb --- /dev/null +++ b/site/public/v1/smartphones/sm-a605k-galaxy-jean-td-lte-kr-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3754, + "slug": "sm-a605k-galaxy-jean-td-lte-kr-32gb", + "name": "SM-A605K Galaxy Jean TD-LTE KR 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-07-07", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 23.8 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.639427", + "updated_at": "2026-06-19T00:43:44.639427" +} diff --git a/site/public/v1/smartphones/sm-a605k-galaxy-jean-td-lte-kr-32gb/score/index.json b/site/public/v1/smartphones/sm-a605k-galaxy-jean-td-lte-kr-32gb/score/index.json new file mode 100644 index 00000000000..b567619fc1f --- /dev/null +++ b/site/public/v1/smartphones/sm-a605k-galaxy-jean-td-lte-kr-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a6060-ds-galaxy-a60-2019-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/sm-a6060-ds-galaxy-a60-2019-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..eefd0f3775f --- /dev/null +++ b/site/public/v1/smartphones/sm-a6060-ds-galaxy-a60-2019-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3912, + "slug": "sm-a6060-ds-galaxy-a60-2019-dual-sim-td-lte-cn-128gb", + "name": "SM-A6060/DS Galaxy A60 2019 Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-05-04", + "msrp_usd": 1999, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color PLS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 1.5, + "camera": 11.4, + "battery": 7.5, + "display": 45.9, + "value": 8.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.662763", + "updated_at": "2026-06-19T00:43:44.662763" +} diff --git a/site/public/v1/smartphones/sm-a6060-ds-galaxy-a60-2019-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/sm-a6060-ds-galaxy-a60-2019-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..bcf341c850c --- /dev/null +++ b/site/public/v1/smartphones/sm-a6060-ds-galaxy-a60-2019-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 1.5, + "camera": 11.4, + "battery": 7.5, + "display": 45.9, + "value": 8.3 +} diff --git a/site/public/v1/smartphones/sm-a6060-ds-galaxy-a60-2019-dual-sim-td-lte-cn-64gb/index.json b/site/public/v1/smartphones/sm-a6060-ds-galaxy-a60-2019-dual-sim-td-lte-cn-64gb/index.json new file mode 100644 index 00000000000..83f22e29715 --- /dev/null +++ b/site/public/v1/smartphones/sm-a6060-ds-galaxy-a60-2019-dual-sim-td-lte-cn-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3913, + "slug": "sm-a6060-ds-galaxy-a60-2019-dual-sim-td-lte-cn-64gb", + "name": "SM-A6060/DS Galaxy A60 2019 Dual SIM TD-LTE CN 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-05-04", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color PLS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 1.5, + "camera": 11.4, + "battery": 7.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.662763", + "updated_at": "2026-06-19T00:43:44.662763" +} diff --git a/site/public/v1/smartphones/sm-a6060-ds-galaxy-a60-2019-dual-sim-td-lte-cn-64gb/score/index.json b/site/public/v1/smartphones/sm-a6060-ds-galaxy-a60-2019-dual-sim-td-lte-cn-64gb/score/index.json new file mode 100644 index 00000000000..a0eb7b1c9b8 --- /dev/null +++ b/site/public/v1/smartphones/sm-a6060-ds-galaxy-a60-2019-dual-sim-td-lte-cn-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 1.5, + "camera": 11.4, + "battery": 7.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a7050-galaxy-a70-2019-premium-edition-dual-sim-td-lte-apac-128gb/index.json b/site/public/v1/smartphones/sm-a7050-galaxy-a70-2019-premium-edition-dual-sim-td-lte-apac-128gb/index.json new file mode 100644 index 00000000000..14e1ff1c10e --- /dev/null +++ b/site/public/v1/smartphones/sm-a7050-galaxy-a70-2019-premium-edition-dual-sim-td-lte-apac-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3914, + "slug": "sm-a7050-galaxy-a70-2019-premium-edition-dual-sim-td-lte-apac-128gb", + "name": "SM-A7050 Galaxy A70 2019 Premium Edition Dual SIM TD-LTE APAC 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 11.4, + "battery": 24.4, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.662763", + "updated_at": "2026-06-19T00:43:44.662763" +} diff --git a/site/public/v1/smartphones/sm-a7050-galaxy-a70-2019-premium-edition-dual-sim-td-lte-apac-128gb/score/index.json b/site/public/v1/smartphones/sm-a7050-galaxy-a70-2019-premium-edition-dual-sim-td-lte-apac-128gb/score/index.json new file mode 100644 index 00000000000..b7e1ae57cad --- /dev/null +++ b/site/public/v1/smartphones/sm-a7050-galaxy-a70-2019-premium-edition-dual-sim-td-lte-apac-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 11.4, + "battery": 24.4, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a7050-galaxy-a70-2019-standard-edition-dual-sim-td-lte-apac-128gb/index.json b/site/public/v1/smartphones/sm-a7050-galaxy-a70-2019-standard-edition-dual-sim-td-lte-apac-128gb/index.json new file mode 100644 index 00000000000..31848471520 --- /dev/null +++ b/site/public/v1/smartphones/sm-a7050-galaxy-a70-2019-standard-edition-dual-sim-td-lte-apac-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3915, + "slug": "sm-a7050-galaxy-a70-2019-standard-edition-dual-sim-td-lte-apac-128gb", + "name": "SM-A7050 Galaxy A70 2019 Standard Edition Dual SIM TD-LTE APAC 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 1.5, + "camera": 11.4, + "battery": 24.4, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.663763", + "updated_at": "2026-06-19T00:43:44.663763" +} diff --git a/site/public/v1/smartphones/sm-a7050-galaxy-a70-2019-standard-edition-dual-sim-td-lte-apac-128gb/score/index.json b/site/public/v1/smartphones/sm-a7050-galaxy-a70-2019-standard-edition-dual-sim-td-lte-apac-128gb/score/index.json new file mode 100644 index 00000000000..e36268b2481 --- /dev/null +++ b/site/public/v1/smartphones/sm-a7050-galaxy-a70-2019-standard-edition-dual-sim-td-lte-apac-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 1.5, + "camera": 11.4, + "battery": 24.4, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a705f-ds-galaxy-a70-2019-standard-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a705f-ds-galaxy-a70-2019-standard-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..4f4e52150ea --- /dev/null +++ b/site/public/v1/smartphones/sm-a705f-ds-galaxy-a70-2019-standard-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3916, + "slug": "sm-a705f-ds-galaxy-a70-2019-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A705F/DS Galaxy A70 2019 Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-04-26", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 1.5, + "camera": 11.4, + "battery": 24.4, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.663763", + "updated_at": "2026-06-19T00:43:44.663763" +} diff --git a/site/public/v1/smartphones/sm-a705f-ds-galaxy-a70-2019-standard-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a705f-ds-galaxy-a70-2019-standard-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..e36268b2481 --- /dev/null +++ b/site/public/v1/smartphones/sm-a705f-ds-galaxy-a70-2019-standard-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 1.5, + "camera": 11.4, + "battery": 24.4, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a705fn-ds-galaxy-a70-2019-premium-edition-dual-sim-td-lte-emea-128gb/index.json b/site/public/v1/smartphones/sm-a705fn-ds-galaxy-a70-2019-premium-edition-dual-sim-td-lte-emea-128gb/index.json new file mode 100644 index 00000000000..20e6f0a72b8 --- /dev/null +++ b/site/public/v1/smartphones/sm-a705fn-ds-galaxy-a70-2019-premium-edition-dual-sim-td-lte-emea-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3917, + "slug": "sm-a705fn-ds-galaxy-a70-2019-premium-edition-dual-sim-td-lte-emea-128gb", + "name": "SM-A705FN/DS Galaxy A70 2019 Premium Edition Dual SIM TD-LTE EMEA 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-04-26", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 11.4, + "battery": 24.4, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.663763", + "updated_at": "2026-06-19T00:43:44.663763" +} diff --git a/site/public/v1/smartphones/sm-a705fn-ds-galaxy-a70-2019-premium-edition-dual-sim-td-lte-emea-128gb/score/index.json b/site/public/v1/smartphones/sm-a705fn-ds-galaxy-a70-2019-premium-edition-dual-sim-td-lte-emea-128gb/score/index.json new file mode 100644 index 00000000000..b7e1ae57cad --- /dev/null +++ b/site/public/v1/smartphones/sm-a705fn-ds-galaxy-a70-2019-premium-edition-dual-sim-td-lte-emea-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 11.4, + "battery": 24.4, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a705fn-ds-galaxy-a70-2019-standard-edition-dual-sim-td-lte-emea-128gb/index.json b/site/public/v1/smartphones/sm-a705fn-ds-galaxy-a70-2019-standard-edition-dual-sim-td-lte-emea-128gb/index.json new file mode 100644 index 00000000000..9d000ca3ca8 --- /dev/null +++ b/site/public/v1/smartphones/sm-a705fn-ds-galaxy-a70-2019-standard-edition-dual-sim-td-lte-emea-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3918, + "slug": "sm-a705fn-ds-galaxy-a70-2019-standard-edition-dual-sim-td-lte-emea-128gb", + "name": "SM-A705FN/DS Galaxy A70 2019 Standard Edition Dual SIM TD-LTE EMEA 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-04-11", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 1.5, + "camera": 11.4, + "battery": 24.4, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.663763", + "updated_at": "2026-06-19T00:43:44.663763" +} diff --git a/site/public/v1/smartphones/sm-a705fn-ds-galaxy-a70-2019-standard-edition-dual-sim-td-lte-emea-128gb/score/index.json b/site/public/v1/smartphones/sm-a705fn-ds-galaxy-a70-2019-standard-edition-dual-sim-td-lte-emea-128gb/score/index.json new file mode 100644 index 00000000000..e36268b2481 --- /dev/null +++ b/site/public/v1/smartphones/sm-a705fn-ds-galaxy-a70-2019-standard-edition-dual-sim-td-lte-emea-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 1.5, + "camera": 11.4, + "battery": 24.4, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a705fn-galaxy-a70-2019-standard-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a705fn-galaxy-a70-2019-standard-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..fb46a8fbf3e --- /dev/null +++ b/site/public/v1/smartphones/sm-a705fn-galaxy-a70-2019-standard-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3919, + "slug": "sm-a705fn-galaxy-a70-2019-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A705FN Galaxy A70 2019 Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-04-26", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 1.5, + "camera": 11.4, + "battery": 24.4, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.663763", + "updated_at": "2026-06-19T00:43:44.663763" +} diff --git a/site/public/v1/smartphones/sm-a705fn-galaxy-a70-2019-standard-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a705fn-galaxy-a70-2019-standard-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..e36268b2481 --- /dev/null +++ b/site/public/v1/smartphones/sm-a705fn-galaxy-a70-2019-standard-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 1.5, + "camera": 11.4, + "battery": 24.4, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a705gm-ds-galaxy-a70-2019-standard-edition-dual-sim-td-lte-in-128gb/index.json b/site/public/v1/smartphones/sm-a705gm-ds-galaxy-a70-2019-standard-edition-dual-sim-td-lte-in-128gb/index.json new file mode 100644 index 00000000000..88a933c0a6a --- /dev/null +++ b/site/public/v1/smartphones/sm-a705gm-ds-galaxy-a70-2019-standard-edition-dual-sim-td-lte-in-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3920, + "slug": "sm-a705gm-ds-galaxy-a70-2019-standard-edition-dual-sim-td-lte-in-128gb", + "name": "SM-A705GM/DS Galaxy A70 2019 Standard Edition Dual SIM TD-LTE IN 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 1.5, + "camera": 11.4, + "battery": 24.4, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.663763", + "updated_at": "2026-06-19T00:43:44.663763" +} diff --git a/site/public/v1/smartphones/sm-a705gm-ds-galaxy-a70-2019-standard-edition-dual-sim-td-lte-in-128gb/score/index.json b/site/public/v1/smartphones/sm-a705gm-ds-galaxy-a70-2019-standard-edition-dual-sim-td-lte-in-128gb/score/index.json new file mode 100644 index 00000000000..e36268b2481 --- /dev/null +++ b/site/public/v1/smartphones/sm-a705gm-ds-galaxy-a70-2019-standard-edition-dual-sim-td-lte-in-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 1.5, + "camera": 11.4, + "battery": 24.4, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a705mn-ds-galaxy-a70-2019-dual-sim-td-lte-apac-am-128gb/index.json b/site/public/v1/smartphones/sm-a705mn-ds-galaxy-a70-2019-dual-sim-td-lte-apac-am-128gb/index.json new file mode 100644 index 00000000000..3462b7a5b08 --- /dev/null +++ b/site/public/v1/smartphones/sm-a705mn-ds-galaxy-a70-2019-dual-sim-td-lte-apac-am-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3921, + "slug": "sm-a705mn-ds-galaxy-a70-2019-dual-sim-td-lte-apac-am-128gb", + "name": "SM-A705MN/DS Galaxy A70 2019 Dual SIM TD-LTE APAC AM 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 1.5, + "camera": 11.4, + "battery": 24.4, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.663763", + "updated_at": "2026-06-19T00:43:44.663763" +} diff --git a/site/public/v1/smartphones/sm-a705mn-ds-galaxy-a70-2019-dual-sim-td-lte-apac-am-128gb/score/index.json b/site/public/v1/smartphones/sm-a705mn-ds-galaxy-a70-2019-dual-sim-td-lte-apac-am-128gb/score/index.json new file mode 100644 index 00000000000..e36268b2481 --- /dev/null +++ b/site/public/v1/smartphones/sm-a705mn-ds-galaxy-a70-2019-dual-sim-td-lte-apac-am-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 1.5, + "camera": 11.4, + "battery": 24.4, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a705mn-galaxy-a70-2019-td-lte-am-128gb/index.json b/site/public/v1/smartphones/sm-a705mn-galaxy-a70-2019-td-lte-am-128gb/index.json new file mode 100644 index 00000000000..e8bc0758a1a --- /dev/null +++ b/site/public/v1/smartphones/sm-a705mn-galaxy-a70-2019-td-lte-am-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3922, + "slug": "sm-a705mn-galaxy-a70-2019-td-lte-am-128gb", + "name": "SM-A705MN Galaxy A70 2019 TD-LTE AM 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 1.5, + "camera": 11.4, + "battery": 24.4, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.663763", + "updated_at": "2026-06-19T00:43:44.663763" +} diff --git a/site/public/v1/smartphones/sm-a705mn-galaxy-a70-2019-td-lte-am-128gb/score/index.json b/site/public/v1/smartphones/sm-a705mn-galaxy-a70-2019-td-lte-am-128gb/score/index.json new file mode 100644 index 00000000000..e36268b2481 --- /dev/null +++ b/site/public/v1/smartphones/sm-a705mn-galaxy-a70-2019-td-lte-am-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 1.5, + "camera": 11.4, + "battery": 24.4, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a705w-galaxy-a70-2019-td-lte-ca-128gb/index.json b/site/public/v1/smartphones/sm-a705w-galaxy-a70-2019-td-lte-ca-128gb/index.json new file mode 100644 index 00000000000..eb61fa81382 --- /dev/null +++ b/site/public/v1/smartphones/sm-a705w-galaxy-a70-2019-td-lte-ca-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3923, + "slug": "sm-a705w-galaxy-a70-2019-td-lte-ca-128gb", + "name": "SM-A705W Galaxy A70 2019 TD-LTE CA 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-06-07", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 1.5, + "camera": 11.4, + "battery": 24.4, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.663763", + "updated_at": "2026-06-19T00:43:44.663763" +} diff --git a/site/public/v1/smartphones/sm-a705w-galaxy-a70-2019-td-lte-ca-128gb/score/index.json b/site/public/v1/smartphones/sm-a705w-galaxy-a70-2019-td-lte-ca-128gb/score/index.json new file mode 100644 index 00000000000..e36268b2481 --- /dev/null +++ b/site/public/v1/smartphones/sm-a705w-galaxy-a70-2019-td-lte-ca-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 1.5, + "camera": 11.4, + "battery": 24.4, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a705yn-galaxy-a70-2019-td-lte-au-128gb/index.json b/site/public/v1/smartphones/sm-a705yn-galaxy-a70-2019-td-lte-au-128gb/index.json new file mode 100644 index 00000000000..453a41193f7 --- /dev/null +++ b/site/public/v1/smartphones/sm-a705yn-galaxy-a70-2019-td-lte-au-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3924, + "slug": "sm-a705yn-galaxy-a70-2019-td-lte-au-128gb", + "name": "SM-A705YN Galaxy A70 2019 TD-LTE AU 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 1.5, + "camera": 11.4, + "battery": 24.4, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.664762", + "updated_at": "2026-06-19T00:43:44.664762" +} diff --git a/site/public/v1/smartphones/sm-a705yn-galaxy-a70-2019-td-lte-au-128gb/score/index.json b/site/public/v1/smartphones/sm-a705yn-galaxy-a70-2019-td-lte-au-128gb/score/index.json new file mode 100644 index 00000000000..e36268b2481 --- /dev/null +++ b/site/public/v1/smartphones/sm-a705yn-galaxy-a70-2019-td-lte-au-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 1.5, + "camera": 11.4, + "battery": 24.4, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a7070-galaxy-a70s-2019-dual-sim-td-lte-cn/index.json b/site/public/v1/smartphones/sm-a7070-galaxy-a70s-2019-dual-sim-td-lte-cn/index.json new file mode 100644 index 00000000000..ef19c1e25f9 --- /dev/null +++ b/site/public/v1/smartphones/sm-a7070-galaxy-a70s-2019-dual-sim-td-lte-cn/index.json @@ -0,0 +1,76 @@ +{ + "id": 3925, + "slug": "sm-a7070-galaxy-a70s-2019-dual-sim-td-lte-cn", + "name": "SM-A7070 Galaxy A70s 2019 Dual SIM TD-LTE CN", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-11-11", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 187.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 3.0, + "camera": 21.7, + "battery": 24.4, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.664762", + "updated_at": "2026-06-19T00:43:44.664762" +} diff --git a/site/public/v1/smartphones/sm-a7070-galaxy-a70s-2019-dual-sim-td-lte-cn/score/index.json b/site/public/v1/smartphones/sm-a7070-galaxy-a70s-2019-dual-sim-td-lte-cn/score/index.json new file mode 100644 index 00000000000..21c2f093192 --- /dev/null +++ b/site/public/v1/smartphones/sm-a7070-galaxy-a70s-2019-dual-sim-td-lte-cn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 3.0, + "camera": 21.7, + "battery": 24.4, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a707f-dsm-galaxy-a70s-2019-premium-edition-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/sm-a707f-dsm-galaxy-a70s-2019-premium-edition-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..b3a323646ea --- /dev/null +++ b/site/public/v1/smartphones/sm-a707f-dsm-galaxy-a70s-2019-premium-edition-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 3926, + "slug": "sm-a707f-dsm-galaxy-a70s-2019-premium-edition-global-dual-sim-td-lte", + "name": "SM-A707F/DSM Galaxy A70s 2019 Premium Edition Global Dual SIM TD-LTE", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-09-29", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 187.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 3.0, + "camera": 21.7, + "battery": 24.4, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.664762", + "updated_at": "2026-06-19T00:43:44.664762" +} diff --git a/site/public/v1/smartphones/sm-a707f-dsm-galaxy-a70s-2019-premium-edition-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/sm-a707f-dsm-galaxy-a70s-2019-premium-edition-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..21c2f093192 --- /dev/null +++ b/site/public/v1/smartphones/sm-a707f-dsm-galaxy-a70s-2019-premium-edition-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 3.0, + "camera": 21.7, + "battery": 24.4, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a707f-dsm-galaxy-a70s-2019-standard-edition-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/sm-a707f-dsm-galaxy-a70s-2019-standard-edition-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..8a4b673b09d --- /dev/null +++ b/site/public/v1/smartphones/sm-a707f-dsm-galaxy-a70s-2019-standard-edition-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 3927, + "slug": "sm-a707f-dsm-galaxy-a70s-2019-standard-edition-global-dual-sim-td-lte", + "name": "SM-A707F/DSM Galaxy A70s 2019 Standard Edition Global Dual SIM TD-LTE", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-09-29", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 187.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.0, + "performance": 1.5, + "camera": 21.7, + "battery": 24.4, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.664762", + "updated_at": "2026-06-19T00:43:44.664762" +} diff --git a/site/public/v1/smartphones/sm-a707f-dsm-galaxy-a70s-2019-standard-edition-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/sm-a707f-dsm-galaxy-a70s-2019-standard-edition-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..802e77dd5a4 --- /dev/null +++ b/site/public/v1/smartphones/sm-a707f-dsm-galaxy-a70s-2019-standard-edition-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.0, + "performance": 1.5, + "camera": 21.7, + "battery": 24.4, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a715f-ds-galaxy-a71-2019-standard-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a715f-ds-galaxy-a71-2019-standard-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..d3481a9c314 --- /dev/null +++ b/site/public/v1/smartphones/sm-a715f-ds-galaxy-a71-2019-standard-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4139, + "slug": "sm-a715f-ds-galaxy-a71-2019-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A715F/DS Galaxy A71 2019 Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2020-01-01", + "msrp_usd": 390, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 1.5, + "camera": 21.5, + "battery": 24.4, + "display": 44.4, + "value": 58.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.692786", + "updated_at": "2026-06-19T00:43:44.692786" +} diff --git a/site/public/v1/smartphones/sm-a715f-ds-galaxy-a71-2019-standard-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a715f-ds-galaxy-a71-2019-standard-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..46f700cf68a --- /dev/null +++ b/site/public/v1/smartphones/sm-a715f-ds-galaxy-a71-2019-standard-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 1.5, + "camera": 21.5, + "battery": 24.4, + "display": 44.4, + "value": 58.0 +} diff --git a/site/public/v1/smartphones/sm-a715f-dsm-galaxy-a71-2019-premium-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a715f-dsm-galaxy-a71-2019-premium-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..8002cfdf480 --- /dev/null +++ b/site/public/v1/smartphones/sm-a715f-dsm-galaxy-a71-2019-premium-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4140, + "slug": "sm-a715f-dsm-galaxy-a71-2019-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A715F/DSM Galaxy A71 2019 Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2020-02-24", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 3.0, + "camera": 21.5, + "battery": 24.4, + "display": 44.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.692786", + "updated_at": "2026-06-19T00:43:44.692786" +} diff --git a/site/public/v1/smartphones/sm-a715f-dsm-galaxy-a71-2019-premium-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a715f-dsm-galaxy-a71-2019-premium-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..62292f52abd --- /dev/null +++ b/site/public/v1/smartphones/sm-a715f-dsm-galaxy-a71-2019-premium-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 3.0, + "camera": 21.5, + "battery": 24.4, + "display": 44.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a715f-dsm-galaxy-a71-2019-standard-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a715f-dsm-galaxy-a71-2019-standard-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..fd061585b52 --- /dev/null +++ b/site/public/v1/smartphones/sm-a715f-dsm-galaxy-a71-2019-standard-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4141, + "slug": "sm-a715f-dsm-galaxy-a71-2019-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-A715F/DSM Galaxy A71 2019 Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2020-01-01", + "msrp_usd": 385, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 1.5, + "camera": 21.5, + "battery": 24.4, + "display": 44.4, + "value": 58.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.693787", + "updated_at": "2026-06-19T00:43:44.693787" +} diff --git a/site/public/v1/smartphones/sm-a715f-dsm-galaxy-a71-2019-standard-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a715f-dsm-galaxy-a71-2019-standard-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..991812100fe --- /dev/null +++ b/site/public/v1/smartphones/sm-a715f-dsm-galaxy-a71-2019-standard-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 1.5, + "camera": 21.5, + "battery": 24.4, + "display": 44.4, + "value": 58.2 +} diff --git a/site/public/v1/smartphones/sm-a715f-galaxy-a71-2019-premium-edition-global-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a715f-galaxy-a71-2019-premium-edition-global-td-lte-128gb/index.json new file mode 100644 index 00000000000..ae0a88ae4d4 --- /dev/null +++ b/site/public/v1/smartphones/sm-a715f-galaxy-a71-2019-premium-edition-global-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4142, + "slug": "sm-a715f-galaxy-a71-2019-premium-edition-global-td-lte-128gb", + "name": "SM-A715F Galaxy A71 2019 Premium Edition Global TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2020-02-01", + "msrp_usd": 390, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 1.5, + "camera": 21.5, + "battery": 24.4, + "display": 44.4, + "value": 58.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.693787", + "updated_at": "2026-06-19T00:43:44.693787" +} diff --git a/site/public/v1/smartphones/sm-a715f-galaxy-a71-2019-premium-edition-global-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a715f-galaxy-a71-2019-premium-edition-global-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..46f700cf68a --- /dev/null +++ b/site/public/v1/smartphones/sm-a715f-galaxy-a71-2019-premium-edition-global-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 1.5, + "camera": 21.5, + "battery": 24.4, + "display": 44.4, + "value": 58.0 +} diff --git a/site/public/v1/smartphones/sm-a715w-galaxy-a71-2019-td-lte-ca-128gb/index.json b/site/public/v1/smartphones/sm-a715w-galaxy-a71-2019-td-lte-ca-128gb/index.json new file mode 100644 index 00000000000..e2dbe5ea80e --- /dev/null +++ b/site/public/v1/smartphones/sm-a715w-galaxy-a71-2019-td-lte-ca-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4143, + "slug": "sm-a715w-galaxy-a71-2019-td-lte-ca-128gb", + "name": "SM-A715W Galaxy A71 2019 TD-LTE CA 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2020-02-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 1.5, + "camera": 21.5, + "battery": 24.4, + "display": 44.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.693787", + "updated_at": "2026-06-19T00:43:44.693787" +} diff --git a/site/public/v1/smartphones/sm-a715w-galaxy-a71-2019-td-lte-ca-128gb/score/index.json b/site/public/v1/smartphones/sm-a715w-galaxy-a71-2019-td-lte-ca-128gb/score/index.json new file mode 100644 index 00000000000..3de7b07d19d --- /dev/null +++ b/site/public/v1/smartphones/sm-a715w-galaxy-a71-2019-td-lte-ca-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 1.5, + "camera": 21.5, + "battery": 24.4, + "display": 44.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a7160-galaxy-a71-5g-dual-sim-td-lte-cn/index.json b/site/public/v1/smartphones/sm-a7160-galaxy-a71-5g-dual-sim-td-lte-cn/index.json new file mode 100644 index 00000000000..0a59e0a1785 --- /dev/null +++ b/site/public/v1/smartphones/sm-a7160-galaxy-a71-5g-dual-sim-td-lte-cn/index.json @@ -0,0 +1,76 @@ +{ + "id": 4144, + "slug": "sm-a7160-galaxy-a71-5g-dual-sim-td-lte-cn", + "name": "SM-A7160 Galaxy A71 5G Dual SIM TD-LTE CN", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 193, + "slug": "exynos-980", + "name": "Exynos 980", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali G76 MP5", + "url": "/v1/socs/exynos-980" + }, + "release_date": "2020-07-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 3.0, + "camera": 21.5, + "battery": 24.4, + "display": 44.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.693787", + "updated_at": "2026-06-19T00:43:44.693787" +} diff --git a/site/public/v1/smartphones/sm-a7160-galaxy-a71-5g-dual-sim-td-lte-cn/score/index.json b/site/public/v1/smartphones/sm-a7160-galaxy-a71-5g-dual-sim-td-lte-cn/score/index.json new file mode 100644 index 00000000000..62292f52abd --- /dev/null +++ b/site/public/v1/smartphones/sm-a7160-galaxy-a71-5g-dual-sim-td-lte-cn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 3.0, + "camera": 21.5, + "battery": 24.4, + "display": 44.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a716b-ds-galaxy-a71-5g-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a716b-ds-galaxy-a71-5g-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..50b1caa360d --- /dev/null +++ b/site/public/v1/smartphones/sm-a716b-ds-galaxy-a71-5g-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4145, + "slug": "sm-a716b-ds-galaxy-a71-5g-global-dual-sim-td-lte-128gb", + "name": "SM-A716B/DS Galaxy A71 5G Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 193, + "slug": "exynos-980", + "name": "Exynos 980", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali G76 MP5", + "url": "/v1/socs/exynos-980" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 3.0, + "camera": 21.5, + "battery": 24.4, + "display": 44.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.693787", + "updated_at": "2026-06-19T00:43:44.693787" +} diff --git a/site/public/v1/smartphones/sm-a716b-ds-galaxy-a71-5g-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a716b-ds-galaxy-a71-5g-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..62292f52abd --- /dev/null +++ b/site/public/v1/smartphones/sm-a716b-ds-galaxy-a71-5g-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 3.0, + "camera": 21.5, + "battery": 24.4, + "display": 44.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a716b-galaxy-a71-5g-global-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a716b-galaxy-a71-5g-global-td-lte-128gb/index.json new file mode 100644 index 00000000000..15a348c35c9 --- /dev/null +++ b/site/public/v1/smartphones/sm-a716b-galaxy-a71-5g-global-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4146, + "slug": "sm-a716b-galaxy-a71-5g-global-td-lte-128gb", + "name": "SM-A716B Galaxy A71 5G Global TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 193, + "slug": "exynos-980", + "name": "Exynos 980", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali G76 MP5", + "url": "/v1/socs/exynos-980" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 3.0, + "camera": 21.5, + "battery": 24.4, + "display": 44.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.693787", + "updated_at": "2026-06-19T00:43:44.693787" +} diff --git a/site/public/v1/smartphones/sm-a716b-galaxy-a71-5g-global-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a716b-galaxy-a71-5g-global-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..62292f52abd --- /dev/null +++ b/site/public/v1/smartphones/sm-a716b-galaxy-a71-5g-global-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 3.0, + "camera": 21.5, + "battery": 24.4, + "display": 44.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716a/index.json b/site/public/v1/smartphones/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716a/index.json new file mode 100644 index 00000000000..a4461e97703 --- /dev/null +++ b/site/public/v1/smartphones/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716a/index.json @@ -0,0 +1,76 @@ +{ + "id": 4147, + "slug": "sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716a", + "name": "SM-A716U Galaxy A71 5G TD-LTE US / SM-A716A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-06-27", + "msrp_usd": 549, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 1.5, + "camera": 21.5, + "battery": 24.4, + "display": 44.4, + "value": 51.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.693787", + "updated_at": "2026-06-19T00:43:44.693787" +} diff --git a/site/public/v1/smartphones/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716a/score/index.json b/site/public/v1/smartphones/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716a/score/index.json new file mode 100644 index 00000000000..9142d106264 --- /dev/null +++ b/site/public/v1/smartphones/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 1.5, + "camera": 21.5, + "battery": 24.4, + "display": 44.4, + "value": 51.8 +} diff --git a/site/public/v1/smartphones/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716p/index.json b/site/public/v1/smartphones/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716p/index.json new file mode 100644 index 00000000000..dff46ab6898 --- /dev/null +++ b/site/public/v1/smartphones/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716p/index.json @@ -0,0 +1,76 @@ +{ + "id": 4148, + "slug": "sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716p", + "name": "SM-A716U Galaxy A71 5G TD-LTE US / SM-A716P", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-06-19", + "msrp_usd": 549, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 1.5, + "camera": 21.5, + "battery": 24.4, + "display": 44.4, + "value": 51.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.694785", + "updated_at": "2026-06-19T00:43:44.694785" +} diff --git a/site/public/v1/smartphones/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716p/score/index.json b/site/public/v1/smartphones/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716p/score/index.json new file mode 100644 index 00000000000..9142d106264 --- /dev/null +++ b/site/public/v1/smartphones/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716p/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 1.5, + "camera": 21.5, + "battery": 24.4, + "display": 44.4, + "value": 51.8 +} diff --git a/site/public/v1/smartphones/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716r4/index.json b/site/public/v1/smartphones/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716r4/index.json new file mode 100644 index 00000000000..b6a4b55990d --- /dev/null +++ b/site/public/v1/smartphones/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716r4/index.json @@ -0,0 +1,77 @@ +{ + "id": 4149, + "slug": "sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716r4", + "name": "SM-A716U Galaxy A71 5G TD-LTE US / SM-A716R4", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-06-01", + "msrp_usd": 599, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 1.5, + "camera": 21.5, + "battery": 24.4, + "display": 26.9, + "value": 47.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.694785", + "updated_at": "2026-06-19T00:43:44.694785" +} diff --git a/site/public/v1/smartphones/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716r4/score/index.json b/site/public/v1/smartphones/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716r4/score/index.json new file mode 100644 index 00000000000..a792ef2fd8a --- /dev/null +++ b/site/public/v1/smartphones/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716r4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 1.5, + "camera": 21.5, + "battery": 24.4, + "display": 26.9, + "value": 47.8 +} diff --git a/site/public/v1/smartphones/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716t/index.json b/site/public/v1/smartphones/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716t/index.json new file mode 100644 index 00000000000..c3de56cce3a --- /dev/null +++ b/site/public/v1/smartphones/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716t/index.json @@ -0,0 +1,76 @@ +{ + "id": 4150, + "slug": "sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716t", + "name": "SM-A716U Galaxy A71 5G TD-LTE US / SM-A716T", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-06-19", + "msrp_usd": 549, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 1.5, + "camera": 21.5, + "battery": 24.4, + "display": 44.4, + "value": 51.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.694785", + "updated_at": "2026-06-19T00:43:44.694785" +} diff --git a/site/public/v1/smartphones/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716t/score/index.json b/site/public/v1/smartphones/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716t/score/index.json new file mode 100644 index 00000000000..9142d106264 --- /dev/null +++ b/site/public/v1/smartphones/sm-a716u-galaxy-a71-5g-td-lte-us-sm-a716t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 1.5, + "camera": 21.5, + "battery": 24.4, + "display": 44.4, + "value": 51.8 +} diff --git a/site/public/v1/smartphones/sm-a716u-galaxy-a71-uw-5g-lte-a-us-sm-a716v/index.json b/site/public/v1/smartphones/sm-a716u-galaxy-a71-uw-5g-lte-a-us-sm-a716v/index.json new file mode 100644 index 00000000000..146d1f1db8f --- /dev/null +++ b/site/public/v1/smartphones/sm-a716u-galaxy-a71-uw-5g-lte-a-us-sm-a716v/index.json @@ -0,0 +1,76 @@ +{ + "id": 4151, + "slug": "sm-a716u-galaxy-a71-uw-5g-lte-a-us-sm-a716v", + "name": "SM-A716U Galaxy A71 UW 5G LTE-A US / SM-A716V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-07-16", + "msrp_usd": 599, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 3.0, + "camera": 21.5, + "battery": 24.4, + "display": 44.4, + "value": 50.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.694785", + "updated_at": "2026-06-19T00:43:44.694785" +} diff --git a/site/public/v1/smartphones/sm-a716u-galaxy-a71-uw-5g-lte-a-us-sm-a716v/score/index.json b/site/public/v1/smartphones/sm-a716u-galaxy-a71-uw-5g-lte-a-us-sm-a716v/score/index.json new file mode 100644 index 00000000000..246e021a4fa --- /dev/null +++ b/site/public/v1/smartphones/sm-a716u-galaxy-a71-uw-5g-lte-a-us-sm-a716v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 3.0, + "camera": 21.5, + "battery": 24.4, + "display": 44.4, + "value": 50.1 +} diff --git a/site/public/v1/smartphones/sm-a716u1-galaxy-a71-5g-td-lte-us/index.json b/site/public/v1/smartphones/sm-a716u1-galaxy-a71-5g-td-lte-us/index.json new file mode 100644 index 00000000000..4b545d2a90d --- /dev/null +++ b/site/public/v1/smartphones/sm-a716u1-galaxy-a71-5g-td-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 4152, + "slug": "sm-a716u1-galaxy-a71-5g-td-lte-us", + "name": "SM-A716U1 Galaxy A71 5G TD-LTE US", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-06-01", + "msrp_usd": 600, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 1.5, + "camera": 21.5, + "battery": 24.4, + "display": 44.4, + "value": 49.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.694785", + "updated_at": "2026-06-19T00:43:44.694785" +} diff --git a/site/public/v1/smartphones/sm-a716u1-galaxy-a71-5g-td-lte-us/score/index.json b/site/public/v1/smartphones/sm-a716u1-galaxy-a71-5g-td-lte-us/score/index.json new file mode 100644 index 00000000000..38d87692a3b --- /dev/null +++ b/site/public/v1/smartphones/sm-a716u1-galaxy-a71-5g-td-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 1.5, + "camera": 21.5, + "battery": 24.4, + "display": 44.4, + "value": 49.9 +} diff --git a/site/public/v1/smartphones/sm-a730f-ds-galaxy-a8-2018-standard-edition-duos-global-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-a730f-ds-galaxy-a8-2018-standard-edition-duos-global-td-lte-64gb/index.json new file mode 100644 index 00000000000..6906f2835a6 --- /dev/null +++ b/site/public/v1/smartphones/sm-a730f-ds-galaxy-a8-2018-standard-edition-duos-global-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3755, + "slug": "sm-a730f-ds-galaxy-a8-2018-standard-edition-duos-global-td-lte-64gb", + "name": "SM-A730F/DS Galaxy A8+ 2018 Standard Edition Duos Global TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 186, + "slug": "exynos-7885", + "name": "Exynos 7885", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7885" + }, + "release_date": "2018-01-06", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": 0.0, + "camera": 6.3, + "battery": 7.5, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.639427", + "updated_at": "2026-06-19T00:43:44.639427" +} diff --git a/site/public/v1/smartphones/sm-a730f-ds-galaxy-a8-2018-standard-edition-duos-global-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-a730f-ds-galaxy-a8-2018-standard-edition-duos-global-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..38e24de9336 --- /dev/null +++ b/site/public/v1/smartphones/sm-a730f-ds-galaxy-a8-2018-standard-edition-duos-global-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": 0.0, + "camera": 6.3, + "battery": 7.5, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a730f-galaxy-a8-2018-standard-edition-global-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-a730f-galaxy-a8-2018-standard-edition-global-td-lte-64gb/index.json new file mode 100644 index 00000000000..846717a81e6 --- /dev/null +++ b/site/public/v1/smartphones/sm-a730f-galaxy-a8-2018-standard-edition-global-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3756, + "slug": "sm-a730f-galaxy-a8-2018-standard-edition-global-td-lte-64gb", + "name": "SM-A730F Galaxy A8+ 2018 Standard Edition Global TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 186, + "slug": "exynos-7885", + "name": "Exynos 7885", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7885" + }, + "release_date": "2018-01-06", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": 0.0, + "camera": 6.3, + "battery": 7.5, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.640426", + "updated_at": "2026-06-19T00:43:44.640426" +} diff --git a/site/public/v1/smartphones/sm-a730f-galaxy-a8-2018-standard-edition-global-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-a730f-galaxy-a8-2018-standard-edition-global-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..38e24de9336 --- /dev/null +++ b/site/public/v1/smartphones/sm-a730f-galaxy-a8-2018-standard-edition-global-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": 0.0, + "camera": 6.3, + "battery": 7.5, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a750c-galaxy-a7-2018-duos-td-lte-jp-64gb/index.json b/site/public/v1/smartphones/sm-a750c-galaxy-a7-2018-duos-td-lte-jp-64gb/index.json new file mode 100644 index 00000000000..1b7236441dc --- /dev/null +++ b/site/public/v1/smartphones/sm-a750c-galaxy-a7-2018-duos-td-lte-jp-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3928, + "slug": "sm-a750c-galaxy-a7-2018-duos-td-lte-jp-64gb", + "name": "SM-A750C Galaxy A7 2018 Duos TD-LTE JP 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 186, + "slug": "exynos-7885", + "name": "Exynos 7885", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7885" + }, + "release_date": "2019-09-06", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 8.8, + "battery": 4.5, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.664762", + "updated_at": "2026-06-19T00:43:44.664762" +} diff --git a/site/public/v1/smartphones/sm-a750c-galaxy-a7-2018-duos-td-lte-jp-64gb/score/index.json b/site/public/v1/smartphones/sm-a750c-galaxy-a7-2018-duos-td-lte-jp-64gb/score/index.json new file mode 100644 index 00000000000..b6d17660ed3 --- /dev/null +++ b/site/public/v1/smartphones/sm-a750c-galaxy-a7-2018-duos-td-lte-jp-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 8.8, + "battery": 4.5, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a750f-ds-galaxy-a7-2018-duos-global-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a750f-ds-galaxy-a7-2018-duos-global-td-lte-128gb/index.json new file mode 100644 index 00000000000..f3d27e0812c --- /dev/null +++ b/site/public/v1/smartphones/sm-a750f-ds-galaxy-a7-2018-duos-global-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3757, + "slug": "sm-a750f-ds-galaxy-a7-2018-duos-global-td-lte-128gb", + "name": "SM-A750F/DS Galaxy A7 2018 Duos Global TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 186, + "slug": "exynos-7885", + "name": "Exynos 7885", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7885" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": 1.5, + "camera": 8.8, + "battery": 4.5, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.640426", + "updated_at": "2026-06-19T00:43:44.640426" +} diff --git a/site/public/v1/smartphones/sm-a750f-ds-galaxy-a7-2018-duos-global-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a750f-ds-galaxy-a7-2018-duos-global-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..e39e0909121 --- /dev/null +++ b/site/public/v1/smartphones/sm-a750f-ds-galaxy-a7-2018-duos-global-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": 1.5, + "camera": 8.8, + "battery": 4.5, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a750f-ds-galaxy-a7-2018-duos-global-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-a750f-ds-galaxy-a7-2018-duos-global-td-lte-64gb/index.json new file mode 100644 index 00000000000..ecb50f6c1c8 --- /dev/null +++ b/site/public/v1/smartphones/sm-a750f-ds-galaxy-a7-2018-duos-global-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3758, + "slug": "sm-a750f-ds-galaxy-a7-2018-duos-global-td-lte-64gb", + "name": "SM-A750F/DS Galaxy A7 2018 Duos Global TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 186, + "slug": "exynos-7885", + "name": "Exynos 7885", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7885" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 8.8, + "battery": 4.5, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.640426", + "updated_at": "2026-06-19T00:43:44.640426" +} diff --git a/site/public/v1/smartphones/sm-a750f-ds-galaxy-a7-2018-duos-global-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-a750f-ds-galaxy-a7-2018-duos-global-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..b6d17660ed3 --- /dev/null +++ b/site/public/v1/smartphones/sm-a750f-ds-galaxy-a7-2018-duos-global-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 8.8, + "battery": 4.5, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a750fn-ds-galaxy-a7-2018-duos-global-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-a750fn-ds-galaxy-a7-2018-duos-global-td-lte-64gb/index.json new file mode 100644 index 00000000000..024cbd52a50 --- /dev/null +++ b/site/public/v1/smartphones/sm-a750fn-ds-galaxy-a7-2018-duos-global-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3759, + "slug": "sm-a750fn-ds-galaxy-a7-2018-duos-global-td-lte-64gb", + "name": "SM-A750FN/DS Galaxy A7 2018 Duos Global TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 186, + "slug": "exynos-7885", + "name": "Exynos 7885", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7885" + }, + "release_date": "2018-10-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 8.8, + "battery": 4.5, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.640426", + "updated_at": "2026-06-19T00:43:44.640426" +} diff --git a/site/public/v1/smartphones/sm-a750fn-ds-galaxy-a7-2018-duos-global-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-a750fn-ds-galaxy-a7-2018-duos-global-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..b6d17660ed3 --- /dev/null +++ b/site/public/v1/smartphones/sm-a750fn-ds-galaxy-a7-2018-duos-global-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 8.8, + "battery": 4.5, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a750fn-galaxy-a7-2018-td-lte-emea-64gb/index.json b/site/public/v1/smartphones/sm-a750fn-galaxy-a7-2018-td-lte-emea-64gb/index.json new file mode 100644 index 00000000000..a3aca120127 --- /dev/null +++ b/site/public/v1/smartphones/sm-a750fn-galaxy-a7-2018-td-lte-emea-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3760, + "slug": "sm-a750fn-galaxy-a7-2018-td-lte-emea-64gb", + "name": "SM-A750FN Galaxy A7 2018 TD-LTE EMEA 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 186, + "slug": "exynos-7885", + "name": "Exynos 7885", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7885" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 8.8, + "battery": 4.5, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.641428", + "updated_at": "2026-06-19T00:43:44.641428" +} diff --git a/site/public/v1/smartphones/sm-a750fn-galaxy-a7-2018-td-lte-emea-64gb/score/index.json b/site/public/v1/smartphones/sm-a750fn-galaxy-a7-2018-td-lte-emea-64gb/score/index.json new file mode 100644 index 00000000000..b6d17660ed3 --- /dev/null +++ b/site/public/v1/smartphones/sm-a750fn-galaxy-a7-2018-td-lte-emea-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 8.8, + "battery": 4.5, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a750g-ds-galaxy-a7-2018-duos-td-lte-latam-64gb/index.json b/site/public/v1/smartphones/sm-a750g-ds-galaxy-a7-2018-duos-td-lte-latam-64gb/index.json new file mode 100644 index 00000000000..e8c79a68cab --- /dev/null +++ b/site/public/v1/smartphones/sm-a750g-ds-galaxy-a7-2018-duos-td-lte-latam-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3761, + "slug": "sm-a750g-ds-galaxy-a7-2018-duos-td-lte-latam-64gb", + "name": "SM-A750G/DS Galaxy A7 2018 Duos TD-LTE LATAM 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 186, + "slug": "exynos-7885", + "name": "Exynos 7885", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7885" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 8.8, + "battery": 4.5, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.641428", + "updated_at": "2026-06-19T00:43:44.641428" +} diff --git a/site/public/v1/smartphones/sm-a750g-ds-galaxy-a7-2018-duos-td-lte-latam-64gb/score/index.json b/site/public/v1/smartphones/sm-a750g-ds-galaxy-a7-2018-duos-td-lte-latam-64gb/score/index.json new file mode 100644 index 00000000000..b6d17660ed3 --- /dev/null +++ b/site/public/v1/smartphones/sm-a750g-ds-galaxy-a7-2018-duos-td-lte-latam-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 8.8, + "battery": 4.5, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a750g-galaxy-a7-2018-td-lte-latam-64gb/index.json b/site/public/v1/smartphones/sm-a750g-galaxy-a7-2018-td-lte-latam-64gb/index.json new file mode 100644 index 00000000000..dddc3bb292e --- /dev/null +++ b/site/public/v1/smartphones/sm-a750g-galaxy-a7-2018-td-lte-latam-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3762, + "slug": "sm-a750g-galaxy-a7-2018-td-lte-latam-64gb", + "name": "SM-A750G Galaxy A7 2018 TD-LTE LATAM 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 186, + "slug": "exynos-7885", + "name": "Exynos 7885", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7885" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 8.8, + "battery": 4.5, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.641428", + "updated_at": "2026-06-19T00:43:44.641428" +} diff --git a/site/public/v1/smartphones/sm-a750g-galaxy-a7-2018-td-lte-latam-64gb/score/index.json b/site/public/v1/smartphones/sm-a750g-galaxy-a7-2018-td-lte-latam-64gb/score/index.json new file mode 100644 index 00000000000..b6d17660ed3 --- /dev/null +++ b/site/public/v1/smartphones/sm-a750g-galaxy-a7-2018-td-lte-latam-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 8.8, + "battery": 4.5, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a750gn-ds-galaxy-a7-2018-duos-td-lte-apac-128gb/index.json b/site/public/v1/smartphones/sm-a750gn-ds-galaxy-a7-2018-duos-td-lte-apac-128gb/index.json new file mode 100644 index 00000000000..75bd84d1401 --- /dev/null +++ b/site/public/v1/smartphones/sm-a750gn-ds-galaxy-a7-2018-duos-td-lte-apac-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3763, + "slug": "sm-a750gn-ds-galaxy-a7-2018-duos-td-lte-apac-128gb", + "name": "SM-A750GN/DS Galaxy A7 2018 Duos TD-LTE APAC 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 186, + "slug": "exynos-7885", + "name": "Exynos 7885", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7885" + }, + "release_date": "2018-10-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 8.8, + "battery": 4.5, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.641428", + "updated_at": "2026-06-19T00:43:44.641428" +} diff --git a/site/public/v1/smartphones/sm-a750gn-ds-galaxy-a7-2018-duos-td-lte-apac-128gb/score/index.json b/site/public/v1/smartphones/sm-a750gn-ds-galaxy-a7-2018-duos-td-lte-apac-128gb/score/index.json new file mode 100644 index 00000000000..b6d17660ed3 --- /dev/null +++ b/site/public/v1/smartphones/sm-a750gn-ds-galaxy-a7-2018-duos-td-lte-apac-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 8.8, + "battery": 4.5, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a750gn-ds-galaxy-a7-2018-duos-td-lte-apac-64gb/index.json b/site/public/v1/smartphones/sm-a750gn-ds-galaxy-a7-2018-duos-td-lte-apac-64gb/index.json new file mode 100644 index 00000000000..7501d919e98 --- /dev/null +++ b/site/public/v1/smartphones/sm-a750gn-ds-galaxy-a7-2018-duos-td-lte-apac-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3764, + "slug": "sm-a750gn-ds-galaxy-a7-2018-duos-td-lte-apac-64gb", + "name": "SM-A750GN/DS Galaxy A7 2018 Duos TD-LTE APAC 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 186, + "slug": "exynos-7885", + "name": "Exynos 7885", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7885" + }, + "release_date": "2018-10-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 8.8, + "battery": 4.5, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.641428", + "updated_at": "2026-06-19T00:43:44.641428" +} diff --git a/site/public/v1/smartphones/sm-a750gn-ds-galaxy-a7-2018-duos-td-lte-apac-64gb/score/index.json b/site/public/v1/smartphones/sm-a750gn-ds-galaxy-a7-2018-duos-td-lte-apac-64gb/score/index.json new file mode 100644 index 00000000000..b6d17660ed3 --- /dev/null +++ b/site/public/v1/smartphones/sm-a750gn-ds-galaxy-a7-2018-duos-td-lte-apac-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 8.8, + "battery": 4.5, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a750n-galaxy-a7-2018-td-lte-kr/index.json b/site/public/v1/smartphones/sm-a750n-galaxy-a7-2018-td-lte-kr/index.json new file mode 100644 index 00000000000..d3a0bd61e91 --- /dev/null +++ b/site/public/v1/smartphones/sm-a750n-galaxy-a7-2018-td-lte-kr/index.json @@ -0,0 +1,76 @@ +{ + "id": 3765, + "slug": "sm-a750n-galaxy-a7-2018-td-lte-kr", + "name": "SM-A750N Galaxy A7 2018 TD-LTE KR", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 186, + "slug": "exynos-7885", + "name": "Exynos 7885", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7885" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.05, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 8.8, + "battery": 4.5, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.641428", + "updated_at": "2026-06-19T00:43:44.641428" +} diff --git a/site/public/v1/smartphones/sm-a750n-galaxy-a7-2018-td-lte-kr/score/index.json b/site/public/v1/smartphones/sm-a750n-galaxy-a7-2018-td-lte-kr/score/index.json new file mode 100644 index 00000000000..b6d17660ed3 --- /dev/null +++ b/site/public/v1/smartphones/sm-a750n-galaxy-a7-2018-td-lte-kr/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 0.0, + "camera": 8.8, + "battery": 4.5, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a8050-galaxy-a80-2019-dual-sim-td-lte-cn/index.json b/site/public/v1/smartphones/sm-a8050-galaxy-a80-2019-dual-sim-td-lte-cn/index.json new file mode 100644 index 00000000000..9462eba863c --- /dev/null +++ b/site/public/v1/smartphones/sm-a8050-galaxy-a80-2019-dual-sim-td-lte-cn/index.json @@ -0,0 +1,72 @@ +{ + "id": 3929, + "slug": "sm-a8050-galaxy-a80-2019-dual-sim-td-lte-cn", + "name": "SM-A8050 Galaxy A80 2019 Dual SIM TD-LTE CN", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-07-19", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 3.0, + "camera": 16.5, + "battery": 12.4, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.664762", + "updated_at": "2026-06-19T00:43:44.664762" +} diff --git a/site/public/v1/smartphones/sm-a8050-galaxy-a80-2019-dual-sim-td-lte-cn/score/index.json b/site/public/v1/smartphones/sm-a8050-galaxy-a80-2019-dual-sim-td-lte-cn/score/index.json new file mode 100644 index 00000000000..629cb480340 --- /dev/null +++ b/site/public/v1/smartphones/sm-a8050-galaxy-a80-2019-dual-sim-td-lte-cn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 3.0, + "camera": 16.5, + "battery": 12.4, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a805f-ds-galaxy-a80-2019-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/sm-a805f-ds-galaxy-a80-2019-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..7dadfa13805 --- /dev/null +++ b/site/public/v1/smartphones/sm-a805f-ds-galaxy-a80-2019-global-dual-sim-td-lte/index.json @@ -0,0 +1,72 @@ +{ + "id": 3930, + "slug": "sm-a805f-ds-galaxy-a80-2019-global-dual-sim-td-lte", + "name": "SM-A805F/DS Galaxy A80 2019 Global Dual SIM TD-LTE", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-05-29", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 3.0, + "camera": 16.5, + "battery": 12.4, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.664762", + "updated_at": "2026-06-19T00:43:44.664762" +} diff --git a/site/public/v1/smartphones/sm-a805f-ds-galaxy-a80-2019-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/sm-a805f-ds-galaxy-a80-2019-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..629cb480340 --- /dev/null +++ b/site/public/v1/smartphones/sm-a805f-ds-galaxy-a80-2019-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 3.0, + "camera": 16.5, + "battery": 12.4, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a805f-galaxy-a80-2019-global-td-lte/index.json b/site/public/v1/smartphones/sm-a805f-galaxy-a80-2019-global-td-lte/index.json new file mode 100644 index 00000000000..84d907498dc --- /dev/null +++ b/site/public/v1/smartphones/sm-a805f-galaxy-a80-2019-global-td-lte/index.json @@ -0,0 +1,72 @@ +{ + "id": 3931, + "slug": "sm-a805f-galaxy-a80-2019-global-td-lte", + "name": "SM-A805F Galaxy A80 2019 Global TD-LTE", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-05-29", + "msrp_usd": 649, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 3.0, + "camera": 16.5, + "battery": 12.4, + "display": 44.3, + "value": 46.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.664762", + "updated_at": "2026-06-19T00:43:44.664762" +} diff --git a/site/public/v1/smartphones/sm-a805f-galaxy-a80-2019-global-td-lte/score/index.json b/site/public/v1/smartphones/sm-a805f-galaxy-a80-2019-global-td-lte/score/index.json new file mode 100644 index 00000000000..9bc5860e264 --- /dev/null +++ b/site/public/v1/smartphones/sm-a805f-galaxy-a80-2019-global-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 3.0, + "camera": 16.5, + "battery": 12.4, + "display": 44.3, + "value": 46.2 +} diff --git a/site/public/v1/smartphones/sm-a805n-galaxy-a80-2019-td-lte-kr/index.json b/site/public/v1/smartphones/sm-a805n-galaxy-a80-2019-td-lte-kr/index.json new file mode 100644 index 00000000000..afce3ea8d7c --- /dev/null +++ b/site/public/v1/smartphones/sm-a805n-galaxy-a80-2019-td-lte-kr/index.json @@ -0,0 +1,72 @@ +{ + "id": 3932, + "slug": "sm-a805n-galaxy-a80-2019-td-lte-kr", + "name": "SM-A805N Galaxy A80 2019 TD-LTE KR", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-08-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 3.0, + "camera": 16.5, + "battery": 12.4, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.665763", + "updated_at": "2026-06-19T00:43:44.665763" +} diff --git a/site/public/v1/smartphones/sm-a805n-galaxy-a80-2019-td-lte-kr/score/index.json b/site/public/v1/smartphones/sm-a805n-galaxy-a80-2019-td-lte-kr/score/index.json new file mode 100644 index 00000000000..629cb480340 --- /dev/null +++ b/site/public/v1/smartphones/sm-a805n-galaxy-a80-2019-td-lte-kr/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 3.0, + "camera": 16.5, + "battery": 12.4, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a826s-galaxy-quantum-2-5g-td-lte-kr-128gb/index.json b/site/public/v1/smartphones/sm-a826s-galaxy-quantum-2-5g-td-lte-kr-128gb/index.json new file mode 100644 index 00000000000..ec569aed1ad --- /dev/null +++ b/site/public/v1/smartphones/sm-a826s-galaxy-quantum-2-5g-td-lte-kr-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4386, + "slug": "sm-a826s-galaxy-quantum-2-5g-td-lte-kr-128gb", + "name": "SM-A826S Galaxy Quantum 2 5G TD-LTE KR 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2021-04-22", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.1, + "performance": 1.5, + "camera": 21.5, + "battery": 24.4, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.727204", + "updated_at": "2026-06-19T00:43:44.727204" +} diff --git a/site/public/v1/smartphones/sm-a826s-galaxy-quantum-2-5g-td-lte-kr-128gb/score/index.json b/site/public/v1/smartphones/sm-a826s-galaxy-quantum-2-5g-td-lte-kr-128gb/score/index.json new file mode 100644 index 00000000000..df5dd1291c6 --- /dev/null +++ b/site/public/v1/smartphones/sm-a826s-galaxy-quantum-2-5g-td-lte-kr-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.1, + "performance": 1.5, + "camera": 21.5, + "battery": 24.4, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a9080-galaxy-a90-2019-5g-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/sm-a9080-galaxy-a90-2019-5g-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..2020b9a230c --- /dev/null +++ b/site/public/v1/smartphones/sm-a9080-galaxy-a90-2019-5g-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3933, + "slug": "sm-a9080-galaxy-a90-2019-5g-dual-sim-td-lte-cn-128gb", + "name": "SM-A9080 Galaxy A90 2019 5G Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 1.5, + "camera": 16.5, + "battery": 24.4, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.665763", + "updated_at": "2026-06-19T00:43:44.665763" +} diff --git a/site/public/v1/smartphones/sm-a9080-galaxy-a90-2019-5g-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/sm-a9080-galaxy-a90-2019-5g-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..2d8326fa236 --- /dev/null +++ b/site/public/v1/smartphones/sm-a9080-galaxy-a90-2019-5g-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 1.5, + "camera": 16.5, + "battery": 24.4, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a908b-galaxy-a90-2019-5g-global-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-a908b-galaxy-a90-2019-5g-global-td-lte-128gb/index.json new file mode 100644 index 00000000000..b1fa0b8db6e --- /dev/null +++ b/site/public/v1/smartphones/sm-a908b-galaxy-a90-2019-5g-global-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3934, + "slug": "sm-a908b-galaxy-a90-2019-5g-global-td-lte-128gb", + "name": "SM-A908B Galaxy A90 2019 5G Global TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-10-04", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 1.5, + "camera": 16.5, + "battery": 24.4, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.665763", + "updated_at": "2026-06-19T00:43:44.665763" +} diff --git a/site/public/v1/smartphones/sm-a908b-galaxy-a90-2019-5g-global-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-a908b-galaxy-a90-2019-5g-global-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..2d8326fa236 --- /dev/null +++ b/site/public/v1/smartphones/sm-a908b-galaxy-a90-2019-5g-global-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 1.5, + "camera": 16.5, + "battery": 24.4, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a908n-galaxy-a90-2019-5g-td-lte-kr-128gb/index.json b/site/public/v1/smartphones/sm-a908n-galaxy-a90-2019-5g-td-lte-kr-128gb/index.json new file mode 100644 index 00000000000..02cbf8a1f77 --- /dev/null +++ b/site/public/v1/smartphones/sm-a908n-galaxy-a90-2019-5g-td-lte-kr-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3935, + "slug": "sm-a908n-galaxy-a90-2019-5g-td-lte-kr-128gb", + "name": "SM-A908N Galaxy A90 2019 5G TD-LTE KR 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 1.5, + "camera": 16.5, + "battery": 24.4, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.665763", + "updated_at": "2026-06-19T00:43:44.665763" +} diff --git a/site/public/v1/smartphones/sm-a908n-galaxy-a90-2019-5g-td-lte-kr-128gb/score/index.json b/site/public/v1/smartphones/sm-a908n-galaxy-a90-2019-5g-td-lte-kr-128gb/score/index.json new file mode 100644 index 00000000000..2d8326fa236 --- /dev/null +++ b/site/public/v1/smartphones/sm-a908n-galaxy-a90-2019-5g-td-lte-kr-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": 1.5, + "camera": 16.5, + "battery": 24.4, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a9200-galaxy-a9s-2018-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/sm-a9200-galaxy-a9s-2018-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..291539ee62c --- /dev/null +++ b/site/public/v1/smartphones/sm-a9200-galaxy-a9s-2018-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3766, + "slug": "sm-a9200-galaxy-a9s-2018-dual-sim-td-lte-cn-128gb", + "name": "SM-A9200 Galaxy A9s 2018 Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 19.5, + "camera": 8.8, + "battery": 12.0, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.642433", + "updated_at": "2026-06-19T00:43:44.642433" +} diff --git a/site/public/v1/smartphones/sm-a9200-galaxy-a9s-2018-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/sm-a9200-galaxy-a9s-2018-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..890ec616738 --- /dev/null +++ b/site/public/v1/smartphones/sm-a9200-galaxy-a9s-2018-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 19.5, + "camera": 8.8, + "battery": 12.0, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a9200-galaxy-a9s-2018-dual-sim-td-lte-cn-64gb/index.json b/site/public/v1/smartphones/sm-a9200-galaxy-a9s-2018-dual-sim-td-lte-cn-64gb/index.json new file mode 100644 index 00000000000..8e3a8aa03aa --- /dev/null +++ b/site/public/v1/smartphones/sm-a9200-galaxy-a9s-2018-dual-sim-td-lte-cn-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3767, + "slug": "sm-a9200-galaxy-a9s-2018-dual-sim-td-lte-cn-64gb", + "name": "SM-A9200 Galaxy A9s 2018 Dual SIM TD-LTE CN 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 392 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 19.5, + "camera": 8.8, + "battery": 12.0, + "display": 44.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.642433", + "updated_at": "2026-06-19T00:43:44.642433" +} diff --git a/site/public/v1/smartphones/sm-a9200-galaxy-a9s-2018-dual-sim-td-lte-cn-64gb/score/index.json b/site/public/v1/smartphones/sm-a9200-galaxy-a9s-2018-dual-sim-td-lte-cn-64gb/score/index.json new file mode 100644 index 00000000000..05c6871d1ea --- /dev/null +++ b/site/public/v1/smartphones/sm-a9200-galaxy-a9s-2018-dual-sim-td-lte-cn-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 19.5, + "camera": 8.8, + "battery": 12.0, + "display": 44.2, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a920f-ds-galaxy-a9-2018-duos-global-td-lte/index.json b/site/public/v1/smartphones/sm-a920f-ds-galaxy-a9-2018-duos-global-td-lte/index.json new file mode 100644 index 00000000000..6735f23fef4 --- /dev/null +++ b/site/public/v1/smartphones/sm-a920f-ds-galaxy-a9-2018-duos-global-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 3768, + "slug": "sm-a920f-ds-galaxy-a9-2018-duos-global-td-lte", + "name": "SM-A920F/DS Galaxy A9 2018 Duos Global TD-LTE", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-11-16", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 19.5, + "camera": 8.8, + "battery": 12.0, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.642433", + "updated_at": "2026-06-19T00:43:44.642433" +} diff --git a/site/public/v1/smartphones/sm-a920f-ds-galaxy-a9-2018-duos-global-td-lte/score/index.json b/site/public/v1/smartphones/sm-a920f-ds-galaxy-a9-2018-duos-global-td-lte/score/index.json new file mode 100644 index 00000000000..890ec616738 --- /dev/null +++ b/site/public/v1/smartphones/sm-a920f-ds-galaxy-a9-2018-duos-global-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 19.5, + "camera": 8.8, + "battery": 12.0, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a920f-ds-galaxy-a9-2018-premium-edition-duos-global-td-lte/index.json b/site/public/v1/smartphones/sm-a920f-ds-galaxy-a9-2018-premium-edition-duos-global-td-lte/index.json new file mode 100644 index 00000000000..2c580433f76 --- /dev/null +++ b/site/public/v1/smartphones/sm-a920f-ds-galaxy-a9-2018-premium-edition-duos-global-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 3769, + "slug": "sm-a920f-ds-galaxy-a9-2018-premium-edition-duos-global-td-lte", + "name": "SM-A920F/DS Galaxy A9 2018 Premium Edition Duos Global TD-LTE", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-11-28", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.5, + "performance": 21.0, + "camera": 8.8, + "battery": 12.0, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.642433", + "updated_at": "2026-06-19T00:43:44.642433" +} diff --git a/site/public/v1/smartphones/sm-a920f-ds-galaxy-a9-2018-premium-edition-duos-global-td-lte/score/index.json b/site/public/v1/smartphones/sm-a920f-ds-galaxy-a9-2018-premium-edition-duos-global-td-lte/score/index.json new file mode 100644 index 00000000000..c726cbc4cb7 --- /dev/null +++ b/site/public/v1/smartphones/sm-a920f-ds-galaxy-a9-2018-premium-edition-duos-global-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.5, + "performance": 21.0, + "camera": 8.8, + "battery": 12.0, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a920f-galaxy-a9-2018-global-td-lte/index.json b/site/public/v1/smartphones/sm-a920f-galaxy-a9-2018-global-td-lte/index.json new file mode 100644 index 00000000000..a635a0cce98 --- /dev/null +++ b/site/public/v1/smartphones/sm-a920f-galaxy-a9-2018-global-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 3770, + "slug": "sm-a920f-galaxy-a9-2018-global-td-lte", + "name": "SM-A920F Galaxy A9 2018 Global TD-LTE", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-11-16", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 19.5, + "camera": 8.8, + "battery": 12.0, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.642433", + "updated_at": "2026-06-19T00:43:44.642433" +} diff --git a/site/public/v1/smartphones/sm-a920f-galaxy-a9-2018-global-td-lte/score/index.json b/site/public/v1/smartphones/sm-a920f-galaxy-a9-2018-global-td-lte/score/index.json new file mode 100644 index 00000000000..890ec616738 --- /dev/null +++ b/site/public/v1/smartphones/sm-a920f-galaxy-a9-2018-global-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 19.5, + "camera": 8.8, + "battery": 12.0, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-a920n-galaxy-a9-2018-td-lte-kr/index.json b/site/public/v1/smartphones/sm-a920n-galaxy-a9-2018-td-lte-kr/index.json new file mode 100644 index 00000000000..b719278ec29 --- /dev/null +++ b/site/public/v1/smartphones/sm-a920n-galaxy-a9-2018-td-lte-kr/index.json @@ -0,0 +1,76 @@ +{ + "id": 3771, + "slug": "sm-a920n-galaxy-a9-2018-td-lte-kr", + "name": "SM-A920N Galaxy A9 2018 TD-LTE KR", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-12-21", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 19.5, + "camera": 8.8, + "battery": 12.0, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.642433", + "updated_at": "2026-06-19T00:43:44.642433" +} diff --git a/site/public/v1/smartphones/sm-a920n-galaxy-a9-2018-td-lte-kr/score/index.json b/site/public/v1/smartphones/sm-a920n-galaxy-a9-2018-td-lte-kr/score/index.json new file mode 100644 index 00000000000..890ec616738 --- /dev/null +++ b/site/public/v1/smartphones/sm-a920n-galaxy-a9-2018-td-lte-kr/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 19.5, + "camera": 8.8, + "battery": 12.0, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-e025f-ds-galaxy-f02s-2021-global-dual-sim-td-lte-32gb/index.json b/site/public/v1/smartphones/sm-e025f-ds-galaxy-f02s-2021-global-dual-sim-td-lte-32gb/index.json new file mode 100644 index 00000000000..498ddec40de --- /dev/null +++ b/site/public/v1/smartphones/sm-e025f-ds-galaxy-f02s-2021-global-dual-sim-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4387, + "slug": "sm-e025f-ds-galaxy-f02s-2021-global-dual-sim-td-lte-32gb", + "name": "SM-E025F/DS Galaxy F02s 2021 Global Dual SIM TD-LTE 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2021-03-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.727204", + "updated_at": "2026-06-19T00:43:44.727204" +} diff --git a/site/public/v1/smartphones/sm-e025f-ds-galaxy-f02s-2021-global-dual-sim-td-lte-32gb/score/index.json b/site/public/v1/smartphones/sm-e025f-ds-galaxy-f02s-2021-global-dual-sim-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..d19ba3069c5 --- /dev/null +++ b/site/public/v1/smartphones/sm-e025f-ds-galaxy-f02s-2021-global-dual-sim-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-e025f-ds-galaxy-f02s-2021-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-e025f-ds-galaxy-f02s-2021-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..829f0460895 --- /dev/null +++ b/site/public/v1/smartphones/sm-e025f-ds-galaxy-f02s-2021-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4388, + "slug": "sm-e025f-ds-galaxy-f02s-2021-global-dual-sim-td-lte-64gb", + "name": "SM-E025F/DS Galaxy F02s 2021 Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2021-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.728204", + "updated_at": "2026-06-19T00:43:44.728204" +} diff --git a/site/public/v1/smartphones/sm-e025f-ds-galaxy-f02s-2021-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-e025f-ds-galaxy-f02s-2021-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..d19ba3069c5 --- /dev/null +++ b/site/public/v1/smartphones/sm-e025f-ds-galaxy-f02s-2021-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-e225f-ds-galaxy-f22-4g-2021-premium-edition-dual-sim-td-lte-in-128gb/index.json b/site/public/v1/smartphones/sm-e225f-ds-galaxy-f22-4g-2021-premium-edition-dual-sim-td-lte-in-128gb/index.json new file mode 100644 index 00000000000..6849d784f9c --- /dev/null +++ b/site/public/v1/smartphones/sm-e225f-ds-galaxy-f22-4g-2021-premium-edition-dual-sim-td-lte-in-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4389, + "slug": "sm-e225f-ds-galaxy-f22-4g-2021-premium-edition-dual-sim-td-lte-in-128gb", + "name": "SM-E225F/DS Galaxy F22 4G 2021 Premium Edition Dual SIM TD-LTE IN 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2021-07-06", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 275 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 1.5, + "camera": 16.5, + "battery": 45.0, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.728204", + "updated_at": "2026-06-19T00:43:44.728204" +} diff --git a/site/public/v1/smartphones/sm-e225f-ds-galaxy-f22-4g-2021-premium-edition-dual-sim-td-lte-in-128gb/score/index.json b/site/public/v1/smartphones/sm-e225f-ds-galaxy-f22-4g-2021-premium-edition-dual-sim-td-lte-in-128gb/score/index.json new file mode 100644 index 00000000000..f04d94764fa --- /dev/null +++ b/site/public/v1/smartphones/sm-e225f-ds-galaxy-f22-4g-2021-premium-edition-dual-sim-td-lte-in-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 1.5, + "camera": 16.5, + "battery": 45.0, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-e225f-ds-galaxy-f22-4g-2021-standard-edition-dual-sim-td-lte-in-64gb/index.json b/site/public/v1/smartphones/sm-e225f-ds-galaxy-f22-4g-2021-standard-edition-dual-sim-td-lte-in-64gb/index.json new file mode 100644 index 00000000000..12c81939714 --- /dev/null +++ b/site/public/v1/smartphones/sm-e225f-ds-galaxy-f22-4g-2021-standard-edition-dual-sim-td-lte-in-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4390, + "slug": "sm-e225f-ds-galaxy-f22-4g-2021-standard-edition-dual-sim-td-lte-in-64gb", + "name": "SM-E225F/DS Galaxy F22 4G 2021 Standard Edition Dual SIM TD-LTE IN 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2021-07-06", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 275 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 0.0, + "camera": 16.5, + "battery": 45.0, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.728204", + "updated_at": "2026-06-19T00:43:44.728204" +} diff --git a/site/public/v1/smartphones/sm-e225f-ds-galaxy-f22-4g-2021-standard-edition-dual-sim-td-lte-in-64gb/score/index.json b/site/public/v1/smartphones/sm-e225f-ds-galaxy-f22-4g-2021-standard-edition-dual-sim-td-lte-in-64gb/score/index.json new file mode 100644 index 00000000000..00f201ee859 --- /dev/null +++ b/site/public/v1/smartphones/sm-e225f-ds-galaxy-f22-4g-2021-standard-edition-dual-sim-td-lte-in-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 0.0, + "camera": 16.5, + "battery": 45.0, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-e426b-ds-galaxy-f42-5g-2021-premium-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-e426b-ds-galaxy-f42-5g-2021-premium-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..cb27f5ed8dc --- /dev/null +++ b/site/public/v1/smartphones/sm-e426b-ds-galaxy-f42-5g-2021-premium-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4391, + "slug": "sm-e426b-ds-galaxy-f42-5g-2021-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-E426B/DS Galaxy F42 5G 2021 Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-10-02", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 3.0, + "camera": 21.5, + "battery": 30.0, + "display": 40.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.728204", + "updated_at": "2026-06-19T00:43:44.728204" +} diff --git a/site/public/v1/smartphones/sm-e426b-ds-galaxy-f42-5g-2021-premium-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-e426b-ds-galaxy-f42-5g-2021-premium-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..2040d4a698d --- /dev/null +++ b/site/public/v1/smartphones/sm-e426b-ds-galaxy-f42-5g-2021-premium-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 3.0, + "camera": 21.5, + "battery": 30.0, + "display": 40.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-e426b-ds-galaxy-f42-5g-2021-standard-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-e426b-ds-galaxy-f42-5g-2021-standard-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..315b5608dc9 --- /dev/null +++ b/site/public/v1/smartphones/sm-e426b-ds-galaxy-f42-5g-2021-standard-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4392, + "slug": "sm-e426b-ds-galaxy-f42-5g-2021-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-E426B/DS Galaxy F42 5G 2021 Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-10-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 1.5, + "camera": 21.5, + "battery": 30.0, + "display": 40.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.728204", + "updated_at": "2026-06-19T00:43:44.728204" +} diff --git a/site/public/v1/smartphones/sm-e426b-ds-galaxy-f42-5g-2021-standard-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-e426b-ds-galaxy-f42-5g-2021-standard-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..f2fe1b2e626 --- /dev/null +++ b/site/public/v1/smartphones/sm-e426b-ds-galaxy-f42-5g-2021-standard-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 1.5, + "camera": 21.5, + "battery": 30.0, + "display": 40.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-e426s-galaxy-wide5-5g-2021-td-lte-kr-64gb/index.json b/site/public/v1/smartphones/sm-e426s-galaxy-wide5-5g-2021-td-lte-kr-64gb/index.json new file mode 100644 index 00000000000..6e945500b82 --- /dev/null +++ b/site/public/v1/smartphones/sm-e426s-galaxy-wide5-5g-2021-td-lte-kr-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4393, + "slug": "sm-e426s-galaxy-wide5-5g-2021-td-lte-kr-64gb", + "name": "SM-E426S Galaxy Wide5 5G 2021 TD-LTE KR 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-10-03", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color PLS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 207.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 1.5, + "camera": 17.2, + "battery": 30.0, + "display": 40.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.728204", + "updated_at": "2026-06-19T00:43:44.728204" +} diff --git a/site/public/v1/smartphones/sm-e426s-galaxy-wide5-5g-2021-td-lte-kr-64gb/score/index.json b/site/public/v1/smartphones/sm-e426s-galaxy-wide5-5g-2021-td-lte-kr-64gb/score/index.json new file mode 100644 index 00000000000..abd1bf64824 --- /dev/null +++ b/site/public/v1/smartphones/sm-e426s-galaxy-wide5-5g-2021-td-lte-kr-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 1.5, + "camera": 17.2, + "battery": 30.0, + "display": 40.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-e625f-ds-galaxy-f62-2021-premium-edition-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/sm-e625f-ds-galaxy-f62-2021-premium-edition-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..653ff5a3a9b --- /dev/null +++ b/site/public/v1/smartphones/sm-e625f-ds-galaxy-f62-2021-premium-edition-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 4394, + "slug": "sm-e625f-ds-galaxy-f62-2021-premium-edition-global-dual-sim-td-lte", + "name": "SM-E625F/DS Galaxy F62 2021 Premium Edition Global Dual SIM TD-LTE", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 195, + "slug": "exynos-9825", + "name": "Samsung Exynos 9825", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP12", + "url": "/v1/socs/exynos-9825" + }, + "release_date": "2021-02-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 7000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 218.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.6, + "performance": 1.5, + "camera": 21.5, + "battery": 46.9, + "display": 44.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.728204", + "updated_at": "2026-06-19T00:43:44.728204" +} diff --git a/site/public/v1/smartphones/sm-e625f-ds-galaxy-f62-2021-premium-edition-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/sm-e625f-ds-galaxy-f62-2021-premium-edition-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..7adbd63b7fb --- /dev/null +++ b/site/public/v1/smartphones/sm-e625f-ds-galaxy-f62-2021-premium-edition-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.6, + "performance": 1.5, + "camera": 21.5, + "battery": 46.9, + "display": 44.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-e625f-ds-galaxy-f62-2021-standard-edition-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/sm-e625f-ds-galaxy-f62-2021-standard-edition-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..ea8655e62b1 --- /dev/null +++ b/site/public/v1/smartphones/sm-e625f-ds-galaxy-f62-2021-standard-edition-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 4395, + "slug": "sm-e625f-ds-galaxy-f62-2021-standard-edition-global-dual-sim-td-lte", + "name": "SM-E625F/DS Galaxy F62 2021 Standard Edition Global Dual SIM TD-LTE", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 195, + "slug": "exynos-9825", + "name": "Samsung Exynos 9825", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP12", + "url": "/v1/socs/exynos-9825" + }, + "release_date": "2021-02-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 7000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 218.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.6, + "performance": 1.5, + "camera": 21.5, + "battery": 46.9, + "display": 44.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.728204", + "updated_at": "2026-06-19T00:43:44.728204" +} diff --git a/site/public/v1/smartphones/sm-e625f-ds-galaxy-f62-2021-standard-edition-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/sm-e625f-ds-galaxy-f62-2021-standard-edition-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..7adbd63b7fb --- /dev/null +++ b/site/public/v1/smartphones/sm-e625f-ds-galaxy-f62-2021-standard-edition-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.6, + "performance": 1.5, + "camera": 21.5, + "battery": 46.9, + "display": 44.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f415f-ds-galaxy-f41-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-f415f-ds-galaxy-f41-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..b69fb605fef --- /dev/null +++ b/site/public/v1/smartphones/sm-f415f-ds-galaxy-f41-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4153, + "slug": "sm-f415f-ds-galaxy-f41-global-dual-sim-td-lte-128gb", + "name": "SM-F415F/DS Galaxy F41 Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2020-10-16", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.8, + "performance": 19.2, + "camera": 21.7, + "battery": 45.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.694785", + "updated_at": "2026-06-19T00:43:44.694785" +} diff --git a/site/public/v1/smartphones/sm-f415f-ds-galaxy-f41-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-f415f-ds-galaxy-f41-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..0fb1ded86f2 --- /dev/null +++ b/site/public/v1/smartphones/sm-f415f-ds-galaxy-f41-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.8, + "performance": 19.2, + "camera": 21.7, + "battery": 45.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f415f-ds-galaxy-f41-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-f415f-ds-galaxy-f41-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..0b39c0b6fad --- /dev/null +++ b/site/public/v1/smartphones/sm-f415f-ds-galaxy-f41-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4154, + "slug": "sm-f415f-ds-galaxy-f41-global-dual-sim-td-lte-64gb", + "name": "SM-F415F/DS Galaxy F41 Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2020-10-16", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.8, + "performance": 19.2, + "camera": 21.7, + "battery": 45.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.694785", + "updated_at": "2026-06-19T00:43:44.694785" +} diff --git a/site/public/v1/smartphones/sm-f415f-ds-galaxy-f41-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-f415f-ds-galaxy-f41-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..0fb1ded86f2 --- /dev/null +++ b/site/public/v1/smartphones/sm-f415f-ds-galaxy-f41-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.8, + "performance": 19.2, + "camera": 21.7, + "battery": 45.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f415f-ds-galaxy-m21s-2020-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-f415f-ds-galaxy-m21s-2020-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..e1bfe7d5b2f --- /dev/null +++ b/site/public/v1/smartphones/sm-f415f-ds-galaxy-m21s-2020-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4155, + "slug": "sm-f415f-ds-galaxy-m21s-2020-global-dual-sim-td-lte-64gb", + "name": "SM-F415F/DS Galaxy M21s 2020 Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2020-11-13", + "msrp_usd": 1899, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 17.7, + "camera": 21.7, + "battery": 45.0, + "display": 45.4, + "value": 16.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.694785", + "updated_at": "2026-06-19T00:43:44.694785" +} diff --git a/site/public/v1/smartphones/sm-f415f-ds-galaxy-m21s-2020-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-f415f-ds-galaxy-m21s-2020-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..1bf3227a566 --- /dev/null +++ b/site/public/v1/smartphones/sm-f415f-ds-galaxy-m21s-2020-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 17.7, + "camera": 21.7, + "battery": 45.0, + "display": 45.4, + "value": 16.2 +} diff --git a/site/public/v1/smartphones/sm-f7000-galaxy-z-flip-td-lte-cn-256gb/index.json b/site/public/v1/smartphones/sm-f7000-galaxy-z-flip-td-lte-cn-256gb/index.json new file mode 100644 index 00000000000..437ec982e45 --- /dev/null +++ b/site/public/v1/smartphones/sm-f7000-galaxy-z-flip-td-lte-cn-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4156, + "slug": "sm-f7000-galaxy-z-flip-td-lte-cn-256gb", + "name": "SM-F7000 Galaxy Z Flip TD-LTE CN 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2636", + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 3.0, + "camera": 5.1, + "battery": 4.5, + "display": 47.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.695790", + "updated_at": "2026-06-19T00:43:44.695790" +} diff --git a/site/public/v1/smartphones/sm-f7000-galaxy-z-flip-td-lte-cn-256gb/score/index.json b/site/public/v1/smartphones/sm-f7000-galaxy-z-flip-td-lte-cn-256gb/score/index.json new file mode 100644 index 00000000000..10feaf88591 --- /dev/null +++ b/site/public/v1/smartphones/sm-f7000-galaxy-z-flip-td-lte-cn-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 3.0, + "camera": 5.1, + "battery": 4.5, + "display": 47.5, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f7000-galaxy-z-flip-thom-browne-edition-td-lte-cn-256gb/index.json b/site/public/v1/smartphones/sm-f7000-galaxy-z-flip-thom-browne-edition-td-lte-cn-256gb/index.json new file mode 100644 index 00000000000..c0c4d1593e1 --- /dev/null +++ b/site/public/v1/smartphones/sm-f7000-galaxy-z-flip-thom-browne-edition-td-lte-cn-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4157, + "slug": "sm-f7000-galaxy-z-flip-thom-browne-edition-td-lte-cn-256gb", + "name": "SM-F7000 Galaxy Z Flip Thom Browne Edition TD-LTE CN 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2636", + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 3.0, + "camera": 5.1, + "battery": 4.5, + "display": 47.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.695790", + "updated_at": "2026-06-19T00:43:44.695790" +} diff --git a/site/public/v1/smartphones/sm-f7000-galaxy-z-flip-thom-browne-edition-td-lte-cn-256gb/score/index.json b/site/public/v1/smartphones/sm-f7000-galaxy-z-flip-thom-browne-edition-td-lte-cn-256gb/score/index.json new file mode 100644 index 00000000000..10feaf88591 --- /dev/null +++ b/site/public/v1/smartphones/sm-f7000-galaxy-z-flip-thom-browne-edition-td-lte-cn-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 3.0, + "camera": 5.1, + "battery": 4.5, + "display": 47.5, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f700f-ds-galaxy-z-flip-global-td-lte-256gb-sm-f700f/index.json b/site/public/v1/smartphones/sm-f700f-ds-galaxy-z-flip-global-td-lte-256gb-sm-f700f/index.json new file mode 100644 index 00000000000..cb29e347bcb --- /dev/null +++ b/site/public/v1/smartphones/sm-f700f-ds-galaxy-z-flip-global-td-lte-256gb-sm-f700f/index.json @@ -0,0 +1,76 @@ +{ + "id": 4158, + "slug": "sm-f700f-ds-galaxy-z-flip-global-td-lte-256gb-sm-f700f", + "name": "SM-F700F/DS Galaxy Z Flip Global TD-LTE 256GB / SM-F700F", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2020-02-14", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2636", + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 3.0, + "camera": 5.1, + "battery": 4.5, + "display": 47.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.695790", + "updated_at": "2026-06-19T00:43:44.695790" +} diff --git a/site/public/v1/smartphones/sm-f700f-ds-galaxy-z-flip-global-td-lte-256gb-sm-f700f/score/index.json b/site/public/v1/smartphones/sm-f700f-ds-galaxy-z-flip-global-td-lte-256gb-sm-f700f/score/index.json new file mode 100644 index 00000000000..10feaf88591 --- /dev/null +++ b/site/public/v1/smartphones/sm-f700f-ds-galaxy-z-flip-global-td-lte-256gb-sm-f700f/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 3.0, + "camera": 5.1, + "battery": 4.5, + "display": 47.5, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f700j-ds-galaxy-z-flip-td-lte-jp-scv47-sm-f700j/index.json b/site/public/v1/smartphones/sm-f700j-ds-galaxy-z-flip-td-lte-jp-scv47-sm-f700j/index.json new file mode 100644 index 00000000000..04feba9d772 --- /dev/null +++ b/site/public/v1/smartphones/sm-f700j-ds-galaxy-z-flip-td-lte-jp-scv47-sm-f700j/index.json @@ -0,0 +1,76 @@ +{ + "id": 4159, + "slug": "sm-f700j-ds-galaxy-z-flip-td-lte-jp-scv47-sm-f700j", + "name": "SM-F700J/DS Galaxy Z Flip TD-LTE JP SCV47 / SM-F700J", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2020-02-28", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2636", + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 3.0, + "camera": 5.1, + "battery": 4.5, + "display": 47.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.695790", + "updated_at": "2026-06-19T00:43:44.695790" +} diff --git a/site/public/v1/smartphones/sm-f700j-ds-galaxy-z-flip-td-lte-jp-scv47-sm-f700j/score/index.json b/site/public/v1/smartphones/sm-f700j-ds-galaxy-z-flip-td-lte-jp-scv47-sm-f700j/score/index.json new file mode 100644 index 00000000000..10feaf88591 --- /dev/null +++ b/site/public/v1/smartphones/sm-f700j-ds-galaxy-z-flip-td-lte-jp-scv47-sm-f700j/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 3.0, + "camera": 5.1, + "battery": 4.5, + "display": 47.5, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f700n-galaxy-z-flip-td-lte-kr-256gb/index.json b/site/public/v1/smartphones/sm-f700n-galaxy-z-flip-td-lte-kr-256gb/index.json new file mode 100644 index 00000000000..b959c59ae26 --- /dev/null +++ b/site/public/v1/smartphones/sm-f700n-galaxy-z-flip-td-lte-kr-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4160, + "slug": "sm-f700n-galaxy-z-flip-td-lte-kr-256gb", + "name": "SM-F700N Galaxy Z Flip TD-LTE KR 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2020-02-14", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2636", + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 3.0, + "camera": 5.1, + "battery": 4.5, + "display": 47.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.695790", + "updated_at": "2026-06-19T00:43:44.695790" +} diff --git a/site/public/v1/smartphones/sm-f700n-galaxy-z-flip-td-lte-kr-256gb/score/index.json b/site/public/v1/smartphones/sm-f700n-galaxy-z-flip-td-lte-kr-256gb/score/index.json new file mode 100644 index 00000000000..10feaf88591 --- /dev/null +++ b/site/public/v1/smartphones/sm-f700n-galaxy-z-flip-td-lte-kr-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 3.0, + "camera": 5.1, + "battery": 4.5, + "display": 47.5, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f700u-ds-galaxy-z-flip-td-lte-us-256gb-sm-f700u/index.json b/site/public/v1/smartphones/sm-f700u-ds-galaxy-z-flip-td-lte-us-256gb-sm-f700u/index.json new file mode 100644 index 00000000000..dd6fc8116ef --- /dev/null +++ b/site/public/v1/smartphones/sm-f700u-ds-galaxy-z-flip-td-lte-us-256gb-sm-f700u/index.json @@ -0,0 +1,76 @@ +{ + "id": 4161, + "slug": "sm-f700u-ds-galaxy-z-flip-td-lte-us-256gb-sm-f700u", + "name": "SM-F700U/DS Galaxy Z Flip TD-LTE US 256GB / SM-F700U", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2020-02-14", + "msrp_usd": 1380, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2636", + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 3.0, + "camera": 5.1, + "battery": 4.5, + "display": 47.5, + "value": 15.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.695790", + "updated_at": "2026-06-19T00:43:44.695790" +} diff --git a/site/public/v1/smartphones/sm-f700u-ds-galaxy-z-flip-td-lte-us-256gb-sm-f700u/score/index.json b/site/public/v1/smartphones/sm-f700u-ds-galaxy-z-flip-td-lte-us-256gb-sm-f700u/score/index.json new file mode 100644 index 00000000000..9041ab75eaf --- /dev/null +++ b/site/public/v1/smartphones/sm-f700u-ds-galaxy-z-flip-td-lte-us-256gb-sm-f700u/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 3.0, + "camera": 5.1, + "battery": 4.5, + "display": 47.5, + "value": 15.9 +} diff --git a/site/public/v1/smartphones/sm-f700u-ds-galaxy-z-flip-thom-browne-edition-td-lte-us-256gb-sm-f700u/index.json b/site/public/v1/smartphones/sm-f700u-ds-galaxy-z-flip-thom-browne-edition-td-lte-us-256gb-sm-f700u/index.json new file mode 100644 index 00000000000..1002b1bd4cd --- /dev/null +++ b/site/public/v1/smartphones/sm-f700u-ds-galaxy-z-flip-thom-browne-edition-td-lte-us-256gb-sm-f700u/index.json @@ -0,0 +1,76 @@ +{ + "id": 4162, + "slug": "sm-f700u-ds-galaxy-z-flip-thom-browne-edition-td-lte-us-256gb-sm-f700u", + "name": "SM-F700U/DS Galaxy Z Flip Thom Browne Edition TD-LTE US 256GB / SM-F700U", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2020-03-01", + "msrp_usd": 2480, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2636", + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 3.0, + "camera": 5.1, + "battery": 4.5, + "display": 47.5, + "value": 7.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.695790", + "updated_at": "2026-06-19T00:43:44.695790" +} diff --git a/site/public/v1/smartphones/sm-f700u-ds-galaxy-z-flip-thom-browne-edition-td-lte-us-256gb-sm-f700u/score/index.json b/site/public/v1/smartphones/sm-f700u-ds-galaxy-z-flip-thom-browne-edition-td-lte-us-256gb-sm-f700u/score/index.json new file mode 100644 index 00000000000..639d6c43b72 --- /dev/null +++ b/site/public/v1/smartphones/sm-f700u-ds-galaxy-z-flip-thom-browne-edition-td-lte-us-256gb-sm-f700u/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 3.0, + "camera": 5.1, + "battery": 4.5, + "display": 47.5, + "value": 7.5 +} diff --git a/site/public/v1/smartphones/sm-f700w-ds-galaxy-z-flip-td-lte-ca-256gb/index.json b/site/public/v1/smartphones/sm-f700w-ds-galaxy-z-flip-td-lte-ca-256gb/index.json new file mode 100644 index 00000000000..b5c81d9a9a8 --- /dev/null +++ b/site/public/v1/smartphones/sm-f700w-ds-galaxy-z-flip-td-lte-ca-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4163, + "slug": "sm-f700w-ds-galaxy-z-flip-td-lte-ca-256gb", + "name": "SM-F700W/DS Galaxy Z Flip TD-LTE CA 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2020-02-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2636", + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 3.0, + "camera": 5.1, + "battery": 4.5, + "display": 47.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.695790", + "updated_at": "2026-06-19T00:43:44.695790" +} diff --git a/site/public/v1/smartphones/sm-f700w-ds-galaxy-z-flip-td-lte-ca-256gb/score/index.json b/site/public/v1/smartphones/sm-f700w-ds-galaxy-z-flip-td-lte-ca-256gb/score/index.json new file mode 100644 index 00000000000..10feaf88591 --- /dev/null +++ b/site/public/v1/smartphones/sm-f700w-ds-galaxy-z-flip-td-lte-ca-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 3.0, + "camera": 5.1, + "battery": 4.5, + "display": 47.5, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f7070-galaxy-z-flip-5g-td-lte-cn-256gb/index.json b/site/public/v1/smartphones/sm-f7070-galaxy-z-flip-5g-td-lte-cn-256gb/index.json new file mode 100644 index 00000000000..d4aedc06ffa --- /dev/null +++ b/site/public/v1/smartphones/sm-f7070-galaxy-z-flip-5g-td-lte-cn-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4164, + "slug": "sm-f7070-galaxy-z-flip-5g-td-lte-cn-256gb", + "name": "SM-F7070 Galaxy Z Flip 5G TD-LTE CN 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-08-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2636", + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": 3.4, + "camera": 5.1, + "battery": 4.5, + "display": 47.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.695790", + "updated_at": "2026-06-19T00:43:44.695790" +} diff --git a/site/public/v1/smartphones/sm-f7070-galaxy-z-flip-5g-td-lte-cn-256gb/score/index.json b/site/public/v1/smartphones/sm-f7070-galaxy-z-flip-5g-td-lte-cn-256gb/score/index.json new file mode 100644 index 00000000000..c9688fd326e --- /dev/null +++ b/site/public/v1/smartphones/sm-f7070-galaxy-z-flip-5g-td-lte-cn-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": 3.4, + "camera": 5.1, + "battery": 4.5, + "display": 47.5, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f707b-galaxy-z-flip-5g-global-dual-sim-td-lte-256gb/index.json b/site/public/v1/smartphones/sm-f707b-galaxy-z-flip-5g-global-dual-sim-td-lte-256gb/index.json new file mode 100644 index 00000000000..87de84110c0 --- /dev/null +++ b/site/public/v1/smartphones/sm-f707b-galaxy-z-flip-5g-global-dual-sim-td-lte-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4165, + "slug": "sm-f707b-galaxy-z-flip-5g-global-dual-sim-td-lte-256gb", + "name": "SM-F707B Galaxy Z Flip 5G Global Dual SIM TD-LTE 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-08-09", + "msrp_usd": 1399, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2636", + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": 3.4, + "camera": 5.1, + "battery": 4.5, + "display": 47.5, + "value": 15.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.696787", + "updated_at": "2026-06-19T00:43:44.696787" +} diff --git a/site/public/v1/smartphones/sm-f707b-galaxy-z-flip-5g-global-dual-sim-td-lte-256gb/score/index.json b/site/public/v1/smartphones/sm-f707b-galaxy-z-flip-5g-global-dual-sim-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..cd9f8449cf5 --- /dev/null +++ b/site/public/v1/smartphones/sm-f707b-galaxy-z-flip-5g-global-dual-sim-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": 3.4, + "camera": 5.1, + "battery": 4.5, + "display": 47.5, + "value": 15.3 +} diff --git a/site/public/v1/smartphones/sm-f707j-galaxy-z-flip-5g-td-lte-jp-scg04/index.json b/site/public/v1/smartphones/sm-f707j-galaxy-z-flip-5g-td-lte-jp-scg04/index.json new file mode 100644 index 00000000000..35b20953da4 --- /dev/null +++ b/site/public/v1/smartphones/sm-f707j-galaxy-z-flip-5g-td-lte-jp-scg04/index.json @@ -0,0 +1,76 @@ +{ + "id": 4166, + "slug": "sm-f707j-galaxy-z-flip-5g-td-lte-jp-scg04", + "name": "SM-F707J Galaxy Z Flip 5G TD-LTE JP SCG04", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-09-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2636", + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": 3.4, + "camera": 5.1, + "battery": 4.5, + "display": 47.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.696787", + "updated_at": "2026-06-19T00:43:44.696787" +} diff --git a/site/public/v1/smartphones/sm-f707j-galaxy-z-flip-5g-td-lte-jp-scg04/score/index.json b/site/public/v1/smartphones/sm-f707j-galaxy-z-flip-5g-td-lte-jp-scg04/score/index.json new file mode 100644 index 00000000000..c9688fd326e --- /dev/null +++ b/site/public/v1/smartphones/sm-f707j-galaxy-z-flip-5g-td-lte-jp-scg04/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": 3.4, + "camera": 5.1, + "battery": 4.5, + "display": 47.5, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f707n-galaxy-z-flip-5g-td-lte-kr-256gb/index.json b/site/public/v1/smartphones/sm-f707n-galaxy-z-flip-5g-td-lte-kr-256gb/index.json new file mode 100644 index 00000000000..d94a512589d --- /dev/null +++ b/site/public/v1/smartphones/sm-f707n-galaxy-z-flip-5g-td-lte-kr-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4167, + "slug": "sm-f707n-galaxy-z-flip-5g-td-lte-kr-256gb", + "name": "SM-F707N Galaxy Z Flip 5G TD-LTE KR 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-08-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2636", + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": 3.4, + "camera": 5.1, + "battery": 4.5, + "display": 47.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.696787", + "updated_at": "2026-06-19T00:43:44.696787" +} diff --git a/site/public/v1/smartphones/sm-f707n-galaxy-z-flip-5g-td-lte-kr-256gb/score/index.json b/site/public/v1/smartphones/sm-f707n-galaxy-z-flip-5g-td-lte-kr-256gb/score/index.json new file mode 100644 index 00000000000..c9688fd326e --- /dev/null +++ b/site/public/v1/smartphones/sm-f707n-galaxy-z-flip-5g-td-lte-kr-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": 3.4, + "camera": 5.1, + "battery": 4.5, + "display": 47.5, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f707w-galaxy-z-flip-5g-td-lte-ca-256gb/index.json b/site/public/v1/smartphones/sm-f707w-galaxy-z-flip-5g-td-lte-ca-256gb/index.json new file mode 100644 index 00000000000..52fa8846e9c --- /dev/null +++ b/site/public/v1/smartphones/sm-f707w-galaxy-z-flip-5g-td-lte-ca-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4168, + "slug": "sm-f707w-galaxy-z-flip-5g-td-lte-ca-256gb", + "name": "SM-F707W Galaxy Z Flip 5G TD-LTE CA 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-07-01", + "msrp_usd": 1580, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2636", + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": 3.4, + "camera": 5.1, + "battery": 4.5, + "display": 47.5, + "value": 8.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.696787", + "updated_at": "2026-06-19T00:43:44.696787" +} diff --git a/site/public/v1/smartphones/sm-f707w-galaxy-z-flip-5g-td-lte-ca-256gb/score/index.json b/site/public/v1/smartphones/sm-f707w-galaxy-z-flip-5g-td-lte-ca-256gb/score/index.json new file mode 100644 index 00000000000..945faa04a02 --- /dev/null +++ b/site/public/v1/smartphones/sm-f707w-galaxy-z-flip-5g-td-lte-ca-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": 3.4, + "camera": 5.1, + "battery": 4.5, + "display": 47.5, + "value": 8.3 +} diff --git a/site/public/v1/smartphones/sm-f7110-galaxy-z-flip-3-5g-olympic-games-edition-td-lte-cn-256gb/index.json b/site/public/v1/smartphones/sm-f7110-galaxy-z-flip-3-5g-olympic-games-edition-td-lte-cn-256gb/index.json new file mode 100644 index 00000000000..dadc32f52f0 --- /dev/null +++ b/site/public/v1/smartphones/sm-f7110-galaxy-z-flip-3-5g-olympic-games-edition-td-lte-cn-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4568, + "slug": "sm-f7110-galaxy-z-flip-3-5g-olympic-games-edition-td-lte-cn-256gb", + "name": "SM-F7110 Galaxy Z Flip 3 5G Olympic Games Edition TD-LTE CN 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2022-01-14", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.749205", + "updated_at": "2026-06-19T00:43:44.749205" +} diff --git a/site/public/v1/smartphones/sm-f7110-galaxy-z-flip-3-5g-olympic-games-edition-td-lte-cn-256gb/score/index.json b/site/public/v1/smartphones/sm-f7110-galaxy-z-flip-3-5g-olympic-games-edition-td-lte-cn-256gb/score/index.json new file mode 100644 index 00000000000..f72ece41c7c --- /dev/null +++ b/site/public/v1/smartphones/sm-f7110-galaxy-z-flip-3-5g-olympic-games-edition-td-lte-cn-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f7110-galaxy-z-flip-3-5g-td-lte-cn-hk-tw-128gb/index.json b/site/public/v1/smartphones/sm-f7110-galaxy-z-flip-3-5g-td-lte-cn-hk-tw-128gb/index.json new file mode 100644 index 00000000000..45a7e7332be --- /dev/null +++ b/site/public/v1/smartphones/sm-f7110-galaxy-z-flip-3-5g-td-lte-cn-hk-tw-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4396, + "slug": "sm-f7110-galaxy-z-flip-3-5g-td-lte-cn-hk-tw-128gb", + "name": "SM-F7110 Galaxy Z Flip 3 5G TD-LTE CN HK TW 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.729204", + "updated_at": "2026-06-19T00:43:44.729204" +} diff --git a/site/public/v1/smartphones/sm-f7110-galaxy-z-flip-3-5g-td-lte-cn-hk-tw-128gb/score/index.json b/site/public/v1/smartphones/sm-f7110-galaxy-z-flip-3-5g-td-lte-cn-hk-tw-128gb/score/index.json new file mode 100644 index 00000000000..f72ece41c7c --- /dev/null +++ b/site/public/v1/smartphones/sm-f7110-galaxy-z-flip-3-5g-td-lte-cn-hk-tw-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f7110-galaxy-z-flip-3-5g-td-lte-cn-hk-tw-256gb/index.json b/site/public/v1/smartphones/sm-f7110-galaxy-z-flip-3-5g-td-lte-cn-hk-tw-256gb/index.json new file mode 100644 index 00000000000..b31e05c9351 --- /dev/null +++ b/site/public/v1/smartphones/sm-f7110-galaxy-z-flip-3-5g-td-lte-cn-hk-tw-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4397, + "slug": "sm-f7110-galaxy-z-flip-3-5g-td-lte-cn-hk-tw-256gb", + "name": "SM-F7110 Galaxy Z Flip 3 5G TD-LTE CN HK TW 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.729204", + "updated_at": "2026-06-19T00:43:44.729204" +} diff --git a/site/public/v1/smartphones/sm-f7110-galaxy-z-flip-3-5g-td-lte-cn-hk-tw-256gb/score/index.json b/site/public/v1/smartphones/sm-f7110-galaxy-z-flip-3-5g-td-lte-cn-hk-tw-256gb/score/index.json new file mode 100644 index 00000000000..f72ece41c7c --- /dev/null +++ b/site/public/v1/smartphones/sm-f7110-galaxy-z-flip-3-5g-td-lte-cn-hk-tw-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f7110-galaxy-z-flip-3-5g-thom-browne-limited-edition-td-lte-cn-hk-tw-256gb/index.json b/site/public/v1/smartphones/sm-f7110-galaxy-z-flip-3-5g-thom-browne-limited-edition-td-lte-cn-hk-tw-256gb/index.json new file mode 100644 index 00000000000..2f3391c5c82 --- /dev/null +++ b/site/public/v1/smartphones/sm-f7110-galaxy-z-flip-3-5g-thom-browne-limited-edition-td-lte-cn-hk-tw-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4569, + "slug": "sm-f7110-galaxy-z-flip-3-5g-thom-browne-limited-edition-td-lte-cn-hk-tw-256gb", + "name": "SM-F7110 Galaxy Z Flip 3 5G Thom Browne Limited Edition TD-LTE CN HK TW 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2022-09-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.749205", + "updated_at": "2026-06-19T00:43:44.749205" +} diff --git a/site/public/v1/smartphones/sm-f7110-galaxy-z-flip-3-5g-thom-browne-limited-edition-td-lte-cn-hk-tw-256gb/score/index.json b/site/public/v1/smartphones/sm-f7110-galaxy-z-flip-3-5g-thom-browne-limited-edition-td-lte-cn-hk-tw-256gb/score/index.json new file mode 100644 index 00000000000..f72ece41c7c --- /dev/null +++ b/site/public/v1/smartphones/sm-f7110-galaxy-z-flip-3-5g-thom-browne-limited-edition-td-lte-cn-hk-tw-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f711b-galaxy-z-flip-3-5g-global-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-f711b-galaxy-z-flip-3-5g-global-td-lte-128gb/index.json new file mode 100644 index 00000000000..a11593da5ac --- /dev/null +++ b/site/public/v1/smartphones/sm-f711b-galaxy-z-flip-3-5g-global-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4398, + "slug": "sm-f711b-galaxy-z-flip-3-5g-global-td-lte-128gb", + "name": "SM-F711B Galaxy Z Flip 3 5G Global TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": 109, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": 60.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.729204", + "updated_at": "2026-06-19T00:43:44.729204" +} diff --git a/site/public/v1/smartphones/sm-f711b-galaxy-z-flip-3-5g-global-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-f711b-galaxy-z-flip-3-5g-global-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..c17848caee3 --- /dev/null +++ b/site/public/v1/smartphones/sm-f711b-galaxy-z-flip-3-5g-global-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": 60.1 +} diff --git a/site/public/v1/smartphones/sm-f711b-galaxy-z-flip-3-5g-global-td-lte-256gb/index.json b/site/public/v1/smartphones/sm-f711b-galaxy-z-flip-3-5g-global-td-lte-256gb/index.json new file mode 100644 index 00000000000..dc679a653fb --- /dev/null +++ b/site/public/v1/smartphones/sm-f711b-galaxy-z-flip-3-5g-global-td-lte-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4399, + "slug": "sm-f711b-galaxy-z-flip-3-5g-global-td-lte-256gb", + "name": "SM-F711B Galaxy Z Flip 3 5G Global TD-LTE 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": 1099, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": 29.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.729204", + "updated_at": "2026-06-19T00:43:44.729204" +} diff --git a/site/public/v1/smartphones/sm-f711b-galaxy-z-flip-3-5g-global-td-lte-256gb/score/index.json b/site/public/v1/smartphones/sm-f711b-galaxy-z-flip-3-5g-global-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..ffa39aca4db --- /dev/null +++ b/site/public/v1/smartphones/sm-f711b-galaxy-z-flip-3-5g-global-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": 29.4 +} diff --git a/site/public/v1/smartphones/sm-f711b-galaxy-z-flip-3-5g-thom-browne-edition-global-td-lte-256gb/index.json b/site/public/v1/smartphones/sm-f711b-galaxy-z-flip-3-5g-thom-browne-edition-global-td-lte-256gb/index.json new file mode 100644 index 00000000000..02a6b21ef96 --- /dev/null +++ b/site/public/v1/smartphones/sm-f711b-galaxy-z-flip-3-5g-thom-browne-edition-global-td-lte-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4400, + "slug": "sm-f711b-galaxy-z-flip-3-5g-thom-browne-edition-global-td-lte-256gb", + "name": "SM-F711B Galaxy Z Flip 3 5G Thom Browne Edition Global TD-LTE 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.729204", + "updated_at": "2026-06-19T00:43:44.729204" +} diff --git a/site/public/v1/smartphones/sm-f711b-galaxy-z-flip-3-5g-thom-browne-edition-global-td-lte-256gb/score/index.json b/site/public/v1/smartphones/sm-f711b-galaxy-z-flip-3-5g-thom-browne-edition-global-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..f72ece41c7c --- /dev/null +++ b/site/public/v1/smartphones/sm-f711b-galaxy-z-flip-3-5g-thom-browne-edition-global-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f711d-galaxy-z-flip-3-5g-td-lte-jp-128gb-sc-54b/index.json b/site/public/v1/smartphones/sm-f711d-galaxy-z-flip-3-5g-td-lte-jp-128gb-sc-54b/index.json new file mode 100644 index 00000000000..6aba411b8f4 --- /dev/null +++ b/site/public/v1/smartphones/sm-f711d-galaxy-z-flip-3-5g-td-lte-jp-128gb-sc-54b/index.json @@ -0,0 +1,77 @@ +{ + "id": 4401, + "slug": "sm-f711d-galaxy-z-flip-3-5g-td-lte-jp-128gb-sc-54b", + "name": "SM-F711D Galaxy Z Flip 3 5G TD-LTE JP 128GB SC-54B", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-10-06", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.729204", + "updated_at": "2026-06-19T00:43:44.729204" +} diff --git a/site/public/v1/smartphones/sm-f711d-galaxy-z-flip-3-5g-td-lte-jp-128gb-sc-54b/score/index.json b/site/public/v1/smartphones/sm-f711d-galaxy-z-flip-3-5g-td-lte-jp-128gb-sc-54b/score/index.json new file mode 100644 index 00000000000..f72ece41c7c --- /dev/null +++ b/site/public/v1/smartphones/sm-f711d-galaxy-z-flip-3-5g-td-lte-jp-128gb-sc-54b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f711j-galaxy-z-flip-3-5g-td-lte-jp-128gb-scg12/index.json b/site/public/v1/smartphones/sm-f711j-galaxy-z-flip-3-5g-td-lte-jp-128gb-scg12/index.json new file mode 100644 index 00000000000..810787e0c56 --- /dev/null +++ b/site/public/v1/smartphones/sm-f711j-galaxy-z-flip-3-5g-td-lte-jp-128gb-scg12/index.json @@ -0,0 +1,77 @@ +{ + "id": 4402, + "slug": "sm-f711j-galaxy-z-flip-3-5g-td-lte-jp-128gb-scg12", + "name": "SM-F711J Galaxy Z Flip 3 5G TD-LTE JP 128GB SCG12", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-10-06", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.729204", + "updated_at": "2026-06-19T00:43:44.729204" +} diff --git a/site/public/v1/smartphones/sm-f711j-galaxy-z-flip-3-5g-td-lte-jp-128gb-scg12/score/index.json b/site/public/v1/smartphones/sm-f711j-galaxy-z-flip-3-5g-td-lte-jp-128gb-scg12/score/index.json new file mode 100644 index 00000000000..f72ece41c7c --- /dev/null +++ b/site/public/v1/smartphones/sm-f711j-galaxy-z-flip-3-5g-td-lte-jp-128gb-scg12/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f711n-galaxy-z-flip-3-5g-td-lte-kr-256gb/index.json b/site/public/v1/smartphones/sm-f711n-galaxy-z-flip-3-5g-td-lte-kr-256gb/index.json new file mode 100644 index 00000000000..8642cf83237 --- /dev/null +++ b/site/public/v1/smartphones/sm-f711n-galaxy-z-flip-3-5g-td-lte-kr-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4403, + "slug": "sm-f711n-galaxy-z-flip-3-5g-td-lte-kr-256gb", + "name": "SM-F711N Galaxy Z Flip 3 5G TD-LTE KR 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.729204", + "updated_at": "2026-06-19T00:43:44.729204" +} diff --git a/site/public/v1/smartphones/sm-f711n-galaxy-z-flip-3-5g-td-lte-kr-256gb/score/index.json b/site/public/v1/smartphones/sm-f711n-galaxy-z-flip-3-5g-td-lte-kr-256gb/score/index.json new file mode 100644 index 00000000000..f72ece41c7c --- /dev/null +++ b/site/public/v1/smartphones/sm-f711n-galaxy-z-flip-3-5g-td-lte-kr-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711a/index.json b/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711a/index.json new file mode 100644 index 00000000000..aa62f457254 --- /dev/null +++ b/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711a/index.json @@ -0,0 +1,77 @@ +{ + "id": 4404, + "slug": "sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711a", + "name": "SM-F711U Galaxy Z Flip 3 5G UW TD-LTE US 128GB / SM-F711A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": 1000, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": 33.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.729204", + "updated_at": "2026-06-19T00:43:44.729204" +} diff --git a/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711a/score/index.json b/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711a/score/index.json new file mode 100644 index 00000000000..6e6e2c5b2b2 --- /dev/null +++ b/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": 33.2 +} diff --git a/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711r4/index.json b/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711r4/index.json new file mode 100644 index 00000000000..5d09a208498 --- /dev/null +++ b/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711r4/index.json @@ -0,0 +1,77 @@ +{ + "id": 4405, + "slug": "sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711r4", + "name": "SM-F711U Galaxy Z Flip 3 5G UW TD-LTE US 128GB / SM-F711R4", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": 1000, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": 33.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.730204", + "updated_at": "2026-06-19T00:43:44.730204" +} diff --git a/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711r4/score/index.json b/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711r4/score/index.json new file mode 100644 index 00000000000..6e6e2c5b2b2 --- /dev/null +++ b/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711r4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": 33.2 +} diff --git a/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711t/index.json b/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711t/index.json new file mode 100644 index 00000000000..ad4ce377409 --- /dev/null +++ b/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711t/index.json @@ -0,0 +1,77 @@ +{ + "id": 4406, + "slug": "sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711t", + "name": "SM-F711U Galaxy Z Flip 3 5G UW TD-LTE US 128GB / SM-F711T", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": 1000, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": 33.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.730204", + "updated_at": "2026-06-19T00:43:44.730204" +} diff --git a/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711t/score/index.json b/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711t/score/index.json new file mode 100644 index 00000000000..6e6e2c5b2b2 --- /dev/null +++ b/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": 33.2 +} diff --git a/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711v/index.json b/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711v/index.json new file mode 100644 index 00000000000..bfcf0cfa370 --- /dev/null +++ b/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711v/index.json @@ -0,0 +1,77 @@ +{ + "id": 4407, + "slug": "sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711v", + "name": "SM-F711U Galaxy Z Flip 3 5G UW TD-LTE US 128GB / SM-F711V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": 1000, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": 33.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.730204", + "updated_at": "2026-06-19T00:43:44.730204" +} diff --git a/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711v/score/index.json b/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711v/score/index.json new file mode 100644 index 00000000000..6e6e2c5b2b2 --- /dev/null +++ b/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-128gb-sm-f711v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": 33.2 +} diff --git a/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711a/index.json b/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711a/index.json new file mode 100644 index 00000000000..dd149be2853 --- /dev/null +++ b/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711a/index.json @@ -0,0 +1,77 @@ +{ + "id": 4408, + "slug": "sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711a", + "name": "SM-F711U Galaxy Z Flip 3 5G UW TD-LTE US 256GB / SM-F711A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": 1050, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": 31.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.730204", + "updated_at": "2026-06-19T00:43:44.730204" +} diff --git a/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711a/score/index.json b/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711a/score/index.json new file mode 100644 index 00000000000..b622b27fedd --- /dev/null +++ b/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": 31.2 +} diff --git a/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711r4/index.json b/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711r4/index.json new file mode 100644 index 00000000000..f5499ce4dda --- /dev/null +++ b/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711r4/index.json @@ -0,0 +1,77 @@ +{ + "id": 4409, + "slug": "sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711r4", + "name": "SM-F711U Galaxy Z Flip 3 5G UW TD-LTE US 256GB / SM-F711R4", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": 1050, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": 31.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.730204", + "updated_at": "2026-06-19T00:43:44.730204" +} diff --git a/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711r4/score/index.json b/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711r4/score/index.json new file mode 100644 index 00000000000..b622b27fedd --- /dev/null +++ b/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711r4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": 31.2 +} diff --git a/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711t/index.json b/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711t/index.json new file mode 100644 index 00000000000..8b9f46aabfe --- /dev/null +++ b/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711t/index.json @@ -0,0 +1,77 @@ +{ + "id": 4410, + "slug": "sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711t", + "name": "SM-F711U Galaxy Z Flip 3 5G UW TD-LTE US 256GB / SM-F711T", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": 1050, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": 31.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.730204", + "updated_at": "2026-06-19T00:43:44.730204" +} diff --git a/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711t/score/index.json b/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711t/score/index.json new file mode 100644 index 00000000000..b622b27fedd --- /dev/null +++ b/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": 31.2 +} diff --git a/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711v/index.json b/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711v/index.json new file mode 100644 index 00000000000..4e5797d6a77 --- /dev/null +++ b/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711v/index.json @@ -0,0 +1,77 @@ +{ + "id": 4411, + "slug": "sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711v", + "name": "SM-F711U Galaxy Z Flip 3 5G UW TD-LTE US 256GB / SM-F711V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": 1050, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": 31.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.730204", + "updated_at": "2026-06-19T00:43:44.730204" +} diff --git a/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711v/score/index.json b/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711v/score/index.json new file mode 100644 index 00000000000..b622b27fedd --- /dev/null +++ b/site/public/v1/smartphones/sm-f711u-galaxy-z-flip-3-5g-uw-td-lte-us-256gb-sm-f711v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": 31.2 +} diff --git a/site/public/v1/smartphones/sm-f711u1-galaxy-z-flip-3-5g-uw-bespoke-edition-td-lte-us-256gb/index.json b/site/public/v1/smartphones/sm-f711u1-galaxy-z-flip-3-5g-uw-bespoke-edition-td-lte-us-256gb/index.json new file mode 100644 index 00000000000..4a28175e879 --- /dev/null +++ b/site/public/v1/smartphones/sm-f711u1-galaxy-z-flip-3-5g-uw-bespoke-edition-td-lte-us-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4412, + "slug": "sm-f711u1-galaxy-z-flip-3-5g-uw-bespoke-edition-td-lte-us-256gb", + "name": "SM-F711U1 Galaxy Z Flip 3 5G UW Bespoke Edition TD-LTE US 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-10-21", + "msrp_usd": 1100, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": 29.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.731205", + "updated_at": "2026-06-19T00:43:44.731205" +} diff --git a/site/public/v1/smartphones/sm-f711u1-galaxy-z-flip-3-5g-uw-bespoke-edition-td-lte-us-256gb/score/index.json b/site/public/v1/smartphones/sm-f711u1-galaxy-z-flip-3-5g-uw-bespoke-edition-td-lte-us-256gb/score/index.json new file mode 100644 index 00000000000..ffa39aca4db --- /dev/null +++ b/site/public/v1/smartphones/sm-f711u1-galaxy-z-flip-3-5g-uw-bespoke-edition-td-lte-us-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": 29.4 +} diff --git a/site/public/v1/smartphones/sm-f711u1-galaxy-z-flip-3-5g-uw-td-lte-us-128gb/index.json b/site/public/v1/smartphones/sm-f711u1-galaxy-z-flip-3-5g-uw-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..259af5676a1 --- /dev/null +++ b/site/public/v1/smartphones/sm-f711u1-galaxy-z-flip-3-5g-uw-td-lte-us-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4413, + "slug": "sm-f711u1-galaxy-z-flip-3-5g-uw-td-lte-us-128gb", + "name": "SM-F711U1 Galaxy Z Flip 3 5G UW TD-LTE US 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": 1000, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": 33.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.731205", + "updated_at": "2026-06-19T00:43:44.731205" +} diff --git a/site/public/v1/smartphones/sm-f711u1-galaxy-z-flip-3-5g-uw-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/sm-f711u1-galaxy-z-flip-3-5g-uw-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..6e6e2c5b2b2 --- /dev/null +++ b/site/public/v1/smartphones/sm-f711u1-galaxy-z-flip-3-5g-uw-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": 33.2 +} diff --git a/site/public/v1/smartphones/sm-f711u1-galaxy-z-flip-3-5g-uw-td-lte-us-256gb/index.json b/site/public/v1/smartphones/sm-f711u1-galaxy-z-flip-3-5g-uw-td-lte-us-256gb/index.json new file mode 100644 index 00000000000..ed1febe93dd --- /dev/null +++ b/site/public/v1/smartphones/sm-f711u1-galaxy-z-flip-3-5g-uw-td-lte-us-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4414, + "slug": "sm-f711u1-galaxy-z-flip-3-5g-uw-td-lte-us-256gb", + "name": "SM-F711U1 Galaxy Z Flip 3 5G UW TD-LTE US 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": 1050, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": 31.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.731205", + "updated_at": "2026-06-19T00:43:44.731205" +} diff --git a/site/public/v1/smartphones/sm-f711u1-galaxy-z-flip-3-5g-uw-td-lte-us-256gb/score/index.json b/site/public/v1/smartphones/sm-f711u1-galaxy-z-flip-3-5g-uw-td-lte-us-256gb/score/index.json new file mode 100644 index 00000000000..b622b27fedd --- /dev/null +++ b/site/public/v1/smartphones/sm-f711u1-galaxy-z-flip-3-5g-uw-td-lte-us-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": 31.2 +} diff --git a/site/public/v1/smartphones/sm-f711w-galaxy-z-flip-3-5g-bespoke-edition-td-lte-ca-256gb/index.json b/site/public/v1/smartphones/sm-f711w-galaxy-z-flip-3-5g-bespoke-edition-td-lte-ca-256gb/index.json new file mode 100644 index 00000000000..9af77a3de48 --- /dev/null +++ b/site/public/v1/smartphones/sm-f711w-galaxy-z-flip-3-5g-bespoke-edition-td-lte-ca-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4415, + "slug": "sm-f711w-galaxy-z-flip-3-5g-bespoke-edition-td-lte-ca-256gb", + "name": "SM-F711W Galaxy Z Flip 3 5G Bespoke Edition TD-LTE CA 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-10-21", + "msrp_usd": 1400, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": 17.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.731205", + "updated_at": "2026-06-19T00:43:44.731205" +} diff --git a/site/public/v1/smartphones/sm-f711w-galaxy-z-flip-3-5g-bespoke-edition-td-lte-ca-256gb/score/index.json b/site/public/v1/smartphones/sm-f711w-galaxy-z-flip-3-5g-bespoke-edition-td-lte-ca-256gb/score/index.json new file mode 100644 index 00000000000..bcca69befd2 --- /dev/null +++ b/site/public/v1/smartphones/sm-f711w-galaxy-z-flip-3-5g-bespoke-edition-td-lte-ca-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": 17.8 +} diff --git a/site/public/v1/smartphones/sm-f711w-galaxy-z-flip-3-5g-td-lte-ca-128gb/index.json b/site/public/v1/smartphones/sm-f711w-galaxy-z-flip-3-5g-td-lte-ca-128gb/index.json new file mode 100644 index 00000000000..e1df80ec404 --- /dev/null +++ b/site/public/v1/smartphones/sm-f711w-galaxy-z-flip-3-5g-td-lte-ca-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4416, + "slug": "sm-f711w-galaxy-z-flip-3-5g-td-lte-ca-128gb", + "name": "SM-F711W Galaxy Z Flip 3 5G TD-LTE CA 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": 1260, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": 23.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.731205", + "updated_at": "2026-06-19T00:43:44.731205" +} diff --git a/site/public/v1/smartphones/sm-f711w-galaxy-z-flip-3-5g-td-lte-ca-128gb/score/index.json b/site/public/v1/smartphones/sm-f711w-galaxy-z-flip-3-5g-td-lte-ca-128gb/score/index.json new file mode 100644 index 00000000000..9554dd229fe --- /dev/null +++ b/site/public/v1/smartphones/sm-f711w-galaxy-z-flip-3-5g-td-lte-ca-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": 23.2 +} diff --git a/site/public/v1/smartphones/sm-f711w-galaxy-z-flip-3-5g-td-lte-ca-256gb/index.json b/site/public/v1/smartphones/sm-f711w-galaxy-z-flip-3-5g-td-lte-ca-256gb/index.json new file mode 100644 index 00000000000..893de28df43 --- /dev/null +++ b/site/public/v1/smartphones/sm-f711w-galaxy-z-flip-3-5g-td-lte-ca-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4417, + "slug": "sm-f711w-galaxy-z-flip-3-5g-td-lte-ca-256gb", + "name": "SM-F711W Galaxy Z Flip 3 5G TD-LTE CA 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": 1330, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2640", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": 20.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.731205", + "updated_at": "2026-06-19T00:43:44.731205" +} diff --git a/site/public/v1/smartphones/sm-f711w-galaxy-z-flip-3-5g-td-lte-ca-256gb/score/index.json b/site/public/v1/smartphones/sm-f711w-galaxy-z-flip-3-5g-td-lte-ca-256gb/score/index.json new file mode 100644 index 00000000000..5c70907806b --- /dev/null +++ b/site/public/v1/smartphones/sm-f711w-galaxy-z-flip-3-5g-td-lte-ca-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 6.4, + "camera": 5.0, + "battery": 14.5, + "display": 55.0, + "value": 20.5 +} diff --git a/site/public/v1/smartphones/sm-f9000-galaxy-fold-td-lte-cn-512gb/index.json b/site/public/v1/smartphones/sm-f9000-galaxy-fold-td-lte-cn-512gb/index.json new file mode 100644 index 00000000000..ff3e42f328f --- /dev/null +++ b/site/public/v1/smartphones/sm-f9000-galaxy-fold-td-lte-cn-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3936, + "slug": "sm-f9000-galaxy-fold-td-lte-cn-512gb", + "name": "SM-F9000 Galaxy Fold TD-LTE CN 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 4.58, + "resolution": "720x1680", + "type": "AM-OLED display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4380, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 276.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 6.0, + "camera": 5.1, + "battery": 20.7, + "display": 44.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.665763", + "updated_at": "2026-06-19T00:43:44.665763" +} diff --git a/site/public/v1/smartphones/sm-f9000-galaxy-fold-td-lte-cn-512gb/score/index.json b/site/public/v1/smartphones/sm-f9000-galaxy-fold-td-lte-cn-512gb/score/index.json new file mode 100644 index 00000000000..f0bc662a294 --- /dev/null +++ b/site/public/v1/smartphones/sm-f9000-galaxy-fold-td-lte-cn-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 6.0, + "camera": 5.1, + "battery": 20.7, + "display": 44.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f900f-galaxy-fold-global-td-lte-512gb/index.json b/site/public/v1/smartphones/sm-f900f-galaxy-fold-global-td-lte-512gb/index.json new file mode 100644 index 00000000000..78f491a30d2 --- /dev/null +++ b/site/public/v1/smartphones/sm-f900f-galaxy-fold-global-td-lte-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3937, + "slug": "sm-f900f-galaxy-fold-global-td-lte-512gb", + "name": "SM-F900F Galaxy Fold Global TD-LTE 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-09-06", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 4.58, + "resolution": "720x1680", + "type": "AM-OLED display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4380, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 276.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 6.0, + "camera": 5.1, + "battery": 20.7, + "display": 44.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.665763", + "updated_at": "2026-06-19T00:43:44.665763" +} diff --git a/site/public/v1/smartphones/sm-f900f-galaxy-fold-global-td-lte-512gb/score/index.json b/site/public/v1/smartphones/sm-f900f-galaxy-fold-global-td-lte-512gb/score/index.json new file mode 100644 index 00000000000..f0bc662a294 --- /dev/null +++ b/site/public/v1/smartphones/sm-f900f-galaxy-fold-global-td-lte-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 6.0, + "camera": 5.1, + "battery": 20.7, + "display": 44.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f900j-galaxy-fold-wimax-2-512gb-scv44/index.json b/site/public/v1/smartphones/sm-f900j-galaxy-fold-wimax-2-512gb-scv44/index.json new file mode 100644 index 00000000000..e3d41c63c2b --- /dev/null +++ b/site/public/v1/smartphones/sm-f900j-galaxy-fold-wimax-2-512gb-scv44/index.json @@ -0,0 +1,76 @@ +{ + "id": 3938, + "slug": "sm-f900j-galaxy-fold-wimax-2-512gb-scv44", + "name": "SM-F900J Galaxy Fold WiMAX 2+ 512GB SCV44", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-10-26", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 4.58, + "resolution": "720x1680", + "type": "AM-OLED display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4380, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 276.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 6.0, + "camera": 5.1, + "battery": 20.7, + "display": 44.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.665763", + "updated_at": "2026-06-19T00:43:44.665763" +} diff --git a/site/public/v1/smartphones/sm-f900j-galaxy-fold-wimax-2-512gb-scv44/score/index.json b/site/public/v1/smartphones/sm-f900j-galaxy-fold-wimax-2-512gb-scv44/score/index.json new file mode 100644 index 00000000000..f0bc662a294 --- /dev/null +++ b/site/public/v1/smartphones/sm-f900j-galaxy-fold-wimax-2-512gb-scv44/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 6.0, + "camera": 5.1, + "battery": 20.7, + "display": 44.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f900u-galaxy-fold-td-lte-us-512gb/index.json b/site/public/v1/smartphones/sm-f900u-galaxy-fold-td-lte-us-512gb/index.json new file mode 100644 index 00000000000..1a8ca1f3ec2 --- /dev/null +++ b/site/public/v1/smartphones/sm-f900u-galaxy-fold-td-lte-us-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3939, + "slug": "sm-f900u-galaxy-fold-td-lte-us-512gb", + "name": "SM-F900U Galaxy Fold TD-LTE US 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-09-27", + "msrp_usd": 1980, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 4.58, + "resolution": "720x1680", + "type": "AM-OLED display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4380, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 276.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 6.0, + "camera": 5.1, + "battery": 20.7, + "display": 44.9, + "value": 9.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.665763", + "updated_at": "2026-06-19T00:43:44.665763" +} diff --git a/site/public/v1/smartphones/sm-f900u-galaxy-fold-td-lte-us-512gb/score/index.json b/site/public/v1/smartphones/sm-f900u-galaxy-fold-td-lte-us-512gb/score/index.json new file mode 100644 index 00000000000..2816bd03794 --- /dev/null +++ b/site/public/v1/smartphones/sm-f900u-galaxy-fold-td-lte-us-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 6.0, + "camera": 5.1, + "battery": 20.7, + "display": 44.9, + "value": 9.6 +} diff --git a/site/public/v1/smartphones/sm-f900u1-galaxy-fold-td-lte-us-512gb/index.json b/site/public/v1/smartphones/sm-f900u1-galaxy-fold-td-lte-us-512gb/index.json new file mode 100644 index 00000000000..1da0d321ada --- /dev/null +++ b/site/public/v1/smartphones/sm-f900u1-galaxy-fold-td-lte-us-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3940, + "slug": "sm-f900u1-galaxy-fold-td-lte-us-512gb", + "name": "SM-F900U1 Galaxy Fold TD-LTE US 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-12-23", + "msrp_usd": 1999, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 4.58, + "resolution": "720x1680", + "type": "AM-OLED display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4380, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 276.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 6.0, + "camera": 5.1, + "battery": 20.7, + "display": 44.9, + "value": 9.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.666763", + "updated_at": "2026-06-19T00:43:44.666763" +} diff --git a/site/public/v1/smartphones/sm-f900u1-galaxy-fold-td-lte-us-512gb/score/index.json b/site/public/v1/smartphones/sm-f900u1-galaxy-fold-td-lte-us-512gb/score/index.json new file mode 100644 index 00000000000..2816bd03794 --- /dev/null +++ b/site/public/v1/smartphones/sm-f900u1-galaxy-fold-td-lte-us-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 6.0, + "camera": 5.1, + "battery": 20.7, + "display": 44.9, + "value": 9.6 +} diff --git a/site/public/v1/smartphones/sm-f907b-galaxy-fold-5g-global-td-lte-512gb/index.json b/site/public/v1/smartphones/sm-f907b-galaxy-fold-5g-global-td-lte-512gb/index.json new file mode 100644 index 00000000000..a78fc00da9b --- /dev/null +++ b/site/public/v1/smartphones/sm-f907b-galaxy-fold-5g-global-td-lte-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3941, + "slug": "sm-f907b-galaxy-fold-5g-global-td-lte-512gb", + "name": "SM-F907B Galaxy Fold 5G Global TD-LTE 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-09-18", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 4.58, + "resolution": "720x1680", + "type": "AM-OLED display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4234, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 276.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 6.0, + "camera": 5.1, + "battery": 18.5, + "display": 44.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.666763", + "updated_at": "2026-06-19T00:43:44.666763" +} diff --git a/site/public/v1/smartphones/sm-f907b-galaxy-fold-5g-global-td-lte-512gb/score/index.json b/site/public/v1/smartphones/sm-f907b-galaxy-fold-5g-global-td-lte-512gb/score/index.json new file mode 100644 index 00000000000..02a85f99073 --- /dev/null +++ b/site/public/v1/smartphones/sm-f907b-galaxy-fold-5g-global-td-lte-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 6.0, + "camera": 5.1, + "battery": 18.5, + "display": 44.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f907n-galaxy-fold-5g-td-lte-kr-512gb/index.json b/site/public/v1/smartphones/sm-f907n-galaxy-fold-5g-td-lte-kr-512gb/index.json new file mode 100644 index 00000000000..596358c8332 --- /dev/null +++ b/site/public/v1/smartphones/sm-f907n-galaxy-fold-5g-td-lte-kr-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3942, + "slug": "sm-f907n-galaxy-fold-5g-td-lte-kr-512gb", + "name": "SM-F907N Galaxy Fold 5G TD-LTE KR 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-09-06", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 4.58, + "resolution": "720x1680", + "type": "AM-OLED display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4234, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 276.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 6.0, + "camera": 5.1, + "battery": 18.5, + "display": 44.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.666763", + "updated_at": "2026-06-19T00:43:44.666763" +} diff --git a/site/public/v1/smartphones/sm-f907n-galaxy-fold-5g-td-lte-kr-512gb/score/index.json b/site/public/v1/smartphones/sm-f907n-galaxy-fold-5g-td-lte-kr-512gb/score/index.json new file mode 100644 index 00000000000..02a85f99073 --- /dev/null +++ b/site/public/v1/smartphones/sm-f907n-galaxy-fold-5g-td-lte-kr-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 6.0, + "camera": 5.1, + "battery": 18.5, + "display": 44.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f9160-galaxy-z-fold2-5g-td-lte-cn-hk-512gb/index.json b/site/public/v1/smartphones/sm-f9160-galaxy-z-fold2-5g-td-lte-cn-hk-512gb/index.json new file mode 100644 index 00000000000..d2ed7284359 --- /dev/null +++ b/site/public/v1/smartphones/sm-f9160-galaxy-z-fold2-5g-td-lte-cn-hk-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4169, + "slug": "sm-f9160-galaxy-z-fold2-5g-td-lte-cn-hk-512gb", + "name": "SM-F9160 Galaxy Z Fold2 5G TD-LTE CN HK 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-09-18", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.22, + "resolution": "816x2260", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 282.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 6.4, + "camera": 5.1, + "battery": 24.4, + "display": 51.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.696787", + "updated_at": "2026-06-19T00:43:44.696787" +} diff --git a/site/public/v1/smartphones/sm-f9160-galaxy-z-fold2-5g-td-lte-cn-hk-512gb/score/index.json b/site/public/v1/smartphones/sm-f9160-galaxy-z-fold2-5g-td-lte-cn-hk-512gb/score/index.json new file mode 100644 index 00000000000..de52d720248 --- /dev/null +++ b/site/public/v1/smartphones/sm-f9160-galaxy-z-fold2-5g-td-lte-cn-hk-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 6.4, + "camera": 5.1, + "battery": 24.4, + "display": 51.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f9160-galaxy-z-fold2-5g-thom-browne-edition-td-lte-cn-hk-512gb/index.json b/site/public/v1/smartphones/sm-f9160-galaxy-z-fold2-5g-thom-browne-edition-td-lte-cn-hk-512gb/index.json new file mode 100644 index 00000000000..40ee13668d4 --- /dev/null +++ b/site/public/v1/smartphones/sm-f9160-galaxy-z-fold2-5g-thom-browne-edition-td-lte-cn-hk-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4170, + "slug": "sm-f9160-galaxy-z-fold2-5g-thom-browne-edition-td-lte-cn-hk-512gb", + "name": "SM-F9160 Galaxy Z Fold2 5G Thom Browne Edition TD-LTE CN HK 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.22, + "resolution": "816x2260", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 282.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 6.4, + "camera": 5.1, + "battery": 24.4, + "display": 51.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.696787", + "updated_at": "2026-06-19T00:43:44.696787" +} diff --git a/site/public/v1/smartphones/sm-f9160-galaxy-z-fold2-5g-thom-browne-edition-td-lte-cn-hk-512gb/score/index.json b/site/public/v1/smartphones/sm-f9160-galaxy-z-fold2-5g-thom-browne-edition-td-lte-cn-hk-512gb/score/index.json new file mode 100644 index 00000000000..de52d720248 --- /dev/null +++ b/site/public/v1/smartphones/sm-f9160-galaxy-z-fold2-5g-thom-browne-edition-td-lte-cn-hk-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 6.4, + "camera": 5.1, + "battery": 24.4, + "display": 51.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f916b-galaxy-z-fold2-5g-global-dual-sim-td-lte-256gb/index.json b/site/public/v1/smartphones/sm-f916b-galaxy-z-fold2-5g-global-dual-sim-td-lte-256gb/index.json new file mode 100644 index 00000000000..48e90d4621b --- /dev/null +++ b/site/public/v1/smartphones/sm-f916b-galaxy-z-fold2-5g-global-dual-sim-td-lte-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4171, + "slug": "sm-f916b-galaxy-z-fold2-5g-global-dual-sim-td-lte-256gb", + "name": "SM-F916B Galaxy Z Fold2 5G Global Dual SIM TD-LTE 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-09-18", + "msrp_usd": 1799, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.22, + "resolution": "816x2260", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 282.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 6.4, + "camera": 5.1, + "battery": 24.4, + "display": 51.1, + "value": 10.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.696787", + "updated_at": "2026-06-19T00:43:44.696787" +} diff --git a/site/public/v1/smartphones/sm-f916b-galaxy-z-fold2-5g-global-dual-sim-td-lte-256gb/score/index.json b/site/public/v1/smartphones/sm-f916b-galaxy-z-fold2-5g-global-dual-sim-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..6a5ca1a4d06 --- /dev/null +++ b/site/public/v1/smartphones/sm-f916b-galaxy-z-fold2-5g-global-dual-sim-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 6.4, + "camera": 5.1, + "battery": 24.4, + "display": 51.1, + "value": 10.9 +} diff --git a/site/public/v1/smartphones/sm-f916b-galaxy-z-fold2-5g-thom-browne-edition-global-dual-sim-td-lte-256gb/index.json b/site/public/v1/smartphones/sm-f916b-galaxy-z-fold2-5g-thom-browne-edition-global-dual-sim-td-lte-256gb/index.json new file mode 100644 index 00000000000..5eb4ea36d9e --- /dev/null +++ b/site/public/v1/smartphones/sm-f916b-galaxy-z-fold2-5g-thom-browne-edition-global-dual-sim-td-lte-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4172, + "slug": "sm-f916b-galaxy-z-fold2-5g-thom-browne-edition-global-dual-sim-td-lte-256gb", + "name": "SM-F916B Galaxy Z Fold2 5G Thom Browne Edition Global Dual SIM TD-LTE 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.22, + "resolution": "816x2260", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 282.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 6.4, + "camera": 5.1, + "battery": 24.4, + "display": 51.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.696787", + "updated_at": "2026-06-19T00:43:44.696787" +} diff --git a/site/public/v1/smartphones/sm-f916b-galaxy-z-fold2-5g-thom-browne-edition-global-dual-sim-td-lte-256gb/score/index.json b/site/public/v1/smartphones/sm-f916b-galaxy-z-fold2-5g-thom-browne-edition-global-dual-sim-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..de52d720248 --- /dev/null +++ b/site/public/v1/smartphones/sm-f916b-galaxy-z-fold2-5g-thom-browne-edition-global-dual-sim-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 6.4, + "camera": 5.1, + "battery": 24.4, + "display": 51.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f916j-galaxy-z-fold2-uw-5g-td-lte-jp-256gb-scg05-sm-f916q/index.json b/site/public/v1/smartphones/sm-f916j-galaxy-z-fold2-uw-5g-td-lte-jp-256gb-scg05-sm-f916q/index.json new file mode 100644 index 00000000000..cf976111241 --- /dev/null +++ b/site/public/v1/smartphones/sm-f916j-galaxy-z-fold2-uw-5g-td-lte-jp-256gb-scg05-sm-f916q/index.json @@ -0,0 +1,77 @@ +{ + "id": 4173, + "slug": "sm-f916j-galaxy-z-fold2-uw-5g-td-lte-jp-256gb-scg05-sm-f916q", + "name": "SM-F916J Galaxy Z Fold2 UW 5G TD-LTE JP 256GB SCG05 / SM-F916Q", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-11-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.22, + "resolution": "816x2260", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 282.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 6.4, + "camera": 5.1, + "battery": 24.4, + "display": 51.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.697780", + "updated_at": "2026-06-19T00:43:44.697780" +} diff --git a/site/public/v1/smartphones/sm-f916j-galaxy-z-fold2-uw-5g-td-lte-jp-256gb-scg05-sm-f916q/score/index.json b/site/public/v1/smartphones/sm-f916j-galaxy-z-fold2-uw-5g-td-lte-jp-256gb-scg05-sm-f916q/score/index.json new file mode 100644 index 00000000000..de52d720248 --- /dev/null +++ b/site/public/v1/smartphones/sm-f916j-galaxy-z-fold2-uw-5g-td-lte-jp-256gb-scg05-sm-f916q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 6.4, + "camera": 5.1, + "battery": 24.4, + "display": 51.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f916n-galaxy-z-fold2-uw-5g-td-lte-kr-256gb/index.json b/site/public/v1/smartphones/sm-f916n-galaxy-z-fold2-uw-5g-td-lte-kr-256gb/index.json new file mode 100644 index 00000000000..57646ebc552 --- /dev/null +++ b/site/public/v1/smartphones/sm-f916n-galaxy-z-fold2-uw-5g-td-lte-kr-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4174, + "slug": "sm-f916n-galaxy-z-fold2-uw-5g-td-lte-kr-256gb", + "name": "SM-F916N Galaxy Z Fold2 UW 5G TD-LTE KR 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-09-18", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.22, + "resolution": "816x2260", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 282.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 6.4, + "camera": 5.1, + "battery": 24.4, + "display": 51.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.697780", + "updated_at": "2026-06-19T00:43:44.697780" +} diff --git a/site/public/v1/smartphones/sm-f916n-galaxy-z-fold2-uw-5g-td-lte-kr-256gb/score/index.json b/site/public/v1/smartphones/sm-f916n-galaxy-z-fold2-uw-5g-td-lte-kr-256gb/score/index.json new file mode 100644 index 00000000000..de52d720248 --- /dev/null +++ b/site/public/v1/smartphones/sm-f916n-galaxy-z-fold2-uw-5g-td-lte-kr-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 6.4, + "camera": 5.1, + "battery": 24.4, + "display": 51.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916a/index.json b/site/public/v1/smartphones/sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916a/index.json new file mode 100644 index 00000000000..f919b5e7bab --- /dev/null +++ b/site/public/v1/smartphones/sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916a/index.json @@ -0,0 +1,77 @@ +{ + "id": 4175, + "slug": "sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916a", + "name": "SM-F916U Galaxy Z Fold2 5G TD-LTE US 256GB / SM-F916A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-09-18", + "msrp_usd": 2000, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.22, + "resolution": "816x2260", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 282.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 6.4, + "camera": 5.1, + "battery": 24.4, + "display": 51.1, + "value": 10.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.697780", + "updated_at": "2026-06-19T00:43:44.697780" +} diff --git a/site/public/v1/smartphones/sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916a/score/index.json b/site/public/v1/smartphones/sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916a/score/index.json new file mode 100644 index 00000000000..6a5ca1a4d06 --- /dev/null +++ b/site/public/v1/smartphones/sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 6.4, + "camera": 5.1, + "battery": 24.4, + "display": 51.1, + "value": 10.9 +} diff --git a/site/public/v1/smartphones/sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916p/index.json b/site/public/v1/smartphones/sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916p/index.json new file mode 100644 index 00000000000..736e09f40d0 --- /dev/null +++ b/site/public/v1/smartphones/sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916p/index.json @@ -0,0 +1,77 @@ +{ + "id": 4176, + "slug": "sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916p", + "name": "SM-F916U Galaxy Z Fold2 5G TD-LTE US 256GB / SM-F916P", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-09-18", + "msrp_usd": 2000, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.22, + "resolution": "816x2260", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 282.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 6.4, + "camera": 5.1, + "battery": 24.4, + "display": 51.1, + "value": 10.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.697780", + "updated_at": "2026-06-19T00:43:44.697780" +} diff --git a/site/public/v1/smartphones/sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916p/score/index.json b/site/public/v1/smartphones/sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916p/score/index.json new file mode 100644 index 00000000000..6a5ca1a4d06 --- /dev/null +++ b/site/public/v1/smartphones/sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916p/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 6.4, + "camera": 5.1, + "battery": 24.4, + "display": 51.1, + "value": 10.9 +} diff --git a/site/public/v1/smartphones/sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916r4/index.json b/site/public/v1/smartphones/sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916r4/index.json new file mode 100644 index 00000000000..697523b7f2b --- /dev/null +++ b/site/public/v1/smartphones/sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916r4/index.json @@ -0,0 +1,77 @@ +{ + "id": 4177, + "slug": "sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916r4", + "name": "SM-F916U Galaxy Z Fold2 5G TD-LTE US 256GB / SM-F916R4", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-09-18", + "msrp_usd": 2000, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.22, + "resolution": "816x2260", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 282.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 6.4, + "camera": 5.1, + "battery": 24.4, + "display": 51.1, + "value": 10.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.697780", + "updated_at": "2026-06-19T00:43:44.697780" +} diff --git a/site/public/v1/smartphones/sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916r4/score/index.json b/site/public/v1/smartphones/sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916r4/score/index.json new file mode 100644 index 00000000000..6a5ca1a4d06 --- /dev/null +++ b/site/public/v1/smartphones/sm-f916u-galaxy-z-fold2-5g-td-lte-us-256gb-sm-f916r4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 6.4, + "camera": 5.1, + "battery": 24.4, + "display": 51.1, + "value": 10.9 +} diff --git a/site/public/v1/smartphones/sm-f916u-galaxy-z-fold2-5g-uw-td-lte-us-256gb-sm-f916t/index.json b/site/public/v1/smartphones/sm-f916u-galaxy-z-fold2-5g-uw-td-lte-us-256gb-sm-f916t/index.json new file mode 100644 index 00000000000..792ef55b17a --- /dev/null +++ b/site/public/v1/smartphones/sm-f916u-galaxy-z-fold2-5g-uw-td-lte-us-256gb-sm-f916t/index.json @@ -0,0 +1,77 @@ +{ + "id": 4178, + "slug": "sm-f916u-galaxy-z-fold2-5g-uw-td-lte-us-256gb-sm-f916t", + "name": "SM-F916U Galaxy Z Fold2 5G UW TD-LTE US 256GB / SM-F916T", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-09-17", + "msrp_usd": 2000, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.22, + "resolution": "816x2260", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 282.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 6.4, + "camera": 5.1, + "battery": 24.4, + "display": 51.1, + "value": 10.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.697780", + "updated_at": "2026-06-19T00:43:44.697780" +} diff --git a/site/public/v1/smartphones/sm-f916u-galaxy-z-fold2-5g-uw-td-lte-us-256gb-sm-f916t/score/index.json b/site/public/v1/smartphones/sm-f916u-galaxy-z-fold2-5g-uw-td-lte-us-256gb-sm-f916t/score/index.json new file mode 100644 index 00000000000..6a5ca1a4d06 --- /dev/null +++ b/site/public/v1/smartphones/sm-f916u-galaxy-z-fold2-5g-uw-td-lte-us-256gb-sm-f916t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 6.4, + "camera": 5.1, + "battery": 24.4, + "display": 51.1, + "value": 10.9 +} diff --git a/site/public/v1/smartphones/sm-f916u-galaxy-z-fold2-uw-5g-td-lte-us-256gb-sm-f916v/index.json b/site/public/v1/smartphones/sm-f916u-galaxy-z-fold2-uw-5g-td-lte-us-256gb-sm-f916v/index.json new file mode 100644 index 00000000000..5529e1c7f1a --- /dev/null +++ b/site/public/v1/smartphones/sm-f916u-galaxy-z-fold2-uw-5g-td-lte-us-256gb-sm-f916v/index.json @@ -0,0 +1,77 @@ +{ + "id": 4179, + "slug": "sm-f916u-galaxy-z-fold2-uw-5g-td-lte-us-256gb-sm-f916v", + "name": "SM-F916U Galaxy Z Fold2 UW 5G TD-LTE US 256GB / SM-F916V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-09-18", + "msrp_usd": 2000, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.22, + "resolution": "816x2260", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 282.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 6.4, + "camera": 5.1, + "battery": 24.4, + "display": 51.1, + "value": 10.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.697780", + "updated_at": "2026-06-19T00:43:44.697780" +} diff --git a/site/public/v1/smartphones/sm-f916u-galaxy-z-fold2-uw-5g-td-lte-us-256gb-sm-f916v/score/index.json b/site/public/v1/smartphones/sm-f916u-galaxy-z-fold2-uw-5g-td-lte-us-256gb-sm-f916v/score/index.json new file mode 100644 index 00000000000..6a5ca1a4d06 --- /dev/null +++ b/site/public/v1/smartphones/sm-f916u-galaxy-z-fold2-uw-5g-td-lte-us-256gb-sm-f916v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 6.4, + "camera": 5.1, + "battery": 24.4, + "display": 51.1, + "value": 10.9 +} diff --git a/site/public/v1/smartphones/sm-f916u1-galaxy-z-fold2-uw-5g-td-lte-us-256gb/index.json b/site/public/v1/smartphones/sm-f916u1-galaxy-z-fold2-uw-5g-td-lte-us-256gb/index.json new file mode 100644 index 00000000000..f707a566d97 --- /dev/null +++ b/site/public/v1/smartphones/sm-f916u1-galaxy-z-fold2-uw-5g-td-lte-us-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4180, + "slug": "sm-f916u1-galaxy-z-fold2-uw-5g-td-lte-us-256gb", + "name": "SM-F916U1 Galaxy Z Fold2 UW 5G TD-LTE US 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-09-18", + "msrp_usd": 2000, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.22, + "resolution": "816x2260", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 282.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 6.4, + "camera": 5.1, + "battery": 24.4, + "display": 51.1, + "value": 10.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.697780", + "updated_at": "2026-06-19T00:43:44.697780" +} diff --git a/site/public/v1/smartphones/sm-f916u1-galaxy-z-fold2-uw-5g-td-lte-us-256gb/score/index.json b/site/public/v1/smartphones/sm-f916u1-galaxy-z-fold2-uw-5g-td-lte-us-256gb/score/index.json new file mode 100644 index 00000000000..6a5ca1a4d06 --- /dev/null +++ b/site/public/v1/smartphones/sm-f916u1-galaxy-z-fold2-uw-5g-td-lte-us-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 6.4, + "camera": 5.1, + "battery": 24.4, + "display": 51.1, + "value": 10.9 +} diff --git a/site/public/v1/smartphones/sm-f916u1-galaxy-z-fold2-uw-5g-thom-browne-edition-td-lte-us-256gb/index.json b/site/public/v1/smartphones/sm-f916u1-galaxy-z-fold2-uw-5g-thom-browne-edition-td-lte-us-256gb/index.json new file mode 100644 index 00000000000..f134f13c2c6 --- /dev/null +++ b/site/public/v1/smartphones/sm-f916u1-galaxy-z-fold2-uw-5g-thom-browne-edition-td-lte-us-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4181, + "slug": "sm-f916u1-galaxy-z-fold2-uw-5g-thom-browne-edition-td-lte-us-256gb", + "name": "SM-F916U1 Galaxy Z Fold2 UW 5G Thom Browne Edition TD-LTE US 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-09-26", + "msrp_usd": 3299, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.22, + "resolution": "816x2260", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 282.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 6.4, + "camera": 5.1, + "battery": 24.4, + "display": 51.1, + "value": 10.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.697780", + "updated_at": "2026-06-19T00:43:44.697780" +} diff --git a/site/public/v1/smartphones/sm-f916u1-galaxy-z-fold2-uw-5g-thom-browne-edition-td-lte-us-256gb/score/index.json b/site/public/v1/smartphones/sm-f916u1-galaxy-z-fold2-uw-5g-thom-browne-edition-td-lte-us-256gb/score/index.json new file mode 100644 index 00000000000..6a5ca1a4d06 --- /dev/null +++ b/site/public/v1/smartphones/sm-f916u1-galaxy-z-fold2-uw-5g-thom-browne-edition-td-lte-us-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 6.4, + "camera": 5.1, + "battery": 24.4, + "display": 51.1, + "value": 10.9 +} diff --git a/site/public/v1/smartphones/sm-f916w-galaxy-z-fold2-5g-td-lte-ca-256gb/index.json b/site/public/v1/smartphones/sm-f916w-galaxy-z-fold2-5g-td-lte-ca-256gb/index.json new file mode 100644 index 00000000000..81fbff87b90 --- /dev/null +++ b/site/public/v1/smartphones/sm-f916w-galaxy-z-fold2-5g-td-lte-ca-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4182, + "slug": "sm-f916w-galaxy-z-fold2-5g-td-lte-ca-256gb", + "name": "SM-F916W Galaxy Z Fold2 5G TD-LTE CA 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-10-01", + "msrp_usd": 2320, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.22, + "resolution": "816x2260", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 282.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 6.4, + "camera": 5.1, + "battery": 24.4, + "display": 51.1, + "value": 10.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.698780", + "updated_at": "2026-06-19T00:43:44.698780" +} diff --git a/site/public/v1/smartphones/sm-f916w-galaxy-z-fold2-5g-td-lte-ca-256gb/score/index.json b/site/public/v1/smartphones/sm-f916w-galaxy-z-fold2-5g-td-lte-ca-256gb/score/index.json new file mode 100644 index 00000000000..6a5ca1a4d06 --- /dev/null +++ b/site/public/v1/smartphones/sm-f916w-galaxy-z-fold2-5g-td-lte-ca-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 6.4, + "camera": 5.1, + "battery": 24.4, + "display": 51.1, + "value": 10.9 +} diff --git a/site/public/v1/smartphones/sm-f9260-galaxy-z-fold3-5g-dual-sim-td-lte-cn-hk-tw-512gb/index.json b/site/public/v1/smartphones/sm-f9260-galaxy-z-fold3-5g-dual-sim-td-lte-cn-hk-tw-512gb/index.json new file mode 100644 index 00000000000..d3e76e2eed6 --- /dev/null +++ b/site/public/v1/smartphones/sm-f9260-galaxy-z-fold3-5g-dual-sim-td-lte-cn-hk-tw-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4418, + "slug": "sm-f9260-galaxy-z-fold3-5g-dual-sim-td-lte-cn-hk-tw-512gb", + "name": "SM-F9260 Galaxy Z Fold3 5G Dual SIM TD-LTE CN HK TW 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-28", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4335, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 271.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.732205", + "updated_at": "2026-06-19T00:43:44.732205" +} diff --git a/site/public/v1/smartphones/sm-f9260-galaxy-z-fold3-5g-dual-sim-td-lte-cn-hk-tw-512gb/score/index.json b/site/public/v1/smartphones/sm-f9260-galaxy-z-fold3-5g-dual-sim-td-lte-cn-hk-tw-512gb/score/index.json new file mode 100644 index 00000000000..04526444af9 --- /dev/null +++ b/site/public/v1/smartphones/sm-f9260-galaxy-z-fold3-5g-dual-sim-td-lte-cn-hk-tw-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f9260-galaxy-z-fold3-5g-thom-browne-edition-dual-sim-td-lte-cn-hk-tw-512gb/index.json b/site/public/v1/smartphones/sm-f9260-galaxy-z-fold3-5g-thom-browne-edition-dual-sim-td-lte-cn-hk-tw-512gb/index.json new file mode 100644 index 00000000000..6a2d7008543 --- /dev/null +++ b/site/public/v1/smartphones/sm-f9260-galaxy-z-fold3-5g-thom-browne-edition-dual-sim-td-lte-cn-hk-tw-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4419, + "slug": "sm-f9260-galaxy-z-fold3-5g-thom-browne-edition-dual-sim-td-lte-cn-hk-tw-512gb", + "name": "SM-F9260 Galaxy Z Fold3 5G Thom Browne Edition Dual SIM TD-LTE CN HK TW 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-09-09", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4335, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 271.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.732205", + "updated_at": "2026-06-19T00:43:44.732205" +} diff --git a/site/public/v1/smartphones/sm-f9260-galaxy-z-fold3-5g-thom-browne-edition-dual-sim-td-lte-cn-hk-tw-512gb/score/index.json b/site/public/v1/smartphones/sm-f9260-galaxy-z-fold3-5g-thom-browne-edition-dual-sim-td-lte-cn-hk-tw-512gb/score/index.json new file mode 100644 index 00000000000..04526444af9 --- /dev/null +++ b/site/public/v1/smartphones/sm-f9260-galaxy-z-fold3-5g-thom-browne-edition-dual-sim-td-lte-cn-hk-tw-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f926b-ds-galaxy-z-fold3-5g-global-dual-sim-td-lte-256gb/index.json b/site/public/v1/smartphones/sm-f926b-ds-galaxy-z-fold3-5g-global-dual-sim-td-lte-256gb/index.json new file mode 100644 index 00000000000..daf8c8700ad --- /dev/null +++ b/site/public/v1/smartphones/sm-f926b-ds-galaxy-z-fold3-5g-global-dual-sim-td-lte-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4420, + "slug": "sm-f926b-ds-galaxy-z-fold3-5g-global-dual-sim-td-lte-256gb", + "name": "SM-F926B/DS Galaxy Z Fold3 5G Global Dual SIM TD-LTE 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": 1599, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4335, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 271.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": 12.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.732205", + "updated_at": "2026-06-19T00:43:44.732205" +} diff --git a/site/public/v1/smartphones/sm-f926b-ds-galaxy-z-fold3-5g-global-dual-sim-td-lte-256gb/score/index.json b/site/public/v1/smartphones/sm-f926b-ds-galaxy-z-fold3-5g-global-dual-sim-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..bd4bb16c781 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926b-ds-galaxy-z-fold3-5g-global-dual-sim-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": 12.2 +} diff --git a/site/public/v1/smartphones/sm-f926b-ds-galaxy-z-fold3-5g-global-dual-sim-td-lte-512gb/index.json b/site/public/v1/smartphones/sm-f926b-ds-galaxy-z-fold3-5g-global-dual-sim-td-lte-512gb/index.json new file mode 100644 index 00000000000..ddd31964e91 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926b-ds-galaxy-z-fold3-5g-global-dual-sim-td-lte-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4421, + "slug": "sm-f926b-ds-galaxy-z-fold3-5g-global-dual-sim-td-lte-512gb", + "name": "SM-F926B/DS Galaxy Z Fold3 5G Global Dual SIM TD-LTE 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": 1899, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4335, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 271.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": 12.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.732205", + "updated_at": "2026-06-19T00:43:44.732205" +} diff --git a/site/public/v1/smartphones/sm-f926b-ds-galaxy-z-fold3-5g-global-dual-sim-td-lte-512gb/score/index.json b/site/public/v1/smartphones/sm-f926b-ds-galaxy-z-fold3-5g-global-dual-sim-td-lte-512gb/score/index.json new file mode 100644 index 00000000000..bd4bb16c781 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926b-ds-galaxy-z-fold3-5g-global-dual-sim-td-lte-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": 12.2 +} diff --git a/site/public/v1/smartphones/sm-f926b-galaxy-z-fold3-5g-global-td-lte-256gb/index.json b/site/public/v1/smartphones/sm-f926b-galaxy-z-fold3-5g-global-td-lte-256gb/index.json new file mode 100644 index 00000000000..ae4af9f9e0b --- /dev/null +++ b/site/public/v1/smartphones/sm-f926b-galaxy-z-fold3-5g-global-td-lte-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4422, + "slug": "sm-f926b-galaxy-z-fold3-5g-global-td-lte-256gb", + "name": "SM-F926B Galaxy Z Fold3 5G Global TD-LTE 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": 2499, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4335, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 272.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": 12.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.732205", + "updated_at": "2026-06-19T00:43:44.732205" +} diff --git a/site/public/v1/smartphones/sm-f926b-galaxy-z-fold3-5g-global-td-lte-256gb/score/index.json b/site/public/v1/smartphones/sm-f926b-galaxy-z-fold3-5g-global-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..bd4bb16c781 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926b-galaxy-z-fold3-5g-global-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": 12.2 +} diff --git a/site/public/v1/smartphones/sm-f926b-galaxy-z-fold3-5g-global-td-lte-512gb/index.json b/site/public/v1/smartphones/sm-f926b-galaxy-z-fold3-5g-global-td-lte-512gb/index.json new file mode 100644 index 00000000000..b1d01b8d8c0 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926b-galaxy-z-fold3-5g-global-td-lte-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4423, + "slug": "sm-f926b-galaxy-z-fold3-5g-global-td-lte-512gb", + "name": "SM-F926B Galaxy Z Fold3 5G Global TD-LTE 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": 2649, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4335, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 272.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": 12.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.732205", + "updated_at": "2026-06-19T00:43:44.732205" +} diff --git a/site/public/v1/smartphones/sm-f926b-galaxy-z-fold3-5g-global-td-lte-512gb/score/index.json b/site/public/v1/smartphones/sm-f926b-galaxy-z-fold3-5g-global-td-lte-512gb/score/index.json new file mode 100644 index 00000000000..bd4bb16c781 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926b-galaxy-z-fold3-5g-global-td-lte-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": 12.2 +} diff --git a/site/public/v1/smartphones/sm-f926b-galaxy-z-fold3-5g-thom-browne-edition-global-td-lte-512gb/index.json b/site/public/v1/smartphones/sm-f926b-galaxy-z-fold3-5g-thom-browne-edition-global-td-lte-512gb/index.json new file mode 100644 index 00000000000..207123c31c0 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926b-galaxy-z-fold3-5g-thom-browne-edition-global-td-lte-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4424, + "slug": "sm-f926b-galaxy-z-fold3-5g-thom-browne-edition-global-td-lte-512gb", + "name": "SM-F926B Galaxy Z Fold3 5G Thom Browne Edition Global TD-LTE 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4335, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 272.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.732205", + "updated_at": "2026-06-19T00:43:44.732205" +} diff --git a/site/public/v1/smartphones/sm-f926b-galaxy-z-fold3-5g-thom-browne-edition-global-td-lte-512gb/score/index.json b/site/public/v1/smartphones/sm-f926b-galaxy-z-fold3-5g-thom-browne-edition-global-td-lte-512gb/score/index.json new file mode 100644 index 00000000000..04526444af9 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926b-galaxy-z-fold3-5g-thom-browne-edition-global-td-lte-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f926d-galaxy-z-fold3-5g-uw-td-lte-jp-256gb-sc-55b/index.json b/site/public/v1/smartphones/sm-f926d-galaxy-z-fold3-5g-uw-td-lte-jp-256gb-sc-55b/index.json new file mode 100644 index 00000000000..65440951d37 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926d-galaxy-z-fold3-5g-uw-td-lte-jp-256gb-sc-55b/index.json @@ -0,0 +1,77 @@ +{ + "id": 4425, + "slug": "sm-f926d-galaxy-z-fold3-5g-uw-td-lte-jp-256gb-sc-55b", + "name": "SM-F926D Galaxy Z Fold3 5G UW TD-LTE JP 256GB SC-55B", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-10-06", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4335, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 272.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.0, + "battery": 31.9, + "display": 51.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.732205", + "updated_at": "2026-06-19T00:43:44.732205" +} diff --git a/site/public/v1/smartphones/sm-f926d-galaxy-z-fold3-5g-uw-td-lte-jp-256gb-sc-55b/score/index.json b/site/public/v1/smartphones/sm-f926d-galaxy-z-fold3-5g-uw-td-lte-jp-256gb-sc-55b/score/index.json new file mode 100644 index 00000000000..d4af8a75e48 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926d-galaxy-z-fold3-5g-uw-td-lte-jp-256gb-sc-55b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.0, + "battery": 31.9, + "display": 51.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f926j-galaxy-z-fold3-5g-uw-td-lte-jp-256gb-scg11/index.json b/site/public/v1/smartphones/sm-f926j-galaxy-z-fold3-5g-uw-td-lte-jp-256gb-scg11/index.json new file mode 100644 index 00000000000..b000b4b6602 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926j-galaxy-z-fold3-5g-uw-td-lte-jp-256gb-scg11/index.json @@ -0,0 +1,77 @@ +{ + "id": 4426, + "slug": "sm-f926j-galaxy-z-fold3-5g-uw-td-lte-jp-256gb-scg11", + "name": "SM-F926J Galaxy Z Fold3 5G UW TD-LTE JP 256GB SCG11", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-10-06", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4335, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 272.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.0, + "battery": 31.9, + "display": 51.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.732205", + "updated_at": "2026-06-19T00:43:44.732205" +} diff --git a/site/public/v1/smartphones/sm-f926j-galaxy-z-fold3-5g-uw-td-lte-jp-256gb-scg11/score/index.json b/site/public/v1/smartphones/sm-f926j-galaxy-z-fold3-5g-uw-td-lte-jp-256gb-scg11/score/index.json new file mode 100644 index 00000000000..d4af8a75e48 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926j-galaxy-z-fold3-5g-uw-td-lte-jp-256gb-scg11/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.0, + "battery": 31.9, + "display": 51.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f926n-galaxy-z-fold3-5g-uw-td-lte-kr-256gb/index.json b/site/public/v1/smartphones/sm-f926n-galaxy-z-fold3-5g-uw-td-lte-kr-256gb/index.json new file mode 100644 index 00000000000..22da32a4bcb --- /dev/null +++ b/site/public/v1/smartphones/sm-f926n-galaxy-z-fold3-5g-uw-td-lte-kr-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4427, + "slug": "sm-f926n-galaxy-z-fold3-5g-uw-td-lte-kr-256gb", + "name": "SM-F926N Galaxy Z Fold3 5G UW TD-LTE KR 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4335, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 271.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.733204", + "updated_at": "2026-06-19T00:43:44.733204" +} diff --git a/site/public/v1/smartphones/sm-f926n-galaxy-z-fold3-5g-uw-td-lte-kr-256gb/score/index.json b/site/public/v1/smartphones/sm-f926n-galaxy-z-fold3-5g-uw-td-lte-kr-256gb/score/index.json new file mode 100644 index 00000000000..04526444af9 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926n-galaxy-z-fold3-5g-uw-td-lte-kr-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f926n-galaxy-z-fold3-5g-uw-td-lte-kr-512gb/index.json b/site/public/v1/smartphones/sm-f926n-galaxy-z-fold3-5g-uw-td-lte-kr-512gb/index.json new file mode 100644 index 00000000000..ea3e49908c4 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926n-galaxy-z-fold3-5g-uw-td-lte-kr-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4428, + "slug": "sm-f926n-galaxy-z-fold3-5g-uw-td-lte-kr-512gb", + "name": "SM-F926N Galaxy Z Fold3 5G UW TD-LTE KR 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4335, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 271.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.733204", + "updated_at": "2026-06-19T00:43:44.733204" +} diff --git a/site/public/v1/smartphones/sm-f926n-galaxy-z-fold3-5g-uw-td-lte-kr-512gb/score/index.json b/site/public/v1/smartphones/sm-f926n-galaxy-z-fold3-5g-uw-td-lte-kr-512gb/score/index.json new file mode 100644 index 00000000000..04526444af9 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926n-galaxy-z-fold3-5g-uw-td-lte-kr-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926a/index.json b/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926a/index.json new file mode 100644 index 00000000000..5aca6d41374 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926a/index.json @@ -0,0 +1,77 @@ +{ + "id": 4429, + "slug": "sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926a", + "name": "SM-F926U Galaxy Z Fold3 5G UW TD-LTE US 256GB / SM-F926A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": 1800, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4335, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 271.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": 12.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.733204", + "updated_at": "2026-06-19T00:43:44.733204" +} diff --git a/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926a/score/index.json b/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926a/score/index.json new file mode 100644 index 00000000000..bd4bb16c781 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": 12.2 +} diff --git a/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926r4/index.json b/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926r4/index.json new file mode 100644 index 00000000000..cd2b99b6f02 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926r4/index.json @@ -0,0 +1,77 @@ +{ + "id": 4430, + "slug": "sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926r4", + "name": "SM-F926U Galaxy Z Fold3 5G UW TD-LTE US 256GB / SM-F926R4", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": 1800, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4335, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 271.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": 12.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.733204", + "updated_at": "2026-06-19T00:43:44.733204" +} diff --git a/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926r4/score/index.json b/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926r4/score/index.json new file mode 100644 index 00000000000..bd4bb16c781 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926r4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": 12.2 +} diff --git a/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926t/index.json b/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926t/index.json new file mode 100644 index 00000000000..d4822492e65 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926t/index.json @@ -0,0 +1,77 @@ +{ + "id": 4431, + "slug": "sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926t", + "name": "SM-F926U Galaxy Z Fold3 5G UW TD-LTE US 256GB / SM-F926T", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": 1800, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4335, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 271.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": 12.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.733204", + "updated_at": "2026-06-19T00:43:44.733204" +} diff --git a/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926t/score/index.json b/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926t/score/index.json new file mode 100644 index 00000000000..bd4bb16c781 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": 12.2 +} diff --git a/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926v/index.json b/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926v/index.json new file mode 100644 index 00000000000..fa43726a5c4 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926v/index.json @@ -0,0 +1,77 @@ +{ + "id": 4432, + "slug": "sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926v", + "name": "SM-F926U Galaxy Z Fold3 5G UW TD-LTE US 256GB / SM-F926V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": 1800, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4335, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 271.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": 12.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.733204", + "updated_at": "2026-06-19T00:43:44.733204" +} diff --git a/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926v/score/index.json b/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926v/score/index.json new file mode 100644 index 00000000000..bd4bb16c781 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-256gb-sm-f926v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": 12.2 +} diff --git a/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926a/index.json b/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926a/index.json new file mode 100644 index 00000000000..33a87f361ad --- /dev/null +++ b/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926a/index.json @@ -0,0 +1,77 @@ +{ + "id": 4433, + "slug": "sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926a", + "name": "SM-F926U Galaxy Z Fold3 5G UW TD-LTE US 512GB / SM-F926A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": 1900, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4335, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 271.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": 12.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.733204", + "updated_at": "2026-06-19T00:43:44.733204" +} diff --git a/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926a/score/index.json b/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926a/score/index.json new file mode 100644 index 00000000000..bd4bb16c781 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": 12.2 +} diff --git a/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926r4/index.json b/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926r4/index.json new file mode 100644 index 00000000000..d44c5efc023 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926r4/index.json @@ -0,0 +1,77 @@ +{ + "id": 4434, + "slug": "sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926r4", + "name": "SM-F926U Galaxy Z Fold3 5G UW TD-LTE US 512GB / SM-F926R4", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": 1900, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4335, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 271.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": 12.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.733204", + "updated_at": "2026-06-19T00:43:44.733204" +} diff --git a/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926r4/score/index.json b/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926r4/score/index.json new file mode 100644 index 00000000000..bd4bb16c781 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926r4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": 12.2 +} diff --git a/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926t/index.json b/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926t/index.json new file mode 100644 index 00000000000..9145ccfa7e1 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926t/index.json @@ -0,0 +1,77 @@ +{ + "id": 4435, + "slug": "sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926t", + "name": "SM-F926U Galaxy Z Fold3 5G UW TD-LTE US 512GB / SM-F926T", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": 1900, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4335, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 271.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": 12.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.734204", + "updated_at": "2026-06-19T00:43:44.734204" +} diff --git a/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926t/score/index.json b/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926t/score/index.json new file mode 100644 index 00000000000..bd4bb16c781 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": 12.2 +} diff --git a/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926v/index.json b/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926v/index.json new file mode 100644 index 00000000000..44d61130f73 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926v/index.json @@ -0,0 +1,77 @@ +{ + "id": 4436, + "slug": "sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926v", + "name": "SM-F926U Galaxy Z Fold3 5G UW TD-LTE US 512GB / SM-F926V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": 1900, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4335, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 271.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": 12.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.734204", + "updated_at": "2026-06-19T00:43:44.734204" +} diff --git a/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926v/score/index.json b/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926v/score/index.json new file mode 100644 index 00000000000..bd4bb16c781 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926u-galaxy-z-fold3-5g-uw-td-lte-us-512gb-sm-f926v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": 12.2 +} diff --git a/site/public/v1/smartphones/sm-f926u1-galaxy-z-fold3-5g-uw-td-lte-us-256gb/index.json b/site/public/v1/smartphones/sm-f926u1-galaxy-z-fold3-5g-uw-td-lte-us-256gb/index.json new file mode 100644 index 00000000000..8bd3b70897d --- /dev/null +++ b/site/public/v1/smartphones/sm-f926u1-galaxy-z-fold3-5g-uw-td-lte-us-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4437, + "slug": "sm-f926u1-galaxy-z-fold3-5g-uw-td-lte-us-256gb", + "name": "SM-F926U1 Galaxy Z Fold3 5G UW TD-LTE US 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": 1800, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4335, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 271.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": 12.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.734204", + "updated_at": "2026-06-19T00:43:44.734204" +} diff --git a/site/public/v1/smartphones/sm-f926u1-galaxy-z-fold3-5g-uw-td-lte-us-256gb/score/index.json b/site/public/v1/smartphones/sm-f926u1-galaxy-z-fold3-5g-uw-td-lte-us-256gb/score/index.json new file mode 100644 index 00000000000..bd4bb16c781 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926u1-galaxy-z-fold3-5g-uw-td-lte-us-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": 12.2 +} diff --git a/site/public/v1/smartphones/sm-f926u1-galaxy-z-fold3-5g-uw-td-lte-us-512gb/index.json b/site/public/v1/smartphones/sm-f926u1-galaxy-z-fold3-5g-uw-td-lte-us-512gb/index.json new file mode 100644 index 00000000000..aa9b8b8ae82 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926u1-galaxy-z-fold3-5g-uw-td-lte-us-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4438, + "slug": "sm-f926u1-galaxy-z-fold3-5g-uw-td-lte-us-512gb", + "name": "SM-F926U1 Galaxy Z Fold3 5G UW TD-LTE US 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": 1900, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4335, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 271.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": 12.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.734204", + "updated_at": "2026-06-19T00:43:44.734204" +} diff --git a/site/public/v1/smartphones/sm-f926u1-galaxy-z-fold3-5g-uw-td-lte-us-512gb/score/index.json b/site/public/v1/smartphones/sm-f926u1-galaxy-z-fold3-5g-uw-td-lte-us-512gb/score/index.json new file mode 100644 index 00000000000..bd4bb16c781 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926u1-galaxy-z-fold3-5g-uw-td-lte-us-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": 12.2 +} diff --git a/site/public/v1/smartphones/sm-f926u1-galaxy-z-fold3-5g-uw-thom-browne-edition-td-lte-us-512gb/index.json b/site/public/v1/smartphones/sm-f926u1-galaxy-z-fold3-5g-uw-thom-browne-edition-td-lte-us-512gb/index.json new file mode 100644 index 00000000000..2512ac0af31 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926u1-galaxy-z-fold3-5g-uw-thom-browne-edition-td-lte-us-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4439, + "slug": "sm-f926u1-galaxy-z-fold3-5g-uw-thom-browne-edition-td-lte-us-512gb", + "name": "SM-F926U1 Galaxy Z Fold3 5G UW Thom Browne Edition TD-LTE US 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-09-01", + "msrp_usd": 3499, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4335, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 271.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": 12.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.734204", + "updated_at": "2026-06-19T00:43:44.734204" +} diff --git a/site/public/v1/smartphones/sm-f926u1-galaxy-z-fold3-5g-uw-thom-browne-edition-td-lte-us-512gb/score/index.json b/site/public/v1/smartphones/sm-f926u1-galaxy-z-fold3-5g-uw-thom-browne-edition-td-lte-us-512gb/score/index.json new file mode 100644 index 00000000000..bd4bb16c781 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926u1-galaxy-z-fold3-5g-uw-thom-browne-edition-td-lte-us-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": 12.2 +} diff --git a/site/public/v1/smartphones/sm-f926w-galaxy-z-fold3-5g-td-lte-ca-256gb/index.json b/site/public/v1/smartphones/sm-f926w-galaxy-z-fold3-5g-td-lte-ca-256gb/index.json new file mode 100644 index 00000000000..448bdf1b08d --- /dev/null +++ b/site/public/v1/smartphones/sm-f926w-galaxy-z-fold3-5g-td-lte-ca-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4440, + "slug": "sm-f926w-galaxy-z-fold3-5g-td-lte-ca-256gb", + "name": "SM-F926W Galaxy Z Fold3 5G TD-LTE CA 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": 2270, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4335, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 271.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": 12.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.734204", + "updated_at": "2026-06-19T00:43:44.734204" +} diff --git a/site/public/v1/smartphones/sm-f926w-galaxy-z-fold3-5g-td-lte-ca-256gb/score/index.json b/site/public/v1/smartphones/sm-f926w-galaxy-z-fold3-5g-td-lte-ca-256gb/score/index.json new file mode 100644 index 00000000000..bd4bb16c781 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926w-galaxy-z-fold3-5g-td-lte-ca-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": 12.2 +} diff --git a/site/public/v1/smartphones/sm-f926w-galaxy-z-fold3-5g-td-lte-ca-512gb/index.json b/site/public/v1/smartphones/sm-f926w-galaxy-z-fold3-5g-td-lte-ca-512gb/index.json new file mode 100644 index 00000000000..e551b56f3fa --- /dev/null +++ b/site/public/v1/smartphones/sm-f926w-galaxy-z-fold3-5g-td-lte-ca-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4441, + "slug": "sm-f926w-galaxy-z-fold3-5g-td-lte-ca-512gb", + "name": "SM-F926W Galaxy Z Fold3 5G TD-LTE CA 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-27", + "msrp_usd": 2410, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4335, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 271.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": 12.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.734204", + "updated_at": "2026-06-19T00:43:44.735204" +} diff --git a/site/public/v1/smartphones/sm-f926w-galaxy-z-fold3-5g-td-lte-ca-512gb/score/index.json b/site/public/v1/smartphones/sm-f926w-galaxy-z-fold3-5g-td-lte-ca-512gb/score/index.json new file mode 100644 index 00000000000..bd4bb16c781 --- /dev/null +++ b/site/public/v1/smartphones/sm-f926w-galaxy-z-fold3-5g-td-lte-ca-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 9.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": 12.2 +} diff --git a/site/public/v1/smartphones/sm-g398fn-ds-galaxy-xcover-4s-2019-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/sm-g398fn-ds-galaxy-xcover-4s-2019-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..c8b532ff8b6 --- /dev/null +++ b/site/public/v1/smartphones/sm-g398fn-ds-galaxy-xcover-4s-2019-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 3943, + "slug": "sm-g398fn-ds-galaxy-xcover-4s-2019-global-dual-sim-td-lte", + "name": "SM-G398FN/DS Galaxy Xcover 4s 2019 Global Dual SIM TD-LTE", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 186, + "slug": "exynos-7885", + "name": "Exynos 7885", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7885" + }, + "release_date": "2019-08-01", + "msrp_usd": 299, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 4.99, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 2800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Yes" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 35.0, + "value": 55.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.666763", + "updated_at": "2026-06-19T00:43:44.666763" +} diff --git a/site/public/v1/smartphones/sm-g398fn-ds-galaxy-xcover-4s-2019-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/sm-g398fn-ds-galaxy-xcover-4s-2019-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..914d5e30c68 --- /dev/null +++ b/site/public/v1/smartphones/sm-g398fn-ds-galaxy-xcover-4s-2019-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 35.0, + "value": 55.1 +} diff --git a/site/public/v1/smartphones/sm-g398fn-galaxy-xcover-4s-2019-global-td-lte/index.json b/site/public/v1/smartphones/sm-g398fn-galaxy-xcover-4s-2019-global-td-lte/index.json new file mode 100644 index 00000000000..706c5cdeeba --- /dev/null +++ b/site/public/v1/smartphones/sm-g398fn-galaxy-xcover-4s-2019-global-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 3944, + "slug": "sm-g398fn-galaxy-xcover-4s-2019-global-td-lte", + "name": "SM-G398FN Galaxy Xcover 4s 2019 Global TD-LTE", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 186, + "slug": "exynos-7885", + "name": "Exynos 7885", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7885" + }, + "release_date": "2019-07-01", + "msrp_usd": 299, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 4.99, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 2800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "Yes" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 35.0, + "value": 55.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.666763", + "updated_at": "2026-06-19T00:43:44.666763" +} diff --git a/site/public/v1/smartphones/sm-g398fn-galaxy-xcover-4s-2019-global-td-lte/score/index.json b/site/public/v1/smartphones/sm-g398fn-galaxy-xcover-4s-2019-global-td-lte/score/index.json new file mode 100644 index 00000000000..914d5e30c68 --- /dev/null +++ b/site/public/v1/smartphones/sm-g398fn-galaxy-xcover-4s-2019-global-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 35.0, + "value": 55.1 +} diff --git a/site/public/v1/smartphones/sm-g525f-ds-galaxy-xcover-5-2021-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/sm-g525f-ds-galaxy-xcover-5-2021-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..9a1cf9f80c7 --- /dev/null +++ b/site/public/v1/smartphones/sm-g525f-ds-galaxy-xcover-5-2021-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 4442, + "slug": "sm-g525f-ds-galaxy-xcover-5-2021-global-dual-sim-td-lte", + "name": "SM-G525F/DS Galaxy XCover 5 2021 Global Dual SIM TD-LTE", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 197, + "slug": "exynos-850", + "name": "Exynos 850", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G52 MP1", + "url": "/v1/socs/exynos-850" + }, + "release_date": "2021-03-14", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.3, + "resolution": "720x1440", + "type": "Color PLS TFT LCD display", + "ppi": 304 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.4, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 35.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.735204", + "updated_at": "2026-06-19T00:43:44.735204" +} diff --git a/site/public/v1/smartphones/sm-g525f-ds-galaxy-xcover-5-2021-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/sm-g525f-ds-galaxy-xcover-5-2021-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..ab887c8c350 --- /dev/null +++ b/site/public/v1/smartphones/sm-g525f-ds-galaxy-xcover-5-2021-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.4, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 35.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g525f-galaxy-xcover-5-2021-global-td-lte/index.json b/site/public/v1/smartphones/sm-g525f-galaxy-xcover-5-2021-global-td-lte/index.json new file mode 100644 index 00000000000..4dc7788a4cd --- /dev/null +++ b/site/public/v1/smartphones/sm-g525f-galaxy-xcover-5-2021-global-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 4443, + "slug": "sm-g525f-galaxy-xcover-5-2021-global-td-lte", + "name": "SM-G525F Galaxy XCover 5 2021 Global TD-LTE", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 197, + "slug": "exynos-850", + "name": "Exynos 850", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G52 MP1", + "url": "/v1/socs/exynos-850" + }, + "release_date": "2021-03-14", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.3, + "resolution": "720x1440", + "type": "Color PLS TFT LCD display", + "ppi": 304 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.4, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 35.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.735204", + "updated_at": "2026-06-19T00:43:44.735204" +} diff --git a/site/public/v1/smartphones/sm-g525f-galaxy-xcover-5-2021-global-td-lte/score/index.json b/site/public/v1/smartphones/sm-g525f-galaxy-xcover-5-2021-global-td-lte/score/index.json new file mode 100644 index 00000000000..ab887c8c350 --- /dev/null +++ b/site/public/v1/smartphones/sm-g525f-galaxy-xcover-5-2021-global-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.4, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 35.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g525n-galaxy-xcover-5-2021-td-lte-kr/index.json b/site/public/v1/smartphones/sm-g525n-galaxy-xcover-5-2021-td-lte-kr/index.json new file mode 100644 index 00000000000..681354baa11 --- /dev/null +++ b/site/public/v1/smartphones/sm-g525n-galaxy-xcover-5-2021-td-lte-kr/index.json @@ -0,0 +1,76 @@ +{ + "id": 4570, + "slug": "sm-g525n-galaxy-xcover-5-2021-td-lte-kr", + "name": "SM-G525N Galaxy XCover 5 2021 TD-LTE KR", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 197, + "slug": "exynos-850", + "name": "Exynos 850", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G52 MP1", + "url": "/v1/socs/exynos-850" + }, + "release_date": "2022-01-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.3, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 304 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.4, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 35.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.749205", + "updated_at": "2026-06-19T00:43:44.749205" +} diff --git a/site/public/v1/smartphones/sm-g525n-galaxy-xcover-5-2021-td-lte-kr/score/index.json b/site/public/v1/smartphones/sm-g525n-galaxy-xcover-5-2021-td-lte-kr/score/index.json new file mode 100644 index 00000000000..ab887c8c350 --- /dev/null +++ b/site/public/v1/smartphones/sm-g525n-galaxy-xcover-5-2021-td-lte-kr/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.4, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 35.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g6200-galaxy-a6s-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/sm-g6200-galaxy-a6s-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..2923e42f08c --- /dev/null +++ b/site/public/v1/smartphones/sm-g6200-galaxy-a6s-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3772, + "slug": "sm-g6200-galaxy-a6s-dual-sim-td-lte-cn-128gb", + "name": "SM-G6200 Galaxy A6s Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color PLS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 19.5, + "camera": 5.1, + "battery": 4.5, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.642433", + "updated_at": "2026-06-19T00:43:44.642433" +} diff --git a/site/public/v1/smartphones/sm-g6200-galaxy-a6s-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/sm-g6200-galaxy-a6s-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..b33c9a8ff6d --- /dev/null +++ b/site/public/v1/smartphones/sm-g6200-galaxy-a6s-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 19.5, + "camera": 5.1, + "battery": 4.5, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g6200-galaxy-a6s-dual-sim-td-lte-cn-64gb-galaxy-p30/index.json b/site/public/v1/smartphones/sm-g6200-galaxy-a6s-dual-sim-td-lte-cn-64gb-galaxy-p30/index.json new file mode 100644 index 00000000000..e6ac4f1f454 --- /dev/null +++ b/site/public/v1/smartphones/sm-g6200-galaxy-a6s-dual-sim-td-lte-cn-64gb-galaxy-p30/index.json @@ -0,0 +1,76 @@ +{ + "id": 3773, + "slug": "sm-g6200-galaxy-a6s-dual-sim-td-lte-cn-64gb-galaxy-p30", + "name": "SM-G6200 Galaxy A6s Dual SIM TD-LTE CN 64GB / Galaxy P30", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color PLS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 19.5, + "camera": 5.1, + "battery": 4.5, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.643432", + "updated_at": "2026-06-19T00:43:44.643432" +} diff --git a/site/public/v1/smartphones/sm-g6200-galaxy-a6s-dual-sim-td-lte-cn-64gb-galaxy-p30/score/index.json b/site/public/v1/smartphones/sm-g6200-galaxy-a6s-dual-sim-td-lte-cn-64gb-galaxy-p30/score/index.json new file mode 100644 index 00000000000..b33c9a8ff6d --- /dev/null +++ b/site/public/v1/smartphones/sm-g6200-galaxy-a6s-dual-sim-td-lte-cn-64gb-galaxy-p30/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 19.5, + "camera": 5.1, + "battery": 4.5, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g715fn-ds-galaxy-xcover-pro-2020-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/sm-g715fn-ds-galaxy-xcover-pro-2020-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..4a89e6ad136 --- /dev/null +++ b/site/public/v1/smartphones/sm-g715fn-ds-galaxy-xcover-pro-2020-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 4183, + "slug": "sm-g715fn-ds-galaxy-xcover-pro-2020-global-dual-sim-td-lte", + "name": "SM-G715FN/DS Galaxy XCover Pro 2020 Global Dual SIM TD-LTE", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4050, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 218.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 17.7, + "camera": 9.1, + "battery": 15.8, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.698780", + "updated_at": "2026-06-19T00:43:44.698780" +} diff --git a/site/public/v1/smartphones/sm-g715fn-ds-galaxy-xcover-pro-2020-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/sm-g715fn-ds-galaxy-xcover-pro-2020-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..843c552fdbf --- /dev/null +++ b/site/public/v1/smartphones/sm-g715fn-ds-galaxy-xcover-pro-2020-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 17.7, + "camera": 9.1, + "battery": 15.8, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g715fn-galaxy-xcover-pro-2020-global-td-lte/index.json b/site/public/v1/smartphones/sm-g715fn-galaxy-xcover-pro-2020-global-td-lte/index.json new file mode 100644 index 00000000000..00fb05d8bd0 --- /dev/null +++ b/site/public/v1/smartphones/sm-g715fn-galaxy-xcover-pro-2020-global-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 4184, + "slug": "sm-g715fn-galaxy-xcover-pro-2020-global-td-lte", + "name": "SM-G715FN Galaxy XCover Pro 2020 Global TD-LTE", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4050, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 218.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 17.7, + "camera": 9.1, + "battery": 15.8, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.698780", + "updated_at": "2026-06-19T00:43:44.698780" +} diff --git a/site/public/v1/smartphones/sm-g715fn-galaxy-xcover-pro-2020-global-td-lte/score/index.json b/site/public/v1/smartphones/sm-g715fn-galaxy-xcover-pro-2020-global-td-lte/score/index.json new file mode 100644 index 00000000000..843c552fdbf --- /dev/null +++ b/site/public/v1/smartphones/sm-g715fn-galaxy-xcover-pro-2020-global-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 17.7, + "camera": 9.1, + "battery": 15.8, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g715u-galaxy-xcover-pro-2020-dual-sim-td-lte-us-sm-g715a/index.json b/site/public/v1/smartphones/sm-g715u-galaxy-xcover-pro-2020-dual-sim-td-lte-us-sm-g715a/index.json new file mode 100644 index 00000000000..55a033fd005 --- /dev/null +++ b/site/public/v1/smartphones/sm-g715u-galaxy-xcover-pro-2020-dual-sim-td-lte-us-sm-g715a/index.json @@ -0,0 +1,76 @@ +{ + "id": 4185, + "slug": "sm-g715u-galaxy-xcover-pro-2020-dual-sim-td-lte-us-sm-g715a", + "name": "SM-G715U Galaxy XCover Pro 2020 Dual SIM TD-LTE US / SM-G715A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2020-04-21", + "msrp_usd": 510, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4050, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 218.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 17.7, + "camera": 9.1, + "battery": 15.8, + "display": 45.9, + "value": 53.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.698780", + "updated_at": "2026-06-19T00:43:44.698780" +} diff --git a/site/public/v1/smartphones/sm-g715u-galaxy-xcover-pro-2020-dual-sim-td-lte-us-sm-g715a/score/index.json b/site/public/v1/smartphones/sm-g715u-galaxy-xcover-pro-2020-dual-sim-td-lte-us-sm-g715a/score/index.json new file mode 100644 index 00000000000..e76f9bb55e6 --- /dev/null +++ b/site/public/v1/smartphones/sm-g715u-galaxy-xcover-pro-2020-dual-sim-td-lte-us-sm-g715a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 17.7, + "camera": 9.1, + "battery": 15.8, + "display": 45.9, + "value": 53.0 +} diff --git a/site/public/v1/smartphones/sm-g715u-galaxy-xcover-pro-2020-dual-sim-td-lte-us-sm-g715v/index.json b/site/public/v1/smartphones/sm-g715u-galaxy-xcover-pro-2020-dual-sim-td-lte-us-sm-g715v/index.json new file mode 100644 index 00000000000..099d3040cc9 --- /dev/null +++ b/site/public/v1/smartphones/sm-g715u-galaxy-xcover-pro-2020-dual-sim-td-lte-us-sm-g715v/index.json @@ -0,0 +1,76 @@ +{ + "id": 4186, + "slug": "sm-g715u-galaxy-xcover-pro-2020-dual-sim-td-lte-us-sm-g715v", + "name": "SM-G715U Galaxy XCover Pro 2020 Dual SIM TD-LTE US / SM-G715V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2020-04-21", + "msrp_usd": 500, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4050, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 218.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 17.7, + "camera": 9.1, + "battery": 15.8, + "display": 45.9, + "value": 53.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.698780", + "updated_at": "2026-06-19T00:43:44.698780" +} diff --git a/site/public/v1/smartphones/sm-g715u-galaxy-xcover-pro-2020-dual-sim-td-lte-us-sm-g715v/score/index.json b/site/public/v1/smartphones/sm-g715u-galaxy-xcover-pro-2020-dual-sim-td-lte-us-sm-g715v/score/index.json new file mode 100644 index 00000000000..0ced8651c58 --- /dev/null +++ b/site/public/v1/smartphones/sm-g715u-galaxy-xcover-pro-2020-dual-sim-td-lte-us-sm-g715v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 17.7, + "camera": 9.1, + "battery": 15.8, + "display": 45.9, + "value": 53.3 +} diff --git a/site/public/v1/smartphones/sm-g715u1-galaxy-xcover-pro-2020-dual-sim-td-lte-us/index.json b/site/public/v1/smartphones/sm-g715u1-galaxy-xcover-pro-2020-dual-sim-td-lte-us/index.json new file mode 100644 index 00000000000..26fcb2c46b3 --- /dev/null +++ b/site/public/v1/smartphones/sm-g715u1-galaxy-xcover-pro-2020-dual-sim-td-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 4187, + "slug": "sm-g715u1-galaxy-xcover-pro-2020-dual-sim-td-lte-us", + "name": "SM-G715U1 Galaxy XCover Pro 2020 Dual SIM TD-LTE US", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2020-04-01", + "msrp_usd": 499, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4050, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 218.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 17.7, + "camera": 9.1, + "battery": 15.8, + "display": 45.9, + "value": 53.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.698780", + "updated_at": "2026-06-19T00:43:44.698780" +} diff --git a/site/public/v1/smartphones/sm-g715u1-galaxy-xcover-pro-2020-dual-sim-td-lte-us/score/index.json b/site/public/v1/smartphones/sm-g715u1-galaxy-xcover-pro-2020-dual-sim-td-lte-us/score/index.json new file mode 100644 index 00000000000..006a05a5f6d --- /dev/null +++ b/site/public/v1/smartphones/sm-g715u1-galaxy-xcover-pro-2020-dual-sim-td-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 17.7, + "camera": 9.1, + "battery": 15.8, + "display": 45.9, + "value": 53.4 +} diff --git a/site/public/v1/smartphones/sm-g715w-galaxy-xcover-pro-2020-dual-sim-td-lte-ca/index.json b/site/public/v1/smartphones/sm-g715w-galaxy-xcover-pro-2020-dual-sim-td-lte-ca/index.json new file mode 100644 index 00000000000..cfdcdc9edaf --- /dev/null +++ b/site/public/v1/smartphones/sm-g715w-galaxy-xcover-pro-2020-dual-sim-td-lte-ca/index.json @@ -0,0 +1,76 @@ +{ + "id": 4188, + "slug": "sm-g715w-galaxy-xcover-pro-2020-dual-sim-td-lte-ca", + "name": "SM-G715W Galaxy XCover Pro 2020 Dual SIM TD-LTE CA", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2020-04-01", + "msrp_usd": 700, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 24.8 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4050, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 218.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 17.7, + "camera": 9.1, + "battery": 15.8, + "display": 45.9, + "value": 45.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.698780", + "updated_at": "2026-06-19T00:43:44.698780" +} diff --git a/site/public/v1/smartphones/sm-g715w-galaxy-xcover-pro-2020-dual-sim-td-lte-ca/score/index.json b/site/public/v1/smartphones/sm-g715w-galaxy-xcover-pro-2020-dual-sim-td-lte-ca/score/index.json new file mode 100644 index 00000000000..9fb31c7419b --- /dev/null +++ b/site/public/v1/smartphones/sm-g715w-galaxy-xcover-pro-2020-dual-sim-td-lte-ca/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 17.7, + "camera": 9.1, + "battery": 15.8, + "display": 45.9, + "value": 45.7 +} diff --git a/site/public/v1/smartphones/sm-g770f-ds-galaxy-s10-lite-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-g770f-ds-galaxy-s10-lite-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..eee7efa75c4 --- /dev/null +++ b/site/public/v1/smartphones/sm-g770f-ds-galaxy-s10-lite-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4189, + "slug": "sm-g770f-ds-galaxy-s10-lite-global-dual-sim-td-lte-128gb", + "name": "SM-G770F/DS Galaxy S10 Lite Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2020-02-02", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 3.0, + "camera": 16.5, + "battery": 22.5, + "display": 44.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.698780", + "updated_at": "2026-06-19T00:43:44.698780" +} diff --git a/site/public/v1/smartphones/sm-g770f-ds-galaxy-s10-lite-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-g770f-ds-galaxy-s10-lite-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..11191e94082 --- /dev/null +++ b/site/public/v1/smartphones/sm-g770f-ds-galaxy-s10-lite-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 3.0, + "camera": 16.5, + "battery": 22.5, + "display": 44.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g770f-dsm-galaxy-s10-lite-dual-sim-td-lte-in-128gb/index.json b/site/public/v1/smartphones/sm-g770f-dsm-galaxy-s10-lite-dual-sim-td-lte-in-128gb/index.json new file mode 100644 index 00000000000..9e6e53b2d2b --- /dev/null +++ b/site/public/v1/smartphones/sm-g770f-dsm-galaxy-s10-lite-dual-sim-td-lte-in-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4190, + "slug": "sm-g770f-dsm-galaxy-s10-lite-dual-sim-td-lte-in-128gb", + "name": "SM-G770F/DSM Galaxy S10 Lite Dual SIM TD-LTE IN 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2020-02-02", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 3.0, + "camera": 16.5, + "battery": 22.5, + "display": 44.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.698780", + "updated_at": "2026-06-19T00:43:44.698780" +} diff --git a/site/public/v1/smartphones/sm-g770f-dsm-galaxy-s10-lite-dual-sim-td-lte-in-128gb/score/index.json b/site/public/v1/smartphones/sm-g770f-dsm-galaxy-s10-lite-dual-sim-td-lte-in-128gb/score/index.json new file mode 100644 index 00000000000..11191e94082 --- /dev/null +++ b/site/public/v1/smartphones/sm-g770f-dsm-galaxy-s10-lite-dual-sim-td-lte-in-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 3.0, + "camera": 16.5, + "battery": 22.5, + "display": 44.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g770f-dsm-galaxy-s10-lite-dual-sim-td-lte-in-512gb/index.json b/site/public/v1/smartphones/sm-g770f-dsm-galaxy-s10-lite-dual-sim-td-lte-in-512gb/index.json new file mode 100644 index 00000000000..19d2bb56a1a --- /dev/null +++ b/site/public/v1/smartphones/sm-g770f-dsm-galaxy-s10-lite-dual-sim-td-lte-in-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4191, + "slug": "sm-g770f-dsm-galaxy-s10-lite-dual-sim-td-lte-in-512gb", + "name": "SM-G770F/DSM Galaxy S10 Lite Dual SIM TD-LTE IN 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2020-03-02", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 3.0, + "camera": 16.5, + "battery": 22.5, + "display": 44.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.699779", + "updated_at": "2026-06-19T00:43:44.699779" +} diff --git a/site/public/v1/smartphones/sm-g770f-dsm-galaxy-s10-lite-dual-sim-td-lte-in-512gb/score/index.json b/site/public/v1/smartphones/sm-g770f-dsm-galaxy-s10-lite-dual-sim-td-lte-in-512gb/score/index.json new file mode 100644 index 00000000000..11191e94082 --- /dev/null +++ b/site/public/v1/smartphones/sm-g770f-dsm-galaxy-s10-lite-dual-sim-td-lte-in-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 3.0, + "camera": 16.5, + "battery": 22.5, + "display": 44.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g770f-galaxy-s10-lite-global-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-g770f-galaxy-s10-lite-global-td-lte-128gb/index.json new file mode 100644 index 00000000000..90c54133203 --- /dev/null +++ b/site/public/v1/smartphones/sm-g770f-galaxy-s10-lite-global-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4192, + "slug": "sm-g770f-galaxy-s10-lite-global-td-lte-128gb", + "name": "SM-G770F Galaxy S10 Lite Global TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2020-01-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 1.5, + "camera": 16.5, + "battery": 22.5, + "display": 44.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.699779", + "updated_at": "2026-06-19T00:43:44.699779" +} diff --git a/site/public/v1/smartphones/sm-g770f-galaxy-s10-lite-global-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-g770f-galaxy-s10-lite-global-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..06185c5adc4 --- /dev/null +++ b/site/public/v1/smartphones/sm-g770f-galaxy-s10-lite-global-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 1.5, + "camera": 16.5, + "battery": 22.5, + "display": 44.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g770u1-galaxy-s10-lite-td-lte-us-128gb/index.json b/site/public/v1/smartphones/sm-g770u1-galaxy-s10-lite-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..2900eb4cbfe --- /dev/null +++ b/site/public/v1/smartphones/sm-g770u1-galaxy-s10-lite-td-lte-us-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4193, + "slug": "sm-g770u1-galaxy-s10-lite-td-lte-us-128gb", + "name": "SM-G770U1 Galaxy S10 Lite TD-LTE US 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2020-04-01", + "msrp_usd": 650, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 3.0, + "camera": 16.5, + "battery": 22.5, + "display": 44.4, + "value": 47.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.699779", + "updated_at": "2026-06-19T00:43:44.699779" +} diff --git a/site/public/v1/smartphones/sm-g770u1-galaxy-s10-lite-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/sm-g770u1-galaxy-s10-lite-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..04e973176be --- /dev/null +++ b/site/public/v1/smartphones/sm-g770u1-galaxy-s10-lite-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 3.0, + "camera": 16.5, + "battery": 22.5, + "display": 44.4, + "value": 47.3 +} diff --git a/site/public/v1/smartphones/sm-g780f-ds-galaxy-s20-fe-premium-edition-dual-sim-td-lte-256gb-s20-fan-edition/index.json b/site/public/v1/smartphones/sm-g780f-ds-galaxy-s20-fe-premium-edition-dual-sim-td-lte-256gb-s20-fan-edition/index.json new file mode 100644 index 00000000000..a576dc7bd80 --- /dev/null +++ b/site/public/v1/smartphones/sm-g780f-ds-galaxy-s20-fe-premium-edition-dual-sim-td-lte-256gb-s20-fan-edition/index.json @@ -0,0 +1,77 @@ +{ + "id": 4194, + "slug": "sm-g780f-ds-galaxy-s20-fe-premium-edition-dual-sim-td-lte-256gb-s20-fan-edition", + "name": "SM-G780F/DS Galaxy S20 FE Premium Edition Dual SIM TD-LTE 256GB / S20 Fan Edition", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 199, + "slug": "exynos-990", + "name": "Samsung Exynos 990", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP11", + "url": "/v1/socs/exynos-990" + }, + "release_date": "2020-10-02", + "msrp_usd": 701, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 3.0, + "camera": 5.1, + "battery": 24.4, + "display": 53.3, + "value": 45.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.699779", + "updated_at": "2026-06-19T00:43:44.699779" +} diff --git a/site/public/v1/smartphones/sm-g780f-ds-galaxy-s20-fe-premium-edition-dual-sim-td-lte-256gb-s20-fan-edition/score/index.json b/site/public/v1/smartphones/sm-g780f-ds-galaxy-s20-fe-premium-edition-dual-sim-td-lte-256gb-s20-fan-edition/score/index.json new file mode 100644 index 00000000000..6a57e0087e6 --- /dev/null +++ b/site/public/v1/smartphones/sm-g780f-ds-galaxy-s20-fe-premium-edition-dual-sim-td-lte-256gb-s20-fan-edition/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 3.0, + "camera": 5.1, + "battery": 24.4, + "display": 53.3, + "value": 45.3 +} diff --git a/site/public/v1/smartphones/sm-g780f-ds-galaxy-s20-fe-standard-edition-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-g780f-ds-galaxy-s20-fe-standard-edition-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..ae2fc358df9 --- /dev/null +++ b/site/public/v1/smartphones/sm-g780f-ds-galaxy-s20-fe-standard-edition-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4195, + "slug": "sm-g780f-ds-galaxy-s20-fe-standard-edition-dual-sim-td-lte-128gb", + "name": "SM-G780F/DS Galaxy S20 FE Standard Edition Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 199, + "slug": "exynos-990", + "name": "Samsung Exynos 990", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP11", + "url": "/v1/socs/exynos-990" + }, + "release_date": "2020-10-02", + "msrp_usd": 633, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 1.5, + "camera": 5.1, + "battery": 24.4, + "display": 53.3, + "value": 47.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.699779", + "updated_at": "2026-06-19T00:43:44.699779" +} diff --git a/site/public/v1/smartphones/sm-g780f-ds-galaxy-s20-fe-standard-edition-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-g780f-ds-galaxy-s20-fe-standard-edition-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..16cdd0711f8 --- /dev/null +++ b/site/public/v1/smartphones/sm-g780f-ds-galaxy-s20-fe-standard-edition-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 1.5, + "camera": 5.1, + "battery": 24.4, + "display": 53.3, + "value": 47.8 +} diff --git a/site/public/v1/smartphones/sm-g7810-galaxy-s20-fe-5g-standard-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/sm-g7810-galaxy-s20-fe-5g-standard-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..db70ca0fe44 --- /dev/null +++ b/site/public/v1/smartphones/sm-g7810-galaxy-s20-fe-5g-standard-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4196, + "slug": "sm-g7810-galaxy-s20-fe-5g-standard-dual-sim-td-lte-cn-128gb", + "name": "SM-G7810 Galaxy S20 FE 5G Standard Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 1.5, + "camera": 5.1, + "battery": 24.4, + "display": 53.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.699779", + "updated_at": "2026-06-19T00:43:44.699779" +} diff --git a/site/public/v1/smartphones/sm-g7810-galaxy-s20-fe-5g-standard-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/sm-g7810-galaxy-s20-fe-5g-standard-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..550d5becd28 --- /dev/null +++ b/site/public/v1/smartphones/sm-g7810-galaxy-s20-fe-5g-standard-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 1.5, + "camera": 5.1, + "battery": 24.4, + "display": 53.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g781b-ds-galaxy-s20-fe-5g-standard-global-dual-sim-td-lte-128gb-s20-fan-edition/index.json b/site/public/v1/smartphones/sm-g781b-ds-galaxy-s20-fe-5g-standard-global-dual-sim-td-lte-128gb-s20-fan-edition/index.json new file mode 100644 index 00000000000..229179860bd --- /dev/null +++ b/site/public/v1/smartphones/sm-g781b-ds-galaxy-s20-fe-5g-standard-global-dual-sim-td-lte-128gb-s20-fan-edition/index.json @@ -0,0 +1,77 @@ +{ + "id": 4197, + "slug": "sm-g781b-ds-galaxy-s20-fe-5g-standard-global-dual-sim-td-lte-128gb-s20-fan-edition", + "name": "SM-G781B/DS Galaxy S20 FE 5G Standard Global Dual SIM TD-LTE 128GB / S20 Fan Edition", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-10-02", + "msrp_usd": 699, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 1.5, + "camera": 5.1, + "battery": 24.4, + "display": 53.3, + "value": 45.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.699779", + "updated_at": "2026-06-19T00:43:44.699779" +} diff --git a/site/public/v1/smartphones/sm-g781b-ds-galaxy-s20-fe-5g-standard-global-dual-sim-td-lte-128gb-s20-fan-edition/score/index.json b/site/public/v1/smartphones/sm-g781b-ds-galaxy-s20-fe-5g-standard-global-dual-sim-td-lte-128gb-s20-fan-edition/score/index.json new file mode 100644 index 00000000000..0b674ee32e6 --- /dev/null +++ b/site/public/v1/smartphones/sm-g781b-ds-galaxy-s20-fe-5g-standard-global-dual-sim-td-lte-128gb-s20-fan-edition/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 1.5, + "camera": 5.1, + "battery": 24.4, + "display": 53.3, + "value": 45.2 +} diff --git a/site/public/v1/smartphones/sm-g781n-galaxy-s20-fe-5g-standard-td-lte-kr-128gb/index.json b/site/public/v1/smartphones/sm-g781n-galaxy-s20-fe-5g-standard-td-lte-kr-128gb/index.json new file mode 100644 index 00000000000..316af3b5730 --- /dev/null +++ b/site/public/v1/smartphones/sm-g781n-galaxy-s20-fe-5g-standard-td-lte-kr-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4198, + "slug": "sm-g781n-galaxy-s20-fe-5g-standard-td-lte-kr-128gb", + "name": "SM-G781N Galaxy S20 FE 5G Standard TD-LTE KR 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 1.5, + "camera": 5.1, + "battery": 24.4, + "display": 53.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.700781", + "updated_at": "2026-06-19T00:43:44.700781" +} diff --git a/site/public/v1/smartphones/sm-g781n-galaxy-s20-fe-5g-standard-td-lte-kr-128gb/score/index.json b/site/public/v1/smartphones/sm-g781n-galaxy-s20-fe-5g-standard-td-lte-kr-128gb/score/index.json new file mode 100644 index 00000000000..550d5becd28 --- /dev/null +++ b/site/public/v1/smartphones/sm-g781n-galaxy-s20-fe-5g-standard-td-lte-kr-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 1.5, + "camera": 5.1, + "battery": 24.4, + "display": 53.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g781u-galaxy-s20-fe-5g-standard-td-lte-us-256gb-sm-g781t/index.json b/site/public/v1/smartphones/sm-g781u-galaxy-s20-fe-5g-standard-td-lte-us-256gb-sm-g781t/index.json new file mode 100644 index 00000000000..20822d722f0 --- /dev/null +++ b/site/public/v1/smartphones/sm-g781u-galaxy-s20-fe-5g-standard-td-lte-us-256gb-sm-g781t/index.json @@ -0,0 +1,77 @@ +{ + "id": 4199, + "slug": "sm-g781u-galaxy-s20-fe-5g-standard-td-lte-us-256gb-sm-g781t", + "name": "SM-G781U Galaxy S20 FE 5G Standard TD-LTE US 256GB / SM-G781T", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-10-06", + "msrp_usd": 700, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 1.5, + "camera": 5.1, + "battery": 24.4, + "display": 53.3, + "value": 45.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.700781", + "updated_at": "2026-06-19T00:43:44.700781" +} diff --git a/site/public/v1/smartphones/sm-g781u-galaxy-s20-fe-5g-standard-td-lte-us-256gb-sm-g781t/score/index.json b/site/public/v1/smartphones/sm-g781u-galaxy-s20-fe-5g-standard-td-lte-us-256gb-sm-g781t/score/index.json new file mode 100644 index 00000000000..0b674ee32e6 --- /dev/null +++ b/site/public/v1/smartphones/sm-g781u-galaxy-s20-fe-5g-standard-td-lte-us-256gb-sm-g781t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 1.5, + "camera": 5.1, + "battery": 24.4, + "display": 53.3, + "value": 45.2 +} diff --git a/site/public/v1/smartphones/sm-g781u1-galaxy-s20-fe-5g-uw-standard-td-lte-us-128gb/index.json b/site/public/v1/smartphones/sm-g781u1-galaxy-s20-fe-5g-uw-standard-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..7ba34373fb0 --- /dev/null +++ b/site/public/v1/smartphones/sm-g781u1-galaxy-s20-fe-5g-uw-standard-td-lte-us-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4200, + "slug": "sm-g781u1-galaxy-s20-fe-5g-uw-standard-td-lte-us-128gb", + "name": "SM-G781U1 Galaxy S20 FE 5G UW Standard TD-LTE US 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-10-06", + "msrp_usd": 700, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 1.5, + "camera": 5.1, + "battery": 24.4, + "display": 53.3, + "value": 45.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.700781", + "updated_at": "2026-06-19T00:43:44.700781" +} diff --git a/site/public/v1/smartphones/sm-g781u1-galaxy-s20-fe-5g-uw-standard-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/sm-g781u1-galaxy-s20-fe-5g-uw-standard-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..0b674ee32e6 --- /dev/null +++ b/site/public/v1/smartphones/sm-g781u1-galaxy-s20-fe-5g-uw-standard-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 1.5, + "camera": 5.1, + "battery": 24.4, + "display": 53.3, + "value": 45.2 +} diff --git a/site/public/v1/smartphones/sm-g781w-galaxy-s20-fe-5g-standard-td-lte-ca-128gb/index.json b/site/public/v1/smartphones/sm-g781w-galaxy-s20-fe-5g-standard-td-lte-ca-128gb/index.json new file mode 100644 index 00000000000..57a756efdc2 --- /dev/null +++ b/site/public/v1/smartphones/sm-g781w-galaxy-s20-fe-5g-standard-td-lte-ca-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4201, + "slug": "sm-g781w-galaxy-s20-fe-5g-standard-td-lte-ca-128gb", + "name": "SM-G781W Galaxy S20 FE 5G Standard TD-LTE CA 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 1.5, + "camera": 5.1, + "battery": 24.4, + "display": 53.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.700781", + "updated_at": "2026-06-19T00:43:44.700781" +} diff --git a/site/public/v1/smartphones/sm-g781w-galaxy-s20-fe-5g-standard-td-lte-ca-128gb/score/index.json b/site/public/v1/smartphones/sm-g781w-galaxy-s20-fe-5g-standard-td-lte-ca-128gb/score/index.json new file mode 100644 index 00000000000..550d5becd28 --- /dev/null +++ b/site/public/v1/smartphones/sm-g781w-galaxy-s20-fe-5g-standard-td-lte-ca-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 1.5, + "camera": 5.1, + "battery": 24.4, + "display": 53.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g8750-galaxy-s-lite-luxury-edition-duos-td-lte-cn/index.json b/site/public/v1/smartphones/sm-g8750-galaxy-s-lite-luxury-edition-duos-td-lte-cn/index.json new file mode 100644 index 00000000000..e23d5da057e --- /dev/null +++ b/site/public/v1/smartphones/sm-g8750-galaxy-s-lite-luxury-edition-duos-td-lte-cn/index.json @@ -0,0 +1,76 @@ +{ + "id": 3774, + "slug": "sm-g8750-galaxy-s-lite-luxury-edition-duos-td-lte-cn", + "name": "SM-G8750 Galaxy S Lite Luxury Edition Duos TD-LTE CN", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.79, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 427 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": 18.0, + "camera": 6.3, + "battery": 0.0, + "display": 47.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.643432", + "updated_at": "2026-06-19T00:43:44.643432" +} diff --git a/site/public/v1/smartphones/sm-g8750-galaxy-s-lite-luxury-edition-duos-td-lte-cn/score/index.json b/site/public/v1/smartphones/sm-g8750-galaxy-s-lite-luxury-edition-duos-td-lte-cn/score/index.json new file mode 100644 index 00000000000..d8ca1726506 --- /dev/null +++ b/site/public/v1/smartphones/sm-g8750-galaxy-s-lite-luxury-edition-duos-td-lte-cn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": 18.0, + "camera": 6.3, + "battery": 0.0, + "display": 47.7, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g8850-galaxy-a9-star-duos-td-lte-cn/index.json b/site/public/v1/smartphones/sm-g8850-galaxy-a9-star-duos-td-lte-cn/index.json new file mode 100644 index 00000000000..a4e38e67073 --- /dev/null +++ b/site/public/v1/smartphones/sm-g8850-galaxy-a9-star-duos-td-lte-cn/index.json @@ -0,0 +1,76 @@ +{ + "id": 3775, + "slug": "sm-g8850-galaxy-a9-star-duos-td-lte-cn", + "name": "SM-G8850 Galaxy A9 Star Duos TD-LTE CN", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-06-14", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 24.1 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "battery_mah": 3700, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 18.0, + "camera": 8.8, + "battery": 10.5, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.643432", + "updated_at": "2026-06-19T00:43:44.643432" +} diff --git a/site/public/v1/smartphones/sm-g8850-galaxy-a9-star-duos-td-lte-cn/score/index.json b/site/public/v1/smartphones/sm-g8850-galaxy-a9-star-duos-td-lte-cn/score/index.json new file mode 100644 index 00000000000..cdb329081a1 --- /dev/null +++ b/site/public/v1/smartphones/sm-g8850-galaxy-a9-star-duos-td-lte-cn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 18.0, + "camera": 8.8, + "battery": 10.5, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g8858-galaxy-a9-star-4g-duos-td-lte-cn/index.json b/site/public/v1/smartphones/sm-g8858-galaxy-a9-star-4g-duos-td-lte-cn/index.json new file mode 100644 index 00000000000..e4d891c8b95 --- /dev/null +++ b/site/public/v1/smartphones/sm-g8858-galaxy-a9-star-4g-duos-td-lte-cn/index.json @@ -0,0 +1,76 @@ +{ + "id": 3776, + "slug": "sm-g8858-galaxy-a9-star-4g-duos-td-lte-cn", + "name": "SM-G8858 Galaxy A9 Star 4G+ Duos TD-LTE CN", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-06-14", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 24.1 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "battery_mah": 3700, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 18.0, + "camera": 8.8, + "battery": 10.5, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.643432", + "updated_at": "2026-06-19T00:43:44.643432" +} diff --git a/site/public/v1/smartphones/sm-g8858-galaxy-a9-star-4g-duos-td-lte-cn/score/index.json b/site/public/v1/smartphones/sm-g8858-galaxy-a9-star-4g-duos-td-lte-cn/score/index.json new file mode 100644 index 00000000000..cdb329081a1 --- /dev/null +++ b/site/public/v1/smartphones/sm-g8858-galaxy-a9-star-4g-duos-td-lte-cn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 18.0, + "camera": 8.8, + "battery": 10.5, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g885f-ds-galaxy-a8-star-duos-global-td-lte/index.json b/site/public/v1/smartphones/sm-g885f-ds-galaxy-a8-star-duos-global-td-lte/index.json new file mode 100644 index 00000000000..0156c05d156 --- /dev/null +++ b/site/public/v1/smartphones/sm-g885f-ds-galaxy-a8-star-duos-global-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 3777, + "slug": "sm-g885f-ds-galaxy-a8-star-duos-global-td-lte", + "name": "SM-G885F/DS Galaxy A8 Star Duos Global TD-LTE", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-08-27", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 24.1 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "battery_mah": 3700, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 18.0, + "camera": 8.8, + "battery": 10.5, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.643432", + "updated_at": "2026-06-19T00:43:44.643432" +} diff --git a/site/public/v1/smartphones/sm-g885f-ds-galaxy-a8-star-duos-global-td-lte/score/index.json b/site/public/v1/smartphones/sm-g885f-ds-galaxy-a8-star-duos-global-td-lte/score/index.json new file mode 100644 index 00000000000..cdb329081a1 --- /dev/null +++ b/site/public/v1/smartphones/sm-g885f-ds-galaxy-a8-star-duos-global-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 18.0, + "camera": 8.8, + "battery": 10.5, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g885s-galaxy-a9-star-duos-td-lte-kr/index.json b/site/public/v1/smartphones/sm-g885s-galaxy-a9-star-duos-td-lte-kr/index.json new file mode 100644 index 00000000000..8f9bda084e4 --- /dev/null +++ b/site/public/v1/smartphones/sm-g885s-galaxy-a9-star-duos-td-lte-kr/index.json @@ -0,0 +1,76 @@ +{ + "id": 3778, + "slug": "sm-g885s-galaxy-a9-star-duos-td-lte-kr", + "name": "SM-G885S Galaxy A9 Star Duos TD-LTE KR", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 24.1 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "battery_mah": 3700, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 18.0, + "camera": 8.8, + "battery": 10.5, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.643432", + "updated_at": "2026-06-19T00:43:44.643432" +} diff --git a/site/public/v1/smartphones/sm-g885s-galaxy-a9-star-duos-td-lte-kr/score/index.json b/site/public/v1/smartphones/sm-g885s-galaxy-a9-star-duos-td-lte-kr/score/index.json new file mode 100644 index 00000000000..cdb329081a1 --- /dev/null +++ b/site/public/v1/smartphones/sm-g885s-galaxy-a9-star-duos-td-lte-kr/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 18.0, + "camera": 8.8, + "battery": 10.5, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g885y-ds-galaxy-a8-star-duos-td-lte-apac-galaxy-a9-star/index.json b/site/public/v1/smartphones/sm-g885y-ds-galaxy-a8-star-duos-td-lte-apac-galaxy-a9-star/index.json new file mode 100644 index 00000000000..e8663c0f794 --- /dev/null +++ b/site/public/v1/smartphones/sm-g885y-ds-galaxy-a8-star-duos-td-lte-apac-galaxy-a9-star/index.json @@ -0,0 +1,76 @@ +{ + "id": 3779, + "slug": "sm-g885y-ds-galaxy-a8-star-duos-td-lte-apac-galaxy-a9-star", + "name": "SM-G885Y/DS Galaxy A8 Star Duos TD-LTE APAC / Galaxy A9 Star", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-07-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2220", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 24.1 + }, + { + "type": "selfie", + "mp": 24.1 + } + ], + "battery_mah": 3700, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 18.0, + "camera": 8.8, + "battery": 10.5, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.643432", + "updated_at": "2026-06-19T00:43:44.643432" +} diff --git a/site/public/v1/smartphones/sm-g885y-ds-galaxy-a8-star-duos-td-lte-apac-galaxy-a9-star/score/index.json b/site/public/v1/smartphones/sm-g885y-ds-galaxy-a8-star-duos-td-lte-apac-galaxy-a9-star/score/index.json new file mode 100644 index 00000000000..cdb329081a1 --- /dev/null +++ b/site/public/v1/smartphones/sm-g885y-ds-galaxy-a8-star-duos-td-lte-apac-galaxy-a9-star/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 18.0, + "camera": 8.8, + "battery": 10.5, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g8870-galaxy-a8s-2018-standard-edition-duos-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/sm-g8870-galaxy-a8s-2018-standard-edition-duos-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..59f4a9036af --- /dev/null +++ b/site/public/v1/smartphones/sm-g8870-galaxy-a8s-2018-standard-edition-duos-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3780, + "slug": "sm-g8870-galaxy-a8s-2018-standard-edition-duos-td-lte-cn-128gb", + "name": "SM-G8870 Galaxy A8s 2018 Standard Edition Duos TD-LTE CN 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2018-12-29", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "Color PLS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 21.5, + "camera": 8.8, + "battery": 6.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.643432", + "updated_at": "2026-06-19T00:43:44.643432" +} diff --git a/site/public/v1/smartphones/sm-g8870-galaxy-a8s-2018-standard-edition-duos-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/sm-g8870-galaxy-a8s-2018-standard-edition-duos-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..1be61d37df8 --- /dev/null +++ b/site/public/v1/smartphones/sm-g8870-galaxy-a8s-2018-standard-edition-duos-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 21.5, + "camera": 8.8, + "battery": 6.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g887f-ds-galaxy-a9-pro-2018-duos-global-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-g887f-ds-galaxy-a9-pro-2018-duos-global-td-lte-128gb/index.json new file mode 100644 index 00000000000..ec21fac9596 --- /dev/null +++ b/site/public/v1/smartphones/sm-g887f-ds-galaxy-a9-pro-2018-duos-global-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3945, + "slug": "sm-g887f-ds-galaxy-a9-pro-2018-duos-global-td-lte-128gb", + "name": "SM-G887F/DS Galaxy A9 Pro 2018 Duos Global TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-01-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "Color PLS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 21.5, + "camera": 8.8, + "battery": 6.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.666763", + "updated_at": "2026-06-19T00:43:44.666763" +} diff --git a/site/public/v1/smartphones/sm-g887f-ds-galaxy-a9-pro-2018-duos-global-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-g887f-ds-galaxy-a9-pro-2018-duos-global-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..1be61d37df8 --- /dev/null +++ b/site/public/v1/smartphones/sm-g887f-ds-galaxy-a9-pro-2018-duos-global-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 21.5, + "camera": 8.8, + "battery": 6.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g887n-galaxy-a9-pro-2018-td-lte-kr-128gb/index.json b/site/public/v1/smartphones/sm-g887n-galaxy-a9-pro-2018-td-lte-kr-128gb/index.json new file mode 100644 index 00000000000..21d3e87254d --- /dev/null +++ b/site/public/v1/smartphones/sm-g887n-galaxy-a9-pro-2018-td-lte-kr-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3946, + "slug": "sm-g887n-galaxy-a9-pro-2018-td-lte-kr-128gb", + "name": "SM-G887N Galaxy A9 Pro 2018 TD-LTE KR 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-02-28", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "Color PLS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 21.5, + "camera": 8.8, + "battery": 6.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.666763", + "updated_at": "2026-06-19T00:43:44.666763" +} diff --git a/site/public/v1/smartphones/sm-g887n-galaxy-a9-pro-2018-td-lte-kr-128gb/score/index.json b/site/public/v1/smartphones/sm-g887n-galaxy-a9-pro-2018-td-lte-kr-128gb/score/index.json new file mode 100644 index 00000000000..1be61d37df8 --- /dev/null +++ b/site/public/v1/smartphones/sm-g887n-galaxy-a9-pro-2018-td-lte-kr-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 21.5, + "camera": 8.8, + "battery": 6.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g889f-galaxy-xcover-fieldpro-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/sm-g889f-galaxy-xcover-fieldpro-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..0cc237ab8cf --- /dev/null +++ b/site/public/v1/smartphones/sm-g889f-galaxy-xcover-fieldpro-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 4202, + "slug": "sm-g889f-galaxy-xcover-fieldpro-global-dual-sim-td-lte", + "name": "SM-G889F Galaxy Xcover FieldPro Global Dual SIM TD-LTE", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 188, + "slug": "exynos-9810", + "name": "Exynos 9810", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP18", + "url": "/v1/socs/exynos-9810" + }, + "release_date": "2020-01-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.08, + "resolution": "1440x2560", + "type": "Color IPS TFT LCD display", + "ppi": 578 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 256.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.2, + "performance": 42.7, + "camera": 5.0, + "battery": 22.5, + "display": 62.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.700781", + "updated_at": "2026-06-19T00:43:44.700781" +} diff --git a/site/public/v1/smartphones/sm-g889f-galaxy-xcover-fieldpro-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/sm-g889f-galaxy-xcover-fieldpro-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..85446ef7789 --- /dev/null +++ b/site/public/v1/smartphones/sm-g889f-galaxy-xcover-fieldpro-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.2, + "performance": 42.7, + "camera": 5.0, + "battery": 22.5, + "display": 62.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g930k-galaxy-s7-td-lte/index.json b/site/public/v1/smartphones/sm-g930k-galaxy-s7-td-lte/index.json new file mode 100644 index 00000000000..c6fc8a33073 --- /dev/null +++ b/site/public/v1/smartphones/sm-g930k-galaxy-s7-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 3730, + "slug": "sm-g930k-galaxy-s7-td-lte", + "name": "SM-G930K Galaxy S7 TD-LTE", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 183, + "slug": "exynos-8890", + "name": "Exynos 8890", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-T880 MP12", + "url": "/v1/socs/exynos-8890" + }, + "release_date": "2016-03-11", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.09, + "resolution": "1440x2560", + "type": "AM-OLED display", + "ppi": 577 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 152.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "6.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 17.7, + "camera": 5.1, + "battery": 0.0, + "display": 62.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.636431", + "updated_at": "2026-06-19T00:43:44.636431" +} diff --git a/site/public/v1/smartphones/sm-g930k-galaxy-s7-td-lte/score/index.json b/site/public/v1/smartphones/sm-g930k-galaxy-s7-td-lte/score/index.json new file mode 100644 index 00000000000..207601c5d12 --- /dev/null +++ b/site/public/v1/smartphones/sm-g930k-galaxy-s7-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 17.7, + "camera": 5.1, + "battery": 0.0, + "display": 62.7, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g930l-galaxy-s7-td-lte/index.json b/site/public/v1/smartphones/sm-g930l-galaxy-s7-td-lte/index.json new file mode 100644 index 00000000000..dbd3a099369 --- /dev/null +++ b/site/public/v1/smartphones/sm-g930l-galaxy-s7-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 3731, + "slug": "sm-g930l-galaxy-s7-td-lte", + "name": "SM-G930L Galaxy S7 TD-LTE", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 183, + "slug": "exynos-8890", + "name": "Exynos 8890", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-T880 MP12", + "url": "/v1/socs/exynos-8890" + }, + "release_date": "2016-03-11", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.09, + "resolution": "1440x2560", + "type": "AM-OLED display", + "ppi": 577 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 152.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "6.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 17.7, + "camera": 5.1, + "battery": 0.0, + "display": 62.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.636431", + "updated_at": "2026-06-19T00:43:44.636431" +} diff --git a/site/public/v1/smartphones/sm-g930l-galaxy-s7-td-lte/score/index.json b/site/public/v1/smartphones/sm-g930l-galaxy-s7-td-lte/score/index.json new file mode 100644 index 00000000000..207601c5d12 --- /dev/null +++ b/site/public/v1/smartphones/sm-g930l-galaxy-s7-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 17.7, + "camera": 5.1, + "battery": 0.0, + "display": 62.7, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g935k-galaxy-s7-edge-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-g935k-galaxy-s7-edge-td-lte-128gb/index.json new file mode 100644 index 00000000000..da0f836a05b --- /dev/null +++ b/site/public/v1/smartphones/sm-g935k-galaxy-s7-edge-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3732, + "slug": "sm-g935k-galaxy-s7-edge-td-lte-128gb", + "name": "SM-G935K Galaxy S7 Edge TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 183, + "slug": "exynos-8890", + "name": "Exynos 8890", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-T880 MP12", + "url": "/v1/socs/exynos-8890" + }, + "release_date": "2016-12-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.49, + "resolution": "1440x2560", + "type": "AM-OLED display", + "ppi": 535 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3600, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 157.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 17.7, + "camera": 5.1, + "battery": 9.0, + "display": 58.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.636431", + "updated_at": "2026-06-19T00:43:44.636431" +} diff --git a/site/public/v1/smartphones/sm-g935k-galaxy-s7-edge-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-g935k-galaxy-s7-edge-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..9c8edb47f94 --- /dev/null +++ b/site/public/v1/smartphones/sm-g935k-galaxy-s7-edge-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 17.7, + "camera": 5.1, + "battery": 9.0, + "display": 58.5, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g935l-galaxy-s7-edge-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-g935l-galaxy-s7-edge-td-lte-128gb/index.json new file mode 100644 index 00000000000..42cf5849bbe --- /dev/null +++ b/site/public/v1/smartphones/sm-g935l-galaxy-s7-edge-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3733, + "slug": "sm-g935l-galaxy-s7-edge-td-lte-128gb", + "name": "SM-G935L Galaxy S7 Edge TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 183, + "slug": "exynos-8890", + "name": "Exynos 8890", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-T880 MP12", + "url": "/v1/socs/exynos-8890" + }, + "release_date": "2016-12-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.49, + "resolution": "1440x2560", + "type": "AM-OLED display", + "ppi": 535 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3600, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 157.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 17.7, + "camera": 5.1, + "battery": 9.0, + "display": 58.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.636431", + "updated_at": "2026-06-19T00:43:44.636431" +} diff --git a/site/public/v1/smartphones/sm-g935l-galaxy-s7-edge-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-g935l-galaxy-s7-edge-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..9c8edb47f94 --- /dev/null +++ b/site/public/v1/smartphones/sm-g935l-galaxy-s7-edge-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 17.7, + "camera": 5.1, + "battery": 9.0, + "display": 58.5, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g935l-galaxy-s7-edge-td-lte/index.json b/site/public/v1/smartphones/sm-g935l-galaxy-s7-edge-td-lte/index.json new file mode 100644 index 00000000000..6e9fa6b3664 --- /dev/null +++ b/site/public/v1/smartphones/sm-g935l-galaxy-s7-edge-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 3734, + "slug": "sm-g935l-galaxy-s7-edge-td-lte", + "name": "SM-G935L Galaxy S7 Edge TD-LTE", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 183, + "slug": "exynos-8890", + "name": "Exynos 8890", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-T880 MP12", + "url": "/v1/socs/exynos-8890" + }, + "release_date": "2016-03-03", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.49, + "resolution": "1440x2560", + "type": "AM-OLED display", + "ppi": 535 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3600, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 157.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "6.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 17.7, + "camera": 5.1, + "battery": 9.0, + "display": 58.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.636431", + "updated_at": "2026-06-19T00:43:44.636431" +} diff --git a/site/public/v1/smartphones/sm-g935l-galaxy-s7-edge-td-lte/score/index.json b/site/public/v1/smartphones/sm-g935l-galaxy-s7-edge-td-lte/score/index.json new file mode 100644 index 00000000000..9c8edb47f94 --- /dev/null +++ b/site/public/v1/smartphones/sm-g935l-galaxy-s7-edge-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 17.7, + "camera": 5.1, + "battery": 9.0, + "display": 58.5, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g935s-galaxy-s7-edge-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-g935s-galaxy-s7-edge-td-lte-128gb/index.json new file mode 100644 index 00000000000..d7fb65de30a --- /dev/null +++ b/site/public/v1/smartphones/sm-g935s-galaxy-s7-edge-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3735, + "slug": "sm-g935s-galaxy-s7-edge-td-lte-128gb", + "name": "SM-G935S Galaxy S7 Edge TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 183, + "slug": "exynos-8890", + "name": "Exynos 8890", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-T880 MP12", + "url": "/v1/socs/exynos-8890" + }, + "release_date": "2016-12-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.49, + "resolution": "1440x2560", + "type": "AM-OLED display", + "ppi": 535 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3600, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 157.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 17.7, + "camera": 5.1, + "battery": 9.0, + "display": 58.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.637429", + "updated_at": "2026-06-19T00:43:44.637429" +} diff --git a/site/public/v1/smartphones/sm-g935s-galaxy-s7-edge-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-g935s-galaxy-s7-edge-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..9c8edb47f94 --- /dev/null +++ b/site/public/v1/smartphones/sm-g935s-galaxy-s7-edge-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 17.7, + "camera": 5.1, + "battery": 9.0, + "display": 58.5, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g9600-ds-galaxy-s9-duos-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/sm-g9600-ds-galaxy-s9-duos-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..6d81d88fc27 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9600-ds-galaxy-s9-duos-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3781, + "slug": "sm-g9600-ds-galaxy-s9-duos-td-lte-cn-128gb", + "name": "SM-G9600/DS Galaxy S9 Duos TD-LTE CN 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-03-16", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.77, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 571 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 62.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.644426", + "updated_at": "2026-06-19T00:43:44.644426" +} diff --git a/site/public/v1/smartphones/sm-g9600-ds-galaxy-s9-duos-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/sm-g9600-ds-galaxy-s9-duos-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..3441b48356f --- /dev/null +++ b/site/public/v1/smartphones/sm-g9600-ds-galaxy-s9-duos-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 62.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g9600-ds-galaxy-s9-duos-td-lte-cn/index.json b/site/public/v1/smartphones/sm-g9600-ds-galaxy-s9-duos-td-lte-cn/index.json new file mode 100644 index 00000000000..4651c73489d --- /dev/null +++ b/site/public/v1/smartphones/sm-g9600-ds-galaxy-s9-duos-td-lte-cn/index.json @@ -0,0 +1,76 @@ +{ + "id": 3782, + "slug": "sm-g9600-ds-galaxy-s9-duos-td-lte-cn", + "name": "SM-G9600/DS Galaxy S9 Duos TD-LTE CN", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-03-16", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.77, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 571 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 62.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.644426", + "updated_at": "2026-06-19T00:43:44.644426" +} diff --git a/site/public/v1/smartphones/sm-g9600-ds-galaxy-s9-duos-td-lte-cn/score/index.json b/site/public/v1/smartphones/sm-g9600-ds-galaxy-s9-duos-td-lte-cn/score/index.json new file mode 100644 index 00000000000..3441b48356f --- /dev/null +++ b/site/public/v1/smartphones/sm-g9600-ds-galaxy-s9-duos-td-lte-cn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 62.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g9608-ds-galaxy-s9-duos-4g-td-lte-cn/index.json b/site/public/v1/smartphones/sm-g9608-ds-galaxy-s9-duos-4g-td-lte-cn/index.json new file mode 100644 index 00000000000..20046f9d3a4 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9608-ds-galaxy-s9-duos-4g-td-lte-cn/index.json @@ -0,0 +1,76 @@ +{ + "id": 3783, + "slug": "sm-g9608-ds-galaxy-s9-duos-4g-td-lte-cn", + "name": "SM-G9608/DS Galaxy S9 Duos 4G+ TD-LTE CN", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-03-16", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.77, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 571 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 62.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.644426", + "updated_at": "2026-06-19T00:43:44.644426" +} diff --git a/site/public/v1/smartphones/sm-g9608-ds-galaxy-s9-duos-4g-td-lte-cn/score/index.json b/site/public/v1/smartphones/sm-g9608-ds-galaxy-s9-duos-4g-td-lte-cn/score/index.json new file mode 100644 index 00000000000..3441b48356f --- /dev/null +++ b/site/public/v1/smartphones/sm-g9608-ds-galaxy-s9-duos-4g-td-lte-cn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 62.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g960d-galaxy-s9-td-lte-jp-sc-02k-sgh-n327/index.json b/site/public/v1/smartphones/sm-g960d-galaxy-s9-td-lte-jp-sc-02k-sgh-n327/index.json new file mode 100644 index 00000000000..ba7ad4dec3b --- /dev/null +++ b/site/public/v1/smartphones/sm-g960d-galaxy-s9-td-lte-jp-sc-02k-sgh-n327/index.json @@ -0,0 +1,76 @@ +{ + "id": 3784, + "slug": "sm-g960d-galaxy-s9-td-lte-jp-sc-02k-sgh-n327", + "name": "SM-G960D Galaxy S9 TD-LTE JP SC-02K / SGH-N327", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.77, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 571 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 62.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.644426", + "updated_at": "2026-06-19T00:43:44.644426" +} diff --git a/site/public/v1/smartphones/sm-g960d-galaxy-s9-td-lte-jp-sc-02k-sgh-n327/score/index.json b/site/public/v1/smartphones/sm-g960d-galaxy-s9-td-lte-jp-sc-02k-sgh-n327/score/index.json new file mode 100644 index 00000000000..3441b48356f --- /dev/null +++ b/site/public/v1/smartphones/sm-g960d-galaxy-s9-td-lte-jp-sc-02k-sgh-n327/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 62.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g960f-ds-galaxy-s9-duos-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-g960f-ds-galaxy-s9-duos-td-lte-128gb/index.json new file mode 100644 index 00000000000..2f4f043bfbb --- /dev/null +++ b/site/public/v1/smartphones/sm-g960f-ds-galaxy-s9-duos-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3785, + "slug": "sm-g960f-ds-galaxy-s9-duos-td-lte-128gb", + "name": "SM-G960F/DS Galaxy S9 Duos TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 188, + "slug": "exynos-9810", + "name": "Exynos 9810", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP18", + "url": "/v1/socs/exynos-9810" + }, + "release_date": "2018-05-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.77, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 571 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.5, + "performance": 42.7, + "camera": 5.1, + "battery": 0.0, + "display": 62.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.644426", + "updated_at": "2026-06-19T00:43:44.644426" +} diff --git a/site/public/v1/smartphones/sm-g960f-ds-galaxy-s9-duos-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-g960f-ds-galaxy-s9-duos-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..9a2cda11816 --- /dev/null +++ b/site/public/v1/smartphones/sm-g960f-ds-galaxy-s9-duos-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.5, + "performance": 42.7, + "camera": 5.1, + "battery": 0.0, + "display": 62.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g960f-ds-galaxy-s9-duos-td-lte-256gb/index.json b/site/public/v1/smartphones/sm-g960f-ds-galaxy-s9-duos-td-lte-256gb/index.json new file mode 100644 index 00000000000..63ac9e8c2e3 --- /dev/null +++ b/site/public/v1/smartphones/sm-g960f-ds-galaxy-s9-duos-td-lte-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3786, + "slug": "sm-g960f-ds-galaxy-s9-duos-td-lte-256gb", + "name": "SM-G960F/DS Galaxy S9 Duos TD-LTE 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 188, + "slug": "exynos-9810", + "name": "Exynos 9810", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP18", + "url": "/v1/socs/exynos-9810" + }, + "release_date": "2018-05-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.77, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 571 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.5, + "performance": 42.7, + "camera": 5.1, + "battery": 0.0, + "display": 62.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.644426", + "updated_at": "2026-06-19T00:43:44.644426" +} diff --git a/site/public/v1/smartphones/sm-g960f-ds-galaxy-s9-duos-td-lte-256gb/score/index.json b/site/public/v1/smartphones/sm-g960f-ds-galaxy-s9-duos-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..9a2cda11816 --- /dev/null +++ b/site/public/v1/smartphones/sm-g960f-ds-galaxy-s9-duos-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.5, + "performance": 42.7, + "camera": 5.1, + "battery": 0.0, + "display": 62.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g960f-galaxy-s9-td-lte/index.json b/site/public/v1/smartphones/sm-g960f-galaxy-s9-td-lte/index.json new file mode 100644 index 00000000000..ae99e4b5471 --- /dev/null +++ b/site/public/v1/smartphones/sm-g960f-galaxy-s9-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 3787, + "slug": "sm-g960f-galaxy-s9-td-lte", + "name": "SM-G960F Galaxy S9 TD-LTE", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 188, + "slug": "exynos-9810", + "name": "Exynos 9810", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP18", + "url": "/v1/socs/exynos-9810" + }, + "release_date": "2018-03-16", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.77, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 571 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.5, + "performance": 42.7, + "camera": 5.1, + "battery": 0.0, + "display": 62.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.644426", + "updated_at": "2026-06-19T00:43:44.644426" +} diff --git a/site/public/v1/smartphones/sm-g960f-galaxy-s9-td-lte/score/index.json b/site/public/v1/smartphones/sm-g960f-galaxy-s9-td-lte/score/index.json new file mode 100644 index 00000000000..9a2cda11816 --- /dev/null +++ b/site/public/v1/smartphones/sm-g960f-galaxy-s9-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.5, + "performance": 42.7, + "camera": 5.1, + "battery": 0.0, + "display": 62.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g960j-galaxy-s9-wimax-2-scv38/index.json b/site/public/v1/smartphones/sm-g960j-galaxy-s9-wimax-2-scv38/index.json new file mode 100644 index 00000000000..dec4e4984b9 --- /dev/null +++ b/site/public/v1/smartphones/sm-g960j-galaxy-s9-wimax-2-scv38/index.json @@ -0,0 +1,76 @@ +{ + "id": 3788, + "slug": "sm-g960j-galaxy-s9-wimax-2-scv38", + "name": "SM-G960J Galaxy S9 WiMAX 2+ SCV38", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.77, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 571 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 62.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.644426", + "updated_at": "2026-06-19T00:43:44.644426" +} diff --git a/site/public/v1/smartphones/sm-g960j-galaxy-s9-wimax-2-scv38/score/index.json b/site/public/v1/smartphones/sm-g960j-galaxy-s9-wimax-2-scv38/score/index.json new file mode 100644 index 00000000000..3441b48356f --- /dev/null +++ b/site/public/v1/smartphones/sm-g960j-galaxy-s9-wimax-2-scv38/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 62.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g960n-galaxy-s9-td-lte/index.json b/site/public/v1/smartphones/sm-g960n-galaxy-s9-td-lte/index.json new file mode 100644 index 00000000000..7a0594021e2 --- /dev/null +++ b/site/public/v1/smartphones/sm-g960n-galaxy-s9-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 3789, + "slug": "sm-g960n-galaxy-s9-td-lte", + "name": "SM-G960N Galaxy S9 TD-LTE", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 188, + "slug": "exynos-9810", + "name": "Exynos 9810", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP18", + "url": "/v1/socs/exynos-9810" + }, + "release_date": "2018-03-16", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.77, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 571 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.5, + "performance": 42.7, + "camera": 5.1, + "battery": 0.0, + "display": 62.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.645425", + "updated_at": "2026-06-19T00:43:44.645425" +} diff --git a/site/public/v1/smartphones/sm-g960n-galaxy-s9-td-lte/score/index.json b/site/public/v1/smartphones/sm-g960n-galaxy-s9-td-lte/score/index.json new file mode 100644 index 00000000000..9a2cda11816 --- /dev/null +++ b/site/public/v1/smartphones/sm-g960n-galaxy-s9-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.5, + "performance": 42.7, + "camera": 5.1, + "battery": 0.0, + "display": 62.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g960u-galaxy-s9-td-lte-us/index.json b/site/public/v1/smartphones/sm-g960u-galaxy-s9-td-lte-us/index.json new file mode 100644 index 00000000000..7c3a4fec288 --- /dev/null +++ b/site/public/v1/smartphones/sm-g960u-galaxy-s9-td-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 3790, + "slug": "sm-g960u-galaxy-s9-td-lte-us", + "name": "SM-G960U Galaxy S9 TD-LTE US", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-03-16", + "msrp_usd": 719, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.77, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 571 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 62.1, + "value": 42.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.645425", + "updated_at": "2026-06-19T00:43:44.645425" +} diff --git a/site/public/v1/smartphones/sm-g960u-galaxy-s9-td-lte-us/score/index.json b/site/public/v1/smartphones/sm-g960u-galaxy-s9-td-lte-us/score/index.json new file mode 100644 index 00000000000..4d2fb63bbf6 --- /dev/null +++ b/site/public/v1/smartphones/sm-g960u-galaxy-s9-td-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 62.1, + "value": 42.3 +} diff --git a/site/public/v1/smartphones/sm-g960u1-galaxy-s9-td-lte-us-128gb/index.json b/site/public/v1/smartphones/sm-g960u1-galaxy-s9-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..0e3225c51a4 --- /dev/null +++ b/site/public/v1/smartphones/sm-g960u1-galaxy-s9-td-lte-us-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3791, + "slug": "sm-g960u1-galaxy-s9-td-lte-us-128gb", + "name": "SM-G960U1 Galaxy S9 TD-LTE US 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-05-18", + "msrp_usd": 769, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.77, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 571 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 62.1, + "value": 40.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.645425", + "updated_at": "2026-06-19T00:43:44.645425" +} diff --git a/site/public/v1/smartphones/sm-g960u1-galaxy-s9-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/sm-g960u1-galaxy-s9-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..9bdfd530630 --- /dev/null +++ b/site/public/v1/smartphones/sm-g960u1-galaxy-s9-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 62.1, + "value": 40.4 +} diff --git a/site/public/v1/smartphones/sm-g960u1-galaxy-s9-td-lte-us-256gb/index.json b/site/public/v1/smartphones/sm-g960u1-galaxy-s9-td-lte-us-256gb/index.json new file mode 100644 index 00000000000..ec016240a6b --- /dev/null +++ b/site/public/v1/smartphones/sm-g960u1-galaxy-s9-td-lte-us-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3792, + "slug": "sm-g960u1-galaxy-s9-td-lte-us-256gb", + "name": "SM-G960U1 Galaxy S9 TD-LTE US 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-05-18", + "msrp_usd": 839, + "ram_gb": 4, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.77, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 571 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 62.1, + "value": 37.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.645425", + "updated_at": "2026-06-19T00:43:44.645425" +} diff --git a/site/public/v1/smartphones/sm-g960u1-galaxy-s9-td-lte-us-256gb/score/index.json b/site/public/v1/smartphones/sm-g960u1-galaxy-s9-td-lte-us-256gb/score/index.json new file mode 100644 index 00000000000..7edf9cf57ee --- /dev/null +++ b/site/public/v1/smartphones/sm-g960u1-galaxy-s9-td-lte-us-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 62.1, + "value": 37.6 +} diff --git a/site/public/v1/smartphones/sm-g960u1-galaxy-s9-td-lte-us/index.json b/site/public/v1/smartphones/sm-g960u1-galaxy-s9-td-lte-us/index.json new file mode 100644 index 00000000000..3967118a202 --- /dev/null +++ b/site/public/v1/smartphones/sm-g960u1-galaxy-s9-td-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 3793, + "slug": "sm-g960u1-galaxy-s9-td-lte-us", + "name": "SM-G960U1 Galaxy S9 TD-LTE US", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-03-07", + "msrp_usd": 719, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.77, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 571 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 62.1, + "value": 42.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.645425", + "updated_at": "2026-06-19T00:43:44.645425" +} diff --git a/site/public/v1/smartphones/sm-g960u1-galaxy-s9-td-lte-us/score/index.json b/site/public/v1/smartphones/sm-g960u1-galaxy-s9-td-lte-us/score/index.json new file mode 100644 index 00000000000..4d2fb63bbf6 --- /dev/null +++ b/site/public/v1/smartphones/sm-g960u1-galaxy-s9-td-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 62.1, + "value": 42.3 +} diff --git a/site/public/v1/smartphones/sm-g960w-galaxy-s9-td-lte/index.json b/site/public/v1/smartphones/sm-g960w-galaxy-s9-td-lte/index.json new file mode 100644 index 00000000000..fd5df5576b6 --- /dev/null +++ b/site/public/v1/smartphones/sm-g960w-galaxy-s9-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 3794, + "slug": "sm-g960w-galaxy-s9-td-lte", + "name": "SM-G960W Galaxy S9 TD-LTE", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-03-16", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.77, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 571 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 62.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.645425", + "updated_at": "2026-06-19T00:43:44.645425" +} diff --git a/site/public/v1/smartphones/sm-g960w-galaxy-s9-td-lte/score/index.json b/site/public/v1/smartphones/sm-g960w-galaxy-s9-td-lte/score/index.json new file mode 100644 index 00000000000..3441b48356f --- /dev/null +++ b/site/public/v1/smartphones/sm-g960w-galaxy-s9-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.8, + "performance": 0.0, + "camera": 5.1, + "battery": 0.0, + "display": 62.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g9650-ds-galaxy-s9-duos-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/sm-g9650-ds-galaxy-s9-duos-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..c2c36285125 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9650-ds-galaxy-s9-duos-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3795, + "slug": "sm-g9650-ds-galaxy-s9-duos-td-lte-cn-128gb", + "name": "SM-G9650/DS Galaxy S9+ Duos TD-LTE CN 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.22, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 529 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": 1.5, + "camera": 5.1, + "battery": 7.5, + "display": 57.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.645425", + "updated_at": "2026-06-19T00:43:44.646425" +} diff --git a/site/public/v1/smartphones/sm-g9650-ds-galaxy-s9-duos-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/sm-g9650-ds-galaxy-s9-duos-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..797371c5df6 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9650-ds-galaxy-s9-duos-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": 1.5, + "camera": 5.1, + "battery": 7.5, + "display": 57.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g9650-ds-galaxy-s9-duos-td-lte-cn-256gb/index.json b/site/public/v1/smartphones/sm-g9650-ds-galaxy-s9-duos-td-lte-cn-256gb/index.json new file mode 100644 index 00000000000..fbba99b4a19 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9650-ds-galaxy-s9-duos-td-lte-cn-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3796, + "slug": "sm-g9650-ds-galaxy-s9-duos-td-lte-cn-256gb", + "name": "SM-G9650/DS Galaxy S9+ Duos TD-LTE CN 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.22, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 529 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": 1.5, + "camera": 5.1, + "battery": 7.5, + "display": 57.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.646425", + "updated_at": "2026-06-19T00:43:44.646425" +} diff --git a/site/public/v1/smartphones/sm-g9650-ds-galaxy-s9-duos-td-lte-cn-256gb/score/index.json b/site/public/v1/smartphones/sm-g9650-ds-galaxy-s9-duos-td-lte-cn-256gb/score/index.json new file mode 100644 index 00000000000..797371c5df6 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9650-ds-galaxy-s9-duos-td-lte-cn-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": 1.5, + "camera": 5.1, + "battery": 7.5, + "display": 57.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g9650-ds-galaxy-s9-duos-td-lte-cn/index.json b/site/public/v1/smartphones/sm-g9650-ds-galaxy-s9-duos-td-lte-cn/index.json new file mode 100644 index 00000000000..a889ebcf222 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9650-ds-galaxy-s9-duos-td-lte-cn/index.json @@ -0,0 +1,76 @@ +{ + "id": 3797, + "slug": "sm-g9650-ds-galaxy-s9-duos-td-lte-cn", + "name": "SM-G9650/DS Galaxy S9+ Duos TD-LTE CN", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-03-16", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 529 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": 1.5, + "camera": 5.1, + "battery": 7.5, + "display": 57.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.646425", + "updated_at": "2026-06-19T00:43:44.646425" +} diff --git a/site/public/v1/smartphones/sm-g9650-ds-galaxy-s9-duos-td-lte-cn/score/index.json b/site/public/v1/smartphones/sm-g9650-ds-galaxy-s9-duos-td-lte-cn/score/index.json new file mode 100644 index 00000000000..797371c5df6 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9650-ds-galaxy-s9-duos-td-lte-cn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": 1.5, + "camera": 5.1, + "battery": 7.5, + "display": 57.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g965d-galaxy-s9-td-lte-jp-sc-03k-sgh-n943/index.json b/site/public/v1/smartphones/sm-g965d-galaxy-s9-td-lte-jp-sc-03k-sgh-n943/index.json new file mode 100644 index 00000000000..c3191c439d0 --- /dev/null +++ b/site/public/v1/smartphones/sm-g965d-galaxy-s9-td-lte-jp-sc-03k-sgh-n943/index.json @@ -0,0 +1,74 @@ +{ + "id": 3798, + "slug": "sm-g965d-galaxy-s9-td-lte-jp-sc-03k-sgh-n943", + "name": "SM-G965D Galaxy S9+ TD-LTE JP SC-03K / SGH-N943", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-05-18", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [], + "display": { + "size_inch": 6.22, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 529 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": 1.5, + "camera": 5.1, + "battery": 7.5, + "display": 57.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.646425", + "updated_at": "2026-06-19T00:43:44.646425" +} diff --git a/site/public/v1/smartphones/sm-g965d-galaxy-s9-td-lte-jp-sc-03k-sgh-n943/score/index.json b/site/public/v1/smartphones/sm-g965d-galaxy-s9-td-lte-jp-sc-03k-sgh-n943/score/index.json new file mode 100644 index 00000000000..797371c5df6 --- /dev/null +++ b/site/public/v1/smartphones/sm-g965d-galaxy-s9-td-lte-jp-sc-03k-sgh-n943/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": 1.5, + "camera": 5.1, + "battery": 7.5, + "display": 57.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g965f-ds-galaxy-s9-duos-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-g965f-ds-galaxy-s9-duos-td-lte-128gb/index.json new file mode 100644 index 00000000000..a5b5c5b4ac7 --- /dev/null +++ b/site/public/v1/smartphones/sm-g965f-ds-galaxy-s9-duos-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3799, + "slug": "sm-g965f-ds-galaxy-s9-duos-td-lte-128gb", + "name": "SM-G965F/DS Galaxy S9+ Duos TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 188, + "slug": "exynos-9810", + "name": "Exynos 9810", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP18", + "url": "/v1/socs/exynos-9810" + }, + "release_date": "2018-03-16", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.22, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 529 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.7, + "performance": 44.2, + "camera": 5.1, + "battery": 7.5, + "display": 57.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.646425", + "updated_at": "2026-06-19T00:43:44.646425" +} diff --git a/site/public/v1/smartphones/sm-g965f-ds-galaxy-s9-duos-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-g965f-ds-galaxy-s9-duos-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..dabebba112c --- /dev/null +++ b/site/public/v1/smartphones/sm-g965f-ds-galaxy-s9-duos-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.7, + "performance": 44.2, + "camera": 5.1, + "battery": 7.5, + "display": 57.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g965f-ds-galaxy-s9-duos-td-lte-256gb/index.json b/site/public/v1/smartphones/sm-g965f-ds-galaxy-s9-duos-td-lte-256gb/index.json new file mode 100644 index 00000000000..2c01e33b0f0 --- /dev/null +++ b/site/public/v1/smartphones/sm-g965f-ds-galaxy-s9-duos-td-lte-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3800, + "slug": "sm-g965f-ds-galaxy-s9-duos-td-lte-256gb", + "name": "SM-G965F/DS Galaxy S9+ Duos TD-LTE 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 188, + "slug": "exynos-9810", + "name": "Exynos 9810", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP18", + "url": "/v1/socs/exynos-9810" + }, + "release_date": "2018-05-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.22, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 529 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.7, + "performance": 44.2, + "camera": 5.1, + "battery": 7.5, + "display": 57.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.646425", + "updated_at": "2026-06-19T00:43:44.646425" +} diff --git a/site/public/v1/smartphones/sm-g965f-ds-galaxy-s9-duos-td-lte-256gb/score/index.json b/site/public/v1/smartphones/sm-g965f-ds-galaxy-s9-duos-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..dabebba112c --- /dev/null +++ b/site/public/v1/smartphones/sm-g965f-ds-galaxy-s9-duos-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.7, + "performance": 44.2, + "camera": 5.1, + "battery": 7.5, + "display": 57.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g965f-ds-galaxy-s9-duos-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-g965f-ds-galaxy-s9-duos-td-lte-64gb/index.json new file mode 100644 index 00000000000..1903dcd7299 --- /dev/null +++ b/site/public/v1/smartphones/sm-g965f-ds-galaxy-s9-duos-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3801, + "slug": "sm-g965f-ds-galaxy-s9-duos-td-lte-64gb", + "name": "SM-G965F/DS Galaxy S9+ Duos TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 188, + "slug": "exynos-9810", + "name": "Exynos 9810", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP18", + "url": "/v1/socs/exynos-9810" + }, + "release_date": "2018-03-16", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 529 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.7, + "performance": 44.2, + "camera": 5.1, + "battery": 7.5, + "display": 57.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.646425", + "updated_at": "2026-06-19T00:43:44.646425" +} diff --git a/site/public/v1/smartphones/sm-g965f-ds-galaxy-s9-duos-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-g965f-ds-galaxy-s9-duos-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..dabebba112c --- /dev/null +++ b/site/public/v1/smartphones/sm-g965f-ds-galaxy-s9-duos-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.7, + "performance": 44.2, + "camera": 5.1, + "battery": 7.5, + "display": 57.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g965f-galaxy-s9-td-lte-galaxy-s9-plus/index.json b/site/public/v1/smartphones/sm-g965f-galaxy-s9-td-lte-galaxy-s9-plus/index.json new file mode 100644 index 00000000000..4e95132d3d5 --- /dev/null +++ b/site/public/v1/smartphones/sm-g965f-galaxy-s9-td-lte-galaxy-s9-plus/index.json @@ -0,0 +1,76 @@ +{ + "id": 3802, + "slug": "sm-g965f-galaxy-s9-td-lte-galaxy-s9-plus", + "name": "SM-G965F Galaxy S9+ TD-LTE / Galaxy S9 Plus", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 188, + "slug": "exynos-9810", + "name": "Exynos 9810", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP18", + "url": "/v1/socs/exynos-9810" + }, + "release_date": "2018-03-16", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 529 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.7, + "performance": 44.2, + "camera": 5.1, + "battery": 7.5, + "display": 57.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.646425", + "updated_at": "2026-06-19T00:43:44.646425" +} diff --git a/site/public/v1/smartphones/sm-g965f-galaxy-s9-td-lte-galaxy-s9-plus/score/index.json b/site/public/v1/smartphones/sm-g965f-galaxy-s9-td-lte-galaxy-s9-plus/score/index.json new file mode 100644 index 00000000000..dabebba112c --- /dev/null +++ b/site/public/v1/smartphones/sm-g965f-galaxy-s9-td-lte-galaxy-s9-plus/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.7, + "performance": 44.2, + "camera": 5.1, + "battery": 7.5, + "display": 57.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g965j-galaxy-s9-wimax-2-scv39/index.json b/site/public/v1/smartphones/sm-g965j-galaxy-s9-wimax-2-scv39/index.json new file mode 100644 index 00000000000..6153d5aaa39 --- /dev/null +++ b/site/public/v1/smartphones/sm-g965j-galaxy-s9-wimax-2-scv39/index.json @@ -0,0 +1,74 @@ +{ + "id": 3803, + "slug": "sm-g965j-galaxy-s9-wimax-2-scv39", + "name": "SM-G965J Galaxy S9+ WiMAX 2+ SCV39", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-05-18", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [], + "display": { + "size_inch": 6.22, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 529 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": 1.5, + "camera": 5.1, + "battery": 7.5, + "display": 57.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.647438", + "updated_at": "2026-06-19T00:43:44.647438" +} diff --git a/site/public/v1/smartphones/sm-g965j-galaxy-s9-wimax-2-scv39/score/index.json b/site/public/v1/smartphones/sm-g965j-galaxy-s9-wimax-2-scv39/score/index.json new file mode 100644 index 00000000000..797371c5df6 --- /dev/null +++ b/site/public/v1/smartphones/sm-g965j-galaxy-s9-wimax-2-scv39/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": 1.5, + "camera": 5.1, + "battery": 7.5, + "display": 57.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g965n-galaxy-s9-td-lte-256gb/index.json b/site/public/v1/smartphones/sm-g965n-galaxy-s9-td-lte-256gb/index.json new file mode 100644 index 00000000000..d8b2058d96f --- /dev/null +++ b/site/public/v1/smartphones/sm-g965n-galaxy-s9-td-lte-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3804, + "slug": "sm-g965n-galaxy-s9-td-lte-256gb", + "name": "SM-G965N Galaxy S9+ TD-LTE 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 188, + "slug": "exynos-9810", + "name": "Exynos 9810", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP18", + "url": "/v1/socs/exynos-9810" + }, + "release_date": "2018-03-16", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.22, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 529 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.7, + "performance": 44.2, + "camera": 5.1, + "battery": 7.5, + "display": 57.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.647438", + "updated_at": "2026-06-19T00:43:44.647438" +} diff --git a/site/public/v1/smartphones/sm-g965n-galaxy-s9-td-lte-256gb/score/index.json b/site/public/v1/smartphones/sm-g965n-galaxy-s9-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..dabebba112c --- /dev/null +++ b/site/public/v1/smartphones/sm-g965n-galaxy-s9-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.7, + "performance": 44.2, + "camera": 5.1, + "battery": 7.5, + "display": 57.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g965n-galaxy-s9-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-g965n-galaxy-s9-td-lte-64gb/index.json new file mode 100644 index 00000000000..6d73e99fa9b --- /dev/null +++ b/site/public/v1/smartphones/sm-g965n-galaxy-s9-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3805, + "slug": "sm-g965n-galaxy-s9-td-lte-64gb", + "name": "SM-G965N Galaxy S9+ TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 188, + "slug": "exynos-9810", + "name": "Exynos 9810", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP18", + "url": "/v1/socs/exynos-9810" + }, + "release_date": "2018-03-16", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 529 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.7, + "performance": 44.2, + "camera": 5.1, + "battery": 7.5, + "display": 57.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.647438", + "updated_at": "2026-06-19T00:43:44.647438" +} diff --git a/site/public/v1/smartphones/sm-g965n-galaxy-s9-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-g965n-galaxy-s9-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..dabebba112c --- /dev/null +++ b/site/public/v1/smartphones/sm-g965n-galaxy-s9-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.7, + "performance": 44.2, + "camera": 5.1, + "battery": 7.5, + "display": 57.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g965u1-galaxy-s9-td-lte-us-128gb/index.json b/site/public/v1/smartphones/sm-g965u1-galaxy-s9-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..00e72d69188 --- /dev/null +++ b/site/public/v1/smartphones/sm-g965u1-galaxy-s9-td-lte-us-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3806, + "slug": "sm-g965u1-galaxy-s9-td-lte-us-128gb", + "name": "SM-G965U1 Galaxy S9+ TD-LTE US 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-05-18", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.22, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 529 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": 1.5, + "camera": 5.1, + "battery": 7.5, + "display": 57.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.647438", + "updated_at": "2026-06-19T00:43:44.647438" +} diff --git a/site/public/v1/smartphones/sm-g965u1-galaxy-s9-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/sm-g965u1-galaxy-s9-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..797371c5df6 --- /dev/null +++ b/site/public/v1/smartphones/sm-g965u1-galaxy-s9-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": 1.5, + "camera": 5.1, + "battery": 7.5, + "display": 57.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g965u1-galaxy-s9-td-lte-us-256gb/index.json b/site/public/v1/smartphones/sm-g965u1-galaxy-s9-td-lte-us-256gb/index.json new file mode 100644 index 00000000000..fbcb240eaa1 --- /dev/null +++ b/site/public/v1/smartphones/sm-g965u1-galaxy-s9-td-lte-us-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3807, + "slug": "sm-g965u1-galaxy-s9-td-lte-us-256gb", + "name": "SM-G965U1 Galaxy S9+ TD-LTE US 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-05-18", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.22, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 529 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": 1.5, + "camera": 5.1, + "battery": 7.5, + "display": 57.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.647438", + "updated_at": "2026-06-19T00:43:44.647438" +} diff --git a/site/public/v1/smartphones/sm-g965u1-galaxy-s9-td-lte-us-256gb/score/index.json b/site/public/v1/smartphones/sm-g965u1-galaxy-s9-td-lte-us-256gb/score/index.json new file mode 100644 index 00000000000..797371c5df6 --- /dev/null +++ b/site/public/v1/smartphones/sm-g965u1-galaxy-s9-td-lte-us-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": 1.5, + "camera": 5.1, + "battery": 7.5, + "display": 57.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g965u1-galaxy-s9-td-lte-us/index.json b/site/public/v1/smartphones/sm-g965u1-galaxy-s9-td-lte-us/index.json new file mode 100644 index 00000000000..ea3fc0dc9d1 --- /dev/null +++ b/site/public/v1/smartphones/sm-g965u1-galaxy-s9-td-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 3808, + "slug": "sm-g965u1-galaxy-s9-td-lte-us", + "name": "SM-G965U1 Galaxy S9+ TD-LTE US", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-03-16", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 529 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": 1.5, + "camera": 5.1, + "battery": 7.5, + "display": 57.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.647438", + "updated_at": "2026-06-19T00:43:44.647438" +} diff --git a/site/public/v1/smartphones/sm-g965u1-galaxy-s9-td-lte-us/score/index.json b/site/public/v1/smartphones/sm-g965u1-galaxy-s9-td-lte-us/score/index.json new file mode 100644 index 00000000000..797371c5df6 --- /dev/null +++ b/site/public/v1/smartphones/sm-g965u1-galaxy-s9-td-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": 1.5, + "camera": 5.1, + "battery": 7.5, + "display": 57.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g965w-galaxy-s9-td-lte/index.json b/site/public/v1/smartphones/sm-g965w-galaxy-s9-td-lte/index.json new file mode 100644 index 00000000000..c59dcaaf962 --- /dev/null +++ b/site/public/v1/smartphones/sm-g965w-galaxy-s9-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 3809, + "slug": "sm-g965w-galaxy-s9-td-lte", + "name": "SM-G965W Galaxy S9+ TD-LTE", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-03-16", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 529 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": 1.5, + "camera": 5.1, + "battery": 7.5, + "display": 57.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.647438", + "updated_at": "2026-06-19T00:43:44.647438" +} diff --git a/site/public/v1/smartphones/sm-g965w-galaxy-s9-td-lte/score/index.json b/site/public/v1/smartphones/sm-g965w-galaxy-s9-td-lte/score/index.json new file mode 100644 index 00000000000..797371c5df6 --- /dev/null +++ b/site/public/v1/smartphones/sm-g965w-galaxy-s9-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": 1.5, + "camera": 5.1, + "battery": 7.5, + "display": 57.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g9700-ds-galaxy-s10e-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/sm-g9700-ds-galaxy-s10e-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..3c8b1df9c56 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9700-ds-galaxy-s10e-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3947, + "slug": "sm-g9700-ds-galaxy-s10e-dual-sim-td-lte-cn-128gb", + "name": "SM-G9700/DS Galaxy S10E Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-19", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.75, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 1.5, + "camera": 5.1, + "battery": 1.5, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.666763", + "updated_at": "2026-06-19T00:43:44.666763" +} diff --git a/site/public/v1/smartphones/sm-g9700-ds-galaxy-s10e-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/sm-g9700-ds-galaxy-s10e-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..b6394c2de16 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9700-ds-galaxy-s10e-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 1.5, + "camera": 5.1, + "battery": 1.5, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g9708-ds-galaxy-s10e-4g-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/sm-g9708-ds-galaxy-s10e-4g-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..128197ae4ea --- /dev/null +++ b/site/public/v1/smartphones/sm-g9708-ds-galaxy-s10e-4g-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3948, + "slug": "sm-g9708-ds-galaxy-s10e-4g-dual-sim-td-lte-cn-128gb", + "name": "SM-G9708/DS Galaxy S10E 4G+ Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-19", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.75, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 1.5, + "camera": 5.1, + "battery": 1.5, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.667762", + "updated_at": "2026-06-19T00:43:44.667762" +} diff --git a/site/public/v1/smartphones/sm-g9708-ds-galaxy-s10e-4g-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/sm-g9708-ds-galaxy-s10e-4g-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..b6394c2de16 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9708-ds-galaxy-s10e-4g-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 1.5, + "camera": 5.1, + "battery": 1.5, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g970f-ds-galaxy-s10e-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-g970f-ds-galaxy-s10e-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..66c13ba2090 --- /dev/null +++ b/site/public/v1/smartphones/sm-g970f-ds-galaxy-s10e-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3949, + "slug": "sm-g970f-ds-galaxy-s10e-global-dual-sim-td-lte-128gb", + "name": "SM-G970F/DS Galaxy S10E Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 194, + "slug": "exynos-9820", + "name": "Samsung Exynos 9820", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G76 MP12", + "url": "/v1/socs/exynos-9820" + }, + "release_date": "2019-03-08", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.75, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 1.5, + "camera": 5.1, + "battery": 1.5, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.667762", + "updated_at": "2026-06-19T00:43:44.667762" +} diff --git a/site/public/v1/smartphones/sm-g970f-ds-galaxy-s10e-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-g970f-ds-galaxy-s10e-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..b6394c2de16 --- /dev/null +++ b/site/public/v1/smartphones/sm-g970f-ds-galaxy-s10e-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 1.5, + "camera": 5.1, + "battery": 1.5, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g970f-ds-galaxy-s10e-global-dual-sim-td-lte-256gb/index.json b/site/public/v1/smartphones/sm-g970f-ds-galaxy-s10e-global-dual-sim-td-lte-256gb/index.json new file mode 100644 index 00000000000..d30d4c809df --- /dev/null +++ b/site/public/v1/smartphones/sm-g970f-ds-galaxy-s10e-global-dual-sim-td-lte-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3950, + "slug": "sm-g970f-ds-galaxy-s10e-global-dual-sim-td-lte-256gb", + "name": "SM-G970F/DS Galaxy S10E Global Dual SIM TD-LTE 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 194, + "slug": "exynos-9820", + "name": "Samsung Exynos 9820", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G76 MP12", + "url": "/v1/socs/exynos-9820" + }, + "release_date": "2019-03-08", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.75, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.6, + "performance": 3.0, + "camera": 5.1, + "battery": 1.5, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.667762", + "updated_at": "2026-06-19T00:43:44.667762" +} diff --git a/site/public/v1/smartphones/sm-g970f-ds-galaxy-s10e-global-dual-sim-td-lte-256gb/score/index.json b/site/public/v1/smartphones/sm-g970f-ds-galaxy-s10e-global-dual-sim-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..c8eea06546c --- /dev/null +++ b/site/public/v1/smartphones/sm-g970f-ds-galaxy-s10e-global-dual-sim-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.6, + "performance": 3.0, + "camera": 5.1, + "battery": 1.5, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g970f-galaxy-s10e-global-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-g970f-galaxy-s10e-global-td-lte-128gb/index.json new file mode 100644 index 00000000000..97f36ffcb8e --- /dev/null +++ b/site/public/v1/smartphones/sm-g970f-galaxy-s10e-global-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3951, + "slug": "sm-g970f-galaxy-s10e-global-td-lte-128gb", + "name": "SM-G970F Galaxy S10E Global TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 194, + "slug": "exynos-9820", + "name": "Samsung Exynos 9820", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G76 MP12", + "url": "/v1/socs/exynos-9820" + }, + "release_date": "2019-03-08", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.75, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 1.5, + "camera": 5.1, + "battery": 1.5, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.667762", + "updated_at": "2026-06-19T00:43:44.667762" +} diff --git a/site/public/v1/smartphones/sm-g970f-galaxy-s10e-global-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-g970f-galaxy-s10e-global-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..b6394c2de16 --- /dev/null +++ b/site/public/v1/smartphones/sm-g970f-galaxy-s10e-global-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 1.5, + "camera": 5.1, + "battery": 1.5, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g970n-galaxy-s10e-td-lte-kr-128gb/index.json b/site/public/v1/smartphones/sm-g970n-galaxy-s10e-td-lte-kr-128gb/index.json new file mode 100644 index 00000000000..5b096e3261c --- /dev/null +++ b/site/public/v1/smartphones/sm-g970n-galaxy-s10e-td-lte-kr-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3952, + "slug": "sm-g970n-galaxy-s10e-td-lte-kr-128gb", + "name": "SM-G970N Galaxy S10E TD-LTE KR 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 194, + "slug": "exynos-9820", + "name": "Samsung Exynos 9820", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G76 MP12", + "url": "/v1/socs/exynos-9820" + }, + "release_date": "2019-03-19", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.75, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 1.5, + "camera": 5.1, + "battery": 1.5, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.667762", + "updated_at": "2026-06-19T00:43:44.667762" +} diff --git a/site/public/v1/smartphones/sm-g970n-galaxy-s10e-td-lte-kr-128gb/score/index.json b/site/public/v1/smartphones/sm-g970n-galaxy-s10e-td-lte-kr-128gb/score/index.json new file mode 100644 index 00000000000..b6394c2de16 --- /dev/null +++ b/site/public/v1/smartphones/sm-g970n-galaxy-s10e-td-lte-kr-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 1.5, + "camera": 5.1, + "battery": 1.5, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g970n-galaxy-s10e-td-lte-kr-256gb/index.json b/site/public/v1/smartphones/sm-g970n-galaxy-s10e-td-lte-kr-256gb/index.json new file mode 100644 index 00000000000..ebd1b920d75 --- /dev/null +++ b/site/public/v1/smartphones/sm-g970n-galaxy-s10e-td-lte-kr-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3953, + "slug": "sm-g970n-galaxy-s10e-td-lte-kr-256gb", + "name": "SM-G970N Galaxy S10E TD-LTE KR 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 194, + "slug": "exynos-9820", + "name": "Samsung Exynos 9820", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G76 MP12", + "url": "/v1/socs/exynos-9820" + }, + "release_date": "2019-03-19", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.75, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.6, + "performance": 3.0, + "camera": 5.1, + "battery": 1.5, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.667762", + "updated_at": "2026-06-19T00:43:44.667762" +} diff --git a/site/public/v1/smartphones/sm-g970n-galaxy-s10e-td-lte-kr-256gb/score/index.json b/site/public/v1/smartphones/sm-g970n-galaxy-s10e-td-lte-kr-256gb/score/index.json new file mode 100644 index 00000000000..c8eea06546c --- /dev/null +++ b/site/public/v1/smartphones/sm-g970n-galaxy-s10e-td-lte-kr-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.6, + "performance": 3.0, + "camera": 5.1, + "battery": 1.5, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g970u-galaxy-s10e-td-lte-us-128gb/index.json b/site/public/v1/smartphones/sm-g970u-galaxy-s10e-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..0044df8a7e8 --- /dev/null +++ b/site/public/v1/smartphones/sm-g970u-galaxy-s10e-td-lte-us-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3954, + "slug": "sm-g970u-galaxy-s10e-td-lte-us-128gb", + "name": "SM-G970U Galaxy S10E TD-LTE US 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-09", + "msrp_usd": 600, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.75, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 1.5, + "camera": 5.1, + "battery": 1.5, + "display": 48.9, + "value": 45.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.667762", + "updated_at": "2026-06-19T00:43:44.667762" +} diff --git a/site/public/v1/smartphones/sm-g970u-galaxy-s10e-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/sm-g970u-galaxy-s10e-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..be760f433be --- /dev/null +++ b/site/public/v1/smartphones/sm-g970u-galaxy-s10e-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 1.5, + "camera": 5.1, + "battery": 1.5, + "display": 48.9, + "value": 45.6 +} diff --git a/site/public/v1/smartphones/sm-g970u-galaxy-s10e-td-lte-us-256gb/index.json b/site/public/v1/smartphones/sm-g970u-galaxy-s10e-td-lte-us-256gb/index.json new file mode 100644 index 00000000000..fbadf084b56 --- /dev/null +++ b/site/public/v1/smartphones/sm-g970u-galaxy-s10e-td-lte-us-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3955, + "slug": "sm-g970u-galaxy-s10e-td-lte-us-256gb", + "name": "SM-G970U Galaxy S10E TD-LTE US 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-09", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.75, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.6, + "performance": 3.0, + "camera": 5.1, + "battery": 1.5, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.667762", + "updated_at": "2026-06-19T00:43:44.667762" +} diff --git a/site/public/v1/smartphones/sm-g970u-galaxy-s10e-td-lte-us-256gb/score/index.json b/site/public/v1/smartphones/sm-g970u-galaxy-s10e-td-lte-us-256gb/score/index.json new file mode 100644 index 00000000000..c8eea06546c --- /dev/null +++ b/site/public/v1/smartphones/sm-g970u-galaxy-s10e-td-lte-us-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.6, + "performance": 3.0, + "camera": 5.1, + "battery": 1.5, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g970u1-galaxy-s10e-td-lte-us-128gb/index.json b/site/public/v1/smartphones/sm-g970u1-galaxy-s10e-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..dd1f2fed4ac --- /dev/null +++ b/site/public/v1/smartphones/sm-g970u1-galaxy-s10e-td-lte-us-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3956, + "slug": "sm-g970u1-galaxy-s10e-td-lte-us-128gb", + "name": "SM-G970U1 Galaxy S10E TD-LTE US 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-09", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.75, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 1.5, + "camera": 5.1, + "battery": 1.5, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.668762", + "updated_at": "2026-06-19T00:43:44.668762" +} diff --git a/site/public/v1/smartphones/sm-g970u1-galaxy-s10e-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/sm-g970u1-galaxy-s10e-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..b6394c2de16 --- /dev/null +++ b/site/public/v1/smartphones/sm-g970u1-galaxy-s10e-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 1.5, + "camera": 5.1, + "battery": 1.5, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g970u1-galaxy-s10e-td-lte-us-256gb/index.json b/site/public/v1/smartphones/sm-g970u1-galaxy-s10e-td-lte-us-256gb/index.json new file mode 100644 index 00000000000..6d5c41e3e4a --- /dev/null +++ b/site/public/v1/smartphones/sm-g970u1-galaxy-s10e-td-lte-us-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3957, + "slug": "sm-g970u1-galaxy-s10e-td-lte-us-256gb", + "name": "SM-G970U1 Galaxy S10E TD-LTE US 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-09", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.75, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.6, + "performance": 3.0, + "camera": 5.1, + "battery": 1.5, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.668762", + "updated_at": "2026-06-19T00:43:44.668762" +} diff --git a/site/public/v1/smartphones/sm-g970u1-galaxy-s10e-td-lte-us-256gb/score/index.json b/site/public/v1/smartphones/sm-g970u1-galaxy-s10e-td-lte-us-256gb/score/index.json new file mode 100644 index 00000000000..c8eea06546c --- /dev/null +++ b/site/public/v1/smartphones/sm-g970u1-galaxy-s10e-td-lte-us-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.6, + "performance": 3.0, + "camera": 5.1, + "battery": 1.5, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g970w-galaxy-s10e-td-lte-ca-128gb/index.json b/site/public/v1/smartphones/sm-g970w-galaxy-s10e-td-lte-ca-128gb/index.json new file mode 100644 index 00000000000..23b797470bf --- /dev/null +++ b/site/public/v1/smartphones/sm-g970w-galaxy-s10e-td-lte-ca-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3958, + "slug": "sm-g970w-galaxy-s10e-td-lte-ca-128gb", + "name": "SM-G970W Galaxy S10E TD-LTE CA 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-09", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.75, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 1.5, + "camera": 5.1, + "battery": 1.5, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.668762", + "updated_at": "2026-06-19T00:43:44.668762" +} diff --git a/site/public/v1/smartphones/sm-g970w-galaxy-s10e-td-lte-ca-128gb/score/index.json b/site/public/v1/smartphones/sm-g970w-galaxy-s10e-td-lte-ca-128gb/score/index.json new file mode 100644 index 00000000000..b6394c2de16 --- /dev/null +++ b/site/public/v1/smartphones/sm-g970w-galaxy-s10e-td-lte-ca-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 1.5, + "camera": 5.1, + "battery": 1.5, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g970w-galaxy-s10e-td-lte-ca-256gb/index.json b/site/public/v1/smartphones/sm-g970w-galaxy-s10e-td-lte-ca-256gb/index.json new file mode 100644 index 00000000000..57f995c61e6 --- /dev/null +++ b/site/public/v1/smartphones/sm-g970w-galaxy-s10e-td-lte-ca-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3959, + "slug": "sm-g970w-galaxy-s10e-td-lte-ca-256gb", + "name": "SM-G970W Galaxy S10E TD-LTE CA 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-09", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.75, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 439 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.6, + "performance": 3.0, + "camera": 5.1, + "battery": 1.5, + "display": 48.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.668762", + "updated_at": "2026-06-19T00:43:44.668762" +} diff --git a/site/public/v1/smartphones/sm-g970w-galaxy-s10e-td-lte-ca-256gb/score/index.json b/site/public/v1/smartphones/sm-g970w-galaxy-s10e-td-lte-ca-256gb/score/index.json new file mode 100644 index 00000000000..c8eea06546c --- /dev/null +++ b/site/public/v1/smartphones/sm-g970w-galaxy-s10e-td-lte-ca-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.6, + "performance": 3.0, + "camera": 5.1, + "battery": 1.5, + "display": 48.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g9730-ds-galaxy-s10-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/sm-g9730-ds-galaxy-s10-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..22cc9cdcaae --- /dev/null +++ b/site/public/v1/smartphones/sm-g9730-ds-galaxy-s10-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3960, + "slug": "sm-g9730-ds-galaxy-s10-dual-sim-td-lte-cn-128gb", + "name": "SM-G9730/DS Galaxy S10 Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-09", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.11, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 551 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 157.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 60.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.668762", + "updated_at": "2026-06-19T00:43:44.668762" +} diff --git a/site/public/v1/smartphones/sm-g9730-ds-galaxy-s10-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/sm-g9730-ds-galaxy-s10-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..16a8bf7df82 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9730-ds-galaxy-s10-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 60.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g9730-ds-galaxy-s10-dual-sim-td-lte-cn-512gb/index.json b/site/public/v1/smartphones/sm-g9730-ds-galaxy-s10-dual-sim-td-lte-cn-512gb/index.json new file mode 100644 index 00000000000..1d76b845568 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9730-ds-galaxy-s10-dual-sim-td-lte-cn-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3961, + "slug": "sm-g9730-ds-galaxy-s10-dual-sim-td-lte-cn-512gb", + "name": "SM-G9730/DS Galaxy S10 Dual SIM TD-LTE CN 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-19", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.11, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 551 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 157.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 60.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.668762", + "updated_at": "2026-06-19T00:43:44.668762" +} diff --git a/site/public/v1/smartphones/sm-g9730-ds-galaxy-s10-dual-sim-td-lte-cn-512gb/score/index.json b/site/public/v1/smartphones/sm-g9730-ds-galaxy-s10-dual-sim-td-lte-cn-512gb/score/index.json new file mode 100644 index 00000000000..16a8bf7df82 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9730-ds-galaxy-s10-dual-sim-td-lte-cn-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 60.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g9738-ds-galaxy-s10-4g-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/sm-g9738-ds-galaxy-s10-4g-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..aa50c690345 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9738-ds-galaxy-s10-4g-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3962, + "slug": "sm-g9738-ds-galaxy-s10-4g-dual-sim-td-lte-cn-128gb", + "name": "SM-G9738/DS Galaxy S10 4G+ Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.11, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 551 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 157.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 60.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.668762", + "updated_at": "2026-06-19T00:43:44.668762" +} diff --git a/site/public/v1/smartphones/sm-g9738-ds-galaxy-s10-4g-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/sm-g9738-ds-galaxy-s10-4g-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..16a8bf7df82 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9738-ds-galaxy-s10-4g-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 60.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g973c-galaxy-s10-td-lte-jp/index.json b/site/public/v1/smartphones/sm-g973c-galaxy-s10-td-lte-jp/index.json new file mode 100644 index 00000000000..67d85a35187 --- /dev/null +++ b/site/public/v1/smartphones/sm-g973c-galaxy-s10-td-lte-jp/index.json @@ -0,0 +1,76 @@ +{ + "id": 3963, + "slug": "sm-g973c-galaxy-s10-td-lte-jp", + "name": "SM-G973C Galaxy S10 TD-LTE JP", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-12-09", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.11, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 551 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 157.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 60.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.668762", + "updated_at": "2026-06-19T00:43:44.668762" +} diff --git a/site/public/v1/smartphones/sm-g973c-galaxy-s10-td-lte-jp/score/index.json b/site/public/v1/smartphones/sm-g973c-galaxy-s10-td-lte-jp/score/index.json new file mode 100644 index 00000000000..16a8bf7df82 --- /dev/null +++ b/site/public/v1/smartphones/sm-g973c-galaxy-s10-td-lte-jp/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 60.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g973d-galaxy-s10-td-lte-jp-sc-03l-sgh-n794/index.json b/site/public/v1/smartphones/sm-g973d-galaxy-s10-td-lte-jp-sc-03l-sgh-n794/index.json new file mode 100644 index 00000000000..a89f46de70f --- /dev/null +++ b/site/public/v1/smartphones/sm-g973d-galaxy-s10-td-lte-jp-sc-03l-sgh-n794/index.json @@ -0,0 +1,76 @@ +{ + "id": 3964, + "slug": "sm-g973d-galaxy-s10-td-lte-jp-sc-03l-sgh-n794", + "name": "SM-G973D Galaxy S10 TD-LTE JP SC-03L / SGH-N794", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-02", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.11, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 551 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 157.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 60.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.669762", + "updated_at": "2026-06-19T00:43:44.669762" +} diff --git a/site/public/v1/smartphones/sm-g973d-galaxy-s10-td-lte-jp-sc-03l-sgh-n794/score/index.json b/site/public/v1/smartphones/sm-g973d-galaxy-s10-td-lte-jp-sc-03l-sgh-n794/score/index.json new file mode 100644 index 00000000000..16a8bf7df82 --- /dev/null +++ b/site/public/v1/smartphones/sm-g973d-galaxy-s10-td-lte-jp-sc-03l-sgh-n794/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 60.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g973f-ds-galaxy-s10-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-g973f-ds-galaxy-s10-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..d446a6f24a3 --- /dev/null +++ b/site/public/v1/smartphones/sm-g973f-ds-galaxy-s10-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3965, + "slug": "sm-g973f-ds-galaxy-s10-global-dual-sim-td-lte-128gb", + "name": "SM-G973F/DS Galaxy S10 Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 194, + "slug": "exynos-9820", + "name": "Samsung Exynos 9820", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G76 MP12", + "url": "/v1/socs/exynos-9820" + }, + "release_date": "2019-03-08", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.11, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 551 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 157.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 60.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.669762", + "updated_at": "2026-06-19T00:43:44.669762" +} diff --git a/site/public/v1/smartphones/sm-g973f-ds-galaxy-s10-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-g973f-ds-galaxy-s10-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..16a8bf7df82 --- /dev/null +++ b/site/public/v1/smartphones/sm-g973f-ds-galaxy-s10-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 60.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g973f-ds-galaxy-s10-global-dual-sim-td-lte-512gb/index.json b/site/public/v1/smartphones/sm-g973f-ds-galaxy-s10-global-dual-sim-td-lte-512gb/index.json new file mode 100644 index 00000000000..2d3202f66f3 --- /dev/null +++ b/site/public/v1/smartphones/sm-g973f-ds-galaxy-s10-global-dual-sim-td-lte-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3966, + "slug": "sm-g973f-ds-galaxy-s10-global-dual-sim-td-lte-512gb", + "name": "SM-G973F/DS Galaxy S10 Global Dual SIM TD-LTE 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 194, + "slug": "exynos-9820", + "name": "Samsung Exynos 9820", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G76 MP12", + "url": "/v1/socs/exynos-9820" + }, + "release_date": "2019-03-08", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.11, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 551 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 157.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 60.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.669762", + "updated_at": "2026-06-19T00:43:44.669762" +} diff --git a/site/public/v1/smartphones/sm-g973f-ds-galaxy-s10-global-dual-sim-td-lte-512gb/score/index.json b/site/public/v1/smartphones/sm-g973f-ds-galaxy-s10-global-dual-sim-td-lte-512gb/score/index.json new file mode 100644 index 00000000000..16a8bf7df82 --- /dev/null +++ b/site/public/v1/smartphones/sm-g973f-ds-galaxy-s10-global-dual-sim-td-lte-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 60.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g973f-galaxy-s10-global-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-g973f-galaxy-s10-global-td-lte-128gb/index.json new file mode 100644 index 00000000000..85b425df907 --- /dev/null +++ b/site/public/v1/smartphones/sm-g973f-galaxy-s10-global-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3967, + "slug": "sm-g973f-galaxy-s10-global-td-lte-128gb", + "name": "SM-G973F Galaxy S10 Global TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 194, + "slug": "exynos-9820", + "name": "Samsung Exynos 9820", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G76 MP12", + "url": "/v1/socs/exynos-9820" + }, + "release_date": "2019-03-08", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.11, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 551 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 157.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 60.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.669762", + "updated_at": "2026-06-19T00:43:44.669762" +} diff --git a/site/public/v1/smartphones/sm-g973f-galaxy-s10-global-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-g973f-galaxy-s10-global-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..16a8bf7df82 --- /dev/null +++ b/site/public/v1/smartphones/sm-g973f-galaxy-s10-global-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 60.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g973j-galaxy-s10-wimax-2-jp-scv41/index.json b/site/public/v1/smartphones/sm-g973j-galaxy-s10-wimax-2-jp-scv41/index.json new file mode 100644 index 00000000000..1a56deee8c4 --- /dev/null +++ b/site/public/v1/smartphones/sm-g973j-galaxy-s10-wimax-2-jp-scv41/index.json @@ -0,0 +1,76 @@ +{ + "id": 3968, + "slug": "sm-g973j-galaxy-s10-wimax-2-jp-scv41", + "name": "SM-G973J Galaxy S10 WiMAX 2+ JP SCV41", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-23", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.11, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 551 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 158.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 60.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.669762", + "updated_at": "2026-06-19T00:43:44.669762" +} diff --git a/site/public/v1/smartphones/sm-g973j-galaxy-s10-wimax-2-jp-scv41/score/index.json b/site/public/v1/smartphones/sm-g973j-galaxy-s10-wimax-2-jp-scv41/score/index.json new file mode 100644 index 00000000000..16a8bf7df82 --- /dev/null +++ b/site/public/v1/smartphones/sm-g973j-galaxy-s10-wimax-2-jp-scv41/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 60.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g973n-galaxy-s10-td-lte-kr-128gb/index.json b/site/public/v1/smartphones/sm-g973n-galaxy-s10-td-lte-kr-128gb/index.json new file mode 100644 index 00000000000..f6fd8e352b9 --- /dev/null +++ b/site/public/v1/smartphones/sm-g973n-galaxy-s10-td-lte-kr-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3969, + "slug": "sm-g973n-galaxy-s10-td-lte-kr-128gb", + "name": "SM-G973N Galaxy S10 TD-LTE KR 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 194, + "slug": "exynos-9820", + "name": "Samsung Exynos 9820", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G76 MP12", + "url": "/v1/socs/exynos-9820" + }, + "release_date": "2019-03-06", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.11, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 551 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 157.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 60.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.669762", + "updated_at": "2026-06-19T00:43:44.669762" +} diff --git a/site/public/v1/smartphones/sm-g973n-galaxy-s10-td-lte-kr-128gb/score/index.json b/site/public/v1/smartphones/sm-g973n-galaxy-s10-td-lte-kr-128gb/score/index.json new file mode 100644 index 00000000000..16a8bf7df82 --- /dev/null +++ b/site/public/v1/smartphones/sm-g973n-galaxy-s10-td-lte-kr-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 60.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g973n-galaxy-s10-td-lte-kr-512gb/index.json b/site/public/v1/smartphones/sm-g973n-galaxy-s10-td-lte-kr-512gb/index.json new file mode 100644 index 00000000000..6d7b55ae390 --- /dev/null +++ b/site/public/v1/smartphones/sm-g973n-galaxy-s10-td-lte-kr-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3970, + "slug": "sm-g973n-galaxy-s10-td-lte-kr-512gb", + "name": "SM-G973N Galaxy S10 TD-LTE KR 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 194, + "slug": "exynos-9820", + "name": "Samsung Exynos 9820", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G76 MP12", + "url": "/v1/socs/exynos-9820" + }, + "release_date": "2019-03-06", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.11, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 551 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 157.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 60.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.669762", + "updated_at": "2026-06-19T00:43:44.669762" +} diff --git a/site/public/v1/smartphones/sm-g973n-galaxy-s10-td-lte-kr-512gb/score/index.json b/site/public/v1/smartphones/sm-g973n-galaxy-s10-td-lte-kr-512gb/score/index.json new file mode 100644 index 00000000000..16a8bf7df82 --- /dev/null +++ b/site/public/v1/smartphones/sm-g973n-galaxy-s10-td-lte-kr-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 60.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g973u-galaxy-s10-td-lte-us-128gb/index.json b/site/public/v1/smartphones/sm-g973u-galaxy-s10-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..77bfa1bbc4c --- /dev/null +++ b/site/public/v1/smartphones/sm-g973u-galaxy-s10-td-lte-us-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3971, + "slug": "sm-g973u-galaxy-s10-td-lte-us-128gb", + "name": "SM-G973U Galaxy S10 TD-LTE US 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-09", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.11, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 551 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 157.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 60.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.670762", + "updated_at": "2026-06-19T00:43:44.670762" +} diff --git a/site/public/v1/smartphones/sm-g973u-galaxy-s10-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/sm-g973u-galaxy-s10-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..16a8bf7df82 --- /dev/null +++ b/site/public/v1/smartphones/sm-g973u-galaxy-s10-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 60.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g973u-galaxy-s10-td-lte-us-512gb/index.json b/site/public/v1/smartphones/sm-g973u-galaxy-s10-td-lte-us-512gb/index.json new file mode 100644 index 00000000000..ca90689e74a --- /dev/null +++ b/site/public/v1/smartphones/sm-g973u-galaxy-s10-td-lte-us-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3972, + "slug": "sm-g973u-galaxy-s10-td-lte-us-512gb", + "name": "SM-G973U Galaxy S10 TD-LTE US 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-09", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.11, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 551 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 157.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 60.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.670762", + "updated_at": "2026-06-19T00:43:44.670762" +} diff --git a/site/public/v1/smartphones/sm-g973u-galaxy-s10-td-lte-us-512gb/score/index.json b/site/public/v1/smartphones/sm-g973u-galaxy-s10-td-lte-us-512gb/score/index.json new file mode 100644 index 00000000000..16a8bf7df82 --- /dev/null +++ b/site/public/v1/smartphones/sm-g973u-galaxy-s10-td-lte-us-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 60.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g973u1-galaxy-s10-td-lte-us-128gb/index.json b/site/public/v1/smartphones/sm-g973u1-galaxy-s10-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..b45e2cf2b79 --- /dev/null +++ b/site/public/v1/smartphones/sm-g973u1-galaxy-s10-td-lte-us-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3973, + "slug": "sm-g973u1-galaxy-s10-td-lte-us-128gb", + "name": "SM-G973U1 Galaxy S10 TD-LTE US 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-09", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.11, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 551 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 157.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 60.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.670762", + "updated_at": "2026-06-19T00:43:44.670762" +} diff --git a/site/public/v1/smartphones/sm-g973u1-galaxy-s10-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/sm-g973u1-galaxy-s10-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..16a8bf7df82 --- /dev/null +++ b/site/public/v1/smartphones/sm-g973u1-galaxy-s10-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 60.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g973u1-galaxy-s10-td-lte-us-512gb/index.json b/site/public/v1/smartphones/sm-g973u1-galaxy-s10-td-lte-us-512gb/index.json new file mode 100644 index 00000000000..69191f617b9 --- /dev/null +++ b/site/public/v1/smartphones/sm-g973u1-galaxy-s10-td-lte-us-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3974, + "slug": "sm-g973u1-galaxy-s10-td-lte-us-512gb", + "name": "SM-G973U1 Galaxy S10 TD-LTE US 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-09", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.11, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 551 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 157.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 60.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.670762", + "updated_at": "2026-06-19T00:43:44.670762" +} diff --git a/site/public/v1/smartphones/sm-g973u1-galaxy-s10-td-lte-us-512gb/score/index.json b/site/public/v1/smartphones/sm-g973u1-galaxy-s10-td-lte-us-512gb/score/index.json new file mode 100644 index 00000000000..16a8bf7df82 --- /dev/null +++ b/site/public/v1/smartphones/sm-g973u1-galaxy-s10-td-lte-us-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 60.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g973w-galaxy-s10-td-lte-ca-128gb/index.json b/site/public/v1/smartphones/sm-g973w-galaxy-s10-td-lte-ca-128gb/index.json new file mode 100644 index 00000000000..c4feabb37bb --- /dev/null +++ b/site/public/v1/smartphones/sm-g973w-galaxy-s10-td-lte-ca-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3975, + "slug": "sm-g973w-galaxy-s10-td-lte-ca-128gb", + "name": "SM-G973W Galaxy S10 TD-LTE CA 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-19", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.11, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 551 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 157.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 60.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.670762", + "updated_at": "2026-06-19T00:43:44.670762" +} diff --git a/site/public/v1/smartphones/sm-g973w-galaxy-s10-td-lte-ca-128gb/score/index.json b/site/public/v1/smartphones/sm-g973w-galaxy-s10-td-lte-ca-128gb/score/index.json new file mode 100644 index 00000000000..16a8bf7df82 --- /dev/null +++ b/site/public/v1/smartphones/sm-g973w-galaxy-s10-td-lte-ca-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 60.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g973w-galaxy-s10-td-lte-ca-512gb/index.json b/site/public/v1/smartphones/sm-g973w-galaxy-s10-td-lte-ca-512gb/index.json new file mode 100644 index 00000000000..5d4e939edcb --- /dev/null +++ b/site/public/v1/smartphones/sm-g973w-galaxy-s10-td-lte-ca-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3976, + "slug": "sm-g973w-galaxy-s10-td-lte-ca-512gb", + "name": "SM-G973W Galaxy S10 TD-LTE CA 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-19", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.11, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 551 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3400, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 157.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 60.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.670762", + "updated_at": "2026-06-19T00:43:44.670762" +} diff --git a/site/public/v1/smartphones/sm-g973w-galaxy-s10-td-lte-ca-512gb/score/index.json b/site/public/v1/smartphones/sm-g973w-galaxy-s10-td-lte-ca-512gb/score/index.json new file mode 100644 index 00000000000..16a8bf7df82 --- /dev/null +++ b/site/public/v1/smartphones/sm-g973w-galaxy-s10-td-lte-ca-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 60.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g9750-ds-galaxy-s10-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/sm-g9750-ds-galaxy-s10-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..8cdf70cd419 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9750-ds-galaxy-s10-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3977, + "slug": "sm-g9750-ds-galaxy-s10-dual-sim-td-lte-cn-128gb", + "name": "SM-G9750/DS Galaxy S10+ Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.670762", + "updated_at": "2026-06-19T00:43:44.670762" +} diff --git a/site/public/v1/smartphones/sm-g9750-ds-galaxy-s10-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/sm-g9750-ds-galaxy-s10-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..439dd05ab55 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9750-ds-galaxy-s10-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g9750-ds-galaxy-s10-dual-sim-td-lte-cn-512gb/index.json b/site/public/v1/smartphones/sm-g9750-ds-galaxy-s10-dual-sim-td-lte-cn-512gb/index.json new file mode 100644 index 00000000000..137295d94d6 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9750-ds-galaxy-s10-dual-sim-td-lte-cn-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3978, + "slug": "sm-g9750-ds-galaxy-s10-dual-sim-td-lte-cn-512gb", + "name": "SM-G9750/DS Galaxy S10+ Dual SIM TD-LTE CN 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.670762", + "updated_at": "2026-06-19T00:43:44.670762" +} diff --git a/site/public/v1/smartphones/sm-g9750-ds-galaxy-s10-dual-sim-td-lte-cn-512gb/score/index.json b/site/public/v1/smartphones/sm-g9750-ds-galaxy-s10-dual-sim-td-lte-cn-512gb/score/index.json new file mode 100644 index 00000000000..439dd05ab55 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9750-ds-galaxy-s10-dual-sim-td-lte-cn-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g9750-ds-galaxy-s10-performance-edition-ceramic-dual-sim-td-lte-cn-1tb/index.json b/site/public/v1/smartphones/sm-g9750-ds-galaxy-s10-performance-edition-ceramic-dual-sim-td-lte-cn-1tb/index.json new file mode 100644 index 00000000000..5dcc8ba0e6d --- /dev/null +++ b/site/public/v1/smartphones/sm-g9750-ds-galaxy-s10-performance-edition-ceramic-dual-sim-td-lte-cn-1tb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3979, + "slug": "sm-g9750-ds-galaxy-s10-performance-edition-ceramic-dual-sim-td-lte-cn-1tb", + "name": "SM-G9750/DS Galaxy S10+ Performance Edition Ceramic Dual SIM TD-LTE CN 1TB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 1024 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 6.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.670762", + "updated_at": "2026-06-19T00:43:44.670762" +} diff --git a/site/public/v1/smartphones/sm-g9750-ds-galaxy-s10-performance-edition-ceramic-dual-sim-td-lte-cn-1tb/score/index.json b/site/public/v1/smartphones/sm-g9750-ds-galaxy-s10-performance-edition-ceramic-dual-sim-td-lte-cn-1tb/score/index.json new file mode 100644 index 00000000000..83570103b87 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9750-ds-galaxy-s10-performance-edition-ceramic-dual-sim-td-lte-cn-1tb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 6.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g9758-ds-galaxy-s10-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/sm-g9758-ds-galaxy-s10-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..aaa6bea13ca --- /dev/null +++ b/site/public/v1/smartphones/sm-g9758-ds-galaxy-s10-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3980, + "slug": "sm-g9758-ds-galaxy-s10-dual-sim-td-lte-cn-128gb", + "name": "SM-G9758/DS Galaxy S10+ Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-12", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.671762", + "updated_at": "2026-06-19T00:43:44.671762" +} diff --git a/site/public/v1/smartphones/sm-g9758-ds-galaxy-s10-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/sm-g9758-ds-galaxy-s10-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..439dd05ab55 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9758-ds-galaxy-s10-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g975d-galaxy-s10-olympic-games-edition-td-lte-jp-128gb-sc-05l/index.json b/site/public/v1/smartphones/sm-g975d-galaxy-s10-olympic-games-edition-td-lte-jp-128gb-sc-05l/index.json new file mode 100644 index 00000000000..9c90857978e --- /dev/null +++ b/site/public/v1/smartphones/sm-g975d-galaxy-s10-olympic-games-edition-td-lte-jp-128gb-sc-05l/index.json @@ -0,0 +1,76 @@ +{ + "id": 3981, + "slug": "sm-g975d-galaxy-s10-olympic-games-edition-td-lte-jp-128gb-sc-05l", + "name": "SM-G975D Galaxy S10+ Olympic Games Edition TD-LTE JP 128GB SC-05L", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-07-24", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.671762", + "updated_at": "2026-06-19T00:43:44.671762" +} diff --git a/site/public/v1/smartphones/sm-g975d-galaxy-s10-olympic-games-edition-td-lte-jp-128gb-sc-05l/score/index.json b/site/public/v1/smartphones/sm-g975d-galaxy-s10-olympic-games-edition-td-lte-jp-128gb-sc-05l/score/index.json new file mode 100644 index 00000000000..439dd05ab55 --- /dev/null +++ b/site/public/v1/smartphones/sm-g975d-galaxy-s10-olympic-games-edition-td-lte-jp-128gb-sc-05l/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g975d-galaxy-s10-td-lte-jp-128gb-sc-04l-sgh-n936/index.json b/site/public/v1/smartphones/sm-g975d-galaxy-s10-td-lte-jp-128gb-sc-04l-sgh-n936/index.json new file mode 100644 index 00000000000..27633d9f161 --- /dev/null +++ b/site/public/v1/smartphones/sm-g975d-galaxy-s10-td-lte-jp-128gb-sc-04l-sgh-n936/index.json @@ -0,0 +1,76 @@ +{ + "id": 3982, + "slug": "sm-g975d-galaxy-s10-td-lte-jp-128gb-sc-04l-sgh-n936", + "name": "SM-G975D Galaxy S10+ TD-LTE JP 128GB SC-04L / SGH-N936", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-02", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.671762", + "updated_at": "2026-06-19T00:43:44.671762" +} diff --git a/site/public/v1/smartphones/sm-g975d-galaxy-s10-td-lte-jp-128gb-sc-04l-sgh-n936/score/index.json b/site/public/v1/smartphones/sm-g975d-galaxy-s10-td-lte-jp-128gb-sc-04l-sgh-n936/score/index.json new file mode 100644 index 00000000000..439dd05ab55 --- /dev/null +++ b/site/public/v1/smartphones/sm-g975d-galaxy-s10-td-lte-jp-128gb-sc-04l-sgh-n936/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g975f-ds-galaxy-s10-ceramic-edition-global-dual-sim-td-lte-512gb/index.json b/site/public/v1/smartphones/sm-g975f-ds-galaxy-s10-ceramic-edition-global-dual-sim-td-lte-512gb/index.json new file mode 100644 index 00000000000..97c30520766 --- /dev/null +++ b/site/public/v1/smartphones/sm-g975f-ds-galaxy-s10-ceramic-edition-global-dual-sim-td-lte-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3983, + "slug": "sm-g975f-ds-galaxy-s10-ceramic-edition-global-dual-sim-td-lte-512gb", + "name": "SM-G975F/DS Galaxy S10+ Ceramic Edition Global Dual SIM TD-LTE 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 194, + "slug": "exynos-9820", + "name": "Samsung Exynos 9820", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G76 MP12", + "url": "/v1/socs/exynos-9820" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.671762", + "updated_at": "2026-06-19T00:43:44.671762" +} diff --git a/site/public/v1/smartphones/sm-g975f-ds-galaxy-s10-ceramic-edition-global-dual-sim-td-lte-512gb/score/index.json b/site/public/v1/smartphones/sm-g975f-ds-galaxy-s10-ceramic-edition-global-dual-sim-td-lte-512gb/score/index.json new file mode 100644 index 00000000000..439dd05ab55 --- /dev/null +++ b/site/public/v1/smartphones/sm-g975f-ds-galaxy-s10-ceramic-edition-global-dual-sim-td-lte-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g975f-ds-galaxy-s10-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-g975f-ds-galaxy-s10-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..e6344ab5376 --- /dev/null +++ b/site/public/v1/smartphones/sm-g975f-ds-galaxy-s10-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3984, + "slug": "sm-g975f-ds-galaxy-s10-global-dual-sim-td-lte-128gb", + "name": "SM-G975F/DS Galaxy S10+ Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 194, + "slug": "exynos-9820", + "name": "Samsung Exynos 9820", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G76 MP12", + "url": "/v1/socs/exynos-9820" + }, + "release_date": "2019-03-08", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.671762", + "updated_at": "2026-06-19T00:43:44.671762" +} diff --git a/site/public/v1/smartphones/sm-g975f-ds-galaxy-s10-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-g975f-ds-galaxy-s10-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..439dd05ab55 --- /dev/null +++ b/site/public/v1/smartphones/sm-g975f-ds-galaxy-s10-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g975f-ds-galaxy-s10-global-dual-sim-td-lte-512gb/index.json b/site/public/v1/smartphones/sm-g975f-ds-galaxy-s10-global-dual-sim-td-lte-512gb/index.json new file mode 100644 index 00000000000..386f70abc43 --- /dev/null +++ b/site/public/v1/smartphones/sm-g975f-ds-galaxy-s10-global-dual-sim-td-lte-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3985, + "slug": "sm-g975f-ds-galaxy-s10-global-dual-sim-td-lte-512gb", + "name": "SM-G975F/DS Galaxy S10+ Global Dual SIM TD-LTE 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 194, + "slug": "exynos-9820", + "name": "Samsung Exynos 9820", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G76 MP12", + "url": "/v1/socs/exynos-9820" + }, + "release_date": "2019-03-08", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.671762", + "updated_at": "2026-06-19T00:43:44.671762" +} diff --git a/site/public/v1/smartphones/sm-g975f-ds-galaxy-s10-global-dual-sim-td-lte-512gb/score/index.json b/site/public/v1/smartphones/sm-g975f-ds-galaxy-s10-global-dual-sim-td-lte-512gb/score/index.json new file mode 100644 index 00000000000..439dd05ab55 --- /dev/null +++ b/site/public/v1/smartphones/sm-g975f-ds-galaxy-s10-global-dual-sim-td-lte-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g975f-ds-galaxy-s10-performance-edition-ceramic-global-dual-sim-td-lte-1tb/index.json b/site/public/v1/smartphones/sm-g975f-ds-galaxy-s10-performance-edition-ceramic-global-dual-sim-td-lte-1tb/index.json new file mode 100644 index 00000000000..84a23683614 --- /dev/null +++ b/site/public/v1/smartphones/sm-g975f-ds-galaxy-s10-performance-edition-ceramic-global-dual-sim-td-lte-1tb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3986, + "slug": "sm-g975f-ds-galaxy-s10-performance-edition-ceramic-global-dual-sim-td-lte-1tb", + "name": "SM-G975F/DS Galaxy S10+ Performance Edition Ceramic Global Dual SIM TD-LTE 1TB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 194, + "slug": "exynos-9820", + "name": "Samsung Exynos 9820", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G76 MP12", + "url": "/v1/socs/exynos-9820" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 1024 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 6.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.671762", + "updated_at": "2026-06-19T00:43:44.671762" +} diff --git a/site/public/v1/smartphones/sm-g975f-ds-galaxy-s10-performance-edition-ceramic-global-dual-sim-td-lte-1tb/score/index.json b/site/public/v1/smartphones/sm-g975f-ds-galaxy-s10-performance-edition-ceramic-global-dual-sim-td-lte-1tb/score/index.json new file mode 100644 index 00000000000..83570103b87 --- /dev/null +++ b/site/public/v1/smartphones/sm-g975f-ds-galaxy-s10-performance-edition-ceramic-global-dual-sim-td-lte-1tb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 6.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g975f-galaxy-s10-global-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-g975f-galaxy-s10-global-td-lte-128gb/index.json new file mode 100644 index 00000000000..9ad8e9f62a4 --- /dev/null +++ b/site/public/v1/smartphones/sm-g975f-galaxy-s10-global-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3987, + "slug": "sm-g975f-galaxy-s10-global-td-lte-128gb", + "name": "SM-G975F Galaxy S10+ Global TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 194, + "slug": "exynos-9820", + "name": "Samsung Exynos 9820", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G76 MP12", + "url": "/v1/socs/exynos-9820" + }, + "release_date": "2019-03-09", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.672762", + "updated_at": "2026-06-19T00:43:44.672762" +} diff --git a/site/public/v1/smartphones/sm-g975f-galaxy-s10-global-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-g975f-galaxy-s10-global-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..439dd05ab55 --- /dev/null +++ b/site/public/v1/smartphones/sm-g975f-galaxy-s10-global-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g975j-galaxy-s10-wimax-2-jp-scv42/index.json b/site/public/v1/smartphones/sm-g975j-galaxy-s10-wimax-2-jp-scv42/index.json new file mode 100644 index 00000000000..183989d9f06 --- /dev/null +++ b/site/public/v1/smartphones/sm-g975j-galaxy-s10-wimax-2-jp-scv42/index.json @@ -0,0 +1,76 @@ +{ + "id": 3988, + "slug": "sm-g975j-galaxy-s10-wimax-2-jp-scv42", + "name": "SM-G975J Galaxy S10+ WiMAX 2+ JP SCV42", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-23", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.672762", + "updated_at": "2026-06-19T00:43:44.672762" +} diff --git a/site/public/v1/smartphones/sm-g975j-galaxy-s10-wimax-2-jp-scv42/score/index.json b/site/public/v1/smartphones/sm-g975j-galaxy-s10-wimax-2-jp-scv42/score/index.json new file mode 100644 index 00000000000..439dd05ab55 --- /dev/null +++ b/site/public/v1/smartphones/sm-g975j-galaxy-s10-wimax-2-jp-scv42/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g975n-galaxy-s10-td-lte-kr-128gb/index.json b/site/public/v1/smartphones/sm-g975n-galaxy-s10-td-lte-kr-128gb/index.json new file mode 100644 index 00000000000..e46df7ecadf --- /dev/null +++ b/site/public/v1/smartphones/sm-g975n-galaxy-s10-td-lte-kr-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3989, + "slug": "sm-g975n-galaxy-s10-td-lte-kr-128gb", + "name": "SM-G975N Galaxy S10+ TD-LTE KR 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 194, + "slug": "exynos-9820", + "name": "Samsung Exynos 9820", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G76 MP12", + "url": "/v1/socs/exynos-9820" + }, + "release_date": "2019-03-19", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.672762", + "updated_at": "2026-06-19T00:43:44.672762" +} diff --git a/site/public/v1/smartphones/sm-g975n-galaxy-s10-td-lte-kr-128gb/score/index.json b/site/public/v1/smartphones/sm-g975n-galaxy-s10-td-lte-kr-128gb/score/index.json new file mode 100644 index 00000000000..439dd05ab55 --- /dev/null +++ b/site/public/v1/smartphones/sm-g975n-galaxy-s10-td-lte-kr-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g975n-galaxy-s10-td-lte-kr-1tb/index.json b/site/public/v1/smartphones/sm-g975n-galaxy-s10-td-lte-kr-1tb/index.json new file mode 100644 index 00000000000..155adfa78bb --- /dev/null +++ b/site/public/v1/smartphones/sm-g975n-galaxy-s10-td-lte-kr-1tb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3990, + "slug": "sm-g975n-galaxy-s10-td-lte-kr-1tb", + "name": "SM-G975N Galaxy S10+ TD-LTE KR 1TB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 194, + "slug": "exynos-9820", + "name": "Samsung Exynos 9820", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G76 MP12", + "url": "/v1/socs/exynos-9820" + }, + "release_date": "2019-03-19", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 1024 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.672762", + "updated_at": "2026-06-19T00:43:44.672762" +} diff --git a/site/public/v1/smartphones/sm-g975n-galaxy-s10-td-lte-kr-1tb/score/index.json b/site/public/v1/smartphones/sm-g975n-galaxy-s10-td-lte-kr-1tb/score/index.json new file mode 100644 index 00000000000..439dd05ab55 --- /dev/null +++ b/site/public/v1/smartphones/sm-g975n-galaxy-s10-td-lte-kr-1tb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g975n-galaxy-s10-td-lte-kr-512gb/index.json b/site/public/v1/smartphones/sm-g975n-galaxy-s10-td-lte-kr-512gb/index.json new file mode 100644 index 00000000000..4f2a26326e9 --- /dev/null +++ b/site/public/v1/smartphones/sm-g975n-galaxy-s10-td-lte-kr-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3991, + "slug": "sm-g975n-galaxy-s10-td-lte-kr-512gb", + "name": "SM-G975N Galaxy S10+ TD-LTE KR 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 194, + "slug": "exynos-9820", + "name": "Samsung Exynos 9820", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G76 MP12", + "url": "/v1/socs/exynos-9820" + }, + "release_date": "2019-03-19", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.673267", + "updated_at": "2026-06-19T00:43:44.673267" +} diff --git a/site/public/v1/smartphones/sm-g975n-galaxy-s10-td-lte-kr-512gb/score/index.json b/site/public/v1/smartphones/sm-g975n-galaxy-s10-td-lte-kr-512gb/score/index.json new file mode 100644 index 00000000000..439dd05ab55 --- /dev/null +++ b/site/public/v1/smartphones/sm-g975n-galaxy-s10-td-lte-kr-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g975u-galaxy-s10-performance-edition-ceramic-td-lte-us-1tb/index.json b/site/public/v1/smartphones/sm-g975u-galaxy-s10-performance-edition-ceramic-td-lte-us-1tb/index.json new file mode 100644 index 00000000000..2d009a5a58a --- /dev/null +++ b/site/public/v1/smartphones/sm-g975u-galaxy-s10-performance-edition-ceramic-td-lte-us-1tb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3992, + "slug": "sm-g975u-galaxy-s10-performance-edition-ceramic-td-lte-us-1tb", + "name": "SM-G975U Galaxy S10+ Performance Edition Ceramic TD-LTE US 1TB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-09", + "msrp_usd": 1500, + "ram_gb": 12, + "storage_options_gb": [ + 1024 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 6.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": 14.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.673267", + "updated_at": "2026-06-19T00:43:44.673267" +} diff --git a/site/public/v1/smartphones/sm-g975u-galaxy-s10-performance-edition-ceramic-td-lte-us-1tb/score/index.json b/site/public/v1/smartphones/sm-g975u-galaxy-s10-performance-edition-ceramic-td-lte-us-1tb/score/index.json new file mode 100644 index 00000000000..6d692bcc08f --- /dev/null +++ b/site/public/v1/smartphones/sm-g975u-galaxy-s10-performance-edition-ceramic-td-lte-us-1tb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 6.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": 14.7 +} diff --git a/site/public/v1/smartphones/sm-g975u-galaxy-s10-td-lte-us-128gb/index.json b/site/public/v1/smartphones/sm-g975u-galaxy-s10-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..c0f88286107 --- /dev/null +++ b/site/public/v1/smartphones/sm-g975u-galaxy-s10-td-lte-us-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3993, + "slug": "sm-g975u-galaxy-s10-td-lte-us-128gb", + "name": "SM-G975U Galaxy S10+ TD-LTE US 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-09", + "msrp_usd": 850, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": 39.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.673267", + "updated_at": "2026-06-19T00:43:44.673267" +} diff --git a/site/public/v1/smartphones/sm-g975u-galaxy-s10-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/sm-g975u-galaxy-s10-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..c6461e082c7 --- /dev/null +++ b/site/public/v1/smartphones/sm-g975u-galaxy-s10-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": 39.2 +} diff --git a/site/public/v1/smartphones/sm-g975u-galaxy-s10-td-lte-us-512gb/index.json b/site/public/v1/smartphones/sm-g975u-galaxy-s10-td-lte-us-512gb/index.json new file mode 100644 index 00000000000..f4b63304d69 --- /dev/null +++ b/site/public/v1/smartphones/sm-g975u-galaxy-s10-td-lte-us-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3994, + "slug": "sm-g975u-galaxy-s10-td-lte-us-512gb", + "name": "SM-G975U Galaxy S10+ TD-LTE US 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-09", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.673267", + "updated_at": "2026-06-19T00:43:44.673267" +} diff --git a/site/public/v1/smartphones/sm-g975u-galaxy-s10-td-lte-us-512gb/score/index.json b/site/public/v1/smartphones/sm-g975u-galaxy-s10-td-lte-us-512gb/score/index.json new file mode 100644 index 00000000000..439dd05ab55 --- /dev/null +++ b/site/public/v1/smartphones/sm-g975u-galaxy-s10-td-lte-us-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g975u1-galaxy-s10-performance-edition-ceramic-td-lte-us-1tb/index.json b/site/public/v1/smartphones/sm-g975u1-galaxy-s10-performance-edition-ceramic-td-lte-us-1tb/index.json new file mode 100644 index 00000000000..97942e79a57 --- /dev/null +++ b/site/public/v1/smartphones/sm-g975u1-galaxy-s10-performance-edition-ceramic-td-lte-us-1tb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3995, + "slug": "sm-g975u1-galaxy-s10-performance-edition-ceramic-td-lte-us-1tb", + "name": "SM-G975U1 Galaxy S10+ Performance Edition Ceramic TD-LTE US 1TB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-09", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 1024 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 6.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.673267", + "updated_at": "2026-06-19T00:43:44.673267" +} diff --git a/site/public/v1/smartphones/sm-g975u1-galaxy-s10-performance-edition-ceramic-td-lte-us-1tb/score/index.json b/site/public/v1/smartphones/sm-g975u1-galaxy-s10-performance-edition-ceramic-td-lte-us-1tb/score/index.json new file mode 100644 index 00000000000..83570103b87 --- /dev/null +++ b/site/public/v1/smartphones/sm-g975u1-galaxy-s10-performance-edition-ceramic-td-lte-us-1tb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 6.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g975u1-galaxy-s10-td-lte-us-128gb/index.json b/site/public/v1/smartphones/sm-g975u1-galaxy-s10-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..bdf7676ec86 --- /dev/null +++ b/site/public/v1/smartphones/sm-g975u1-galaxy-s10-td-lte-us-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3996, + "slug": "sm-g975u1-galaxy-s10-td-lte-us-128gb", + "name": "SM-G975U1 Galaxy S10+ TD-LTE US 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-09", + "msrp_usd": 750, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": 43.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.673267", + "updated_at": "2026-06-19T00:43:44.673267" +} diff --git a/site/public/v1/smartphones/sm-g975u1-galaxy-s10-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/sm-g975u1-galaxy-s10-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..774ed779f2e --- /dev/null +++ b/site/public/v1/smartphones/sm-g975u1-galaxy-s10-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": 43.1 +} diff --git a/site/public/v1/smartphones/sm-g975u1-galaxy-s10-td-lte-us-512gb/index.json b/site/public/v1/smartphones/sm-g975u1-galaxy-s10-td-lte-us-512gb/index.json new file mode 100644 index 00000000000..f97445b2cd9 --- /dev/null +++ b/site/public/v1/smartphones/sm-g975u1-galaxy-s10-td-lte-us-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3997, + "slug": "sm-g975u1-galaxy-s10-td-lte-us-512gb", + "name": "SM-G975U1 Galaxy S10+ TD-LTE US 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-09", + "msrp_usd": 1000, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": 33.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.673267", + "updated_at": "2026-06-19T00:43:44.673267" +} diff --git a/site/public/v1/smartphones/sm-g975u1-galaxy-s10-td-lte-us-512gb/score/index.json b/site/public/v1/smartphones/sm-g975u1-galaxy-s10-td-lte-us-512gb/score/index.json new file mode 100644 index 00000000000..224b812ac0e --- /dev/null +++ b/site/public/v1/smartphones/sm-g975u1-galaxy-s10-td-lte-us-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": 33.5 +} diff --git a/site/public/v1/smartphones/sm-g975w-galaxy-s10-performance-edition-ceramic-td-lte-ca-1tb/index.json b/site/public/v1/smartphones/sm-g975w-galaxy-s10-performance-edition-ceramic-td-lte-ca-1tb/index.json new file mode 100644 index 00000000000..c2fd78c399d --- /dev/null +++ b/site/public/v1/smartphones/sm-g975w-galaxy-s10-performance-edition-ceramic-td-lte-ca-1tb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3998, + "slug": "sm-g975w-galaxy-s10-performance-edition-ceramic-td-lte-ca-1tb", + "name": "SM-G975W Galaxy S10+ Performance Edition Ceramic TD-LTE CA 1TB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-09", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 1024 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 6.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.673267", + "updated_at": "2026-06-19T00:43:44.673267" +} diff --git a/site/public/v1/smartphones/sm-g975w-galaxy-s10-performance-edition-ceramic-td-lte-ca-1tb/score/index.json b/site/public/v1/smartphones/sm-g975w-galaxy-s10-performance-edition-ceramic-td-lte-ca-1tb/score/index.json new file mode 100644 index 00000000000..83570103b87 --- /dev/null +++ b/site/public/v1/smartphones/sm-g975w-galaxy-s10-performance-edition-ceramic-td-lte-ca-1tb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 6.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g975w-galaxy-s10-td-lte-ca-128gb/index.json b/site/public/v1/smartphones/sm-g975w-galaxy-s10-td-lte-ca-128gb/index.json new file mode 100644 index 00000000000..672e054c089 --- /dev/null +++ b/site/public/v1/smartphones/sm-g975w-galaxy-s10-td-lte-ca-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3999, + "slug": "sm-g975w-galaxy-s10-td-lte-ca-128gb", + "name": "SM-G975W Galaxy S10+ TD-LTE CA 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-09", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.674272", + "updated_at": "2026-06-19T00:43:44.674272" +} diff --git a/site/public/v1/smartphones/sm-g975w-galaxy-s10-td-lte-ca-128gb/score/index.json b/site/public/v1/smartphones/sm-g975w-galaxy-s10-td-lte-ca-128gb/score/index.json new file mode 100644 index 00000000000..439dd05ab55 --- /dev/null +++ b/site/public/v1/smartphones/sm-g975w-galaxy-s10-td-lte-ca-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g975w-galaxy-s10-td-lte-ca-512gb/index.json b/site/public/v1/smartphones/sm-g975w-galaxy-s10-td-lte-ca-512gb/index.json new file mode 100644 index 00000000000..f1c989807ee --- /dev/null +++ b/site/public/v1/smartphones/sm-g975w-galaxy-s10-td-lte-ca-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4000, + "slug": "sm-g975w-galaxy-s10-td-lte-ca-512gb", + "name": "SM-G975W Galaxy S10+ TD-LTE CA 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-09", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.44, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.1 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.674272", + "updated_at": "2026-06-19T00:43:44.674272" +} diff --git a/site/public/v1/smartphones/sm-g975w-galaxy-s10-td-lte-ca-512gb/score/index.json b/site/public/v1/smartphones/sm-g975w-galaxy-s10-td-lte-ca-512gb/score/index.json new file mode 100644 index 00000000000..439dd05ab55 --- /dev/null +++ b/site/public/v1/smartphones/sm-g975w-galaxy-s10-td-lte-ca-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 5.1, + "battery": 17.9, + "display": 57.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g977b-galaxy-s10-5g-global-td-lte-256gb/index.json b/site/public/v1/smartphones/sm-g977b-galaxy-s10-5g-global-td-lte-256gb/index.json new file mode 100644 index 00000000000..bfa2a346071 --- /dev/null +++ b/site/public/v1/smartphones/sm-g977b-galaxy-s10-5g-global-td-lte-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4001, + "slug": "sm-g977b-galaxy-s10-5g-global-td-lte-256gb", + "name": "SM-G977B Galaxy S10 5G Global TD-LTE 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 194, + "slug": "exynos-9820", + "name": "Samsung Exynos 9820", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G76 MP12", + "url": "/v1/socs/exynos-9820" + }, + "release_date": "2019-06-14", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.66, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 505 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 3.0, + "camera": 5.1, + "battery": 24.4, + "display": 55.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.674272", + "updated_at": "2026-06-19T00:43:44.674272" +} diff --git a/site/public/v1/smartphones/sm-g977b-galaxy-s10-5g-global-td-lte-256gb/score/index.json b/site/public/v1/smartphones/sm-g977b-galaxy-s10-5g-global-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..8b1fe639a05 --- /dev/null +++ b/site/public/v1/smartphones/sm-g977b-galaxy-s10-5g-global-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 3.0, + "camera": 5.1, + "battery": 24.4, + "display": 55.5, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g977d-galaxy-s10-5g-td-lte-jp-256gb/index.json b/site/public/v1/smartphones/sm-g977d-galaxy-s10-5g-td-lte-jp-256gb/index.json new file mode 100644 index 00000000000..2c17895a5b4 --- /dev/null +++ b/site/public/v1/smartphones/sm-g977d-galaxy-s10-5g-td-lte-jp-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4203, + "slug": "sm-g977d-galaxy-s10-5g-td-lte-jp-256gb", + "name": "SM-G977D Galaxy S10 5G TD-LTE JP 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2020-01-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.66, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 505 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 3.0, + "camera": 5.1, + "battery": 24.4, + "display": 55.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.700781", + "updated_at": "2026-06-19T00:43:44.700781" +} diff --git a/site/public/v1/smartphones/sm-g977d-galaxy-s10-5g-td-lte-jp-256gb/score/index.json b/site/public/v1/smartphones/sm-g977d-galaxy-s10-5g-td-lte-jp-256gb/score/index.json new file mode 100644 index 00000000000..8b1fe639a05 --- /dev/null +++ b/site/public/v1/smartphones/sm-g977d-galaxy-s10-5g-td-lte-jp-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 3.0, + "camera": 5.1, + "battery": 24.4, + "display": 55.5, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g977n-galaxy-s10-5g-td-lte-kr-256gb/index.json b/site/public/v1/smartphones/sm-g977n-galaxy-s10-5g-td-lte-kr-256gb/index.json new file mode 100644 index 00000000000..fdf240032cb --- /dev/null +++ b/site/public/v1/smartphones/sm-g977n-galaxy-s10-5g-td-lte-kr-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4002, + "slug": "sm-g977n-galaxy-s10-5g-td-lte-kr-256gb", + "name": "SM-G977N Galaxy S10 5G TD-LTE KR 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 194, + "slug": "exynos-9820", + "name": "Samsung Exynos 9820", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G76 MP12", + "url": "/v1/socs/exynos-9820" + }, + "release_date": "2019-04-06", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 505 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 3.0, + "camera": 5.1, + "battery": 24.4, + "display": 55.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.674272", + "updated_at": "2026-06-19T00:43:44.674272" +} diff --git a/site/public/v1/smartphones/sm-g977n-galaxy-s10-5g-td-lte-kr-256gb/score/index.json b/site/public/v1/smartphones/sm-g977n-galaxy-s10-5g-td-lte-kr-256gb/score/index.json new file mode 100644 index 00000000000..8b1fe639a05 --- /dev/null +++ b/site/public/v1/smartphones/sm-g977n-galaxy-s10-5g-td-lte-kr-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 3.0, + "camera": 5.1, + "battery": 24.4, + "display": 55.5, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g977n-galaxy-s10-5g-td-lte-kr-512gb/index.json b/site/public/v1/smartphones/sm-g977n-galaxy-s10-5g-td-lte-kr-512gb/index.json new file mode 100644 index 00000000000..6751cd6aa59 --- /dev/null +++ b/site/public/v1/smartphones/sm-g977n-galaxy-s10-5g-td-lte-kr-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4003, + "slug": "sm-g977n-galaxy-s10-5g-td-lte-kr-512gb", + "name": "SM-G977N Galaxy S10 5G TD-LTE KR 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 194, + "slug": "exynos-9820", + "name": "Samsung Exynos 9820", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G76 MP12", + "url": "/v1/socs/exynos-9820" + }, + "release_date": "2019-04-06", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 505 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 3.0, + "camera": 5.1, + "battery": 24.4, + "display": 55.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.674272", + "updated_at": "2026-06-19T00:43:44.674272" +} diff --git a/site/public/v1/smartphones/sm-g977n-galaxy-s10-5g-td-lte-kr-512gb/score/index.json b/site/public/v1/smartphones/sm-g977n-galaxy-s10-5g-td-lte-kr-512gb/score/index.json new file mode 100644 index 00000000000..8b1fe639a05 --- /dev/null +++ b/site/public/v1/smartphones/sm-g977n-galaxy-s10-5g-td-lte-kr-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 3.0, + "camera": 5.1, + "battery": 24.4, + "display": 55.5, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g977p-galaxy-s10-5g-td-lte-us-256gb/index.json b/site/public/v1/smartphones/sm-g977p-galaxy-s10-5g-td-lte-us-256gb/index.json new file mode 100644 index 00000000000..e35babbdd3d --- /dev/null +++ b/site/public/v1/smartphones/sm-g977p-galaxy-s10-5g-td-lte-us-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4004, + "slug": "sm-g977p-galaxy-s10-5g-td-lte-us-256gb", + "name": "SM-G977P Galaxy S10 5G TD-LTE US 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-21", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.66, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 505 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 3.0, + "camera": 5.1, + "battery": 24.4, + "display": 55.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.674272", + "updated_at": "2026-06-19T00:43:44.674272" +} diff --git a/site/public/v1/smartphones/sm-g977p-galaxy-s10-5g-td-lte-us-256gb/score/index.json b/site/public/v1/smartphones/sm-g977p-galaxy-s10-5g-td-lte-us-256gb/score/index.json new file mode 100644 index 00000000000..8b1fe639a05 --- /dev/null +++ b/site/public/v1/smartphones/sm-g977p-galaxy-s10-5g-td-lte-us-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 3.0, + "camera": 5.1, + "battery": 24.4, + "display": 55.5, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g977u-galaxy-s10-5g-td-lte-us-256gb-sm-g977t/index.json b/site/public/v1/smartphones/sm-g977u-galaxy-s10-5g-td-lte-us-256gb-sm-g977t/index.json new file mode 100644 index 00000000000..b4bc3753c63 --- /dev/null +++ b/site/public/v1/smartphones/sm-g977u-galaxy-s10-5g-td-lte-us-256gb-sm-g977t/index.json @@ -0,0 +1,76 @@ +{ + "id": 4005, + "slug": "sm-g977u-galaxy-s10-5g-td-lte-us-256gb-sm-g977t", + "name": "SM-G977U Galaxy S10 5G TD-LTE US 256GB / SM-G977T", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-28", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.66, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 505 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 3.0, + "camera": 5.1, + "battery": 24.4, + "display": 55.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.675272", + "updated_at": "2026-06-19T00:43:44.675272" +} diff --git a/site/public/v1/smartphones/sm-g977u-galaxy-s10-5g-td-lte-us-256gb-sm-g977t/score/index.json b/site/public/v1/smartphones/sm-g977u-galaxy-s10-5g-td-lte-us-256gb-sm-g977t/score/index.json new file mode 100644 index 00000000000..8b1fe639a05 --- /dev/null +++ b/site/public/v1/smartphones/sm-g977u-galaxy-s10-5g-td-lte-us-256gb-sm-g977t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 3.0, + "camera": 5.1, + "battery": 24.4, + "display": 55.5, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g977u-galaxy-s10-5g-td-lte-us-256gb-sm-g977v/index.json b/site/public/v1/smartphones/sm-g977u-galaxy-s10-5g-td-lte-us-256gb-sm-g977v/index.json new file mode 100644 index 00000000000..effd1a71309 --- /dev/null +++ b/site/public/v1/smartphones/sm-g977u-galaxy-s10-5g-td-lte-us-256gb-sm-g977v/index.json @@ -0,0 +1,76 @@ +{ + "id": 4006, + "slug": "sm-g977u-galaxy-s10-5g-td-lte-us-256gb-sm-g977v", + "name": "SM-G977U Galaxy S10 5G TD-LTE US 256GB / SM-G977V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.66, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 505 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 3.0, + "camera": 5.1, + "battery": 24.4, + "display": 55.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.675272", + "updated_at": "2026-06-19T00:43:44.675272" +} diff --git a/site/public/v1/smartphones/sm-g977u-galaxy-s10-5g-td-lte-us-256gb-sm-g977v/score/index.json b/site/public/v1/smartphones/sm-g977u-galaxy-s10-5g-td-lte-us-256gb-sm-g977v/score/index.json new file mode 100644 index 00000000000..8b1fe639a05 --- /dev/null +++ b/site/public/v1/smartphones/sm-g977u-galaxy-s10-5g-td-lte-us-256gb-sm-g977v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 3.0, + "camera": 5.1, + "battery": 24.4, + "display": 55.5, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g977u-galaxy-s10-5g-td-lte-us-512gb-sm-g977v/index.json b/site/public/v1/smartphones/sm-g977u-galaxy-s10-5g-td-lte-us-512gb-sm-g977v/index.json new file mode 100644 index 00000000000..846af5de361 --- /dev/null +++ b/site/public/v1/smartphones/sm-g977u-galaxy-s10-5g-td-lte-us-512gb-sm-g977v/index.json @@ -0,0 +1,76 @@ +{ + "id": 4007, + "slug": "sm-g977u-galaxy-s10-5g-td-lte-us-512gb-sm-g977v", + "name": "SM-G977U Galaxy S10 5G TD-LTE US 512GB / SM-G977V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.66, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 505 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 3.0, + "camera": 5.1, + "battery": 24.4, + "display": 55.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.675272", + "updated_at": "2026-06-19T00:43:44.675272" +} diff --git a/site/public/v1/smartphones/sm-g977u-galaxy-s10-5g-td-lte-us-512gb-sm-g977v/score/index.json b/site/public/v1/smartphones/sm-g977u-galaxy-s10-5g-td-lte-us-512gb-sm-g977v/score/index.json new file mode 100644 index 00000000000..8b1fe639a05 --- /dev/null +++ b/site/public/v1/smartphones/sm-g977u-galaxy-s10-5g-td-lte-us-512gb-sm-g977v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 3.0, + "camera": 5.1, + "battery": 24.4, + "display": 55.5, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g980f-ds-galaxy-s20-global-dual-sim-td-lte-128gb-galaxy-s11/index.json b/site/public/v1/smartphones/sm-g980f-ds-galaxy-s20-global-dual-sim-td-lte-128gb-galaxy-s11/index.json new file mode 100644 index 00000000000..208f18a3d66 --- /dev/null +++ b/site/public/v1/smartphones/sm-g980f-ds-galaxy-s20-global-dual-sim-td-lte-128gb-galaxy-s11/index.json @@ -0,0 +1,77 @@ +{ + "id": 4204, + "slug": "sm-g980f-ds-galaxy-s20-global-dual-sim-td-lte-128gb-galaxy-s11", + "name": "SM-G980F/DS Galaxy S20 Global Dual SIM TD-LTE 128GB / Galaxy S11", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 199, + "slug": "exynos-990", + "name": "Samsung Exynos 990", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP11", + "url": "/v1/socs/exynos-990" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.23, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 563 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": 3.0, + "camera": 5.1, + "battery": 16.9, + "display": 68.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.700781", + "updated_at": "2026-06-19T00:43:44.700781" +} diff --git a/site/public/v1/smartphones/sm-g980f-ds-galaxy-s20-global-dual-sim-td-lte-128gb-galaxy-s11/score/index.json b/site/public/v1/smartphones/sm-g980f-ds-galaxy-s20-global-dual-sim-td-lte-128gb-galaxy-s11/score/index.json new file mode 100644 index 00000000000..7e486707c87 --- /dev/null +++ b/site/public/v1/smartphones/sm-g980f-ds-galaxy-s20-global-dual-sim-td-lte-128gb-galaxy-s11/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": 3.0, + "camera": 5.1, + "battery": 16.9, + "display": 68.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g980f-galaxy-s20-global-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-g980f-galaxy-s20-global-td-lte-128gb/index.json new file mode 100644 index 00000000000..5bc415226b9 --- /dev/null +++ b/site/public/v1/smartphones/sm-g980f-galaxy-s20-global-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4205, + "slug": "sm-g980f-galaxy-s20-global-td-lte-128gb", + "name": "SM-G980F Galaxy S20 Global TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 199, + "slug": "exynos-990", + "name": "Samsung Exynos 990", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP11", + "url": "/v1/socs/exynos-990" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.23, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 563 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": 3.0, + "camera": 5.1, + "battery": 16.9, + "display": 68.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.700781", + "updated_at": "2026-06-19T00:43:44.700781" +} diff --git a/site/public/v1/smartphones/sm-g980f-galaxy-s20-global-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-g980f-galaxy-s20-global-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..7e486707c87 --- /dev/null +++ b/site/public/v1/smartphones/sm-g980f-galaxy-s20-global-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": 3.0, + "camera": 5.1, + "battery": 16.9, + "display": 68.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g9810-galaxy-s20-5g-dual-sim-td-lte-cn-hk-128gb/index.json b/site/public/v1/smartphones/sm-g9810-galaxy-s20-5g-dual-sim-td-lte-cn-hk-128gb/index.json new file mode 100644 index 00000000000..32c5657c8fa --- /dev/null +++ b/site/public/v1/smartphones/sm-g9810-galaxy-s20-5g-dual-sim-td-lte-cn-hk-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4206, + "slug": "sm-g9810-galaxy-s20-5g-dual-sim-td-lte-cn-hk-128gb", + "name": "SM-G9810 Galaxy S20 5G Dual SIM TD-LTE CN HK 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.23, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 563 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 6.0, + "camera": 5.1, + "battery": 16.9, + "display": 68.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.701783", + "updated_at": "2026-06-19T00:43:44.701783" +} diff --git a/site/public/v1/smartphones/sm-g9810-galaxy-s20-5g-dual-sim-td-lte-cn-hk-128gb/score/index.json b/site/public/v1/smartphones/sm-g9810-galaxy-s20-5g-dual-sim-td-lte-cn-hk-128gb/score/index.json new file mode 100644 index 00000000000..99853f1c324 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9810-galaxy-s20-5g-dual-sim-td-lte-cn-hk-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 6.0, + "camera": 5.1, + "battery": 16.9, + "display": 68.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g981b-ds-galaxy-s20-5g-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-g981b-ds-galaxy-s20-5g-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..1aae6216f61 --- /dev/null +++ b/site/public/v1/smartphones/sm-g981b-ds-galaxy-s20-5g-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4207, + "slug": "sm-g981b-ds-galaxy-s20-5g-global-dual-sim-td-lte-128gb", + "name": "SM-G981B/DS Galaxy S20 5G Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 199, + "slug": "exynos-990", + "name": "Samsung Exynos 990", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP11", + "url": "/v1/socs/exynos-990" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.23, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 563 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 6.0, + "camera": 5.1, + "battery": 16.9, + "display": 68.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.701783", + "updated_at": "2026-06-19T00:43:44.701783" +} diff --git a/site/public/v1/smartphones/sm-g981b-ds-galaxy-s20-5g-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-g981b-ds-galaxy-s20-5g-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..99853f1c324 --- /dev/null +++ b/site/public/v1/smartphones/sm-g981b-ds-galaxy-s20-5g-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 6.0, + "camera": 5.1, + "battery": 16.9, + "display": 68.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g981b-galaxy-s20-5g-global-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-g981b-galaxy-s20-5g-global-td-lte-128gb/index.json new file mode 100644 index 00000000000..0df92ad928f --- /dev/null +++ b/site/public/v1/smartphones/sm-g981b-galaxy-s20-5g-global-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4208, + "slug": "sm-g981b-galaxy-s20-5g-global-td-lte-128gb", + "name": "SM-G981B Galaxy S20 5G Global TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 199, + "slug": "exynos-990", + "name": "Samsung Exynos 990", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP11", + "url": "/v1/socs/exynos-990" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.23, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 563 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 6.0, + "camera": 5.1, + "battery": 16.9, + "display": 68.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.701783", + "updated_at": "2026-06-19T00:43:44.701783" +} diff --git a/site/public/v1/smartphones/sm-g981b-galaxy-s20-5g-global-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-g981b-galaxy-s20-5g-global-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..99853f1c324 --- /dev/null +++ b/site/public/v1/smartphones/sm-g981b-galaxy-s20-5g-global-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 6.0, + "camera": 5.1, + "battery": 16.9, + "display": 68.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g981d-galaxy-s20-5g-td-lte-jp-128gb-sc-51a-sgh-n410/index.json b/site/public/v1/smartphones/sm-g981d-galaxy-s20-5g-td-lte-jp-128gb-sc-51a-sgh-n410/index.json new file mode 100644 index 00000000000..14c479160c6 --- /dev/null +++ b/site/public/v1/smartphones/sm-g981d-galaxy-s20-5g-td-lte-jp-128gb-sc-51a-sgh-n410/index.json @@ -0,0 +1,77 @@ +{ + "id": 4209, + "slug": "sm-g981d-galaxy-s20-5g-td-lte-jp-128gb-sc-51a-sgh-n410", + "name": "SM-G981D Galaxy S20 5G TD-LTE JP 128GB SC-51A / SGH-N410", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-26", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.23, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 563 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 6.0, + "camera": 5.1, + "battery": 16.9, + "display": 68.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.701783", + "updated_at": "2026-06-19T00:43:44.701783" +} diff --git a/site/public/v1/smartphones/sm-g981d-galaxy-s20-5g-td-lte-jp-128gb-sc-51a-sgh-n410/score/index.json b/site/public/v1/smartphones/sm-g981d-galaxy-s20-5g-td-lte-jp-128gb-sc-51a-sgh-n410/score/index.json new file mode 100644 index 00000000000..99853f1c324 --- /dev/null +++ b/site/public/v1/smartphones/sm-g981d-galaxy-s20-5g-td-lte-jp-128gb-sc-51a-sgh-n410/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 6.0, + "camera": 5.1, + "battery": 16.9, + "display": 68.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g981j-galaxy-s20-5g-td-lte-jp-128gb-scg01/index.json b/site/public/v1/smartphones/sm-g981j-galaxy-s20-5g-td-lte-jp-128gb-scg01/index.json new file mode 100644 index 00000000000..85ff351de30 --- /dev/null +++ b/site/public/v1/smartphones/sm-g981j-galaxy-s20-5g-td-lte-jp-128gb-scg01/index.json @@ -0,0 +1,77 @@ +{ + "id": 4210, + "slug": "sm-g981j-galaxy-s20-5g-td-lte-jp-128gb-scg01", + "name": "SM-G981J Galaxy S20 5G TD-LTE JP 128GB SCG01", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-16", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.23, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 563 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 6.0, + "camera": 5.1, + "battery": 16.9, + "display": 68.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.701783", + "updated_at": "2026-06-19T00:43:44.701783" +} diff --git a/site/public/v1/smartphones/sm-g981j-galaxy-s20-5g-td-lte-jp-128gb-scg01/score/index.json b/site/public/v1/smartphones/sm-g981j-galaxy-s20-5g-td-lte-jp-128gb-scg01/score/index.json new file mode 100644 index 00000000000..99853f1c324 --- /dev/null +++ b/site/public/v1/smartphones/sm-g981j-galaxy-s20-5g-td-lte-jp-128gb-scg01/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 6.0, + "camera": 5.1, + "battery": 16.9, + "display": 68.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g981n-galaxy-s20-5g-td-lte-kr-128gb/index.json b/site/public/v1/smartphones/sm-g981n-galaxy-s20-5g-td-lte-kr-128gb/index.json new file mode 100644 index 00000000000..747d427e3d2 --- /dev/null +++ b/site/public/v1/smartphones/sm-g981n-galaxy-s20-5g-td-lte-kr-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4211, + "slug": "sm-g981n-galaxy-s20-5g-td-lte-kr-128gb", + "name": "SM-G981N Galaxy S20 5G TD-LTE KR 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-02-28", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.23, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 563 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 6.0, + "camera": 5.1, + "battery": 16.9, + "display": 68.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.701783", + "updated_at": "2026-06-19T00:43:44.701783" +} diff --git a/site/public/v1/smartphones/sm-g981n-galaxy-s20-5g-td-lte-kr-128gb/score/index.json b/site/public/v1/smartphones/sm-g981n-galaxy-s20-5g-td-lte-kr-128gb/score/index.json new file mode 100644 index 00000000000..99853f1c324 --- /dev/null +++ b/site/public/v1/smartphones/sm-g981n-galaxy-s20-5g-td-lte-kr-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 6.0, + "camera": 5.1, + "battery": 16.9, + "display": 68.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981a/index.json b/site/public/v1/smartphones/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981a/index.json new file mode 100644 index 00000000000..f2fdb08e421 --- /dev/null +++ b/site/public/v1/smartphones/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981a/index.json @@ -0,0 +1,77 @@ +{ + "id": 4212, + "slug": "sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981a", + "name": "SM-G981U Galaxy S20 5G TD-LTE US 128GB / SM-G981A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-02-28", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.23, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 563 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 6.0, + "camera": 5.1, + "battery": 16.9, + "display": 68.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.701783", + "updated_at": "2026-06-19T00:43:44.701783" +} diff --git a/site/public/v1/smartphones/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981a/score/index.json b/site/public/v1/smartphones/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981a/score/index.json new file mode 100644 index 00000000000..99853f1c324 --- /dev/null +++ b/site/public/v1/smartphones/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 6.0, + "camera": 5.1, + "battery": 16.9, + "display": 68.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981p/index.json b/site/public/v1/smartphones/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981p/index.json new file mode 100644 index 00000000000..95be824091a --- /dev/null +++ b/site/public/v1/smartphones/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981p/index.json @@ -0,0 +1,77 @@ +{ + "id": 4213, + "slug": "sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981p", + "name": "SM-G981U Galaxy S20 5G TD-LTE US 128GB / SM-G981P", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-02-28", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.23, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 563 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 6.0, + "camera": 5.1, + "battery": 16.9, + "display": 68.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.701783", + "updated_at": "2026-06-19T00:43:44.701783" +} diff --git a/site/public/v1/smartphones/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981p/score/index.json b/site/public/v1/smartphones/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981p/score/index.json new file mode 100644 index 00000000000..99853f1c324 --- /dev/null +++ b/site/public/v1/smartphones/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981p/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 6.0, + "camera": 5.1, + "battery": 16.9, + "display": 68.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981r4/index.json b/site/public/v1/smartphones/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981r4/index.json new file mode 100644 index 00000000000..ad5b8de0c2f --- /dev/null +++ b/site/public/v1/smartphones/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981r4/index.json @@ -0,0 +1,77 @@ +{ + "id": 4214, + "slug": "sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981r4", + "name": "SM-G981U Galaxy S20 5G TD-LTE US 128GB / SM-G981R4", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-02-28", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.23, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 563 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 6.0, + "camera": 5.1, + "battery": 16.9, + "display": 68.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.702786", + "updated_at": "2026-06-19T00:43:44.702786" +} diff --git a/site/public/v1/smartphones/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981r4/score/index.json b/site/public/v1/smartphones/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981r4/score/index.json new file mode 100644 index 00000000000..99853f1c324 --- /dev/null +++ b/site/public/v1/smartphones/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981r4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 6.0, + "camera": 5.1, + "battery": 16.9, + "display": 68.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981t/index.json b/site/public/v1/smartphones/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981t/index.json new file mode 100644 index 00000000000..c8256c58f14 --- /dev/null +++ b/site/public/v1/smartphones/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981t/index.json @@ -0,0 +1,77 @@ +{ + "id": 4215, + "slug": "sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981t", + "name": "SM-G981U Galaxy S20 5G TD-LTE US 128GB / SM-G981T", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-02-28", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.23, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 563 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 6.0, + "camera": 5.1, + "battery": 16.9, + "display": 68.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.702786", + "updated_at": "2026-06-19T00:43:44.702786" +} diff --git a/site/public/v1/smartphones/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981t/score/index.json b/site/public/v1/smartphones/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981t/score/index.json new file mode 100644 index 00000000000..99853f1c324 --- /dev/null +++ b/site/public/v1/smartphones/sm-g981u-galaxy-s20-5g-td-lte-us-128gb-sm-g981t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 6.0, + "camera": 5.1, + "battery": 16.9, + "display": 68.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g981u-galaxy-s20-5g-uw-td-lte-us-128gb-sm-g981v/index.json b/site/public/v1/smartphones/sm-g981u-galaxy-s20-5g-uw-td-lte-us-128gb-sm-g981v/index.json new file mode 100644 index 00000000000..f400cf07dcd --- /dev/null +++ b/site/public/v1/smartphones/sm-g981u-galaxy-s20-5g-uw-td-lte-us-128gb-sm-g981v/index.json @@ -0,0 +1,77 @@ +{ + "id": 4216, + "slug": "sm-g981u-galaxy-s20-5g-uw-td-lte-us-128gb-sm-g981v", + "name": "SM-G981U Galaxy S20 5G UW TD-LTE US 128GB / SM-G981V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-06-04", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.23, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 563 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": 3.0, + "camera": 5.1, + "battery": 16.9, + "display": 68.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.702786", + "updated_at": "2026-06-19T00:43:44.702786" +} diff --git a/site/public/v1/smartphones/sm-g981u-galaxy-s20-5g-uw-td-lte-us-128gb-sm-g981v/score/index.json b/site/public/v1/smartphones/sm-g981u-galaxy-s20-5g-uw-td-lte-us-128gb-sm-g981v/score/index.json new file mode 100644 index 00000000000..7e486707c87 --- /dev/null +++ b/site/public/v1/smartphones/sm-g981u-galaxy-s20-5g-uw-td-lte-us-128gb-sm-g981v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": 3.0, + "camera": 5.1, + "battery": 16.9, + "display": 68.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g981u1-galaxy-s20-5g-td-lte-us-128gb/index.json b/site/public/v1/smartphones/sm-g981u1-galaxy-s20-5g-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..6be3705c3a4 --- /dev/null +++ b/site/public/v1/smartphones/sm-g981u1-galaxy-s20-5g-td-lte-us-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4217, + "slug": "sm-g981u1-galaxy-s20-5g-td-lte-us-128gb", + "name": "SM-G981U1 Galaxy S20 5G TD-LTE US 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-02-28", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.23, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 563 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 6.0, + "camera": 5.1, + "battery": 16.9, + "display": 68.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.702786", + "updated_at": "2026-06-19T00:43:44.702786" +} diff --git a/site/public/v1/smartphones/sm-g981u1-galaxy-s20-5g-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/sm-g981u1-galaxy-s20-5g-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..99853f1c324 --- /dev/null +++ b/site/public/v1/smartphones/sm-g981u1-galaxy-s20-5g-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 6.0, + "camera": 5.1, + "battery": 16.9, + "display": 68.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g981w-galaxy-s20-5g-td-lte-ca-128gb/index.json b/site/public/v1/smartphones/sm-g981w-galaxy-s20-5g-td-lte-ca-128gb/index.json new file mode 100644 index 00000000000..bf472414511 --- /dev/null +++ b/site/public/v1/smartphones/sm-g981w-galaxy-s20-5g-td-lte-ca-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4218, + "slug": "sm-g981w-galaxy-s20-5g-td-lte-ca-128gb", + "name": "SM-G981W Galaxy S20 5G TD-LTE CA 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-02-28", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.23, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 563 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 6.0, + "camera": 5.1, + "battery": 16.9, + "display": 68.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.702786", + "updated_at": "2026-06-19T00:43:44.702786" +} diff --git a/site/public/v1/smartphones/sm-g981w-galaxy-s20-5g-td-lte-ca-128gb/score/index.json b/site/public/v1/smartphones/sm-g981w-galaxy-s20-5g-td-lte-ca-128gb/score/index.json new file mode 100644 index 00000000000..99853f1c324 --- /dev/null +++ b/site/public/v1/smartphones/sm-g981w-galaxy-s20-5g-td-lte-ca-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 6.0, + "camera": 5.1, + "battery": 16.9, + "display": 68.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g985f-ds-galaxy-s20-bts-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-g985f-ds-galaxy-s20-bts-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..64581c74ea3 --- /dev/null +++ b/site/public/v1/smartphones/sm-g985f-ds-galaxy-s20-bts-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4219, + "slug": "sm-g985f-ds-galaxy-s20-bts-edition-global-dual-sim-td-lte-128gb", + "name": "SM-G985F/DS Galaxy S20+ BTS Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 199, + "slug": "exynos-990", + "name": "Samsung Exynos 990", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP11", + "url": "/v1/socs/exynos-990" + }, + "release_date": "2020-07-09", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 3.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.702786", + "updated_at": "2026-06-19T00:43:44.702786" +} diff --git a/site/public/v1/smartphones/sm-g985f-ds-galaxy-s20-bts-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-g985f-ds-galaxy-s20-bts-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..9364cdf5f29 --- /dev/null +++ b/site/public/v1/smartphones/sm-g985f-ds-galaxy-s20-bts-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 3.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g985f-ds-galaxy-s20-global-dual-sim-td-lte-128gb-galaxy-s11/index.json b/site/public/v1/smartphones/sm-g985f-ds-galaxy-s20-global-dual-sim-td-lte-128gb-galaxy-s11/index.json new file mode 100644 index 00000000000..ca646968e7b --- /dev/null +++ b/site/public/v1/smartphones/sm-g985f-ds-galaxy-s20-global-dual-sim-td-lte-128gb-galaxy-s11/index.json @@ -0,0 +1,77 @@ +{ + "id": 4220, + "slug": "sm-g985f-ds-galaxy-s20-global-dual-sim-td-lte-128gb-galaxy-s11", + "name": "SM-G985F/DS Galaxy S20+ Global Dual SIM TD-LTE 128GB / Galaxy S11+", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 199, + "slug": "exynos-990", + "name": "Samsung Exynos 990", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP11", + "url": "/v1/socs/exynos-990" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 3.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.702786", + "updated_at": "2026-06-19T00:43:44.702786" +} diff --git a/site/public/v1/smartphones/sm-g985f-ds-galaxy-s20-global-dual-sim-td-lte-128gb-galaxy-s11/score/index.json b/site/public/v1/smartphones/sm-g985f-ds-galaxy-s20-global-dual-sim-td-lte-128gb-galaxy-s11/score/index.json new file mode 100644 index 00000000000..9364cdf5f29 --- /dev/null +++ b/site/public/v1/smartphones/sm-g985f-ds-galaxy-s20-global-dual-sim-td-lte-128gb-galaxy-s11/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 3.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g985f-galaxy-s20-global-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-g985f-galaxy-s20-global-td-lte-128gb/index.json new file mode 100644 index 00000000000..f3852c311ff --- /dev/null +++ b/site/public/v1/smartphones/sm-g985f-galaxy-s20-global-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4221, + "slug": "sm-g985f-galaxy-s20-global-td-lte-128gb", + "name": "SM-G985F Galaxy S20+ Global TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 199, + "slug": "exynos-990", + "name": "Samsung Exynos 990", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP11", + "url": "/v1/socs/exynos-990" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 3.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.703785", + "updated_at": "2026-06-19T00:43:44.703785" +} diff --git a/site/public/v1/smartphones/sm-g985f-galaxy-s20-global-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-g985f-galaxy-s20-global-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..9364cdf5f29 --- /dev/null +++ b/site/public/v1/smartphones/sm-g985f-galaxy-s20-global-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 3.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g9860-galaxy-s20-5g-dual-sim-td-lte-cn-hk-128gb/index.json b/site/public/v1/smartphones/sm-g9860-galaxy-s20-5g-dual-sim-td-lte-cn-hk-128gb/index.json new file mode 100644 index 00000000000..22c39d80d13 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9860-galaxy-s20-5g-dual-sim-td-lte-cn-hk-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4222, + "slug": "sm-g9860-galaxy-s20-5g-dual-sim-td-lte-cn-hk-128gb", + "name": "SM-G9860 Galaxy S20+ 5G Dual SIM TD-LTE CN HK 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.703785", + "updated_at": "2026-06-19T00:43:44.703785" +} diff --git a/site/public/v1/smartphones/sm-g9860-galaxy-s20-5g-dual-sim-td-lte-cn-hk-128gb/score/index.json b/site/public/v1/smartphones/sm-g9860-galaxy-s20-5g-dual-sim-td-lte-cn-hk-128gb/score/index.json new file mode 100644 index 00000000000..69b3964eb0d --- /dev/null +++ b/site/public/v1/smartphones/sm-g9860-galaxy-s20-5g-dual-sim-td-lte-cn-hk-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g986b-ds-bts-edition-galaxy-s20-5g-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-g986b-ds-bts-edition-galaxy-s20-5g-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..cbb71a2e2db --- /dev/null +++ b/site/public/v1/smartphones/sm-g986b-ds-bts-edition-galaxy-s20-5g-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4223, + "slug": "sm-g986b-ds-bts-edition-galaxy-s20-5g-global-dual-sim-td-lte-128gb", + "name": "SM-G986B/DS BTS Edition Galaxy S20+ 5G Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 199, + "slug": "exynos-990", + "name": "Samsung Exynos 990", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP11", + "url": "/v1/socs/exynos-990" + }, + "release_date": "2020-07-09", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.703785", + "updated_at": "2026-06-19T00:43:44.703785" +} diff --git a/site/public/v1/smartphones/sm-g986b-ds-bts-edition-galaxy-s20-5g-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-g986b-ds-bts-edition-galaxy-s20-5g-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..69b3964eb0d --- /dev/null +++ b/site/public/v1/smartphones/sm-g986b-ds-bts-edition-galaxy-s20-5g-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g986b-ds-galaxy-s20-5g-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-g986b-ds-galaxy-s20-5g-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..8d272d8468d --- /dev/null +++ b/site/public/v1/smartphones/sm-g986b-ds-galaxy-s20-5g-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4224, + "slug": "sm-g986b-ds-galaxy-s20-5g-global-dual-sim-td-lte-128gb", + "name": "SM-G986B/DS Galaxy S20+ 5G Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 199, + "slug": "exynos-990", + "name": "Samsung Exynos 990", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP11", + "url": "/v1/socs/exynos-990" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.703785", + "updated_at": "2026-06-19T00:43:44.703785" +} diff --git a/site/public/v1/smartphones/sm-g986b-ds-galaxy-s20-5g-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-g986b-ds-galaxy-s20-5g-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..69b3964eb0d --- /dev/null +++ b/site/public/v1/smartphones/sm-g986b-ds-galaxy-s20-5g-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g986b-galaxy-s20-5g-global-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-g986b-galaxy-s20-5g-global-td-lte-128gb/index.json new file mode 100644 index 00000000000..56b57e0a9fb --- /dev/null +++ b/site/public/v1/smartphones/sm-g986b-galaxy-s20-5g-global-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4225, + "slug": "sm-g986b-galaxy-s20-5g-global-td-lte-128gb", + "name": "SM-G986B Galaxy S20+ 5G Global TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 199, + "slug": "exynos-990", + "name": "Samsung Exynos 990", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP11", + "url": "/v1/socs/exynos-990" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.703785", + "updated_at": "2026-06-19T00:43:44.703785" +} diff --git a/site/public/v1/smartphones/sm-g986b-galaxy-s20-5g-global-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-g986b-galaxy-s20-5g-global-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..69b3964eb0d --- /dev/null +++ b/site/public/v1/smartphones/sm-g986b-galaxy-s20-5g-global-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g986ds-galaxy-s20-5g-uw-olympic-games-edition-td-lte-jp-128gb-sc-52a/index.json b/site/public/v1/smartphones/sm-g986ds-galaxy-s20-5g-uw-olympic-games-edition-td-lte-jp-128gb-sc-52a/index.json new file mode 100644 index 00000000000..ffb93b5cf31 --- /dev/null +++ b/site/public/v1/smartphones/sm-g986ds-galaxy-s20-5g-uw-olympic-games-edition-td-lte-jp-128gb-sc-52a/index.json @@ -0,0 +1,77 @@ +{ + "id": 4226, + "slug": "sm-g986ds-galaxy-s20-5g-uw-olympic-games-edition-td-lte-jp-128gb-sc-52a", + "name": "SM-G986DS Galaxy S20+ 5G UW Olympic Games Edition TD-LTE JP 128GB SC-52A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-06-18", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.703785", + "updated_at": "2026-06-19T00:43:44.703785" +} diff --git a/site/public/v1/smartphones/sm-g986ds-galaxy-s20-5g-uw-olympic-games-edition-td-lte-jp-128gb-sc-52a/score/index.json b/site/public/v1/smartphones/sm-g986ds-galaxy-s20-5g-uw-olympic-games-edition-td-lte-jp-128gb-sc-52a/score/index.json new file mode 100644 index 00000000000..69b3964eb0d --- /dev/null +++ b/site/public/v1/smartphones/sm-g986ds-galaxy-s20-5g-uw-olympic-games-edition-td-lte-jp-128gb-sc-52a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g986ds-galaxy-s20-5g-uw-td-lte-jp-128gb-sc-52a-sgh-n805/index.json b/site/public/v1/smartphones/sm-g986ds-galaxy-s20-5g-uw-td-lte-jp-128gb-sc-52a-sgh-n805/index.json new file mode 100644 index 00000000000..768bfaf7298 --- /dev/null +++ b/site/public/v1/smartphones/sm-g986ds-galaxy-s20-5g-uw-td-lte-jp-128gb-sc-52a-sgh-n805/index.json @@ -0,0 +1,77 @@ +{ + "id": 4227, + "slug": "sm-g986ds-galaxy-s20-5g-uw-td-lte-jp-128gb-sc-52a-sgh-n805", + "name": "SM-G986DS Galaxy S20+ 5G UW TD-LTE JP 128GB SC-52A / SGH-N805", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-06-18", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.703785", + "updated_at": "2026-06-19T00:43:44.703785" +} diff --git a/site/public/v1/smartphones/sm-g986ds-galaxy-s20-5g-uw-td-lte-jp-128gb-sc-52a-sgh-n805/score/index.json b/site/public/v1/smartphones/sm-g986ds-galaxy-s20-5g-uw-td-lte-jp-128gb-sc-52a-sgh-n805/score/index.json new file mode 100644 index 00000000000..69b3964eb0d --- /dev/null +++ b/site/public/v1/smartphones/sm-g986ds-galaxy-s20-5g-uw-td-lte-jp-128gb-sc-52a-sgh-n805/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g986j-galaxy-s20-5g-bts-edition-td-lte-jp-128gb-scg02/index.json b/site/public/v1/smartphones/sm-g986j-galaxy-s20-5g-bts-edition-td-lte-jp-128gb-scg02/index.json new file mode 100644 index 00000000000..43fe2c820c5 --- /dev/null +++ b/site/public/v1/smartphones/sm-g986j-galaxy-s20-5g-bts-edition-td-lte-jp-128gb-scg02/index.json @@ -0,0 +1,77 @@ +{ + "id": 4228, + "slug": "sm-g986j-galaxy-s20-5g-bts-edition-td-lte-jp-128gb-scg02", + "name": "SM-G986J Galaxy S20+ 5G BTS Edition TD-LTE JP 128GB SCG02", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-09-11", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.703785", + "updated_at": "2026-06-19T00:43:44.703785" +} diff --git a/site/public/v1/smartphones/sm-g986j-galaxy-s20-5g-bts-edition-td-lte-jp-128gb-scg02/score/index.json b/site/public/v1/smartphones/sm-g986j-galaxy-s20-5g-bts-edition-td-lte-jp-128gb-scg02/score/index.json new file mode 100644 index 00000000000..69b3964eb0d --- /dev/null +++ b/site/public/v1/smartphones/sm-g986j-galaxy-s20-5g-bts-edition-td-lte-jp-128gb-scg02/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g986j-galaxy-s20-5g-td-lte-jp-128gb-scg02/index.json b/site/public/v1/smartphones/sm-g986j-galaxy-s20-5g-td-lte-jp-128gb-scg02/index.json new file mode 100644 index 00000000000..7e34643196b --- /dev/null +++ b/site/public/v1/smartphones/sm-g986j-galaxy-s20-5g-td-lte-jp-128gb-scg02/index.json @@ -0,0 +1,77 @@ +{ + "id": 4229, + "slug": "sm-g986j-galaxy-s20-5g-td-lte-jp-128gb-scg02", + "name": "SM-G986J Galaxy S20+ 5G TD-LTE JP 128GB SCG02", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-06-04", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.703785", + "updated_at": "2026-06-19T00:43:44.703785" +} diff --git a/site/public/v1/smartphones/sm-g986j-galaxy-s20-5g-td-lte-jp-128gb-scg02/score/index.json b/site/public/v1/smartphones/sm-g986j-galaxy-s20-5g-td-lte-jp-128gb-scg02/score/index.json new file mode 100644 index 00000000000..69b3964eb0d --- /dev/null +++ b/site/public/v1/smartphones/sm-g986j-galaxy-s20-5g-td-lte-jp-128gb-scg02/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g986n-galaxy-s20-5g-bts-edition-td-lte-kr-256gb/index.json b/site/public/v1/smartphones/sm-g986n-galaxy-s20-5g-bts-edition-td-lte-kr-256gb/index.json new file mode 100644 index 00000000000..bef33046e9b --- /dev/null +++ b/site/public/v1/smartphones/sm-g986n-galaxy-s20-5g-bts-edition-td-lte-kr-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4230, + "slug": "sm-g986n-galaxy-s20-5g-bts-edition-td-lte-kr-256gb", + "name": "SM-G986N Galaxy S20+ 5G BTS Edition TD-LTE KR 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-07-09", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.704785", + "updated_at": "2026-06-19T00:43:44.704785" +} diff --git a/site/public/v1/smartphones/sm-g986n-galaxy-s20-5g-bts-edition-td-lte-kr-256gb/score/index.json b/site/public/v1/smartphones/sm-g986n-galaxy-s20-5g-bts-edition-td-lte-kr-256gb/score/index.json new file mode 100644 index 00000000000..69b3964eb0d --- /dev/null +++ b/site/public/v1/smartphones/sm-g986n-galaxy-s20-5g-bts-edition-td-lte-kr-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g986n-galaxy-s20-5g-td-lte-kr-256gb/index.json b/site/public/v1/smartphones/sm-g986n-galaxy-s20-5g-td-lte-kr-256gb/index.json new file mode 100644 index 00000000000..4abee3660d2 --- /dev/null +++ b/site/public/v1/smartphones/sm-g986n-galaxy-s20-5g-td-lte-kr-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4231, + "slug": "sm-g986n-galaxy-s20-5g-td-lte-kr-256gb", + "name": "SM-G986N Galaxy S20+ 5G TD-LTE KR 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.704785", + "updated_at": "2026-06-19T00:43:44.704785" +} diff --git a/site/public/v1/smartphones/sm-g986n-galaxy-s20-5g-td-lte-kr-256gb/score/index.json b/site/public/v1/smartphones/sm-g986n-galaxy-s20-5g-td-lte-kr-256gb/score/index.json new file mode 100644 index 00000000000..69b3964eb0d --- /dev/null +++ b/site/public/v1/smartphones/sm-g986n-galaxy-s20-5g-td-lte-kr-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986a/index.json b/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986a/index.json new file mode 100644 index 00000000000..01f8d605395 --- /dev/null +++ b/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986a/index.json @@ -0,0 +1,77 @@ +{ + "id": 4232, + "slug": "sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986a", + "name": "SM-G986U Galaxy S20+ 5G TD-LTE US 128GB / SM-G986A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.704785", + "updated_at": "2026-06-19T00:43:44.704785" +} diff --git a/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986a/score/index.json b/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986a/score/index.json new file mode 100644 index 00000000000..69b3964eb0d --- /dev/null +++ b/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986p/index.json b/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986p/index.json new file mode 100644 index 00000000000..ff3f63626df --- /dev/null +++ b/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986p/index.json @@ -0,0 +1,77 @@ +{ + "id": 4233, + "slug": "sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986p", + "name": "SM-G986U Galaxy S20+ 5G TD-LTE US 128GB / SM-G986P", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.704785", + "updated_at": "2026-06-19T00:43:44.704785" +} diff --git a/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986p/score/index.json b/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986p/score/index.json new file mode 100644 index 00000000000..69b3964eb0d --- /dev/null +++ b/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986p/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986r4/index.json b/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986r4/index.json new file mode 100644 index 00000000000..377df637878 --- /dev/null +++ b/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986r4/index.json @@ -0,0 +1,77 @@ +{ + "id": 4234, + "slug": "sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986r4", + "name": "SM-G986U Galaxy S20+ 5G TD-LTE US 128GB / SM-G986R4", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.704785", + "updated_at": "2026-06-19T00:43:44.704785" +} diff --git a/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986r4/score/index.json b/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986r4/score/index.json new file mode 100644 index 00000000000..69b3964eb0d --- /dev/null +++ b/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986r4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986t/index.json b/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986t/index.json new file mode 100644 index 00000000000..73406359374 --- /dev/null +++ b/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986t/index.json @@ -0,0 +1,77 @@ +{ + "id": 4235, + "slug": "sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986t", + "name": "SM-G986U Galaxy S20+ 5G TD-LTE US 128GB / SM-G986T", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.704785", + "updated_at": "2026-06-19T00:43:44.704785" +} diff --git a/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986t/score/index.json b/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986t/score/index.json new file mode 100644 index 00000000000..69b3964eb0d --- /dev/null +++ b/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-128gb-sm-g986t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986a/index.json b/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986a/index.json new file mode 100644 index 00000000000..f1bb1f0a9b0 --- /dev/null +++ b/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986a/index.json @@ -0,0 +1,77 @@ +{ + "id": 4236, + "slug": "sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986a", + "name": "SM-G986U Galaxy S20+ 5G TD-LTE US 512GB / SM-G986A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.704785", + "updated_at": "2026-06-19T00:43:44.704785" +} diff --git a/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986a/score/index.json b/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986a/score/index.json new file mode 100644 index 00000000000..69b3964eb0d --- /dev/null +++ b/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986r4/index.json b/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986r4/index.json new file mode 100644 index 00000000000..3eb0288f158 --- /dev/null +++ b/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986r4/index.json @@ -0,0 +1,77 @@ +{ + "id": 4237, + "slug": "sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986r4", + "name": "SM-G986U Galaxy S20+ 5G TD-LTE US 512GB / SM-G986R4", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.704785", + "updated_at": "2026-06-19T00:43:44.704785" +} diff --git a/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986r4/score/index.json b/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986r4/score/index.json new file mode 100644 index 00000000000..69b3964eb0d --- /dev/null +++ b/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986r4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986t/index.json b/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986t/index.json new file mode 100644 index 00000000000..ec06d58dfe7 --- /dev/null +++ b/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986t/index.json @@ -0,0 +1,77 @@ +{ + "id": 4238, + "slug": "sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986t", + "name": "SM-G986U Galaxy S20+ 5G TD-LTE US 512GB / SM-G986T", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.705780", + "updated_at": "2026-06-19T00:43:44.705780" +} diff --git a/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986t/score/index.json b/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986t/score/index.json new file mode 100644 index 00000000000..69b3964eb0d --- /dev/null +++ b/site/public/v1/smartphones/sm-g986u-galaxy-s20-5g-td-lte-us-512gb-sm-g986t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g986u-galaxy-s20-uw-5g-td-lte-us-128gb-sm-g986v/index.json b/site/public/v1/smartphones/sm-g986u-galaxy-s20-uw-5g-td-lte-us-128gb-sm-g986v/index.json new file mode 100644 index 00000000000..c8b634b0b12 --- /dev/null +++ b/site/public/v1/smartphones/sm-g986u-galaxy-s20-uw-5g-td-lte-us-128gb-sm-g986v/index.json @@ -0,0 +1,77 @@ +{ + "id": 4239, + "slug": "sm-g986u-galaxy-s20-uw-5g-td-lte-us-128gb-sm-g986v", + "name": "SM-G986U Galaxy S20+ UW 5G TD-LTE US 128GB / SM-G986V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.705780", + "updated_at": "2026-06-19T00:43:44.705780" +} diff --git a/site/public/v1/smartphones/sm-g986u-galaxy-s20-uw-5g-td-lte-us-128gb-sm-g986v/score/index.json b/site/public/v1/smartphones/sm-g986u-galaxy-s20-uw-5g-td-lte-us-128gb-sm-g986v/score/index.json new file mode 100644 index 00000000000..69b3964eb0d --- /dev/null +++ b/site/public/v1/smartphones/sm-g986u-galaxy-s20-uw-5g-td-lte-us-128gb-sm-g986v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g986u-galaxy-s20-uw-5g-td-lte-us-512gb-sm-g986v/index.json b/site/public/v1/smartphones/sm-g986u-galaxy-s20-uw-5g-td-lte-us-512gb-sm-g986v/index.json new file mode 100644 index 00000000000..9d3f48791ee --- /dev/null +++ b/site/public/v1/smartphones/sm-g986u-galaxy-s20-uw-5g-td-lte-us-512gb-sm-g986v/index.json @@ -0,0 +1,77 @@ +{ + "id": 4240, + "slug": "sm-g986u-galaxy-s20-uw-5g-td-lte-us-512gb-sm-g986v", + "name": "SM-G986U Galaxy S20+ UW 5G TD-LTE US 512GB / SM-G986V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-06-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.705780", + "updated_at": "2026-06-19T00:43:44.705780" +} diff --git a/site/public/v1/smartphones/sm-g986u-galaxy-s20-uw-5g-td-lte-us-512gb-sm-g986v/score/index.json b/site/public/v1/smartphones/sm-g986u-galaxy-s20-uw-5g-td-lte-us-512gb-sm-g986v/score/index.json new file mode 100644 index 00000000000..69b3964eb0d --- /dev/null +++ b/site/public/v1/smartphones/sm-g986u-galaxy-s20-uw-5g-td-lte-us-512gb-sm-g986v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g986u1-galaxy-s20-5g-bts-edition-td-lte-us-128gb/index.json b/site/public/v1/smartphones/sm-g986u1-galaxy-s20-5g-bts-edition-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..0cf0c2e62d4 --- /dev/null +++ b/site/public/v1/smartphones/sm-g986u1-galaxy-s20-5g-bts-edition-td-lte-us-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4241, + "slug": "sm-g986u1-galaxy-s20-5g-bts-edition-td-lte-us-128gb", + "name": "SM-G986U1 Galaxy S20+ 5G BTS Edition TD-LTE US 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-07-16", + "msrp_usd": 1250, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": 26.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.705780", + "updated_at": "2026-06-19T00:43:44.705780" +} diff --git a/site/public/v1/smartphones/sm-g986u1-galaxy-s20-5g-bts-edition-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/sm-g986u1-galaxy-s20-5g-bts-edition-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..f239227f23b --- /dev/null +++ b/site/public/v1/smartphones/sm-g986u1-galaxy-s20-5g-bts-edition-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": 26.0 +} diff --git a/site/public/v1/smartphones/sm-g986u1-galaxy-s20-5g-td-lte-us-128gb/index.json b/site/public/v1/smartphones/sm-g986u1-galaxy-s20-5g-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..23c91eb9201 --- /dev/null +++ b/site/public/v1/smartphones/sm-g986u1-galaxy-s20-5g-td-lte-us-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4242, + "slug": "sm-g986u1-galaxy-s20-5g-td-lte-us-128gb", + "name": "SM-G986U1 Galaxy S20+ 5G TD-LTE US 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.705780", + "updated_at": "2026-06-19T00:43:44.705780" +} diff --git a/site/public/v1/smartphones/sm-g986u1-galaxy-s20-5g-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/sm-g986u1-galaxy-s20-5g-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..69b3964eb0d --- /dev/null +++ b/site/public/v1/smartphones/sm-g986u1-galaxy-s20-5g-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g986u1-galaxy-s20-5g-td-lte-us-512gb/index.json b/site/public/v1/smartphones/sm-g986u1-galaxy-s20-5g-td-lte-us-512gb/index.json new file mode 100644 index 00000000000..7e2f35bd7d5 --- /dev/null +++ b/site/public/v1/smartphones/sm-g986u1-galaxy-s20-5g-td-lte-us-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4243, + "slug": "sm-g986u1-galaxy-s20-5g-td-lte-us-512gb", + "name": "SM-G986U1 Galaxy S20+ 5G TD-LTE US 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.705780", + "updated_at": "2026-06-19T00:43:44.705780" +} diff --git a/site/public/v1/smartphones/sm-g986u1-galaxy-s20-5g-td-lte-us-512gb/score/index.json b/site/public/v1/smartphones/sm-g986u1-galaxy-s20-5g-td-lte-us-512gb/score/index.json new file mode 100644 index 00000000000..69b3964eb0d --- /dev/null +++ b/site/public/v1/smartphones/sm-g986u1-galaxy-s20-5g-td-lte-us-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g986w-galaxy-s20-5g-td-lte-ca-128gb/index.json b/site/public/v1/smartphones/sm-g986w-galaxy-s20-5g-td-lte-ca-128gb/index.json new file mode 100644 index 00000000000..62d438ec591 --- /dev/null +++ b/site/public/v1/smartphones/sm-g986w-galaxy-s20-5g-td-lte-ca-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4244, + "slug": "sm-g986w-galaxy-s20-5g-td-lte-ca-128gb", + "name": "SM-G986W Galaxy S20+ 5G TD-LTE CA 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 526 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.705780", + "updated_at": "2026-06-19T00:43:44.706781" +} diff --git a/site/public/v1/smartphones/sm-g986w-galaxy-s20-5g-td-lte-ca-128gb/score/index.json b/site/public/v1/smartphones/sm-g986w-galaxy-s20-5g-td-lte-ca-128gb/score/index.json new file mode 100644 index 00000000000..69b3964eb0d --- /dev/null +++ b/site/public/v1/smartphones/sm-g986w-galaxy-s20-5g-td-lte-ca-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 6.0, + "camera": 5.1, + "battery": 24.4, + "display": 65.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g9880-galaxy-s20-ultra-5g-dual-sim-td-lte-cn-hk-256gb/index.json b/site/public/v1/smartphones/sm-g9880-galaxy-s20-ultra-5g-dual-sim-td-lte-cn-hk-256gb/index.json new file mode 100644 index 00000000000..8eb42e3243a --- /dev/null +++ b/site/public/v1/smartphones/sm-g9880-galaxy-s20-ultra-5g-dual-sim-td-lte-cn-hk-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4245, + "slug": "sm-g9880-galaxy-s20-ultra-5g-dual-sim-td-lte-cn-hk-256gb", + "name": "SM-G9880 Galaxy S20 Ultra 5G Dual SIM TD-LTE CN HK 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 222.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 35.3, + "performance": 6.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.706781", + "updated_at": "2026-06-19T00:43:44.706781" +} diff --git a/site/public/v1/smartphones/sm-g9880-galaxy-s20-ultra-5g-dual-sim-td-lte-cn-hk-256gb/score/index.json b/site/public/v1/smartphones/sm-g9880-galaxy-s20-ultra-5g-dual-sim-td-lte-cn-hk-256gb/score/index.json new file mode 100644 index 00000000000..043d2299873 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9880-galaxy-s20-ultra-5g-dual-sim-td-lte-cn-hk-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 35.3, + "performance": 6.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g9880-galaxy-s20-ultra-5g-dual-sim-td-lte-cn-hk-512gb/index.json b/site/public/v1/smartphones/sm-g9880-galaxy-s20-ultra-5g-dual-sim-td-lte-cn-hk-512gb/index.json new file mode 100644 index 00000000000..dfe2886b6d4 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9880-galaxy-s20-ultra-5g-dual-sim-td-lte-cn-hk-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4246, + "slug": "sm-g9880-galaxy-s20-ultra-5g-dual-sim-td-lte-cn-hk-512gb", + "name": "SM-G9880 Galaxy S20 Ultra 5G Dual SIM TD-LTE CN HK 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 16, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 222.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 36.0, + "performance": 9.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.706781", + "updated_at": "2026-06-19T00:43:44.706781" +} diff --git a/site/public/v1/smartphones/sm-g9880-galaxy-s20-ultra-5g-dual-sim-td-lte-cn-hk-512gb/score/index.json b/site/public/v1/smartphones/sm-g9880-galaxy-s20-ultra-5g-dual-sim-td-lte-cn-hk-512gb/score/index.json new file mode 100644 index 00000000000..fa4791f1717 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9880-galaxy-s20-ultra-5g-dual-sim-td-lte-cn-hk-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 36.0, + "performance": 9.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g988b-ds-galaxy-s20-ultra-5g-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-g988b-ds-galaxy-s20-ultra-5g-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..b2970d7d8c1 --- /dev/null +++ b/site/public/v1/smartphones/sm-g988b-ds-galaxy-s20-ultra-5g-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4247, + "slug": "sm-g988b-ds-galaxy-s20-ultra-5g-global-dual-sim-td-lte-128gb", + "name": "SM-G988B/DS Galaxy S20 Ultra 5G Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 199, + "slug": "exynos-990", + "name": "Samsung Exynos 990", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP11", + "url": "/v1/socs/exynos-990" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 222.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 35.3, + "performance": 6.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.706781", + "updated_at": "2026-06-19T00:43:44.706781" +} diff --git a/site/public/v1/smartphones/sm-g988b-ds-galaxy-s20-ultra-5g-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-g988b-ds-galaxy-s20-ultra-5g-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..043d2299873 --- /dev/null +++ b/site/public/v1/smartphones/sm-g988b-ds-galaxy-s20-ultra-5g-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 35.3, + "performance": 6.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g988b-ds-galaxy-s20-ultra-5g-global-dual-sim-td-lte-512gb/index.json b/site/public/v1/smartphones/sm-g988b-ds-galaxy-s20-ultra-5g-global-dual-sim-td-lte-512gb/index.json new file mode 100644 index 00000000000..c4a483f15d4 --- /dev/null +++ b/site/public/v1/smartphones/sm-g988b-ds-galaxy-s20-ultra-5g-global-dual-sim-td-lte-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4248, + "slug": "sm-g988b-ds-galaxy-s20-ultra-5g-global-dual-sim-td-lte-512gb", + "name": "SM-G988B/DS Galaxy S20 Ultra 5G Global Dual SIM TD-LTE 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 199, + "slug": "exynos-990", + "name": "Samsung Exynos 990", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP11", + "url": "/v1/socs/exynos-990" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 16, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 222.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 36.0, + "performance": 9.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.706781", + "updated_at": "2026-06-19T00:43:44.706781" +} diff --git a/site/public/v1/smartphones/sm-g988b-ds-galaxy-s20-ultra-5g-global-dual-sim-td-lte-512gb/score/index.json b/site/public/v1/smartphones/sm-g988b-ds-galaxy-s20-ultra-5g-global-dual-sim-td-lte-512gb/score/index.json new file mode 100644 index 00000000000..fa4791f1717 --- /dev/null +++ b/site/public/v1/smartphones/sm-g988b-ds-galaxy-s20-ultra-5g-global-dual-sim-td-lte-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 36.0, + "performance": 9.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g988n-galaxy-s20-ultra-5g-td-lte-kr-256gb/index.json b/site/public/v1/smartphones/sm-g988n-galaxy-s20-ultra-5g-td-lte-kr-256gb/index.json new file mode 100644 index 00000000000..fbbcd22a264 --- /dev/null +++ b/site/public/v1/smartphones/sm-g988n-galaxy-s20-ultra-5g-td-lte-kr-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4249, + "slug": "sm-g988n-galaxy-s20-ultra-5g-td-lte-kr-256gb", + "name": "SM-G988N Galaxy S20 Ultra 5G TD-LTE KR 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 222.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 35.3, + "performance": 6.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.706781", + "updated_at": "2026-06-19T00:43:44.706781" +} diff --git a/site/public/v1/smartphones/sm-g988n-galaxy-s20-ultra-5g-td-lte-kr-256gb/score/index.json b/site/public/v1/smartphones/sm-g988n-galaxy-s20-ultra-5g-td-lte-kr-256gb/score/index.json new file mode 100644 index 00000000000..043d2299873 --- /dev/null +++ b/site/public/v1/smartphones/sm-g988n-galaxy-s20-ultra-5g-td-lte-kr-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 35.3, + "performance": 6.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g988n-galaxy-s20-ultra-5g-td-lte-kr-512gb/index.json b/site/public/v1/smartphones/sm-g988n-galaxy-s20-ultra-5g-td-lte-kr-512gb/index.json new file mode 100644 index 00000000000..3c79375f7c2 --- /dev/null +++ b/site/public/v1/smartphones/sm-g988n-galaxy-s20-ultra-5g-td-lte-kr-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4250, + "slug": "sm-g988n-galaxy-s20-ultra-5g-td-lte-kr-512gb", + "name": "SM-G988N Galaxy S20 Ultra 5G TD-LTE KR 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 16, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 222.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 36.0, + "performance": 9.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.706781", + "updated_at": "2026-06-19T00:43:44.706781" +} diff --git a/site/public/v1/smartphones/sm-g988n-galaxy-s20-ultra-5g-td-lte-kr-512gb/score/index.json b/site/public/v1/smartphones/sm-g988n-galaxy-s20-ultra-5g-td-lte-kr-512gb/score/index.json new file mode 100644 index 00000000000..fa4791f1717 --- /dev/null +++ b/site/public/v1/smartphones/sm-g988n-galaxy-s20-ultra-5g-td-lte-kr-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 36.0, + "performance": 9.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g988q-galaxy-s20-ultra-5g-td-lte-jp-128gb-scg03/index.json b/site/public/v1/smartphones/sm-g988q-galaxy-s20-ultra-5g-td-lte-jp-128gb-scg03/index.json new file mode 100644 index 00000000000..7d3aeb89cac --- /dev/null +++ b/site/public/v1/smartphones/sm-g988q-galaxy-s20-ultra-5g-td-lte-jp-128gb-scg03/index.json @@ -0,0 +1,77 @@ +{ + "id": 4251, + "slug": "sm-g988q-galaxy-s20-ultra-5g-td-lte-jp-128gb-scg03", + "name": "SM-G988Q Galaxy S20 Ultra 5G TD-LTE JP 128GB SCG03", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-07-03", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 222.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 35.3, + "performance": 6.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.706781", + "updated_at": "2026-06-19T00:43:44.706781" +} diff --git a/site/public/v1/smartphones/sm-g988q-galaxy-s20-ultra-5g-td-lte-jp-128gb-scg03/score/index.json b/site/public/v1/smartphones/sm-g988q-galaxy-s20-ultra-5g-td-lte-jp-128gb-scg03/score/index.json new file mode 100644 index 00000000000..043d2299873 --- /dev/null +++ b/site/public/v1/smartphones/sm-g988q-galaxy-s20-ultra-5g-td-lte-jp-128gb-scg03/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 35.3, + "performance": 6.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988a/index.json b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988a/index.json new file mode 100644 index 00000000000..52f45148b5c --- /dev/null +++ b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988a/index.json @@ -0,0 +1,77 @@ +{ + "id": 4252, + "slug": "sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988a", + "name": "SM-G988U Galaxy S20 Ultra 5G TD-LTE US 128GB / SM-G988A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 222.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 35.3, + "performance": 6.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.707780", + "updated_at": "2026-06-19T00:43:44.707780" +} diff --git a/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988a/score/index.json b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988a/score/index.json new file mode 100644 index 00000000000..043d2299873 --- /dev/null +++ b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 35.3, + "performance": 6.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988p/index.json b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988p/index.json new file mode 100644 index 00000000000..e9c1a6318c5 --- /dev/null +++ b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988p/index.json @@ -0,0 +1,77 @@ +{ + "id": 4253, + "slug": "sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988p", + "name": "SM-G988U Galaxy S20 Ultra 5G TD-LTE US 128GB / SM-G988P", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 222.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 35.3, + "performance": 6.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.707780", + "updated_at": "2026-06-19T00:43:44.707780" +} diff --git a/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988p/score/index.json b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988p/score/index.json new file mode 100644 index 00000000000..043d2299873 --- /dev/null +++ b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988p/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 35.3, + "performance": 6.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988r4/index.json b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988r4/index.json new file mode 100644 index 00000000000..4cae3baaa34 --- /dev/null +++ b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988r4/index.json @@ -0,0 +1,77 @@ +{ + "id": 4254, + "slug": "sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988r4", + "name": "SM-G988U Galaxy S20 Ultra 5G TD-LTE US 128GB / SM-G988R4", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 222.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 35.3, + "performance": 6.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.707780", + "updated_at": "2026-06-19T00:43:44.707780" +} diff --git a/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988r4/score/index.json b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988r4/score/index.json new file mode 100644 index 00000000000..043d2299873 --- /dev/null +++ b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-128gb-sm-g988r4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 35.3, + "performance": 6.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988a/index.json b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988a/index.json new file mode 100644 index 00000000000..d4e69476ef2 --- /dev/null +++ b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988a/index.json @@ -0,0 +1,77 @@ +{ + "id": 4255, + "slug": "sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988a", + "name": "SM-G988U Galaxy S20 Ultra 5G TD-LTE US 512GB / SM-G988A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 16, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 222.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 36.0, + "performance": 9.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.707780", + "updated_at": "2026-06-19T00:43:44.707780" +} diff --git a/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988a/score/index.json b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988a/score/index.json new file mode 100644 index 00000000000..fa4791f1717 --- /dev/null +++ b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 36.0, + "performance": 9.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988p/index.json b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988p/index.json new file mode 100644 index 00000000000..db8f6845bcb --- /dev/null +++ b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988p/index.json @@ -0,0 +1,77 @@ +{ + "id": 4256, + "slug": "sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988p", + "name": "SM-G988U Galaxy S20 Ultra 5G TD-LTE US 512GB / SM-G988P", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 16, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 222.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 36.0, + "performance": 9.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.707780", + "updated_at": "2026-06-19T00:43:44.707780" +} diff --git a/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988p/score/index.json b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988p/score/index.json new file mode 100644 index 00000000000..fa4791f1717 --- /dev/null +++ b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988p/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 36.0, + "performance": 9.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988r4/index.json b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988r4/index.json new file mode 100644 index 00000000000..81ed09671a8 --- /dev/null +++ b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988r4/index.json @@ -0,0 +1,77 @@ +{ + "id": 4257, + "slug": "sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988r4", + "name": "SM-G988U Galaxy S20 Ultra 5G TD-LTE US 512GB / SM-G988R4", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 16, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 222.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 36.0, + "performance": 9.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.707780", + "updated_at": "2026-06-19T00:43:44.707780" +} diff --git a/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988r4/score/index.json b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988r4/score/index.json new file mode 100644 index 00000000000..fa4791f1717 --- /dev/null +++ b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-td-lte-us-512gb-sm-g988r4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 36.0, + "performance": 9.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-128gb-sm-g988t/index.json b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-128gb-sm-g988t/index.json new file mode 100644 index 00000000000..fb27700c71b --- /dev/null +++ b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-128gb-sm-g988t/index.json @@ -0,0 +1,77 @@ +{ + "id": 4258, + "slug": "sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-128gb-sm-g988t", + "name": "SM-G988U Galaxy S20 Ultra 5G UW TD-LTE US 128GB / SM-G988T", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 222.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 35.3, + "performance": 6.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.707780", + "updated_at": "2026-06-19T00:43:44.707780" +} diff --git a/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-128gb-sm-g988t/score/index.json b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-128gb-sm-g988t/score/index.json new file mode 100644 index 00000000000..043d2299873 --- /dev/null +++ b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-128gb-sm-g988t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 35.3, + "performance": 6.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-128gb-sm-g988v/index.json b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-128gb-sm-g988v/index.json new file mode 100644 index 00000000000..0d16edfdc54 --- /dev/null +++ b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-128gb-sm-g988v/index.json @@ -0,0 +1,77 @@ +{ + "id": 4259, + "slug": "sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-128gb-sm-g988v", + "name": "SM-G988U Galaxy S20 Ultra 5G UW TD-LTE US 128GB / SM-G988V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 222.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 35.3, + "performance": 6.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.707780", + "updated_at": "2026-06-19T00:43:44.707780" +} diff --git a/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-128gb-sm-g988v/score/index.json b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-128gb-sm-g988v/score/index.json new file mode 100644 index 00000000000..043d2299873 --- /dev/null +++ b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-128gb-sm-g988v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 35.3, + "performance": 6.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-512gb-sm-g988t/index.json b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-512gb-sm-g988t/index.json new file mode 100644 index 00000000000..2ecc8f1d752 --- /dev/null +++ b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-512gb-sm-g988t/index.json @@ -0,0 +1,77 @@ +{ + "id": 4260, + "slug": "sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-512gb-sm-g988t", + "name": "SM-G988U Galaxy S20 Ultra 5G UW TD-LTE US 512GB / SM-G988T", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 16, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 222.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 36.0, + "performance": 9.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.708781", + "updated_at": "2026-06-19T00:43:44.708781" +} diff --git a/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-512gb-sm-g988t/score/index.json b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-512gb-sm-g988t/score/index.json new file mode 100644 index 00000000000..fa4791f1717 --- /dev/null +++ b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-512gb-sm-g988t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 36.0, + "performance": 9.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-512gb-sm-g988v/index.json b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-512gb-sm-g988v/index.json new file mode 100644 index 00000000000..dbb84d980c6 --- /dev/null +++ b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-512gb-sm-g988v/index.json @@ -0,0 +1,77 @@ +{ + "id": 4261, + "slug": "sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-512gb-sm-g988v", + "name": "SM-G988U Galaxy S20 Ultra 5G UW TD-LTE US 512GB / SM-G988V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 16, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 222.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 36.0, + "performance": 9.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.708781", + "updated_at": "2026-06-19T00:43:44.708781" +} diff --git a/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-512gb-sm-g988v/score/index.json b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-512gb-sm-g988v/score/index.json new file mode 100644 index 00000000000..fa4791f1717 --- /dev/null +++ b/site/public/v1/smartphones/sm-g988u-galaxy-s20-ultra-5g-uw-td-lte-us-512gb-sm-g988v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 36.0, + "performance": 9.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g988u1-galaxy-s20-ultra-5g-td-lte-us-128gb/index.json b/site/public/v1/smartphones/sm-g988u1-galaxy-s20-ultra-5g-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..3c84d868750 --- /dev/null +++ b/site/public/v1/smartphones/sm-g988u1-galaxy-s20-ultra-5g-td-lte-us-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4262, + "slug": "sm-g988u1-galaxy-s20-ultra-5g-td-lte-us-128gb", + "name": "SM-G988U1 Galaxy S20 Ultra 5G TD-LTE US 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 222.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 35.3, + "performance": 6.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.708781", + "updated_at": "2026-06-19T00:43:44.708781" +} diff --git a/site/public/v1/smartphones/sm-g988u1-galaxy-s20-ultra-5g-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/sm-g988u1-galaxy-s20-ultra-5g-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..043d2299873 --- /dev/null +++ b/site/public/v1/smartphones/sm-g988u1-galaxy-s20-ultra-5g-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 35.3, + "performance": 6.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g988u1-galaxy-s20-ultra-5g-td-lte-us-512gb/index.json b/site/public/v1/smartphones/sm-g988u1-galaxy-s20-ultra-5g-td-lte-us-512gb/index.json new file mode 100644 index 00000000000..dac335708e7 --- /dev/null +++ b/site/public/v1/smartphones/sm-g988u1-galaxy-s20-ultra-5g-td-lte-us-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4263, + "slug": "sm-g988u1-galaxy-s20-ultra-5g-td-lte-us-512gb", + "name": "SM-G988U1 Galaxy S20 Ultra 5G TD-LTE US 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 16, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 222.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 36.0, + "performance": 9.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.708781", + "updated_at": "2026-06-19T00:43:44.708781" +} diff --git a/site/public/v1/smartphones/sm-g988u1-galaxy-s20-ultra-5g-td-lte-us-512gb/score/index.json b/site/public/v1/smartphones/sm-g988u1-galaxy-s20-ultra-5g-td-lte-us-512gb/score/index.json new file mode 100644 index 00000000000..fa4791f1717 --- /dev/null +++ b/site/public/v1/smartphones/sm-g988u1-galaxy-s20-ultra-5g-td-lte-us-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 36.0, + "performance": 9.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g988w-galaxy-s20-ultra-5g-td-lte-ca-128gb/index.json b/site/public/v1/smartphones/sm-g988w-galaxy-s20-ultra-5g-td-lte-ca-128gb/index.json new file mode 100644 index 00000000000..03117a55543 --- /dev/null +++ b/site/public/v1/smartphones/sm-g988w-galaxy-s20-ultra-5g-td-lte-ca-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4264, + "slug": "sm-g988w-galaxy-s20-ultra-5g-td-lte-ca-128gb", + "name": "SM-G988W Galaxy S20 Ultra 5G TD-LTE CA 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-06", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 222.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 35.3, + "performance": 6.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.708781", + "updated_at": "2026-06-19T00:43:44.708781" +} diff --git a/site/public/v1/smartphones/sm-g988w-galaxy-s20-ultra-5g-td-lte-ca-128gb/score/index.json b/site/public/v1/smartphones/sm-g988w-galaxy-s20-ultra-5g-td-lte-ca-128gb/score/index.json new file mode 100644 index 00000000000..043d2299873 --- /dev/null +++ b/site/public/v1/smartphones/sm-g988w-galaxy-s20-ultra-5g-td-lte-ca-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 35.3, + "performance": 6.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g988w-galaxy-s20-ultra-5g-td-lte-ca-512gb/index.json b/site/public/v1/smartphones/sm-g988w-galaxy-s20-ultra-5g-td-lte-ca-512gb/index.json new file mode 100644 index 00000000000..dda46f3a670 --- /dev/null +++ b/site/public/v1/smartphones/sm-g988w-galaxy-s20-ultra-5g-td-lte-ca-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4265, + "slug": "sm-g988w-galaxy-s20-ultra-5g-td-lte-ca-512gb", + "name": "SM-G988W Galaxy S20 Ultra 5G TD-LTE CA 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 16, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 511 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 222.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 36.0, + "performance": 9.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.708781", + "updated_at": "2026-06-19T00:43:44.708781" +} diff --git a/site/public/v1/smartphones/sm-g988w-galaxy-s20-ultra-5g-td-lte-ca-512gb/score/index.json b/site/public/v1/smartphones/sm-g988w-galaxy-s20-ultra-5g-td-lte-ca-512gb/score/index.json new file mode 100644 index 00000000000..fa4791f1717 --- /dev/null +++ b/site/public/v1/smartphones/sm-g988w-galaxy-s20-ultra-5g-td-lte-ca-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 36.0, + "performance": 9.0, + "camera": 35.8, + "battery": 35.7, + "display": 63.6, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g9900-galaxy-s21-fe-5g-dual-sim-td-lte-cn-tw-hk-128gb/index.json b/site/public/v1/smartphones/sm-g9900-galaxy-s21-fe-5g-dual-sim-td-lte-cn-tw-hk-128gb/index.json new file mode 100644 index 00000000000..eb5f7245f2c --- /dev/null +++ b/site/public/v1/smartphones/sm-g9900-galaxy-s21-fe-5g-dual-sim-td-lte-cn-tw-hk-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4571, + "slug": "sm-g9900-galaxy-s21-fe-5g-dual-sim-td-lte-cn-tw-hk-128gb", + "name": "SM-G9900 Galaxy S21 FE 5G Dual SIM TD-LTE CN TW HK 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2022-01-04", + "msrp_usd": 4599, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 6.4, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": 12.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.750204", + "updated_at": "2026-06-19T00:43:44.750204" +} diff --git a/site/public/v1/smartphones/sm-g9900-galaxy-s21-fe-5g-dual-sim-td-lte-cn-tw-hk-128gb/score/index.json b/site/public/v1/smartphones/sm-g9900-galaxy-s21-fe-5g-dual-sim-td-lte-cn-tw-hk-128gb/score/index.json new file mode 100644 index 00000000000..88ef7809d8d --- /dev/null +++ b/site/public/v1/smartphones/sm-g9900-galaxy-s21-fe-5g-dual-sim-td-lte-cn-tw-hk-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 6.4, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": 12.3 +} diff --git a/site/public/v1/smartphones/sm-g9900-galaxy-s21-fe-5g-dual-sim-td-lte-cn-tw-hk-256gb/index.json b/site/public/v1/smartphones/sm-g9900-galaxy-s21-fe-5g-dual-sim-td-lte-cn-tw-hk-256gb/index.json new file mode 100644 index 00000000000..42cfd94f852 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9900-galaxy-s21-fe-5g-dual-sim-td-lte-cn-tw-hk-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4572, + "slug": "sm-g9900-galaxy-s21-fe-5g-dual-sim-td-lte-cn-tw-hk-256gb", + "name": "SM-G9900 Galaxy S21 FE 5G Dual SIM TD-LTE CN TW HK 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2022-01-04", + "msrp_usd": 4999, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 6.4, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": 12.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.750204", + "updated_at": "2026-06-19T00:43:44.750204" +} diff --git a/site/public/v1/smartphones/sm-g9900-galaxy-s21-fe-5g-dual-sim-td-lte-cn-tw-hk-256gb/score/index.json b/site/public/v1/smartphones/sm-g9900-galaxy-s21-fe-5g-dual-sim-td-lte-cn-tw-hk-256gb/score/index.json new file mode 100644 index 00000000000..88ef7809d8d --- /dev/null +++ b/site/public/v1/smartphones/sm-g9900-galaxy-s21-fe-5g-dual-sim-td-lte-cn-tw-hk-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 6.4, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": 12.3 +} diff --git a/site/public/v1/smartphones/sm-g990b-ds-galaxy-s21-fe-5g-global-dual-sim-td-lte-128gb-sm-g990b2-ds/index.json b/site/public/v1/smartphones/sm-g990b-ds-galaxy-s21-fe-5g-global-dual-sim-td-lte-128gb-sm-g990b2-ds/index.json new file mode 100644 index 00000000000..cda4bfc0cc8 --- /dev/null +++ b/site/public/v1/smartphones/sm-g990b-ds-galaxy-s21-fe-5g-global-dual-sim-td-lte-128gb-sm-g990b2-ds/index.json @@ -0,0 +1,77 @@ +{ + "id": 4573, + "slug": "sm-g990b-ds-galaxy-s21-fe-5g-global-dual-sim-td-lte-128gb-sm-g990b2-ds", + "name": "SM-G990B/DS Galaxy S21 FE 5G Global Dual SIM TD-LTE 128GB / SM-G990B2/DS", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2022-01-11", + "msrp_usd": 699, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 4.9, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": 46.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.750204", + "updated_at": "2026-06-19T00:43:44.750204" +} diff --git a/site/public/v1/smartphones/sm-g990b-ds-galaxy-s21-fe-5g-global-dual-sim-td-lte-128gb-sm-g990b2-ds/score/index.json b/site/public/v1/smartphones/sm-g990b-ds-galaxy-s21-fe-5g-global-dual-sim-td-lte-128gb-sm-g990b2-ds/score/index.json new file mode 100644 index 00000000000..ce112158d3d --- /dev/null +++ b/site/public/v1/smartphones/sm-g990b-ds-galaxy-s21-fe-5g-global-dual-sim-td-lte-128gb-sm-g990b2-ds/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 4.9, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": 46.8 +} diff --git a/site/public/v1/smartphones/sm-g990b-ds-galaxy-s21-fe-5g-global-dual-sim-td-lte-256gb-sm-g990b2-ds/index.json b/site/public/v1/smartphones/sm-g990b-ds-galaxy-s21-fe-5g-global-dual-sim-td-lte-256gb-sm-g990b2-ds/index.json new file mode 100644 index 00000000000..a6bd97ebdf4 --- /dev/null +++ b/site/public/v1/smartphones/sm-g990b-ds-galaxy-s21-fe-5g-global-dual-sim-td-lte-256gb-sm-g990b2-ds/index.json @@ -0,0 +1,77 @@ +{ + "id": 4574, + "slug": "sm-g990b-ds-galaxy-s21-fe-5g-global-dual-sim-td-lte-256gb-sm-g990b2-ds", + "name": "SM-G990B/DS Galaxy S21 FE 5G Global Dual SIM TD-LTE 256GB / SM-G990B2/DS", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2022-01-11", + "msrp_usd": 749, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 6.4, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": 45.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.750204", + "updated_at": "2026-06-19T00:43:44.750204" +} diff --git a/site/public/v1/smartphones/sm-g990b-ds-galaxy-s21-fe-5g-global-dual-sim-td-lte-256gb-sm-g990b2-ds/score/index.json b/site/public/v1/smartphones/sm-g990b-ds-galaxy-s21-fe-5g-global-dual-sim-td-lte-256gb-sm-g990b2-ds/score/index.json new file mode 100644 index 00000000000..13c60011275 --- /dev/null +++ b/site/public/v1/smartphones/sm-g990b-ds-galaxy-s21-fe-5g-global-dual-sim-td-lte-256gb-sm-g990b2-ds/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 6.4, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": 45.0 +} diff --git a/site/public/v1/smartphones/sm-g990e-ds-galaxy-s21-fe-5g-dual-sim-td-lte-apac-mea-128gb/index.json b/site/public/v1/smartphones/sm-g990e-ds-galaxy-s21-fe-5g-dual-sim-td-lte-apac-mea-128gb/index.json new file mode 100644 index 00000000000..8e35dc93102 --- /dev/null +++ b/site/public/v1/smartphones/sm-g990e-ds-galaxy-s21-fe-5g-dual-sim-td-lte-apac-mea-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4575, + "slug": "sm-g990e-ds-galaxy-s21-fe-5g-dual-sim-td-lte-apac-mea-128gb", + "name": "SM-G990E/DS Galaxy S21 FE 5G Dual SIM TD-LTE APAC MEA 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 200, + "slug": "exynos-2100", + "name": "Samsung Exynos 2100", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP14", + "url": "/v1/socs/exynos-2100" + }, + "release_date": "2022-01-04", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 4.5, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.750204", + "updated_at": "2026-06-19T00:43:44.750204" +} diff --git a/site/public/v1/smartphones/sm-g990e-ds-galaxy-s21-fe-5g-dual-sim-td-lte-apac-mea-128gb/score/index.json b/site/public/v1/smartphones/sm-g990e-ds-galaxy-s21-fe-5g-dual-sim-td-lte-apac-mea-128gb/score/index.json new file mode 100644 index 00000000000..27f6aa635a6 --- /dev/null +++ b/site/public/v1/smartphones/sm-g990e-ds-galaxy-s21-fe-5g-dual-sim-td-lte-apac-mea-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 4.5, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g990e-ds-galaxy-s21-fe-5g-dual-sim-td-lte-apac-mea-256gb/index.json b/site/public/v1/smartphones/sm-g990e-ds-galaxy-s21-fe-5g-dual-sim-td-lte-apac-mea-256gb/index.json new file mode 100644 index 00000000000..ad51f487dee --- /dev/null +++ b/site/public/v1/smartphones/sm-g990e-ds-galaxy-s21-fe-5g-dual-sim-td-lte-apac-mea-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4576, + "slug": "sm-g990e-ds-galaxy-s21-fe-5g-dual-sim-td-lte-apac-mea-256gb", + "name": "SM-G990E/DS Galaxy S21 FE 5G Dual SIM TD-LTE APAC MEA 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 200, + "slug": "exynos-2100", + "name": "Samsung Exynos 2100", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP14", + "url": "/v1/socs/exynos-2100" + }, + "release_date": "2022-01-11", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 4.5, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.750204", + "updated_at": "2026-06-19T00:43:44.750204" +} diff --git a/site/public/v1/smartphones/sm-g990e-ds-galaxy-s21-fe-5g-dual-sim-td-lte-apac-mea-256gb/score/index.json b/site/public/v1/smartphones/sm-g990e-ds-galaxy-s21-fe-5g-dual-sim-td-lte-apac-mea-256gb/score/index.json new file mode 100644 index 00000000000..27f6aa635a6 --- /dev/null +++ b/site/public/v1/smartphones/sm-g990e-ds-galaxy-s21-fe-5g-dual-sim-td-lte-apac-mea-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 4.5, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g990e-galaxy-s21-fe-5g-td-lte-apac-mea-128gb/index.json b/site/public/v1/smartphones/sm-g990e-galaxy-s21-fe-5g-td-lte-apac-mea-128gb/index.json new file mode 100644 index 00000000000..e81391dcdc1 --- /dev/null +++ b/site/public/v1/smartphones/sm-g990e-galaxy-s21-fe-5g-td-lte-apac-mea-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4577, + "slug": "sm-g990e-galaxy-s21-fe-5g-td-lte-apac-mea-128gb", + "name": "SM-G990E Galaxy S21 FE 5G TD-LTE APAC MEA 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 200, + "slug": "exynos-2100", + "name": "Samsung Exynos 2100", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP14", + "url": "/v1/socs/exynos-2100" + }, + "release_date": "2022-01-04", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 4.5, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.750204", + "updated_at": "2026-06-19T00:43:44.750204" +} diff --git a/site/public/v1/smartphones/sm-g990e-galaxy-s21-fe-5g-td-lte-apac-mea-128gb/score/index.json b/site/public/v1/smartphones/sm-g990e-galaxy-s21-fe-5g-td-lte-apac-mea-128gb/score/index.json new file mode 100644 index 00000000000..27f6aa635a6 --- /dev/null +++ b/site/public/v1/smartphones/sm-g990e-galaxy-s21-fe-5g-td-lte-apac-mea-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 4.5, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g990n-galaxy-s21-fe-5g-uw-td-lte-kr-128gb/index.json b/site/public/v1/smartphones/sm-g990n-galaxy-s21-fe-5g-uw-td-lte-kr-128gb/index.json new file mode 100644 index 00000000000..0a38b8b5a25 --- /dev/null +++ b/site/public/v1/smartphones/sm-g990n-galaxy-s21-fe-5g-uw-td-lte-kr-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4578, + "slug": "sm-g990n-galaxy-s21-fe-5g-uw-td-lte-kr-128gb", + "name": "SM-G990N Galaxy S21 FE 5G UW TD-LTE KR 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 200, + "slug": "exynos-2100", + "name": "Samsung Exynos 2100", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP14", + "url": "/v1/socs/exynos-2100" + }, + "release_date": "2022-02-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 4.5, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.750204", + "updated_at": "2026-06-19T00:43:44.750204" +} diff --git a/site/public/v1/smartphones/sm-g990n-galaxy-s21-fe-5g-uw-td-lte-kr-128gb/score/index.json b/site/public/v1/smartphones/sm-g990n-galaxy-s21-fe-5g-uw-td-lte-kr-128gb/score/index.json new file mode 100644 index 00000000000..27f6aa635a6 --- /dev/null +++ b/site/public/v1/smartphones/sm-g990n-galaxy-s21-fe-5g-uw-td-lte-kr-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.1, + "performance": 4.5, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990a-sm-g990u2/index.json b/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990a-sm-g990u2/index.json new file mode 100644 index 00000000000..c5d42755cfb --- /dev/null +++ b/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990a-sm-g990u2/index.json @@ -0,0 +1,77 @@ +{ + "id": 4579, + "slug": "sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990a-sm-g990u2", + "name": "SM-G990U Galaxy S21 FE 5G UW TD-LTE US 128GB / SM-G990A / SM-G990U2", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2022-01-04", + "msrp_usd": 699, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 4.9, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": 46.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.750204", + "updated_at": "2026-06-19T00:43:44.750204" +} diff --git a/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990a-sm-g990u2/score/index.json b/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990a-sm-g990u2/score/index.json new file mode 100644 index 00000000000..ce112158d3d --- /dev/null +++ b/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990a-sm-g990u2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 4.9, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": 46.8 +} diff --git a/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990r4-sm-g990u2/index.json b/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990r4-sm-g990u2/index.json new file mode 100644 index 00000000000..fd2e8820f07 --- /dev/null +++ b/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990r4-sm-g990u2/index.json @@ -0,0 +1,77 @@ +{ + "id": 4580, + "slug": "sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990r4-sm-g990u2", + "name": "SM-G990U Galaxy S21 FE 5G UW TD-LTE US 128GB / SM-G990R4 / SM-G990U2", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2022-01-04", + "msrp_usd": 700, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 4.9, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": 46.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.751203", + "updated_at": "2026-06-19T00:43:44.751203" +} diff --git a/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990r4-sm-g990u2/score/index.json b/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990r4-sm-g990u2/score/index.json new file mode 100644 index 00000000000..6806968f06a --- /dev/null +++ b/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990r4-sm-g990u2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 4.9, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": 46.7 +} diff --git a/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990t-sm-g990u2/index.json b/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990t-sm-g990u2/index.json new file mode 100644 index 00000000000..6e603c1f74c --- /dev/null +++ b/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990t-sm-g990u2/index.json @@ -0,0 +1,77 @@ +{ + "id": 4581, + "slug": "sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990t-sm-g990u2", + "name": "SM-G990U Galaxy S21 FE 5G UW TD-LTE US 128GB / SM-G990T / SM-G990U2", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2022-01-04", + "msrp_usd": 700, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 4.9, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": 46.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.751203", + "updated_at": "2026-06-19T00:43:44.751203" +} diff --git a/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990t-sm-g990u2/score/index.json b/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990t-sm-g990u2/score/index.json new file mode 100644 index 00000000000..6806968f06a --- /dev/null +++ b/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990t-sm-g990u2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 4.9, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": 46.7 +} diff --git a/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990v-sm-g990u2/index.json b/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990v-sm-g990u2/index.json new file mode 100644 index 00000000000..c1f7bce771a --- /dev/null +++ b/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990v-sm-g990u2/index.json @@ -0,0 +1,77 @@ +{ + "id": 4582, + "slug": "sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990v-sm-g990u2", + "name": "SM-G990U Galaxy S21 FE 5G UW TD-LTE US 128GB / SM-G990V / SM-G990U2", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2022-01-04", + "msrp_usd": 700, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 4.9, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": 46.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.751203", + "updated_at": "2026-06-19T00:43:44.751203" +} diff --git a/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990v-sm-g990u2/score/index.json b/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990v-sm-g990u2/score/index.json new file mode 100644 index 00000000000..6806968f06a --- /dev/null +++ b/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-128gb-sm-g990v-sm-g990u2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 4.9, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": 46.7 +} diff --git a/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990a-sm-g990u2/index.json b/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990a-sm-g990u2/index.json new file mode 100644 index 00000000000..7f93df6f621 --- /dev/null +++ b/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990a-sm-g990u2/index.json @@ -0,0 +1,77 @@ +{ + "id": 4583, + "slug": "sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990a-sm-g990u2", + "name": "SM-G990U Galaxy S21 FE 5G UW TD-LTE US 256GB / SM-G990A / SM-G990U2", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2022-01-04", + "msrp_usd": 770, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 6.4, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": 44.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.751203", + "updated_at": "2026-06-19T00:43:44.751203" +} diff --git a/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990a-sm-g990u2/score/index.json b/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990a-sm-g990u2/score/index.json new file mode 100644 index 00000000000..33dc050331b --- /dev/null +++ b/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990a-sm-g990u2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 6.4, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": 44.2 +} diff --git a/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990r4-sm-g990u2/index.json b/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990r4-sm-g990u2/index.json new file mode 100644 index 00000000000..3b8c14f423d --- /dev/null +++ b/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990r4-sm-g990u2/index.json @@ -0,0 +1,77 @@ +{ + "id": 4584, + "slug": "sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990r4-sm-g990u2", + "name": "SM-G990U Galaxy S21 FE 5G UW TD-LTE US 256GB / SM-G990R4 / SM-G990U2", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2022-01-04", + "msrp_usd": 770, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 6.4, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": 44.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.751203", + "updated_at": "2026-06-19T00:43:44.751203" +} diff --git a/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990r4-sm-g990u2/score/index.json b/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990r4-sm-g990u2/score/index.json new file mode 100644 index 00000000000..33dc050331b --- /dev/null +++ b/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990r4-sm-g990u2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 6.4, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": 44.2 +} diff --git a/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990t-sm-g990u2/index.json b/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990t-sm-g990u2/index.json new file mode 100644 index 00000000000..130f7ba9f4c --- /dev/null +++ b/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990t-sm-g990u2/index.json @@ -0,0 +1,77 @@ +{ + "id": 4585, + "slug": "sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990t-sm-g990u2", + "name": "SM-G990U Galaxy S21 FE 5G UW TD-LTE US 256GB / SM-G990T / SM-G990U2", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2022-01-04", + "msrp_usd": 770, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 6.4, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": 44.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.751203", + "updated_at": "2026-06-19T00:43:44.751203" +} diff --git a/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990t-sm-g990u2/score/index.json b/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990t-sm-g990u2/score/index.json new file mode 100644 index 00000000000..33dc050331b --- /dev/null +++ b/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990t-sm-g990u2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 6.4, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": 44.2 +} diff --git a/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990v-sm-g990u2/index.json b/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990v-sm-g990u2/index.json new file mode 100644 index 00000000000..29f639f70a1 --- /dev/null +++ b/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990v-sm-g990u2/index.json @@ -0,0 +1,77 @@ +{ + "id": 4586, + "slug": "sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990v-sm-g990u2", + "name": "SM-G990U Galaxy S21 FE 5G UW TD-LTE US 256GB / SM-G990V / SM-G990U2", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2022-01-04", + "msrp_usd": 770, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 6.4, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": 44.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.751203", + "updated_at": "2026-06-19T00:43:44.751203" +} diff --git a/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990v-sm-g990u2/score/index.json b/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990v-sm-g990u2/score/index.json new file mode 100644 index 00000000000..33dc050331b --- /dev/null +++ b/site/public/v1/smartphones/sm-g990u-galaxy-s21-fe-5g-uw-td-lte-us-256gb-sm-g990v-sm-g990u2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 6.4, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": 44.2 +} diff --git a/site/public/v1/smartphones/sm-g990u1-galaxy-s21-fe-5g-uw-dual-sim-td-lte-us-128gb-sm-g990u3-ds/index.json b/site/public/v1/smartphones/sm-g990u1-galaxy-s21-fe-5g-uw-dual-sim-td-lte-us-128gb-sm-g990u3-ds/index.json new file mode 100644 index 00000000000..12dee03ba3d --- /dev/null +++ b/site/public/v1/smartphones/sm-g990u1-galaxy-s21-fe-5g-uw-dual-sim-td-lte-us-128gb-sm-g990u3-ds/index.json @@ -0,0 +1,77 @@ +{ + "id": 4587, + "slug": "sm-g990u1-galaxy-s21-fe-5g-uw-dual-sim-td-lte-us-128gb-sm-g990u3-ds", + "name": "SM-G990U1 Galaxy S21 FE 5G UW Dual SIM TD-LTE US 128GB / SM-G990U3/DS", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2022-01-04", + "msrp_usd": 700, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 4.9, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": 46.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.752203", + "updated_at": "2026-06-19T00:43:44.752203" +} diff --git a/site/public/v1/smartphones/sm-g990u1-galaxy-s21-fe-5g-uw-dual-sim-td-lte-us-128gb-sm-g990u3-ds/score/index.json b/site/public/v1/smartphones/sm-g990u1-galaxy-s21-fe-5g-uw-dual-sim-td-lte-us-128gb-sm-g990u3-ds/score/index.json new file mode 100644 index 00000000000..6806968f06a --- /dev/null +++ b/site/public/v1/smartphones/sm-g990u1-galaxy-s21-fe-5g-uw-dual-sim-td-lte-us-128gb-sm-g990u3-ds/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 4.9, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": 46.7 +} diff --git a/site/public/v1/smartphones/sm-g990u1-galaxy-s21-fe-5g-uw-dual-sim-td-lte-us-256gb-sm-g990u3-ds/index.json b/site/public/v1/smartphones/sm-g990u1-galaxy-s21-fe-5g-uw-dual-sim-td-lte-us-256gb-sm-g990u3-ds/index.json new file mode 100644 index 00000000000..8aa110743ad --- /dev/null +++ b/site/public/v1/smartphones/sm-g990u1-galaxy-s21-fe-5g-uw-dual-sim-td-lte-us-256gb-sm-g990u3-ds/index.json @@ -0,0 +1,77 @@ +{ + "id": 4588, + "slug": "sm-g990u1-galaxy-s21-fe-5g-uw-dual-sim-td-lte-us-256gb-sm-g990u3-ds", + "name": "SM-G990U1 Galaxy S21 FE 5G UW Dual SIM TD-LTE US 256GB / SM-G990U3/DS", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2022-01-04", + "msrp_usd": 770, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 6.4, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": 44.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.752203", + "updated_at": "2026-06-19T00:43:44.752203" +} diff --git a/site/public/v1/smartphones/sm-g990u1-galaxy-s21-fe-5g-uw-dual-sim-td-lte-us-256gb-sm-g990u3-ds/score/index.json b/site/public/v1/smartphones/sm-g990u1-galaxy-s21-fe-5g-uw-dual-sim-td-lte-us-256gb-sm-g990u3-ds/score/index.json new file mode 100644 index 00000000000..33dc050331b --- /dev/null +++ b/site/public/v1/smartphones/sm-g990u1-galaxy-s21-fe-5g-uw-dual-sim-td-lte-us-256gb-sm-g990u3-ds/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 6.4, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": 44.2 +} diff --git a/site/public/v1/smartphones/sm-g990w-galaxy-s21-fe-5g-td-lte-ca-128gb-sm-g990w2/index.json b/site/public/v1/smartphones/sm-g990w-galaxy-s21-fe-5g-td-lte-ca-128gb-sm-g990w2/index.json new file mode 100644 index 00000000000..26b91ce0b5f --- /dev/null +++ b/site/public/v1/smartphones/sm-g990w-galaxy-s21-fe-5g-td-lte-ca-128gb-sm-g990w2/index.json @@ -0,0 +1,77 @@ +{ + "id": 4589, + "slug": "sm-g990w-galaxy-s21-fe-5g-td-lte-ca-128gb-sm-g990w2", + "name": "SM-G990W Galaxy S21 FE 5G TD-LTE CA 128GB / SM-G990W2", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2022-01-04", + "msrp_usd": 950, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 4.9, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": 37.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.752203", + "updated_at": "2026-06-19T00:43:44.752203" +} diff --git a/site/public/v1/smartphones/sm-g990w-galaxy-s21-fe-5g-td-lte-ca-128gb-sm-g990w2/score/index.json b/site/public/v1/smartphones/sm-g990w-galaxy-s21-fe-5g-td-lte-ca-128gb-sm-g990w2/score/index.json new file mode 100644 index 00000000000..67b8d90151f --- /dev/null +++ b/site/public/v1/smartphones/sm-g990w-galaxy-s21-fe-5g-td-lte-ca-128gb-sm-g990w2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 4.9, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": 37.1 +} diff --git a/site/public/v1/smartphones/sm-g990w-galaxy-s21-fe-5g-td-lte-ca-256gb-sm-g990w2/index.json b/site/public/v1/smartphones/sm-g990w-galaxy-s21-fe-5g-td-lte-ca-256gb-sm-g990w2/index.json new file mode 100644 index 00000000000..21dde04aa7c --- /dev/null +++ b/site/public/v1/smartphones/sm-g990w-galaxy-s21-fe-5g-td-lte-ca-256gb-sm-g990w2/index.json @@ -0,0 +1,77 @@ +{ + "id": 4590, + "slug": "sm-g990w-galaxy-s21-fe-5g-td-lte-ca-256gb-sm-g990w2", + "name": "SM-G990W Galaxy S21 FE 5G TD-LTE CA 256GB / SM-G990W2", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2022-01-04", + "msrp_usd": 1040, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 6.4, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": 33.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.752203", + "updated_at": "2026-06-19T00:43:44.752203" +} diff --git a/site/public/v1/smartphones/sm-g990w-galaxy-s21-fe-5g-td-lte-ca-256gb-sm-g990w2/score/index.json b/site/public/v1/smartphones/sm-g990w-galaxy-s21-fe-5g-td-lte-ca-256gb-sm-g990w2/score/index.json new file mode 100644 index 00000000000..67d4b57c5f0 --- /dev/null +++ b/site/public/v1/smartphones/sm-g990w-galaxy-s21-fe-5g-td-lte-ca-256gb-sm-g990w2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 6.4, + "camera": 5.0, + "battery": 34.4, + "display": 52.7, + "value": 33.9 +} diff --git a/site/public/v1/smartphones/sm-g9910-galaxy-s21-5g-dual-sim-td-lte-cn-hk-128gb/index.json b/site/public/v1/smartphones/sm-g9910-galaxy-s21-5g-dual-sim-td-lte-cn-hk-128gb/index.json new file mode 100644 index 00000000000..e6f0d6b1e80 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9910-galaxy-s21-5g-dual-sim-td-lte-cn-hk-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4444, + "slug": "sm-g9910-galaxy-s21-5g-dual-sim-td-lte-cn-hk-128gb", + "name": "SM-G9910 Galaxy S21 5G Dual SIM TD-LTE CN HK 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 4999, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": 11.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.735204", + "updated_at": "2026-06-19T00:43:44.735204" +} diff --git a/site/public/v1/smartphones/sm-g9910-galaxy-s21-5g-dual-sim-td-lte-cn-hk-128gb/score/index.json b/site/public/v1/smartphones/sm-g9910-galaxy-s21-5g-dual-sim-td-lte-cn-hk-128gb/score/index.json new file mode 100644 index 00000000000..7f4723a407f --- /dev/null +++ b/site/public/v1/smartphones/sm-g9910-galaxy-s21-5g-dual-sim-td-lte-cn-hk-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": 11.7 +} diff --git a/site/public/v1/smartphones/sm-g9910-galaxy-s21-5g-dual-sim-td-lte-cn-hk-256gb/index.json b/site/public/v1/smartphones/sm-g9910-galaxy-s21-5g-dual-sim-td-lte-cn-hk-256gb/index.json new file mode 100644 index 00000000000..d51b392e634 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9910-galaxy-s21-5g-dual-sim-td-lte-cn-hk-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4445, + "slug": "sm-g9910-galaxy-s21-5g-dual-sim-td-lte-cn-hk-256gb", + "name": "SM-G9910 Galaxy S21 5G Dual SIM TD-LTE CN HK 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.735204", + "updated_at": "2026-06-19T00:43:44.735204" +} diff --git a/site/public/v1/smartphones/sm-g9910-galaxy-s21-5g-dual-sim-td-lte-cn-hk-256gb/score/index.json b/site/public/v1/smartphones/sm-g9910-galaxy-s21-5g-dual-sim-td-lte-cn-hk-256gb/score/index.json new file mode 100644 index 00000000000..a18f758fd06 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9910-galaxy-s21-5g-dual-sim-td-lte-cn-hk-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g991b-ds-galaxy-s21-5g-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-g991b-ds-galaxy-s21-5g-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..cc172d08ea2 --- /dev/null +++ b/site/public/v1/smartphones/sm-g991b-ds-galaxy-s21-5g-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4446, + "slug": "sm-g991b-ds-galaxy-s21-5g-global-dual-sim-td-lte-128gb", + "name": "SM-G991B/DS Galaxy S21 5G Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 200, + "slug": "exynos-2100", + "name": "Samsung Exynos 2100", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP14", + "url": "/v1/socs/exynos-2100" + }, + "release_date": "2021-01-29", + "msrp_usd": 849, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 4.5, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": 40.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.735204", + "updated_at": "2026-06-19T00:43:44.735204" +} diff --git a/site/public/v1/smartphones/sm-g991b-ds-galaxy-s21-5g-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-g991b-ds-galaxy-s21-5g-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..a4f0c562345 --- /dev/null +++ b/site/public/v1/smartphones/sm-g991b-ds-galaxy-s21-5g-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 4.5, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": 40.3 +} diff --git a/site/public/v1/smartphones/sm-g991b-ds-galaxy-s21-5g-global-dual-sim-td-lte-256gb/index.json b/site/public/v1/smartphones/sm-g991b-ds-galaxy-s21-5g-global-dual-sim-td-lte-256gb/index.json new file mode 100644 index 00000000000..c61d7e041eb --- /dev/null +++ b/site/public/v1/smartphones/sm-g991b-ds-galaxy-s21-5g-global-dual-sim-td-lte-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4447, + "slug": "sm-g991b-ds-galaxy-s21-5g-global-dual-sim-td-lte-256gb", + "name": "SM-G991B/DS Galaxy S21 5G Global Dual SIM TD-LTE 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 200, + "slug": "exynos-2100", + "name": "Samsung Exynos 2100", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP14", + "url": "/v1/socs/exynos-2100" + }, + "release_date": "2021-01-29", + "msrp_usd": 899, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 4.5, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": 38.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.735204", + "updated_at": "2026-06-19T00:43:44.735204" +} diff --git a/site/public/v1/smartphones/sm-g991b-ds-galaxy-s21-5g-global-dual-sim-td-lte-256gb/score/index.json b/site/public/v1/smartphones/sm-g991b-ds-galaxy-s21-5g-global-dual-sim-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..23769f0038d --- /dev/null +++ b/site/public/v1/smartphones/sm-g991b-ds-galaxy-s21-5g-global-dual-sim-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 4.5, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": 38.4 +} diff --git a/site/public/v1/smartphones/sm-g991d-galaxy-s21-5g-uw-olympic-games-edition-td-lte-jp-256gb-sc-51b/index.json b/site/public/v1/smartphones/sm-g991d-galaxy-s21-5g-uw-olympic-games-edition-td-lte-jp-256gb-sc-51b/index.json new file mode 100644 index 00000000000..06d4601e198 --- /dev/null +++ b/site/public/v1/smartphones/sm-g991d-galaxy-s21-5g-uw-olympic-games-edition-td-lte-jp-256gb-sc-51b/index.json @@ -0,0 +1,77 @@ +{ + "id": 4448, + "slug": "sm-g991d-galaxy-s21-5g-uw-olympic-games-edition-td-lte-jp-256gb-sc-51b", + "name": "SM-G991D Galaxy S21 5G UW Olympic Games Edition TD-LTE JP 256GB SC-51B", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-22", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.735204", + "updated_at": "2026-06-19T00:43:44.735204" +} diff --git a/site/public/v1/smartphones/sm-g991d-galaxy-s21-5g-uw-olympic-games-edition-td-lte-jp-256gb-sc-51b/score/index.json b/site/public/v1/smartphones/sm-g991d-galaxy-s21-5g-uw-olympic-games-edition-td-lte-jp-256gb-sc-51b/score/index.json new file mode 100644 index 00000000000..a18f758fd06 --- /dev/null +++ b/site/public/v1/smartphones/sm-g991d-galaxy-s21-5g-uw-olympic-games-edition-td-lte-jp-256gb-sc-51b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g991d-galaxy-s21-5g-uw-td-lte-jp-256gb-sc-51b-sgh-n649/index.json b/site/public/v1/smartphones/sm-g991d-galaxy-s21-5g-uw-td-lte-jp-256gb-sc-51b-sgh-n649/index.json new file mode 100644 index 00000000000..2267789779f --- /dev/null +++ b/site/public/v1/smartphones/sm-g991d-galaxy-s21-5g-uw-td-lte-jp-256gb-sc-51b-sgh-n649/index.json @@ -0,0 +1,77 @@ +{ + "id": 4449, + "slug": "sm-g991d-galaxy-s21-5g-uw-td-lte-jp-256gb-sc-51b-sgh-n649", + "name": "SM-G991D Galaxy S21 5G UW TD-LTE JP 256GB SC-51B / SGH-N649", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-22", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.735204", + "updated_at": "2026-06-19T00:43:44.735204" +} diff --git a/site/public/v1/smartphones/sm-g991d-galaxy-s21-5g-uw-td-lte-jp-256gb-sc-51b-sgh-n649/score/index.json b/site/public/v1/smartphones/sm-g991d-galaxy-s21-5g-uw-td-lte-jp-256gb-sc-51b-sgh-n649/score/index.json new file mode 100644 index 00000000000..a18f758fd06 --- /dev/null +++ b/site/public/v1/smartphones/sm-g991d-galaxy-s21-5g-uw-td-lte-jp-256gb-sc-51b-sgh-n649/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g991j-galaxy-s21-5g-uw-td-lte-jp-256gb-scg09/index.json b/site/public/v1/smartphones/sm-g991j-galaxy-s21-5g-uw-td-lte-jp-256gb-scg09/index.json new file mode 100644 index 00000000000..405d6e6cb31 --- /dev/null +++ b/site/public/v1/smartphones/sm-g991j-galaxy-s21-5g-uw-td-lte-jp-256gb-scg09/index.json @@ -0,0 +1,77 @@ +{ + "id": 4450, + "slug": "sm-g991j-galaxy-s21-5g-uw-td-lte-jp-256gb-scg09", + "name": "SM-G991J Galaxy S21 5G UW TD-LTE JP 256GB SCG09", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-22", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.735204", + "updated_at": "2026-06-19T00:43:44.735204" +} diff --git a/site/public/v1/smartphones/sm-g991j-galaxy-s21-5g-uw-td-lte-jp-256gb-scg09/score/index.json b/site/public/v1/smartphones/sm-g991j-galaxy-s21-5g-uw-td-lte-jp-256gb-scg09/score/index.json new file mode 100644 index 00000000000..a18f758fd06 --- /dev/null +++ b/site/public/v1/smartphones/sm-g991j-galaxy-s21-5g-uw-td-lte-jp-256gb-scg09/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g991n-galaxy-s21-5g-td-lte-kr-256gb/index.json b/site/public/v1/smartphones/sm-g991n-galaxy-s21-5g-td-lte-kr-256gb/index.json new file mode 100644 index 00000000000..8bdf6dfe6c7 --- /dev/null +++ b/site/public/v1/smartphones/sm-g991n-galaxy-s21-5g-td-lte-kr-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4451, + "slug": "sm-g991n-galaxy-s21-5g-td-lte-kr-256gb", + "name": "SM-G991N Galaxy S21 5G TD-LTE KR 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 200, + "slug": "exynos-2100", + "name": "Samsung Exynos 2100", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP14", + "url": "/v1/socs/exynos-2100" + }, + "release_date": "2021-01-29", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 4.5, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.736203", + "updated_at": "2026-06-19T00:43:44.736203" +} diff --git a/site/public/v1/smartphones/sm-g991n-galaxy-s21-5g-td-lte-kr-256gb/score/index.json b/site/public/v1/smartphones/sm-g991n-galaxy-s21-5g-td-lte-kr-256gb/score/index.json new file mode 100644 index 00000000000..92c571c405d --- /dev/null +++ b/site/public/v1/smartphones/sm-g991n-galaxy-s21-5g-td-lte-kr-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 4.5, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991a/index.json b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991a/index.json new file mode 100644 index 00000000000..d2f5609cbb4 --- /dev/null +++ b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991a/index.json @@ -0,0 +1,77 @@ +{ + "id": 4452, + "slug": "sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991a", + "name": "SM-G991U Galaxy S21 5G UW Dual SIM TD-LTE US 128GB / SM-G991A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 800, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": 42.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.736203", + "updated_at": "2026-06-19T00:43:44.736203" +} diff --git a/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991a/score/index.json b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991a/score/index.json new file mode 100644 index 00000000000..9527fd98758 --- /dev/null +++ b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": 42.4 +} diff --git a/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991p/index.json b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991p/index.json new file mode 100644 index 00000000000..568accfdecc --- /dev/null +++ b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991p/index.json @@ -0,0 +1,77 @@ +{ + "id": 4453, + "slug": "sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991p", + "name": "SM-G991U Galaxy S21 5G UW Dual SIM TD-LTE US 128GB / SM-G991P", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 800, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": 42.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.736203", + "updated_at": "2026-06-19T00:43:44.736203" +} diff --git a/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991p/score/index.json b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991p/score/index.json new file mode 100644 index 00000000000..9527fd98758 --- /dev/null +++ b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991p/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": 42.4 +} diff --git a/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991r4/index.json b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991r4/index.json new file mode 100644 index 00000000000..3da7f5f9b9a --- /dev/null +++ b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991r4/index.json @@ -0,0 +1,77 @@ +{ + "id": 4454, + "slug": "sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991r4", + "name": "SM-G991U Galaxy S21 5G UW Dual SIM TD-LTE US 128GB / SM-G991R4", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 800, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": 42.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.736203", + "updated_at": "2026-06-19T00:43:44.736203" +} diff --git a/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991r4/score/index.json b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991r4/score/index.json new file mode 100644 index 00000000000..9527fd98758 --- /dev/null +++ b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991r4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": 42.4 +} diff --git a/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991t/index.json b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991t/index.json new file mode 100644 index 00000000000..7b91d6183ae --- /dev/null +++ b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991t/index.json @@ -0,0 +1,77 @@ +{ + "id": 4455, + "slug": "sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991t", + "name": "SM-G991U Galaxy S21 5G UW Dual SIM TD-LTE US 128GB / SM-G991T", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 800, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": 42.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.736203", + "updated_at": "2026-06-19T00:43:44.736203" +} diff --git a/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991t/score/index.json b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991t/score/index.json new file mode 100644 index 00000000000..9527fd98758 --- /dev/null +++ b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": 42.4 +} diff --git a/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991v/index.json b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991v/index.json new file mode 100644 index 00000000000..2b2b9938419 --- /dev/null +++ b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991v/index.json @@ -0,0 +1,77 @@ +{ + "id": 4456, + "slug": "sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991v", + "name": "SM-G991U Galaxy S21 5G UW Dual SIM TD-LTE US 128GB / SM-G991V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 799, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": 42.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.736203", + "updated_at": "2026-06-19T00:43:44.736203" +} diff --git a/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991v/score/index.json b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991v/score/index.json new file mode 100644 index 00000000000..4a8407c3354 --- /dev/null +++ b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g991v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": 42.5 +} diff --git a/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991a/index.json b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991a/index.json new file mode 100644 index 00000000000..22982677f0c --- /dev/null +++ b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991a/index.json @@ -0,0 +1,77 @@ +{ + "id": 4457, + "slug": "sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991a", + "name": "SM-G991U Galaxy S21 5G UW Dual SIM TD-LTE US 256GB / SM-G991A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 850, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": 40.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.736203", + "updated_at": "2026-06-19T00:43:44.736203" +} diff --git a/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991a/score/index.json b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991a/score/index.json new file mode 100644 index 00000000000..54826ab45fa --- /dev/null +++ b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": 40.5 +} diff --git a/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991p/index.json b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991p/index.json new file mode 100644 index 00000000000..2a741f56fba --- /dev/null +++ b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991p/index.json @@ -0,0 +1,77 @@ +{ + "id": 4458, + "slug": "sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991p", + "name": "SM-G991U Galaxy S21 5G UW Dual SIM TD-LTE US 256GB / SM-G991P", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 850, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": 40.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.736203", + "updated_at": "2026-06-19T00:43:44.736203" +} diff --git a/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991p/score/index.json b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991p/score/index.json new file mode 100644 index 00000000000..54826ab45fa --- /dev/null +++ b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991p/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": 40.5 +} diff --git a/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991r4/index.json b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991r4/index.json new file mode 100644 index 00000000000..c2d3fbe5ff3 --- /dev/null +++ b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991r4/index.json @@ -0,0 +1,77 @@ +{ + "id": 4459, + "slug": "sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991r4", + "name": "SM-G991U Galaxy S21 5G UW Dual SIM TD-LTE US 256GB / SM-G991R4", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 850, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": 40.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.736203", + "updated_at": "2026-06-19T00:43:44.736203" +} diff --git a/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991r4/score/index.json b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991r4/score/index.json new file mode 100644 index 00000000000..54826ab45fa --- /dev/null +++ b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991r4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": 40.5 +} diff --git a/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991t/index.json b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991t/index.json new file mode 100644 index 00000000000..4f230a69f3a --- /dev/null +++ b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991t/index.json @@ -0,0 +1,77 @@ +{ + "id": 4460, + "slug": "sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991t", + "name": "SM-G991U Galaxy S21 5G UW Dual SIM TD-LTE US 256GB / SM-G991T", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 850, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": 40.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.737203", + "updated_at": "2026-06-19T00:43:44.737203" +} diff --git a/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991t/score/index.json b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991t/score/index.json new file mode 100644 index 00000000000..54826ab45fa --- /dev/null +++ b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": 40.5 +} diff --git a/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991v/index.json b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991v/index.json new file mode 100644 index 00000000000..7949bf41b28 --- /dev/null +++ b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991v/index.json @@ -0,0 +1,77 @@ +{ + "id": 4461, + "slug": "sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991v", + "name": "SM-G991U Galaxy S21 5G UW Dual SIM TD-LTE US 256GB / SM-G991V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 850, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": 40.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.737203", + "updated_at": "2026-06-19T00:43:44.737203" +} diff --git a/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991v/score/index.json b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991v/score/index.json new file mode 100644 index 00000000000..54826ab45fa --- /dev/null +++ b/site/public/v1/smartphones/sm-g991u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g991v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": 40.5 +} diff --git a/site/public/v1/smartphones/sm-g991u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb/index.json b/site/public/v1/smartphones/sm-g991u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..672dbe84288 --- /dev/null +++ b/site/public/v1/smartphones/sm-g991u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4462, + "slug": "sm-g991u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb", + "name": "SM-G991U1 Galaxy S21 5G UW Dual SIM TD-LTE US 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 799, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": 42.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.737203", + "updated_at": "2026-06-19T00:43:44.737203" +} diff --git a/site/public/v1/smartphones/sm-g991u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/sm-g991u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..4a8407c3354 --- /dev/null +++ b/site/public/v1/smartphones/sm-g991u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": 42.5 +} diff --git a/site/public/v1/smartphones/sm-g991u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb/index.json b/site/public/v1/smartphones/sm-g991u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb/index.json new file mode 100644 index 00000000000..d207bd3059d --- /dev/null +++ b/site/public/v1/smartphones/sm-g991u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4463, + "slug": "sm-g991u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb", + "name": "SM-G991U1 Galaxy S21 5G UW Dual SIM TD-LTE US 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 850, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": 40.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.737203", + "updated_at": "2026-06-19T00:43:44.737203" +} diff --git a/site/public/v1/smartphones/sm-g991u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb/score/index.json b/site/public/v1/smartphones/sm-g991u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb/score/index.json new file mode 100644 index 00000000000..54826ab45fa --- /dev/null +++ b/site/public/v1/smartphones/sm-g991u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": 40.5 +} diff --git a/site/public/v1/smartphones/sm-g991w-galaxy-s21-5g-dual-sim-td-lte-ca-128gb/index.json b/site/public/v1/smartphones/sm-g991w-galaxy-s21-5g-dual-sim-td-lte-ca-128gb/index.json new file mode 100644 index 00000000000..e4c62566430 --- /dev/null +++ b/site/public/v1/smartphones/sm-g991w-galaxy-s21-5g-dual-sim-td-lte-ca-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4464, + "slug": "sm-g991w-galaxy-s21-5g-dual-sim-td-lte-ca-128gb", + "name": "SM-G991W Galaxy S21 5G Dual SIM TD-LTE CA 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 1130, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": 29.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.737203", + "updated_at": "2026-06-19T00:43:44.737203" +} diff --git a/site/public/v1/smartphones/sm-g991w-galaxy-s21-5g-dual-sim-td-lte-ca-128gb/score/index.json b/site/public/v1/smartphones/sm-g991w-galaxy-s21-5g-dual-sim-td-lte-ca-128gb/score/index.json new file mode 100644 index 00000000000..580902ab79c --- /dev/null +++ b/site/public/v1/smartphones/sm-g991w-galaxy-s21-5g-dual-sim-td-lte-ca-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": 29.8 +} diff --git a/site/public/v1/smartphones/sm-g991w-galaxy-s21-5g-dual-sim-td-lte-ca-256gb/index.json b/site/public/v1/smartphones/sm-g991w-galaxy-s21-5g-dual-sim-td-lte-ca-256gb/index.json new file mode 100644 index 00000000000..52ea13aae3a --- /dev/null +++ b/site/public/v1/smartphones/sm-g991w-galaxy-s21-5g-dual-sim-td-lte-ca-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4465, + "slug": "sm-g991w-galaxy-s21-5g-dual-sim-td-lte-ca-256gb", + "name": "SM-G991W Galaxy S21 5G Dual SIM TD-LTE CA 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 1200, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.24, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": 27.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.737203", + "updated_at": "2026-06-19T00:43:44.737203" +} diff --git a/site/public/v1/smartphones/sm-g991w-galaxy-s21-5g-dual-sim-td-lte-ca-256gb/score/index.json b/site/public/v1/smartphones/sm-g991w-galaxy-s21-5g-dual-sim-td-lte-ca-256gb/score/index.json new file mode 100644 index 00000000000..ef550926994 --- /dev/null +++ b/site/public/v1/smartphones/sm-g991w-galaxy-s21-5g-dual-sim-td-lte-ca-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.3, + "performance": 6.4, + "camera": 5.1, + "battery": 26.9, + "display": 54.7, + "value": 27.1 +} diff --git a/site/public/v1/smartphones/sm-g9960-galaxy-s21-5g-dual-sim-td-lte-cn-hk-128gb/index.json b/site/public/v1/smartphones/sm-g9960-galaxy-s21-5g-dual-sim-td-lte-cn-hk-128gb/index.json new file mode 100644 index 00000000000..56c5b5d4dd6 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9960-galaxy-s21-5g-dual-sim-td-lte-cn-hk-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4466, + "slug": "sm-g9960-galaxy-s21-5g-dual-sim-td-lte-cn-hk-128gb", + "name": "SM-G9960 Galaxy S21+ 5G Dual SIM TD-LTE CN HK 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4800, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.4, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.737203", + "updated_at": "2026-06-19T00:43:44.737203" +} diff --git a/site/public/v1/smartphones/sm-g9960-galaxy-s21-5g-dual-sim-td-lte-cn-hk-128gb/score/index.json b/site/public/v1/smartphones/sm-g9960-galaxy-s21-5g-dual-sim-td-lte-cn-hk-128gb/score/index.json new file mode 100644 index 00000000000..cb6597d0268 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9960-galaxy-s21-5g-dual-sim-td-lte-cn-hk-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.4, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g9960-galaxy-s21-5g-dual-sim-td-lte-cn-hk-256gb/index.json b/site/public/v1/smartphones/sm-g9960-galaxy-s21-5g-dual-sim-td-lte-cn-hk-256gb/index.json new file mode 100644 index 00000000000..9464ee52b53 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9960-galaxy-s21-5g-dual-sim-td-lte-cn-hk-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4467, + "slug": "sm-g9960-galaxy-s21-5g-dual-sim-td-lte-cn-hk-256gb", + "name": "SM-G9960 Galaxy S21+ 5G Dual SIM TD-LTE CN HK 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4800, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.4, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.737203", + "updated_at": "2026-06-19T00:43:44.737203" +} diff --git a/site/public/v1/smartphones/sm-g9960-galaxy-s21-5g-dual-sim-td-lte-cn-hk-256gb/score/index.json b/site/public/v1/smartphones/sm-g9960-galaxy-s21-5g-dual-sim-td-lte-cn-hk-256gb/score/index.json new file mode 100644 index 00000000000..cb6597d0268 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9960-galaxy-s21-5g-dual-sim-td-lte-cn-hk-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.4, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g996b-ds-galaxy-s21-5g-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-g996b-ds-galaxy-s21-5g-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..6c8e3f6fdb1 --- /dev/null +++ b/site/public/v1/smartphones/sm-g996b-ds-galaxy-s21-5g-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4468, + "slug": "sm-g996b-ds-galaxy-s21-5g-global-dual-sim-td-lte-128gb", + "name": "SM-G996B/DS Galaxy S21+ 5G Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 200, + "slug": "exynos-2100", + "name": "Samsung Exynos 2100", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP14", + "url": "/v1/socs/exynos-2100" + }, + "release_date": "2021-01-29", + "msrp_usd": 949, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4800, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 4.5, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": 37.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.737203", + "updated_at": "2026-06-19T00:43:44.738203" +} diff --git a/site/public/v1/smartphones/sm-g996b-ds-galaxy-s21-5g-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-g996b-ds-galaxy-s21-5g-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..58495659bcf --- /dev/null +++ b/site/public/v1/smartphones/sm-g996b-ds-galaxy-s21-5g-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 4.5, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": 37.6 +} diff --git a/site/public/v1/smartphones/sm-g996b-ds-galaxy-s21-5g-global-dual-sim-td-lte-256gb/index.json b/site/public/v1/smartphones/sm-g996b-ds-galaxy-s21-5g-global-dual-sim-td-lte-256gb/index.json new file mode 100644 index 00000000000..8ff3a4e5fea --- /dev/null +++ b/site/public/v1/smartphones/sm-g996b-ds-galaxy-s21-5g-global-dual-sim-td-lte-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4469, + "slug": "sm-g996b-ds-galaxy-s21-5g-global-dual-sim-td-lte-256gb", + "name": "SM-G996B/DS Galaxy S21+ 5G Global Dual SIM TD-LTE 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 200, + "slug": "exynos-2100", + "name": "Samsung Exynos 2100", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP14", + "url": "/v1/socs/exynos-2100" + }, + "release_date": "2021-01-29", + "msrp_usd": 999, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4800, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 4.5, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": 35.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.738203", + "updated_at": "2026-06-19T00:43:44.738203" +} diff --git a/site/public/v1/smartphones/sm-g996b-ds-galaxy-s21-5g-global-dual-sim-td-lte-256gb/score/index.json b/site/public/v1/smartphones/sm-g996b-ds-galaxy-s21-5g-global-dual-sim-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..3eb5be5dc56 --- /dev/null +++ b/site/public/v1/smartphones/sm-g996b-ds-galaxy-s21-5g-global-dual-sim-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 4.5, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": 35.7 +} diff --git a/site/public/v1/smartphones/sm-g996j-galaxy-s21-5g-td-lte-jp-256gb-scg10/index.json b/site/public/v1/smartphones/sm-g996j-galaxy-s21-5g-td-lte-jp-256gb-scg10/index.json new file mode 100644 index 00000000000..ab7383b0c3d --- /dev/null +++ b/site/public/v1/smartphones/sm-g996j-galaxy-s21-5g-td-lte-jp-256gb-scg10/index.json @@ -0,0 +1,77 @@ +{ + "id": 4470, + "slug": "sm-g996j-galaxy-s21-5g-td-lte-jp-256gb-scg10", + "name": "SM-G996J Galaxy S21+ 5G TD-LTE JP 256GB SCG10", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-22", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4800, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.4, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.738203", + "updated_at": "2026-06-19T00:43:44.738203" +} diff --git a/site/public/v1/smartphones/sm-g996j-galaxy-s21-5g-td-lte-jp-256gb-scg10/score/index.json b/site/public/v1/smartphones/sm-g996j-galaxy-s21-5g-td-lte-jp-256gb-scg10/score/index.json new file mode 100644 index 00000000000..cb6597d0268 --- /dev/null +++ b/site/public/v1/smartphones/sm-g996j-galaxy-s21-5g-td-lte-jp-256gb-scg10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.4, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g996n-galaxy-s21-5g-uw-td-lte-kr-256gb/index.json b/site/public/v1/smartphones/sm-g996n-galaxy-s21-5g-uw-td-lte-kr-256gb/index.json new file mode 100644 index 00000000000..8ba6ebc70e0 --- /dev/null +++ b/site/public/v1/smartphones/sm-g996n-galaxy-s21-5g-uw-td-lte-kr-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4471, + "slug": "sm-g996n-galaxy-s21-5g-uw-td-lte-kr-256gb", + "name": "SM-G996N Galaxy S21+ 5G UW TD-LTE KR 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 200, + "slug": "exynos-2100", + "name": "Samsung Exynos 2100", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP14", + "url": "/v1/socs/exynos-2100" + }, + "release_date": "2021-01-29", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 237 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4800, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 4.5, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.738203", + "updated_at": "2026-06-19T00:43:44.738203" +} diff --git a/site/public/v1/smartphones/sm-g996n-galaxy-s21-5g-uw-td-lte-kr-256gb/score/index.json b/site/public/v1/smartphones/sm-g996n-galaxy-s21-5g-uw-td-lte-kr-256gb/score/index.json new file mode 100644 index 00000000000..8d5f8fb6fbb --- /dev/null +++ b/site/public/v1/smartphones/sm-g996n-galaxy-s21-5g-uw-td-lte-kr-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 4.5, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996a/index.json b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996a/index.json new file mode 100644 index 00000000000..49244f58d80 --- /dev/null +++ b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996a/index.json @@ -0,0 +1,77 @@ +{ + "id": 4472, + "slug": "sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996a", + "name": "SM-G996U Galaxy S21+ 5G UW Dual SIM TD-LTE US 128GB / SM-G996A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 1000, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4800, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.4, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": 35.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.738203", + "updated_at": "2026-06-19T00:43:44.738203" +} diff --git a/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996a/score/index.json b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996a/score/index.json new file mode 100644 index 00000000000..57d01a62dad --- /dev/null +++ b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.4, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": 35.9 +} diff --git a/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996p/index.json b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996p/index.json new file mode 100644 index 00000000000..eff3d815526 --- /dev/null +++ b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996p/index.json @@ -0,0 +1,77 @@ +{ + "id": 4473, + "slug": "sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996p", + "name": "SM-G996U Galaxy S21+ 5G UW Dual SIM TD-LTE US 128GB / SM-G996P", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 1000, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4800, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.4, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": 35.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.738203", + "updated_at": "2026-06-19T00:43:44.738203" +} diff --git a/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996p/score/index.json b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996p/score/index.json new file mode 100644 index 00000000000..57d01a62dad --- /dev/null +++ b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996p/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.4, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": 35.9 +} diff --git a/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996r4/index.json b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996r4/index.json new file mode 100644 index 00000000000..b08d9ab6749 --- /dev/null +++ b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996r4/index.json @@ -0,0 +1,77 @@ +{ + "id": 4474, + "slug": "sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996r4", + "name": "SM-G996U Galaxy S21+ 5G UW Dual SIM TD-LTE US 128GB / SM-G996R4", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 1000, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4800, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.4, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": 35.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.738203", + "updated_at": "2026-06-19T00:43:44.738203" +} diff --git a/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996r4/score/index.json b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996r4/score/index.json new file mode 100644 index 00000000000..57d01a62dad --- /dev/null +++ b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996r4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.4, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": 35.9 +} diff --git a/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996t/index.json b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996t/index.json new file mode 100644 index 00000000000..d7b6a1165eb --- /dev/null +++ b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996t/index.json @@ -0,0 +1,77 @@ +{ + "id": 4475, + "slug": "sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996t", + "name": "SM-G996U Galaxy S21+ 5G UW Dual SIM TD-LTE US 128GB / SM-G996T", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 1000, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4800, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.4, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": 35.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.738203", + "updated_at": "2026-06-19T00:43:44.738203" +} diff --git a/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996t/score/index.json b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996t/score/index.json new file mode 100644 index 00000000000..57d01a62dad --- /dev/null +++ b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.4, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": 35.9 +} diff --git a/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996v/index.json b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996v/index.json new file mode 100644 index 00000000000..e21b82e1aa2 --- /dev/null +++ b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996v/index.json @@ -0,0 +1,77 @@ +{ + "id": 4476, + "slug": "sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996v", + "name": "SM-G996U Galaxy S21+ 5G UW Dual SIM TD-LTE US 128GB / SM-G996V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 1000, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4800, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.4, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": 35.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.738203", + "updated_at": "2026-06-19T00:43:44.738203" +} diff --git a/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996v/score/index.json b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996v/score/index.json new file mode 100644 index 00000000000..57d01a62dad --- /dev/null +++ b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb-sm-g996v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.4, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": 35.9 +} diff --git a/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996a/index.json b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996a/index.json new file mode 100644 index 00000000000..517ff24a92b --- /dev/null +++ b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996a/index.json @@ -0,0 +1,77 @@ +{ + "id": 4477, + "slug": "sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996a", + "name": "SM-G996U Galaxy S21+ 5G UW Dual SIM TD-LTE US 256GB / SM-G996A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 1050, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4800, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.4, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": 34.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.738203", + "updated_at": "2026-06-19T00:43:44.738203" +} diff --git a/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996a/score/index.json b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996a/score/index.json new file mode 100644 index 00000000000..ba376679748 --- /dev/null +++ b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.4, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": 34.0 +} diff --git a/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996p/index.json b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996p/index.json new file mode 100644 index 00000000000..955718ac3ba --- /dev/null +++ b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996p/index.json @@ -0,0 +1,77 @@ +{ + "id": 4478, + "slug": "sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996p", + "name": "SM-G996U Galaxy S21+ 5G UW Dual SIM TD-LTE US 256GB / SM-G996P", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 1050, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4800, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.4, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": 34.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.739203", + "updated_at": "2026-06-19T00:43:44.739203" +} diff --git a/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996p/score/index.json b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996p/score/index.json new file mode 100644 index 00000000000..ba376679748 --- /dev/null +++ b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996p/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.4, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": 34.0 +} diff --git a/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996r4/index.json b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996r4/index.json new file mode 100644 index 00000000000..6cd39b34f45 --- /dev/null +++ b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996r4/index.json @@ -0,0 +1,77 @@ +{ + "id": 4479, + "slug": "sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996r4", + "name": "SM-G996U Galaxy S21+ 5G UW Dual SIM TD-LTE US 256GB / SM-G996R4", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 1050, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4800, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.4, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": 34.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.739203", + "updated_at": "2026-06-19T00:43:44.739203" +} diff --git a/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996r4/score/index.json b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996r4/score/index.json new file mode 100644 index 00000000000..ba376679748 --- /dev/null +++ b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996r4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.4, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": 34.0 +} diff --git a/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996t/index.json b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996t/index.json new file mode 100644 index 00000000000..58b307485e6 --- /dev/null +++ b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996t/index.json @@ -0,0 +1,77 @@ +{ + "id": 4480, + "slug": "sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996t", + "name": "SM-G996U Galaxy S21+ 5G UW Dual SIM TD-LTE US 256GB / SM-G996T", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 1050, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4800, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.4, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": 34.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.739203", + "updated_at": "2026-06-19T00:43:44.739203" +} diff --git a/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996t/score/index.json b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996t/score/index.json new file mode 100644 index 00000000000..ba376679748 --- /dev/null +++ b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.4, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": 34.0 +} diff --git a/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996v/index.json b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996v/index.json new file mode 100644 index 00000000000..cdd3965b717 --- /dev/null +++ b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996v/index.json @@ -0,0 +1,77 @@ +{ + "id": 4481, + "slug": "sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996v", + "name": "SM-G996U Galaxy S21+ 5G UW Dual SIM TD-LTE US 256GB / SM-G996V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 1050, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4800, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.4, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": 34.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.739203", + "updated_at": "2026-06-19T00:43:44.739203" +} diff --git a/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996v/score/index.json b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996v/score/index.json new file mode 100644 index 00000000000..ba376679748 --- /dev/null +++ b/site/public/v1/smartphones/sm-g996u-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb-sm-g996v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.4, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": 34.0 +} diff --git a/site/public/v1/smartphones/sm-g996u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb/index.json b/site/public/v1/smartphones/sm-g996u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..4adbe12999e --- /dev/null +++ b/site/public/v1/smartphones/sm-g996u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4482, + "slug": "sm-g996u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb", + "name": "SM-G996U1 Galaxy S21+ 5G UW Dual SIM TD-LTE US 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 1000, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4800, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.4, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": 35.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.739203", + "updated_at": "2026-06-19T00:43:44.739203" +} diff --git a/site/public/v1/smartphones/sm-g996u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/sm-g996u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..57d01a62dad --- /dev/null +++ b/site/public/v1/smartphones/sm-g996u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.4, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": 35.9 +} diff --git a/site/public/v1/smartphones/sm-g996u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb/index.json b/site/public/v1/smartphones/sm-g996u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb/index.json new file mode 100644 index 00000000000..bf4324dff6b --- /dev/null +++ b/site/public/v1/smartphones/sm-g996u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4483, + "slug": "sm-g996u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb", + "name": "SM-G996U1 Galaxy S21+ 5G UW Dual SIM TD-LTE US 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 1050, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4800, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.4, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": 34.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.739203", + "updated_at": "2026-06-19T00:43:44.739203" +} diff --git a/site/public/v1/smartphones/sm-g996u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb/score/index.json b/site/public/v1/smartphones/sm-g996u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb/score/index.json new file mode 100644 index 00000000000..ba376679748 --- /dev/null +++ b/site/public/v1/smartphones/sm-g996u1-galaxy-s21-5g-uw-dual-sim-td-lte-us-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.4, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": 34.0 +} diff --git a/site/public/v1/smartphones/sm-g996w-galaxy-s21-5g-dual-sim-td-lte-ca-128gb/index.json b/site/public/v1/smartphones/sm-g996w-galaxy-s21-5g-dual-sim-td-lte-ca-128gb/index.json new file mode 100644 index 00000000000..0453d830480 --- /dev/null +++ b/site/public/v1/smartphones/sm-g996w-galaxy-s21-5g-dual-sim-td-lte-ca-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4484, + "slug": "sm-g996w-galaxy-s21-5g-dual-sim-td-lte-ca-128gb", + "name": "SM-G996W Galaxy S21+ 5G Dual SIM TD-LTE CA 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 1400, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4800, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.4, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": 20.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.739203", + "updated_at": "2026-06-19T00:43:44.739203" +} diff --git a/site/public/v1/smartphones/sm-g996w-galaxy-s21-5g-dual-sim-td-lte-ca-128gb/score/index.json b/site/public/v1/smartphones/sm-g996w-galaxy-s21-5g-dual-sim-td-lte-ca-128gb/score/index.json new file mode 100644 index 00000000000..257c98f1e5a --- /dev/null +++ b/site/public/v1/smartphones/sm-g996w-galaxy-s21-5g-dual-sim-td-lte-ca-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.4, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": 20.5 +} diff --git a/site/public/v1/smartphones/sm-g996w-galaxy-s21-5g-dual-sim-td-lte-ca-256gb/index.json b/site/public/v1/smartphones/sm-g996w-galaxy-s21-5g-dual-sim-td-lte-ca-256gb/index.json new file mode 100644 index 00000000000..2d282553aec --- /dev/null +++ b/site/public/v1/smartphones/sm-g996w-galaxy-s21-5g-dual-sim-td-lte-ca-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4485, + "slug": "sm-g996w-galaxy-s21-5g-dual-sim-td-lte-ca-256gb", + "name": "SM-G996W Galaxy S21+ 5G Dual SIM TD-LTE CA 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 1470, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4800, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.4, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": 17.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.739203", + "updated_at": "2026-06-19T00:43:44.739203" +} diff --git a/site/public/v1/smartphones/sm-g996w-galaxy-s21-5g-dual-sim-td-lte-ca-256gb/score/index.json b/site/public/v1/smartphones/sm-g996w-galaxy-s21-5g-dual-sim-td-lte-ca-256gb/score/index.json new file mode 100644 index 00000000000..2dd774bdabf --- /dev/null +++ b/site/public/v1/smartphones/sm-g996w-galaxy-s21-5g-dual-sim-td-lte-ca-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 6.4, + "camera": 5.1, + "battery": 38.9, + "display": 51.9, + "value": 17.8 +} diff --git a/site/public/v1/smartphones/sm-g9980-galaxy-s21-ultra-5g-dual-sim-td-lte-cn-hk-256gb/index.json b/site/public/v1/smartphones/sm-g9980-galaxy-s21-ultra-5g-dual-sim-td-lte-cn-hk-256gb/index.json new file mode 100644 index 00000000000..216e28f73f3 --- /dev/null +++ b/site/public/v1/smartphones/sm-g9980-galaxy-s21-ultra-5g-dual-sim-td-lte-cn-hk-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4486, + "slug": "sm-g9980-galaxy-s21-ultra-5g-dual-sim-td-lte-cn-hk-256gb", + "name": "SM-G9980 Galaxy S21 Ultra 5G Dual SIM TD-LTE CN HK 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 227.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 9.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.739203", + "updated_at": "2026-06-19T00:43:44.739203" +} diff --git a/site/public/v1/smartphones/sm-g9980-galaxy-s21-ultra-5g-dual-sim-td-lte-cn-hk-256gb/score/index.json b/site/public/v1/smartphones/sm-g9980-galaxy-s21-ultra-5g-dual-sim-td-lte-cn-hk-256gb/score/index.json new file mode 100644 index 00000000000..0638686d8ff --- /dev/null +++ b/site/public/v1/smartphones/sm-g9980-galaxy-s21-ultra-5g-dual-sim-td-lte-cn-hk-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 9.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g9980-galaxy-s21-ultra-5g-dual-sim-td-lte-cn-hk-512gb/index.json b/site/public/v1/smartphones/sm-g9980-galaxy-s21-ultra-5g-dual-sim-td-lte-cn-hk-512gb/index.json new file mode 100644 index 00000000000..73de93f122a --- /dev/null +++ b/site/public/v1/smartphones/sm-g9980-galaxy-s21-ultra-5g-dual-sim-td-lte-cn-hk-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4487, + "slug": "sm-g9980-galaxy-s21-ultra-5g-dual-sim-td-lte-cn-hk-512gb", + "name": "SM-G9980 Galaxy S21 Ultra 5G Dual SIM TD-LTE CN HK 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": null, + "ram_gb": 16, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 227.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 38.5, + "performance": 12.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.740203", + "updated_at": "2026-06-19T00:43:44.740203" +} diff --git a/site/public/v1/smartphones/sm-g9980-galaxy-s21-ultra-5g-dual-sim-td-lte-cn-hk-512gb/score/index.json b/site/public/v1/smartphones/sm-g9980-galaxy-s21-ultra-5g-dual-sim-td-lte-cn-hk-512gb/score/index.json new file mode 100644 index 00000000000..9cd23a51c7d --- /dev/null +++ b/site/public/v1/smartphones/sm-g9980-galaxy-s21-ultra-5g-dual-sim-td-lte-cn-hk-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 38.5, + "performance": 12.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..b07cd28f690 --- /dev/null +++ b/site/public/v1/smartphones/sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4488, + "slug": "sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-128gb", + "name": "SM-G998B/DS Galaxy S21 Ultra 5G Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 200, + "slug": "exynos-2100", + "name": "Samsung Exynos 2100", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP14", + "url": "/v1/socs/exynos-2100" + }, + "release_date": "2021-01-29", + "msrp_usd": 1149, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 227.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.3, + "performance": 7.5, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 36.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.740203", + "updated_at": "2026-06-19T00:43:44.740203" +} diff --git a/site/public/v1/smartphones/sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..b408fb38733 --- /dev/null +++ b/site/public/v1/smartphones/sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.3, + "performance": 7.5, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 36.0 +} diff --git a/site/public/v1/smartphones/sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-256gb/index.json b/site/public/v1/smartphones/sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-256gb/index.json new file mode 100644 index 00000000000..856a15f08e7 --- /dev/null +++ b/site/public/v1/smartphones/sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4489, + "slug": "sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-256gb", + "name": "SM-G998B/DS Galaxy S21 Ultra 5G Global Dual SIM TD-LTE 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 200, + "slug": "exynos-2100", + "name": "Samsung Exynos 2100", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP14", + "url": "/v1/socs/exynos-2100" + }, + "release_date": "2021-01-29", + "msrp_usd": 1199, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 227.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.3, + "performance": 7.5, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 34.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.740203", + "updated_at": "2026-06-19T00:43:44.740203" +} diff --git a/site/public/v1/smartphones/sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-256gb/score/index.json b/site/public/v1/smartphones/sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..755f0a8de94 --- /dev/null +++ b/site/public/v1/smartphones/sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.3, + "performance": 7.5, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 34.0 +} diff --git a/site/public/v1/smartphones/sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-512gb/index.json b/site/public/v1/smartphones/sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-512gb/index.json new file mode 100644 index 00000000000..4bd849d46f1 --- /dev/null +++ b/site/public/v1/smartphones/sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4490, + "slug": "sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-512gb", + "name": "SM-G998B/DS Galaxy S21 Ultra 5G Global Dual SIM TD-LTE 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 200, + "slug": "exynos-2100", + "name": "Samsung Exynos 2100", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP14", + "url": "/v1/socs/exynos-2100" + }, + "release_date": "2021-01-29", + "msrp_usd": 1349, + "ram_gb": 16, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 227.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 38.0, + "performance": 10.5, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 28.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.740203", + "updated_at": "2026-06-19T00:43:44.740203" +} diff --git a/site/public/v1/smartphones/sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-512gb/score/index.json b/site/public/v1/smartphones/sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-512gb/score/index.json new file mode 100644 index 00000000000..8b9e85f504b --- /dev/null +++ b/site/public/v1/smartphones/sm-g998b-ds-galaxy-s21-ultra-5g-global-dual-sim-td-lte-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 38.0, + "performance": 10.5, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 28.6 +} diff --git a/site/public/v1/smartphones/sm-g998d-galaxy-s21-ultra-5g-uw-td-lte-jp-256gb-sc-52b-sgh-n748/index.json b/site/public/v1/smartphones/sm-g998d-galaxy-s21-ultra-5g-uw-td-lte-jp-256gb-sc-52b-sgh-n748/index.json new file mode 100644 index 00000000000..7e802a8e1a8 --- /dev/null +++ b/site/public/v1/smartphones/sm-g998d-galaxy-s21-ultra-5g-uw-td-lte-jp-256gb-sc-52b-sgh-n748/index.json @@ -0,0 +1,77 @@ +{ + "id": 4491, + "slug": "sm-g998d-galaxy-s21-ultra-5g-uw-td-lte-jp-256gb-sc-52b-sgh-n748", + "name": "SM-G998D Galaxy S21 Ultra 5G UW TD-LTE JP 256GB SC-52B / SGH-N748", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-04-22", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 227.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 9.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.740203", + "updated_at": "2026-06-19T00:43:44.740203" +} diff --git a/site/public/v1/smartphones/sm-g998d-galaxy-s21-ultra-5g-uw-td-lte-jp-256gb-sc-52b-sgh-n748/score/index.json b/site/public/v1/smartphones/sm-g998d-galaxy-s21-ultra-5g-uw-td-lte-jp-256gb-sc-52b-sgh-n748/score/index.json new file mode 100644 index 00000000000..0638686d8ff --- /dev/null +++ b/site/public/v1/smartphones/sm-g998d-galaxy-s21-ultra-5g-uw-td-lte-jp-256gb-sc-52b-sgh-n748/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 9.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g998n-galaxy-s21-ultra-5g-uw-td-lte-kr-256gb/index.json b/site/public/v1/smartphones/sm-g998n-galaxy-s21-ultra-5g-uw-td-lte-kr-256gb/index.json new file mode 100644 index 00000000000..8219196fa35 --- /dev/null +++ b/site/public/v1/smartphones/sm-g998n-galaxy-s21-ultra-5g-uw-td-lte-kr-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4492, + "slug": "sm-g998n-galaxy-s21-ultra-5g-uw-td-lte-kr-256gb", + "name": "SM-G998N Galaxy S21 Ultra 5G UW TD-LTE KR 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 200, + "slug": "exynos-2100", + "name": "Samsung Exynos 2100", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP14", + "url": "/v1/socs/exynos-2100" + }, + "release_date": "2021-01-29", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 227.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.3, + "performance": 7.5, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.740203", + "updated_at": "2026-06-19T00:43:44.740203" +} diff --git a/site/public/v1/smartphones/sm-g998n-galaxy-s21-ultra-5g-uw-td-lte-kr-256gb/score/index.json b/site/public/v1/smartphones/sm-g998n-galaxy-s21-ultra-5g-uw-td-lte-kr-256gb/score/index.json new file mode 100644 index 00000000000..a7c13c43522 --- /dev/null +++ b/site/public/v1/smartphones/sm-g998n-galaxy-s21-ultra-5g-uw-td-lte-kr-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.3, + "performance": 7.5, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g998n-galaxy-s21-ultra-5g-uw-td-lte-kr-512gb/index.json b/site/public/v1/smartphones/sm-g998n-galaxy-s21-ultra-5g-uw-td-lte-kr-512gb/index.json new file mode 100644 index 00000000000..ceb7c3533ad --- /dev/null +++ b/site/public/v1/smartphones/sm-g998n-galaxy-s21-ultra-5g-uw-td-lte-kr-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4493, + "slug": "sm-g998n-galaxy-s21-ultra-5g-uw-td-lte-kr-512gb", + "name": "SM-G998N Galaxy S21 Ultra 5G UW TD-LTE KR 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 200, + "slug": "exynos-2100", + "name": "Samsung Exynos 2100", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP14", + "url": "/v1/socs/exynos-2100" + }, + "release_date": "2021-01-29", + "msrp_usd": null, + "ram_gb": 16, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 227.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 38.0, + "performance": 10.5, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.740203", + "updated_at": "2026-06-19T00:43:44.740203" +} diff --git a/site/public/v1/smartphones/sm-g998n-galaxy-s21-ultra-5g-uw-td-lte-kr-512gb/score/index.json b/site/public/v1/smartphones/sm-g998n-galaxy-s21-ultra-5g-uw-td-lte-kr-512gb/score/index.json new file mode 100644 index 00000000000..d00819321e3 --- /dev/null +++ b/site/public/v1/smartphones/sm-g998n-galaxy-s21-ultra-5g-uw-td-lte-kr-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 38.0, + "performance": 10.5, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998a/index.json b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998a/index.json new file mode 100644 index 00000000000..9f5d8156e86 --- /dev/null +++ b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998a/index.json @@ -0,0 +1,77 @@ +{ + "id": 4494, + "slug": "sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998a", + "name": "SM-G998U Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 128GB / SM-G998A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 1200, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 227.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 9.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 34.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.740203", + "updated_at": "2026-06-19T00:43:44.740203" +} diff --git a/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998a/score/index.json b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998a/score/index.json new file mode 100644 index 00000000000..b49e601bdb9 --- /dev/null +++ b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 9.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 34.3 +} diff --git a/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998p/index.json b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998p/index.json new file mode 100644 index 00000000000..ad9aaedc6ca --- /dev/null +++ b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998p/index.json @@ -0,0 +1,77 @@ +{ + "id": 4495, + "slug": "sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998p", + "name": "SM-G998U Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 128GB / SM-G998P", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 1200, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 227.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 9.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 34.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.740203", + "updated_at": "2026-06-19T00:43:44.740203" +} diff --git a/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998p/score/index.json b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998p/score/index.json new file mode 100644 index 00000000000..b49e601bdb9 --- /dev/null +++ b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998p/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 9.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 34.3 +} diff --git a/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998r4/index.json b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998r4/index.json new file mode 100644 index 00000000000..5067831581b --- /dev/null +++ b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998r4/index.json @@ -0,0 +1,77 @@ +{ + "id": 4496, + "slug": "sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998r4", + "name": "SM-G998U Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 128GB / SM-G998R4", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 1200, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 227.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 9.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 34.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.741203", + "updated_at": "2026-06-19T00:43:44.741203" +} diff --git a/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998r4/score/index.json b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998r4/score/index.json new file mode 100644 index 00000000000..b49e601bdb9 --- /dev/null +++ b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998r4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 9.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 34.3 +} diff --git a/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998t/index.json b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998t/index.json new file mode 100644 index 00000000000..c048bed0192 --- /dev/null +++ b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998t/index.json @@ -0,0 +1,77 @@ +{ + "id": 4497, + "slug": "sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998t", + "name": "SM-G998U Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 128GB / SM-G998T", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 1200, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 227.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 9.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 34.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.741203", + "updated_at": "2026-06-19T00:43:44.741203" +} diff --git a/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998t/score/index.json b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998t/score/index.json new file mode 100644 index 00000000000..b49e601bdb9 --- /dev/null +++ b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 9.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 34.3 +} diff --git a/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998v/index.json b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998v/index.json new file mode 100644 index 00000000000..7f9856107fe --- /dev/null +++ b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998v/index.json @@ -0,0 +1,77 @@ +{ + "id": 4498, + "slug": "sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998v", + "name": "SM-G998U Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 128GB / SM-G998V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 1200, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 227.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 9.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 34.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.741203", + "updated_at": "2026-06-19T00:43:44.741203" +} diff --git a/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998v/score/index.json b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998v/score/index.json new file mode 100644 index 00000000000..b49e601bdb9 --- /dev/null +++ b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-g998v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 9.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 34.3 +} diff --git a/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998a/index.json b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998a/index.json new file mode 100644 index 00000000000..94e02b4491d --- /dev/null +++ b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998a/index.json @@ -0,0 +1,77 @@ +{ + "id": 4499, + "slug": "sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998a", + "name": "SM-G998U Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 256GB / SM-G998A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 1250, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 227.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 9.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 32.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.741203", + "updated_at": "2026-06-19T00:43:44.741203" +} diff --git a/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998a/score/index.json b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998a/score/index.json new file mode 100644 index 00000000000..ac362977fcf --- /dev/null +++ b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 9.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 32.3 +} diff --git a/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998p/index.json b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998p/index.json new file mode 100644 index 00000000000..604f4365751 --- /dev/null +++ b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998p/index.json @@ -0,0 +1,77 @@ +{ + "id": 4500, + "slug": "sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998p", + "name": "SM-G998U Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 256GB / SM-G998P", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 1250, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 227.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 9.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 32.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.741203", + "updated_at": "2026-06-19T00:43:44.741203" +} diff --git a/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998p/score/index.json b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998p/score/index.json new file mode 100644 index 00000000000..ac362977fcf --- /dev/null +++ b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998p/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 9.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 32.3 +} diff --git a/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998r4/index.json b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998r4/index.json new file mode 100644 index 00000000000..efb8cd53d0d --- /dev/null +++ b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998r4/index.json @@ -0,0 +1,77 @@ +{ + "id": 4501, + "slug": "sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998r4", + "name": "SM-G998U Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 256GB / SM-G998R4", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 1250, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 227.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 9.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 32.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.741203", + "updated_at": "2026-06-19T00:43:44.741203" +} diff --git a/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998r4/score/index.json b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998r4/score/index.json new file mode 100644 index 00000000000..ac362977fcf --- /dev/null +++ b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998r4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 9.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 32.3 +} diff --git a/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998t/index.json b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998t/index.json new file mode 100644 index 00000000000..f8956d0673b --- /dev/null +++ b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998t/index.json @@ -0,0 +1,77 @@ +{ + "id": 4502, + "slug": "sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998t", + "name": "SM-G998U Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 256GB / SM-G998T", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 1250, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 227.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 9.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 32.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.741203", + "updated_at": "2026-06-19T00:43:44.741203" +} diff --git a/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998t/score/index.json b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998t/score/index.json new file mode 100644 index 00000000000..ac362977fcf --- /dev/null +++ b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 9.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 32.3 +} diff --git a/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998v/index.json b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998v/index.json new file mode 100644 index 00000000000..7c8488556da --- /dev/null +++ b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998v/index.json @@ -0,0 +1,77 @@ +{ + "id": 4503, + "slug": "sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998v", + "name": "SM-G998U Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 256GB / SM-G998V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 1250, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 227.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 9.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 32.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.741203", + "updated_at": "2026-06-19T00:43:44.741203" +} diff --git a/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998v/score/index.json b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998v/score/index.json new file mode 100644 index 00000000000..ac362977fcf --- /dev/null +++ b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-g998v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 9.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 32.3 +} diff --git a/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-g998v/index.json b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-g998v/index.json new file mode 100644 index 00000000000..edb964a8bd4 --- /dev/null +++ b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-g998v/index.json @@ -0,0 +1,77 @@ +{ + "id": 4504, + "slug": "sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-g998v", + "name": "SM-G998U Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 512GB / SM-G998V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 1380, + "ram_gb": 16, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 227.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 38.5, + "performance": 12.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 27.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.741203", + "updated_at": "2026-06-19T00:43:44.741203" +} diff --git a/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-g998v/score/index.json b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-g998v/score/index.json new file mode 100644 index 00000000000..1771b121db2 --- /dev/null +++ b/site/public/v1/smartphones/sm-g998u-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-g998v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 38.5, + "performance": 12.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 27.7 +} diff --git a/site/public/v1/smartphones/sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb/index.json b/site/public/v1/smartphones/sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..732863b0852 --- /dev/null +++ b/site/public/v1/smartphones/sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4505, + "slug": "sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb", + "name": "SM-G998U1 Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 1200, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 227.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 9.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 34.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.741203", + "updated_at": "2026-06-19T00:43:44.741203" +} diff --git a/site/public/v1/smartphones/sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..b49e601bdb9 --- /dev/null +++ b/site/public/v1/smartphones/sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 9.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 34.3 +} diff --git a/site/public/v1/smartphones/sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb/index.json b/site/public/v1/smartphones/sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb/index.json new file mode 100644 index 00000000000..4ec90b7c378 --- /dev/null +++ b/site/public/v1/smartphones/sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4506, + "slug": "sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb", + "name": "SM-G998U1 Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 1250, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 227.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 9.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 32.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.742203", + "updated_at": "2026-06-19T00:43:44.742203" +} diff --git a/site/public/v1/smartphones/sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb/score/index.json b/site/public/v1/smartphones/sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb/score/index.json new file mode 100644 index 00000000000..ac362977fcf --- /dev/null +++ b/site/public/v1/smartphones/sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 9.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 32.3 +} diff --git a/site/public/v1/smartphones/sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-512gb/index.json b/site/public/v1/smartphones/sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-512gb/index.json new file mode 100644 index 00000000000..cfe3f8fcf1a --- /dev/null +++ b/site/public/v1/smartphones/sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4507, + "slug": "sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-512gb", + "name": "SM-G998U1 Galaxy S21 Ultra 5G UW Dual SIM TD-LTE US 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 1380, + "ram_gb": 16, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 227.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 38.5, + "performance": 12.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 27.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.742203", + "updated_at": "2026-06-19T00:43:44.742203" +} diff --git a/site/public/v1/smartphones/sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-512gb/score/index.json b/site/public/v1/smartphones/sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-512gb/score/index.json new file mode 100644 index 00000000000..1771b121db2 --- /dev/null +++ b/site/public/v1/smartphones/sm-g998u1-galaxy-s21-ultra-5g-uw-dual-sim-td-lte-us-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 38.5, + "performance": 12.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 27.7 +} diff --git a/site/public/v1/smartphones/sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-128gb/index.json b/site/public/v1/smartphones/sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-128gb/index.json new file mode 100644 index 00000000000..8c2f32895c1 --- /dev/null +++ b/site/public/v1/smartphones/sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4508, + "slug": "sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-128gb", + "name": "SM-G998W Galaxy S21 Ultra 5G Dual SIM TD-LTE CA 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 1650, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 227.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 9.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 18.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.742203", + "updated_at": "2026-06-19T00:43:44.742203" +} diff --git a/site/public/v1/smartphones/sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-128gb/score/index.json b/site/public/v1/smartphones/sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-128gb/score/index.json new file mode 100644 index 00000000000..3994ac47dd5 --- /dev/null +++ b/site/public/v1/smartphones/sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 9.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 18.9 +} diff --git a/site/public/v1/smartphones/sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-256gb/index.json b/site/public/v1/smartphones/sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-256gb/index.json new file mode 100644 index 00000000000..363c15e9c35 --- /dev/null +++ b/site/public/v1/smartphones/sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4509, + "slug": "sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-256gb", + "name": "SM-G998W Galaxy S21 Ultra 5G Dual SIM TD-LTE CA 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": 1720, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 227.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 9.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 18.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.742203", + "updated_at": "2026-06-19T00:43:44.742203" +} diff --git a/site/public/v1/smartphones/sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-256gb/score/index.json b/site/public/v1/smartphones/sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-256gb/score/index.json new file mode 100644 index 00000000000..3994ac47dd5 --- /dev/null +++ b/site/public/v1/smartphones/sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 37.8, + "performance": 9.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": 18.9 +} diff --git a/site/public/v1/smartphones/sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-512gb/index.json b/site/public/v1/smartphones/sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-512gb/index.json new file mode 100644 index 00000000000..c1a43cd88ad --- /dev/null +++ b/site/public/v1/smartphones/sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4510, + "slug": "sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-512gb", + "name": "SM-G998W Galaxy S21 Ultra 5G Dual SIM TD-LTE CA 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-29", + "msrp_usd": null, + "ram_gb": 16, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 227.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 38.5, + "performance": 12.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.742203", + "updated_at": "2026-06-19T00:43:44.742203" +} diff --git a/site/public/v1/smartphones/sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-512gb/score/index.json b/site/public/v1/smartphones/sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-512gb/score/index.json new file mode 100644 index 00000000000..9cd23a51c7d --- /dev/null +++ b/site/public/v1/smartphones/sm-g998w-galaxy-s21-ultra-5g-dual-sim-td-lte-ca-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 38.5, + "performance": 12.4, + "camera": 35.7, + "battery": 41.9, + "display": 64.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-j410f-ds-galaxy-j4-core-duos-td-lte-global/index.json b/site/public/v1/smartphones/sm-j410f-ds-galaxy-j4-core-duos-td-lte-global/index.json new file mode 100644 index 00000000000..083e10f908a --- /dev/null +++ b/site/public/v1/smartphones/sm-j410f-ds-galaxy-j4-core-duos-td-lte-global/index.json @@ -0,0 +1,76 @@ +{ + "id": 3810, + "slug": "sm-j410f-ds-galaxy-j4-core-duos-td-lte-global", + "name": "SM-J410F/DS Galaxy J4 Core Duos TD-LTE Global", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color IPS TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": null, + "camera": 5.0, + "battery": 4.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.647438", + "updated_at": "2026-06-19T00:43:44.647438" +} diff --git a/site/public/v1/smartphones/sm-j410f-ds-galaxy-j4-core-duos-td-lte-global/score/index.json b/site/public/v1/smartphones/sm-j410f-ds-galaxy-j4-core-duos-td-lte-global/score/index.json new file mode 100644 index 00000000000..6b116545a08 --- /dev/null +++ b/site/public/v1/smartphones/sm-j410f-ds-galaxy-j4-core-duos-td-lte-global/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": null, + "camera": 5.0, + "battery": 4.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-j410g-ds-galaxy-j4-core-duos-td-lte-latam/index.json b/site/public/v1/smartphones/sm-j410g-ds-galaxy-j4-core-duos-td-lte-latam/index.json new file mode 100644 index 00000000000..160c3cc8752 --- /dev/null +++ b/site/public/v1/smartphones/sm-j410g-ds-galaxy-j4-core-duos-td-lte-latam/index.json @@ -0,0 +1,76 @@ +{ + "id": 3811, + "slug": "sm-j410g-ds-galaxy-j4-core-duos-td-lte-latam", + "name": "SM-J410G/DS Galaxy J4 Core Duos TD-LTE LATAM", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color IPS TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": null, + "camera": 5.0, + "battery": 4.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.647438", + "updated_at": "2026-06-19T00:43:44.647438" +} diff --git a/site/public/v1/smartphones/sm-j410g-ds-galaxy-j4-core-duos-td-lte-latam/score/index.json b/site/public/v1/smartphones/sm-j410g-ds-galaxy-j4-core-duos-td-lte-latam/score/index.json new file mode 100644 index 00000000000..6b116545a08 --- /dev/null +++ b/site/public/v1/smartphones/sm-j410g-ds-galaxy-j4-core-duos-td-lte-latam/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": null, + "camera": 5.0, + "battery": 4.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-j410g-galaxy-j4-core-td-lte-latam/index.json b/site/public/v1/smartphones/sm-j410g-galaxy-j4-core-td-lte-latam/index.json new file mode 100644 index 00000000000..1853057d686 --- /dev/null +++ b/site/public/v1/smartphones/sm-j410g-galaxy-j4-core-td-lte-latam/index.json @@ -0,0 +1,76 @@ +{ + "id": 3812, + "slug": "sm-j410g-galaxy-j4-core-td-lte-latam", + "name": "SM-J410G Galaxy J4 Core TD-LTE LATAM", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color IPS TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 177.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": null, + "camera": 5.0, + "battery": 4.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.648435", + "updated_at": "2026-06-19T00:43:44.648435" +} diff --git a/site/public/v1/smartphones/sm-j410g-galaxy-j4-core-td-lte-latam/score/index.json b/site/public/v1/smartphones/sm-j410g-galaxy-j4-core-td-lte-latam/score/index.json new file mode 100644 index 00000000000..6b116545a08 --- /dev/null +++ b/site/public/v1/smartphones/sm-j410g-galaxy-j4-core-td-lte-latam/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": null, + "camera": 5.0, + "battery": 4.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-j415f-ds-galaxy-j4-2018-duos-global-td-lte-16gb/index.json b/site/public/v1/smartphones/sm-j415f-ds-galaxy-j4-2018-duos-global-td-lte-16gb/index.json new file mode 100644 index 00000000000..245fb0e35ce --- /dev/null +++ b/site/public/v1/smartphones/sm-j415f-ds-galaxy-j4-2018-duos-global-td-lte-16gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3813, + "slug": "sm-j415f-ds-galaxy-j4-2018-duos-global-td-lte-16gb", + "name": "SM-J415F/DS Galaxy J4+ 2018 Duos Global TD-LTE 16GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.648435", + "updated_at": "2026-06-19T00:43:44.648435" +} diff --git a/site/public/v1/smartphones/sm-j415f-ds-galaxy-j4-2018-duos-global-td-lte-16gb/score/index.json b/site/public/v1/smartphones/sm-j415f-ds-galaxy-j4-2018-duos-global-td-lte-16gb/score/index.json new file mode 100644 index 00000000000..61f4c83875e --- /dev/null +++ b/site/public/v1/smartphones/sm-j415f-ds-galaxy-j4-2018-duos-global-td-lte-16gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-j415f-ds-galaxy-j4-2018-duos-global-td-lte-32gb/index.json b/site/public/v1/smartphones/sm-j415f-ds-galaxy-j4-2018-duos-global-td-lte-32gb/index.json new file mode 100644 index 00000000000..f3071f70dd9 --- /dev/null +++ b/site/public/v1/smartphones/sm-j415f-ds-galaxy-j4-2018-duos-global-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3814, + "slug": "sm-j415f-ds-galaxy-j4-2018-duos-global-td-lte-32gb", + "name": "SM-J415F/DS Galaxy J4+ 2018 Duos Global TD-LTE 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.648435", + "updated_at": "2026-06-19T00:43:44.648435" +} diff --git a/site/public/v1/smartphones/sm-j415f-ds-galaxy-j4-2018-duos-global-td-lte-32gb/score/index.json b/site/public/v1/smartphones/sm-j415f-ds-galaxy-j4-2018-duos-global-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..61f4c83875e --- /dev/null +++ b/site/public/v1/smartphones/sm-j415f-ds-galaxy-j4-2018-duos-global-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-j415f-galaxy-j4-2018-td-lte-emea-32gb/index.json b/site/public/v1/smartphones/sm-j415f-galaxy-j4-2018-td-lte-emea-32gb/index.json new file mode 100644 index 00000000000..5785fa03c77 --- /dev/null +++ b/site/public/v1/smartphones/sm-j415f-galaxy-j4-2018-td-lte-emea-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3815, + "slug": "sm-j415f-galaxy-j4-2018-td-lte-emea-32gb", + "name": "SM-J415F Galaxy J4+ 2018 TD-LTE EMEA 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-09-24", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.648435", + "updated_at": "2026-06-19T00:43:44.648435" +} diff --git a/site/public/v1/smartphones/sm-j415f-galaxy-j4-2018-td-lte-emea-32gb/score/index.json b/site/public/v1/smartphones/sm-j415f-galaxy-j4-2018-td-lte-emea-32gb/score/index.json new file mode 100644 index 00000000000..61f4c83875e --- /dev/null +++ b/site/public/v1/smartphones/sm-j415f-galaxy-j4-2018-td-lte-emea-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-j415fn-ds-galaxy-j4-2018-duos-td-lte-emea-32gb/index.json b/site/public/v1/smartphones/sm-j415fn-ds-galaxy-j4-2018-duos-td-lte-emea-32gb/index.json new file mode 100644 index 00000000000..ba2f5b98580 --- /dev/null +++ b/site/public/v1/smartphones/sm-j415fn-ds-galaxy-j4-2018-duos-td-lte-emea-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3816, + "slug": "sm-j415fn-ds-galaxy-j4-2018-duos-td-lte-emea-32gb", + "name": "SM-J415FN/DS Galaxy J4+ 2018 Duos TD-LTE EMEA 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-09-24", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.648435", + "updated_at": "2026-06-19T00:43:44.648435" +} diff --git a/site/public/v1/smartphones/sm-j415fn-ds-galaxy-j4-2018-duos-td-lte-emea-32gb/score/index.json b/site/public/v1/smartphones/sm-j415fn-ds-galaxy-j4-2018-duos-td-lte-emea-32gb/score/index.json new file mode 100644 index 00000000000..61f4c83875e --- /dev/null +++ b/site/public/v1/smartphones/sm-j415fn-ds-galaxy-j4-2018-duos-td-lte-emea-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-j415fn-galaxy-j4-2018-td-lte-emea-16gb/index.json b/site/public/v1/smartphones/sm-j415fn-galaxy-j4-2018-td-lte-emea-16gb/index.json new file mode 100644 index 00000000000..75abed9c1b6 --- /dev/null +++ b/site/public/v1/smartphones/sm-j415fn-galaxy-j4-2018-td-lte-emea-16gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3817, + "slug": "sm-j415fn-galaxy-j4-2018-td-lte-emea-16gb", + "name": "SM-J415FN Galaxy J4+ 2018 TD-LTE EMEA 16GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-09-24", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.648435", + "updated_at": "2026-06-19T00:43:44.648435" +} diff --git a/site/public/v1/smartphones/sm-j415fn-galaxy-j4-2018-td-lte-emea-16gb/score/index.json b/site/public/v1/smartphones/sm-j415fn-galaxy-j4-2018-td-lte-emea-16gb/score/index.json new file mode 100644 index 00000000000..61f4c83875e --- /dev/null +++ b/site/public/v1/smartphones/sm-j415fn-galaxy-j4-2018-td-lte-emea-16gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-j415fn-galaxy-j4-2018-td-lte-emea-32gb/index.json b/site/public/v1/smartphones/sm-j415fn-galaxy-j4-2018-td-lte-emea-32gb/index.json new file mode 100644 index 00000000000..cde69dc33fa --- /dev/null +++ b/site/public/v1/smartphones/sm-j415fn-galaxy-j4-2018-td-lte-emea-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3818, + "slug": "sm-j415fn-galaxy-j4-2018-td-lte-emea-32gb", + "name": "SM-J415FN Galaxy J4+ 2018 TD-LTE EMEA 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-09-24", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.649757", + "updated_at": "2026-06-19T00:43:44.649757" +} diff --git a/site/public/v1/smartphones/sm-j415fn-galaxy-j4-2018-td-lte-emea-32gb/score/index.json b/site/public/v1/smartphones/sm-j415fn-galaxy-j4-2018-td-lte-emea-32gb/score/index.json new file mode 100644 index 00000000000..61f4c83875e --- /dev/null +++ b/site/public/v1/smartphones/sm-j415fn-galaxy-j4-2018-td-lte-emea-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-j415g-ds-galaxy-j4-2018-duos-td-lte-latam-32gb/index.json b/site/public/v1/smartphones/sm-j415g-ds-galaxy-j4-2018-duos-td-lte-latam-32gb/index.json new file mode 100644 index 00000000000..544b3e0a647 --- /dev/null +++ b/site/public/v1/smartphones/sm-j415g-ds-galaxy-j4-2018-duos-td-lte-latam-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3819, + "slug": "sm-j415g-ds-galaxy-j4-2018-duos-td-lte-latam-32gb", + "name": "SM-J415G/DS Galaxy J4+ 2018 Duos TD-LTE LATAM 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.649757", + "updated_at": "2026-06-19T00:43:44.649757" +} diff --git a/site/public/v1/smartphones/sm-j415g-ds-galaxy-j4-2018-duos-td-lte-latam-32gb/score/index.json b/site/public/v1/smartphones/sm-j415g-ds-galaxy-j4-2018-duos-td-lte-latam-32gb/score/index.json new file mode 100644 index 00000000000..61f4c83875e --- /dev/null +++ b/site/public/v1/smartphones/sm-j415g-ds-galaxy-j4-2018-duos-td-lte-latam-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-j415g-galaxy-j4-2018-td-lte-latam-16gb/index.json b/site/public/v1/smartphones/sm-j415g-galaxy-j4-2018-td-lte-latam-16gb/index.json new file mode 100644 index 00000000000..6b32e8bd6d1 --- /dev/null +++ b/site/public/v1/smartphones/sm-j415g-galaxy-j4-2018-td-lte-latam-16gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3820, + "slug": "sm-j415g-galaxy-j4-2018-td-lte-latam-16gb", + "name": "SM-J415G Galaxy J4+ 2018 TD-LTE LATAM 16GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.649757", + "updated_at": "2026-06-19T00:43:44.649757" +} diff --git a/site/public/v1/smartphones/sm-j415g-galaxy-j4-2018-td-lte-latam-16gb/score/index.json b/site/public/v1/smartphones/sm-j415g-galaxy-j4-2018-td-lte-latam-16gb/score/index.json new file mode 100644 index 00000000000..61f4c83875e --- /dev/null +++ b/site/public/v1/smartphones/sm-j415g-galaxy-j4-2018-td-lte-latam-16gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-j415g-galaxy-j4-2018-td-lte-latam-32gb/index.json b/site/public/v1/smartphones/sm-j415g-galaxy-j4-2018-td-lte-latam-32gb/index.json new file mode 100644 index 00000000000..537161d68d1 --- /dev/null +++ b/site/public/v1/smartphones/sm-j415g-galaxy-j4-2018-td-lte-latam-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3821, + "slug": "sm-j415g-galaxy-j4-2018-td-lte-latam-32gb", + "name": "SM-J415G Galaxy J4+ 2018 TD-LTE LATAM 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.649757", + "updated_at": "2026-06-19T00:43:44.649757" +} diff --git a/site/public/v1/smartphones/sm-j415g-galaxy-j4-2018-td-lte-latam-32gb/score/index.json b/site/public/v1/smartphones/sm-j415g-galaxy-j4-2018-td-lte-latam-32gb/score/index.json new file mode 100644 index 00000000000..61f4c83875e --- /dev/null +++ b/site/public/v1/smartphones/sm-j415g-galaxy-j4-2018-td-lte-latam-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-j415gn-ds-galaxy-j4-2018-duos-td-lte-apac-16gb/index.json b/site/public/v1/smartphones/sm-j415gn-ds-galaxy-j4-2018-duos-td-lte-apac-16gb/index.json new file mode 100644 index 00000000000..0efd7a5f858 --- /dev/null +++ b/site/public/v1/smartphones/sm-j415gn-ds-galaxy-j4-2018-duos-td-lte-apac-16gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3822, + "slug": "sm-j415gn-ds-galaxy-j4-2018-duos-td-lte-apac-16gb", + "name": "SM-J415GN/DS Galaxy J4+ 2018 Duos TD-LTE APAC 16GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-09-24", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.649757", + "updated_at": "2026-06-19T00:43:44.649757" +} diff --git a/site/public/v1/smartphones/sm-j415gn-ds-galaxy-j4-2018-duos-td-lte-apac-16gb/score/index.json b/site/public/v1/smartphones/sm-j415gn-ds-galaxy-j4-2018-duos-td-lte-apac-16gb/score/index.json new file mode 100644 index 00000000000..61f4c83875e --- /dev/null +++ b/site/public/v1/smartphones/sm-j415gn-ds-galaxy-j4-2018-duos-td-lte-apac-16gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-j415gn-ds-galaxy-j4-2018-duos-td-lte-apac-32gb/index.json b/site/public/v1/smartphones/sm-j415gn-ds-galaxy-j4-2018-duos-td-lte-apac-32gb/index.json new file mode 100644 index 00000000000..f9136681ba9 --- /dev/null +++ b/site/public/v1/smartphones/sm-j415gn-ds-galaxy-j4-2018-duos-td-lte-apac-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3823, + "slug": "sm-j415gn-ds-galaxy-j4-2018-duos-td-lte-apac-32gb", + "name": "SM-J415GN/DS Galaxy J4+ 2018 Duos TD-LTE APAC 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-09-24", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.650764", + "updated_at": "2026-06-19T00:43:44.650764" +} diff --git a/site/public/v1/smartphones/sm-j415gn-ds-galaxy-j4-2018-duos-td-lte-apac-32gb/score/index.json b/site/public/v1/smartphones/sm-j415gn-ds-galaxy-j4-2018-duos-td-lte-apac-32gb/score/index.json new file mode 100644 index 00000000000..61f4c83875e --- /dev/null +++ b/site/public/v1/smartphones/sm-j415gn-ds-galaxy-j4-2018-duos-td-lte-apac-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-j415gn-galaxy-j4-2018-td-lte-apac-16gb/index.json b/site/public/v1/smartphones/sm-j415gn-galaxy-j4-2018-td-lte-apac-16gb/index.json new file mode 100644 index 00000000000..2b40879930f --- /dev/null +++ b/site/public/v1/smartphones/sm-j415gn-galaxy-j4-2018-td-lte-apac-16gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3824, + "slug": "sm-j415gn-galaxy-j4-2018-td-lte-apac-16gb", + "name": "SM-J415GN Galaxy J4+ 2018 TD-LTE APAC 16GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.650764", + "updated_at": "2026-06-19T00:43:44.650764" +} diff --git a/site/public/v1/smartphones/sm-j415gn-galaxy-j4-2018-td-lte-apac-16gb/score/index.json b/site/public/v1/smartphones/sm-j415gn-galaxy-j4-2018-td-lte-apac-16gb/score/index.json new file mode 100644 index 00000000000..61f4c83875e --- /dev/null +++ b/site/public/v1/smartphones/sm-j415gn-galaxy-j4-2018-td-lte-apac-16gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-j415n-galaxy-j4-plus-2018-td-lte-kr-32gb/index.json b/site/public/v1/smartphones/sm-j415n-galaxy-j4-plus-2018-td-lte-kr-32gb/index.json new file mode 100644 index 00000000000..37ae6656f8c --- /dev/null +++ b/site/public/v1/smartphones/sm-j415n-galaxy-j4-plus-2018-td-lte-kr-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3825, + "slug": "sm-j415n-galaxy-j4-plus-2018-td-lte-kr-32gb", + "name": "SM-J415N Galaxy J4 Plus 2018 TD-LTE KR 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-11-12", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.650764", + "updated_at": "2026-06-19T00:43:44.650764" +} diff --git a/site/public/v1/smartphones/sm-j415n-galaxy-j4-plus-2018-td-lte-kr-32gb/score/index.json b/site/public/v1/smartphones/sm-j415n-galaxy-j4-plus-2018-td-lte-kr-32gb/score/index.json new file mode 100644 index 00000000000..61f4c83875e --- /dev/null +++ b/site/public/v1/smartphones/sm-j415n-galaxy-j4-plus-2018-td-lte-kr-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-j610f-ds-galaxy-j6-2018-duos-td-lte-emea-apac-32gb/index.json b/site/public/v1/smartphones/sm-j610f-ds-galaxy-j6-2018-duos-td-lte-emea-apac-32gb/index.json new file mode 100644 index 00000000000..950b005e45a --- /dev/null +++ b/site/public/v1/smartphones/sm-j610f-ds-galaxy-j6-2018-duos-td-lte-emea-apac-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3826, + "slug": "sm-j610f-ds-galaxy-j6-2018-duos-td-lte-emea-apac-32gb", + "name": "SM-J610F/DS Galaxy J6+ 2018 Duos TD-LTE EMEA APAC 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-10-06", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.650764", + "updated_at": "2026-06-19T00:43:44.650764" +} diff --git a/site/public/v1/smartphones/sm-j610f-ds-galaxy-j6-2018-duos-td-lte-emea-apac-32gb/score/index.json b/site/public/v1/smartphones/sm-j610f-ds-galaxy-j6-2018-duos-td-lte-emea-apac-32gb/score/index.json new file mode 100644 index 00000000000..61f4c83875e --- /dev/null +++ b/site/public/v1/smartphones/sm-j610f-ds-galaxy-j6-2018-duos-td-lte-emea-apac-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-j610f-ds-galaxy-j6-2018-duos-td-lte-emea-apac-64gb/index.json b/site/public/v1/smartphones/sm-j610f-ds-galaxy-j6-2018-duos-td-lte-emea-apac-64gb/index.json new file mode 100644 index 00000000000..28c4ffc1728 --- /dev/null +++ b/site/public/v1/smartphones/sm-j610f-ds-galaxy-j6-2018-duos-td-lte-emea-apac-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3827, + "slug": "sm-j610f-ds-galaxy-j6-2018-duos-td-lte-emea-apac-64gb", + "name": "SM-J610F/DS Galaxy J6+ 2018 Duos TD-LTE EMEA APAC 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.650764", + "updated_at": "2026-06-19T00:43:44.650764" +} diff --git a/site/public/v1/smartphones/sm-j610f-ds-galaxy-j6-2018-duos-td-lte-emea-apac-64gb/score/index.json b/site/public/v1/smartphones/sm-j610f-ds-galaxy-j6-2018-duos-td-lte-emea-apac-64gb/score/index.json new file mode 100644 index 00000000000..61f4c83875e --- /dev/null +++ b/site/public/v1/smartphones/sm-j610f-ds-galaxy-j6-2018-duos-td-lte-emea-apac-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-j610fn-ds-galaxy-j6-2018-duos-td-lte-emea-32gb/index.json b/site/public/v1/smartphones/sm-j610fn-ds-galaxy-j6-2018-duos-td-lte-emea-32gb/index.json new file mode 100644 index 00000000000..243c49c2bcc --- /dev/null +++ b/site/public/v1/smartphones/sm-j610fn-ds-galaxy-j6-2018-duos-td-lte-emea-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3828, + "slug": "sm-j610fn-ds-galaxy-j6-2018-duos-td-lte-emea-32gb", + "name": "SM-J610FN/DS Galaxy J6+ 2018 Duos TD-LTE EMEA 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-09-24", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.650764", + "updated_at": "2026-06-19T00:43:44.650764" +} diff --git a/site/public/v1/smartphones/sm-j610fn-ds-galaxy-j6-2018-duos-td-lte-emea-32gb/score/index.json b/site/public/v1/smartphones/sm-j610fn-ds-galaxy-j6-2018-duos-td-lte-emea-32gb/score/index.json new file mode 100644 index 00000000000..61f4c83875e --- /dev/null +++ b/site/public/v1/smartphones/sm-j610fn-ds-galaxy-j6-2018-duos-td-lte-emea-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-j610g-ds-galaxy-j6-2018-duos-td-lte-apac-64gb/index.json b/site/public/v1/smartphones/sm-j610g-ds-galaxy-j6-2018-duos-td-lte-apac-64gb/index.json new file mode 100644 index 00000000000..b8d561a58c4 --- /dev/null +++ b/site/public/v1/smartphones/sm-j610g-ds-galaxy-j6-2018-duos-td-lte-apac-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3829, + "slug": "sm-j610g-ds-galaxy-j6-2018-duos-td-lte-apac-64gb", + "name": "SM-J610G/DS Galaxy J6+ 2018 Duos TD-LTE APAC 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-10-06", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.650764", + "updated_at": "2026-06-19T00:43:44.650764" +} diff --git a/site/public/v1/smartphones/sm-j610g-ds-galaxy-j6-2018-duos-td-lte-apac-64gb/score/index.json b/site/public/v1/smartphones/sm-j610g-ds-galaxy-j6-2018-duos-td-lte-apac-64gb/score/index.json new file mode 100644 index 00000000000..61f4c83875e --- /dev/null +++ b/site/public/v1/smartphones/sm-j610g-ds-galaxy-j6-2018-duos-td-lte-apac-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-j610g-ds-galaxy-j6-2018-duos-td-lte-latam-apac-32gb/index.json b/site/public/v1/smartphones/sm-j610g-ds-galaxy-j6-2018-duos-td-lte-latam-apac-32gb/index.json new file mode 100644 index 00000000000..700ec71ac64 --- /dev/null +++ b/site/public/v1/smartphones/sm-j610g-ds-galaxy-j6-2018-duos-td-lte-latam-apac-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3830, + "slug": "sm-j610g-ds-galaxy-j6-2018-duos-td-lte-latam-apac-32gb", + "name": "SM-J610G/DS Galaxy J6+ 2018 Duos TD-LTE LATAM APAC 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-10-06", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.651765", + "updated_at": "2026-06-19T00:43:44.651765" +} diff --git a/site/public/v1/smartphones/sm-j610g-ds-galaxy-j6-2018-duos-td-lte-latam-apac-32gb/score/index.json b/site/public/v1/smartphones/sm-j610g-ds-galaxy-j6-2018-duos-td-lte-latam-apac-32gb/score/index.json new file mode 100644 index 00000000000..61f4c83875e --- /dev/null +++ b/site/public/v1/smartphones/sm-j610g-ds-galaxy-j6-2018-duos-td-lte-latam-apac-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-j610g-galaxy-j6-spark-2018-td-lte-latam-au-32gb/index.json b/site/public/v1/smartphones/sm-j610g-galaxy-j6-spark-2018-td-lte-latam-au-32gb/index.json new file mode 100644 index 00000000000..dcec15a8ad2 --- /dev/null +++ b/site/public/v1/smartphones/sm-j610g-galaxy-j6-spark-2018-td-lte-latam-au-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3831, + "slug": "sm-j610g-galaxy-j6-spark-2018-td-lte-latam-au-32gb", + "name": "SM-J610G Galaxy J6+ Spark 2018 TD-LTE LATAM AU 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.01, + "resolution": "720x1480", + "type": "Color TN-TFT LCD display", + "ppi": 274 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.651765", + "updated_at": "2026-06-19T00:43:44.651765" +} diff --git a/site/public/v1/smartphones/sm-j610g-galaxy-j6-spark-2018-td-lte-latam-au-32gb/score/index.json b/site/public/v1/smartphones/sm-j610g-galaxy-j6-spark-2018-td-lte-latam-au-32gb/score/index.json new file mode 100644 index 00000000000..61f4c83875e --- /dev/null +++ b/site/public/v1/smartphones/sm-j610g-galaxy-j6-spark-2018-td-lte-latam-au-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-j810g-ds-galaxy-on8-2018-duos-td-lte-in-64gb-galaxy-j8-2018/index.json b/site/public/v1/smartphones/sm-j810g-ds-galaxy-on8-2018-duos-td-lte-in-64gb-galaxy-j8-2018/index.json new file mode 100644 index 00000000000..6830b4a2dbd --- /dev/null +++ b/site/public/v1/smartphones/sm-j810g-ds-galaxy-on8-2018-duos-td-lte-in-64gb-galaxy-j8-2018/index.json @@ -0,0 +1,76 @@ +{ + "id": 3832, + "slug": "sm-j810g-ds-galaxy-on8-2018-duos-td-lte-in-64gb-galaxy-j8-2018", + "name": "SM-J810G/DS Galaxy On8 2018 Duos TD-LTE IN 64GB / Galaxy J8 2018", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-08-06", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.05, + "resolution": "720x1480", + "type": "AM-OLED display", + "ppi": 272 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.651765", + "updated_at": "2026-06-19T00:43:44.651765" +} diff --git a/site/public/v1/smartphones/sm-j810g-ds-galaxy-on8-2018-duos-td-lte-in-64gb-galaxy-j8-2018/score/index.json b/site/public/v1/smartphones/sm-j810g-ds-galaxy-on8-2018-duos-td-lte-in-64gb-galaxy-j8-2018/score/index.json new file mode 100644 index 00000000000..2917ed4b64b --- /dev/null +++ b/site/public/v1/smartphones/sm-j810g-ds-galaxy-on8-2018-duos-td-lte-in-64gb-galaxy-j8-2018/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-j810m-ds-galaxy-j8-2018-duos-td-lte-latam-32gb/index.json b/site/public/v1/smartphones/sm-j810m-ds-galaxy-j8-2018-duos-td-lte-latam-32gb/index.json new file mode 100644 index 00000000000..0b43fcea3bd --- /dev/null +++ b/site/public/v1/smartphones/sm-j810m-ds-galaxy-j8-2018-duos-td-lte-latam-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3833, + "slug": "sm-j810m-ds-galaxy-j8-2018-duos-td-lte-latam-32gb", + "name": "SM-J810M/DS Galaxy J8 2018 Duos TD-LTE LATAM 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.05, + "resolution": "720x1480", + "type": "AM-OLED display", + "ppi": 272 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.651765", + "updated_at": "2026-06-19T00:43:44.651765" +} diff --git a/site/public/v1/smartphones/sm-j810m-ds-galaxy-j8-2018-duos-td-lte-latam-32gb/score/index.json b/site/public/v1/smartphones/sm-j810m-ds-galaxy-j8-2018-duos-td-lte-latam-32gb/score/index.json new file mode 100644 index 00000000000..2917ed4b64b --- /dev/null +++ b/site/public/v1/smartphones/sm-j810m-ds-galaxy-j8-2018-duos-td-lte-latam-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-j810m-ds-galaxy-j8-2018-duos-td-lte-latam-64gb/index.json b/site/public/v1/smartphones/sm-j810m-ds-galaxy-j8-2018-duos-td-lte-latam-64gb/index.json new file mode 100644 index 00000000000..7b10ce107ec --- /dev/null +++ b/site/public/v1/smartphones/sm-j810m-ds-galaxy-j8-2018-duos-td-lte-latam-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3834, + "slug": "sm-j810m-ds-galaxy-j8-2018-duos-td-lte-latam-64gb", + "name": "SM-J810M/DS Galaxy J8 2018 Duos TD-LTE LATAM 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.05, + "resolution": "720x1480", + "type": "AM-OLED display", + "ppi": 272 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.651765", + "updated_at": "2026-06-19T00:43:44.651765" +} diff --git a/site/public/v1/smartphones/sm-j810m-ds-galaxy-j8-2018-duos-td-lte-latam-64gb/score/index.json b/site/public/v1/smartphones/sm-j810m-ds-galaxy-j8-2018-duos-td-lte-latam-64gb/score/index.json new file mode 100644 index 00000000000..2917ed4b64b --- /dev/null +++ b/site/public/v1/smartphones/sm-j810m-ds-galaxy-j8-2018-duos-td-lte-latam-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-j810m-galaxy-j8-2018-td-lte-latam-32gb/index.json b/site/public/v1/smartphones/sm-j810m-galaxy-j8-2018-td-lte-latam-32gb/index.json new file mode 100644 index 00000000000..9e54eee605d --- /dev/null +++ b/site/public/v1/smartphones/sm-j810m-galaxy-j8-2018-td-lte-latam-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3835, + "slug": "sm-j810m-galaxy-j8-2018-td-lte-latam-32gb", + "name": "SM-J810M Galaxy J8 2018 TD-LTE LATAM 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.05, + "resolution": "720x1480", + "type": "AM-OLED display", + "ppi": 272 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.651765", + "updated_at": "2026-06-19T00:43:44.651765" +} diff --git a/site/public/v1/smartphones/sm-j810m-galaxy-j8-2018-td-lte-latam-32gb/score/index.json b/site/public/v1/smartphones/sm-j810m-galaxy-j8-2018-td-lte-latam-32gb/score/index.json new file mode 100644 index 00000000000..2917ed4b64b --- /dev/null +++ b/site/public/v1/smartphones/sm-j810m-galaxy-j8-2018-td-lte-latam-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-j810m-galaxy-j8-2018-td-lte-latam-64gb/index.json b/site/public/v1/smartphones/sm-j810m-galaxy-j8-2018-td-lte-latam-64gb/index.json new file mode 100644 index 00000000000..2a16e1e1c1e --- /dev/null +++ b/site/public/v1/smartphones/sm-j810m-galaxy-j8-2018-td-lte-latam-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3836, + "slug": "sm-j810m-galaxy-j8-2018-td-lte-latam-64gb", + "name": "SM-J810M Galaxy J8 2018 TD-LTE LATAM 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.05, + "resolution": "720x1480", + "type": "AM-OLED display", + "ppi": 272 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.652759", + "updated_at": "2026-06-19T00:43:44.652759" +} diff --git a/site/public/v1/smartphones/sm-j810m-galaxy-j8-2018-td-lte-latam-64gb/score/index.json b/site/public/v1/smartphones/sm-j810m-galaxy-j8-2018-td-lte-latam-64gb/score/index.json new file mode 100644 index 00000000000..2917ed4b64b --- /dev/null +++ b/site/public/v1/smartphones/sm-j810m-galaxy-j8-2018-td-lte-latam-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": null, + "camera": 6.3, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m015f-ds-galaxy-m01-2020-global-dual-sim-td-lte-32gb/index.json b/site/public/v1/smartphones/sm-m015f-ds-galaxy-m01-2020-global-dual-sim-td-lte-32gb/index.json new file mode 100644 index 00000000000..c7271066809 --- /dev/null +++ b/site/public/v1/smartphones/sm-m015f-ds-galaxy-m01-2020-global-dual-sim-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4266, + "slug": "sm-m015f-ds-galaxy-m01-2020-global-dual-sim-td-lte-32gb", + "name": "SM-M015F/DS Galaxy M01 2020 Global Dual SIM TD-LTE 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2020-07-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1520", + "type": "Color PLS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.708781", + "updated_at": "2026-06-19T00:43:44.708781" +} diff --git a/site/public/v1/smartphones/sm-m015f-ds-galaxy-m01-2020-global-dual-sim-td-lte-32gb/score/index.json b/site/public/v1/smartphones/sm-m015f-ds-galaxy-m01-2020-global-dual-sim-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..a59635bee66 --- /dev/null +++ b/site/public/v1/smartphones/sm-m015f-ds-galaxy-m01-2020-global-dual-sim-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m015g-ds-galaxy-m01-2020-dual-sim-td-lte-apac-32gb/index.json b/site/public/v1/smartphones/sm-m015g-ds-galaxy-m01-2020-dual-sim-td-lte-apac-32gb/index.json new file mode 100644 index 00000000000..8b674f3a4eb --- /dev/null +++ b/site/public/v1/smartphones/sm-m015g-ds-galaxy-m01-2020-dual-sim-td-lte-apac-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4267, + "slug": "sm-m015g-ds-galaxy-m01-2020-dual-sim-td-lte-apac-32gb", + "name": "SM-M015G/DS Galaxy M01 2020 Dual SIM TD-LTE APAC 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2020-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1520", + "type": "Color PLS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.708781", + "updated_at": "2026-06-19T00:43:44.708781" +} diff --git a/site/public/v1/smartphones/sm-m015g-ds-galaxy-m01-2020-dual-sim-td-lte-apac-32gb/score/index.json b/site/public/v1/smartphones/sm-m015g-ds-galaxy-m01-2020-dual-sim-td-lte-apac-32gb/score/index.json new file mode 100644 index 00000000000..a59635bee66 --- /dev/null +++ b/site/public/v1/smartphones/sm-m015g-ds-galaxy-m01-2020-dual-sim-td-lte-apac-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m017f-ds-galaxy-m01s-2020-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/sm-m017f-ds-galaxy-m01s-2020-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..4a7a7796de6 --- /dev/null +++ b/site/public/v1/smartphones/sm-m017f-ds-galaxy-m01s-2020-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 4268, + "slug": "sm-m017f-ds-galaxy-m01s-2020-global-dual-sim-td-lte", + "name": "SM-M017F/DS Galaxy M01s 2020 Global Dual SIM TD-LTE", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-07-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color PLS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.709786", + "updated_at": "2026-06-19T00:43:44.709786" +} diff --git a/site/public/v1/smartphones/sm-m017f-ds-galaxy-m01s-2020-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/sm-m017f-ds-galaxy-m01s-2020-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/sm-m017f-ds-galaxy-m01s-2020-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m025f-ds-galaxy-m02s-2021-global-dual-sim-td-lte-32gb/index.json b/site/public/v1/smartphones/sm-m025f-ds-galaxy-m02s-2021-global-dual-sim-td-lte-32gb/index.json new file mode 100644 index 00000000000..ff3610c907b --- /dev/null +++ b/site/public/v1/smartphones/sm-m025f-ds-galaxy-m02s-2021-global-dual-sim-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4511, + "slug": "sm-m025f-ds-galaxy-m02s-2021-global-dual-sim-td-lte-32gb", + "name": "SM-M025F/DS Galaxy M02s 2021 Global Dual SIM TD-LTE 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2021-01-18", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.742203", + "updated_at": "2026-06-19T00:43:44.742203" +} diff --git a/site/public/v1/smartphones/sm-m025f-ds-galaxy-m02s-2021-global-dual-sim-td-lte-32gb/score/index.json b/site/public/v1/smartphones/sm-m025f-ds-galaxy-m02s-2021-global-dual-sim-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..d19ba3069c5 --- /dev/null +++ b/site/public/v1/smartphones/sm-m025f-ds-galaxy-m02s-2021-global-dual-sim-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m025f-ds-galaxy-m02s-2021-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-m025f-ds-galaxy-m02s-2021-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..adee47594e7 --- /dev/null +++ b/site/public/v1/smartphones/sm-m025f-ds-galaxy-m02s-2021-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4512, + "slug": "sm-m025f-ds-galaxy-m02s-2021-global-dual-sim-td-lte-64gb", + "name": "SM-M025F/DS Galaxy M02s 2021 Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2021-01-18", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.742203", + "updated_at": "2026-06-19T00:43:44.742203" +} diff --git a/site/public/v1/smartphones/sm-m025f-ds-galaxy-m02s-2021-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-m025f-ds-galaxy-m02s-2021-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..d19ba3069c5 --- /dev/null +++ b/site/public/v1/smartphones/sm-m025f-ds-galaxy-m02s-2021-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m115f-ds-galaxy-m11-2020-global-dual-sim-td-lte-32gb/index.json b/site/public/v1/smartphones/sm-m115f-ds-galaxy-m11-2020-global-dual-sim-td-lte-32gb/index.json new file mode 100644 index 00000000000..1c99100a8ac --- /dev/null +++ b/site/public/v1/smartphones/sm-m115f-ds-galaxy-m11-2020-global-dual-sim-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4269, + "slug": "sm-m115f-ds-galaxy-m11-2020-global-dual-sim-td-lte-32gb", + "name": "SM-M115F/DS Galaxy M11 2020 Global Dual SIM TD-LTE 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2020-06-02", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.709786", + "updated_at": "2026-06-19T00:43:44.709786" +} diff --git a/site/public/v1/smartphones/sm-m115f-ds-galaxy-m11-2020-global-dual-sim-td-lte-32gb/score/index.json b/site/public/v1/smartphones/sm-m115f-ds-galaxy-m11-2020-global-dual-sim-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..d19ba3069c5 --- /dev/null +++ b/site/public/v1/smartphones/sm-m115f-ds-galaxy-m11-2020-global-dual-sim-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m115f-ds-galaxy-m11-2020-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-m115f-ds-galaxy-m11-2020-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..bf162ebf680 --- /dev/null +++ b/site/public/v1/smartphones/sm-m115f-ds-galaxy-m11-2020-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4270, + "slug": "sm-m115f-ds-galaxy-m11-2020-global-dual-sim-td-lte-64gb", + "name": "SM-M115F/DS Galaxy M11 2020 Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2020-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.709786", + "updated_at": "2026-06-19T00:43:44.709786" +} diff --git a/site/public/v1/smartphones/sm-m115f-ds-galaxy-m11-2020-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-m115f-ds-galaxy-m11-2020-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..d19ba3069c5 --- /dev/null +++ b/site/public/v1/smartphones/sm-m115f-ds-galaxy-m11-2020-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m115f-dsn-galaxy-m11-2020-global-dual-sim-td-lte-32gb/index.json b/site/public/v1/smartphones/sm-m115f-dsn-galaxy-m11-2020-global-dual-sim-td-lte-32gb/index.json new file mode 100644 index 00000000000..fc42010a98e --- /dev/null +++ b/site/public/v1/smartphones/sm-m115f-dsn-galaxy-m11-2020-global-dual-sim-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4271, + "slug": "sm-m115f-dsn-galaxy-m11-2020-global-dual-sim-td-lte-32gb", + "name": "SM-M115F/DSN Galaxy M11 2020 Global Dual SIM TD-LTE 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2020-09-01", + "msrp_usd": 159, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 61.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.709786", + "updated_at": "2026-06-19T00:43:44.709786" +} diff --git a/site/public/v1/smartphones/sm-m115f-dsn-galaxy-m11-2020-global-dual-sim-td-lte-32gb/score/index.json b/site/public/v1/smartphones/sm-m115f-dsn-galaxy-m11-2020-global-dual-sim-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..f30fbd0b4af --- /dev/null +++ b/site/public/v1/smartphones/sm-m115f-dsn-galaxy-m11-2020-global-dual-sim-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 61.7 +} diff --git a/site/public/v1/smartphones/sm-m115m-ds-galaxy-m11-2020-dual-sim-td-lte-latam-32gb/index.json b/site/public/v1/smartphones/sm-m115m-ds-galaxy-m11-2020-dual-sim-td-lte-latam-32gb/index.json new file mode 100644 index 00000000000..245e2bacb5b --- /dev/null +++ b/site/public/v1/smartphones/sm-m115m-ds-galaxy-m11-2020-dual-sim-td-lte-latam-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4272, + "slug": "sm-m115m-ds-galaxy-m11-2020-dual-sim-td-lte-latam-32gb", + "name": "SM-M115M/DS Galaxy M11 2020 Dual SIM TD-LTE LATAM 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2020-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.709786", + "updated_at": "2026-06-19T00:43:44.709786" +} diff --git a/site/public/v1/smartphones/sm-m115m-ds-galaxy-m11-2020-dual-sim-td-lte-latam-32gb/score/index.json b/site/public/v1/smartphones/sm-m115m-ds-galaxy-m11-2020-dual-sim-td-lte-latam-32gb/score/index.json new file mode 100644 index 00000000000..d19ba3069c5 --- /dev/null +++ b/site/public/v1/smartphones/sm-m115m-ds-galaxy-m11-2020-dual-sim-td-lte-latam-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..1159187866b --- /dev/null +++ b/site/public/v1/smartphones/sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4513, + "slug": "sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M127F/DS Galaxy M12 2021 Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 197, + "slug": "exynos-850", + "name": "Exynos 850", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G52 MP1", + "url": "/v1/socs/exynos-850" + }, + "release_date": "2021-02-26", + "msrp_usd": 4990, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 214.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 9.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.742203", + "updated_at": "2026-06-19T00:43:44.742203" +} diff --git a/site/public/v1/smartphones/sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..dea4f7f474a --- /dev/null +++ b/site/public/v1/smartphones/sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 9.6 +} diff --git a/site/public/v1/smartphones/sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-32gb/index.json b/site/public/v1/smartphones/sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-32gb/index.json new file mode 100644 index 00000000000..af45c5e8695 --- /dev/null +++ b/site/public/v1/smartphones/sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-32gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4514, + "slug": "sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-32gb", + "name": "SM-M127F/DS Galaxy M12 2021 Standard Edition Global Dual SIM TD-LTE 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 197, + "slug": "exynos-850", + "name": "Exynos 850", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G52 MP1", + "url": "/v1/socs/exynos-850" + }, + "release_date": "2021-02-26", + "msrp_usd": 3499, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 221.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 9.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.743204", + "updated_at": "2026-06-19T00:43:44.743204" +} diff --git a/site/public/v1/smartphones/sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-32gb/score/index.json b/site/public/v1/smartphones/sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..dea4f7f474a --- /dev/null +++ b/site/public/v1/smartphones/sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 9.6 +} diff --git a/site/public/v1/smartphones/sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..6a1b0403f95 --- /dev/null +++ b/site/public/v1/smartphones/sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4515, + "slug": "sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-64gb", + "name": "SM-M127F/DS Galaxy M12 2021 Standard Edition Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 197, + "slug": "exynos-850", + "name": "Exynos 850", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G52 MP1", + "url": "/v1/socs/exynos-850" + }, + "release_date": "2021-02-26", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 214.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.743204", + "updated_at": "2026-06-19T00:43:44.743204" +} diff --git a/site/public/v1/smartphones/sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..602742251c0 --- /dev/null +++ b/site/public/v1/smartphones/sm-m127f-ds-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m127f-dsn-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-m127f-dsn-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..729d270f84e --- /dev/null +++ b/site/public/v1/smartphones/sm-m127f-dsn-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4516, + "slug": "sm-m127f-dsn-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-64gb", + "name": "SM-M127F/DSN Galaxy M12 2021 Standard Edition Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 197, + "slug": "exynos-850", + "name": "Exynos 850", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G52 MP1", + "url": "/v1/socs/exynos-850" + }, + "release_date": "2021-04-18", + "msrp_usd": 159, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 214.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 59.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.743204", + "updated_at": "2026-06-19T00:43:44.743204" +} diff --git a/site/public/v1/smartphones/sm-m127f-dsn-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-m127f-dsn-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..d0434da1826 --- /dev/null +++ b/site/public/v1/smartphones/sm-m127f-dsn-galaxy-m12-2021-standard-edition-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": 59.5 +} diff --git a/site/public/v1/smartphones/sm-m127g-ds-galaxy-m12-2021-premium-edition-dual-sim-td-lte-in-128gb/index.json b/site/public/v1/smartphones/sm-m127g-ds-galaxy-m12-2021-premium-edition-dual-sim-td-lte-in-128gb/index.json new file mode 100644 index 00000000000..a72a57edbcb --- /dev/null +++ b/site/public/v1/smartphones/sm-m127g-ds-galaxy-m12-2021-premium-edition-dual-sim-td-lte-in-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4517, + "slug": "sm-m127g-ds-galaxy-m12-2021-premium-edition-dual-sim-td-lte-in-128gb", + "name": "SM-M127G/DS Galaxy M12 2021 Premium Edition Dual SIM TD-LTE IN 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 197, + "slug": "exynos-850", + "name": "Exynos 850", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G52 MP1", + "url": "/v1/socs/exynos-850" + }, + "release_date": "2021-03-14", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 221.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 1.5, + "camera": 16.5, + "battery": 45.0, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.743204", + "updated_at": "2026-06-19T00:43:44.743204" +} diff --git a/site/public/v1/smartphones/sm-m127g-ds-galaxy-m12-2021-premium-edition-dual-sim-td-lte-in-128gb/score/index.json b/site/public/v1/smartphones/sm-m127g-ds-galaxy-m12-2021-premium-edition-dual-sim-td-lte-in-128gb/score/index.json new file mode 100644 index 00000000000..f04d94764fa --- /dev/null +++ b/site/public/v1/smartphones/sm-m127g-ds-galaxy-m12-2021-premium-edition-dual-sim-td-lte-in-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 1.5, + "camera": 16.5, + "battery": 45.0, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m127g-ds-galaxy-m12-2021-standard-edition-dual-sim-td-lte-in-64gb/index.json b/site/public/v1/smartphones/sm-m127g-ds-galaxy-m12-2021-standard-edition-dual-sim-td-lte-in-64gb/index.json new file mode 100644 index 00000000000..3b26650e46e --- /dev/null +++ b/site/public/v1/smartphones/sm-m127g-ds-galaxy-m12-2021-standard-edition-dual-sim-td-lte-in-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4518, + "slug": "sm-m127g-ds-galaxy-m12-2021-standard-edition-dual-sim-td-lte-in-64gb", + "name": "SM-M127G/DS Galaxy M12 2021 Standard Edition Dual SIM TD-LTE IN 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 197, + "slug": "exynos-850", + "name": "Exynos 850", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G52 MP1", + "url": "/v1/socs/exynos-850" + }, + "release_date": "2021-03-14", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 221.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 0.0, + "camera": 16.5, + "battery": 45.0, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.743204", + "updated_at": "2026-06-19T00:43:44.743204" +} diff --git a/site/public/v1/smartphones/sm-m127g-ds-galaxy-m12-2021-standard-edition-dual-sim-td-lte-in-64gb/score/index.json b/site/public/v1/smartphones/sm-m127g-ds-galaxy-m12-2021-standard-edition-dual-sim-td-lte-in-64gb/score/index.json new file mode 100644 index 00000000000..00f201ee859 --- /dev/null +++ b/site/public/v1/smartphones/sm-m127g-ds-galaxy-m12-2021-standard-edition-dual-sim-td-lte-in-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 0.0, + "camera": 16.5, + "battery": 45.0, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m127n-galaxy-m12-2021-standard-edition-td-lte-kr-32gb/index.json b/site/public/v1/smartphones/sm-m127n-galaxy-m12-2021-standard-edition-td-lte-kr-32gb/index.json new file mode 100644 index 00000000000..e889142c73d --- /dev/null +++ b/site/public/v1/smartphones/sm-m127n-galaxy-m12-2021-standard-edition-td-lte-kr-32gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4519, + "slug": "sm-m127n-galaxy-m12-2021-standard-edition-td-lte-kr-32gb", + "name": "SM-M127N Galaxy M12 2021 Standard Edition TD-LTE KR 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 197, + "slug": "exynos-850", + "name": "Exynos 850", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali-G52 MP1", + "url": "/v1/socs/exynos-850" + }, + "release_date": "2021-04-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "Color PLS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 214.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.743204", + "updated_at": "2026-06-19T00:43:44.743204" +} diff --git a/site/public/v1/smartphones/sm-m127n-galaxy-m12-2021-standard-edition-td-lte-kr-32gb/score/index.json b/site/public/v1/smartphones/sm-m127n-galaxy-m12-2021-standard-edition-td-lte-kr-32gb/score/index.json new file mode 100644 index 00000000000..602742251c0 --- /dev/null +++ b/site/public/v1/smartphones/sm-m127n-galaxy-m12-2021-standard-edition-td-lte-kr-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m205f-ds-galaxy-m20-duos-global-td-lte-32gb/index.json b/site/public/v1/smartphones/sm-m205f-ds-galaxy-m20-duos-global-td-lte-32gb/index.json new file mode 100644 index 00000000000..9dc930c868c --- /dev/null +++ b/site/public/v1/smartphones/sm-m205f-ds-galaxy-m20-duos-global-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4008, + "slug": "sm-m205f-ds-galaxy-m20-duos-global-td-lte-32gb", + "name": "SM-M205F/DS Galaxy M20 Duos Global TD-LTE 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 190, + "slug": "exynos-7904", + "name": "Exynos 7904", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7904" + }, + "release_date": "2019-02-06", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.675272", + "updated_at": "2026-06-19T00:43:44.675272" +} diff --git a/site/public/v1/smartphones/sm-m205f-ds-galaxy-m20-duos-global-td-lte-32gb/score/index.json b/site/public/v1/smartphones/sm-m205f-ds-galaxy-m20-duos-global-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..af1e1e79609 --- /dev/null +++ b/site/public/v1/smartphones/sm-m205f-ds-galaxy-m20-duos-global-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m205f-ds-galaxy-m20-duos-global-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-m205f-ds-galaxy-m20-duos-global-td-lte-64gb/index.json new file mode 100644 index 00000000000..f5bebdc5ad3 --- /dev/null +++ b/site/public/v1/smartphones/sm-m205f-ds-galaxy-m20-duos-global-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4009, + "slug": "sm-m205f-ds-galaxy-m20-duos-global-td-lte-64gb", + "name": "SM-M205F/DS Galaxy M20 Duos Global TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 190, + "slug": "exynos-7904", + "name": "Exynos 7904", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7904" + }, + "release_date": "2019-03-14", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.675272", + "updated_at": "2026-06-19T00:43:44.675272" +} diff --git a/site/public/v1/smartphones/sm-m205f-ds-galaxy-m20-duos-global-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-m205f-ds-galaxy-m20-duos-global-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..af1e1e79609 --- /dev/null +++ b/site/public/v1/smartphones/sm-m205f-ds-galaxy-m20-duos-global-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m205g-ds-galaxy-m20-duos-td-lte-apac-32gb/index.json b/site/public/v1/smartphones/sm-m205g-ds-galaxy-m20-duos-td-lte-apac-32gb/index.json new file mode 100644 index 00000000000..a86779522cb --- /dev/null +++ b/site/public/v1/smartphones/sm-m205g-ds-galaxy-m20-duos-td-lte-apac-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4010, + "slug": "sm-m205g-ds-galaxy-m20-duos-td-lte-apac-32gb", + "name": "SM-M205G/DS Galaxy M20 Duos TD-LTE APAC 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 190, + "slug": "exynos-7904", + "name": "Exynos 7904", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7904" + }, + "release_date": "2019-02-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.675272", + "updated_at": "2026-06-19T00:43:44.675272" +} diff --git a/site/public/v1/smartphones/sm-m205g-ds-galaxy-m20-duos-td-lte-apac-32gb/score/index.json b/site/public/v1/smartphones/sm-m205g-ds-galaxy-m20-duos-td-lte-apac-32gb/score/index.json new file mode 100644 index 00000000000..af1e1e79609 --- /dev/null +++ b/site/public/v1/smartphones/sm-m205g-ds-galaxy-m20-duos-td-lte-apac-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m205g-ds-galaxy-m20-duos-td-lte-apac-64gb/index.json b/site/public/v1/smartphones/sm-m205g-ds-galaxy-m20-duos-td-lte-apac-64gb/index.json new file mode 100644 index 00000000000..2306dc96241 --- /dev/null +++ b/site/public/v1/smartphones/sm-m205g-ds-galaxy-m20-duos-td-lte-apac-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4011, + "slug": "sm-m205g-ds-galaxy-m20-duos-td-lte-apac-64gb", + "name": "SM-M205G/DS Galaxy M20 Duos TD-LTE APAC 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 190, + "slug": "exynos-7904", + "name": "Exynos 7904", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7904" + }, + "release_date": "2019-02-06", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.675272", + "updated_at": "2026-06-19T00:43:44.675272" +} diff --git a/site/public/v1/smartphones/sm-m205g-ds-galaxy-m20-duos-td-lte-apac-64gb/score/index.json b/site/public/v1/smartphones/sm-m205g-ds-galaxy-m20-duos-td-lte-apac-64gb/score/index.json new file mode 100644 index 00000000000..af1e1e79609 --- /dev/null +++ b/site/public/v1/smartphones/sm-m205g-ds-galaxy-m20-duos-td-lte-apac-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m205m-ds-galaxy-m20-duos-td-lte-latam-32gb/index.json b/site/public/v1/smartphones/sm-m205m-ds-galaxy-m20-duos-td-lte-latam-32gb/index.json new file mode 100644 index 00000000000..3aec0c4828c --- /dev/null +++ b/site/public/v1/smartphones/sm-m205m-ds-galaxy-m20-duos-td-lte-latam-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4012, + "slug": "sm-m205m-ds-galaxy-m20-duos-td-lte-latam-32gb", + "name": "SM-M205M/DS Galaxy M20 Duos TD-LTE LATAM 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 190, + "slug": "exynos-7904", + "name": "Exynos 7904", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7904" + }, + "release_date": "2019-04-11", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.675272", + "updated_at": "2026-06-19T00:43:44.675272" +} diff --git a/site/public/v1/smartphones/sm-m205m-ds-galaxy-m20-duos-td-lte-latam-32gb/score/index.json b/site/public/v1/smartphones/sm-m205m-ds-galaxy-m20-duos-td-lte-latam-32gb/score/index.json new file mode 100644 index 00000000000..af1e1e79609 --- /dev/null +++ b/site/public/v1/smartphones/sm-m205m-ds-galaxy-m20-duos-td-lte-latam-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m205m-ds-galaxy-m20-duos-td-lte-latam-64gb/index.json b/site/public/v1/smartphones/sm-m205m-ds-galaxy-m20-duos-td-lte-latam-64gb/index.json new file mode 100644 index 00000000000..fb24272adc7 --- /dev/null +++ b/site/public/v1/smartphones/sm-m205m-ds-galaxy-m20-duos-td-lte-latam-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4013, + "slug": "sm-m205m-ds-galaxy-m20-duos-td-lte-latam-64gb", + "name": "SM-M205M/DS Galaxy M20 Duos TD-LTE LATAM 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 190, + "slug": "exynos-7904", + "name": "Exynos 7904", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7904" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.676272", + "updated_at": "2026-06-19T00:43:44.676272" +} diff --git a/site/public/v1/smartphones/sm-m205m-ds-galaxy-m20-duos-td-lte-latam-64gb/score/index.json b/site/public/v1/smartphones/sm-m205m-ds-galaxy-m20-duos-td-lte-latam-64gb/score/index.json new file mode 100644 index 00000000000..af1e1e79609 --- /dev/null +++ b/site/public/v1/smartphones/sm-m205m-ds-galaxy-m20-duos-td-lte-latam-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m205m-galaxy-m20-td-lte-latam-32gb/index.json b/site/public/v1/smartphones/sm-m205m-galaxy-m20-td-lte-latam-32gb/index.json new file mode 100644 index 00000000000..86b2de01ffb --- /dev/null +++ b/site/public/v1/smartphones/sm-m205m-galaxy-m20-td-lte-latam-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4014, + "slug": "sm-m205m-galaxy-m20-td-lte-latam-32gb", + "name": "SM-M205M Galaxy M20 TD-LTE LATAM 32GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 190, + "slug": "exynos-7904", + "name": "Exynos 7904", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7904" + }, + "release_date": "2019-04-11", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.676272", + "updated_at": "2026-06-19T00:43:44.676272" +} diff --git a/site/public/v1/smartphones/sm-m205m-galaxy-m20-td-lte-latam-32gb/score/index.json b/site/public/v1/smartphones/sm-m205m-galaxy-m20-td-lte-latam-32gb/score/index.json new file mode 100644 index 00000000000..af1e1e79609 --- /dev/null +++ b/site/public/v1/smartphones/sm-m205m-galaxy-m20-td-lte-latam-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m215f-ds-galaxy-m21-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-m215f-ds-galaxy-m21-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..c90536500d5 --- /dev/null +++ b/site/public/v1/smartphones/sm-m215f-ds-galaxy-m21-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4273, + "slug": "sm-m215f-ds-galaxy-m21-global-dual-sim-td-lte-128gb", + "name": "SM-M215F/DS Galaxy M21 Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2020-03-23", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 6000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.5, + "performance": 19.2, + "camera": 16.5, + "battery": 45.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.709786", + "updated_at": "2026-06-19T00:43:44.709786" +} diff --git a/site/public/v1/smartphones/sm-m215f-ds-galaxy-m21-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-m215f-ds-galaxy-m21-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..6071e87e9d9 --- /dev/null +++ b/site/public/v1/smartphones/sm-m215f-ds-galaxy-m21-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.5, + "performance": 19.2, + "camera": 16.5, + "battery": 45.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m215f-ds-galaxy-m21-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-m215f-ds-galaxy-m21-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..49890b7681a --- /dev/null +++ b/site/public/v1/smartphones/sm-m215f-ds-galaxy-m21-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4274, + "slug": "sm-m215f-ds-galaxy-m21-global-dual-sim-td-lte-64gb", + "name": "SM-M215F/DS Galaxy M21 Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2020-03-23", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 6000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.1, + "performance": 17.7, + "camera": 16.5, + "battery": 45.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.709786", + "updated_at": "2026-06-19T00:43:44.709786" +} diff --git a/site/public/v1/smartphones/sm-m215f-ds-galaxy-m21-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-m215f-ds-galaxy-m21-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..f9b304b2eaf --- /dev/null +++ b/site/public/v1/smartphones/sm-m215f-ds-galaxy-m21-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.1, + "performance": 17.7, + "camera": 16.5, + "battery": 45.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m215f-dsn-galaxy-m21-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-m215f-dsn-galaxy-m21-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..84516237a1c --- /dev/null +++ b/site/public/v1/smartphones/sm-m215f-dsn-galaxy-m21-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4275, + "slug": "sm-m215f-dsn-galaxy-m21-global-dual-sim-td-lte-64gb", + "name": "SM-M215F/DSN Galaxy M21 Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2020-05-13", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 6000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.1, + "performance": 17.7, + "camera": 16.5, + "battery": 45.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.709786", + "updated_at": "2026-06-19T00:43:44.709786" +} diff --git a/site/public/v1/smartphones/sm-m215f-dsn-galaxy-m21-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-m215f-dsn-galaxy-m21-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..f9b304b2eaf --- /dev/null +++ b/site/public/v1/smartphones/sm-m215f-dsn-galaxy-m21-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.1, + "performance": 17.7, + "camera": 16.5, + "battery": 45.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m215g-ds-galaxy-m21-2021-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-m215g-ds-galaxy-m21-2021-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..858dab8bbbf --- /dev/null +++ b/site/public/v1/smartphones/sm-m215g-ds-galaxy-m21-2021-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4520, + "slug": "sm-m215g-ds-galaxy-m21-2021-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M215G/DS Galaxy M21 2021 Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2021-07-22", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 6000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.8, + "performance": 17.7, + "camera": 16.5, + "battery": 45.0, + "display": 27.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.743204", + "updated_at": "2026-06-19T00:43:44.743204" +} diff --git a/site/public/v1/smartphones/sm-m215g-ds-galaxy-m21-2021-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-m215g-ds-galaxy-m21-2021-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..e5bbe8d917e --- /dev/null +++ b/site/public/v1/smartphones/sm-m215g-ds-galaxy-m21-2021-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.8, + "performance": 17.7, + "camera": 16.5, + "battery": 45.0, + "display": 27.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m215g-ds-galaxy-m21-2021-edition-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-m215g-ds-galaxy-m21-2021-edition-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..48b3be98161 --- /dev/null +++ b/site/public/v1/smartphones/sm-m215g-ds-galaxy-m21-2021-edition-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4521, + "slug": "sm-m215g-ds-galaxy-m21-2021-edition-global-dual-sim-td-lte-64gb", + "name": "SM-M215G/DS Galaxy M21 2021 Edition Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2021-07-22", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 6000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.8, + "performance": 17.7, + "camera": 16.5, + "battery": 45.0, + "display": 27.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.743204", + "updated_at": "2026-06-19T00:43:44.743204" +} diff --git a/site/public/v1/smartphones/sm-m215g-ds-galaxy-m21-2021-edition-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-m215g-ds-galaxy-m21-2021-edition-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..e5bbe8d917e --- /dev/null +++ b/site/public/v1/smartphones/sm-m215g-ds-galaxy-m21-2021-edition-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.8, + "performance": 17.7, + "camera": 16.5, + "battery": 45.0, + "display": 27.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m225fv-ds-galaxy-m22-4g-2021-premium-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-m225fv-ds-galaxy-m22-4g-2021-premium-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..addff714401 --- /dev/null +++ b/site/public/v1/smartphones/sm-m225fv-ds-galaxy-m22-4g-2021-premium-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4522, + "slug": "sm-m225fv-ds-galaxy-m22-4g-2021-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M225FV/DS Galaxy M22 4G 2021 Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2021-10-12", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 275 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 1.5, + "camera": 16.5, + "battery": 31.9, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.743204", + "updated_at": "2026-06-19T00:43:44.743204" +} diff --git a/site/public/v1/smartphones/sm-m225fv-ds-galaxy-m22-4g-2021-premium-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-m225fv-ds-galaxy-m22-4g-2021-premium-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..84a44da8423 --- /dev/null +++ b/site/public/v1/smartphones/sm-m225fv-ds-galaxy-m22-4g-2021-premium-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 1.5, + "camera": 16.5, + "battery": 31.9, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m225fv-ds-galaxy-m22-4g-2021-standard-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-m225fv-ds-galaxy-m22-4g-2021-standard-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..d281cd72770 --- /dev/null +++ b/site/public/v1/smartphones/sm-m225fv-ds-galaxy-m22-4g-2021-standard-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4523, + "slug": "sm-m225fv-ds-galaxy-m22-4g-2021-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M225FV/DS Galaxy M22 4G 2021 Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2021-10-12", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1600", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 275 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 0.0, + "camera": 16.5, + "battery": 31.9, + "display": 30.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.744203", + "updated_at": "2026-06-19T00:43:44.744203" +} diff --git a/site/public/v1/smartphones/sm-m225fv-ds-galaxy-m22-4g-2021-standard-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-m225fv-ds-galaxy-m22-4g-2021-standard-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..689a67a6d40 --- /dev/null +++ b/site/public/v1/smartphones/sm-m225fv-ds-galaxy-m22-4g-2021-standard-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 0.0, + "camera": 16.5, + "battery": 31.9, + "display": 30.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m305f-ds-galaxy-m30-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-m305f-ds-galaxy-m30-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..5171021f712 --- /dev/null +++ b/site/public/v1/smartphones/sm-m305f-ds-galaxy-m30-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4015, + "slug": "sm-m305f-ds-galaxy-m30-global-dual-sim-td-lte-128gb", + "name": "SM-M305F/DS Galaxy M30 Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 190, + "slug": "exynos-7904", + "name": "Exynos 7904", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7904" + }, + "release_date": "2019-03-06", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 1.5, + "camera": 5.3, + "battery": 30.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.676272", + "updated_at": "2026-06-19T00:43:44.676272" +} diff --git a/site/public/v1/smartphones/sm-m305f-ds-galaxy-m30-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-m305f-ds-galaxy-m30-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..ed30f7dfabd --- /dev/null +++ b/site/public/v1/smartphones/sm-m305f-ds-galaxy-m30-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 1.5, + "camera": 5.3, + "battery": 30.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m305f-ds-galaxy-m30-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-m305f-ds-galaxy-m30-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..4b6414198c9 --- /dev/null +++ b/site/public/v1/smartphones/sm-m305f-ds-galaxy-m30-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4016, + "slug": "sm-m305f-ds-galaxy-m30-global-dual-sim-td-lte-64gb", + "name": "SM-M305F/DS Galaxy M30 Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 190, + "slug": "exynos-7904", + "name": "Exynos 7904", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7904" + }, + "release_date": "2019-03-06", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.676272", + "updated_at": "2026-06-19T00:43:44.676272" +} diff --git a/site/public/v1/smartphones/sm-m305f-ds-galaxy-m30-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-m305f-ds-galaxy-m30-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..4f7a63d2167 --- /dev/null +++ b/site/public/v1/smartphones/sm-m305f-ds-galaxy-m30-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m305m-ds-galaxy-m30-dual-sim-td-lte-latam-64gb/index.json b/site/public/v1/smartphones/sm-m305m-ds-galaxy-m30-dual-sim-td-lte-latam-64gb/index.json new file mode 100644 index 00000000000..644a2d01268 --- /dev/null +++ b/site/public/v1/smartphones/sm-m305m-ds-galaxy-m30-dual-sim-td-lte-latam-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4017, + "slug": "sm-m305m-ds-galaxy-m30-dual-sim-td-lte-latam-64gb", + "name": "SM-M305M/DS Galaxy M30 Dual SIM TD-LTE LATAM 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 190, + "slug": "exynos-7904", + "name": "Exynos 7904", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7904" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.676272", + "updated_at": "2026-06-19T00:43:44.676272" +} diff --git a/site/public/v1/smartphones/sm-m305m-ds-galaxy-m30-dual-sim-td-lte-latam-64gb/score/index.json b/site/public/v1/smartphones/sm-m305m-ds-galaxy-m30-dual-sim-td-lte-latam-64gb/score/index.json new file mode 100644 index 00000000000..4f7a63d2167 --- /dev/null +++ b/site/public/v1/smartphones/sm-m305m-ds-galaxy-m30-dual-sim-td-lte-latam-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m305m-galaxy-m30-td-lte-latam-64gb/index.json b/site/public/v1/smartphones/sm-m305m-galaxy-m30-td-lte-latam-64gb/index.json new file mode 100644 index 00000000000..447f963f17d --- /dev/null +++ b/site/public/v1/smartphones/sm-m305m-galaxy-m30-td-lte-latam-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4018, + "slug": "sm-m305m-galaxy-m30-td-lte-latam-64gb", + "name": "SM-M305M Galaxy M30 TD-LTE LATAM 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 190, + "slug": "exynos-7904", + "name": "Exynos 7904", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 14.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/exynos-7904" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.676272", + "updated_at": "2026-06-19T00:43:44.676272" +} diff --git a/site/public/v1/smartphones/sm-m305m-galaxy-m30-td-lte-latam-64gb/score/index.json b/site/public/v1/smartphones/sm-m305m-galaxy-m30-td-lte-latam-64gb/score/index.json new file mode 100644 index 00000000000..4f7a63d2167 --- /dev/null +++ b/site/public/v1/smartphones/sm-m305m-galaxy-m30-td-lte-latam-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m3070-galaxy-m30s-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/sm-m3070-galaxy-m30s-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..3eccb9389fe --- /dev/null +++ b/site/public/v1/smartphones/sm-m3070-galaxy-m30s-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4019, + "slug": "sm-m3070-galaxy-m30s-dual-sim-td-lte-cn-128gb", + "name": "SM-M3070 Galaxy M30s Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 6000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.5, + "performance": 19.2, + "camera": 16.5, + "battery": 45.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.676272", + "updated_at": "2026-06-19T00:43:44.676272" +} diff --git a/site/public/v1/smartphones/sm-m3070-galaxy-m30s-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/sm-m3070-galaxy-m30s-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..6071e87e9d9 --- /dev/null +++ b/site/public/v1/smartphones/sm-m3070-galaxy-m30s-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.5, + "performance": 19.2, + "camera": 16.5, + "battery": 45.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m307f-ds-galaxy-m30s-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-m307f-ds-galaxy-m30s-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..aba3240c309 --- /dev/null +++ b/site/public/v1/smartphones/sm-m307f-ds-galaxy-m30s-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4020, + "slug": "sm-m307f-ds-galaxy-m30s-global-dual-sim-td-lte-128gb", + "name": "SM-M307F/DS Galaxy M30s Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 6000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.5, + "performance": 19.2, + "camera": 16.5, + "battery": 45.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.676272", + "updated_at": "2026-06-19T00:43:44.676272" +} diff --git a/site/public/v1/smartphones/sm-m307f-ds-galaxy-m30s-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-m307f-ds-galaxy-m30s-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..6071e87e9d9 --- /dev/null +++ b/site/public/v1/smartphones/sm-m307f-ds-galaxy-m30s-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.5, + "performance": 19.2, + "camera": 16.5, + "battery": 45.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m307f-ds-galaxy-m30s-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-m307f-ds-galaxy-m30s-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..b2cff60b800 --- /dev/null +++ b/site/public/v1/smartphones/sm-m307f-ds-galaxy-m30s-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4021, + "slug": "sm-m307f-ds-galaxy-m30s-global-dual-sim-td-lte-64gb", + "name": "SM-M307F/DS Galaxy M30s Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 6000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.1, + "performance": 17.7, + "camera": 16.5, + "battery": 45.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.677272", + "updated_at": "2026-06-19T00:43:44.677272" +} diff --git a/site/public/v1/smartphones/sm-m307f-ds-galaxy-m30s-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-m307f-ds-galaxy-m30s-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..f9b304b2eaf --- /dev/null +++ b/site/public/v1/smartphones/sm-m307f-ds-galaxy-m30s-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.1, + "performance": 17.7, + "camera": 16.5, + "battery": 45.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m315f-ds-galaxy-m31-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-m315f-ds-galaxy-m31-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..217578d205b --- /dev/null +++ b/site/public/v1/smartphones/sm-m315f-ds-galaxy-m31-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4276, + "slug": "sm-m315f-ds-galaxy-m31-global-dual-sim-td-lte-128gb", + "name": "SM-M315F/DS Galaxy M31 Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.8, + "performance": 19.2, + "camera": 21.7, + "battery": 45.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.710781", + "updated_at": "2026-06-19T00:43:44.710781" +} diff --git a/site/public/v1/smartphones/sm-m315f-ds-galaxy-m31-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-m315f-ds-galaxy-m31-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..0fb1ded86f2 --- /dev/null +++ b/site/public/v1/smartphones/sm-m315f-ds-galaxy-m31-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.8, + "performance": 19.2, + "camera": 21.7, + "battery": 45.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m315f-ds-galaxy-m31-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-m315f-ds-galaxy-m31-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..88534ac40d6 --- /dev/null +++ b/site/public/v1/smartphones/sm-m315f-ds-galaxy-m31-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4277, + "slug": "sm-m315f-ds-galaxy-m31-global-dual-sim-td-lte-64gb", + "name": "SM-M315F/DS Galaxy M31 Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.8, + "performance": 19.2, + "camera": 21.7, + "battery": 45.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.710781", + "updated_at": "2026-06-19T00:43:44.710781" +} diff --git a/site/public/v1/smartphones/sm-m315f-ds-galaxy-m31-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-m315f-ds-galaxy-m31-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..0fb1ded86f2 --- /dev/null +++ b/site/public/v1/smartphones/sm-m315f-ds-galaxy-m31-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.8, + "performance": 19.2, + "camera": 21.7, + "battery": 45.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m315f-ds-galaxy-m31-prime-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-m315f-ds-galaxy-m31-prime-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..faae0fa92c4 --- /dev/null +++ b/site/public/v1/smartphones/sm-m315f-ds-galaxy-m31-prime-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4278, + "slug": "sm-m315f-ds-galaxy-m31-prime-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M315F/DS Galaxy M31 Prime Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.8, + "performance": 19.2, + "camera": 21.7, + "battery": 45.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.710781", + "updated_at": "2026-06-19T00:43:44.710781" +} diff --git a/site/public/v1/smartphones/sm-m315f-ds-galaxy-m31-prime-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-m315f-ds-galaxy-m31-prime-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..0fb1ded86f2 --- /dev/null +++ b/site/public/v1/smartphones/sm-m315f-ds-galaxy-m31-prime-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.8, + "performance": 19.2, + "camera": 21.7, + "battery": 45.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m315f-dsn-galaxy-m31-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-m315f-dsn-galaxy-m31-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..92a9edd13d3 --- /dev/null +++ b/site/public/v1/smartphones/sm-m315f-dsn-galaxy-m31-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4279, + "slug": "sm-m315f-dsn-galaxy-m31-global-dual-sim-td-lte-128gb", + "name": "SM-M315F/DSN Galaxy M31 Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.8, + "performance": 19.2, + "camera": 21.7, + "battery": 45.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.710781", + "updated_at": "2026-06-19T00:43:44.710781" +} diff --git a/site/public/v1/smartphones/sm-m315f-dsn-galaxy-m31-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-m315f-dsn-galaxy-m31-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..0fb1ded86f2 --- /dev/null +++ b/site/public/v1/smartphones/sm-m315f-dsn-galaxy-m31-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.8, + "performance": 19.2, + "camera": 21.7, + "battery": 45.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m315f-dsn-galaxy-m31-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-m315f-dsn-galaxy-m31-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..14cbfaa98f4 --- /dev/null +++ b/site/public/v1/smartphones/sm-m315f-dsn-galaxy-m31-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4280, + "slug": "sm-m315f-dsn-galaxy-m31-global-dual-sim-td-lte-64gb", + "name": "SM-M315F/DSN Galaxy M31 Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.8, + "performance": 19.2, + "camera": 21.7, + "battery": 45.0, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.710781", + "updated_at": "2026-06-19T00:43:44.710781" +} diff --git a/site/public/v1/smartphones/sm-m315f-dsn-galaxy-m31-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-m315f-dsn-galaxy-m31-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..0fb1ded86f2 --- /dev/null +++ b/site/public/v1/smartphones/sm-m315f-dsn-galaxy-m31-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.8, + "performance": 19.2, + "camera": 21.7, + "battery": 45.0, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m317f-ds-galaxy-m31s-premium-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-m317f-ds-galaxy-m31s-premium-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..4a7b0547b02 --- /dev/null +++ b/site/public/v1/smartphones/sm-m317f-ds-galaxy-m31s-premium-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4281, + "slug": "sm-m317f-ds-galaxy-m31s-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M317F/DS Galaxy M31s Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2020-08-06", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.8, + "performance": 20.7, + "camera": 21.7, + "battery": 46.9, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.710781", + "updated_at": "2026-06-19T00:43:44.710781" +} diff --git a/site/public/v1/smartphones/sm-m317f-ds-galaxy-m31s-premium-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-m317f-ds-galaxy-m31s-premium-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..3526668c147 --- /dev/null +++ b/site/public/v1/smartphones/sm-m317f-ds-galaxy-m31s-premium-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.8, + "performance": 20.7, + "camera": 21.7, + "battery": 46.9, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m317f-ds-galaxy-m31s-standard-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-m317f-ds-galaxy-m31s-standard-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..3f092d46a80 --- /dev/null +++ b/site/public/v1/smartphones/sm-m317f-ds-galaxy-m31s-standard-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4282, + "slug": "sm-m317f-ds-galaxy-m31s-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M317F/DS Galaxy M31s Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2020-08-06", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.4, + "performance": 19.2, + "camera": 21.7, + "battery": 46.9, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.710781", + "updated_at": "2026-06-19T00:43:44.710781" +} diff --git a/site/public/v1/smartphones/sm-m317f-ds-galaxy-m31s-standard-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-m317f-ds-galaxy-m31s-standard-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..350416ec8fe --- /dev/null +++ b/site/public/v1/smartphones/sm-m317f-ds-galaxy-m31s-standard-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.4, + "performance": 19.2, + "camera": 21.7, + "battery": 46.9, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m317f-dsn-galaxy-m31s-standard-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-m317f-dsn-galaxy-m31s-standard-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..69efba419e4 --- /dev/null +++ b/site/public/v1/smartphones/sm-m317f-dsn-galaxy-m31s-standard-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4283, + "slug": "sm-m317f-dsn-galaxy-m31s-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M317F/DSN Galaxy M31s Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 192, + "slug": "exynos-9611", + "name": "Exynos 9611", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/exynos-9611" + }, + "release_date": "2020-08-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.46, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.4, + "performance": 19.2, + "camera": 21.7, + "battery": 46.9, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.710781", + "updated_at": "2026-06-19T00:43:44.710781" +} diff --git a/site/public/v1/smartphones/sm-m317f-dsn-galaxy-m31s-standard-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-m317f-dsn-galaxy-m31s-standard-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..350416ec8fe --- /dev/null +++ b/site/public/v1/smartphones/sm-m317f-dsn-galaxy-m31s-standard-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.4, + "performance": 19.2, + "camera": 21.7, + "battery": 46.9, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m325f-ds-galaxy-m32-4g-2021-premium-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-m325f-ds-galaxy-m32-4g-2021-premium-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..6271291afc7 --- /dev/null +++ b/site/public/v1/smartphones/sm-m325f-ds-galaxy-m32-4g-2021-premium-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4524, + "slug": "sm-m325f-ds-galaxy-m32-4g-2021-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M325F/DS Galaxy M32 4G 2021 Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2021-06-28", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 57.9 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 6000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.8, + "performance": 1.5, + "camera": 19.6, + "battery": 45.0, + "display": 41.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.744203", + "updated_at": "2026-06-19T00:43:44.744203" +} diff --git a/site/public/v1/smartphones/sm-m325f-ds-galaxy-m32-4g-2021-premium-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-m325f-ds-galaxy-m32-4g-2021-premium-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..3797afbd3da --- /dev/null +++ b/site/public/v1/smartphones/sm-m325f-ds-galaxy-m32-4g-2021-premium-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.8, + "performance": 1.5, + "camera": 19.6, + "battery": 45.0, + "display": 41.2, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m325f-ds-galaxy-m32-4g-2021-standard-edition-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/sm-m325f-ds-galaxy-m32-4g-2021-standard-edition-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..0e8d4fb7630 --- /dev/null +++ b/site/public/v1/smartphones/sm-m325f-ds-galaxy-m32-4g-2021-standard-edition-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4525, + "slug": "sm-m325f-ds-galaxy-m32-4g-2021-standard-edition-global-dual-sim-td-lte-64gb", + "name": "SM-M325F/DS Galaxy M32 4G 2021 Standard Edition Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2021-06-28", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 57.9 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 6000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.5, + "performance": 0.0, + "camera": 19.6, + "battery": 45.0, + "display": 41.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.744203", + "updated_at": "2026-06-19T00:43:44.744203" +} diff --git a/site/public/v1/smartphones/sm-m325f-ds-galaxy-m32-4g-2021-standard-edition-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/sm-m325f-ds-galaxy-m32-4g-2021-standard-edition-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..3da02264d93 --- /dev/null +++ b/site/public/v1/smartphones/sm-m325f-ds-galaxy-m32-4g-2021-standard-edition-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.5, + "performance": 0.0, + "camera": 19.6, + "battery": 45.0, + "display": 41.2, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m325fv-ds-galaxy-m32-4g-2021-standard-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-m325fv-ds-galaxy-m32-4g-2021-standard-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..e2335a934e0 --- /dev/null +++ b/site/public/v1/smartphones/sm-m325fv-ds-galaxy-m32-4g-2021-standard-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4526, + "slug": "sm-m325fv-ds-galaxy-m32-4g-2021-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M325FV/DS Galaxy M32 4G 2021 Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2021-06-01", + "msrp_usd": 269, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 412 + }, + "cameras": [ + { + "type": "main", + "mp": 57.9 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 1.5, + "camera": 19.6, + "battery": 31.9, + "display": 41.2, + "value": 61.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.744203", + "updated_at": "2026-06-19T00:43:44.744203" +} diff --git a/site/public/v1/smartphones/sm-m325fv-ds-galaxy-m32-4g-2021-standard-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-m325fv-ds-galaxy-m32-4g-2021-standard-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..cc21229f2de --- /dev/null +++ b/site/public/v1/smartphones/sm-m325fv-ds-galaxy-m32-4g-2021-standard-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 1.5, + "camera": 19.6, + "battery": 31.9, + "display": 41.2, + "value": 61.8 +} diff --git a/site/public/v1/smartphones/sm-m336b-ds-galaxy-m33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-m336b-ds-galaxy-m33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..dc90854035a --- /dev/null +++ b/site/public/v1/smartphones/sm-m336b-ds-galaxy-m33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4591, + "slug": "sm-m336b-ds-galaxy-m33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M336B/DS Galaxy M33 5G 2022 Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 201, + "slug": "exynos-1280", + "name": "Samsung Exynos 1280", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G68 MP4", + "url": "/v1/socs/exynos-1280" + }, + "release_date": "2022-04-07", + "msrp_usd": 299, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.3, + "performance": 1.5, + "camera": 17.2, + "battery": 41.9, + "display": 52.6, + "value": 64.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.752203", + "updated_at": "2026-06-19T00:43:44.752203" +} diff --git a/site/public/v1/smartphones/sm-m336b-ds-galaxy-m33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-m336b-ds-galaxy-m33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..054be74895b --- /dev/null +++ b/site/public/v1/smartphones/sm-m336b-ds-galaxy-m33-5g-2022-standard-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.3, + "performance": 1.5, + "camera": 17.2, + "battery": 41.9, + "display": 52.6, + "value": 64.2 +} diff --git a/site/public/v1/smartphones/sm-m336b-galaxy-m33-5g-2022-standard-edition-global-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-m336b-galaxy-m33-5g-2022-standard-edition-global-td-lte-128gb/index.json new file mode 100644 index 00000000000..e9881ac0369 --- /dev/null +++ b/site/public/v1/smartphones/sm-m336b-galaxy-m33-5g-2022-standard-edition-global-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4592, + "slug": "sm-m336b-galaxy-m33-5g-2022-standard-edition-global-td-lte-128gb", + "name": "SM-M336B Galaxy M33 5G 2022 Standard Edition Global TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 201, + "slug": "exynos-1280", + "name": "Samsung Exynos 1280", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G68 MP4", + "url": "/v1/socs/exynos-1280" + }, + "release_date": "2022-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.3, + "performance": 1.5, + "camera": 17.2, + "battery": 41.9, + "display": 52.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.752203", + "updated_at": "2026-06-19T00:43:44.752203" +} diff --git a/site/public/v1/smartphones/sm-m336b-galaxy-m33-5g-2022-standard-edition-global-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-m336b-galaxy-m33-5g-2022-standard-edition-global-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..8a7555d84b7 --- /dev/null +++ b/site/public/v1/smartphones/sm-m336b-galaxy-m33-5g-2022-standard-edition-global-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.3, + "performance": 1.5, + "camera": 17.2, + "battery": 41.9, + "display": 52.6, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m336bu-ds-galaxy-m33-5g-2022-premium-edition-dual-sim-td-lte-in-128gb/index.json b/site/public/v1/smartphones/sm-m336bu-ds-galaxy-m33-5g-2022-premium-edition-dual-sim-td-lte-in-128gb/index.json new file mode 100644 index 00000000000..96d8720d810 --- /dev/null +++ b/site/public/v1/smartphones/sm-m336bu-ds-galaxy-m33-5g-2022-premium-edition-dual-sim-td-lte-in-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4593, + "slug": "sm-m336bu-ds-galaxy-m33-5g-2022-premium-edition-dual-sim-td-lte-in-128gb", + "name": "SM-M336BU/DS Galaxy M33 5G 2022 Premium Edition Dual SIM TD-LTE IN 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 201, + "slug": "exynos-1280", + "name": "Samsung Exynos 1280", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G68 MP4", + "url": "/v1/socs/exynos-1280" + }, + "release_date": "2022-04-02", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.4, + "performance": 3.0, + "camera": 17.2, + "battery": 56.9, + "display": 52.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.752203", + "updated_at": "2026-06-19T00:43:44.752203" +} diff --git a/site/public/v1/smartphones/sm-m336bu-ds-galaxy-m33-5g-2022-premium-edition-dual-sim-td-lte-in-128gb/score/index.json b/site/public/v1/smartphones/sm-m336bu-ds-galaxy-m33-5g-2022-premium-edition-dual-sim-td-lte-in-128gb/score/index.json new file mode 100644 index 00000000000..2d8890fc840 --- /dev/null +++ b/site/public/v1/smartphones/sm-m336bu-ds-galaxy-m33-5g-2022-premium-edition-dual-sim-td-lte-in-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.4, + "performance": 3.0, + "camera": 17.2, + "battery": 56.9, + "display": 52.6, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m336bu-ds-galaxy-m33-5g-2022-standard-edition-dual-sim-td-lte-in-128gb/index.json b/site/public/v1/smartphones/sm-m336bu-ds-galaxy-m33-5g-2022-standard-edition-dual-sim-td-lte-in-128gb/index.json new file mode 100644 index 00000000000..36f457901ce --- /dev/null +++ b/site/public/v1/smartphones/sm-m336bu-ds-galaxy-m33-5g-2022-standard-edition-dual-sim-td-lte-in-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4594, + "slug": "sm-m336bu-ds-galaxy-m33-5g-2022-standard-edition-dual-sim-td-lte-in-128gb", + "name": "SM-M336BU/DS Galaxy M33 5G 2022 Standard Edition Dual SIM TD-LTE IN 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 201, + "slug": "exynos-1280", + "name": "Samsung Exynos 1280", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G68 MP4", + "url": "/v1/socs/exynos-1280" + }, + "release_date": "2022-04-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.0, + "performance": 1.5, + "camera": 17.2, + "battery": 56.9, + "display": 52.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.752203", + "updated_at": "2026-06-19T00:43:44.752203" +} diff --git a/site/public/v1/smartphones/sm-m336bu-ds-galaxy-m33-5g-2022-standard-edition-dual-sim-td-lte-in-128gb/score/index.json b/site/public/v1/smartphones/sm-m336bu-ds-galaxy-m33-5g-2022-standard-edition-dual-sim-td-lte-in-128gb/score/index.json new file mode 100644 index 00000000000..a81e785faab --- /dev/null +++ b/site/public/v1/smartphones/sm-m336bu-ds-galaxy-m33-5g-2022-standard-edition-dual-sim-td-lte-in-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.0, + "performance": 1.5, + "camera": 17.2, + "battery": 56.9, + "display": 52.6, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m405f-ds-galaxy-m40-2019-dual-sim-td-lte-in-128gb/index.json b/site/public/v1/smartphones/sm-m405f-ds-galaxy-m40-2019-dual-sim-td-lte-in-128gb/index.json new file mode 100644 index 00000000000..9366b09c41d --- /dev/null +++ b/site/public/v1/smartphones/sm-m405f-ds-galaxy-m40-2019-dual-sim-td-lte-in-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4022, + "slug": "sm-m405f-ds-galaxy-m40-2019-dual-sim-td-lte-in-128gb", + "name": "SM-M405F/DS Galaxy M40 2019 Dual SIM TD-LTE IN 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-06-18", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 32.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 1.5, + "camera": 11.4, + "battery": 7.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.677272", + "updated_at": "2026-06-19T00:43:44.677272" +} diff --git a/site/public/v1/smartphones/sm-m405f-ds-galaxy-m40-2019-dual-sim-td-lte-in-128gb/score/index.json b/site/public/v1/smartphones/sm-m405f-ds-galaxy-m40-2019-dual-sim-td-lte-in-128gb/score/index.json new file mode 100644 index 00000000000..a0eb7b1c9b8 --- /dev/null +++ b/site/public/v1/smartphones/sm-m405f-ds-galaxy-m40-2019-dual-sim-td-lte-in-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 1.5, + "camera": 11.4, + "battery": 7.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m515f-dsn-galaxy-m51-premium-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-m515f-dsn-galaxy-m51-premium-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..c0db312711d --- /dev/null +++ b/site/public/v1/smartphones/sm-m515f-dsn-galaxy-m51-premium-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4284, + "slug": "sm-m515f-dsn-galaxy-m51-premium-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M515F/DSN Galaxy M51 Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2020-09-08", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 7000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 213.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.0, + "performance": 3.0, + "camera": 21.7, + "battery": 46.9, + "display": 44.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.710781", + "updated_at": "2026-06-19T00:43:44.710781" +} diff --git a/site/public/v1/smartphones/sm-m515f-dsn-galaxy-m51-premium-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-m515f-dsn-galaxy-m51-premium-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..2f8f9a56cac --- /dev/null +++ b/site/public/v1/smartphones/sm-m515f-dsn-galaxy-m51-premium-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.0, + "performance": 3.0, + "camera": 21.7, + "battery": 46.9, + "display": 44.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-m515f-dsn-galaxy-m51-standard-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-m515f-dsn-galaxy-m51-standard-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..70fdeb0bdc5 --- /dev/null +++ b/site/public/v1/smartphones/sm-m515f-dsn-galaxy-m51-standard-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4285, + "slug": "sm-m515f-dsn-galaxy-m51-standard-edition-global-dual-sim-td-lte-128gb", + "name": "SM-M515F/DSN Galaxy M51 Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2020-09-08", + "msrp_usd": 369, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 7000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 213.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.6, + "performance": 1.5, + "camera": 21.7, + "battery": 46.9, + "display": 44.4, + "value": 61.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.711780", + "updated_at": "2026-06-19T00:43:44.711780" +} diff --git a/site/public/v1/smartphones/sm-m515f-dsn-galaxy-m51-standard-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-m515f-dsn-galaxy-m51-standard-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..c7e02bb92a0 --- /dev/null +++ b/site/public/v1/smartphones/sm-m515f-dsn-galaxy-m51-standard-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.6, + "performance": 1.5, + "camera": 21.7, + "battery": 46.9, + "display": 44.4, + "value": 61.7 +} diff --git a/site/public/v1/smartphones/sm-m625f-ds-galaxy-m62-2021-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/sm-m625f-ds-galaxy-m62-2021-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..b55bb542791 --- /dev/null +++ b/site/public/v1/smartphones/sm-m625f-ds-galaxy-m62-2021-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 4527, + "slug": "sm-m625f-ds-galaxy-m62-2021-global-dual-sim-td-lte", + "name": "SM-M625F/DS Galaxy M62 2021 Global Dual SIM TD-LTE", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 195, + "slug": "exynos-9825", + "name": "Samsung Exynos 9825", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP12", + "url": "/v1/socs/exynos-9825" + }, + "release_date": "2021-02-27", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 7000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 218.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.5, + "performance": 3.0, + "camera": 21.5, + "battery": 45.0, + "display": 44.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.744203", + "updated_at": "2026-06-19T00:43:44.744203" +} diff --git a/site/public/v1/smartphones/sm-m625f-ds-galaxy-m62-2021-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/sm-m625f-ds-galaxy-m62-2021-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..696efd39d80 --- /dev/null +++ b/site/public/v1/smartphones/sm-m625f-ds-galaxy-m62-2021-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.5, + "performance": 3.0, + "camera": 21.5, + "battery": 45.0, + "display": 44.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n770f-ds-galaxy-note-10-lite-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-n770f-ds-galaxy-note-10-lite-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..ef009f1cae7 --- /dev/null +++ b/site/public/v1/smartphones/sm-n770f-ds-galaxy-note-10-lite-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4286, + "slug": "sm-n770f-ds-galaxy-note-10-lite-global-dual-sim-td-lte-128gb", + "name": "SM-N770F/DS Galaxy Note 10 Lite Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 188, + "slug": "exynos-9810", + "name": "Exynos 9810", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP18", + "url": "/v1/socs/exynos-9810" + }, + "release_date": "2020-01-01", + "msrp_usd": 599, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.0, + "performance": 44.2, + "camera": 5.1, + "battery": 22.5, + "display": 44.3, + "value": 53.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.711780", + "updated_at": "2026-06-19T00:43:44.711780" +} diff --git a/site/public/v1/smartphones/sm-n770f-ds-galaxy-note-10-lite-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-n770f-ds-galaxy-note-10-lite-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..189dbb26612 --- /dev/null +++ b/site/public/v1/smartphones/sm-n770f-ds-galaxy-note-10-lite-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.0, + "performance": 44.2, + "camera": 5.1, + "battery": 22.5, + "display": 44.3, + "value": 53.0 +} diff --git a/site/public/v1/smartphones/sm-n770f-dsm-galaxy-note-10-lite-premium-edition-dual-sim-td-lte-apac/index.json b/site/public/v1/smartphones/sm-n770f-dsm-galaxy-note-10-lite-premium-edition-dual-sim-td-lte-apac/index.json new file mode 100644 index 00000000000..be00d63cc86 --- /dev/null +++ b/site/public/v1/smartphones/sm-n770f-dsm-galaxy-note-10-lite-premium-edition-dual-sim-td-lte-apac/index.json @@ -0,0 +1,76 @@ +{ + "id": 4287, + "slug": "sm-n770f-dsm-galaxy-note-10-lite-premium-edition-dual-sim-td-lte-apac", + "name": "SM-N770F/DSM Galaxy Note 10 Lite Premium Edition Dual SIM TD-LTE APAC", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 188, + "slug": "exynos-9810", + "name": "Exynos 9810", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP18", + "url": "/v1/socs/exynos-9810" + }, + "release_date": "2020-02-03", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.4, + "performance": 45.7, + "camera": 5.1, + "battery": 22.5, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.711780", + "updated_at": "2026-06-19T00:43:44.711780" +} diff --git a/site/public/v1/smartphones/sm-n770f-dsm-galaxy-note-10-lite-premium-edition-dual-sim-td-lte-apac/score/index.json b/site/public/v1/smartphones/sm-n770f-dsm-galaxy-note-10-lite-premium-edition-dual-sim-td-lte-apac/score/index.json new file mode 100644 index 00000000000..a3ecb568cba --- /dev/null +++ b/site/public/v1/smartphones/sm-n770f-dsm-galaxy-note-10-lite-premium-edition-dual-sim-td-lte-apac/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.4, + "performance": 45.7, + "camera": 5.1, + "battery": 22.5, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n770f-dsm-galaxy-note-10-lite-standard-edition-dual-sim-td-lte-apac/index.json b/site/public/v1/smartphones/sm-n770f-dsm-galaxy-note-10-lite-standard-edition-dual-sim-td-lte-apac/index.json new file mode 100644 index 00000000000..34e61dcbd1a --- /dev/null +++ b/site/public/v1/smartphones/sm-n770f-dsm-galaxy-note-10-lite-standard-edition-dual-sim-td-lte-apac/index.json @@ -0,0 +1,76 @@ +{ + "id": 4288, + "slug": "sm-n770f-dsm-galaxy-note-10-lite-standard-edition-dual-sim-td-lte-apac", + "name": "SM-N770F/DSM Galaxy Note 10 Lite Standard Edition Dual SIM TD-LTE APAC", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 188, + "slug": "exynos-9810", + "name": "Exynos 9810", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP18", + "url": "/v1/socs/exynos-9810" + }, + "release_date": "2020-02-03", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.0, + "performance": 44.2, + "camera": 5.1, + "battery": 22.5, + "display": 44.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.711780", + "updated_at": "2026-06-19T00:43:44.711780" +} diff --git a/site/public/v1/smartphones/sm-n770f-dsm-galaxy-note-10-lite-standard-edition-dual-sim-td-lte-apac/score/index.json b/site/public/v1/smartphones/sm-n770f-dsm-galaxy-note-10-lite-standard-edition-dual-sim-td-lte-apac/score/index.json new file mode 100644 index 00000000000..0e1ae405054 --- /dev/null +++ b/site/public/v1/smartphones/sm-n770f-dsm-galaxy-note-10-lite-standard-edition-dual-sim-td-lte-apac/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.0, + "performance": 44.2, + "camera": 5.1, + "battery": 22.5, + "display": 44.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n9600-galaxy-note-9-duos-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/sm-n9600-galaxy-note-9-duos-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..7e574d222fa --- /dev/null +++ b/site/public/v1/smartphones/sm-n9600-galaxy-note-9-duos-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3837, + "slug": "sm-n9600-galaxy-note-9-duos-td-lte-cn-128gb", + "name": "SM-N9600 Galaxy Note 9 Duos TD-LTE CN 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-08-31", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 516 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 201.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 5.1, + "battery": 15.0, + "display": 56.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.652759", + "updated_at": "2026-06-19T00:43:44.652759" +} diff --git a/site/public/v1/smartphones/sm-n9600-galaxy-note-9-duos-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/sm-n9600-galaxy-note-9-duos-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..2a2efa2d710 --- /dev/null +++ b/site/public/v1/smartphones/sm-n9600-galaxy-note-9-duos-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 5.1, + "battery": 15.0, + "display": 56.6, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n9600-galaxy-note-9-special-edition-duos-td-lte-cn-512gb/index.json b/site/public/v1/smartphones/sm-n9600-galaxy-note-9-special-edition-duos-td-lte-cn-512gb/index.json new file mode 100644 index 00000000000..7ca7865b615 --- /dev/null +++ b/site/public/v1/smartphones/sm-n9600-galaxy-note-9-special-edition-duos-td-lte-cn-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3838, + "slug": "sm-n9600-galaxy-note-9-special-edition-duos-td-lte-cn-512gb", + "name": "SM-N9600 Galaxy Note 9 Special Edition Duos TD-LTE CN 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-08-31", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 516 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 201.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 3.0, + "camera": 5.1, + "battery": 15.0, + "display": 56.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.653758", + "updated_at": "2026-06-19T00:43:44.653758" +} diff --git a/site/public/v1/smartphones/sm-n9600-galaxy-note-9-special-edition-duos-td-lte-cn-512gb/score/index.json b/site/public/v1/smartphones/sm-n9600-galaxy-note-9-special-edition-duos-td-lte-cn-512gb/score/index.json new file mode 100644 index 00000000000..99ede61ae7b --- /dev/null +++ b/site/public/v1/smartphones/sm-n9600-galaxy-note-9-special-edition-duos-td-lte-cn-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 3.0, + "camera": 5.1, + "battery": 15.0, + "display": 56.6, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n960d-galaxy-note-9-td-lte-jp-sc-01l-sgh-n058/index.json b/site/public/v1/smartphones/sm-n960d-galaxy-note-9-td-lte-jp-sc-01l-sgh-n058/index.json new file mode 100644 index 00000000000..e2a2d267f85 --- /dev/null +++ b/site/public/v1/smartphones/sm-n960d-galaxy-note-9-td-lte-jp-sc-01l-sgh-n058/index.json @@ -0,0 +1,76 @@ +{ + "id": 3839, + "slug": "sm-n960d-galaxy-note-9-td-lte-jp-sc-01l-sgh-n058", + "name": "SM-N960D Galaxy Note 9 TD-LTE JP SC-01L / SGH-N058", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-10-26", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 516 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 201.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 5.1, + "battery": 15.0, + "display": 56.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.653758", + "updated_at": "2026-06-19T00:43:44.653758" +} diff --git a/site/public/v1/smartphones/sm-n960d-galaxy-note-9-td-lte-jp-sc-01l-sgh-n058/score/index.json b/site/public/v1/smartphones/sm-n960d-galaxy-note-9-td-lte-jp-sc-01l-sgh-n058/score/index.json new file mode 100644 index 00000000000..2a2efa2d710 --- /dev/null +++ b/site/public/v1/smartphones/sm-n960d-galaxy-note-9-td-lte-jp-sc-01l-sgh-n058/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 5.1, + "battery": 15.0, + "display": 56.6, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n960f-ds-galaxy-note9-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-n960f-ds-galaxy-note9-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..e5623374fd1 --- /dev/null +++ b/site/public/v1/smartphones/sm-n960f-ds-galaxy-note9-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3840, + "slug": "sm-n960f-ds-galaxy-note9-global-dual-sim-td-lte-128gb", + "name": "SM-N960F/DS Galaxy Note9 Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 188, + "slug": "exynos-9810", + "name": "Exynos 9810", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP18", + "url": "/v1/socs/exynos-9810" + }, + "release_date": "2018-08-22", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 516 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 201.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.2, + "performance": 44.2, + "camera": 5.1, + "battery": 15.0, + "display": 56.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.653758", + "updated_at": "2026-06-19T00:43:44.653758" +} diff --git a/site/public/v1/smartphones/sm-n960f-ds-galaxy-note9-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-n960f-ds-galaxy-note9-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..c911e77c7e3 --- /dev/null +++ b/site/public/v1/smartphones/sm-n960f-ds-galaxy-note9-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.2, + "performance": 44.2, + "camera": 5.1, + "battery": 15.0, + "display": 56.6, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n960f-ds-galaxy-note9-global-dual-sim-td-lte-512gb/index.json b/site/public/v1/smartphones/sm-n960f-ds-galaxy-note9-global-dual-sim-td-lte-512gb/index.json new file mode 100644 index 00000000000..ad0466d140b --- /dev/null +++ b/site/public/v1/smartphones/sm-n960f-ds-galaxy-note9-global-dual-sim-td-lte-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3841, + "slug": "sm-n960f-ds-galaxy-note9-global-dual-sim-td-lte-512gb", + "name": "SM-N960F/DS Galaxy Note9 Global Dual SIM TD-LTE 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 188, + "slug": "exynos-9810", + "name": "Exynos 9810", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP18", + "url": "/v1/socs/exynos-9810" + }, + "release_date": "2018-08-22", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 516 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 201.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.6, + "performance": 45.7, + "camera": 5.1, + "battery": 15.0, + "display": 56.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.653758", + "updated_at": "2026-06-19T00:43:44.653758" +} diff --git a/site/public/v1/smartphones/sm-n960f-ds-galaxy-note9-global-dual-sim-td-lte-512gb/score/index.json b/site/public/v1/smartphones/sm-n960f-ds-galaxy-note9-global-dual-sim-td-lte-512gb/score/index.json new file mode 100644 index 00000000000..33f4bc781b9 --- /dev/null +++ b/site/public/v1/smartphones/sm-n960f-ds-galaxy-note9-global-dual-sim-td-lte-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.6, + "performance": 45.7, + "camera": 5.1, + "battery": 15.0, + "display": 56.6, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n960f-galaxy-note9-global-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-n960f-galaxy-note9-global-td-lte-128gb/index.json new file mode 100644 index 00000000000..193561af300 --- /dev/null +++ b/site/public/v1/smartphones/sm-n960f-galaxy-note9-global-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3842, + "slug": "sm-n960f-galaxy-note9-global-td-lte-128gb", + "name": "SM-N960F Galaxy Note9 Global TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 188, + "slug": "exynos-9810", + "name": "Exynos 9810", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP18", + "url": "/v1/socs/exynos-9810" + }, + "release_date": "2018-08-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 516 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 201.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.2, + "performance": 44.2, + "camera": 5.1, + "battery": 15.0, + "display": 56.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.653758", + "updated_at": "2026-06-19T00:43:44.653758" +} diff --git a/site/public/v1/smartphones/sm-n960f-galaxy-note9-global-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-n960f-galaxy-note9-global-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..c911e77c7e3 --- /dev/null +++ b/site/public/v1/smartphones/sm-n960f-galaxy-note9-global-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.2, + "performance": 44.2, + "camera": 5.1, + "battery": 15.0, + "display": 56.6, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n960j-galaxy-note-9-wimax-2-scv40/index.json b/site/public/v1/smartphones/sm-n960j-galaxy-note-9-wimax-2-scv40/index.json new file mode 100644 index 00000000000..fa786e88bcc --- /dev/null +++ b/site/public/v1/smartphones/sm-n960j-galaxy-note-9-wimax-2-scv40/index.json @@ -0,0 +1,76 @@ +{ + "id": 3843, + "slug": "sm-n960j-galaxy-note-9-wimax-2-scv40", + "name": "SM-N960J Galaxy Note 9 WiMAX 2+ SCV40", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 514 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 201.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.5, + "performance": 1.5, + "camera": 5.1, + "battery": 15.0, + "display": 56.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.653758", + "updated_at": "2026-06-19T00:43:44.653758" +} diff --git a/site/public/v1/smartphones/sm-n960j-galaxy-note-9-wimax-2-scv40/score/index.json b/site/public/v1/smartphones/sm-n960j-galaxy-note-9-wimax-2-scv40/score/index.json new file mode 100644 index 00000000000..4b3b2aa3c16 --- /dev/null +++ b/site/public/v1/smartphones/sm-n960j-galaxy-note-9-wimax-2-scv40/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.5, + "performance": 1.5, + "camera": 5.1, + "battery": 15.0, + "display": 56.4, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n960n-galaxy-note9-special-edition-td-lte-kr-512gb/index.json b/site/public/v1/smartphones/sm-n960n-galaxy-note9-special-edition-td-lte-kr-512gb/index.json new file mode 100644 index 00000000000..4336cb170fb --- /dev/null +++ b/site/public/v1/smartphones/sm-n960n-galaxy-note9-special-edition-td-lte-kr-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3844, + "slug": "sm-n960n-galaxy-note9-special-edition-td-lte-kr-512gb", + "name": "SM-N960N Galaxy Note9 Special Edition TD-LTE KR 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 188, + "slug": "exynos-9810", + "name": "Exynos 9810", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP18", + "url": "/v1/socs/exynos-9810" + }, + "release_date": "2018-08-24", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 516 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 201.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.6, + "performance": 45.7, + "camera": 5.1, + "battery": 15.0, + "display": 56.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.653758", + "updated_at": "2026-06-19T00:43:44.653758" +} diff --git a/site/public/v1/smartphones/sm-n960n-galaxy-note9-special-edition-td-lte-kr-512gb/score/index.json b/site/public/v1/smartphones/sm-n960n-galaxy-note9-special-edition-td-lte-kr-512gb/score/index.json new file mode 100644 index 00000000000..33f4bc781b9 --- /dev/null +++ b/site/public/v1/smartphones/sm-n960n-galaxy-note9-special-edition-td-lte-kr-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.6, + "performance": 45.7, + "camera": 5.1, + "battery": 15.0, + "display": 56.6, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n960n-galaxy-note9-td-lte-kr-128gb/index.json b/site/public/v1/smartphones/sm-n960n-galaxy-note9-td-lte-kr-128gb/index.json new file mode 100644 index 00000000000..882c166c1e1 --- /dev/null +++ b/site/public/v1/smartphones/sm-n960n-galaxy-note9-td-lte-kr-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3845, + "slug": "sm-n960n-galaxy-note9-td-lte-kr-128gb", + "name": "SM-N960N Galaxy Note9 TD-LTE KR 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 188, + "slug": "exynos-9810", + "name": "Exynos 9810", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 10.0, + "gpu_name": "Mali-G72 MP18", + "url": "/v1/socs/exynos-9810" + }, + "release_date": "2018-08-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 516 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 201.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.2, + "performance": 44.2, + "camera": 5.1, + "battery": 15.0, + "display": 56.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.653758", + "updated_at": "2026-06-19T00:43:44.653758" +} diff --git a/site/public/v1/smartphones/sm-n960n-galaxy-note9-td-lte-kr-128gb/score/index.json b/site/public/v1/smartphones/sm-n960n-galaxy-note9-td-lte-kr-128gb/score/index.json new file mode 100644 index 00000000000..c911e77c7e3 --- /dev/null +++ b/site/public/v1/smartphones/sm-n960n-galaxy-note9-td-lte-kr-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.2, + "performance": 44.2, + "camera": 5.1, + "battery": 15.0, + "display": 56.6, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n960u-galaxy-note-9-td-lte-us-128gb/index.json b/site/public/v1/smartphones/sm-n960u-galaxy-note-9-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..be570de8079 --- /dev/null +++ b/site/public/v1/smartphones/sm-n960u-galaxy-note-9-td-lte-us-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3846, + "slug": "sm-n960u-galaxy-note-9-td-lte-us-128gb", + "name": "SM-N960U Galaxy Note 9 TD-LTE US 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-08-24", + "msrp_usd": 999, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 516 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 201.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 5.1, + "battery": 15.0, + "display": 56.6, + "value": 32.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.654757", + "updated_at": "2026-06-19T00:43:44.654757" +} diff --git a/site/public/v1/smartphones/sm-n960u-galaxy-note-9-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/sm-n960u-galaxy-note-9-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..c3a9850271c --- /dev/null +++ b/site/public/v1/smartphones/sm-n960u-galaxy-note-9-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 5.1, + "battery": 15.0, + "display": 56.6, + "value": 32.9 +} diff --git a/site/public/v1/smartphones/sm-n960u-galaxy-note-9-td-lte-us-512gb/index.json b/site/public/v1/smartphones/sm-n960u-galaxy-note-9-td-lte-us-512gb/index.json new file mode 100644 index 00000000000..1bf56c67423 --- /dev/null +++ b/site/public/v1/smartphones/sm-n960u-galaxy-note-9-td-lte-us-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3847, + "slug": "sm-n960u-galaxy-note-9-td-lte-us-512gb", + "name": "SM-N960U Galaxy Note 9 TD-LTE US 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-08-24", + "msrp_usd": 1249, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 516 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 201.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 3.0, + "camera": 5.1, + "battery": 15.0, + "display": 56.6, + "value": 23.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.654757", + "updated_at": "2026-06-19T00:43:44.654757" +} diff --git a/site/public/v1/smartphones/sm-n960u-galaxy-note-9-td-lte-us-512gb/score/index.json b/site/public/v1/smartphones/sm-n960u-galaxy-note-9-td-lte-us-512gb/score/index.json new file mode 100644 index 00000000000..0e8e3d8af5e --- /dev/null +++ b/site/public/v1/smartphones/sm-n960u-galaxy-note-9-td-lte-us-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 3.0, + "camera": 5.1, + "battery": 15.0, + "display": 56.6, + "value": 23.4 +} diff --git a/site/public/v1/smartphones/sm-n960u1-galaxy-note-9-td-lte-us-128gb/index.json b/site/public/v1/smartphones/sm-n960u1-galaxy-note-9-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..3282edb8eb2 --- /dev/null +++ b/site/public/v1/smartphones/sm-n960u1-galaxy-note-9-td-lte-us-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3848, + "slug": "sm-n960u1-galaxy-note-9-td-lte-us-128gb", + "name": "SM-N960U1 Galaxy Note 9 TD-LTE US 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-08-24", + "msrp_usd": 999, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 516 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 201.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 5.1, + "battery": 15.0, + "display": 56.6, + "value": 32.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.654757", + "updated_at": "2026-06-19T00:43:44.654757" +} diff --git a/site/public/v1/smartphones/sm-n960u1-galaxy-note-9-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/sm-n960u1-galaxy-note-9-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..c3a9850271c --- /dev/null +++ b/site/public/v1/smartphones/sm-n960u1-galaxy-note-9-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 5.1, + "battery": 15.0, + "display": 56.6, + "value": 32.9 +} diff --git a/site/public/v1/smartphones/sm-n960u1-galaxy-note-9-td-lte-us-512gb/index.json b/site/public/v1/smartphones/sm-n960u1-galaxy-note-9-td-lte-us-512gb/index.json new file mode 100644 index 00000000000..1ad8e823d7f --- /dev/null +++ b/site/public/v1/smartphones/sm-n960u1-galaxy-note-9-td-lte-us-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3849, + "slug": "sm-n960u1-galaxy-note-9-td-lte-us-512gb", + "name": "SM-N960U1 Galaxy Note 9 TD-LTE US 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-08-24", + "msrp_usd": 1249, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 516 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 201.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 3.0, + "camera": 5.1, + "battery": 15.0, + "display": 56.6, + "value": 23.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.654757", + "updated_at": "2026-06-19T00:43:44.654757" +} diff --git a/site/public/v1/smartphones/sm-n960u1-galaxy-note-9-td-lte-us-512gb/score/index.json b/site/public/v1/smartphones/sm-n960u1-galaxy-note-9-td-lte-us-512gb/score/index.json new file mode 100644 index 00000000000..0e8e3d8af5e --- /dev/null +++ b/site/public/v1/smartphones/sm-n960u1-galaxy-note-9-td-lte-us-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 3.0, + "camera": 5.1, + "battery": 15.0, + "display": 56.6, + "value": 23.4 +} diff --git a/site/public/v1/smartphones/sm-n960w-galaxy-note-9-td-lte-ca-128gb/index.json b/site/public/v1/smartphones/sm-n960w-galaxy-note-9-td-lte-ca-128gb/index.json new file mode 100644 index 00000000000..1c680c75862 --- /dev/null +++ b/site/public/v1/smartphones/sm-n960w-galaxy-note-9-td-lte-ca-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 3850, + "slug": "sm-n960w-galaxy-note-9-td-lte-ca-128gb", + "name": "SM-N960W Galaxy Note 9 TD-LTE CA 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-08-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x2960", + "type": "AM-OLED display", + "ppi": 516 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 201.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 5.1, + "battery": 15.0, + "display": 56.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.654757", + "updated_at": "2026-06-19T00:43:44.654757" +} diff --git a/site/public/v1/smartphones/sm-n960w-galaxy-note-9-td-lte-ca-128gb/score/index.json b/site/public/v1/smartphones/sm-n960w-galaxy-note-9-td-lte-ca-128gb/score/index.json new file mode 100644 index 00000000000..2a2efa2d710 --- /dev/null +++ b/site/public/v1/smartphones/sm-n960w-galaxy-note-9-td-lte-ca-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 1.5, + "camera": 5.1, + "battery": 15.0, + "display": 56.6, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n9700-galaxy-note-10-dual-sim-td-lte-cn-tw-256gb/index.json b/site/public/v1/smartphones/sm-n9700-galaxy-note-10-dual-sim-td-lte-cn-tw-256gb/index.json new file mode 100644 index 00000000000..367c66e6a74 --- /dev/null +++ b/site/public/v1/smartphones/sm-n9700-galaxy-note-10-dual-sim-td-lte-cn-tw-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4023, + "slug": "sm-n9700-galaxy-note-10-dual-sim-td-lte-cn-tw-256gb", + "name": "SM-N9700 Galaxy Note 10 Dual SIM TD-LTE CN TW 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-09-12", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.7, + "performance": 3.0, + "camera": 5.1, + "battery": 9.4, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.677272", + "updated_at": "2026-06-19T00:43:44.677272" +} diff --git a/site/public/v1/smartphones/sm-n9700-galaxy-note-10-dual-sim-td-lte-cn-tw-256gb/score/index.json b/site/public/v1/smartphones/sm-n9700-galaxy-note-10-dual-sim-td-lte-cn-tw-256gb/score/index.json new file mode 100644 index 00000000000..16dbb63d21b --- /dev/null +++ b/site/public/v1/smartphones/sm-n9700-galaxy-note-10-dual-sim-td-lte-cn-tw-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.7, + "performance": 3.0, + "camera": 5.1, + "battery": 9.4, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n970f-ds-galaxy-note-10-global-dual-sim-td-lte-256gb/index.json b/site/public/v1/smartphones/sm-n970f-ds-galaxy-note-10-global-dual-sim-td-lte-256gb/index.json new file mode 100644 index 00000000000..e5b1f852c5b --- /dev/null +++ b/site/public/v1/smartphones/sm-n970f-ds-galaxy-note-10-global-dual-sim-td-lte-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4024, + "slug": "sm-n970f-ds-galaxy-note-10-global-dual-sim-td-lte-256gb", + "name": "SM-N970F/DS Galaxy Note 10 Global Dual SIM TD-LTE 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 195, + "slug": "exynos-9825", + "name": "Samsung Exynos 9825", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP12", + "url": "/v1/socs/exynos-9825" + }, + "release_date": "2019-08-23", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.7, + "performance": 3.0, + "camera": 5.1, + "battery": 9.4, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.677272", + "updated_at": "2026-06-19T00:43:44.677272" +} diff --git a/site/public/v1/smartphones/sm-n970f-ds-galaxy-note-10-global-dual-sim-td-lte-256gb/score/index.json b/site/public/v1/smartphones/sm-n970f-ds-galaxy-note-10-global-dual-sim-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..16dbb63d21b --- /dev/null +++ b/site/public/v1/smartphones/sm-n970f-ds-galaxy-note-10-global-dual-sim-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.7, + "performance": 3.0, + "camera": 5.1, + "battery": 9.4, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n970f-galaxy-note-10-global-td-lte-256gb/index.json b/site/public/v1/smartphones/sm-n970f-galaxy-note-10-global-td-lte-256gb/index.json new file mode 100644 index 00000000000..2231ad86685 --- /dev/null +++ b/site/public/v1/smartphones/sm-n970f-galaxy-note-10-global-td-lte-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4025, + "slug": "sm-n970f-galaxy-note-10-global-td-lte-256gb", + "name": "SM-N970F Galaxy Note 10 Global TD-LTE 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 195, + "slug": "exynos-9825", + "name": "Samsung Exynos 9825", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP12", + "url": "/v1/socs/exynos-9825" + }, + "release_date": "2019-08-23", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.7, + "performance": 3.0, + "camera": 5.1, + "battery": 9.4, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.677272", + "updated_at": "2026-06-19T00:43:44.677272" +} diff --git a/site/public/v1/smartphones/sm-n970f-galaxy-note-10-global-td-lte-256gb/score/index.json b/site/public/v1/smartphones/sm-n970f-galaxy-note-10-global-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..16dbb63d21b --- /dev/null +++ b/site/public/v1/smartphones/sm-n970f-galaxy-note-10-global-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.7, + "performance": 3.0, + "camera": 5.1, + "battery": 9.4, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n970u-galaxy-note-10-td-lte-us-256gb/index.json b/site/public/v1/smartphones/sm-n970u-galaxy-note-10-td-lte-us-256gb/index.json new file mode 100644 index 00000000000..c345af7eb65 --- /dev/null +++ b/site/public/v1/smartphones/sm-n970u-galaxy-note-10-td-lte-us-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4026, + "slug": "sm-n970u-galaxy-note-10-td-lte-us-256gb", + "name": "SM-N970U Galaxy Note 10 TD-LTE US 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-09-13", + "msrp_usd": 950, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.7, + "performance": 3.0, + "camera": 5.1, + "battery": 9.4, + "display": 45.2, + "value": 32.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.677272", + "updated_at": "2026-06-19T00:43:44.677272" +} diff --git a/site/public/v1/smartphones/sm-n970u-galaxy-note-10-td-lte-us-256gb/score/index.json b/site/public/v1/smartphones/sm-n970u-galaxy-note-10-td-lte-us-256gb/score/index.json new file mode 100644 index 00000000000..c29a8aa5929 --- /dev/null +++ b/site/public/v1/smartphones/sm-n970u-galaxy-note-10-td-lte-us-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.7, + "performance": 3.0, + "camera": 5.1, + "battery": 9.4, + "display": 45.2, + "value": 32.9 +} diff --git a/site/public/v1/smartphones/sm-n970u1-galaxy-note-10-td-lte-us-256gb/index.json b/site/public/v1/smartphones/sm-n970u1-galaxy-note-10-td-lte-us-256gb/index.json new file mode 100644 index 00000000000..299cb4f03b0 --- /dev/null +++ b/site/public/v1/smartphones/sm-n970u1-galaxy-note-10-td-lte-us-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4027, + "slug": "sm-n970u1-galaxy-note-10-td-lte-us-256gb", + "name": "SM-N970U1 Galaxy Note 10 TD-LTE US 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-09-01", + "msrp_usd": 950, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.7, + "performance": 3.0, + "camera": 5.1, + "battery": 9.4, + "display": 45.2, + "value": 32.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.677272", + "updated_at": "2026-06-19T00:43:44.677272" +} diff --git a/site/public/v1/smartphones/sm-n970u1-galaxy-note-10-td-lte-us-256gb/score/index.json b/site/public/v1/smartphones/sm-n970u1-galaxy-note-10-td-lte-us-256gb/score/index.json new file mode 100644 index 00000000000..c29a8aa5929 --- /dev/null +++ b/site/public/v1/smartphones/sm-n970u1-galaxy-note-10-td-lte-us-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.7, + "performance": 3.0, + "camera": 5.1, + "battery": 9.4, + "display": 45.2, + "value": 32.9 +} diff --git a/site/public/v1/smartphones/sm-n970w-galaxy-note-10-td-lte-ca-256gb/index.json b/site/public/v1/smartphones/sm-n970w-galaxy-note-10-td-lte-ca-256gb/index.json new file mode 100644 index 00000000000..ddbaaccb710 --- /dev/null +++ b/site/public/v1/smartphones/sm-n970w-galaxy-note-10-td-lte-ca-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4028, + "slug": "sm-n970w-galaxy-note-10-td-lte-ca-256gb", + "name": "SM-N970W Galaxy Note 10 TD-LTE CA 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-09-13", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.7, + "performance": 3.0, + "camera": 5.1, + "battery": 9.4, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.678272", + "updated_at": "2026-06-19T00:43:44.678272" +} diff --git a/site/public/v1/smartphones/sm-n970w-galaxy-note-10-td-lte-ca-256gb/score/index.json b/site/public/v1/smartphones/sm-n970w-galaxy-note-10-td-lte-ca-256gb/score/index.json new file mode 100644 index 00000000000..16dbb63d21b --- /dev/null +++ b/site/public/v1/smartphones/sm-n970w-galaxy-note-10-td-lte-ca-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.7, + "performance": 3.0, + "camera": 5.1, + "battery": 9.4, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n971n-galaxy-note-10-5g-td-lte-kr-256gb/index.json b/site/public/v1/smartphones/sm-n971n-galaxy-note-10-5g-td-lte-kr-256gb/index.json new file mode 100644 index 00000000000..f6a6e7289e4 --- /dev/null +++ b/site/public/v1/smartphones/sm-n971n-galaxy-note-10-5g-td-lte-kr-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4029, + "slug": "sm-n971n-galaxy-note-10-5g-td-lte-kr-256gb", + "name": "SM-N971N Galaxy Note 10 5G TD-LTE KR 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 195, + "slug": "exynos-9825", + "name": "Samsung Exynos 9825", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP12", + "url": "/v1/socs/exynos-9825" + }, + "release_date": "2019-08-29", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.4, + "performance": 6.0, + "camera": 5.1, + "battery": 9.4, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.678272", + "updated_at": "2026-06-19T00:43:44.678272" +} diff --git a/site/public/v1/smartphones/sm-n971n-galaxy-note-10-5g-td-lte-kr-256gb/score/index.json b/site/public/v1/smartphones/sm-n971n-galaxy-note-10-5g-td-lte-kr-256gb/score/index.json new file mode 100644 index 00000000000..d01958eb406 --- /dev/null +++ b/site/public/v1/smartphones/sm-n971n-galaxy-note-10-5g-td-lte-kr-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.4, + "performance": 6.0, + "camera": 5.1, + "battery": 9.4, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n9750-galaxy-note-10-dual-sim-td-lte-cn-256gb/index.json b/site/public/v1/smartphones/sm-n9750-galaxy-note-10-dual-sim-td-lte-cn-256gb/index.json new file mode 100644 index 00000000000..55e3e863acd --- /dev/null +++ b/site/public/v1/smartphones/sm-n9750-galaxy-note-10-dual-sim-td-lte-cn-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4030, + "slug": "sm-n9750-galaxy-note-10-dual-sim-td-lte-cn-256gb", + "name": "SM-N9750 Galaxy Note 10+ Dual SIM TD-LTE CN 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-09-12", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.678272", + "updated_at": "2026-06-19T00:43:44.678272" +} diff --git a/site/public/v1/smartphones/sm-n9750-galaxy-note-10-dual-sim-td-lte-cn-256gb/score/index.json b/site/public/v1/smartphones/sm-n9750-galaxy-note-10-dual-sim-td-lte-cn-256gb/score/index.json new file mode 100644 index 00000000000..0604c167c18 --- /dev/null +++ b/site/public/v1/smartphones/sm-n9750-galaxy-note-10-dual-sim-td-lte-cn-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n975c-galaxy-note-10-td-lte-jp-256gb/index.json b/site/public/v1/smartphones/sm-n975c-galaxy-note-10-td-lte-jp-256gb/index.json new file mode 100644 index 00000000000..a190b76da1a --- /dev/null +++ b/site/public/v1/smartphones/sm-n975c-galaxy-note-10-td-lte-jp-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4031, + "slug": "sm-n975c-galaxy-note-10-td-lte-jp-256gb", + "name": "SM-N975C Galaxy Note 10+ TD-LTE JP 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-12-09", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.678272", + "updated_at": "2026-06-19T00:43:44.678272" +} diff --git a/site/public/v1/smartphones/sm-n975c-galaxy-note-10-td-lte-jp-256gb/score/index.json b/site/public/v1/smartphones/sm-n975c-galaxy-note-10-td-lte-jp-256gb/score/index.json new file mode 100644 index 00000000000..0604c167c18 --- /dev/null +++ b/site/public/v1/smartphones/sm-n975c-galaxy-note-10-td-lte-jp-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n975d-galaxy-note-10-star-wars-special-edition-td-lte-jp-256gb-sc-01m/index.json b/site/public/v1/smartphones/sm-n975d-galaxy-note-10-star-wars-special-edition-td-lte-jp-256gb-sc-01m/index.json new file mode 100644 index 00000000000..0574030c420 --- /dev/null +++ b/site/public/v1/smartphones/sm-n975d-galaxy-note-10-star-wars-special-edition-td-lte-jp-256gb-sc-01m/index.json @@ -0,0 +1,76 @@ +{ + "id": 4032, + "slug": "sm-n975d-galaxy-note-10-star-wars-special-edition-td-lte-jp-256gb-sc-01m", + "name": "SM-N975D Galaxy Note 10+ Star Wars Special Edition TD-LTE JP 256GB SC-01M", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-12-16", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.678272", + "updated_at": "2026-06-19T00:43:44.678272" +} diff --git a/site/public/v1/smartphones/sm-n975d-galaxy-note-10-star-wars-special-edition-td-lte-jp-256gb-sc-01m/score/index.json b/site/public/v1/smartphones/sm-n975d-galaxy-note-10-star-wars-special-edition-td-lte-jp-256gb-sc-01m/score/index.json new file mode 100644 index 00000000000..0604c167c18 --- /dev/null +++ b/site/public/v1/smartphones/sm-n975d-galaxy-note-10-star-wars-special-edition-td-lte-jp-256gb-sc-01m/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n975d-galaxy-note-10-td-lte-jp-256gb-sc-01m/index.json b/site/public/v1/smartphones/sm-n975d-galaxy-note-10-td-lte-jp-256gb-sc-01m/index.json new file mode 100644 index 00000000000..0f5ae2e36a9 --- /dev/null +++ b/site/public/v1/smartphones/sm-n975d-galaxy-note-10-td-lte-jp-256gb-sc-01m/index.json @@ -0,0 +1,76 @@ +{ + "id": 4033, + "slug": "sm-n975d-galaxy-note-10-td-lte-jp-256gb-sc-01m", + "name": "SM-N975D Galaxy Note 10+ TD-LTE JP 256GB SC-01M", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-10-18", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.678272", + "updated_at": "2026-06-19T00:43:44.678272" +} diff --git a/site/public/v1/smartphones/sm-n975d-galaxy-note-10-td-lte-jp-256gb-sc-01m/score/index.json b/site/public/v1/smartphones/sm-n975d-galaxy-note-10-td-lte-jp-256gb-sc-01m/score/index.json new file mode 100644 index 00000000000..0604c167c18 --- /dev/null +++ b/site/public/v1/smartphones/sm-n975d-galaxy-note-10-td-lte-jp-256gb-sc-01m/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n975f-ds-galaxy-note-10-global-dual-sim-td-lte-256gb/index.json b/site/public/v1/smartphones/sm-n975f-ds-galaxy-note-10-global-dual-sim-td-lte-256gb/index.json new file mode 100644 index 00000000000..971d4a95b06 --- /dev/null +++ b/site/public/v1/smartphones/sm-n975f-ds-galaxy-note-10-global-dual-sim-td-lte-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4034, + "slug": "sm-n975f-ds-galaxy-note-10-global-dual-sim-td-lte-256gb", + "name": "SM-N975F/DS Galaxy Note 10+ Global Dual SIM TD-LTE 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 195, + "slug": "exynos-9825", + "name": "Samsung Exynos 9825", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP12", + "url": "/v1/socs/exynos-9825" + }, + "release_date": "2019-08-23", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.679272", + "updated_at": "2026-06-19T00:43:44.679272" +} diff --git a/site/public/v1/smartphones/sm-n975f-ds-galaxy-note-10-global-dual-sim-td-lte-256gb/score/index.json b/site/public/v1/smartphones/sm-n975f-ds-galaxy-note-10-global-dual-sim-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..0604c167c18 --- /dev/null +++ b/site/public/v1/smartphones/sm-n975f-ds-galaxy-note-10-global-dual-sim-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n975f-ds-galaxy-note-10-global-dual-sim-td-lte-512gb/index.json b/site/public/v1/smartphones/sm-n975f-ds-galaxy-note-10-global-dual-sim-td-lte-512gb/index.json new file mode 100644 index 00000000000..3256de041c7 --- /dev/null +++ b/site/public/v1/smartphones/sm-n975f-ds-galaxy-note-10-global-dual-sim-td-lte-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4035, + "slug": "sm-n975f-ds-galaxy-note-10-global-dual-sim-td-lte-512gb", + "name": "SM-N975F/DS Galaxy Note 10+ Global Dual SIM TD-LTE 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 195, + "slug": "exynos-9825", + "name": "Samsung Exynos 9825", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP12", + "url": "/v1/socs/exynos-9825" + }, + "release_date": "2019-08-23", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.679272", + "updated_at": "2026-06-19T00:43:44.679272" +} diff --git a/site/public/v1/smartphones/sm-n975f-ds-galaxy-note-10-global-dual-sim-td-lte-512gb/score/index.json b/site/public/v1/smartphones/sm-n975f-ds-galaxy-note-10-global-dual-sim-td-lte-512gb/score/index.json new file mode 100644 index 00000000000..0604c167c18 --- /dev/null +++ b/site/public/v1/smartphones/sm-n975f-ds-galaxy-note-10-global-dual-sim-td-lte-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n975f-galaxy-note-10-global-td-lte-512gb/index.json b/site/public/v1/smartphones/sm-n975f-galaxy-note-10-global-td-lte-512gb/index.json new file mode 100644 index 00000000000..052efc5e806 --- /dev/null +++ b/site/public/v1/smartphones/sm-n975f-galaxy-note-10-global-td-lte-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4036, + "slug": "sm-n975f-galaxy-note-10-global-td-lte-512gb", + "name": "SM-N975F Galaxy Note 10+ Global TD-LTE 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 195, + "slug": "exynos-9825", + "name": "Samsung Exynos 9825", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP12", + "url": "/v1/socs/exynos-9825" + }, + "release_date": "2019-08-23", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.679272", + "updated_at": "2026-06-19T00:43:44.679272" +} diff --git a/site/public/v1/smartphones/sm-n975f-galaxy-note-10-global-td-lte-512gb/score/index.json b/site/public/v1/smartphones/sm-n975f-galaxy-note-10-global-td-lte-512gb/score/index.json new file mode 100644 index 00000000000..0604c167c18 --- /dev/null +++ b/site/public/v1/smartphones/sm-n975f-galaxy-note-10-global-td-lte-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n975j-galaxy-note-10-wimax-2-256gb-scv45/index.json b/site/public/v1/smartphones/sm-n975j-galaxy-note-10-wimax-2-256gb-scv45/index.json new file mode 100644 index 00000000000..ccf0d9cb622 --- /dev/null +++ b/site/public/v1/smartphones/sm-n975j-galaxy-note-10-wimax-2-256gb-scv45/index.json @@ -0,0 +1,76 @@ +{ + "id": 4037, + "slug": "sm-n975j-galaxy-note-10-wimax-2-256gb-scv45", + "name": "SM-N975J Galaxy Note 10+ WiMAX 2+ 256GB SCV45", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-10-18", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.679272", + "updated_at": "2026-06-19T00:43:44.679272" +} diff --git a/site/public/v1/smartphones/sm-n975j-galaxy-note-10-wimax-2-256gb-scv45/score/index.json b/site/public/v1/smartphones/sm-n975j-galaxy-note-10-wimax-2-256gb-scv45/score/index.json new file mode 100644 index 00000000000..0604c167c18 --- /dev/null +++ b/site/public/v1/smartphones/sm-n975j-galaxy-note-10-wimax-2-256gb-scv45/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n975u-galaxy-note-10-td-lte-us-512gb/index.json b/site/public/v1/smartphones/sm-n975u-galaxy-note-10-td-lte-us-512gb/index.json new file mode 100644 index 00000000000..f1d05dc3d2b --- /dev/null +++ b/site/public/v1/smartphones/sm-n975u-galaxy-note-10-td-lte-us-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4038, + "slug": "sm-n975u-galaxy-note-10-td-lte-us-512gb", + "name": "SM-N975U Galaxy Note 10+ TD-LTE US 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-09-02", + "msrp_usd": 1199, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": 26.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.679272", + "updated_at": "2026-06-19T00:43:44.679272" +} diff --git a/site/public/v1/smartphones/sm-n975u-galaxy-note-10-td-lte-us-512gb/score/index.json b/site/public/v1/smartphones/sm-n975u-galaxy-note-10-td-lte-us-512gb/score/index.json new file mode 100644 index 00000000000..fbd4b155aae --- /dev/null +++ b/site/public/v1/smartphones/sm-n975u-galaxy-note-10-td-lte-us-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": 26.8 +} diff --git a/site/public/v1/smartphones/sm-n975u1-galaxy-note-10-star-wars-special-edition-td-lte-us-512gb/index.json b/site/public/v1/smartphones/sm-n975u1-galaxy-note-10-star-wars-special-edition-td-lte-us-512gb/index.json new file mode 100644 index 00000000000..9728a80f0db --- /dev/null +++ b/site/public/v1/smartphones/sm-n975u1-galaxy-note-10-star-wars-special-edition-td-lte-us-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4039, + "slug": "sm-n975u1-galaxy-note-10-star-wars-special-edition-td-lte-us-512gb", + "name": "SM-N975U1 Galaxy Note 10+ Star Wars Special Edition TD-LTE US 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-12-11", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.679272", + "updated_at": "2026-06-19T00:43:44.679272" +} diff --git a/site/public/v1/smartphones/sm-n975u1-galaxy-note-10-star-wars-special-edition-td-lte-us-512gb/score/index.json b/site/public/v1/smartphones/sm-n975u1-galaxy-note-10-star-wars-special-edition-td-lte-us-512gb/score/index.json new file mode 100644 index 00000000000..0604c167c18 --- /dev/null +++ b/site/public/v1/smartphones/sm-n975u1-galaxy-note-10-star-wars-special-edition-td-lte-us-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n975u1-galaxy-note-10-td-lte-us-256gb/index.json b/site/public/v1/smartphones/sm-n975u1-galaxy-note-10-td-lte-us-256gb/index.json new file mode 100644 index 00000000000..709eac7c084 --- /dev/null +++ b/site/public/v1/smartphones/sm-n975u1-galaxy-note-10-td-lte-us-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4040, + "slug": "sm-n975u1-galaxy-note-10-td-lte-us-256gb", + "name": "SM-N975U1 Galaxy Note 10+ TD-LTE US 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-08-01", + "msrp_usd": 1099, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": 30.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.679272", + "updated_at": "2026-06-19T00:43:44.679272" +} diff --git a/site/public/v1/smartphones/sm-n975u1-galaxy-note-10-td-lte-us-256gb/score/index.json b/site/public/v1/smartphones/sm-n975u1-galaxy-note-10-td-lte-us-256gb/score/index.json new file mode 100644 index 00000000000..bf10076913b --- /dev/null +++ b/site/public/v1/smartphones/sm-n975u1-galaxy-note-10-td-lte-us-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": 30.6 +} diff --git a/site/public/v1/smartphones/sm-n975u1-galaxy-note-10-td-lte-us-512gb/index.json b/site/public/v1/smartphones/sm-n975u1-galaxy-note-10-td-lte-us-512gb/index.json new file mode 100644 index 00000000000..d8d3cc06a3e --- /dev/null +++ b/site/public/v1/smartphones/sm-n975u1-galaxy-note-10-td-lte-us-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4041, + "slug": "sm-n975u1-galaxy-note-10-td-lte-us-512gb", + "name": "SM-N975U1 Galaxy Note 10+ TD-LTE US 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-08-01", + "msrp_usd": 1199, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": 26.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.679272", + "updated_at": "2026-06-19T00:43:44.679272" +} diff --git a/site/public/v1/smartphones/sm-n975u1-galaxy-note-10-td-lte-us-512gb/score/index.json b/site/public/v1/smartphones/sm-n975u1-galaxy-note-10-td-lte-us-512gb/score/index.json new file mode 100644 index 00000000000..fbd4b155aae --- /dev/null +++ b/site/public/v1/smartphones/sm-n975u1-galaxy-note-10-td-lte-us-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": 26.8 +} diff --git a/site/public/v1/smartphones/sm-n975w-galaxy-note-10-td-lte-ca-256gb/index.json b/site/public/v1/smartphones/sm-n975w-galaxy-note-10-td-lte-ca-256gb/index.json new file mode 100644 index 00000000000..5e194cb098a --- /dev/null +++ b/site/public/v1/smartphones/sm-n975w-galaxy-note-10-td-lte-ca-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4042, + "slug": "sm-n975w-galaxy-note-10-td-lte-ca-256gb", + "name": "SM-N975W Galaxy Note 10+ TD-LTE CA 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.680271", + "updated_at": "2026-06-19T00:43:44.680271" +} diff --git a/site/public/v1/smartphones/sm-n975w-galaxy-note-10-td-lte-ca-256gb/score/index.json b/site/public/v1/smartphones/sm-n975w-galaxy-note-10-td-lte-ca-256gb/score/index.json new file mode 100644 index 00000000000..0604c167c18 --- /dev/null +++ b/site/public/v1/smartphones/sm-n975w-galaxy-note-10-td-lte-ca-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n9760-galaxy-note-10-5g-dual-sim-td-lte-cn-256gb/index.json b/site/public/v1/smartphones/sm-n9760-galaxy-note-10-5g-dual-sim-td-lte-cn-256gb/index.json new file mode 100644 index 00000000000..1bb7abdbdf2 --- /dev/null +++ b/site/public/v1/smartphones/sm-n9760-galaxy-note-10-5g-dual-sim-td-lte-cn-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4043, + "slug": "sm-n9760-galaxy-note-10-5g-dual-sim-td-lte-cn-256gb", + "name": "SM-N9760 Galaxy Note 10+ 5G Dual SIM TD-LTE CN 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-09-12", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.680271", + "updated_at": "2026-06-19T00:43:44.680271" +} diff --git a/site/public/v1/smartphones/sm-n9760-galaxy-note-10-5g-dual-sim-td-lte-cn-256gb/score/index.json b/site/public/v1/smartphones/sm-n9760-galaxy-note-10-5g-dual-sim-td-lte-cn-256gb/score/index.json new file mode 100644 index 00000000000..0604c167c18 --- /dev/null +++ b/site/public/v1/smartphones/sm-n9760-galaxy-note-10-5g-dual-sim-td-lte-cn-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n976b-galaxy-note-10-5g-global-td-lte-256gb/index.json b/site/public/v1/smartphones/sm-n976b-galaxy-note-10-5g-global-td-lte-256gb/index.json new file mode 100644 index 00000000000..fe1254e171e --- /dev/null +++ b/site/public/v1/smartphones/sm-n976b-galaxy-note-10-5g-global-td-lte-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4044, + "slug": "sm-n976b-galaxy-note-10-5g-global-td-lte-256gb", + "name": "SM-N976B Galaxy Note 10+ 5G Global TD-LTE 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 195, + "slug": "exynos-9825", + "name": "Samsung Exynos 9825", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP12", + "url": "/v1/socs/exynos-9825" + }, + "release_date": "2019-08-23", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.680271", + "updated_at": "2026-06-19T00:43:44.680271" +} diff --git a/site/public/v1/smartphones/sm-n976b-galaxy-note-10-5g-global-td-lte-256gb/score/index.json b/site/public/v1/smartphones/sm-n976b-galaxy-note-10-5g-global-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..0604c167c18 --- /dev/null +++ b/site/public/v1/smartphones/sm-n976b-galaxy-note-10-5g-global-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n976n-galaxy-note-10-5g-td-lte-kr-256gb/index.json b/site/public/v1/smartphones/sm-n976n-galaxy-note-10-5g-td-lte-kr-256gb/index.json new file mode 100644 index 00000000000..8818d524fb0 --- /dev/null +++ b/site/public/v1/smartphones/sm-n976n-galaxy-note-10-5g-td-lte-kr-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4045, + "slug": "sm-n976n-galaxy-note-10-5g-td-lte-kr-256gb", + "name": "SM-N976N Galaxy Note 10+ 5G TD-LTE KR 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 195, + "slug": "exynos-9825", + "name": "Samsung Exynos 9825", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP12", + "url": "/v1/socs/exynos-9825" + }, + "release_date": "2019-08-29", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.680271", + "updated_at": "2026-06-19T00:43:44.680271" +} diff --git a/site/public/v1/smartphones/sm-n976n-galaxy-note-10-5g-td-lte-kr-256gb/score/index.json b/site/public/v1/smartphones/sm-n976n-galaxy-note-10-5g-td-lte-kr-256gb/score/index.json new file mode 100644 index 00000000000..0604c167c18 --- /dev/null +++ b/site/public/v1/smartphones/sm-n976n-galaxy-note-10-5g-td-lte-kr-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n976n-galaxy-note-10-5g-td-lte-kr-512gb/index.json b/site/public/v1/smartphones/sm-n976n-galaxy-note-10-5g-td-lte-kr-512gb/index.json new file mode 100644 index 00000000000..29b9574a3ca --- /dev/null +++ b/site/public/v1/smartphones/sm-n976n-galaxy-note-10-5g-td-lte-kr-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4046, + "slug": "sm-n976n-galaxy-note-10-5g-td-lte-kr-512gb", + "name": "SM-N976N Galaxy Note 10+ 5G TD-LTE KR 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 195, + "slug": "exynos-9825", + "name": "Samsung Exynos 9825", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G76 MP12", + "url": "/v1/socs/exynos-9825" + }, + "release_date": "2019-08-29", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.680271", + "updated_at": "2026-06-19T00:43:44.680271" +} diff --git a/site/public/v1/smartphones/sm-n976n-galaxy-note-10-5g-td-lte-kr-512gb/score/index.json b/site/public/v1/smartphones/sm-n976n-galaxy-note-10-5g-td-lte-kr-512gb/score/index.json new file mode 100644 index 00000000000..0604c167c18 --- /dev/null +++ b/site/public/v1/smartphones/sm-n976n-galaxy-note-10-5g-td-lte-kr-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n976t-galaxy-note-10-5g-td-lte-us-256gb-sm-n976u/index.json b/site/public/v1/smartphones/sm-n976t-galaxy-note-10-5g-td-lte-us-256gb-sm-n976u/index.json new file mode 100644 index 00000000000..2f204f8df35 --- /dev/null +++ b/site/public/v1/smartphones/sm-n976t-galaxy-note-10-5g-td-lte-us-256gb-sm-n976u/index.json @@ -0,0 +1,76 @@ +{ + "id": 4047, + "slug": "sm-n976t-galaxy-note-10-5g-td-lte-us-256gb-sm-n976u", + "name": "SM-N976T Galaxy Note 10+ 5G TD-LTE US 256GB / SM-N976U", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-12-06", + "msrp_usd": 1299, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": 23.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.680271", + "updated_at": "2026-06-19T00:43:44.680271" +} diff --git a/site/public/v1/smartphones/sm-n976t-galaxy-note-10-5g-td-lte-us-256gb-sm-n976u/score/index.json b/site/public/v1/smartphones/sm-n976t-galaxy-note-10-5g-td-lte-us-256gb-sm-n976u/score/index.json new file mode 100644 index 00000000000..e0e80f1fae5 --- /dev/null +++ b/site/public/v1/smartphones/sm-n976t-galaxy-note-10-5g-td-lte-us-256gb-sm-n976u/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": 23.0 +} diff --git a/site/public/v1/smartphones/sm-n976v-galaxy-note-10-5g-td-lte-us-256gb-sm-n976u/index.json b/site/public/v1/smartphones/sm-n976v-galaxy-note-10-5g-td-lte-us-256gb-sm-n976u/index.json new file mode 100644 index 00000000000..e539349c51b --- /dev/null +++ b/site/public/v1/smartphones/sm-n976v-galaxy-note-10-5g-td-lte-us-256gb-sm-n976u/index.json @@ -0,0 +1,76 @@ +{ + "id": 4048, + "slug": "sm-n976v-galaxy-note-10-5g-td-lte-us-256gb-sm-n976u", + "name": "SM-N976V Galaxy Note 10+ 5G TD-LTE US 256GB / SM-N976U", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-09-01", + "msrp_usd": 1299, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": 23.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.680271", + "updated_at": "2026-06-19T00:43:44.680271" +} diff --git a/site/public/v1/smartphones/sm-n976v-galaxy-note-10-5g-td-lte-us-256gb-sm-n976u/score/index.json b/site/public/v1/smartphones/sm-n976v-galaxy-note-10-5g-td-lte-us-256gb-sm-n976u/score/index.json new file mode 100644 index 00000000000..e0e80f1fae5 --- /dev/null +++ b/site/public/v1/smartphones/sm-n976v-galaxy-note-10-5g-td-lte-us-256gb-sm-n976u/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": 23.0 +} diff --git a/site/public/v1/smartphones/sm-n976v-galaxy-note-10-5g-td-lte-us-512gb-sm-n976u/index.json b/site/public/v1/smartphones/sm-n976v-galaxy-note-10-5g-td-lte-us-512gb-sm-n976u/index.json new file mode 100644 index 00000000000..a3c6bbaae5f --- /dev/null +++ b/site/public/v1/smartphones/sm-n976v-galaxy-note-10-5g-td-lte-us-512gb-sm-n976u/index.json @@ -0,0 +1,76 @@ +{ + "id": 4049, + "slug": "sm-n976v-galaxy-note-10-5g-td-lte-us-512gb-sm-n976u", + "name": "SM-N976V Galaxy Note 10+ 5G TD-LTE US 512GB / SM-N976U", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.76, + "resolution": "1440x3040", + "type": "AM-OLED display", + "ppi": 498 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.680271", + "updated_at": "2026-06-19T00:43:44.680271" +} diff --git a/site/public/v1/smartphones/sm-n976v-galaxy-note-10-5g-td-lte-us-512gb-sm-n976u/score/index.json b/site/public/v1/smartphones/sm-n976v-galaxy-note-10-5g-td-lte-us-512gb-sm-n976u/score/index.json new file mode 100644 index 00000000000..0604c167c18 --- /dev/null +++ b/site/public/v1/smartphones/sm-n976v-galaxy-note-10-5g-td-lte-us-512gb-sm-n976u/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 6.0, + "camera": 5.1, + "battery": 25.2, + "display": 54.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n980f-ds-galaxy-note-20-global-dual-sim-td-lte-256gb/index.json b/site/public/v1/smartphones/sm-n980f-ds-galaxy-note-20-global-dual-sim-td-lte-256gb/index.json new file mode 100644 index 00000000000..a00083b8300 --- /dev/null +++ b/site/public/v1/smartphones/sm-n980f-ds-galaxy-note-20-global-dual-sim-td-lte-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4289, + "slug": "sm-n980f-ds-galaxy-note-20-global-dual-sim-td-lte-256gb", + "name": "SM-N980F/DS Galaxy Note 20 Global Dual SIM TD-LTE 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 199, + "slug": "exynos-990", + "name": "Samsung Exynos 990", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP11", + "url": "/v1/socs/exynos-990" + }, + "release_date": "2020-08-21", + "msrp_usd": 849, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 3.0, + "camera": 5.1, + "battery": 21.4, + "display": 26.9, + "value": 35.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.711780", + "updated_at": "2026-06-19T00:43:44.711780" +} diff --git a/site/public/v1/smartphones/sm-n980f-ds-galaxy-note-20-global-dual-sim-td-lte-256gb/score/index.json b/site/public/v1/smartphones/sm-n980f-ds-galaxy-note-20-global-dual-sim-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..62c6e474f14 --- /dev/null +++ b/site/public/v1/smartphones/sm-n980f-ds-galaxy-note-20-global-dual-sim-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 3.0, + "camera": 5.1, + "battery": 21.4, + "display": 26.9, + "value": 35.9 +} diff --git a/site/public/v1/smartphones/sm-n9810-galaxy-note-20-5g-dual-sim-td-lte-cn-256gb/index.json b/site/public/v1/smartphones/sm-n9810-galaxy-note-20-5g-dual-sim-td-lte-cn-256gb/index.json new file mode 100644 index 00000000000..2099f00befb --- /dev/null +++ b/site/public/v1/smartphones/sm-n9810-galaxy-note-20-5g-dual-sim-td-lte-cn-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4290, + "slug": "sm-n9810-galaxy-note-20-5g-dual-sim-td-lte-cn-256gb", + "name": "SM-N9810 Galaxy Note 20 5G Dual SIM TD-LTE CN 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-08-21", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 3.4, + "camera": 5.1, + "battery": 21.4, + "display": 26.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.711780", + "updated_at": "2026-06-19T00:43:44.711780" +} diff --git a/site/public/v1/smartphones/sm-n9810-galaxy-note-20-5g-dual-sim-td-lte-cn-256gb/score/index.json b/site/public/v1/smartphones/sm-n9810-galaxy-note-20-5g-dual-sim-td-lte-cn-256gb/score/index.json new file mode 100644 index 00000000000..1f8d582caac --- /dev/null +++ b/site/public/v1/smartphones/sm-n9810-galaxy-note-20-5g-dual-sim-td-lte-cn-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 3.4, + "camera": 5.1, + "battery": 21.4, + "display": 26.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n981b-ds-galaxy-note-20-5g-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-n981b-ds-galaxy-note-20-5g-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..7892b92b96b --- /dev/null +++ b/site/public/v1/smartphones/sm-n981b-ds-galaxy-note-20-5g-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4291, + "slug": "sm-n981b-ds-galaxy-note-20-5g-global-dual-sim-td-lte-128gb", + "name": "SM-N981B/DS Galaxy Note 20 5G Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 199, + "slug": "exynos-990", + "name": "Samsung Exynos 990", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP11", + "url": "/v1/socs/exynos-990" + }, + "release_date": "2020-08-21", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 3.0, + "camera": 5.1, + "battery": 21.4, + "display": 26.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.711780", + "updated_at": "2026-06-19T00:43:44.711780" +} diff --git a/site/public/v1/smartphones/sm-n981b-ds-galaxy-note-20-5g-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-n981b-ds-galaxy-note-20-5g-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..8665cf0fc17 --- /dev/null +++ b/site/public/v1/smartphones/sm-n981b-ds-galaxy-note-20-5g-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 3.0, + "camera": 5.1, + "battery": 21.4, + "display": 26.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n981n-galaxy-note-20-5g-td-lte-kr-256gb/index.json b/site/public/v1/smartphones/sm-n981n-galaxy-note-20-5g-td-lte-kr-256gb/index.json new file mode 100644 index 00000000000..abc4b31d902 --- /dev/null +++ b/site/public/v1/smartphones/sm-n981n-galaxy-note-20-5g-td-lte-kr-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4292, + "slug": "sm-n981n-galaxy-note-20-5g-td-lte-kr-256gb", + "name": "SM-N981N Galaxy Note 20 5G TD-LTE KR 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-08-21", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 3.4, + "camera": 5.1, + "battery": 21.4, + "display": 26.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.712781", + "updated_at": "2026-06-19T00:43:44.712781" +} diff --git a/site/public/v1/smartphones/sm-n981n-galaxy-note-20-5g-td-lte-kr-256gb/score/index.json b/site/public/v1/smartphones/sm-n981n-galaxy-note-20-5g-td-lte-kr-256gb/score/index.json new file mode 100644 index 00000000000..1f8d582caac --- /dev/null +++ b/site/public/v1/smartphones/sm-n981n-galaxy-note-20-5g-td-lte-kr-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 3.4, + "camera": 5.1, + "battery": 21.4, + "display": 26.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981a/index.json b/site/public/v1/smartphones/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981a/index.json new file mode 100644 index 00000000000..657a3bc60b0 --- /dev/null +++ b/site/public/v1/smartphones/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981a/index.json @@ -0,0 +1,77 @@ +{ + "id": 4293, + "slug": "sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981a", + "name": "SM-N981U Galaxy Note 20 5G TD-LTE US 128GB / SM-N981A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-08-21", + "msrp_usd": 1000, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 3.4, + "camera": 5.1, + "battery": 21.4, + "display": 26.9, + "value": 30.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.712781", + "updated_at": "2026-06-19T00:43:44.712781" +} diff --git a/site/public/v1/smartphones/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981a/score/index.json b/site/public/v1/smartphones/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981a/score/index.json new file mode 100644 index 00000000000..c27dec99999 --- /dev/null +++ b/site/public/v1/smartphones/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 3.4, + "camera": 5.1, + "battery": 21.4, + "display": 26.9, + "value": 30.2 +} diff --git a/site/public/v1/smartphones/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981p/index.json b/site/public/v1/smartphones/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981p/index.json new file mode 100644 index 00000000000..eb66ce4070c --- /dev/null +++ b/site/public/v1/smartphones/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981p/index.json @@ -0,0 +1,77 @@ +{ + "id": 4294, + "slug": "sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981p", + "name": "SM-N981U Galaxy Note 20 5G TD-LTE US 128GB / SM-N981P", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-08-21", + "msrp_usd": 1000, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 3.4, + "camera": 5.1, + "battery": 21.4, + "display": 26.9, + "value": 30.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.712781", + "updated_at": "2026-06-19T00:43:44.712781" +} diff --git a/site/public/v1/smartphones/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981p/score/index.json b/site/public/v1/smartphones/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981p/score/index.json new file mode 100644 index 00000000000..c27dec99999 --- /dev/null +++ b/site/public/v1/smartphones/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981p/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 3.4, + "camera": 5.1, + "battery": 21.4, + "display": 26.9, + "value": 30.2 +} diff --git a/site/public/v1/smartphones/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981r4/index.json b/site/public/v1/smartphones/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981r4/index.json new file mode 100644 index 00000000000..c8ff08f4ddf --- /dev/null +++ b/site/public/v1/smartphones/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981r4/index.json @@ -0,0 +1,77 @@ +{ + "id": 4295, + "slug": "sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981r4", + "name": "SM-N981U Galaxy Note 20 5G TD-LTE US 128GB / SM-N981R4", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-08-21", + "msrp_usd": 1000, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 3.4, + "camera": 5.1, + "battery": 21.4, + "display": 26.9, + "value": 30.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.712781", + "updated_at": "2026-06-19T00:43:44.712781" +} diff --git a/site/public/v1/smartphones/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981r4/score/index.json b/site/public/v1/smartphones/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981r4/score/index.json new file mode 100644 index 00000000000..c27dec99999 --- /dev/null +++ b/site/public/v1/smartphones/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981r4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 3.4, + "camera": 5.1, + "battery": 21.4, + "display": 26.9, + "value": 30.2 +} diff --git a/site/public/v1/smartphones/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981t/index.json b/site/public/v1/smartphones/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981t/index.json new file mode 100644 index 00000000000..42d725a3699 --- /dev/null +++ b/site/public/v1/smartphones/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981t/index.json @@ -0,0 +1,77 @@ +{ + "id": 4296, + "slug": "sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981t", + "name": "SM-N981U Galaxy Note 20 5G TD-LTE US 128GB / SM-N981T", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-08-21", + "msrp_usd": 1000, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 3.4, + "camera": 5.1, + "battery": 21.4, + "display": 26.9, + "value": 30.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.712781", + "updated_at": "2026-06-19T00:43:44.712781" +} diff --git a/site/public/v1/smartphones/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981t/score/index.json b/site/public/v1/smartphones/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981t/score/index.json new file mode 100644 index 00000000000..c27dec99999 --- /dev/null +++ b/site/public/v1/smartphones/sm-n981u-galaxy-note-20-5g-td-lte-us-128gb-sm-n981t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 3.4, + "camera": 5.1, + "battery": 21.4, + "display": 26.9, + "value": 30.2 +} diff --git a/site/public/v1/smartphones/sm-n981u-galaxy-note-20-uw-5g-td-lte-us-128gb-sm-n981v/index.json b/site/public/v1/smartphones/sm-n981u-galaxy-note-20-uw-5g-td-lte-us-128gb-sm-n981v/index.json new file mode 100644 index 00000000000..f954178bf98 --- /dev/null +++ b/site/public/v1/smartphones/sm-n981u-galaxy-note-20-uw-5g-td-lte-us-128gb-sm-n981v/index.json @@ -0,0 +1,77 @@ +{ + "id": 4297, + "slug": "sm-n981u-galaxy-note-20-uw-5g-td-lte-us-128gb-sm-n981v", + "name": "SM-N981U Galaxy Note 20 UW 5G TD-LTE US 128GB / SM-N981V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-08-21", + "msrp_usd": 1000, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 3.4, + "camera": 5.1, + "battery": 21.4, + "display": 26.9, + "value": 30.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.712781", + "updated_at": "2026-06-19T00:43:44.712781" +} diff --git a/site/public/v1/smartphones/sm-n981u-galaxy-note-20-uw-5g-td-lte-us-128gb-sm-n981v/score/index.json b/site/public/v1/smartphones/sm-n981u-galaxy-note-20-uw-5g-td-lte-us-128gb-sm-n981v/score/index.json new file mode 100644 index 00000000000..c27dec99999 --- /dev/null +++ b/site/public/v1/smartphones/sm-n981u-galaxy-note-20-uw-5g-td-lte-us-128gb-sm-n981v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 3.4, + "camera": 5.1, + "battery": 21.4, + "display": 26.9, + "value": 30.2 +} diff --git a/site/public/v1/smartphones/sm-n981u1-galaxy-note-20-5g-td-lte-us-128gb/index.json b/site/public/v1/smartphones/sm-n981u1-galaxy-note-20-5g-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..d49b283c5c7 --- /dev/null +++ b/site/public/v1/smartphones/sm-n981u1-galaxy-note-20-5g-td-lte-us-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4298, + "slug": "sm-n981u1-galaxy-note-20-5g-td-lte-us-128gb", + "name": "SM-N981U1 Galaxy Note 20 5G TD-LTE US 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-08-21", + "msrp_usd": 1000, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 3.4, + "camera": 5.1, + "battery": 21.4, + "display": 26.9, + "value": 30.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.712781", + "updated_at": "2026-06-19T00:43:44.712781" +} diff --git a/site/public/v1/smartphones/sm-n981u1-galaxy-note-20-5g-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/sm-n981u1-galaxy-note-20-5g-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..c27dec99999 --- /dev/null +++ b/site/public/v1/smartphones/sm-n981u1-galaxy-note-20-5g-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 3.4, + "camera": 5.1, + "battery": 21.4, + "display": 26.9, + "value": 30.2 +} diff --git a/site/public/v1/smartphones/sm-n981w-galaxy-note-20-5g-td-lte-ca-128gb/index.json b/site/public/v1/smartphones/sm-n981w-galaxy-note-20-5g-td-lte-ca-128gb/index.json new file mode 100644 index 00000000000..73349860f01 --- /dev/null +++ b/site/public/v1/smartphones/sm-n981w-galaxy-note-20-5g-td-lte-ca-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4299, + "slug": "sm-n981w-galaxy-note-20-5g-td-lte-ca-128gb", + "name": "SM-N981W Galaxy Note 20 5G TD-LTE CA 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-08-21", + "msrp_usd": 1400, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 394 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 3.4, + "camera": 5.1, + "battery": 21.4, + "display": 26.9, + "value": 14.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.712781", + "updated_at": "2026-06-19T00:43:44.712781" +} diff --git a/site/public/v1/smartphones/sm-n981w-galaxy-note-20-5g-td-lte-ca-128gb/score/index.json b/site/public/v1/smartphones/sm-n981w-galaxy-note-20-5g-td-lte-ca-128gb/score/index.json new file mode 100644 index 00000000000..c3986e1804e --- /dev/null +++ b/site/public/v1/smartphones/sm-n981w-galaxy-note-20-5g-td-lte-ca-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 3.4, + "camera": 5.1, + "battery": 21.4, + "display": 26.9, + "value": 14.8 +} diff --git a/site/public/v1/smartphones/sm-n985f-ds-galaxy-note-20-ultra-global-dual-sim-td-lte-256gb/index.json b/site/public/v1/smartphones/sm-n985f-ds-galaxy-note-20-ultra-global-dual-sim-td-lte-256gb/index.json new file mode 100644 index 00000000000..8fe9293a9c8 --- /dev/null +++ b/site/public/v1/smartphones/sm-n985f-ds-galaxy-note-20-ultra-global-dual-sim-td-lte-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4300, + "slug": "sm-n985f-ds-galaxy-note-20-ultra-global-dual-sim-td-lte-256gb", + "name": "SM-N985F/DS Galaxy Note 20 Ultra Global Dual SIM TD-LTE 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 199, + "slug": "exynos-990", + "name": "Samsung Exynos 990", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP11", + "url": "/v1/socs/exynos-990" + }, + "release_date": "2020-08-21", + "msrp_usd": 925, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 496 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.3, + "performance": 3.0, + "camera": 35.8, + "battery": 24.4, + "display": 62.1, + "value": 41.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.712781", + "updated_at": "2026-06-19T00:43:44.712781" +} diff --git a/site/public/v1/smartphones/sm-n985f-ds-galaxy-note-20-ultra-global-dual-sim-td-lte-256gb/score/index.json b/site/public/v1/smartphones/sm-n985f-ds-galaxy-note-20-ultra-global-dual-sim-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..3c69be555c7 --- /dev/null +++ b/site/public/v1/smartphones/sm-n985f-ds-galaxy-note-20-ultra-global-dual-sim-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.3, + "performance": 3.0, + "camera": 35.8, + "battery": 24.4, + "display": 62.1, + "value": 41.6 +} diff --git a/site/public/v1/smartphones/sm-n9860-galaxy-note-20-ultra-5g-dual-sim-td-lte-cn-256gb/index.json b/site/public/v1/smartphones/sm-n9860-galaxy-note-20-ultra-5g-dual-sim-td-lte-cn-256gb/index.json new file mode 100644 index 00000000000..84173be7c5d --- /dev/null +++ b/site/public/v1/smartphones/sm-n9860-galaxy-note-20-ultra-5g-dual-sim-td-lte-cn-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4301, + "slug": "sm-n9860-galaxy-note-20-ultra-5g-dual-sim-td-lte-cn-256gb", + "name": "SM-N9860 Galaxy Note 20 Ultra 5G Dual SIM TD-LTE CN 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-08-21", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 496 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 35.8, + "battery": 24.4, + "display": 62.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.713789", + "updated_at": "2026-06-19T00:43:44.713789" +} diff --git a/site/public/v1/smartphones/sm-n9860-galaxy-note-20-ultra-5g-dual-sim-td-lte-cn-256gb/score/index.json b/site/public/v1/smartphones/sm-n9860-galaxy-note-20-ultra-5g-dual-sim-td-lte-cn-256gb/score/index.json new file mode 100644 index 00000000000..34a65c01b5e --- /dev/null +++ b/site/public/v1/smartphones/sm-n9860-galaxy-note-20-ultra-5g-dual-sim-td-lte-cn-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 35.8, + "battery": 24.4, + "display": 62.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n9860-galaxy-note-20-ultra-5g-dual-sim-td-lte-cn-512gb/index.json b/site/public/v1/smartphones/sm-n9860-galaxy-note-20-ultra-5g-dual-sim-td-lte-cn-512gb/index.json new file mode 100644 index 00000000000..7dc8aa95fe5 --- /dev/null +++ b/site/public/v1/smartphones/sm-n9860-galaxy-note-20-ultra-5g-dual-sim-td-lte-cn-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4302, + "slug": "sm-n9860-galaxy-note-20-ultra-5g-dual-sim-td-lte-cn-512gb", + "name": "SM-N9860 Galaxy Note 20 Ultra 5G Dual SIM TD-LTE CN 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-08-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 496 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 35.8, + "battery": 24.4, + "display": 62.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.713789", + "updated_at": "2026-06-19T00:43:44.713789" +} diff --git a/site/public/v1/smartphones/sm-n9860-galaxy-note-20-ultra-5g-dual-sim-td-lte-cn-512gb/score/index.json b/site/public/v1/smartphones/sm-n9860-galaxy-note-20-ultra-5g-dual-sim-td-lte-cn-512gb/score/index.json new file mode 100644 index 00000000000..34a65c01b5e --- /dev/null +++ b/site/public/v1/smartphones/sm-n9860-galaxy-note-20-ultra-5g-dual-sim-td-lte-cn-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 35.8, + "battery": 24.4, + "display": 62.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n986b-ds-galaxy-note-20-ultra-5g-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-n986b-ds-galaxy-note-20-ultra-5g-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..d83f6fe7950 --- /dev/null +++ b/site/public/v1/smartphones/sm-n986b-ds-galaxy-note-20-ultra-5g-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4303, + "slug": "sm-n986b-ds-galaxy-note-20-ultra-5g-global-dual-sim-td-lte-128gb", + "name": "SM-N986B/DS Galaxy Note 20 Ultra 5G Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 199, + "slug": "exynos-990", + "name": "Samsung Exynos 990", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MP11", + "url": "/v1/socs/exynos-990" + }, + "release_date": "2020-08-21", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 496 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.1, + "performance": 6.0, + "camera": 35.8, + "battery": 24.4, + "display": 62.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.713789", + "updated_at": "2026-06-19T00:43:44.713789" +} diff --git a/site/public/v1/smartphones/sm-n986b-ds-galaxy-note-20-ultra-5g-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-n986b-ds-galaxy-note-20-ultra-5g-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..8269b7c0d12 --- /dev/null +++ b/site/public/v1/smartphones/sm-n986b-ds-galaxy-note-20-ultra-5g-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.1, + "performance": 6.0, + "camera": 35.8, + "battery": 24.4, + "display": 62.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n986c-galaxy-note-20-ultra-5g-td-lte-jp-256gb-sgh-n219/index.json b/site/public/v1/smartphones/sm-n986c-galaxy-note-20-ultra-5g-td-lte-jp-256gb-sgh-n219/index.json new file mode 100644 index 00000000000..0fc3132d53c --- /dev/null +++ b/site/public/v1/smartphones/sm-n986c-galaxy-note-20-ultra-5g-td-lte-jp-256gb-sgh-n219/index.json @@ -0,0 +1,77 @@ +{ + "id": 4304, + "slug": "sm-n986c-galaxy-note-20-ultra-5g-td-lte-jp-256gb-sgh-n219", + "name": "SM-N986C Galaxy Note 20 Ultra 5G TD-LTE JP 256GB / SGH-N219", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-11-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 496 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 35.8, + "battery": 24.4, + "display": 62.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.713789", + "updated_at": "2026-06-19T00:43:44.713789" +} diff --git a/site/public/v1/smartphones/sm-n986c-galaxy-note-20-ultra-5g-td-lte-jp-256gb-sgh-n219/score/index.json b/site/public/v1/smartphones/sm-n986c-galaxy-note-20-ultra-5g-td-lte-jp-256gb-sgh-n219/score/index.json new file mode 100644 index 00000000000..34a65c01b5e --- /dev/null +++ b/site/public/v1/smartphones/sm-n986c-galaxy-note-20-ultra-5g-td-lte-jp-256gb-sgh-n219/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 35.8, + "battery": 24.4, + "display": 62.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n986d-galaxy-note-20-ultra-uw-5g-td-lte-jp-256gb-sc-53a-sgh-n323/index.json b/site/public/v1/smartphones/sm-n986d-galaxy-note-20-ultra-uw-5g-td-lte-jp-256gb-sc-53a-sgh-n323/index.json new file mode 100644 index 00000000000..c583558cf52 --- /dev/null +++ b/site/public/v1/smartphones/sm-n986d-galaxy-note-20-ultra-uw-5g-td-lte-jp-256gb-sc-53a-sgh-n323/index.json @@ -0,0 +1,77 @@ +{ + "id": 4305, + "slug": "sm-n986d-galaxy-note-20-ultra-uw-5g-td-lte-jp-256gb-sc-53a-sgh-n323", + "name": "SM-N986D Galaxy Note 20 Ultra UW 5G TD-LTE JP 256GB SC-53A / SGH-N323", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-11-06", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 496 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 35.8, + "battery": 24.4, + "display": 62.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.713789", + "updated_at": "2026-06-19T00:43:44.713789" +} diff --git a/site/public/v1/smartphones/sm-n986d-galaxy-note-20-ultra-uw-5g-td-lte-jp-256gb-sc-53a-sgh-n323/score/index.json b/site/public/v1/smartphones/sm-n986d-galaxy-note-20-ultra-uw-5g-td-lte-jp-256gb-sc-53a-sgh-n323/score/index.json new file mode 100644 index 00000000000..34a65c01b5e --- /dev/null +++ b/site/public/v1/smartphones/sm-n986d-galaxy-note-20-ultra-uw-5g-td-lte-jp-256gb-sc-53a-sgh-n323/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 35.8, + "battery": 24.4, + "display": 62.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n986j-galaxy-note-20-ultra-uw-5g-td-lte-jp-256gb-scg06/index.json b/site/public/v1/smartphones/sm-n986j-galaxy-note-20-ultra-uw-5g-td-lte-jp-256gb-scg06/index.json new file mode 100644 index 00000000000..454c4f1e7a6 --- /dev/null +++ b/site/public/v1/smartphones/sm-n986j-galaxy-note-20-ultra-uw-5g-td-lte-jp-256gb-scg06/index.json @@ -0,0 +1,77 @@ +{ + "id": 4306, + "slug": "sm-n986j-galaxy-note-20-ultra-uw-5g-td-lte-jp-256gb-scg06", + "name": "SM-N986J Galaxy Note 20 Ultra UW 5G TD-LTE JP 256GB SCG06", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-10-16", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 496 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 35.8, + "battery": 24.4, + "display": 62.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.713789", + "updated_at": "2026-06-19T00:43:44.713789" +} diff --git a/site/public/v1/smartphones/sm-n986j-galaxy-note-20-ultra-uw-5g-td-lte-jp-256gb-scg06/score/index.json b/site/public/v1/smartphones/sm-n986j-galaxy-note-20-ultra-uw-5g-td-lte-jp-256gb-scg06/score/index.json new file mode 100644 index 00000000000..34a65c01b5e --- /dev/null +++ b/site/public/v1/smartphones/sm-n986j-galaxy-note-20-ultra-uw-5g-td-lte-jp-256gb-scg06/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 35.8, + "battery": 24.4, + "display": 62.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n986n-galaxy-note-20-ultra-uw-5g-td-lte-kr-256gb/index.json b/site/public/v1/smartphones/sm-n986n-galaxy-note-20-ultra-uw-5g-td-lte-kr-256gb/index.json new file mode 100644 index 00000000000..a55d16da483 --- /dev/null +++ b/site/public/v1/smartphones/sm-n986n-galaxy-note-20-ultra-uw-5g-td-lte-kr-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4307, + "slug": "sm-n986n-galaxy-note-20-ultra-uw-5g-td-lte-kr-256gb", + "name": "SM-N986N Galaxy Note 20 Ultra UW 5G TD-LTE KR 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-08-21", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 496 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 35.8, + "battery": 24.4, + "display": 62.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.713789", + "updated_at": "2026-06-19T00:43:44.713789" +} diff --git a/site/public/v1/smartphones/sm-n986n-galaxy-note-20-ultra-uw-5g-td-lte-kr-256gb/score/index.json b/site/public/v1/smartphones/sm-n986n-galaxy-note-20-ultra-uw-5g-td-lte-kr-256gb/score/index.json new file mode 100644 index 00000000000..34a65c01b5e --- /dev/null +++ b/site/public/v1/smartphones/sm-n986n-galaxy-note-20-ultra-uw-5g-td-lte-kr-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 35.8, + "battery": 24.4, + "display": 62.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986a/index.json b/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986a/index.json new file mode 100644 index 00000000000..59124d6fc59 --- /dev/null +++ b/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986a/index.json @@ -0,0 +1,77 @@ +{ + "id": 4308, + "slug": "sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986a", + "name": "SM-N986U Galaxy Note 20 Ultra 5G TD-LTE US 128GB / SM-N986A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-08-21", + "msrp_usd": 1300, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 496 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 35.8, + "battery": 24.4, + "display": 62.1, + "value": 27.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.713789", + "updated_at": "2026-06-19T00:43:44.713789" +} diff --git a/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986a/score/index.json b/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986a/score/index.json new file mode 100644 index 00000000000..f23888a1b03 --- /dev/null +++ b/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 35.8, + "battery": 24.4, + "display": 62.1, + "value": 27.7 +} diff --git a/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986p/index.json b/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986p/index.json new file mode 100644 index 00000000000..b9e15b15f38 --- /dev/null +++ b/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986p/index.json @@ -0,0 +1,77 @@ +{ + "id": 4309, + "slug": "sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986p", + "name": "SM-N986U Galaxy Note 20 Ultra 5G TD-LTE US 128GB / SM-N986P", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-08-21", + "msrp_usd": 1300, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 496 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 35.8, + "battery": 24.4, + "display": 62.1, + "value": 27.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.713789", + "updated_at": "2026-06-19T00:43:44.713789" +} diff --git a/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986p/score/index.json b/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986p/score/index.json new file mode 100644 index 00000000000..f23888a1b03 --- /dev/null +++ b/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986p/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 35.8, + "battery": 24.4, + "display": 62.1, + "value": 27.7 +} diff --git a/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986r4/index.json b/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986r4/index.json new file mode 100644 index 00000000000..c090f11eccd --- /dev/null +++ b/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986r4/index.json @@ -0,0 +1,77 @@ +{ + "id": 4310, + "slug": "sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986r4", + "name": "SM-N986U Galaxy Note 20 Ultra 5G TD-LTE US 128GB / SM-N986R4", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-08-21", + "msrp_usd": 1300, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 496 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 35.8, + "battery": 24.4, + "display": 62.1, + "value": 27.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.714780", + "updated_at": "2026-06-19T00:43:44.714780" +} diff --git a/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986r4/score/index.json b/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986r4/score/index.json new file mode 100644 index 00000000000..f23888a1b03 --- /dev/null +++ b/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986r4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 35.8, + "battery": 24.4, + "display": 62.1, + "value": 27.7 +} diff --git a/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986t/index.json b/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986t/index.json new file mode 100644 index 00000000000..61e97c32bcc --- /dev/null +++ b/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986t/index.json @@ -0,0 +1,77 @@ +{ + "id": 4311, + "slug": "sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986t", + "name": "SM-N986U Galaxy Note 20 Ultra 5G TD-LTE US 128GB / SM-N986T", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-08-21", + "msrp_usd": 1300, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 496 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 35.8, + "battery": 24.4, + "display": 62.1, + "value": 27.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.714780", + "updated_at": "2026-06-19T00:43:44.714780" +} diff --git a/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986t/score/index.json b/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986t/score/index.json new file mode 100644 index 00000000000..f23888a1b03 --- /dev/null +++ b/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-5g-td-lte-us-128gb-sm-n986t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 35.8, + "battery": 24.4, + "display": 62.1, + "value": 27.7 +} diff --git a/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-uw-5g-td-lte-us-128gb-sm-n986v/index.json b/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-uw-5g-td-lte-us-128gb-sm-n986v/index.json new file mode 100644 index 00000000000..f80651a8471 --- /dev/null +++ b/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-uw-5g-td-lte-us-128gb-sm-n986v/index.json @@ -0,0 +1,77 @@ +{ + "id": 4312, + "slug": "sm-n986u-galaxy-note-20-ultra-uw-5g-td-lte-us-128gb-sm-n986v", + "name": "SM-N986U Galaxy Note 20 Ultra UW 5G TD-LTE US 128GB / SM-N986V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-08-21", + "msrp_usd": 1300, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 496 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 35.8, + "battery": 24.4, + "display": 62.1, + "value": 27.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.714780", + "updated_at": "2026-06-19T00:43:44.714780" +} diff --git a/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-uw-5g-td-lte-us-128gb-sm-n986v/score/index.json b/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-uw-5g-td-lte-us-128gb-sm-n986v/score/index.json new file mode 100644 index 00000000000..f23888a1b03 --- /dev/null +++ b/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-uw-5g-td-lte-us-128gb-sm-n986v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 35.8, + "battery": 24.4, + "display": 62.1, + "value": 27.7 +} diff --git a/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-uw-5g-td-lte-us-512gb-sm-n986v/index.json b/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-uw-5g-td-lte-us-512gb-sm-n986v/index.json new file mode 100644 index 00000000000..f2f8c4f2d47 --- /dev/null +++ b/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-uw-5g-td-lte-us-512gb-sm-n986v/index.json @@ -0,0 +1,77 @@ +{ + "id": 4313, + "slug": "sm-n986u-galaxy-note-20-ultra-uw-5g-td-lte-us-512gb-sm-n986v", + "name": "SM-N986U Galaxy Note 20 Ultra UW 5G TD-LTE US 512GB / SM-N986V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-08-01", + "msrp_usd": 1450, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 496 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 35.8, + "battery": 24.4, + "display": 62.1, + "value": 21.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.714780", + "updated_at": "2026-06-19T00:43:44.714780" +} diff --git a/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-uw-5g-td-lte-us-512gb-sm-n986v/score/index.json b/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-uw-5g-td-lte-us-512gb-sm-n986v/score/index.json new file mode 100644 index 00000000000..9ba8120b242 --- /dev/null +++ b/site/public/v1/smartphones/sm-n986u-galaxy-note-20-ultra-uw-5g-td-lte-us-512gb-sm-n986v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 35.8, + "battery": 24.4, + "display": 62.1, + "value": 21.9 +} diff --git a/site/public/v1/smartphones/sm-n986u1-galaxy-note-20-ultra-5g-td-lte-us-128gb/index.json b/site/public/v1/smartphones/sm-n986u1-galaxy-note-20-ultra-5g-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..eadfc37a0e4 --- /dev/null +++ b/site/public/v1/smartphones/sm-n986u1-galaxy-note-20-ultra-5g-td-lte-us-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4314, + "slug": "sm-n986u1-galaxy-note-20-ultra-5g-td-lte-us-128gb", + "name": "SM-N986U1 Galaxy Note 20 Ultra 5G TD-LTE US 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-08-21", + "msrp_usd": 1300, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 496 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 35.8, + "battery": 24.4, + "display": 62.1, + "value": 27.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.714780", + "updated_at": "2026-06-19T00:43:44.714780" +} diff --git a/site/public/v1/smartphones/sm-n986u1-galaxy-note-20-ultra-5g-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/sm-n986u1-galaxy-note-20-ultra-5g-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..f23888a1b03 --- /dev/null +++ b/site/public/v1/smartphones/sm-n986u1-galaxy-note-20-ultra-5g-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 35.8, + "battery": 24.4, + "display": 62.1, + "value": 27.7 +} diff --git a/site/public/v1/smartphones/sm-n986w-galaxy-note-20-ultra-5g-td-lte-ca-128gb/index.json b/site/public/v1/smartphones/sm-n986w-galaxy-note-20-ultra-5g-td-lte-ca-128gb/index.json new file mode 100644 index 00000000000..c754ce9d41a --- /dev/null +++ b/site/public/v1/smartphones/sm-n986w-galaxy-note-20-ultra-5g-td-lte-ca-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4315, + "slug": "sm-n986w-galaxy-note-20-ultra-5g-td-lte-ca-128gb", + "name": "SM-N986W Galaxy Note 20 Ultra 5G TD-LTE CA 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-08-21", + "msrp_usd": 1820, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 496 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 35.8, + "battery": 24.4, + "display": 62.1, + "value": 16.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.714780", + "updated_at": "2026-06-19T00:43:44.714780" +} diff --git a/site/public/v1/smartphones/sm-n986w-galaxy-note-20-ultra-5g-td-lte-ca-128gb/score/index.json b/site/public/v1/smartphones/sm-n986w-galaxy-note-20-ultra-5g-td-lte-ca-128gb/score/index.json new file mode 100644 index 00000000000..0f4ed729a1e --- /dev/null +++ b/site/public/v1/smartphones/sm-n986w-galaxy-note-20-ultra-5g-td-lte-ca-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 35.8, + "battery": 24.4, + "display": 62.1, + "value": 16.1 +} diff --git a/site/public/v1/smartphones/sm-n986w-galaxy-note-20-ultra-5g-td-lte-ca-512gb/index.json b/site/public/v1/smartphones/sm-n986w-galaxy-note-20-ultra-5g-td-lte-ca-512gb/index.json new file mode 100644 index 00000000000..fc821414548 --- /dev/null +++ b/site/public/v1/smartphones/sm-n986w-galaxy-note-20-ultra-5g-td-lte-ca-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4316, + "slug": "sm-n986w-galaxy-note-20-ultra-5g-td-lte-ca-512gb", + "name": "SM-N986W Galaxy Note 20 Ultra 5G TD-LTE CA 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-08-21", + "msrp_usd": 2030, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.87, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 496 + }, + "cameras": [ + { + "type": "main", + "mp": 108.6 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 35.8, + "battery": 24.4, + "display": 62.1, + "value": 16.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.719203", + "updated_at": "2026-06-19T00:43:44.719203" +} diff --git a/site/public/v1/smartphones/sm-n986w-galaxy-note-20-ultra-5g-td-lte-ca-512gb/score/index.json b/site/public/v1/smartphones/sm-n986w-galaxy-note-20-ultra-5g-td-lte-ca-512gb/score/index.json new file mode 100644 index 00000000000..0f4ed729a1e --- /dev/null +++ b/site/public/v1/smartphones/sm-n986w-galaxy-note-20-ultra-5g-td-lte-ca-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.2, + "performance": 6.4, + "camera": 35.8, + "battery": 24.4, + "display": 62.1, + "value": 16.1 +} diff --git a/site/public/v1/smartphones/sm-s9010-galaxy-s22-5g-dual-sim-td-lte-cn-hk-tw-128gb/index.json b/site/public/v1/smartphones/sm-s9010-galaxy-s22-5g-dual-sim-td-lte-cn-hk-tw-128gb/index.json new file mode 100644 index 00000000000..f22e12576f6 --- /dev/null +++ b/site/public/v1/smartphones/sm-s9010-galaxy-s22-5g-dual-sim-td-lte-cn-hk-tw-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4595, + "slug": "sm-s9010-galaxy-s22-5g-dual-sim-td-lte-cn-hk-tw-128gb", + "name": "SM-S9010 Galaxy S22 5G Dual SIM TD-LTE CN HK TW 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 4999, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": 13.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.752203", + "updated_at": "2026-06-19T00:43:44.752203" +} diff --git a/site/public/v1/smartphones/sm-s9010-galaxy-s22-5g-dual-sim-td-lte-cn-hk-tw-128gb/score/index.json b/site/public/v1/smartphones/sm-s9010-galaxy-s22-5g-dual-sim-td-lte-cn-hk-tw-128gb/score/index.json new file mode 100644 index 00000000000..1fa01c87c1c --- /dev/null +++ b/site/public/v1/smartphones/sm-s9010-galaxy-s22-5g-dual-sim-td-lte-cn-hk-tw-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": 13.8 +} diff --git a/site/public/v1/smartphones/sm-s9010-galaxy-s22-5g-dual-sim-td-lte-cn-hk-tw-256gb/index.json b/site/public/v1/smartphones/sm-s9010-galaxy-s22-5g-dual-sim-td-lte-cn-hk-tw-256gb/index.json new file mode 100644 index 00000000000..7b34c860cb2 --- /dev/null +++ b/site/public/v1/smartphones/sm-s9010-galaxy-s22-5g-dual-sim-td-lte-cn-hk-tw-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4596, + "slug": "sm-s9010-galaxy-s22-5g-dual-sim-td-lte-cn-hk-tw-256gb", + "name": "SM-S9010 Galaxy S22 5G Dual SIM TD-LTE CN HK TW 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.753203", + "updated_at": "2026-06-19T00:43:44.753203" +} diff --git a/site/public/v1/smartphones/sm-s9010-galaxy-s22-5g-dual-sim-td-lte-cn-hk-tw-256gb/score/index.json b/site/public/v1/smartphones/sm-s9010-galaxy-s22-5g-dual-sim-td-lte-cn-hk-tw-256gb/score/index.json new file mode 100644 index 00000000000..761b23a0c1f --- /dev/null +++ b/site/public/v1/smartphones/sm-s9010-galaxy-s22-5g-dual-sim-td-lte-cn-hk-tw-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-s901b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-128gb/index.json b/site/public/v1/smartphones/sm-s901b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-128gb/index.json new file mode 100644 index 00000000000..23006807747 --- /dev/null +++ b/site/public/v1/smartphones/sm-s901b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4597, + "slug": "sm-s901b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-128gb", + "name": "SM-S901B/DS Galaxy S22 5G Dual SIM TD-LTE EU 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 202, + "slug": "exynos-2200", + "name": "Samsung Exynos 2200", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 4.0, + "gpu_name": "Xclipse 920", + "url": "/v1/socs/exynos-2200" + }, + "release_date": "2022-02-26", + "msrp_usd": 849, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.1, + "performance": 13.0, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": 43.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.753203", + "updated_at": "2026-06-19T00:43:44.753203" +} diff --git a/site/public/v1/smartphones/sm-s901b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-128gb/score/index.json b/site/public/v1/smartphones/sm-s901b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-128gb/score/index.json new file mode 100644 index 00000000000..745633603d8 --- /dev/null +++ b/site/public/v1/smartphones/sm-s901b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.1, + "performance": 13.0, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": 43.0 +} diff --git a/site/public/v1/smartphones/sm-s901b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-256gb/index.json b/site/public/v1/smartphones/sm-s901b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-256gb/index.json new file mode 100644 index 00000000000..27f89cf92f6 --- /dev/null +++ b/site/public/v1/smartphones/sm-s901b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4598, + "slug": "sm-s901b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-256gb", + "name": "SM-S901B/DS Galaxy S22 5G Dual SIM TD-LTE EU 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 202, + "slug": "exynos-2200", + "name": "Samsung Exynos 2200", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 4.0, + "gpu_name": "Xclipse 920", + "url": "/v1/socs/exynos-2200" + }, + "release_date": "2022-02-26", + "msrp_usd": 899, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.1, + "performance": 13.0, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": 41.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.753203", + "updated_at": "2026-06-19T00:43:44.753203" +} diff --git a/site/public/v1/smartphones/sm-s901b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-256gb/score/index.json b/site/public/v1/smartphones/sm-s901b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-256gb/score/index.json new file mode 100644 index 00000000000..5d75b03748e --- /dev/null +++ b/site/public/v1/smartphones/sm-s901b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.1, + "performance": 13.0, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": 41.0 +} diff --git a/site/public/v1/smartphones/sm-s901d-galaxy-s22-5g-uw-td-lte-jp-256gb-sc-51c/index.json b/site/public/v1/smartphones/sm-s901d-galaxy-s22-5g-uw-td-lte-jp-256gb-sc-51c/index.json new file mode 100644 index 00000000000..521450bb41c --- /dev/null +++ b/site/public/v1/smartphones/sm-s901d-galaxy-s22-5g-uw-td-lte-jp-256gb-sc-51c/index.json @@ -0,0 +1,77 @@ +{ + "id": 4599, + "slug": "sm-s901d-galaxy-s22-5g-uw-td-lte-jp-256gb-sc-51c", + "name": "SM-S901D Galaxy S22 5G UW TD-LTE JP 256GB SC-51C", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-04-21", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.753203", + "updated_at": "2026-06-19T00:43:44.753203" +} diff --git a/site/public/v1/smartphones/sm-s901d-galaxy-s22-5g-uw-td-lte-jp-256gb-sc-51c/score/index.json b/site/public/v1/smartphones/sm-s901d-galaxy-s22-5g-uw-td-lte-jp-256gb-sc-51c/score/index.json new file mode 100644 index 00000000000..761b23a0c1f --- /dev/null +++ b/site/public/v1/smartphones/sm-s901d-galaxy-s22-5g-uw-td-lte-jp-256gb-sc-51c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-s901e-ds-galaxy-s22-5g-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-s901e-ds-galaxy-s22-5g-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..eb8c35c1640 --- /dev/null +++ b/site/public/v1/smartphones/sm-s901e-ds-galaxy-s22-5g-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4600, + "slug": "sm-s901e-ds-galaxy-s22-5g-global-dual-sim-td-lte-128gb", + "name": "SM-S901E/DS Galaxy S22 5G Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.753203", + "updated_at": "2026-06-19T00:43:44.753203" +} diff --git a/site/public/v1/smartphones/sm-s901e-ds-galaxy-s22-5g-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-s901e-ds-galaxy-s22-5g-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..761b23a0c1f --- /dev/null +++ b/site/public/v1/smartphones/sm-s901e-ds-galaxy-s22-5g-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-s901e-ds-galaxy-s22-5g-global-dual-sim-td-lte-256gb/index.json b/site/public/v1/smartphones/sm-s901e-ds-galaxy-s22-5g-global-dual-sim-td-lte-256gb/index.json new file mode 100644 index 00000000000..e8768fb2b33 --- /dev/null +++ b/site/public/v1/smartphones/sm-s901e-ds-galaxy-s22-5g-global-dual-sim-td-lte-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4601, + "slug": "sm-s901e-ds-galaxy-s22-5g-global-dual-sim-td-lte-256gb", + "name": "SM-S901E/DS Galaxy S22 5G Global Dual SIM TD-LTE 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.753203", + "updated_at": "2026-06-19T00:43:44.753203" +} diff --git a/site/public/v1/smartphones/sm-s901e-ds-galaxy-s22-5g-global-dual-sim-td-lte-256gb/score/index.json b/site/public/v1/smartphones/sm-s901e-ds-galaxy-s22-5g-global-dual-sim-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..761b23a0c1f --- /dev/null +++ b/site/public/v1/smartphones/sm-s901e-ds-galaxy-s22-5g-global-dual-sim-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-s901j-galaxy-s22-5g-uw-td-lte-jp-128gb-scg13/index.json b/site/public/v1/smartphones/sm-s901j-galaxy-s22-5g-uw-td-lte-jp-128gb-scg13/index.json new file mode 100644 index 00000000000..42b785ea986 --- /dev/null +++ b/site/public/v1/smartphones/sm-s901j-galaxy-s22-5g-uw-td-lte-jp-128gb-scg13/index.json @@ -0,0 +1,77 @@ +{ + "id": 4602, + "slug": "sm-s901j-galaxy-s22-5g-uw-td-lte-jp-128gb-scg13", + "name": "SM-S901J Galaxy S22 5G UW TD-LTE JP 128GB SCG13", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-04-21", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.753203", + "updated_at": "2026-06-19T00:43:44.753203" +} diff --git a/site/public/v1/smartphones/sm-s901j-galaxy-s22-5g-uw-td-lte-jp-128gb-scg13/score/index.json b/site/public/v1/smartphones/sm-s901j-galaxy-s22-5g-uw-td-lte-jp-128gb-scg13/score/index.json new file mode 100644 index 00000000000..761b23a0c1f --- /dev/null +++ b/site/public/v1/smartphones/sm-s901j-galaxy-s22-5g-uw-td-lte-jp-128gb-scg13/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-s901n-galaxy-s22-5g-td-lte-kr-256gb/index.json b/site/public/v1/smartphones/sm-s901n-galaxy-s22-5g-td-lte-kr-256gb/index.json new file mode 100644 index 00000000000..4bffd8e27d8 --- /dev/null +++ b/site/public/v1/smartphones/sm-s901n-galaxy-s22-5g-td-lte-kr-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4603, + "slug": "sm-s901n-galaxy-s22-5g-td-lte-kr-256gb", + "name": "SM-S901N Galaxy S22 5G TD-LTE KR 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-14", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.753203", + "updated_at": "2026-06-19T00:43:44.753203" +} diff --git a/site/public/v1/smartphones/sm-s901n-galaxy-s22-5g-td-lte-kr-256gb/score/index.json b/site/public/v1/smartphones/sm-s901n-galaxy-s22-5g-td-lte-kr-256gb/score/index.json new file mode 100644 index 00000000000..761b23a0c1f --- /dev/null +++ b/site/public/v1/smartphones/sm-s901n-galaxy-s22-5g-td-lte-kr-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": null +} diff --git a/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901a/index.json b/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901a/index.json new file mode 100644 index 00000000000..5c8a1c9b6fc --- /dev/null +++ b/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901a/index.json @@ -0,0 +1,77 @@ +{ + "id": 4604, + "slug": "sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901a", + "name": "SM-S901U Galaxy S22 5G UW Dual SIM TD-LTE US 128GB / SM-S901A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 800, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": 44.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.754204", + "updated_at": "2026-06-19T00:43:44.754204" +} diff --git a/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901a/score/index.json b/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901a/score/index.json new file mode 100644 index 00000000000..9f2b9e9a24d --- /dev/null +++ b/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": 44.5 +} diff --git a/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901r4/index.json b/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901r4/index.json new file mode 100644 index 00000000000..937e862a6d4 --- /dev/null +++ b/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901r4/index.json @@ -0,0 +1,77 @@ +{ + "id": 4605, + "slug": "sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901r4", + "name": "SM-S901U Galaxy S22 5G UW Dual SIM TD-LTE US 128GB / SM-S901R4", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 800, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": 44.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.754204", + "updated_at": "2026-06-19T00:43:44.754204" +} diff --git a/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901r4/score/index.json b/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901r4/score/index.json new file mode 100644 index 00000000000..9f2b9e9a24d --- /dev/null +++ b/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901r4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": 44.5 +} diff --git a/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901t/index.json b/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901t/index.json new file mode 100644 index 00000000000..a5a37709ee0 --- /dev/null +++ b/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901t/index.json @@ -0,0 +1,77 @@ +{ + "id": 4606, + "slug": "sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901t", + "name": "SM-S901U Galaxy S22 5G UW Dual SIM TD-LTE US 128GB / SM-S901T", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 800, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": 44.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.754204", + "updated_at": "2026-06-19T00:43:44.754204" +} diff --git a/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901t/score/index.json b/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901t/score/index.json new file mode 100644 index 00000000000..9f2b9e9a24d --- /dev/null +++ b/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": 44.5 +} diff --git a/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901v/index.json b/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901v/index.json new file mode 100644 index 00000000000..dc8fec4051f --- /dev/null +++ b/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901v/index.json @@ -0,0 +1,77 @@ +{ + "id": 4607, + "slug": "sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901v", + "name": "SM-S901U Galaxy S22 5G UW Dual SIM TD-LTE US 128GB / SM-S901V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 800, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": 44.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.754204", + "updated_at": "2026-06-19T00:43:44.754204" +} diff --git a/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901v/score/index.json b/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901v/score/index.json new file mode 100644 index 00000000000..9f2b9e9a24d --- /dev/null +++ b/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s901v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": 44.5 +} diff --git a/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901a/index.json b/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901a/index.json new file mode 100644 index 00000000000..7e36d29f6c7 --- /dev/null +++ b/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901a/index.json @@ -0,0 +1,77 @@ +{ + "id": 4608, + "slug": "sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901a", + "name": "SM-S901U Galaxy S22 5G UW Dual SIM TD-LTE US 256GB / SM-S901A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 850, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": 42.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.754204", + "updated_at": "2026-06-19T00:43:44.754204" +} diff --git a/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901a/score/index.json b/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901a/score/index.json new file mode 100644 index 00000000000..06f9134a605 --- /dev/null +++ b/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": 42.7 +} diff --git a/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901r4/index.json b/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901r4/index.json new file mode 100644 index 00000000000..54a6e8d513a --- /dev/null +++ b/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901r4/index.json @@ -0,0 +1,77 @@ +{ + "id": 4609, + "slug": "sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901r4", + "name": "SM-S901U Galaxy S22 5G UW Dual SIM TD-LTE US 256GB / SM-S901R4", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 850, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": 42.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.754204", + "updated_at": "2026-06-19T00:43:44.754204" +} diff --git a/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901r4/score/index.json b/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901r4/score/index.json new file mode 100644 index 00000000000..06f9134a605 --- /dev/null +++ b/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901r4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": 42.7 +} diff --git a/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901t/index.json b/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901t/index.json new file mode 100644 index 00000000000..03b4d225974 --- /dev/null +++ b/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901t/index.json @@ -0,0 +1,77 @@ +{ + "id": 4610, + "slug": "sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901t", + "name": "SM-S901U Galaxy S22 5G UW Dual SIM TD-LTE US 256GB / SM-S901T", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 850, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": 42.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.754204", + "updated_at": "2026-06-19T00:43:44.754204" +} diff --git a/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901t/score/index.json b/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901t/score/index.json new file mode 100644 index 00000000000..06f9134a605 --- /dev/null +++ b/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": 42.7 +} diff --git a/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901v/index.json b/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901v/index.json new file mode 100644 index 00000000000..faa059723d9 --- /dev/null +++ b/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901v/index.json @@ -0,0 +1,77 @@ +{ + "id": 4611, + "slug": "sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901v", + "name": "SM-S901U Galaxy S22 5G UW Dual SIM TD-LTE US 256GB / SM-S901V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 850, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": 42.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.754204", + "updated_at": "2026-06-19T00:43:44.754204" +} diff --git a/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901v/score/index.json b/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901v/score/index.json new file mode 100644 index 00000000000..06f9134a605 --- /dev/null +++ b/site/public/v1/smartphones/sm-s901u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s901v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": 42.7 +} diff --git a/site/public/v1/smartphones/sm-s901u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb/index.json b/site/public/v1/smartphones/sm-s901u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..694baa66c73 --- /dev/null +++ b/site/public/v1/smartphones/sm-s901u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4612, + "slug": "sm-s901u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb", + "name": "SM-S901U1 Galaxy S22 5G UW Dual SIM TD-LTE US 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 800, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": 44.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.754204", + "updated_at": "2026-06-19T00:43:44.754204" +} diff --git a/site/public/v1/smartphones/sm-s901u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/sm-s901u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..9f2b9e9a24d --- /dev/null +++ b/site/public/v1/smartphones/sm-s901u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": 44.5 +} diff --git a/site/public/v1/smartphones/sm-s901u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb/index.json b/site/public/v1/smartphones/sm-s901u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb/index.json new file mode 100644 index 00000000000..07988b79fe2 --- /dev/null +++ b/site/public/v1/smartphones/sm-s901u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4613, + "slug": "sm-s901u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb", + "name": "SM-S901U1 Galaxy S22 5G UW Dual SIM TD-LTE US 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 850, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": 42.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.755203", + "updated_at": "2026-06-19T00:43:44.755203" +} diff --git a/site/public/v1/smartphones/sm-s901u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb/score/index.json b/site/public/v1/smartphones/sm-s901u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb/score/index.json new file mode 100644 index 00000000000..06f9134a605 --- /dev/null +++ b/site/public/v1/smartphones/sm-s901u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": 42.7 +} diff --git a/site/public/v1/smartphones/sm-s901w-galaxy-s22-5g-dual-sim-td-lte-ca-128gb/index.json b/site/public/v1/smartphones/sm-s901w-galaxy-s22-5g-dual-sim-td-lte-ca-128gb/index.json new file mode 100644 index 00000000000..db1dd63a916 --- /dev/null +++ b/site/public/v1/smartphones/sm-s901w-galaxy-s22-5g-dual-sim-td-lte-ca-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4614, + "slug": "sm-s901w-galaxy-s22-5g-dual-sim-td-lte-ca-128gb", + "name": "SM-S901W Galaxy S22 5G Dual SIM TD-LTE CA 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 1100, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": 33.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.755203", + "updated_at": "2026-06-19T00:43:44.755203" +} diff --git a/site/public/v1/smartphones/sm-s901w-galaxy-s22-5g-dual-sim-td-lte-ca-128gb/score/index.json b/site/public/v1/smartphones/sm-s901w-galaxy-s22-5g-dual-sim-td-lte-ca-128gb/score/index.json new file mode 100644 index 00000000000..b761286b219 --- /dev/null +++ b/site/public/v1/smartphones/sm-s901w-galaxy-s22-5g-dual-sim-td-lte-ca-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": 33.0 +} diff --git a/site/public/v1/smartphones/sm-s901w-galaxy-s22-5g-dual-sim-td-lte-ca-256gb/index.json b/site/public/v1/smartphones/sm-s901w-galaxy-s22-5g-dual-sim-td-lte-ca-256gb/index.json new file mode 100644 index 00000000000..0706059004a --- /dev/null +++ b/site/public/v1/smartphones/sm-s901w-galaxy-s22-5g-dual-sim-td-lte-ca-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4615, + "slug": "sm-s901w-galaxy-s22-5g-dual-sim-td-lte-ca-256gb", + "name": "SM-S901W Galaxy S22 5G Dual SIM TD-LTE CA 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 1170, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.06, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 425 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": 30.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.755203", + "updated_at": "2026-06-19T00:43:44.755203" +} diff --git a/site/public/v1/smartphones/sm-s901w-galaxy-s22-5g-dual-sim-td-lte-ca-256gb/score/index.json b/site/public/v1/smartphones/sm-s901w-galaxy-s22-5g-dual-sim-td-lte-ca-256gb/score/index.json new file mode 100644 index 00000000000..e67f298a59a --- /dev/null +++ b/site/public/v1/smartphones/sm-s901w-galaxy-s22-5g-dual-sim-td-lte-ca-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 10.9, + "camera": 17.2, + "battery": 27.4, + "display": 55.0, + "value": 30.4 +} diff --git a/site/public/v1/smartphones/sm-s9060-galaxy-s22-5g-uw-dual-sim-td-lte-cn-hk-tw-128gb/index.json b/site/public/v1/smartphones/sm-s9060-galaxy-s22-5g-uw-dual-sim-td-lte-cn-hk-tw-128gb/index.json new file mode 100644 index 00000000000..f7e1da4bc71 --- /dev/null +++ b/site/public/v1/smartphones/sm-s9060-galaxy-s22-5g-uw-dual-sim-td-lte-cn-hk-tw-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4616, + "slug": "sm-s9060-galaxy-s22-5g-uw-dual-sim-td-lte-cn-hk-tw-128gb", + "name": "SM-S9060 Galaxy S22+ 5G UW Dual SIM TD-LTE CN HK TW 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 10.9, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.755203", + "updated_at": "2026-06-19T00:43:44.755203" +} diff --git a/site/public/v1/smartphones/sm-s9060-galaxy-s22-5g-uw-dual-sim-td-lte-cn-hk-tw-128gb/score/index.json b/site/public/v1/smartphones/sm-s9060-galaxy-s22-5g-uw-dual-sim-td-lte-cn-hk-tw-128gb/score/index.json new file mode 100644 index 00000000000..ced07fe8594 --- /dev/null +++ b/site/public/v1/smartphones/sm-s9060-galaxy-s22-5g-uw-dual-sim-td-lte-cn-hk-tw-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 10.9, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-s9060-galaxy-s22-5g-uw-dual-sim-td-lte-cn-hk-tw-256gb/index.json b/site/public/v1/smartphones/sm-s9060-galaxy-s22-5g-uw-dual-sim-td-lte-cn-hk-tw-256gb/index.json new file mode 100644 index 00000000000..9250e49a70c --- /dev/null +++ b/site/public/v1/smartphones/sm-s9060-galaxy-s22-5g-uw-dual-sim-td-lte-cn-hk-tw-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4617, + "slug": "sm-s9060-galaxy-s22-5g-uw-dual-sim-td-lte-cn-hk-tw-256gb", + "name": "SM-S9060 Galaxy S22+ 5G UW Dual SIM TD-LTE CN HK TW 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 10.9, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.755203", + "updated_at": "2026-06-19T00:43:44.755203" +} diff --git a/site/public/v1/smartphones/sm-s9060-galaxy-s22-5g-uw-dual-sim-td-lte-cn-hk-tw-256gb/score/index.json b/site/public/v1/smartphones/sm-s9060-galaxy-s22-5g-uw-dual-sim-td-lte-cn-hk-tw-256gb/score/index.json new file mode 100644 index 00000000000..ced07fe8594 --- /dev/null +++ b/site/public/v1/smartphones/sm-s9060-galaxy-s22-5g-uw-dual-sim-td-lte-cn-hk-tw-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 10.9, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-s906b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-128gb/index.json b/site/public/v1/smartphones/sm-s906b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-128gb/index.json new file mode 100644 index 00000000000..52dd55da810 --- /dev/null +++ b/site/public/v1/smartphones/sm-s906b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4618, + "slug": "sm-s906b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-128gb", + "name": "SM-S906B/DS Galaxy S22+ 5G Dual SIM TD-LTE EU 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 202, + "slug": "exynos-2200", + "name": "Samsung Exynos 2200", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 4.0, + "gpu_name": "Xclipse 920", + "url": "/v1/socs/exynos-2200" + }, + "release_date": "2022-02-26", + "msrp_usd": 1059, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.2, + "performance": 13.0, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": 37.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.755203", + "updated_at": "2026-06-19T00:43:44.755203" +} diff --git a/site/public/v1/smartphones/sm-s906b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-128gb/score/index.json b/site/public/v1/smartphones/sm-s906b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-128gb/score/index.json new file mode 100644 index 00000000000..c406afc7ff0 --- /dev/null +++ b/site/public/v1/smartphones/sm-s906b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.2, + "performance": 13.0, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": 37.4 +} diff --git a/site/public/v1/smartphones/sm-s906b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-256gb/index.json b/site/public/v1/smartphones/sm-s906b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-256gb/index.json new file mode 100644 index 00000000000..805b435edae --- /dev/null +++ b/site/public/v1/smartphones/sm-s906b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4619, + "slug": "sm-s906b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-256gb", + "name": "SM-S906B/DS Galaxy S22+ 5G Dual SIM TD-LTE EU 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 202, + "slug": "exynos-2200", + "name": "Samsung Exynos 2200", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 4.0, + "gpu_name": "Xclipse 920", + "url": "/v1/socs/exynos-2200" + }, + "release_date": "2022-02-26", + "msrp_usd": 1099, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.2, + "performance": 13.0, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": 35.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.755203", + "updated_at": "2026-06-19T00:43:44.755203" +} diff --git a/site/public/v1/smartphones/sm-s906b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-256gb/score/index.json b/site/public/v1/smartphones/sm-s906b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-256gb/score/index.json new file mode 100644 index 00000000000..4b1709054f6 --- /dev/null +++ b/site/public/v1/smartphones/sm-s906b-ds-galaxy-s22-5g-dual-sim-td-lte-eu-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.2, + "performance": 13.0, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": 35.9 +} diff --git a/site/public/v1/smartphones/sm-s906e-ds-galaxy-s22-5g-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/sm-s906e-ds-galaxy-s22-5g-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..4c71adda0ab --- /dev/null +++ b/site/public/v1/smartphones/sm-s906e-ds-galaxy-s22-5g-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4620, + "slug": "sm-s906e-ds-galaxy-s22-5g-global-dual-sim-td-lte-128gb", + "name": "SM-S906E/DS Galaxy S22+ 5G Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 10.9, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.755203", + "updated_at": "2026-06-19T00:43:44.755203" +} diff --git a/site/public/v1/smartphones/sm-s906e-ds-galaxy-s22-5g-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/sm-s906e-ds-galaxy-s22-5g-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..ced07fe8594 --- /dev/null +++ b/site/public/v1/smartphones/sm-s906e-ds-galaxy-s22-5g-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 10.9, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-s906e-ds-galaxy-s22-5g-global-dual-sim-td-lte-256gb/index.json b/site/public/v1/smartphones/sm-s906e-ds-galaxy-s22-5g-global-dual-sim-td-lte-256gb/index.json new file mode 100644 index 00000000000..956fe19cf02 --- /dev/null +++ b/site/public/v1/smartphones/sm-s906e-ds-galaxy-s22-5g-global-dual-sim-td-lte-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4621, + "slug": "sm-s906e-ds-galaxy-s22-5g-global-dual-sim-td-lte-256gb", + "name": "SM-S906E/DS Galaxy S22+ 5G Global Dual SIM TD-LTE 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 10.9, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.755203", + "updated_at": "2026-06-19T00:43:44.755203" +} diff --git a/site/public/v1/smartphones/sm-s906e-ds-galaxy-s22-5g-global-dual-sim-td-lte-256gb/score/index.json b/site/public/v1/smartphones/sm-s906e-ds-galaxy-s22-5g-global-dual-sim-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..ced07fe8594 --- /dev/null +++ b/site/public/v1/smartphones/sm-s906e-ds-galaxy-s22-5g-global-dual-sim-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 10.9, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-s906n-galaxy-s22-5g-uw-td-lte-kr-256gb/index.json b/site/public/v1/smartphones/sm-s906n-galaxy-s22-5g-uw-td-lte-kr-256gb/index.json new file mode 100644 index 00000000000..706f21f29f7 --- /dev/null +++ b/site/public/v1/smartphones/sm-s906n-galaxy-s22-5g-uw-td-lte-kr-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4622, + "slug": "sm-s906n-galaxy-s22-5g-uw-td-lte-kr-256gb", + "name": "SM-S906N Galaxy S22+ 5G UW TD-LTE KR 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-14", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 195.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 10.9, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.755203", + "updated_at": "2026-06-19T00:43:44.755203" +} diff --git a/site/public/v1/smartphones/sm-s906n-galaxy-s22-5g-uw-td-lte-kr-256gb/score/index.json b/site/public/v1/smartphones/sm-s906n-galaxy-s22-5g-uw-td-lte-kr-256gb/score/index.json new file mode 100644 index 00000000000..ced07fe8594 --- /dev/null +++ b/site/public/v1/smartphones/sm-s906n-galaxy-s22-5g-uw-td-lte-kr-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 10.9, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": null +} diff --git a/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906a/index.json b/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906a/index.json new file mode 100644 index 00000000000..9cd4c1e2a40 --- /dev/null +++ b/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906a/index.json @@ -0,0 +1,77 @@ +{ + "id": 4623, + "slug": "sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906a", + "name": "SM-S906U Galaxy S22+ 5G UW Dual SIM TD-LTE US 128GB / SM-S906A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 1000, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 10.9, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": 39.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.756203", + "updated_at": "2026-06-19T00:43:44.756203" +} diff --git a/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906a/score/index.json b/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906a/score/index.json new file mode 100644 index 00000000000..06e977d521c --- /dev/null +++ b/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 10.9, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": 39.4 +} diff --git a/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906r4/index.json b/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906r4/index.json new file mode 100644 index 00000000000..58c3d7d2f78 --- /dev/null +++ b/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906r4/index.json @@ -0,0 +1,77 @@ +{ + "id": 4624, + "slug": "sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906r4", + "name": "SM-S906U Galaxy S22+ 5G UW Dual SIM TD-LTE US 128GB / SM-S906R4", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 1000, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 10.9, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": 39.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.756203", + "updated_at": "2026-06-19T00:43:44.756203" +} diff --git a/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906r4/score/index.json b/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906r4/score/index.json new file mode 100644 index 00000000000..06e977d521c --- /dev/null +++ b/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906r4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 10.9, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": 39.4 +} diff --git a/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906t/index.json b/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906t/index.json new file mode 100644 index 00000000000..33bd4e90778 --- /dev/null +++ b/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906t/index.json @@ -0,0 +1,77 @@ +{ + "id": 4625, + "slug": "sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906t", + "name": "SM-S906U Galaxy S22+ 5G UW Dual SIM TD-LTE US 128GB / SM-S906T", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 1000, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 10.9, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": 39.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.756203", + "updated_at": "2026-06-19T00:43:44.756203" +} diff --git a/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906t/score/index.json b/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906t/score/index.json new file mode 100644 index 00000000000..06e977d521c --- /dev/null +++ b/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 10.9, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": 39.4 +} diff --git a/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906v/index.json b/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906v/index.json new file mode 100644 index 00000000000..2c5967512f8 --- /dev/null +++ b/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906v/index.json @@ -0,0 +1,77 @@ +{ + "id": 4626, + "slug": "sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906v", + "name": "SM-S906U Galaxy S22+ 5G UW Dual SIM TD-LTE US 128GB / SM-S906V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 1000, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 10.9, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": 39.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.756203", + "updated_at": "2026-06-19T00:43:44.756203" +} diff --git a/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906v/score/index.json b/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906v/score/index.json new file mode 100644 index 00000000000..06e977d521c --- /dev/null +++ b/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb-sm-s906v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 10.9, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": 39.4 +} diff --git a/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906a/index.json b/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906a/index.json new file mode 100644 index 00000000000..b7d259343b0 --- /dev/null +++ b/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906a/index.json @@ -0,0 +1,77 @@ +{ + "id": 4627, + "slug": "sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906a", + "name": "SM-S906U Galaxy S22+ 5G UW Dual SIM TD-LTE US 256GB / SM-S906A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 1050, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 10.9, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": 37.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.756203", + "updated_at": "2026-06-19T00:43:44.756203" +} diff --git a/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906a/score/index.json b/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906a/score/index.json new file mode 100644 index 00000000000..15982d321b1 --- /dev/null +++ b/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 10.9, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": 37.5 +} diff --git a/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906r4/index.json b/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906r4/index.json new file mode 100644 index 00000000000..a682d85e214 --- /dev/null +++ b/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906r4/index.json @@ -0,0 +1,77 @@ +{ + "id": 4628, + "slug": "sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906r4", + "name": "SM-S906U Galaxy S22+ 5G UW Dual SIM TD-LTE US 256GB / SM-S906R4", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 1050, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 10.9, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": 37.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.756203", + "updated_at": "2026-06-19T00:43:44.756203" +} diff --git a/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906r4/score/index.json b/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906r4/score/index.json new file mode 100644 index 00000000000..15982d321b1 --- /dev/null +++ b/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906r4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 10.9, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": 37.5 +} diff --git a/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906t/index.json b/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906t/index.json new file mode 100644 index 00000000000..c55c8c391f1 --- /dev/null +++ b/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906t/index.json @@ -0,0 +1,77 @@ +{ + "id": 4629, + "slug": "sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906t", + "name": "SM-S906U Galaxy S22+ 5G UW Dual SIM TD-LTE US 256GB / SM-S906T", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 1050, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 10.9, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": 37.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.756203", + "updated_at": "2026-06-19T00:43:44.756203" +} diff --git a/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906t/score/index.json b/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906t/score/index.json new file mode 100644 index 00000000000..15982d321b1 --- /dev/null +++ b/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 10.9, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": 37.5 +} diff --git a/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906v/index.json b/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906v/index.json new file mode 100644 index 00000000000..e170e1a143c --- /dev/null +++ b/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906v/index.json @@ -0,0 +1,77 @@ +{ + "id": 4630, + "slug": "sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906v", + "name": "SM-S906U Galaxy S22+ 5G UW Dual SIM TD-LTE US 256GB / SM-S906V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 1050, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 10.9, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": 37.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.756203", + "updated_at": "2026-06-19T00:43:44.756203" +} diff --git a/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906v/score/index.json b/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906v/score/index.json new file mode 100644 index 00000000000..15982d321b1 --- /dev/null +++ b/site/public/v1/smartphones/sm-s906u-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb-sm-s906v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 10.9, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": 37.5 +} diff --git a/site/public/v1/smartphones/sm-s906u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb/index.json b/site/public/v1/smartphones/sm-s906u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..0eaedb34712 --- /dev/null +++ b/site/public/v1/smartphones/sm-s906u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4631, + "slug": "sm-s906u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb", + "name": "SM-S906U1 Galaxy S22+ 5G UW Dual SIM TD-LTE US 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 1000, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 10.9, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": 39.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.757204", + "updated_at": "2026-06-19T00:43:44.757204" +} diff --git a/site/public/v1/smartphones/sm-s906u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/sm-s906u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..06e977d521c --- /dev/null +++ b/site/public/v1/smartphones/sm-s906u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 10.9, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": 39.4 +} diff --git a/site/public/v1/smartphones/sm-s906u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb/index.json b/site/public/v1/smartphones/sm-s906u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb/index.json new file mode 100644 index 00000000000..38d059fbbdb --- /dev/null +++ b/site/public/v1/smartphones/sm-s906u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4632, + "slug": "sm-s906u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb", + "name": "SM-S906U1 Galaxy S22+ 5G UW Dual SIM TD-LTE US 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 1050, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 10.9, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": 37.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.757204", + "updated_at": "2026-06-19T00:43:44.757204" +} diff --git a/site/public/v1/smartphones/sm-s906u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb/score/index.json b/site/public/v1/smartphones/sm-s906u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb/score/index.json new file mode 100644 index 00000000000..15982d321b1 --- /dev/null +++ b/site/public/v1/smartphones/sm-s906u1-galaxy-s22-5g-uw-dual-sim-td-lte-us-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 10.9, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": 37.5 +} diff --git a/site/public/v1/smartphones/sm-s906w-galaxy-s22-5g-dual-sim-td-lte-ca-128gb/index.json b/site/public/v1/smartphones/sm-s906w-galaxy-s22-5g-dual-sim-td-lte-ca-128gb/index.json new file mode 100644 index 00000000000..d0d6a5574d3 --- /dev/null +++ b/site/public/v1/smartphones/sm-s906w-galaxy-s22-5g-dual-sim-td-lte-ca-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4633, + "slug": "sm-s906w-galaxy-s22-5g-dual-sim-td-lte-ca-128gb", + "name": "SM-S906W Galaxy S22+ 5G Dual SIM TD-LTE CA 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 1400, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 10.9, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": 24.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.757204", + "updated_at": "2026-06-19T00:43:44.757204" +} diff --git a/site/public/v1/smartphones/sm-s906w-galaxy-s22-5g-dual-sim-td-lte-ca-128gb/score/index.json b/site/public/v1/smartphones/sm-s906w-galaxy-s22-5g-dual-sim-td-lte-ca-128gb/score/index.json new file mode 100644 index 00000000000..d29ad3c46da --- /dev/null +++ b/site/public/v1/smartphones/sm-s906w-galaxy-s22-5g-dual-sim-td-lte-ca-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 10.9, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": 24.0 +} diff --git a/site/public/v1/smartphones/sm-s906w-galaxy-s22-5g-dual-sim-td-lte-ca-256gb/index.json b/site/public/v1/smartphones/sm-s906w-galaxy-s22-5g-dual-sim-td-lte-ca-256gb/index.json new file mode 100644 index 00000000000..6de37d99b77 --- /dev/null +++ b/site/public/v1/smartphones/sm-s906w-galaxy-s22-5g-dual-sim-td-lte-ca-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4634, + "slug": "sm-s906w-galaxy-s22-5g-dual-sim-td-lte-ca-256gb", + "name": "SM-S906W Galaxy S22+ 5G Dual SIM TD-LTE CA 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 1470, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 393 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 10.9, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": 21.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.757204", + "updated_at": "2026-06-19T00:43:44.757204" +} diff --git a/site/public/v1/smartphones/sm-s906w-galaxy-s22-5g-dual-sim-td-lte-ca-256gb/score/index.json b/site/public/v1/smartphones/sm-s906w-galaxy-s22-5g-dual-sim-td-lte-ca-256gb/score/index.json new file mode 100644 index 00000000000..54206aceda3 --- /dev/null +++ b/site/public/v1/smartphones/sm-s906w-galaxy-s22-5g-dual-sim-td-lte-ca-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.6, + "performance": 10.9, + "camera": 17.2, + "battery": 50.7, + "display": 51.8, + "value": 21.3 +} diff --git a/site/public/v1/smartphones/sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-1tb/index.json b/site/public/v1/smartphones/sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-1tb/index.json new file mode 100644 index 00000000000..d6dc6483ac4 --- /dev/null +++ b/site/public/v1/smartphones/sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-1tb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4635, + "slug": "sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-1tb", + "name": "SM-S9080 Galaxy S22 Ultra 5G UW Dual SIM TD-LTE CN HK TW 1TB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-24", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 228.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.757204", + "updated_at": "2026-06-19T00:43:44.757204" +} diff --git a/site/public/v1/smartphones/sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-1tb/score/index.json b/site/public/v1/smartphones/sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-1tb/score/index.json new file mode 100644 index 00000000000..3758c341051 --- /dev/null +++ b/site/public/v1/smartphones/sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-1tb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": null +} diff --git a/site/public/v1/smartphones/sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-256gb/index.json b/site/public/v1/smartphones/sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-256gb/index.json new file mode 100644 index 00000000000..1e16fc62ccc --- /dev/null +++ b/site/public/v1/smartphones/sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4636, + "slug": "sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-256gb", + "name": "SM-S9080 Galaxy S22 Ultra 5G UW Dual SIM TD-LTE CN HK TW 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-24", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 228.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.757204", + "updated_at": "2026-06-19T00:43:44.757204" +} diff --git a/site/public/v1/smartphones/sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-256gb/score/index.json b/site/public/v1/smartphones/sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-256gb/score/index.json new file mode 100644 index 00000000000..3758c341051 --- /dev/null +++ b/site/public/v1/smartphones/sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": null +} diff --git a/site/public/v1/smartphones/sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-512gb/index.json b/site/public/v1/smartphones/sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-512gb/index.json new file mode 100644 index 00000000000..afb5ae07568 --- /dev/null +++ b/site/public/v1/smartphones/sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4637, + "slug": "sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-512gb", + "name": "SM-S9080 Galaxy S22 Ultra 5G UW Dual SIM TD-LTE CN HK TW 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-24", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 228.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.757204", + "updated_at": "2026-06-19T00:43:44.757204" +} diff --git a/site/public/v1/smartphones/sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-512gb/score/index.json b/site/public/v1/smartphones/sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-512gb/score/index.json new file mode 100644 index 00000000000..3758c341051 --- /dev/null +++ b/site/public/v1/smartphones/sm-s9080-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-cn-hk-tw-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": null +} diff --git a/site/public/v1/smartphones/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-128gb/index.json b/site/public/v1/smartphones/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-128gb/index.json new file mode 100644 index 00000000000..25d92346f0b --- /dev/null +++ b/site/public/v1/smartphones/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4638, + "slug": "sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-128gb", + "name": "SM-S908B/DS Galaxy S22 Ultra 5G Dual SIM TD-LTE EU 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 202, + "slug": "exynos-2200", + "name": "Samsung Exynos 2200", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 4.0, + "gpu_name": "Xclipse 920", + "url": "/v1/socs/exynos-2200" + }, + "release_date": "2022-02-26", + "msrp_usd": 1259, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 228.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.5, + "performance": 13.0, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 33.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.757204", + "updated_at": "2026-06-19T00:43:44.757204" +} diff --git a/site/public/v1/smartphones/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-128gb/score/index.json b/site/public/v1/smartphones/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-128gb/score/index.json new file mode 100644 index 00000000000..fc208fa5689 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.5, + "performance": 13.0, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 33.4 +} diff --git a/site/public/v1/smartphones/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-1tb/index.json b/site/public/v1/smartphones/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-1tb/index.json new file mode 100644 index 00000000000..85db2850fb2 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-1tb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4639, + "slug": "sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-1tb", + "name": "SM-S908B/DS Galaxy S22 Ultra 5G Dual SIM TD-LTE EU 1TB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 202, + "slug": "exynos-2200", + "name": "Samsung Exynos 2200", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 4.0, + "gpu_name": "Xclipse 920", + "url": "/v1/socs/exynos-2200" + }, + "release_date": "2022-02-26", + "msrp_usd": 1659, + "ram_gb": 12, + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 228.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 41.2, + "performance": 16.0, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 20.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.757204", + "updated_at": "2026-06-19T00:43:44.757204" +} diff --git a/site/public/v1/smartphones/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-1tb/score/index.json b/site/public/v1/smartphones/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-1tb/score/index.json new file mode 100644 index 00000000000..419bb9fbd2f --- /dev/null +++ b/site/public/v1/smartphones/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-1tb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 41.2, + "performance": 16.0, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 20.6 +} diff --git a/site/public/v1/smartphones/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-256gb/index.json b/site/public/v1/smartphones/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-256gb/index.json new file mode 100644 index 00000000000..efe88722e6e --- /dev/null +++ b/site/public/v1/smartphones/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4640, + "slug": "sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-256gb", + "name": "SM-S908B/DS Galaxy S22 Ultra 5G Dual SIM TD-LTE EU 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 202, + "slug": "exynos-2200", + "name": "Samsung Exynos 2200", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 4.0, + "gpu_name": "Xclipse 920", + "url": "/v1/socs/exynos-2200" + }, + "release_date": "2022-02-26", + "msrp_usd": 1359, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 228.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 41.2, + "performance": 16.0, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 29.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.758207", + "updated_at": "2026-06-19T00:43:44.758207" +} diff --git a/site/public/v1/smartphones/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-256gb/score/index.json b/site/public/v1/smartphones/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-256gb/score/index.json new file mode 100644 index 00000000000..81524d3b041 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 41.2, + "performance": 16.0, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 29.9 +} diff --git a/site/public/v1/smartphones/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-512gb/index.json b/site/public/v1/smartphones/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-512gb/index.json new file mode 100644 index 00000000000..11ba508082d --- /dev/null +++ b/site/public/v1/smartphones/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4641, + "slug": "sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-512gb", + "name": "SM-S908B/DS Galaxy S22 Ultra 5G Dual SIM TD-LTE EU 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 202, + "slug": "exynos-2200", + "name": "Samsung Exynos 2200", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 4.0, + "gpu_name": "Xclipse 920", + "url": "/v1/socs/exynos-2200" + }, + "release_date": "2022-02-26", + "msrp_usd": 1459, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 228.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 41.2, + "performance": 16.0, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 26.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.758207", + "updated_at": "2026-06-19T00:43:44.758207" +} diff --git a/site/public/v1/smartphones/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-512gb/score/index.json b/site/public/v1/smartphones/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-512gb/score/index.json new file mode 100644 index 00000000000..ded7eed1c28 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908b-ds-galaxy-s22-ultra-5g-dual-sim-td-lte-eu-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 41.2, + "performance": 16.0, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 26.0 +} diff --git a/site/public/v1/smartphones/sm-s908d-galaxy-s22-ultra-5g-uw-td-lte-jp-256gb-sc-52c/index.json b/site/public/v1/smartphones/sm-s908d-galaxy-s22-ultra-5g-uw-td-lte-jp-256gb-sc-52c/index.json new file mode 100644 index 00000000000..88e317d5ba9 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908d-galaxy-s22-ultra-5g-uw-td-lte-jp-256gb-sc-52c/index.json @@ -0,0 +1,77 @@ +{ + "id": 4642, + "slug": "sm-s908d-galaxy-s22-ultra-5g-uw-td-lte-jp-256gb-sc-52c", + "name": "SM-S908D Galaxy S22 Ultra 5G UW TD-LTE JP 256GB SC-52C", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-04-21", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 229.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.758207", + "updated_at": "2026-06-19T00:43:44.758207" +} diff --git a/site/public/v1/smartphones/sm-s908d-galaxy-s22-ultra-5g-uw-td-lte-jp-256gb-sc-52c/score/index.json b/site/public/v1/smartphones/sm-s908d-galaxy-s22-ultra-5g-uw-td-lte-jp-256gb-sc-52c/score/index.json new file mode 100644 index 00000000000..3758c341051 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908d-galaxy-s22-ultra-5g-uw-td-lte-jp-256gb-sc-52c/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": null +} diff --git a/site/public/v1/smartphones/sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-1tb/index.json b/site/public/v1/smartphones/sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-1tb/index.json new file mode 100644 index 00000000000..53fc020acbb --- /dev/null +++ b/site/public/v1/smartphones/sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-1tb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4643, + "slug": "sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-1tb", + "name": "SM-S908E/DS Galaxy S22 Ultra 5G Global Dual SIM TD-LTE 1TB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 228.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.758207", + "updated_at": "2026-06-19T00:43:44.758207" +} diff --git a/site/public/v1/smartphones/sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-1tb/score/index.json b/site/public/v1/smartphones/sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-1tb/score/index.json new file mode 100644 index 00000000000..3758c341051 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-1tb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": null +} diff --git a/site/public/v1/smartphones/sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-256gb/index.json b/site/public/v1/smartphones/sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-256gb/index.json new file mode 100644 index 00000000000..80fdbd826c0 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4644, + "slug": "sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-256gb", + "name": "SM-S908E/DS Galaxy S22 Ultra 5G Global Dual SIM TD-LTE 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 228.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.758207", + "updated_at": "2026-06-19T00:43:44.758207" +} diff --git a/site/public/v1/smartphones/sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-256gb/score/index.json b/site/public/v1/smartphones/sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..3758c341051 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": null +} diff --git a/site/public/v1/smartphones/sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-512gb/index.json b/site/public/v1/smartphones/sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-512gb/index.json new file mode 100644 index 00000000000..e3a5cae4ec8 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4645, + "slug": "sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-512gb", + "name": "SM-S908E/DS Galaxy S22 Ultra 5G Global Dual SIM TD-LTE 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 228.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.758207", + "updated_at": "2026-06-19T00:43:44.758207" +} diff --git a/site/public/v1/smartphones/sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-512gb/score/index.json b/site/public/v1/smartphones/sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-512gb/score/index.json new file mode 100644 index 00000000000..3758c341051 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908e-ds-galaxy-s22-ultra-5g-global-dual-sim-td-lte-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": null +} diff --git a/site/public/v1/smartphones/sm-s908j-galaxy-s22-ultra-5g-uw-td-lte-jp-256gb-scg14/index.json b/site/public/v1/smartphones/sm-s908j-galaxy-s22-ultra-5g-uw-td-lte-jp-256gb-scg14/index.json new file mode 100644 index 00000000000..ad42f1a0447 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908j-galaxy-s22-ultra-5g-uw-td-lte-jp-256gb-scg14/index.json @@ -0,0 +1,77 @@ +{ + "id": 4646, + "slug": "sm-s908j-galaxy-s22-ultra-5g-uw-td-lte-jp-256gb-scg14", + "name": "SM-S908J Galaxy S22 Ultra 5G UW TD-LTE JP 256GB SCG14", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-04-21", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 229.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.758207", + "updated_at": "2026-06-19T00:43:44.758207" +} diff --git a/site/public/v1/smartphones/sm-s908j-galaxy-s22-ultra-5g-uw-td-lte-jp-256gb-scg14/score/index.json b/site/public/v1/smartphones/sm-s908j-galaxy-s22-ultra-5g-uw-td-lte-jp-256gb-scg14/score/index.json new file mode 100644 index 00000000000..3758c341051 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908j-galaxy-s22-ultra-5g-uw-td-lte-jp-256gb-scg14/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": null +} diff --git a/site/public/v1/smartphones/sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-1tb/index.json b/site/public/v1/smartphones/sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-1tb/index.json new file mode 100644 index 00000000000..e16a81338e5 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-1tb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4647, + "slug": "sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-1tb", + "name": "SM-S908N Galaxy S22 Ultra 5G UW TD-LTE KR 1TB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-14", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 228.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.758207", + "updated_at": "2026-06-19T00:43:44.758207" +} diff --git a/site/public/v1/smartphones/sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-1tb/score/index.json b/site/public/v1/smartphones/sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-1tb/score/index.json new file mode 100644 index 00000000000..3758c341051 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-1tb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": null +} diff --git a/site/public/v1/smartphones/sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-256gb/index.json b/site/public/v1/smartphones/sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-256gb/index.json new file mode 100644 index 00000000000..246ea905aff --- /dev/null +++ b/site/public/v1/smartphones/sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4648, + "slug": "sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-256gb", + "name": "SM-S908N Galaxy S22 Ultra 5G UW TD-LTE KR 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-14", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 228.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.758207", + "updated_at": "2026-06-19T00:43:44.758207" +} diff --git a/site/public/v1/smartphones/sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-256gb/score/index.json b/site/public/v1/smartphones/sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-256gb/score/index.json new file mode 100644 index 00000000000..3758c341051 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": null +} diff --git a/site/public/v1/smartphones/sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-512gb/index.json b/site/public/v1/smartphones/sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-512gb/index.json new file mode 100644 index 00000000000..51686b2fcdc --- /dev/null +++ b/site/public/v1/smartphones/sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4649, + "slug": "sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-512gb", + "name": "SM-S908N Galaxy S22 Ultra 5G UW TD-LTE KR 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-14", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 228.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.758207", + "updated_at": "2026-06-19T00:43:44.758207" +} diff --git a/site/public/v1/smartphones/sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-512gb/score/index.json b/site/public/v1/smartphones/sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-512gb/score/index.json new file mode 100644 index 00000000000..3758c341051 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908n-galaxy-s22-ultra-5g-uw-td-lte-kr-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": null +} diff --git a/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908a/index.json b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908a/index.json new file mode 100644 index 00000000000..0c9b1dadcca --- /dev/null +++ b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908a/index.json @@ -0,0 +1,77 @@ +{ + "id": 4650, + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908a", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 128GB / SM-S908A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 1200, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 229.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.0, + "performance": 10.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 35.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.759207", + "updated_at": "2026-06-19T00:43:44.759207" +} diff --git a/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908a/score/index.json b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908a/score/index.json new file mode 100644 index 00000000000..f8e4cbcc36d --- /dev/null +++ b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.0, + "performance": 10.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 35.4 +} diff --git a/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908r4/index.json b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908r4/index.json new file mode 100644 index 00000000000..eb2520af460 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908r4/index.json @@ -0,0 +1,77 @@ +{ + "id": 4651, + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908r4", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 128GB / SM-S908R4", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 1200, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 229.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.0, + "performance": 10.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 35.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.759207", + "updated_at": "2026-06-19T00:43:44.759207" +} diff --git a/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908r4/score/index.json b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908r4/score/index.json new file mode 100644 index 00000000000..f8e4cbcc36d --- /dev/null +++ b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908r4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.0, + "performance": 10.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 35.4 +} diff --git a/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908t/index.json b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908t/index.json new file mode 100644 index 00000000000..bb4079c10f8 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908t/index.json @@ -0,0 +1,77 @@ +{ + "id": 4652, + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908t", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 128GB / SM-S908T", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 1200, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 229.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.0, + "performance": 10.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 35.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.759207", + "updated_at": "2026-06-19T00:43:44.759207" +} diff --git a/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908t/score/index.json b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908t/score/index.json new file mode 100644 index 00000000000..f8e4cbcc36d --- /dev/null +++ b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.0, + "performance": 10.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 35.4 +} diff --git a/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908v/index.json b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908v/index.json new file mode 100644 index 00000000000..219bec7585a --- /dev/null +++ b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908v/index.json @@ -0,0 +1,77 @@ +{ + "id": 4653, + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908v", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 128GB / SM-S908V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 1200, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 229.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.0, + "performance": 10.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 35.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.759207", + "updated_at": "2026-06-19T00:43:44.759207" +} diff --git a/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908v/score/index.json b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908v/score/index.json new file mode 100644 index 00000000000..f8e4cbcc36d --- /dev/null +++ b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb-sm-s908v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.0, + "performance": 10.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 35.4 +} diff --git a/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908a/index.json b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908a/index.json new file mode 100644 index 00000000000..7b95962a9a2 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908a/index.json @@ -0,0 +1,77 @@ +{ + "id": 4654, + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908a", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 256GB / SM-S908A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 1300, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 229.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 31.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.759207", + "updated_at": "2026-06-19T00:43:44.759207" +} diff --git a/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908a/score/index.json b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908a/score/index.json new file mode 100644 index 00000000000..7cb6b0a58aa --- /dev/null +++ b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 31.9 +} diff --git a/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908r4/index.json b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908r4/index.json new file mode 100644 index 00000000000..975892102cb --- /dev/null +++ b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908r4/index.json @@ -0,0 +1,77 @@ +{ + "id": 4655, + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908r4", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 256GB / SM-S908R4", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 1300, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 229.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 31.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.759207", + "updated_at": "2026-06-19T00:43:44.759207" +} diff --git a/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908r4/score/index.json b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908r4/score/index.json new file mode 100644 index 00000000000..7cb6b0a58aa --- /dev/null +++ b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908r4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 31.9 +} diff --git a/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908t/index.json b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908t/index.json new file mode 100644 index 00000000000..aa63aca2c36 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908t/index.json @@ -0,0 +1,77 @@ +{ + "id": 4656, + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908t", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 256GB / SM-S908T", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 1300, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 229.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 31.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.759207", + "updated_at": "2026-06-19T00:43:44.759207" +} diff --git a/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908t/score/index.json b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908t/score/index.json new file mode 100644 index 00000000000..7cb6b0a58aa --- /dev/null +++ b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 31.9 +} diff --git a/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908v/index.json b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908v/index.json new file mode 100644 index 00000000000..891cb604b01 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908v/index.json @@ -0,0 +1,77 @@ +{ + "id": 4657, + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908v", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 256GB / SM-S908V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 1300, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 229.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 31.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.759207", + "updated_at": "2026-06-19T00:43:44.759207" +} diff --git a/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908v/score/index.json b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908v/score/index.json new file mode 100644 index 00000000000..7cb6b0a58aa --- /dev/null +++ b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb-sm-s908v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 31.9 +} diff --git a/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908a/index.json b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908a/index.json new file mode 100644 index 00000000000..50f25867d79 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908a/index.json @@ -0,0 +1,77 @@ +{ + "id": 4658, + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908a", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 512GB / SM-S908A", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 1400, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 229.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 28.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.760208", + "updated_at": "2026-06-19T00:43:44.760208" +} diff --git a/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908a/score/index.json b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908a/score/index.json new file mode 100644 index 00000000000..a31db11c588 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 28.1 +} diff --git a/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908r4/index.json b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908r4/index.json new file mode 100644 index 00000000000..5f0c4914aa6 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908r4/index.json @@ -0,0 +1,77 @@ +{ + "id": 4659, + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908r4", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 512GB / SM-S908R4", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 1400, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 229.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 28.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.760208", + "updated_at": "2026-06-19T00:43:44.760208" +} diff --git a/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908r4/score/index.json b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908r4/score/index.json new file mode 100644 index 00000000000..a31db11c588 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908r4/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 28.1 +} diff --git a/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908t/index.json b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908t/index.json new file mode 100644 index 00000000000..359b883755b --- /dev/null +++ b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908t/index.json @@ -0,0 +1,77 @@ +{ + "id": 4660, + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908t", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 512GB / SM-S908T", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 1400, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 229.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 28.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.760208", + "updated_at": "2026-06-19T00:43:44.760208" +} diff --git a/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908t/score/index.json b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908t/score/index.json new file mode 100644 index 00000000000..a31db11c588 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 28.1 +} diff --git a/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908v/index.json b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908v/index.json new file mode 100644 index 00000000000..62db142f948 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908v/index.json @@ -0,0 +1,77 @@ +{ + "id": 4661, + "slug": "sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908v", + "name": "SM-S908U Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 512GB / SM-S908V", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 1400, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 229.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 28.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.760208", + "updated_at": "2026-06-19T00:43:44.760208" +} diff --git a/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908v/score/index.json b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908v/score/index.json new file mode 100644 index 00000000000..a31db11c588 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908u-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb-sm-s908v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 28.1 +} diff --git a/site/public/v1/smartphones/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb/index.json b/site/public/v1/smartphones/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..ccb6aa9893d --- /dev/null +++ b/site/public/v1/smartphones/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4662, + "slug": "sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb", + "name": "SM-S908U1 Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 1200, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 229.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.0, + "performance": 10.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 35.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.760208", + "updated_at": "2026-06-19T00:43:44.760208" +} diff --git a/site/public/v1/smartphones/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..f8e4cbcc36d --- /dev/null +++ b/site/public/v1/smartphones/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.0, + "performance": 10.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 35.4 +} diff --git a/site/public/v1/smartphones/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-1tb/index.json b/site/public/v1/smartphones/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-1tb/index.json new file mode 100644 index 00000000000..75ede609c26 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-1tb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4663, + "slug": "sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-1tb", + "name": "SM-S908U1 Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 1TB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 1600, + "ram_gb": 12, + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 229.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 20.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.760208", + "updated_at": "2026-06-19T00:43:44.760208" +} diff --git a/site/public/v1/smartphones/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-1tb/score/index.json b/site/public/v1/smartphones/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-1tb/score/index.json new file mode 100644 index 00000000000..8d61c50da16 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-1tb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 20.4 +} diff --git a/site/public/v1/smartphones/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb/index.json b/site/public/v1/smartphones/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb/index.json new file mode 100644 index 00000000000..3fd74b8620b --- /dev/null +++ b/site/public/v1/smartphones/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4664, + "slug": "sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb", + "name": "SM-S908U1 Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 1300, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 229.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 31.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.760208", + "updated_at": "2026-06-19T00:43:44.760208" +} diff --git a/site/public/v1/smartphones/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb/score/index.json b/site/public/v1/smartphones/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb/score/index.json new file mode 100644 index 00000000000..7cb6b0a58aa --- /dev/null +++ b/site/public/v1/smartphones/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 31.9 +} diff --git a/site/public/v1/smartphones/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb/index.json b/site/public/v1/smartphones/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb/index.json new file mode 100644 index 00000000000..5f9019b3752 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4665, + "slug": "sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb", + "name": "SM-S908U1 Galaxy S22 Ultra 5G UW Dual SIM TD-LTE US 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 1400, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 229.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 28.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.760208", + "updated_at": "2026-06-19T00:43:44.760208" +} diff --git a/site/public/v1/smartphones/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb/score/index.json b/site/public/v1/smartphones/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb/score/index.json new file mode 100644 index 00000000000..a31db11c588 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908u1-galaxy-s22-ultra-5g-uw-dual-sim-td-lte-us-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 28.1 +} diff --git a/site/public/v1/smartphones/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-128gb/index.json b/site/public/v1/smartphones/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-128gb/index.json new file mode 100644 index 00000000000..9ea1f024220 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4666, + "slug": "sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-128gb", + "name": "SM-S908W Galaxy S22 Ultra 5G Dual SIM TD-LTE CA 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 1650, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 228.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.0, + "performance": 10.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 20.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.760208", + "updated_at": "2026-06-19T00:43:44.760208" +} diff --git a/site/public/v1/smartphones/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-128gb/score/index.json b/site/public/v1/smartphones/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-128gb/score/index.json new file mode 100644 index 00000000000..f0bc8ab3f90 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.0, + "performance": 10.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 20.0 +} diff --git a/site/public/v1/smartphones/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-1tb/index.json b/site/public/v1/smartphones/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-1tb/index.json new file mode 100644 index 00000000000..ef00c9667e7 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-1tb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4667, + "slug": "sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-1tb", + "name": "SM-S908W Galaxy S22 Ultra 5G Dual SIM TD-LTE CA 1TB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 2210, + "ram_gb": 12, + "storage_options_gb": [ + 1000 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 228.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 20.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.761207", + "updated_at": "2026-06-19T00:43:44.761207" +} diff --git a/site/public/v1/smartphones/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-1tb/score/index.json b/site/public/v1/smartphones/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-1tb/score/index.json new file mode 100644 index 00000000000..8d61c50da16 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-1tb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 20.4 +} diff --git a/site/public/v1/smartphones/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-256gb/index.json b/site/public/v1/smartphones/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-256gb/index.json new file mode 100644 index 00000000000..f27ca688c70 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4668, + "slug": "sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-256gb", + "name": "SM-S908W Galaxy S22 Ultra 5G Dual SIM TD-LTE CA 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 1790, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 228.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 20.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.761207", + "updated_at": "2026-06-19T00:43:44.761207" +} diff --git a/site/public/v1/smartphones/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-256gb/score/index.json b/site/public/v1/smartphones/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-256gb/score/index.json new file mode 100644 index 00000000000..8d61c50da16 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 20.4 +} diff --git a/site/public/v1/smartphones/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-512gb/index.json b/site/public/v1/smartphones/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-512gb/index.json new file mode 100644 index 00000000000..2c455ba9854 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4669, + "slug": "sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-512gb", + "name": "SM-S908W Galaxy S22 Ultra 5G Dual SIM TD-LTE CA 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 157, + "slug": "snapdragon-8-gen-1", + "name": "Snapdragon 8 Gen 1", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 4.0, + "gpu_name": "Adreno 730", + "url": "/v1/socs/snapdragon-8-gen-1" + }, + "release_date": "2022-02-26", + "msrp_usd": 1930, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.81, + "resolution": "1440x3088", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 500 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 39.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 45.0, + "charging_wireless_w": null, + "weight_g": 228.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "12", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 20.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.761207", + "updated_at": "2026-06-19T00:43:44.761207" +} diff --git a/site/public/v1/smartphones/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-512gb/score/index.json b/site/public/v1/smartphones/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-512gb/score/index.json new file mode 100644 index 00000000000..8d61c50da16 --- /dev/null +++ b/site/public/v1/smartphones/sm-s908w-galaxy-s22-ultra-5g-dual-sim-td-lte-ca-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 40.7, + "performance": 13.9, + "camera": 35.7, + "battery": 50.7, + "display": 62.5, + "value": 20.4 +} diff --git a/site/public/v1/smartphones/sm-w2019-world-flagship-2019-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/sm-w2019-world-flagship-2019-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..ec65723ba64 --- /dev/null +++ b/site/public/v1/smartphones/sm-w2019-world-flagship-2019-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4050, + "slug": "sm-w2019-world-flagship-2019-dual-sim-td-lte-cn-128gb", + "name": "SM-W2019 World Flagship 2019 Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2019-01-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 4.21, + "resolution": "1080x1920", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3070, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 257.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 1.5, + "camera": 5.1, + "battery": 1.0, + "display": 57.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.680271", + "updated_at": "2026-06-19T00:43:44.680271" +} diff --git a/site/public/v1/smartphones/sm-w2019-world-flagship-2019-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/sm-w2019-world-flagship-2019-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..75c8127ee25 --- /dev/null +++ b/site/public/v1/smartphones/sm-w2019-world-flagship-2019-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 1.5, + "camera": 5.1, + "battery": 1.0, + "display": 57.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-w2019-world-flagship-2019-dual-sim-td-lte-cn-256gb/index.json b/site/public/v1/smartphones/sm-w2019-world-flagship-2019-dual-sim-td-lte-cn-256gb/index.json new file mode 100644 index 00000000000..5fe63cb4b9a --- /dev/null +++ b/site/public/v1/smartphones/sm-w2019-world-flagship-2019-dual-sim-td-lte-cn-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4051, + "slug": "sm-w2019-world-flagship-2019-dual-sim-td-lte-cn-256gb", + "name": "SM-W2019 World Flagship 2019 Dual SIM TD-LTE CN 256GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2019-01-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 4.21, + "resolution": "1080x1920", + "type": "AM-OLED display", + "ppi": 523 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3070, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 257.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 1.5, + "camera": 5.1, + "battery": 1.0, + "display": 57.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.680271", + "updated_at": "2026-06-19T00:43:44.680271" +} diff --git a/site/public/v1/smartphones/sm-w2019-world-flagship-2019-dual-sim-td-lte-cn-256gb/score/index.json b/site/public/v1/smartphones/sm-w2019-world-flagship-2019-dual-sim-td-lte-cn-256gb/score/index.json new file mode 100644 index 00000000000..75c8127ee25 --- /dev/null +++ b/site/public/v1/smartphones/sm-w2019-world-flagship-2019-dual-sim-td-lte-cn-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 1.5, + "camera": 5.1, + "battery": 1.0, + "display": 57.3, + "value": null +} diff --git a/site/public/v1/smartphones/sm-w2020-w20-5g-td-lte-cn-512gb/index.json b/site/public/v1/smartphones/sm-w2020-w20-5g-td-lte-cn-512gb/index.json new file mode 100644 index 00000000000..567816a0ba6 --- /dev/null +++ b/site/public/v1/smartphones/sm-w2020-w20-5g-td-lte-cn-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4052, + "slug": "sm-w2020-w20-5g-td-lte-cn-512gb", + "name": "SM-W2020 W20 5G TD-LTE CN 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 4.58, + "resolution": "720x1680", + "type": "AM-OLED display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4235, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 278.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 6.0, + "camera": 5.1, + "battery": 18.5, + "display": 44.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.680271", + "updated_at": "2026-06-19T00:43:44.680271" +} diff --git a/site/public/v1/smartphones/sm-w2020-w20-5g-td-lte-cn-512gb/score/index.json b/site/public/v1/smartphones/sm-w2020-w20-5g-td-lte-cn-512gb/score/index.json new file mode 100644 index 00000000000..02a85f99073 --- /dev/null +++ b/site/public/v1/smartphones/sm-w2020-w20-5g-td-lte-cn-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 6.0, + "camera": 5.1, + "battery": 18.5, + "display": 44.9, + "value": null +} diff --git a/site/public/v1/smartphones/sm-w2021-w21-5g-dual-sim-td-lte-cn-512gb/index.json b/site/public/v1/smartphones/sm-w2021-w21-5g-dual-sim-td-lte-cn-512gb/index.json new file mode 100644 index 00000000000..399de209fb3 --- /dev/null +++ b/site/public/v1/smartphones/sm-w2021-w21-5g-dual-sim-td-lte-cn-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4317, + "slug": "sm-w2021-w21-5g-dual-sim-td-lte-cn-512gb", + "name": "SM-W2021 W21 5G Dual SIM TD-LTE CN 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-11-21", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.22, + "resolution": "816x2260", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 386 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4390, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 282.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 6.4, + "camera": 5.1, + "battery": 22.7, + "display": 51.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.719203", + "updated_at": "2026-06-19T00:43:44.719203" +} diff --git a/site/public/v1/smartphones/sm-w2021-w21-5g-dual-sim-td-lte-cn-512gb/score/index.json b/site/public/v1/smartphones/sm-w2021-w21-5g-dual-sim-td-lte-cn-512gb/score/index.json new file mode 100644 index 00000000000..da2afac1727 --- /dev/null +++ b/site/public/v1/smartphones/sm-w2021-w21-5g-dual-sim-td-lte-cn-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 6.4, + "camera": 5.1, + "battery": 22.7, + "display": 51.1, + "value": null +} diff --git a/site/public/v1/smartphones/sm-w2022-w22-5g-dual-sim-td-lte-cn-512gb/index.json b/site/public/v1/smartphones/sm-w2022-w22-5g-dual-sim-td-lte-cn-512gb/index.json new file mode 100644 index 00000000000..c3815f7c1b0 --- /dev/null +++ b/site/public/v1/smartphones/sm-w2022-w22-5g-dual-sim-td-lte-cn-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 4528, + "slug": "sm-w2022-w22-5g-dual-sim-td-lte-cn-512gb", + "name": "SM-W2022 W22 5G Dual SIM TD-LTE CN 512GB", + "brand": { + "id": 80, + "slug": "samsung", + "name": "Samsung", + "country": "KR", + "url": "/v1/brands/samsung" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-10-01", + "msrp_usd": null, + "ram_gb": 16, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.23, + "resolution": "832x2268", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 4335, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 288.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 12.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.744203", + "updated_at": "2026-06-19T00:43:44.744203" +} diff --git a/site/public/v1/smartphones/sm-w2022-w22-5g-dual-sim-td-lte-cn-512gb/score/index.json b/site/public/v1/smartphones/sm-w2022-w22-5g-dual-sim-td-lte-cn-512gb/score/index.json new file mode 100644 index 00000000000..20af179c060 --- /dev/null +++ b/site/public/v1/smartphones/sm-w2022-w22-5g-dual-sim-td-lte-cn-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 12.4, + "camera": 5.1, + "battery": 31.9, + "display": 51.3, + "value": null +} diff --git a/site/public/v1/smartphones/smart-3-dual-sim-lte-emea-x5516b/index.json b/site/public/v1/smartphones/smart-3-dual-sim-lte-emea-x5516b/index.json new file mode 100644 index 00000000000..b5d18de8d5e --- /dev/null +++ b/site/public/v1/smartphones/smart-3-dual-sim-lte-emea-x5516b/index.json @@ -0,0 +1,76 @@ +{ + "id": 1337, + "slug": "smart-3-dual-sim-lte-emea-x5516b", + "name": "Smart 3 Dual SIM LTE EMEA X5516B", + "brand": { + "id": 19, + "slug": "infinix", + "name": "Infinix Mobile", + "country": "CN", + "url": "/v1/brands/infinix" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 293 + }, + "cameras": [ + { + "type": "main", + "mp": 13.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "battery_mah": 3500, + "charging_wired_w": 6.0, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.0, + "performance": null, + "camera": 5.4, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.319606", + "updated_at": "2026-06-19T00:43:44.319606" +} diff --git a/site/public/v1/smartphones/smart-3-dual-sim-lte-emea-x5516b/score/index.json b/site/public/v1/smartphones/smart-3-dual-sim-lte-emea-x5516b/score/index.json new file mode 100644 index 00000000000..d2d57edf800 --- /dev/null +++ b/site/public/v1/smartphones/smart-3-dual-sim-lte-emea-x5516b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.0, + "performance": null, + "camera": 5.4, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/smart-3-dual-sim-td-lte-apac-x5516/index.json b/site/public/v1/smartphones/smart-3-dual-sim-td-lte-apac-x5516/index.json new file mode 100644 index 00000000000..f7f226cf170 --- /dev/null +++ b/site/public/v1/smartphones/smart-3-dual-sim-td-lte-apac-x5516/index.json @@ -0,0 +1,76 @@ +{ + "id": 1338, + "slug": "smart-3-dual-sim-td-lte-apac-x5516", + "name": "Smart 3 Dual SIM TD-LTE APAC X5516", + "brand": { + "id": 19, + "slug": "infinix", + "name": "Infinix Mobile", + "country": "CN", + "url": "/v1/brands/infinix" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 293 + }, + "cameras": [ + { + "type": "main", + "mp": 13.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "battery_mah": 3500, + "charging_wired_w": 6.0, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.0, + "performance": null, + "camera": 5.4, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.319606", + "updated_at": "2026-06-19T00:43:44.319606" +} diff --git a/site/public/v1/smartphones/smart-3-dual-sim-td-lte-apac-x5516/score/index.json b/site/public/v1/smartphones/smart-3-dual-sim-td-lte-apac-x5516/score/index.json new file mode 100644 index 00000000000..d2d57edf800 --- /dev/null +++ b/site/public/v1/smartphones/smart-3-dual-sim-td-lte-apac-x5516/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.0, + "performance": null, + "camera": 5.4, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/smart-3-dual-sim-td-lte-apac-x5516b/index.json b/site/public/v1/smartphones/smart-3-dual-sim-td-lte-apac-x5516b/index.json new file mode 100644 index 00000000000..2aa9ff21e83 --- /dev/null +++ b/site/public/v1/smartphones/smart-3-dual-sim-td-lte-apac-x5516b/index.json @@ -0,0 +1,76 @@ +{ + "id": 1339, + "slug": "smart-3-dual-sim-td-lte-apac-x5516b", + "name": "Smart 3 Dual SIM TD-LTE APAC X5516B", + "brand": { + "id": 19, + "slug": "infinix", + "name": "Infinix Mobile", + "country": "CN", + "url": "/v1/brands/infinix" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 293 + }, + "cameras": [ + { + "type": "main", + "mp": 13.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "battery_mah": 3500, + "charging_wired_w": 6.0, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.0, + "performance": null, + "camera": 5.4, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.319606", + "updated_at": "2026-06-19T00:43:44.319606" +} diff --git a/site/public/v1/smartphones/smart-3-dual-sim-td-lte-apac-x5516b/score/index.json b/site/public/v1/smartphones/smart-3-dual-sim-td-lte-apac-x5516b/score/index.json new file mode 100644 index 00000000000..d2d57edf800 --- /dev/null +++ b/site/public/v1/smartphones/smart-3-dual-sim-td-lte-apac-x5516b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.0, + "performance": null, + "camera": 5.4, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/smart-3-global-dual-sim-lte-x5516/index.json b/site/public/v1/smartphones/smart-3-global-dual-sim-lte-x5516/index.json new file mode 100644 index 00000000000..b6203e9c039 --- /dev/null +++ b/site/public/v1/smartphones/smart-3-global-dual-sim-lte-x5516/index.json @@ -0,0 +1,76 @@ +{ + "id": 1340, + "slug": "smart-3-global-dual-sim-lte-x5516", + "name": "Smart 3 Global Dual SIM LTE X5516", + "brand": { + "id": 19, + "slug": "infinix", + "name": "Infinix Mobile", + "country": "CN", + "url": "/v1/brands/infinix" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 293 + }, + "cameras": [ + { + "type": "main", + "mp": 13.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "battery_mah": 3500, + "charging_wired_w": 6.0, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.0, + "performance": null, + "camera": 5.4, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.320606", + "updated_at": "2026-06-19T00:43:44.320606" +} diff --git a/site/public/v1/smartphones/smart-3-global-dual-sim-lte-x5516/score/index.json b/site/public/v1/smartphones/smart-3-global-dual-sim-lte-x5516/score/index.json new file mode 100644 index 00000000000..d2d57edf800 --- /dev/null +++ b/site/public/v1/smartphones/smart-3-global-dual-sim-lte-x5516/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.0, + "performance": null, + "camera": 5.4, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/smart-3-plus-dual-sim-lte-emea-16gb/index.json b/site/public/v1/smartphones/smart-3-plus-dual-sim-lte-emea-16gb/index.json new file mode 100644 index 00000000000..e5d169c6967 --- /dev/null +++ b/site/public/v1/smartphones/smart-3-plus-dual-sim-lte-emea-16gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1341, + "slug": "smart-3-plus-dual-sim-lte-emea-16gb", + "name": "Smart 3 Plus Dual SIM LTE EMEA 16GB", + "brand": { + "id": 19, + "slug": "infinix", + "name": "Infinix Mobile", + "country": "CN", + "url": "/v1/brands/infinix" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.21, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "battery_mah": 3500, + "charging_wired_w": 6.0, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.0, + "performance": null, + "camera": 5.4, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.320606", + "updated_at": "2026-06-19T00:43:44.320606" +} diff --git a/site/public/v1/smartphones/smart-3-plus-dual-sim-lte-emea-16gb/score/index.json b/site/public/v1/smartphones/smart-3-plus-dual-sim-lte-emea-16gb/score/index.json new file mode 100644 index 00000000000..d2d57edf800 --- /dev/null +++ b/site/public/v1/smartphones/smart-3-plus-dual-sim-lte-emea-16gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.0, + "performance": null, + "camera": 5.4, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/smart-3-plus-dual-sim-td-lte-apac-32gb-x627/index.json b/site/public/v1/smartphones/smart-3-plus-dual-sim-td-lte-apac-32gb-x627/index.json new file mode 100644 index 00000000000..b1ccf7facb8 --- /dev/null +++ b/site/public/v1/smartphones/smart-3-plus-dual-sim-td-lte-apac-32gb-x627/index.json @@ -0,0 +1,76 @@ +{ + "id": 1342, + "slug": "smart-3-plus-dual-sim-td-lte-apac-32gb-x627", + "name": "Smart 3 Plus Dual SIM TD-LTE APAC 32GB X627", + "brand": { + "id": 19, + "slug": "infinix", + "name": "Infinix Mobile", + "country": "CN", + "url": "/v1/brands/infinix" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.21, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "battery_mah": 3500, + "charging_wired_w": 6.0, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.0, + "performance": null, + "camera": 5.4, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.320606", + "updated_at": "2026-06-19T00:43:44.320606" +} diff --git a/site/public/v1/smartphones/smart-3-plus-dual-sim-td-lte-apac-32gb-x627/score/index.json b/site/public/v1/smartphones/smart-3-plus-dual-sim-td-lte-apac-32gb-x627/score/index.json new file mode 100644 index 00000000000..d2d57edf800 --- /dev/null +++ b/site/public/v1/smartphones/smart-3-plus-dual-sim-td-lte-apac-32gb-x627/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.0, + "performance": null, + "camera": 5.4, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/smart-3-plus-dual-sim-td-lte-apac-32gb-x627v/index.json b/site/public/v1/smartphones/smart-3-plus-dual-sim-td-lte-apac-32gb-x627v/index.json new file mode 100644 index 00000000000..39fe413f245 --- /dev/null +++ b/site/public/v1/smartphones/smart-3-plus-dual-sim-td-lte-apac-32gb-x627v/index.json @@ -0,0 +1,76 @@ +{ + "id": 1343, + "slug": "smart-3-plus-dual-sim-td-lte-apac-32gb-x627v", + "name": "Smart 3 Plus Dual SIM TD-LTE APAC 32GB X627V", + "brand": { + "id": 19, + "slug": "infinix", + "name": "Infinix Mobile", + "country": "CN", + "url": "/v1/brands/infinix" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.21, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "battery_mah": 3500, + "charging_wired_w": 6.0, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.0, + "performance": null, + "camera": 5.4, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.320606", + "updated_at": "2026-06-19T00:43:44.320606" +} diff --git a/site/public/v1/smartphones/smart-3-plus-dual-sim-td-lte-apac-32gb-x627v/score/index.json b/site/public/v1/smartphones/smart-3-plus-dual-sim-td-lte-apac-32gb-x627v/score/index.json new file mode 100644 index 00000000000..d2d57edf800 --- /dev/null +++ b/site/public/v1/smartphones/smart-3-plus-dual-sim-td-lte-apac-32gb-x627v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.0, + "performance": null, + "camera": 5.4, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/smart-3-plus-global-dual-sim-td-lte-32gb-x627/index.json b/site/public/v1/smartphones/smart-3-plus-global-dual-sim-td-lte-32gb-x627/index.json new file mode 100644 index 00000000000..9a83c7d43f6 --- /dev/null +++ b/site/public/v1/smartphones/smart-3-plus-global-dual-sim-td-lte-32gb-x627/index.json @@ -0,0 +1,76 @@ +{ + "id": 1344, + "slug": "smart-3-plus-global-dual-sim-td-lte-32gb-x627", + "name": "Smart 3 Plus Global Dual SIM TD-LTE 32GB X627", + "brand": { + "id": 19, + "slug": "infinix", + "name": "Infinix Mobile", + "country": "CN", + "url": "/v1/brands/infinix" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.21, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.2 + }, + { + "type": "selfie", + "mp": 8.1 + } + ], + "battery_mah": 3500, + "charging_wired_w": 6.0, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.0, + "performance": null, + "camera": 5.4, + "battery": 7.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.320606", + "updated_at": "2026-06-19T00:43:44.320606" +} diff --git a/site/public/v1/smartphones/smart-3-plus-global-dual-sim-td-lte-32gb-x627/score/index.json b/site/public/v1/smartphones/smart-3-plus-global-dual-sim-td-lte-32gb-x627/score/index.json new file mode 100644 index 00000000000..d2d57edf800 --- /dev/null +++ b/site/public/v1/smartphones/smart-3-plus-global-dual-sim-td-lte-32gb-x627/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.0, + "performance": null, + "camera": 5.4, + "battery": 7.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/spark-5-dual-sim-td-lte/index.json b/site/public/v1/smartphones/spark-5-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..2235ac40ff0 --- /dev/null +++ b/site/public/v1/smartphones/spark-5-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 4984, + "slug": "spark-5-dual-sim-td-lte", + "name": "Spark 5 Dual SIM TD-LTE", + "brand": { + "id": 39, + "slug": "tecno", + "name": "Tecno Mobile", + "country": "CN", + "url": "/v1/brands/tecno" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-05-01", + "msrp_usd": 124, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 61.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.837762", + "updated_at": "2026-06-19T00:43:44.837762" +} diff --git a/site/public/v1/smartphones/spark-5-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/spark-5-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..f30fbd0b4af --- /dev/null +++ b/site/public/v1/smartphones/spark-5-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 61.7 +} diff --git a/site/public/v1/smartphones/spark-5-pro-dual-sim-td-lte/index.json b/site/public/v1/smartphones/spark-5-pro-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..92bd184e6d2 --- /dev/null +++ b/site/public/v1/smartphones/spark-5-pro-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 4985, + "slug": "spark-5-pro-dual-sim-td-lte", + "name": "Spark 5 Pro Dual SIM TD-LTE", + "brand": { + "id": 39, + "slug": "tecno", + "name": "Tecno Mobile", + "country": "CN", + "url": "/v1/brands/tecno" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-07-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.6, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.8, + "performance": null, + "camera": 6.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.837762", + "updated_at": "2026-06-19T00:43:44.837762" +} diff --git a/site/public/v1/smartphones/spark-5-pro-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/spark-5-pro-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..79d7057bdac --- /dev/null +++ b/site/public/v1/smartphones/spark-5-pro-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.8, + "performance": null, + "camera": 6.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/spark-go-1s/index.json b/site/public/v1/smartphones/spark-go-1s/index.json new file mode 100644 index 00000000000..c06247a720b --- /dev/null +++ b/site/public/v1/smartphones/spark-go-1s/index.json @@ -0,0 +1,70 @@ +{ + "id": 5016, + "slug": "spark-go-1s", + "name": "Spark Go 1S", + "brand": { + "id": 39, + "slug": "tecno", + "name": "Tecno Mobile", + "country": "CN", + "url": "/v1/brands/tecno" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2024-01-01", + "msrp_usd": 129, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.6 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": null, + "value": 58.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.841586", + "updated_at": "2026-06-19T00:43:44.841586" +} diff --git a/site/public/v1/smartphones/spark-go-1s/score/index.json b/site/public/v1/smartphones/spark-go-1s/score/index.json new file mode 100644 index 00000000000..20b4abf98f9 --- /dev/null +++ b/site/public/v1/smartphones/spark-go-1s/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": null, + "value": 58.8 +} diff --git a/site/public/v1/smartphones/spark-power-2-dual-sim-td-lte-lc8/index.json b/site/public/v1/smartphones/spark-power-2-dual-sim-td-lte-lc8/index.json new file mode 100644 index 00000000000..bdab9b353e0 --- /dev/null +++ b/site/public/v1/smartphones/spark-power-2-dual-sim-td-lte-lc8/index.json @@ -0,0 +1,76 @@ +{ + "id": 4986, + "slug": "spark-power-2-dual-sim-td-lte-lc8", + "name": "Spark Power 2 Dual SIM TD-LTE LC8", + "brand": { + "id": 39, + "slug": "tecno", + "name": "Tecno Mobile", + "country": "CN", + "url": "/v1/brands/tecno" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-06-23", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 7.0, + "resolution": "720x1640", + "type": "Color IPS TFT LCD display", + "ppi": 256 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 6000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.0, + "performance": null, + "camera": 6.3, + "battery": 45.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.837762", + "updated_at": "2026-06-19T00:43:44.837762" +} diff --git a/site/public/v1/smartphones/spark-power-2-dual-sim-td-lte-lc8/score/index.json b/site/public/v1/smartphones/spark-power-2-dual-sim-td-lte-lc8/score/index.json new file mode 100644 index 00000000000..dc85a11eb89 --- /dev/null +++ b/site/public/v1/smartphones/spark-power-2-dual-sim-td-lte-lc8/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.0, + "performance": null, + "camera": 6.3, + "battery": 45.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/ss1805-q-stylus-td-lte-jp-801lg/index.json b/site/public/v1/smartphones/ss1805-q-stylus-td-lte-jp-801lg/index.json new file mode 100644 index 00000000000..6856ad59405 --- /dev/null +++ b/site/public/v1/smartphones/ss1805-q-stylus-td-lte-jp-801lg/index.json @@ -0,0 +1,76 @@ +{ + "id": 1713, + "slug": "ss1805-q-stylus-td-lte-jp-801lg", + "name": "SS1805 Q Stylus TD-LTE JP 801LG", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-01-12", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 390 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": null, + "camera": 5.3, + "battery": 4.5, + "display": 44.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.366617", + "updated_at": "2026-06-19T00:43:44.366617" +} diff --git a/site/public/v1/smartphones/ss1805-q-stylus-td-lte-jp-801lg/score/index.json b/site/public/v1/smartphones/ss1805-q-stylus-td-lte-jp-801lg/score/index.json new file mode 100644 index 00000000000..2606476b9f1 --- /dev/null +++ b/site/public/v1/smartphones/ss1805-q-stylus-td-lte-jp-801lg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": null, + "camera": 5.3, + "battery": 4.5, + "display": 44.0, + "value": null +} diff --git a/site/public/v1/smartphones/style2-td-lte-jp-l-01l/index.json b/site/public/v1/smartphones/style2-td-lte-jp-l-01l/index.json new file mode 100644 index 00000000000..18127b4a869 --- /dev/null +++ b/site/public/v1/smartphones/style2-td-lte-jp-l-01l/index.json @@ -0,0 +1,76 @@ +{ + "id": 1714, + "slug": "style2-td-lte-jp-l-01l", + "name": "style2 TD-LTE JP L-01L", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-07-12", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 16.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3900, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": null, + "camera": 6.3, + "battery": 13.5, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.366617", + "updated_at": "2026-06-19T00:43:44.366617" +} diff --git a/site/public/v1/smartphones/style2-td-lte-jp-l-01l/score/index.json b/site/public/v1/smartphones/style2-td-lte-jp-l-01l/score/index.json new file mode 100644 index 00000000000..9b487bd29cd --- /dev/null +++ b/site/public/v1/smartphones/style2-td-lte-jp-l-01l/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.7, + "performance": null, + "camera": 6.3, + "battery": 13.5, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/style3-td-lte-jp-l-41a/index.json b/site/public/v1/smartphones/style3-td-lte-jp-l-41a/index.json new file mode 100644 index 00000000000..9aab7d41a73 --- /dev/null +++ b/site/public/v1/smartphones/style3-td-lte-jp-l-41a/index.json @@ -0,0 +1,76 @@ +{ + "id": 1835, + "slug": "style3-td-lte-jp-l-41a", + "name": "style3 TD-LTE JP L-41A", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2020-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "1440x3120", + "type": "Color PM-OLED display", + "ppi": 563 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 0.0, + "camera": 16.5, + "battery": 7.5, + "display": 61.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.380881", + "updated_at": "2026-06-19T00:43:44.380881" +} diff --git a/site/public/v1/smartphones/style3-td-lte-jp-l-41a/score/index.json b/site/public/v1/smartphones/style3-td-lte-jp-l-41a/score/index.json new file mode 100644 index 00000000000..83be52684c0 --- /dev/null +++ b/site/public/v1/smartphones/style3-td-lte-jp-l-41a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 0.0, + "camera": 16.5, + "battery": 7.5, + "display": 61.3, + "value": null +} diff --git a/site/public/v1/smartphones/surface-duo-2-5g-global-td-lte-128gb-1968/index.json b/site/public/v1/smartphones/surface-duo-2-5g-global-td-lte-128gb-1968/index.json new file mode 100644 index 00000000000..7a00949f783 --- /dev/null +++ b/site/public/v1/smartphones/surface-duo-2-5g-global-td-lte-128gb-1968/index.json @@ -0,0 +1,77 @@ +{ + "id": 1922, + "slug": "surface-duo-2-5g-global-td-lte-128gb-1968", + "name": "Surface Duo 2 5G Global TD-LTE 128GB 1968", + "brand": { + "id": 115, + "slug": "microsoft", + "name": "Microsoft", + "country": "US", + "url": "/v1/brands/microsoft" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-10-21", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.8, + "resolution": "1344x1892", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "battery_mah": 4450, + "charging_wired_w": 23.0, + "charging_wireless_w": null, + "weight_g": 284.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 6.4, + "camera": 5.0, + "battery": 33.3, + "display": 40.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.390878", + "updated_at": "2026-06-19T00:43:44.390878" +} diff --git a/site/public/v1/smartphones/surface-duo-2-5g-global-td-lte-128gb-1968/score/index.json b/site/public/v1/smartphones/surface-duo-2-5g-global-td-lte-128gb-1968/score/index.json new file mode 100644 index 00000000000..720c8111c98 --- /dev/null +++ b/site/public/v1/smartphones/surface-duo-2-5g-global-td-lte-128gb-1968/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 6.4, + "camera": 5.0, + "battery": 33.3, + "display": 40.0, + "value": null +} diff --git a/site/public/v1/smartphones/surface-duo-2-5g-global-td-lte-256gb-1968/index.json b/site/public/v1/smartphones/surface-duo-2-5g-global-td-lte-256gb-1968/index.json new file mode 100644 index 00000000000..eb0b9d0ccc7 --- /dev/null +++ b/site/public/v1/smartphones/surface-duo-2-5g-global-td-lte-256gb-1968/index.json @@ -0,0 +1,77 @@ +{ + "id": 1923, + "slug": "surface-duo-2-5g-global-td-lte-256gb-1968", + "name": "Surface Duo 2 5G Global TD-LTE 256GB 1968", + "brand": { + "id": 115, + "slug": "microsoft", + "name": "Microsoft", + "country": "US", + "url": "/v1/brands/microsoft" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-10-21", + "msrp_usd": 1429, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.8, + "resolution": "1344x1892", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "battery_mah": 4450, + "charging_wired_w": 23.0, + "charging_wireless_w": null, + "weight_g": 284.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 6.4, + "camera": 5.0, + "battery": 33.3, + "display": 40.0, + "value": 17.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.390878", + "updated_at": "2026-06-19T00:43:44.390878" +} diff --git a/site/public/v1/smartphones/surface-duo-2-5g-global-td-lte-256gb-1968/score/index.json b/site/public/v1/smartphones/surface-duo-2-5g-global-td-lte-256gb-1968/score/index.json new file mode 100644 index 00000000000..39c281f39a7 --- /dev/null +++ b/site/public/v1/smartphones/surface-duo-2-5g-global-td-lte-256gb-1968/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 6.4, + "camera": 5.0, + "battery": 33.3, + "display": 40.0, + "value": 17.2 +} diff --git a/site/public/v1/smartphones/surface-duo-2-5g-global-td-lte-512gb-1968/index.json b/site/public/v1/smartphones/surface-duo-2-5g-global-td-lte-512gb-1968/index.json new file mode 100644 index 00000000000..0cda4404f25 --- /dev/null +++ b/site/public/v1/smartphones/surface-duo-2-5g-global-td-lte-512gb-1968/index.json @@ -0,0 +1,77 @@ +{ + "id": 1924, + "slug": "surface-duo-2-5g-global-td-lte-512gb-1968", + "name": "Surface Duo 2 5G Global TD-LTE 512GB 1968", + "brand": { + "id": 115, + "slug": "microsoft", + "name": "Microsoft", + "country": "US", + "url": "/v1/brands/microsoft" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2022-01-07", + "msrp_usd": 1589, + "ram_gb": 8, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 5.8, + "resolution": "1344x1892", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "battery_mah": 4450, + "charging_wired_w": 23.0, + "charging_wireless_w": null, + "weight_g": 284.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 6.4, + "camera": 5.0, + "battery": 33.3, + "display": 40.0, + "value": 11.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.390878", + "updated_at": "2026-06-19T00:43:44.390878" +} diff --git a/site/public/v1/smartphones/surface-duo-2-5g-global-td-lte-512gb-1968/score/index.json b/site/public/v1/smartphones/surface-duo-2-5g-global-td-lte-512gb-1968/score/index.json new file mode 100644 index 00000000000..37282f657fc --- /dev/null +++ b/site/public/v1/smartphones/surface-duo-2-5g-global-td-lte-512gb-1968/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.2, + "performance": 6.4, + "camera": 5.0, + "battery": 33.3, + "display": 40.0, + "value": 11.0 +} diff --git a/site/public/v1/smartphones/surface-duo-global-td-lte-128gb/index.json b/site/public/v1/smartphones/surface-duo-global-td-lte-128gb/index.json new file mode 100644 index 00000000000..d167937b169 --- /dev/null +++ b/site/public/v1/smartphones/surface-duo-global-td-lte-128gb/index.json @@ -0,0 +1,72 @@ +{ + "id": 1918, + "slug": "surface-duo-global-td-lte-128gb", + "name": "Surface Duo Global TD-LTE 128GB", + "brand": { + "id": 115, + "slug": "microsoft", + "name": "Microsoft", + "country": "US", + "url": "/v1/brands/microsoft" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2020-09-01", + "msrp_usd": 1400, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.6, + "resolution": "1350x1800", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 11.1 + } + ], + "battery_mah": 3578, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 250.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 1.5, + "camera": 5.0, + "battery": 9.3, + "display": 45.2, + "value": 15.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.390878", + "updated_at": "2026-06-19T00:43:44.390878" +} diff --git a/site/public/v1/smartphones/surface-duo-global-td-lte-128gb/score/index.json b/site/public/v1/smartphones/surface-duo-global-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..01604f86948 --- /dev/null +++ b/site/public/v1/smartphones/surface-duo-global-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 1.5, + "camera": 5.0, + "battery": 9.3, + "display": 45.2, + "value": 15.3 +} diff --git a/site/public/v1/smartphones/surface-duo-global-td-lte-256gb/index.json b/site/public/v1/smartphones/surface-duo-global-td-lte-256gb/index.json new file mode 100644 index 00000000000..878c5d2a451 --- /dev/null +++ b/site/public/v1/smartphones/surface-duo-global-td-lte-256gb/index.json @@ -0,0 +1,72 @@ +{ + "id": 1919, + "slug": "surface-duo-global-td-lte-256gb", + "name": "Surface Duo Global TD-LTE 256GB", + "brand": { + "id": 115, + "slug": "microsoft", + "name": "Microsoft", + "country": "US", + "url": "/v1/brands/microsoft" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2020-09-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.6, + "resolution": "1350x1800", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 11.1 + } + ], + "battery_mah": 3578, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 250.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 1.5, + "camera": 5.0, + "battery": 9.3, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.390878", + "updated_at": "2026-06-19T00:43:44.390878" +} diff --git a/site/public/v1/smartphones/surface-duo-global-td-lte-256gb/score/index.json b/site/public/v1/smartphones/surface-duo-global-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..28e17fd3d91 --- /dev/null +++ b/site/public/v1/smartphones/surface-duo-global-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 1.5, + "camera": 5.0, + "battery": 9.3, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/surface-duo-td-lte-us-128gb/index.json b/site/public/v1/smartphones/surface-duo-td-lte-us-128gb/index.json new file mode 100644 index 00000000000..6fc93103649 --- /dev/null +++ b/site/public/v1/smartphones/surface-duo-td-lte-us-128gb/index.json @@ -0,0 +1,72 @@ +{ + "id": 1920, + "slug": "surface-duo-td-lte-us-128gb", + "name": "Surface Duo TD-LTE US 128GB", + "brand": { + "id": 115, + "slug": "microsoft", + "name": "Microsoft", + "country": "US", + "url": "/v1/brands/microsoft" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2020-09-01", + "msrp_usd": 1350, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.6, + "resolution": "1350x1800", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 11.1 + } + ], + "battery_mah": 3578, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 250.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 1.5, + "camera": 5.0, + "battery": 9.3, + "display": 45.2, + "value": 17.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.390878", + "updated_at": "2026-06-19T00:43:44.390878" +} diff --git a/site/public/v1/smartphones/surface-duo-td-lte-us-128gb/score/index.json b/site/public/v1/smartphones/surface-duo-td-lte-us-128gb/score/index.json new file mode 100644 index 00000000000..58eb0bea128 --- /dev/null +++ b/site/public/v1/smartphones/surface-duo-td-lte-us-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 1.5, + "camera": 5.0, + "battery": 9.3, + "display": 45.2, + "value": 17.2 +} diff --git a/site/public/v1/smartphones/surface-duo-td-lte-us-256gb/index.json b/site/public/v1/smartphones/surface-duo-td-lte-us-256gb/index.json new file mode 100644 index 00000000000..ff10fcfe80b --- /dev/null +++ b/site/public/v1/smartphones/surface-duo-td-lte-us-256gb/index.json @@ -0,0 +1,72 @@ +{ + "id": 1921, + "slug": "surface-duo-td-lte-us-256gb", + "name": "Surface Duo TD-LTE US 256GB", + "brand": { + "id": 115, + "slug": "microsoft", + "name": "Microsoft", + "country": "US", + "url": "/v1/brands/microsoft" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2020-09-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.6, + "resolution": "1350x1800", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 11.1 + } + ], + "battery_mah": 3578, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 250.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 1.5, + "camera": 5.0, + "battery": 9.3, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.390878", + "updated_at": "2026-06-19T00:43:44.390878" +} diff --git a/site/public/v1/smartphones/surface-duo-td-lte-us-256gb/score/index.json b/site/public/v1/smartphones/surface-duo-td-lte-us-256gb/score/index.json new file mode 100644 index 00000000000..28e17fd3d91 --- /dev/null +++ b/site/public/v1/smartphones/surface-duo-td-lte-us-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 1.5, + "camera": 5.0, + "battery": 9.3, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/t2-global-dual-sim-lte/index.json b/site/public/v1/smartphones/t2-global-dual-sim-lte/index.json new file mode 100644 index 00000000000..6563c257506 --- /dev/null +++ b/site/public/v1/smartphones/t2-global-dual-sim-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 5031, + "slug": "t2-global-dual-sim-lte", + "name": "T2 Global Dual SIM LTE", + "brand": { + "id": 41, + "slug": "ulefone", + "name": "Ulefone", + "country": "CN", + "url": "/v1/brands/ulefone" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-08-27", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.7, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 377 + }, + "cameras": [ + { + "type": "main", + "mp": 16.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 197.2, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.3, + "performance": 1.5, + "camera": 6.3, + "battery": 18.6, + "display": 42.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.843776", + "updated_at": "2026-06-19T00:43:44.843776" +} diff --git a/site/public/v1/smartphones/t2-global-dual-sim-lte/score/index.json b/site/public/v1/smartphones/t2-global-dual-sim-lte/score/index.json new file mode 100644 index 00000000000..53409e368e9 --- /dev/null +++ b/site/public/v1/smartphones/t2-global-dual-sim-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.3, + "performance": 1.5, + "camera": 6.3, + "battery": 18.6, + "display": 42.7, + "value": null +} diff --git a/site/public/v1/smartphones/tempo-go-td-lte-n9137go/index.json b/site/public/v1/smartphones/tempo-go-td-lte-n9137go/index.json new file mode 100644 index 00000000000..a353650eeef --- /dev/null +++ b/site/public/v1/smartphones/tempo-go-td-lte-n9137go/index.json @@ -0,0 +1,76 @@ +{ + "id": 6417, + "slug": "tempo-go-td-lte-n9137go", + "name": "Tempo Go TD-LTE N9137GO", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 104, + "slug": "snapdragon-210", + "name": "Snapdragon 210", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-210" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.0, + "resolution": "480x854", + "type": "Color IPS TFT LCD display", + "ppi": 196 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "battery_mah": 2200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 155.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.007824", + "updated_at": "2026-06-19T00:43:45.007824" +} diff --git a/site/public/v1/smartphones/tempo-go-td-lte-n9137go/score/index.json b/site/public/v1/smartphones/tempo-go-td-lte-n9137go/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/tempo-go-td-lte-n9137go/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/tianji-a31-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/tianji-a31-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..20f534746c0 --- /dev/null +++ b/site/public/v1/smartphones/tianji-a31-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 6543, + "slug": "tianji-a31-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb", + "name": "Tianji A31 Pro 5G Premium Edition Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-09-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 43.7 + } + ], + "battery_mah": 4200, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.4, + "performance": 6.4, + "camera": 21.7, + "battery": 35.6, + "display": 62.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.022824", + "updated_at": "2026-06-19T00:43:45.022824" +} diff --git a/site/public/v1/smartphones/tianji-a31-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/tianji-a31-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..9b8721f7cc4 --- /dev/null +++ b/site/public/v1/smartphones/tianji-a31-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.4, + "performance": 6.4, + "camera": 21.7, + "battery": 35.6, + "display": 62.0, + "value": null +} diff --git a/site/public/v1/smartphones/tianji-a31-ultra-5g-dual-sim-td-lte-cn-512gb/index.json b/site/public/v1/smartphones/tianji-a31-ultra-5g-dual-sim-td-lte-cn-512gb/index.json new file mode 100644 index 00000000000..49faee32ffd --- /dev/null +++ b/site/public/v1/smartphones/tianji-a31-ultra-5g-dual-sim-td-lte-cn-512gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 6544, + "slug": "tianji-a31-ultra-5g-dual-sim-td-lte-cn-512gb", + "name": "Tianji A31 Ultra 5G Dual SIM TD-LTE CN 512GB", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-05-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 144, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4600, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 34.2, + "performance": 9.4, + "camera": 21.7, + "battery": 43.7, + "display": 62.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.022824", + "updated_at": "2026-06-19T00:43:45.022824" +} diff --git a/site/public/v1/smartphones/tianji-a31-ultra-5g-dual-sim-td-lte-cn-512gb/score/index.json b/site/public/v1/smartphones/tianji-a31-ultra-5g-dual-sim-td-lte-cn-512gb/score/index.json new file mode 100644 index 00000000000..33207bc32a6 --- /dev/null +++ b/site/public/v1/smartphones/tianji-a31-ultra-5g-dual-sim-td-lte-cn-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 34.2, + "performance": 9.4, + "camera": 21.7, + "battery": 43.7, + "display": 62.0, + "value": null +} diff --git a/site/public/v1/smartphones/titan-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/titan-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..ae962e556a4 --- /dev/null +++ b/site/public/v1/smartphones/titan-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 5033, + "slug": "titan-global-dual-sim-td-lte", + "name": "Titan Global Dual SIM TD-LTE", + "brand": { + "id": 42, + "slug": "unihertz", + "name": "Unihertz", + "country": "CN", + "url": "/v1/brands/unihertz" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2020-01-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 4.6, + "resolution": "1430x1438", + "type": "Color IPS TFT LCD display", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 6000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 303.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.5, + "performance": 1.5, + "camera": 6.3, + "battery": 45.0, + "display": 49.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.843776", + "updated_at": "2026-06-19T00:43:44.843776" +} diff --git a/site/public/v1/smartphones/titan-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/titan-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..4fe36f1571a --- /dev/null +++ b/site/public/v1/smartphones/titan-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.5, + "performance": 1.5, + "camera": 6.3, + "battery": 45.0, + "display": 49.1, + "value": null +} diff --git a/site/public/v1/smartphones/tommy-lte-apac-m1563/index.json b/site/public/v1/smartphones/tommy-lte-apac-m1563/index.json new file mode 100644 index 00000000000..81be9a5afe5 --- /dev/null +++ b/site/public/v1/smartphones/tommy-lte-apac-m1563/index.json @@ -0,0 +1,76 @@ +{ + "id": 5580, + "slug": "tommy-lte-apac-m1563", + "name": "Tommy LTE APAC M1563", + "brand": { + "id": 56, + "slug": "wiko", + "name": "Wiko", + "country": "FR", + "url": "/v1/brands/wiko" + }, + "soc": { + "id": 108, + "slug": "snapdragon-212", + "name": "Snapdragon 212", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-212" + }, + "release_date": "2016-03-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 2500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "6.0", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.911308", + "updated_at": "2026-06-19T00:43:44.911308" +} diff --git a/site/public/v1/smartphones/tommy-lte-apac-m1563/score/index.json b/site/public/v1/smartphones/tommy-lte-apac-m1563/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/tommy-lte-apac-m1563/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/torque-g04-wimax-2-kyv46/index.json b/site/public/v1/smartphones/torque-g04-wimax-2-kyv46/index.json new file mode 100644 index 00000000000..d27be642514 --- /dev/null +++ b/site/public/v1/smartphones/torque-g04-wimax-2-kyv46/index.json @@ -0,0 +1,76 @@ +{ + "id": 1409, + "slug": "torque-g04-wimax-2-kyv46", + "name": "Torque G04 WiMAX 2+ KYV46", + "brand": { + "id": 71, + "slug": "kyocera", + "name": "Kyocera", + "country": "JP", + "url": "/v1/brands/kyocera" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2019-08-29", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.0, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 441 + }, + "cameras": [ + { + "type": "main", + "mp": 23.8 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 2940, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 200.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 18.0, + "camera": 8.8, + "battery": 0.0, + "display": 49.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.329606", + "updated_at": "2026-06-19T00:43:44.329606" +} diff --git a/site/public/v1/smartphones/torque-g04-wimax-2-kyv46/score/index.json b/site/public/v1/smartphones/torque-g04-wimax-2-kyv46/score/index.json new file mode 100644 index 00000000000..50ff46da956 --- /dev/null +++ b/site/public/v1/smartphones/torque-g04-wimax-2-kyv46/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 18.0, + "camera": 8.8, + "battery": 0.0, + "display": 49.1, + "value": null +} diff --git a/site/public/v1/smartphones/u11-td-lte-64gb-u-3u/index.json b/site/public/v1/smartphones/u11-td-lte-64gb-u-3u/index.json new file mode 100644 index 00000000000..3a47230e640 --- /dev/null +++ b/site/public/v1/smartphones/u11-td-lte-64gb-u-3u/index.json @@ -0,0 +1,76 @@ +{ + "id": 761, + "slug": "u11-td-lte-64gb-u-3u", + "name": "U11 TD-LTE 64GB U-3u", + "brand": { + "id": 92, + "slug": "htc", + "name": "HTC", + "country": "TW", + "url": "/v1/brands/htc" + }, + "soc": { + "id": 122, + "slug": "snapdragon-835", + "name": "Snapdragon 835", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 540", + "url": "/v1/socs/snapdragon-835" + }, + "release_date": "2017-05-26", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.5, + "resolution": "1440x2560", + "type": "Color PVA TFT LCD display", + "ppi": 534 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 23.1, + "camera": 5.1, + "battery": 0.0, + "display": 58.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.212932", + "updated_at": "2026-06-19T00:43:44.212932" +} diff --git a/site/public/v1/smartphones/u11-td-lte-64gb-u-3u/score/index.json b/site/public/v1/smartphones/u11-td-lte-64gb-u-3u/score/index.json new file mode 100644 index 00000000000..5ed706bed72 --- /dev/null +++ b/site/public/v1/smartphones/u11-td-lte-64gb-u-3u/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.6, + "performance": 23.1, + "camera": 5.1, + "battery": 0.0, + "display": 58.4, + "value": null +} diff --git a/site/public/v1/smartphones/u12-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/u12-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..86e02134f4e --- /dev/null +++ b/site/public/v1/smartphones/u12-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 767, + "slug": "u12-dual-sim-td-lte-128gb", + "name": "U12+ Dual SIM TD-LTE 128GB", + "brand": { + "id": 92, + "slug": "htc", + "name": "HTC", + "country": "TW", + "url": "/v1/brands/htc" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-06-21", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "Color PVA TFT LCD display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 1.5, + "camera": 5.1, + "battery": 7.5, + "display": 58.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.213932", + "updated_at": "2026-06-19T00:43:44.213932" +} diff --git a/site/public/v1/smartphones/u12-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/u12-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..80dcfd87157 --- /dev/null +++ b/site/public/v1/smartphones/u12-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 1.5, + "camera": 5.1, + "battery": 7.5, + "display": 58.8, + "value": null +} diff --git a/site/public/v1/smartphones/u12-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/u12-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..3a06619b5a4 --- /dev/null +++ b/site/public/v1/smartphones/u12-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 768, + "slug": "u12-dual-sim-td-lte-64gb", + "name": "U12+ Dual SIM TD-LTE 64GB", + "brand": { + "id": 92, + "slug": "htc", + "name": "HTC", + "country": "TW", + "url": "/v1/brands/htc" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "Color PVA TFT LCD display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 1.5, + "camera": 5.1, + "battery": 7.5, + "display": 58.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.213932", + "updated_at": "2026-06-19T00:43:44.213932" +} diff --git a/site/public/v1/smartphones/u12-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/u12-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..80dcfd87157 --- /dev/null +++ b/site/public/v1/smartphones/u12-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 1.5, + "camera": 5.1, + "battery": 7.5, + "display": 58.8, + "value": null +} diff --git a/site/public/v1/smartphones/u12-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/u12-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..ab7c42c02b9 --- /dev/null +++ b/site/public/v1/smartphones/u12-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 769, + "slug": "u12-dual-sim-td-lte-cn-128gb", + "name": "U12+ Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 92, + "slug": "htc", + "name": "HTC", + "country": "TW", + "url": "/v1/brands/htc" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "Color PVA TFT LCD display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 1.5, + "camera": 5.1, + "battery": 7.5, + "display": 58.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.213932", + "updated_at": "2026-06-19T00:43:44.213932" +} diff --git a/site/public/v1/smartphones/u12-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/u12-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..80dcfd87157 --- /dev/null +++ b/site/public/v1/smartphones/u12-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 1.5, + "camera": 5.1, + "battery": 7.5, + "display": 58.8, + "value": null +} diff --git a/site/public/v1/smartphones/u12-life-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/u12-life-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..c335be90c6b --- /dev/null +++ b/site/public/v1/smartphones/u12-life-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 770, + "slug": "u12-life-global-dual-sim-td-lte", + "name": "U12 life Global Dual SIM TD-LTE", + "brand": { + "id": 92, + "slug": "htc", + "name": "HTC", + "country": "TW", + "url": "/v1/brands/htc" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3600, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 0.0, + "camera": 6.4, + "battery": 9.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.214933", + "updated_at": "2026-06-19T00:43:44.214933" +} diff --git a/site/public/v1/smartphones/u12-life-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/u12-life-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..5b3393c49ad --- /dev/null +++ b/site/public/v1/smartphones/u12-life-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 0.0, + "camera": 6.4, + "battery": 9.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/u12-mayday-limited-edition-dual-sim-td-lte/index.json b/site/public/v1/smartphones/u12-mayday-limited-edition-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..95fe138001a --- /dev/null +++ b/site/public/v1/smartphones/u12-mayday-limited-edition-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 771, + "slug": "u12-mayday-limited-edition-dual-sim-td-lte", + "name": "U12+ Mayday Limited Edition Dual SIM TD-LTE", + "brand": { + "id": 92, + "slug": "htc", + "name": "HTC", + "country": "TW", + "url": "/v1/brands/htc" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-07-17", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "Color PVA TFT LCD display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 1.5, + "camera": 5.1, + "battery": 7.5, + "display": 58.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.214933", + "updated_at": "2026-06-19T00:43:44.214933" +} diff --git a/site/public/v1/smartphones/u12-mayday-limited-edition-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/u12-mayday-limited-edition-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..80dcfd87157 --- /dev/null +++ b/site/public/v1/smartphones/u12-mayday-limited-edition-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 1.5, + "camera": 5.1, + "battery": 7.5, + "display": 58.8, + "value": null +} diff --git a/site/public/v1/smartphones/u12-td-lte-jp-128gb/index.json b/site/public/v1/smartphones/u12-td-lte-jp-128gb/index.json new file mode 100644 index 00000000000..45e68fa1e2e --- /dev/null +++ b/site/public/v1/smartphones/u12-td-lte-jp-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 772, + "slug": "u12-td-lte-jp-128gb", + "name": "U12+ TD-LTE JP 128GB", + "brand": { + "id": 92, + "slug": "htc", + "name": "HTC", + "country": "TW", + "url": "/v1/brands/htc" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "Color PVA TFT LCD display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 1.5, + "camera": 5.1, + "battery": 7.5, + "display": 58.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.214933", + "updated_at": "2026-06-19T00:43:44.214933" +} diff --git a/site/public/v1/smartphones/u12-td-lte-jp-128gb/score/index.json b/site/public/v1/smartphones/u12-td-lte-jp-128gb/score/index.json new file mode 100644 index 00000000000..80dcfd87157 --- /dev/null +++ b/site/public/v1/smartphones/u12-td-lte-jp-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 1.5, + "camera": 5.1, + "battery": 7.5, + "display": 58.8, + "value": null +} diff --git a/site/public/v1/smartphones/u12-td-lte-na-128gb/index.json b/site/public/v1/smartphones/u12-td-lte-na-128gb/index.json new file mode 100644 index 00000000000..a6c41e0c2cb --- /dev/null +++ b/site/public/v1/smartphones/u12-td-lte-na-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 773, + "slug": "u12-td-lte-na-128gb", + "name": "U12+ TD-LTE NA 128GB", + "brand": { + "id": 92, + "slug": "htc", + "name": "HTC", + "country": "TW", + "url": "/v1/brands/htc" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-06-28", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "Color PVA TFT LCD display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 1.5, + "camera": 5.1, + "battery": 7.5, + "display": 58.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.214933", + "updated_at": "2026-06-19T00:43:44.214933" +} diff --git a/site/public/v1/smartphones/u12-td-lte-na-128gb/score/index.json b/site/public/v1/smartphones/u12-td-lte-na-128gb/score/index.json new file mode 100644 index 00000000000..80dcfd87157 --- /dev/null +++ b/site/public/v1/smartphones/u12-td-lte-na-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 1.5, + "camera": 5.1, + "battery": 7.5, + "display": 58.8, + "value": null +} diff --git a/site/public/v1/smartphones/u12-td-lte-na-64gb/index.json b/site/public/v1/smartphones/u12-td-lte-na-64gb/index.json new file mode 100644 index 00000000000..95c64809898 --- /dev/null +++ b/site/public/v1/smartphones/u12-td-lte-na-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 774, + "slug": "u12-td-lte-na-64gb", + "name": "U12+ TD-LTE NA 64GB", + "brand": { + "id": 92, + "slug": "htc", + "name": "HTC", + "country": "TW", + "url": "/v1/brands/htc" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-06-28", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "Color PVA TFT LCD display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 1.5, + "camera": 5.1, + "battery": 7.5, + "display": 58.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.214933", + "updated_at": "2026-06-19T00:43:44.214933" +} diff --git a/site/public/v1/smartphones/u12-td-lte-na-64gb/score/index.json b/site/public/v1/smartphones/u12-td-lte-na-64gb/score/index.json new file mode 100644 index 00000000000..80dcfd87157 --- /dev/null +++ b/site/public/v1/smartphones/u12-td-lte-na-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 1.5, + "camera": 5.1, + "battery": 7.5, + "display": 58.8, + "value": null +} diff --git a/site/public/v1/smartphones/u19e-global-dual-sim-td-lte/index.json b/site/public/v1/smartphones/u19e-global-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..93cc42d632a --- /dev/null +++ b/site/public/v1/smartphones/u19e-global-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 781, + "slug": "u19e-global-dual-sim-td-lte", + "name": "U19e Global Dual SIM TD-LTE", + "brand": { + "id": 92, + "slug": "htc", + "name": "HTC", + "country": "TW", + "url": "/v1/brands/htc" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3930, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 21.5, + "camera": 5.1, + "battery": 14.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.215933", + "updated_at": "2026-06-19T00:43:44.215933" +} diff --git a/site/public/v1/smartphones/u19e-global-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/u19e-global-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..0e49649ab1d --- /dev/null +++ b/site/public/v1/smartphones/u19e-global-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 21.5, + "camera": 5.1, + "battery": 14.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/u20-5g-dual-sim-lte-global/index.json b/site/public/v1/smartphones/u20-5g-dual-sim-lte-global/index.json new file mode 100644 index 00000000000..6e4b059a779 --- /dev/null +++ b/site/public/v1/smartphones/u20-5g-dual-sim-lte-global/index.json @@ -0,0 +1,76 @@ +{ + "id": 791, + "slug": "u20-5g-dual-sim-lte-global", + "name": "U20 5G Dual SIM LTE Global", + "brand": { + "id": 92, + "slug": "htc", + "name": "HTC", + "country": "TW", + "url": "/v1/brands/htc" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-08-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 387 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 215.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 43.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.217933", + "updated_at": "2026-06-19T00:43:44.217933" +} diff --git a/site/public/v1/smartphones/u20-5g-dual-sim-lte-global/score/index.json b/site/public/v1/smartphones/u20-5g-dual-sim-lte-global/score/index.json new file mode 100644 index 00000000000..5a90ac972be --- /dev/null +++ b/site/public/v1/smartphones/u20-5g-dual-sim-lte-global/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 43.7, + "value": null +} diff --git a/site/public/v1/smartphones/u30-dual-sim-td-lte/index.json b/site/public/v1/smartphones/u30-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..763c6772097 --- /dev/null +++ b/site/public/v1/smartphones/u30-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 631, + "slug": "u30-dual-sim-td-lte", + "name": "U30 Dual SIM TD-LTE", + "brand": { + "id": 14, + "slug": "hisense", + "name": "Hisense", + "country": "CN", + "url": "/v1/brands/hisense" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-01-09", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 21.5 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.8, + "performance": 1.5, + "camera": 5.3, + "battery": 22.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.192938", + "updated_at": "2026-06-19T00:43:44.192938" +} diff --git a/site/public/v1/smartphones/u30-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/u30-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..accbca2099d --- /dev/null +++ b/site/public/v1/smartphones/u30-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.8, + "performance": 1.5, + "camera": 5.3, + "battery": 22.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/urbano-v04-wimax-2-kyv45/index.json b/site/public/v1/smartphones/urbano-v04-wimax-2-kyv45/index.json new file mode 100644 index 00000000000..f511aea380c --- /dev/null +++ b/site/public/v1/smartphones/urbano-v04-wimax-2-kyv45/index.json @@ -0,0 +1,76 @@ +{ + "id": 1410, + "slug": "urbano-v04-wimax-2-kyv45", + "name": "Urbano V04 WiMAX 2+ KYV45", + "brand": { + "id": 71, + "slug": "kyocera", + "name": "Kyocera", + "country": "JP", + "url": "/v1/brands/kyocera" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2019-02-08", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.7, + "resolution": "1080x2160", + "type": "Color TN-TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 2800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": 0.0, + "camera": 6.4, + "battery": 0.0, + "display": 47.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.329606", + "updated_at": "2026-06-19T00:43:44.329606" +} diff --git a/site/public/v1/smartphones/urbano-v04-wimax-2-kyv45/score/index.json b/site/public/v1/smartphones/urbano-v04-wimax-2-kyv45/score/index.json new file mode 100644 index 00000000000..086020b1550 --- /dev/null +++ b/site/public/v1/smartphones/urbano-v04-wimax-2-kyv45/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": 0.0, + "camera": 6.4, + "battery": 0.0, + "display": 47.4, + "value": null +} diff --git a/site/public/v1/smartphones/us998r-v30s-thinq-td-lte-us/index.json b/site/public/v1/smartphones/us998r-v30s-thinq-td-lte-us/index.json new file mode 100644 index 00000000000..614da085e58 --- /dev/null +++ b/site/public/v1/smartphones/us998r-v30s-thinq-td-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 1591, + "slug": "us998r-v30s-thinq-td-lte-us", + "name": "US998R V30S ThinQ TD-LTE US", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 122, + "slug": "snapdragon-835", + "name": "Snapdragon 835", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 540", + "url": "/v1/socs/snapdragon-835" + }, + "release_date": "2018-06-03", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 158.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 24.6, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.350605", + "updated_at": "2026-06-19T00:43:44.350605" +} diff --git a/site/public/v1/smartphones/us998r-v30s-thinq-td-lte-us/score/index.json b/site/public/v1/smartphones/us998r-v30s-thinq-td-lte-us/score/index.json new file mode 100644 index 00000000000..819cbcc32f0 --- /dev/null +++ b/site/public/v1/smartphones/us998r-v30s-thinq-td-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 24.6, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null +} diff --git a/site/public/v1/smartphones/v0210ww-vivo-xl-3-plus-dual-sim-lte/index.json b/site/public/v1/smartphones/v0210ww-vivo-xl-3-plus-dual-sim-lte/index.json new file mode 100644 index 00000000000..b0c12e4ab86 --- /dev/null +++ b/site/public/v1/smartphones/v0210ww-vivo-xl-3-plus-dual-sim-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 470, + "slug": "v0210ww-vivo-xl-3-plus-dual-sim-lte", + "name": "V0210WW Vivo XL 3 Plus Dual SIM LTE", + "brand": { + "id": 104, + "slug": "blu", + "name": "BLU Products", + "country": "US", + "url": "/v1/brands/blu" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-04-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.0, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.0", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.2, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.172423", + "updated_at": "2026-06-19T00:43:44.172423" +} diff --git a/site/public/v1/smartphones/v0210ww-vivo-xl-3-plus-dual-sim-lte/score/index.json b/site/public/v1/smartphones/v0210ww-vivo-xl-3-plus-dual-sim-lte/score/index.json new file mode 100644 index 00000000000..97a903b7df9 --- /dev/null +++ b/site/public/v1/smartphones/v0210ww-vivo-xl-3-plus-dual-sim-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.2, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/v0350ww-vivo-xl-4-dual-sim-lte/index.json b/site/public/v1/smartphones/v0350ww-vivo-xl-4-dual-sim-lte/index.json new file mode 100644 index 00000000000..f8a7e14a43c --- /dev/null +++ b/site/public/v1/smartphones/v0350ww-vivo-xl-4-dual-sim-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 471, + "slug": "v0350ww-vivo-xl-4-dual-sim-lte", + "name": "V0350WW Vivo XL 4 Dual SIM LTE", + "brand": { + "id": 104, + "slug": "blu", + "name": "BLU Products", + "country": "US", + "url": "/v1/brands/blu" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-12-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 12.8 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.2, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.172423", + "updated_at": "2026-06-19T00:43:44.172423" +} diff --git a/site/public/v1/smartphones/v0350ww-vivo-xl-4-dual-sim-lte/score/index.json b/site/public/v1/smartphones/v0350ww-vivo-xl-4-dual-sim-lte/score/index.json new file mode 100644 index 00000000000..5abd11a47c5 --- /dev/null +++ b/site/public/v1/smartphones/v0350ww-vivo-xl-4-dual-sim-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.2, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/v1010-blade-v10-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/v1010-blade-v10-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..5c2defd37ee --- /dev/null +++ b/site/public/v1/smartphones/v1010-blade-v10-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 6447, + "slug": "v1010-blade-v10-dual-sim-td-lte-cn-128gb", + "name": "V1010 Blade V10 Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3200, + "charging_wired_w": 8.0, + "charging_wireless_w": null, + "weight_g": 154.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 6.3, + "battery": 3.0, + "display": 45.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.011826", + "updated_at": "2026-06-19T00:43:45.011826" +} diff --git a/site/public/v1/smartphones/v1010-blade-v10-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/v1010-blade-v10-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..77ffc560f23 --- /dev/null +++ b/site/public/v1/smartphones/v1010-blade-v10-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 6.3, + "battery": 3.0, + "display": 45.0, + "value": null +} diff --git a/site/public/v1/smartphones/v1010-blade-v10-dual-sim-td-lte-cn-32gb/index.json b/site/public/v1/smartphones/v1010-blade-v10-dual-sim-td-lte-cn-32gb/index.json new file mode 100644 index 00000000000..4d0472ed03e --- /dev/null +++ b/site/public/v1/smartphones/v1010-blade-v10-dual-sim-td-lte-cn-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 6448, + "slug": "v1010-blade-v10-dual-sim-td-lte-cn-32gb", + "name": "V1010 Blade V10 Dual SIM TD-LTE CN 32GB", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-03-12", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3200, + "charging_wired_w": 8.0, + "charging_wireless_w": null, + "weight_g": 154.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 6.3, + "battery": 3.0, + "display": 45.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.011826", + "updated_at": "2026-06-19T00:43:45.011826" +} diff --git a/site/public/v1/smartphones/v1010-blade-v10-dual-sim-td-lte-cn-32gb/score/index.json b/site/public/v1/smartphones/v1010-blade-v10-dual-sim-td-lte-cn-32gb/score/index.json new file mode 100644 index 00000000000..77ffc560f23 --- /dev/null +++ b/site/public/v1/smartphones/v1010-blade-v10-dual-sim-td-lte-cn-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 6.3, + "battery": 3.0, + "display": 45.0, + "value": null +} diff --git a/site/public/v1/smartphones/v1010-blade-v10-dual-sim-td-lte-cn-64gb/index.json b/site/public/v1/smartphones/v1010-blade-v10-dual-sim-td-lte-cn-64gb/index.json new file mode 100644 index 00000000000..66cedf2d94a --- /dev/null +++ b/site/public/v1/smartphones/v1010-blade-v10-dual-sim-td-lte-cn-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 6449, + "slug": "v1010-blade-v10-dual-sim-td-lte-cn-64gb", + "name": "V1010 Blade V10 Dual SIM TD-LTE CN 64GB", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-03-12", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3200, + "charging_wired_w": 8.0, + "charging_wireless_w": null, + "weight_g": 154.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 6.3, + "battery": 3.0, + "display": 45.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.011826", + "updated_at": "2026-06-19T00:43:45.011826" +} diff --git a/site/public/v1/smartphones/v1010-blade-v10-dual-sim-td-lte-cn-64gb/score/index.json b/site/public/v1/smartphones/v1010-blade-v10-dual-sim-td-lte-cn-64gb/score/index.json new file mode 100644 index 00000000000..77ffc560f23 --- /dev/null +++ b/site/public/v1/smartphones/v1010-blade-v10-dual-sim-td-lte-cn-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 6.3, + "battery": 3.0, + "display": 45.0, + "value": null +} diff --git a/site/public/v1/smartphones/v1010-blade-v10-global-dual-sim-td-lte-64gb-blade-10/index.json b/site/public/v1/smartphones/v1010-blade-v10-global-dual-sim-td-lte-64gb-blade-10/index.json new file mode 100644 index 00000000000..55bc75bdd8b --- /dev/null +++ b/site/public/v1/smartphones/v1010-blade-v10-global-dual-sim-td-lte-64gb-blade-10/index.json @@ -0,0 +1,76 @@ +{ + "id": 6450, + "slug": "v1010-blade-v10-global-dual-sim-td-lte-64gb-blade-10", + "name": "V1010 Blade V10 Global Dual SIM TD-LTE 64GB / Blade 10", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3200, + "charging_wired_w": 8.0, + "charging_wireless_w": null, + "weight_g": 154.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 6.3, + "battery": 3.0, + "display": 45.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.011826", + "updated_at": "2026-06-19T00:43:45.011826" +} diff --git a/site/public/v1/smartphones/v1010-blade-v10-global-dual-sim-td-lte-64gb-blade-10/score/index.json b/site/public/v1/smartphones/v1010-blade-v10-global-dual-sim-td-lte-64gb-blade-10/score/index.json new file mode 100644 index 00000000000..77ffc560f23 --- /dev/null +++ b/site/public/v1/smartphones/v1010-blade-v10-global-dual-sim-td-lte-64gb-blade-10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 6.3, + "battery": 3.0, + "display": 45.0, + "value": null +} diff --git a/site/public/v1/smartphones/v1050-blade-20-smart-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/v1050-blade-20-smart-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..d95b1f61238 --- /dev/null +++ b/site/public/v1/smartphones/v1050-blade-20-smart-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 6451, + "slug": "v1050-blade-20-smart-td-lte-cn-128gb", + "name": "V1050 Blade 20 Smart TD-LTE CN 128GB", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2019-10-28", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.49, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 265 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.011826", + "updated_at": "2026-06-19T00:43:45.011826" +} diff --git a/site/public/v1/smartphones/v1050-blade-20-smart-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/v1050-blade-20-smart-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..841c6807555 --- /dev/null +++ b/site/public/v1/smartphones/v1050-blade-20-smart-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.0, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/v300k-v30-signature-edition-td-lte-256gb/index.json b/site/public/v1/smartphones/v300k-v30-signature-edition-td-lte-256gb/index.json new file mode 100644 index 00000000000..8fd5424d087 --- /dev/null +++ b/site/public/v1/smartphones/v300k-v30-signature-edition-td-lte-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1523, + "slug": "v300k-v30-signature-edition-td-lte-256gb", + "name": "V300K V30 Signature Edition TD-LTE 256GB", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 122, + "slug": "snapdragon-835", + "name": "Snapdragon 835", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 540", + "url": "/v1/socs/snapdragon-835" + }, + "release_date": "2017-12-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 24.6, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.342605", + "updated_at": "2026-06-19T00:43:44.342605" +} diff --git a/site/public/v1/smartphones/v300k-v30-signature-edition-td-lte-256gb/score/index.json b/site/public/v1/smartphones/v300k-v30-signature-edition-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..819cbcc32f0 --- /dev/null +++ b/site/public/v1/smartphones/v300k-v30-signature-edition-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 24.6, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null +} diff --git a/site/public/v1/smartphones/v300k-v30-td-lte/index.json b/site/public/v1/smartphones/v300k-v30-td-lte/index.json new file mode 100644 index 00000000000..042d23be771 --- /dev/null +++ b/site/public/v1/smartphones/v300k-v30-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 1524, + "slug": "v300k-v30-td-lte", + "name": "V300K V30+ TD-LTE", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 122, + "slug": "snapdragon-835", + "name": "Snapdragon 835", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 540", + "url": "/v1/socs/snapdragon-835" + }, + "release_date": "2017-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 158.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 23.1, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.342605", + "updated_at": "2026-06-19T00:43:44.342605" +} diff --git a/site/public/v1/smartphones/v300k-v30-td-lte/score/index.json b/site/public/v1/smartphones/v300k-v30-td-lte/score/index.json new file mode 100644 index 00000000000..23aef9f47b7 --- /dev/null +++ b/site/public/v1/smartphones/v300k-v30-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 23.1, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null +} diff --git a/site/public/v1/smartphones/v300kr-v30s-thinq-td-lte/index.json b/site/public/v1/smartphones/v300kr-v30s-thinq-td-lte/index.json new file mode 100644 index 00000000000..c0ea07d78c6 --- /dev/null +++ b/site/public/v1/smartphones/v300kr-v30s-thinq-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 1592, + "slug": "v300kr-v30s-thinq-td-lte", + "name": "V300KR V30S ThinQ TD-LTE", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 122, + "slug": "snapdragon-835", + "name": "Snapdragon 835", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 540", + "url": "/v1/socs/snapdragon-835" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 158.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 24.6, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.350605", + "updated_at": "2026-06-19T00:43:44.350605" +} diff --git a/site/public/v1/smartphones/v300kr-v30s-thinq-td-lte/score/index.json b/site/public/v1/smartphones/v300kr-v30s-thinq-td-lte/score/index.json new file mode 100644 index 00000000000..819cbcc32f0 --- /dev/null +++ b/site/public/v1/smartphones/v300kr-v30s-thinq-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 24.6, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null +} diff --git a/site/public/v1/smartphones/v300kw-v30s-thinq-td-lte/index.json b/site/public/v1/smartphones/v300kw-v30s-thinq-td-lte/index.json new file mode 100644 index 00000000000..9a864655a62 --- /dev/null +++ b/site/public/v1/smartphones/v300kw-v30s-thinq-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 1593, + "slug": "v300kw-v30s-thinq-td-lte", + "name": "V300KW V30S+ ThinQ TD-LTE", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 122, + "slug": "snapdragon-835", + "name": "Snapdragon 835", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 540", + "url": "/v1/socs/snapdragon-835" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 158.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 24.6, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.350605", + "updated_at": "2026-06-19T00:43:44.350605" +} diff --git a/site/public/v1/smartphones/v300kw-v30s-thinq-td-lte/score/index.json b/site/public/v1/smartphones/v300kw-v30s-thinq-td-lte/score/index.json new file mode 100644 index 00000000000..819cbcc32f0 --- /dev/null +++ b/site/public/v1/smartphones/v300kw-v30s-thinq-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 24.6, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null +} diff --git a/site/public/v1/smartphones/v300l-v30-td-lte/index.json b/site/public/v1/smartphones/v300l-v30-td-lte/index.json new file mode 100644 index 00000000000..53fa0307361 --- /dev/null +++ b/site/public/v1/smartphones/v300l-v30-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 1525, + "slug": "v300l-v30-td-lte", + "name": "V300L V30+ TD-LTE", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 122, + "slug": "snapdragon-835", + "name": "Snapdragon 835", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 540", + "url": "/v1/socs/snapdragon-835" + }, + "release_date": "2017-09-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 158.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 23.1, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.342605", + "updated_at": "2026-06-19T00:43:44.342605" +} diff --git a/site/public/v1/smartphones/v300l-v30-td-lte/score/index.json b/site/public/v1/smartphones/v300l-v30-td-lte/score/index.json new file mode 100644 index 00000000000..23aef9f47b7 --- /dev/null +++ b/site/public/v1/smartphones/v300l-v30-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.2, + "performance": 23.1, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null +} diff --git a/site/public/v1/smartphones/v300l-v30s-thinq-td-lte/index.json b/site/public/v1/smartphones/v300l-v30s-thinq-td-lte/index.json new file mode 100644 index 00000000000..63927cee605 --- /dev/null +++ b/site/public/v1/smartphones/v300l-v30s-thinq-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 1594, + "slug": "v300l-v30s-thinq-td-lte", + "name": "V300L V30S ThinQ TD-LTE", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 122, + "slug": "snapdragon-835", + "name": "Snapdragon 835", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 540", + "url": "/v1/socs/snapdragon-835" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 158.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 24.6, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.351606", + "updated_at": "2026-06-19T00:43:44.351606" +} diff --git a/site/public/v1/smartphones/v300l-v30s-thinq-td-lte/score/index.json b/site/public/v1/smartphones/v300l-v30s-thinq-td-lte/score/index.json new file mode 100644 index 00000000000..819cbcc32f0 --- /dev/null +++ b/site/public/v1/smartphones/v300l-v30s-thinq-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 24.6, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null +} diff --git a/site/public/v1/smartphones/v300lw-v30s-thinq-td-lte/index.json b/site/public/v1/smartphones/v300lw-v30s-thinq-td-lte/index.json new file mode 100644 index 00000000000..ac53b943a67 --- /dev/null +++ b/site/public/v1/smartphones/v300lw-v30s-thinq-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 1595, + "slug": "v300lw-v30s-thinq-td-lte", + "name": "V300LW V30S+ ThinQ TD-LTE", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 122, + "slug": "snapdragon-835", + "name": "Snapdragon 835", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 540", + "url": "/v1/socs/snapdragon-835" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 158.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 24.6, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.351606", + "updated_at": "2026-06-19T00:43:44.351606" +} diff --git a/site/public/v1/smartphones/v300lw-v30s-thinq-td-lte/score/index.json b/site/public/v1/smartphones/v300lw-v30s-thinq-td-lte/score/index.json new file mode 100644 index 00000000000..819cbcc32f0 --- /dev/null +++ b/site/public/v1/smartphones/v300lw-v30s-thinq-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 24.6, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null +} diff --git a/site/public/v1/smartphones/v300s-v30-signature-edition-td-lte-256gb/index.json b/site/public/v1/smartphones/v300s-v30-signature-edition-td-lte-256gb/index.json new file mode 100644 index 00000000000..eeb8d6e2a4e --- /dev/null +++ b/site/public/v1/smartphones/v300s-v30-signature-edition-td-lte-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1526, + "slug": "v300s-v30-signature-edition-td-lte-256gb", + "name": "V300S V30 Signature Edition TD-LTE 256GB", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 122, + "slug": "snapdragon-835", + "name": "Snapdragon 835", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 540", + "url": "/v1/socs/snapdragon-835" + }, + "release_date": "2017-12-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 24.6, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.342605", + "updated_at": "2026-06-19T00:43:44.342605" +} diff --git a/site/public/v1/smartphones/v300s-v30-signature-edition-td-lte-256gb/score/index.json b/site/public/v1/smartphones/v300s-v30-signature-edition-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..819cbcc32f0 --- /dev/null +++ b/site/public/v1/smartphones/v300s-v30-signature-edition-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 24.6, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null +} diff --git a/site/public/v1/smartphones/v300s-v30s-thinq-td-lte/index.json b/site/public/v1/smartphones/v300s-v30s-thinq-td-lte/index.json new file mode 100644 index 00000000000..a2124c9a6ca --- /dev/null +++ b/site/public/v1/smartphones/v300s-v30s-thinq-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 1596, + "slug": "v300s-v30s-thinq-td-lte", + "name": "V300S V30S ThinQ TD-LTE", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 122, + "slug": "snapdragon-835", + "name": "Snapdragon 835", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 540", + "url": "/v1/socs/snapdragon-835" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 158.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 24.6, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.351606", + "updated_at": "2026-06-19T00:43:44.351606" +} diff --git a/site/public/v1/smartphones/v300s-v30s-thinq-td-lte/score/index.json b/site/public/v1/smartphones/v300s-v30s-thinq-td-lte/score/index.json new file mode 100644 index 00000000000..819cbcc32f0 --- /dev/null +++ b/site/public/v1/smartphones/v300s-v30s-thinq-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 24.6, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null +} diff --git a/site/public/v1/smartphones/v300sw-v30s-thinq-td-lte/index.json b/site/public/v1/smartphones/v300sw-v30s-thinq-td-lte/index.json new file mode 100644 index 00000000000..aedd0b1834d --- /dev/null +++ b/site/public/v1/smartphones/v300sw-v30s-thinq-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 1597, + "slug": "v300sw-v30s-thinq-td-lte", + "name": "V300SW V30S+ ThinQ TD-LTE", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 122, + "slug": "snapdragon-835", + "name": "Snapdragon 835", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 540", + "url": "/v1/socs/snapdragon-835" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 158.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 24.6, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.351606", + "updated_at": "2026-06-19T00:43:44.351606" +} diff --git a/site/public/v1/smartphones/v300sw-v30s-thinq-td-lte/score/index.json b/site/public/v1/smartphones/v300sw-v30s-thinq-td-lte/score/index.json new file mode 100644 index 00000000000..819cbcc32f0 --- /dev/null +++ b/site/public/v1/smartphones/v300sw-v30s-thinq-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 24.6, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null +} diff --git a/site/public/v1/smartphones/v350awm-v35-thinq-td-lte-us-lmv350awm-lmv350awa-lmv350aws/index.json b/site/public/v1/smartphones/v350awm-v35-thinq-td-lte-us-lmv350awm-lmv350awa-lmv350aws/index.json new file mode 100644 index 00000000000..851cb5ff4ea --- /dev/null +++ b/site/public/v1/smartphones/v350awm-v35-thinq-td-lte-us-lmv350awm-lmv350awa-lmv350aws/index.json @@ -0,0 +1,76 @@ +{ + "id": 1598, + "slug": "v350awm-v35-thinq-td-lte-us-lmv350awm-lmv350awa-lmv350aws", + "name": "V350AWM V35 ThinQ TD-LTE US / LMV350AWM / LMV350AWA / LMV350AWS", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 157.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 1.5, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.351606", + "updated_at": "2026-06-19T00:43:44.351606" +} diff --git a/site/public/v1/smartphones/v350awm-v35-thinq-td-lte-us-lmv350awm-lmv350awa-lmv350aws/score/index.json b/site/public/v1/smartphones/v350awm-v35-thinq-td-lte-us-lmv350awm-lmv350awa-lmv350aws/score/index.json new file mode 100644 index 00000000000..3c34fce862b --- /dev/null +++ b/site/public/v1/smartphones/v350awm-v35-thinq-td-lte-us-lmv350awm-lmv350awa-lmv350aws/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 1.5, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null +} diff --git a/site/public/v1/smartphones/v350n-v35-signature-edition-td-lte-kr-lmv350nos/index.json b/site/public/v1/smartphones/v350n-v35-signature-edition-td-lte-kr-lmv350nos/index.json new file mode 100644 index 00000000000..6d10b856931 --- /dev/null +++ b/site/public/v1/smartphones/v350n-v35-signature-edition-td-lte-kr-lmv350nos/index.json @@ -0,0 +1,76 @@ +{ + "id": 1599, + "slug": "v350n-v35-signature-edition-td-lte-kr-lmv350nos", + "name": "V350N V35 Signature Edition TD-LTE KR / LMV350NOS", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-08-13", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 187.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 1.5, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.351606", + "updated_at": "2026-06-19T00:43:44.351606" +} diff --git a/site/public/v1/smartphones/v350n-v35-signature-edition-td-lte-kr-lmv350nos/score/index.json b/site/public/v1/smartphones/v350n-v35-signature-edition-td-lte-kr-lmv350nos/score/index.json new file mode 100644 index 00000000000..3c34fce862b --- /dev/null +++ b/site/public/v1/smartphones/v350n-v35-signature-edition-td-lte-kr-lmv350nos/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 1.5, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null +} diff --git a/site/public/v1/smartphones/v350n-v35-thinq-td-lte-kr-lmv350no/index.json b/site/public/v1/smartphones/v350n-v35-thinq-td-lte-kr-lmv350no/index.json new file mode 100644 index 00000000000..1a93fa87bf5 --- /dev/null +++ b/site/public/v1/smartphones/v350n-v35-thinq-td-lte-kr-lmv350no/index.json @@ -0,0 +1,76 @@ +{ + "id": 1600, + "slug": "v350n-v35-thinq-td-lte-kr-lmv350no", + "name": "V350N V35 ThinQ TD-LTE KR / LMV350NO", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 157.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 1.5, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.351606", + "updated_at": "2026-06-19T00:43:44.351606" +} diff --git a/site/public/v1/smartphones/v350n-v35-thinq-td-lte-kr-lmv350no/score/index.json b/site/public/v1/smartphones/v350n-v35-thinq-td-lte-kr-lmv350no/score/index.json new file mode 100644 index 00000000000..3c34fce862b --- /dev/null +++ b/site/public/v1/smartphones/v350n-v35-thinq-td-lte-kr-lmv350no/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 1.5, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null +} diff --git a/site/public/v1/smartphones/v350ulm-v35-thinq-td-lte-us-lmv350ulm-lmv350ula-lmv350uls/index.json b/site/public/v1/smartphones/v350ulm-v35-thinq-td-lte-us-lmv350ulm-lmv350ula-lmv350uls/index.json new file mode 100644 index 00000000000..9f6e13d53d6 --- /dev/null +++ b/site/public/v1/smartphones/v350ulm-v35-thinq-td-lte-us-lmv350ulm-lmv350ula-lmv350uls/index.json @@ -0,0 +1,76 @@ +{ + "id": 1601, + "slug": "v350ulm-v35-thinq-td-lte-us-lmv350ulm-lmv350ula-lmv350uls", + "name": "V350ULM V35 ThinQ TD-LTE US / LMV350ULM / LMV350ULA / LMV350ULS", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 157.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 1.5, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.351606", + "updated_at": "2026-06-19T00:43:44.351606" +} diff --git a/site/public/v1/smartphones/v350ulm-v35-thinq-td-lte-us-lmv350ulm-lmv350ula-lmv350uls/score/index.json b/site/public/v1/smartphones/v350ulm-v35-thinq-td-lte-us-lmv350ulm-lmv350ula-lmv350uls/score/index.json new file mode 100644 index 00000000000..3c34fce862b --- /dev/null +++ b/site/public/v1/smartphones/v350ulm-v35-thinq-td-lte-us-lmv350ulm-lmv350ula-lmv350uls/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 1.5, + "camera": 6.4, + "battery": 4.5, + "display": 58.7, + "value": null +} diff --git a/site/public/v1/smartphones/v405qa7-v40-thinq-td-lte-us/index.json b/site/public/v1/smartphones/v405qa7-v40-thinq-td-lte-us/index.json new file mode 100644 index 00000000000..c4a7e0949b5 --- /dev/null +++ b/site/public/v1/smartphones/v405qa7-v40-thinq-td-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 1602, + "slug": "v405qa7-v40-thinq-td-lte-us", + "name": "V405QA7 V40 ThinQ TD-LTE US", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 539 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 1.5, + "camera": 5.1, + "battery": 4.5, + "display": 58.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.352606", + "updated_at": "2026-06-19T00:43:44.352606" +} diff --git a/site/public/v1/smartphones/v405qa7-v40-thinq-td-lte-us/score/index.json b/site/public/v1/smartphones/v405qa7-v40-thinq-td-lte-us/score/index.json new file mode 100644 index 00000000000..f4554eda919 --- /dev/null +++ b/site/public/v1/smartphones/v405qa7-v40-thinq-td-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 1.5, + "camera": 5.1, + "battery": 4.5, + "display": 58.9, + "value": null +} diff --git a/site/public/v1/smartphones/v405tab-v40-thinq-td-lte-us-v405ta/index.json b/site/public/v1/smartphones/v405tab-v40-thinq-td-lte-us-v405ta/index.json new file mode 100644 index 00000000000..68707ab52f8 --- /dev/null +++ b/site/public/v1/smartphones/v405tab-v40-thinq-td-lte-us-v405ta/index.json @@ -0,0 +1,76 @@ +{ + "id": 1603, + "slug": "v405tab-v40-thinq-td-lte-us-v405ta", + "name": "V405TAB V40 ThinQ TD-LTE US / V405TA", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-10-19", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 539 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 1.5, + "camera": 5.1, + "battery": 4.5, + "display": 58.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.352606", + "updated_at": "2026-06-19T00:43:44.352606" +} diff --git a/site/public/v1/smartphones/v405tab-v40-thinq-td-lte-us-v405ta/score/index.json b/site/public/v1/smartphones/v405tab-v40-thinq-td-lte-us-v405ta/score/index.json new file mode 100644 index 00000000000..f4554eda919 --- /dev/null +++ b/site/public/v1/smartphones/v405tab-v40-thinq-td-lte-us-v405ta/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 1.5, + "camera": 5.1, + "battery": 4.5, + "display": 58.9, + "value": null +} diff --git a/site/public/v1/smartphones/v405ua-v40-thinq-sprint-td-lte-us/index.json b/site/public/v1/smartphones/v405ua-v40-thinq-sprint-td-lte-us/index.json new file mode 100644 index 00000000000..7a7ff7977a3 --- /dev/null +++ b/site/public/v1/smartphones/v405ua-v40-thinq-sprint-td-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 1604, + "slug": "v405ua-v40-thinq-sprint-td-lte-us", + "name": "V405UA V40 ThinQ Sprint TD-LTE US", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-10-18", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 539 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 1.5, + "camera": 5.1, + "battery": 4.5, + "display": 58.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.352606", + "updated_at": "2026-06-19T00:43:44.352606" +} diff --git a/site/public/v1/smartphones/v405ua-v40-thinq-sprint-td-lte-us/score/index.json b/site/public/v1/smartphones/v405ua-v40-thinq-sprint-td-lte-us/score/index.json new file mode 100644 index 00000000000..f4554eda919 --- /dev/null +++ b/site/public/v1/smartphones/v405ua-v40-thinq-sprint-td-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 1.5, + "camera": 5.1, + "battery": 4.5, + "display": 58.9, + "value": null +} diff --git a/site/public/v1/smartphones/v405ua-v40-thinq-td-lte-us/index.json b/site/public/v1/smartphones/v405ua-v40-thinq-td-lte-us/index.json new file mode 100644 index 00000000000..2ac0c1b96b9 --- /dev/null +++ b/site/public/v1/smartphones/v405ua-v40-thinq-td-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 1605, + "slug": "v405ua-v40-thinq-td-lte-us", + "name": "V405UA V40 ThinQ TD-LTE US", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-10-18", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 539 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 1.5, + "camera": 5.1, + "battery": 4.5, + "display": 58.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.352606", + "updated_at": "2026-06-19T00:43:44.352606" +} diff --git a/site/public/v1/smartphones/v405ua-v40-thinq-td-lte-us/score/index.json b/site/public/v1/smartphones/v405ua-v40-thinq-td-lte-us/score/index.json new file mode 100644 index 00000000000..f4554eda919 --- /dev/null +++ b/site/public/v1/smartphones/v405ua-v40-thinq-td-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 1.5, + "camera": 5.1, + "battery": 4.5, + "display": 58.9, + "value": null +} diff --git a/site/public/v1/smartphones/v405ua0-v40-thinq-usc-lte-a-us/index.json b/site/public/v1/smartphones/v405ua0-v40-thinq-usc-lte-a-us/index.json new file mode 100644 index 00000000000..d5c748433f3 --- /dev/null +++ b/site/public/v1/smartphones/v405ua0-v40-thinq-usc-lte-a-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 1606, + "slug": "v405ua0-v40-thinq-usc-lte-a-us", + "name": "V405UA0 V40 ThinQ USC LTE-A US", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-10-19", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 539 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 1.5, + "camera": 5.1, + "battery": 4.5, + "display": 58.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.352606", + "updated_at": "2026-06-19T00:43:44.352606" +} diff --git a/site/public/v1/smartphones/v405ua0-v40-thinq-usc-lte-a-us/score/index.json b/site/public/v1/smartphones/v405ua0-v40-thinq-usc-lte-a-us/score/index.json new file mode 100644 index 00000000000..f4554eda919 --- /dev/null +++ b/site/public/v1/smartphones/v405ua0-v40-thinq-usc-lte-a-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 1.5, + "camera": 5.1, + "battery": 4.5, + "display": 58.9, + "value": null +} diff --git a/site/public/v1/smartphones/v405uab-v40-thinq-vzw-lte-a-us/index.json b/site/public/v1/smartphones/v405uab-v40-thinq-vzw-lte-a-us/index.json new file mode 100644 index 00000000000..0b8277ed639 --- /dev/null +++ b/site/public/v1/smartphones/v405uab-v40-thinq-vzw-lte-a-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 1607, + "slug": "v405uab-v40-thinq-vzw-lte-a-us", + "name": "V405UAB V40 ThinQ VZW LTE-A US", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-10-19", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 539 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 1.5, + "camera": 5.1, + "battery": 4.5, + "display": 58.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.352606", + "updated_at": "2026-06-19T00:43:44.352606" +} diff --git a/site/public/v1/smartphones/v405uab-v40-thinq-vzw-lte-a-us/score/index.json b/site/public/v1/smartphones/v405uab-v40-thinq-vzw-lte-a-us/score/index.json new file mode 100644 index 00000000000..f4554eda919 --- /dev/null +++ b/site/public/v1/smartphones/v405uab-v40-thinq-vzw-lte-a-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.5, + "performance": 1.5, + "camera": 5.1, + "battery": 4.5, + "display": 58.9, + "value": null +} diff --git a/site/public/v1/smartphones/v409n-v40-thinq-td-lte-kr-128gb/index.json b/site/public/v1/smartphones/v409n-v40-thinq-td-lte-kr-128gb/index.json new file mode 100644 index 00000000000..693c1086b2b --- /dev/null +++ b/site/public/v1/smartphones/v409n-v40-thinq-td-lte-kr-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1608, + "slug": "v409n-v40-thinq-td-lte-kr-128gb", + "name": "V409N V40 ThinQ TD-LTE KR 128GB", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-10-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.4, + "performance": 1.5, + "camera": 5.1, + "battery": 4.5, + "display": 58.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.352606", + "updated_at": "2026-06-19T00:43:44.352606" +} diff --git a/site/public/v1/smartphones/v409n-v40-thinq-td-lte-kr-128gb/score/index.json b/site/public/v1/smartphones/v409n-v40-thinq-td-lte-kr-128gb/score/index.json new file mode 100644 index 00000000000..19770504ef4 --- /dev/null +++ b/site/public/v1/smartphones/v409n-v40-thinq-td-lte-kr-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.4, + "performance": 1.5, + "camera": 5.1, + "battery": 4.5, + "display": 58.7, + "value": null +} diff --git a/site/public/v1/smartphones/v5-plus/index.json b/site/public/v1/smartphones/v5-plus/index.json new file mode 100644 index 00000000000..5e44556bf3a --- /dev/null +++ b/site/public/v1/smartphones/v5-plus/index.json @@ -0,0 +1,70 @@ +{ + "id": 5034, + "slug": "v5-plus", + "name": "V5 Plus", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 114, + "slug": "snapdragon-625", + "name": "Snapdragon 625", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-625" + }, + "release_date": "2017-01-01", + "msrp_usd": 249, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.5 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "battery_mah": 3055, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 158.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 3.5, + "performance": null, + "camera": 6.3, + "battery": 0.8, + "display": null, + "value": 51.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.843776", + "updated_at": "2026-06-19T00:43:44.843776" +} diff --git a/site/public/v1/smartphones/v5-plus/score/index.json b/site/public/v1/smartphones/v5-plus/score/index.json new file mode 100644 index 00000000000..cf6e2a58e10 --- /dev/null +++ b/site/public/v1/smartphones/v5-plus/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 3.5, + "performance": null, + "camera": 6.3, + "battery": 0.8, + "display": null, + "value": 51.8 +} diff --git a/site/public/v1/smartphones/v500n-v50-thinq-5g-td-lte-kr/index.json b/site/public/v1/smartphones/v500n-v50-thinq-5g-td-lte-kr/index.json new file mode 100644 index 00000000000..3da89fcb890 --- /dev/null +++ b/site/public/v1/smartphones/v500n-v50-thinq-5g-td-lte-kr/index.json @@ -0,0 +1,76 @@ +{ + "id": 1715, + "slug": "v500n-v50-thinq-5g-td-lte-kr", + "name": "V500N V50 ThinQ 5G TD-LTE KR", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-04-19", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.4, + "resolution": "1440x3120", + "type": "AM-OLED display", + "ppi": 537 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 183.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 5.1, + "battery": 15.0, + "display": 58.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.366617", + "updated_at": "2026-06-19T00:43:44.366617" +} diff --git a/site/public/v1/smartphones/v500n-v50-thinq-5g-td-lte-kr/score/index.json b/site/public/v1/smartphones/v500n-v50-thinq-5g-td-lte-kr/score/index.json new file mode 100644 index 00000000000..161cb0fa10d --- /dev/null +++ b/site/public/v1/smartphones/v500n-v50-thinq-5g-td-lte-kr/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 5.1, + "battery": 15.0, + "display": 58.7, + "value": null +} diff --git a/site/public/v1/smartphones/v510n-v50s-thinq-5g-uw-td-lte-kr/index.json b/site/public/v1/smartphones/v510n-v50s-thinq-5g-uw-td-lte-kr/index.json new file mode 100644 index 00000000000..04b314572f7 --- /dev/null +++ b/site/public/v1/smartphones/v510n-v50s-thinq-5g-uw-td-lte-kr/index.json @@ -0,0 +1,76 @@ +{ + "id": 1716, + "slug": "v510n-v50s-thinq-5g-uw-td-lte-kr", + "name": "V510N V50S ThinQ 5G UW TD-LTE KR", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-10-19", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 32.3 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 3.0, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.367620", + "updated_at": "2026-06-19T00:43:44.367620" +} diff --git a/site/public/v1/smartphones/v510n-v50s-thinq-5g-uw-td-lte-kr/score/index.json b/site/public/v1/smartphones/v510n-v50s-thinq-5g-uw-td-lte-kr/score/index.json new file mode 100644 index 00000000000..44accb04092 --- /dev/null +++ b/site/public/v1/smartphones/v510n-v50s-thinq-5g-uw-td-lte-kr/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.1, + "performance": 3.0, + "camera": 5.1, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/v60-thinq-5g-td-lte-jp-a001lg/index.json b/site/public/v1/smartphones/v60-thinq-5g-td-lte-jp-a001lg/index.json new file mode 100644 index 00000000000..54844c16557 --- /dev/null +++ b/site/public/v1/smartphones/v60-thinq-5g-td-lte-jp-a001lg/index.json @@ -0,0 +1,76 @@ +{ + "id": 1837, + "slug": "v60-thinq-5g-td-lte-jp-a001lg", + "name": "V60 ThinQ 5G TD-LTE JP A001LG", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-05-11", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 218.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 3.0, + "camera": 21.5, + "battery": 31.9, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.381881", + "updated_at": "2026-06-19T00:43:44.381881" +} diff --git a/site/public/v1/smartphones/v60-thinq-5g-td-lte-jp-a001lg/score/index.json b/site/public/v1/smartphones/v60-thinq-5g-td-lte-jp-a001lg/score/index.json new file mode 100644 index 00000000000..3898f64e8b1 --- /dev/null +++ b/site/public/v1/smartphones/v60-thinq-5g-td-lte-jp-a001lg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 3.0, + "camera": 21.5, + "battery": 31.9, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/v60-thinq-5g-td-lte-jp-l-51a/index.json b/site/public/v1/smartphones/v60-thinq-5g-td-lte-jp-l-51a/index.json new file mode 100644 index 00000000000..1eeb624cae6 --- /dev/null +++ b/site/public/v1/smartphones/v60-thinq-5g-td-lte-jp-l-51a/index.json @@ -0,0 +1,76 @@ +{ + "id": 1838, + "slug": "v60-thinq-5g-td-lte-jp-l-51a", + "name": "V60 ThinQ 5G TD-LTE JP L-51A", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-05-11", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 10.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 218.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 3.0, + "camera": 21.5, + "battery": 31.9, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.381881", + "updated_at": "2026-06-19T00:43:44.381881" +} diff --git a/site/public/v1/smartphones/v60-thinq-5g-td-lte-jp-l-51a/score/index.json b/site/public/v1/smartphones/v60-thinq-5g-td-lte-jp-l-51a/score/index.json new file mode 100644 index 00000000000..3898f64e8b1 --- /dev/null +++ b/site/public/v1/smartphones/v60-thinq-5g-td-lte-jp-l-51a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 3.0, + "camera": 21.5, + "battery": 31.9, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/v8-pro-dual-sim-td-lte-cn-m813q/index.json b/site/public/v1/smartphones/v8-pro-dual-sim-td-lte-cn-m813q/index.json new file mode 100644 index 00000000000..24427151afd --- /dev/null +++ b/site/public/v1/smartphones/v8-pro-dual-sim-td-lte-cn-m813q/index.json @@ -0,0 +1,76 @@ +{ + "id": 1871, + "slug": "v8-pro-dual-sim-td-lte-cn-m813q", + "name": "V8 Pro Dual SIM TD-LTE CN M813Q", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-09-26", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": null, + "camera": 5.1, + "battery": 1.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.385882", + "updated_at": "2026-06-19T00:43:44.385882" +} diff --git a/site/public/v1/smartphones/v8-pro-dual-sim-td-lte-cn-m813q/score/index.json b/site/public/v1/smartphones/v8-pro-dual-sim-td-lte-cn-m813q/score/index.json new file mode 100644 index 00000000000..69eb90cebf2 --- /dev/null +++ b/site/public/v1/smartphones/v8-pro-dual-sim-td-lte-cn-m813q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": null, + "camera": 5.1, + "battery": 1.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/velvet-5g-td-lte-jp-l-52a/index.json b/site/public/v1/smartphones/velvet-5g-td-lte-jp-l-52a/index.json new file mode 100644 index 00000000000..3ccd93eb062 --- /dev/null +++ b/site/public/v1/smartphones/velvet-5g-td-lte-jp-l-52a/index.json @@ -0,0 +1,76 @@ +{ + "id": 1840, + "slug": "velvet-5g-td-lte-jp-l-52a", + "name": "Velvet 5G TD-LTE JP L-52A", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-12-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.8, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4300, + "charging_wired_w": 25.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 1.5, + "camera": 16.5, + "battery": 21.4, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.381881", + "updated_at": "2026-06-19T00:43:44.381881" +} diff --git a/site/public/v1/smartphones/velvet-5g-td-lte-jp-l-52a/score/index.json b/site/public/v1/smartphones/velvet-5g-td-lte-jp-l-52a/score/index.json new file mode 100644 index 00000000000..742d4aa97f3 --- /dev/null +++ b/site/public/v1/smartphones/velvet-5g-td-lte-jp-l-52a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.0, + "performance": 1.5, + "camera": 16.5, + "battery": 21.4, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/view-2-dual-sim-lte-a-m2124/index.json b/site/public/v1/smartphones/view-2-dual-sim-lte-a-m2124/index.json new file mode 100644 index 00000000000..981a4f44cd3 --- /dev/null +++ b/site/public/v1/smartphones/view-2-dual-sim-lte-a-m2124/index.json @@ -0,0 +1,76 @@ +{ + "id": 5584, + "slug": "view-2-dual-sim-lte-a-m2124", + "name": "View 2 Dual SIM LTE-A M2124", + "brand": { + "id": 56, + "slug": "wiko", + "name": "Wiko", + "country": "FR", + "url": "/v1/brands/wiko" + }, + "soc": { + "id": 113, + "slug": "snapdragon-435", + "name": "Snapdragon 435", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-435" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.0, + "resolution": "720x1528", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.1 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 153.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": null, + "camera": 5.4, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.911308", + "updated_at": "2026-06-19T00:43:44.911308" +} diff --git a/site/public/v1/smartphones/view-2-dual-sim-lte-a-m2124/score/index.json b/site/public/v1/smartphones/view-2-dual-sim-lte-a-m2124/score/index.json new file mode 100644 index 00000000000..bee32730969 --- /dev/null +++ b/site/public/v1/smartphones/view-2-dual-sim-lte-a-m2124/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": null, + "camera": 5.4, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/view-2-go-dual-sim-lte-a-m2354/index.json b/site/public/v1/smartphones/view-2-go-dual-sim-lte-a-m2354/index.json new file mode 100644 index 00000000000..f479a2f2420 --- /dev/null +++ b/site/public/v1/smartphones/view-2-go-dual-sim-lte-a-m2354/index.json @@ -0,0 +1,76 @@ +{ + "id": 5585, + "slug": "view-2-go-dual-sim-lte-a-m2354", + "name": "View 2 GO Dual SIM LTE-A M2354", + "brand": { + "id": 56, + "slug": "wiko", + "name": "Wiko", + "country": "FR", + "url": "/v1/brands/wiko" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-08-31", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.93, + "resolution": "720x1512", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.912308", + "updated_at": "2026-06-19T00:43:44.912308" +} diff --git a/site/public/v1/smartphones/view-2-go-dual-sim-lte-a-m2354/score/index.json b/site/public/v1/smartphones/view-2-go-dual-sim-lte-a-m2354/score/index.json new file mode 100644 index 00000000000..7f209133483 --- /dev/null +++ b/site/public/v1/smartphones/view-2-go-dual-sim-lte-a-m2354/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/view-2-plus-dual-sim-td-lte-m2356/index.json b/site/public/v1/smartphones/view-2-plus-dual-sim-td-lte-m2356/index.json new file mode 100644 index 00000000000..be24187cce1 --- /dev/null +++ b/site/public/v1/smartphones/view-2-plus-dual-sim-td-lte-m2356/index.json @@ -0,0 +1,76 @@ +{ + "id": 5586, + "slug": "view-2-plus-dual-sim-td-lte-m2356", + "name": "View 2 Plus Dual SIM TD-LTE M2356", + "brand": { + "id": 56, + "slug": "wiko", + "name": "Wiko", + "country": "FR", + "url": "/v1/brands/wiko" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.93, + "resolution": "720x1512", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 166.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.912308", + "updated_at": "2026-06-19T00:43:44.912308" +} diff --git a/site/public/v1/smartphones/view-2-plus-dual-sim-td-lte-m2356/score/index.json b/site/public/v1/smartphones/view-2-plus-dual-sim-td-lte-m2356/score/index.json new file mode 100644 index 00000000000..7f209133483 --- /dev/null +++ b/site/public/v1/smartphones/view-2-plus-dual-sim-td-lte-m2356/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/view-2-pro-dual-sim-lte-a-m2123/index.json b/site/public/v1/smartphones/view-2-pro-dual-sim-lte-a-m2123/index.json new file mode 100644 index 00000000000..54614bca5d1 --- /dev/null +++ b/site/public/v1/smartphones/view-2-pro-dual-sim-lte-a-m2123/index.json @@ -0,0 +1,76 @@ +{ + "id": 5587, + "slug": "view-2-pro-dual-sim-lte-a-m2123", + "name": "View 2 Pro Dual SIM LTE-A M2123", + "brand": { + "id": 56, + "slug": "wiko", + "name": "Wiko", + "country": "FR", + "url": "/v1/brands/wiko" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "720x1528", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 6.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.912308", + "updated_at": "2026-06-19T00:43:44.912308" +} diff --git a/site/public/v1/smartphones/view-2-pro-dual-sim-lte-a-m2123/score/index.json b/site/public/v1/smartphones/view-2-pro-dual-sim-lte-a-m2123/score/index.json new file mode 100644 index 00000000000..34400387dab --- /dev/null +++ b/site/public/v1/smartphones/view-2-pro-dual-sim-lte-a-m2123/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 6.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/view-3-dual-sim-td-lte-m2684/index.json b/site/public/v1/smartphones/view-3-dual-sim-td-lte-m2684/index.json new file mode 100644 index 00000000000..48ce36ab7ad --- /dev/null +++ b/site/public/v1/smartphones/view-3-dual-sim-td-lte-m2684/index.json @@ -0,0 +1,76 @@ +{ + "id": 5588, + "slug": "view-3-dual-sim-td-lte-m2684", + "name": "View 3 Dual SIM TD-LTE M2684", + "brand": { + "id": 56, + "slug": "wiko", + "name": "Wiko", + "country": "FR", + "url": "/v1/brands/wiko" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.912308", + "updated_at": "2026-06-19T00:43:44.912308" +} diff --git a/site/public/v1/smartphones/view-3-dual-sim-td-lte-m2684/score/index.json b/site/public/v1/smartphones/view-3-dual-sim-td-lte-m2684/score/index.json new file mode 100644 index 00000000000..7f209133483 --- /dev/null +++ b/site/public/v1/smartphones/view-3-dual-sim-td-lte-m2684/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/view-3-pro-dual-sim-td-lte-128gb-m2766/index.json b/site/public/v1/smartphones/view-3-pro-dual-sim-td-lte-128gb-m2766/index.json new file mode 100644 index 00000000000..a6d5beeede3 --- /dev/null +++ b/site/public/v1/smartphones/view-3-pro-dual-sim-td-lte-128gb-m2766/index.json @@ -0,0 +1,76 @@ +{ + "id": 5589, + "slug": "view-3-pro-dual-sim-td-lte-128gb-m2766", + "name": "View 3 Pro Dual SIM TD-LTE 128GB M2766", + "brand": { + "id": 56, + "slug": "wiko", + "name": "Wiko", + "country": "FR", + "url": "/v1/brands/wiko" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 1.5, + "camera": 5.0, + "battery": 15.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.912308", + "updated_at": "2026-06-19T00:43:44.912308" +} diff --git a/site/public/v1/smartphones/view-3-pro-dual-sim-td-lte-128gb-m2766/score/index.json b/site/public/v1/smartphones/view-3-pro-dual-sim-td-lte-128gb-m2766/score/index.json new file mode 100644 index 00000000000..579cb501402 --- /dev/null +++ b/site/public/v1/smartphones/view-3-pro-dual-sim-td-lte-128gb-m2766/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 1.5, + "camera": 5.0, + "battery": 15.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/view-3-pro-dual-sim-td-lte-64gb-m2766/index.json b/site/public/v1/smartphones/view-3-pro-dual-sim-td-lte-64gb-m2766/index.json new file mode 100644 index 00000000000..040285bd765 --- /dev/null +++ b/site/public/v1/smartphones/view-3-pro-dual-sim-td-lte-64gb-m2766/index.json @@ -0,0 +1,76 @@ +{ + "id": 5590, + "slug": "view-3-pro-dual-sim-td-lte-64gb-m2766", + "name": "View 3 Pro Dual SIM TD-LTE 64GB M2766", + "brand": { + "id": 56, + "slug": "wiko", + "name": "Wiko", + "country": "FR", + "url": "/v1/brands/wiko" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 184.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.0, + "battery": 15.0, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.912308", + "updated_at": "2026-06-19T00:43:44.912308" +} diff --git a/site/public/v1/smartphones/view-3-pro-dual-sim-td-lte-64gb-m2766/score/index.json b/site/public/v1/smartphones/view-3-pro-dual-sim-td-lte-64gb-m2766/score/index.json new file mode 100644 index 00000000000..c706dc2b442 --- /dev/null +++ b/site/public/v1/smartphones/view-3-pro-dual-sim-td-lte-64gb-m2766/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.0, + "battery": 15.0, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/view-4-lite-global-dual-sim-td-lte-m2902-m2937/index.json b/site/public/v1/smartphones/view-4-lite-global-dual-sim-td-lte-m2902-m2937/index.json new file mode 100644 index 00000000000..b02f8e762df --- /dev/null +++ b/site/public/v1/smartphones/view-4-lite-global-dual-sim-td-lte-m2902-m2937/index.json @@ -0,0 +1,76 @@ +{ + "id": 5595, + "slug": "view-4-lite-global-dual-sim-td-lte-m2902-m2937", + "name": "View 4 Lite Global Dual SIM TD-LTE M2902 / M2937", + "brand": { + "id": 56, + "slug": "wiko", + "name": "Wiko", + "country": "FR", + "url": "/v1/brands/wiko" + }, + "soc": { + "id": 58, + "slug": "helio-a25", + "name": "Helio A25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-a25" + }, + "release_date": "2020-02-01", + "msrp_usd": 399, + "ram_gb": 2, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 174.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 53.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.913307", + "updated_at": "2026-06-19T00:43:44.913307" +} diff --git a/site/public/v1/smartphones/view-4-lite-global-dual-sim-td-lte-m2902-m2937/score/index.json b/site/public/v1/smartphones/view-4-lite-global-dual-sim-td-lte-m2902-m2937/score/index.json new file mode 100644 index 00000000000..d5dedf10e08 --- /dev/null +++ b/site/public/v1/smartphones/view-4-lite-global-dual-sim-td-lte-m2902-m2937/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": 53.1 +} diff --git a/site/public/v1/smartphones/view-5-dual-sim-td-lte-64gb-m2976/index.json b/site/public/v1/smartphones/view-5-dual-sim-td-lte-64gb-m2976/index.json new file mode 100644 index 00000000000..fdafaf171d0 --- /dev/null +++ b/site/public/v1/smartphones/view-5-dual-sim-td-lte-64gb-m2976/index.json @@ -0,0 +1,76 @@ +{ + "id": 5596, + "slug": "view-5-dual-sim-td-lte-64gb-m2976", + "name": "View 5 Dual SIM TD-LTE 64GB M2976", + "brand": { + "id": 56, + "slug": "wiko", + "name": "Wiko", + "country": "FR", + "url": "/v1/brands/wiko" + }, + "soc": { + "id": 58, + "slug": "helio-a25", + "name": "Helio A25", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "PowerVR GE8320", + "url": "/v1/socs/helio-a25" + }, + "release_date": "2020-09-09", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 201.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.913307", + "updated_at": "2026-06-19T00:43:44.913307" +} diff --git a/site/public/v1/smartphones/view-5-dual-sim-td-lte-64gb-m2976/score/index.json b/site/public/v1/smartphones/view-5-dual-sim-td-lte-64gb-m2976/score/index.json new file mode 100644 index 00000000000..99aee406377 --- /dev/null +++ b/site/public/v1/smartphones/view-5-dual-sim-td-lte-64gb-m2976/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/view-5-plus-dual-sim-td-lte-128gb-m2907/index.json b/site/public/v1/smartphones/view-5-plus-dual-sim-td-lte-128gb-m2907/index.json new file mode 100644 index 00000000000..7d4d8f22098 --- /dev/null +++ b/site/public/v1/smartphones/view-5-plus-dual-sim-td-lte-128gb-m2907/index.json @@ -0,0 +1,76 @@ +{ + "id": 5597, + "slug": "view-5-plus-dual-sim-td-lte-128gb-m2907", + "name": "View 5 Plus Dual SIM TD-LTE 128GB M2907", + "brand": { + "id": 56, + "slug": "wiko", + "name": "Wiko", + "country": "FR", + "url": "/v1/brands/wiko" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-09-09", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.55, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 201.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.913307", + "updated_at": "2026-06-19T00:43:44.913307" +} diff --git a/site/public/v1/smartphones/view-5-plus-dual-sim-td-lte-128gb-m2907/score/index.json b/site/public/v1/smartphones/view-5-plus-dual-sim-td-lte-128gb-m2907/score/index.json new file mode 100644 index 00000000000..99aee406377 --- /dev/null +++ b/site/public/v1/smartphones/view-5-plus-dual-sim-td-lte-128gb-m2907/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 16.5, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/view-dual-sim-lte-16gb-m1825/index.json b/site/public/v1/smartphones/view-dual-sim-lte-16gb-m1825/index.json new file mode 100644 index 00000000000..cdc81146ae8 --- /dev/null +++ b/site/public/v1/smartphones/view-dual-sim-lte-16gb-m1825/index.json @@ -0,0 +1,76 @@ +{ + "id": 5582, + "slug": "view-dual-sim-lte-16gb-m1825", + "name": "View Dual SIM LTE 16GB M1825", + "brand": { + "id": 56, + "slug": "wiko", + "name": "Wiko", + "country": "FR", + "url": "/v1/brands/wiko" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2017-09-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 2900, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.911308", + "updated_at": "2026-06-19T00:43:44.911308" +} diff --git a/site/public/v1/smartphones/view-dual-sim-lte-16gb-m1825/score/index.json b/site/public/v1/smartphones/view-dual-sim-lte-16gb-m1825/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/view-dual-sim-lte-16gb-m1825/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-g1-5g-dual-sim-td-lte-cn-128gb-v1962ba/index.json b/site/public/v1/smartphones/vivo-g1-5g-dual-sim-td-lte-cn-128gb-v1962ba/index.json new file mode 100644 index 00000000000..f15b8509fb9 --- /dev/null +++ b/site/public/v1/smartphones/vivo-g1-5g-dual-sim-td-lte-cn-128gb-v1962ba/index.json @@ -0,0 +1,76 @@ +{ + "id": 5339, + "slug": "vivo-g1-5g-dual-sim-td-lte-cn-128gb-v1962ba", + "name": "Vivo G1 5G Dual SIM TD-LTE CN 128GB V1962BA", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 193, + "slug": "exynos-980", + "name": "Exynos 980", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali G76 MP5", + "url": "/v1/socs/exynos-980" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.882314", + "updated_at": "2026-06-19T00:43:44.882314" +} diff --git a/site/public/v1/smartphones/vivo-g1-5g-dual-sim-td-lte-cn-128gb-v1962ba/score/index.json b/site/public/v1/smartphones/vivo-g1-5g-dual-sim-td-lte-cn-128gb-v1962ba/score/index.json new file mode 100644 index 00000000000..c2f52ec179e --- /dev/null +++ b/site/public/v1/smartphones/vivo-g1-5g-dual-sim-td-lte-cn-128gb-v1962ba/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-3-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1955a/index.json b/site/public/v1/smartphones/vivo-iqoo-3-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1955a/index.json new file mode 100644 index 00000000000..41bfac4aebe --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-3-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1955a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5340, + "slug": "vivo-iqoo-3-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1955a", + "name": "Vivo iQOO 3 5G Premium Edition Dual SIM TD-LTE CN 128GB V1955A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-02-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "battery_mah": 4440, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 214.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 3.0, + "camera": 16.5, + "battery": 29.2, + "display": 28.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.882314", + "updated_at": "2026-06-19T00:43:44.882314" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-3-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1955a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-3-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1955a/score/index.json new file mode 100644 index 00000000000..5c63b3d96af --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-3-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1955a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 3.0, + "camera": 16.5, + "battery": 29.2, + "display": 28.4, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-3-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1955a/index.json b/site/public/v1/smartphones/vivo-iqoo-3-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1955a/index.json new file mode 100644 index 00000000000..364b08683b5 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-3-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1955a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5341, + "slug": "vivo-iqoo-3-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1955a", + "name": "Vivo iQOO 3 5G Standard Edition Dual SIM TD-LTE CN 128GB V1955A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-02-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "battery_mah": 4440, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 214.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 1.5, + "camera": 16.5, + "battery": 29.2, + "display": 28.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.882314", + "updated_at": "2026-06-19T00:43:44.882314" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-3-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1955a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-3-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1955a/score/index.json new file mode 100644 index 00000000000..2364e29f1e6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-3-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1955a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 1.5, + "camera": 16.5, + "battery": 29.2, + "display": 28.4, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-3-5g-top-edition-dual-sim-td-lte-cn-128gb-v1955a/index.json b/site/public/v1/smartphones/vivo-iqoo-3-5g-top-edition-dual-sim-td-lte-cn-128gb-v1955a/index.json new file mode 100644 index 00000000000..5b805635f1f --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-3-5g-top-edition-dual-sim-td-lte-cn-128gb-v1955a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5342, + "slug": "vivo-iqoo-3-5g-top-edition-dual-sim-td-lte-cn-128gb-v1955a", + "name": "Vivo iQOO 3 5G Top Edition Dual SIM TD-LTE CN 128GB V1955A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-02-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "battery_mah": 4440, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 214.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 6.0, + "camera": 16.5, + "battery": 29.2, + "display": 28.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.882314", + "updated_at": "2026-06-19T00:43:44.882314" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-3-5g-top-edition-dual-sim-td-lte-cn-128gb-v1955a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-3-5g-top-edition-dual-sim-td-lte-cn-128gb-v1955a/score/index.json new file mode 100644 index 00000000000..6a40341707c --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-3-5g-top-edition-dual-sim-td-lte-cn-128gb-v1955a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 6.0, + "camera": 16.5, + "battery": 29.2, + "display": 28.4, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-3-5g-top-edition-dual-sim-td-lte-cn-256gb-v1955a/index.json b/site/public/v1/smartphones/vivo-iqoo-3-5g-top-edition-dual-sim-td-lte-cn-256gb-v1955a/index.json new file mode 100644 index 00000000000..b557ed7c459 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-3-5g-top-edition-dual-sim-td-lte-cn-256gb-v1955a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5343, + "slug": "vivo-iqoo-3-5g-top-edition-dual-sim-td-lte-cn-256gb-v1955a", + "name": "Vivo iQOO 3 5G Top Edition Dual SIM TD-LTE CN 256GB V1955A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-02-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "battery_mah": 4440, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 214.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 6.0, + "camera": 16.5, + "battery": 29.2, + "display": 28.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.882314", + "updated_at": "2026-06-19T00:43:44.882314" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-3-5g-top-edition-dual-sim-td-lte-cn-256gb-v1955a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-3-5g-top-edition-dual-sim-td-lte-cn-256gb-v1955a/score/index.json new file mode 100644 index 00000000000..6a40341707c --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-3-5g-top-edition-dual-sim-td-lte-cn-256gb-v1955a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 6.0, + "camera": 16.5, + "battery": 29.2, + "display": 28.4, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-3-5g-top-edition-global-dual-sim-td-lte-256gb-i1928/index.json b/site/public/v1/smartphones/vivo-iqoo-3-5g-top-edition-global-dual-sim-td-lte-256gb-i1928/index.json new file mode 100644 index 00000000000..6091e89772c --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-3-5g-top-edition-global-dual-sim-td-lte-256gb-i1928/index.json @@ -0,0 +1,77 @@ +{ + "id": 5344, + "slug": "vivo-iqoo-3-5g-top-edition-global-dual-sim-td-lte-256gb-i1928", + "name": "Vivo iQOO 3 5G Top Edition Global Dual SIM TD-LTE 256GB I1928", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-04", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "battery_mah": 4440, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 214.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 6.0, + "camera": 16.5, + "battery": 29.2, + "display": 28.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.883314", + "updated_at": "2026-06-19T00:43:44.883314" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-3-5g-top-edition-global-dual-sim-td-lte-256gb-i1928/score/index.json b/site/public/v1/smartphones/vivo-iqoo-3-5g-top-edition-global-dual-sim-td-lte-256gb-i1928/score/index.json new file mode 100644 index 00000000000..6a40341707c --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-3-5g-top-edition-global-dual-sim-td-lte-256gb-i1928/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 6.0, + "camera": 16.5, + "battery": 29.2, + "display": 28.4, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-3-5g-transformers-limited-edition-dual-sim-td-lte-cn-256gb-v1955a/index.json b/site/public/v1/smartphones/vivo-iqoo-3-5g-transformers-limited-edition-dual-sim-td-lte-cn-256gb-v1955a/index.json new file mode 100644 index 00000000000..c2934372d3a --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-3-5g-transformers-limited-edition-dual-sim-td-lte-cn-256gb-v1955a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5345, + "slug": "vivo-iqoo-3-5g-transformers-limited-edition-dual-sim-td-lte-cn-256gb-v1955a", + "name": "Vivo iQOO 3 5G Transformers Limited Edition Dual SIM TD-LTE CN 256GB V1955A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-06-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "battery_mah": 4440, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 214.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 6.0, + "camera": 16.5, + "battery": 29.2, + "display": 28.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.883314", + "updated_at": "2026-06-19T00:43:44.883314" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-3-5g-transformers-limited-edition-dual-sim-td-lte-cn-256gb-v1955a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-3-5g-transformers-limited-edition-dual-sim-td-lte-cn-256gb-v1955a/score/index.json new file mode 100644 index 00000000000..6a40341707c --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-3-5g-transformers-limited-edition-dual-sim-td-lte-cn-256gb-v1955a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 6.0, + "camera": 16.5, + "battery": 29.2, + "display": 28.4, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-3-premium-edition-global-dual-sim-td-lte-128gb-i1927/index.json b/site/public/v1/smartphones/vivo-iqoo-3-premium-edition-global-dual-sim-td-lte-128gb-i1927/index.json new file mode 100644 index 00000000000..269d9f98bc7 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-3-premium-edition-global-dual-sim-td-lte-128gb-i1927/index.json @@ -0,0 +1,77 @@ +{ + "id": 5346, + "slug": "vivo-iqoo-3-premium-edition-global-dual-sim-td-lte-128gb-i1927", + "name": "Vivo iQOO 3 Premium Edition Global Dual SIM TD-LTE 128GB I1927", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-04", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "battery_mah": 4440, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 214.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 3.0, + "camera": 16.5, + "battery": 29.2, + "display": 28.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.883314", + "updated_at": "2026-06-19T00:43:44.883314" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-3-premium-edition-global-dual-sim-td-lte-128gb-i1927/score/index.json b/site/public/v1/smartphones/vivo-iqoo-3-premium-edition-global-dual-sim-td-lte-128gb-i1927/score/index.json new file mode 100644 index 00000000000..5c63b3d96af --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-3-premium-edition-global-dual-sim-td-lte-128gb-i1927/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 3.0, + "camera": 16.5, + "battery": 29.2, + "display": 28.4, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-3-premium-edition-global-dual-sim-td-lte-256gb-i1927/index.json b/site/public/v1/smartphones/vivo-iqoo-3-premium-edition-global-dual-sim-td-lte-256gb-i1927/index.json new file mode 100644 index 00000000000..b3dec856d65 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-3-premium-edition-global-dual-sim-td-lte-256gb-i1927/index.json @@ -0,0 +1,77 @@ +{ + "id": 5347, + "slug": "vivo-iqoo-3-premium-edition-global-dual-sim-td-lte-256gb-i1927", + "name": "Vivo iQOO 3 Premium Edition Global Dual SIM TD-LTE 256GB I1927", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-04", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "battery_mah": 4440, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 214.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 3.0, + "camera": 16.5, + "battery": 29.2, + "display": 28.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.883314", + "updated_at": "2026-06-19T00:43:44.883314" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-3-premium-edition-global-dual-sim-td-lte-256gb-i1927/score/index.json b/site/public/v1/smartphones/vivo-iqoo-3-premium-edition-global-dual-sim-td-lte-256gb-i1927/score/index.json new file mode 100644 index 00000000000..5c63b3d96af --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-3-premium-edition-global-dual-sim-td-lte-256gb-i1927/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 3.0, + "camera": 16.5, + "battery": 29.2, + "display": 28.4, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-5-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2024a/index.json b/site/public/v1/smartphones/vivo-iqoo-5-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2024a/index.json new file mode 100644 index 00000000000..d34b908d3ea --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-5-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2024a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5348, + "slug": "vivo-iqoo-5-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2024a", + "name": "Vivo iQOO 5 5G Premium Edition Dual SIM TD-LTE CN 128GB V2024A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-08-24", + "msrp_usd": 4298, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "battery_mah": 4500, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 6.0, + "camera": 17.2, + "battery": 30.1, + "display": 52.3, + "value": 13.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.883314", + "updated_at": "2026-06-19T00:43:44.883314" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-5-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2024a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-5-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2024a/score/index.json new file mode 100644 index 00000000000..3ff65590e03 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-5-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2024a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 6.0, + "camera": 17.2, + "battery": 30.1, + "display": 52.3, + "value": 13.2 +} diff --git a/site/public/v1/smartphones/vivo-iqoo-5-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2024a/index.json b/site/public/v1/smartphones/vivo-iqoo-5-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2024a/index.json new file mode 100644 index 00000000000..5cb73d93723 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-5-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2024a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5349, + "slug": "vivo-iqoo-5-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2024a", + "name": "Vivo iQOO 5 5G Premium Edition Dual SIM TD-LTE CN 256GB V2024A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-08-24", + "msrp_usd": 4598, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "battery_mah": 4500, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 6.0, + "camera": 17.2, + "battery": 30.1, + "display": 52.3, + "value": 13.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.883314", + "updated_at": "2026-06-19T00:43:44.883314" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-5-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2024a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-5-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2024a/score/index.json new file mode 100644 index 00000000000..3ff65590e03 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-5-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2024a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 6.0, + "camera": 17.2, + "battery": 30.1, + "display": 52.3, + "value": 13.2 +} diff --git a/site/public/v1/smartphones/vivo-iqoo-5-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2024a/index.json b/site/public/v1/smartphones/vivo-iqoo-5-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2024a/index.json new file mode 100644 index 00000000000..71b020758ef --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-5-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2024a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5350, + "slug": "vivo-iqoo-5-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2024a", + "name": "Vivo iQOO 5 5G Standard Edition Dual SIM TD-LTE CN 128GB V2024A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-08-24", + "msrp_usd": 3998, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "battery_mah": 4500, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 3.0, + "camera": 17.2, + "battery": 30.1, + "display": 52.3, + "value": 12.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.883314", + "updated_at": "2026-06-19T00:43:44.883314" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-5-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2024a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-5-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2024a/score/index.json new file mode 100644 index 00000000000..ecdd0d508ac --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-5-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2024a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.6, + "performance": 3.0, + "camera": 17.2, + "battery": 30.1, + "display": 52.3, + "value": 12.8 +} diff --git a/site/public/v1/smartphones/vivo-iqoo-5-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2025a/index.json b/site/public/v1/smartphones/vivo-iqoo-5-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2025a/index.json new file mode 100644 index 00000000000..17b62f0f595 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-5-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2025a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5351, + "slug": "vivo-iqoo-5-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2025a", + "name": "Vivo iQOO 5 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB V2025A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-09-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 6.0, + "camera": 17.2, + "battery": 35.0, + "display": 52.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.883314", + "updated_at": "2026-06-19T00:43:44.883314" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-5-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2025a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-5-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2025a/score/index.json new file mode 100644 index 00000000000..4a1c1346ba5 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-5-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2025a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 6.0, + "camera": 17.2, + "battery": 35.0, + "display": 52.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-5-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2025a/index.json b/site/public/v1/smartphones/vivo-iqoo-5-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2025a/index.json new file mode 100644 index 00000000000..b06ae675434 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-5-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2025a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5352, + "slug": "vivo-iqoo-5-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2025a", + "name": "Vivo iQOO 5 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB V2025A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-09-09", + "msrp_usd": 4998, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 196.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.9, + "performance": 3.0, + "camera": 17.2, + "battery": 35.0, + "display": 52.3, + "value": 13.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.883314", + "updated_at": "2026-06-19T00:43:44.883314" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-5-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2025a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-5-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2025a/score/index.json new file mode 100644 index 00000000000..5bc5b4e2a2e --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-5-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2025a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.9, + "performance": 3.0, + "camera": 17.2, + "battery": 35.0, + "display": 52.3, + "value": 13.4 +} diff --git a/site/public/v1/smartphones/vivo-iqoo-7-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2049a/index.json b/site/public/v1/smartphones/vivo-iqoo-7-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2049a/index.json new file mode 100644 index 00000000000..b4214ab573d --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-7-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2049a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5445, + "slug": "vivo-iqoo-7-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2049a", + "name": "Vivo iQOO 7 5G Premium Edition Dual SIM TD-LTE CN 256GB V2049A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-01", + "msrp_usd": 4198, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 209.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.8, + "performance": 9.4, + "camera": 16.5, + "battery": 45.0, + "display": 52.3, + "value": 15.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.895307", + "updated_at": "2026-06-19T00:43:44.895307" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-7-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2049a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-7-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2049a/score/index.json new file mode 100644 index 00000000000..1dbfac0a770 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-7-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2049a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.8, + "performance": 9.4, + "camera": 16.5, + "battery": 45.0, + "display": 52.3, + "value": 15.4 +} diff --git a/site/public/v1/smartphones/vivo-iqoo-7-5g-premium-edition-dual-sim-td-lte-in-256gb-i2012/index.json b/site/public/v1/smartphones/vivo-iqoo-7-5g-premium-edition-dual-sim-td-lte-in-256gb-i2012/index.json new file mode 100644 index 00000000000..6e70cefa1cd --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-7-5g-premium-edition-dual-sim-td-lte-in-256gb-i2012/index.json @@ -0,0 +1,77 @@ +{ + "id": 5446, + "slug": "vivo-iqoo-7-5g-premium-edition-dual-sim-td-lte-in-256gb-i2012", + "name": "Vivo iQOO 7 5G Premium Edition Dual SIM TD-LTE IN 256GB I2012", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-04-27", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "battery_mah": 4400, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.1, + "performance": 9.1, + "camera": 16.5, + "battery": 30.7, + "display": 52.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.896307", + "updated_at": "2026-06-19T00:43:44.896307" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-7-5g-premium-edition-dual-sim-td-lte-in-256gb-i2012/score/index.json b/site/public/v1/smartphones/vivo-iqoo-7-5g-premium-edition-dual-sim-td-lte-in-256gb-i2012/score/index.json new file mode 100644 index 00000000000..0b627b03710 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-7-5g-premium-edition-dual-sim-td-lte-in-256gb-i2012/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.1, + "performance": 9.1, + "camera": 16.5, + "battery": 30.7, + "display": 52.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2049a/index.json b/site/public/v1/smartphones/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2049a/index.json new file mode 100644 index 00000000000..2928867cabb --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2049a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5447, + "slug": "vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2049a", + "name": "Vivo iQOO 7 5G Standard Edition Dual SIM TD-LTE CN 128GB V2049A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-01", + "msrp_usd": 3798, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 209.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.1, + "performance": 6.4, + "camera": 16.5, + "battery": 45.0, + "display": 52.3, + "value": 15.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.896307", + "updated_at": "2026-06-19T00:43:44.896307" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2049a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2049a/score/index.json new file mode 100644 index 00000000000..0c759da7e98 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2049a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.1, + "performance": 6.4, + "camera": 16.5, + "battery": 45.0, + "display": 52.3, + "value": 15.1 +} diff --git a/site/public/v1/smartphones/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2049a/index.json b/site/public/v1/smartphones/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2049a/index.json new file mode 100644 index 00000000000..7825d7dd2a1 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2049a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5448, + "slug": "vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2049a", + "name": "Vivo iQOO 7 5G Standard Edition Dual SIM TD-LTE CN 256GB V2049A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-01", + "msrp_usd": 3998, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 209.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.1, + "performance": 6.4, + "camera": 16.5, + "battery": 45.0, + "display": 52.3, + "value": 15.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.896307", + "updated_at": "2026-06-19T00:43:44.896307" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2049a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2049a/score/index.json new file mode 100644 index 00000000000..0c759da7e98 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2049a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.1, + "performance": 6.4, + "camera": 16.5, + "battery": 45.0, + "display": 52.3, + "value": 15.1 +} diff --git a/site/public/v1/smartphones/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-in-128gb-i2012/index.json b/site/public/v1/smartphones/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-in-128gb-i2012/index.json new file mode 100644 index 00000000000..9cd59201192 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-in-128gb-i2012/index.json @@ -0,0 +1,77 @@ +{ + "id": 5449, + "slug": "vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-in-128gb-i2012", + "name": "Vivo iQOO 7 5G Standard Edition Dual SIM TD-LTE IN 128GB I2012", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-04-27", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "battery_mah": 4400, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 6.1, + "camera": 16.5, + "battery": 30.7, + "display": 52.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.896307", + "updated_at": "2026-06-19T00:43:44.896307" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-in-128gb-i2012/score/index.json b/site/public/v1/smartphones/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-in-128gb-i2012/score/index.json new file mode 100644 index 00000000000..ecfbee38cfa --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-in-128gb-i2012/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 6.1, + "camera": 16.5, + "battery": 30.7, + "display": 52.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-in-256gb-i2012/index.json b/site/public/v1/smartphones/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-in-256gb-i2012/index.json new file mode 100644 index 00000000000..0770fe6ab08 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-in-256gb-i2012/index.json @@ -0,0 +1,77 @@ +{ + "id": 5450, + "slug": "vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-in-256gb-i2012", + "name": "Vivo iQOO 7 5G Standard Edition Dual SIM TD-LTE IN 256GB I2012", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-04-27", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "battery_mah": 4400, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 6.1, + "camera": 16.5, + "battery": 30.7, + "display": 52.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.896307", + "updated_at": "2026-06-19T00:43:44.896307" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-in-256gb-i2012/score/index.json b/site/public/v1/smartphones/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-in-256gb-i2012/score/index.json new file mode 100644 index 00000000000..ecfbee38cfa --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-7-5g-standard-edition-dual-sim-td-lte-in-256gb-i2012/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 6.1, + "camera": 16.5, + "battery": 30.7, + "display": 52.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-7-legend-5g-premium-edition-dual-sim-td-lte-in-256gb-i2009/index.json b/site/public/v1/smartphones/vivo-iqoo-7-legend-5g-premium-edition-dual-sim-td-lte-in-256gb-i2009/index.json new file mode 100644 index 00000000000..ad22f857ec4 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-7-legend-5g-premium-edition-dual-sim-td-lte-in-256gb-i2009/index.json @@ -0,0 +1,77 @@ +{ + "id": 5451, + "slug": "vivo-iqoo-7-legend-5g-premium-edition-dual-sim-td-lte-in-256gb-i2009", + "name": "Vivo iQOO 7 Legend 5G Premium Edition Dual SIM TD-LTE IN 256GB I2009", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-05-02", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 209.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.2, + "performance": 9.4, + "camera": 16.5, + "battery": 34.7, + "display": 52.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.896307", + "updated_at": "2026-06-19T00:43:44.896307" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-7-legend-5g-premium-edition-dual-sim-td-lte-in-256gb-i2009/score/index.json b/site/public/v1/smartphones/vivo-iqoo-7-legend-5g-premium-edition-dual-sim-td-lte-in-256gb-i2009/score/index.json new file mode 100644 index 00000000000..05822e82129 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-7-legend-5g-premium-edition-dual-sim-td-lte-in-256gb-i2009/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.2, + "performance": 9.4, + "camera": 16.5, + "battery": 34.7, + "display": 52.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-7-legend-5g-standard-edition-dual-sim-td-lte-in-128gb-i2009/index.json b/site/public/v1/smartphones/vivo-iqoo-7-legend-5g-standard-edition-dual-sim-td-lte-in-128gb-i2009/index.json new file mode 100644 index 00000000000..44b84c1484e --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-7-legend-5g-standard-edition-dual-sim-td-lte-in-128gb-i2009/index.json @@ -0,0 +1,77 @@ +{ + "id": 5452, + "slug": "vivo-iqoo-7-legend-5g-standard-edition-dual-sim-td-lte-in-128gb-i2009", + "name": "Vivo iQOO 7 Legend 5G Standard Edition Dual SIM TD-LTE IN 128GB I2009", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-05-02", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 209.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.5, + "performance": 6.4, + "camera": 16.5, + "battery": 34.7, + "display": 52.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.896307", + "updated_at": "2026-06-19T00:43:44.896307" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-7-legend-5g-standard-edition-dual-sim-td-lte-in-128gb-i2009/score/index.json b/site/public/v1/smartphones/vivo-iqoo-7-legend-5g-standard-edition-dual-sim-td-lte-in-128gb-i2009/score/index.json new file mode 100644 index 00000000000..4b352529295 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-7-legend-5g-standard-edition-dual-sim-td-lte-in-128gb-i2009/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.5, + "performance": 6.4, + "camera": 16.5, + "battery": 34.7, + "display": 52.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-8-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2136a/index.json b/site/public/v1/smartphones/vivo-iqoo-8-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2136a/index.json new file mode 100644 index 00000000000..ad3e4907243 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-8-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2136a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5453, + "slug": "vivo-iqoo-8-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2136a", + "name": "vivo iQOO 8 5G Premium Edition Dual SIM TD-LTE CN 256GB V2136A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-01", + "msrp_usd": 3899, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4350, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 199.9, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.1, + "performance": 9.4, + "camera": 16.5, + "battery": 50.2, + "display": 52.3, + "value": 16.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.896307", + "updated_at": "2026-06-19T00:43:44.896307" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-8-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2136a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-8-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2136a/score/index.json new file mode 100644 index 00000000000..dea9864eaa9 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-8-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2136a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.1, + "performance": 9.4, + "camera": 16.5, + "battery": 50.2, + "display": 52.3, + "value": 16.1 +} diff --git a/site/public/v1/smartphones/vivo-iqoo-8-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2136a/index.json b/site/public/v1/smartphones/vivo-iqoo-8-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2136a/index.json new file mode 100644 index 00000000000..96a14a67f8a --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-8-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2136a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5454, + "slug": "vivo-iqoo-8-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2136a", + "name": "vivo iQOO 8 5G Standard Edition Dual SIM TD-LTE CN 128GB V2136A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-01", + "msrp_usd": 3499, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4350, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 199.9, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 31.4, + "performance": 6.4, + "camera": 16.5, + "battery": 50.2, + "display": 52.3, + "value": 15.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.896307", + "updated_at": "2026-06-19T00:43:44.896307" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-8-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2136a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-8-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2136a/score/index.json new file mode 100644 index 00000000000..12aeeecb21c --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-8-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2136a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 31.4, + "performance": 6.4, + "camera": 16.5, + "battery": 50.2, + "display": 52.3, + "value": 15.7 +} diff --git a/site/public/v1/smartphones/vivo-iqoo-8-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2141a/index.json b/site/public/v1/smartphones/vivo-iqoo-8-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2141a/index.json new file mode 100644 index 00000000000..62cbc948183 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-8-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2141a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5455, + "slug": "vivo-iqoo-8-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2141a", + "name": "vivo iQOO 8 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB V2141A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-08-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 518 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 203.9, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 36.3, + "performance": 11.2, + "camera": 17.2, + "battery": 52.5, + "display": 64.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.897307", + "updated_at": "2026-06-19T00:43:44.897307" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-8-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2141a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-8-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2141a/score/index.json new file mode 100644 index 00000000000..7d12253391d --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-8-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2141a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 36.3, + "performance": 11.2, + "camera": 17.2, + "battery": 52.5, + "display": 64.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-8-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2141a/index.json b/site/public/v1/smartphones/vivo-iqoo-8-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2141a/index.json new file mode 100644 index 00000000000..a0f359254a9 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-8-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2141a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5456, + "slug": "vivo-iqoo-8-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2141a", + "name": "vivo iQOO 8 Pro 5G Premium Edition Dual SIM TD-LTE CN 512GB V2141A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-08-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.78, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 518 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 203.9, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 36.3, + "performance": 11.2, + "camera": 17.2, + "battery": 52.5, + "display": 64.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.897307", + "updated_at": "2026-06-19T00:43:44.897307" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-8-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2141a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-8-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2141a/score/index.json new file mode 100644 index 00000000000..7d12253391d --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-8-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2141a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 36.3, + "performance": 11.2, + "camera": 17.2, + "battery": 52.5, + "display": 64.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-8-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2141a/index.json b/site/public/v1/smartphones/vivo-iqoo-8-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2141a/index.json new file mode 100644 index 00000000000..0df456be736 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-8-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2141a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5457, + "slug": "vivo-iqoo-8-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2141a", + "name": "vivo iQOO 8 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB V2141A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-08-01", + "msrp_usd": 4999, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 518 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 120.0, + "charging_wireless_w": null, + "weight_g": 203.9, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 35.5, + "performance": 8.2, + "camera": 17.2, + "battery": 52.5, + "display": 64.3, + "value": 17.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.897307", + "updated_at": "2026-06-19T00:43:44.897307" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-8-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2141a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-8-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2141a/score/index.json new file mode 100644 index 00000000000..cc8adb5960b --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-8-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2141a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 35.5, + "performance": 8.2, + "camera": 17.2, + "battery": 52.5, + "display": 64.3, + "value": 17.8 +} diff --git a/site/public/v1/smartphones/vivo-iqoo-monster-edition-dual-sim-td-lte-cn-128gb-v1824a/index.json b/site/public/v1/smartphones/vivo-iqoo-monster-edition-dual-sim-td-lte-cn-128gb-v1824a/index.json new file mode 100644 index 00000000000..03952e1494d --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-monster-edition-dual-sim-td-lte-cn-128gb-v1824a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5173, + "slug": "vivo-iqoo-monster-edition-dual-sim-td-lte-cn-128gb-v1824a", + "name": "Vivo iQOO Monster Edition Dual SIM TD-LTE CN 128GB V1824A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-04-14", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 6.0, + "camera": 5.1, + "battery": 20.5, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.861792", + "updated_at": "2026-06-19T00:43:44.861792" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-monster-edition-dual-sim-td-lte-cn-128gb-v1824a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-monster-edition-dual-sim-td-lte-cn-128gb-v1824a/score/index.json new file mode 100644 index 00000000000..aa74ed251ee --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-monster-edition-dual-sim-td-lte-cn-128gb-v1824a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 6.0, + "camera": 5.1, + "battery": 20.5, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-monster-edition-dual-sim-td-lte-cn-256gb-v1824a/index.json b/site/public/v1/smartphones/vivo-iqoo-monster-edition-dual-sim-td-lte-cn-256gb-v1824a/index.json new file mode 100644 index 00000000000..a2fd1a5fe26 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-monster-edition-dual-sim-td-lte-cn-256gb-v1824a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5174, + "slug": "vivo-iqoo-monster-edition-dual-sim-td-lte-cn-256gb-v1824a", + "name": "Vivo iQOO Monster Edition Dual SIM TD-LTE CN 256GB V1824A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 6.0, + "camera": 5.1, + "battery": 20.5, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.861792", + "updated_at": "2026-06-19T00:43:44.861792" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-monster-edition-dual-sim-td-lte-cn-256gb-v1824a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-monster-edition-dual-sim-td-lte-cn-256gb-v1824a/score/index.json new file mode 100644 index 00000000000..aa74ed251ee --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-monster-edition-dual-sim-td-lte-cn-256gb-v1824a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 6.0, + "camera": 5.1, + "battery": 20.5, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-neo5-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2055a/index.json b/site/public/v1/smartphones/vivo-iqoo-neo5-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2055a/index.json new file mode 100644 index 00000000000..bcafada77a6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-neo5-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2055a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5458, + "slug": "vivo-iqoo-neo5-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2055a", + "name": "Vivo iQOO Neo5 5G Premium Edition Dual SIM TD-LTE CN 256GB V2055A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-03-23", + "msrp_usd": 2999, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4400, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.1, + "performance": 9.1, + "camera": 16.5, + "battery": 30.7, + "display": 52.3, + "value": 13.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.897307", + "updated_at": "2026-06-19T00:43:44.897307" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-neo5-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2055a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-neo5-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2055a/score/index.json new file mode 100644 index 00000000000..40d3dfe3d7d --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-neo5-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2055a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.1, + "performance": 9.1, + "camera": 16.5, + "battery": 30.7, + "display": 52.3, + "value": 13.6 +} diff --git a/site/public/v1/smartphones/vivo-iqoo-neo5-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2055a/index.json b/site/public/v1/smartphones/vivo-iqoo-neo5-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2055a/index.json new file mode 100644 index 00000000000..f566de62c52 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-neo5-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2055a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5459, + "slug": "vivo-iqoo-neo5-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2055a", + "name": "Vivo iQOO Neo5 5G Standard Edition Dual SIM TD-LTE CN 128GB V2055A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-03-23", + "msrp_usd": 2499, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4400, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 6.1, + "camera": 16.5, + "battery": 30.7, + "display": 52.3, + "value": 13.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.897307", + "updated_at": "2026-06-19T00:43:44.897307" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-neo5-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2055a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-neo5-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2055a/score/index.json new file mode 100644 index 00000000000..042ad406cf7 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-neo5-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2055a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 6.1, + "camera": 16.5, + "battery": 30.7, + "display": 52.3, + "value": 13.2 +} diff --git a/site/public/v1/smartphones/vivo-iqoo-neo5-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2055a/index.json b/site/public/v1/smartphones/vivo-iqoo-neo5-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2055a/index.json new file mode 100644 index 00000000000..cc4ec55643e --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-neo5-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2055a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5460, + "slug": "vivo-iqoo-neo5-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2055a", + "name": "Vivo iQOO Neo5 5G Standard Edition Dual SIM TD-LTE CN 256GB V2055A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-03-23", + "msrp_usd": 2699, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.62, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4400, + "charging_wired_w": 66.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 6.1, + "camera": 16.5, + "battery": 30.7, + "display": 52.3, + "value": 13.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.897307", + "updated_at": "2026-06-19T00:43:44.897307" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-neo5-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2055a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-neo5-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2055a/score/index.json new file mode 100644 index 00000000000..042ad406cf7 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-neo5-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2055a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 6.1, + "camera": 16.5, + "battery": 30.7, + "display": 52.3, + "value": 13.2 +} diff --git a/site/public/v1/smartphones/vivo-iqoo-premium-edition-dual-sim-td-lte-cn-128gb-v1824a/index.json b/site/public/v1/smartphones/vivo-iqoo-premium-edition-dual-sim-td-lte-cn-128gb-v1824a/index.json new file mode 100644 index 00000000000..183745dd094 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-premium-edition-dual-sim-td-lte-cn-128gb-v1824a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5175, + "slug": "vivo-iqoo-premium-edition-dual-sim-td-lte-cn-128gb-v1824a", + "name": "Vivo iQOO Premium Edition Dual SIM TD-LTE CN 128GB V1824A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 3.0, + "camera": 5.1, + "battery": 20.5, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.861792", + "updated_at": "2026-06-19T00:43:44.861792" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-premium-edition-dual-sim-td-lte-cn-128gb-v1824a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-premium-edition-dual-sim-td-lte-cn-128gb-v1824a/score/index.json new file mode 100644 index 00000000000..4a24b2ec939 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-premium-edition-dual-sim-td-lte-cn-128gb-v1824a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 3.0, + "camera": 5.1, + "battery": 20.5, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-premium-edition-dual-sim-td-lte-cn-256gb-v1824a/index.json b/site/public/v1/smartphones/vivo-iqoo-premium-edition-dual-sim-td-lte-cn-256gb-v1824a/index.json new file mode 100644 index 00000000000..1939dc6ac78 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-premium-edition-dual-sim-td-lte-cn-256gb-v1824a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5176, + "slug": "vivo-iqoo-premium-edition-dual-sim-td-lte-cn-256gb-v1824a", + "name": "Vivo iQOO Premium Edition Dual SIM TD-LTE CN 256GB V1824A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 3.0, + "camera": 5.1, + "battery": 20.5, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.862789", + "updated_at": "2026-06-19T00:43:44.862789" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-premium-edition-dual-sim-td-lte-cn-256gb-v1824a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-premium-edition-dual-sim-td-lte-cn-256gb-v1824a/score/index.json new file mode 100644 index 00000000000..4a24b2ec939 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-premium-edition-dual-sim-td-lte-cn-256gb-v1824a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 3.0, + "camera": 5.1, + "battery": 20.5, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1916a/index.json b/site/public/v1/smartphones/vivo-iqoo-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1916a/index.json new file mode 100644 index 00000000000..69d72e64d1b --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1916a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5177, + "slug": "vivo-iqoo-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1916a", + "name": "Vivo iQOO Pro 5G Premium Edition Dual SIM TD-LTE CN 128GB V1916A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-08-31", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4500, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 6.0, + "camera": 5.1, + "battery": 28.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.862789", + "updated_at": "2026-06-19T00:43:44.862789" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1916a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1916a/score/index.json new file mode 100644 index 00000000000..e7275664e15 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-pro-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1916a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 6.0, + "camera": 5.1, + "battery": 28.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1916a/index.json b/site/public/v1/smartphones/vivo-iqoo-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1916a/index.json new file mode 100644 index 00000000000..691907530cd --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1916a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5178, + "slug": "vivo-iqoo-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1916a", + "name": "Vivo iQOO Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB V1916A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-08-31", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4500, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 6.0, + "camera": 5.1, + "battery": 28.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.862789", + "updated_at": "2026-06-19T00:43:44.862789" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1916a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1916a/score/index.json new file mode 100644 index 00000000000..e7275664e15 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1916a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 6.0, + "camera": 5.1, + "battery": 28.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1916a/index.json b/site/public/v1/smartphones/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1916a/index.json new file mode 100644 index 00000000000..58639a04204 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1916a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5179, + "slug": "vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1916a", + "name": "Vivo iQOO Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB V1916A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-08-31", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4500, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 3.0, + "camera": 5.1, + "battery": 28.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.862789", + "updated_at": "2026-06-19T00:43:44.862789" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1916a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1916a/score/index.json new file mode 100644 index 00000000000..0ec47f7f382 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1916a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 3.0, + "camera": 5.1, + "battery": 28.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1916t/index.json b/site/public/v1/smartphones/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1916t/index.json new file mode 100644 index 00000000000..3d2b08b7fc2 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1916t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5180, + "slug": "vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1916t", + "name": "Vivo iQOO Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB V1916T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-08-31", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4500, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 3.0, + "camera": 5.1, + "battery": 28.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.862789", + "updated_at": "2026-06-19T00:43:44.862789" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1916t/score/index.json b/site/public/v1/smartphones/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1916t/score/index.json new file mode 100644 index 00000000000..0ec47f7f382 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1916t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 3.0, + "camera": 5.1, + "battery": 28.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1916a/index.json b/site/public/v1/smartphones/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1916a/index.json new file mode 100644 index 00000000000..3e9f1aeb10a --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1916a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5181, + "slug": "vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1916a", + "name": "Vivo iQOO Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB V1916A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-08-31", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4500, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 3.0, + "camera": 5.1, + "battery": 28.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.862789", + "updated_at": "2026-06-19T00:43:44.862789" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1916a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1916a/score/index.json new file mode 100644 index 00000000000..0ec47f7f382 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1916a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 3.0, + "camera": 5.1, + "battery": 28.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1916t/index.json b/site/public/v1/smartphones/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1916t/index.json new file mode 100644 index 00000000000..930274e38e7 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1916t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5182, + "slug": "vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1916t", + "name": "Vivo iQOO Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB V1916T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-08-31", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4500, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 3.0, + "camera": 5.1, + "battery": 28.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.862789", + "updated_at": "2026-06-19T00:43:44.862789" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1916t/score/index.json b/site/public/v1/smartphones/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1916t/score/index.json new file mode 100644 index 00000000000..0ec47f7f382 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1916t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 3.0, + "camera": 5.1, + "battery": 28.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1922a/index.json b/site/public/v1/smartphones/vivo-iqoo-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1922a/index.json new file mode 100644 index 00000000000..281ce0c16df --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1922a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5183, + "slug": "vivo-iqoo-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1922a", + "name": "Vivo iQOO Pro Premium Edition Dual SIM TD-LTE CN 128GB V1922A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-08-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4500, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 6.0, + "camera": 5.1, + "battery": 28.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.862789", + "updated_at": "2026-06-19T00:43:44.862789" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1922a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1922a/score/index.json new file mode 100644 index 00000000000..e7275664e15 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1922a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 6.0, + "camera": 5.1, + "battery": 28.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1922t/index.json b/site/public/v1/smartphones/vivo-iqoo-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1922t/index.json new file mode 100644 index 00000000000..7eac343539e --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1922t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5184, + "slug": "vivo-iqoo-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1922t", + "name": "Vivo iQOO Pro Premium Edition Dual SIM TD-LTE CN 128GB V1922T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-08-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4500, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 6.0, + "camera": 5.1, + "battery": 28.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.863793", + "updated_at": "2026-06-19T00:43:44.863793" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1922t/score/index.json b/site/public/v1/smartphones/vivo-iqoo-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1922t/score/index.json new file mode 100644 index 00000000000..e7275664e15 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1922t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 6.0, + "camera": 5.1, + "battery": 28.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1922a/index.json b/site/public/v1/smartphones/vivo-iqoo-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1922a/index.json new file mode 100644 index 00000000000..b3ff6fdb184 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1922a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5185, + "slug": "vivo-iqoo-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1922a", + "name": "Vivo iQOO Pro Standard Edition Dual SIM TD-LTE CN 128GB V1922A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-08-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4500, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 3.0, + "camera": 5.1, + "battery": 28.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.863793", + "updated_at": "2026-06-19T00:43:44.863793" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1922a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1922a/score/index.json new file mode 100644 index 00000000000..0ec47f7f382 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1922a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 3.0, + "camera": 5.1, + "battery": 28.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1922t/index.json b/site/public/v1/smartphones/vivo-iqoo-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1922t/index.json new file mode 100644 index 00000000000..8e0166ae6c6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1922t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5186, + "slug": "vivo-iqoo-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1922t", + "name": "Vivo iQOO Pro Standard Edition Dual SIM TD-LTE CN 128GB V1922T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-08-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4500, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 215.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 3.0, + "camera": 5.1, + "battery": 28.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.863793", + "updated_at": "2026-06-19T00:43:44.863793" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1922t/score/index.json b/site/public/v1/smartphones/vivo-iqoo-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1922t/score/index.json new file mode 100644 index 00000000000..0ec47f7f382 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1922t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.3, + "performance": 3.0, + "camera": 5.1, + "battery": 28.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-standard-edition-dual-sim-td-lte-cn-128gb-v1824ba/index.json b/site/public/v1/smartphones/vivo-iqoo-standard-edition-dual-sim-td-lte-cn-128gb-v1824ba/index.json new file mode 100644 index 00000000000..89d9784a623 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-standard-edition-dual-sim-td-lte-cn-128gb-v1824ba/index.json @@ -0,0 +1,76 @@ +{ + "id": 5187, + "slug": "vivo-iqoo-standard-edition-dual-sim-td-lte-cn-128gb-v1824ba", + "name": "Vivo iQOO Standard Edition Dual SIM TD-LTE CN 128GB V1824BA", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 196.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 5.1, + "battery": 16.3, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.863793", + "updated_at": "2026-06-19T00:43:44.863793" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-standard-edition-dual-sim-td-lte-cn-128gb-v1824ba/score/index.json b/site/public/v1/smartphones/vivo-iqoo-standard-edition-dual-sim-td-lte-cn-128gb-v1824ba/score/index.json new file mode 100644 index 00000000000..425967ac2a6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-standard-edition-dual-sim-td-lte-cn-128gb-v1824ba/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 5.1, + "battery": 16.3, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-u1x-premium-edition-dual-sim-td-lte-cn-128gb-v2065a/index.json b/site/public/v1/smartphones/vivo-iqoo-u1x-premium-edition-dual-sim-td-lte-cn-128gb-v2065a/index.json new file mode 100644 index 00000000000..55150c8d152 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-u1x-premium-edition-dual-sim-td-lte-cn-128gb-v2065a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5353, + "slug": "vivo-iqoo-u1x-premium-edition-dual-sim-td-lte-cn-128gb-v2065a", + "name": "Vivo iQOO U1x Premium Edition Dual SIM TD-LTE CN 128GB V2065A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2020-11-01", + "msrp_usd": 1199, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 1.5, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": 24.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.884313", + "updated_at": "2026-06-19T00:43:44.884313" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-u1x-premium-edition-dual-sim-td-lte-cn-128gb-v2065a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-u1x-premium-edition-dual-sim-td-lte-cn-128gb-v2065a/score/index.json new file mode 100644 index 00000000000..95ab083c091 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-u1x-premium-edition-dual-sim-td-lte-cn-128gb-v2065a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 1.5, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": 24.5 +} diff --git a/site/public/v1/smartphones/vivo-iqoo-u1x-premium-edition-dual-sim-td-lte-cn-64gb-v2065a/index.json b/site/public/v1/smartphones/vivo-iqoo-u1x-premium-edition-dual-sim-td-lte-cn-64gb-v2065a/index.json new file mode 100644 index 00000000000..abc09b2e99e --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-u1x-premium-edition-dual-sim-td-lte-cn-64gb-v2065a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5354, + "slug": "vivo-iqoo-u1x-premium-edition-dual-sim-td-lte-cn-64gb-v2065a", + "name": "Vivo iQOO U1x Premium Edition Dual SIM TD-LTE CN 64GB V2065A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2020-11-01", + "msrp_usd": 999, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 1.5, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": 32.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.884313", + "updated_at": "2026-06-19T00:43:44.884313" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-u1x-premium-edition-dual-sim-td-lte-cn-64gb-v2065a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-u1x-premium-edition-dual-sim-td-lte-cn-64gb-v2065a/score/index.json new file mode 100644 index 00000000000..4ff3d5c8142 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-u1x-premium-edition-dual-sim-td-lte-cn-64gb-v2065a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 1.5, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": 32.2 +} diff --git a/site/public/v1/smartphones/vivo-iqoo-u1x-standard-edition-dual-sim-td-lte-cn-64gb-v2065a/index.json b/site/public/v1/smartphones/vivo-iqoo-u1x-standard-edition-dual-sim-td-lte-cn-64gb-v2065a/index.json new file mode 100644 index 00000000000..a82ea72d662 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-u1x-standard-edition-dual-sim-td-lte-cn-64gb-v2065a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5355, + "slug": "vivo-iqoo-u1x-standard-edition-dual-sim-td-lte-cn-64gb-v2065a", + "name": "Vivo iQOO U1x Standard Edition Dual SIM TD-LTE CN 64GB V2065A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2020-11-01", + "msrp_usd": 899, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": 35.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.884313", + "updated_at": "2026-06-19T00:43:44.884313" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-u1x-standard-edition-dual-sim-td-lte-cn-64gb-v2065a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-u1x-standard-edition-dual-sim-td-lte-cn-64gb-v2065a/score/index.json new file mode 100644 index 00000000000..dd6fd23af30 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-u1x-standard-edition-dual-sim-td-lte-cn-64gb-v2065a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": 35.8 +} diff --git a/site/public/v1/smartphones/vivo-iqoo-u3-5g-premium-edition-dual-sim-td-lte-cn-v2061a/index.json b/site/public/v1/smartphones/vivo-iqoo-u3-5g-premium-edition-dual-sim-td-lte-cn-v2061a/index.json new file mode 100644 index 00000000000..f5b50ff9629 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-u3-5g-premium-edition-dual-sim-td-lte-cn-v2061a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5356, + "slug": "vivo-iqoo-u3-5g-premium-edition-dual-sim-td-lte-cn-v2061a", + "name": "Vivo iQOO U3 5G Premium Edition Dual SIM TD-LTE CN V2061A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2020-12-18", + "msrp_usd": 1998, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 185.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.1, + "value": 11.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.884313", + "updated_at": "2026-06-19T00:43:44.884313" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-u3-5g-premium-edition-dual-sim-td-lte-cn-v2061a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-u3-5g-premium-edition-dual-sim-td-lte-cn-v2061a/score/index.json new file mode 100644 index 00000000000..858e9948856 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-u3-5g-premium-edition-dual-sim-td-lte-cn-v2061a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.1, + "value": 11.3 +} diff --git a/site/public/v1/smartphones/vivo-iqoo-u3-5g-standard-edition-dual-sim-td-lte-cn-v2061a/index.json b/site/public/v1/smartphones/vivo-iqoo-u3-5g-standard-edition-dual-sim-td-lte-cn-v2061a/index.json new file mode 100644 index 00000000000..34da9299b13 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-u3-5g-standard-edition-dual-sim-td-lte-cn-v2061a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5357, + "slug": "vivo-iqoo-u3-5g-standard-edition-dual-sim-td-lte-cn-v2061a", + "name": "Vivo iQOO U3 5G Standard Edition Dual SIM TD-LTE CN V2061A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2020-12-18", + "msrp_usd": 1698, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 185.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 40.1, + "value": 11.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.884313", + "updated_at": "2026-06-19T00:43:44.884313" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-u3-5g-standard-edition-dual-sim-td-lte-cn-v2061a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-u3-5g-standard-edition-dual-sim-td-lte-cn-v2061a/score/index.json new file mode 100644 index 00000000000..76ea32878d6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-u3-5g-standard-edition-dual-sim-td-lte-cn-v2061a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 40.1, + "value": 11.1 +} diff --git a/site/public/v1/smartphones/vivo-iqoo-u3x-5g-premium-edition-dual-sim-td-lte-cn-64gb-v2106a/index.json b/site/public/v1/smartphones/vivo-iqoo-u3x-5g-premium-edition-dual-sim-td-lte-cn-64gb-v2106a/index.json new file mode 100644 index 00000000000..c8eb26e7d56 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-u3x-5g-premium-edition-dual-sim-td-lte-cn-64gb-v2106a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5461, + "slug": "vivo-iqoo-u3x-5g-premium-edition-dual-sim-td-lte-cn-64gb-v2106a", + "name": "Vivo iQOO U3x 5G Premium Edition Dual SIM TD-LTE CN 64GB V2106A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-04-02", + "msrp_usd": 1199, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 185.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 5.3, + "battery": 30.6, + "display": 40.1, + "value": 25.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.898308", + "updated_at": "2026-06-19T00:43:44.898308" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-u3x-5g-premium-edition-dual-sim-td-lte-cn-64gb-v2106a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-u3x-5g-premium-edition-dual-sim-td-lte-cn-64gb-v2106a/score/index.json new file mode 100644 index 00000000000..939628e2d1b --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-u3x-5g-premium-edition-dual-sim-td-lte-cn-64gb-v2106a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 5.3, + "battery": 30.6, + "display": 40.1, + "value": 25.1 +} diff --git a/site/public/v1/smartphones/vivo-iqoo-u3x-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2106a/index.json b/site/public/v1/smartphones/vivo-iqoo-u3x-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2106a/index.json new file mode 100644 index 00000000000..5f38cd4c706 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-u3x-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2106a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5462, + "slug": "vivo-iqoo-u3x-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2106a", + "name": "Vivo iQOO U3x 5G Standard Edition Dual SIM TD-LTE CN 128GB V2106A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-04-02", + "msrp_usd": 1199, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 185.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 40.1, + "value": 24.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.898308", + "updated_at": "2026-06-19T00:43:44.898308" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-u3x-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2106a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-u3x-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2106a/score/index.json new file mode 100644 index 00000000000..7984894cb5f --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-u3x-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2106a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 40.1, + "value": 24.9 +} diff --git a/site/public/v1/smartphones/vivo-iqoo-u3x-5g-top-edition-dual-sim-td-lte-cn-128gb-v2106a/index.json b/site/public/v1/smartphones/vivo-iqoo-u3x-5g-top-edition-dual-sim-td-lte-cn-128gb-v2106a/index.json new file mode 100644 index 00000000000..fe8439d1f70 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-u3x-5g-top-edition-dual-sim-td-lte-cn-128gb-v2106a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5463, + "slug": "vivo-iqoo-u3x-5g-top-edition-dual-sim-td-lte-cn-128gb-v2106a", + "name": "Vivo iQOO U3x 5G Top Edition Dual SIM TD-LTE CN 128GB V2106A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-04-02", + "msrp_usd": 1499, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 185.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 3.0, + "camera": 5.3, + "battery": 30.6, + "display": 40.1, + "value": 13.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.898308", + "updated_at": "2026-06-19T00:43:44.898308" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-u3x-5g-top-edition-dual-sim-td-lte-cn-128gb-v2106a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-u3x-5g-top-edition-dual-sim-td-lte-cn-128gb-v2106a/score/index.json new file mode 100644 index 00000000000..1510b8719ab --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-u3x-5g-top-edition-dual-sim-td-lte-cn-128gb-v2106a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.8, + "performance": 3.0, + "camera": 5.3, + "battery": 30.6, + "display": 40.1, + "value": 13.8 +} diff --git a/site/public/v1/smartphones/vivo-iqoo-u3x-normal-2021-premium-edition-dual-sim-td-lte-cn-v2143a/index.json b/site/public/v1/smartphones/vivo-iqoo-u3x-normal-2021-premium-edition-dual-sim-td-lte-cn-v2143a/index.json new file mode 100644 index 00000000000..d7bb139b3f9 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-u3x-normal-2021-premium-edition-dual-sim-td-lte-cn-v2143a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5464, + "slug": "vivo-iqoo-u3x-normal-2021-premium-edition-dual-sim-td-lte-cn-v2143a", + "name": "Vivo iQOO U3x Normal 2021 Premium Edition Dual SIM TD-LTE CN V2143A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2021-06-01", + "msrp_usd": 1099, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 191.4, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 1.5, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": 28.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.898308", + "updated_at": "2026-06-19T00:43:44.898308" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-u3x-normal-2021-premium-edition-dual-sim-td-lte-cn-v2143a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-u3x-normal-2021-premium-edition-dual-sim-td-lte-cn-v2143a/score/index.json new file mode 100644 index 00000000000..fab9eb74918 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-u3x-normal-2021-premium-edition-dual-sim-td-lte-cn-v2143a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 1.5, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": 28.3 +} diff --git a/site/public/v1/smartphones/vivo-iqoo-u3x-normal-2021-standard-edition-dual-sim-td-lte-cn-v2143a/index.json b/site/public/v1/smartphones/vivo-iqoo-u3x-normal-2021-standard-edition-dual-sim-td-lte-cn-v2143a/index.json new file mode 100644 index 00000000000..9eb6dd622d2 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-u3x-normal-2021-standard-edition-dual-sim-td-lte-cn-v2143a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5465, + "slug": "vivo-iqoo-u3x-normal-2021-standard-edition-dual-sim-td-lte-cn-v2143a", + "name": "Vivo iQOO U3x Normal 2021 Standard Edition Dual SIM TD-LTE CN V2143A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2021-06-01", + "msrp_usd": 899, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 191.4, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": 35.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.898308", + "updated_at": "2026-06-19T00:43:44.898308" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-u3x-normal-2021-standard-edition-dual-sim-td-lte-cn-v2143a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-u3x-normal-2021-standard-edition-dual-sim-td-lte-cn-v2143a/score/index.json new file mode 100644 index 00000000000..dd6fd23af30 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-u3x-normal-2021-standard-edition-dual-sim-td-lte-cn-v2143a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": 35.8 +} diff --git a/site/public/v1/smartphones/vivo-iqoo-z1-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1986a/index.json b/site/public/v1/smartphones/vivo-iqoo-z1-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1986a/index.json new file mode 100644 index 00000000000..fa96ef4f641 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-z1-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1986a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5358, + "slug": "vivo-iqoo-z1-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1986a", + "name": "Vivo iQOO Z1 5G Premium Edition Dual SIM TD-LTE CN 128GB V1986A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 53, + "slug": "dimensity-1000-plus", + "name": "Dimensity 1000 Plus", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1000-plus" + }, + "release_date": "2020-06-02", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2408", + "refresh_hz": 144, + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "battery_mah": 4500, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 194.78, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 3.0, + "camera": 16.5, + "battery": 28.0, + "display": 62.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.884313", + "updated_at": "2026-06-19T00:43:44.884313" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-z1-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1986a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-z1-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1986a/score/index.json new file mode 100644 index 00000000000..0cf10c56719 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-z1-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1986a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 3.0, + "camera": 16.5, + "battery": 28.0, + "display": 62.7, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-z1-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1986a/index.json b/site/public/v1/smartphones/vivo-iqoo-z1-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1986a/index.json new file mode 100644 index 00000000000..ea618871f3a --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-z1-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1986a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5359, + "slug": "vivo-iqoo-z1-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1986a", + "name": "Vivo iQOO Z1 5G Premium Edition Dual SIM TD-LTE CN 256GB V1986A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 53, + "slug": "dimensity-1000-plus", + "name": "Dimensity 1000 Plus", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1000-plus" + }, + "release_date": "2020-06-02", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2408", + "refresh_hz": 144, + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "battery_mah": 4500, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 194.78, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 3.0, + "camera": 16.5, + "battery": 28.0, + "display": 62.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.884313", + "updated_at": "2026-06-19T00:43:44.884313" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-z1-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1986a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-z1-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1986a/score/index.json new file mode 100644 index 00000000000..0cf10c56719 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-z1-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1986a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 3.0, + "camera": 16.5, + "battery": 28.0, + "display": 62.7, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-z1-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1986a/index.json b/site/public/v1/smartphones/vivo-iqoo-z1-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1986a/index.json new file mode 100644 index 00000000000..ff0118db34b --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-z1-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1986a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5360, + "slug": "vivo-iqoo-z1-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1986a", + "name": "Vivo iQOO Z1 5G Standard Edition Dual SIM TD-LTE CN 128GB V1986A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 53, + "slug": "dimensity-1000-plus", + "name": "Dimensity 1000 Plus", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1000-plus" + }, + "release_date": "2020-06-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2408", + "refresh_hz": 144, + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 16.2 + } + ], + "battery_mah": 4500, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 194.78, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.2, + "performance": 1.5, + "camera": 16.5, + "battery": 28.0, + "display": 62.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.884313", + "updated_at": "2026-06-19T00:43:44.884313" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-z1-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1986a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-z1-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1986a/score/index.json new file mode 100644 index 00000000000..2db2c47db6c --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-z1-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1986a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.2, + "performance": 1.5, + "camera": 16.5, + "battery": 28.0, + "display": 62.7, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-z1x-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2012a/index.json b/site/public/v1/smartphones/vivo-iqoo-z1x-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2012a/index.json new file mode 100644 index 00000000000..02f2bc7861b --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-z1x-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2012a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5361, + "slug": "vivo-iqoo-z1x-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2012a", + "name": "Vivo iQOO Z1x 5G Premium Edition Dual SIM TD-LTE CN 128GB V2012A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-07-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2408", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 199.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 3.0, + "camera": 16.5, + "battery": 33.4, + "display": 52.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.884313", + "updated_at": "2026-06-19T00:43:44.884313" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-z1x-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2012a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-z1x-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2012a/score/index.json new file mode 100644 index 00000000000..e01ff05c9c1 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-z1x-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2012a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 3.0, + "camera": 16.5, + "battery": 33.4, + "display": 52.7, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-z1x-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2012a/index.json b/site/public/v1/smartphones/vivo-iqoo-z1x-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2012a/index.json new file mode 100644 index 00000000000..8572c535814 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-z1x-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2012a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5362, + "slug": "vivo-iqoo-z1x-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2012a", + "name": "Vivo iQOO Z1x 5G Premium Edition Dual SIM TD-LTE CN 256GB V2012A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-07-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2408", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 199.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 3.0, + "camera": 16.5, + "battery": 33.4, + "display": 52.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.885312", + "updated_at": "2026-06-19T00:43:44.885312" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-z1x-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2012a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-z1x-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2012a/score/index.json new file mode 100644 index 00000000000..e01ff05c9c1 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-z1x-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2012a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 3.0, + "camera": 16.5, + "battery": 33.4, + "display": 52.7, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-iqoo-z1x-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2012a/index.json b/site/public/v1/smartphones/vivo-iqoo-z1x-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2012a/index.json new file mode 100644 index 00000000000..551589fb3b1 --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-z1x-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2012a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5363, + "slug": "vivo-iqoo-z1x-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2012a", + "name": "Vivo iQOO Z1x 5G Standard Edition Dual SIM TD-LTE CN 128GB V2012A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-07-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2408", + "refresh_hz": 120, + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 199.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.0, + "performance": 1.5, + "camera": 16.5, + "battery": 33.4, + "display": 52.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.885312", + "updated_at": "2026-06-19T00:43:44.885312" +} diff --git a/site/public/v1/smartphones/vivo-iqoo-z1x-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2012a/score/index.json b/site/public/v1/smartphones/vivo-iqoo-z1x-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2012a/score/index.json new file mode 100644 index 00000000000..73224a5b4fe --- /dev/null +++ b/site/public/v1/smartphones/vivo-iqoo-z1x-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2012a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.0, + "performance": 1.5, + "camera": 16.5, + "battery": 33.4, + "display": 52.7, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-nex-3-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1924a/index.json b/site/public/v1/smartphones/vivo-nex-3-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1924a/index.json new file mode 100644 index 00000000000..30054232b50 --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-3-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1924a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5188, + "slug": "vivo-nex-3-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1924a", + "name": "Vivo Nex 3 5G Premium Edition Dual SIM TD-LTE CN 256GB V1924A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.89, + "resolution": "1080x2256", + "type": "AM-OLED display", + "ppi": 363 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 218.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 6.0, + "camera": 21.7, + "battery": 28.0, + "display": 41.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.863793", + "updated_at": "2026-06-19T00:43:44.863793" +} diff --git a/site/public/v1/smartphones/vivo-nex-3-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1924a/score/index.json b/site/public/v1/smartphones/vivo-nex-3-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1924a/score/index.json new file mode 100644 index 00000000000..6ab557cd1a0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-3-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1924a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 6.0, + "camera": 21.7, + "battery": 28.0, + "display": 41.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-nex-3-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1924a/index.json b/site/public/v1/smartphones/vivo-nex-3-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1924a/index.json new file mode 100644 index 00000000000..3b54f56cfee --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-3-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1924a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5189, + "slug": "vivo-nex-3-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1924a", + "name": "Vivo Nex 3 5G Standard Edition Dual SIM TD-LTE CN 256GB V1924A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-09-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.89, + "resolution": "1080x2256", + "type": "AM-OLED display", + "ppi": 363 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 218.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 3.0, + "camera": 21.7, + "battery": 28.0, + "display": 41.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.863793", + "updated_at": "2026-06-19T00:43:44.863793" +} diff --git a/site/public/v1/smartphones/vivo-nex-3-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1924a/score/index.json b/site/public/v1/smartphones/vivo-nex-3-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1924a/score/index.json new file mode 100644 index 00000000000..d1778f315a0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-3-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1924a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 3.0, + "camera": 21.7, + "battery": 28.0, + "display": 41.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-nex-3-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1924t/index.json b/site/public/v1/smartphones/vivo-nex-3-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1924t/index.json new file mode 100644 index 00000000000..163530b3f85 --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-3-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1924t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5190, + "slug": "vivo-nex-3-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1924t", + "name": "Vivo Nex 3 5G Standard Edition Dual SIM TD-LTE CN 256GB V1924T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-09-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.89, + "resolution": "1080x2256", + "type": "AM-OLED display", + "ppi": 363 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 218.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 3.0, + "camera": 21.7, + "battery": 28.0, + "display": 41.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.863793", + "updated_at": "2026-06-19T00:43:44.863793" +} diff --git a/site/public/v1/smartphones/vivo-nex-3-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1924t/score/index.json b/site/public/v1/smartphones/vivo-nex-3-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1924t/score/index.json new file mode 100644 index 00000000000..d1778f315a0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-3-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1924t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 3.0, + "camera": 21.7, + "battery": 28.0, + "display": 41.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-nex-3-5g-standard-edition-global-dual-sim-td-lte-256gb-1913/index.json b/site/public/v1/smartphones/vivo-nex-3-5g-standard-edition-global-dual-sim-td-lte-256gb-1913/index.json new file mode 100644 index 00000000000..8a4cd7ae1f0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-3-5g-standard-edition-global-dual-sim-td-lte-256gb-1913/index.json @@ -0,0 +1,76 @@ +{ + "id": 5191, + "slug": "vivo-nex-3-5g-standard-edition-global-dual-sim-td-lte-256gb-1913", + "name": "Vivo Nex 3 5G Standard Edition Global Dual SIM TD-LTE 256GB 1913", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-10-29", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.89, + "resolution": "1080x2256", + "type": "AM-OLED display", + "ppi": 363 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 218.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.4, + "performance": 3.0, + "camera": 21.7, + "battery": 23.8, + "display": 41.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.863793", + "updated_at": "2026-06-19T00:43:44.863793" +} diff --git a/site/public/v1/smartphones/vivo-nex-3-5g-standard-edition-global-dual-sim-td-lte-256gb-1913/score/index.json b/site/public/v1/smartphones/vivo-nex-3-5g-standard-edition-global-dual-sim-td-lte-256gb-1913/score/index.json new file mode 100644 index 00000000000..88d46144a0e --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-3-5g-standard-edition-global-dual-sim-td-lte-256gb-1913/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.4, + "performance": 3.0, + "camera": 21.7, + "battery": 23.8, + "display": 41.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-nex-3-dual-sim-td-lte-cn-128gb-v1923a/index.json b/site/public/v1/smartphones/vivo-nex-3-dual-sim-td-lte-cn-128gb-v1923a/index.json new file mode 100644 index 00000000000..f0b5850b8d9 --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-3-dual-sim-td-lte-cn-128gb-v1923a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5192, + "slug": "vivo-nex-3-dual-sim-td-lte-cn-128gb-v1923a", + "name": "Vivo Nex 3 Dual SIM TD-LTE CN 128GB V1923A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-09-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.89, + "resolution": "1080x2256", + "type": "AM-OLED display", + "ppi": 363 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 217.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 3.0, + "camera": 21.7, + "battery": 28.0, + "display": 41.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.864792", + "updated_at": "2026-06-19T00:43:44.864792" +} diff --git a/site/public/v1/smartphones/vivo-nex-3-dual-sim-td-lte-cn-128gb-v1923a/score/index.json b/site/public/v1/smartphones/vivo-nex-3-dual-sim-td-lte-cn-128gb-v1923a/score/index.json new file mode 100644 index 00000000000..d1778f315a0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-3-dual-sim-td-lte-cn-128gb-v1923a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 3.0, + "camera": 21.7, + "battery": 28.0, + "display": 41.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-nex-3-dual-sim-td-lte-cn-128gb-v1923t/index.json b/site/public/v1/smartphones/vivo-nex-3-dual-sim-td-lte-cn-128gb-v1923t/index.json new file mode 100644 index 00000000000..d839f1fc5dc --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-3-dual-sim-td-lte-cn-128gb-v1923t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5193, + "slug": "vivo-nex-3-dual-sim-td-lte-cn-128gb-v1923t", + "name": "Vivo Nex 3 Dual SIM TD-LTE CN 128GB V1923T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-09-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.89, + "resolution": "1080x2256", + "type": "AM-OLED display", + "ppi": 363 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 217.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 3.0, + "camera": 21.7, + "battery": 28.0, + "display": 41.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.864792", + "updated_at": "2026-06-19T00:43:44.864792" +} diff --git a/site/public/v1/smartphones/vivo-nex-3-dual-sim-td-lte-cn-128gb-v1923t/score/index.json b/site/public/v1/smartphones/vivo-nex-3-dual-sim-td-lte-cn-128gb-v1923t/score/index.json new file mode 100644 index 00000000000..d1778f315a0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-3-dual-sim-td-lte-cn-128gb-v1923t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 3.0, + "camera": 21.7, + "battery": 28.0, + "display": 41.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-nex-3-global-dual-sim-td-lte-128gb-1912/index.json b/site/public/v1/smartphones/vivo-nex-3-global-dual-sim-td-lte-128gb-1912/index.json new file mode 100644 index 00000000000..92501635f6a --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-3-global-dual-sim-td-lte-128gb-1912/index.json @@ -0,0 +1,76 @@ +{ + "id": 5194, + "slug": "vivo-nex-3-global-dual-sim-td-lte-128gb-1912", + "name": "Vivo Nex 3 Global Dual SIM TD-LTE 128GB 1912", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-09-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.89, + "resolution": "1080x2256", + "type": "AM-OLED display", + "ppi": 363 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 217.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.4, + "performance": 3.0, + "camera": 21.7, + "battery": 23.8, + "display": 41.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.864792", + "updated_at": "2026-06-19T00:43:44.864792" +} diff --git a/site/public/v1/smartphones/vivo-nex-3-global-dual-sim-td-lte-128gb-1912/score/index.json b/site/public/v1/smartphones/vivo-nex-3-global-dual-sim-td-lte-128gb-1912/score/index.json new file mode 100644 index 00000000000..88d46144a0e --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-3-global-dual-sim-td-lte-128gb-1912/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.4, + "performance": 3.0, + "camera": 21.7, + "battery": 23.8, + "display": 41.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-nex-3-global-dual-sim-td-lte-256gb-1912/index.json b/site/public/v1/smartphones/vivo-nex-3-global-dual-sim-td-lte-256gb-1912/index.json new file mode 100644 index 00000000000..b31e46a2f1b --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-3-global-dual-sim-td-lte-256gb-1912/index.json @@ -0,0 +1,76 @@ +{ + "id": 5195, + "slug": "vivo-nex-3-global-dual-sim-td-lte-256gb-1912", + "name": "Vivo Nex 3 Global Dual SIM TD-LTE 256GB 1912", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 138, + "slug": "snapdragon-855-plus", + "name": "Snapdragon 855+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855-plus" + }, + "release_date": "2019-09-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.89, + "resolution": "1080x2256", + "type": "AM-OLED display", + "ppi": 363 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 217.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.4, + "performance": 3.0, + "camera": 21.7, + "battery": 23.8, + "display": 41.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.864792", + "updated_at": "2026-06-19T00:43:44.864792" +} diff --git a/site/public/v1/smartphones/vivo-nex-3-global-dual-sim-td-lte-256gb-1912/score/index.json b/site/public/v1/smartphones/vivo-nex-3-global-dual-sim-td-lte-256gb-1912/score/index.json new file mode 100644 index 00000000000..88d46144a0e --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-3-global-dual-sim-td-lte-256gb-1912/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.4, + "performance": 3.0, + "camera": 21.7, + "battery": 23.8, + "display": 41.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-nex-3s-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1950a/index.json b/site/public/v1/smartphones/vivo-nex-3s-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1950a/index.json new file mode 100644 index 00000000000..7bb07a4da38 --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-3s-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1950a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5364, + "slug": "vivo-nex-3s-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1950a", + "name": "Vivo Nex 3S 5G Premium Edition Dual SIM TD-LTE CN 256GB V1950A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-14", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.89, + "resolution": "1080x2256", + "type": "AM-OLED display", + "ppi": 363 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 219.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 6.0, + "camera": 21.7, + "battery": 28.0, + "display": 41.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.885312", + "updated_at": "2026-06-19T00:43:44.885312" +} diff --git a/site/public/v1/smartphones/vivo-nex-3s-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1950a/score/index.json b/site/public/v1/smartphones/vivo-nex-3s-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1950a/score/index.json new file mode 100644 index 00000000000..6ab557cd1a0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-3s-5g-premium-edition-dual-sim-td-lte-cn-256gb-v1950a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.2, + "performance": 6.0, + "camera": 21.7, + "battery": 28.0, + "display": 41.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-nex-3s-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1950a/index.json b/site/public/v1/smartphones/vivo-nex-3s-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1950a/index.json new file mode 100644 index 00000000000..1b47ae16286 --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-3s-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1950a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5365, + "slug": "vivo-nex-3s-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1950a", + "name": "Vivo Nex 3S 5G Standard Edition Dual SIM TD-LTE CN 256GB V1950A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-03-14", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.89, + "resolution": "1080x2256", + "type": "AM-OLED display", + "ppi": 363 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 219.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 3.0, + "camera": 21.7, + "battery": 28.0, + "display": 41.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.885312", + "updated_at": "2026-06-19T00:43:44.885312" +} diff --git a/site/public/v1/smartphones/vivo-nex-3s-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1950a/score/index.json b/site/public/v1/smartphones/vivo-nex-3s-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1950a/score/index.json new file mode 100644 index 00000000000..d1778f315a0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-3s-5g-standard-edition-dual-sim-td-lte-cn-256gb-v1950a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 3.0, + "camera": 21.7, + "battery": 28.0, + "display": 41.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-nex-a-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/vivo-nex-a-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..9983e02a8cd --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-a-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5047, + "slug": "vivo-nex-a-dual-sim-td-lte-cn-128gb", + "name": "Vivo Nex A Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2018-06-23", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2316", + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 21.5, + "camera": 5.0, + "battery": 15.0, + "display": 43.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.845781", + "updated_at": "2026-06-19T00:43:44.845781" +} diff --git a/site/public/v1/smartphones/vivo-nex-a-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/vivo-nex-a-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..f5d219b251f --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-a-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 21.5, + "camera": 5.0, + "battery": 15.0, + "display": 43.8, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-nex-dual-display-edition-dual-sim-td-lte-cn-128gb-v1821a/index.json b/site/public/v1/smartphones/vivo-nex-dual-display-edition-dual-sim-td-lte-cn-128gb-v1821a/index.json new file mode 100644 index 00000000000..496fa45863f --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-dual-display-edition-dual-sim-td-lte-cn-128gb-v1821a/index.json @@ -0,0 +1,72 @@ +{ + "id": 5048, + "slug": "vivo-nex-dual-display-edition-dual-sim-td-lte-cn-128gb-v1821a", + "name": "Vivo Nex Dual Display Edition Dual SIM TD-LTE CN 128GB V1821A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-12-29", + "msrp_usd": null, + "ram_gb": 10, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 199.2, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.6, + "performance": 4.5, + "camera": 5.0, + "battery": 7.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.845781", + "updated_at": "2026-06-19T00:43:44.845781" +} diff --git a/site/public/v1/smartphones/vivo-nex-dual-display-edition-dual-sim-td-lte-cn-128gb-v1821a/score/index.json b/site/public/v1/smartphones/vivo-nex-dual-display-edition-dual-sim-td-lte-cn-128gb-v1821a/score/index.json new file mode 100644 index 00000000000..9b89976637c --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-dual-display-edition-dual-sim-td-lte-cn-128gb-v1821a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.6, + "performance": 4.5, + "camera": 5.0, + "battery": 7.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-nex-dual-display-edition-dual-sim-td-lte-cn-128gb-v1821t/index.json b/site/public/v1/smartphones/vivo-nex-dual-display-edition-dual-sim-td-lte-cn-128gb-v1821t/index.json new file mode 100644 index 00000000000..96e38fd89ff --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-dual-display-edition-dual-sim-td-lte-cn-128gb-v1821t/index.json @@ -0,0 +1,72 @@ +{ + "id": 5049, + "slug": "vivo-nex-dual-display-edition-dual-sim-td-lte-cn-128gb-v1821t", + "name": "Vivo Nex Dual Display Edition Dual SIM TD-LTE CN 128GB V1821T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-12-29", + "msrp_usd": null, + "ram_gb": 10, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 199.2, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.6, + "performance": 4.5, + "camera": 5.0, + "battery": 7.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.845781", + "updated_at": "2026-06-19T00:43:44.845781" +} diff --git a/site/public/v1/smartphones/vivo-nex-dual-display-edition-dual-sim-td-lte-cn-128gb-v1821t/score/index.json b/site/public/v1/smartphones/vivo-nex-dual-display-edition-dual-sim-td-lte-cn-128gb-v1821t/score/index.json new file mode 100644 index 00000000000..9b89976637c --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-dual-display-edition-dual-sim-td-lte-cn-128gb-v1821t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.6, + "performance": 4.5, + "camera": 5.0, + "battery": 7.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-nex-dual-display-edition-dual-sim-td-lte-tw-hk-my-128gb-1813/index.json b/site/public/v1/smartphones/vivo-nex-dual-display-edition-dual-sim-td-lte-tw-hk-my-128gb-1813/index.json new file mode 100644 index 00000000000..27cc75ef289 --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-dual-display-edition-dual-sim-td-lte-tw-hk-my-128gb-1813/index.json @@ -0,0 +1,72 @@ +{ + "id": 5196, + "slug": "vivo-nex-dual-display-edition-dual-sim-td-lte-tw-hk-my-128gb-1813", + "name": "Vivo Nex Dual Display Edition Dual SIM TD-LTE TW HK MY 128GB 1813", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2019-01-16", + "msrp_usd": null, + "ram_gb": 10, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 199.2, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.6, + "performance": 4.5, + "camera": 5.0, + "battery": 7.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.864792", + "updated_at": "2026-06-19T00:43:44.864792" +} diff --git a/site/public/v1/smartphones/vivo-nex-dual-display-edition-dual-sim-td-lte-tw-hk-my-128gb-1813/score/index.json b/site/public/v1/smartphones/vivo-nex-dual-display-edition-dual-sim-td-lte-tw-hk-my-128gb-1813/score/index.json new file mode 100644 index 00000000000..9b89976637c --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-dual-display-edition-dual-sim-td-lte-tw-hk-my-128gb-1813/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.6, + "performance": 4.5, + "camera": 5.0, + "battery": 7.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-nex-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/vivo-nex-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..15060f27bb3 --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5050, + "slug": "vivo-nex-dual-sim-td-lte-cn-128gb", + "name": "Vivo Nex Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2018-06-23", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2316", + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 21.5, + "camera": 5.0, + "battery": 15.0, + "display": 43.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.845781", + "updated_at": "2026-06-19T00:43:44.845781" +} diff --git a/site/public/v1/smartphones/vivo-nex-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/vivo-nex-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..f5d219b251f --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 21.5, + "camera": 5.0, + "battery": 15.0, + "display": 43.8, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-nex-global-dual-sim-td-lte-128gb-1805/index.json b/site/public/v1/smartphones/vivo-nex-global-dual-sim-td-lte-128gb-1805/index.json new file mode 100644 index 00000000000..32359d119b7 --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-global-dual-sim-td-lte-128gb-1805/index.json @@ -0,0 +1,76 @@ +{ + "id": 5051, + "slug": "vivo-nex-global-dual-sim-td-lte-128gb-1805", + "name": "Vivo Nex Global Dual SIM TD-LTE 128GB 1805", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-07-27", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2316", + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 3.0, + "camera": 5.0, + "battery": 15.0, + "display": 43.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.845781", + "updated_at": "2026-06-19T00:43:44.845781" +} diff --git a/site/public/v1/smartphones/vivo-nex-global-dual-sim-td-lte-128gb-1805/score/index.json b/site/public/v1/smartphones/vivo-nex-global-dual-sim-td-lte-128gb-1805/score/index.json new file mode 100644 index 00000000000..e93e8dec52c --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-global-dual-sim-td-lte-128gb-1805/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 3.0, + "camera": 5.0, + "battery": 15.0, + "display": 43.8, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-nex-s-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/vivo-nex-s-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..f53c4802ce0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-s-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5052, + "slug": "vivo-nex-s-dual-sim-td-lte-cn-128gb", + "name": "Vivo Nex S Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-06-24", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2316", + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 3.0, + "camera": 5.0, + "battery": 15.0, + "display": 43.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.846781", + "updated_at": "2026-06-19T00:43:44.846781" +} diff --git a/site/public/v1/smartphones/vivo-nex-s-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/vivo-nex-s-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..e93e8dec52c --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-s-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 3.0, + "camera": 5.0, + "battery": 15.0, + "display": 43.8, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-nex-s-dual-sim-td-lte-cn-256gb-nex-ultimate/index.json b/site/public/v1/smartphones/vivo-nex-s-dual-sim-td-lte-cn-256gb-nex-ultimate/index.json new file mode 100644 index 00000000000..77b9ad309a7 --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-s-dual-sim-td-lte-cn-256gb-nex-ultimate/index.json @@ -0,0 +1,76 @@ +{ + "id": 5053, + "slug": "vivo-nex-s-dual-sim-td-lte-cn-256gb-nex-ultimate", + "name": "Vivo Nex S Dual SIM TD-LTE CN 256GB / NEX Ultimate", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-06-23", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2316", + "type": "AM-OLED display", + "ppi": 388 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 3.0, + "camera": 5.0, + "battery": 15.0, + "display": 43.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.846781", + "updated_at": "2026-06-19T00:43:44.846781" +} diff --git a/site/public/v1/smartphones/vivo-nex-s-dual-sim-td-lte-cn-256gb-nex-ultimate/score/index.json b/site/public/v1/smartphones/vivo-nex-s-dual-sim-td-lte-cn-256gb-nex-ultimate/score/index.json new file mode 100644 index 00000000000..e93e8dec52c --- /dev/null +++ b/site/public/v1/smartphones/vivo-nex-s-dual-sim-td-lte-cn-256gb-nex-ultimate/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.7, + "performance": 3.0, + "camera": 5.0, + "battery": 15.0, + "display": 43.8, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-au-ph-sg-128gb-1907/index.json b/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-au-ph-sg-128gb-1907/index.json new file mode 100644 index 00000000000..1d864149420 --- /dev/null +++ b/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-au-ph-sg-128gb-1907/index.json @@ -0,0 +1,76 @@ +{ + "id": 5197, + "slug": "vivo-s1-dual-sim-td-lte-au-ph-sg-128gb-1907", + "name": "Vivo S1 Dual SIM TD-LTE AU PH SG 128GB 1907", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 52, + "slug": "helio-p65", + "name": "Helio P65", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-p65" + }, + "release_date": "2019-08-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 1.5, + "camera": 6.3, + "battery": 23.1, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.864792", + "updated_at": "2026-06-19T00:43:44.864792" +} diff --git a/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-au-ph-sg-128gb-1907/score/index.json b/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-au-ph-sg-128gb-1907/score/index.json new file mode 100644 index 00000000000..71150b92f87 --- /dev/null +++ b/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-au-ph-sg-128gb-1907/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 1.5, + "camera": 6.3, + "battery": 23.1, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-cn-128gb-v1831a-vivo-z5/index.json b/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-cn-128gb-v1831a-vivo-z5/index.json new file mode 100644 index 00000000000..49e02808a9b --- /dev/null +++ b/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-cn-128gb-v1831a-vivo-z5/index.json @@ -0,0 +1,76 @@ +{ + "id": 5198, + "slug": "vivo-s1-dual-sim-td-lte-cn-128gb-v1831a-vivo-z5", + "name": "Vivo S1 Dual SIM TD-LTE CN 128GB V1831A / Vivo Z5", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-04-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3940, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 189.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.4, + "performance": 1.5, + "camera": 5.0, + "battery": 14.7, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.864792", + "updated_at": "2026-06-19T00:43:44.864792" +} diff --git a/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-cn-128gb-v1831a-vivo-z5/score/index.json b/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-cn-128gb-v1831a-vivo-z5/score/index.json new file mode 100644 index 00000000000..b8b739d6a6a --- /dev/null +++ b/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-cn-128gb-v1831a-vivo-z5/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.4, + "performance": 1.5, + "camera": 5.0, + "battery": 14.7, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-cn-128gb-v1831t/index.json b/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-cn-128gb-v1831t/index.json new file mode 100644 index 00000000000..254c2acc75f --- /dev/null +++ b/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-cn-128gb-v1831t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5199, + "slug": "vivo-s1-dual-sim-td-lte-cn-128gb-v1831t", + "name": "Vivo S1 Dual SIM TD-LTE CN 128GB V1831T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-04-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3940, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 189.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.4, + "performance": 1.5, + "camera": 5.0, + "battery": 14.7, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.864792", + "updated_at": "2026-06-19T00:43:44.864792" +} diff --git a/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-cn-128gb-v1831t/score/index.json b/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-cn-128gb-v1831t/score/index.json new file mode 100644 index 00000000000..b8b739d6a6a --- /dev/null +++ b/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-cn-128gb-v1831t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.4, + "performance": 1.5, + "camera": 5.0, + "battery": 14.7, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-hk-128gb-1907/index.json b/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-hk-128gb-1907/index.json new file mode 100644 index 00000000000..62e46687b80 --- /dev/null +++ b/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-hk-128gb-1907/index.json @@ -0,0 +1,76 @@ +{ + "id": 5200, + "slug": "vivo-s1-dual-sim-td-lte-hk-128gb-1907", + "name": "Vivo S1 Dual SIM TD-LTE HK 128GB 1907", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 52, + "slug": "helio-p65", + "name": "Helio P65", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-p65" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 1.5, + "camera": 6.3, + "battery": 23.1, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.865785", + "updated_at": "2026-06-19T00:43:44.865785" +} diff --git a/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-hk-128gb-1907/score/index.json b/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-hk-128gb-1907/score/index.json new file mode 100644 index 00000000000..71150b92f87 --- /dev/null +++ b/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-hk-128gb-1907/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 1.5, + "camera": 6.3, + "battery": 23.1, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-id-128gb-1907/index.json b/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-id-128gb-1907/index.json new file mode 100644 index 00000000000..fc5cbeb548d --- /dev/null +++ b/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-id-128gb-1907/index.json @@ -0,0 +1,76 @@ +{ + "id": 5201, + "slug": "vivo-s1-dual-sim-td-lte-id-128gb-1907", + "name": "Vivo S1 Dual SIM TD-LTE ID 128GB 1907", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 52, + "slug": "helio-p65", + "name": "Helio P65", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-p65" + }, + "release_date": "2019-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 0.0, + "camera": 6.3, + "battery": 23.1, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.865785", + "updated_at": "2026-06-19T00:43:44.865785" +} diff --git a/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-id-128gb-1907/score/index.json b/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-id-128gb-1907/score/index.json new file mode 100644 index 00000000000..3d5c3ecc29f --- /dev/null +++ b/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-id-128gb-1907/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 0.0, + "camera": 6.3, + "battery": 23.1, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-in-128gb-1907/index.json b/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-in-128gb-1907/index.json new file mode 100644 index 00000000000..5a73cc38e9e --- /dev/null +++ b/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-in-128gb-1907/index.json @@ -0,0 +1,76 @@ +{ + "id": 5202, + "slug": "vivo-s1-dual-sim-td-lte-in-128gb-1907", + "name": "Vivo S1 Dual SIM TD-LTE IN 128GB 1907", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 52, + "slug": "helio-p65", + "name": "Helio P65", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-p65" + }, + "release_date": "2019-08-14", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 1.5, + "camera": 6.3, + "battery": 23.1, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.865785", + "updated_at": "2026-06-19T00:43:44.865785" +} diff --git a/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-in-128gb-1907/score/index.json b/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-in-128gb-1907/score/index.json new file mode 100644 index 00000000000..71150b92f87 --- /dev/null +++ b/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-in-128gb-1907/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 1.5, + "camera": 6.3, + "battery": 23.1, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-in-64gb-1907/index.json b/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-in-64gb-1907/index.json new file mode 100644 index 00000000000..6755952416a --- /dev/null +++ b/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-in-64gb-1907/index.json @@ -0,0 +1,76 @@ +{ + "id": 5203, + "slug": "vivo-s1-dual-sim-td-lte-in-64gb-1907", + "name": "Vivo S1 Dual SIM TD-LTE IN 64GB 1907", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 52, + "slug": "helio-p65", + "name": "Helio P65", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-p65" + }, + "release_date": "2019-08-14", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 0.0, + "camera": 6.3, + "battery": 23.1, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.865785", + "updated_at": "2026-06-19T00:43:44.865785" +} diff --git a/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-in-64gb-1907/score/index.json b/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-in-64gb-1907/score/index.json new file mode 100644 index 00000000000..3d5c3ecc29f --- /dev/null +++ b/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-in-64gb-1907/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 0.0, + "camera": 6.3, + "battery": 23.1, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-th-vn-my-128gb-1907/index.json b/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-th-vn-my-128gb-1907/index.json new file mode 100644 index 00000000000..ebae73c03a8 --- /dev/null +++ b/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-th-vn-my-128gb-1907/index.json @@ -0,0 +1,76 @@ +{ + "id": 5204, + "slug": "vivo-s1-dual-sim-td-lte-th-vn-my-128gb-1907", + "name": "Vivo S1 Dual SIM TD-LTE TH VN MY 128GB 1907", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 52, + "slug": "helio-p65", + "name": "Helio P65", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-p65" + }, + "release_date": "2019-08-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 1.5, + "camera": 6.3, + "battery": 23.1, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.865785", + "updated_at": "2026-06-19T00:43:44.865785" +} diff --git a/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-th-vn-my-128gb-1907/score/index.json b/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-th-vn-my-128gb-1907/score/index.json new file mode 100644 index 00000000000..71150b92f87 --- /dev/null +++ b/site/public/v1/smartphones/vivo-s1-dual-sim-td-lte-th-vn-my-128gb-1907/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 1.5, + "camera": 6.3, + "battery": 23.1, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-s1-prime-dual-sim-td-lte-apac-128gb-v1937/index.json b/site/public/v1/smartphones/vivo-s1-prime-dual-sim-td-lte-apac-128gb-v1937/index.json new file mode 100644 index 00000000000..c6abc06d49a --- /dev/null +++ b/site/public/v1/smartphones/vivo-s1-prime-dual-sim-td-lte-apac-128gb-v1937/index.json @@ -0,0 +1,76 @@ +{ + "id": 5366, + "slug": "vivo-s1-prime-dual-sim-td-lte-apac-128gb-v1937", + "name": "Vivo S1 Prime Dual SIM TD-LTE APAC 128GB V1937", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-08-13", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.2, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.885312", + "updated_at": "2026-06-19T00:43:44.885312" +} diff --git a/site/public/v1/smartphones/vivo-s1-prime-dual-sim-td-lte-apac-128gb-v1937/score/index.json b/site/public/v1/smartphones/vivo-s1-prime-dual-sim-td-lte-apac-128gb-v1937/score/index.json new file mode 100644 index 00000000000..40b4ea4e54e --- /dev/null +++ b/site/public/v1/smartphones/vivo-s1-prime-dual-sim-td-lte-apac-128gb-v1937/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-s1-pro-dual-sim-td-lte-id-bd-np-128gb-1920/index.json b/site/public/v1/smartphones/vivo-s1-pro-dual-sim-td-lte-id-bd-np-128gb-1920/index.json new file mode 100644 index 00000000000..8d5fa3b7a19 --- /dev/null +++ b/site/public/v1/smartphones/vivo-s1-pro-dual-sim-td-lte-id-bd-np-128gb-1920/index.json @@ -0,0 +1,76 @@ +{ + "id": 5205, + "slug": "vivo-s1-pro-dual-sim-td-lte-id-bd-np-128gb-1920", + "name": "Vivo S1 Pro Dual SIM TD-LTE ID BD NP 128GB 1920", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 186.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.865785", + "updated_at": "2026-06-19T00:43:44.865785" +} diff --git a/site/public/v1/smartphones/vivo-s1-pro-dual-sim-td-lte-id-bd-np-128gb-1920/score/index.json b/site/public/v1/smartphones/vivo-s1-pro-dual-sim-td-lte-id-bd-np-128gb-1920/score/index.json new file mode 100644 index 00000000000..40b4ea4e54e --- /dev/null +++ b/site/public/v1/smartphones/vivo-s1-pro-dual-sim-td-lte-id-bd-np-128gb-1920/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-s1-pro-dual-sim-td-lte-my-vn-in-128gb-1920/index.json b/site/public/v1/smartphones/vivo-s1-pro-dual-sim-td-lte-my-vn-in-128gb-1920/index.json new file mode 100644 index 00000000000..53ab6e27bbf --- /dev/null +++ b/site/public/v1/smartphones/vivo-s1-pro-dual-sim-td-lte-my-vn-in-128gb-1920/index.json @@ -0,0 +1,76 @@ +{ + "id": 5206, + "slug": "vivo-s1-pro-dual-sim-td-lte-my-vn-in-128gb-1920", + "name": "Vivo S1 Pro Dual SIM TD-LTE MY VN IN 128GB 1920", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 186.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.865785", + "updated_at": "2026-06-19T00:43:44.865785" +} diff --git a/site/public/v1/smartphones/vivo-s1-pro-dual-sim-td-lte-my-vn-in-128gb-1920/score/index.json b/site/public/v1/smartphones/vivo-s1-pro-dual-sim-td-lte-my-vn-in-128gb-1920/score/index.json new file mode 100644 index 00000000000..40b4ea4e54e --- /dev/null +++ b/site/public/v1/smartphones/vivo-s1-pro-dual-sim-td-lte-my-vn-in-128gb-1920/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-s1-pro-dual-sim-td-lte-th-ph-128gb-1920/index.json b/site/public/v1/smartphones/vivo-s1-pro-dual-sim-td-lte-th-ph-128gb-1920/index.json new file mode 100644 index 00000000000..e4c7837645b --- /dev/null +++ b/site/public/v1/smartphones/vivo-s1-pro-dual-sim-td-lte-th-ph-128gb-1920/index.json @@ -0,0 +1,76 @@ +{ + "id": 5207, + "slug": "vivo-s1-pro-dual-sim-td-lte-th-ph-128gb-1920", + "name": "Vivo S1 Pro Dual SIM TD-LTE TH PH 128GB 1920", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 186.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.865785", + "updated_at": "2026-06-19T00:43:44.865785" +} diff --git a/site/public/v1/smartphones/vivo-s1-pro-dual-sim-td-lte-th-ph-128gb-1920/score/index.json b/site/public/v1/smartphones/vivo-s1-pro-dual-sim-td-lte-th-ph-128gb-1920/score/index.json new file mode 100644 index 00000000000..40b4ea4e54e --- /dev/null +++ b/site/public/v1/smartphones/vivo-s1-pro-dual-sim-td-lte-th-ph-128gb-1920/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-s1-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1832a/index.json b/site/public/v1/smartphones/vivo-s1-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1832a/index.json new file mode 100644 index 00000000000..09a70653e42 --- /dev/null +++ b/site/public/v1/smartphones/vivo-s1-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1832a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5208, + "slug": "vivo-s1-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1832a", + "name": "Vivo S1 Pro Premium Edition Dual SIM TD-LTE CN 128GB V1832A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-05-09", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.8, + "performance": 3.0, + "camera": 16.5, + "battery": 10.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.865785", + "updated_at": "2026-06-19T00:43:44.865785" +} diff --git a/site/public/v1/smartphones/vivo-s1-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1832a/score/index.json b/site/public/v1/smartphones/vivo-s1-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1832a/score/index.json new file mode 100644 index 00000000000..78fcadff75a --- /dev/null +++ b/site/public/v1/smartphones/vivo-s1-pro-premium-edition-dual-sim-td-lte-cn-128gb-v1832a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.8, + "performance": 3.0, + "camera": 16.5, + "battery": 10.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1832a/index.json b/site/public/v1/smartphones/vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1832a/index.json new file mode 100644 index 00000000000..4b2063643fd --- /dev/null +++ b/site/public/v1/smartphones/vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1832a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5209, + "slug": "vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1832a", + "name": "Vivo S1 Pro Standard Edition Dual SIM TD-LTE CN 128GB V1832A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 1.5, + "camera": 16.5, + "battery": 10.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.866785", + "updated_at": "2026-06-19T00:43:44.866785" +} diff --git a/site/public/v1/smartphones/vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1832a/score/index.json b/site/public/v1/smartphones/vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1832a/score/index.json new file mode 100644 index 00000000000..159c31624f6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1832a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 1.5, + "camera": 16.5, + "battery": 10.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1832t/index.json b/site/public/v1/smartphones/vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1832t/index.json new file mode 100644 index 00000000000..f4234678d2a --- /dev/null +++ b/site/public/v1/smartphones/vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1832t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5210, + "slug": "vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1832t", + "name": "Vivo S1 Pro Standard Edition Dual SIM TD-LTE CN 128GB V1832T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-05-09", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 1.5, + "camera": 16.5, + "battery": 10.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.866785", + "updated_at": "2026-06-19T00:43:44.866785" +} diff --git a/site/public/v1/smartphones/vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1832t/score/index.json b/site/public/v1/smartphones/vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1832t/score/index.json new file mode 100644 index 00000000000..159c31624f6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-128gb-v1832t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 1.5, + "camera": 16.5, + "battery": 10.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-256gb-v1832a/index.json b/site/public/v1/smartphones/vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-256gb-v1832a/index.json new file mode 100644 index 00000000000..2457d47a97c --- /dev/null +++ b/site/public/v1/smartphones/vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-256gb-v1832a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5211, + "slug": "vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-256gb-v1832a", + "name": "Vivo S1 Pro Standard Edition Dual SIM TD-LTE CN 256GB V1832A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-05-09", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 1.5, + "camera": 16.5, + "battery": 10.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.866785", + "updated_at": "2026-06-19T00:43:44.866785" +} diff --git a/site/public/v1/smartphones/vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-256gb-v1832a/score/index.json b/site/public/v1/smartphones/vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-256gb-v1832a/score/index.json new file mode 100644 index 00000000000..159c31624f6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-s1-pro-standard-edition-dual-sim-td-lte-cn-256gb-v1832a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 1.5, + "camera": 16.5, + "battery": 10.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-s10-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2121a/index.json b/site/public/v1/smartphones/vivo-s10-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2121a/index.json new file mode 100644 index 00000000000..f4493d4a994 --- /dev/null +++ b/site/public/v1/smartphones/vivo-s10-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2121a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5466, + "slug": "vivo-s10-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2121a", + "name": "Vivo S10 5G 2021 Standard Edition Dual SIM TD-LTE CN 128GB V2121A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 66, + "slug": "dimensity-1100", + "name": "Dimensity 1100", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1100" + }, + "release_date": "2021-07-01", + "msrp_usd": 2799, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "battery_mah": 4050, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 3.0, + "camera": 21.5, + "battery": 26.3, + "display": 40.9, + "value": 11.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.898308", + "updated_at": "2026-06-19T00:43:44.898308" +} diff --git a/site/public/v1/smartphones/vivo-s10-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2121a/score/index.json b/site/public/v1/smartphones/vivo-s10-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2121a/score/index.json new file mode 100644 index 00000000000..500c4515f4b --- /dev/null +++ b/site/public/v1/smartphones/vivo-s10-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2121a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 3.0, + "camera": 21.5, + "battery": 26.3, + "display": 40.9, + "value": 11.4 +} diff --git a/site/public/v1/smartphones/vivo-s10-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-v2121a/index.json b/site/public/v1/smartphones/vivo-s10-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-v2121a/index.json new file mode 100644 index 00000000000..6ecf1ef0278 --- /dev/null +++ b/site/public/v1/smartphones/vivo-s10-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-v2121a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5467, + "slug": "vivo-s10-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-v2121a", + "name": "Vivo S10 5G 2021 Standard Edition Dual SIM TD-LTE CN 256GB V2121A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 66, + "slug": "dimensity-1100", + "name": "Dimensity 1100", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1100" + }, + "release_date": "2021-07-01", + "msrp_usd": 2999, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "battery_mah": 4050, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 3.0, + "camera": 21.5, + "battery": 26.3, + "display": 40.9, + "value": 11.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.898308", + "updated_at": "2026-06-19T00:43:44.898308" +} diff --git a/site/public/v1/smartphones/vivo-s10-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-v2121a/score/index.json b/site/public/v1/smartphones/vivo-s10-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-v2121a/score/index.json new file mode 100644 index 00000000000..500c4515f4b --- /dev/null +++ b/site/public/v1/smartphones/vivo-s10-5g-2021-standard-edition-dual-sim-td-lte-cn-256gb-v2121a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 3.0, + "camera": 21.5, + "battery": 26.3, + "display": 40.9, + "value": 11.4 +} diff --git a/site/public/v1/smartphones/vivo-s10-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-v2121a/index.json b/site/public/v1/smartphones/vivo-s10-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-v2121a/index.json new file mode 100644 index 00000000000..93077427df8 --- /dev/null +++ b/site/public/v1/smartphones/vivo-s10-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-v2121a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5468, + "slug": "vivo-s10-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-v2121a", + "name": "Vivo S10 Pro 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB V2121A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 66, + "slug": "dimensity-1100", + "name": "Dimensity 1100", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1100" + }, + "release_date": "2021-07-22", + "msrp_usd": 3399, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "battery_mah": 4050, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.2, + "performance": 6.0, + "camera": 35.7, + "battery": 26.3, + "display": 40.9, + "value": 13.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.898308", + "updated_at": "2026-06-19T00:43:44.898308" +} diff --git a/site/public/v1/smartphones/vivo-s10-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-v2121a/score/index.json b/site/public/v1/smartphones/vivo-s10-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-v2121a/score/index.json new file mode 100644 index 00000000000..45b20d04887 --- /dev/null +++ b/site/public/v1/smartphones/vivo-s10-pro-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-v2121a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.2, + "performance": 6.0, + "camera": 35.7, + "battery": 26.3, + "display": 40.9, + "value": 13.6 +} diff --git a/site/public/v1/smartphones/vivo-s10-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2121a/index.json b/site/public/v1/smartphones/vivo-s10-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2121a/index.json new file mode 100644 index 00000000000..f426807524c --- /dev/null +++ b/site/public/v1/smartphones/vivo-s10-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2121a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5469, + "slug": "vivo-s10-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2121a", + "name": "Vivo S10 Pro 5G 2021 Standard Edition Dual SIM TD-LTE CN 128GB V2121A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 66, + "slug": "dimensity-1100", + "name": "Dimensity 1100", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1100" + }, + "release_date": "2021-08-01", + "msrp_usd": 2999, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 108.0 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "battery_mah": 4050, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.5, + "performance": 3.0, + "camera": 35.7, + "battery": 26.3, + "display": 40.9, + "value": 13.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.899308", + "updated_at": "2026-06-19T00:43:44.899308" +} diff --git a/site/public/v1/smartphones/vivo-s10-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2121a/score/index.json b/site/public/v1/smartphones/vivo-s10-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2121a/score/index.json new file mode 100644 index 00000000000..e7aae7d0c67 --- /dev/null +++ b/site/public/v1/smartphones/vivo-s10-pro-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2121a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.5, + "performance": 3.0, + "camera": 35.7, + "battery": 26.3, + "display": 40.9, + "value": 13.2 +} diff --git a/site/public/v1/smartphones/vivo-s5-dual-sim-td-lte-cn-128gb-v1932a/index.json b/site/public/v1/smartphones/vivo-s5-dual-sim-td-lte-cn-128gb-v1932a/index.json new file mode 100644 index 00000000000..838df027fe0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-s5-dual-sim-td-lte-cn-128gb-v1932a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5212, + "slug": "vivo-s5-dual-sim-td-lte-cn-128gb-v1932a", + "name": "Vivo S5 Dual SIM TD-LTE CN 128GB V1932A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2019-11-22", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 16.5, + "battery": 17.9, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.866785", + "updated_at": "2026-06-19T00:43:44.866785" +} diff --git a/site/public/v1/smartphones/vivo-s5-dual-sim-td-lte-cn-128gb-v1932a/score/index.json b/site/public/v1/smartphones/vivo-s5-dual-sim-td-lte-cn-128gb-v1932a/score/index.json new file mode 100644 index 00000000000..350de4e8dab --- /dev/null +++ b/site/public/v1/smartphones/vivo-s5-dual-sim-td-lte-cn-128gb-v1932a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 16.5, + "battery": 17.9, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-s5-dual-sim-td-lte-cn-128gb-v1932t/index.json b/site/public/v1/smartphones/vivo-s5-dual-sim-td-lte-cn-128gb-v1932t/index.json new file mode 100644 index 00000000000..d32193bcabd --- /dev/null +++ b/site/public/v1/smartphones/vivo-s5-dual-sim-td-lte-cn-128gb-v1932t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5213, + "slug": "vivo-s5-dual-sim-td-lte-cn-128gb-v1932t", + "name": "Vivo S5 Dual SIM TD-LTE CN 128GB V1932T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2019-11-22", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 16.5, + "battery": 17.9, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.866785", + "updated_at": "2026-06-19T00:43:44.866785" +} diff --git a/site/public/v1/smartphones/vivo-s5-dual-sim-td-lte-cn-128gb-v1932t/score/index.json b/site/public/v1/smartphones/vivo-s5-dual-sim-td-lte-cn-128gb-v1932t/score/index.json new file mode 100644 index 00000000000..350de4e8dab --- /dev/null +++ b/site/public/v1/smartphones/vivo-s5-dual-sim-td-lte-cn-128gb-v1932t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 3.0, + "camera": 16.5, + "battery": 17.9, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-s6-5g-dual-sim-td-lte-cn-128gb-v1962a/index.json b/site/public/v1/smartphones/vivo-s6-5g-dual-sim-td-lte-cn-128gb-v1962a/index.json new file mode 100644 index 00000000000..1b7eda2d4d0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-s6-5g-dual-sim-td-lte-cn-128gb-v1962a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5367, + "slug": "vivo-s6-5g-dual-sim-td-lte-cn-128gb-v1962a", + "name": "Vivo S6 5G Dual SIM TD-LTE CN 128GB V1962A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 193, + "slug": "exynos-980", + "name": "Exynos 980", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali G76 MP5", + "url": "/v1/socs/exynos-980" + }, + "release_date": "2020-04-03", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.885312", + "updated_at": "2026-06-19T00:43:44.885312" +} diff --git a/site/public/v1/smartphones/vivo-s6-5g-dual-sim-td-lte-cn-128gb-v1962a/score/index.json b/site/public/v1/smartphones/vivo-s6-5g-dual-sim-td-lte-cn-128gb-v1962a/score/index.json new file mode 100644 index 00000000000..c2f52ec179e --- /dev/null +++ b/site/public/v1/smartphones/vivo-s6-5g-dual-sim-td-lte-cn-128gb-v1962a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-s6-5g-dual-sim-td-lte-cn-256gb-v1962a/index.json b/site/public/v1/smartphones/vivo-s6-5g-dual-sim-td-lte-cn-256gb-v1962a/index.json new file mode 100644 index 00000000000..b821cee097a --- /dev/null +++ b/site/public/v1/smartphones/vivo-s6-5g-dual-sim-td-lte-cn-256gb-v1962a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5368, + "slug": "vivo-s6-5g-dual-sim-td-lte-cn-256gb-v1962a", + "name": "Vivo S6 5G Dual SIM TD-LTE CN 256GB V1962A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 193, + "slug": "exynos-980", + "name": "Exynos 980", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali G76 MP5", + "url": "/v1/socs/exynos-980" + }, + "release_date": "2020-04-03", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.885312", + "updated_at": "2026-06-19T00:43:44.885312" +} diff --git a/site/public/v1/smartphones/vivo-s6-5g-dual-sim-td-lte-cn-256gb-v1962a/score/index.json b/site/public/v1/smartphones/vivo-s6-5g-dual-sim-td-lte-cn-256gb-v1962a/score/index.json new file mode 100644 index 00000000000..c2f52ec179e --- /dev/null +++ b/site/public/v1/smartphones/vivo-s6-5g-dual-sim-td-lte-cn-256gb-v1962a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-s7-5g-dual-sim-td-lte-cn-128gb-v2020a-v2020ca/index.json b/site/public/v1/smartphones/vivo-s7-5g-dual-sim-td-lte-cn-128gb-v2020a-v2020ca/index.json new file mode 100644 index 00000000000..c2c5d23b53a --- /dev/null +++ b/site/public/v1/smartphones/vivo-s7-5g-dual-sim-td-lte-cn-128gb-v2020a-v2020ca/index.json @@ -0,0 +1,76 @@ +{ + "id": 5369, + "slug": "vivo-s7-5g-dual-sim-td-lte-cn-128gb-v2020a-v2020ca", + "name": "Vivo S7 5G Dual SIM TD-LTE CN 128GB V2020A / V2020CA", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-08-08", + "msrp_usd": 2798, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 3.0, + "camera": 21.5, + "battery": 18.4, + "display": 45.9, + "value": 11.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.885312", + "updated_at": "2026-06-19T00:43:44.885312" +} diff --git a/site/public/v1/smartphones/vivo-s7-5g-dual-sim-td-lte-cn-128gb-v2020a-v2020ca/score/index.json b/site/public/v1/smartphones/vivo-s7-5g-dual-sim-td-lte-cn-128gb-v2020a-v2020ca/score/index.json new file mode 100644 index 00000000000..2315fc1c741 --- /dev/null +++ b/site/public/v1/smartphones/vivo-s7-5g-dual-sim-td-lte-cn-128gb-v2020a-v2020ca/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 3.0, + "camera": 21.5, + "battery": 18.4, + "display": 45.9, + "value": 11.1 +} diff --git a/site/public/v1/smartphones/vivo-s7-5g-dual-sim-td-lte-cn-256gb-v2020a/index.json b/site/public/v1/smartphones/vivo-s7-5g-dual-sim-td-lte-cn-256gb-v2020a/index.json new file mode 100644 index 00000000000..5404e5273be --- /dev/null +++ b/site/public/v1/smartphones/vivo-s7-5g-dual-sim-td-lte-cn-256gb-v2020a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5370, + "slug": "vivo-s7-5g-dual-sim-td-lte-cn-256gb-v2020a", + "name": "Vivo S7 5G Dual SIM TD-LTE CN 256GB V2020A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-08-08", + "msrp_usd": 3098, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 3.0, + "camera": 21.5, + "battery": 18.4, + "display": 45.9, + "value": 11.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.885312", + "updated_at": "2026-06-19T00:43:44.885312" +} diff --git a/site/public/v1/smartphones/vivo-s7-5g-dual-sim-td-lte-cn-256gb-v2020a/score/index.json b/site/public/v1/smartphones/vivo-s7-5g-dual-sim-td-lte-cn-256gb-v2020a/score/index.json new file mode 100644 index 00000000000..2315fc1c741 --- /dev/null +++ b/site/public/v1/smartphones/vivo-s7-5g-dual-sim-td-lte-cn-256gb-v2020a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 3.0, + "camera": 21.5, + "battery": 18.4, + "display": 45.9, + "value": 11.1 +} diff --git a/site/public/v1/smartphones/vivo-s7e-5g-2020-dual-sim-td-lte-cn-128gb-v2031ea/index.json b/site/public/v1/smartphones/vivo-s7e-5g-2020-dual-sim-td-lte-cn-128gb-v2031ea/index.json new file mode 100644 index 00000000000..c562cfc5c3c --- /dev/null +++ b/site/public/v1/smartphones/vivo-s7e-5g-2020-dual-sim-td-lte-cn-128gb-v2031ea/index.json @@ -0,0 +1,76 @@ +{ + "id": 5371, + "slug": "vivo-s7e-5g-2020-dual-sim-td-lte-cn-128gb-v2031ea", + "name": "Vivo S7e 5G 2020 Dual SIM TD-LTE CN 128GB V2031EA", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2020-11-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 171.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 21.5, + "battery": 19.9, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.886312", + "updated_at": "2026-06-19T00:43:44.886312" +} diff --git a/site/public/v1/smartphones/vivo-s7e-5g-2020-dual-sim-td-lte-cn-128gb-v2031ea/score/index.json b/site/public/v1/smartphones/vivo-s7e-5g-2020-dual-sim-td-lte-cn-128gb-v2031ea/score/index.json new file mode 100644 index 00000000000..17f3b3f202f --- /dev/null +++ b/site/public/v1/smartphones/vivo-s7e-5g-2020-dual-sim-td-lte-cn-128gb-v2031ea/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 21.5, + "battery": 19.9, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-s9-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-v2072a/index.json b/site/public/v1/smartphones/vivo-s9-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-v2072a/index.json new file mode 100644 index 00000000000..bbb722808bf --- /dev/null +++ b/site/public/v1/smartphones/vivo-s9-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-v2072a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5470, + "slug": "vivo-s9-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-v2072a", + "name": "Vivo S9 5G 2021 Premium Edition Dual SIM TD-LTE CN 256GB V2072A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 66, + "slug": "dimensity-1100", + "name": "Dimensity 1100", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1100" + }, + "release_date": "2021-03-13", + "msrp_usd": 3299, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 6.0, + "camera": 21.5, + "battery": 23.4, + "display": 40.9, + "value": 11.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.899308", + "updated_at": "2026-06-19T00:43:44.899308" +} diff --git a/site/public/v1/smartphones/vivo-s9-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-v2072a/score/index.json b/site/public/v1/smartphones/vivo-s9-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-v2072a/score/index.json new file mode 100644 index 00000000000..238391a7094 --- /dev/null +++ b/site/public/v1/smartphones/vivo-s9-5g-2021-premium-edition-dual-sim-td-lte-cn-256gb-v2072a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.9, + "performance": 6.0, + "camera": 21.5, + "battery": 23.4, + "display": 40.9, + "value": 11.4 +} diff --git a/site/public/v1/smartphones/vivo-s9-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2072a/index.json b/site/public/v1/smartphones/vivo-s9-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2072a/index.json new file mode 100644 index 00000000000..c41b4f85cd9 --- /dev/null +++ b/site/public/v1/smartphones/vivo-s9-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2072a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5471, + "slug": "vivo-s9-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2072a", + "name": "Vivo S9 5G 2021 Standard Edition Dual SIM TD-LTE CN 128GB V2072A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 66, + "slug": "dimensity-1100", + "name": "Dimensity 1100", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1100" + }, + "release_date": "2021-03-01", + "msrp_usd": 2999, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 3.0, + "camera": 21.5, + "battery": 23.4, + "display": 40.9, + "value": 11.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.899308", + "updated_at": "2026-06-19T00:43:44.899308" +} diff --git a/site/public/v1/smartphones/vivo-s9-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2072a/score/index.json b/site/public/v1/smartphones/vivo-s9-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2072a/score/index.json new file mode 100644 index 00000000000..0cda89f84ed --- /dev/null +++ b/site/public/v1/smartphones/vivo-s9-5g-2021-standard-edition-dual-sim-td-lte-cn-128gb-v2072a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 3.0, + "camera": 21.5, + "battery": 23.4, + "display": 40.9, + "value": 11.1 +} diff --git a/site/public/v1/smartphones/vivo-s9e-5g-2020-dual-sim-td-lte-cn-128gb-v2048a/index.json b/site/public/v1/smartphones/vivo-s9e-5g-2020-dual-sim-td-lte-cn-128gb-v2048a/index.json new file mode 100644 index 00000000000..8550e84dae8 --- /dev/null +++ b/site/public/v1/smartphones/vivo-s9e-5g-2020-dual-sim-td-lte-cn-128gb-v2048a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5472, + "slug": "vivo-s9e-5g-2020-dual-sim-td-lte-cn-128gb-v2048a", + "name": "Vivo S9e 5G 2020 Dual SIM TD-LTE CN 128GB V2048A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 57, + "slug": "dimensity-820", + "name": "Dimensity 820", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC5", + "url": "/v1/socs/dimensity-820" + }, + "release_date": "2021-03-29", + "msrp_usd": 2399, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2404", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 168.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 3.0, + "camera": 21.5, + "battery": 19.9, + "display": 40.9, + "value": 10.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.899308", + "updated_at": "2026-06-19T00:43:44.899308" +} diff --git a/site/public/v1/smartphones/vivo-s9e-5g-2020-dual-sim-td-lte-cn-128gb-v2048a/score/index.json b/site/public/v1/smartphones/vivo-s9e-5g-2020-dual-sim-td-lte-cn-128gb-v2048a/score/index.json new file mode 100644 index 00000000000..ed250f5d602 --- /dev/null +++ b/site/public/v1/smartphones/vivo-s9e-5g-2020-dual-sim-td-lte-cn-128gb-v2048a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 3.0, + "camera": 21.5, + "battery": 19.9, + "display": 40.9, + "value": 10.7 +} diff --git a/site/public/v1/smartphones/vivo-s9e-5g-2020-dual-sim-td-lte-cn-256gb-v2048a/index.json b/site/public/v1/smartphones/vivo-s9e-5g-2020-dual-sim-td-lte-cn-256gb-v2048a/index.json new file mode 100644 index 00000000000..86a413395f4 --- /dev/null +++ b/site/public/v1/smartphones/vivo-s9e-5g-2020-dual-sim-td-lte-cn-256gb-v2048a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5473, + "slug": "vivo-s9e-5g-2020-dual-sim-td-lte-cn-256gb-v2048a", + "name": "Vivo S9e 5G 2020 Dual SIM TD-LTE CN 256GB V2048A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 57, + "slug": "dimensity-820", + "name": "Dimensity 820", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC5", + "url": "/v1/socs/dimensity-820" + }, + "release_date": "2021-03-29", + "msrp_usd": 2699, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2404", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 168.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 3.0, + "camera": 21.5, + "battery": 19.9, + "display": 40.9, + "value": 10.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.899308", + "updated_at": "2026-06-19T00:43:44.899308" +} diff --git a/site/public/v1/smartphones/vivo-s9e-5g-2020-dual-sim-td-lte-cn-256gb-v2048a/score/index.json b/site/public/v1/smartphones/vivo-s9e-5g-2020-dual-sim-td-lte-cn-256gb-v2048a/score/index.json new file mode 100644 index 00000000000..ed250f5d602 --- /dev/null +++ b/site/public/v1/smartphones/vivo-s9e-5g-2020-dual-sim-td-lte-cn-256gb-v2048a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 3.0, + "camera": 21.5, + "battery": 19.9, + "display": 40.9, + "value": 10.7 +} diff --git a/site/public/v1/smartphones/vivo-u1-premium-edition-dual-sim-td-lte-cn-64gb-v1818a/index.json b/site/public/v1/smartphones/vivo-u1-premium-edition-dual-sim-td-lte-cn-64gb-v1818a/index.json new file mode 100644 index 00000000000..33000e56629 --- /dev/null +++ b/site/public/v1/smartphones/vivo-u1-premium-edition-dual-sim-td-lte-cn-64gb-v1818a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5214, + "slug": "vivo-u1-premium-edition-dual-sim-td-lte-cn-64gb-v1818a", + "name": "Vivo U1 Premium Edition Dual SIM TD-LTE CN 64GB V1818A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-02-26", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4030, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.866785", + "updated_at": "2026-06-19T00:43:44.866785" +} diff --git a/site/public/v1/smartphones/vivo-u1-premium-edition-dual-sim-td-lte-cn-64gb-v1818a/score/index.json b/site/public/v1/smartphones/vivo-u1-premium-edition-dual-sim-td-lte-cn-64gb-v1818a/score/index.json new file mode 100644 index 00000000000..b03e6ec830f --- /dev/null +++ b/site/public/v1/smartphones/vivo-u1-premium-edition-dual-sim-td-lte-cn-64gb-v1818a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-u1-standard-edition-dual-sim-td-lte-cn-32gb-v1818a/index.json b/site/public/v1/smartphones/vivo-u1-standard-edition-dual-sim-td-lte-cn-32gb-v1818a/index.json new file mode 100644 index 00000000000..f9975221966 --- /dev/null +++ b/site/public/v1/smartphones/vivo-u1-standard-edition-dual-sim-td-lte-cn-32gb-v1818a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5215, + "slug": "vivo-u1-standard-edition-dual-sim-td-lte-cn-32gb-v1818a", + "name": "Vivo U1 Standard Edition Dual SIM TD-LTE CN 32GB V1818A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-02-26", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4030, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.866785", + "updated_at": "2026-06-19T00:43:44.866785" +} diff --git a/site/public/v1/smartphones/vivo-u1-standard-edition-dual-sim-td-lte-cn-32gb-v1818a/score/index.json b/site/public/v1/smartphones/vivo-u1-standard-edition-dual-sim-td-lte-cn-32gb-v1818a/score/index.json new file mode 100644 index 00000000000..b03e6ec830f --- /dev/null +++ b/site/public/v1/smartphones/vivo-u1-standard-edition-dual-sim-td-lte-cn-32gb-v1818a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-u1-standard-edition-dual-sim-td-lte-cn-64gb-v1818a/index.json b/site/public/v1/smartphones/vivo-u1-standard-edition-dual-sim-td-lte-cn-64gb-v1818a/index.json new file mode 100644 index 00000000000..368d1a200b9 --- /dev/null +++ b/site/public/v1/smartphones/vivo-u1-standard-edition-dual-sim-td-lte-cn-64gb-v1818a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5216, + "slug": "vivo-u1-standard-edition-dual-sim-td-lte-cn-64gb-v1818a", + "name": "Vivo U1 Standard Edition Dual SIM TD-LTE CN 64GB V1818A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-02-26", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4030, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.866785", + "updated_at": "2026-06-19T00:43:44.866785" +} diff --git a/site/public/v1/smartphones/vivo-u1-standard-edition-dual-sim-td-lte-cn-64gb-v1818a/score/index.json b/site/public/v1/smartphones/vivo-u1-standard-edition-dual-sim-td-lte-cn-64gb-v1818a/score/index.json new file mode 100644 index 00000000000..b03e6ec830f --- /dev/null +++ b/site/public/v1/smartphones/vivo-u1-standard-edition-dual-sim-td-lte-cn-64gb-v1818a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-u10-premium-edition-dual-sim-td-lte-in-64gb-1916/index.json b/site/public/v1/smartphones/vivo-u10-premium-edition-dual-sim-td-lte-in-64gb-1916/index.json new file mode 100644 index 00000000000..2e75beb30c8 --- /dev/null +++ b/site/public/v1/smartphones/vivo-u10-premium-edition-dual-sim-td-lte-in-64gb-1916/index.json @@ -0,0 +1,76 @@ +{ + "id": 5217, + "slug": "vivo-u10-premium-edition-dual-sim-td-lte-in-64gb-1916", + "name": "Vivo U10 Premium Edition Dual SIM TD-LTE IN 64GB 1916", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.867785", + "updated_at": "2026-06-19T00:43:44.867785" +} diff --git a/site/public/v1/smartphones/vivo-u10-premium-edition-dual-sim-td-lte-in-64gb-1916/score/index.json b/site/public/v1/smartphones/vivo-u10-premium-edition-dual-sim-td-lte-in-64gb-1916/score/index.json new file mode 100644 index 00000000000..d588f205b30 --- /dev/null +++ b/site/public/v1/smartphones/vivo-u10-premium-edition-dual-sim-td-lte-in-64gb-1916/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-u10-premium-edition-dual-sim-td-lte-vn-64gb-1916/index.json b/site/public/v1/smartphones/vivo-u10-premium-edition-dual-sim-td-lte-vn-64gb-1916/index.json new file mode 100644 index 00000000000..b410ca408ec --- /dev/null +++ b/site/public/v1/smartphones/vivo-u10-premium-edition-dual-sim-td-lte-vn-64gb-1916/index.json @@ -0,0 +1,76 @@ +{ + "id": 5218, + "slug": "vivo-u10-premium-edition-dual-sim-td-lte-vn-64gb-1916", + "name": "Vivo U10 Premium Edition Dual SIM TD-LTE VN 64GB 1916", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.867785", + "updated_at": "2026-06-19T00:43:44.867785" +} diff --git a/site/public/v1/smartphones/vivo-u10-premium-edition-dual-sim-td-lte-vn-64gb-1916/score/index.json b/site/public/v1/smartphones/vivo-u10-premium-edition-dual-sim-td-lte-vn-64gb-1916/score/index.json new file mode 100644 index 00000000000..d588f205b30 --- /dev/null +++ b/site/public/v1/smartphones/vivo-u10-premium-edition-dual-sim-td-lte-vn-64gb-1916/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-u10-standard-edition-dual-sim-td-lte-in-32gb-1916/index.json b/site/public/v1/smartphones/vivo-u10-standard-edition-dual-sim-td-lte-in-32gb-1916/index.json new file mode 100644 index 00000000000..52f836c2f7a --- /dev/null +++ b/site/public/v1/smartphones/vivo-u10-standard-edition-dual-sim-td-lte-in-32gb-1916/index.json @@ -0,0 +1,76 @@ +{ + "id": 5219, + "slug": "vivo-u10-standard-edition-dual-sim-td-lte-in-32gb-1916", + "name": "Vivo U10 Standard Edition Dual SIM TD-LTE IN 32GB 1916", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.867785", + "updated_at": "2026-06-19T00:43:44.867785" +} diff --git a/site/public/v1/smartphones/vivo-u10-standard-edition-dual-sim-td-lte-in-32gb-1916/score/index.json b/site/public/v1/smartphones/vivo-u10-standard-edition-dual-sim-td-lte-in-32gb-1916/score/index.json new file mode 100644 index 00000000000..d588f205b30 --- /dev/null +++ b/site/public/v1/smartphones/vivo-u10-standard-edition-dual-sim-td-lte-in-32gb-1916/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-u10-standard-edition-dual-sim-td-lte-in-64gb-1916/index.json b/site/public/v1/smartphones/vivo-u10-standard-edition-dual-sim-td-lte-in-64gb-1916/index.json new file mode 100644 index 00000000000..8e83b47e5f6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-u10-standard-edition-dual-sim-td-lte-in-64gb-1916/index.json @@ -0,0 +1,76 @@ +{ + "id": 5220, + "slug": "vivo-u10-standard-edition-dual-sim-td-lte-in-64gb-1916", + "name": "Vivo U10 Standard Edition Dual SIM TD-LTE IN 64GB 1916", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.867785", + "updated_at": "2026-06-19T00:43:44.867785" +} diff --git a/site/public/v1/smartphones/vivo-u10-standard-edition-dual-sim-td-lte-in-64gb-1916/score/index.json b/site/public/v1/smartphones/vivo-u10-standard-edition-dual-sim-td-lte-in-64gb-1916/score/index.json new file mode 100644 index 00000000000..d588f205b30 --- /dev/null +++ b/site/public/v1/smartphones/vivo-u10-standard-edition-dual-sim-td-lte-in-64gb-1916/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-u20-standard-edition-dual-sim-td-lte-in-64gb-1921/index.json b/site/public/v1/smartphones/vivo-u20-standard-edition-dual-sim-td-lte-in-64gb-1921/index.json new file mode 100644 index 00000000000..325ccf81d4c --- /dev/null +++ b/site/public/v1/smartphones/vivo-u20-standard-edition-dual-sim-td-lte-in-64gb-1921/index.json @@ -0,0 +1,76 @@ +{ + "id": 5221, + "slug": "vivo-u20-standard-edition-dual-sim-td-lte-in-64gb-1921", + "name": "Vivo U20 Standard Edition Dual SIM TD-LTE IN 64GB 1921", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-12-04", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.867785", + "updated_at": "2026-06-19T00:43:44.867785" +} diff --git a/site/public/v1/smartphones/vivo-u20-standard-edition-dual-sim-td-lte-in-64gb-1921/score/index.json b/site/public/v1/smartphones/vivo-u20-standard-edition-dual-sim-td-lte-in-64gb-1921/score/index.json new file mode 100644 index 00000000000..709f063009b --- /dev/null +++ b/site/public/v1/smartphones/vivo-u20-standard-edition-dual-sim-td-lte-in-64gb-1921/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-u3-premium-edition-dual-sim-td-lte-cn-64gb-v1941a/index.json b/site/public/v1/smartphones/vivo-u3-premium-edition-dual-sim-td-lte-cn-64gb-v1941a/index.json new file mode 100644 index 00000000000..1ded17a7dfa --- /dev/null +++ b/site/public/v1/smartphones/vivo-u3-premium-edition-dual-sim-td-lte-cn-64gb-v1941a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5222, + "slug": "vivo-u3-premium-edition-dual-sim-td-lte-cn-64gb-v1941a", + "name": "Vivo U3 Premium Edition Dual SIM TD-LTE CN 64GB V1941A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 1.5, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.867785", + "updated_at": "2026-06-19T00:43:44.867785" +} diff --git a/site/public/v1/smartphones/vivo-u3-premium-edition-dual-sim-td-lte-cn-64gb-v1941a/score/index.json b/site/public/v1/smartphones/vivo-u3-premium-edition-dual-sim-td-lte-cn-64gb-v1941a/score/index.json new file mode 100644 index 00000000000..75901685f4e --- /dev/null +++ b/site/public/v1/smartphones/vivo-u3-premium-edition-dual-sim-td-lte-cn-64gb-v1941a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 1.5, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-u3-premium-edition-dual-sim-td-lte-cn-64gb-v1941t/index.json b/site/public/v1/smartphones/vivo-u3-premium-edition-dual-sim-td-lte-cn-64gb-v1941t/index.json new file mode 100644 index 00000000000..a0b66d1cc0b --- /dev/null +++ b/site/public/v1/smartphones/vivo-u3-premium-edition-dual-sim-td-lte-cn-64gb-v1941t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5223, + "slug": "vivo-u3-premium-edition-dual-sim-td-lte-cn-64gb-v1941t", + "name": "Vivo U3 Premium Edition Dual SIM TD-LTE CN 64GB V1941T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 1.5, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.867785", + "updated_at": "2026-06-19T00:43:44.867785" +} diff --git a/site/public/v1/smartphones/vivo-u3-premium-edition-dual-sim-td-lte-cn-64gb-v1941t/score/index.json b/site/public/v1/smartphones/vivo-u3-premium-edition-dual-sim-td-lte-cn-64gb-v1941t/score/index.json new file mode 100644 index 00000000000..75901685f4e --- /dev/null +++ b/site/public/v1/smartphones/vivo-u3-premium-edition-dual-sim-td-lte-cn-64gb-v1941t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 1.5, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-u3-standard-edition-dual-sim-td-lte-cn-64gb-v1941a/index.json b/site/public/v1/smartphones/vivo-u3-standard-edition-dual-sim-td-lte-cn-64gb-v1941a/index.json new file mode 100644 index 00000000000..17a86c62f58 --- /dev/null +++ b/site/public/v1/smartphones/vivo-u3-standard-edition-dual-sim-td-lte-cn-64gb-v1941a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5224, + "slug": "vivo-u3-standard-edition-dual-sim-td-lte-cn-64gb-v1941a", + "name": "Vivo U3 Standard Edition Dual SIM TD-LTE CN 64GB V1941A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.867785", + "updated_at": "2026-06-19T00:43:44.867785" +} diff --git a/site/public/v1/smartphones/vivo-u3-standard-edition-dual-sim-td-lte-cn-64gb-v1941a/score/index.json b/site/public/v1/smartphones/vivo-u3-standard-edition-dual-sim-td-lte-cn-64gb-v1941a/score/index.json new file mode 100644 index 00000000000..709f063009b --- /dev/null +++ b/site/public/v1/smartphones/vivo-u3-standard-edition-dual-sim-td-lte-cn-64gb-v1941a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-u3-standard-edition-dual-sim-td-lte-cn-64gb-v1941t/index.json b/site/public/v1/smartphones/vivo-u3-standard-edition-dual-sim-td-lte-cn-64gb-v1941t/index.json new file mode 100644 index 00000000000..c9c303b4259 --- /dev/null +++ b/site/public/v1/smartphones/vivo-u3-standard-edition-dual-sim-td-lte-cn-64gb-v1941t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5225, + "slug": "vivo-u3-standard-edition-dual-sim-td-lte-cn-64gb-v1941t", + "name": "Vivo U3 Standard Edition Dual SIM TD-LTE CN 64GB V1941T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.868792", + "updated_at": "2026-06-19T00:43:44.868792" +} diff --git a/site/public/v1/smartphones/vivo-u3-standard-edition-dual-sim-td-lte-cn-64gb-v1941t/score/index.json b/site/public/v1/smartphones/vivo-u3-standard-edition-dual-sim-td-lte-cn-64gb-v1941t/score/index.json new file mode 100644 index 00000000000..709f063009b --- /dev/null +++ b/site/public/v1/smartphones/vivo-u3-standard-edition-dual-sim-td-lte-cn-64gb-v1941t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-u3x-premium-edition-dual-sim-td-lte-cn-64gb-v1928a/index.json b/site/public/v1/smartphones/vivo-u3x-premium-edition-dual-sim-td-lte-cn-64gb-v1928a/index.json new file mode 100644 index 00000000000..bff985e885c --- /dev/null +++ b/site/public/v1/smartphones/vivo-u3x-premium-edition-dual-sim-td-lte-cn-64gb-v1928a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5226, + "slug": "vivo-u3x-premium-edition-dual-sim-td-lte-cn-64gb-v1928a", + "name": "Vivo U3x Premium Edition Dual SIM TD-LTE CN 64GB V1928A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 191.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.868792", + "updated_at": "2026-06-19T00:43:44.868792" +} diff --git a/site/public/v1/smartphones/vivo-u3x-premium-edition-dual-sim-td-lte-cn-64gb-v1928a/score/index.json b/site/public/v1/smartphones/vivo-u3x-premium-edition-dual-sim-td-lte-cn-64gb-v1928a/score/index.json new file mode 100644 index 00000000000..d588f205b30 --- /dev/null +++ b/site/public/v1/smartphones/vivo-u3x-premium-edition-dual-sim-td-lte-cn-64gb-v1928a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-u3x-premium-edition-dual-sim-td-lte-cn-64gb-v1928t/index.json b/site/public/v1/smartphones/vivo-u3x-premium-edition-dual-sim-td-lte-cn-64gb-v1928t/index.json new file mode 100644 index 00000000000..f8bfb6db88b --- /dev/null +++ b/site/public/v1/smartphones/vivo-u3x-premium-edition-dual-sim-td-lte-cn-64gb-v1928t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5227, + "slug": "vivo-u3x-premium-edition-dual-sim-td-lte-cn-64gb-v1928t", + "name": "Vivo U3x Premium Edition Dual SIM TD-LTE CN 64GB V1928T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 191.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.868792", + "updated_at": "2026-06-19T00:43:44.868792" +} diff --git a/site/public/v1/smartphones/vivo-u3x-premium-edition-dual-sim-td-lte-cn-64gb-v1928t/score/index.json b/site/public/v1/smartphones/vivo-u3x-premium-edition-dual-sim-td-lte-cn-64gb-v1928t/score/index.json new file mode 100644 index 00000000000..d588f205b30 --- /dev/null +++ b/site/public/v1/smartphones/vivo-u3x-premium-edition-dual-sim-td-lte-cn-64gb-v1928t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-u3x-standard-edition-dual-sim-td-lte-cn-32gb-v1928a/index.json b/site/public/v1/smartphones/vivo-u3x-standard-edition-dual-sim-td-lte-cn-32gb-v1928a/index.json new file mode 100644 index 00000000000..d6adfa5a5b4 --- /dev/null +++ b/site/public/v1/smartphones/vivo-u3x-standard-edition-dual-sim-td-lte-cn-32gb-v1928a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5228, + "slug": "vivo-u3x-standard-edition-dual-sim-td-lte-cn-32gb-v1928a", + "name": "Vivo U3x Standard Edition Dual SIM TD-LTE CN 32GB V1928A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 191.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.868792", + "updated_at": "2026-06-19T00:43:44.868792" +} diff --git a/site/public/v1/smartphones/vivo-u3x-standard-edition-dual-sim-td-lte-cn-32gb-v1928a/score/index.json b/site/public/v1/smartphones/vivo-u3x-standard-edition-dual-sim-td-lte-cn-32gb-v1928a/score/index.json new file mode 100644 index 00000000000..d588f205b30 --- /dev/null +++ b/site/public/v1/smartphones/vivo-u3x-standard-edition-dual-sim-td-lte-cn-32gb-v1928a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-u3x-standard-edition-dual-sim-td-lte-cn-32gb-v1928t/index.json b/site/public/v1/smartphones/vivo-u3x-standard-edition-dual-sim-td-lte-cn-32gb-v1928t/index.json new file mode 100644 index 00000000000..a0bca0483a3 --- /dev/null +++ b/site/public/v1/smartphones/vivo-u3x-standard-edition-dual-sim-td-lte-cn-32gb-v1928t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5229, + "slug": "vivo-u3x-standard-edition-dual-sim-td-lte-cn-32gb-v1928t", + "name": "Vivo U3x Standard Edition Dual SIM TD-LTE CN 32GB V1928T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 191.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.868792", + "updated_at": "2026-06-19T00:43:44.868792" +} diff --git a/site/public/v1/smartphones/vivo-u3x-standard-edition-dual-sim-td-lte-cn-32gb-v1928t/score/index.json b/site/public/v1/smartphones/vivo-u3x-standard-edition-dual-sim-td-lte-cn-32gb-v1928t/score/index.json new file mode 100644 index 00000000000..d588f205b30 --- /dev/null +++ b/site/public/v1/smartphones/vivo-u3x-standard-edition-dual-sim-td-lte-cn-32gb-v1928t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-u3x-standard-edition-dual-sim-td-lte-cn-64gb-v1928a/index.json b/site/public/v1/smartphones/vivo-u3x-standard-edition-dual-sim-td-lte-cn-64gb-v1928a/index.json new file mode 100644 index 00000000000..931281a3ba4 --- /dev/null +++ b/site/public/v1/smartphones/vivo-u3x-standard-edition-dual-sim-td-lte-cn-64gb-v1928a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5230, + "slug": "vivo-u3x-standard-edition-dual-sim-td-lte-cn-64gb-v1928a", + "name": "Vivo U3x Standard Edition Dual SIM TD-LTE CN 64GB V1928A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 191.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.868792", + "updated_at": "2026-06-19T00:43:44.868792" +} diff --git a/site/public/v1/smartphones/vivo-u3x-standard-edition-dual-sim-td-lte-cn-64gb-v1928a/score/index.json b/site/public/v1/smartphones/vivo-u3x-standard-edition-dual-sim-td-lte-cn-64gb-v1928a/score/index.json new file mode 100644 index 00000000000..d588f205b30 --- /dev/null +++ b/site/public/v1/smartphones/vivo-u3x-standard-edition-dual-sim-td-lte-cn-64gb-v1928a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-u3x-standard-edition-dual-sim-td-lte-cn-64gb-v1928t/index.json b/site/public/v1/smartphones/vivo-u3x-standard-edition-dual-sim-td-lte-cn-64gb-v1928t/index.json new file mode 100644 index 00000000000..f6c96d8185b --- /dev/null +++ b/site/public/v1/smartphones/vivo-u3x-standard-edition-dual-sim-td-lte-cn-64gb-v1928t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5231, + "slug": "vivo-u3x-standard-edition-dual-sim-td-lte-cn-64gb-v1928t", + "name": "Vivo U3x Standard Edition Dual SIM TD-LTE CN 64GB V1928T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 191.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.868792", + "updated_at": "2026-06-19T00:43:44.868792" +} diff --git a/site/public/v1/smartphones/vivo-u3x-standard-edition-dual-sim-td-lte-cn-64gb-v1928t/score/index.json b/site/public/v1/smartphones/vivo-u3x-standard-edition-dual-sim-td-lte-cn-64gb-v1928t/score/index.json new file mode 100644 index 00000000000..d588f205b30 --- /dev/null +++ b/site/public/v1/smartphones/vivo-u3x-standard-edition-dual-sim-td-lte-cn-64gb-v1928t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-in-id-64gb-1806/index.json b/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-in-id-64gb-1806/index.json new file mode 100644 index 00000000000..84be955da56 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-in-id-64gb-1806/index.json @@ -0,0 +1,76 @@ +{ + "id": 5054, + "slug": "vivo-v11-dual-sim-td-lte-in-id-64gb-1806", + "name": "Vivo V11 Dual SIM TD-LTE IN ID 64GB 1806", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-09-12", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 3315, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 163.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.6, + "performance": 1.5, + "camera": 6.4, + "battery": 5.3, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.846781", + "updated_at": "2026-06-19T00:43:44.846781" +} diff --git a/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-in-id-64gb-1806/score/index.json b/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-in-id-64gb-1806/score/index.json new file mode 100644 index 00000000000..bac91a9f6d8 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-in-id-64gb-1806/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.6, + "performance": 1.5, + "camera": 6.4, + "battery": 5.3, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-my-vn-bd-128gb-1806-v11i/index.json b/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-my-vn-bd-128gb-1806-v11i/index.json new file mode 100644 index 00000000000..90e3f9de0e1 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-my-vn-bd-128gb-1806-v11i/index.json @@ -0,0 +1,76 @@ +{ + "id": 5055, + "slug": "vivo-v11-dual-sim-td-lte-my-vn-bd-128gb-1806-v11i", + "name": "Vivo V11 Dual SIM TD-LTE MY VN BD 128GB 1806 / V11i", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 3315, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 163.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 0.0, + "camera": 6.4, + "battery": 5.3, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.846781", + "updated_at": "2026-06-19T00:43:44.846781" +} diff --git a/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-my-vn-bd-128gb-1806-v11i/score/index.json b/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-my-vn-bd-128gb-1806-v11i/score/index.json new file mode 100644 index 00000000000..ae011c3f06f --- /dev/null +++ b/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-my-vn-bd-128gb-1806-v11i/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 0.0, + "camera": 6.4, + "battery": 5.3, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-my-vn-hk-bd-128gb-1804-v11-pro/index.json b/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-my-vn-hk-bd-128gb-1804-v11-pro/index.json new file mode 100644 index 00000000000..caefe44388d --- /dev/null +++ b/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-my-vn-hk-bd-128gb-1804-v11-pro/index.json @@ -0,0 +1,76 @@ +{ + "id": 5056, + "slug": "vivo-v11-dual-sim-td-lte-my-vn-hk-bd-128gb-1804-v11-pro", + "name": "Vivo V11 Dual SIM TD-LTE MY VN HK BD 128GB 1804 / V11 Pro", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-09-12", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 19.5, + "camera": 5.1, + "battery": 6.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.846781", + "updated_at": "2026-06-19T00:43:44.846781" +} diff --git a/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-my-vn-hk-bd-128gb-1804-v11-pro/score/index.json b/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-my-vn-hk-bd-128gb-1804-v11-pro/score/index.json new file mode 100644 index 00000000000..57f6fe8b284 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-my-vn-hk-bd-128gb-1804-v11-pro/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 19.5, + "camera": 5.1, + "battery": 6.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-ph-64gb-1804/index.json b/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-ph-64gb-1804/index.json new file mode 100644 index 00000000000..1e209f6fd79 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-ph-64gb-1804/index.json @@ -0,0 +1,76 @@ +{ + "id": 5057, + "slug": "vivo-v11-dual-sim-td-lte-ph-64gb-1804", + "name": "Vivo V11 Dual SIM TD-LTE PH 64GB 1804", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-09-11", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 19.5, + "camera": 5.1, + "battery": 6.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.846781", + "updated_at": "2026-06-19T00:43:44.846781" +} diff --git a/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-ph-64gb-1804/score/index.json b/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-ph-64gb-1804/score/index.json new file mode 100644 index 00000000000..57f6fe8b284 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-ph-64gb-1804/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 19.5, + "camera": 5.1, + "battery": 6.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-ru-128gb-1804/index.json b/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-ru-128gb-1804/index.json new file mode 100644 index 00000000000..6d2ae8965af --- /dev/null +++ b/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-ru-128gb-1804/index.json @@ -0,0 +1,76 @@ +{ + "id": 5058, + "slug": "vivo-v11-dual-sim-td-lte-ru-128gb-1804", + "name": "Vivo V11 Dual SIM TD-LTE RU 128GB 1804", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 19.5, + "camera": 5.1, + "battery": 6.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.846781", + "updated_at": "2026-06-19T00:43:44.846781" +} diff --git a/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-ru-128gb-1804/score/index.json b/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-ru-128gb-1804/score/index.json new file mode 100644 index 00000000000..57f6fe8b284 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-ru-128gb-1804/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 19.5, + "camera": 5.1, + "battery": 6.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-sg-128gb-1804/index.json b/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-sg-128gb-1804/index.json new file mode 100644 index 00000000000..462f30f2bc1 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-sg-128gb-1804/index.json @@ -0,0 +1,76 @@ +{ + "id": 5059, + "slug": "vivo-v11-dual-sim-td-lte-sg-128gb-1804", + "name": "Vivo V11 Dual SIM TD-LTE SG 128GB 1804", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 19.5, + "camera": 5.1, + "battery": 6.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.846781", + "updated_at": "2026-06-19T00:43:44.846781" +} diff --git a/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-sg-128gb-1804/score/index.json b/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-sg-128gb-1804/score/index.json new file mode 100644 index 00000000000..57f6fe8b284 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-sg-128gb-1804/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 19.5, + "camera": 5.1, + "battery": 6.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-th-pk-np-128gb-1806-v11i/index.json b/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-th-pk-np-128gb-1806-v11i/index.json new file mode 100644 index 00000000000..0b257c1dc7e --- /dev/null +++ b/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-th-pk-np-128gb-1806-v11i/index.json @@ -0,0 +1,76 @@ +{ + "id": 5060, + "slug": "vivo-v11-dual-sim-td-lte-th-pk-np-128gb-1806-v11i", + "name": "Vivo V11 Dual SIM TD-LTE TH PK NP 128GB 1806 / V11i", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-09-12", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 3315, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 163.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 0.0, + "camera": 6.4, + "battery": 5.3, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.846781", + "updated_at": "2026-06-19T00:43:44.846781" +} diff --git a/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-th-pk-np-128gb-1806-v11i/score/index.json b/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-th-pk-np-128gb-1806-v11i/score/index.json new file mode 100644 index 00000000000..ae011c3f06f --- /dev/null +++ b/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-th-pk-np-128gb-1806-v11i/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 0.0, + "camera": 6.4, + "battery": 5.3, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-tw-128gb-1806/index.json b/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-tw-128gb-1806/index.json new file mode 100644 index 00000000000..ff8110de03d --- /dev/null +++ b/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-tw-128gb-1806/index.json @@ -0,0 +1,76 @@ +{ + "id": 5061, + "slug": "vivo-v11-dual-sim-td-lte-tw-128gb-1806", + "name": "Vivo V11 Dual SIM TD-LTE TW 128GB 1806", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 3315, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 163.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.6, + "performance": 1.5, + "camera": 6.4, + "battery": 5.3, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.846781", + "updated_at": "2026-06-19T00:43:44.846781" +} diff --git a/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-tw-128gb-1806/score/index.json b/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-tw-128gb-1806/score/index.json new file mode 100644 index 00000000000..bac91a9f6d8 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v11-dual-sim-td-lte-tw-128gb-1806/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.6, + "performance": 1.5, + "camera": 6.4, + "battery": 5.3, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v11-pro-dual-sim-td-lte-id-64gb-1804/index.json b/site/public/v1/smartphones/vivo-v11-pro-dual-sim-td-lte-id-64gb-1804/index.json new file mode 100644 index 00000000000..f6e64f96fbd --- /dev/null +++ b/site/public/v1/smartphones/vivo-v11-pro-dual-sim-td-lte-id-64gb-1804/index.json @@ -0,0 +1,76 @@ +{ + "id": 5062, + "slug": "vivo-v11-pro-dual-sim-td-lte-id-64gb-1804", + "name": "Vivo V11 Pro Dual SIM TD-LTE ID 64GB 1804", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-09-11", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 19.5, + "camera": 5.1, + "battery": 6.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.847781", + "updated_at": "2026-06-19T00:43:44.847781" +} diff --git a/site/public/v1/smartphones/vivo-v11-pro-dual-sim-td-lte-id-64gb-1804/score/index.json b/site/public/v1/smartphones/vivo-v11-pro-dual-sim-td-lte-id-64gb-1804/score/index.json new file mode 100644 index 00000000000..57f6fe8b284 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v11-pro-dual-sim-td-lte-id-64gb-1804/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 19.5, + "camera": 5.1, + "battery": 6.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v11-pro-dual-sim-td-lte-in-64gb-1804/index.json b/site/public/v1/smartphones/vivo-v11-pro-dual-sim-td-lte-in-64gb-1804/index.json new file mode 100644 index 00000000000..56f28617b8e --- /dev/null +++ b/site/public/v1/smartphones/vivo-v11-pro-dual-sim-td-lte-in-64gb-1804/index.json @@ -0,0 +1,76 @@ +{ + "id": 5063, + "slug": "vivo-v11-pro-dual-sim-td-lte-in-64gb-1804", + "name": "Vivo V11 Pro Dual SIM TD-LTE IN 64GB 1804", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-09-12", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 19.5, + "camera": 5.1, + "battery": 6.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.847781", + "updated_at": "2026-06-19T00:43:44.847781" +} diff --git a/site/public/v1/smartphones/vivo-v11-pro-dual-sim-td-lte-in-64gb-1804/score/index.json b/site/public/v1/smartphones/vivo-v11-pro-dual-sim-td-lte-in-64gb-1804/score/index.json new file mode 100644 index 00000000000..57f6fe8b284 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v11-pro-dual-sim-td-lte-in-64gb-1804/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 19.5, + "camera": 5.1, + "battery": 6.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v11-pro-dual-sim-td-lte-th-pk-np-128gb-1804-v11-v11pro/index.json b/site/public/v1/smartphones/vivo-v11-pro-dual-sim-td-lte-th-pk-np-128gb-1804-v11-v11pro/index.json new file mode 100644 index 00000000000..c970a9d299a --- /dev/null +++ b/site/public/v1/smartphones/vivo-v11-pro-dual-sim-td-lte-th-pk-np-128gb-1804-v11-v11pro/index.json @@ -0,0 +1,76 @@ +{ + "id": 5064, + "slug": "vivo-v11-pro-dual-sim-td-lte-th-pk-np-128gb-1804-v11-v11pro", + "name": "Vivo V11 Pro Dual SIM TD-LTE TH PK NP 128GB 1804 / V11 / V11Pro", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 19.5, + "camera": 5.1, + "battery": 6.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.847781", + "updated_at": "2026-06-19T00:43:44.847781" +} diff --git a/site/public/v1/smartphones/vivo-v11-pro-dual-sim-td-lte-th-pk-np-128gb-1804-v11-v11pro/score/index.json b/site/public/v1/smartphones/vivo-v11-pro-dual-sim-td-lte-th-pk-np-128gb-1804-v11-v11pro/score/index.json new file mode 100644 index 00000000000..57f6fe8b284 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v11-pro-dual-sim-td-lte-th-pk-np-128gb-1804-v11-v11pro/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 19.5, + "camera": 5.1, + "battery": 6.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v11i-dual-sim-td-lte-ru-128gb-1806/index.json b/site/public/v1/smartphones/vivo-v11i-dual-sim-td-lte-ru-128gb-1806/index.json new file mode 100644 index 00000000000..e37178c3ef1 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v11i-dual-sim-td-lte-ru-128gb-1806/index.json @@ -0,0 +1,76 @@ +{ + "id": 5065, + "slug": "vivo-v11i-dual-sim-td-lte-ru-128gb-1806", + "name": "Vivo V11i Dual SIM TD-LTE RU 128GB 1806", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-09-12", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 3315, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 163.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 0.0, + "camera": 6.4, + "battery": 5.3, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.847781", + "updated_at": "2026-06-19T00:43:44.847781" +} diff --git a/site/public/v1/smartphones/vivo-v11i-dual-sim-td-lte-ru-128gb-1806/score/index.json b/site/public/v1/smartphones/vivo-v11i-dual-sim-td-lte-ru-128gb-1806/score/index.json new file mode 100644 index 00000000000..ae011c3f06f --- /dev/null +++ b/site/public/v1/smartphones/vivo-v11i-dual-sim-td-lte-ru-128gb-1806/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 0.0, + "camera": 6.4, + "battery": 5.3, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v11i-dual-sim-td-lte-tw-ph-128gb-1806/index.json b/site/public/v1/smartphones/vivo-v11i-dual-sim-td-lte-tw-ph-128gb-1806/index.json new file mode 100644 index 00000000000..2826a57a7c3 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v11i-dual-sim-td-lte-tw-ph-128gb-1806/index.json @@ -0,0 +1,76 @@ +{ + "id": 5066, + "slug": "vivo-v11i-dual-sim-td-lte-tw-ph-128gb-1806", + "name": "Vivo V11i Dual SIM TD-LTE TW PH 128GB 1806", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 3315, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 163.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 0.0, + "camera": 6.4, + "battery": 5.3, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.847781", + "updated_at": "2026-06-19T00:43:44.847781" +} diff --git a/site/public/v1/smartphones/vivo-v11i-dual-sim-td-lte-tw-ph-128gb-1806/score/index.json b/site/public/v1/smartphones/vivo-v11i-dual-sim-td-lte-tw-ph-128gb-1806/score/index.json new file mode 100644 index 00000000000..ae011c3f06f --- /dev/null +++ b/site/public/v1/smartphones/vivo-v11i-dual-sim-td-lte-tw-ph-128gb-1806/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 0.0, + "camera": 6.4, + "battery": 5.3, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v15-dual-sim-td-lte-in-id-th-np-128gb/index.json b/site/public/v1/smartphones/vivo-v15-dual-sim-td-lte-in-id-th-np-128gb/index.json new file mode 100644 index 00000000000..3d077c081e2 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v15-dual-sim-td-lte-in-id-th-np-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5232, + "slug": "vivo-v15-dual-sim-td-lte-in-id-th-np-128gb", + "name": "Vivo V15 Dual SIM TD-LTE IN ID TH NP 128GB", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 1.5, + "camera": 5.0, + "battery": 15.0, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.868792", + "updated_at": "2026-06-19T00:43:44.868792" +} diff --git a/site/public/v1/smartphones/vivo-v15-dual-sim-td-lte-in-id-th-np-128gb/score/index.json b/site/public/v1/smartphones/vivo-v15-dual-sim-td-lte-in-id-th-np-128gb/score/index.json new file mode 100644 index 00000000000..fa2b9f8eb98 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v15-dual-sim-td-lte-in-id-th-np-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 1.5, + "camera": 5.0, + "battery": 15.0, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v15-dual-sim-td-lte-my-ph-128gb/index.json b/site/public/v1/smartphones/vivo-v15-dual-sim-td-lte-my-ph-128gb/index.json new file mode 100644 index 00000000000..1b2b766a4ff --- /dev/null +++ b/site/public/v1/smartphones/vivo-v15-dual-sim-td-lte-my-ph-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5233, + "slug": "vivo-v15-dual-sim-td-lte-my-ph-128gb", + "name": "Vivo V15 Dual SIM TD-LTE MY PH 128GB", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 45, + "slug": "helio-p70", + "name": "Helio P70", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p70" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 189.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 1.5, + "camera": 5.0, + "battery": 15.0, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.868792", + "updated_at": "2026-06-19T00:43:44.868792" +} diff --git a/site/public/v1/smartphones/vivo-v15-dual-sim-td-lte-my-ph-128gb/score/index.json b/site/public/v1/smartphones/vivo-v15-dual-sim-td-lte-my-ph-128gb/score/index.json new file mode 100644 index 00000000000..fa2b9f8eb98 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v15-dual-sim-td-lte-my-ph-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 1.5, + "camera": 5.0, + "battery": 15.0, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v15-pro-premium-edition-dual-sim-td-lte-ph-128gb/index.json b/site/public/v1/smartphones/vivo-v15-pro-premium-edition-dual-sim-td-lte-ph-128gb/index.json new file mode 100644 index 00000000000..8e954207dbd --- /dev/null +++ b/site/public/v1/smartphones/vivo-v15-pro-premium-edition-dual-sim-td-lte-ph-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5234, + "slug": "vivo-v15-pro-premium-edition-dual-sim-td-lte-ph-128gb", + "name": "Vivo V15 Pro Premium Edition Dual SIM TD-LTE PH 128GB", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.8, + "performance": 3.0, + "camera": 16.5, + "battery": 10.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.869791", + "updated_at": "2026-06-19T00:43:44.869791" +} diff --git a/site/public/v1/smartphones/vivo-v15-pro-premium-edition-dual-sim-td-lte-ph-128gb/score/index.json b/site/public/v1/smartphones/vivo-v15-pro-premium-edition-dual-sim-td-lte-ph-128gb/score/index.json new file mode 100644 index 00000000000..78fcadff75a --- /dev/null +++ b/site/public/v1/smartphones/vivo-v15-pro-premium-edition-dual-sim-td-lte-ph-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.8, + "performance": 3.0, + "camera": 16.5, + "battery": 10.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v15-pro-standard-edition-dual-sim-td-lte-in-id-np-th-128gb-1818/index.json b/site/public/v1/smartphones/vivo-v15-pro-standard-edition-dual-sim-td-lte-in-id-np-th-128gb-1818/index.json new file mode 100644 index 00000000000..fdbb38af77a --- /dev/null +++ b/site/public/v1/smartphones/vivo-v15-pro-standard-edition-dual-sim-td-lte-in-id-np-th-128gb-1818/index.json @@ -0,0 +1,76 @@ +{ + "id": 5235, + "slug": "vivo-v15-pro-standard-edition-dual-sim-td-lte-in-id-np-th-128gb-1818", + "name": "Vivo V15 Pro Standard Edition Dual SIM TD-LTE IN ID NP TH 128GB 1818", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-03-06", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 1.5, + "camera": 16.5, + "battery": 10.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.869791", + "updated_at": "2026-06-19T00:43:44.869791" +} diff --git a/site/public/v1/smartphones/vivo-v15-pro-standard-edition-dual-sim-td-lte-in-id-np-th-128gb-1818/score/index.json b/site/public/v1/smartphones/vivo-v15-pro-standard-edition-dual-sim-td-lte-in-id-np-th-128gb-1818/score/index.json new file mode 100644 index 00000000000..159c31624f6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v15-pro-standard-edition-dual-sim-td-lte-in-id-np-th-128gb-1818/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 1.5, + "camera": 16.5, + "battery": 10.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v15-pro-standard-edition-dual-sim-td-lte-my-hk-128gb/index.json b/site/public/v1/smartphones/vivo-v15-pro-standard-edition-dual-sim-td-lte-my-hk-128gb/index.json new file mode 100644 index 00000000000..61511ccb08f --- /dev/null +++ b/site/public/v1/smartphones/vivo-v15-pro-standard-edition-dual-sim-td-lte-my-hk-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5236, + "slug": "vivo-v15-pro-standard-edition-dual-sim-td-lte-my-hk-128gb", + "name": "Vivo V15 Pro Standard Edition Dual SIM TD-LTE MY HK 128GB", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 3700, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 1.5, + "camera": 16.5, + "battery": 10.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.869791", + "updated_at": "2026-06-19T00:43:44.869791" +} diff --git a/site/public/v1/smartphones/vivo-v15-pro-standard-edition-dual-sim-td-lte-my-hk-128gb/score/index.json b/site/public/v1/smartphones/vivo-v15-pro-standard-edition-dual-sim-td-lte-my-hk-128gb/score/index.json new file mode 100644 index 00000000000..159c31624f6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v15-pro-standard-edition-dual-sim-td-lte-my-hk-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 1.5, + "camera": 16.5, + "battery": 10.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-in-128gb-1919/index.json b/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-in-128gb-1919/index.json new file mode 100644 index 00000000000..e74eefeccce --- /dev/null +++ b/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-in-128gb-1919/index.json @@ -0,0 +1,76 @@ +{ + "id": 5237, + "slug": "vivo-v17-dual-sim-td-lte-in-128gb-1919", + "name": "Vivo V17 Dual SIM TD-LTE IN 128GB 1919", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-12-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.869791", + "updated_at": "2026-06-19T00:43:44.869791" +} diff --git a/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-in-128gb-1919/score/index.json b/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-in-128gb-1919/score/index.json new file mode 100644 index 00000000000..c2f52ec179e --- /dev/null +++ b/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-in-128gb-1919/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-my-ph-128gb-1919-vivo-v19-neo/index.json b/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-my-ph-128gb-1919-vivo-v19-neo/index.json new file mode 100644 index 00000000000..671de50dab5 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-my-ph-128gb-1919-vivo-v19-neo/index.json @@ -0,0 +1,76 @@ +{ + "id": 5238, + "slug": "vivo-v17-dual-sim-td-lte-my-ph-128gb-1919-vivo-v19-neo", + "name": "Vivo V17 Dual SIM TD-LTE MY PH 128GB 1919 / Vivo V19 Neo", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-12-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.869791", + "updated_at": "2026-06-19T00:43:44.869791" +} diff --git a/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-my-ph-128gb-1919-vivo-v19-neo/score/index.json b/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-my-ph-128gb-1919-vivo-v19-neo/score/index.json new file mode 100644 index 00000000000..c2f52ec179e --- /dev/null +++ b/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-my-ph-128gb-1919-vivo-v19-neo/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-my-ph-256gb-1919-vivo-v19-neo/index.json b/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-my-ph-256gb-1919-vivo-v19-neo/index.json new file mode 100644 index 00000000000..c62241384b9 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-my-ph-256gb-1919-vivo-v19-neo/index.json @@ -0,0 +1,76 @@ +{ + "id": 5239, + "slug": "vivo-v17-dual-sim-td-lte-my-ph-256gb-1919-vivo-v19-neo", + "name": "Vivo V17 Dual SIM TD-LTE MY PH 256GB 1919 / Vivo V19 Neo", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-12-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.869791", + "updated_at": "2026-06-19T00:43:44.869791" +} diff --git a/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-my-ph-256gb-1919-vivo-v19-neo/score/index.json b/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-my-ph-256gb-1919-vivo-v19-neo/score/index.json new file mode 100644 index 00000000000..c2f52ec179e --- /dev/null +++ b/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-my-ph-256gb-1919-vivo-v19-neo/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-pk-id-128gb-1919-v19/index.json b/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-pk-id-128gb-1919-v19/index.json new file mode 100644 index 00000000000..e433e7eac15 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-pk-id-128gb-1919-v19/index.json @@ -0,0 +1,76 @@ +{ + "id": 5372, + "slug": "vivo-v17-dual-sim-td-lte-pk-id-128gb-1919-v19", + "name": "Vivo V17 Dual SIM TD-LTE PK ID 128GB 1919 / V19", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2020-03-26", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.886312", + "updated_at": "2026-06-19T00:43:44.886312" +} diff --git a/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-pk-id-128gb-1919-v19/score/index.json b/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-pk-id-128gb-1919-v19/score/index.json new file mode 100644 index 00000000000..c2f52ec179e --- /dev/null +++ b/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-pk-id-128gb-1919-v19/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-pk-id-256gb-1919-v19/index.json b/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-pk-id-256gb-1919-v19/index.json new file mode 100644 index 00000000000..ffd94d389e4 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-pk-id-256gb-1919-v19/index.json @@ -0,0 +1,76 @@ +{ + "id": 5240, + "slug": "vivo-v17-dual-sim-td-lte-pk-id-256gb-1919-v19", + "name": "Vivo V17 Dual SIM TD-LTE PK ID 256GB 1919 / V19", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-12-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.869791", + "updated_at": "2026-06-19T00:43:44.869791" +} diff --git a/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-pk-id-256gb-1919-v19/score/index.json b/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-pk-id-256gb-1919-v19/score/index.json new file mode 100644 index 00000000000..c2f52ec179e --- /dev/null +++ b/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-pk-id-256gb-1919-v19/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-ru-128gb-1920/index.json b/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-ru-128gb-1920/index.json new file mode 100644 index 00000000000..1d84e265895 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-ru-128gb-1920/index.json @@ -0,0 +1,76 @@ +{ + "id": 5241, + "slug": "vivo-v17-dual-sim-td-lte-ru-128gb-1920", + "name": "Vivo V17 Dual SIM TD-LTE RU 128GB 1920", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-12-06", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 186.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.869791", + "updated_at": "2026-06-19T00:43:44.869791" +} diff --git a/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-ru-128gb-1920/score/index.json b/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-ru-128gb-1920/score/index.json new file mode 100644 index 00000000000..40b4ea4e54e --- /dev/null +++ b/site/public/v1/smartphones/vivo-v17-dual-sim-td-lte-ru-128gb-1920/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v17-neo-dual-sim-td-lte-ru-np-pk-bd-128gb-1907-s1/index.json b/site/public/v1/smartphones/vivo-v17-neo-dual-sim-td-lte-ru-np-pk-bd-128gb-1907-s1/index.json new file mode 100644 index 00000000000..b143960fde1 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v17-neo-dual-sim-td-lte-ru-np-pk-bd-128gb-1907-s1/index.json @@ -0,0 +1,76 @@ +{ + "id": 5242, + "slug": "vivo-v17-neo-dual-sim-td-lte-ru-np-pk-bd-128gb-1907-s1", + "name": "Vivo V17 Neo Dual SIM TD-LTE RU NP PK BD 128GB 1907 / S1", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 52, + "slug": "helio-p65", + "name": "Helio P65", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-p65" + }, + "release_date": "2019-08-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 1.5, + "camera": 6.3, + "battery": 23.1, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.870790", + "updated_at": "2026-06-19T00:43:44.870790" +} diff --git a/site/public/v1/smartphones/vivo-v17-neo-dual-sim-td-lte-ru-np-pk-bd-128gb-1907-s1/score/index.json b/site/public/v1/smartphones/vivo-v17-neo-dual-sim-td-lte-ru-np-pk-bd-128gb-1907-s1/score/index.json new file mode 100644 index 00000000000..71150b92f87 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v17-neo-dual-sim-td-lte-ru-np-pk-bd-128gb-1907-s1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 1.5, + "camera": 6.3, + "battery": 23.1, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v17-pro-dual-sim-td-lte-hk-128gb-1910/index.json b/site/public/v1/smartphones/vivo-v17-pro-dual-sim-td-lte-hk-128gb-1910/index.json new file mode 100644 index 00000000000..3368c25e577 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v17-pro-dual-sim-td-lte-hk-128gb-1910/index.json @@ -0,0 +1,76 @@ +{ + "id": 5243, + "slug": "vivo-v17-pro-dual-sim-td-lte-hk-128gb-1910", + "name": "Vivo V17 Pro Dual SIM TD-LTE HK 128GB 1910", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 201.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 3.0, + "camera": 16.5, + "battery": 17.1, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.870790", + "updated_at": "2026-06-19T00:43:44.870790" +} diff --git a/site/public/v1/smartphones/vivo-v17-pro-dual-sim-td-lte-hk-128gb-1910/score/index.json b/site/public/v1/smartphones/vivo-v17-pro-dual-sim-td-lte-hk-128gb-1910/score/index.json new file mode 100644 index 00000000000..985922ffa32 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v17-pro-dual-sim-td-lte-hk-128gb-1910/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 3.0, + "camera": 16.5, + "battery": 17.1, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v17-pro-dual-sim-td-lte-in-pk-np-bd-mn-128gb-1909/index.json b/site/public/v1/smartphones/vivo-v17-pro-dual-sim-td-lte-in-pk-np-bd-mn-128gb-1909/index.json new file mode 100644 index 00000000000..b75a7395522 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v17-pro-dual-sim-td-lte-in-pk-np-bd-mn-128gb-1909/index.json @@ -0,0 +1,76 @@ +{ + "id": 5244, + "slug": "vivo-v17-pro-dual-sim-td-lte-in-pk-np-bd-mn-128gb-1909", + "name": "Vivo V17 Pro Dual SIM TD-LTE IN PK NP BD MN 128GB 1909", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 201.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 3.0, + "camera": 16.5, + "battery": 17.1, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.870790", + "updated_at": "2026-06-19T00:43:44.870790" +} diff --git a/site/public/v1/smartphones/vivo-v17-pro-dual-sim-td-lte-in-pk-np-bd-mn-128gb-1909/score/index.json b/site/public/v1/smartphones/vivo-v17-pro-dual-sim-td-lte-in-pk-np-bd-mn-128gb-1909/score/index.json new file mode 100644 index 00000000000..985922ffa32 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v17-pro-dual-sim-td-lte-in-pk-np-bd-mn-128gb-1909/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 3.0, + "camera": 16.5, + "battery": 17.1, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v17-pro-dual-sim-td-lte-my-vn-128gb-1910/index.json b/site/public/v1/smartphones/vivo-v17-pro-dual-sim-td-lte-my-vn-128gb-1910/index.json new file mode 100644 index 00000000000..a77fac3ce3a --- /dev/null +++ b/site/public/v1/smartphones/vivo-v17-pro-dual-sim-td-lte-my-vn-128gb-1910/index.json @@ -0,0 +1,76 @@ +{ + "id": 5245, + "slug": "vivo-v17-pro-dual-sim-td-lte-my-vn-128gb-1910", + "name": "Vivo V17 Pro Dual SIM TD-LTE MY VN 128GB 1910", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 201.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 3.0, + "camera": 16.5, + "battery": 17.1, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.870790", + "updated_at": "2026-06-19T00:43:44.870790" +} diff --git a/site/public/v1/smartphones/vivo-v17-pro-dual-sim-td-lte-my-vn-128gb-1910/score/index.json b/site/public/v1/smartphones/vivo-v17-pro-dual-sim-td-lte-my-vn-128gb-1910/score/index.json new file mode 100644 index 00000000000..985922ffa32 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v17-pro-dual-sim-td-lte-my-vn-128gb-1910/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 3.0, + "camera": 16.5, + "battery": 17.1, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v17-pro-dual-sim-td-lte-th-id-128gb-1910/index.json b/site/public/v1/smartphones/vivo-v17-pro-dual-sim-td-lte-th-id-128gb-1910/index.json new file mode 100644 index 00000000000..2da90d76f18 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v17-pro-dual-sim-td-lte-th-id-128gb-1910/index.json @@ -0,0 +1,76 @@ +{ + "id": 5246, + "slug": "vivo-v17-pro-dual-sim-td-lte-th-id-128gb-1910", + "name": "Vivo V17 Pro Dual SIM TD-LTE TH ID 128GB 1910", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 201.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 3.0, + "camera": 16.5, + "battery": 17.1, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.870790", + "updated_at": "2026-06-19T00:43:44.870790" +} diff --git a/site/public/v1/smartphones/vivo-v17-pro-dual-sim-td-lte-th-id-128gb-1910/score/index.json b/site/public/v1/smartphones/vivo-v17-pro-dual-sim-td-lte-th-id-128gb-1910/score/index.json new file mode 100644 index 00000000000..985922ffa32 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v17-pro-dual-sim-td-lte-th-id-128gb-1910/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 3.0, + "camera": 16.5, + "battery": 17.1, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v17-pro-dual-sim-td-lte-tw-sg-128gb-1910/index.json b/site/public/v1/smartphones/vivo-v17-pro-dual-sim-td-lte-tw-sg-128gb-1910/index.json new file mode 100644 index 00000000000..7ce48251908 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v17-pro-dual-sim-td-lte-tw-sg-128gb-1910/index.json @@ -0,0 +1,76 @@ +{ + "id": 5247, + "slug": "vivo-v17-pro-dual-sim-td-lte-tw-sg-128gb-1910", + "name": "Vivo V17 Pro Dual SIM TD-LTE TW SG 128GB 1910", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 201.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 3.0, + "camera": 16.5, + "battery": 17.1, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.870790", + "updated_at": "2026-06-19T00:43:44.870790" +} diff --git a/site/public/v1/smartphones/vivo-v17-pro-dual-sim-td-lte-tw-sg-128gb-1910/score/index.json b/site/public/v1/smartphones/vivo-v17-pro-dual-sim-td-lte-tw-sg-128gb-1910/score/index.json new file mode 100644 index 00000000000..985922ffa32 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v17-pro-dual-sim-td-lte-tw-sg-128gb-1910/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 3.0, + "camera": 16.5, + "battery": 17.1, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v17-pro-global-dual-sim-td-lte-128gb-1910/index.json b/site/public/v1/smartphones/vivo-v17-pro-global-dual-sim-td-lte-128gb-1910/index.json new file mode 100644 index 00000000000..bf7ff7b8826 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v17-pro-global-dual-sim-td-lte-128gb-1910/index.json @@ -0,0 +1,76 @@ +{ + "id": 5248, + "slug": "vivo-v17-pro-global-dual-sim-td-lte-128gb-1910", + "name": "Vivo V17 Pro Global Dual SIM TD-LTE 128GB 1910", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 201.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 3.0, + "camera": 16.5, + "battery": 17.1, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.870790", + "updated_at": "2026-06-19T00:43:44.870790" +} diff --git a/site/public/v1/smartphones/vivo-v17-pro-global-dual-sim-td-lte-128gb-1910/score/index.json b/site/public/v1/smartphones/vivo-v17-pro-global-dual-sim-td-lte-128gb-1910/score/index.json new file mode 100644 index 00000000000..985922ffa32 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v17-pro-global-dual-sim-td-lte-128gb-1910/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 3.0, + "camera": 16.5, + "battery": 17.1, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v19-dual-sim-td-lte-v1-in-128gb-1933/index.json b/site/public/v1/smartphones/vivo-v19-dual-sim-td-lte-v1-in-128gb-1933/index.json new file mode 100644 index 00000000000..b3d52554022 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v19-dual-sim-td-lte-v1-in-128gb-1933/index.json @@ -0,0 +1,76 @@ +{ + "id": 5373, + "slug": "vivo-v19-dual-sim-td-lte-v1-in-128gb-1933", + "name": "Vivo V19 Dual SIM TD-LTE V1 IN 128GB 1933", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2020-05-09", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 186.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 3.0, + "camera": 16.5, + "battery": 25.9, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.886312", + "updated_at": "2026-06-19T00:43:44.886312" +} diff --git a/site/public/v1/smartphones/vivo-v19-dual-sim-td-lte-v1-in-128gb-1933/score/index.json b/site/public/v1/smartphones/vivo-v19-dual-sim-td-lte-v1-in-128gb-1933/score/index.json new file mode 100644 index 00000000000..2380db3d831 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v19-dual-sim-td-lte-v1-in-128gb-1933/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 3.0, + "camera": 16.5, + "battery": 25.9, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v19-dual-sim-td-lte-v1-in-256gb-1933/index.json b/site/public/v1/smartphones/vivo-v19-dual-sim-td-lte-v1-in-256gb-1933/index.json new file mode 100644 index 00000000000..275efa39221 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v19-dual-sim-td-lte-v1-in-256gb-1933/index.json @@ -0,0 +1,76 @@ +{ + "id": 5374, + "slug": "vivo-v19-dual-sim-td-lte-v1-in-256gb-1933", + "name": "Vivo V19 Dual SIM TD-LTE V1 IN 256GB 1933", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2020-05-12", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 186.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 3.0, + "camera": 16.5, + "battery": 25.9, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.886312", + "updated_at": "2026-06-19T00:43:44.886312" +} diff --git a/site/public/v1/smartphones/vivo-v19-dual-sim-td-lte-v1-in-256gb-1933/score/index.json b/site/public/v1/smartphones/vivo-v19-dual-sim-td-lte-v1-in-256gb-1933/score/index.json new file mode 100644 index 00000000000..2380db3d831 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v19-dual-sim-td-lte-v1-in-256gb-1933/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 3.0, + "camera": 16.5, + "battery": 25.9, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v19-global-dual-sim-td-lte-v4-128gb-1933/index.json b/site/public/v1/smartphones/vivo-v19-global-dual-sim-td-lte-v4-128gb-1933/index.json new file mode 100644 index 00000000000..f2732843758 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v19-global-dual-sim-td-lte-v4-128gb-1933/index.json @@ -0,0 +1,76 @@ +{ + "id": 5375, + "slug": "vivo-v19-global-dual-sim-td-lte-v4-128gb-1933", + "name": "Vivo V19 Global Dual SIM TD-LTE V4 128GB 1933", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 186.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 3.0, + "camera": 16.5, + "battery": 25.9, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.886312", + "updated_at": "2026-06-19T00:43:44.886312" +} diff --git a/site/public/v1/smartphones/vivo-v19-global-dual-sim-td-lte-v4-128gb-1933/score/index.json b/site/public/v1/smartphones/vivo-v19-global-dual-sim-td-lte-v4-128gb-1933/score/index.json new file mode 100644 index 00000000000..2380db3d831 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v19-global-dual-sim-td-lte-v4-128gb-1933/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.8, + "performance": 3.0, + "camera": 16.5, + "battery": 25.9, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v20-pro-5g-global-dual-sim-td-lte-128gb-2018/index.json b/site/public/v1/smartphones/vivo-v20-pro-5g-global-dual-sim-td-lte-128gb-2018/index.json new file mode 100644 index 00000000000..a88cc94f274 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v20-pro-5g-global-dual-sim-td-lte-128gb-2018/index.json @@ -0,0 +1,76 @@ +{ + "id": 5376, + "slug": "vivo-v20-pro-5g-global-dual-sim-td-lte-128gb-2018", + "name": "Vivo V20 Pro 5G Global Dual SIM TD-LTE 128GB 2018", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 44.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 3.0, + "camera": 21.5, + "battery": 18.4, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.886312", + "updated_at": "2026-06-19T00:43:44.886312" +} diff --git a/site/public/v1/smartphones/vivo-v20-pro-5g-global-dual-sim-td-lte-128gb-2018/score/index.json b/site/public/v1/smartphones/vivo-v20-pro-5g-global-dual-sim-td-lte-128gb-2018/score/index.json new file mode 100644 index 00000000000..78c77e278df --- /dev/null +++ b/site/public/v1/smartphones/vivo-v20-pro-5g-global-dual-sim-td-lte-128gb-2018/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 3.0, + "camera": 21.5, + "battery": 18.4, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v20-se-dual-sim-td-lte-v1-my-128gb-2022/index.json b/site/public/v1/smartphones/vivo-v20-se-dual-sim-td-lte-v1-my-128gb-2022/index.json new file mode 100644 index 00000000000..9735f6100c1 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v20-se-dual-sim-td-lte-v1-my-128gb-2022/index.json @@ -0,0 +1,76 @@ +{ + "id": 5377, + "slug": "vivo-v20-se-dual-sim-td-lte-v1-my-128gb-2022", + "name": "Vivo V20 SE Dual SIM TD-LTE V1 MY 128GB 2022", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-10-01", + "msrp_usd": 1199, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 3.0, + "camera": 16.5, + "battery": 19.9, + "display": 45.8, + "value": 26.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.886312", + "updated_at": "2026-06-19T00:43:44.886312" +} diff --git a/site/public/v1/smartphones/vivo-v20-se-dual-sim-td-lte-v1-my-128gb-2022/score/index.json b/site/public/v1/smartphones/vivo-v20-se-dual-sim-td-lte-v1-my-128gb-2022/score/index.json new file mode 100644 index 00000000000..295488f100c --- /dev/null +++ b/site/public/v1/smartphones/vivo-v20-se-dual-sim-td-lte-v1-my-128gb-2022/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 3.0, + "camera": 16.5, + "battery": 19.9, + "display": 45.8, + "value": 26.1 +} diff --git a/site/public/v1/smartphones/vivo-v20-se-dual-sim-td-lte-v2-id-128gb-2022/index.json b/site/public/v1/smartphones/vivo-v20-se-dual-sim-td-lte-v2-id-128gb-2022/index.json new file mode 100644 index 00000000000..4acc40d94f1 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v20-se-dual-sim-td-lte-v2-id-128gb-2022/index.json @@ -0,0 +1,76 @@ +{ + "id": 5378, + "slug": "vivo-v20-se-dual-sim-td-lte-v2-id-128gb-2022", + "name": "Vivo V20 SE Dual SIM TD-LTE V2 ID 128GB 2022", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-10-01", + "msrp_usd": 3999, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 3.0, + "camera": 16.5, + "battery": 19.9, + "display": 45.8, + "value": 10.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.886312", + "updated_at": "2026-06-19T00:43:44.886312" +} diff --git a/site/public/v1/smartphones/vivo-v20-se-dual-sim-td-lte-v2-id-128gb-2022/score/index.json b/site/public/v1/smartphones/vivo-v20-se-dual-sim-td-lte-v2-id-128gb-2022/score/index.json new file mode 100644 index 00000000000..3077cd7c5f1 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v20-se-dual-sim-td-lte-v2-id-128gb-2022/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 3.0, + "camera": 16.5, + "battery": 19.9, + "display": 45.8, + "value": 10.7 +} diff --git a/site/public/v1/smartphones/vivo-v21e-5g-dual-sim-td-lte-v1-in-128gb-v2055/index.json b/site/public/v1/smartphones/vivo-v21e-5g-dual-sim-td-lte-v1-in-128gb-v2055/index.json new file mode 100644 index 00000000000..cef954e46ed --- /dev/null +++ b/site/public/v1/smartphones/vivo-v21e-5g-dual-sim-td-lte-v1-in-128gb-v2055/index.json @@ -0,0 +1,76 @@ +{ + "id": 5474, + "slug": "vivo-v21e-5g-dual-sim-td-lte-v1-in-128gb-v2055", + "name": "Vivo V21e 5G Dual SIM TD-LTE V1 IN 128GB V2055", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-06-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 167.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.7, + "performance": 3.0, + "camera": 21.5, + "battery": 20.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.899308", + "updated_at": "2026-06-19T00:43:44.899308" +} diff --git a/site/public/v1/smartphones/vivo-v21e-5g-dual-sim-td-lte-v1-in-128gb-v2055/score/index.json b/site/public/v1/smartphones/vivo-v21e-5g-dual-sim-td-lte-v1-in-128gb-v2055/score/index.json new file mode 100644 index 00000000000..8f9bd75faef --- /dev/null +++ b/site/public/v1/smartphones/vivo-v21e-5g-dual-sim-td-lte-v1-in-128gb-v2055/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.7, + "performance": 3.0, + "camera": 21.5, + "battery": 20.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v9-6gb-dual-sim-td-lte-id-v9-pro/index.json b/site/public/v1/smartphones/vivo-v9-6gb-dual-sim-td-lte-id-v9-pro/index.json new file mode 100644 index 00000000000..3de635e7bb8 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v9-6gb-dual-sim-td-lte-id-v9-pro/index.json @@ -0,0 +1,76 @@ +{ + "id": 5067, + "slug": "vivo-v9-6gb-dual-sim-td-lte-id-v9-pro", + "name": "Vivo V9 6GB Dual SIM TD-LTE ID / V9 Pro", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-07-04", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "battery_mah": 3260, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 19.5, + "camera": 5.3, + "battery": 3.9, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.847781", + "updated_at": "2026-06-19T00:43:44.847781" +} diff --git a/site/public/v1/smartphones/vivo-v9-6gb-dual-sim-td-lte-id-v9-pro/score/index.json b/site/public/v1/smartphones/vivo-v9-6gb-dual-sim-td-lte-id-v9-pro/score/index.json new file mode 100644 index 00000000000..065a3937d8c --- /dev/null +++ b/site/public/v1/smartphones/vivo-v9-6gb-dual-sim-td-lte-id-v9-pro/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 19.5, + "camera": 5.3, + "battery": 3.9, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v9-pro-6gb-dual-sim-td-lte-in-1851/index.json b/site/public/v1/smartphones/vivo-v9-pro-6gb-dual-sim-td-lte-in-1851/index.json new file mode 100644 index 00000000000..d529f6c726d --- /dev/null +++ b/site/public/v1/smartphones/vivo-v9-pro-6gb-dual-sim-td-lte-in-1851/index.json @@ -0,0 +1,76 @@ +{ + "id": 5068, + "slug": "vivo-v9-pro-6gb-dual-sim-td-lte-in-1851", + "name": "Vivo V9 Pro 6GB Dual SIM TD-LTE IN 1851", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3260, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 19.5, + "camera": 5.3, + "battery": 3.9, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.847781", + "updated_at": "2026-06-19T00:43:44.847781" +} diff --git a/site/public/v1/smartphones/vivo-v9-pro-6gb-dual-sim-td-lte-in-1851/score/index.json b/site/public/v1/smartphones/vivo-v9-pro-6gb-dual-sim-td-lte-in-1851/score/index.json new file mode 100644 index 00000000000..065a3937d8c --- /dev/null +++ b/site/public/v1/smartphones/vivo-v9-pro-6gb-dual-sim-td-lte-in-1851/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": 19.5, + "camera": 5.3, + "battery": 3.9, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v9-pro-dual-sim-td-lte-in-1851/index.json b/site/public/v1/smartphones/vivo-v9-pro-dual-sim-td-lte-in-1851/index.json new file mode 100644 index 00000000000..b7ee05b914d --- /dev/null +++ b/site/public/v1/smartphones/vivo-v9-pro-dual-sim-td-lte-in-1851/index.json @@ -0,0 +1,76 @@ +{ + "id": 5069, + "slug": "vivo-v9-pro-dual-sim-td-lte-in-1851", + "name": "Vivo V9 Pro Dual SIM TD-LTE IN 1851", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3260, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 18.0, + "camera": 5.3, + "battery": 3.9, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.847781", + "updated_at": "2026-06-19T00:43:44.847781" +} diff --git a/site/public/v1/smartphones/vivo-v9-pro-dual-sim-td-lte-in-1851/score/index.json b/site/public/v1/smartphones/vivo-v9-pro-dual-sim-td-lte-in-1851/score/index.json new file mode 100644 index 00000000000..5d4f2ac5afc --- /dev/null +++ b/site/public/v1/smartphones/vivo-v9-pro-dual-sim-td-lte-in-1851/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 18.0, + "camera": 5.3, + "battery": 3.9, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v9-youth-edition-dual-sim-td-lte-in-pk-np-1727/index.json b/site/public/v1/smartphones/vivo-v9-youth-edition-dual-sim-td-lte-in-pk-np-1727/index.json new file mode 100644 index 00000000000..8be32c50848 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v9-youth-edition-dual-sim-td-lte-in-pk-np-1727/index.json @@ -0,0 +1,76 @@ +{ + "id": 5070, + "slug": "vivo-v9-youth-edition-dual-sim-td-lte-in-pk-np-1727", + "name": "Vivo V9 Youth Edition Dual SIM TD-LTE IN PK NP 1727", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-04-27", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3260, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": null, + "camera": 6.4, + "battery": 3.9, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.847781", + "updated_at": "2026-06-19T00:43:44.847781" +} diff --git a/site/public/v1/smartphones/vivo-v9-youth-edition-dual-sim-td-lte-in-pk-np-1727/score/index.json b/site/public/v1/smartphones/vivo-v9-youth-edition-dual-sim-td-lte-in-pk-np-1727/score/index.json new file mode 100644 index 00000000000..0b1950b176e --- /dev/null +++ b/site/public/v1/smartphones/vivo-v9-youth-edition-dual-sim-td-lte-in-pk-np-1727/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": null, + "camera": 6.4, + "battery": 3.9, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v9-youth-edition-dual-sim-td-lte-ru-1727/index.json b/site/public/v1/smartphones/vivo-v9-youth-edition-dual-sim-td-lte-ru-1727/index.json new file mode 100644 index 00000000000..60f401438be --- /dev/null +++ b/site/public/v1/smartphones/vivo-v9-youth-edition-dual-sim-td-lte-ru-1727/index.json @@ -0,0 +1,76 @@ +{ + "id": 5071, + "slug": "vivo-v9-youth-edition-dual-sim-td-lte-ru-1727", + "name": "Vivo V9 Youth Edition Dual SIM TD-LTE RU 1727", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3260, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": null, + "camera": 6.4, + "battery": 3.9, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.848781", + "updated_at": "2026-06-19T00:43:44.848781" +} diff --git a/site/public/v1/smartphones/vivo-v9-youth-edition-dual-sim-td-lte-ru-1727/score/index.json b/site/public/v1/smartphones/vivo-v9-youth-edition-dual-sim-td-lte-ru-1727/score/index.json new file mode 100644 index 00000000000..0b1950b176e --- /dev/null +++ b/site/public/v1/smartphones/vivo-v9-youth-edition-dual-sim-td-lte-ru-1727/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": null, + "camera": 6.4, + "battery": 3.9, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v9-youth-edition-dual-sim-td-lte-tw-1727/index.json b/site/public/v1/smartphones/vivo-v9-youth-edition-dual-sim-td-lte-tw-1727/index.json new file mode 100644 index 00000000000..36a5bff9427 --- /dev/null +++ b/site/public/v1/smartphones/vivo-v9-youth-edition-dual-sim-td-lte-tw-1727/index.json @@ -0,0 +1,76 @@ +{ + "id": 5072, + "slug": "vivo-v9-youth-edition-dual-sim-td-lte-tw-1727", + "name": "Vivo V9 Youth Edition Dual SIM TD-LTE TW 1727", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3260, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": null, + "camera": 6.4, + "battery": 3.9, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.848781", + "updated_at": "2026-06-19T00:43:44.848781" +} diff --git a/site/public/v1/smartphones/vivo-v9-youth-edition-dual-sim-td-lte-tw-1727/score/index.json b/site/public/v1/smartphones/vivo-v9-youth-edition-dual-sim-td-lte-tw-1727/score/index.json new file mode 100644 index 00000000000..0b1950b176e --- /dev/null +++ b/site/public/v1/smartphones/vivo-v9-youth-edition-dual-sim-td-lte-tw-1727/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": null, + "camera": 6.4, + "battery": 3.9, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-v9-youth-edition-dual-sim-td-lte-vn-bd-1727/index.json b/site/public/v1/smartphones/vivo-v9-youth-edition-dual-sim-td-lte-vn-bd-1727/index.json new file mode 100644 index 00000000000..e36a9c7711c --- /dev/null +++ b/site/public/v1/smartphones/vivo-v9-youth-edition-dual-sim-td-lte-vn-bd-1727/index.json @@ -0,0 +1,76 @@ +{ + "id": 5073, + "slug": "vivo-v9-youth-edition-dual-sim-td-lte-vn-bd-1727", + "name": "Vivo V9 Youth Edition Dual SIM TD-LTE VN BD 1727", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3260, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": null, + "camera": 6.4, + "battery": 3.9, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.848781", + "updated_at": "2026-06-19T00:43:44.848781" +} diff --git a/site/public/v1/smartphones/vivo-v9-youth-edition-dual-sim-td-lte-vn-bd-1727/score/index.json b/site/public/v1/smartphones/vivo-v9-youth-edition-dual-sim-td-lte-vn-bd-1727/score/index.json new file mode 100644 index 00000000000..0b1950b176e --- /dev/null +++ b/site/public/v1/smartphones/vivo-v9-youth-edition-dual-sim-td-lte-vn-bd-1727/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": null, + "camera": 6.4, + "battery": 3.9, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x21-dual-sim-td-lte-cn-128gb-x21a/index.json b/site/public/v1/smartphones/vivo-x21-dual-sim-td-lte-cn-128gb-x21a/index.json new file mode 100644 index 00000000000..fc708050a22 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x21-dual-sim-td-lte-cn-128gb-x21a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5074, + "slug": "vivo-x21-dual-sim-td-lte-cn-128gb-x21a", + "name": "Vivo X21 Dual SIM TD-LTE CN 128GB X21A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-03-28", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.2, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 19.5, + "camera": 5.1, + "battery": 3.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.848781", + "updated_at": "2026-06-19T00:43:44.848781" +} diff --git a/site/public/v1/smartphones/vivo-x21-dual-sim-td-lte-cn-128gb-x21a/score/index.json b/site/public/v1/smartphones/vivo-x21-dual-sim-td-lte-cn-128gb-x21a/score/index.json new file mode 100644 index 00000000000..1a5e776d7f3 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x21-dual-sim-td-lte-cn-128gb-x21a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 19.5, + "camera": 5.1, + "battery": 3.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x21-dual-sim-td-lte-cn-64gb/index.json b/site/public/v1/smartphones/vivo-x21-dual-sim-td-lte-cn-64gb/index.json new file mode 100644 index 00000000000..2e8a7f148c6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x21-dual-sim-td-lte-cn-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5075, + "slug": "vivo-x21-dual-sim-td-lte-cn-64gb", + "name": "Vivo X21 Dual SIM TD-LTE CN 64GB", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-03-28", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.2, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 19.5, + "camera": 5.1, + "battery": 3.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.848781", + "updated_at": "2026-06-19T00:43:44.848781" +} diff --git a/site/public/v1/smartphones/vivo-x21-dual-sim-td-lte-cn-64gb/score/index.json b/site/public/v1/smartphones/vivo-x21-dual-sim-td-lte-cn-64gb/score/index.json new file mode 100644 index 00000000000..1a5e776d7f3 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x21-dual-sim-td-lte-cn-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 19.5, + "camera": 5.1, + "battery": 3.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x21-dual-sim-td-lte-tw-hk-sg-128gb/index.json b/site/public/v1/smartphones/vivo-x21-dual-sim-td-lte-tw-hk-sg-128gb/index.json new file mode 100644 index 00000000000..60b99ceb8ea --- /dev/null +++ b/site/public/v1/smartphones/vivo-x21-dual-sim-td-lte-tw-hk-sg-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5076, + "slug": "vivo-x21-dual-sim-td-lte-tw-hk-sg-128gb", + "name": "Vivo X21 Dual SIM TD-LTE TW HK SG 128GB", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-05-06", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.2, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 19.5, + "camera": 5.1, + "battery": 3.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.848781", + "updated_at": "2026-06-19T00:43:44.848781" +} diff --git a/site/public/v1/smartphones/vivo-x21-dual-sim-td-lte-tw-hk-sg-128gb/score/index.json b/site/public/v1/smartphones/vivo-x21-dual-sim-td-lte-tw-hk-sg-128gb/score/index.json new file mode 100644 index 00000000000..1a5e776d7f3 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x21-dual-sim-td-lte-tw-hk-sg-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 19.5, + "camera": 5.1, + "battery": 3.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x21-ud-dual-sim-td-lte-cn-128gb-x21ud-a/index.json b/site/public/v1/smartphones/vivo-x21-ud-dual-sim-td-lte-cn-128gb-x21ud-a/index.json new file mode 100644 index 00000000000..de8d3f738c8 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x21-ud-dual-sim-td-lte-cn-128gb-x21ud-a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5077, + "slug": "vivo-x21-ud-dual-sim-td-lte-cn-128gb-x21ud-a", + "name": "Vivo X21 UD Dual SIM TD-LTE CN 128GB X21UD A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-03-28", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.2, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 19.5, + "camera": 5.1, + "battery": 3.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.848781", + "updated_at": "2026-06-19T00:43:44.848781" +} diff --git a/site/public/v1/smartphones/vivo-x21-ud-dual-sim-td-lte-cn-128gb-x21ud-a/score/index.json b/site/public/v1/smartphones/vivo-x21-ud-dual-sim-td-lte-cn-128gb-x21ud-a/score/index.json new file mode 100644 index 00000000000..1a5e776d7f3 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x21-ud-dual-sim-td-lte-cn-128gb-x21ud-a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 19.5, + "camera": 5.1, + "battery": 3.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x21-ud-dual-sim-td-lte-hk-sg-tw-my-1725/index.json b/site/public/v1/smartphones/vivo-x21-ud-dual-sim-td-lte-hk-sg-tw-my-1725/index.json new file mode 100644 index 00000000000..bb0c2fe9fb1 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x21-ud-dual-sim-td-lte-hk-sg-tw-my-1725/index.json @@ -0,0 +1,76 @@ +{ + "id": 5078, + "slug": "vivo-x21-ud-dual-sim-td-lte-hk-sg-tw-my-1725", + "name": "Vivo X21 UD Dual SIM TD-LTE HK SG TW MY 1725", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-05-06", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.2, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 19.5, + "camera": 5.1, + "battery": 3.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.848781", + "updated_at": "2026-06-19T00:43:44.848781" +} diff --git a/site/public/v1/smartphones/vivo-x21-ud-dual-sim-td-lte-hk-sg-tw-my-1725/score/index.json b/site/public/v1/smartphones/vivo-x21-ud-dual-sim-td-lte-hk-sg-tw-my-1725/score/index.json new file mode 100644 index 00000000000..1a5e776d7f3 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x21-ud-dual-sim-td-lte-hk-sg-tw-my-1725/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 19.5, + "camera": 5.1, + "battery": 3.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x21-ud-dual-sim-td-lte-in-1728-x21/index.json b/site/public/v1/smartphones/vivo-x21-ud-dual-sim-td-lte-in-1728-x21/index.json new file mode 100644 index 00000000000..fb9fdc6ebb0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x21-ud-dual-sim-td-lte-in-1728-x21/index.json @@ -0,0 +1,76 @@ +{ + "id": 5079, + "slug": "vivo-x21-ud-dual-sim-td-lte-in-1728-x21", + "name": "Vivo X21 UD Dual SIM TD-LTE IN 1728 / X21", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-05-31", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.2, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 19.5, + "camera": 5.1, + "battery": 3.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.849781", + "updated_at": "2026-06-19T00:43:44.849781" +} diff --git a/site/public/v1/smartphones/vivo-x21-ud-dual-sim-td-lte-in-1728-x21/score/index.json b/site/public/v1/smartphones/vivo-x21-ud-dual-sim-td-lte-in-1728-x21/score/index.json new file mode 100644 index 00000000000..1a5e776d7f3 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x21-ud-dual-sim-td-lte-in-1728-x21/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 19.5, + "camera": 5.1, + "battery": 3.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x21i-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/vivo-x21i-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..39fab14cbdb --- /dev/null +++ b/site/public/v1/smartphones/vivo-x21i-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5080, + "slug": "vivo-x21i-dual-sim-td-lte-cn-128gb", + "name": "Vivo X21i Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-05-19", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3245, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": 0.0, + "camera": 5.1, + "battery": 3.7, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.849781", + "updated_at": "2026-06-19T00:43:44.849781" +} diff --git a/site/public/v1/smartphones/vivo-x21i-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/vivo-x21i-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..2fe5f859205 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x21i-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": 0.0, + "camera": 5.1, + "battery": 3.7, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x21i-dual-sim-td-lte-cn-64gb/index.json b/site/public/v1/smartphones/vivo-x21i-dual-sim-td-lte-cn-64gb/index.json new file mode 100644 index 00000000000..4e559580793 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x21i-dual-sim-td-lte-cn-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5081, + "slug": "vivo-x21i-dual-sim-td-lte-cn-64gb", + "name": "Vivo X21i Dual SIM TD-LTE CN 64GB", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-05-19", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3245, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 1.5, + "camera": 5.1, + "battery": 3.7, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.849781", + "updated_at": "2026-06-19T00:43:44.849781" +} diff --git a/site/public/v1/smartphones/vivo-x21i-dual-sim-td-lte-cn-64gb/score/index.json b/site/public/v1/smartphones/vivo-x21i-dual-sim-td-lte-cn-64gb/score/index.json new file mode 100644 index 00000000000..8b10006ff73 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x21i-dual-sim-td-lte-cn-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 1.5, + "camera": 5.1, + "battery": 3.7, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x21ia-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/vivo-x21ia-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..f531ca19a2c --- /dev/null +++ b/site/public/v1/smartphones/vivo-x21ia-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5082, + "slug": "vivo-x21ia-dual-sim-td-lte-cn-128gb", + "name": "Vivo X21iA Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-05-19", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3245, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": 0.0, + "camera": 5.1, + "battery": 3.7, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.849781", + "updated_at": "2026-06-19T00:43:44.849781" +} diff --git a/site/public/v1/smartphones/vivo-x21ia-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/vivo-x21ia-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..2fe5f859205 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x21ia-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": 0.0, + "camera": 5.1, + "battery": 3.7, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x21ia-dual-sim-td-lte-cn-64gb/index.json b/site/public/v1/smartphones/vivo-x21ia-dual-sim-td-lte-cn-64gb/index.json new file mode 100644 index 00000000000..efc50967304 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x21ia-dual-sim-td-lte-cn-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5083, + "slug": "vivo-x21ia-dual-sim-td-lte-cn-64gb", + "name": "Vivo X21iA Dual SIM TD-LTE CN 64GB", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-05-19", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3245, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 1.5, + "camera": 5.1, + "battery": 3.7, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.849781", + "updated_at": "2026-06-19T00:43:44.849781" +} diff --git a/site/public/v1/smartphones/vivo-x21ia-dual-sim-td-lte-cn-64gb/score/index.json b/site/public/v1/smartphones/vivo-x21ia-dual-sim-td-lte-cn-64gb/score/index.json new file mode 100644 index 00000000000..8b10006ff73 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x21ia-dual-sim-td-lte-cn-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 1.5, + "camera": 5.1, + "battery": 3.7, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x23-dual-sim-td-lte-cn-v1809a/index.json b/site/public/v1/smartphones/vivo-x23-dual-sim-td-lte-cn-v1809a/index.json new file mode 100644 index 00000000000..3bfa80cf721 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x23-dual-sim-td-lte-cn-v1809a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5084, + "slug": "vivo-x23-dual-sim-td-lte-cn-v1809a", + "name": "Vivo X23 Dual SIM TD-LTE CN V1809A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 127, + "slug": "snapdragon-670", + "name": "Snapdragon 670", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 615", + "url": "/v1/socs/snapdragon-670" + }, + "release_date": "2018-09-14", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3400, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 160.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.849781", + "updated_at": "2026-06-19T00:43:44.849781" +} diff --git a/site/public/v1/smartphones/vivo-x23-dual-sim-td-lte-cn-v1809a/score/index.json b/site/public/v1/smartphones/vivo-x23-dual-sim-td-lte-cn-v1809a/score/index.json new file mode 100644 index 00000000000..279cee89117 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x23-dual-sim-td-lte-cn-v1809a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x23-dual-sim-td-lte-cn-v1809t/index.json b/site/public/v1/smartphones/vivo-x23-dual-sim-td-lte-cn-v1809t/index.json new file mode 100644 index 00000000000..63423776440 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x23-dual-sim-td-lte-cn-v1809t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5085, + "slug": "vivo-x23-dual-sim-td-lte-cn-v1809t", + "name": "Vivo X23 Dual SIM TD-LTE CN V1809T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 127, + "slug": "snapdragon-670", + "name": "Snapdragon 670", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 615", + "url": "/v1/socs/snapdragon-670" + }, + "release_date": "2018-09-14", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 3400, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 160.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.849781", + "updated_at": "2026-06-19T00:43:44.849781" +} diff --git a/site/public/v1/smartphones/vivo-x23-dual-sim-td-lte-cn-v1809t/score/index.json b/site/public/v1/smartphones/vivo-x23-dual-sim-td-lte-cn-v1809t/score/index.json new file mode 100644 index 00000000000..279cee89117 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x23-dual-sim-td-lte-cn-v1809t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 3.0, + "camera": 5.1, + "battery": 7.3, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x23-symphony-edition-dual-sim-td-lte-cn-v1816a/index.json b/site/public/v1/smartphones/vivo-x23-symphony-edition-dual-sim-td-lte-cn-v1816a/index.json new file mode 100644 index 00000000000..9a9a5ba1a54 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x23-symphony-edition-dual-sim-td-lte-cn-v1816a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5086, + "slug": "vivo-x23-symphony-edition-dual-sim-td-lte-cn-v1816a", + "name": "Vivo X23 Symphony Edition Dual SIM TD-LTE CN V1816A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 160.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 19.5, + "camera": 5.1, + "battery": 7.5, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.849781", + "updated_at": "2026-06-19T00:43:44.849781" +} diff --git a/site/public/v1/smartphones/vivo-x23-symphony-edition-dual-sim-td-lte-cn-v1816a/score/index.json b/site/public/v1/smartphones/vivo-x23-symphony-edition-dual-sim-td-lte-cn-v1816a/score/index.json new file mode 100644 index 00000000000..78cc68635b1 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x23-symphony-edition-dual-sim-td-lte-cn-v1816a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 19.5, + "camera": 5.1, + "battery": 7.5, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x23-symphony-edition-dual-sim-td-lte-cn-v1816t/index.json b/site/public/v1/smartphones/vivo-x23-symphony-edition-dual-sim-td-lte-cn-v1816t/index.json new file mode 100644 index 00000000000..25d2a341e5c --- /dev/null +++ b/site/public/v1/smartphones/vivo-x23-symphony-edition-dual-sim-td-lte-cn-v1816t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5087, + "slug": "vivo-x23-symphony-edition-dual-sim-td-lte-cn-v1816t", + "name": "Vivo X23 Symphony Edition Dual SIM TD-LTE CN V1816T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.8 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 160.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 19.5, + "camera": 5.1, + "battery": 7.5, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.850781", + "updated_at": "2026-06-19T00:43:44.850781" +} diff --git a/site/public/v1/smartphones/vivo-x23-symphony-edition-dual-sim-td-lte-cn-v1816t/score/index.json b/site/public/v1/smartphones/vivo-x23-symphony-edition-dual-sim-td-lte-cn-v1816t/score/index.json new file mode 100644 index 00000000000..78cc68635b1 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x23-symphony-edition-dual-sim-td-lte-cn-v1816t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 19.5, + "camera": 5.1, + "battery": 7.5, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x27-premium-edition-dual-sim-td-lte-cn-128gb-v1829a/index.json b/site/public/v1/smartphones/vivo-x27-premium-edition-dual-sim-td-lte-cn-128gb-v1829a/index.json new file mode 100644 index 00000000000..b690bb93478 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x27-premium-edition-dual-sim-td-lte-cn-128gb-v1829a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5249, + "slug": "vivo-x27-premium-edition-dual-sim-td-lte-cn-128gb-v1829a", + "name": "Vivo X27 Premium Edition Dual SIM TD-LTE CN 128GB V1829A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 23.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.870790", + "updated_at": "2026-06-19T00:43:44.870790" +} diff --git a/site/public/v1/smartphones/vivo-x27-premium-edition-dual-sim-td-lte-cn-128gb-v1829a/score/index.json b/site/public/v1/smartphones/vivo-x27-premium-edition-dual-sim-td-lte-cn-128gb-v1829a/score/index.json new file mode 100644 index 00000000000..a0577b4e5f6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x27-premium-edition-dual-sim-td-lte-cn-128gb-v1829a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 23.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x27-premium-edition-dual-sim-td-lte-cn-128gb-v1829t/index.json b/site/public/v1/smartphones/vivo-x27-premium-edition-dual-sim-td-lte-cn-128gb-v1829t/index.json new file mode 100644 index 00000000000..c6c38f6c234 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x27-premium-edition-dual-sim-td-lte-cn-128gb-v1829t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5250, + "slug": "vivo-x27-premium-edition-dual-sim-td-lte-cn-128gb-v1829t", + "name": "Vivo X27 Premium Edition Dual SIM TD-LTE CN 128GB V1829T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 23.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.870790", + "updated_at": "2026-06-19T00:43:44.870790" +} diff --git a/site/public/v1/smartphones/vivo-x27-premium-edition-dual-sim-td-lte-cn-128gb-v1829t/score/index.json b/site/public/v1/smartphones/vivo-x27-premium-edition-dual-sim-td-lte-cn-128gb-v1829t/score/index.json new file mode 100644 index 00000000000..a0577b4e5f6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x27-premium-edition-dual-sim-td-lte-cn-128gb-v1829t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 23.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x27-premium-edition-dual-sim-td-lte-cn-256gb-v1829a/index.json b/site/public/v1/smartphones/vivo-x27-premium-edition-dual-sim-td-lte-cn-256gb-v1829a/index.json new file mode 100644 index 00000000000..cc0585db533 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x27-premium-edition-dual-sim-td-lte-cn-256gb-v1829a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5251, + "slug": "vivo-x27-premium-edition-dual-sim-td-lte-cn-256gb-v1829a", + "name": "Vivo X27 Premium Edition Dual SIM TD-LTE CN 256GB V1829A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 23.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.871791", + "updated_at": "2026-06-19T00:43:44.871791" +} diff --git a/site/public/v1/smartphones/vivo-x27-premium-edition-dual-sim-td-lte-cn-256gb-v1829a/score/index.json b/site/public/v1/smartphones/vivo-x27-premium-edition-dual-sim-td-lte-cn-256gb-v1829a/score/index.json new file mode 100644 index 00000000000..a0577b4e5f6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x27-premium-edition-dual-sim-td-lte-cn-256gb-v1829a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 23.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x27-premium-edition-dual-sim-td-lte-cn-256gb-v1829t/index.json b/site/public/v1/smartphones/vivo-x27-premium-edition-dual-sim-td-lte-cn-256gb-v1829t/index.json new file mode 100644 index 00000000000..a1c164af3e5 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x27-premium-edition-dual-sim-td-lte-cn-256gb-v1829t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5252, + "slug": "vivo-x27-premium-edition-dual-sim-td-lte-cn-256gb-v1829t", + "name": "Vivo X27 Premium Edition Dual SIM TD-LTE CN 256GB V1829T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 188.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 23.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.871791", + "updated_at": "2026-06-19T00:43:44.871791" +} diff --git a/site/public/v1/smartphones/vivo-x27-premium-edition-dual-sim-td-lte-cn-256gb-v1829t/score/index.json b/site/public/v1/smartphones/vivo-x27-premium-edition-dual-sim-td-lte-cn-256gb-v1829t/score/index.json new file mode 100644 index 00000000000..a0577b4e5f6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x27-premium-edition-dual-sim-td-lte-cn-256gb-v1829t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 23.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x27-pro-dual-sim-td-lte-cn-256gb-v1836a/index.json b/site/public/v1/smartphones/vivo-x27-pro-dual-sim-td-lte-cn-256gb-v1836a/index.json new file mode 100644 index 00000000000..68d3ae5c3be --- /dev/null +++ b/site/public/v1/smartphones/vivo-x27-pro-dual-sim-td-lte-cn-256gb-v1836a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5253, + "slug": "vivo-x27-pro-dual-sim-td-lte-cn-256gb-v1836a", + "name": "Vivo X27 Pro Dual SIM TD-LTE CN 256GB V1836A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-04-18", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 23.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.871791", + "updated_at": "2026-06-19T00:43:44.871791" +} diff --git a/site/public/v1/smartphones/vivo-x27-pro-dual-sim-td-lte-cn-256gb-v1836a/score/index.json b/site/public/v1/smartphones/vivo-x27-pro-dual-sim-td-lte-cn-256gb-v1836a/score/index.json new file mode 100644 index 00000000000..6946f6844dd --- /dev/null +++ b/site/public/v1/smartphones/vivo-x27-pro-dual-sim-td-lte-cn-256gb-v1836a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 23.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x27-pro-dual-sim-td-lte-cn-256gb-v1836t/index.json b/site/public/v1/smartphones/vivo-x27-pro-dual-sim-td-lte-cn-256gb-v1836t/index.json new file mode 100644 index 00000000000..716645db926 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x27-pro-dual-sim-td-lte-cn-256gb-v1836t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5254, + "slug": "vivo-x27-pro-dual-sim-td-lte-cn-256gb-v1836t", + "name": "Vivo X27 Pro Dual SIM TD-LTE CN 256GB V1836T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-04-18", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.69, + "resolution": "1080x2460", + "type": "AM-OLED display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 208.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 23.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.871791", + "updated_at": "2026-06-19T00:43:44.871791" +} diff --git a/site/public/v1/smartphones/vivo-x27-pro-dual-sim-td-lte-cn-256gb-v1836t/score/index.json b/site/public/v1/smartphones/vivo-x27-pro-dual-sim-td-lte-cn-256gb-v1836t/score/index.json new file mode 100644 index 00000000000..6946f6844dd --- /dev/null +++ b/site/public/v1/smartphones/vivo-x27-pro-dual-sim-td-lte-cn-256gb-v1836t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 23.0, + "camera": 16.5, + "battery": 15.6, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x27-standard-edition-dual-sim-td-lte-cn-128gb-v1838a/index.json b/site/public/v1/smartphones/vivo-x27-standard-edition-dual-sim-td-lte-cn-128gb-v1838a/index.json new file mode 100644 index 00000000000..022c7793b06 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x27-standard-edition-dual-sim-td-lte-cn-128gb-v1838a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5255, + "slug": "vivo-x27-standard-edition-dual-sim-td-lte-cn-128gb-v1838a", + "name": "Vivo X27 Standard Edition Dual SIM TD-LTE CN 128GB V1838A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 188.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 3.0, + "camera": 16.5, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.871791", + "updated_at": "2026-06-19T00:43:44.871791" +} diff --git a/site/public/v1/smartphones/vivo-x27-standard-edition-dual-sim-td-lte-cn-128gb-v1838a/score/index.json b/site/public/v1/smartphones/vivo-x27-standard-edition-dual-sim-td-lte-cn-128gb-v1838a/score/index.json new file mode 100644 index 00000000000..e8332915197 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x27-standard-edition-dual-sim-td-lte-cn-128gb-v1838a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 3.0, + "camera": 16.5, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x27-standard-edition-dual-sim-td-lte-cn-128gb-v1838t/index.json b/site/public/v1/smartphones/vivo-x27-standard-edition-dual-sim-td-lte-cn-128gb-v1838t/index.json new file mode 100644 index 00000000000..1a7ef60a72d --- /dev/null +++ b/site/public/v1/smartphones/vivo-x27-standard-edition-dual-sim-td-lte-cn-128gb-v1838t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5256, + "slug": "vivo-x27-standard-edition-dual-sim-td-lte-cn-128gb-v1838t", + "name": "Vivo X27 Standard Edition Dual SIM TD-LTE CN 128GB V1838T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 128, + "slug": "snapdragon-675", + "name": "Snapdragon 675", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 612", + "url": "/v1/socs/snapdragon-675" + }, + "release_date": "2019-03-31", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 188.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 3.0, + "camera": 16.5, + "battery": 15.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.871791", + "updated_at": "2026-06-19T00:43:44.871791" +} diff --git a/site/public/v1/smartphones/vivo-x27-standard-edition-dual-sim-td-lte-cn-128gb-v1838t/score/index.json b/site/public/v1/smartphones/vivo-x27-standard-edition-dual-sim-td-lte-cn-128gb-v1838t/score/index.json new file mode 100644 index 00000000000..e8332915197 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x27-standard-edition-dual-sim-td-lte-cn-128gb-v1838t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 3.0, + "camera": 16.5, + "battery": 15.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x30-5g-dual-sim-td-lte-cn-128gb-v1938ca/index.json b/site/public/v1/smartphones/vivo-x30-5g-dual-sim-td-lte-cn-128gb-v1938ca/index.json new file mode 100644 index 00000000000..581444ea684 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x30-5g-dual-sim-td-lte-cn-128gb-v1938ca/index.json @@ -0,0 +1,76 @@ +{ + "id": 5257, + "slug": "vivo-x30-5g-dual-sim-td-lte-cn-128gb-v1938ca", + "name": "Vivo X30 5G Dual SIM TD-LTE CN 128GB V1938CA", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 193, + "slug": "exynos-980", + "name": "Exynos 980", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali G76 MP5", + "url": "/v1/socs/exynos-980" + }, + "release_date": "2019-12-24", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4350, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 196.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 3.0, + "camera": 21.5, + "battery": 23.7, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.871791", + "updated_at": "2026-06-19T00:43:44.871791" +} diff --git a/site/public/v1/smartphones/vivo-x30-5g-dual-sim-td-lte-cn-128gb-v1938ca/score/index.json b/site/public/v1/smartphones/vivo-x30-5g-dual-sim-td-lte-cn-128gb-v1938ca/score/index.json new file mode 100644 index 00000000000..2c76a3362cb --- /dev/null +++ b/site/public/v1/smartphones/vivo-x30-5g-dual-sim-td-lte-cn-128gb-v1938ca/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 3.0, + "camera": 21.5, + "battery": 23.7, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x30-5g-dual-sim-td-lte-cn-128gb-v1938ct/index.json b/site/public/v1/smartphones/vivo-x30-5g-dual-sim-td-lte-cn-128gb-v1938ct/index.json new file mode 100644 index 00000000000..72475ae9dd2 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x30-5g-dual-sim-td-lte-cn-128gb-v1938ct/index.json @@ -0,0 +1,76 @@ +{ + "id": 5258, + "slug": "vivo-x30-5g-dual-sim-td-lte-cn-128gb-v1938ct", + "name": "Vivo X30 5G Dual SIM TD-LTE CN 128GB V1938CT", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 193, + "slug": "exynos-980", + "name": "Exynos 980", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali G76 MP5", + "url": "/v1/socs/exynos-980" + }, + "release_date": "2019-12-24", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4350, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 196.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 3.0, + "camera": 21.5, + "battery": 23.7, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.871791", + "updated_at": "2026-06-19T00:43:44.871791" +} diff --git a/site/public/v1/smartphones/vivo-x30-5g-dual-sim-td-lte-cn-128gb-v1938ct/score/index.json b/site/public/v1/smartphones/vivo-x30-5g-dual-sim-td-lte-cn-128gb-v1938ct/score/index.json new file mode 100644 index 00000000000..2c76a3362cb --- /dev/null +++ b/site/public/v1/smartphones/vivo-x30-5g-dual-sim-td-lte-cn-128gb-v1938ct/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 3.0, + "camera": 21.5, + "battery": 23.7, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x30-5g-dual-sim-td-lte-cn-256gb-v1938ca/index.json b/site/public/v1/smartphones/vivo-x30-5g-dual-sim-td-lte-cn-256gb-v1938ca/index.json new file mode 100644 index 00000000000..03759d2abc6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x30-5g-dual-sim-td-lte-cn-256gb-v1938ca/index.json @@ -0,0 +1,76 @@ +{ + "id": 5259, + "slug": "vivo-x30-5g-dual-sim-td-lte-cn-256gb-v1938ca", + "name": "Vivo X30 5G Dual SIM TD-LTE CN 256GB V1938CA", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 193, + "slug": "exynos-980", + "name": "Exynos 980", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali G76 MP5", + "url": "/v1/socs/exynos-980" + }, + "release_date": "2019-12-24", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4350, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 196.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 3.0, + "camera": 21.5, + "battery": 23.7, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.871791", + "updated_at": "2026-06-19T00:43:44.871791" +} diff --git a/site/public/v1/smartphones/vivo-x30-5g-dual-sim-td-lte-cn-256gb-v1938ca/score/index.json b/site/public/v1/smartphones/vivo-x30-5g-dual-sim-td-lte-cn-256gb-v1938ca/score/index.json new file mode 100644 index 00000000000..2c76a3362cb --- /dev/null +++ b/site/public/v1/smartphones/vivo-x30-5g-dual-sim-td-lte-cn-256gb-v1938ca/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 3.0, + "camera": 21.5, + "battery": 23.7, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x30-5g-dual-sim-td-lte-cn-256gb-v1938ct/index.json b/site/public/v1/smartphones/vivo-x30-5g-dual-sim-td-lte-cn-256gb-v1938ct/index.json new file mode 100644 index 00000000000..7dbf6743aa2 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x30-5g-dual-sim-td-lte-cn-256gb-v1938ct/index.json @@ -0,0 +1,76 @@ +{ + "id": 5260, + "slug": "vivo-x30-5g-dual-sim-td-lte-cn-256gb-v1938ct", + "name": "Vivo X30 5G Dual SIM TD-LTE CN 256GB V1938CT", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 193, + "slug": "exynos-980", + "name": "Exynos 980", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali G76 MP5", + "url": "/v1/socs/exynos-980" + }, + "release_date": "2019-12-24", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4350, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 196.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 3.0, + "camera": 21.5, + "battery": 23.7, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.872791", + "updated_at": "2026-06-19T00:43:44.872791" +} diff --git a/site/public/v1/smartphones/vivo-x30-5g-dual-sim-td-lte-cn-256gb-v1938ct/score/index.json b/site/public/v1/smartphones/vivo-x30-5g-dual-sim-td-lte-cn-256gb-v1938ct/score/index.json new file mode 100644 index 00000000000..2c76a3362cb --- /dev/null +++ b/site/public/v1/smartphones/vivo-x30-5g-dual-sim-td-lte-cn-256gb-v1938ct/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 3.0, + "camera": 21.5, + "battery": 23.7, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x30-pro-5g-dual-sim-td-lte-cn-128gb-v1938a/index.json b/site/public/v1/smartphones/vivo-x30-pro-5g-dual-sim-td-lte-cn-128gb-v1938a/index.json new file mode 100644 index 00000000000..653f146b08d --- /dev/null +++ b/site/public/v1/smartphones/vivo-x30-pro-5g-dual-sim-td-lte-cn-128gb-v1938a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5261, + "slug": "vivo-x30-pro-5g-dual-sim-td-lte-cn-128gb-v1938a", + "name": "Vivo X30 Pro 5G Dual SIM TD-LTE CN 128GB V1938A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 193, + "slug": "exynos-980", + "name": "Exynos 980", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali G76 MP5", + "url": "/v1/socs/exynos-980" + }, + "release_date": "2019-12-24", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4350, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 198.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 3.0, + "camera": 21.5, + "battery": 23.7, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.872791", + "updated_at": "2026-06-19T00:43:44.872791" +} diff --git a/site/public/v1/smartphones/vivo-x30-pro-5g-dual-sim-td-lte-cn-128gb-v1938a/score/index.json b/site/public/v1/smartphones/vivo-x30-pro-5g-dual-sim-td-lte-cn-128gb-v1938a/score/index.json new file mode 100644 index 00000000000..2c76a3362cb --- /dev/null +++ b/site/public/v1/smartphones/vivo-x30-pro-5g-dual-sim-td-lte-cn-128gb-v1938a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 3.0, + "camera": 21.5, + "battery": 23.7, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x30-pro-5g-dual-sim-td-lte-cn-128gb-v1938t/index.json b/site/public/v1/smartphones/vivo-x30-pro-5g-dual-sim-td-lte-cn-128gb-v1938t/index.json new file mode 100644 index 00000000000..97fe70cee52 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x30-pro-5g-dual-sim-td-lte-cn-128gb-v1938t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5262, + "slug": "vivo-x30-pro-5g-dual-sim-td-lte-cn-128gb-v1938t", + "name": "Vivo X30 Pro 5G Dual SIM TD-LTE CN 128GB V1938T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 193, + "slug": "exynos-980", + "name": "Exynos 980", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali G76 MP5", + "url": "/v1/socs/exynos-980" + }, + "release_date": "2019-12-24", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4350, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 198.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 3.0, + "camera": 21.5, + "battery": 23.7, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.872791", + "updated_at": "2026-06-19T00:43:44.872791" +} diff --git a/site/public/v1/smartphones/vivo-x30-pro-5g-dual-sim-td-lte-cn-128gb-v1938t/score/index.json b/site/public/v1/smartphones/vivo-x30-pro-5g-dual-sim-td-lte-cn-128gb-v1938t/score/index.json new file mode 100644 index 00000000000..2c76a3362cb --- /dev/null +++ b/site/public/v1/smartphones/vivo-x30-pro-5g-dual-sim-td-lte-cn-128gb-v1938t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 3.0, + "camera": 21.5, + "battery": 23.7, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x30-pro-5g-dual-sim-td-lte-cn-256gb-v1938a/index.json b/site/public/v1/smartphones/vivo-x30-pro-5g-dual-sim-td-lte-cn-256gb-v1938a/index.json new file mode 100644 index 00000000000..51dcd359a94 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x30-pro-5g-dual-sim-td-lte-cn-256gb-v1938a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5263, + "slug": "vivo-x30-pro-5g-dual-sim-td-lte-cn-256gb-v1938a", + "name": "Vivo X30 Pro 5G Dual SIM TD-LTE CN 256GB V1938A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 193, + "slug": "exynos-980", + "name": "Exynos 980", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali G76 MP5", + "url": "/v1/socs/exynos-980" + }, + "release_date": "2019-12-24", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4350, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 198.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 3.0, + "camera": 21.5, + "battery": 23.7, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.872791", + "updated_at": "2026-06-19T00:43:44.872791" +} diff --git a/site/public/v1/smartphones/vivo-x30-pro-5g-dual-sim-td-lte-cn-256gb-v1938a/score/index.json b/site/public/v1/smartphones/vivo-x30-pro-5g-dual-sim-td-lte-cn-256gb-v1938a/score/index.json new file mode 100644 index 00000000000..2c76a3362cb --- /dev/null +++ b/site/public/v1/smartphones/vivo-x30-pro-5g-dual-sim-td-lte-cn-256gb-v1938a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 3.0, + "camera": 21.5, + "battery": 23.7, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x30-pro-5g-dual-sim-td-lte-cn-256gb-v1938t/index.json b/site/public/v1/smartphones/vivo-x30-pro-5g-dual-sim-td-lte-cn-256gb-v1938t/index.json new file mode 100644 index 00000000000..7219f02a151 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x30-pro-5g-dual-sim-td-lte-cn-256gb-v1938t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5264, + "slug": "vivo-x30-pro-5g-dual-sim-td-lte-cn-256gb-v1938t", + "name": "Vivo X30 Pro 5G Dual SIM TD-LTE CN 256GB V1938T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 193, + "slug": "exynos-980", + "name": "Exynos 980", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali G76 MP5", + "url": "/v1/socs/exynos-980" + }, + "release_date": "2019-12-24", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4350, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 198.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 3.0, + "camera": 21.5, + "battery": 23.7, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.872791", + "updated_at": "2026-06-19T00:43:44.872791" +} diff --git a/site/public/v1/smartphones/vivo-x30-pro-5g-dual-sim-td-lte-cn-256gb-v1938t/score/index.json b/site/public/v1/smartphones/vivo-x30-pro-5g-dual-sim-td-lte-cn-256gb-v1938t/score/index.json new file mode 100644 index 00000000000..2c76a3362cb --- /dev/null +++ b/site/public/v1/smartphones/vivo-x30-pro-5g-dual-sim-td-lte-cn-256gb-v1938t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 3.0, + "camera": 21.5, + "battery": 23.7, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x50-4g-dual-sim-td-lte-v1-in-128gb-2004/index.json b/site/public/v1/smartphones/vivo-x50-4g-dual-sim-td-lte-v1-in-128gb-2004/index.json new file mode 100644 index 00000000000..6c007abf079 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x50-4g-dual-sim-td-lte-v1-in-128gb-2004/index.json @@ -0,0 +1,77 @@ +{ + "id": 5379, + "slug": "vivo-x50-4g-dual-sim-td-lte-v1-in-128gb-2004", + "name": "Vivo X50 4G Dual SIM TD-LTE V1 IN 128GB 2004", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2020-07-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 171.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 3.0, + "camera": 16.5, + "battery": 21.4, + "display": 39.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.886312", + "updated_at": "2026-06-19T00:43:44.886312" +} diff --git a/site/public/v1/smartphones/vivo-x50-4g-dual-sim-td-lte-v1-in-128gb-2004/score/index.json b/site/public/v1/smartphones/vivo-x50-4g-dual-sim-td-lte-v1-in-128gb-2004/score/index.json new file mode 100644 index 00000000000..373a9545be6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x50-4g-dual-sim-td-lte-v1-in-128gb-2004/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 3.0, + "camera": 16.5, + "battery": 21.4, + "display": 39.8, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x50-4g-dual-sim-td-lte-v1-in-256gb-2004/index.json b/site/public/v1/smartphones/vivo-x50-4g-dual-sim-td-lte-v1-in-256gb-2004/index.json new file mode 100644 index 00000000000..7ebf237da33 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x50-4g-dual-sim-td-lte-v1-in-256gb-2004/index.json @@ -0,0 +1,77 @@ +{ + "id": 5380, + "slug": "vivo-x50-4g-dual-sim-td-lte-v1-in-256gb-2004", + "name": "Vivo X50 4G Dual SIM TD-LTE V1 IN 256GB 2004", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2020-07-17", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 171.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 3.0, + "camera": 16.5, + "battery": 21.4, + "display": 39.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.887312", + "updated_at": "2026-06-19T00:43:44.887312" +} diff --git a/site/public/v1/smartphones/vivo-x50-4g-dual-sim-td-lte-v1-in-256gb-2004/score/index.json b/site/public/v1/smartphones/vivo-x50-4g-dual-sim-td-lte-v1-in-256gb-2004/score/index.json new file mode 100644 index 00000000000..373a9545be6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x50-4g-dual-sim-td-lte-v1-in-256gb-2004/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 3.0, + "camera": 16.5, + "battery": 21.4, + "display": 39.8, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x50-4g-dual-sim-td-lte-v2-id-128gb-2004/index.json b/site/public/v1/smartphones/vivo-x50-4g-dual-sim-td-lte-v2-id-128gb-2004/index.json new file mode 100644 index 00000000000..8c80ae58695 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x50-4g-dual-sim-td-lte-v2-id-128gb-2004/index.json @@ -0,0 +1,77 @@ +{ + "id": 5381, + "slug": "vivo-x50-4g-dual-sim-td-lte-v2-id-128gb-2004", + "name": "Vivo X50 4G Dual SIM TD-LTE V2 ID 128GB 2004", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2020-07-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 3.0, + "camera": 16.5, + "battery": 21.4, + "display": 39.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.887312", + "updated_at": "2026-06-19T00:43:44.887312" +} diff --git a/site/public/v1/smartphones/vivo-x50-4g-dual-sim-td-lte-v2-id-128gb-2004/score/index.json b/site/public/v1/smartphones/vivo-x50-4g-dual-sim-td-lte-v2-id-128gb-2004/score/index.json new file mode 100644 index 00000000000..373a9545be6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x50-4g-dual-sim-td-lte-v2-id-128gb-2004/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 3.0, + "camera": 16.5, + "battery": 21.4, + "display": 39.8, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x50-4g-dual-sim-td-lte-v3-ru-128gb-2004/index.json b/site/public/v1/smartphones/vivo-x50-4g-dual-sim-td-lte-v3-ru-128gb-2004/index.json new file mode 100644 index 00000000000..63da4d85109 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x50-4g-dual-sim-td-lte-v3-ru-128gb-2004/index.json @@ -0,0 +1,77 @@ +{ + "id": 5382, + "slug": "vivo-x50-4g-dual-sim-td-lte-v3-ru-128gb-2004", + "name": "Vivo X50 4G Dual SIM TD-LTE V3 RU 128GB 2004", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2020-07-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 171.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 3.0, + "camera": 16.5, + "battery": 21.4, + "display": 39.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.887312", + "updated_at": "2026-06-19T00:43:44.887312" +} diff --git a/site/public/v1/smartphones/vivo-x50-4g-dual-sim-td-lte-v3-ru-128gb-2004/score/index.json b/site/public/v1/smartphones/vivo-x50-4g-dual-sim-td-lte-v3-ru-128gb-2004/score/index.json new file mode 100644 index 00000000000..373a9545be6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x50-4g-dual-sim-td-lte-v3-ru-128gb-2004/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 3.0, + "camera": 16.5, + "battery": 21.4, + "display": 39.8, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x50-4g-dual-sim-td-lte-v3-vn-kh-128gb-2004/index.json b/site/public/v1/smartphones/vivo-x50-4g-dual-sim-td-lte-v3-vn-kh-128gb-2004/index.json new file mode 100644 index 00000000000..315526faf6c --- /dev/null +++ b/site/public/v1/smartphones/vivo-x50-4g-dual-sim-td-lte-v3-vn-kh-128gb-2004/index.json @@ -0,0 +1,77 @@ +{ + "id": 5383, + "slug": "vivo-x50-4g-dual-sim-td-lte-v3-vn-kh-128gb-2004", + "name": "Vivo X50 4G Dual SIM TD-LTE V3 VN KH 128GB 2004", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2020-07-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 171.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 3.0, + "camera": 16.5, + "battery": 21.4, + "display": 39.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.887312", + "updated_at": "2026-06-19T00:43:44.887312" +} diff --git a/site/public/v1/smartphones/vivo-x50-4g-dual-sim-td-lte-v3-vn-kh-128gb-2004/score/index.json b/site/public/v1/smartphones/vivo-x50-4g-dual-sim-td-lte-v3-vn-kh-128gb-2004/score/index.json new file mode 100644 index 00000000000..373a9545be6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x50-4g-dual-sim-td-lte-v3-vn-kh-128gb-2004/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 3.0, + "camera": 16.5, + "battery": 21.4, + "display": 39.8, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x50-5g-dual-sim-td-lte-cn-128gb-v2001a/index.json b/site/public/v1/smartphones/vivo-x50-5g-dual-sim-td-lte-cn-128gb-v2001a/index.json new file mode 100644 index 00000000000..829e81a16c2 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x50-5g-dual-sim-td-lte-cn-128gb-v2001a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5384, + "slug": "vivo-x50-5g-dual-sim-td-lte-cn-128gb-v2001a", + "name": "Vivo X50 5G Dual SIM TD-LTE CN 128GB V2001A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 3.0, + "camera": 16.5, + "battery": 21.4, + "display": 39.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.887312", + "updated_at": "2026-06-19T00:43:44.887312" +} diff --git a/site/public/v1/smartphones/vivo-x50-5g-dual-sim-td-lte-cn-128gb-v2001a/score/index.json b/site/public/v1/smartphones/vivo-x50-5g-dual-sim-td-lte-cn-128gb-v2001a/score/index.json new file mode 100644 index 00000000000..373a9545be6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x50-5g-dual-sim-td-lte-cn-128gb-v2001a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 3.0, + "camera": 16.5, + "battery": 21.4, + "display": 39.8, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x50-5g-dual-sim-td-lte-cn-256gb-v2001a/index.json b/site/public/v1/smartphones/vivo-x50-5g-dual-sim-td-lte-cn-256gb-v2001a/index.json new file mode 100644 index 00000000000..3c85bfaa919 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x50-5g-dual-sim-td-lte-cn-256gb-v2001a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5385, + "slug": "vivo-x50-5g-dual-sim-td-lte-cn-256gb-v2001a", + "name": "Vivo X50 5G Dual SIM TD-LTE CN 256GB V2001A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 3.0, + "camera": 16.5, + "battery": 21.4, + "display": 39.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.887312", + "updated_at": "2026-06-19T00:43:44.887312" +} diff --git a/site/public/v1/smartphones/vivo-x50-5g-dual-sim-td-lte-cn-256gb-v2001a/score/index.json b/site/public/v1/smartphones/vivo-x50-5g-dual-sim-td-lte-cn-256gb-v2001a/score/index.json new file mode 100644 index 00000000000..373a9545be6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x50-5g-dual-sim-td-lte-cn-256gb-v2001a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 3.0, + "camera": 16.5, + "battery": 21.4, + "display": 39.8, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x50-5g-dual-sim-td-lte-my-hk-128gb-v2001a/index.json b/site/public/v1/smartphones/vivo-x50-5g-dual-sim-td-lte-my-hk-128gb-v2001a/index.json new file mode 100644 index 00000000000..1a895ad58cb --- /dev/null +++ b/site/public/v1/smartphones/vivo-x50-5g-dual-sim-td-lte-my-hk-128gb-v2001a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5386, + "slug": "vivo-x50-5g-dual-sim-td-lte-my-hk-128gb-v2001a", + "name": "Vivo X50 5G Dual SIM TD-LTE MY HK 128GB V2001A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 174.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 3.0, + "camera": 16.5, + "battery": 21.4, + "display": 39.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.887312", + "updated_at": "2026-06-19T00:43:44.887312" +} diff --git a/site/public/v1/smartphones/vivo-x50-5g-dual-sim-td-lte-my-hk-128gb-v2001a/score/index.json b/site/public/v1/smartphones/vivo-x50-5g-dual-sim-td-lte-my-hk-128gb-v2001a/score/index.json new file mode 100644 index 00000000000..373a9545be6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x50-5g-dual-sim-td-lte-my-hk-128gb-v2001a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.2, + "performance": 3.0, + "camera": 16.5, + "battery": 21.4, + "display": 39.8, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x50-lite-dual-sim-td-lte-au-128gb-v1937/index.json b/site/public/v1/smartphones/vivo-x50-lite-dual-sim-td-lte-au-128gb-v1937/index.json new file mode 100644 index 00000000000..16cfc66dc56 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x50-lite-dual-sim-td-lte-au-128gb-v1937/index.json @@ -0,0 +1,76 @@ +{ + "id": 5387, + "slug": "vivo-x50-lite-dual-sim-td-lte-au-128gb-v1937", + "name": "Vivo X50 Lite Dual SIM TD-LTE AU 128GB V1937", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-05-14", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.2, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.887312", + "updated_at": "2026-06-19T00:43:44.887312" +} diff --git a/site/public/v1/smartphones/vivo-x50-lite-dual-sim-td-lte-au-128gb-v1937/score/index.json b/site/public/v1/smartphones/vivo-x50-lite-dual-sim-td-lte-au-128gb-v1937/score/index.json new file mode 100644 index 00000000000..40b4ea4e54e --- /dev/null +++ b/site/public/v1/smartphones/vivo-x50-lite-dual-sim-td-lte-au-128gb-v1937/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x50-pro-5g-dual-sim-td-lte-au-256gb-2006/index.json b/site/public/v1/smartphones/vivo-x50-pro-5g-dual-sim-td-lte-au-256gb-2006/index.json new file mode 100644 index 00000000000..5429852e037 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x50-pro-5g-dual-sim-td-lte-au-256gb-2006/index.json @@ -0,0 +1,77 @@ +{ + "id": 5388, + "slug": "vivo-x50-pro-5g-dual-sim-td-lte-au-256gb-2006", + "name": "Vivo X50 Pro 5G Dual SIM TD-LTE AU 256GB 2006", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-08-01", + "msrp_usd": 999, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4315, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 181.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 39.8, + "value": 33.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.887312", + "updated_at": "2026-06-19T00:43:44.887312" +} diff --git a/site/public/v1/smartphones/vivo-x50-pro-5g-dual-sim-td-lte-au-256gb-2006/score/index.json b/site/public/v1/smartphones/vivo-x50-pro-5g-dual-sim-td-lte-au-256gb-2006/score/index.json new file mode 100644 index 00000000000..af97e003d95 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x50-pro-5g-dual-sim-td-lte-au-256gb-2006/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 39.8, + "value": 33.4 +} diff --git a/site/public/v1/smartphones/vivo-x50-pro-5g-dual-sim-td-lte-cn-128gb-v2005a/index.json b/site/public/v1/smartphones/vivo-x50-pro-5g-dual-sim-td-lte-cn-128gb-v2005a/index.json new file mode 100644 index 00000000000..b33aa62904d --- /dev/null +++ b/site/public/v1/smartphones/vivo-x50-pro-5g-dual-sim-td-lte-cn-128gb-v2005a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5389, + "slug": "vivo-x50-pro-5g-dual-sim-td-lte-cn-128gb-v2005a", + "name": "Vivo X50 Pro 5G Dual SIM TD-LTE CN 128GB V2005A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-06-12", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4315, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 181.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 39.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.888314", + "updated_at": "2026-06-19T00:43:44.888314" +} diff --git a/site/public/v1/smartphones/vivo-x50-pro-5g-dual-sim-td-lte-cn-128gb-v2005a/score/index.json b/site/public/v1/smartphones/vivo-x50-pro-5g-dual-sim-td-lte-cn-128gb-v2005a/score/index.json new file mode 100644 index 00000000000..744e2fdf854 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x50-pro-5g-dual-sim-td-lte-cn-128gb-v2005a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 39.8, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x50-pro-5g-dual-sim-td-lte-cn-256gb-v2005a/index.json b/site/public/v1/smartphones/vivo-x50-pro-5g-dual-sim-td-lte-cn-256gb-v2005a/index.json new file mode 100644 index 00000000000..f938dc192f6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x50-pro-5g-dual-sim-td-lte-cn-256gb-v2005a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5390, + "slug": "vivo-x50-pro-5g-dual-sim-td-lte-cn-256gb-v2005a", + "name": "Vivo X50 Pro 5G Dual SIM TD-LTE CN 256GB V2005A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-06-12", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4315, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 181.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 39.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.888314", + "updated_at": "2026-06-19T00:43:44.888314" +} diff --git a/site/public/v1/smartphones/vivo-x50-pro-5g-dual-sim-td-lte-cn-256gb-v2005a/score/index.json b/site/public/v1/smartphones/vivo-x50-pro-5g-dual-sim-td-lte-cn-256gb-v2005a/score/index.json new file mode 100644 index 00000000000..744e2fdf854 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x50-pro-5g-dual-sim-td-lte-cn-256gb-v2005a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 39.8, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x50-pro-5g-global-dual-sim-td-lte-256gb-2006/index.json b/site/public/v1/smartphones/vivo-x50-pro-5g-global-dual-sim-td-lte-256gb-2006/index.json new file mode 100644 index 00000000000..12666fd926e --- /dev/null +++ b/site/public/v1/smartphones/vivo-x50-pro-5g-global-dual-sim-td-lte-256gb-2006/index.json @@ -0,0 +1,77 @@ +{ + "id": 5391, + "slug": "vivo-x50-pro-5g-global-dual-sim-td-lte-256gb-2006", + "name": "Vivo X50 Pro 5G Global Dual SIM TD-LTE 256GB 2006", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-06-12", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4315, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 181.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 39.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.888314", + "updated_at": "2026-06-19T00:43:44.888314" +} diff --git a/site/public/v1/smartphones/vivo-x50-pro-5g-global-dual-sim-td-lte-256gb-2006/score/index.json b/site/public/v1/smartphones/vivo-x50-pro-5g-global-dual-sim-td-lte-256gb-2006/score/index.json new file mode 100644 index 00000000000..744e2fdf854 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x50-pro-5g-global-dual-sim-td-lte-256gb-2006/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 39.8, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x50-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2011a/index.json b/site/public/v1/smartphones/vivo-x50-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2011a/index.json new file mode 100644 index 00000000000..c908fd1e3ed --- /dev/null +++ b/site/public/v1/smartphones/vivo-x50-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2011a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5392, + "slug": "vivo-x50-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2011a", + "name": "Vivo X50 Pro+ 5G Premium Edition Dual SIM TD-LTE CN 256GB V2011A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-07-11", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4350, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 191.1, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.3, + "performance": 6.0, + "camera": 17.2, + "battery": 25.8, + "display": 52.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.888314", + "updated_at": "2026-06-19T00:43:44.888314" +} diff --git a/site/public/v1/smartphones/vivo-x50-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2011a/score/index.json b/site/public/v1/smartphones/vivo-x50-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2011a/score/index.json new file mode 100644 index 00000000000..46dad7485ca --- /dev/null +++ b/site/public/v1/smartphones/vivo-x50-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2011a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.3, + "performance": 6.0, + "camera": 17.2, + "battery": 25.8, + "display": 52.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2011a/index.json b/site/public/v1/smartphones/vivo-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2011a/index.json new file mode 100644 index 00000000000..c9d530ef867 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2011a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5393, + "slug": "vivo-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2011a", + "name": "Vivo X50 Pro+ 5G Standard Edition Dual SIM TD-LTE CN 128GB V2011A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-07-11", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4350, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 192.2, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 3.0, + "camera": 17.2, + "battery": 25.8, + "display": 52.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.889314", + "updated_at": "2026-06-19T00:43:44.889314" +} diff --git a/site/public/v1/smartphones/vivo-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2011a/score/index.json b/site/public/v1/smartphones/vivo-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2011a/score/index.json new file mode 100644 index 00000000000..049dd589202 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2011a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 3.0, + "camera": 17.2, + "battery": 25.8, + "display": 52.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2011a/index.json b/site/public/v1/smartphones/vivo-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2011a/index.json new file mode 100644 index 00000000000..f67fce5f450 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2011a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5394, + "slug": "vivo-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2011a", + "name": "Vivo X50 Pro+ 5G Standard Edition Dual SIM TD-LTE CN 256GB V2011A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-07-11", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4350, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 192.2, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 3.0, + "camera": 17.2, + "battery": 25.8, + "display": 52.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.889314", + "updated_at": "2026-06-19T00:43:44.889314" +} diff --git a/site/public/v1/smartphones/vivo-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2011a/score/index.json b/site/public/v1/smartphones/vivo-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2011a/score/index.json new file mode 100644 index 00000000000..049dd589202 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x50-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2011a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 3.0, + "camera": 17.2, + "battery": 25.8, + "display": 52.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x51-5g-global-dual-sim-td-lte-256gb/index.json b/site/public/v1/smartphones/vivo-x51-5g-global-dual-sim-td-lte-256gb/index.json new file mode 100644 index 00000000000..d4a9f83a8c7 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x51-5g-global-dual-sim-td-lte-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 5395, + "slug": "vivo-x51-5g-global-dual-sim-td-lte-256gb", + "name": "Vivo X51 5G Global Dual SIM TD-LTE 256GB", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-11-01", + "msrp_usd": 799, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4315, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 181.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 39.8, + "value": 41.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.889314", + "updated_at": "2026-06-19T00:43:44.889314" +} diff --git a/site/public/v1/smartphones/vivo-x51-5g-global-dual-sim-td-lte-256gb/score/index.json b/site/public/v1/smartphones/vivo-x51-5g-global-dual-sim-td-lte-256gb/score/index.json new file mode 100644 index 00000000000..d6620c7d56c --- /dev/null +++ b/site/public/v1/smartphones/vivo-x51-5g-global-dual-sim-td-lte-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.6, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 39.8, + "value": 41.1 +} diff --git a/site/public/v1/smartphones/vivo-x60-5g-premium-edition-dual-sim-td-lte-apac-v3-256gb-v2045/index.json b/site/public/v1/smartphones/vivo-x60-5g-premium-edition-dual-sim-td-lte-apac-v3-256gb-v2045/index.json new file mode 100644 index 00000000000..58fd5380abf --- /dev/null +++ b/site/public/v1/smartphones/vivo-x60-5g-premium-edition-dual-sim-td-lte-apac-v3-256gb-v2045/index.json @@ -0,0 +1,77 @@ +{ + "id": 5475, + "slug": "vivo-x60-5g-premium-edition-dual-sim-td-lte-apac-v3-256gb-v2045", + "name": "Vivo X60 5G Premium Edition Dual SIM TD-LTE APAC V3 256GB V2045", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-03-01", + "msrp_usd": 2699, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 9.1, + "camera": 16.5, + "battery": 22.9, + "display": 52.3, + "value": 12.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.899308", + "updated_at": "2026-06-19T00:43:44.899308" +} diff --git a/site/public/v1/smartphones/vivo-x60-5g-premium-edition-dual-sim-td-lte-apac-v3-256gb-v2045/score/index.json b/site/public/v1/smartphones/vivo-x60-5g-premium-edition-dual-sim-td-lte-apac-v3-256gb-v2045/score/index.json new file mode 100644 index 00000000000..84f89bb58f8 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x60-5g-premium-edition-dual-sim-td-lte-apac-v3-256gb-v2045/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 9.1, + "camera": 16.5, + "battery": 22.9, + "display": 52.3, + "value": 12.6 +} diff --git a/site/public/v1/smartphones/vivo-x60-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2046a/index.json b/site/public/v1/smartphones/vivo-x60-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2046a/index.json new file mode 100644 index 00000000000..737c4776d3c --- /dev/null +++ b/site/public/v1/smartphones/vivo-x60-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2046a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5476, + "slug": "vivo-x60-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2046a", + "name": "Vivo X60 5G Premium Edition Dual SIM TD-LTE CN 256GB V2046A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 196, + "slug": "exynos-1080", + "name": "Exynos 1080", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP10", + "url": "/v1/socs/exynos-1080" + }, + "release_date": "2021-01-08", + "msrp_usd": 3998, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.9, + "performance": 6.0, + "camera": 16.5, + "battery": 32.9, + "display": 52.3, + "value": 13.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.899308", + "updated_at": "2026-06-19T00:43:44.899308" +} diff --git a/site/public/v1/smartphones/vivo-x60-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2046a/score/index.json b/site/public/v1/smartphones/vivo-x60-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2046a/score/index.json new file mode 100644 index 00000000000..08ab18354b2 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x60-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2046a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.9, + "performance": 6.0, + "camera": 16.5, + "battery": 32.9, + "display": 52.3, + "value": 13.4 +} diff --git a/site/public/v1/smartphones/vivo-x60-5g-premium-edition-dual-sim-td-lte-in-v1-256gb-v2045/index.json b/site/public/v1/smartphones/vivo-x60-5g-premium-edition-dual-sim-td-lte-in-v1-256gb-v2045/index.json new file mode 100644 index 00000000000..5c4687aa87d --- /dev/null +++ b/site/public/v1/smartphones/vivo-x60-5g-premium-edition-dual-sim-td-lte-in-v1-256gb-v2045/index.json @@ -0,0 +1,77 @@ +{ + "id": 5477, + "slug": "vivo-x60-5g-premium-edition-dual-sim-td-lte-in-v1-256gb-v2045", + "name": "Vivo X60 5G Premium Edition Dual SIM TD-LTE IN V1 256GB V2045", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-03-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 9.1, + "camera": 16.5, + "battery": 22.9, + "display": 52.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.899308", + "updated_at": "2026-06-19T00:43:44.899308" +} diff --git a/site/public/v1/smartphones/vivo-x60-5g-premium-edition-dual-sim-td-lte-in-v1-256gb-v2045/score/index.json b/site/public/v1/smartphones/vivo-x60-5g-premium-edition-dual-sim-td-lte-in-v1-256gb-v2045/score/index.json new file mode 100644 index 00000000000..805d36436a1 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x60-5g-premium-edition-dual-sim-td-lte-in-v1-256gb-v2045/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.2, + "performance": 9.1, + "camera": 16.5, + "battery": 22.9, + "display": 52.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x60-5g-standard-edition-dual-sim-td-lte-apac-v3-128gb-v2045/index.json b/site/public/v1/smartphones/vivo-x60-5g-standard-edition-dual-sim-td-lte-apac-v3-128gb-v2045/index.json new file mode 100644 index 00000000000..5a084766828 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x60-5g-standard-edition-dual-sim-td-lte-apac-v3-128gb-v2045/index.json @@ -0,0 +1,77 @@ +{ + "id": 5478, + "slug": "vivo-x60-5g-standard-edition-dual-sim-td-lte-apac-v3-128gb-v2045", + "name": "Vivo X60 5G Standard Edition Dual SIM TD-LTE APAC V3 128GB V2045", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 6.1, + "camera": 16.5, + "battery": 22.9, + "display": 52.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.900307", + "updated_at": "2026-06-19T00:43:44.900307" +} diff --git a/site/public/v1/smartphones/vivo-x60-5g-standard-edition-dual-sim-td-lte-apac-v3-128gb-v2045/score/index.json b/site/public/v1/smartphones/vivo-x60-5g-standard-edition-dual-sim-td-lte-apac-v3-128gb-v2045/score/index.json new file mode 100644 index 00000000000..f5e3d93ba70 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x60-5g-standard-edition-dual-sim-td-lte-apac-v3-128gb-v2045/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 6.1, + "camera": 16.5, + "battery": 22.9, + "display": 52.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x60-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2046a/index.json b/site/public/v1/smartphones/vivo-x60-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2046a/index.json new file mode 100644 index 00000000000..6b556097f2d --- /dev/null +++ b/site/public/v1/smartphones/vivo-x60-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2046a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5479, + "slug": "vivo-x60-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2046a", + "name": "Vivo X60 5G Standard Edition Dual SIM TD-LTE CN 128GB V2046A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 196, + "slug": "exynos-1080", + "name": "Exynos 1080", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP10", + "url": "/v1/socs/exynos-1080" + }, + "release_date": "2021-01-08", + "msrp_usd": 3498, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.2, + "performance": 3.0, + "camera": 16.5, + "battery": 32.9, + "display": 52.3, + "value": 13.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.900307", + "updated_at": "2026-06-19T00:43:44.900307" +} diff --git a/site/public/v1/smartphones/vivo-x60-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2046a/score/index.json b/site/public/v1/smartphones/vivo-x60-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2046a/score/index.json new file mode 100644 index 00000000000..e765d9bba9d --- /dev/null +++ b/site/public/v1/smartphones/vivo-x60-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2046a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.2, + "performance": 3.0, + "camera": 16.5, + "battery": 32.9, + "display": 52.3, + "value": 13.1 +} diff --git a/site/public/v1/smartphones/vivo-x60-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2046a/index.json b/site/public/v1/smartphones/vivo-x60-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2046a/index.json new file mode 100644 index 00000000000..4df52bcb023 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x60-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2046a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5480, + "slug": "vivo-x60-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2046a", + "name": "Vivo X60 5G Standard Edition Dual SIM TD-LTE CN 256GB V2046A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 196, + "slug": "exynos-1080", + "name": "Exynos 1080", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP10", + "url": "/v1/socs/exynos-1080" + }, + "release_date": "2021-01-08", + "msrp_usd": 3798, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.2, + "performance": 3.0, + "camera": 16.5, + "battery": 32.9, + "display": 52.3, + "value": 13.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.900307", + "updated_at": "2026-06-19T00:43:44.900307" +} diff --git a/site/public/v1/smartphones/vivo-x60-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2046a/score/index.json b/site/public/v1/smartphones/vivo-x60-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2046a/score/index.json new file mode 100644 index 00000000000..e765d9bba9d --- /dev/null +++ b/site/public/v1/smartphones/vivo-x60-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2046a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.2, + "performance": 3.0, + "camera": 16.5, + "battery": 32.9, + "display": 52.3, + "value": 13.1 +} diff --git a/site/public/v1/smartphones/vivo-x60-5g-standard-edition-dual-sim-td-lte-id-v2-128gb-v2045/index.json b/site/public/v1/smartphones/vivo-x60-5g-standard-edition-dual-sim-td-lte-id-v2-128gb-v2045/index.json new file mode 100644 index 00000000000..ad49ebdc8cb --- /dev/null +++ b/site/public/v1/smartphones/vivo-x60-5g-standard-edition-dual-sim-td-lte-id-v2-128gb-v2045/index.json @@ -0,0 +1,77 @@ +{ + "id": 5481, + "slug": "vivo-x60-5g-standard-edition-dual-sim-td-lte-id-v2-128gb-v2045", + "name": "Vivo X60 5G Standard Edition Dual SIM TD-LTE ID V2 128GB V2045", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-03-26", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 6.1, + "camera": 16.5, + "battery": 22.9, + "display": 52.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.900307", + "updated_at": "2026-06-19T00:43:44.900307" +} diff --git a/site/public/v1/smartphones/vivo-x60-5g-standard-edition-dual-sim-td-lte-id-v2-128gb-v2045/score/index.json b/site/public/v1/smartphones/vivo-x60-5g-standard-edition-dual-sim-td-lte-id-v2-128gb-v2045/score/index.json new file mode 100644 index 00000000000..f5e3d93ba70 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x60-5g-standard-edition-dual-sim-td-lte-id-v2-128gb-v2045/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 6.1, + "camera": 16.5, + "battery": 22.9, + "display": 52.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x60-5g-standard-edition-dual-sim-td-lte-in-v1-128gb-v2045/index.json b/site/public/v1/smartphones/vivo-x60-5g-standard-edition-dual-sim-td-lte-in-v1-128gb-v2045/index.json new file mode 100644 index 00000000000..b8794f5b7e8 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x60-5g-standard-edition-dual-sim-td-lte-in-v1-128gb-v2045/index.json @@ -0,0 +1,77 @@ +{ + "id": 5482, + "slug": "vivo-x60-5g-standard-edition-dual-sim-td-lte-in-v1-128gb-v2045", + "name": "Vivo X60 5G Standard Edition Dual SIM TD-LTE IN V1 128GB V2045", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 159, + "slug": "snapdragon-870", + "name": "Snapdragon 870", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-870" + }, + "release_date": "2021-03-26", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 6.1, + "camera": 16.5, + "battery": 22.9, + "display": 52.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.900307", + "updated_at": "2026-06-19T00:43:44.900307" +} diff --git a/site/public/v1/smartphones/vivo-x60-5g-standard-edition-dual-sim-td-lte-in-v1-128gb-v2045/score/index.json b/site/public/v1/smartphones/vivo-x60-5g-standard-edition-dual-sim-td-lte-in-v1-128gb-v2045/score/index.json new file mode 100644 index 00000000000..f5e3d93ba70 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x60-5g-standard-edition-dual-sim-td-lte-in-v1-128gb-v2045/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 6.1, + "camera": 16.5, + "battery": 22.9, + "display": 52.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x60-curved-screen-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2059a/index.json b/site/public/v1/smartphones/vivo-x60-curved-screen-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2059a/index.json new file mode 100644 index 00000000000..c3442277842 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x60-curved-screen-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2059a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5483, + "slug": "vivo-x60-curved-screen-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2059a", + "name": "Vivo X60 Curved Screen 5G Premium Edition Dual SIM TD-LTE CN 256GB V2059A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 196, + "slug": "exynos-1080", + "name": "Exynos 1080", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP10", + "url": "/v1/socs/exynos-1080" + }, + "release_date": "2021-03-01", + "msrp_usd": 3999, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.5, + "performance": 6.0, + "camera": 16.5, + "battery": 31.4, + "display": 52.3, + "value": 13.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.900307", + "updated_at": "2026-06-19T00:43:44.900307" +} diff --git a/site/public/v1/smartphones/vivo-x60-curved-screen-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2059a/score/index.json b/site/public/v1/smartphones/vivo-x60-curved-screen-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2059a/score/index.json new file mode 100644 index 00000000000..cf0ff7667c8 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x60-curved-screen-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2059a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.5, + "performance": 6.0, + "camera": 16.5, + "battery": 31.4, + "display": 52.3, + "value": 13.2 +} diff --git a/site/public/v1/smartphones/vivo-x60-curved-screen-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2059a/index.json b/site/public/v1/smartphones/vivo-x60-curved-screen-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2059a/index.json new file mode 100644 index 00000000000..b92fc8c0508 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x60-curved-screen-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2059a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5484, + "slug": "vivo-x60-curved-screen-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2059a", + "name": "Vivo X60 Curved Screen 5G Standard Edition Dual SIM TD-LTE CN 128GB V2059A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 196, + "slug": "exynos-1080", + "name": "Exynos 1080", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP10", + "url": "/v1/socs/exynos-1080" + }, + "release_date": "2021-03-01", + "msrp_usd": 3499, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.8, + "performance": 3.0, + "camera": 16.5, + "battery": 31.4, + "display": 52.3, + "value": 12.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.900307", + "updated_at": "2026-06-19T00:43:44.900307" +} diff --git a/site/public/v1/smartphones/vivo-x60-curved-screen-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2059a/score/index.json b/site/public/v1/smartphones/vivo-x60-curved-screen-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2059a/score/index.json new file mode 100644 index 00000000000..f04d30aeddc --- /dev/null +++ b/site/public/v1/smartphones/vivo-x60-curved-screen-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2059a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.8, + "performance": 3.0, + "camera": 16.5, + "battery": 31.4, + "display": 52.3, + "value": 12.9 +} diff --git a/site/public/v1/smartphones/vivo-x60-curved-screen-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2059a/index.json b/site/public/v1/smartphones/vivo-x60-curved-screen-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2059a/index.json new file mode 100644 index 00000000000..57572fbc6bc --- /dev/null +++ b/site/public/v1/smartphones/vivo-x60-curved-screen-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2059a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5485, + "slug": "vivo-x60-curved-screen-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2059a", + "name": "Vivo X60 Curved Screen 5G Standard Edition Dual SIM TD-LTE CN 256GB V2059A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 196, + "slug": "exynos-1080", + "name": "Exynos 1080", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP10", + "url": "/v1/socs/exynos-1080" + }, + "release_date": "2021-03-01", + "msrp_usd": 3799, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.8, + "performance": 3.0, + "camera": 16.5, + "battery": 31.4, + "display": 52.3, + "value": 12.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.900307", + "updated_at": "2026-06-19T00:43:44.900307" +} diff --git a/site/public/v1/smartphones/vivo-x60-curved-screen-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2059a/score/index.json b/site/public/v1/smartphones/vivo-x60-curved-screen-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2059a/score/index.json new file mode 100644 index 00000000000..f04d30aeddc --- /dev/null +++ b/site/public/v1/smartphones/vivo-x60-curved-screen-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2059a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.8, + "performance": 3.0, + "camera": 16.5, + "battery": 31.4, + "display": 52.3, + "value": 12.9 +} diff --git a/site/public/v1/smartphones/vivo-x60-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2047a/index.json b/site/public/v1/smartphones/vivo-x60-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2047a/index.json new file mode 100644 index 00000000000..abe7f42bd42 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x60-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2047a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5486, + "slug": "vivo-x60-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2047a", + "name": "Vivo X60 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB V2047A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 196, + "slug": "exynos-1080", + "name": "Exynos 1080", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP10", + "url": "/v1/socs/exynos-1080" + }, + "release_date": "2021-01-08", + "msrp_usd": 4498, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.5, + "performance": 6.0, + "camera": 16.5, + "battery": 31.4, + "display": 52.3, + "value": 13.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.901307", + "updated_at": "2026-06-19T00:43:44.901307" +} diff --git a/site/public/v1/smartphones/vivo-x60-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2047a/score/index.json b/site/public/v1/smartphones/vivo-x60-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2047a/score/index.json new file mode 100644 index 00000000000..cf0ff7667c8 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x60-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2047a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.5, + "performance": 6.0, + "camera": 16.5, + "battery": 31.4, + "display": 52.3, + "value": 13.2 +} diff --git a/site/public/v1/smartphones/vivo-x60-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2056a/index.json b/site/public/v1/smartphones/vivo-x60-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2056a/index.json new file mode 100644 index 00000000000..80bbc40cf11 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x60-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2056a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5487, + "slug": "vivo-x60-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2056a", + "name": "Vivo X60 Pro+ 5G Premium Edition Dual SIM TD-LTE CN 256GB V2056A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-31", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 190.6, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.6, + "performance": 9.4, + "camera": 17.2, + "battery": 35.6, + "display": 52.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.901307", + "updated_at": "2026-06-19T00:43:44.901307" +} diff --git a/site/public/v1/smartphones/vivo-x60-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2056a/score/index.json b/site/public/v1/smartphones/vivo-x60-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2056a/score/index.json new file mode 100644 index 00000000000..c6093f65891 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x60-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2056a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.6, + "performance": 9.4, + "camera": 17.2, + "battery": 35.6, + "display": 52.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x60-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2056a/index.json b/site/public/v1/smartphones/vivo-x60-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2056a/index.json new file mode 100644 index 00000000000..c6cd54ca473 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x60-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2056a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5488, + "slug": "vivo-x60-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2056a", + "name": "Vivo X60 Pro+ 5G Standard Edition Dual SIM TD-LTE CN 128GB V2056A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-01-31", + "msrp_usd": 4998, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 190.6, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.9, + "performance": 6.4, + "camera": 17.2, + "battery": 35.6, + "display": 52.3, + "value": 13.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.901307", + "updated_at": "2026-06-19T00:43:44.901307" +} diff --git a/site/public/v1/smartphones/vivo-x60-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2056a/score/index.json b/site/public/v1/smartphones/vivo-x60-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2056a/score/index.json new file mode 100644 index 00000000000..d03170332cc --- /dev/null +++ b/site/public/v1/smartphones/vivo-x60-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2056a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.9, + "performance": 6.4, + "camera": 17.2, + "battery": 35.6, + "display": 52.3, + "value": 13.9 +} diff --git a/site/public/v1/smartphones/vivo-x60t-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2056a/index.json b/site/public/v1/smartphones/vivo-x60t-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2056a/index.json new file mode 100644 index 00000000000..99460269c5f --- /dev/null +++ b/site/public/v1/smartphones/vivo-x60t-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2056a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5489, + "slug": "vivo-x60t-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2056a", + "name": "Vivo X60t Pro+ 5G Premium Edition Dual SIM TD-LTE CN 256GB V2056A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-06-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 190.6, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.6, + "performance": 9.4, + "camera": 17.2, + "battery": 35.6, + "display": 52.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.901307", + "updated_at": "2026-06-19T00:43:44.901307" +} diff --git a/site/public/v1/smartphones/vivo-x60t-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2056a/score/index.json b/site/public/v1/smartphones/vivo-x60t-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2056a/score/index.json new file mode 100644 index 00000000000..c6093f65891 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x60t-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2056a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.6, + "performance": 9.4, + "camera": 17.2, + "battery": 35.6, + "display": 52.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x60t-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2056a/index.json b/site/public/v1/smartphones/vivo-x60t-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2056a/index.json new file mode 100644 index 00000000000..173c08dc1f8 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x60t-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2056a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5490, + "slug": "vivo-x60t-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2056a", + "name": "Vivo X60t Pro+ 5G Standard Edition Dual SIM TD-LTE CN 128GB V2056A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-06-01", + "msrp_usd": 4999, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4200, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 190.6, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.9, + "performance": 6.4, + "camera": 17.2, + "battery": 35.6, + "display": 52.3, + "value": 13.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.901307", + "updated_at": "2026-06-19T00:43:44.901307" +} diff --git a/site/public/v1/smartphones/vivo-x60t-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2056a/score/index.json b/site/public/v1/smartphones/vivo-x60t-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2056a/score/index.json new file mode 100644 index 00000000000..d03170332cc --- /dev/null +++ b/site/public/v1/smartphones/vivo-x60t-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2056a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.9, + "performance": 6.4, + "camera": 17.2, + "battery": 35.6, + "display": 52.3, + "value": 13.9 +} diff --git a/site/public/v1/smartphones/vivo-x70-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2133a/index.json b/site/public/v1/smartphones/vivo-x70-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2133a/index.json new file mode 100644 index 00000000000..991b1273e69 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x70-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2133a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5491, + "slug": "vivo-x70-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2133a", + "name": "Vivo X70 5G Premium Edition Dual SIM TD-LTE CN 256GB V2133A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-09-01", + "msrp_usd": 4299, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 40.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4400, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.1, + "performance": 6.9, + "camera": 13.9, + "battery": 31.5, + "display": 52.3, + "value": 13.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.901307", + "updated_at": "2026-06-19T00:43:44.901307" +} diff --git a/site/public/v1/smartphones/vivo-x70-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2133a/score/index.json b/site/public/v1/smartphones/vivo-x70-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2133a/score/index.json new file mode 100644 index 00000000000..db342145c97 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x70-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2133a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.1, + "performance": 6.9, + "camera": 13.9, + "battery": 31.5, + "display": 52.3, + "value": 13.1 +} diff --git a/site/public/v1/smartphones/vivo-x70-5g-premium-edition-global-dual-sim-td-lte-v2-128gb-v2104/index.json b/site/public/v1/smartphones/vivo-x70-5g-premium-edition-global-dual-sim-td-lte-v2-128gb-v2104/index.json new file mode 100644 index 00000000000..f55a8c612b5 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x70-5g-premium-edition-global-dual-sim-td-lte-v2-128gb-v2104/index.json @@ -0,0 +1,77 @@ +{ + "id": 5492, + "slug": "vivo-x70-5g-premium-edition-global-dual-sim-td-lte-v2-128gb-v2104", + "name": "Vivo X70 5G Premium Edition Global Dual SIM TD-LTE V2 128GB V2104", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-09-24", + "msrp_usd": 2499, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 40.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4400, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.4, + "performance": 3.9, + "camera": 13.9, + "battery": 31.5, + "display": 52.3, + "value": 12.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.901307", + "updated_at": "2026-06-19T00:43:44.901307" +} diff --git a/site/public/v1/smartphones/vivo-x70-5g-premium-edition-global-dual-sim-td-lte-v2-128gb-v2104/score/index.json b/site/public/v1/smartphones/vivo-x70-5g-premium-edition-global-dual-sim-td-lte-v2-128gb-v2104/score/index.json new file mode 100644 index 00000000000..3676d174357 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x70-5g-premium-edition-global-dual-sim-td-lte-v2-128gb-v2104/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.4, + "performance": 3.9, + "camera": 13.9, + "battery": 31.5, + "display": 52.3, + "value": 12.7 +} diff --git a/site/public/v1/smartphones/vivo-x70-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2133a/index.json b/site/public/v1/smartphones/vivo-x70-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2133a/index.json new file mode 100644 index 00000000000..b8c050986b8 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x70-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2133a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5493, + "slug": "vivo-x70-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2133a", + "name": "Vivo X70 5G Standard Edition Dual SIM TD-LTE CN 128GB V2133A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-09-01", + "msrp_usd": 3699, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 40.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4400, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.4, + "performance": 3.9, + "camera": 13.9, + "battery": 31.5, + "display": 52.3, + "value": 12.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.901307", + "updated_at": "2026-06-19T00:43:44.901307" +} diff --git a/site/public/v1/smartphones/vivo-x70-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2133a/score/index.json b/site/public/v1/smartphones/vivo-x70-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2133a/score/index.json new file mode 100644 index 00000000000..3676d174357 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x70-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2133a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.4, + "performance": 3.9, + "camera": 13.9, + "battery": 31.5, + "display": 52.3, + "value": 12.7 +} diff --git a/site/public/v1/smartphones/vivo-x70-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2133a/index.json b/site/public/v1/smartphones/vivo-x70-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2133a/index.json new file mode 100644 index 00000000000..d15e788824a --- /dev/null +++ b/site/public/v1/smartphones/vivo-x70-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2133a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5494, + "slug": "vivo-x70-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2133a", + "name": "Vivo X70 5G Standard Edition Dual SIM TD-LTE CN 256GB V2133A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-09-01", + "msrp_usd": 3999, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 40.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4400, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.4, + "performance": 3.9, + "camera": 13.9, + "battery": 31.5, + "display": 52.3, + "value": 12.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.901307", + "updated_at": "2026-06-19T00:43:44.901307" +} diff --git a/site/public/v1/smartphones/vivo-x70-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2133a/score/index.json b/site/public/v1/smartphones/vivo-x70-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2133a/score/index.json new file mode 100644 index 00000000000..3676d174357 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x70-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2133a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.4, + "performance": 3.9, + "camera": 13.9, + "battery": 31.5, + "display": 52.3, + "value": 12.7 +} diff --git a/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2134a/index.json b/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2134a/index.json new file mode 100644 index 00000000000..9d0fefaa54b --- /dev/null +++ b/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2134a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5495, + "slug": "vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2134a", + "name": "Vivo X70 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB V2134A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 196, + "slug": "exynos-1080", + "name": "Exynos 1080", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP10", + "url": "/v1/socs/exynos-1080" + }, + "release_date": "2021-09-16", + "msrp_usd": 4799, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4450, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.2, + "performance": 6.0, + "camera": 17.2, + "battery": 37.3, + "display": 52.3, + "value": 14.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.901307", + "updated_at": "2026-06-19T00:43:44.901307" +} diff --git a/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2134a/score/index.json b/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2134a/score/index.json new file mode 100644 index 00000000000..82cf37e4675 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2134a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.2, + "performance": 6.0, + "camera": 17.2, + "battery": 37.3, + "display": 52.3, + "value": 14.1 +} diff --git a/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2145a/index.json b/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2145a/index.json new file mode 100644 index 00000000000..95ecbf42792 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2145a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5496, + "slug": "vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2145a", + "name": "Vivo X70 Pro+ 5G Premium Edition Dual SIM TD-LTE CN 256GB V2145A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-09-17", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 518 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 213.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.2, + "performance": 11.2, + "camera": 17.2, + "battery": 40.1, + "display": 64.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.902307", + "updated_at": "2026-06-19T00:43:44.902307" +} diff --git a/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2145a/score/index.json b/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2145a/score/index.json new file mode 100644 index 00000000000..299fa8eb595 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2145a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.2, + "performance": 11.2, + "camera": 17.2, + "battery": 40.1, + "display": 64.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2134a/index.json b/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2134a/index.json new file mode 100644 index 00000000000..8aae562cc7a --- /dev/null +++ b/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2134a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5497, + "slug": "vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2134a", + "name": "Vivo X70 Pro 5G Premium Edition Dual SIM TD-LTE CN 512GB V2134A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 196, + "slug": "exynos-1080", + "name": "Exynos 1080", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP10", + "url": "/v1/socs/exynos-1080" + }, + "release_date": "2021-09-16", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4450, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.2, + "performance": 6.0, + "camera": 17.2, + "battery": 37.3, + "display": 52.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.902307", + "updated_at": "2026-06-19T00:43:44.902307" +} diff --git a/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2134a/score/index.json b/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2134a/score/index.json new file mode 100644 index 00000000000..f02914e4d37 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2134a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.2, + "performance": 6.0, + "camera": 17.2, + "battery": 37.3, + "display": 52.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2145a/index.json b/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2145a/index.json new file mode 100644 index 00000000000..74ff2cf554b --- /dev/null +++ b/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2145a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5498, + "slug": "vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2145a", + "name": "Vivo X70 Pro+ 5G Premium Edition Dual SIM TD-LTE CN 512GB V2145A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-09-17", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 518 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 213.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.2, + "performance": 11.2, + "camera": 17.2, + "battery": 40.1, + "display": 64.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.902307", + "updated_at": "2026-06-19T00:43:44.902307" +} diff --git a/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2145a/score/index.json b/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2145a/score/index.json new file mode 100644 index 00000000000..299fa8eb595 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-cn-512gb-v2145a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.2, + "performance": 11.2, + "camera": 17.2, + "battery": 40.1, + "display": 64.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-v1-in-256gb-v2105/index.json b/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-v1-in-256gb-v2105/index.json new file mode 100644 index 00000000000..f874117110d --- /dev/null +++ b/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-v1-in-256gb-v2105/index.json @@ -0,0 +1,77 @@ +{ + "id": 5499, + "slug": "vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-v1-in-256gb-v2105", + "name": "Vivo X70 Pro 5G Premium Edition Dual SIM TD-LTE V1 IN 256GB V2105", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4450, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.2, + "performance": 6.9, + "camera": 17.2, + "battery": 32.3, + "display": 52.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.902307", + "updated_at": "2026-06-19T00:43:44.902307" +} diff --git a/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-v1-in-256gb-v2105/score/index.json b/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-v1-in-256gb-v2105/score/index.json new file mode 100644 index 00000000000..d52cc0ea0e4 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-dual-sim-td-lte-v1-in-256gb-v2105/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.2, + "performance": 6.9, + "camera": 17.2, + "battery": 32.3, + "display": 52.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-v2114/index.json b/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-v2114/index.json new file mode 100644 index 00000000000..4fe550cfd0b --- /dev/null +++ b/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-v2114/index.json @@ -0,0 +1,77 @@ +{ + "id": 5500, + "slug": "vivo-x70-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-v2114", + "name": "Vivo X70 Pro+ 5G Premium Edition Global Dual SIM TD-LTE 256GB V2114", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-09-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 518 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 213.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 33.2, + "performance": 11.2, + "camera": 17.2, + "battery": 40.1, + "display": 64.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.902307", + "updated_at": "2026-06-19T00:43:44.902307" +} diff --git a/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-v2114/score/index.json b/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-v2114/score/index.json new file mode 100644 index 00000000000..299fa8eb595 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-global-dual-sim-td-lte-256gb-v2114/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 33.2, + "performance": 11.2, + "camera": 17.2, + "battery": 40.1, + "display": 64.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-global-dual-sim-td-lte-v2-256gb-v2105/index.json b/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-global-dual-sim-td-lte-v2-256gb-v2105/index.json new file mode 100644 index 00000000000..629863c7019 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-global-dual-sim-td-lte-v2-256gb-v2105/index.json @@ -0,0 +1,77 @@ +{ + "id": 5501, + "slug": "vivo-x70-pro-5g-premium-edition-global-dual-sim-td-lte-v2-256gb-v2105", + "name": "Vivo X70 Pro 5G Premium Edition Global Dual SIM TD-LTE V2 256GB V2105", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-09-24", + "msrp_usd": 3299, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4450, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.2, + "performance": 6.9, + "camera": 17.2, + "battery": 32.3, + "display": 52.3, + "value": 13.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.902307", + "updated_at": "2026-06-19T00:43:44.902307" +} diff --git a/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-global-dual-sim-td-lte-v2-256gb-v2105/score/index.json b/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-global-dual-sim-td-lte-v2-256gb-v2105/score/index.json new file mode 100644 index 00000000000..7c177cd16d1 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x70-pro-5g-premium-edition-global-dual-sim-td-lte-v2-256gb-v2105/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.2, + "performance": 6.9, + "camera": 17.2, + "battery": 32.3, + "display": 52.3, + "value": 13.6 +} diff --git a/site/public/v1/smartphones/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2134a/index.json b/site/public/v1/smartphones/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2134a/index.json new file mode 100644 index 00000000000..e79bbaa535d --- /dev/null +++ b/site/public/v1/smartphones/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2134a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5502, + "slug": "vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2134a", + "name": "Vivo X70 Pro 5G Standard Edition Dual SIM TD-LTE CN 128GB V2134A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 196, + "slug": "exynos-1080", + "name": "Exynos 1080", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP10", + "url": "/v1/socs/exynos-1080" + }, + "release_date": "2021-09-16", + "msrp_usd": 4299, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4450, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 3.0, + "camera": 17.2, + "battery": 37.3, + "display": 52.3, + "value": 13.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.902307", + "updated_at": "2026-06-19T00:43:44.902307" +} diff --git a/site/public/v1/smartphones/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2134a/score/index.json b/site/public/v1/smartphones/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2134a/score/index.json new file mode 100644 index 00000000000..ae755fabd3d --- /dev/null +++ b/site/public/v1/smartphones/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2134a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 3.0, + "camera": 17.2, + "battery": 37.3, + "display": 52.3, + "value": 13.7 +} diff --git a/site/public/v1/smartphones/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2134a/index.json b/site/public/v1/smartphones/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2134a/index.json new file mode 100644 index 00000000000..c4fe1255a02 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2134a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5503, + "slug": "vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2134a", + "name": "Vivo X70 Pro 5G Standard Edition Dual SIM TD-LTE CN 256GB V2134A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 196, + "slug": "exynos-1080", + "name": "Exynos 1080", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 5.0, + "gpu_name": "Mali-G78 MP10", + "url": "/v1/socs/exynos-1080" + }, + "release_date": "2021-09-16", + "msrp_usd": 4599, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4450, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 3.0, + "camera": 17.2, + "battery": 37.3, + "display": 52.3, + "value": 13.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.902307", + "updated_at": "2026-06-19T00:43:44.902307" +} diff --git a/site/public/v1/smartphones/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2134a/score/index.json b/site/public/v1/smartphones/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2134a/score/index.json new file mode 100644 index 00000000000..ae755fabd3d --- /dev/null +++ b/site/public/v1/smartphones/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2134a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 3.0, + "camera": 17.2, + "battery": 37.3, + "display": 52.3, + "value": 13.7 +} diff --git a/site/public/v1/smartphones/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2145a/index.json b/site/public/v1/smartphones/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2145a/index.json new file mode 100644 index 00000000000..55d005777b1 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2145a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5504, + "slug": "vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2145a", + "name": "Vivo X70 Pro+ 5G Standard Edition Dual SIM TD-LTE CN 256GB V2145A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 160, + "slug": "snapdragon-888-plus", + "name": "Snapdragon 888+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888-plus" + }, + "release_date": "2021-09-17", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.78, + "resolution": "1440x3200", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 518 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 55.0, + "charging_wireless_w": null, + "weight_g": 213.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 8.2, + "camera": 17.2, + "battery": 40.1, + "display": 64.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.902307", + "updated_at": "2026-06-19T00:43:44.902307" +} diff --git a/site/public/v1/smartphones/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2145a/score/index.json b/site/public/v1/smartphones/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2145a/score/index.json new file mode 100644 index 00000000000..b60c2648504 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-cn-256gb-v2145a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 32.5, + "performance": 8.2, + "camera": 17.2, + "battery": 40.1, + "display": 64.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-v1-in-128gb-v2105/index.json b/site/public/v1/smartphones/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-v1-in-128gb-v2105/index.json new file mode 100644 index 00000000000..02107fe10d3 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-v1-in-128gb-v2105/index.json @@ -0,0 +1,77 @@ +{ + "id": 5505, + "slug": "vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-v1-in-128gb-v2105", + "name": "Vivo X70 Pro 5G Standard Edition Dual SIM TD-LTE V1 IN 128GB V2105", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4450, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 3.9, + "camera": 17.2, + "battery": 32.3, + "display": 52.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.902307", + "updated_at": "2026-06-19T00:43:44.902307" +} diff --git a/site/public/v1/smartphones/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-v1-in-128gb-v2105/score/index.json b/site/public/v1/smartphones/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-v1-in-128gb-v2105/score/index.json new file mode 100644 index 00000000000..1ae4ce3b5a0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-v1-in-128gb-v2105/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 3.9, + "camera": 17.2, + "battery": 32.3, + "display": 52.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-v1-in-256gb-v2105/index.json b/site/public/v1/smartphones/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-v1-in-256gb-v2105/index.json new file mode 100644 index 00000000000..9d50f41a0f3 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-v1-in-256gb-v2105/index.json @@ -0,0 +1,77 @@ +{ + "id": 5506, + "slug": "vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-v1-in-256gb-v2105", + "name": "Vivo X70 Pro 5G Standard Edition Dual SIM TD-LTE V1 IN 256GB V2105", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 67, + "slug": "dimensity-1200", + "name": "MediaTek Dimensity 1200", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 6.0, + "gpu_name": "Mali-G77 MC9", + "url": "/v1/socs/dimensity-1200" + }, + "release_date": "2021-09-24", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.56, + "resolution": "1080x2376", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 398 + }, + "cameras": [ + { + "type": "main", + "mp": 50.3 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4450, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 3.9, + "camera": 17.2, + "battery": 32.3, + "display": 52.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.903307", + "updated_at": "2026-06-19T00:43:44.903307" +} diff --git a/site/public/v1/smartphones/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-v1-in-256gb-v2105/score/index.json b/site/public/v1/smartphones/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-v1-in-256gb-v2105/score/index.json new file mode 100644 index 00000000000..1ae4ce3b5a0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-x70-pro-5g-standard-edition-dual-sim-td-lte-v1-in-256gb-v2105/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.4, + "performance": 3.9, + "camera": 17.2, + "battery": 32.3, + "display": 52.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-xi-dual-sim-lte-a-v0311ww/index.json b/site/public/v1/smartphones/vivo-xi-dual-sim-lte-a-v0311ww/index.json new file mode 100644 index 00000000000..9ae532b7c53 --- /dev/null +++ b/site/public/v1/smartphones/vivo-xi-dual-sim-lte-a-v0311ww/index.json @@ -0,0 +1,76 @@ +{ + "id": 472, + "slug": "vivo-xi-dual-sim-lte-a-v0311ww", + "name": "Vivo XI+ Dual SIM LTE-A V0311WW", + "brand": { + "id": 104, + "slug": "blu", + "name": "BLU Products", + "country": "US", + "url": "/v1/brands/blu" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 3050, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 199.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": 1.5, + "camera": 6.3, + "battery": 0.8, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.172423", + "updated_at": "2026-06-19T00:43:44.172423" +} diff --git a/site/public/v1/smartphones/vivo-xi-dual-sim-lte-a-v0311ww/score/index.json b/site/public/v1/smartphones/vivo-xi-dual-sim-lte-a-v0311ww/score/index.json new file mode 100644 index 00000000000..bf6b2c5f5e4 --- /dev/null +++ b/site/public/v1/smartphones/vivo-xi-dual-sim-lte-a-v0311ww/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": 1.5, + "camera": 6.3, + "battery": 0.8, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-xi-dual-sim-lte-a-v0330ww/index.json b/site/public/v1/smartphones/vivo-xi-dual-sim-lte-a-v0330ww/index.json new file mode 100644 index 00000000000..e0c3a1bc900 --- /dev/null +++ b/site/public/v1/smartphones/vivo-xi-dual-sim-lte-a-v0330ww/index.json @@ -0,0 +1,76 @@ +{ + "id": 473, + "slug": "vivo-xi-dual-sim-lte-a-v0330ww", + "name": "Vivo XI Dual SIM LTE-A V0330WW", + "brand": { + "id": 104, + "slug": "blu", + "name": "BLU Products", + "country": "US", + "url": "/v1/brands/blu" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.9, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 285 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 187.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 6.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.172927", + "updated_at": "2026-06-19T00:43:44.172927" +} diff --git a/site/public/v1/smartphones/vivo-xi-dual-sim-lte-a-v0330ww/score/index.json b/site/public/v1/smartphones/vivo-xi-dual-sim-lte-a-v0330ww/score/index.json new file mode 100644 index 00000000000..34400387dab --- /dev/null +++ b/site/public/v1/smartphones/vivo-xi-dual-sim-lte-a-v0330ww/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": null, + "camera": 6.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y11-2019-dual-sim-td-lte-my-bd/index.json b/site/public/v1/smartphones/vivo-y11-2019-dual-sim-td-lte-my-bd/index.json new file mode 100644 index 00000000000..70b2fbc6185 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y11-2019-dual-sim-td-lte-my-bd/index.json @@ -0,0 +1,76 @@ +{ + "id": 5265, + "slug": "vivo-y11-2019-dual-sim-td-lte-my-bd", + "name": "Vivo Y11 2019 Dual SIM TD-LTE MY BD", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.35, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 191.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.873302", + "updated_at": "2026-06-19T00:43:44.873302" +} diff --git a/site/public/v1/smartphones/vivo-y11-2019-dual-sim-td-lte-my-bd/score/index.json b/site/public/v1/smartphones/vivo-y11-2019-dual-sim-td-lte-my-bd/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y11-2019-dual-sim-td-lte-my-bd/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y11-2019-dual-sim-td-lte-ph/index.json b/site/public/v1/smartphones/vivo-y11-2019-dual-sim-td-lte-ph/index.json new file mode 100644 index 00000000000..2f1ccfc5a80 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y11-2019-dual-sim-td-lte-ph/index.json @@ -0,0 +1,76 @@ +{ + "id": 5266, + "slug": "vivo-y11-2019-dual-sim-td-lte-ph", + "name": "Vivo Y11 2019 Dual SIM TD-LTE PH", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.35, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 191.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.873302", + "updated_at": "2026-06-19T00:43:44.873302" +} diff --git a/site/public/v1/smartphones/vivo-y11-2019-dual-sim-td-lte-ph/score/index.json b/site/public/v1/smartphones/vivo-y11-2019-dual-sim-td-lte-ph/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y11-2019-dual-sim-td-lte-ph/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y11-2019-dual-sim-td-lte-pk-th-np/index.json b/site/public/v1/smartphones/vivo-y11-2019-dual-sim-td-lte-pk-th-np/index.json new file mode 100644 index 00000000000..64387a839e1 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y11-2019-dual-sim-td-lte-pk-th-np/index.json @@ -0,0 +1,76 @@ +{ + "id": 5267, + "slug": "vivo-y11-2019-dual-sim-td-lte-pk-th-np", + "name": "Vivo Y11 2019 Dual SIM TD-LTE PK TH NP", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.35, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 191.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.873302", + "updated_at": "2026-06-19T00:43:44.873302" +} diff --git a/site/public/v1/smartphones/vivo-y11-2019-dual-sim-td-lte-pk-th-np/score/index.json b/site/public/v1/smartphones/vivo-y11-2019-dual-sim-td-lte-pk-th-np/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y11-2019-dual-sim-td-lte-pk-th-np/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y11-2019-dual-sim-td-lte-ru/index.json b/site/public/v1/smartphones/vivo-y11-2019-dual-sim-td-lte-ru/index.json new file mode 100644 index 00000000000..78c117ade65 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y11-2019-dual-sim-td-lte-ru/index.json @@ -0,0 +1,76 @@ +{ + "id": 5268, + "slug": "vivo-y11-2019-dual-sim-td-lte-ru", + "name": "Vivo Y11 2019 Dual SIM TD-LTE RU", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.35, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 191.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.873302", + "updated_at": "2026-06-19T00:43:44.873302" +} diff --git a/site/public/v1/smartphones/vivo-y11-2019-dual-sim-td-lte-ru/score/index.json b/site/public/v1/smartphones/vivo-y11-2019-dual-sim-td-lte-ru/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y11-2019-dual-sim-td-lte-ru/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y11s-2020-global-dual-sim-td-lte-32gb/index.json b/site/public/v1/smartphones/vivo-y11s-2020-global-dual-sim-td-lte-32gb/index.json new file mode 100644 index 00000000000..aab02b10989 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y11s-2020-global-dual-sim-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5396, + "slug": "vivo-y11s-2020-global-dual-sim-td-lte-32gb", + "name": "Vivo Y11s 2020 Global Dual SIM TD-LTE 32GB", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2020-11-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.889314", + "updated_at": "2026-06-19T00:43:44.889314" +} diff --git a/site/public/v1/smartphones/vivo-y11s-2020-global-dual-sim-td-lte-32gb/score/index.json b/site/public/v1/smartphones/vivo-y11s-2020-global-dual-sim-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y11s-2020-global-dual-sim-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y12-2019-premium-edition-dual-sim-td-lte-in-32gb-1904/index.json b/site/public/v1/smartphones/vivo-y12-2019-premium-edition-dual-sim-td-lte-in-32gb-1904/index.json new file mode 100644 index 00000000000..119c10ed1e1 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12-2019-premium-edition-dual-sim-td-lte-in-32gb-1904/index.json @@ -0,0 +1,76 @@ +{ + "id": 5269, + "slug": "vivo-y12-2019-premium-edition-dual-sim-td-lte-in-32gb-1904", + "name": "Vivo Y12 2019 Premium Edition Dual SIM TD-LTE IN 32GB 1904", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-05-28", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": null, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.873302", + "updated_at": "2026-06-19T00:43:44.873302" +} diff --git a/site/public/v1/smartphones/vivo-y12-2019-premium-edition-dual-sim-td-lte-in-32gb-1904/score/index.json b/site/public/v1/smartphones/vivo-y12-2019-premium-edition-dual-sim-td-lte-in-32gb-1904/score/index.json new file mode 100644 index 00000000000..80a12ee88a6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12-2019-premium-edition-dual-sim-td-lte-in-32gb-1904/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": null, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-id-32gb-1904/index.json b/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-id-32gb-1904/index.json new file mode 100644 index 00000000000..f18c2981541 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-id-32gb-1904/index.json @@ -0,0 +1,76 @@ +{ + "id": 5270, + "slug": "vivo-y12-2019-standard-edition-dual-sim-td-lte-id-32gb-1904", + "name": "Vivo Y12 2019 Standard Edition Dual SIM TD-LTE ID 32GB 1904", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": null, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.873302", + "updated_at": "2026-06-19T00:43:44.873302" +} diff --git a/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-id-32gb-1904/score/index.json b/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-id-32gb-1904/score/index.json new file mode 100644 index 00000000000..80a12ee88a6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-id-32gb-1904/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": null, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-id-pk-np-64gb-1904/index.json b/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-id-pk-np-64gb-1904/index.json new file mode 100644 index 00000000000..9087d34f975 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-id-pk-np-64gb-1904/index.json @@ -0,0 +1,76 @@ +{ + "id": 5271, + "slug": "vivo-y12-2019-standard-edition-dual-sim-td-lte-id-pk-np-64gb-1904", + "name": "Vivo Y12 2019 Standard Edition Dual SIM TD-LTE ID PK NP 64GB 1904", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": null, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.873302", + "updated_at": "2026-06-19T00:43:44.873302" +} diff --git a/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-id-pk-np-64gb-1904/score/index.json b/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-id-pk-np-64gb-1904/score/index.json new file mode 100644 index 00000000000..80a12ee88a6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-id-pk-np-64gb-1904/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": null, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-in-ph-64gb-1904/index.json b/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-in-ph-64gb-1904/index.json new file mode 100644 index 00000000000..a3f7fa111b2 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-in-ph-64gb-1904/index.json @@ -0,0 +1,76 @@ +{ + "id": 5272, + "slug": "vivo-y12-2019-standard-edition-dual-sim-td-lte-in-ph-64gb-1904", + "name": "Vivo Y12 2019 Standard Edition Dual SIM TD-LTE IN PH 64GB 1904", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-05-28", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": null, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.874328", + "updated_at": "2026-06-19T00:43:44.874328" +} diff --git a/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-in-ph-64gb-1904/score/index.json b/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-in-ph-64gb-1904/score/index.json new file mode 100644 index 00000000000..80a12ee88a6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-in-ph-64gb-1904/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": null, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-my-th-32gb-1904/index.json b/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-my-th-32gb-1904/index.json new file mode 100644 index 00000000000..224df5df23e --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-my-th-32gb-1904/index.json @@ -0,0 +1,76 @@ +{ + "id": 5273, + "slug": "vivo-y12-2019-standard-edition-dual-sim-td-lte-my-th-32gb-1904", + "name": "Vivo Y12 2019 Standard Edition Dual SIM TD-LTE MY TH 32GB 1904", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": null, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.874328", + "updated_at": "2026-06-19T00:43:44.874328" +} diff --git a/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-my-th-32gb-1904/score/index.json b/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-my-th-32gb-1904/score/index.json new file mode 100644 index 00000000000..80a12ee88a6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-my-th-32gb-1904/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": null, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-my-th-vn-sg-hk-64gb-1904/index.json b/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-my-th-vn-sg-hk-64gb-1904/index.json new file mode 100644 index 00000000000..892492bc8b4 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-my-th-vn-sg-hk-64gb-1904/index.json @@ -0,0 +1,76 @@ +{ + "id": 5274, + "slug": "vivo-y12-2019-standard-edition-dual-sim-td-lte-my-th-vn-sg-hk-64gb-1904", + "name": "Vivo Y12 2019 Standard Edition Dual SIM TD-LTE MY TH VN SG HK 64GB 1904", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": null, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.874328", + "updated_at": "2026-06-19T00:43:44.874328" +} diff --git a/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-my-th-vn-sg-hk-64gb-1904/score/index.json b/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-my-th-vn-sg-hk-64gb-1904/score/index.json new file mode 100644 index 00000000000..80a12ee88a6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-my-th-vn-sg-hk-64gb-1904/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": null, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-tw-au-64gb-1904/index.json b/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-tw-au-64gb-1904/index.json new file mode 100644 index 00000000000..4e06508ba3b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-tw-au-64gb-1904/index.json @@ -0,0 +1,76 @@ +{ + "id": 5275, + "slug": "vivo-y12-2019-standard-edition-dual-sim-td-lte-tw-au-64gb-1904", + "name": "Vivo Y12 2019 Standard Edition Dual SIM TD-LTE TW AU 64GB 1904", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": null, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.874328", + "updated_at": "2026-06-19T00:43:44.874328" +} diff --git a/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-tw-au-64gb-1904/score/index.json b/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-tw-au-64gb-1904/score/index.json new file mode 100644 index 00000000000..80a12ee88a6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12-2019-standard-edition-dual-sim-td-lte-tw-au-64gb-1904/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": null, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y12-2019-standard-edition-global-dual-sim-td-lte-64gb-1904/index.json b/site/public/v1/smartphones/vivo-y12-2019-standard-edition-global-dual-sim-td-lte-64gb-1904/index.json new file mode 100644 index 00000000000..3d54ad63ac0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12-2019-standard-edition-global-dual-sim-td-lte-64gb-1904/index.json @@ -0,0 +1,76 @@ +{ + "id": 5276, + "slug": "vivo-y12-2019-standard-edition-global-dual-sim-td-lte-64gb-1904", + "name": "Vivo Y12 2019 Standard Edition Global Dual SIM TD-LTE 64GB 1904", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": null, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.874328", + "updated_at": "2026-06-19T00:43:44.874328" +} diff --git a/site/public/v1/smartphones/vivo-y12-2019-standard-edition-global-dual-sim-td-lte-64gb-1904/score/index.json b/site/public/v1/smartphones/vivo-y12-2019-standard-edition-global-dual-sim-td-lte-64gb-1904/score/index.json new file mode 100644 index 00000000000..80a12ee88a6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12-2019-standard-edition-global-dual-sim-td-lte-64gb-1904/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": null, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y12a-2021-dual-sim-td-lte-v1-my-bd-v2102/index.json b/site/public/v1/smartphones/vivo-y12a-2021-dual-sim-td-lte-v1-my-bd-v2102/index.json new file mode 100644 index 00000000000..da2236b4fc2 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12a-2021-dual-sim-td-lte-v1-my-bd-v2102/index.json @@ -0,0 +1,76 @@ +{ + "id": 5507, + "slug": "vivo-y12a-2021-dual-sim-td-lte-v1-my-bd-v2102", + "name": "Vivo Y12a 2021 Dual SIM TD-LTE V1 MY BD V2102", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2021-06-01", + "msrp_usd": 529, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 50.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.903307", + "updated_at": "2026-06-19T00:43:44.903307" +} diff --git a/site/public/v1/smartphones/vivo-y12a-2021-dual-sim-td-lte-v1-my-bd-v2102/score/index.json b/site/public/v1/smartphones/vivo-y12a-2021-dual-sim-td-lte-v1-my-bd-v2102/score/index.json new file mode 100644 index 00000000000..afd2b9c8e20 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12a-2021-dual-sim-td-lte-v1-my-bd-v2102/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 50.0 +} diff --git a/site/public/v1/smartphones/vivo-y12a-2021-dual-sim-td-lte-v2-th-ph-v2102/index.json b/site/public/v1/smartphones/vivo-y12a-2021-dual-sim-td-lte-v2-th-ph-v2102/index.json new file mode 100644 index 00000000000..18be597fa38 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12a-2021-dual-sim-td-lte-v2-th-ph-v2102/index.json @@ -0,0 +1,76 @@ +{ + "id": 5508, + "slug": "vivo-y12a-2021-dual-sim-td-lte-v2-th-ph-v2102", + "name": "Vivo Y12a 2021 Dual SIM TD-LTE V2 TH PH V2102", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2021-06-01", + "msrp_usd": 4799, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 8.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.903307", + "updated_at": "2026-06-19T00:43:44.903307" +} diff --git a/site/public/v1/smartphones/vivo-y12a-2021-dual-sim-td-lte-v2-th-ph-v2102/score/index.json b/site/public/v1/smartphones/vivo-y12a-2021-dual-sim-td-lte-v2-th-ph-v2102/score/index.json new file mode 100644 index 00000000000..0aa133a66b7 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12a-2021-dual-sim-td-lte-v2-th-ph-v2102/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 8.8 +} diff --git a/site/public/v1/smartphones/vivo-y12g-2021-dual-sim-td-lte-v1-in-64gb-v2068/index.json b/site/public/v1/smartphones/vivo-y12g-2021-dual-sim-td-lte-v1-in-64gb-v2068/index.json new file mode 100644 index 00000000000..aef58a0768f --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12g-2021-dual-sim-td-lte-v1-in-64gb-v2068/index.json @@ -0,0 +1,76 @@ +{ + "id": 5509, + "slug": "vivo-y12g-2021-dual-sim-td-lte-v1-in-64gb-v2068", + "name": "Vivo Y12G 2021 Dual SIM TD-LTE V1 IN 64GB V2068", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2021-08-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.903307", + "updated_at": "2026-06-19T00:43:44.903307" +} diff --git a/site/public/v1/smartphones/vivo-y12g-2021-dual-sim-td-lte-v1-in-64gb-v2068/score/index.json b/site/public/v1/smartphones/vivo-y12g-2021-dual-sim-td-lte-v1-in-64gb-v2068/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12g-2021-dual-sim-td-lte-v1-in-64gb-v2068/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y12g-2021-dual-sim-td-lte-v1-in-id-32gb-v2068/index.json b/site/public/v1/smartphones/vivo-y12g-2021-dual-sim-td-lte-v1-in-id-32gb-v2068/index.json new file mode 100644 index 00000000000..388283a3fb7 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12g-2021-dual-sim-td-lte-v1-in-id-32gb-v2068/index.json @@ -0,0 +1,76 @@ +{ + "id": 5510, + "slug": "vivo-y12g-2021-dual-sim-td-lte-v1-in-id-32gb-v2068", + "name": "Vivo Y12G 2021 Dual SIM TD-LTE V1 IN ID 32GB V2068", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2021-08-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.903307", + "updated_at": "2026-06-19T00:43:44.903307" +} diff --git a/site/public/v1/smartphones/vivo-y12g-2021-dual-sim-td-lte-v1-in-id-32gb-v2068/score/index.json b/site/public/v1/smartphones/vivo-y12g-2021-dual-sim-td-lte-v1-in-id-32gb-v2068/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12g-2021-dual-sim-td-lte-v1-in-id-32gb-v2068/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y12i-dual-sim-td-lte-v1-id-2007/index.json b/site/public/v1/smartphones/vivo-y12i-dual-sim-td-lte-v1-id-2007/index.json new file mode 100644 index 00000000000..3339cf6a90c --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12i-dual-sim-td-lte-v1-id-2007/index.json @@ -0,0 +1,76 @@ +{ + "id": 5397, + "slug": "vivo-y12i-dual-sim-td-lte-v1-id-2007", + "name": "Vivo Y12i Dual SIM TD-LTE V1 ID 2007", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2020-09-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.35, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 190.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.889314", + "updated_at": "2026-06-19T00:43:44.889314" +} diff --git a/site/public/v1/smartphones/vivo-y12i-dual-sim-td-lte-v1-id-2007/score/index.json b/site/public/v1/smartphones/vivo-y12i-dual-sim-td-lte-v1-id-2007/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12i-dual-sim-td-lte-v1-id-2007/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y12s-2021-dual-sim-td-lte-v1-in-32gb-v2033-v2069/index.json b/site/public/v1/smartphones/vivo-y12s-2021-dual-sim-td-lte-v1-in-32gb-v2033-v2069/index.json new file mode 100644 index 00000000000..5775a9be32d --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12s-2021-dual-sim-td-lte-v1-in-32gb-v2033-v2069/index.json @@ -0,0 +1,76 @@ +{ + "id": 5511, + "slug": "vivo-y12s-2021-dual-sim-td-lte-v1-in-32gb-v2033-v2069", + "name": "Vivo Y12s 2021 Dual SIM TD-LTE V1 IN 32GB V2033 / V2069", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2021-03-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.903307", + "updated_at": "2026-06-19T00:43:44.903307" +} diff --git a/site/public/v1/smartphones/vivo-y12s-2021-dual-sim-td-lte-v1-in-32gb-v2033-v2069/score/index.json b/site/public/v1/smartphones/vivo-y12s-2021-dual-sim-td-lte-v1-in-32gb-v2033-v2069/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12s-2021-dual-sim-td-lte-v1-in-32gb-v2033-v2069/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y12s-dual-sim-td-lte-v1-np-bd-mn-pk-32gb-v2026/index.json b/site/public/v1/smartphones/vivo-y12s-dual-sim-td-lte-v1-np-bd-mn-pk-32gb-v2026/index.json new file mode 100644 index 00000000000..668e3178859 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12s-dual-sim-td-lte-v1-np-bd-mn-pk-32gb-v2026/index.json @@ -0,0 +1,76 @@ +{ + "id": 5398, + "slug": "vivo-y12s-dual-sim-td-lte-v1-np-bd-mn-pk-32gb-v2026", + "name": "Vivo Y12s Dual SIM TD-LTE V1 NP BD MN PK 32GB V2026", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-11-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.889314", + "updated_at": "2026-06-19T00:43:44.889314" +} diff --git a/site/public/v1/smartphones/vivo-y12s-dual-sim-td-lte-v1-np-bd-mn-pk-32gb-v2026/score/index.json b/site/public/v1/smartphones/vivo-y12s-dual-sim-td-lte-v1-np-bd-mn-pk-32gb-v2026/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12s-dual-sim-td-lte-v1-np-bd-mn-pk-32gb-v2026/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y12s-dual-sim-td-lte-v2-th-kz-ph-32gb-v2026/index.json b/site/public/v1/smartphones/vivo-y12s-dual-sim-td-lte-v2-th-kz-ph-32gb-v2026/index.json new file mode 100644 index 00000000000..ad61f88550a --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12s-dual-sim-td-lte-v2-th-kz-ph-32gb-v2026/index.json @@ -0,0 +1,76 @@ +{ + "id": 5399, + "slug": "vivo-y12s-dual-sim-td-lte-v2-th-kz-ph-32gb-v2026", + "name": "Vivo Y12s Dual SIM TD-LTE V2 TH KZ PH 32GB V2026", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-11-01", + "msrp_usd": 4799, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 8.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.890311", + "updated_at": "2026-06-19T00:43:44.890311" +} diff --git a/site/public/v1/smartphones/vivo-y12s-dual-sim-td-lte-v2-th-kz-ph-32gb-v2026/score/index.json b/site/public/v1/smartphones/vivo-y12s-dual-sim-td-lte-v2-th-kz-ph-32gb-v2026/score/index.json new file mode 100644 index 00000000000..0aa133a66b7 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12s-dual-sim-td-lte-v2-th-kz-ph-32gb-v2026/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 8.8 +} diff --git a/site/public/v1/smartphones/vivo-y12s-dual-sim-td-lte-v3-my-vn-sg-128gb-v2026/index.json b/site/public/v1/smartphones/vivo-y12s-dual-sim-td-lte-v3-my-vn-sg-128gb-v2026/index.json new file mode 100644 index 00000000000..7b50c5ca3b3 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12s-dual-sim-td-lte-v3-my-vn-sg-128gb-v2026/index.json @@ -0,0 +1,76 @@ +{ + "id": 5400, + "slug": "vivo-y12s-dual-sim-td-lte-v3-my-vn-sg-128gb-v2026", + "name": "Vivo Y12s Dual SIM TD-LTE V3 MY VN SG 128GB V2026", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-12-01", + "msrp_usd": 699, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 43.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.890311", + "updated_at": "2026-06-19T00:43:44.890311" +} diff --git a/site/public/v1/smartphones/vivo-y12s-dual-sim-td-lte-v3-my-vn-sg-128gb-v2026/score/index.json b/site/public/v1/smartphones/vivo-y12s-dual-sim-td-lte-v3-my-vn-sg-128gb-v2026/score/index.json new file mode 100644 index 00000000000..aa3879ecf63 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12s-dual-sim-td-lte-v3-my-vn-sg-128gb-v2026/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 43.5 +} diff --git a/site/public/v1/smartphones/vivo-y12s-dual-sim-td-lte-v3-my-vn-sg-32gb-v2026-v2042/index.json b/site/public/v1/smartphones/vivo-y12s-dual-sim-td-lte-v3-my-vn-sg-32gb-v2026-v2042/index.json new file mode 100644 index 00000000000..d0115df470a --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12s-dual-sim-td-lte-v3-my-vn-sg-32gb-v2026-v2042/index.json @@ -0,0 +1,76 @@ +{ + "id": 5401, + "slug": "vivo-y12s-dual-sim-td-lte-v3-my-vn-sg-32gb-v2026-v2042", + "name": "Vivo Y12s Dual SIM TD-LTE V3 MY VN SG 32GB V2026 / V2042", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-12-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.890311", + "updated_at": "2026-06-19T00:43:44.890311" +} diff --git a/site/public/v1/smartphones/vivo-y12s-dual-sim-td-lte-v3-my-vn-sg-32gb-v2026-v2042/score/index.json b/site/public/v1/smartphones/vivo-y12s-dual-sim-td-lte-v3-my-vn-sg-32gb-v2026-v2042/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12s-dual-sim-td-lte-v3-my-vn-sg-32gb-v2026-v2042/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y12s-dual-sim-td-lte-v4-cn-hk-32gb-v2026/index.json b/site/public/v1/smartphones/vivo-y12s-dual-sim-td-lte-v4-cn-hk-32gb-v2026/index.json new file mode 100644 index 00000000000..b7d37b6d6f9 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12s-dual-sim-td-lte-v4-cn-hk-32gb-v2026/index.json @@ -0,0 +1,76 @@ +{ + "id": 5402, + "slug": "vivo-y12s-dual-sim-td-lte-v4-cn-hk-32gb-v2026", + "name": "Vivo Y12s Dual SIM TD-LTE V4 CN HK 32GB V2026", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-09-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 191.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.890311", + "updated_at": "2026-06-19T00:43:44.890311" +} diff --git a/site/public/v1/smartphones/vivo-y12s-dual-sim-td-lte-v4-cn-hk-32gb-v2026/score/index.json b/site/public/v1/smartphones/vivo-y12s-dual-sim-td-lte-v4-cn-hk-32gb-v2026/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y12s-dual-sim-td-lte-v4-cn-hk-32gb-v2026/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y15-2019-dual-sim-td-lte-id-pk-np-mn-64gb-1901/index.json b/site/public/v1/smartphones/vivo-y15-2019-dual-sim-td-lte-id-pk-np-mn-64gb-1901/index.json new file mode 100644 index 00000000000..b2adce89970 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y15-2019-dual-sim-td-lte-id-pk-np-mn-64gb-1901/index.json @@ -0,0 +1,76 @@ +{ + "id": 5277, + "slug": "vivo-y15-2019-dual-sim-td-lte-id-pk-np-mn-64gb-1901", + "name": "Vivo Y15 2019 Dual SIM TD-LTE ID PK NP MN 64GB 1901", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": null, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.874328", + "updated_at": "2026-06-19T00:43:44.874328" +} diff --git a/site/public/v1/smartphones/vivo-y15-2019-dual-sim-td-lte-id-pk-np-mn-64gb-1901/score/index.json b/site/public/v1/smartphones/vivo-y15-2019-dual-sim-td-lte-id-pk-np-mn-64gb-1901/score/index.json new file mode 100644 index 00000000000..80a12ee88a6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y15-2019-dual-sim-td-lte-id-pk-np-mn-64gb-1901/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": null, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y15-2019-dual-sim-td-lte-in-ph-64gb-1901/index.json b/site/public/v1/smartphones/vivo-y15-2019-dual-sim-td-lte-in-ph-64gb-1901/index.json new file mode 100644 index 00000000000..c3d5385aec0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y15-2019-dual-sim-td-lte-in-ph-64gb-1901/index.json @@ -0,0 +1,76 @@ +{ + "id": 5278, + "slug": "vivo-y15-2019-dual-sim-td-lte-in-ph-64gb-1901", + "name": "Vivo Y15 2019 Dual SIM TD-LTE IN PH 64GB 1901", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-05-28", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": null, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.874328", + "updated_at": "2026-06-19T00:43:44.874328" +} diff --git a/site/public/v1/smartphones/vivo-y15-2019-dual-sim-td-lte-in-ph-64gb-1901/score/index.json b/site/public/v1/smartphones/vivo-y15-2019-dual-sim-td-lte-in-ph-64gb-1901/score/index.json new file mode 100644 index 00000000000..80a12ee88a6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y15-2019-dual-sim-td-lte-in-ph-64gb-1901/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": null, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y15-2019-dual-sim-td-lte-vn-64gb-1901/index.json b/site/public/v1/smartphones/vivo-y15-2019-dual-sim-td-lte-vn-64gb-1901/index.json new file mode 100644 index 00000000000..db5d6df7436 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y15-2019-dual-sim-td-lte-vn-64gb-1901/index.json @@ -0,0 +1,76 @@ +{ + "id": 5279, + "slug": "vivo-y15-2019-dual-sim-td-lte-vn-64gb-1901", + "name": "Vivo Y15 2019 Dual SIM TD-LTE VN 64GB 1901", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": null, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.874328", + "updated_at": "2026-06-19T00:43:44.874328" +} diff --git a/site/public/v1/smartphones/vivo-y15-2019-dual-sim-td-lte-vn-64gb-1901/score/index.json b/site/public/v1/smartphones/vivo-y15-2019-dual-sim-td-lte-vn-64gb-1901/score/index.json new file mode 100644 index 00000000000..80a12ee88a6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y15-2019-dual-sim-td-lte-vn-64gb-1901/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": null, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y15-2019-global-dual-sim-td-lte-64gb-1901/index.json b/site/public/v1/smartphones/vivo-y15-2019-global-dual-sim-td-lte-64gb-1901/index.json new file mode 100644 index 00000000000..387e8830aa2 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y15-2019-global-dual-sim-td-lte-64gb-1901/index.json @@ -0,0 +1,76 @@ +{ + "id": 5280, + "slug": "vivo-y15-2019-global-dual-sim-td-lte-64gb-1901", + "name": "Vivo Y15 2019 Global Dual SIM TD-LTE 64GB 1901", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": null, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.875315", + "updated_at": "2026-06-19T00:43:44.875315" +} diff --git a/site/public/v1/smartphones/vivo-y15-2019-global-dual-sim-td-lte-64gb-1901/score/index.json b/site/public/v1/smartphones/vivo-y15-2019-global-dual-sim-td-lte-64gb-1901/score/index.json new file mode 100644 index 00000000000..80a12ee88a6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y15-2019-global-dual-sim-td-lte-64gb-1901/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": null, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y15-2020-dual-sim-td-lte-hk-128gb-1901/index.json b/site/public/v1/smartphones/vivo-y15-2020-dual-sim-td-lte-hk-128gb-1901/index.json new file mode 100644 index 00000000000..f6cda3bcb7f --- /dev/null +++ b/site/public/v1/smartphones/vivo-y15-2020-dual-sim-td-lte-hk-128gb-1901/index.json @@ -0,0 +1,76 @@ +{ + "id": 5281, + "slug": "vivo-y15-2020-dual-sim-td-lte-hk-128gb-1901", + "name": "Vivo Y15 2020 Dual SIM TD-LTE HK 128GB 1901", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-12-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": null, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.875315", + "updated_at": "2026-06-19T00:43:44.875315" +} diff --git a/site/public/v1/smartphones/vivo-y15-2020-dual-sim-td-lte-hk-128gb-1901/score/index.json b/site/public/v1/smartphones/vivo-y15-2020-dual-sim-td-lte-hk-128gb-1901/score/index.json new file mode 100644 index 00000000000..80a12ee88a6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y15-2020-dual-sim-td-lte-hk-128gb-1901/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": null, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y15-2020-dual-sim-td-lte-th-my-vn-64gb-1901/index.json b/site/public/v1/smartphones/vivo-y15-2020-dual-sim-td-lte-th-my-vn-64gb-1901/index.json new file mode 100644 index 00000000000..a5729701bc1 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y15-2020-dual-sim-td-lte-th-my-vn-64gb-1901/index.json @@ -0,0 +1,76 @@ +{ + "id": 5282, + "slug": "vivo-y15-2020-dual-sim-td-lte-th-my-vn-64gb-1901", + "name": "Vivo Y15 2020 Dual SIM TD-LTE TH MY VN 64GB 1901", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-12-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": null, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.875315", + "updated_at": "2026-06-19T00:43:44.875315" +} diff --git a/site/public/v1/smartphones/vivo-y15-2020-dual-sim-td-lte-th-my-vn-64gb-1901/score/index.json b/site/public/v1/smartphones/vivo-y15-2020-dual-sim-td-lte-th-my-vn-64gb-1901/score/index.json new file mode 100644 index 00000000000..80a12ee88a6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y15-2020-dual-sim-td-lte-th-my-vn-64gb-1901/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": null, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y17-2019-dual-sim-td-lte-au-hk-ph-128gb-1902/index.json b/site/public/v1/smartphones/vivo-y17-2019-dual-sim-td-lte-au-hk-ph-128gb-1902/index.json new file mode 100644 index 00000000000..dcff5d67e76 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y17-2019-dual-sim-td-lte-au-hk-ph-128gb-1902/index.json @@ -0,0 +1,76 @@ +{ + "id": 5283, + "slug": "vivo-y17-2019-dual-sim-td-lte-au-hk-ph-128gb-1902", + "name": "Vivo Y17 2019 Dual SIM TD-LTE AU HK PH 128GB 1902", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.875315", + "updated_at": "2026-06-19T00:43:44.875315" +} diff --git a/site/public/v1/smartphones/vivo-y17-2019-dual-sim-td-lte-au-hk-ph-128gb-1902/score/index.json b/site/public/v1/smartphones/vivo-y17-2019-dual-sim-td-lte-au-hk-ph-128gb-1902/score/index.json new file mode 100644 index 00000000000..d588f205b30 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y17-2019-dual-sim-td-lte-au-hk-ph-128gb-1902/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y17-2019-dual-sim-td-lte-in-id-np-pk-128gb-1902/index.json b/site/public/v1/smartphones/vivo-y17-2019-dual-sim-td-lte-in-id-np-pk-128gb-1902/index.json new file mode 100644 index 00000000000..fd9946669a7 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y17-2019-dual-sim-td-lte-in-id-np-pk-128gb-1902/index.json @@ -0,0 +1,76 @@ +{ + "id": 5284, + "slug": "vivo-y17-2019-dual-sim-td-lte-in-id-np-pk-128gb-1902", + "name": "Vivo Y17 2019 Dual SIM TD-LTE IN ID NP PK 128GB 1902", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.875315", + "updated_at": "2026-06-19T00:43:44.875315" +} diff --git a/site/public/v1/smartphones/vivo-y17-2019-dual-sim-td-lte-in-id-np-pk-128gb-1902/score/index.json b/site/public/v1/smartphones/vivo-y17-2019-dual-sim-td-lte-in-id-np-pk-128gb-1902/score/index.json new file mode 100644 index 00000000000..d588f205b30 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y17-2019-dual-sim-td-lte-in-id-np-pk-128gb-1902/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y17-2019-dual-sim-td-lte-ru-kz-64gb-1902/index.json b/site/public/v1/smartphones/vivo-y17-2019-dual-sim-td-lte-ru-kz-64gb-1902/index.json new file mode 100644 index 00000000000..e02bfe0d218 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y17-2019-dual-sim-td-lte-ru-kz-64gb-1902/index.json @@ -0,0 +1,76 @@ +{ + "id": 5285, + "slug": "vivo-y17-2019-dual-sim-td-lte-ru-kz-64gb-1902", + "name": "Vivo Y17 2019 Dual SIM TD-LTE RU KZ 64GB 1902", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.875315", + "updated_at": "2026-06-19T00:43:44.875315" +} diff --git a/site/public/v1/smartphones/vivo-y17-2019-dual-sim-td-lte-ru-kz-64gb-1902/score/index.json b/site/public/v1/smartphones/vivo-y17-2019-dual-sim-td-lte-ru-kz-64gb-1902/score/index.json new file mode 100644 index 00000000000..d588f205b30 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y17-2019-dual-sim-td-lte-ru-kz-64gb-1902/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y17-2019-dual-sim-td-lte-sg-vn-my-th-128gb-1902/index.json b/site/public/v1/smartphones/vivo-y17-2019-dual-sim-td-lte-sg-vn-my-th-128gb-1902/index.json new file mode 100644 index 00000000000..4978dc48482 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y17-2019-dual-sim-td-lte-sg-vn-my-th-128gb-1902/index.json @@ -0,0 +1,76 @@ +{ + "id": 5286, + "slug": "vivo-y17-2019-dual-sim-td-lte-sg-vn-my-th-128gb-1902", + "name": "Vivo Y17 2019 Dual SIM TD-LTE SG VN MY TH 128GB 1902", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.875315", + "updated_at": "2026-06-19T00:43:44.875315" +} diff --git a/site/public/v1/smartphones/vivo-y17-2019-dual-sim-td-lte-sg-vn-my-th-128gb-1902/score/index.json b/site/public/v1/smartphones/vivo-y17-2019-dual-sim-td-lte-sg-vn-my-th-128gb-1902/score/index.json new file mode 100644 index 00000000000..d588f205b30 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y17-2019-dual-sim-td-lte-sg-vn-my-th-128gb-1902/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y17-2019-dual-sim-td-lte-sg-vn-my-th-64gb-1902/index.json b/site/public/v1/smartphones/vivo-y17-2019-dual-sim-td-lte-sg-vn-my-th-64gb-1902/index.json new file mode 100644 index 00000000000..6e8f36a1faa --- /dev/null +++ b/site/public/v1/smartphones/vivo-y17-2019-dual-sim-td-lte-sg-vn-my-th-64gb-1902/index.json @@ -0,0 +1,76 @@ +{ + "id": 5287, + "slug": "vivo-y17-2019-dual-sim-td-lte-sg-vn-my-th-64gb-1902", + "name": "Vivo Y17 2019 Dual SIM TD-LTE SG VN MY TH 64GB 1902", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.875315", + "updated_at": "2026-06-19T00:43:44.875315" +} diff --git a/site/public/v1/smartphones/vivo-y17-2019-dual-sim-td-lte-sg-vn-my-th-64gb-1902/score/index.json b/site/public/v1/smartphones/vivo-y17-2019-dual-sim-td-lte-sg-vn-my-th-64gb-1902/score/index.json new file mode 100644 index 00000000000..d588f205b30 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y17-2019-dual-sim-td-lte-sg-vn-my-th-64gb-1902/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-id-128gb-1915/index.json b/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-id-128gb-1915/index.json new file mode 100644 index 00000000000..1058a6f3cd5 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-id-128gb-1915/index.json @@ -0,0 +1,76 @@ +{ + "id": 5288, + "slug": "vivo-y19-2019-dual-sim-td-lte-id-128gb-1915", + "name": "Vivo Y19 2019 Dual SIM TD-LTE ID 128GB 1915", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 52, + "slug": "helio-p65", + "name": "Helio P65", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-p65" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 1.5, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.875315", + "updated_at": "2026-06-19T00:43:44.875315" +} diff --git a/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-id-128gb-1915/score/index.json b/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-id-128gb-1915/score/index.json new file mode 100644 index 00000000000..75901685f4e --- /dev/null +++ b/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-id-128gb-1915/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 1.5, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-in-pk-128gb-1915/index.json b/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-in-pk-128gb-1915/index.json new file mode 100644 index 00000000000..01530072742 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-in-pk-128gb-1915/index.json @@ -0,0 +1,76 @@ +{ + "id": 5289, + "slug": "vivo-y19-2019-dual-sim-td-lte-in-pk-128gb-1915", + "name": "Vivo Y19 2019 Dual SIM TD-LTE IN PK 128GB 1915", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 52, + "slug": "helio-p65", + "name": "Helio P65", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-p65" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.876310", + "updated_at": "2026-06-19T00:43:44.876310" +} diff --git a/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-in-pk-128gb-1915/score/index.json b/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-in-pk-128gb-1915/score/index.json new file mode 100644 index 00000000000..709f063009b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-in-pk-128gb-1915/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-km-128gb-1915/index.json b/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-km-128gb-1915/index.json new file mode 100644 index 00000000000..e7ec51f47cb --- /dev/null +++ b/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-km-128gb-1915/index.json @@ -0,0 +1,76 @@ +{ + "id": 5290, + "slug": "vivo-y19-2019-dual-sim-td-lte-km-128gb-1915", + "name": "Vivo Y19 2019 Dual SIM TD-LTE KM 128GB 1915", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 52, + "slug": "helio-p65", + "name": "Helio P65", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-p65" + }, + "release_date": "2019-11-06", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.876310", + "updated_at": "2026-06-19T00:43:44.876310" +} diff --git a/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-km-128gb-1915/score/index.json b/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-km-128gb-1915/score/index.json new file mode 100644 index 00000000000..709f063009b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-km-128gb-1915/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-my-np-bd-128gb-1915/index.json b/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-my-np-bd-128gb-1915/index.json new file mode 100644 index 00000000000..3115058f839 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-my-np-bd-128gb-1915/index.json @@ -0,0 +1,76 @@ +{ + "id": 5291, + "slug": "vivo-y19-2019-dual-sim-td-lte-my-np-bd-128gb-1915", + "name": "Vivo Y19 2019 Dual SIM TD-LTE MY NP BD 128GB 1915", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 52, + "slug": "helio-p65", + "name": "Helio P65", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-p65" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 1.5, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.876310", + "updated_at": "2026-06-19T00:43:44.876310" +} diff --git a/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-my-np-bd-128gb-1915/score/index.json b/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-my-np-bd-128gb-1915/score/index.json new file mode 100644 index 00000000000..75901685f4e --- /dev/null +++ b/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-my-np-bd-128gb-1915/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 1.5, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-th-ph-128gb-1915/index.json b/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-th-ph-128gb-1915/index.json new file mode 100644 index 00000000000..bed1b60d7ab --- /dev/null +++ b/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-th-ph-128gb-1915/index.json @@ -0,0 +1,76 @@ +{ + "id": 5292, + "slug": "vivo-y19-2019-dual-sim-td-lte-th-ph-128gb-1915", + "name": "Vivo Y19 2019 Dual SIM TD-LTE TH PH 128GB 1915", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 52, + "slug": "helio-p65", + "name": "Helio P65", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-p65" + }, + "release_date": "2019-11-06", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 1.5, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.876310", + "updated_at": "2026-06-19T00:43:44.876310" +} diff --git a/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-th-ph-128gb-1915/score/index.json b/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-th-ph-128gb-1915/score/index.json new file mode 100644 index 00000000000..75901685f4e --- /dev/null +++ b/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-th-ph-128gb-1915/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 1.5, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-tw-sg-128gb-1915/index.json b/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-tw-sg-128gb-1915/index.json new file mode 100644 index 00000000000..71888f0d8ae --- /dev/null +++ b/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-tw-sg-128gb-1915/index.json @@ -0,0 +1,76 @@ +{ + "id": 5293, + "slug": "vivo-y19-2019-dual-sim-td-lte-tw-sg-128gb-1915", + "name": "Vivo Y19 2019 Dual SIM TD-LTE TW SG 128GB 1915", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 52, + "slug": "helio-p65", + "name": "Helio P65", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-p65" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 1.5, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.877314", + "updated_at": "2026-06-19T00:43:44.877314" +} diff --git a/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-tw-sg-128gb-1915/score/index.json b/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-tw-sg-128gb-1915/score/index.json new file mode 100644 index 00000000000..75901685f4e --- /dev/null +++ b/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-tw-sg-128gb-1915/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 1.5, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-vn-128gb-1915/index.json b/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-vn-128gb-1915/index.json new file mode 100644 index 00000000000..64860e6edd1 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-vn-128gb-1915/index.json @@ -0,0 +1,76 @@ +{ + "id": 5294, + "slug": "vivo-y19-2019-dual-sim-td-lte-vn-128gb-1915", + "name": "Vivo Y19 2019 Dual SIM TD-LTE VN 128GB 1915", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 52, + "slug": "helio-p65", + "name": "Helio P65", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-p65" + }, + "release_date": "2019-11-06", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 1.5, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.877314", + "updated_at": "2026-06-19T00:43:44.877314" +} diff --git a/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-vn-128gb-1915/score/index.json b/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-vn-128gb-1915/score/index.json new file mode 100644 index 00000000000..75901685f4e --- /dev/null +++ b/site/public/v1/smartphones/vivo-y19-2019-dual-sim-td-lte-vn-128gb-1915/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 1.5, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y19-2019-global-dual-sim-td-lte-128gb-1915/index.json b/site/public/v1/smartphones/vivo-y19-2019-global-dual-sim-td-lte-128gb-1915/index.json new file mode 100644 index 00000000000..c4c3e6949ff --- /dev/null +++ b/site/public/v1/smartphones/vivo-y19-2019-global-dual-sim-td-lte-128gb-1915/index.json @@ -0,0 +1,76 @@ +{ + "id": 5295, + "slug": "vivo-y19-2019-global-dual-sim-td-lte-128gb-1915", + "name": "Vivo Y19 2019 Global Dual SIM TD-LTE 128GB 1915", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 52, + "slug": "helio-p65", + "name": "Helio P65", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-p65" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.877314", + "updated_at": "2026-06-19T00:43:44.877314" +} diff --git a/site/public/v1/smartphones/vivo-y19-2019-global-dual-sim-td-lte-128gb-1915/score/index.json b/site/public/v1/smartphones/vivo-y19-2019-global-dual-sim-td-lte-128gb-1915/score/index.json new file mode 100644 index 00000000000..709f063009b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y19-2019-global-dual-sim-td-lte-128gb-1915/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y1s-2020-premium-edition-global-dual-sim-td-lte-v3-32gb/index.json b/site/public/v1/smartphones/vivo-y1s-2020-premium-edition-global-dual-sim-td-lte-v3-32gb/index.json new file mode 100644 index 00000000000..75e1c784224 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y1s-2020-premium-edition-global-dual-sim-td-lte-v3-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5403, + "slug": "vivo-y1s-2020-premium-edition-global-dual-sim-td-lte-v3-32gb", + "name": "Vivo Y1s 2020 Premium Edition Global Dual SIM TD-LTE V3 32GB", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-08-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 276 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4030, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 161.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.890311", + "updated_at": "2026-06-19T00:43:44.890311" +} diff --git a/site/public/v1/smartphones/vivo-y1s-2020-premium-edition-global-dual-sim-td-lte-v3-32gb/score/index.json b/site/public/v1/smartphones/vivo-y1s-2020-premium-edition-global-dual-sim-td-lte-v3-32gb/score/index.json new file mode 100644 index 00000000000..b03e6ec830f --- /dev/null +++ b/site/public/v1/smartphones/vivo-y1s-2020-premium-edition-global-dual-sim-td-lte-v3-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y1s-2020-standard-edition-dual-sim-td-lte-v1-kh-32gb/index.json b/site/public/v1/smartphones/vivo-y1s-2020-standard-edition-dual-sim-td-lte-v1-kh-32gb/index.json new file mode 100644 index 00000000000..1737f66ce2b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y1s-2020-standard-edition-dual-sim-td-lte-v1-kh-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5404, + "slug": "vivo-y1s-2020-standard-edition-dual-sim-td-lte-v1-kh-32gb", + "name": "Vivo Y1s 2020 Standard Edition Dual SIM TD-LTE V1 KH 32GB", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-08-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 276 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4030, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 161.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.890311", + "updated_at": "2026-06-19T00:43:44.890311" +} diff --git a/site/public/v1/smartphones/vivo-y1s-2020-standard-edition-dual-sim-td-lte-v1-kh-32gb/score/index.json b/site/public/v1/smartphones/vivo-y1s-2020-standard-edition-dual-sim-td-lte-v1-kh-32gb/score/index.json new file mode 100644 index 00000000000..b03e6ec830f --- /dev/null +++ b/site/public/v1/smartphones/vivo-y1s-2020-standard-edition-dual-sim-td-lte-v1-kh-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y1s-2020-standard-edition-dual-sim-td-lte-v2-vn-32gb/index.json b/site/public/v1/smartphones/vivo-y1s-2020-standard-edition-dual-sim-td-lte-v2-vn-32gb/index.json new file mode 100644 index 00000000000..d3c50599029 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y1s-2020-standard-edition-dual-sim-td-lte-v2-vn-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5405, + "slug": "vivo-y1s-2020-standard-edition-dual-sim-td-lte-v2-vn-32gb", + "name": "Vivo Y1s 2020 Standard Edition Dual SIM TD-LTE V2 VN 32GB", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-08-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 276 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4030, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 161.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.891308", + "updated_at": "2026-06-19T00:43:44.891308" +} diff --git a/site/public/v1/smartphones/vivo-y1s-2020-standard-edition-dual-sim-td-lte-v2-vn-32gb/score/index.json b/site/public/v1/smartphones/vivo-y1s-2020-standard-edition-dual-sim-td-lte-v2-vn-32gb/score/index.json new file mode 100644 index 00000000000..b03e6ec830f --- /dev/null +++ b/site/public/v1/smartphones/vivo-y1s-2020-standard-edition-dual-sim-td-lte-v2-vn-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y20-2021-dual-sim-td-lte-v2-my-bd-64gb/index.json b/site/public/v1/smartphones/vivo-y20-2021-dual-sim-td-lte-v2-my-bd-64gb/index.json new file mode 100644 index 00000000000..dab5dcebf43 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y20-2021-dual-sim-td-lte-v2-my-bd-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5512, + "slug": "vivo-y20-2021-dual-sim-td-lte-v2-my-bd-64gb", + "name": "Vivo Y20 2021 Dual SIM TD-LTE V2 MY BD 64GB", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2021-01-04", + "msrp_usd": 599, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 47.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.903307", + "updated_at": "2026-06-19T00:43:44.903307" +} diff --git a/site/public/v1/smartphones/vivo-y20-2021-dual-sim-td-lte-v2-my-bd-64gb/score/index.json b/site/public/v1/smartphones/vivo-y20-2021-dual-sim-td-lte-v2-my-bd-64gb/score/index.json new file mode 100644 index 00000000000..c605cf58b78 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y20-2021-dual-sim-td-lte-v2-my-bd-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 47.3 +} diff --git a/site/public/v1/smartphones/vivo-y20a-dual-sim-td-lte-v1-in-v2052-v2034/index.json b/site/public/v1/smartphones/vivo-y20a-dual-sim-td-lte-v1-in-v2052-v2034/index.json new file mode 100644 index 00000000000..81ec8ca19b2 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y20a-dual-sim-td-lte-v1-in-v2052-v2034/index.json @@ -0,0 +1,76 @@ +{ + "id": 5406, + "slug": "vivo-y20a-dual-sim-td-lte-v1-in-v2052-v2034", + "name": "Vivo Y20A Dual SIM TD-LTE V1 IN V2052 / V2034", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2020-12-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.891308", + "updated_at": "2026-06-19T00:43:44.891308" +} diff --git a/site/public/v1/smartphones/vivo-y20a-dual-sim-td-lte-v1-in-v2052-v2034/score/index.json b/site/public/v1/smartphones/vivo-y20a-dual-sim-td-lte-v1-in-v2052-v2034/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y20a-dual-sim-td-lte-v1-in-v2052-v2034/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y20g-2021-dual-sim-td-lte-in-64gb-v2065/index.json b/site/public/v1/smartphones/vivo-y20g-2021-dual-sim-td-lte-in-64gb-v2065/index.json new file mode 100644 index 00000000000..7a9905dce78 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y20g-2021-dual-sim-td-lte-in-64gb-v2065/index.json @@ -0,0 +1,76 @@ +{ + "id": 5513, + "slug": "vivo-y20g-2021-dual-sim-td-lte-in-64gb-v2065", + "name": "Vivo Y20G 2021 Dual SIM TD-LTE IN 64GB V2065", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2021-03-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 192.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.903307", + "updated_at": "2026-06-19T00:43:44.903307" +} diff --git a/site/public/v1/smartphones/vivo-y20g-2021-dual-sim-td-lte-in-64gb-v2065/score/index.json b/site/public/v1/smartphones/vivo-y20g-2021-dual-sim-td-lte-in-64gb-v2065/score/index.json new file mode 100644 index 00000000000..d588f205b30 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y20g-2021-dual-sim-td-lte-in-64gb-v2065/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y20g-dual-sim-td-lte-in-128gb-v2037/index.json b/site/public/v1/smartphones/vivo-y20g-dual-sim-td-lte-in-128gb-v2037/index.json new file mode 100644 index 00000000000..e9bfbfb6895 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y20g-dual-sim-td-lte-in-128gb-v2037/index.json @@ -0,0 +1,76 @@ +{ + "id": 5407, + "slug": "vivo-y20g-dual-sim-td-lte-in-128gb-v2037", + "name": "Vivo Y20G Dual SIM TD-LTE IN 128GB V2037", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2020-12-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 192.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 1.5, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.891308", + "updated_at": "2026-06-19T00:43:44.891308" +} diff --git a/site/public/v1/smartphones/vivo-y20g-dual-sim-td-lte-in-128gb-v2037/score/index.json b/site/public/v1/smartphones/vivo-y20g-dual-sim-td-lte-in-128gb-v2037/score/index.json new file mode 100644 index 00000000000..c4e041ac43b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y20g-dual-sim-td-lte-in-128gb-v2037/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 1.5, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y20g-dual-sim-td-lte-in-64gb-v2037/index.json b/site/public/v1/smartphones/vivo-y20g-dual-sim-td-lte-in-64gb-v2037/index.json new file mode 100644 index 00000000000..5dee5cd8eb8 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y20g-dual-sim-td-lte-in-64gb-v2037/index.json @@ -0,0 +1,76 @@ +{ + "id": 5408, + "slug": "vivo-y20g-dual-sim-td-lte-in-64gb-v2037", + "name": "Vivo Y20G Dual SIM TD-LTE IN 64GB V2037", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2020-12-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 192.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.891308", + "updated_at": "2026-06-19T00:43:44.891308" +} diff --git a/site/public/v1/smartphones/vivo-y20g-dual-sim-td-lte-in-64gb-v2037/score/index.json b/site/public/v1/smartphones/vivo-y20g-dual-sim-td-lte-in-64gb-v2037/score/index.json new file mode 100644 index 00000000000..d588f205b30 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y20g-dual-sim-td-lte-in-64gb-v2037/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y20i-2020-dual-sim-td-lte-v1-in-64gb-v2027/index.json b/site/public/v1/smartphones/vivo-y20i-2020-dual-sim-td-lte-v1-in-64gb-v2027/index.json new file mode 100644 index 00000000000..0ccebb6655a --- /dev/null +++ b/site/public/v1/smartphones/vivo-y20i-2020-dual-sim-td-lte-v1-in-64gb-v2027/index.json @@ -0,0 +1,76 @@ +{ + "id": 5409, + "slug": "vivo-y20i-2020-dual-sim-td-lte-v1-in-64gb-v2027", + "name": "Vivo Y20i 2020 Dual SIM TD-LTE V1 IN 64GB V2027", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2020-11-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 192.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.891308", + "updated_at": "2026-06-19T00:43:44.891308" +} diff --git a/site/public/v1/smartphones/vivo-y20i-2020-dual-sim-td-lte-v1-in-64gb-v2027/score/index.json b/site/public/v1/smartphones/vivo-y20i-2020-dual-sim-td-lte-v1-in-64gb-v2027/score/index.json new file mode 100644 index 00000000000..d588f205b30 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y20i-2020-dual-sim-td-lte-v1-in-64gb-v2027/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y20i-2020-dual-sim-td-lte-v2-ph-64gb/index.json b/site/public/v1/smartphones/vivo-y20i-2020-dual-sim-td-lte-v2-ph-64gb/index.json new file mode 100644 index 00000000000..0ad67efc29b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y20i-2020-dual-sim-td-lte-v2-ph-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5410, + "slug": "vivo-y20i-2020-dual-sim-td-lte-v2-ph-64gb", + "name": "Vivo Y20i 2020 Dual SIM TD-LTE V2 PH 64GB", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2020-10-09", + "msrp_usd": 154, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 192.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": 58.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.891308", + "updated_at": "2026-06-19T00:43:44.891308" +} diff --git a/site/public/v1/smartphones/vivo-y20i-2020-dual-sim-td-lte-v2-ph-64gb/score/index.json b/site/public/v1/smartphones/vivo-y20i-2020-dual-sim-td-lte-v2-ph-64gb/score/index.json new file mode 100644 index 00000000000..6fade42125e --- /dev/null +++ b/site/public/v1/smartphones/vivo-y20i-2020-dual-sim-td-lte-v2-ph-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": 58.9 +} diff --git a/site/public/v1/smartphones/vivo-y20s-2020-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/vivo-y20s-2020-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..883ab60bc55 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y20s-2020-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5411, + "slug": "vivo-y20s-2020-global-dual-sim-td-lte-128gb", + "name": "Vivo Y20s 2020 Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 140, + "slug": "snapdragon-460", + "name": "Snapdragon 460", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-460" + }, + "release_date": "2020-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 192.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.891308", + "updated_at": "2026-06-19T00:43:44.891308" +} diff --git a/site/public/v1/smartphones/vivo-y20s-2020-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/vivo-y20s-2020-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..d588f205b30 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y20s-2020-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y21-2021-dual-sim-td-lte-in-128gb-v2111/index.json b/site/public/v1/smartphones/vivo-y21-2021-dual-sim-td-lte-in-128gb-v2111/index.json new file mode 100644 index 00000000000..3ddbd361d53 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y21-2021-dual-sim-td-lte-in-128gb-v2111/index.json @@ -0,0 +1,76 @@ +{ + "id": 5514, + "slug": "vivo-y21-2021-dual-sim-td-lte-in-128gb-v2111", + "name": "Vivo Y21 2021 Dual SIM TD-LTE IN 128GB V2111", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2021-09-04", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.904307", + "updated_at": "2026-06-19T00:43:44.904307" +} diff --git a/site/public/v1/smartphones/vivo-y21-2021-dual-sim-td-lte-in-128gb-v2111/score/index.json b/site/public/v1/smartphones/vivo-y21-2021-dual-sim-td-lte-in-128gb-v2111/score/index.json new file mode 100644 index 00000000000..d588f205b30 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y21-2021-dual-sim-td-lte-in-128gb-v2111/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y21-2021-dual-sim-td-lte-in-64gb-v2111/index.json b/site/public/v1/smartphones/vivo-y21-2021-dual-sim-td-lte-in-64gb-v2111/index.json new file mode 100644 index 00000000000..3062b7b5652 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y21-2021-dual-sim-td-lte-in-64gb-v2111/index.json @@ -0,0 +1,76 @@ +{ + "id": 5515, + "slug": "vivo-y21-2021-dual-sim-td-lte-in-64gb-v2111", + "name": "Vivo Y21 2021 Dual SIM TD-LTE IN 64GB V2111", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2021-09-04", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.904307", + "updated_at": "2026-06-19T00:43:44.904307" +} diff --git a/site/public/v1/smartphones/vivo-y21-2021-dual-sim-td-lte-in-64gb-v2111/score/index.json b/site/public/v1/smartphones/vivo-y21-2021-dual-sim-td-lte-in-64gb-v2111/score/index.json new file mode 100644 index 00000000000..d588f205b30 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y21-2021-dual-sim-td-lte-in-64gb-v2111/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y21s-2021-premium-edition-dual-sim-td-lte-vn-v3-v2110/index.json b/site/public/v1/smartphones/vivo-y21s-2021-premium-edition-dual-sim-td-lte-vn-v3-v2110/index.json new file mode 100644 index 00000000000..2d70bbc79e2 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y21s-2021-premium-edition-dual-sim-td-lte-vn-v3-v2110/index.json @@ -0,0 +1,77 @@ +{ + "id": 5516, + "slug": "vivo-y21s-2021-premium-edition-dual-sim-td-lte-vn-v3-v2110", + "name": "Vivo Y21s 2021 Premium Edition Dual SIM TD-LTE VN V3 V2110", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2021-10-12", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 1.5, + "camera": 17.2, + "battery": 30.6, + "display": 27.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.904307", + "updated_at": "2026-06-19T00:43:44.904307" +} diff --git a/site/public/v1/smartphones/vivo-y21s-2021-premium-edition-dual-sim-td-lte-vn-v3-v2110/score/index.json b/site/public/v1/smartphones/vivo-y21s-2021-premium-edition-dual-sim-td-lte-vn-v3-v2110/score/index.json new file mode 100644 index 00000000000..1df6428494e --- /dev/null +++ b/site/public/v1/smartphones/vivo-y21s-2021-premium-edition-dual-sim-td-lte-vn-v3-v2110/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 1.5, + "camera": 17.2, + "battery": 30.6, + "display": 27.6, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y21s-2021-standard-edition-dual-sim-td-lte-au-v4-v2110/index.json b/site/public/v1/smartphones/vivo-y21s-2021-standard-edition-dual-sim-td-lte-au-v4-v2110/index.json new file mode 100644 index 00000000000..fed1a395f41 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y21s-2021-standard-edition-dual-sim-td-lte-au-v4-v2110/index.json @@ -0,0 +1,77 @@ +{ + "id": 5517, + "slug": "vivo-y21s-2021-standard-edition-dual-sim-td-lte-au-v4-v2110", + "name": "Vivo Y21s 2021 Standard Edition Dual SIM TD-LTE AU V4 V2110", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2021-10-01", + "msrp_usd": 199, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 3.0, + "camera": 17.2, + "battery": 30.6, + "display": 27.6, + "value": 59.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.904307", + "updated_at": "2026-06-19T00:43:44.904307" +} diff --git a/site/public/v1/smartphones/vivo-y21s-2021-standard-edition-dual-sim-td-lte-au-v4-v2110/score/index.json b/site/public/v1/smartphones/vivo-y21s-2021-standard-edition-dual-sim-td-lte-au-v4-v2110/score/index.json new file mode 100644 index 00000000000..bddbd82e94b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y21s-2021-standard-edition-dual-sim-td-lte-au-v4-v2110/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 3.0, + "camera": 17.2, + "battery": 30.6, + "display": 27.6, + "value": 59.8 +} diff --git a/site/public/v1/smartphones/vivo-y21s-2021-standard-edition-dual-sim-td-lte-id-v1-v2110/index.json b/site/public/v1/smartphones/vivo-y21s-2021-standard-edition-dual-sim-td-lte-id-v1-v2110/index.json new file mode 100644 index 00000000000..0757ee2d549 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y21s-2021-standard-edition-dual-sim-td-lte-id-v1-v2110/index.json @@ -0,0 +1,77 @@ +{ + "id": 5518, + "slug": "vivo-y21s-2021-standard-edition-dual-sim-td-lte-id-v1-v2110", + "name": "Vivo Y21s 2021 Standard Edition Dual SIM TD-LTE ID V1 V2110", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2021-10-12", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 3.0, + "camera": 17.2, + "battery": 30.6, + "display": 27.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.904307", + "updated_at": "2026-06-19T00:43:44.904307" +} diff --git a/site/public/v1/smartphones/vivo-y21s-2021-standard-edition-dual-sim-td-lte-id-v1-v2110/score/index.json b/site/public/v1/smartphones/vivo-y21s-2021-standard-edition-dual-sim-td-lte-id-v1-v2110/score/index.json new file mode 100644 index 00000000000..848ce09c753 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y21s-2021-standard-edition-dual-sim-td-lte-id-v1-v2110/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 3.0, + "camera": 17.2, + "battery": 30.6, + "display": 27.6, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y21s-2021-standard-edition-dual-sim-td-lte-vn-sg-v3-v2110/index.json b/site/public/v1/smartphones/vivo-y21s-2021-standard-edition-dual-sim-td-lte-vn-sg-v3-v2110/index.json new file mode 100644 index 00000000000..7d497099019 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y21s-2021-standard-edition-dual-sim-td-lte-vn-sg-v3-v2110/index.json @@ -0,0 +1,77 @@ +{ + "id": 5519, + "slug": "vivo-y21s-2021-standard-edition-dual-sim-td-lte-vn-sg-v3-v2110", + "name": "Vivo Y21s 2021 Standard Edition Dual SIM TD-LTE VN SG V3 V2110", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2021-10-12", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 3.0, + "camera": 17.2, + "battery": 30.6, + "display": 27.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.904307", + "updated_at": "2026-06-19T00:43:44.904307" +} diff --git a/site/public/v1/smartphones/vivo-y21s-2021-standard-edition-dual-sim-td-lte-vn-sg-v3-v2110/score/index.json b/site/public/v1/smartphones/vivo-y21s-2021-standard-edition-dual-sim-td-lte-vn-sg-v3-v2110/score/index.json new file mode 100644 index 00000000000..848ce09c753 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y21s-2021-standard-edition-dual-sim-td-lte-vn-sg-v3-v2110/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 3.0, + "camera": 17.2, + "battery": 30.6, + "display": 27.6, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y3-2019-dual-sim-td-lte-cn-128gb-v1901a/index.json b/site/public/v1/smartphones/vivo-y3-2019-dual-sim-td-lte-cn-128gb-v1901a/index.json new file mode 100644 index 00000000000..a25054e8d16 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y3-2019-dual-sim-td-lte-cn-128gb-v1901a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5296, + "slug": "vivo-y3-2019-dual-sim-td-lte-cn-128gb-v1901a", + "name": "Vivo Y3 2019 Dual SIM TD-LTE CN 128GB V1901A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.877314", + "updated_at": "2026-06-19T00:43:44.877314" +} diff --git a/site/public/v1/smartphones/vivo-y3-2019-dual-sim-td-lte-cn-128gb-v1901a/score/index.json b/site/public/v1/smartphones/vivo-y3-2019-dual-sim-td-lte-cn-128gb-v1901a/score/index.json new file mode 100644 index 00000000000..d588f205b30 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y3-2019-dual-sim-td-lte-cn-128gb-v1901a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y3-2019-dual-sim-td-lte-cn-128gb-v1901t/index.json b/site/public/v1/smartphones/vivo-y3-2019-dual-sim-td-lte-cn-128gb-v1901t/index.json new file mode 100644 index 00000000000..5f2867b2722 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y3-2019-dual-sim-td-lte-cn-128gb-v1901t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5297, + "slug": "vivo-y3-2019-dual-sim-td-lte-cn-128gb-v1901t", + "name": "Vivo Y3 2019 Dual SIM TD-LTE CN 128GB V1901T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.877314", + "updated_at": "2026-06-19T00:43:44.877314" +} diff --git a/site/public/v1/smartphones/vivo-y3-2019-dual-sim-td-lte-cn-128gb-v1901t/score/index.json b/site/public/v1/smartphones/vivo-y3-2019-dual-sim-td-lte-cn-128gb-v1901t/score/index.json new file mode 100644 index 00000000000..d588f205b30 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y3-2019-dual-sim-td-lte-cn-128gb-v1901t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.7, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y30-2020-dual-sim-td-lte-v1-in-id-pk-mn-128gb-1938/index.json b/site/public/v1/smartphones/vivo-y30-2020-dual-sim-td-lte-v1-in-id-pk-mn-128gb-1938/index.json new file mode 100644 index 00000000000..57714586011 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y30-2020-dual-sim-td-lte-v1-in-id-pk-mn-128gb-1938/index.json @@ -0,0 +1,76 @@ +{ + "id": 5412, + "slug": "vivo-y30-2020-dual-sim-td-lte-v1-in-id-pk-mn-128gb-1938", + "name": "Vivo Y30 2020 Dual SIM TD-LTE V1 IN ID PK MN 128GB 1938", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-05-07", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.892307", + "updated_at": "2026-06-19T00:43:44.892307" +} diff --git a/site/public/v1/smartphones/vivo-y30-2020-dual-sim-td-lte-v1-in-id-pk-mn-128gb-1938/score/index.json b/site/public/v1/smartphones/vivo-y30-2020-dual-sim-td-lte-v1-in-id-pk-mn-128gb-1938/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y30-2020-dual-sim-td-lte-v1-in-id-pk-mn-128gb-1938/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y30-2020-dual-sim-td-lte-v1-in-id-pk-mn-64gb-1938/index.json b/site/public/v1/smartphones/vivo-y30-2020-dual-sim-td-lte-v1-in-id-pk-mn-64gb-1938/index.json new file mode 100644 index 00000000000..1ff35c34a33 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y30-2020-dual-sim-td-lte-v1-in-id-pk-mn-64gb-1938/index.json @@ -0,0 +1,76 @@ +{ + "id": 5413, + "slug": "vivo-y30-2020-dual-sim-td-lte-v1-in-id-pk-mn-64gb-1938", + "name": "Vivo Y30 2020 Dual SIM TD-LTE V1 IN ID PK MN 64GB 1938", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-05-07", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.47, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.892307", + "updated_at": "2026-06-19T00:43:44.892307" +} diff --git a/site/public/v1/smartphones/vivo-y30-2020-dual-sim-td-lte-v1-in-id-pk-mn-64gb-1938/score/index.json b/site/public/v1/smartphones/vivo-y30-2020-dual-sim-td-lte-v1-in-id-pk-mn-64gb-1938/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y30-2020-dual-sim-td-lte-v1-in-id-pk-mn-64gb-1938/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y30-2020-dual-sim-td-lte-v2-my-sg-vn-np-bd-128gb-1938/index.json b/site/public/v1/smartphones/vivo-y30-2020-dual-sim-td-lte-v2-my-sg-vn-np-bd-128gb-1938/index.json new file mode 100644 index 00000000000..16a506a9824 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y30-2020-dual-sim-td-lte-v2-my-sg-vn-np-bd-128gb-1938/index.json @@ -0,0 +1,76 @@ +{ + "id": 5414, + "slug": "vivo-y30-2020-dual-sim-td-lte-v2-my-sg-vn-np-bd-128gb-1938", + "name": "Vivo Y30 2020 Dual SIM TD-LTE V2 MY SG VN NP BD 128GB 1938", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-05-09", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.892307", + "updated_at": "2026-06-19T00:43:44.892307" +} diff --git a/site/public/v1/smartphones/vivo-y30-2020-dual-sim-td-lte-v2-my-sg-vn-np-bd-128gb-1938/score/index.json b/site/public/v1/smartphones/vivo-y30-2020-dual-sim-td-lte-v2-my-sg-vn-np-bd-128gb-1938/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y30-2020-dual-sim-td-lte-v2-my-sg-vn-np-bd-128gb-1938/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y30-2020-dual-sim-td-lte-v2-my-sg-vn-np-bd-64gb-1938/index.json b/site/public/v1/smartphones/vivo-y30-2020-dual-sim-td-lte-v2-my-sg-vn-np-bd-64gb-1938/index.json new file mode 100644 index 00000000000..e9647cdbbfb --- /dev/null +++ b/site/public/v1/smartphones/vivo-y30-2020-dual-sim-td-lte-v2-my-sg-vn-np-bd-64gb-1938/index.json @@ -0,0 +1,76 @@ +{ + "id": 5415, + "slug": "vivo-y30-2020-dual-sim-td-lte-v2-my-sg-vn-np-bd-64gb-1938", + "name": "Vivo Y30 2020 Dual SIM TD-LTE V2 MY SG VN NP BD 64GB 1938", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.47, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.892307", + "updated_at": "2026-06-19T00:43:44.892307" +} diff --git a/site/public/v1/smartphones/vivo-y30-2020-dual-sim-td-lte-v2-my-sg-vn-np-bd-64gb-1938/score/index.json b/site/public/v1/smartphones/vivo-y30-2020-dual-sim-td-lte-v2-my-sg-vn-np-bd-64gb-1938/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y30-2020-dual-sim-td-lte-v2-my-sg-vn-np-bd-64gb-1938/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y30-2020-dual-sim-td-lte-v3-th-128gb-1938/index.json b/site/public/v1/smartphones/vivo-y30-2020-dual-sim-td-lte-v3-th-128gb-1938/index.json new file mode 100644 index 00000000000..6407efeeb77 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y30-2020-dual-sim-td-lte-v3-th-128gb-1938/index.json @@ -0,0 +1,76 @@ +{ + "id": 5416, + "slug": "vivo-y30-2020-dual-sim-td-lte-v3-th-128gb-1938", + "name": "Vivo Y30 2020 Dual SIM TD-LTE V3 TH 128GB 1938", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-05-07", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.892307", + "updated_at": "2026-06-19T00:43:44.892307" +} diff --git a/site/public/v1/smartphones/vivo-y30-2020-dual-sim-td-lte-v3-th-128gb-1938/score/index.json b/site/public/v1/smartphones/vivo-y30-2020-dual-sim-td-lte-v3-th-128gb-1938/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y30-2020-dual-sim-td-lte-v3-th-128gb-1938/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y30-2020-global-dual-sim-td-lte-v4-128gb-1938/index.json b/site/public/v1/smartphones/vivo-y30-2020-global-dual-sim-td-lte-v4-128gb-1938/index.json new file mode 100644 index 00000000000..3258c6408e5 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y30-2020-global-dual-sim-td-lte-v4-128gb-1938/index.json @@ -0,0 +1,76 @@ +{ + "id": 5417, + "slug": "vivo-y30-2020-global-dual-sim-td-lte-v4-128gb-1938", + "name": "Vivo Y30 2020 Global Dual SIM TD-LTE V4 128GB 1938", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.47, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.892307", + "updated_at": "2026-06-19T00:43:44.892307" +} diff --git a/site/public/v1/smartphones/vivo-y30-2020-global-dual-sim-td-lte-v4-128gb-1938/score/index.json b/site/public/v1/smartphones/vivo-y30-2020-global-dual-sim-td-lte-v4-128gb-1938/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y30-2020-global-dual-sim-td-lte-v4-128gb-1938/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y30-2021-premium-edition-dual-sim-td-lte-cn-128gb-v2099a/index.json b/site/public/v1/smartphones/vivo-y30-2021-premium-edition-dual-sim-td-lte-cn-128gb-v2099a/index.json new file mode 100644 index 00000000000..0b22de52b45 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y30-2021-premium-edition-dual-sim-td-lte-cn-128gb-v2099a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5418, + "slug": "vivo-y30-2021-premium-edition-dual-sim-td-lte-cn-128gb-v2099a", + "name": "Vivo Y30 2021 Premium Edition Dual SIM TD-LTE CN 128GB V2099A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 141, + "slug": "snapdragon-662", + "name": "Snapdragon 662", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-662" + }, + "release_date": "2020-12-01", + "msrp_usd": 1498, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 192.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": 3.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": 13.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.892307", + "updated_at": "2026-06-19T00:43:44.892307" +} diff --git a/site/public/v1/smartphones/vivo-y30-2021-premium-edition-dual-sim-td-lte-cn-128gb-v2099a/score/index.json b/site/public/v1/smartphones/vivo-y30-2021-premium-edition-dual-sim-td-lte-cn-128gb-v2099a/score/index.json new file mode 100644 index 00000000000..27893877102 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y30-2021-premium-edition-dual-sim-td-lte-cn-128gb-v2099a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": 3.0, + "camera": 5.3, + "battery": 30.6, + "display": 35.0, + "value": 13.2 +} diff --git a/site/public/v1/smartphones/vivo-y30-standard-2020-dual-sim-td-lte-cn-v2036a/index.json b/site/public/v1/smartphones/vivo-y30-standard-2020-dual-sim-td-lte-cn-v2036a/index.json new file mode 100644 index 00000000000..8ea6e4d63dd --- /dev/null +++ b/site/public/v1/smartphones/vivo-y30-standard-2020-dual-sim-td-lte-cn-v2036a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5419, + "slug": "vivo-y30-standard-2020-dual-sim-td-lte-cn-v2036a", + "name": "Vivo Y30 Standard 2020 Dual SIM TD-LTE CN V2036A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-12-01", + "msrp_usd": 1398, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.51, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 191.4, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": 1.5, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 16.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.892307", + "updated_at": "2026-06-19T00:43:44.892307" +} diff --git a/site/public/v1/smartphones/vivo-y30-standard-2020-dual-sim-td-lte-cn-v2036a/score/index.json b/site/public/v1/smartphones/vivo-y30-standard-2020-dual-sim-td-lte-cn-v2036a/score/index.json new file mode 100644 index 00000000000..957a1b72eb3 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y30-standard-2020-dual-sim-td-lte-cn-v2036a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.9, + "performance": 1.5, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 16.7 +} diff --git a/site/public/v1/smartphones/vivo-y30i-2020-dual-sim-td-lte-v1-id-64gb-2019/index.json b/site/public/v1/smartphones/vivo-y30i-2020-dual-sim-td-lte-v1-id-64gb-2019/index.json new file mode 100644 index 00000000000..65a210e8d6c --- /dev/null +++ b/site/public/v1/smartphones/vivo-y30i-2020-dual-sim-td-lte-v1-id-64gb-2019/index.json @@ -0,0 +1,76 @@ +{ + "id": 5420, + "slug": "vivo-y30i-2020-dual-sim-td-lte-v1-id-64gb-2019", + "name": "Vivo Y30i 2020 Dual SIM TD-LTE V1 ID 64GB 2019", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.47, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 266 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.892307", + "updated_at": "2026-06-19T00:43:44.892307" +} diff --git a/site/public/v1/smartphones/vivo-y30i-2020-dual-sim-td-lte-v1-id-64gb-2019/score/index.json b/site/public/v1/smartphones/vivo-y30i-2020-dual-sim-td-lte-v1-id-64gb-2019/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y30i-2020-dual-sim-td-lte-v1-id-64gb-2019/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y31s-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2054a/index.json b/site/public/v1/smartphones/vivo-y31s-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2054a/index.json new file mode 100644 index 00000000000..6ef9a332ae5 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y31s-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2054a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5520, + "slug": "vivo-y31s-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2054a", + "name": "vivo Y31s 5G Premium Edition Dual SIM TD-LTE CN 128GB V2054A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-01-01", + "msrp_usd": 1698, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 185.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 5.3, + "battery": 30.6, + "display": 40.1, + "value": 9.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.904307", + "updated_at": "2026-06-19T00:43:44.904307" +} diff --git a/site/public/v1/smartphones/vivo-y31s-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2054a/score/index.json b/site/public/v1/smartphones/vivo-y31s-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2054a/score/index.json new file mode 100644 index 00000000000..62e507c19c1 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y31s-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2054a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 1.5, + "camera": 5.3, + "battery": 30.6, + "display": 40.1, + "value": 9.7 +} diff --git a/site/public/v1/smartphones/vivo-y31s-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2054a/index.json b/site/public/v1/smartphones/vivo-y31s-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2054a/index.json new file mode 100644 index 00000000000..33f8221a9a8 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y31s-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2054a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5521, + "slug": "vivo-y31s-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2054a", + "name": "vivo Y31s 5G Standard Edition Dual SIM TD-LTE CN 128GB V2054A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-01-01", + "msrp_usd": 1498, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 185.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 40.1, + "value": 13.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.904307", + "updated_at": "2026-06-19T00:43:44.904307" +} diff --git a/site/public/v1/smartphones/vivo-y31s-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2054a/score/index.json b/site/public/v1/smartphones/vivo-y31s-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2054a/score/index.json new file mode 100644 index 00000000000..aebd4fd5ed2 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y31s-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2054a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 0.0, + "camera": 5.3, + "battery": 30.6, + "display": 40.1, + "value": 13.4 +} diff --git a/site/public/v1/smartphones/vivo-y31s-standard-version-5g-dual-sim-td-lte-cn-128gb-v2068a-y31s-t2/index.json b/site/public/v1/smartphones/vivo-y31s-standard-version-5g-dual-sim-td-lte-cn-128gb-v2068a-y31s-t2/index.json new file mode 100644 index 00000000000..8ea4ce1cf4b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y31s-standard-version-5g-dual-sim-td-lte-cn-128gb-v2068a-y31s-t2/index.json @@ -0,0 +1,77 @@ +{ + "id": 5522, + "slug": "vivo-y31s-standard-version-5g-dual-sim-td-lte-cn-128gb-v2068a-y31s-t2", + "name": "Vivo Y31s standard version 5G Dual SIM TD-LTE CN 128GB V2068A / Y31s t2", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-06-01", + "msrp_usd": 1599, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 189.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.7, + "performance": 1.5, + "camera": 5.3, + "battery": 30.6, + "display": 17.5, + "value": 6.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.904307", + "updated_at": "2026-06-19T00:43:44.904307" +} diff --git a/site/public/v1/smartphones/vivo-y31s-standard-version-5g-dual-sim-td-lte-cn-128gb-v2068a-y31s-t2/score/index.json b/site/public/v1/smartphones/vivo-y31s-standard-version-5g-dual-sim-td-lte-cn-128gb-v2068a-y31s-t2/score/index.json new file mode 100644 index 00000000000..9d8de4c9c16 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y31s-standard-version-5g-dual-sim-td-lte-cn-128gb-v2068a-y31s-t2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.7, + "performance": 1.5, + "camera": 5.3, + "battery": 30.6, + "display": 17.5, + "value": 6.9 +} diff --git a/site/public/v1/smartphones/vivo-y31s-t1-version-5g-dual-sim-td-lte-cn-64gb-v2068a/index.json b/site/public/v1/smartphones/vivo-y31s-t1-version-5g-dual-sim-td-lte-cn-64gb-v2068a/index.json new file mode 100644 index 00000000000..e6db01620de --- /dev/null +++ b/site/public/v1/smartphones/vivo-y31s-t1-version-5g-dual-sim-td-lte-cn-64gb-v2068a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5523, + "slug": "vivo-y31s-t1-version-5g-dual-sim-td-lte-cn-64gb-v2068a", + "name": "Vivo Y31s t1 version 5G Dual SIM TD-LTE CN 64GB V2068A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-06-01", + "msrp_usd": 1399, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.52, + "resolution": "720x1600", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 189.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 17.5, + "value": 14.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.905307", + "updated_at": "2026-06-19T00:43:44.905307" +} diff --git a/site/public/v1/smartphones/vivo-y31s-t1-version-5g-dual-sim-td-lte-cn-64gb-v2068a/score/index.json b/site/public/v1/smartphones/vivo-y31s-t1-version-5g-dual-sim-td-lte-cn-64gb-v2068a/score/index.json new file mode 100644 index 00000000000..462b2fc339d --- /dev/null +++ b/site/public/v1/smartphones/vivo-y31s-t1-version-5g-dual-sim-td-lte-cn-64gb-v2068a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 17.5, + "value": 14.3 +} diff --git a/site/public/v1/smartphones/vivo-y33s-2021-premium-edition-dual-sim-td-lte-in-v2-v2109/index.json b/site/public/v1/smartphones/vivo-y33s-2021-premium-edition-dual-sim-td-lte-in-v2-v2109/index.json new file mode 100644 index 00000000000..85746ce615e --- /dev/null +++ b/site/public/v1/smartphones/vivo-y33s-2021-premium-edition-dual-sim-td-lte-in-v2-v2109/index.json @@ -0,0 +1,77 @@ +{ + "id": 5524, + "slug": "vivo-y33s-2021-premium-edition-dual-sim-td-lte-in-v2-v2109", + "name": "Vivo Y33s 2021 Premium Edition Dual SIM TD-LTE IN V2 V2109", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2021-10-12", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 50.1 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 182.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 3.0, + "camera": 17.2, + "battery": 30.6, + "display": 27.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.905307", + "updated_at": "2026-06-19T00:43:44.905307" +} diff --git a/site/public/v1/smartphones/vivo-y33s-2021-premium-edition-dual-sim-td-lte-in-v2-v2109/score/index.json b/site/public/v1/smartphones/vivo-y33s-2021-premium-edition-dual-sim-td-lte-in-v2-v2109/score/index.json new file mode 100644 index 00000000000..848ce09c753 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y33s-2021-premium-edition-dual-sim-td-lte-in-v2-v2109/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 3.0, + "camera": 17.2, + "battery": 30.6, + "display": 27.6, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y3n-2019-standard-edition-dual-sim-td-lte-cn-64gb-v1930a/index.json b/site/public/v1/smartphones/vivo-y3n-2019-standard-edition-dual-sim-td-lte-cn-64gb-v1930a/index.json new file mode 100644 index 00000000000..d7f7a5ce8f7 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y3n-2019-standard-edition-dual-sim-td-lte-cn-64gb-v1930a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5298, + "slug": "vivo-y3n-2019-standard-edition-dual-sim-td-lte-cn-64gb-v1930a", + "name": "Vivo Y3N 2019 Standard Edition Dual SIM TD-LTE CN 64GB V1930A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.35, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 191.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.877314", + "updated_at": "2026-06-19T00:43:44.877314" +} diff --git a/site/public/v1/smartphones/vivo-y3n-2019-standard-edition-dual-sim-td-lte-cn-64gb-v1930a/score/index.json b/site/public/v1/smartphones/vivo-y3n-2019-standard-edition-dual-sim-td-lte-cn-64gb-v1930a/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y3n-2019-standard-edition-dual-sim-td-lte-cn-64gb-v1930a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y3n-2019-standard-edition-dual-sim-td-lte-cn-64gb-v1930t/index.json b/site/public/v1/smartphones/vivo-y3n-2019-standard-edition-dual-sim-td-lte-cn-64gb-v1930t/index.json new file mode 100644 index 00000000000..43667d39e08 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y3n-2019-standard-edition-dual-sim-td-lte-cn-64gb-v1930t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5299, + "slug": "vivo-y3n-2019-standard-edition-dual-sim-td-lte-cn-64gb-v1930t", + "name": "Vivo Y3N 2019 Standard Edition Dual SIM TD-LTE CN 64GB V1930T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.35, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 191.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.877314", + "updated_at": "2026-06-19T00:43:44.877314" +} diff --git a/site/public/v1/smartphones/vivo-y3n-2019-standard-edition-dual-sim-td-lte-cn-64gb-v1930t/score/index.json b/site/public/v1/smartphones/vivo-y3n-2019-standard-edition-dual-sim-td-lte-cn-64gb-v1930t/score/index.json new file mode 100644 index 00000000000..15522b6f10b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y3n-2019-standard-edition-dual-sim-td-lte-cn-64gb-v1930t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y3s-2019-dual-sim-td-lte-cn-128gb-v1901a/index.json b/site/public/v1/smartphones/vivo-y3s-2019-dual-sim-td-lte-cn-128gb-v1901a/index.json new file mode 100644 index 00000000000..b1520eca637 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y3s-2019-dual-sim-td-lte-cn-128gb-v1901a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5421, + "slug": "vivo-y3s-2019-dual-sim-td-lte-cn-128gb-v1901a", + "name": "Vivo Y3s 2019 Dual SIM TD-LTE CN 128GB V1901A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-10-01", + "msrp_usd": 1198, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 190.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 24.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.893307", + "updated_at": "2026-06-19T00:43:44.893307" +} diff --git a/site/public/v1/smartphones/vivo-y3s-2019-dual-sim-td-lte-cn-128gb-v1901a/score/index.json b/site/public/v1/smartphones/vivo-y3s-2019-dual-sim-td-lte-cn-128gb-v1901a/score/index.json new file mode 100644 index 00000000000..677e9fc2d42 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y3s-2019-dual-sim-td-lte-cn-128gb-v1901a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 24.2 +} diff --git a/site/public/v1/smartphones/vivo-y3s-2019-dual-sim-td-lte-cn-128gb-v1901t/index.json b/site/public/v1/smartphones/vivo-y3s-2019-dual-sim-td-lte-cn-128gb-v1901t/index.json new file mode 100644 index 00000000000..f8a27c49dca --- /dev/null +++ b/site/public/v1/smartphones/vivo-y3s-2019-dual-sim-td-lte-cn-128gb-v1901t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5422, + "slug": "vivo-y3s-2019-dual-sim-td-lte-cn-128gb-v1901t", + "name": "Vivo Y3s 2019 Dual SIM TD-LTE CN 128GB V1901T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-10-01", + "msrp_usd": 1198, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 190.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 24.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.893307", + "updated_at": "2026-06-19T00:43:44.893307" +} diff --git a/site/public/v1/smartphones/vivo-y3s-2019-dual-sim-td-lte-cn-128gb-v1901t/score/index.json b/site/public/v1/smartphones/vivo-y3s-2019-dual-sim-td-lte-cn-128gb-v1901t/score/index.json new file mode 100644 index 00000000000..677e9fc2d42 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y3s-2019-dual-sim-td-lte-cn-128gb-v1901t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 24.2 +} diff --git a/site/public/v1/smartphones/vivo-y3s-2019-dual-sim-td-lte-cn-64gb-v1901a/index.json b/site/public/v1/smartphones/vivo-y3s-2019-dual-sim-td-lte-cn-64gb-v1901a/index.json new file mode 100644 index 00000000000..5235ad12f22 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y3s-2019-dual-sim-td-lte-cn-64gb-v1901a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5423, + "slug": "vivo-y3s-2019-dual-sim-td-lte-cn-64gb-v1901a", + "name": "Vivo Y3s 2019 Dual SIM TD-LTE CN 64GB V1901A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-10-01", + "msrp_usd": 1098, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 190.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 28.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.893307", + "updated_at": "2026-06-19T00:43:44.893307" +} diff --git a/site/public/v1/smartphones/vivo-y3s-2019-dual-sim-td-lte-cn-64gb-v1901a/score/index.json b/site/public/v1/smartphones/vivo-y3s-2019-dual-sim-td-lte-cn-64gb-v1901a/score/index.json new file mode 100644 index 00000000000..07e5b950df1 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y3s-2019-dual-sim-td-lte-cn-64gb-v1901a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 28.1 +} diff --git a/site/public/v1/smartphones/vivo-y3s-2019-dual-sim-td-lte-cn-64gb-v1901t/index.json b/site/public/v1/smartphones/vivo-y3s-2019-dual-sim-td-lte-cn-64gb-v1901t/index.json new file mode 100644 index 00000000000..a4450e22cbf --- /dev/null +++ b/site/public/v1/smartphones/vivo-y3s-2019-dual-sim-td-lte-cn-64gb-v1901t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5424, + "slug": "vivo-y3s-2019-dual-sim-td-lte-cn-64gb-v1901t", + "name": "Vivo Y3s 2019 Dual SIM TD-LTE CN 64GB V1901T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-10-01", + "msrp_usd": 1098, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.36, + "resolution": "720x1544", + "type": "Color IPS TFT LCD display", + "ppi": 268 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 190.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 28.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.893307", + "updated_at": "2026-06-19T00:43:44.893307" +} diff --git a/site/public/v1/smartphones/vivo-y3s-2019-dual-sim-td-lte-cn-64gb-v1901t/score/index.json b/site/public/v1/smartphones/vivo-y3s-2019-dual-sim-td-lte-cn-64gb-v1901t/score/index.json new file mode 100644 index 00000000000..07e5b950df1 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y3s-2019-dual-sim-td-lte-cn-64gb-v1901t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.6, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 28.1 +} diff --git a/site/public/v1/smartphones/vivo-y50-2020-dual-sim-td-lte-v1-in-id-128gb-1935/index.json b/site/public/v1/smartphones/vivo-y50-2020-dual-sim-td-lte-v1-in-id-128gb-1935/index.json new file mode 100644 index 00000000000..4fb9a761a17 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y50-2020-dual-sim-td-lte-v1-in-id-128gb-1935/index.json @@ -0,0 +1,76 @@ +{ + "id": 5425, + "slug": "vivo-y50-2020-dual-sim-td-lte-v1-in-id-128gb-1935", + "name": "Vivo Y50 2020 Dual SIM TD-LTE V1 IN ID 128GB 1935", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-06-09", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 3.0, + "camera": 5.4, + "battery": 30.0, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.893307", + "updated_at": "2026-06-19T00:43:44.893307" +} diff --git a/site/public/v1/smartphones/vivo-y50-2020-dual-sim-td-lte-v1-in-id-128gb-1935/score/index.json b/site/public/v1/smartphones/vivo-y50-2020-dual-sim-td-lte-v1-in-id-128gb-1935/score/index.json new file mode 100644 index 00000000000..f83da487854 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y50-2020-dual-sim-td-lte-v1-in-id-128gb-1935/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 3.0, + "camera": 5.4, + "battery": 30.0, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y50-2020-dual-sim-td-lte-v2-my-vn-bd-128gb-1935/index.json b/site/public/v1/smartphones/vivo-y50-2020-dual-sim-td-lte-v2-my-vn-bd-128gb-1935/index.json new file mode 100644 index 00000000000..79aef653e16 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y50-2020-dual-sim-td-lte-v2-my-vn-bd-128gb-1935/index.json @@ -0,0 +1,76 @@ +{ + "id": 5426, + "slug": "vivo-y50-2020-dual-sim-td-lte-v2-my-vn-bd-128gb-1935", + "name": "Vivo Y50 2020 Dual SIM TD-LTE V2 MY VN BD 128GB 1935", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 3.0, + "camera": 5.4, + "battery": 30.0, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.893307", + "updated_at": "2026-06-19T00:43:44.893307" +} diff --git a/site/public/v1/smartphones/vivo-y50-2020-dual-sim-td-lte-v2-my-vn-bd-128gb-1935/score/index.json b/site/public/v1/smartphones/vivo-y50-2020-dual-sim-td-lte-v2-my-vn-bd-128gb-1935/score/index.json new file mode 100644 index 00000000000..f83da487854 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y50-2020-dual-sim-td-lte-v2-my-vn-bd-128gb-1935/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 3.0, + "camera": 5.4, + "battery": 30.0, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y50-2020-dual-sim-td-lte-v4-cn-hk-128gb-1935/index.json b/site/public/v1/smartphones/vivo-y50-2020-dual-sim-td-lte-v4-cn-hk-128gb-1935/index.json new file mode 100644 index 00000000000..093c1d37147 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y50-2020-dual-sim-td-lte-v4-cn-hk-128gb-1935/index.json @@ -0,0 +1,76 @@ +{ + "id": 5427, + "slug": "vivo-y50-2020-dual-sim-td-lte-v4-cn-hk-128gb-1935", + "name": "Vivo Y50 2020 Dual SIM TD-LTE V4 CN HK 128GB 1935", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-04-07", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 3.0, + "camera": 5.4, + "battery": 30.0, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.893307", + "updated_at": "2026-06-19T00:43:44.893307" +} diff --git a/site/public/v1/smartphones/vivo-y50-2020-dual-sim-td-lte-v4-cn-hk-128gb-1935/score/index.json b/site/public/v1/smartphones/vivo-y50-2020-dual-sim-td-lte-v4-cn-hk-128gb-1935/score/index.json new file mode 100644 index 00000000000..f83da487854 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y50-2020-dual-sim-td-lte-v4-cn-hk-128gb-1935/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 3.0, + "camera": 5.4, + "battery": 30.0, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y50-2020-premium-edition-dual-sim-td-lte-v3-th-sg-128gb-1935/index.json b/site/public/v1/smartphones/vivo-y50-2020-premium-edition-dual-sim-td-lte-v3-th-sg-128gb-1935/index.json new file mode 100644 index 00000000000..99fdaf3bd32 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y50-2020-premium-edition-dual-sim-td-lte-v3-th-sg-128gb-1935/index.json @@ -0,0 +1,76 @@ +{ + "id": 5428, + "slug": "vivo-y50-2020-premium-edition-dual-sim-td-lte-v3-th-sg-128gb-1935", + "name": "Vivo Y50 2020 Premium Edition Dual SIM TD-LTE V3 TH SG 128GB 1935", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 3.0, + "camera": 5.4, + "battery": 30.0, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.893307", + "updated_at": "2026-06-19T00:43:44.893307" +} diff --git a/site/public/v1/smartphones/vivo-y50-2020-premium-edition-dual-sim-td-lte-v3-th-sg-128gb-1935/score/index.json b/site/public/v1/smartphones/vivo-y50-2020-premium-edition-dual-sim-td-lte-v3-th-sg-128gb-1935/score/index.json new file mode 100644 index 00000000000..f83da487854 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y50-2020-premium-edition-dual-sim-td-lte-v3-th-sg-128gb-1935/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 3.0, + "camera": 5.4, + "battery": 30.0, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y50-2020-standard-edition-dual-sim-td-lte-v3-th-sg-128gb-1935/index.json b/site/public/v1/smartphones/vivo-y50-2020-standard-edition-dual-sim-td-lte-v3-th-sg-128gb-1935/index.json new file mode 100644 index 00000000000..96e836af950 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y50-2020-standard-edition-dual-sim-td-lte-v3-th-sg-128gb-1935/index.json @@ -0,0 +1,76 @@ +{ + "id": 5429, + "slug": "vivo-y50-2020-standard-edition-dual-sim-td-lte-v3-th-sg-128gb-1935", + "name": "Vivo Y50 2020 Standard Edition Dual SIM TD-LTE V3 TH SG 128GB 1935", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-04-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 13.4 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 1.5, + "camera": 5.4, + "battery": 30.0, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.894307", + "updated_at": "2026-06-19T00:43:44.894307" +} diff --git a/site/public/v1/smartphones/vivo-y50-2020-standard-edition-dual-sim-td-lte-v3-th-sg-128gb-1935/score/index.json b/site/public/v1/smartphones/vivo-y50-2020-standard-edition-dual-sim-td-lte-v3-th-sg-128gb-1935/score/index.json new file mode 100644 index 00000000000..64b4a03e971 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y50-2020-standard-edition-dual-sim-td-lte-v3-th-sg-128gb-1935/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 1.5, + "camera": 5.4, + "battery": 30.0, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y51s-5g-dual-sim-td-lte-cn-128gb-v2002a/index.json b/site/public/v1/smartphones/vivo-y51s-5g-dual-sim-td-lte-cn-128gb-v2002a/index.json new file mode 100644 index 00000000000..a6aaa707cd6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y51s-5g-dual-sim-td-lte-cn-128gb-v2002a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5430, + "slug": "vivo-y51s-5g-dual-sim-td-lte-cn-128gb-v2002a", + "name": "Vivo Y51s 5G Dual SIM TD-LTE CN 128GB V2002A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 198, + "slug": "exynos-880", + "name": "Exynos 880", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali G76 MP5", + "url": "/v1/socs/exynos-880" + }, + "release_date": "2020-07-29", + "msrp_usd": 1798, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 16.5, + "battery": 23.1, + "display": 27.0, + "value": 8.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.894307", + "updated_at": "2026-06-19T00:43:44.894307" +} diff --git a/site/public/v1/smartphones/vivo-y51s-5g-dual-sim-td-lte-cn-128gb-v2002a/score/index.json b/site/public/v1/smartphones/vivo-y51s-5g-dual-sim-td-lte-cn-128gb-v2002a/score/index.json new file mode 100644 index 00000000000..d4952dad27a --- /dev/null +++ b/site/public/v1/smartphones/vivo-y51s-5g-dual-sim-td-lte-cn-128gb-v2002a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 16.5, + "battery": 23.1, + "display": 27.0, + "value": 8.5 +} diff --git a/site/public/v1/smartphones/vivo-y52-5g-dual-sim-td-lte-v1-th-128gb-v2053/index.json b/site/public/v1/smartphones/vivo-y52-5g-dual-sim-td-lte-v1-th-128gb-v2053/index.json new file mode 100644 index 00000000000..d5c8a32bad0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y52-5g-dual-sim-td-lte-v1-th-128gb-v2053/index.json @@ -0,0 +1,76 @@ +{ + "id": 5525, + "slug": "vivo-y52-5g-dual-sim-td-lte-v1-th-128gb-v2053", + "name": "Vivo Y52 5G Dual SIM TD-LTE V1 TH 128GB V2053", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.905307", + "updated_at": "2026-06-19T00:43:44.905307" +} diff --git a/site/public/v1/smartphones/vivo-y52-5g-dual-sim-td-lte-v1-th-128gb-v2053/score/index.json b/site/public/v1/smartphones/vivo-y52-5g-dual-sim-td-lte-v1-th-128gb-v2053/score/index.json new file mode 100644 index 00000000000..a64793c96d3 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y52-5g-dual-sim-td-lte-v1-th-128gb-v2053/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y52-5g-dual-sim-td-lte-v2-tw-128gb-v2053/index.json b/site/public/v1/smartphones/vivo-y52-5g-dual-sim-td-lte-v2-tw-128gb-v2053/index.json new file mode 100644 index 00000000000..3b6d4f74333 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y52-5g-dual-sim-td-lte-v2-tw-128gb-v2053/index.json @@ -0,0 +1,76 @@ +{ + "id": 5526, + "slug": "vivo-y52-5g-dual-sim-td-lte-v2-tw-128gb-v2053", + "name": "Vivo Y52 5G Dual SIM TD-LTE V2 TW 128GB V2053", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.905307", + "updated_at": "2026-06-19T00:43:44.905307" +} diff --git a/site/public/v1/smartphones/vivo-y52-5g-dual-sim-td-lte-v2-tw-128gb-v2053/score/index.json b/site/public/v1/smartphones/vivo-y52-5g-dual-sim-td-lte-v2-tw-128gb-v2053/score/index.json new file mode 100644 index 00000000000..a64793c96d3 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y52-5g-dual-sim-td-lte-v2-tw-128gb-v2053/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y52-5g-global-dual-sim-td-lte-v3-128gb-v2053/index.json b/site/public/v1/smartphones/vivo-y52-5g-global-dual-sim-td-lte-v3-128gb-v2053/index.json new file mode 100644 index 00000000000..8623dfcc252 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y52-5g-global-dual-sim-td-lte-v3-128gb-v2053/index.json @@ -0,0 +1,76 @@ +{ + "id": 5527, + "slug": "vivo-y52-5g-global-dual-sim-td-lte-v3-128gb-v2053", + "name": "Vivo Y52 5G Global Dual SIM TD-LTE V3 128GB V2053", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.905307", + "updated_at": "2026-06-19T00:43:44.905307" +} diff --git a/site/public/v1/smartphones/vivo-y52-5g-global-dual-sim-td-lte-v3-128gb-v2053/score/index.json b/site/public/v1/smartphones/vivo-y52-5g-global-dual-sim-td-lte-v3-128gb-v2053/score/index.json new file mode 100644 index 00000000000..a64793c96d3 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y52-5g-global-dual-sim-td-lte-v3-128gb-v2053/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 0.0, + "camera": 16.5, + "battery": 30.6, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y52s-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-v2057a/index.json b/site/public/v1/smartphones/vivo-y52s-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-v2057a/index.json new file mode 100644 index 00000000000..cf083c221d1 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y52s-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-v2057a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5431, + "slug": "vivo-y52s-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-v2057a", + "name": "Vivo Y52s 5G 2020 Premium Edition Dual SIM TD-LTE CN 128GB V2057A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2020-12-18", + "msrp_usd": 1898, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 185.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.1, + "value": 11.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.894307", + "updated_at": "2026-06-19T00:43:44.894307" +} diff --git a/site/public/v1/smartphones/vivo-y52s-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-v2057a/score/index.json b/site/public/v1/smartphones/vivo-y52s-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-v2057a/score/index.json new file mode 100644 index 00000000000..858e9948856 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y52s-5g-2020-premium-edition-dual-sim-td-lte-cn-128gb-v2057a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.1, + "value": 11.3 +} diff --git a/site/public/v1/smartphones/vivo-y52s-5g-2020-premium-edition-dual-sim-td-lte-cn-256gb-v2057a/index.json b/site/public/v1/smartphones/vivo-y52s-5g-2020-premium-edition-dual-sim-td-lte-cn-256gb-v2057a/index.json new file mode 100644 index 00000000000..7ffb3744c55 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y52s-5g-2020-premium-edition-dual-sim-td-lte-cn-256gb-v2057a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5528, + "slug": "vivo-y52s-5g-2020-premium-edition-dual-sim-td-lte-cn-256gb-v2057a", + "name": "Vivo Y52s 5G 2020 Premium Edition Dual SIM TD-LTE CN 256GB V2057A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2021-04-01", + "msrp_usd": 1999, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 185.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.1, + "value": 11.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.905307", + "updated_at": "2026-06-19T00:43:44.905307" +} diff --git a/site/public/v1/smartphones/vivo-y52s-5g-2020-premium-edition-dual-sim-td-lte-cn-256gb-v2057a/score/index.json b/site/public/v1/smartphones/vivo-y52s-5g-2020-premium-edition-dual-sim-td-lte-cn-256gb-v2057a/score/index.json new file mode 100644 index 00000000000..858e9948856 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y52s-5g-2020-premium-edition-dual-sim-td-lte-cn-256gb-v2057a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.1, + "value": 11.3 +} diff --git a/site/public/v1/smartphones/vivo-y52s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-v2057a/index.json b/site/public/v1/smartphones/vivo-y52s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-v2057a/index.json new file mode 100644 index 00000000000..a1089a251af --- /dev/null +++ b/site/public/v1/smartphones/vivo-y52s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-v2057a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5432, + "slug": "vivo-y52s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-v2057a", + "name": "Vivo Y52s 5G 2020 Standard Edition Dual SIM TD-LTE CN 128GB V2057A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2020-12-18", + "msrp_usd": 1698, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 185.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 40.1, + "value": 11.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.894307", + "updated_at": "2026-06-19T00:43:44.894307" +} diff --git a/site/public/v1/smartphones/vivo-y52s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-v2057a/score/index.json b/site/public/v1/smartphones/vivo-y52s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-v2057a/score/index.json new file mode 100644 index 00000000000..76ea32878d6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y52s-5g-2020-standard-edition-dual-sim-td-lte-cn-128gb-v2057a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 40.1, + "value": 11.1 +} diff --git a/site/public/v1/smartphones/vivo-y52s-t1-version-5g-dual-sim-td-lte-cn-128gb-v2054a/index.json b/site/public/v1/smartphones/vivo-y52s-t1-version-5g-dual-sim-td-lte-cn-128gb-v2054a/index.json new file mode 100644 index 00000000000..83611a9ef04 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y52s-t1-version-5g-dual-sim-td-lte-cn-128gb-v2054a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5529, + "slug": "vivo-y52s-t1-version-5g-dual-sim-td-lte-cn-128gb-v2054a", + "name": "vivo Y52s t1 version 5G Dual SIM TD-LTE CN 128GB V2054A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-03-01", + "msrp_usd": 1899, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 185.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.1, + "value": 11.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.905307", + "updated_at": "2026-06-19T00:43:44.905307" +} diff --git a/site/public/v1/smartphones/vivo-y52s-t1-version-5g-dual-sim-td-lte-cn-128gb-v2054a/score/index.json b/site/public/v1/smartphones/vivo-y52s-t1-version-5g-dual-sim-td-lte-cn-128gb-v2054a/score/index.json new file mode 100644 index 00000000000..858e9948856 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y52s-t1-version-5g-dual-sim-td-lte-cn-128gb-v2054a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.1, + "value": 11.3 +} diff --git a/site/public/v1/smartphones/vivo-y52s-t1-version-5g-dual-sim-td-lte-cn-256gb-v2054a/index.json b/site/public/v1/smartphones/vivo-y52s-t1-version-5g-dual-sim-td-lte-cn-256gb-v2054a/index.json new file mode 100644 index 00000000000..21bab5b51b6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y52s-t1-version-5g-dual-sim-td-lte-cn-256gb-v2054a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5530, + "slug": "vivo-y52s-t1-version-5g-dual-sim-td-lte-cn-256gb-v2054a", + "name": "vivo Y52s t1 version 5G Dual SIM TD-LTE CN 256GB V2054A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-04-01", + "msrp_usd": 2099, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 185.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.1, + "value": 11.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.905307", + "updated_at": "2026-06-19T00:43:44.905307" +} diff --git a/site/public/v1/smartphones/vivo-y52s-t1-version-5g-dual-sim-td-lte-cn-256gb-v2054a/score/index.json b/site/public/v1/smartphones/vivo-y52s-t1-version-5g-dual-sim-td-lte-cn-256gb-v2054a/score/index.json new file mode 100644 index 00000000000..858e9948856 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y52s-t1-version-5g-dual-sim-td-lte-cn-256gb-v2054a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.1, + "value": 11.3 +} diff --git a/site/public/v1/smartphones/vivo-y53s-4g-dual-sim-td-lte-in-v2058/index.json b/site/public/v1/smartphones/vivo-y53s-4g-dual-sim-td-lte-in-v2058/index.json new file mode 100644 index 00000000000..0d3397e4b68 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y53s-4g-dual-sim-td-lte-in-v2058/index.json @@ -0,0 +1,76 @@ +{ + "id": 5531, + "slug": "vivo-y53s-4g-dual-sim-td-lte-in-v2058", + "name": "Vivo Y53s 4G Dual SIM TD-LTE IN V2058", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2021-06-12", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 3.0, + "camera": 21.5, + "battery": 30.6, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.906307", + "updated_at": "2026-06-19T00:43:44.906307" +} diff --git a/site/public/v1/smartphones/vivo-y53s-4g-dual-sim-td-lte-in-v2058/score/index.json b/site/public/v1/smartphones/vivo-y53s-4g-dual-sim-td-lte-in-v2058/score/index.json new file mode 100644 index 00000000000..4ea9de838c3 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y53s-4g-dual-sim-td-lte-in-v2058/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 3.0, + "camera": 21.5, + "battery": 30.6, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y53s-5g-dual-sim-td-lte-cn-128gb-v2111a/index.json b/site/public/v1/smartphones/vivo-y53s-5g-dual-sim-td-lte-cn-128gb-v2111a/index.json new file mode 100644 index 00000000000..1fbfb7f1a4a --- /dev/null +++ b/site/public/v1/smartphones/vivo-y53s-5g-dual-sim-td-lte-cn-128gb-v2111a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5532, + "slug": "vivo-y53s-5g-dual-sim-td-lte-cn-128gb-v2111a", + "name": "vivo Y53s 5G Dual SIM TD-LTE CN 128GB V2111A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-06-12", + "msrp_usd": 1799, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 185.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.8, + "performance": 3.0, + "camera": 21.5, + "battery": 30.6, + "display": 40.1, + "value": 11.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.906307", + "updated_at": "2026-06-19T00:43:44.906307" +} diff --git a/site/public/v1/smartphones/vivo-y53s-5g-dual-sim-td-lte-cn-128gb-v2111a/score/index.json b/site/public/v1/smartphones/vivo-y53s-5g-dual-sim-td-lte-cn-128gb-v2111a/score/index.json new file mode 100644 index 00000000000..649eb385834 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y53s-5g-dual-sim-td-lte-cn-128gb-v2111a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.8, + "performance": 3.0, + "camera": 21.5, + "battery": 30.6, + "display": 40.1, + "value": 11.9 +} diff --git a/site/public/v1/smartphones/vivo-y53s-5g-dual-sim-td-lte-cn-256gb-v2111a/index.json b/site/public/v1/smartphones/vivo-y53s-5g-dual-sim-td-lte-cn-256gb-v2111a/index.json new file mode 100644 index 00000000000..095958cee78 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y53s-5g-dual-sim-td-lte-cn-256gb-v2111a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5533, + "slug": "vivo-y53s-5g-dual-sim-td-lte-cn-256gb-v2111a", + "name": "vivo Y53s 5G Dual SIM TD-LTE CN 256GB V2111A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-06-12", + "msrp_usd": 1999, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 185.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.8, + "performance": 3.0, + "camera": 21.5, + "battery": 30.6, + "display": 40.1, + "value": 11.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.906307", + "updated_at": "2026-06-19T00:43:44.906307" +} diff --git a/site/public/v1/smartphones/vivo-y53s-5g-dual-sim-td-lte-cn-256gb-v2111a/score/index.json b/site/public/v1/smartphones/vivo-y53s-5g-dual-sim-td-lte-cn-256gb-v2111a/score/index.json new file mode 100644 index 00000000000..649eb385834 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y53s-5g-dual-sim-td-lte-cn-256gb-v2111a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.8, + "performance": 3.0, + "camera": 21.5, + "battery": 30.6, + "display": 40.1, + "value": 11.9 +} diff --git a/site/public/v1/smartphones/vivo-y5s-2019-premium-edition-dual-sim-td-lte-cn-128gb-v1934a/index.json b/site/public/v1/smartphones/vivo-y5s-2019-premium-edition-dual-sim-td-lte-cn-128gb-v1934a/index.json new file mode 100644 index 00000000000..1ab3ca0da35 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y5s-2019-premium-edition-dual-sim-td-lte-cn-128gb-v1934a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5300, + "slug": "vivo-y5s-2019-premium-edition-dual-sim-td-lte-cn-128gb-v1934a", + "name": "Vivo Y5s 2019 Premium Edition Dual SIM TD-LTE CN 128GB V1934A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 52, + "slug": "helio-p65", + "name": "Helio P65", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-p65" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 1.5, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.877314", + "updated_at": "2026-06-19T00:43:44.877314" +} diff --git a/site/public/v1/smartphones/vivo-y5s-2019-premium-edition-dual-sim-td-lte-cn-128gb-v1934a/score/index.json b/site/public/v1/smartphones/vivo-y5s-2019-premium-edition-dual-sim-td-lte-cn-128gb-v1934a/score/index.json new file mode 100644 index 00000000000..75901685f4e --- /dev/null +++ b/site/public/v1/smartphones/vivo-y5s-2019-premium-edition-dual-sim-td-lte-cn-128gb-v1934a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 1.5, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y5s-2019-premium-edition-dual-sim-td-lte-cn-128gb-v1934t/index.json b/site/public/v1/smartphones/vivo-y5s-2019-premium-edition-dual-sim-td-lte-cn-128gb-v1934t/index.json new file mode 100644 index 00000000000..7e67b5d7b4e --- /dev/null +++ b/site/public/v1/smartphones/vivo-y5s-2019-premium-edition-dual-sim-td-lte-cn-128gb-v1934t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5301, + "slug": "vivo-y5s-2019-premium-edition-dual-sim-td-lte-cn-128gb-v1934t", + "name": "Vivo Y5s 2019 Premium Edition Dual SIM TD-LTE CN 128GB V1934T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 52, + "slug": "helio-p65", + "name": "Helio P65", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-p65" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 1.5, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.877314", + "updated_at": "2026-06-19T00:43:44.877314" +} diff --git a/site/public/v1/smartphones/vivo-y5s-2019-premium-edition-dual-sim-td-lte-cn-128gb-v1934t/score/index.json b/site/public/v1/smartphones/vivo-y5s-2019-premium-edition-dual-sim-td-lte-cn-128gb-v1934t/score/index.json new file mode 100644 index 00000000000..75901685f4e --- /dev/null +++ b/site/public/v1/smartphones/vivo-y5s-2019-premium-edition-dual-sim-td-lte-cn-128gb-v1934t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 1.5, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y5s-2019-standard-edition-dual-sim-td-lte-cn-128gb-v1934a/index.json b/site/public/v1/smartphones/vivo-y5s-2019-standard-edition-dual-sim-td-lte-cn-128gb-v1934a/index.json new file mode 100644 index 00000000000..e12343e4618 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y5s-2019-standard-edition-dual-sim-td-lte-cn-128gb-v1934a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5302, + "slug": "vivo-y5s-2019-standard-edition-dual-sim-td-lte-cn-128gb-v1934a", + "name": "Vivo Y5s 2019 Standard Edition Dual SIM TD-LTE CN 128GB V1934A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 52, + "slug": "helio-p65", + "name": "Helio P65", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-p65" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.878313", + "updated_at": "2026-06-19T00:43:44.878313" +} diff --git a/site/public/v1/smartphones/vivo-y5s-2019-standard-edition-dual-sim-td-lte-cn-128gb-v1934a/score/index.json b/site/public/v1/smartphones/vivo-y5s-2019-standard-edition-dual-sim-td-lte-cn-128gb-v1934a/score/index.json new file mode 100644 index 00000000000..709f063009b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y5s-2019-standard-edition-dual-sim-td-lte-cn-128gb-v1934a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y5s-2019-standard-edition-dual-sim-td-lte-cn-128gb-v1934t/index.json b/site/public/v1/smartphones/vivo-y5s-2019-standard-edition-dual-sim-td-lte-cn-128gb-v1934t/index.json new file mode 100644 index 00000000000..40fe75c8830 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y5s-2019-standard-edition-dual-sim-td-lte-cn-128gb-v1934t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5303, + "slug": "vivo-y5s-2019-standard-edition-dual-sim-td-lte-cn-128gb-v1934t", + "name": "Vivo Y5s 2019 Standard Edition Dual SIM TD-LTE CN 128GB V1934T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 52, + "slug": "helio-p65", + "name": "Helio P65", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-p65" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.878313", + "updated_at": "2026-06-19T00:43:44.878313" +} diff --git a/site/public/v1/smartphones/vivo-y5s-2019-standard-edition-dual-sim-td-lte-cn-128gb-v1934t/score/index.json b/site/public/v1/smartphones/vivo-y5s-2019-standard-edition-dual-sim-td-lte-cn-128gb-v1934t/score/index.json new file mode 100644 index 00000000000..709f063009b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y5s-2019-standard-edition-dual-sim-td-lte-cn-128gb-v1934t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y65-dual-sim-lte-my-vn-1719/index.json b/site/public/v1/smartphones/vivo-y65-dual-sim-lte-my-vn-1719/index.json new file mode 100644 index 00000000000..a59f77395ee --- /dev/null +++ b/site/public/v1/smartphones/vivo-y65-dual-sim-lte-my-vn-1719/index.json @@ -0,0 +1,76 @@ +{ + "id": 5035, + "slug": "vivo-y65-dual-sim-lte-my-vn-1719", + "name": "Vivo Y65 Dual SIM LTE MY VN 1719", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2017-10-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 157.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.2, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.843776", + "updated_at": "2026-06-19T00:43:44.843776" +} diff --git a/site/public/v1/smartphones/vivo-y65-dual-sim-lte-my-vn-1719/score/index.json b/site/public/v1/smartphones/vivo-y65-dual-sim-lte-my-vn-1719/score/index.json new file mode 100644 index 00000000000..97a903b7df9 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y65-dual-sim-lte-my-vn-1719/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.2, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y65-dual-sim-td-lte-kh-1719/index.json b/site/public/v1/smartphones/vivo-y65-dual-sim-td-lte-kh-1719/index.json new file mode 100644 index 00000000000..59b09f6132c --- /dev/null +++ b/site/public/v1/smartphones/vivo-y65-dual-sim-td-lte-kh-1719/index.json @@ -0,0 +1,76 @@ +{ + "id": 5036, + "slug": "vivo-y65-dual-sim-td-lte-kh-1719", + "name": "Vivo Y65 Dual SIM TD-LTE KH 1719", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2017-10-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 157.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.2, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.844781", + "updated_at": "2026-06-19T00:43:44.844781" +} diff --git a/site/public/v1/smartphones/vivo-y65-dual-sim-td-lte-kh-1719/score/index.json b/site/public/v1/smartphones/vivo-y65-dual-sim-td-lte-kh-1719/score/index.json new file mode 100644 index 00000000000..97a903b7df9 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y65-dual-sim-td-lte-kh-1719/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.2, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y66-dual-sim-td-lte-cn/index.json b/site/public/v1/smartphones/vivo-y66-dual-sim-td-lte-cn/index.json new file mode 100644 index 00000000000..9b43376ab4c --- /dev/null +++ b/site/public/v1/smartphones/vivo-y66-dual-sim-td-lte-cn/index.json @@ -0,0 +1,76 @@ +{ + "id": 5037, + "slug": "vivo-y66-dual-sim-td-lte-cn", + "name": "Vivo Y66 Dual SIM TD-LTE CN", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2017-01-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 157.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "6.0", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.2, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.844781", + "updated_at": "2026-06-19T00:43:44.844781" +} diff --git a/site/public/v1/smartphones/vivo-y66-dual-sim-td-lte-cn/score/index.json b/site/public/v1/smartphones/vivo-y66-dual-sim-td-lte-cn/score/index.json new file mode 100644 index 00000000000..97a903b7df9 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y66-dual-sim-td-lte-cn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.2, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y66i-a-dual-sim-td-lte-cn/index.json b/site/public/v1/smartphones/vivo-y66i-a-dual-sim-td-lte-cn/index.json new file mode 100644 index 00000000000..bc0009581fd --- /dev/null +++ b/site/public/v1/smartphones/vivo-y66i-a-dual-sim-td-lte-cn/index.json @@ -0,0 +1,76 @@ +{ + "id": 5038, + "slug": "vivo-y66i-a-dual-sim-td-lte-cn", + "name": "Vivo Y66i A Dual SIM TD-LTE CN", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2017-12-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 157.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.2, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.844781", + "updated_at": "2026-06-19T00:43:44.844781" +} diff --git a/site/public/v1/smartphones/vivo-y66i-a-dual-sim-td-lte-cn/score/index.json b/site/public/v1/smartphones/vivo-y66i-a-dual-sim-td-lte-cn/score/index.json new file mode 100644 index 00000000000..97a903b7df9 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y66i-a-dual-sim-td-lte-cn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.2, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y66i-dual-sim-td-lte-cn/index.json b/site/public/v1/smartphones/vivo-y66i-dual-sim-td-lte-cn/index.json new file mode 100644 index 00000000000..89c7eaa61ca --- /dev/null +++ b/site/public/v1/smartphones/vivo-y66i-dual-sim-td-lte-cn/index.json @@ -0,0 +1,76 @@ +{ + "id": 5039, + "slug": "vivo-y66i-dual-sim-td-lte-cn", + "name": "Vivo Y66i Dual SIM TD-LTE CN", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2017-12-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 157.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.2, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.844781", + "updated_at": "2026-06-19T00:43:44.844781" +} diff --git a/site/public/v1/smartphones/vivo-y66i-dual-sim-td-lte-cn/score/index.json b/site/public/v1/smartphones/vivo-y66i-dual-sim-td-lte-cn/score/index.json new file mode 100644 index 00000000000..97a903b7df9 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y66i-dual-sim-td-lte-cn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.2, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y70-2020-global-dual-sim-td-lte-v4-128gb/index.json b/site/public/v1/smartphones/vivo-y70-2020-global-dual-sim-td-lte-v4-128gb/index.json new file mode 100644 index 00000000000..9a3b0e1ecd2 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y70-2020-global-dual-sim-td-lte-v4-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5433, + "slug": "vivo-y70-2020-global-dual-sim-td-lte-v4-128gb", + "name": "Vivo Y70 2020 Global Dual SIM TD-LTE V4 128GB", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-11-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4100, + "charging_wired_w": 33.0, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 3.0, + "camera": 16.5, + "battery": 19.9, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.894307", + "updated_at": "2026-06-19T00:43:44.894307" +} diff --git a/site/public/v1/smartphones/vivo-y70-2020-global-dual-sim-td-lte-v4-128gb/score/index.json b/site/public/v1/smartphones/vivo-y70-2020-global-dual-sim-td-lte-v4-128gb/score/index.json new file mode 100644 index 00000000000..47f42072856 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y70-2020-global-dual-sim-td-lte-v4-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 3.0, + "camera": 16.5, + "battery": 19.9, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y70s-premium-edition-5g-dual-sim-td-lte-cn-128gb-v2002a/index.json b/site/public/v1/smartphones/vivo-y70s-premium-edition-5g-dual-sim-td-lte-cn-128gb-v2002a/index.json new file mode 100644 index 00000000000..338b35ef56d --- /dev/null +++ b/site/public/v1/smartphones/vivo-y70s-premium-edition-5g-dual-sim-td-lte-cn-128gb-v2002a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5434, + "slug": "vivo-y70s-premium-edition-5g-dual-sim-td-lte-cn-128gb-v2002a", + "name": "Vivo Y70S Premium Edition 5G Dual SIM TD-LTE CN 128GB V2002A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 198, + "slug": "exynos-880", + "name": "Exynos 880", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali G76 MP5", + "url": "/v1/socs/exynos-880" + }, + "release_date": "2020-05-01", + "msrp_usd": 2198, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.4, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 27.0, + "value": 8.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.894307", + "updated_at": "2026-06-19T00:43:44.894307" +} diff --git a/site/public/v1/smartphones/vivo-y70s-premium-edition-5g-dual-sim-td-lte-cn-128gb-v2002a/score/index.json b/site/public/v1/smartphones/vivo-y70s-premium-edition-5g-dual-sim-td-lte-cn-128gb-v2002a/score/index.json new file mode 100644 index 00000000000..819664db1a9 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y70s-premium-edition-5g-dual-sim-td-lte-cn-128gb-v2002a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.4, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 27.0, + "value": 8.7 +} diff --git a/site/public/v1/smartphones/vivo-y70s-premium-edition-5g-dual-sim-td-lte-cn-256gb-v2002a/index.json b/site/public/v1/smartphones/vivo-y70s-premium-edition-5g-dual-sim-td-lte-cn-256gb-v2002a/index.json new file mode 100644 index 00000000000..6a3d08eefce --- /dev/null +++ b/site/public/v1/smartphones/vivo-y70s-premium-edition-5g-dual-sim-td-lte-cn-256gb-v2002a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5435, + "slug": "vivo-y70s-premium-edition-5g-dual-sim-td-lte-cn-256gb-v2002a", + "name": "Vivo Y70S Premium Edition 5G Dual SIM TD-LTE CN 256GB V2002A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 198, + "slug": "exynos-880", + "name": "Exynos 880", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali G76 MP5", + "url": "/v1/socs/exynos-880" + }, + "release_date": "2020-05-01", + "msrp_usd": 2498, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.4, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 27.0, + "value": 8.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.894307", + "updated_at": "2026-06-19T00:43:44.894307" +} diff --git a/site/public/v1/smartphones/vivo-y70s-premium-edition-5g-dual-sim-td-lte-cn-256gb-v2002a/score/index.json b/site/public/v1/smartphones/vivo-y70s-premium-edition-5g-dual-sim-td-lte-cn-256gb-v2002a/score/index.json new file mode 100644 index 00000000000..819664db1a9 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y70s-premium-edition-5g-dual-sim-td-lte-cn-256gb-v2002a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.4, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 27.0, + "value": 8.7 +} diff --git a/site/public/v1/smartphones/vivo-y70s-standard-edition-5g-dual-sim-td-lte-cn-128gb-v2002a/index.json b/site/public/v1/smartphones/vivo-y70s-standard-edition-5g-dual-sim-td-lte-cn-128gb-v2002a/index.json new file mode 100644 index 00000000000..6a0feb643ea --- /dev/null +++ b/site/public/v1/smartphones/vivo-y70s-standard-edition-5g-dual-sim-td-lte-cn-128gb-v2002a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5436, + "slug": "vivo-y70s-standard-edition-5g-dual-sim-td-lte-cn-128gb-v2002a", + "name": "Vivo Y70S Standard Edition 5G Dual SIM TD-LTE CN 128GB V2002A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 198, + "slug": "exynos-880", + "name": "Exynos 880", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali G76 MP5", + "url": "/v1/socs/exynos-880" + }, + "release_date": "2020-05-01", + "msrp_usd": 1998, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 16.5, + "battery": 23.1, + "display": 27.0, + "value": 8.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.894307", + "updated_at": "2026-06-19T00:43:44.894307" +} diff --git a/site/public/v1/smartphones/vivo-y70s-standard-edition-5g-dual-sim-td-lte-cn-128gb-v2002a/score/index.json b/site/public/v1/smartphones/vivo-y70s-standard-edition-5g-dual-sim-td-lte-cn-128gb-v2002a/score/index.json new file mode 100644 index 00000000000..d4952dad27a --- /dev/null +++ b/site/public/v1/smartphones/vivo-y70s-standard-edition-5g-dual-sim-td-lte-cn-128gb-v2002a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 16.5, + "battery": 23.1, + "display": 27.0, + "value": 8.5 +} diff --git a/site/public/v1/smartphones/vivo-y70t-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2002a/index.json b/site/public/v1/smartphones/vivo-y70t-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2002a/index.json new file mode 100644 index 00000000000..3e72674b56b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y70t-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2002a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5534, + "slug": "vivo-y70t-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2002a", + "name": "Vivo Y70t 5G Premium Edition Dual SIM TD-LTE CN 128GB V2002A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 198, + "slug": "exynos-880", + "name": "Exynos 880", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali G76 MP5", + "url": "/v1/socs/exynos-880" + }, + "release_date": "2021-06-01", + "msrp_usd": 1699, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.4, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 27.0, + "value": 8.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.906307", + "updated_at": "2026-06-19T00:43:44.906307" +} diff --git a/site/public/v1/smartphones/vivo-y70t-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2002a/score/index.json b/site/public/v1/smartphones/vivo-y70t-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2002a/score/index.json new file mode 100644 index 00000000000..819664db1a9 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y70t-5g-premium-edition-dual-sim-td-lte-cn-128gb-v2002a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.4, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 27.0, + "value": 8.7 +} diff --git a/site/public/v1/smartphones/vivo-y70t-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2002a/index.json b/site/public/v1/smartphones/vivo-y70t-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2002a/index.json new file mode 100644 index 00000000000..09567ff58ad --- /dev/null +++ b/site/public/v1/smartphones/vivo-y70t-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2002a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5535, + "slug": "vivo-y70t-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2002a", + "name": "Vivo Y70t 5G Premium Edition Dual SIM TD-LTE CN 256GB V2002A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 198, + "slug": "exynos-880", + "name": "Exynos 880", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali G76 MP5", + "url": "/v1/socs/exynos-880" + }, + "release_date": "2021-06-01", + "msrp_usd": 1999, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.4, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 27.0, + "value": 8.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.906307", + "updated_at": "2026-06-19T00:43:44.906307" +} diff --git a/site/public/v1/smartphones/vivo-y70t-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2002a/score/index.json b/site/public/v1/smartphones/vivo-y70t-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2002a/score/index.json new file mode 100644 index 00000000000..819664db1a9 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y70t-5g-premium-edition-dual-sim-td-lte-cn-256gb-v2002a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.4, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 27.0, + "value": 8.7 +} diff --git a/site/public/v1/smartphones/vivo-y70t-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2002a/index.json b/site/public/v1/smartphones/vivo-y70t-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2002a/index.json new file mode 100644 index 00000000000..a21051cd43c --- /dev/null +++ b/site/public/v1/smartphones/vivo-y70t-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2002a/index.json @@ -0,0 +1,77 @@ +{ + "id": 5536, + "slug": "vivo-y70t-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2002a", + "name": "Vivo Y70t 5G Standard Edition Dual SIM TD-LTE CN 128GB V2002A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 198, + "slug": "exynos-880", + "name": "Exynos 880", + "manufacturer": { + "slug": "samsung", + "name": "Samsung", + "url": "/v1/brands/samsung" + }, + "process_nm": 8.0, + "gpu_name": "Mali G76 MP5", + "url": "/v1/socs/exynos-880" + }, + "release_date": "2021-06-01", + "msrp_usd": 1499, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 16.5, + "battery": 23.1, + "display": 27.0, + "value": 12.4 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.906307", + "updated_at": "2026-06-19T00:43:44.906307" +} diff --git a/site/public/v1/smartphones/vivo-y70t-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2002a/score/index.json b/site/public/v1/smartphones/vivo-y70t-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2002a/score/index.json new file mode 100644 index 00000000000..93b5908fb44 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y70t-5g-standard-edition-dual-sim-td-lte-cn-128gb-v2002a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.0, + "performance": 1.5, + "camera": 16.5, + "battery": 23.1, + "display": 27.0, + "value": 12.4 +} diff --git a/site/public/v1/smartphones/vivo-y71-dual-sim-td-lte-bd-np-1801-y71i/index.json b/site/public/v1/smartphones/vivo-y71-dual-sim-td-lte-bd-np-1801-y71i/index.json new file mode 100644 index 00000000000..0fa8b92885a --- /dev/null +++ b/site/public/v1/smartphones/vivo-y71-dual-sim-td-lte-bd-np-1801-y71i/index.json @@ -0,0 +1,76 @@ +{ + "id": 5088, + "slug": "vivo-y71-dual-sim-td-lte-bd-np-1801-y71i", + "name": "Vivo Y71 Dual SIM TD-LTE BD NP 1801 / Y71i", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3360, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": null, + "camera": 5.0, + "battery": 5.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.850781", + "updated_at": "2026-06-19T00:43:44.850781" +} diff --git a/site/public/v1/smartphones/vivo-y71-dual-sim-td-lte-bd-np-1801-y71i/score/index.json b/site/public/v1/smartphones/vivo-y71-dual-sim-td-lte-bd-np-1801-y71i/score/index.json new file mode 100644 index 00000000000..5ccfcdbcd83 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y71-dual-sim-td-lte-bd-np-1801-y71i/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": null, + "camera": 5.0, + "battery": 5.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y71-dual-sim-td-lte-in-16gb-1724/index.json b/site/public/v1/smartphones/vivo-y71-dual-sim-td-lte-in-16gb-1724/index.json new file mode 100644 index 00000000000..47d677e3e6a --- /dev/null +++ b/site/public/v1/smartphones/vivo-y71-dual-sim-td-lte-in-16gb-1724/index.json @@ -0,0 +1,76 @@ +{ + "id": 5089, + "slug": "vivo-y71-dual-sim-td-lte-in-16gb-1724", + "name": "Vivo Y71 Dual SIM TD-LTE IN 16GB 1724", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-04-12", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3360, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": null, + "camera": 5.3, + "battery": 5.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.850781", + "updated_at": "2026-06-19T00:43:44.850781" +} diff --git a/site/public/v1/smartphones/vivo-y71-dual-sim-td-lte-in-16gb-1724/score/index.json b/site/public/v1/smartphones/vivo-y71-dual-sim-td-lte-in-16gb-1724/score/index.json new file mode 100644 index 00000000000..016d5e4e0cb --- /dev/null +++ b/site/public/v1/smartphones/vivo-y71-dual-sim-td-lte-in-16gb-1724/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": null, + "camera": 5.3, + "battery": 5.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y71-dual-sim-td-lte-in-32gb-1724/index.json b/site/public/v1/smartphones/vivo-y71-dual-sim-td-lte-in-32gb-1724/index.json new file mode 100644 index 00000000000..ebd24ff4976 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y71-dual-sim-td-lte-in-32gb-1724/index.json @@ -0,0 +1,76 @@ +{ + "id": 5090, + "slug": "vivo-y71-dual-sim-td-lte-in-32gb-1724", + "name": "Vivo Y71 Dual SIM TD-LTE IN 32GB 1724", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-04-12", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3360, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": null, + "camera": 5.3, + "battery": 5.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.850781", + "updated_at": "2026-06-19T00:43:44.850781" +} diff --git a/site/public/v1/smartphones/vivo-y71-dual-sim-td-lte-in-32gb-1724/score/index.json b/site/public/v1/smartphones/vivo-y71-dual-sim-td-lte-in-32gb-1724/score/index.json new file mode 100644 index 00000000000..016d5e4e0cb --- /dev/null +++ b/site/public/v1/smartphones/vivo-y71-dual-sim-td-lte-in-32gb-1724/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": null, + "camera": 5.3, + "battery": 5.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y71-dual-sim-td-lte-ru-16gb-1801/index.json b/site/public/v1/smartphones/vivo-y71-dual-sim-td-lte-ru-16gb-1801/index.json new file mode 100644 index 00000000000..b5238bec78e --- /dev/null +++ b/site/public/v1/smartphones/vivo-y71-dual-sim-td-lte-ru-16gb-1801/index.json @@ -0,0 +1,76 @@ +{ + "id": 5091, + "slug": "vivo-y71-dual-sim-td-lte-ru-16gb-1801", + "name": "Vivo Y71 Dual SIM TD-LTE RU 16GB 1801", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3360, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": null, + "camera": 5.0, + "battery": 5.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.850781", + "updated_at": "2026-06-19T00:43:44.850781" +} diff --git a/site/public/v1/smartphones/vivo-y71-dual-sim-td-lte-ru-16gb-1801/score/index.json b/site/public/v1/smartphones/vivo-y71-dual-sim-td-lte-ru-16gb-1801/score/index.json new file mode 100644 index 00000000000..5ccfcdbcd83 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y71-dual-sim-td-lte-ru-16gb-1801/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": null, + "camera": 5.0, + "battery": 5.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y71-dual-sim-td-lte-vn-16gb-1724/index.json b/site/public/v1/smartphones/vivo-y71-dual-sim-td-lte-vn-16gb-1724/index.json new file mode 100644 index 00000000000..25232e9b6be --- /dev/null +++ b/site/public/v1/smartphones/vivo-y71-dual-sim-td-lte-vn-16gb-1724/index.json @@ -0,0 +1,76 @@ +{ + "id": 5092, + "slug": "vivo-y71-dual-sim-td-lte-vn-16gb-1724", + "name": "Vivo Y71 Dual SIM TD-LTE VN 16GB 1724", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-04-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3360, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": null, + "camera": 5.3, + "battery": 5.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.850781", + "updated_at": "2026-06-19T00:43:44.850781" +} diff --git a/site/public/v1/smartphones/vivo-y71-dual-sim-td-lte-vn-16gb-1724/score/index.json b/site/public/v1/smartphones/vivo-y71-dual-sim-td-lte-vn-16gb-1724/score/index.json new file mode 100644 index 00000000000..016d5e4e0cb --- /dev/null +++ b/site/public/v1/smartphones/vivo-y71-dual-sim-td-lte-vn-16gb-1724/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": null, + "camera": 5.3, + "battery": 5.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y71i-dual-sim-td-lte-in-1801/index.json b/site/public/v1/smartphones/vivo-y71i-dual-sim-td-lte-in-1801/index.json new file mode 100644 index 00000000000..e06b90427d1 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y71i-dual-sim-td-lte-in-1801/index.json @@ -0,0 +1,76 @@ +{ + "id": 5093, + "slug": "vivo-y71i-dual-sim-td-lte-in-1801", + "name": "Vivo Y71i Dual SIM TD-LTE IN 1801", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3360, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": null, + "camera": 5.0, + "battery": 5.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.850781", + "updated_at": "2026-06-19T00:43:44.850781" +} diff --git a/site/public/v1/smartphones/vivo-y71i-dual-sim-td-lte-in-1801/score/index.json b/site/public/v1/smartphones/vivo-y71i-dual-sim-td-lte-in-1801/score/index.json new file mode 100644 index 00000000000..5ccfcdbcd83 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y71i-dual-sim-td-lte-in-1801/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": null, + "camera": 5.0, + "battery": 5.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y72-5g-premium-edition-dual-sim-td-lte-in-128gb-v2060/index.json b/site/public/v1/smartphones/vivo-y72-5g-premium-edition-dual-sim-td-lte-in-128gb-v2060/index.json new file mode 100644 index 00000000000..1ed5311743e --- /dev/null +++ b/site/public/v1/smartphones/vivo-y72-5g-premium-edition-dual-sim-td-lte-in-128gb-v2060/index.json @@ -0,0 +1,77 @@ +{ + "id": 5537, + "slug": "vivo-y72-5g-premium-edition-dual-sim-td-lte-in-128gb-v2060", + "name": "Vivo Y72 5G Premium Edition Dual SIM TD-LTE IN 128GB V2060", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-07-16", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 185.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.906307", + "updated_at": "2026-06-19T00:43:44.906307" +} diff --git a/site/public/v1/smartphones/vivo-y72-5g-premium-edition-dual-sim-td-lte-in-128gb-v2060/score/index.json b/site/public/v1/smartphones/vivo-y72-5g-premium-edition-dual-sim-td-lte-in-128gb-v2060/score/index.json new file mode 100644 index 00000000000..cc8e2b8f2a4 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y72-5g-premium-edition-dual-sim-td-lte-in-128gb-v2060/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.6, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 40.1, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y72-5g-premium-edition-dual-sim-td-lte-v1-th-vn-128gb-v2041/index.json b/site/public/v1/smartphones/vivo-y72-5g-premium-edition-dual-sim-td-lte-v1-th-vn-128gb-v2041/index.json new file mode 100644 index 00000000000..0ace711d029 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y72-5g-premium-edition-dual-sim-td-lte-v1-th-vn-128gb-v2041/index.json @@ -0,0 +1,76 @@ +{ + "id": 5538, + "slug": "vivo-y72-5g-premium-edition-dual-sim-td-lte-v1-th-vn-128gb-v2041", + "name": "Vivo Y72 5G Premium Edition Dual SIM TD-LTE V1 TH VN 128GB V2041", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 3.0, + "camera": 21.5, + "battery": 30.6, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.906307", + "updated_at": "2026-06-19T00:43:44.906307" +} diff --git a/site/public/v1/smartphones/vivo-y72-5g-premium-edition-dual-sim-td-lte-v1-th-vn-128gb-v2041/score/index.json b/site/public/v1/smartphones/vivo-y72-5g-premium-edition-dual-sim-td-lte-v1-th-vn-128gb-v2041/score/index.json new file mode 100644 index 00000000000..4ea9de838c3 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y72-5g-premium-edition-dual-sim-td-lte-v1-th-vn-128gb-v2041/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 3.0, + "camera": 21.5, + "battery": 30.6, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y72-5g-premium-edition-dual-sim-td-lte-v2-tw-128gb-v2041/index.json b/site/public/v1/smartphones/vivo-y72-5g-premium-edition-dual-sim-td-lte-v2-tw-128gb-v2041/index.json new file mode 100644 index 00000000000..a26de21801e --- /dev/null +++ b/site/public/v1/smartphones/vivo-y72-5g-premium-edition-dual-sim-td-lte-v2-tw-128gb-v2041/index.json @@ -0,0 +1,76 @@ +{ + "id": 5539, + "slug": "vivo-y72-5g-premium-edition-dual-sim-td-lte-v2-tw-128gb-v2041", + "name": "Vivo Y72 5G Premium Edition Dual SIM TD-LTE V2 TW 128GB V2041", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 3.0, + "camera": 21.5, + "battery": 30.6, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.906307", + "updated_at": "2026-06-19T00:43:44.906307" +} diff --git a/site/public/v1/smartphones/vivo-y72-5g-premium-edition-dual-sim-td-lte-v2-tw-128gb-v2041/score/index.json b/site/public/v1/smartphones/vivo-y72-5g-premium-edition-dual-sim-td-lte-v2-tw-128gb-v2041/score/index.json new file mode 100644 index 00000000000..4ea9de838c3 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y72-5g-premium-edition-dual-sim-td-lte-v2-tw-128gb-v2041/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 3.0, + "camera": 21.5, + "battery": 30.6, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y72-5g-premium-edition-global-dual-sim-td-lte-v3-128gb-v2041/index.json b/site/public/v1/smartphones/vivo-y72-5g-premium-edition-global-dual-sim-td-lte-v3-128gb-v2041/index.json new file mode 100644 index 00000000000..4a6e942a181 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y72-5g-premium-edition-global-dual-sim-td-lte-v3-128gb-v2041/index.json @@ -0,0 +1,76 @@ +{ + "id": 5540, + "slug": "vivo-y72-5g-premium-edition-global-dual-sim-td-lte-v3-128gb-v2041", + "name": "Vivo Y72 5G Premium Edition Global Dual SIM TD-LTE V3 128GB V2041", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-03-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 3.0, + "camera": 21.5, + "battery": 30.6, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.906307", + "updated_at": "2026-06-19T00:43:44.906307" +} diff --git a/site/public/v1/smartphones/vivo-y72-5g-premium-edition-global-dual-sim-td-lte-v3-128gb-v2041/score/index.json b/site/public/v1/smartphones/vivo-y72-5g-premium-edition-global-dual-sim-td-lte-v3-128gb-v2041/score/index.json new file mode 100644 index 00000000000..4ea9de838c3 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y72-5g-premium-edition-global-dual-sim-td-lte-v3-128gb-v2041/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.1, + "performance": 3.0, + "camera": 21.5, + "battery": 30.6, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y72-5g-standard-edition-dual-sim-td-lte-v1-th-vn-128gb-v2041/index.json b/site/public/v1/smartphones/vivo-y72-5g-standard-edition-dual-sim-td-lte-v1-th-vn-128gb-v2041/index.json new file mode 100644 index 00000000000..e8797337aee --- /dev/null +++ b/site/public/v1/smartphones/vivo-y72-5g-standard-edition-dual-sim-td-lte-v1-th-vn-128gb-v2041/index.json @@ -0,0 +1,76 @@ +{ + "id": 5541, + "slug": "vivo-y72-5g-standard-edition-dual-sim-td-lte-v1-th-vn-128gb-v2041", + "name": "Vivo Y72 5G Standard Edition Dual SIM TD-LTE V1 TH VN 128GB V2041", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 54, + "slug": "dimensity-700", + "name": "Dimensity 700", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC2", + "url": "/v1/socs/dimensity-700" + }, + "release_date": "2021-03-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.58, + "resolution": "1080x2408", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.7, + "performance": 1.5, + "camera": 21.5, + "battery": 30.6, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.907307", + "updated_at": "2026-06-19T00:43:44.907307" +} diff --git a/site/public/v1/smartphones/vivo-y72-5g-standard-edition-dual-sim-td-lte-v1-th-vn-128gb-v2041/score/index.json b/site/public/v1/smartphones/vivo-y72-5g-standard-edition-dual-sim-td-lte-v1-th-vn-128gb-v2041/score/index.json new file mode 100644 index 00000000000..412cff69c62 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y72-5g-standard-edition-dual-sim-td-lte-v1-th-vn-128gb-v2041/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.7, + "performance": 1.5, + "camera": 21.5, + "battery": 30.6, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y73-premium-edition-dual-sim-td-lte-cn-64gb-v1731ca/index.json b/site/public/v1/smartphones/vivo-y73-premium-edition-dual-sim-td-lte-cn-64gb-v1731ca/index.json new file mode 100644 index 00000000000..2940bd5f291 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y73-premium-edition-dual-sim-td-lte-cn-64gb-v1731ca/index.json @@ -0,0 +1,76 @@ +{ + "id": 5094, + "slug": "vivo-y73-premium-edition-dual-sim-td-lte-cn-64gb-v1731ca", + "name": "Vivo Y73 Premium Edition Dual SIM TD-LTE CN 64GB V1731CA", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3360, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 149.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 11.4, + "performance": 0.0, + "camera": 5.3, + "battery": 5.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.850781", + "updated_at": "2026-06-19T00:43:44.850781" +} diff --git a/site/public/v1/smartphones/vivo-y73-premium-edition-dual-sim-td-lte-cn-64gb-v1731ca/score/index.json b/site/public/v1/smartphones/vivo-y73-premium-edition-dual-sim-td-lte-cn-64gb-v1731ca/score/index.json new file mode 100644 index 00000000000..9380ca3d6de --- /dev/null +++ b/site/public/v1/smartphones/vivo-y73-premium-edition-dual-sim-td-lte-cn-64gb-v1731ca/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 11.4, + "performance": 0.0, + "camera": 5.3, + "battery": 5.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y73-standard-edition-dual-sim-td-lte-cn-32gb-v1731ca/index.json b/site/public/v1/smartphones/vivo-y73-standard-edition-dual-sim-td-lte-cn-32gb-v1731ca/index.json new file mode 100644 index 00000000000..08624d930d4 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y73-standard-edition-dual-sim-td-lte-cn-32gb-v1731ca/index.json @@ -0,0 +1,76 @@ +{ + "id": 5095, + "slug": "vivo-y73-standard-edition-dual-sim-td-lte-cn-32gb-v1731ca", + "name": "Vivo Y73 Standard Edition Dual SIM TD-LTE CN 32GB V1731CA", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3360, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 149.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 11.4, + "performance": 0.0, + "camera": 5.3, + "battery": 5.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.851782", + "updated_at": "2026-06-19T00:43:44.851782" +} diff --git a/site/public/v1/smartphones/vivo-y73-standard-edition-dual-sim-td-lte-cn-32gb-v1731ca/score/index.json b/site/public/v1/smartphones/vivo-y73-standard-edition-dual-sim-td-lte-cn-32gb-v1731ca/score/index.json new file mode 100644 index 00000000000..9380ca3d6de --- /dev/null +++ b/site/public/v1/smartphones/vivo-y73-standard-edition-dual-sim-td-lte-cn-32gb-v1731ca/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 11.4, + "performance": 0.0, + "camera": 5.3, + "battery": 5.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y73-standard-edition-dual-sim-td-lte-cn-64gb-v1731ca/index.json b/site/public/v1/smartphones/vivo-y73-standard-edition-dual-sim-td-lte-cn-64gb-v1731ca/index.json new file mode 100644 index 00000000000..f28b42236c2 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y73-standard-edition-dual-sim-td-lte-cn-64gb-v1731ca/index.json @@ -0,0 +1,76 @@ +{ + "id": 5096, + "slug": "vivo-y73-standard-edition-dual-sim-td-lte-cn-64gb-v1731ca", + "name": "Vivo Y73 Standard Edition Dual SIM TD-LTE CN 64GB V1731CA", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3360, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 149.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 11.4, + "performance": 0.0, + "camera": 5.3, + "battery": 5.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.851782", + "updated_at": "2026-06-19T00:43:44.851782" +} diff --git a/site/public/v1/smartphones/vivo-y73-standard-edition-dual-sim-td-lte-cn-64gb-v1731ca/score/index.json b/site/public/v1/smartphones/vivo-y73-standard-edition-dual-sim-td-lte-cn-64gb-v1731ca/score/index.json new file mode 100644 index 00000000000..9380ca3d6de --- /dev/null +++ b/site/public/v1/smartphones/vivo-y73-standard-edition-dual-sim-td-lte-cn-64gb-v1731ca/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 11.4, + "performance": 0.0, + "camera": 5.3, + "battery": 5.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y73s-5g-2020-dual-sim-td-lte-cn-128gb-v2031a/index.json b/site/public/v1/smartphones/vivo-y73s-5g-2020-dual-sim-td-lte-cn-128gb-v2031a/index.json new file mode 100644 index 00000000000..2fc36996811 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y73s-5g-2020-dual-sim-td-lte-cn-128gb-v2031a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5437, + "slug": "vivo-y73s-5g-2020-dual-sim-td-lte-cn-128gb-v2031a", + "name": "Vivo Y73s 5G 2020 Dual SIM TD-LTE CN 128GB V2031A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 55, + "slug": "dimensity-720", + "name": "Dimensity 720", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC3", + "url": "/v1/socs/dimensity-720" + }, + "release_date": "2020-10-01", + "msrp_usd": 1998, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.44, + "resolution": "1080x2400", + "type": "AM-OLED display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4100, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 171.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 3.0, + "camera": 21.5, + "battery": 17.1, + "display": 45.9, + "value": 10.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.895307", + "updated_at": "2026-06-19T00:43:44.895307" +} diff --git a/site/public/v1/smartphones/vivo-y73s-5g-2020-dual-sim-td-lte-cn-128gb-v2031a/score/index.json b/site/public/v1/smartphones/vivo-y73s-5g-2020-dual-sim-td-lte-cn-128gb-v2031a/score/index.json new file mode 100644 index 00000000000..0ff6a7b7229 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y73s-5g-2020-dual-sim-td-lte-cn-128gb-v2031a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.9, + "performance": 3.0, + "camera": 21.5, + "battery": 17.1, + "display": 45.9, + "value": 10.9 +} diff --git a/site/public/v1/smartphones/vivo-y75-premium-edition-dual-sim-lte-cn-32gb/index.json b/site/public/v1/smartphones/vivo-y75-premium-edition-dual-sim-lte-cn-32gb/index.json new file mode 100644 index 00000000000..4535058f42f --- /dev/null +++ b/site/public/v1/smartphones/vivo-y75-premium-edition-dual-sim-lte-cn-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5040, + "slug": "vivo-y75-premium-edition-dual-sim-lte-cn-32gb", + "name": "Vivo Y75 Premium Edition Dual SIM LTE CN 32GB", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2017-12-19", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 139.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.844781", + "updated_at": "2026-06-19T00:43:44.844781" +} diff --git a/site/public/v1/smartphones/vivo-y75-premium-edition-dual-sim-lte-cn-32gb/score/index.json b/site/public/v1/smartphones/vivo-y75-premium-edition-dual-sim-lte-cn-32gb/score/index.json new file mode 100644 index 00000000000..8dd4f57a73b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y75-premium-edition-dual-sim-lte-cn-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y75-premium-edition-dual-sim-lte-cn-64gb/index.json b/site/public/v1/smartphones/vivo-y75-premium-edition-dual-sim-lte-cn-64gb/index.json new file mode 100644 index 00000000000..92c9c539269 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y75-premium-edition-dual-sim-lte-cn-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5041, + "slug": "vivo-y75-premium-edition-dual-sim-lte-cn-64gb", + "name": "Vivo Y75 Premium Edition Dual SIM LTE CN 64GB", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2017-12-19", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 139.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.844781", + "updated_at": "2026-06-19T00:43:44.844781" +} diff --git a/site/public/v1/smartphones/vivo-y75-premium-edition-dual-sim-lte-cn-64gb/score/index.json b/site/public/v1/smartphones/vivo-y75-premium-edition-dual-sim-lte-cn-64gb/score/index.json new file mode 100644 index 00000000000..8dd4f57a73b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y75-premium-edition-dual-sim-lte-cn-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y75-standard-edition-dual-sim-lte-cn-32gb/index.json b/site/public/v1/smartphones/vivo-y75-standard-edition-dual-sim-lte-cn-32gb/index.json new file mode 100644 index 00000000000..bade5b59ff2 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y75-standard-edition-dual-sim-lte-cn-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5042, + "slug": "vivo-y75-standard-edition-dual-sim-lte-cn-32gb", + "name": "Vivo Y75 Standard Edition Dual SIM LTE CN 32GB", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2017-12-19", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 139.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.844781", + "updated_at": "2026-06-19T00:43:44.844781" +} diff --git a/site/public/v1/smartphones/vivo-y75-standard-edition-dual-sim-lte-cn-32gb/score/index.json b/site/public/v1/smartphones/vivo-y75-standard-edition-dual-sim-lte-cn-32gb/score/index.json new file mode 100644 index 00000000000..8dd4f57a73b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y75-standard-edition-dual-sim-lte-cn-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y75a-premium-edition-dual-sim-lte-cn-64gb/index.json b/site/public/v1/smartphones/vivo-y75a-premium-edition-dual-sim-lte-cn-64gb/index.json new file mode 100644 index 00000000000..abe35063f05 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y75a-premium-edition-dual-sim-lte-cn-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5043, + "slug": "vivo-y75a-premium-edition-dual-sim-lte-cn-64gb", + "name": "Vivo Y75A Premium Edition Dual SIM LTE CN 64GB", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2017-12-19", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 139.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.844781", + "updated_at": "2026-06-19T00:43:44.844781" +} diff --git a/site/public/v1/smartphones/vivo-y75a-premium-edition-dual-sim-lte-cn-64gb/score/index.json b/site/public/v1/smartphones/vivo-y75a-premium-edition-dual-sim-lte-cn-64gb/score/index.json new file mode 100644 index 00000000000..8dd4f57a73b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y75a-premium-edition-dual-sim-lte-cn-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y75a-standard-edition-dual-sim-lte-cn-32gb/index.json b/site/public/v1/smartphones/vivo-y75a-standard-edition-dual-sim-lte-cn-32gb/index.json new file mode 100644 index 00000000000..1deb631cd14 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y75a-standard-edition-dual-sim-lte-cn-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5044, + "slug": "vivo-y75a-standard-edition-dual-sim-lte-cn-32gb", + "name": "Vivo Y75A Standard Edition Dual SIM LTE CN 32GB", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2017-12-19", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 139.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.845781", + "updated_at": "2026-06-19T00:43:44.845781" +} diff --git a/site/public/v1/smartphones/vivo-y75a-standard-edition-dual-sim-lte-cn-32gb/score/index.json b/site/public/v1/smartphones/vivo-y75a-standard-edition-dual-sim-lte-cn-32gb/score/index.json new file mode 100644 index 00000000000..8dd4f57a73b --- /dev/null +++ b/site/public/v1/smartphones/vivo-y75a-standard-edition-dual-sim-lte-cn-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y75s-dual-sim-lte-cn-32gb/index.json b/site/public/v1/smartphones/vivo-y75s-dual-sim-lte-cn-32gb/index.json new file mode 100644 index 00000000000..2af90809296 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y75s-dual-sim-lte-cn-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5097, + "slug": "vivo-y75s-dual-sim-lte-cn-32gb", + "name": "Vivo Y75s Dual SIM LTE CN 32GB", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3225, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.6, + "performance": null, + "camera": 5.3, + "battery": 3.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.851782", + "updated_at": "2026-06-19T00:43:44.851782" +} diff --git a/site/public/v1/smartphones/vivo-y75s-dual-sim-lte-cn-32gb/score/index.json b/site/public/v1/smartphones/vivo-y75s-dual-sim-lte-cn-32gb/score/index.json new file mode 100644 index 00000000000..f441c49139e --- /dev/null +++ b/site/public/v1/smartphones/vivo-y75s-dual-sim-lte-cn-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.6, + "performance": null, + "camera": 5.3, + "battery": 3.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y75s-dual-sim-lte-cn-64gb/index.json b/site/public/v1/smartphones/vivo-y75s-dual-sim-lte-cn-64gb/index.json new file mode 100644 index 00000000000..b71e29168fc --- /dev/null +++ b/site/public/v1/smartphones/vivo-y75s-dual-sim-lte-cn-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5098, + "slug": "vivo-y75s-dual-sim-lte-cn-64gb", + "name": "Vivo Y75s Dual SIM LTE CN 64GB", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3225, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.6, + "performance": null, + "camera": 5.3, + "battery": 3.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.851782", + "updated_at": "2026-06-19T00:43:44.851782" +} diff --git a/site/public/v1/smartphones/vivo-y75s-dual-sim-lte-cn-64gb/score/index.json b/site/public/v1/smartphones/vivo-y75s-dual-sim-lte-cn-64gb/score/index.json new file mode 100644 index 00000000000..f441c49139e --- /dev/null +++ b/site/public/v1/smartphones/vivo-y75s-dual-sim-lte-cn-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.6, + "performance": null, + "camera": 5.3, + "battery": 3.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y7s-2019-dual-sim-td-lte-cn-128gb-v1913a/index.json b/site/public/v1/smartphones/vivo-y7s-2019-dual-sim-td-lte-cn-128gb-v1913a/index.json new file mode 100644 index 00000000000..e696472c01f --- /dev/null +++ b/site/public/v1/smartphones/vivo-y7s-2019-dual-sim-td-lte-cn-128gb-v1913a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5304, + "slug": "vivo-y7s-2019-dual-sim-td-lte-cn-128gb-v1913a", + "name": "Vivo Y7s 2019 Dual SIM TD-LTE CN 128GB V1913A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 52, + "slug": "helio-p65", + "name": "Helio P65", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-p65" + }, + "release_date": "2019-07-18", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 1.5, + "camera": 6.3, + "battery": 23.1, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.878313", + "updated_at": "2026-06-19T00:43:44.878313" +} diff --git a/site/public/v1/smartphones/vivo-y7s-2019-dual-sim-td-lte-cn-128gb-v1913a/score/index.json b/site/public/v1/smartphones/vivo-y7s-2019-dual-sim-td-lte-cn-128gb-v1913a/score/index.json new file mode 100644 index 00000000000..71150b92f87 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y7s-2019-dual-sim-td-lte-cn-128gb-v1913a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 1.5, + "camera": 6.3, + "battery": 23.1, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y7s-2019-dual-sim-td-lte-cn-128gb-v1913t/index.json b/site/public/v1/smartphones/vivo-y7s-2019-dual-sim-td-lte-cn-128gb-v1913t/index.json new file mode 100644 index 00000000000..df3e8b67fd1 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y7s-2019-dual-sim-td-lte-cn-128gb-v1913t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5305, + "slug": "vivo-y7s-2019-dual-sim-td-lte-cn-128gb-v1913t", + "name": "Vivo Y7s 2019 Dual SIM TD-LTE CN 128GB V1913T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 52, + "slug": "helio-p65", + "name": "Helio P65", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MC2", + "url": "/v1/socs/helio-p65" + }, + "release_date": "2019-07-18", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 179.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 1.5, + "camera": 6.3, + "battery": 23.1, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.878313", + "updated_at": "2026-06-19T00:43:44.878313" +} diff --git a/site/public/v1/smartphones/vivo-y7s-2019-dual-sim-td-lte-cn-128gb-v1913t/score/index.json b/site/public/v1/smartphones/vivo-y7s-2019-dual-sim-td-lte-cn-128gb-v1913t/score/index.json new file mode 100644 index 00000000000..71150b92f87 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y7s-2019-dual-sim-td-lte-cn-128gb-v1913t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 1.5, + "camera": 6.3, + "battery": 23.1, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y81-dual-sim-td-lte-in-id-pk-th-1808/index.json b/site/public/v1/smartphones/vivo-y81-dual-sim-td-lte-in-id-pk-th-1808/index.json new file mode 100644 index 00000000000..43c752de255 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y81-dual-sim-td-lte-in-id-pk-th-1808/index.json @@ -0,0 +1,76 @@ +{ + "id": 5099, + "slug": "vivo-y81-dual-sim-td-lte-in-id-pk-th-1808", + "name": "Vivo Y81 Dual SIM TD-LTE IN ID PK TH 1808", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-08-14", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3260, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.851782", + "updated_at": "2026-06-19T00:43:44.851782" +} diff --git a/site/public/v1/smartphones/vivo-y81-dual-sim-td-lte-in-id-pk-th-1808/score/index.json b/site/public/v1/smartphones/vivo-y81-dual-sim-td-lte-in-id-pk-th-1808/score/index.json new file mode 100644 index 00000000000..b3b53c37307 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y81-dual-sim-td-lte-in-id-pk-th-1808/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y81-dual-sim-td-lte-ru-1808/index.json b/site/public/v1/smartphones/vivo-y81-dual-sim-td-lte-ru-1808/index.json new file mode 100644 index 00000000000..fd731ba7983 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y81-dual-sim-td-lte-ru-1808/index.json @@ -0,0 +1,76 @@ +{ + "id": 5100, + "slug": "vivo-y81-dual-sim-td-lte-ru-1808", + "name": "Vivo Y81 Dual SIM TD-LTE RU 1808", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3260, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.851782", + "updated_at": "2026-06-19T00:43:44.851782" +} diff --git a/site/public/v1/smartphones/vivo-y81-dual-sim-td-lte-ru-1808/score/index.json b/site/public/v1/smartphones/vivo-y81-dual-sim-td-lte-ru-1808/score/index.json new file mode 100644 index 00000000000..b3b53c37307 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y81-dual-sim-td-lte-ru-1808/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y81-dual-sim-td-lte-sg-hk-1808/index.json b/site/public/v1/smartphones/vivo-y81-dual-sim-td-lte-sg-hk-1808/index.json new file mode 100644 index 00000000000..9eb14b44225 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y81-dual-sim-td-lte-sg-hk-1808/index.json @@ -0,0 +1,76 @@ +{ + "id": 5101, + "slug": "vivo-y81-dual-sim-td-lte-sg-hk-1808", + "name": "Vivo Y81 Dual SIM TD-LTE SG HK 1808", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-08-14", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3260, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.851782", + "updated_at": "2026-06-19T00:43:44.851782" +} diff --git a/site/public/v1/smartphones/vivo-y81-dual-sim-td-lte-sg-hk-1808/score/index.json b/site/public/v1/smartphones/vivo-y81-dual-sim-td-lte-sg-hk-1808/score/index.json new file mode 100644 index 00000000000..b3b53c37307 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y81-dual-sim-td-lte-sg-hk-1808/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y81-dual-sim-td-lte-tw-my-vn-ph-1808/index.json b/site/public/v1/smartphones/vivo-y81-dual-sim-td-lte-tw-my-vn-ph-1808/index.json new file mode 100644 index 00000000000..17eae4301ac --- /dev/null +++ b/site/public/v1/smartphones/vivo-y81-dual-sim-td-lte-tw-my-vn-ph-1808/index.json @@ -0,0 +1,76 @@ +{ + "id": 5102, + "slug": "vivo-y81-dual-sim-td-lte-tw-my-vn-ph-1808", + "name": "Vivo Y81 Dual SIM TD-LTE TW MY VN PH 1808", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3260, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.852782", + "updated_at": "2026-06-19T00:43:44.852782" +} diff --git a/site/public/v1/smartphones/vivo-y81-dual-sim-td-lte-tw-my-vn-ph-1808/score/index.json b/site/public/v1/smartphones/vivo-y81-dual-sim-td-lte-tw-my-vn-ph-1808/score/index.json new file mode 100644 index 00000000000..b3b53c37307 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y81-dual-sim-td-lte-tw-my-vn-ph-1808/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y81-premium-edition-dual-sim-td-lte-cn-64gb-v1732a-y81s/index.json b/site/public/v1/smartphones/vivo-y81-premium-edition-dual-sim-td-lte-cn-64gb-v1732a-y81s/index.json new file mode 100644 index 00000000000..8528b32c66d --- /dev/null +++ b/site/public/v1/smartphones/vivo-y81-premium-edition-dual-sim-td-lte-cn-64gb-v1732a-y81s/index.json @@ -0,0 +1,76 @@ +{ + "id": 5103, + "slug": "vivo-y81-premium-edition-dual-sim-td-lte-cn-64gb-v1732a-y81s", + "name": "Vivo Y81 Premium Edition Dual SIM TD-LTE CN 64GB V1732A / Y81s", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3260, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.852782", + "updated_at": "2026-06-19T00:43:44.852782" +} diff --git a/site/public/v1/smartphones/vivo-y81-premium-edition-dual-sim-td-lte-cn-64gb-v1732a-y81s/score/index.json b/site/public/v1/smartphones/vivo-y81-premium-edition-dual-sim-td-lte-cn-64gb-v1732a-y81s/score/index.json new file mode 100644 index 00000000000..b3b53c37307 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y81-premium-edition-dual-sim-td-lte-cn-64gb-v1732a-y81s/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y81-standard-edition-dual-sim-td-lte-cn-32gb-v1732a-y81s/index.json b/site/public/v1/smartphones/vivo-y81-standard-edition-dual-sim-td-lte-cn-32gb-v1732a-y81s/index.json new file mode 100644 index 00000000000..79f5d788c1d --- /dev/null +++ b/site/public/v1/smartphones/vivo-y81-standard-edition-dual-sim-td-lte-cn-32gb-v1732a-y81s/index.json @@ -0,0 +1,76 @@ +{ + "id": 5104, + "slug": "vivo-y81-standard-edition-dual-sim-td-lte-cn-32gb-v1732a-y81s", + "name": "Vivo Y81 Standard Edition Dual SIM TD-LTE CN 32GB V1732A / Y81s", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3260, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.852782", + "updated_at": "2026-06-19T00:43:44.852782" +} diff --git a/site/public/v1/smartphones/vivo-y81-standard-edition-dual-sim-td-lte-cn-32gb-v1732a-y81s/score/index.json b/site/public/v1/smartphones/vivo-y81-standard-edition-dual-sim-td-lte-cn-32gb-v1732a-y81s/score/index.json new file mode 100644 index 00000000000..b3b53c37307 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y81-standard-edition-dual-sim-td-lte-cn-32gb-v1732a-y81s/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y81-standard-edition-dual-sim-td-lte-cn-32gb-v1732t-y81s/index.json b/site/public/v1/smartphones/vivo-y81-standard-edition-dual-sim-td-lte-cn-32gb-v1732t-y81s/index.json new file mode 100644 index 00000000000..f40b64a40be --- /dev/null +++ b/site/public/v1/smartphones/vivo-y81-standard-edition-dual-sim-td-lte-cn-32gb-v1732t-y81s/index.json @@ -0,0 +1,76 @@ +{ + "id": 5105, + "slug": "vivo-y81-standard-edition-dual-sim-td-lte-cn-32gb-v1732t-y81s", + "name": "Vivo Y81 Standard Edition Dual SIM TD-LTE CN 32GB V1732T / Y81s", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3260, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.852782", + "updated_at": "2026-06-19T00:43:44.852782" +} diff --git a/site/public/v1/smartphones/vivo-y81-standard-edition-dual-sim-td-lte-cn-32gb-v1732t-y81s/score/index.json b/site/public/v1/smartphones/vivo-y81-standard-edition-dual-sim-td-lte-cn-32gb-v1732t-y81s/score/index.json new file mode 100644 index 00000000000..b3b53c37307 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y81-standard-edition-dual-sim-td-lte-cn-32gb-v1732t-y81s/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y81-standard-edition-dual-sim-td-lte-cn-64gb-v1732a-y81s/index.json b/site/public/v1/smartphones/vivo-y81-standard-edition-dual-sim-td-lte-cn-64gb-v1732a-y81s/index.json new file mode 100644 index 00000000000..437dbb7effc --- /dev/null +++ b/site/public/v1/smartphones/vivo-y81-standard-edition-dual-sim-td-lte-cn-64gb-v1732a-y81s/index.json @@ -0,0 +1,76 @@ +{ + "id": 5106, + "slug": "vivo-y81-standard-edition-dual-sim-td-lte-cn-64gb-v1732a-y81s", + "name": "Vivo Y81 Standard Edition Dual SIM TD-LTE CN 64GB V1732A / Y81s", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3260, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.852782", + "updated_at": "2026-06-19T00:43:44.852782" +} diff --git a/site/public/v1/smartphones/vivo-y81-standard-edition-dual-sim-td-lte-cn-64gb-v1732a-y81s/score/index.json b/site/public/v1/smartphones/vivo-y81-standard-edition-dual-sim-td-lte-cn-64gb-v1732a-y81s/score/index.json new file mode 100644 index 00000000000..b3b53c37307 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y81-standard-edition-dual-sim-td-lte-cn-64gb-v1732a-y81s/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y81i-dual-sim-td-lte-in-pk-th-id-y81/index.json b/site/public/v1/smartphones/vivo-y81i-dual-sim-td-lte-in-pk-th-id-y81/index.json new file mode 100644 index 00000000000..4f9f2fc58d1 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y81i-dual-sim-td-lte-in-pk-th-id-y81/index.json @@ -0,0 +1,76 @@ +{ + "id": 5107, + "slug": "vivo-y81i-dual-sim-td-lte-in-pk-th-id-y81", + "name": "Vivo Y81i Dual SIM TD-LTE IN PK TH ID / Y81", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2018-12-07", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3260, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 143.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.852782", + "updated_at": "2026-06-19T00:43:44.852782" +} diff --git a/site/public/v1/smartphones/vivo-y81i-dual-sim-td-lte-in-pk-th-id-y81/score/index.json b/site/public/v1/smartphones/vivo-y81i-dual-sim-td-lte-in-pk-th-id-y81/score/index.json new file mode 100644 index 00000000000..b3b53c37307 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y81i-dual-sim-td-lte-in-pk-th-id-y81/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y81i-dual-sim-td-lte-my-bd/index.json b/site/public/v1/smartphones/vivo-y81i-dual-sim-td-lte-my-bd/index.json new file mode 100644 index 00000000000..f7301010009 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y81i-dual-sim-td-lte-my-bd/index.json @@ -0,0 +1,76 @@ +{ + "id": 5108, + "slug": "vivo-y81i-dual-sim-td-lte-my-bd", + "name": "Vivo Y81i Dual SIM TD-LTE MY BD", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3260, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 143.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.852782", + "updated_at": "2026-06-19T00:43:44.852782" +} diff --git a/site/public/v1/smartphones/vivo-y81i-dual-sim-td-lte-my-bd/score/index.json b/site/public/v1/smartphones/vivo-y81i-dual-sim-td-lte-my-bd/score/index.json new file mode 100644 index 00000000000..b3b53c37307 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y81i-dual-sim-td-lte-my-bd/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y83-dual-sim-td-lte-cn/index.json b/site/public/v1/smartphones/vivo-y83-dual-sim-td-lte-cn/index.json new file mode 100644 index 00000000000..da9e0e62c27 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y83-dual-sim-td-lte-cn/index.json @@ -0,0 +1,76 @@ +{ + "id": 5109, + "slug": "vivo-y83-dual-sim-td-lte-cn", + "name": "Vivo Y83 Dual SIM TD-LTE CN", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3260, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.852782", + "updated_at": "2026-06-19T00:43:44.852782" +} diff --git a/site/public/v1/smartphones/vivo-y83-dual-sim-td-lte-cn/score/index.json b/site/public/v1/smartphones/vivo-y83-dual-sim-td-lte-cn/score/index.json new file mode 100644 index 00000000000..b3b53c37307 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y83-dual-sim-td-lte-cn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y83-dual-sim-td-lte-in-id-1802/index.json b/site/public/v1/smartphones/vivo-y83-dual-sim-td-lte-in-id-1802/index.json new file mode 100644 index 00000000000..b61a536dafd --- /dev/null +++ b/site/public/v1/smartphones/vivo-y83-dual-sim-td-lte-in-id-1802/index.json @@ -0,0 +1,76 @@ +{ + "id": 5110, + "slug": "vivo-y83-dual-sim-td-lte-in-id-1802", + "name": "Vivo Y83 Dual SIM TD-LTE IN ID 1802", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3260, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 151.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.852782", + "updated_at": "2026-06-19T00:43:44.852782" +} diff --git a/site/public/v1/smartphones/vivo-y83-dual-sim-td-lte-in-id-1802/score/index.json b/site/public/v1/smartphones/vivo-y83-dual-sim-td-lte-in-id-1802/score/index.json new file mode 100644 index 00000000000..b3b53c37307 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y83-dual-sim-td-lte-in-id-1802/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y83-pro-dual-sim-td-lte-in-1803/index.json b/site/public/v1/smartphones/vivo-y83-pro-dual-sim-td-lte-in-1803/index.json new file mode 100644 index 00000000000..87b5832392d --- /dev/null +++ b/site/public/v1/smartphones/vivo-y83-pro-dual-sim-td-lte-in-1803/index.json @@ -0,0 +1,76 @@ +{ + "id": 5111, + "slug": "vivo-y83-pro-dual-sim-td-lte-in-1803", + "name": "Vivo Y83 Pro Dual SIM TD-LTE IN 1803", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3260, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 151.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.853781", + "updated_at": "2026-06-19T00:43:44.853781" +} diff --git a/site/public/v1/smartphones/vivo-y83-pro-dual-sim-td-lte-in-1803/score/index.json b/site/public/v1/smartphones/vivo-y83-pro-dual-sim-td-lte-in-1803/score/index.json new file mode 100644 index 00000000000..b3b53c37307 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y83-pro-dual-sim-td-lte-in-1803/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y83a-dual-sim-td-lte-cn/index.json b/site/public/v1/smartphones/vivo-y83a-dual-sim-td-lte-cn/index.json new file mode 100644 index 00000000000..d520ff0ce49 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y83a-dual-sim-td-lte-cn/index.json @@ -0,0 +1,76 @@ +{ + "id": 5112, + "slug": "vivo-y83a-dual-sim-td-lte-cn", + "name": "Vivo Y83A Dual SIM TD-LTE CN", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3260, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.853781", + "updated_at": "2026-06-19T00:43:44.853781" +} diff --git a/site/public/v1/smartphones/vivo-y83a-dual-sim-td-lte-cn/score/index.json b/site/public/v1/smartphones/vivo-y83a-dual-sim-td-lte-cn/score/index.json new file mode 100644 index 00000000000..b3b53c37307 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y83a-dual-sim-td-lte-cn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y85-dual-sim-td-lte-cn-64gb/index.json b/site/public/v1/smartphones/vivo-y85-dual-sim-td-lte-cn-64gb/index.json new file mode 100644 index 00000000000..bdcb38f4a2f --- /dev/null +++ b/site/public/v1/smartphones/vivo-y85-dual-sim-td-lte-cn-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5113, + "slug": "vivo-y85-dual-sim-td-lte-cn-64gb", + "name": "Vivo Y85 Dual SIM TD-LTE CN 64GB", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3260, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.853781", + "updated_at": "2026-06-19T00:43:44.853781" +} diff --git a/site/public/v1/smartphones/vivo-y85-dual-sim-td-lte-cn-64gb/score/index.json b/site/public/v1/smartphones/vivo-y85-dual-sim-td-lte-cn-64gb/score/index.json new file mode 100644 index 00000000000..a2b7f6c0181 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y85-dual-sim-td-lte-cn-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y85-dual-sim-td-lte-ru-64gb-1726/index.json b/site/public/v1/smartphones/vivo-y85-dual-sim-td-lte-ru-64gb-1726/index.json new file mode 100644 index 00000000000..79ad9380368 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y85-dual-sim-td-lte-ru-64gb-1726/index.json @@ -0,0 +1,76 @@ +{ + "id": 5114, + "slug": "vivo-y85-dual-sim-td-lte-ru-64gb-1726", + "name": "Vivo Y85 Dual SIM TD-LTE RU 64GB 1726", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3260, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 152.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.853781", + "updated_at": "2026-06-19T00:43:44.853781" +} diff --git a/site/public/v1/smartphones/vivo-y85-dual-sim-td-lte-ru-64gb-1726/score/index.json b/site/public/v1/smartphones/vivo-y85-dual-sim-td-lte-ru-64gb-1726/score/index.json new file mode 100644 index 00000000000..b3b53c37307 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y85-dual-sim-td-lte-ru-64gb-1726/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y85-dual-sim-td-lte-th-1726/index.json b/site/public/v1/smartphones/vivo-y85-dual-sim-td-lte-th-1726/index.json new file mode 100644 index 00000000000..87936cd9189 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y85-dual-sim-td-lte-th-1726/index.json @@ -0,0 +1,76 @@ +{ + "id": 5115, + "slug": "vivo-y85-dual-sim-td-lte-th-1726", + "name": "Vivo Y85 Dual SIM TD-LTE TH 1726", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3260, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 152.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.853781", + "updated_at": "2026-06-19T00:43:44.853781" +} diff --git a/site/public/v1/smartphones/vivo-y85-dual-sim-td-lte-th-1726/score/index.json b/site/public/v1/smartphones/vivo-y85-dual-sim-td-lte-th-1726/score/index.json new file mode 100644 index 00000000000..b3b53c37307 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y85-dual-sim-td-lte-th-1726/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y85-dual-sim-td-lte-vn-sg-hk-bd-1726/index.json b/site/public/v1/smartphones/vivo-y85-dual-sim-td-lte-vn-sg-hk-bd-1726/index.json new file mode 100644 index 00000000000..0629bbeec15 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y85-dual-sim-td-lte-vn-sg-hk-bd-1726/index.json @@ -0,0 +1,76 @@ +{ + "id": 5116, + "slug": "vivo-y85-dual-sim-td-lte-vn-sg-hk-bd-1726", + "name": "Vivo Y85 Dual SIM TD-LTE VN SG HK BD 1726", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3260, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 152.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.853781", + "updated_at": "2026-06-19T00:43:44.853781" +} diff --git a/site/public/v1/smartphones/vivo-y85-dual-sim-td-lte-vn-sg-hk-bd-1726/score/index.json b/site/public/v1/smartphones/vivo-y85-dual-sim-td-lte-vn-sg-hk-bd-1726/score/index.json new file mode 100644 index 00000000000..b3b53c37307 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y85-dual-sim-td-lte-vn-sg-hk-bd-1726/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y85a-dual-sim-td-lte-cn-32gb/index.json b/site/public/v1/smartphones/vivo-y85a-dual-sim-td-lte-cn-32gb/index.json new file mode 100644 index 00000000000..412825733b7 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y85a-dual-sim-td-lte-cn-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5117, + "slug": "vivo-y85a-dual-sim-td-lte-cn-32gb", + "name": "Vivo Y85A Dual SIM TD-LTE CN 32GB", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3260, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.853781", + "updated_at": "2026-06-19T00:43:44.853781" +} diff --git a/site/public/v1/smartphones/vivo-y85a-dual-sim-td-lte-cn-32gb/score/index.json b/site/public/v1/smartphones/vivo-y85a-dual-sim-td-lte-cn-32gb/score/index.json new file mode 100644 index 00000000000..a2b7f6c0181 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y85a-dual-sim-td-lte-cn-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y90-dual-sim-td-lte-bd-eg-ke-32gb-1908/index.json b/site/public/v1/smartphones/vivo-y90-dual-sim-td-lte-bd-eg-ke-32gb-1908/index.json new file mode 100644 index 00000000000..c8df88fe6c4 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y90-dual-sim-td-lte-bd-eg-ke-32gb-1908/index.json @@ -0,0 +1,76 @@ +{ + "id": 5306, + "slug": "vivo-y90-dual-sim-td-lte-bd-eg-ke-32gb-1908", + "name": "Vivo Y90 Dual SIM TD-LTE BD EG KE 32GB 1908", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-08-27", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4030, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": null, + "camera": 5.0, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.878313", + "updated_at": "2026-06-19T00:43:44.878313" +} diff --git a/site/public/v1/smartphones/vivo-y90-dual-sim-td-lte-bd-eg-ke-32gb-1908/score/index.json b/site/public/v1/smartphones/vivo-y90-dual-sim-td-lte-bd-eg-ke-32gb-1908/score/index.json new file mode 100644 index 00000000000..dc9fc1a22a0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y90-dual-sim-td-lte-bd-eg-ke-32gb-1908/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": null, + "camera": 5.0, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y90-dual-sim-td-lte-in-16gb-1908/index.json b/site/public/v1/smartphones/vivo-y90-dual-sim-td-lte-in-16gb-1908/index.json new file mode 100644 index 00000000000..ab44a013258 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y90-dual-sim-td-lte-in-16gb-1908/index.json @@ -0,0 +1,76 @@ +{ + "id": 5307, + "slug": "vivo-y90-dual-sim-td-lte-in-16gb-1908", + "name": "Vivo Y90 Dual SIM TD-LTE IN 16GB 1908", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-07-27", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4030, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": null, + "camera": 5.0, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.878313", + "updated_at": "2026-06-19T00:43:44.878313" +} diff --git a/site/public/v1/smartphones/vivo-y90-dual-sim-td-lte-in-16gb-1908/score/index.json b/site/public/v1/smartphones/vivo-y90-dual-sim-td-lte-in-16gb-1908/score/index.json new file mode 100644 index 00000000000..dc9fc1a22a0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y90-dual-sim-td-lte-in-16gb-1908/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": null, + "camera": 5.0, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y90-dual-sim-td-lte-pk-np-mn-32gb-1908/index.json b/site/public/v1/smartphones/vivo-y90-dual-sim-td-lte-pk-np-mn-32gb-1908/index.json new file mode 100644 index 00000000000..6e6e5a6342a --- /dev/null +++ b/site/public/v1/smartphones/vivo-y90-dual-sim-td-lte-pk-np-mn-32gb-1908/index.json @@ -0,0 +1,76 @@ +{ + "id": 5308, + "slug": "vivo-y90-dual-sim-td-lte-pk-np-mn-32gb-1908", + "name": "Vivo Y90 Dual SIM TD-LTE PK NP MN 32GB 1908", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-08-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4030, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": null, + "camera": 5.0, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.878313", + "updated_at": "2026-06-19T00:43:44.878313" +} diff --git a/site/public/v1/smartphones/vivo-y90-dual-sim-td-lte-pk-np-mn-32gb-1908/score/index.json b/site/public/v1/smartphones/vivo-y90-dual-sim-td-lte-pk-np-mn-32gb-1908/score/index.json new file mode 100644 index 00000000000..dc9fc1a22a0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y90-dual-sim-td-lte-pk-np-mn-32gb-1908/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": null, + "camera": 5.0, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y91-2019-dual-sim-td-lte-id-th-y91i-32gb/index.json b/site/public/v1/smartphones/vivo-y91-2019-dual-sim-td-lte-id-th-y91i-32gb/index.json new file mode 100644 index 00000000000..40987053bbf --- /dev/null +++ b/site/public/v1/smartphones/vivo-y91-2019-dual-sim-td-lte-id-th-y91i-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5309, + "slug": "vivo-y91-2019-dual-sim-td-lte-id-th-y91i-32gb", + "name": "Vivo Y91 2019 Dual SIM TD-LTE ID TH / Y91i 32GB", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-01-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4030, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": null, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.878313", + "updated_at": "2026-06-19T00:43:44.878313" +} diff --git a/site/public/v1/smartphones/vivo-y91-2019-dual-sim-td-lte-id-th-y91i-32gb/score/index.json b/site/public/v1/smartphones/vivo-y91-2019-dual-sim-td-lte-id-th-y91i-32gb/score/index.json new file mode 100644 index 00000000000..887be183fd0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y91-2019-dual-sim-td-lte-id-th-y91i-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": null, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y91-dual-sim-td-lte-cn-v1818ca/index.json b/site/public/v1/smartphones/vivo-y91-dual-sim-td-lte-cn-v1818ca/index.json new file mode 100644 index 00000000000..f62d4050c29 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y91-dual-sim-td-lte-cn-v1818ca/index.json @@ -0,0 +1,76 @@ +{ + "id": 5118, + "slug": "vivo-y91-dual-sim-td-lte-cn-v1818ca", + "name": "Vivo Y91 Dual SIM TD-LTE CN V1818CA", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-12-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4030, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": null, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.853781", + "updated_at": "2026-06-19T00:43:44.853781" +} diff --git a/site/public/v1/smartphones/vivo-y91-dual-sim-td-lte-cn-v1818ca/score/index.json b/site/public/v1/smartphones/vivo-y91-dual-sim-td-lte-cn-v1818ca/score/index.json new file mode 100644 index 00000000000..887be183fd0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y91-dual-sim-td-lte-cn-v1818ca/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": null, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y91-dual-sim-td-lte-cn-v1818ct/index.json b/site/public/v1/smartphones/vivo-y91-dual-sim-td-lte-cn-v1818ct/index.json new file mode 100644 index 00000000000..ae95a4e803c --- /dev/null +++ b/site/public/v1/smartphones/vivo-y91-dual-sim-td-lte-cn-v1818ct/index.json @@ -0,0 +1,76 @@ +{ + "id": 5119, + "slug": "vivo-y91-dual-sim-td-lte-cn-v1818ct", + "name": "Vivo Y91 Dual SIM TD-LTE CN V1818CT", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-12-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4030, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": null, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.853781", + "updated_at": "2026-06-19T00:43:44.853781" +} diff --git a/site/public/v1/smartphones/vivo-y91-dual-sim-td-lte-cn-v1818ct/score/index.json b/site/public/v1/smartphones/vivo-y91-dual-sim-td-lte-cn-v1818ct/score/index.json new file mode 100644 index 00000000000..887be183fd0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y91-dual-sim-td-lte-cn-v1818ct/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": null, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y91-dual-sim-td-lte-ph-1817/index.json b/site/public/v1/smartphones/vivo-y91-dual-sim-td-lte-ph-1817/index.json new file mode 100644 index 00000000000..fd374f68dfb --- /dev/null +++ b/site/public/v1/smartphones/vivo-y91-dual-sim-td-lte-ph-1817/index.json @@ -0,0 +1,76 @@ +{ + "id": 5120, + "slug": "vivo-y91-dual-sim-td-lte-ph-1817", + "name": "Vivo Y91 Dual SIM TD-LTE PH 1817", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4030, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.854781", + "updated_at": "2026-06-19T00:43:44.854781" +} diff --git a/site/public/v1/smartphones/vivo-y91-dual-sim-td-lte-ph-1817/score/index.json b/site/public/v1/smartphones/vivo-y91-dual-sim-td-lte-ph-1817/score/index.json new file mode 100644 index 00000000000..b03e6ec830f --- /dev/null +++ b/site/public/v1/smartphones/vivo-y91-dual-sim-td-lte-ph-1817/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y91-dual-sim-td-lte-pk-1814/index.json b/site/public/v1/smartphones/vivo-y91-dual-sim-td-lte-pk-1814/index.json new file mode 100644 index 00000000000..4c125406c2c --- /dev/null +++ b/site/public/v1/smartphones/vivo-y91-dual-sim-td-lte-pk-1814/index.json @@ -0,0 +1,76 @@ +{ + "id": 5121, + "slug": "vivo-y91-dual-sim-td-lte-pk-1814", + "name": "Vivo Y91 Dual SIM TD-LTE PK 1814", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-12-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4030, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": null, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.854781", + "updated_at": "2026-06-19T00:43:44.854781" +} diff --git a/site/public/v1/smartphones/vivo-y91-dual-sim-td-lte-pk-1814/score/index.json b/site/public/v1/smartphones/vivo-y91-dual-sim-td-lte-pk-1814/score/index.json new file mode 100644 index 00000000000..887be183fd0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y91-dual-sim-td-lte-pk-1814/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": null, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y91c-dual-sim-td-lte-v1-pk-th-bd-1820-y91c-2020/index.json b/site/public/v1/smartphones/vivo-y91c-dual-sim-td-lte-v1-pk-th-bd-1820-y91c-2020/index.json new file mode 100644 index 00000000000..c535d66a12d --- /dev/null +++ b/site/public/v1/smartphones/vivo-y91c-dual-sim-td-lte-v1-pk-th-bd-1820-y91c-2020/index.json @@ -0,0 +1,76 @@ +{ + "id": 5310, + "slug": "vivo-y91c-dual-sim-td-lte-v1-pk-th-bd-1820-y91c-2020", + "name": "Vivo Y91c Dual SIM TD-LTE V1 PK TH BD 1820 / Y91c 2020", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4030, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": null, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.878313", + "updated_at": "2026-06-19T00:43:44.878313" +} diff --git a/site/public/v1/smartphones/vivo-y91c-dual-sim-td-lte-v1-pk-th-bd-1820-y91c-2020/score/index.json b/site/public/v1/smartphones/vivo-y91c-dual-sim-td-lte-v1-pk-th-bd-1820-y91c-2020/score/index.json new file mode 100644 index 00000000000..887be183fd0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y91c-dual-sim-td-lte-v1-pk-th-bd-1820-y91c-2020/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": null, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y91c-dual-sim-td-lte-v2-vn-ph-my-1820/index.json b/site/public/v1/smartphones/vivo-y91c-dual-sim-td-lte-v2-vn-ph-my-1820/index.json new file mode 100644 index 00000000000..f693fb629dc --- /dev/null +++ b/site/public/v1/smartphones/vivo-y91c-dual-sim-td-lte-v2-vn-ph-my-1820/index.json @@ -0,0 +1,76 @@ +{ + "id": 5311, + "slug": "vivo-y91c-dual-sim-td-lte-v2-vn-ph-my-1820", + "name": "Vivo Y91c Dual SIM TD-LTE V2 VN PH MY 1820", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4030, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": null, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.879326", + "updated_at": "2026-06-19T00:43:44.879326" +} diff --git a/site/public/v1/smartphones/vivo-y91c-dual-sim-td-lte-v2-vn-ph-my-1820/score/index.json b/site/public/v1/smartphones/vivo-y91c-dual-sim-td-lte-v2-vn-ph-my-1820/score/index.json new file mode 100644 index 00000000000..887be183fd0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y91c-dual-sim-td-lte-v2-vn-ph-my-1820/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": null, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y91c-dual-sim-td-lte-v3-eg-1820/index.json b/site/public/v1/smartphones/vivo-y91c-dual-sim-td-lte-v3-eg-1820/index.json new file mode 100644 index 00000000000..146993354b8 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y91c-dual-sim-td-lte-v3-eg-1820/index.json @@ -0,0 +1,76 @@ +{ + "id": 5312, + "slug": "vivo-y91c-dual-sim-td-lte-v3-eg-1820", + "name": "Vivo Y91c Dual SIM TD-LTE V3 EG 1820", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4030, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": null, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.879326", + "updated_at": "2026-06-19T00:43:44.879326" +} diff --git a/site/public/v1/smartphones/vivo-y91c-dual-sim-td-lte-v3-eg-1820/score/index.json b/site/public/v1/smartphones/vivo-y91c-dual-sim-td-lte-v3-eg-1820/score/index.json new file mode 100644 index 00000000000..887be183fd0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y91c-dual-sim-td-lte-v3-eg-1820/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": null, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y91c-global-dual-sim-td-lte-v4-1820/index.json b/site/public/v1/smartphones/vivo-y91c-global-dual-sim-td-lte-v4-1820/index.json new file mode 100644 index 00000000000..fb3d0b89d33 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y91c-global-dual-sim-td-lte-v4-1820/index.json @@ -0,0 +1,76 @@ +{ + "id": 5313, + "slug": "vivo-y91c-global-dual-sim-td-lte-v4-1820", + "name": "Vivo Y91c Global Dual SIM TD-LTE V4 1820", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4030, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": null, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.879326", + "updated_at": "2026-06-19T00:43:44.879326" +} diff --git a/site/public/v1/smartphones/vivo-y91c-global-dual-sim-td-lte-v4-1820/score/index.json b/site/public/v1/smartphones/vivo-y91c-global-dual-sim-td-lte-v4-1820/score/index.json new file mode 100644 index 00000000000..887be183fd0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y91c-global-dual-sim-td-lte-v4-1820/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": null, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y91i-dual-sim-td-lte-my-1816/index.json b/site/public/v1/smartphones/vivo-y91i-dual-sim-td-lte-my-1816/index.json new file mode 100644 index 00000000000..7511c39befb --- /dev/null +++ b/site/public/v1/smartphones/vivo-y91i-dual-sim-td-lte-my-1816/index.json @@ -0,0 +1,76 @@ +{ + "id": 5122, + "slug": "vivo-y91i-dual-sim-td-lte-my-1816", + "name": "Vivo Y91i Dual SIM TD-LTE MY 1816", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-12-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4030, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": null, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.854781", + "updated_at": "2026-06-19T00:43:44.854781" +} diff --git a/site/public/v1/smartphones/vivo-y91i-dual-sim-td-lte-my-1816/score/index.json b/site/public/v1/smartphones/vivo-y91i-dual-sim-td-lte-my-1816/score/index.json new file mode 100644 index 00000000000..887be183fd0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y91i-dual-sim-td-lte-my-1816/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": null, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y91i-dual-sim-td-lte-my-32gb/index.json b/site/public/v1/smartphones/vivo-y91i-dual-sim-td-lte-my-32gb/index.json new file mode 100644 index 00000000000..e021b8790e5 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y91i-dual-sim-td-lte-my-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 5314, + "slug": "vivo-y91i-dual-sim-td-lte-my-32gb", + "name": "Vivo Y91i Dual SIM TD-LTE MY 32GB", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-01-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4030, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": null, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.879326", + "updated_at": "2026-06-19T00:43:44.879326" +} diff --git a/site/public/v1/smartphones/vivo-y91i-dual-sim-td-lte-my-32gb/score/index.json b/site/public/v1/smartphones/vivo-y91i-dual-sim-td-lte-my-32gb/score/index.json new file mode 100644 index 00000000000..887be183fd0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y91i-dual-sim-td-lte-my-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": null, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y91i-dual-sim-td-lte-ph-id-1817/index.json b/site/public/v1/smartphones/vivo-y91i-dual-sim-td-lte-ph-id-1817/index.json new file mode 100644 index 00000000000..2e1ff325fd1 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y91i-dual-sim-td-lte-ph-id-1817/index.json @@ -0,0 +1,76 @@ +{ + "id": 5123, + "slug": "vivo-y91i-dual-sim-td-lte-ph-id-1817", + "name": "Vivo Y91i Dual SIM TD-LTE PH ID 1817", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4030, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.854781", + "updated_at": "2026-06-19T00:43:44.854781" +} diff --git a/site/public/v1/smartphones/vivo-y91i-dual-sim-td-lte-ph-id-1817/score/index.json b/site/public/v1/smartphones/vivo-y91i-dual-sim-td-lte-ph-id-1817/score/index.json new file mode 100644 index 00000000000..b03e6ec830f --- /dev/null +++ b/site/public/v1/smartphones/vivo-y91i-dual-sim-td-lte-ph-id-1817/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y91i-dual-sim-td-lte-th-1816/index.json b/site/public/v1/smartphones/vivo-y91i-dual-sim-td-lte-th-1816/index.json new file mode 100644 index 00000000000..7ec3937d472 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y91i-dual-sim-td-lte-th-1816/index.json @@ -0,0 +1,76 @@ +{ + "id": 5124, + "slug": "vivo-y91i-dual-sim-td-lte-th-1816", + "name": "Vivo Y91i Dual SIM TD-LTE TH 1816", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-12-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4030, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": null, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.854781", + "updated_at": "2026-06-19T00:43:44.854781" +} diff --git a/site/public/v1/smartphones/vivo-y91i-dual-sim-td-lte-th-1816/score/index.json b/site/public/v1/smartphones/vivo-y91i-dual-sim-td-lte-th-1816/score/index.json new file mode 100644 index 00000000000..887be183fd0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y91i-dual-sim-td-lte-th-1816/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": null, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y93-dual-sim-td-lte-in-1815/index.json b/site/public/v1/smartphones/vivo-y93-dual-sim-td-lte-in-1815/index.json new file mode 100644 index 00000000000..503cc8b1309 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y93-dual-sim-td-lte-in-1815/index.json @@ -0,0 +1,76 @@ +{ + "id": 5125, + "slug": "vivo-y93-dual-sim-td-lte-in-1815", + "name": "Vivo Y93 Dual SIM TD-LTE IN 1815", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-12-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4030, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": null, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.854781", + "updated_at": "2026-06-19T00:43:44.854781" +} diff --git a/site/public/v1/smartphones/vivo-y93-dual-sim-td-lte-in-1815/score/index.json b/site/public/v1/smartphones/vivo-y93-dual-sim-td-lte-in-1815/score/index.json new file mode 100644 index 00000000000..887be183fd0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y93-dual-sim-td-lte-in-1815/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": null, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y93-lite-dual-sim-td-lte-ru-1817/index.json b/site/public/v1/smartphones/vivo-y93-lite-dual-sim-td-lte-ru-1817/index.json new file mode 100644 index 00000000000..29945128813 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y93-lite-dual-sim-td-lte-ru-1817/index.json @@ -0,0 +1,76 @@ +{ + "id": 5315, + "slug": "vivo-y93-lite-dual-sim-td-lte-ru-1817", + "name": "Vivo Y93 Lite Dual SIM TD-LTE RU 1817", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4030, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.879326", + "updated_at": "2026-06-19T00:43:44.879326" +} diff --git a/site/public/v1/smartphones/vivo-y93-lite-dual-sim-td-lte-ru-1817/score/index.json b/site/public/v1/smartphones/vivo-y93-lite-dual-sim-td-lte-ru-1817/score/index.json new file mode 100644 index 00000000000..b03e6ec830f --- /dev/null +++ b/site/public/v1/smartphones/vivo-y93-lite-dual-sim-td-lte-ru-1817/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y93-premium-edition-dual-sim-td-lte-cn-v1818a/index.json b/site/public/v1/smartphones/vivo-y93-premium-edition-dual-sim-td-lte-cn-v1818a/index.json new file mode 100644 index 00000000000..663ee4c6126 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y93-premium-edition-dual-sim-td-lte-cn-v1818a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5126, + "slug": "vivo-y93-premium-edition-dual-sim-td-lte-cn-v1818a", + "name": "Vivo Y93 Premium Edition Dual SIM TD-LTE CN V1818A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4030, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.854781", + "updated_at": "2026-06-19T00:43:44.854781" +} diff --git a/site/public/v1/smartphones/vivo-y93-premium-edition-dual-sim-td-lte-cn-v1818a/score/index.json b/site/public/v1/smartphones/vivo-y93-premium-edition-dual-sim-td-lte-cn-v1818a/score/index.json new file mode 100644 index 00000000000..b03e6ec830f --- /dev/null +++ b/site/public/v1/smartphones/vivo-y93-premium-edition-dual-sim-td-lte-cn-v1818a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y93-premium-edition-dual-sim-td-lte-cn-v1818t/index.json b/site/public/v1/smartphones/vivo-y93-premium-edition-dual-sim-td-lte-cn-v1818t/index.json new file mode 100644 index 00000000000..eb4c4471ffa --- /dev/null +++ b/site/public/v1/smartphones/vivo-y93-premium-edition-dual-sim-td-lte-cn-v1818t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5127, + "slug": "vivo-y93-premium-edition-dual-sim-td-lte-cn-v1818t", + "name": "Vivo Y93 Premium Edition Dual SIM TD-LTE CN V1818T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4030, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.854781", + "updated_at": "2026-06-19T00:43:44.854781" +} diff --git a/site/public/v1/smartphones/vivo-y93-premium-edition-dual-sim-td-lte-cn-v1818t/score/index.json b/site/public/v1/smartphones/vivo-y93-premium-edition-dual-sim-td-lte-cn-v1818t/score/index.json new file mode 100644 index 00000000000..b03e6ec830f --- /dev/null +++ b/site/public/v1/smartphones/vivo-y93-premium-edition-dual-sim-td-lte-cn-v1818t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y93-standard-edition-dual-sim-td-lte-cn-v1818a/index.json b/site/public/v1/smartphones/vivo-y93-standard-edition-dual-sim-td-lte-cn-v1818a/index.json new file mode 100644 index 00000000000..4670261ae4a --- /dev/null +++ b/site/public/v1/smartphones/vivo-y93-standard-edition-dual-sim-td-lte-cn-v1818a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5128, + "slug": "vivo-y93-standard-edition-dual-sim-td-lte-cn-v1818a", + "name": "Vivo Y93 Standard Edition Dual SIM TD-LTE CN V1818A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4030, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.855781", + "updated_at": "2026-06-19T00:43:44.855781" +} diff --git a/site/public/v1/smartphones/vivo-y93-standard-edition-dual-sim-td-lte-cn-v1818a/score/index.json b/site/public/v1/smartphones/vivo-y93-standard-edition-dual-sim-td-lte-cn-v1818a/score/index.json new file mode 100644 index 00000000000..b03e6ec830f --- /dev/null +++ b/site/public/v1/smartphones/vivo-y93-standard-edition-dual-sim-td-lte-cn-v1818a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y93-standard-edition-dual-sim-td-lte-cn-v1818t/index.json b/site/public/v1/smartphones/vivo-y93-standard-edition-dual-sim-td-lte-cn-v1818t/index.json new file mode 100644 index 00000000000..f5cf5db398c --- /dev/null +++ b/site/public/v1/smartphones/vivo-y93-standard-edition-dual-sim-td-lte-cn-v1818t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5129, + "slug": "vivo-y93-standard-edition-dual-sim-td-lte-cn-v1818t", + "name": "Vivo Y93 Standard Edition Dual SIM TD-LTE CN V1818T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4030, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.855781", + "updated_at": "2026-06-19T00:43:44.855781" +} diff --git a/site/public/v1/smartphones/vivo-y93-standard-edition-dual-sim-td-lte-cn-v1818t/score/index.json b/site/public/v1/smartphones/vivo-y93-standard-edition-dual-sim-td-lte-cn-v1818t/score/index.json new file mode 100644 index 00000000000..b03e6ec830f --- /dev/null +++ b/site/public/v1/smartphones/vivo-y93-standard-edition-dual-sim-td-lte-cn-v1818t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y93s-dual-sim-td-lte-cn-v1818ca/index.json b/site/public/v1/smartphones/vivo-y93s-dual-sim-td-lte-cn-v1818ca/index.json new file mode 100644 index 00000000000..cb00a410810 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y93s-dual-sim-td-lte-cn-v1818ca/index.json @@ -0,0 +1,76 @@ +{ + "id": 5130, + "slug": "vivo-y93s-dual-sim-td-lte-cn-v1818ca", + "name": "Vivo Y93s Dual SIM TD-LTE CN V1818CA", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-12-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4030, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": null, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.855781", + "updated_at": "2026-06-19T00:43:44.855781" +} diff --git a/site/public/v1/smartphones/vivo-y93s-dual-sim-td-lte-cn-v1818ca/score/index.json b/site/public/v1/smartphones/vivo-y93s-dual-sim-td-lte-cn-v1818ca/score/index.json new file mode 100644 index 00000000000..887be183fd0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y93s-dual-sim-td-lte-cn-v1818ca/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": null, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y93s-dual-sim-td-lte-cn-v1818ct/index.json b/site/public/v1/smartphones/vivo-y93s-dual-sim-td-lte-cn-v1818ct/index.json new file mode 100644 index 00000000000..f368c9ff7ac --- /dev/null +++ b/site/public/v1/smartphones/vivo-y93s-dual-sim-td-lte-cn-v1818ct/index.json @@ -0,0 +1,76 @@ +{ + "id": 5131, + "slug": "vivo-y93s-dual-sim-td-lte-cn-v1818ct", + "name": "Vivo Y93s Dual SIM TD-LTE CN V1818CT", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-12-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4030, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": null, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.855781", + "updated_at": "2026-06-19T00:43:44.855781" +} diff --git a/site/public/v1/smartphones/vivo-y93s-dual-sim-td-lte-cn-v1818ct/score/index.json b/site/public/v1/smartphones/vivo-y93s-dual-sim-td-lte-cn-v1818ct/score/index.json new file mode 100644 index 00000000000..887be183fd0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y93s-dual-sim-td-lte-cn-v1818ct/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": null, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y93st-standard-edition-dual-sim-td-lte-cn-v1818ca/index.json b/site/public/v1/smartphones/vivo-y93st-standard-edition-dual-sim-td-lte-cn-v1818ca/index.json new file mode 100644 index 00000000000..4d2efdf0004 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y93st-standard-edition-dual-sim-td-lte-cn-v1818ca/index.json @@ -0,0 +1,76 @@ +{ + "id": 5132, + "slug": "vivo-y93st-standard-edition-dual-sim-td-lte-cn-v1818ca", + "name": "Vivo Y93st Standard Edition Dual SIM TD-LTE CN V1818CA", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-12-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4030, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": null, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.855781", + "updated_at": "2026-06-19T00:43:44.855781" +} diff --git a/site/public/v1/smartphones/vivo-y93st-standard-edition-dual-sim-td-lte-cn-v1818ca/score/index.json b/site/public/v1/smartphones/vivo-y93st-standard-edition-dual-sim-td-lte-cn-v1818ca/score/index.json new file mode 100644 index 00000000000..887be183fd0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y93st-standard-edition-dual-sim-td-lte-cn-v1818ca/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": null, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y93st-standard-edition-dual-sim-td-lte-cn-v1818ct/index.json b/site/public/v1/smartphones/vivo-y93st-standard-edition-dual-sim-td-lte-cn-v1818ct/index.json new file mode 100644 index 00000000000..2662a67f60f --- /dev/null +++ b/site/public/v1/smartphones/vivo-y93st-standard-edition-dual-sim-td-lte-cn-v1818ct/index.json @@ -0,0 +1,76 @@ +{ + "id": 5133, + "slug": "vivo-y93st-standard-edition-dual-sim-td-lte-cn-v1818ct", + "name": "Vivo Y93st Standard Edition Dual SIM TD-LTE CN V1818CT", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-12-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4030, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": null, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.855781", + "updated_at": "2026-06-19T00:43:44.855781" +} diff --git a/site/public/v1/smartphones/vivo-y93st-standard-edition-dual-sim-td-lte-cn-v1818ct/score/index.json b/site/public/v1/smartphones/vivo-y93st-standard-edition-dual-sim-td-lte-cn-v1818ct/score/index.json new file mode 100644 index 00000000000..887be183fd0 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y93st-standard-edition-dual-sim-td-lte-cn-v1818ct/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": null, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y95-dual-sim-td-lte-in-1807/index.json b/site/public/v1/smartphones/vivo-y95-dual-sim-td-lte-in-1807/index.json new file mode 100644 index 00000000000..57970b637c3 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y95-dual-sim-td-lte-in-1807/index.json @@ -0,0 +1,76 @@ +{ + "id": 5134, + "slug": "vivo-y95-dual-sim-td-lte-in-1807", + "name": "Vivo Y95 Dual SIM TD-LTE IN 1807", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2018-11-27", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "battery_mah": 4030, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.855781", + "updated_at": "2026-06-19T00:43:44.855781" +} diff --git a/site/public/v1/smartphones/vivo-y95-dual-sim-td-lte-in-1807/score/index.json b/site/public/v1/smartphones/vivo-y95-dual-sim-td-lte-in-1807/score/index.json new file mode 100644 index 00000000000..b03e6ec830f --- /dev/null +++ b/site/public/v1/smartphones/vivo-y95-dual-sim-td-lte-in-1807/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y95-dual-sim-td-lte-ru-1807/index.json b/site/public/v1/smartphones/vivo-y95-dual-sim-td-lte-ru-1807/index.json new file mode 100644 index 00000000000..c9448f48437 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y95-dual-sim-td-lte-ru-1807/index.json @@ -0,0 +1,76 @@ +{ + "id": 5135, + "slug": "vivo-y95-dual-sim-td-lte-ru-1807", + "name": "Vivo Y95 Dual SIM TD-LTE RU 1807", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2018-12-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "battery_mah": 4030, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.855781", + "updated_at": "2026-06-19T00:43:44.855781" +} diff --git a/site/public/v1/smartphones/vivo-y95-dual-sim-td-lte-ru-1807/score/index.json b/site/public/v1/smartphones/vivo-y95-dual-sim-td-lte-ru-1807/score/index.json new file mode 100644 index 00000000000..b03e6ec830f --- /dev/null +++ b/site/public/v1/smartphones/vivo-y95-dual-sim-td-lte-ru-1807/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y95-dual-sim-td-lte-tw-ph-1807/index.json b/site/public/v1/smartphones/vivo-y95-dual-sim-td-lte-tw-ph-1807/index.json new file mode 100644 index 00000000000..c26767c0ead --- /dev/null +++ b/site/public/v1/smartphones/vivo-y95-dual-sim-td-lte-tw-ph-1807/index.json @@ -0,0 +1,76 @@ +{ + "id": 5136, + "slug": "vivo-y95-dual-sim-td-lte-tw-ph-1807", + "name": "Vivo Y95 Dual SIM TD-LTE TW PH 1807", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 125, + "slug": "snapdragon-439", + "name": "Snapdragon 439", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 12.0, + "gpu_name": "Adreno 505", + "url": "/v1/socs/snapdragon-439" + }, + "release_date": "2018-11-27", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 271 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 20.0 + } + ], + "battery_mah": 4030, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.855781", + "updated_at": "2026-06-19T00:43:44.855781" +} diff --git a/site/public/v1/smartphones/vivo-y95-dual-sim-td-lte-tw-ph-1807/score/index.json b/site/public/v1/smartphones/vivo-y95-dual-sim-td-lte-tw-ph-1807/score/index.json new file mode 100644 index 00000000000..b03e6ec830f --- /dev/null +++ b/site/public/v1/smartphones/vivo-y95-dual-sim-td-lte-tw-ph-1807/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.3, + "battery": 15.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y97-dual-sim-td-lte-cn-v1813a/index.json b/site/public/v1/smartphones/vivo-y97-dual-sim-td-lte-cn-v1813a/index.json new file mode 100644 index 00000000000..90aa80e24b7 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y97-dual-sim-td-lte-cn-v1813a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5137, + "slug": "vivo-y97-dual-sim-td-lte-cn-v1813a", + "name": "Vivo Y97 Dual SIM TD-LTE CN V1813A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3315, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 162.4, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 0.0, + "camera": 6.4, + "battery": 5.3, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.855781", + "updated_at": "2026-06-19T00:43:44.855781" +} diff --git a/site/public/v1/smartphones/vivo-y97-dual-sim-td-lte-cn-v1813a/score/index.json b/site/public/v1/smartphones/vivo-y97-dual-sim-td-lte-cn-v1813a/score/index.json new file mode 100644 index 00000000000..ae011c3f06f --- /dev/null +++ b/site/public/v1/smartphones/vivo-y97-dual-sim-td-lte-cn-v1813a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 0.0, + "camera": 6.4, + "battery": 5.3, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y97-dual-sim-td-lte-cn-v1813t/index.json b/site/public/v1/smartphones/vivo-y97-dual-sim-td-lte-cn-v1813t/index.json new file mode 100644 index 00000000000..5184a2e9fc8 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y97-dual-sim-td-lte-cn-v1813t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5138, + "slug": "vivo-y97-dual-sim-td-lte-cn-v1813t", + "name": "Vivo Y97 Dual SIM TD-LTE CN V1813T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3315, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 162.4, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 0.0, + "camera": 6.4, + "battery": 5.3, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.856781", + "updated_at": "2026-06-19T00:43:44.856781" +} diff --git a/site/public/v1/smartphones/vivo-y97-dual-sim-td-lte-cn-v1813t/score/index.json b/site/public/v1/smartphones/vivo-y97-dual-sim-td-lte-cn-v1813t/score/index.json new file mode 100644 index 00000000000..ae011c3f06f --- /dev/null +++ b/site/public/v1/smartphones/vivo-y97-dual-sim-td-lte-cn-v1813t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.2, + "performance": 0.0, + "camera": 6.4, + "battery": 5.3, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y9s-2019-dual-sim-td-lte-cn-128gb-v1945a/index.json b/site/public/v1/smartphones/vivo-y9s-2019-dual-sim-td-lte-cn-128gb-v1945a/index.json new file mode 100644 index 00000000000..500124dcceb --- /dev/null +++ b/site/public/v1/smartphones/vivo-y9s-2019-dual-sim-td-lte-cn-128gb-v1945a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5316, + "slug": "vivo-y9s-2019-dual-sim-td-lte-cn-128gb-v1945a", + "name": "Vivo Y9s 2019 Dual SIM TD-LTE CN 128GB V1945A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-12-04", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 186.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.879326", + "updated_at": "2026-06-19T00:43:44.879326" +} diff --git a/site/public/v1/smartphones/vivo-y9s-2019-dual-sim-td-lte-cn-128gb-v1945a/score/index.json b/site/public/v1/smartphones/vivo-y9s-2019-dual-sim-td-lte-cn-128gb-v1945a/score/index.json new file mode 100644 index 00000000000..40b4ea4e54e --- /dev/null +++ b/site/public/v1/smartphones/vivo-y9s-2019-dual-sim-td-lte-cn-128gb-v1945a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-y9s-2019-dual-sim-td-lte-cn-128gb-v1945t/index.json b/site/public/v1/smartphones/vivo-y9s-2019-dual-sim-td-lte-cn-128gb-v1945t/index.json new file mode 100644 index 00000000000..80b3e273f86 --- /dev/null +++ b/site/public/v1/smartphones/vivo-y9s-2019-dual-sim-td-lte-cn-128gb-v1945t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5317, + "slug": "vivo-y9s-2019-dual-sim-td-lte-cn-128gb-v1945t", + "name": "Vivo Y9s 2019 Dual SIM TD-LTE CN 128GB V1945T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2019-12-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 186.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.879326", + "updated_at": "2026-06-19T00:43:44.879326" +} diff --git a/site/public/v1/smartphones/vivo-y9s-2019-dual-sim-td-lte-cn-128gb-v1945t/score/index.json b/site/public/v1/smartphones/vivo-y9s-2019-dual-sim-td-lte-cn-128gb-v1945t/score/index.json new file mode 100644 index 00000000000..40b4ea4e54e --- /dev/null +++ b/site/public/v1/smartphones/vivo-y9s-2019-dual-sim-td-lte-cn-128gb-v1945t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.0, + "performance": 3.0, + "camera": 16.5, + "battery": 23.1, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-z1-pro-premium-edition-dual-sim-td-lte-in-128gb-1951/index.json b/site/public/v1/smartphones/vivo-z1-pro-premium-edition-dual-sim-td-lte-in-128gb-1951/index.json new file mode 100644 index 00000000000..4baae699f58 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z1-pro-premium-edition-dual-sim-td-lte-in-128gb-1951/index.json @@ -0,0 +1,76 @@ +{ + "id": 5318, + "slug": "vivo-z1-pro-premium-edition-dual-sim-td-lte-in-128gb-1951", + "name": "Vivo Z1 Pro Premium Edition Dual SIM TD-LTE IN 128GB 1951", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2019-07-11", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 201.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 1.5, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.880307", + "updated_at": "2026-06-19T00:43:44.880307" +} diff --git a/site/public/v1/smartphones/vivo-z1-pro-premium-edition-dual-sim-td-lte-in-128gb-1951/score/index.json b/site/public/v1/smartphones/vivo-z1-pro-premium-edition-dual-sim-td-lte-in-128gb-1951/score/index.json new file mode 100644 index 00000000000..75901685f4e --- /dev/null +++ b/site/public/v1/smartphones/vivo-z1-pro-premium-edition-dual-sim-td-lte-in-128gb-1951/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 1.5, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-z1-pro-premium-edition-dual-sim-td-lte-in-64gb-1951/index.json b/site/public/v1/smartphones/vivo-z1-pro-premium-edition-dual-sim-td-lte-in-64gb-1951/index.json new file mode 100644 index 00000000000..fea14391f7e --- /dev/null +++ b/site/public/v1/smartphones/vivo-z1-pro-premium-edition-dual-sim-td-lte-in-64gb-1951/index.json @@ -0,0 +1,76 @@ +{ + "id": 5319, + "slug": "vivo-z1-pro-premium-edition-dual-sim-td-lte-in-64gb-1951", + "name": "Vivo Z1 Pro Premium Edition Dual SIM TD-LTE IN 64GB 1951", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2019-07-11", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 201.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 1.5, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.880307", + "updated_at": "2026-06-19T00:43:44.880307" +} diff --git a/site/public/v1/smartphones/vivo-z1-pro-premium-edition-dual-sim-td-lte-in-64gb-1951/score/index.json b/site/public/v1/smartphones/vivo-z1-pro-premium-edition-dual-sim-td-lte-in-64gb-1951/score/index.json new file mode 100644 index 00000000000..75901685f4e --- /dev/null +++ b/site/public/v1/smartphones/vivo-z1-pro-premium-edition-dual-sim-td-lte-in-64gb-1951/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 1.5, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-z1-pro-standard-edition-dual-sim-td-lte-in-64gb-1951/index.json b/site/public/v1/smartphones/vivo-z1-pro-standard-edition-dual-sim-td-lte-in-64gb-1951/index.json new file mode 100644 index 00000000000..99d6eb29990 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z1-pro-standard-edition-dual-sim-td-lte-in-64gb-1951/index.json @@ -0,0 +1,76 @@ +{ + "id": 5320, + "slug": "vivo-z1-pro-standard-edition-dual-sim-td-lte-in-64gb-1951", + "name": "Vivo Z1 Pro Standard Edition Dual SIM TD-LTE IN 64GB 1951", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2019-07-11", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 201.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.880307", + "updated_at": "2026-06-19T00:43:44.880307" +} diff --git a/site/public/v1/smartphones/vivo-z1-pro-standard-edition-dual-sim-td-lte-in-64gb-1951/score/index.json b/site/public/v1/smartphones/vivo-z1-pro-standard-edition-dual-sim-td-lte-in-64gb-1951/score/index.json new file mode 100644 index 00000000000..709f063009b --- /dev/null +++ b/site/public/v1/smartphones/vivo-z1-pro-standard-edition-dual-sim-td-lte-in-64gb-1951/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 0.0, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-z1-standard-edition-dual-sim-td-lte-cn-128gb-v1801a0/index.json b/site/public/v1/smartphones/vivo-z1-standard-edition-dual-sim-td-lte-cn-128gb-v1801a0/index.json new file mode 100644 index 00000000000..a80b8d16176 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z1-standard-edition-dual-sim-td-lte-cn-128gb-v1801a0/index.json @@ -0,0 +1,76 @@ +{ + "id": 5139, + "slug": "vivo-z1-standard-edition-dual-sim-td-lte-cn-128gb-v1801a0", + "name": "Vivo Z1 Standard Edition Dual SIM TD-LTE CN 128GB V1801A0", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "battery_mah": 3260, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 149.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": 19.5, + "camera": 5.3, + "battery": 3.9, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.856781", + "updated_at": "2026-06-19T00:43:44.856781" +} diff --git a/site/public/v1/smartphones/vivo-z1-standard-edition-dual-sim-td-lte-cn-128gb-v1801a0/score/index.json b/site/public/v1/smartphones/vivo-z1-standard-edition-dual-sim-td-lte-cn-128gb-v1801a0/score/index.json new file mode 100644 index 00000000000..a16ac749e8d --- /dev/null +++ b/site/public/v1/smartphones/vivo-z1-standard-edition-dual-sim-td-lte-cn-128gb-v1801a0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.5, + "performance": 19.5, + "camera": 5.3, + "battery": 3.9, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-z1-standard-edition-dual-sim-td-lte-cn-64gb-v1801a0/index.json b/site/public/v1/smartphones/vivo-z1-standard-edition-dual-sim-td-lte-cn-64gb-v1801a0/index.json new file mode 100644 index 00000000000..369b9465b02 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z1-standard-edition-dual-sim-td-lte-cn-64gb-v1801a0/index.json @@ -0,0 +1,76 @@ +{ + "id": 5140, + "slug": "vivo-z1-standard-edition-dual-sim-td-lte-cn-64gb-v1801a0", + "name": "Vivo Z1 Standard Edition Dual SIM TD-LTE CN 64GB V1801A0", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.28, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 12.0 + } + ], + "battery_mah": 3260, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 149.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 18.0, + "camera": 5.3, + "battery": 3.9, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.856781", + "updated_at": "2026-06-19T00:43:44.856781" +} diff --git a/site/public/v1/smartphones/vivo-z1-standard-edition-dual-sim-td-lte-cn-64gb-v1801a0/score/index.json b/site/public/v1/smartphones/vivo-z1-standard-edition-dual-sim-td-lte-cn-64gb-v1801a0/score/index.json new file mode 100644 index 00000000000..5b74a60d269 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z1-standard-edition-dual-sim-td-lte-cn-64gb-v1801a0/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 18.0, + "camera": 5.3, + "battery": 3.9, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-z10-dual-sim-td-lte-in-1716/index.json b/site/public/v1/smartphones/vivo-z10-dual-sim-td-lte-in-1716/index.json new file mode 100644 index 00000000000..d8589f1848b --- /dev/null +++ b/site/public/v1/smartphones/vivo-z10-dual-sim-td-lte-in-1716/index.json @@ -0,0 +1,76 @@ +{ + "id": 5045, + "slug": "vivo-z10-dual-sim-td-lte-in-1716", + "name": "Vivo Z10 Dual SIM TD-LTE IN 1716", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2017-07-04", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 16.4 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3225, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 6.4, + "battery": 3.4, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.845781", + "updated_at": "2026-06-19T00:43:44.845781" +} diff --git a/site/public/v1/smartphones/vivo-z10-dual-sim-td-lte-in-1716/score/index.json b/site/public/v1/smartphones/vivo-z10-dual-sim-td-lte-in-1716/score/index.json new file mode 100644 index 00000000000..2c0b18c104a --- /dev/null +++ b/site/public/v1/smartphones/vivo-z10-dual-sim-td-lte-in-1716/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 6.4, + "battery": 3.4, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-z1i-dual-sim-td-lte-cn-v1730da/index.json b/site/public/v1/smartphones/vivo-z1i-dual-sim-td-lte-cn-v1730da/index.json new file mode 100644 index 00000000000..689f0649a01 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z1i-dual-sim-td-lte-cn-v1730da/index.json @@ -0,0 +1,76 @@ +{ + "id": 5141, + "slug": "vivo-z1i-dual-sim-td-lte-cn-v1730da", + "name": "Vivo Z1i Dual SIM TD-LTE CN V1730DA", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-07-07", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3260, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 149.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 5.3, + "battery": 3.9, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.856781", + "updated_at": "2026-06-19T00:43:44.856781" +} diff --git a/site/public/v1/smartphones/vivo-z1i-dual-sim-td-lte-cn-v1730da/score/index.json b/site/public/v1/smartphones/vivo-z1i-dual-sim-td-lte-cn-v1730da/score/index.json new file mode 100644 index 00000000000..9034b4530aa --- /dev/null +++ b/site/public/v1/smartphones/vivo-z1i-dual-sim-td-lte-cn-v1730da/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 5.3, + "battery": 3.9, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-z1i-dual-sim-td-lte-cn-v1730dt/index.json b/site/public/v1/smartphones/vivo-z1i-dual-sim-td-lte-cn-v1730dt/index.json new file mode 100644 index 00000000000..f670f99cd98 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z1i-dual-sim-td-lte-cn-v1730dt/index.json @@ -0,0 +1,76 @@ +{ + "id": 5142, + "slug": "vivo-z1i-dual-sim-td-lte-cn-v1730dt", + "name": "Vivo Z1i Dual SIM TD-LTE CN V1730DT", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-07-07", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3260, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 149.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 5.3, + "battery": 3.9, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.856781", + "updated_at": "2026-06-19T00:43:44.856781" +} diff --git a/site/public/v1/smartphones/vivo-z1i-dual-sim-td-lte-cn-v1730dt/score/index.json b/site/public/v1/smartphones/vivo-z1i-dual-sim-td-lte-cn-v1730dt/score/index.json new file mode 100644 index 00000000000..9034b4530aa --- /dev/null +++ b/site/public/v1/smartphones/vivo-z1i-dual-sim-td-lte-cn-v1730dt/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.6, + "performance": 0.0, + "camera": 5.3, + "battery": 3.9, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-z1x-dual-sim-td-lte-in-128gb-1917/index.json b/site/public/v1/smartphones/vivo-z1x-dual-sim-td-lte-in-128gb-1917/index.json new file mode 100644 index 00000000000..b96cf33c36d --- /dev/null +++ b/site/public/v1/smartphones/vivo-z1x-dual-sim-td-lte-in-128gb-1917/index.json @@ -0,0 +1,76 @@ +{ + "id": 5321, + "slug": "vivo-z1x-dual-sim-td-lte-in-128gb-1917", + "name": "Vivo Z1x Dual SIM TD-LTE IN 128GB 1917", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 189.6, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 1.5, + "camera": 16.5, + "battery": 23.8, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.880307", + "updated_at": "2026-06-19T00:43:44.880307" +} diff --git a/site/public/v1/smartphones/vivo-z1x-dual-sim-td-lte-in-128gb-1917/score/index.json b/site/public/v1/smartphones/vivo-z1x-dual-sim-td-lte-in-128gb-1917/score/index.json new file mode 100644 index 00000000000..06d8c9a80f9 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z1x-dual-sim-td-lte-in-128gb-1917/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 1.5, + "camera": 16.5, + "battery": 23.8, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-z1x-dual-sim-td-lte-in-64gb-1917/index.json b/site/public/v1/smartphones/vivo-z1x-dual-sim-td-lte-in-64gb-1917/index.json new file mode 100644 index 00000000000..b436e24a1ad --- /dev/null +++ b/site/public/v1/smartphones/vivo-z1x-dual-sim-td-lte-in-64gb-1917/index.json @@ -0,0 +1,76 @@ +{ + "id": 5322, + "slug": "vivo-z1x-dual-sim-td-lte-in-64gb-1917", + "name": "Vivo Z1x Dual SIM TD-LTE IN 64GB 1917", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 189.6, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 1.5, + "camera": 16.5, + "battery": 23.8, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.880307", + "updated_at": "2026-06-19T00:43:44.880307" +} diff --git a/site/public/v1/smartphones/vivo-z1x-dual-sim-td-lte-in-64gb-1917/score/index.json b/site/public/v1/smartphones/vivo-z1x-dual-sim-td-lte-in-64gb-1917/score/index.json new file mode 100644 index 00000000000..06d8c9a80f9 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z1x-dual-sim-td-lte-in-64gb-1917/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 1.5, + "camera": 16.5, + "battery": 23.8, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-z3-dual-sim-td-lte-cn-128gb-v1813da-v1813bt/index.json b/site/public/v1/smartphones/vivo-z3-dual-sim-td-lte-cn-128gb-v1813da-v1813bt/index.json new file mode 100644 index 00000000000..8844d68ada2 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z3-dual-sim-td-lte-cn-128gb-v1813da-v1813bt/index.json @@ -0,0 +1,76 @@ +{ + "id": 5143, + "slug": "vivo-z3-dual-sim-td-lte-cn-128gb-v1813da-v1813bt", + "name": "Vivo Z3 Dual SIM TD-LTE CN 128GB V1813DA / V1813BT", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2018-11-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3315, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 21.5, + "camera": 6.4, + "battery": 4.7, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.856781", + "updated_at": "2026-06-19T00:43:44.856781" +} diff --git a/site/public/v1/smartphones/vivo-z3-dual-sim-td-lte-cn-128gb-v1813da-v1813bt/score/index.json b/site/public/v1/smartphones/vivo-z3-dual-sim-td-lte-cn-128gb-v1813da-v1813bt/score/index.json new file mode 100644 index 00000000000..cc21d4729a6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z3-dual-sim-td-lte-cn-128gb-v1813da-v1813bt/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 21.5, + "camera": 6.4, + "battery": 4.7, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-z3-dual-sim-td-lte-cn-64gb-v1813ba/index.json b/site/public/v1/smartphones/vivo-z3-dual-sim-td-lte-cn-64gb-v1813ba/index.json new file mode 100644 index 00000000000..32c03484cd1 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z3-dual-sim-td-lte-cn-64gb-v1813ba/index.json @@ -0,0 +1,76 @@ +{ + "id": 5144, + "slug": "vivo-z3-dual-sim-td-lte-cn-64gb-v1813ba", + "name": "Vivo Z3 Dual SIM TD-LTE CN 64GB V1813BA", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 127, + "slug": "snapdragon-670", + "name": "Snapdragon 670", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 615", + "url": "/v1/socs/snapdragon-670" + }, + "release_date": "2018-11-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3315, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.4, + "battery": 4.7, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.856781", + "updated_at": "2026-06-19T00:43:44.856781" +} diff --git a/site/public/v1/smartphones/vivo-z3-dual-sim-td-lte-cn-64gb-v1813ba/score/index.json b/site/public/v1/smartphones/vivo-z3-dual-sim-td-lte-cn-64gb-v1813ba/score/index.json new file mode 100644 index 00000000000..c5464747254 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z3-dual-sim-td-lte-cn-64gb-v1813ba/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.4, + "battery": 4.7, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-z3-dual-sim-td-lte-cn-64gb-v1813da/index.json b/site/public/v1/smartphones/vivo-z3-dual-sim-td-lte-cn-64gb-v1813da/index.json new file mode 100644 index 00000000000..0fc4ff3c19a --- /dev/null +++ b/site/public/v1/smartphones/vivo-z3-dual-sim-td-lte-cn-64gb-v1813da/index.json @@ -0,0 +1,76 @@ +{ + "id": 5145, + "slug": "vivo-z3-dual-sim-td-lte-cn-64gb-v1813da", + "name": "Vivo Z3 Dual SIM TD-LTE CN 64GB V1813DA", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2018-11-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3315, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 21.5, + "camera": 6.4, + "battery": 4.7, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.856781", + "updated_at": "2026-06-19T00:43:44.856781" +} diff --git a/site/public/v1/smartphones/vivo-z3-dual-sim-td-lte-cn-64gb-v1813da/score/index.json b/site/public/v1/smartphones/vivo-z3-dual-sim-td-lte-cn-64gb-v1813da/score/index.json new file mode 100644 index 00000000000..cc21d4729a6 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z3-dual-sim-td-lte-cn-64gb-v1813da/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.4, + "performance": 21.5, + "camera": 6.4, + "battery": 4.7, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-z3i-dual-sim-td-lte-cn-128gb-v1813a-z3is-standard-edition/index.json b/site/public/v1/smartphones/vivo-z3i-dual-sim-td-lte-cn-128gb-v1813a-z3is-standard-edition/index.json new file mode 100644 index 00000000000..866977e5e72 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z3i-dual-sim-td-lte-cn-128gb-v1813a-z3is-standard-edition/index.json @@ -0,0 +1,76 @@ +{ + "id": 5146, + "slug": "vivo-z3i-dual-sim-td-lte-cn-128gb-v1813a-z3is-standard-edition", + "name": "Vivo Z3i Dual SIM TD-LTE CN 128GB V1813A / Z3is Standard Edition", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3315, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 6.4, + "battery": 4.7, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.857782", + "updated_at": "2026-06-19T00:43:44.857782" +} diff --git a/site/public/v1/smartphones/vivo-z3i-dual-sim-td-lte-cn-128gb-v1813a-z3is-standard-edition/score/index.json b/site/public/v1/smartphones/vivo-z3i-dual-sim-td-lte-cn-128gb-v1813a-z3is-standard-edition/score/index.json new file mode 100644 index 00000000000..da6757fd206 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z3i-dual-sim-td-lte-cn-128gb-v1813a-z3is-standard-edition/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 6.4, + "battery": 4.7, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-z3i-dual-sim-td-lte-cn-128gb-v1813t-z3is-standard-edition/index.json b/site/public/v1/smartphones/vivo-z3i-dual-sim-td-lte-cn-128gb-v1813t-z3is-standard-edition/index.json new file mode 100644 index 00000000000..d6ea2441d96 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z3i-dual-sim-td-lte-cn-128gb-v1813t-z3is-standard-edition/index.json @@ -0,0 +1,76 @@ +{ + "id": 5147, + "slug": "vivo-z3i-dual-sim-td-lte-cn-128gb-v1813t-z3is-standard-edition", + "name": "Vivo Z3i Dual SIM TD-LTE CN 128GB V1813T / Z3is Standard Edition", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 24.0 + } + ], + "battery_mah": 3315, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 163.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 6.4, + "battery": 4.7, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.858786", + "updated_at": "2026-06-19T00:43:44.858786" +} diff --git a/site/public/v1/smartphones/vivo-z3i-dual-sim-td-lte-cn-128gb-v1813t-z3is-standard-edition/score/index.json b/site/public/v1/smartphones/vivo-z3i-dual-sim-td-lte-cn-128gb-v1813t-z3is-standard-edition/score/index.json new file mode 100644 index 00000000000..da6757fd206 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z3i-dual-sim-td-lte-cn-128gb-v1813t-z3is-standard-edition/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 6.4, + "battery": 4.7, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-z5-premium-edition-dual-sim-td-lte-cn-128gb-v1921a/index.json b/site/public/v1/smartphones/vivo-z5-premium-edition-dual-sim-td-lte-cn-128gb-v1921a/index.json new file mode 100644 index 00000000000..d7838cdc94a --- /dev/null +++ b/site/public/v1/smartphones/vivo-z5-premium-edition-dual-sim-td-lte-cn-128gb-v1921a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5323, + "slug": "vivo-z5-premium-edition-dual-sim-td-lte-cn-128gb-v1921a", + "name": "Vivo Z5 Premium Edition Dual SIM TD-LTE CN 128GB V1921A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2019-08-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 187.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 3.0, + "camera": 16.5, + "battery": 23.8, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.880307", + "updated_at": "2026-06-19T00:43:44.880307" +} diff --git a/site/public/v1/smartphones/vivo-z5-premium-edition-dual-sim-td-lte-cn-128gb-v1921a/score/index.json b/site/public/v1/smartphones/vivo-z5-premium-edition-dual-sim-td-lte-cn-128gb-v1921a/score/index.json new file mode 100644 index 00000000000..fce5de7810e --- /dev/null +++ b/site/public/v1/smartphones/vivo-z5-premium-edition-dual-sim-td-lte-cn-128gb-v1921a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 3.0, + "camera": 16.5, + "battery": 23.8, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-z5-standard-edition-dual-sim-td-lte-cn-128gb-v1921a/index.json b/site/public/v1/smartphones/vivo-z5-standard-edition-dual-sim-td-lte-cn-128gb-v1921a/index.json new file mode 100644 index 00000000000..6485583752a --- /dev/null +++ b/site/public/v1/smartphones/vivo-z5-standard-edition-dual-sim-td-lte-cn-128gb-v1921a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5324, + "slug": "vivo-z5-standard-edition-dual-sim-td-lte-cn-128gb-v1921a", + "name": "Vivo Z5 Standard Edition Dual SIM TD-LTE CN 128GB V1921A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2019-08-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 187.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 1.5, + "camera": 16.5, + "battery": 23.8, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.880307", + "updated_at": "2026-06-19T00:43:44.880307" +} diff --git a/site/public/v1/smartphones/vivo-z5-standard-edition-dual-sim-td-lte-cn-128gb-v1921a/score/index.json b/site/public/v1/smartphones/vivo-z5-standard-edition-dual-sim-td-lte-cn-128gb-v1921a/score/index.json new file mode 100644 index 00000000000..06d8c9a80f9 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z5-standard-edition-dual-sim-td-lte-cn-128gb-v1921a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 1.5, + "camera": 16.5, + "battery": 23.8, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-z5-standard-edition-dual-sim-td-lte-cn-128gb-v1921t/index.json b/site/public/v1/smartphones/vivo-z5-standard-edition-dual-sim-td-lte-cn-128gb-v1921t/index.json new file mode 100644 index 00000000000..a05e106f123 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z5-standard-edition-dual-sim-td-lte-cn-128gb-v1921t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5325, + "slug": "vivo-z5-standard-edition-dual-sim-td-lte-cn-128gb-v1921t", + "name": "Vivo Z5 Standard Edition Dual SIM TD-LTE CN 128GB V1921T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2019-08-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 187.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 1.5, + "camera": 16.5, + "battery": 23.8, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.880307", + "updated_at": "2026-06-19T00:43:44.880307" +} diff --git a/site/public/v1/smartphones/vivo-z5-standard-edition-dual-sim-td-lte-cn-128gb-v1921t/score/index.json b/site/public/v1/smartphones/vivo-z5-standard-edition-dual-sim-td-lte-cn-128gb-v1921t/score/index.json new file mode 100644 index 00000000000..06d8c9a80f9 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z5-standard-edition-dual-sim-td-lte-cn-128gb-v1921t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 1.5, + "camera": 16.5, + "battery": 23.8, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-z5-standard-edition-dual-sim-td-lte-cn-256gb-v1921a/index.json b/site/public/v1/smartphones/vivo-z5-standard-edition-dual-sim-td-lte-cn-256gb-v1921a/index.json new file mode 100644 index 00000000000..d36b83fcec8 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z5-standard-edition-dual-sim-td-lte-cn-256gb-v1921a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5326, + "slug": "vivo-z5-standard-edition-dual-sim-td-lte-cn-256gb-v1921a", + "name": "Vivo Z5 Standard Edition Dual SIM TD-LTE CN 256GB V1921A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2019-08-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 187.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 1.5, + "camera": 16.5, + "battery": 23.8, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.880307", + "updated_at": "2026-06-19T00:43:44.880307" +} diff --git a/site/public/v1/smartphones/vivo-z5-standard-edition-dual-sim-td-lte-cn-256gb-v1921a/score/index.json b/site/public/v1/smartphones/vivo-z5-standard-edition-dual-sim-td-lte-cn-256gb-v1921a/score/index.json new file mode 100644 index 00000000000..06d8c9a80f9 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z5-standard-edition-dual-sim-td-lte-cn-256gb-v1921a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 1.5, + "camera": 16.5, + "battery": 23.8, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-z5-standard-edition-dual-sim-td-lte-cn-256gb-v1921t/index.json b/site/public/v1/smartphones/vivo-z5-standard-edition-dual-sim-td-lte-cn-256gb-v1921t/index.json new file mode 100644 index 00000000000..f5b6ff7e39a --- /dev/null +++ b/site/public/v1/smartphones/vivo-z5-standard-edition-dual-sim-td-lte-cn-256gb-v1921t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5327, + "slug": "vivo-z5-standard-edition-dual-sim-td-lte-cn-256gb-v1921t", + "name": "Vivo Z5 Standard Edition Dual SIM TD-LTE CN 256GB V1921T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2019-08-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 187.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 1.5, + "camera": 16.5, + "battery": 23.8, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.881337", + "updated_at": "2026-06-19T00:43:44.881337" +} diff --git a/site/public/v1/smartphones/vivo-z5-standard-edition-dual-sim-td-lte-cn-256gb-v1921t/score/index.json b/site/public/v1/smartphones/vivo-z5-standard-edition-dual-sim-td-lte-cn-256gb-v1921t/score/index.json new file mode 100644 index 00000000000..06d8c9a80f9 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z5-standard-edition-dual-sim-td-lte-cn-256gb-v1921t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 1.5, + "camera": 16.5, + "battery": 23.8, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-z5-standard-edition-dual-sim-td-lte-cn-64gb-v1921a/index.json b/site/public/v1/smartphones/vivo-z5-standard-edition-dual-sim-td-lte-cn-64gb-v1921a/index.json new file mode 100644 index 00000000000..3806dc31aa2 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z5-standard-edition-dual-sim-td-lte-cn-64gb-v1921a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5328, + "slug": "vivo-z5-standard-edition-dual-sim-td-lte-cn-64gb-v1921a", + "name": "Vivo Z5 Standard Edition Dual SIM TD-LTE CN 64GB V1921A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2019-08-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.38, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 187.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 1.5, + "camera": 16.5, + "battery": 23.8, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.881337", + "updated_at": "2026-06-19T00:43:44.881337" +} diff --git a/site/public/v1/smartphones/vivo-z5-standard-edition-dual-sim-td-lte-cn-64gb-v1921a/score/index.json b/site/public/v1/smartphones/vivo-z5-standard-edition-dual-sim-td-lte-cn-64gb-v1921a/score/index.json new file mode 100644 index 00000000000..06d8c9a80f9 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z5-standard-edition-dual-sim-td-lte-cn-64gb-v1921a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 1.5, + "camera": 16.5, + "battery": 23.8, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-z5x-2020-premium-edition-dual-sim-td-lte-cn-128gb-v1990a/index.json b/site/public/v1/smartphones/vivo-z5x-2020-premium-edition-dual-sim-td-lte-cn-128gb-v1990a/index.json new file mode 100644 index 00000000000..b9c57a41655 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z5x-2020-premium-edition-dual-sim-td-lte-cn-128gb-v1990a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5438, + "slug": "vivo-z5x-2020-premium-edition-dual-sim-td-lte-cn-128gb-v1990a", + "name": "Vivo Z5x 2020 Premium Edition Dual SIM TD-LTE CN 128GB V1990A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2020-04-01", + "msrp_usd": 1599, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 204.1, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": 10.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.895307", + "updated_at": "2026-06-19T00:43:44.895307" +} diff --git a/site/public/v1/smartphones/vivo-z5x-2020-premium-edition-dual-sim-td-lte-cn-128gb-v1990a/score/index.json b/site/public/v1/smartphones/vivo-z5x-2020-premium-edition-dual-sim-td-lte-cn-128gb-v1990a/score/index.json new file mode 100644 index 00000000000..e3c5c6a4cf7 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z5x-2020-premium-edition-dual-sim-td-lte-cn-128gb-v1990a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 3.0, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": 10.6 +} diff --git a/site/public/v1/smartphones/vivo-z5x-2020-standard-edition-dual-sim-td-lte-cn-128gb-v1990a/index.json b/site/public/v1/smartphones/vivo-z5x-2020-standard-edition-dual-sim-td-lte-cn-128gb-v1990a/index.json new file mode 100644 index 00000000000..7cb96cb5559 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z5x-2020-standard-edition-dual-sim-td-lte-cn-128gb-v1990a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5439, + "slug": "vivo-z5x-2020-standard-edition-dual-sim-td-lte-cn-128gb-v1990a", + "name": "Vivo Z5x 2020 Standard Edition Dual SIM TD-LTE CN 128GB V1990A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 133, + "slug": "snapdragon-712", + "name": "Snapdragon 712", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-712" + }, + "release_date": "2020-04-01", + "msrp_usd": 1399, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 204.1, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 1.5, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": 18.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.895307", + "updated_at": "2026-06-19T00:43:44.895307" +} diff --git a/site/public/v1/smartphones/vivo-z5x-2020-standard-edition-dual-sim-td-lte-cn-128gb-v1990a/score/index.json b/site/public/v1/smartphones/vivo-z5x-2020-standard-edition-dual-sim-td-lte-cn-128gb-v1990a/score/index.json new file mode 100644 index 00000000000..6b337206c9e --- /dev/null +++ b/site/public/v1/smartphones/vivo-z5x-2020-standard-edition-dual-sim-td-lte-cn-128gb-v1990a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.7, + "performance": 1.5, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": 18.1 +} diff --git a/site/public/v1/smartphones/vivo-z5x-premium-edition-dual-sim-td-lte-cn-128gb-v1911a/index.json b/site/public/v1/smartphones/vivo-z5x-premium-edition-dual-sim-td-lte-cn-128gb-v1911a/index.json new file mode 100644 index 00000000000..d58dc13d655 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z5x-premium-edition-dual-sim-td-lte-cn-128gb-v1911a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5329, + "slug": "vivo-z5x-premium-edition-dual-sim-td-lte-cn-128gb-v1911a", + "name": "Vivo Z5x Premium Edition Dual SIM TD-LTE CN 128GB V1911A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-06-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 204.1, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.7, + "performance": 21.5, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.881337", + "updated_at": "2026-06-19T00:43:44.881337" +} diff --git a/site/public/v1/smartphones/vivo-z5x-premium-edition-dual-sim-td-lte-cn-128gb-v1911a/score/index.json b/site/public/v1/smartphones/vivo-z5x-premium-edition-dual-sim-td-lte-cn-128gb-v1911a/score/index.json new file mode 100644 index 00000000000..e64e51d6c21 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z5x-premium-edition-dual-sim-td-lte-cn-128gb-v1911a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.7, + "performance": 21.5, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-z5x-premium-edition-dual-sim-td-lte-cn-64gb-v1911a/index.json b/site/public/v1/smartphones/vivo-z5x-premium-edition-dual-sim-td-lte-cn-64gb-v1911a/index.json new file mode 100644 index 00000000000..0125bdc3c7a --- /dev/null +++ b/site/public/v1/smartphones/vivo-z5x-premium-edition-dual-sim-td-lte-cn-64gb-v1911a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5330, + "slug": "vivo-z5x-premium-edition-dual-sim-td-lte-cn-64gb-v1911a", + "name": "Vivo Z5x Premium Edition Dual SIM TD-LTE CN 64GB V1911A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-06-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 204.1, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.7, + "performance": 21.5, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.881337", + "updated_at": "2026-06-19T00:43:44.881337" +} diff --git a/site/public/v1/smartphones/vivo-z5x-premium-edition-dual-sim-td-lte-cn-64gb-v1911a/score/index.json b/site/public/v1/smartphones/vivo-z5x-premium-edition-dual-sim-td-lte-cn-64gb-v1911a/score/index.json new file mode 100644 index 00000000000..e64e51d6c21 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z5x-premium-edition-dual-sim-td-lte-cn-64gb-v1911a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.7, + "performance": 21.5, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-z5x-standard-edition-dual-sim-td-lte-cn-64gb-v1911a/index.json b/site/public/v1/smartphones/vivo-z5x-standard-edition-dual-sim-td-lte-cn-64gb-v1911a/index.json new file mode 100644 index 00000000000..678a126cd34 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z5x-standard-edition-dual-sim-td-lte-cn-64gb-v1911a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5331, + "slug": "vivo-z5x-standard-edition-dual-sim-td-lte-cn-64gb-v1911a", + "name": "Vivo Z5x Standard Edition Dual SIM TD-LTE CN 64GB V1911A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-06-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 204.1, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.4, + "performance": 20.0, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.881337", + "updated_at": "2026-06-19T00:43:44.881337" +} diff --git a/site/public/v1/smartphones/vivo-z5x-standard-edition-dual-sim-td-lte-cn-64gb-v1911a/score/index.json b/site/public/v1/smartphones/vivo-z5x-standard-edition-dual-sim-td-lte-cn-64gb-v1911a/score/index.json new file mode 100644 index 00000000000..d61b95f9548 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z5x-standard-edition-dual-sim-td-lte-cn-64gb-v1911a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.4, + "performance": 20.0, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-z5x-top-edition-dual-sim-td-lte-cn-128gb-v1919a/index.json b/site/public/v1/smartphones/vivo-z5x-top-edition-dual-sim-td-lte-cn-128gb-v1919a/index.json new file mode 100644 index 00000000000..12c2bf6eaa3 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z5x-top-edition-dual-sim-td-lte-cn-128gb-v1919a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5332, + "slug": "vivo-z5x-top-edition-dual-sim-td-lte-cn-128gb-v1919a", + "name": "Vivo Z5x Top Edition Dual SIM TD-LTE CN 128GB V1919A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2019-06-02", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.53, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 204.1, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 26.1, + "performance": 23.0, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.881337", + "updated_at": "2026-06-19T00:43:44.881337" +} diff --git a/site/public/v1/smartphones/vivo-z5x-top-edition-dual-sim-td-lte-cn-128gb-v1919a/score/index.json b/site/public/v1/smartphones/vivo-z5x-top-edition-dual-sim-td-lte-cn-128gb-v1919a/score/index.json new file mode 100644 index 00000000000..413d96e0840 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z5x-top-edition-dual-sim-td-lte-cn-128gb-v1919a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 26.1, + "performance": 23.0, + "camera": 6.3, + "battery": 30.6, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-z6-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1963a/index.json b/site/public/v1/smartphones/vivo-z6-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1963a/index.json new file mode 100644 index 00000000000..aea14d012d1 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z6-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1963a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5440, + "slug": "vivo-z6-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1963a", + "name": "Vivo Z6 5G Premium Edition Dual SIM TD-LTE CN 128GB V1963A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-03-08", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 201.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.0, + "performance": 3.0, + "camera": 16.5, + "battery": 35.5, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.895307", + "updated_at": "2026-06-19T00:43:44.895307" +} diff --git a/site/public/v1/smartphones/vivo-z6-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1963a/score/index.json b/site/public/v1/smartphones/vivo-z6-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1963a/score/index.json new file mode 100644 index 00000000000..61c4da3a35f --- /dev/null +++ b/site/public/v1/smartphones/vivo-z6-5g-premium-edition-dual-sim-td-lte-cn-128gb-v1963a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.0, + "performance": 3.0, + "camera": 16.5, + "battery": 35.5, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/vivo-z6-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1963a/index.json b/site/public/v1/smartphones/vivo-z6-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1963a/index.json new file mode 100644 index 00000000000..a189edfd2fb --- /dev/null +++ b/site/public/v1/smartphones/vivo-z6-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1963a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5441, + "slug": "vivo-z6-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1963a", + "name": "Vivo Z6 5G Standard Edition Dual SIM TD-LTE CN 128GB V1963A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 136, + "slug": "snapdragon-765", + "name": "Snapdragon 765", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 620", + "url": "/v1/socs/snapdragon-765" + }, + "release_date": "2020-03-08", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.57, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": 44.0, + "charging_wireless_w": null, + "weight_g": 201.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 1.5, + "camera": 16.5, + "battery": 35.5, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.895307", + "updated_at": "2026-06-19T00:43:44.895307" +} diff --git a/site/public/v1/smartphones/vivo-z6-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1963a/score/index.json b/site/public/v1/smartphones/vivo-z6-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1963a/score/index.json new file mode 100644 index 00000000000..4803be09177 --- /dev/null +++ b/site/public/v1/smartphones/vivo-z6-5g-standard-edition-dual-sim-td-lte-cn-128gb-v1963a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 1.5, + "camera": 16.5, + "battery": 35.5, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/wildfire-e1-dual-sim-td-lte/index.json b/site/public/v1/smartphones/wildfire-e1-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..85a49315410 --- /dev/null +++ b/site/public/v1/smartphones/wildfire-e1-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 782, + "slug": "wildfire-e1-dual-sim-td-lte", + "name": "Wildfire E1 Dual SIM TD-LTE", + "brand": { + "id": 92, + "slug": "htc", + "name": "HTC", + "country": "TW", + "url": "/v1/brands/htc" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2019-12-27", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": 8.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.215933", + "updated_at": "2026-06-19T00:43:44.215933" +} diff --git a/site/public/v1/smartphones/wildfire-e1-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/wildfire-e1-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..8dd4f57a73b --- /dev/null +++ b/site/public/v1/smartphones/wildfire-e1-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.1, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/wildfire-e1-plus-dual-sim-td-lte/index.json b/site/public/v1/smartphones/wildfire-e1-plus-dual-sim-td-lte/index.json new file mode 100644 index 00000000000..1f7d292dc76 --- /dev/null +++ b/site/public/v1/smartphones/wildfire-e1-plus-dual-sim-td-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 783, + "slug": "wildfire-e1-plus-dual-sim-td-lte", + "name": "Wildfire E1 Plus Dual SIM TD-LTE", + "brand": { + "id": 92, + "slug": "htc", + "name": "HTC", + "country": "TW", + "url": "/v1/brands/htc" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2019-12-27", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": 8.0, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.215933", + "updated_at": "2026-06-19T00:43:44.215933" +} diff --git a/site/public/v1/smartphones/wildfire-e1-plus-dual-sim-td-lte/score/index.json b/site/public/v1/smartphones/wildfire-e1-plus-dual-sim-td-lte/score/index.json new file mode 100644 index 00000000000..5694f3a308b --- /dev/null +++ b/site/public/v1/smartphones/wildfire-e1-plus-dual-sim-td-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 6.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/wildfire-e2-dual-sim-td-lte-32gb/index.json b/site/public/v1/smartphones/wildfire-e2-dual-sim-td-lte-32gb/index.json new file mode 100644 index 00000000000..867337a0426 --- /dev/null +++ b/site/public/v1/smartphones/wildfire-e2-dual-sim-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 793, + "slug": "wildfire-e2-dual-sim-td-lte-32gb", + "name": "Wildfire E2 Dual SIM TD-LTE 32GB", + "brand": { + "id": 92, + "slug": "htc", + "name": "HTC", + "country": "TW", + "url": "/v1/brands/htc" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-08-06", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 276 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 173.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.8, + "performance": null, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.217933", + "updated_at": "2026-06-19T00:43:44.217933" +} diff --git a/site/public/v1/smartphones/wildfire-e2-dual-sim-td-lte-32gb/score/index.json b/site/public/v1/smartphones/wildfire-e2-dual-sim-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..7f41dfc3901 --- /dev/null +++ b/site/public/v1/smartphones/wildfire-e2-dual-sim-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.8, + "performance": null, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/wildfire-e2-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/wildfire-e2-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..6d4107ae06a --- /dev/null +++ b/site/public/v1/smartphones/wildfire-e2-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 794, + "slug": "wildfire-e2-dual-sim-td-lte-64gb", + "name": "Wildfire E2 Dual SIM TD-LTE 64GB", + "brand": { + "id": 92, + "slug": "htc", + "name": "HTC", + "country": "TW", + "url": "/v1/brands/htc" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-08-06", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 276 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 173.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.8, + "performance": null, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.217933", + "updated_at": "2026-06-19T00:43:44.217933" +} diff --git a/site/public/v1/smartphones/wildfire-e2-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/wildfire-e2-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..7f41dfc3901 --- /dev/null +++ b/site/public/v1/smartphones/wildfire-e2-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.8, + "performance": null, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/wildfire-r70-dual-sim-lte-global/index.json b/site/public/v1/smartphones/wildfire-r70-dual-sim-lte-global/index.json new file mode 100644 index 00000000000..75b61b9ad90 --- /dev/null +++ b/site/public/v1/smartphones/wildfire-r70-dual-sim-lte-global/index.json @@ -0,0 +1,76 @@ +{ + "id": 796, + "slug": "wildfire-r70-dual-sim-lte-global", + "name": "Wildfire R70 Dual SIM LTE Global", + "brand": { + "id": 92, + "slug": "htc", + "name": "HTC", + "country": "TW", + "url": "/v1/brands/htc" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 263 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.217933", + "updated_at": "2026-06-19T00:43:44.217933" +} diff --git a/site/public/v1/smartphones/wildfire-r70-dual-sim-lte-global/score/index.json b/site/public/v1/smartphones/wildfire-r70-dual-sim-lte-global/score/index.json new file mode 100644 index 00000000000..82b598c31b6 --- /dev/null +++ b/site/public/v1/smartphones/wildfire-r70-dual-sim-lte-global/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/wildfire-r70-dual-sim-td-lte-in/index.json b/site/public/v1/smartphones/wildfire-r70-dual-sim-td-lte-in/index.json new file mode 100644 index 00000000000..6264723cd19 --- /dev/null +++ b/site/public/v1/smartphones/wildfire-r70-dual-sim-td-lte-in/index.json @@ -0,0 +1,76 @@ +{ + "id": 797, + "slug": "wildfire-r70-dual-sim-td-lte-in", + "name": "Wildfire R70 Dual SIM TD-LTE IN", + "brand": { + "id": 92, + "slug": "htc", + "name": "HTC", + "country": "TW", + "url": "/v1/brands/htc" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2020-03-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.53, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 263 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 186.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.217933", + "updated_at": "2026-06-19T00:43:44.217933" +} diff --git a/site/public/v1/smartphones/wildfire-r70-dual-sim-td-lte-in/score/index.json b/site/public/v1/smartphones/wildfire-r70-dual-sim-td-lte-in/score/index.json new file mode 100644 index 00000000000..82b598c31b6 --- /dev/null +++ b/site/public/v1/smartphones/wildfire-r70-dual-sim-td-lte-in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/wildfire-x-dual-sim-td-lte-in-128gb/index.json b/site/public/v1/smartphones/wildfire-x-dual-sim-td-lte-in-128gb/index.json new file mode 100644 index 00000000000..dbc361d4793 --- /dev/null +++ b/site/public/v1/smartphones/wildfire-x-dual-sim-td-lte-in-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 786, + "slug": "wildfire-x-dual-sim-td-lte-in-128gb", + "name": "Wildfire X Dual SIM TD-LTE IN 128GB", + "brand": { + "id": 92, + "slug": "htc", + "name": "HTC", + "country": "TW", + "url": "/v1/brands/htc" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-08-22", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": null, + "camera": 5.0, + "battery": 4.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.216934", + "updated_at": "2026-06-19T00:43:44.216934" +} diff --git a/site/public/v1/smartphones/wildfire-x-dual-sim-td-lte-in-128gb/score/index.json b/site/public/v1/smartphones/wildfire-x-dual-sim-td-lte-in-128gb/score/index.json new file mode 100644 index 00000000000..6b116545a08 --- /dev/null +++ b/site/public/v1/smartphones/wildfire-x-dual-sim-td-lte-in-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": null, + "camera": 5.0, + "battery": 4.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/wildfire-x-dual-sim-td-lte-in-32gb/index.json b/site/public/v1/smartphones/wildfire-x-dual-sim-td-lte-in-32gb/index.json new file mode 100644 index 00000000000..6a46106ff40 --- /dev/null +++ b/site/public/v1/smartphones/wildfire-x-dual-sim-td-lte-in-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 787, + "slug": "wildfire-x-dual-sim-td-lte-in-32gb", + "name": "Wildfire X Dual SIM TD-LTE IN 32GB", + "brand": { + "id": 92, + "slug": "htc", + "name": "HTC", + "country": "TW", + "url": "/v1/brands/htc" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-08-22", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": null, + "camera": 5.0, + "battery": 4.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.216934", + "updated_at": "2026-06-19T00:43:44.216934" +} diff --git a/site/public/v1/smartphones/wildfire-x-dual-sim-td-lte-in-32gb/score/index.json b/site/public/v1/smartphones/wildfire-x-dual-sim-td-lte-in-32gb/score/index.json new file mode 100644 index 00000000000..6b116545a08 --- /dev/null +++ b/site/public/v1/smartphones/wildfire-x-dual-sim-td-lte-in-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": null, + "camera": 5.0, + "battery": 4.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/x-dual-sim-lte/index.json b/site/public/v1/smartphones/x-dual-sim-lte/index.json new file mode 100644 index 00000000000..22622f8bb5a --- /dev/null +++ b/site/public/v1/smartphones/x-dual-sim-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 5022, + "slug": "x-dual-sim-lte", + "name": "X Dual SIM LTE", + "brand": { + "id": 41, + "slug": "ulefone", + "name": "Ulefone", + "country": "CN", + "url": "/v1/brands/ulefone" + }, + "soc": { + "id": 40, + "slug": "helio-p23", + "name": "Helio P23", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 16.0, + "gpu_name": "Mali-G71 MP2", + "url": "/v1/socs/helio-p23" + }, + "release_date": "2018-06-14", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.85, + "resolution": "720x1512", + "type": "Color IPS TFT LCD display", + "ppi": 286 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": 8.0, + "charging_wireless_w": null, + "weight_g": 217.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "Yes" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 11.2, + "performance": 0.0, + "camera": 5.3, + "battery": 4.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.842703", + "updated_at": "2026-06-19T00:43:44.842703" +} diff --git a/site/public/v1/smartphones/x-dual-sim-lte/score/index.json b/site/public/v1/smartphones/x-dual-sim-lte/score/index.json new file mode 100644 index 00000000000..0853ad561df --- /dev/null +++ b/site/public/v1/smartphones/x-dual-sim-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 11.2, + "performance": 0.0, + "camera": 5.3, + "battery": 4.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/x10-2021-5g-premium-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/x10-2021-5g-premium-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..aa5d62ab5ff --- /dev/null +++ b/site/public/v1/smartphones/x10-2021-5g-premium-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 2479, + "slug": "x10-2021-5g-premium-edition-global-dual-sim-td-lte-128gb", + "name": "X10 2021 5G Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-06-07", + "msrp_usd": 349, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4470, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 1.5, + "camera": 16.5, + "battery": 22.6, + "display": 27.0, + "value": 56.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.463275", + "updated_at": "2026-06-19T00:43:44.463275" +} diff --git a/site/public/v1/smartphones/x10-2021-5g-premium-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/x10-2021-5g-premium-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..614afc31a20 --- /dev/null +++ b/site/public/v1/smartphones/x10-2021-5g-premium-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 1.5, + "camera": 16.5, + "battery": 22.6, + "display": 27.0, + "value": 56.5 +} diff --git a/site/public/v1/smartphones/x10-2021-5g-premium-edition-global-dual-sim-td-lte-64gb/index.json b/site/public/v1/smartphones/x10-2021-5g-premium-edition-global-dual-sim-td-lte-64gb/index.json new file mode 100644 index 00000000000..443f1c58df5 --- /dev/null +++ b/site/public/v1/smartphones/x10-2021-5g-premium-edition-global-dual-sim-td-lte-64gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 2480, + "slug": "x10-2021-5g-premium-edition-global-dual-sim-td-lte-64gb", + "name": "X10 2021 5G Premium Edition Global Dual SIM TD-LTE 64GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-06-07", + "msrp_usd": 309, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4470, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 1.5, + "camera": 16.5, + "battery": 22.6, + "display": 27.0, + "value": 58.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.463275", + "updated_at": "2026-06-19T00:43:44.463275" +} diff --git a/site/public/v1/smartphones/x10-2021-5g-premium-edition-global-dual-sim-td-lte-64gb/score/index.json b/site/public/v1/smartphones/x10-2021-5g-premium-edition-global-dual-sim-td-lte-64gb/score/index.json new file mode 100644 index 00000000000..5efaf83e2f6 --- /dev/null +++ b/site/public/v1/smartphones/x10-2021-5g-premium-edition-global-dual-sim-td-lte-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.9, + "performance": 1.5, + "camera": 16.5, + "battery": 22.6, + "display": 27.0, + "value": 58.1 +} diff --git a/site/public/v1/smartphones/x10-2021-5g-standard-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/x10-2021-5g-standard-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..11af964282d --- /dev/null +++ b/site/public/v1/smartphones/x10-2021-5g-standard-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 2481, + "slug": "x10-2021-5g-standard-edition-global-dual-sim-td-lte-128gb", + "name": "X10 2021 5G Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-06-07", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4470, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 16.5, + "battery": 22.6, + "display": 27.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.463275", + "updated_at": "2026-06-19T00:43:44.463275" +} diff --git a/site/public/v1/smartphones/x10-2021-5g-standard-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/x10-2021-5g-standard-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..895766b9230 --- /dev/null +++ b/site/public/v1/smartphones/x10-2021-5g-standard-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 16.5, + "battery": 22.6, + "display": 27.0, + "value": null +} diff --git a/site/public/v1/smartphones/x10/index.json b/site/public/v1/smartphones/x10/index.json new file mode 100644 index 00000000000..3ba0ef75880 --- /dev/null +++ b/site/public/v1/smartphones/x10/index.json @@ -0,0 +1,68 @@ +{ + "id": 653, + "slug": "x10", + "name": "X10", + "brand": { + "id": 16, + "slug": "honor", + "name": "HONOR", + "country": "CN", + "url": "/v1/brands/honor" + }, + "soc": { + "id": 34, + "slug": "kirin-820", + "name": "Kirin 820", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MP6", + "url": "/v1/socs/kirin-820" + }, + "release_date": "2020-01-01", + "msrp_usd": 319, + "ram_gb": 6, + "storage_options_gb": [], + "display": { + "size_inch": 6.63 + }, + "cameras": [ + { + "type": "main", + "mp": 40.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 4300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 203.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 11.6, + "performance": 1.5, + "camera": 13.9, + "battery": 19.5, + "display": null, + "value": 55.0 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.195937", + "updated_at": "2026-06-19T00:43:44.195937" +} diff --git a/site/public/v1/smartphones/x10/score/index.json b/site/public/v1/smartphones/x10/score/index.json new file mode 100644 index 00000000000..0331191b27c --- /dev/null +++ b/site/public/v1/smartphones/x10/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 11.6, + "performance": 1.5, + "camera": 13.9, + "battery": 19.5, + "display": null, + "value": 55.0 +} diff --git a/site/public/v1/smartphones/x20-2021-5g-premium-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/x20-2021-5g-premium-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..f7486bcafe1 --- /dev/null +++ b/site/public/v1/smartphones/x20-2021-5g-premium-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 2483, + "slug": "x20-2021-5g-premium-edition-global-dual-sim-td-lte-128gb", + "name": "X20 2021 5G Premium Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-05-03", + "msrp_usd": 399, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4470, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 3.0, + "camera": 21.7, + "battery": 22.6, + "display": 27.0, + "value": 55.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.463275", + "updated_at": "2026-06-19T00:43:44.463275" +} diff --git a/site/public/v1/smartphones/x20-2021-5g-premium-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/x20-2021-5g-premium-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..c4771f41878 --- /dev/null +++ b/site/public/v1/smartphones/x20-2021-5g-premium-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 3.0, + "camera": 21.7, + "battery": 22.6, + "display": 27.0, + "value": 55.5 +} diff --git a/site/public/v1/smartphones/x20-2021-5g-standard-edition-global-dual-sim-td-lte-128gb/index.json b/site/public/v1/smartphones/x20-2021-5g-standard-edition-global-dual-sim-td-lte-128gb/index.json new file mode 100644 index 00000000000..960cecddd5e --- /dev/null +++ b/site/public/v1/smartphones/x20-2021-5g-standard-edition-global-dual-sim-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 2484, + "slug": "x20-2021-5g-standard-edition-global-dual-sim-td-lte-128gb", + "name": "X20 2021 5G Standard Edition Global Dual SIM TD-LTE 128GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-05-03", + "msrp_usd": 349, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4470, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 1.5, + "camera": 21.7, + "battery": 22.6, + "display": 27.0, + "value": 57.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.463275", + "updated_at": "2026-06-19T00:43:44.463275" +} diff --git a/site/public/v1/smartphones/x20-2021-5g-standard-edition-global-dual-sim-td-lte-128gb/score/index.json b/site/public/v1/smartphones/x20-2021-5g-standard-edition-global-dual-sim-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..aa7493a48a7 --- /dev/null +++ b/site/public/v1/smartphones/x20-2021-5g-standard-edition-global-dual-sim-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 1.5, + "camera": 21.7, + "battery": 22.6, + "display": 27.0, + "value": 57.2 +} diff --git a/site/public/v1/smartphones/x20-2021-5g-standard-edition-global-td-lte-128gb/index.json b/site/public/v1/smartphones/x20-2021-5g-standard-edition-global-td-lte-128gb/index.json new file mode 100644 index 00000000000..c691d3cd279 --- /dev/null +++ b/site/public/v1/smartphones/x20-2021-5g-standard-edition-global-td-lte-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 2485, + "slug": "x20-2021-5g-standard-edition-global-td-lte-128gb", + "name": "X20 2021 5G Standard Edition Global TD-LTE 128GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 151, + "slug": "snapdragon-480", + "name": "Snapdragon 480", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619", + "url": "/v1/socs/snapdragon-480" + }, + "release_date": "2021-05-03", + "msrp_usd": 299, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.4 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4470, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 220.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 1.5, + "camera": 21.7, + "battery": 22.6, + "display": 27.0, + "value": 59.1 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.463275", + "updated_at": "2026-06-19T00:43:44.463275" +} diff --git a/site/public/v1/smartphones/x20-2021-5g-standard-edition-global-td-lte-128gb/score/index.json b/site/public/v1/smartphones/x20-2021-5g-standard-edition-global-td-lte-128gb/score/index.json new file mode 100644 index 00000000000..8434a8706b0 --- /dev/null +++ b/site/public/v1/smartphones/x20-2021-5g-standard-edition-global-td-lte-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.2, + "performance": 1.5, + "camera": 21.7, + "battery": 22.6, + "display": 27.0, + "value": 59.1 +} diff --git a/site/public/v1/smartphones/x210k-x-series-x2-2018-lte-kr/index.json b/site/public/v1/smartphones/x210k-x-series-x2-2018-lte-kr/index.json new file mode 100644 index 00000000000..ba5fe2d42e0 --- /dev/null +++ b/site/public/v1/smartphones/x210k-x-series-x2-2018-lte-kr/index.json @@ -0,0 +1,76 @@ +{ + "id": 1609, + "slug": "x210k-x-series-x2-2018-lte-kr", + "name": "X210K X Series X2 2018 LTE KR", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 108, + "slug": "snapdragon-212", + "name": "Snapdragon 212", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-212" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 152.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.353606", + "updated_at": "2026-06-19T00:43:44.353606" +} diff --git a/site/public/v1/smartphones/x210k-x-series-x2-2018-lte-kr/score/index.json b/site/public/v1/smartphones/x210k-x-series-x2-2018-lte-kr/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/x210k-x-series-x2-2018-lte-kr/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/x210l-x-series-x2-2018-lte-kr/index.json b/site/public/v1/smartphones/x210l-x-series-x2-2018-lte-kr/index.json new file mode 100644 index 00000000000..d261f5e003e --- /dev/null +++ b/site/public/v1/smartphones/x210l-x-series-x2-2018-lte-kr/index.json @@ -0,0 +1,76 @@ +{ + "id": 1610, + "slug": "x210l-x-series-x2-2018-lte-kr", + "name": "X210L X Series X2 2018 LTE KR", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 108, + "slug": "snapdragon-212", + "name": "Snapdragon 212", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-212" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 152.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.353606", + "updated_at": "2026-06-19T00:43:44.353606" +} diff --git a/site/public/v1/smartphones/x210l-x-series-x2-2018-lte-kr/score/index.json b/site/public/v1/smartphones/x210l-x-series-x2-2018-lte-kr/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/x210l-x-series-x2-2018-lte-kr/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/x210s-x-series-x2-2018-lte-kr/index.json b/site/public/v1/smartphones/x210s-x-series-x2-2018-lte-kr/index.json new file mode 100644 index 00000000000..80393c795c1 --- /dev/null +++ b/site/public/v1/smartphones/x210s-x-series-x2-2018-lte-kr/index.json @@ -0,0 +1,76 @@ +{ + "id": 1611, + "slug": "x210s-x-series-x2-2018-lte-kr", + "name": "X210S X Series X2 2018 LTE KR", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 108, + "slug": "snapdragon-212", + "name": "Snapdragon 212", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-212" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 152.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.353606", + "updated_at": "2026-06-19T00:43:44.353606" +} diff --git a/site/public/v1/smartphones/x210s-x-series-x2-2018-lte-kr/score/index.json b/site/public/v1/smartphones/x210s-x-series-x2-2018-lte-kr/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/x210s-x-series-x2-2018-lte-kr/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/x210ulm-k-series-k8-2018-lte-us/index.json b/site/public/v1/smartphones/x210ulm-k-series-k8-2018-lte-us/index.json new file mode 100644 index 00000000000..520abfe6606 --- /dev/null +++ b/site/public/v1/smartphones/x210ulm-k-series-k8-2018-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 1612, + "slug": "x210ulm-k-series-k8-2018-lte-us", + "name": "X210ULM K Series K8+ 2018 LTE US", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.353606", + "updated_at": "2026-06-19T00:43:44.353606" +} diff --git a/site/public/v1/smartphones/x210ulm-k-series-k8-2018-lte-us/score/index.json b/site/public/v1/smartphones/x210ulm-k-series-k8-2018-lte-us/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/x210ulm-k-series-k8-2018-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/x210ulma-k-series-k8-2018-acg-lte-us/index.json b/site/public/v1/smartphones/x210ulma-k-series-k8-2018-acg-lte-us/index.json new file mode 100644 index 00000000000..d4277a796f8 --- /dev/null +++ b/site/public/v1/smartphones/x210ulma-k-series-k8-2018-acg-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 1613, + "slug": "x210ulma-k-series-k8-2018-acg-lte-us", + "name": "X210ULMA K Series K8+ 2018 ACG LTE US", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.353606", + "updated_at": "2026-06-19T00:43:44.353606" +} diff --git a/site/public/v1/smartphones/x210ulma-k-series-k8-2018-acg-lte-us/score/index.json b/site/public/v1/smartphones/x210ulma-k-series-k8-2018-acg-lte-us/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/x210ulma-k-series-k8-2018-acg-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/x210ulmg-k-series-k8-2018-lte-us/index.json b/site/public/v1/smartphones/x210ulmg-k-series-k8-2018-lte-us/index.json new file mode 100644 index 00000000000..421f5bc3228 --- /dev/null +++ b/site/public/v1/smartphones/x210ulmg-k-series-k8-2018-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 1614, + "slug": "x210ulmg-k-series-k8-2018-lte-us", + "name": "X210ULMG K Series K8 2018 LTE US", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2410, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.353606", + "updated_at": "2026-06-19T00:43:44.353606" +} diff --git a/site/public/v1/smartphones/x210ulmg-k-series-k8-2018-lte-us/score/index.json b/site/public/v1/smartphones/x210ulmg-k-series-k8-2018-lte-us/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/x210ulmg-k-series-k8-2018-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/x210vpp-zone-4-lte-us/index.json b/site/public/v1/smartphones/x210vpp-zone-4-lte-us/index.json new file mode 100644 index 00000000000..fa4fa22d664 --- /dev/null +++ b/site/public/v1/smartphones/x210vpp-zone-4-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 1615, + "slug": "x210vpp-zone-4-lte-us", + "name": "X210VPP Zone 4 LTE US", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.353606", + "updated_at": "2026-06-19T00:43:44.353606" +} diff --git a/site/public/v1/smartphones/x210vpp-zone-4-lte-us/score/index.json b/site/public/v1/smartphones/x210vpp-zone-4-lte-us/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/x210vpp-zone-4-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/x212tal-aristo-2-plus-lte-us/index.json b/site/public/v1/smartphones/x212tal-aristo-2-plus-lte-us/index.json new file mode 100644 index 00000000000..d6ddead8886 --- /dev/null +++ b/site/public/v1/smartphones/x212tal-aristo-2-plus-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 1616, + "slug": "x212tal-aristo-2-plus-lte-us", + "name": "X212TAL Aristo 2 Plus LTE US", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2410, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.353606", + "updated_at": "2026-06-19T00:43:44.353606" +} diff --git a/site/public/v1/smartphones/x212tal-aristo-2-plus-lte-us/score/index.json b/site/public/v1/smartphones/x212tal-aristo-2-plus-lte-us/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/x212tal-aristo-2-plus-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/x21s-dual-sim-td-lte-cn-v1814a/index.json b/site/public/v1/smartphones/x21s-dual-sim-td-lte-cn-v1814a/index.json new file mode 100644 index 00000000000..575cbfc4888 --- /dev/null +++ b/site/public/v1/smartphones/x21s-dual-sim-td-lte-cn-v1814a/index.json @@ -0,0 +1,76 @@ +{ + "id": 5149, + "slug": "x21s-dual-sim-td-lte-cn-v1814a", + "name": "X21s Dual SIM TD-LTE CN V1814A", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-11-04", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 19.5, + "camera": 5.1, + "battery": 6.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.858786", + "updated_at": "2026-06-19T00:43:44.858786" +} diff --git a/site/public/v1/smartphones/x21s-dual-sim-td-lte-cn-v1814a/score/index.json b/site/public/v1/smartphones/x21s-dual-sim-td-lte-cn-v1814a/score/index.json new file mode 100644 index 00000000000..57f6fe8b284 --- /dev/null +++ b/site/public/v1/smartphones/x21s-dual-sim-td-lte-cn-v1814a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 19.5, + "camera": 5.1, + "battery": 6.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/x21s-dual-sim-td-lte-cn-v1814t/index.json b/site/public/v1/smartphones/x21s-dual-sim-td-lte-cn-v1814t/index.json new file mode 100644 index 00000000000..db27551f756 --- /dev/null +++ b/site/public/v1/smartphones/x21s-dual-sim-td-lte-cn-v1814t/index.json @@ -0,0 +1,76 @@ +{ + "id": 5150, + "slug": "x21s-dual-sim-td-lte-cn-v1814t", + "name": "X21s Dual SIM TD-LTE CN V1814T", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-11-04", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.41, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 24.9 + } + ], + "battery_mah": 3400, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 19.5, + "camera": 5.1, + "battery": 6.0, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.858786", + "updated_at": "2026-06-19T00:43:44.858786" +} diff --git a/site/public/v1/smartphones/x21s-dual-sim-td-lte-cn-v1814t/score/index.json b/site/public/v1/smartphones/x21s-dual-sim-td-lte-cn-v1814t/score/index.json new file mode 100644 index 00000000000..57f6fe8b284 --- /dev/null +++ b/site/public/v1/smartphones/x21s-dual-sim-td-lte-cn-v1814t/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.9, + "performance": 19.5, + "camera": 5.1, + "battery": 6.0, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/x410as-phoenix-plus-lte-a-us/index.json b/site/public/v1/smartphones/x410as-phoenix-plus-lte-a-us/index.json new file mode 100644 index 00000000000..89e89899223 --- /dev/null +++ b/site/public/v1/smartphones/x410as-phoenix-plus-lte-a-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 1617, + "slug": "x410as-phoenix-plus-lte-a-us", + "name": "X410AS Phoenix Plus LTE-A US", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.3, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 277 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.353606", + "updated_at": "2026-06-19T00:43:44.353606" +} diff --git a/site/public/v1/smartphones/x410as-phoenix-plus-lte-a-us/score/index.json b/site/public/v1/smartphones/x410as-phoenix-plus-lte-a-us/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/x410as-phoenix-plus-lte-a-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/x410cs-harmony-2-lte-a-us/index.json b/site/public/v1/smartphones/x410cs-harmony-2-lte-a-us/index.json new file mode 100644 index 00000000000..48f14549516 --- /dev/null +++ b/site/public/v1/smartphones/x410cs-harmony-2-lte-a-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 1618, + "slug": "x410cs-harmony-2-lte-a-us", + "name": "X410CS Harmony 2 LTE-A US", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.3, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 277 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.354605", + "updated_at": "2026-06-19T00:43:44.354605" +} diff --git a/site/public/v1/smartphones/x410cs-harmony-2-lte-a-us/score/index.json b/site/public/v1/smartphones/x410cs-harmony-2-lte-a-us/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/x410cs-harmony-2-lte-a-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/x410k-x-series-x4-lte/index.json b/site/public/v1/smartphones/x410k-x-series-x4-lte/index.json new file mode 100644 index 00000000000..757cf412367 --- /dev/null +++ b/site/public/v1/smartphones/x410k-x-series-x4-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 1619, + "slug": "x410k-x-series-x4-lte", + "name": "X410K X Series X4 LTE", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.3, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 277 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.354605", + "updated_at": "2026-06-19T00:43:44.354605" +} diff --git a/site/public/v1/smartphones/x410k-x-series-x4-lte/score/index.json b/site/public/v1/smartphones/x410k-x-series-x4-lte/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/x410k-x-series-x4-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/x410l-x-series-x4-lte/index.json b/site/public/v1/smartphones/x410l-x-series-x4-lte/index.json new file mode 100644 index 00000000000..4c0095d4a5f --- /dev/null +++ b/site/public/v1/smartphones/x410l-x-series-x4-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 1620, + "slug": "x410l-x-series-x4-lte", + "name": "X410L X Series X4 LTE", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.3, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 277 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.354605", + "updated_at": "2026-06-19T00:43:44.354605" +} diff --git a/site/public/v1/smartphones/x410l-x-series-x4-lte/score/index.json b/site/public/v1/smartphones/x410l-x-series-x4-lte/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/x410l-x-series-x4-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/x410s-x-series-x4-lte/index.json b/site/public/v1/smartphones/x410s-x-series-x4-lte/index.json new file mode 100644 index 00000000000..acfdf28284a --- /dev/null +++ b/site/public/v1/smartphones/x410s-x-series-x4-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 1621, + "slug": "x410s-x-series-x4-lte", + "name": "X410S X Series X4 LTE", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.3, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 277 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.354605", + "updated_at": "2026-06-19T00:43:44.354605" +} diff --git a/site/public/v1/smartphones/x410s-x-series-x4-lte/score/index.json b/site/public/v1/smartphones/x410s-x-series-x4-lte/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/x410s-x-series-x4-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/x410ulmg-k-series-k30-lte-us/index.json b/site/public/v1/smartphones/x410ulmg-k-series-k30-lte-us/index.json new file mode 100644 index 00000000000..27dd2eebb89 --- /dev/null +++ b/site/public/v1/smartphones/x410ulmg-k-series-k30-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 1622, + "slug": "x410ulmg-k-series-k30-lte-us", + "name": "X410ULMG K Series K30 LTE US", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.3, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 277 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.354605", + "updated_at": "2026-06-19T00:43:44.354605" +} diff --git a/site/public/v1/smartphones/x410ulmg-k-series-k30-lte-us/score/index.json b/site/public/v1/smartphones/x410ulmg-k-series-k30-lte-us/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/x410ulmg-k-series-k30-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/x410ulml-k-series-k30-lra-lte-us/index.json b/site/public/v1/smartphones/x410ulml-k-series-k30-lra-lte-us/index.json new file mode 100644 index 00000000000..b20c5ef77f7 --- /dev/null +++ b/site/public/v1/smartphones/x410ulml-k-series-k30-lra-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 1623, + "slug": "x410ulml-k-series-k30-lra-lte-us", + "name": "X410ULML K Series K30 LRA LTE US", + "brand": { + "id": 78, + "slug": "lg", + "name": "LG Electronics", + "country": "KR", + "url": "/v1/brands/lg" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.3, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 277 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.354605", + "updated_at": "2026-06-19T00:43:44.354605" +} diff --git a/site/public/v1/smartphones/x410ulml-k-series-k30-lra-lte-us/score/index.json b/site/public/v1/smartphones/x410ulml-k-series-k30-lra-lte-us/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/x410ulml-k-series-k30-lra-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/x5-2018-dual-sim-td-lte-cn-32gb/index.json b/site/public/v1/smartphones/x5-2018-dual-sim-td-lte-cn-32gb/index.json new file mode 100644 index 00000000000..f58a1199987 --- /dev/null +++ b/site/public/v1/smartphones/x5-2018-dual-sim-td-lte-cn-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2373, + "slug": "x5-2018-dual-sim-td-lte-cn-32gb", + "name": "X5 2018 Dual SIM TD-LTE CN 32GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-07-19", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.86, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 287 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3060, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 151.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 5.3, + "battery": 0.9, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.449279", + "updated_at": "2026-06-19T00:43:44.449279" +} diff --git a/site/public/v1/smartphones/x5-2018-dual-sim-td-lte-cn-32gb/score/index.json b/site/public/v1/smartphones/x5-2018-dual-sim-td-lte-cn-32gb/score/index.json new file mode 100644 index 00000000000..b1be3a16dc2 --- /dev/null +++ b/site/public/v1/smartphones/x5-2018-dual-sim-td-lte-cn-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 5.3, + "battery": 0.9, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/x5-2018-dual-sim-td-lte-cn-64gb/index.json b/site/public/v1/smartphones/x5-2018-dual-sim-td-lte-cn-64gb/index.json new file mode 100644 index 00000000000..386c9c21815 --- /dev/null +++ b/site/public/v1/smartphones/x5-2018-dual-sim-td-lte-cn-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2374, + "slug": "x5-2018-dual-sim-td-lte-cn-64gb", + "name": "X5 2018 Dual SIM TD-LTE CN 64GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2018-07-19", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.86, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 287 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3060, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 151.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 5.3, + "battery": 0.9, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.450273", + "updated_at": "2026-06-19T00:43:44.450273" +} diff --git a/site/public/v1/smartphones/x5-2018-dual-sim-td-lte-cn-64gb/score/index.json b/site/public/v1/smartphones/x5-2018-dual-sim-td-lte-cn-64gb/score/index.json new file mode 100644 index 00000000000..b1be3a16dc2 --- /dev/null +++ b/site/public/v1/smartphones/x5-2018-dual-sim-td-lte-cn-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.3, + "performance": 0.0, + "camera": 5.3, + "battery": 0.9, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/x6-2018-dual-sim-td-lte-cn-32gb/index.json b/site/public/v1/smartphones/x6-2018-dual-sim-td-lte-cn-32gb/index.json new file mode 100644 index 00000000000..857224df007 --- /dev/null +++ b/site/public/v1/smartphones/x6-2018-dual-sim-td-lte-cn-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2376, + "slug": "x6-2018-dual-sim-td-lte-cn-32gb", + "name": "X6 2018 Dual SIM TD-LTE CN 32GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-05-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.79, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 436 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3060, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 152.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.0, + "performance": 0.0, + "camera": 6.3, + "battery": 0.9, + "display": 48.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.450273", + "updated_at": "2026-06-19T00:43:44.450273" +} diff --git a/site/public/v1/smartphones/x6-2018-dual-sim-td-lte-cn-32gb/score/index.json b/site/public/v1/smartphones/x6-2018-dual-sim-td-lte-cn-32gb/score/index.json new file mode 100644 index 00000000000..1371dd80f9c --- /dev/null +++ b/site/public/v1/smartphones/x6-2018-dual-sim-td-lte-cn-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.0, + "performance": 0.0, + "camera": 6.3, + "battery": 0.9, + "display": 48.6, + "value": null +} diff --git a/site/public/v1/smartphones/x6-2018-dual-sim-td-lte-cn-64gb/index.json b/site/public/v1/smartphones/x6-2018-dual-sim-td-lte-cn-64gb/index.json new file mode 100644 index 00000000000..11fecd6ab6c --- /dev/null +++ b/site/public/v1/smartphones/x6-2018-dual-sim-td-lte-cn-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2377, + "slug": "x6-2018-dual-sim-td-lte-cn-64gb", + "name": "X6 2018 Dual SIM TD-LTE CN 64GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-05-21", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.79, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 436 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3060, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 152.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.3, + "performance": 1.5, + "camera": 6.3, + "battery": 0.9, + "display": 48.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.450273", + "updated_at": "2026-06-19T00:43:44.450273" +} diff --git a/site/public/v1/smartphones/x6-2018-dual-sim-td-lte-cn-64gb/score/index.json b/site/public/v1/smartphones/x6-2018-dual-sim-td-lte-cn-64gb/score/index.json new file mode 100644 index 00000000000..7532d30b908 --- /dev/null +++ b/site/public/v1/smartphones/x6-2018-dual-sim-td-lte-cn-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.3, + "performance": 1.5, + "camera": 6.3, + "battery": 0.9, + "display": 48.6, + "value": null +} diff --git a/site/public/v1/smartphones/x67-5g-global-dual-sim-lte/index.json b/site/public/v1/smartphones/x67-5g-global-dual-sim-lte/index.json new file mode 100644 index 00000000000..465ccd71593 --- /dev/null +++ b/site/public/v1/smartphones/x67-5g-global-dual-sim-lte/index.json @@ -0,0 +1,76 @@ +{ + "id": 306, + "slug": "x67-5g-global-dual-sim-lte", + "name": "X67 5G Global Dual SIM LTE", + "brand": { + "id": 54, + "slug": "archos", + "name": "Archos", + "country": "FR", + "url": "/v1/brands/archos" + }, + "soc": { + "id": 49, + "slug": "dimensity-800", + "name": "Dimensity 800", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 7.0, + "gpu_name": "Mali-G57 MC4", + "url": "/v1/socs/dimensity-800" + }, + "release_date": "2021-02-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 8000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 380.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 3.0, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.150418", + "updated_at": "2026-06-19T00:43:44.150418" +} diff --git a/site/public/v1/smartphones/x67-5g-global-dual-sim-lte/score/index.json b/site/public/v1/smartphones/x67-5g-global-dual-sim-lte/score/index.json new file mode 100644 index 00000000000..4251fad3dee --- /dev/null +++ b/site/public/v1/smartphones/x67-5g-global-dual-sim-lte/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.4, + "performance": 3.0, + "camera": 16.5, + "battery": 45.6, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/x7-2018-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/x7-2018-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..1962b1a3ded --- /dev/null +++ b/site/public/v1/smartphones/x7-2018-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2378, + "slug": "x7-2018-dual-sim-td-lte-cn-128gb", + "name": "X7 2018 Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2018-11-18", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 408 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 3500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 21.5, + "camera": 5.1, + "battery": 7.5, + "display": 45.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.450273", + "updated_at": "2026-06-19T00:43:44.450273" +} diff --git a/site/public/v1/smartphones/x7-2018-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/x7-2018-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..bb2257ef0ee --- /dev/null +++ b/site/public/v1/smartphones/x7-2018-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.0, + "performance": 21.5, + "camera": 5.1, + "battery": 7.5, + "display": 45.8, + "value": null +} diff --git a/site/public/v1/smartphones/x71-dual-sim-td-lte-cn-128gb/index.json b/site/public/v1/smartphones/x71-dual-sim-td-lte-cn-128gb/index.json new file mode 100644 index 00000000000..f6f04037ff8 --- /dev/null +++ b/site/public/v1/smartphones/x71-dual-sim-td-lte-cn-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2429, + "slug": "x71-dual-sim-td-lte-cn-128gb", + "name": "X71 Dual SIM TD-LTE CN 128GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2019-04-17", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 19.5, + "camera": 16.5, + "battery": 8.1, + "display": 44.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.457271", + "updated_at": "2026-06-19T00:43:44.457271" +} diff --git a/site/public/v1/smartphones/x71-dual-sim-td-lte-cn-128gb/score/index.json b/site/public/v1/smartphones/x71-dual-sim-td-lte-cn-128gb/score/index.json new file mode 100644 index 00000000000..5e7a9e90946 --- /dev/null +++ b/site/public/v1/smartphones/x71-dual-sim-td-lte-cn-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 19.5, + "camera": 16.5, + "battery": 8.1, + "display": 44.9, + "value": null +} diff --git a/site/public/v1/smartphones/x71-dual-sim-td-lte-cn-64gb/index.json b/site/public/v1/smartphones/x71-dual-sim-td-lte-cn-64gb/index.json new file mode 100644 index 00000000000..610807861a5 --- /dev/null +++ b/site/public/v1/smartphones/x71-dual-sim-td-lte-cn-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 2430, + "slug": "x71-dual-sim-td-lte-cn-64gb", + "name": "X71 Dual SIM TD-LTE CN 64GB", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2019-04-17", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 19.5, + "camera": 16.5, + "battery": 8.1, + "display": 44.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.457271", + "updated_at": "2026-06-19T00:43:44.457271" +} diff --git a/site/public/v1/smartphones/x71-dual-sim-td-lte-cn-64gb/score/index.json b/site/public/v1/smartphones/x71-dual-sim-td-lte-cn-64gb/score/index.json new file mode 100644 index 00000000000..5e7a9e90946 --- /dev/null +++ b/site/public/v1/smartphones/x71-dual-sim-td-lte-cn-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 19.5, + "camera": 16.5, + "battery": 8.1, + "display": 44.9, + "value": null +} diff --git a/site/public/v1/smartphones/x71-global-dual-sim-td-lte-8-1-plus/index.json b/site/public/v1/smartphones/x71-global-dual-sim-td-lte-8-1-plus/index.json new file mode 100644 index 00000000000..17a8ce6ee35 --- /dev/null +++ b/site/public/v1/smartphones/x71-global-dual-sim-td-lte-8-1-plus/index.json @@ -0,0 +1,76 @@ +{ + "id": 2431, + "slug": "x71-global-dual-sim-td-lte-8-1-plus", + "name": "X71 Global Dual SIM TD-LTE / 8.1 Plus", + "brand": { + "id": 53, + "slug": "nokia", + "name": "Nokia", + "country": "FI", + "url": "/v1/brands/nokia" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2019-04-12", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2310", + "type": "Color IPS TFT LCD display", + "ppi": 399 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3500, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 19.5, + "camera": 16.5, + "battery": 8.1, + "display": 44.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.457271", + "updated_at": "2026-06-19T00:43:44.457271" +} diff --git a/site/public/v1/smartphones/x71-global-dual-sim-td-lte-8-1-plus/score/index.json b/site/public/v1/smartphones/x71-global-dual-sim-td-lte-8-1-plus/score/index.json new file mode 100644 index 00000000000..5e7a9e90946 --- /dev/null +++ b/site/public/v1/smartphones/x71-global-dual-sim-td-lte-8-1-plus/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.2, + "performance": 19.5, + "camera": 16.5, + "battery": 8.1, + "display": 44.9, + "value": null +} diff --git a/site/public/v1/smartphones/x8-global-dual-sim-td-lte-128gb-m852h/index.json b/site/public/v1/smartphones/x8-global-dual-sim-td-lte-128gb-m852h/index.json new file mode 100644 index 00000000000..a559002a36b --- /dev/null +++ b/site/public/v1/smartphones/x8-global-dual-sim-td-lte-128gb-m852h/index.json @@ -0,0 +1,76 @@ +{ + "id": 1872, + "slug": "x8-global-dual-sim-td-lte-128gb-m852h", + "name": "X8 Global Dual SIM TD-LTE 128GB M852H", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.15, + "resolution": "1080x2220", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 3210, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 21.5, + "camera": 5.1, + "battery": 3.1, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.385882", + "updated_at": "2026-06-19T00:43:44.385882" +} diff --git a/site/public/v1/smartphones/x8-global-dual-sim-td-lte-128gb-m852h/score/index.json b/site/public/v1/smartphones/x8-global-dual-sim-td-lte-128gb-m852h/score/index.json new file mode 100644 index 00000000000..451d7b7e6a8 --- /dev/null +++ b/site/public/v1/smartphones/x8-global-dual-sim-td-lte-128gb-m852h/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 21.5, + "camera": 5.1, + "battery": 3.1, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/x8-global-dual-sim-td-lte-64gb-m852h/index.json b/site/public/v1/smartphones/x8-global-dual-sim-td-lte-64gb-m852h/index.json new file mode 100644 index 00000000000..f32506a03a8 --- /dev/null +++ b/site/public/v1/smartphones/x8-global-dual-sim-td-lte-64gb-m852h/index.json @@ -0,0 +1,76 @@ +{ + "id": 1873, + "slug": "x8-global-dual-sim-td-lte-64gb-m852h", + "name": "X8 Global Dual SIM TD-LTE 64GB M852H", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.15, + "resolution": "1080x2220", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 3210, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 20.0, + "camera": 5.1, + "battery": 3.1, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.385882", + "updated_at": "2026-06-19T00:43:44.385882" +} diff --git a/site/public/v1/smartphones/x8-global-dual-sim-td-lte-64gb-m852h/score/index.json b/site/public/v1/smartphones/x8-global-dual-sim-td-lte-64gb-m852h/score/index.json new file mode 100644 index 00000000000..d9d4e11a2a9 --- /dev/null +++ b/site/public/v1/smartphones/x8-global-dual-sim-td-lte-64gb-m852h/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 20.0, + "camera": 5.1, + "battery": 3.1, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/x8-premium-edition-dual-sim-td-lte-cn-128gb-m852q/index.json b/site/public/v1/smartphones/x8-premium-edition-dual-sim-td-lte-cn-128gb-m852q/index.json new file mode 100644 index 00000000000..22439a70085 --- /dev/null +++ b/site/public/v1/smartphones/x8-premium-edition-dual-sim-td-lte-cn-128gb-m852q/index.json @@ -0,0 +1,76 @@ +{ + "id": 1874, + "slug": "x8-premium-edition-dual-sim-td-lte-cn-128gb-m852q", + "name": "X8 Premium Edition Dual SIM TD-LTE CN 128GB M852Q", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2018-10-16", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.15, + "resolution": "1080x2220", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 3210, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 21.5, + "camera": 5.1, + "battery": 3.1, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.385882", + "updated_at": "2026-06-19T00:43:44.385882" +} diff --git a/site/public/v1/smartphones/x8-premium-edition-dual-sim-td-lte-cn-128gb-m852q/score/index.json b/site/public/v1/smartphones/x8-premium-edition-dual-sim-td-lte-cn-128gb-m852q/score/index.json new file mode 100644 index 00000000000..451d7b7e6a8 --- /dev/null +++ b/site/public/v1/smartphones/x8-premium-edition-dual-sim-td-lte-cn-128gb-m852q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 21.5, + "camera": 5.1, + "battery": 3.1, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/x8-premium-edition-dual-sim-td-lte-cn-64gb-m852q/index.json b/site/public/v1/smartphones/x8-premium-edition-dual-sim-td-lte-cn-64gb-m852q/index.json new file mode 100644 index 00000000000..e79f8a03007 --- /dev/null +++ b/site/public/v1/smartphones/x8-premium-edition-dual-sim-td-lte-cn-64gb-m852q/index.json @@ -0,0 +1,76 @@ +{ + "id": 1875, + "slug": "x8-premium-edition-dual-sim-td-lte-cn-64gb-m852q", + "name": "X8 Premium Edition Dual SIM TD-LTE CN 64GB M852Q", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2018-10-16", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.15, + "resolution": "1080x2220", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 3210, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 21.5, + "camera": 5.1, + "battery": 3.1, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.385882", + "updated_at": "2026-06-19T00:43:44.385882" +} diff --git a/site/public/v1/smartphones/x8-premium-edition-dual-sim-td-lte-cn-64gb-m852q/score/index.json b/site/public/v1/smartphones/x8-premium-edition-dual-sim-td-lte-cn-64gb-m852q/score/index.json new file mode 100644 index 00000000000..451d7b7e6a8 --- /dev/null +++ b/site/public/v1/smartphones/x8-premium-edition-dual-sim-td-lte-cn-64gb-m852q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": 21.5, + "camera": 5.1, + "battery": 3.1, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/x8-standard-edition-dual-sim-td-lte-cn-64gb-m852q/index.json b/site/public/v1/smartphones/x8-standard-edition-dual-sim-td-lte-cn-64gb-m852q/index.json new file mode 100644 index 00000000000..a6ab5f2cd4e --- /dev/null +++ b/site/public/v1/smartphones/x8-standard-edition-dual-sim-td-lte-cn-64gb-m852q/index.json @@ -0,0 +1,76 @@ +{ + "id": 1876, + "slug": "x8-standard-edition-dual-sim-td-lte-cn-64gb-m852q", + "name": "X8 Standard Edition Dual SIM TD-LTE CN 64GB M852Q", + "brand": { + "id": 25, + "slug": "meizu", + "name": "Meizu", + "country": "CN", + "url": "/v1/brands/meizu" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2018-10-16", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.15, + "resolution": "1080x2220", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 12.3 + }, + { + "type": "selfie", + "mp": 20.1 + } + ], + "battery_mah": 3210, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 20.0, + "camera": 5.1, + "battery": 3.1, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.385882", + "updated_at": "2026-06-19T00:43:44.385882" +} diff --git a/site/public/v1/smartphones/x8-standard-edition-dual-sim-td-lte-cn-64gb-m852q/score/index.json b/site/public/v1/smartphones/x8-standard-edition-dual-sim-td-lte-cn-64gb-m852q/score/index.json new file mode 100644 index 00000000000..d9d4e11a2a9 --- /dev/null +++ b/site/public/v1/smartphones/x8-standard-edition-dual-sim-td-lte-cn-64gb-m852q/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": 20.0, + "camera": 5.1, + "battery": 3.1, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/xenium-x596-dual-sim-td-lte-cn/index.json b/site/public/v1/smartphones/xenium-x596-dual-sim-td-lte-cn/index.json new file mode 100644 index 00000000000..d785369792d --- /dev/null +++ b/site/public/v1/smartphones/xenium-x596-dual-sim-td-lte-cn/index.json @@ -0,0 +1,76 @@ +{ + "id": 3516, + "slug": "xenium-x596-dual-sim-td-lte-cn", + "name": "Xenium X596 Dual SIM TD-LTE CN", + "brand": { + "id": 83, + "slug": "philips", + "name": "Philips", + "country": "NL", + "url": "/v1/brands/philips" + }, + "soc": { + "id": 113, + "slug": "snapdragon-435", + "name": "Snapdragon 435", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-435" + }, + "release_date": "2017-10-27", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5, + "resolution": "1080x1920", + "type": "Color IPS TFT LCD display", + "ppi": 401 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": null, + "camera": 6.3, + "battery": 15.0, + "display": 45.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.606892", + "updated_at": "2026-06-19T00:43:44.606892" +} diff --git a/site/public/v1/smartphones/xenium-x596-dual-sim-td-lte-cn/score/index.json b/site/public/v1/smartphones/xenium-x596-dual-sim-td-lte-cn/score/index.json new file mode 100644 index 00000000000..4f027c2e478 --- /dev/null +++ b/site/public/v1/smartphones/xenium-x596-dual-sim-td-lte-cn/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.1, + "performance": null, + "camera": 6.3, + "battery": 15.0, + "display": 45.1, + "value": null +} diff --git a/site/public/v1/smartphones/xolo-era-5x-dual-sim-td-lte-in-16gb/index.json b/site/public/v1/smartphones/xolo-era-5x-dual-sim-td-lte-in-16gb/index.json new file mode 100644 index 00000000000..f745a03e835 --- /dev/null +++ b/site/public/v1/smartphones/xolo-era-5x-dual-sim-td-lte-in-16gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1422, + "slug": "xolo-era-5x-dual-sim-td-lte-in-16gb", + "name": "Xolo Era 5X Dual SIM TD-LTE IN 16GB", + "brand": { + "id": 66, + "slug": "lava", + "name": "Lava International", + "country": "IN", + "url": "/v1/brands/lava" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-01-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 141.6, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.331605", + "updated_at": "2026-06-19T00:43:44.331605" +} diff --git a/site/public/v1/smartphones/xolo-era-5x-dual-sim-td-lte-in-16gb/score/index.json b/site/public/v1/smartphones/xolo-era-5x-dual-sim-td-lte-in-16gb/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/xolo-era-5x-dual-sim-td-lte-in-16gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/xolo-era-5x-dual-sim-td-lte-in-32gb/index.json b/site/public/v1/smartphones/xolo-era-5x-dual-sim-td-lte-in-32gb/index.json new file mode 100644 index 00000000000..e7890ae8fa9 --- /dev/null +++ b/site/public/v1/smartphones/xolo-era-5x-dual-sim-td-lte-in-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1423, + "slug": "xolo-era-5x-dual-sim-td-lte-in-32gb", + "name": "Xolo Era 5X Dual SIM TD-LTE IN 32GB", + "brand": { + "id": 66, + "slug": "lava", + "name": "Lava International", + "country": "IN", + "url": "/v1/brands/lava" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-01-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 141.6, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.331605", + "updated_at": "2026-06-19T00:43:44.331605" +} diff --git a/site/public/v1/smartphones/xolo-era-5x-dual-sim-td-lte-in-32gb/score/index.json b/site/public/v1/smartphones/xolo-era-5x-dual-sim-td-lte-in-32gb/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/xolo-era-5x-dual-sim-td-lte-in-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-1-global-dual-sim-td-lte-j9110/index.json b/site/public/v1/smartphones/xperia-1-global-dual-sim-td-lte-j9110/index.json new file mode 100644 index 00000000000..f631ffbc77e --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-global-dual-sim-td-lte-j9110/index.json @@ -0,0 +1,76 @@ +{ + "id": 4818, + "slug": "xperia-1-global-dual-sim-td-lte-j9110", + "name": "Xperia 1 Global Dual SIM TD-LTE J9110", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3330, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 1.5, + "camera": 5.1, + "battery": 5.0, + "display": 65.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.815718", + "updated_at": "2026-06-19T00:43:44.815718" +} diff --git a/site/public/v1/smartphones/xperia-1-global-dual-sim-td-lte-j9110/score/index.json b/site/public/v1/smartphones/xperia-1-global-dual-sim-td-lte-j9110/score/index.json new file mode 100644 index 00000000000..02cc5d7fd50 --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-global-dual-sim-td-lte-j9110/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 1.5, + "camera": 5.1, + "battery": 5.0, + "display": 65.0, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-1-global-td-lte-j8110-pf13/index.json b/site/public/v1/smartphones/xperia-1-global-td-lte-j8110-pf13/index.json new file mode 100644 index 00000000000..0716d0f1416 --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-global-td-lte-j8110-pf13/index.json @@ -0,0 +1,76 @@ +{ + "id": 4819, + "slug": "xperia-1-global-td-lte-j8110-pf13", + "name": "Xperia 1 Global TD-LTE J8110 / PF13", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3330, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 1.5, + "camera": 5.1, + "battery": 5.0, + "display": 65.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.815718", + "updated_at": "2026-06-19T00:43:44.815718" +} diff --git a/site/public/v1/smartphones/xperia-1-global-td-lte-j8110-pf13/score/index.json b/site/public/v1/smartphones/xperia-1-global-td-lte-j8110-pf13/score/index.json new file mode 100644 index 00000000000..02cc5d7fd50 --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-global-td-lte-j8110-pf13/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 1.5, + "camera": 5.1, + "battery": 5.0, + "display": 65.0, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-1-global-td-lte-j8170/index.json b/site/public/v1/smartphones/xperia-1-global-td-lte-j8170/index.json new file mode 100644 index 00000000000..927079f72b0 --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-global-td-lte-j8170/index.json @@ -0,0 +1,76 @@ +{ + "id": 4820, + "slug": "xperia-1-global-td-lte-j8170", + "name": "Xperia 1 Global TD-LTE J8170", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3330, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 1.5, + "camera": 5.1, + "battery": 5.0, + "display": 65.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.815718", + "updated_at": "2026-06-19T00:43:44.815718" +} diff --git a/site/public/v1/smartphones/xperia-1-global-td-lte-j8170/score/index.json b/site/public/v1/smartphones/xperia-1-global-td-lte-j8170/score/index.json new file mode 100644 index 00000000000..02cc5d7fd50 --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-global-td-lte-j8170/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 1.5, + "camera": 5.1, + "battery": 5.0, + "display": 65.0, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-1-ii-5g-dual-sim-td-lte-cn-xq-at72/index.json b/site/public/v1/smartphones/xperia-1-ii-5g-dual-sim-td-lte-cn-xq-at72/index.json new file mode 100644 index 00000000000..e78ae82128c --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-ii-5g-dual-sim-td-lte-cn-xq-at72/index.json @@ -0,0 +1,76 @@ +{ + "id": 4850, + "slug": "xperia-1-ii-5g-dual-sim-td-lte-cn-xq-at72", + "name": "Xperia 1 II 5G Dual SIM TD-LTE CN XQ-AT72", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-10-21", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 21.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 6.0, + "camera": 5.1, + "battery": 16.1, + "display": 65.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.819717", + "updated_at": "2026-06-19T00:43:44.819717" +} diff --git a/site/public/v1/smartphones/xperia-1-ii-5g-dual-sim-td-lte-cn-xq-at72/score/index.json b/site/public/v1/smartphones/xperia-1-ii-5g-dual-sim-td-lte-cn-xq-at72/score/index.json new file mode 100644 index 00000000000..4b100f7fa64 --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-ii-5g-dual-sim-td-lte-cn-xq-at72/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 6.0, + "camera": 5.1, + "battery": 16.1, + "display": 65.0, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-1-ii-5g-dual-sim-td-lte-jp-xq-at42/index.json b/site/public/v1/smartphones/xperia-1-ii-5g-dual-sim-td-lte-jp-xq-at42/index.json new file mode 100644 index 00000000000..5689a9f6622 --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-ii-5g-dual-sim-td-lte-jp-xq-at42/index.json @@ -0,0 +1,76 @@ +{ + "id": 4851, + "slug": "xperia-1-ii-5g-dual-sim-td-lte-jp-xq-at42", + "name": "Xperia 1 II 5G Dual SIM TD-LTE JP XQ-AT42", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-10-29", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 21.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 6.0, + "camera": 5.1, + "battery": 16.1, + "display": 65.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.819717", + "updated_at": "2026-06-19T00:43:44.819717" +} diff --git a/site/public/v1/smartphones/xperia-1-ii-5g-dual-sim-td-lte-jp-xq-at42/score/index.json b/site/public/v1/smartphones/xperia-1-ii-5g-dual-sim-td-lte-jp-xq-at42/score/index.json new file mode 100644 index 00000000000..4b100f7fa64 --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-ii-5g-dual-sim-td-lte-jp-xq-at42/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 6.0, + "camera": 5.1, + "battery": 16.1, + "display": 65.0, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-1-ii-5g-global-dual-sim-td-lte-xq-at52/index.json b/site/public/v1/smartphones/xperia-1-ii-5g-global-dual-sim-td-lte-xq-at52/index.json new file mode 100644 index 00000000000..bb022b374fe --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-ii-5g-global-dual-sim-td-lte-xq-at52/index.json @@ -0,0 +1,76 @@ +{ + "id": 4852, + "slug": "xperia-1-ii-5g-global-dual-sim-td-lte-xq-at52", + "name": "Xperia 1 II 5G Global Dual SIM TD-LTE XQ-AT52", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 21.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 3.0, + "camera": 5.1, + "battery": 16.1, + "display": 65.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.819717", + "updated_at": "2026-06-19T00:43:44.819717" +} diff --git a/site/public/v1/smartphones/xperia-1-ii-5g-global-dual-sim-td-lte-xq-at52/score/index.json b/site/public/v1/smartphones/xperia-1-ii-5g-global-dual-sim-td-lte-xq-at52/score/index.json new file mode 100644 index 00000000000..c479651e487 --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-ii-5g-global-dual-sim-td-lte-xq-at52/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 3.0, + "camera": 5.1, + "battery": 16.1, + "display": 65.0, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-1-ii-5g-global-td-lte-xq-at51/index.json b/site/public/v1/smartphones/xperia-1-ii-5g-global-td-lte-xq-at51/index.json new file mode 100644 index 00000000000..5a54856527a --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-ii-5g-global-td-lte-xq-at51/index.json @@ -0,0 +1,76 @@ +{ + "id": 4853, + "slug": "xperia-1-ii-5g-global-td-lte-xq-at51", + "name": "Xperia 1 II 5G Global TD-LTE XQ-AT51", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 21.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 3.0, + "camera": 5.1, + "battery": 16.1, + "display": 65.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.819717", + "updated_at": "2026-06-19T00:43:44.819717" +} diff --git a/site/public/v1/smartphones/xperia-1-ii-5g-global-td-lte-xq-at51/score/index.json b/site/public/v1/smartphones/xperia-1-ii-5g-global-td-lte-xq-at51/score/index.json new file mode 100644 index 00000000000..c479651e487 --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-ii-5g-global-td-lte-xq-at51/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 3.0, + "camera": 5.1, + "battery": 16.1, + "display": 65.0, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-1-ii-5g-green-edition-global-dual-sim-td-lte-xq-at52-g/index.json b/site/public/v1/smartphones/xperia-1-ii-5g-green-edition-global-dual-sim-td-lte-xq-at52-g/index.json new file mode 100644 index 00000000000..5ff77357a8f --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-ii-5g-green-edition-global-dual-sim-td-lte-xq-at52-g/index.json @@ -0,0 +1,76 @@ +{ + "id": 4854, + "slug": "xperia-1-ii-5g-green-edition-global-dual-sim-td-lte-xq-at52-g", + "name": "Xperia 1 II 5G Green Edition Global Dual SIM TD-LTE XQ-AT52/G", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-11-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 21.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 6.0, + "camera": 5.1, + "battery": 16.1, + "display": 65.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.819717", + "updated_at": "2026-06-19T00:43:44.819717" +} diff --git a/site/public/v1/smartphones/xperia-1-ii-5g-green-edition-global-dual-sim-td-lte-xq-at52-g/score/index.json b/site/public/v1/smartphones/xperia-1-ii-5g-green-edition-global-dual-sim-td-lte-xq-at52-g/score/index.json new file mode 100644 index 00000000000..4b100f7fa64 --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-ii-5g-green-edition-global-dual-sim-td-lte-xq-at52-g/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 6.0, + "camera": 5.1, + "battery": 16.1, + "display": 65.0, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-1-ii-5g-td-lte-jp-so-51a/index.json b/site/public/v1/smartphones/xperia-1-ii-5g-td-lte-jp-so-51a/index.json new file mode 100644 index 00000000000..6c55d615cdc --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-ii-5g-td-lte-jp-so-51a/index.json @@ -0,0 +1,76 @@ +{ + "id": 4855, + "slug": "xperia-1-ii-5g-td-lte-jp-so-51a", + "name": "Xperia 1 II 5G TD-LTE JP SO-51A", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-06-18", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 21.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 3.0, + "camera": 5.1, + "battery": 16.1, + "display": 65.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.819717", + "updated_at": "2026-06-19T00:43:44.819717" +} diff --git a/site/public/v1/smartphones/xperia-1-ii-5g-td-lte-jp-so-51a/score/index.json b/site/public/v1/smartphones/xperia-1-ii-5g-td-lte-jp-so-51a/score/index.json new file mode 100644 index 00000000000..c479651e487 --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-ii-5g-td-lte-jp-so-51a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 3.0, + "camera": 5.1, + "battery": 16.1, + "display": 65.0, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-1-ii-5g-td-lte-jp-sog01/index.json b/site/public/v1/smartphones/xperia-1-ii-5g-td-lte-jp-sog01/index.json new file mode 100644 index 00000000000..e288db9061b --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-ii-5g-td-lte-jp-sog01/index.json @@ -0,0 +1,76 @@ +{ + "id": 4856, + "slug": "xperia-1-ii-5g-td-lte-jp-sog01", + "name": "Xperia 1 II 5G TD-LTE JP SOG01", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-05-22", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 21.0, + "charging_wireless_w": null, + "weight_g": 181.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 3.0, + "camera": 5.1, + "battery": 16.1, + "display": 65.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.819717", + "updated_at": "2026-06-19T00:43:44.819717" +} diff --git a/site/public/v1/smartphones/xperia-1-ii-5g-td-lte-jp-sog01/score/index.json b/site/public/v1/smartphones/xperia-1-ii-5g-td-lte-jp-sog01/score/index.json new file mode 100644 index 00000000000..c479651e487 --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-ii-5g-td-lte-jp-sog01/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 22.3, + "performance": 3.0, + "camera": 5.1, + "battery": 16.1, + "display": 65.0, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-1-iii-5g-dual-sim-td-lte-apac-256gb-xq-bc72/index.json b/site/public/v1/smartphones/xperia-1-iii-5g-dual-sim-td-lte-apac-256gb-xq-bc72/index.json new file mode 100644 index 00000000000..0e9b7b34307 --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-iii-5g-dual-sim-td-lte-apac-256gb-xq-bc72/index.json @@ -0,0 +1,77 @@ +{ + "id": 4877, + "slug": "xperia-1-iii-5g-dual-sim-td-lte-apac-256gb-xq-bc72", + "name": "Xperia 1 III 5G Dual SIM TD-LTE APAC 256GB XQ-BC72", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-05-29", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 187.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.6, + "performance": 9.4, + "camera": 5.1, + "battery": 35.4, + "display": 72.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.822718", + "updated_at": "2026-06-19T00:43:44.822718" +} diff --git a/site/public/v1/smartphones/xperia-1-iii-5g-dual-sim-td-lte-apac-256gb-xq-bc72/score/index.json b/site/public/v1/smartphones/xperia-1-iii-5g-dual-sim-td-lte-apac-256gb-xq-bc72/score/index.json new file mode 100644 index 00000000000..00e4f7027da --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-iii-5g-dual-sim-td-lte-apac-256gb-xq-bc72/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.6, + "performance": 9.4, + "camera": 5.1, + "battery": 35.4, + "display": 72.5, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-1-iii-5g-dual-sim-td-lte-apac-512gb-xq-bc72/index.json b/site/public/v1/smartphones/xperia-1-iii-5g-dual-sim-td-lte-apac-512gb-xq-bc72/index.json new file mode 100644 index 00000000000..dfdcd188755 --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-iii-5g-dual-sim-td-lte-apac-512gb-xq-bc72/index.json @@ -0,0 +1,77 @@ +{ + "id": 4878, + "slug": "xperia-1-iii-5g-dual-sim-td-lte-apac-512gb-xq-bc72", + "name": "Xperia 1 III 5G Dual SIM TD-LTE APAC 512GB XQ-BC72", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-05-29", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 187.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.6, + "performance": 9.4, + "camera": 5.1, + "battery": 35.4, + "display": 72.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.822718", + "updated_at": "2026-06-19T00:43:44.822718" +} diff --git a/site/public/v1/smartphones/xperia-1-iii-5g-dual-sim-td-lte-apac-512gb-xq-bc72/score/index.json b/site/public/v1/smartphones/xperia-1-iii-5g-dual-sim-td-lte-apac-512gb-xq-bc72/score/index.json new file mode 100644 index 00000000000..00e4f7027da --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-iii-5g-dual-sim-td-lte-apac-512gb-xq-bc72/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.6, + "performance": 9.4, + "camera": 5.1, + "battery": 35.4, + "display": 72.5, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-1-iii-5g-dual-sim-td-lte-emea-xq-bc52-xq-ac52/index.json b/site/public/v1/smartphones/xperia-1-iii-5g-dual-sim-td-lte-emea-xq-bc52-xq-ac52/index.json new file mode 100644 index 00000000000..0e6878b5772 --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-iii-5g-dual-sim-td-lte-emea-xq-bc52-xq-ac52/index.json @@ -0,0 +1,77 @@ +{ + "id": 4879, + "slug": "xperia-1-iii-5g-dual-sim-td-lte-emea-xq-bc52-xq-ac52", + "name": "Xperia 1 III 5G Dual SIM TD-LTE EMEA XQ-BC52 / XQ-AC52", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-06-01", + "msrp_usd": 1299, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 187.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.6, + "performance": 9.4, + "camera": 5.1, + "battery": 35.4, + "display": 72.5, + "value": 26.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.822718", + "updated_at": "2026-06-19T00:43:44.822718" +} diff --git a/site/public/v1/smartphones/xperia-1-iii-5g-dual-sim-td-lte-emea-xq-bc52-xq-ac52/score/index.json b/site/public/v1/smartphones/xperia-1-iii-5g-dual-sim-td-lte-emea-xq-bc52-xq-ac52/score/index.json new file mode 100644 index 00000000000..94c06ef019e --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-iii-5g-dual-sim-td-lte-emea-xq-bc52-xq-ac52/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.6, + "performance": 9.4, + "camera": 5.1, + "battery": 35.4, + "display": 72.5, + "value": 26.9 +} diff --git a/site/public/v1/smartphones/xperia-1-iii-5g-dual-sim-td-lte-jp-512gb-xq-bc42/index.json b/site/public/v1/smartphones/xperia-1-iii-5g-dual-sim-td-lte-jp-512gb-xq-bc42/index.json new file mode 100644 index 00000000000..a2700d31154 --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-iii-5g-dual-sim-td-lte-jp-512gb-xq-bc42/index.json @@ -0,0 +1,77 @@ +{ + "id": 4880, + "slug": "xperia-1-iii-5g-dual-sim-td-lte-jp-512gb-xq-bc42", + "name": "Xperia 1 III 5G Dual SIM TD-LTE JP 512GB XQ-BC42", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-11-19", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 187.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.6, + "performance": 9.4, + "camera": 5.1, + "battery": 35.4, + "display": 72.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.822718", + "updated_at": "2026-06-19T00:43:44.822718" +} diff --git a/site/public/v1/smartphones/xperia-1-iii-5g-dual-sim-td-lte-jp-512gb-xq-bc42/score/index.json b/site/public/v1/smartphones/xperia-1-iii-5g-dual-sim-td-lte-jp-512gb-xq-bc42/score/index.json new file mode 100644 index 00000000000..00e4f7027da --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-iii-5g-dual-sim-td-lte-jp-512gb-xq-bc42/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.6, + "performance": 9.4, + "camera": 5.1, + "battery": 35.4, + "display": 72.5, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-1-iii-5g-dual-sim-td-lte-na-256gb-xq-bc62/index.json b/site/public/v1/smartphones/xperia-1-iii-5g-dual-sim-td-lte-na-256gb-xq-bc62/index.json new file mode 100644 index 00000000000..265bf2c296e --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-iii-5g-dual-sim-td-lte-na-256gb-xq-bc62/index.json @@ -0,0 +1,77 @@ +{ + "id": 4881, + "slug": "xperia-1-iii-5g-dual-sim-td-lte-na-256gb-xq-bc62", + "name": "Xperia 1 III 5G Dual SIM TD-LTE NA 256GB XQ-BC62", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-07-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 187.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.6, + "performance": 9.4, + "camera": 5.1, + "battery": 35.4, + "display": 72.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.822718", + "updated_at": "2026-06-19T00:43:44.822718" +} diff --git a/site/public/v1/smartphones/xperia-1-iii-5g-dual-sim-td-lte-na-256gb-xq-bc62/score/index.json b/site/public/v1/smartphones/xperia-1-iii-5g-dual-sim-td-lte-na-256gb-xq-bc62/score/index.json new file mode 100644 index 00000000000..00e4f7027da --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-iii-5g-dual-sim-td-lte-na-256gb-xq-bc62/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.6, + "performance": 9.4, + "camera": 5.1, + "battery": 35.4, + "display": 72.5, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-1-iii-5g-uw-td-lte-jp-a101so/index.json b/site/public/v1/smartphones/xperia-1-iii-5g-uw-td-lte-jp-a101so/index.json new file mode 100644 index 00000000000..4b0932fa947 --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-iii-5g-uw-td-lte-jp-a101so/index.json @@ -0,0 +1,77 @@ +{ + "id": 4882, + "slug": "xperia-1-iii-5g-uw-td-lte-jp-a101so", + "name": "Xperia 1 III 5G UW TD-LTE JP A101SO", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-07-09", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.6, + "performance": 9.4, + "camera": 5.1, + "battery": 35.4, + "display": 72.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.822718", + "updated_at": "2026-06-19T00:43:44.822718" +} diff --git a/site/public/v1/smartphones/xperia-1-iii-5g-uw-td-lte-jp-a101so/score/index.json b/site/public/v1/smartphones/xperia-1-iii-5g-uw-td-lte-jp-a101so/score/index.json new file mode 100644 index 00000000000..00e4f7027da --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-iii-5g-uw-td-lte-jp-a101so/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.6, + "performance": 9.4, + "camera": 5.1, + "battery": 35.4, + "display": 72.5, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-1-iii-5g-uw-td-lte-jp-so-51b/index.json b/site/public/v1/smartphones/xperia-1-iii-5g-uw-td-lte-jp-so-51b/index.json new file mode 100644 index 00000000000..b8dabff5a66 --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-iii-5g-uw-td-lte-jp-so-51b/index.json @@ -0,0 +1,77 @@ +{ + "id": 4883, + "slug": "xperia-1-iii-5g-uw-td-lte-jp-so-51b", + "name": "Xperia 1 III 5G UW TD-LTE JP SO-51B", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-07-09", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.6, + "performance": 9.4, + "camera": 5.1, + "battery": 35.4, + "display": 72.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.823717", + "updated_at": "2026-06-19T00:43:44.823717" +} diff --git a/site/public/v1/smartphones/xperia-1-iii-5g-uw-td-lte-jp-so-51b/score/index.json b/site/public/v1/smartphones/xperia-1-iii-5g-uw-td-lte-jp-so-51b/score/index.json new file mode 100644 index 00000000000..00e4f7027da --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-iii-5g-uw-td-lte-jp-so-51b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.6, + "performance": 9.4, + "camera": 5.1, + "battery": 35.4, + "display": 72.5, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-1-iii-5g-uw-td-lte-jp-sog03/index.json b/site/public/v1/smartphones/xperia-1-iii-5g-uw-td-lte-jp-sog03/index.json new file mode 100644 index 00000000000..e169ac6fc75 --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-iii-5g-uw-td-lte-jp-sog03/index.json @@ -0,0 +1,77 @@ +{ + "id": 4884, + "slug": "xperia-1-iii-5g-uw-td-lte-jp-sog03", + "name": "Xperia 1 III 5G UW TD-LTE JP SOG03", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-06-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 188.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.6, + "performance": 9.4, + "camera": 5.1, + "battery": 35.4, + "display": 72.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.823717", + "updated_at": "2026-06-19T00:43:44.823717" +} diff --git a/site/public/v1/smartphones/xperia-1-iii-5g-uw-td-lte-jp-sog03/score/index.json b/site/public/v1/smartphones/xperia-1-iii-5g-uw-td-lte-jp-sog03/score/index.json new file mode 100644 index 00000000000..00e4f7027da --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-iii-5g-uw-td-lte-jp-sog03/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.6, + "performance": 9.4, + "camera": 5.1, + "battery": 35.4, + "display": 72.5, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-1-professional-edition-global-dual-sim-td-lte-j9150/index.json b/site/public/v1/smartphones/xperia-1-professional-edition-global-dual-sim-td-lte-j9150/index.json new file mode 100644 index 00000000000..5ff74af1bae --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-professional-edition-global-dual-sim-td-lte-j9150/index.json @@ -0,0 +1,76 @@ +{ + "id": 4821, + "slug": "xperia-1-professional-edition-global-dual-sim-td-lte-j9150", + "name": "Xperia 1 Professional Edition Global Dual SIM TD-LTE J9150", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-10-26", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3330, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 1.5, + "camera": 5.1, + "battery": 5.0, + "display": 65.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.815718", + "updated_at": "2026-06-19T00:43:44.815718" +} diff --git a/site/public/v1/smartphones/xperia-1-professional-edition-global-dual-sim-td-lte-j9150/score/index.json b/site/public/v1/smartphones/xperia-1-professional-edition-global-dual-sim-td-lte-j9150/score/index.json new file mode 100644 index 00000000000..02cc5d7fd50 --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-professional-edition-global-dual-sim-td-lte-j9150/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.1, + "performance": 1.5, + "camera": 5.1, + "battery": 5.0, + "display": 65.0, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-1-td-lte-jp-802so/index.json b/site/public/v1/smartphones/xperia-1-td-lte-jp-802so/index.json new file mode 100644 index 00000000000..1dd1723aa77 --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-td-lte-jp-802so/index.json @@ -0,0 +1,76 @@ +{ + "id": 4822, + "slug": "xperia-1-td-lte-jp-802so", + "name": "Xperia 1 TD-LTE JP 802SO", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-14", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 1.5, + "camera": 5.1, + "battery": 3.0, + "display": 65.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.815718", + "updated_at": "2026-06-19T00:43:44.815718" +} diff --git a/site/public/v1/smartphones/xperia-1-td-lte-jp-802so/score/index.json b/site/public/v1/smartphones/xperia-1-td-lte-jp-802so/score/index.json new file mode 100644 index 00000000000..63a1fc52e59 --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-td-lte-jp-802so/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 1.5, + "camera": 5.1, + "battery": 3.0, + "display": 65.0, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-1-td-lte-jp-so-03l/index.json b/site/public/v1/smartphones/xperia-1-td-lte-jp-so-03l/index.json new file mode 100644 index 00000000000..c81e5482144 --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-td-lte-jp-so-03l/index.json @@ -0,0 +1,76 @@ +{ + "id": 4823, + "slug": "xperia-1-td-lte-jp-so-03l", + "name": "Xperia 1 TD-LTE JP SO-03L", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-14", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 1.5, + "camera": 5.1, + "battery": 3.0, + "display": 65.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.815718", + "updated_at": "2026-06-19T00:43:44.815718" +} diff --git a/site/public/v1/smartphones/xperia-1-td-lte-jp-so-03l/score/index.json b/site/public/v1/smartphones/xperia-1-td-lte-jp-so-03l/score/index.json new file mode 100644 index 00000000000..63a1fc52e59 --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-td-lte-jp-so-03l/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 1.5, + "camera": 5.1, + "battery": 3.0, + "display": 65.0, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-1-wimax-2-jp-sov40/index.json b/site/public/v1/smartphones/xperia-1-wimax-2-jp-sov40/index.json new file mode 100644 index 00000000000..7232e926a6e --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-wimax-2-jp-sov40/index.json @@ -0,0 +1,76 @@ +{ + "id": 4824, + "slug": "xperia-1-wimax-2-jp-sov40", + "name": "Xperia 1 WiMAX 2+ JP SOV40", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-14", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 1.5, + "camera": 5.1, + "battery": 3.0, + "display": 65.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.815718", + "updated_at": "2026-06-19T00:43:44.815718" +} diff --git a/site/public/v1/smartphones/xperia-1-wimax-2-jp-sov40/score/index.json b/site/public/v1/smartphones/xperia-1-wimax-2-jp-sov40/score/index.json new file mode 100644 index 00000000000..63a1fc52e59 --- /dev/null +++ b/site/public/v1/smartphones/xperia-1-wimax-2-jp-sov40/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.6, + "performance": 1.5, + "camera": 5.1, + "battery": 3.0, + "display": 65.0, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-10-global-dual-sim-td-lte-i4113/index.json b/site/public/v1/smartphones/xperia-10-global-dual-sim-td-lte-i4113/index.json new file mode 100644 index 00000000000..7750e0c8ab7 --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-global-dual-sim-td-lte-i4113/index.json @@ -0,0 +1,76 @@ +{ + "id": 4825, + "slug": "xperia-10-global-dual-sim-td-lte-i4113", + "name": "Xperia 10 Global Dual SIM TD-LTE I4113", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2019-02-26", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 2870, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.0, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 50.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.816717", + "updated_at": "2026-06-19T00:43:44.816717" +} diff --git a/site/public/v1/smartphones/xperia-10-global-dual-sim-td-lte-i4113/score/index.json b/site/public/v1/smartphones/xperia-10-global-dual-sim-td-lte-i4113/score/index.json new file mode 100644 index 00000000000..7911e133663 --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-global-dual-sim-td-lte-i4113/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.0, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 50.7, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-10-global-td-lte-i3113/index.json b/site/public/v1/smartphones/xperia-10-global-td-lte-i3113/index.json new file mode 100644 index 00000000000..e5a69695a31 --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-global-td-lte-i3113/index.json @@ -0,0 +1,76 @@ +{ + "id": 4826, + "slug": "xperia-10-global-td-lte-i3113", + "name": "Xperia 10 Global TD-LTE I3113", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2019-02-26", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 2870, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.0, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 50.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.816717", + "updated_at": "2026-06-19T00:43:44.816717" +} diff --git a/site/public/v1/smartphones/xperia-10-global-td-lte-i3113/score/index.json b/site/public/v1/smartphones/xperia-10-global-td-lte-i3113/score/index.json new file mode 100644 index 00000000000..7911e133663 --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-global-td-lte-i3113/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.0, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 50.7, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-10-ii-dual-sim-td-lte-jp-xq-au42/index.json b/site/public/v1/smartphones/xperia-10-ii-dual-sim-td-lte-jp-xq-au42/index.json new file mode 100644 index 00000000000..94f862894ea --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-ii-dual-sim-td-lte-jp-xq-au42/index.json @@ -0,0 +1,76 @@ +{ + "id": 4858, + "slug": "xperia-10-ii-dual-sim-td-lte-jp-xq-au42", + "name": "Xperia 10 II Dual SIM TD-LTE JP XQ-AU42", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3600, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 151.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.1, + "battery": 9.0, + "display": 50.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.820717", + "updated_at": "2026-06-19T00:43:44.820717" +} diff --git a/site/public/v1/smartphones/xperia-10-ii-dual-sim-td-lte-jp-xq-au42/score/index.json b/site/public/v1/smartphones/xperia-10-ii-dual-sim-td-lte-jp-xq-au42/score/index.json new file mode 100644 index 00000000000..fc29661e2cf --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-ii-dual-sim-td-lte-jp-xq-au42/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.1, + "battery": 9.0, + "display": 50.7, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-10-ii-global-dual-sim-td-lte-sony-xq-au52-xperia-10-mk-2/index.json b/site/public/v1/smartphones/xperia-10-ii-global-dual-sim-td-lte-sony-xq-au52-xperia-10-mk-2/index.json new file mode 100644 index 00000000000..fbf5b69987d --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-ii-global-dual-sim-td-lte-sony-xq-au52-xperia-10-mk-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 4859, + "slug": "xperia-10-ii-global-dual-sim-td-lte-sony-xq-au52-xperia-10-mk-2", + "name": "Xperia 10 II Global Dual SIM TD-LTE Sony XQ-AU52 / Xperia 10 Mk. 2", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-05-14", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3600, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 151.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.1, + "battery": 9.0, + "display": 50.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.820717", + "updated_at": "2026-06-19T00:43:44.820717" +} diff --git a/site/public/v1/smartphones/xperia-10-ii-global-dual-sim-td-lte-sony-xq-au52-xperia-10-mk-2/score/index.json b/site/public/v1/smartphones/xperia-10-ii-global-dual-sim-td-lte-sony-xq-au52-xperia-10-mk-2/score/index.json new file mode 100644 index 00000000000..fc29661e2cf --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-ii-global-dual-sim-td-lte-sony-xq-au52-xperia-10-mk-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.1, + "battery": 9.0, + "display": 50.7, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-10-ii-global-td-lte-xq-au51-xperia-10-mk-2/index.json b/site/public/v1/smartphones/xperia-10-ii-global-td-lte-xq-au51-xperia-10-mk-2/index.json new file mode 100644 index 00000000000..891df4329aa --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-ii-global-td-lte-xq-au51-xperia-10-mk-2/index.json @@ -0,0 +1,76 @@ +{ + "id": 4860, + "slug": "xperia-10-ii-global-td-lte-xq-au51-xperia-10-mk-2", + "name": "Xperia 10 II Global TD-LTE XQ-AU51 / Xperia 10 Mk. 2", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-05-04", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3600, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 151.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.1, + "battery": 9.0, + "display": 50.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.820717", + "updated_at": "2026-06-19T00:43:44.820717" +} diff --git a/site/public/v1/smartphones/xperia-10-ii-global-td-lte-xq-au51-xperia-10-mk-2/score/index.json b/site/public/v1/smartphones/xperia-10-ii-global-td-lte-xq-au51-xperia-10-mk-2/score/index.json new file mode 100644 index 00000000000..fc29661e2cf --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-ii-global-td-lte-xq-au51-xperia-10-mk-2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.1, + "battery": 9.0, + "display": 50.7, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-10-ii-td-lte-jp-a001so/index.json b/site/public/v1/smartphones/xperia-10-ii-td-lte-jp-a001so/index.json new file mode 100644 index 00000000000..4816f97d7aa --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-ii-td-lte-jp-a001so/index.json @@ -0,0 +1,76 @@ +{ + "id": 4861, + "slug": "xperia-10-ii-td-lte-jp-a001so", + "name": "Xperia 10 II TD-LTE JP A001SO", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3600, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 151.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.1, + "battery": 9.0, + "display": 50.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.820717", + "updated_at": "2026-06-19T00:43:44.820717" +} diff --git a/site/public/v1/smartphones/xperia-10-ii-td-lte-jp-a001so/score/index.json b/site/public/v1/smartphones/xperia-10-ii-td-lte-jp-a001so/score/index.json new file mode 100644 index 00000000000..fc29661e2cf --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-ii-td-lte-jp-a001so/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.1, + "battery": 9.0, + "display": 50.7, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-10-ii-td-lte-jp-so-41a/index.json b/site/public/v1/smartphones/xperia-10-ii-td-lte-jp-so-41a/index.json new file mode 100644 index 00000000000..d596ee36e73 --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-ii-td-lte-jp-so-41a/index.json @@ -0,0 +1,76 @@ +{ + "id": 4862, + "slug": "xperia-10-ii-td-lte-jp-so-41a", + "name": "Xperia 10 II TD-LTE JP SO-41A", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3600, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 151.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.1, + "battery": 9.0, + "display": 50.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.820717", + "updated_at": "2026-06-19T00:43:44.820717" +} diff --git a/site/public/v1/smartphones/xperia-10-ii-td-lte-jp-so-41a/score/index.json b/site/public/v1/smartphones/xperia-10-ii-td-lte-jp-so-41a/score/index.json new file mode 100644 index 00000000000..fc29661e2cf --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-ii-td-lte-jp-so-41a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.1, + "battery": 9.0, + "display": 50.7, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-10-ii-wimax-2-sov43/index.json b/site/public/v1/smartphones/xperia-10-ii-wimax-2-sov43/index.json new file mode 100644 index 00000000000..824ac720bbd --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-ii-wimax-2-sov43/index.json @@ -0,0 +1,76 @@ +{ + "id": 4863, + "slug": "xperia-10-ii-wimax-2-sov43", + "name": "Xperia 10 II WiMAX 2 + SOV43", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 132, + "slug": "snapdragon-665", + "name": "Snapdragon 665", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 11.0, + "gpu_name": "Adreno 610", + "url": "/v1/socs/snapdragon-665" + }, + "release_date": "2020-06-04", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3600, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 151.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.1, + "battery": 9.0, + "display": 50.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.820717", + "updated_at": "2026-06-19T00:43:44.820717" +} diff --git a/site/public/v1/smartphones/xperia-10-ii-wimax-2-sov43/score/index.json b/site/public/v1/smartphones/xperia-10-ii-wimax-2-sov43/score/index.json new file mode 100644 index 00000000000..fc29661e2cf --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-ii-wimax-2-sov43/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.1, + "battery": 9.0, + "display": 50.7, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-10-iii-5g-global-dual-sim-td-lte-128gb-xq-bt52/index.json b/site/public/v1/smartphones/xperia-10-iii-5g-global-dual-sim-td-lte-128gb-xq-bt52/index.json new file mode 100644 index 00000000000..e1ddfa32a17 --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-iii-5g-global-dual-sim-td-lte-128gb-xq-bt52/index.json @@ -0,0 +1,77 @@ +{ + "id": 4886, + "slug": "xperia-10-iii-5g-global-dual-sim-td-lte-128gb-xq-bt52", + "name": "Xperia 10 III 5G Global Dual SIM TD-LTE 128GB XQ-BT52", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 143, + "slug": "snapdragon-690", + "name": "Snapdragon 690", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619L", + "url": "/v1/socs/snapdragon-690" + }, + "release_date": "2021-05-29", + "msrp_usd": 429, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 1.5, + "camera": 5.1, + "battery": 25.4, + "display": 33.2, + "value": 53.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.823717", + "updated_at": "2026-06-19T00:43:44.823717" +} diff --git a/site/public/v1/smartphones/xperia-10-iii-5g-global-dual-sim-td-lte-128gb-xq-bt52/score/index.json b/site/public/v1/smartphones/xperia-10-iii-5g-global-dual-sim-td-lte-128gb-xq-bt52/score/index.json new file mode 100644 index 00000000000..61231313962 --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-iii-5g-global-dual-sim-td-lte-128gb-xq-bt52/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 1.5, + "camera": 5.1, + "battery": 25.4, + "display": 33.2, + "value": 53.2 +} diff --git a/site/public/v1/smartphones/xperia-10-iii-5g-td-lte-jp-128gb-a102so/index.json b/site/public/v1/smartphones/xperia-10-iii-5g-td-lte-jp-128gb-a102so/index.json new file mode 100644 index 00000000000..600e895b4cf --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-iii-5g-td-lte-jp-128gb-a102so/index.json @@ -0,0 +1,77 @@ +{ + "id": 4887, + "slug": "xperia-10-iii-5g-td-lte-jp-128gb-a102so", + "name": "Xperia 10 III 5G TD-LTE JP 128GB A102SO", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 143, + "slug": "snapdragon-690", + "name": "Snapdragon 690", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619L", + "url": "/v1/socs/snapdragon-690" + }, + "release_date": "2021-07-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 1.5, + "camera": 5.1, + "battery": 25.4, + "display": 33.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.823717", + "updated_at": "2026-06-19T00:43:44.823717" +} diff --git a/site/public/v1/smartphones/xperia-10-iii-5g-td-lte-jp-128gb-a102so/score/index.json b/site/public/v1/smartphones/xperia-10-iii-5g-td-lte-jp-128gb-a102so/score/index.json new file mode 100644 index 00000000000..520c3f1f82b --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-iii-5g-td-lte-jp-128gb-a102so/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 1.5, + "camera": 5.1, + "battery": 25.4, + "display": 33.2, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-10-iii-5g-td-lte-jp-128gb-so-52b/index.json b/site/public/v1/smartphones/xperia-10-iii-5g-td-lte-jp-128gb-so-52b/index.json new file mode 100644 index 00000000000..9b38e32300e --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-iii-5g-td-lte-jp-128gb-so-52b/index.json @@ -0,0 +1,77 @@ +{ + "id": 4888, + "slug": "xperia-10-iii-5g-td-lte-jp-128gb-so-52b", + "name": "Xperia 10 III 5G TD-LTE JP 128GB SO-52B", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 143, + "slug": "snapdragon-690", + "name": "Snapdragon 690", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619L", + "url": "/v1/socs/snapdragon-690" + }, + "release_date": "2021-06-18", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 1.5, + "camera": 5.1, + "battery": 25.4, + "display": 33.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.823717", + "updated_at": "2026-06-19T00:43:44.823717" +} diff --git a/site/public/v1/smartphones/xperia-10-iii-5g-td-lte-jp-128gb-so-52b/score/index.json b/site/public/v1/smartphones/xperia-10-iii-5g-td-lte-jp-128gb-so-52b/score/index.json new file mode 100644 index 00000000000..520c3f1f82b --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-iii-5g-td-lte-jp-128gb-so-52b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 1.5, + "camera": 5.1, + "battery": 25.4, + "display": 33.2, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-10-iii-5g-td-lte-jp-128gb-sog04/index.json b/site/public/v1/smartphones/xperia-10-iii-5g-td-lte-jp-128gb-sog04/index.json new file mode 100644 index 00000000000..ed565dcb966 --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-iii-5g-td-lte-jp-128gb-sog04/index.json @@ -0,0 +1,77 @@ +{ + "id": 4889, + "slug": "xperia-10-iii-5g-td-lte-jp-128gb-sog04", + "name": "Xperia 10 III 5G TD-LTE JP 128GB SOG04", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 143, + "slug": "snapdragon-690", + "name": "Snapdragon 690", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619L", + "url": "/v1/socs/snapdragon-690" + }, + "release_date": "2021-06-18", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 1.5, + "camera": 5.1, + "battery": 25.4, + "display": 33.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.823717", + "updated_at": "2026-06-19T00:43:44.823717" +} diff --git a/site/public/v1/smartphones/xperia-10-iii-5g-td-lte-jp-128gb-sog04/score/index.json b/site/public/v1/smartphones/xperia-10-iii-5g-td-lte-jp-128gb-sog04/score/index.json new file mode 100644 index 00000000000..520c3f1f82b --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-iii-5g-td-lte-jp-128gb-sog04/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 1.5, + "camera": 5.1, + "battery": 25.4, + "display": 33.2, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-10-iii-lite-5g-dual-sim-td-lte-jp-64gb-xq-bt44/index.json b/site/public/v1/smartphones/xperia-10-iii-lite-5g-dual-sim-td-lte-jp-64gb-xq-bt44/index.json new file mode 100644 index 00000000000..e6c00f3c80c --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-iii-lite-5g-dual-sim-td-lte-jp-64gb-xq-bt44/index.json @@ -0,0 +1,77 @@ +{ + "id": 4890, + "slug": "xperia-10-iii-lite-5g-dual-sim-td-lte-jp-64gb-xq-bt44", + "name": "Xperia 10 III Lite 5G Dual SIM TD-LTE JP 64GB XQ-BT44", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 143, + "slug": "snapdragon-690", + "name": "Snapdragon 690", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 619L", + "url": "/v1/socs/snapdragon-690" + }, + "release_date": "2021-08-27", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 1.5, + "camera": 5.1, + "battery": 25.4, + "display": 33.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.823717", + "updated_at": "2026-06-19T00:43:44.823717" +} diff --git a/site/public/v1/smartphones/xperia-10-iii-lite-5g-dual-sim-td-lte-jp-64gb-xq-bt44/score/index.json b/site/public/v1/smartphones/xperia-10-iii-lite-5g-dual-sim-td-lte-jp-64gb-xq-bt44/score/index.json new file mode 100644 index 00000000000..520c3f1f82b --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-iii-lite-5g-dual-sim-td-lte-jp-64gb-xq-bt44/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": 1.5, + "camera": 5.1, + "battery": 25.4, + "display": 33.2, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-10-lte-a-na-i3123/index.json b/site/public/v1/smartphones/xperia-10-lte-a-na-i3123/index.json new file mode 100644 index 00000000000..045b9af819e --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-lte-a-na-i3123/index.json @@ -0,0 +1,76 @@ +{ + "id": 4827, + "slug": "xperia-10-lte-a-na-i3123", + "name": "Xperia 10 LTE-A NA I3123", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2019-02-26", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 2870, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.0, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 50.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.816717", + "updated_at": "2026-06-19T00:43:44.816717" +} diff --git a/site/public/v1/smartphones/xperia-10-lte-a-na-i3123/score/index.json b/site/public/v1/smartphones/xperia-10-lte-a-na-i3123/score/index.json new file mode 100644 index 00000000000..7911e133663 --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-lte-a-na-i3123/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.0, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 50.7, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-10-plus-global-dual-sim-td-lte-i4213/index.json b/site/public/v1/smartphones/xperia-10-plus-global-dual-sim-td-lte-i4213/index.json new file mode 100644 index 00000000000..95d466f040f --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-plus-global-dual-sim-td-lte-i4213/index.json @@ -0,0 +1,76 @@ +{ + "id": 4828, + "slug": "xperia-10-plus-global-dual-sim-td-lte-i4213", + "name": "Xperia 10 Plus Global Dual SIM TD-LTE I4213", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2019-02-28", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 0.0, + "display": 47.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.816717", + "updated_at": "2026-06-19T00:43:44.816717" +} diff --git a/site/public/v1/smartphones/xperia-10-plus-global-dual-sim-td-lte-i4213/score/index.json b/site/public/v1/smartphones/xperia-10-plus-global-dual-sim-td-lte-i4213/score/index.json new file mode 100644 index 00000000000..daad8ff3151 --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-plus-global-dual-sim-td-lte-i4213/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 0.0, + "display": 47.2, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-10-plus-global-td-lte-i3213/index.json b/site/public/v1/smartphones/xperia-10-plus-global-td-lte-i3213/index.json new file mode 100644 index 00000000000..6819ffb0705 --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-plus-global-td-lte-i3213/index.json @@ -0,0 +1,76 @@ +{ + "id": 4829, + "slug": "xperia-10-plus-global-td-lte-i3213", + "name": "Xperia 10 Plus Global TD-LTE I3213", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2019-02-28", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 0.0, + "display": 47.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.816717", + "updated_at": "2026-06-19T00:43:44.816717" +} diff --git a/site/public/v1/smartphones/xperia-10-plus-global-td-lte-i3213/score/index.json b/site/public/v1/smartphones/xperia-10-plus-global-td-lte-i3213/score/index.json new file mode 100644 index 00000000000..daad8ff3151 --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-plus-global-td-lte-i3213/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 0.0, + "display": 47.2, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-10-plus-lte-a-na-i3223/index.json b/site/public/v1/smartphones/xperia-10-plus-lte-a-na-i3223/index.json new file mode 100644 index 00000000000..4669d492b3d --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-plus-lte-a-na-i3223/index.json @@ -0,0 +1,76 @@ +{ + "id": 4830, + "slug": "xperia-10-plus-lte-a-na-i3223", + "name": "Xperia 10 Plus LTE-A NA I3223", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2019-02-28", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 0.0, + "display": 47.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.816717", + "updated_at": "2026-06-19T00:43:44.816717" +} diff --git a/site/public/v1/smartphones/xperia-10-plus-lte-a-na-i3223/score/index.json b/site/public/v1/smartphones/xperia-10-plus-lte-a-na-i3223/score/index.json new file mode 100644 index 00000000000..daad8ff3151 --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-plus-lte-a-na-i3223/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.1, + "performance": 0.0, + "camera": 5.0, + "battery": 0.0, + "display": 47.2, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-10-plus-premium-edition-global-dual-sim-td-lte-i4293/index.json b/site/public/v1/smartphones/xperia-10-plus-premium-edition-global-dual-sim-td-lte-i4293/index.json new file mode 100644 index 00000000000..290f5ca4d5a --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-plus-premium-edition-global-dual-sim-td-lte-i4293/index.json @@ -0,0 +1,76 @@ +{ + "id": 4831, + "slug": "xperia-10-plus-premium-edition-global-dual-sim-td-lte-i4293", + "name": "Xperia 10 Plus Premium Edition Global Dual SIM TD-LTE I4293", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2019-02-28", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 422 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": 1.5, + "camera": 5.0, + "battery": 0.0, + "display": 47.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.816717", + "updated_at": "2026-06-19T00:43:44.816717" +} diff --git a/site/public/v1/smartphones/xperia-10-plus-premium-edition-global-dual-sim-td-lte-i4293/score/index.json b/site/public/v1/smartphones/xperia-10-plus-premium-edition-global-dual-sim-td-lte-i4293/score/index.json new file mode 100644 index 00000000000..d7e6adc730c --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-plus-premium-edition-global-dual-sim-td-lte-i4293/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": 1.5, + "camera": 5.0, + "battery": 0.0, + "display": 47.2, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-10-premium-edition-global-dual-sim-td-lte-i4193/index.json b/site/public/v1/smartphones/xperia-10-premium-edition-global-dual-sim-td-lte-i4193/index.json new file mode 100644 index 00000000000..1643cdc1495 --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-premium-edition-global-dual-sim-td-lte-i4193/index.json @@ -0,0 +1,76 @@ +{ + "id": 4832, + "slug": "xperia-10-premium-edition-global-dual-sim-td-lte-i4193", + "name": "Xperia 10 Premium Edition Global Dual SIM TD-LTE I4193", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2019-02-27", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 2870, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 162.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.0, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 50.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.816717", + "updated_at": "2026-06-19T00:43:44.816717" +} diff --git a/site/public/v1/smartphones/xperia-10-premium-edition-global-dual-sim-td-lte-i4193/score/index.json b/site/public/v1/smartphones/xperia-10-premium-edition-global-dual-sim-td-lte-i4193/score/index.json new file mode 100644 index 00000000000..7911e133663 --- /dev/null +++ b/site/public/v1/smartphones/xperia-10-premium-edition-global-dual-sim-td-lte-i4193/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.0, + "performance": 0.0, + "camera": 5.3, + "battery": 0.0, + "display": 50.7, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-5-global-dual-sim-td-lte-j9210/index.json b/site/public/v1/smartphones/xperia-5-global-dual-sim-td-lte-j9210/index.json new file mode 100644 index 00000000000..e02976c31e5 --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-global-dual-sim-td-lte-j9210/index.json @@ -0,0 +1,76 @@ +{ + "id": 4833, + "slug": "xperia-5-global-dual-sim-td-lte-j9210", + "name": "Xperia 5 Global Dual SIM TD-LTE J9210", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3140, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 1.5, + "camera": 5.1, + "battery": 2.1, + "display": 50.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.816717", + "updated_at": "2026-06-19T00:43:44.816717" +} diff --git a/site/public/v1/smartphones/xperia-5-global-dual-sim-td-lte-j9210/score/index.json b/site/public/v1/smartphones/xperia-5-global-dual-sim-td-lte-j9210/score/index.json new file mode 100644 index 00000000000..27874af5831 --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-global-dual-sim-td-lte-j9210/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 1.5, + "camera": 5.1, + "battery": 2.1, + "display": 50.0, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-5-global-td-lte-j8210/index.json b/site/public/v1/smartphones/xperia-5-global-td-lte-j8210/index.json new file mode 100644 index 00000000000..616b8e927c1 --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-global-td-lte-j8210/index.json @@ -0,0 +1,76 @@ +{ + "id": 4834, + "slug": "xperia-5-global-td-lte-j8210", + "name": "Xperia 5 Global TD-LTE J8210", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-10-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3140, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 1.5, + "camera": 5.1, + "battery": 2.1, + "display": 50.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.817718", + "updated_at": "2026-06-19T00:43:44.817718" +} diff --git a/site/public/v1/smartphones/xperia-5-global-td-lte-j8210/score/index.json b/site/public/v1/smartphones/xperia-5-global-td-lte-j8210/score/index.json new file mode 100644 index 00000000000..27874af5831 --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-global-td-lte-j8210/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 1.5, + "camera": 5.1, + "battery": 2.1, + "display": 50.0, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-5-global-td-lte-j8270/index.json b/site/public/v1/smartphones/xperia-5-global-td-lte-j8270/index.json new file mode 100644 index 00000000000..072ed743614 --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-global-td-lte-j8270/index.json @@ -0,0 +1,76 @@ +{ + "id": 4835, + "slug": "xperia-5-global-td-lte-j8270", + "name": "Xperia 5 Global TD-LTE J8270", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-10-28", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3140, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 1.5, + "camera": 5.1, + "battery": 2.1, + "display": 50.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.817718", + "updated_at": "2026-06-19T00:43:44.817718" +} diff --git a/site/public/v1/smartphones/xperia-5-global-td-lte-j8270/score/index.json b/site/public/v1/smartphones/xperia-5-global-td-lte-j8270/score/index.json new file mode 100644 index 00000000000..27874af5831 --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-global-td-lte-j8270/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 1.5, + "camera": 5.1, + "battery": 2.1, + "display": 50.0, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-5-ii-5g-dual-sim-td-lte-apac-256gb-xq-as72/index.json b/site/public/v1/smartphones/xperia-5-ii-5g-dual-sim-td-lte-apac-256gb-xq-as72/index.json new file mode 100644 index 00000000000..87af9f7615f --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-ii-5g-dual-sim-td-lte-apac-256gb-xq-as72/index.json @@ -0,0 +1,77 @@ +{ + "id": 4864, + "slug": "xperia-5-ii-5g-dual-sim-td-lte-apac-256gb-xq-as72", + "name": "Xperia 5 II 5G Dual SIM TD-LTE APAC 256GB XQ-AS72", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-10-07", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 21.0, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 3.0, + "camera": 5.1, + "battery": 16.1, + "display": 57.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.820717", + "updated_at": "2026-06-19T00:43:44.820717" +} diff --git a/site/public/v1/smartphones/xperia-5-ii-5g-dual-sim-td-lte-apac-256gb-xq-as72/score/index.json b/site/public/v1/smartphones/xperia-5-ii-5g-dual-sim-td-lte-apac-256gb-xq-as72/score/index.json new file mode 100644 index 00000000000..c8db2b4c340 --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-ii-5g-dual-sim-td-lte-apac-256gb-xq-as72/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 3.0, + "camera": 5.1, + "battery": 16.1, + "display": 57.5, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-5-ii-5g-dual-sim-td-lte-jp-256gb-xq-as42/index.json b/site/public/v1/smartphones/xperia-5-ii-5g-dual-sim-td-lte-jp-256gb-xq-as42/index.json new file mode 100644 index 00000000000..f625709c61c --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-ii-5g-dual-sim-td-lte-jp-256gb-xq-as42/index.json @@ -0,0 +1,77 @@ +{ + "id": 4893, + "slug": "xperia-5-ii-5g-dual-sim-td-lte-jp-256gb-xq-as42", + "name": "Xperia 5 II 5G Dual SIM TD-LTE JP 256GB XQ-AS42", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2021-05-28", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 21.0, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 3.0, + "camera": 5.1, + "battery": 16.1, + "display": 57.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.824717", + "updated_at": "2026-06-19T00:43:44.824717" +} diff --git a/site/public/v1/smartphones/xperia-5-ii-5g-dual-sim-td-lte-jp-256gb-xq-as42/score/index.json b/site/public/v1/smartphones/xperia-5-ii-5g-dual-sim-td-lte-jp-256gb-xq-as42/score/index.json new file mode 100644 index 00000000000..c8db2b4c340 --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-ii-5g-dual-sim-td-lte-jp-256gb-xq-as42/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 3.0, + "camera": 5.1, + "battery": 16.1, + "display": 57.5, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-5-ii-5g-global-dual-sim-td-lte-xq-as52/index.json b/site/public/v1/smartphones/xperia-5-ii-5g-global-dual-sim-td-lte-xq-as52/index.json new file mode 100644 index 00000000000..b7799718f64 --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-ii-5g-global-dual-sim-td-lte-xq-as52/index.json @@ -0,0 +1,77 @@ +{ + "id": 4865, + "slug": "xperia-5-ii-5g-global-dual-sim-td-lte-xq-as52", + "name": "Xperia 5 II 5G Global Dual SIM TD-LTE XQ-AS52", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-10-19", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 21.0, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 3.0, + "camera": 5.1, + "battery": 16.1, + "display": 57.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.820717", + "updated_at": "2026-06-19T00:43:44.820717" +} diff --git a/site/public/v1/smartphones/xperia-5-ii-5g-global-dual-sim-td-lte-xq-as52/score/index.json b/site/public/v1/smartphones/xperia-5-ii-5g-global-dual-sim-td-lte-xq-as52/score/index.json new file mode 100644 index 00000000000..c8db2b4c340 --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-ii-5g-global-dual-sim-td-lte-xq-as52/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 3.0, + "camera": 5.1, + "battery": 16.1, + "display": 57.5, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-5-ii-5g-td-lte-jp-a002so/index.json b/site/public/v1/smartphones/xperia-5-ii-5g-td-lte-jp-a002so/index.json new file mode 100644 index 00000000000..8e4f2a22520 --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-ii-5g-td-lte-jp-a002so/index.json @@ -0,0 +1,77 @@ +{ + "id": 4866, + "slug": "xperia-5-ii-5g-td-lte-jp-a002so", + "name": "Xperia 5 II 5G TD-LTE JP A002SO", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-10-17", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 21.0, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 3.0, + "camera": 5.1, + "battery": 16.1, + "display": 57.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.821717", + "updated_at": "2026-06-19T00:43:44.821717" +} diff --git a/site/public/v1/smartphones/xperia-5-ii-5g-td-lte-jp-a002so/score/index.json b/site/public/v1/smartphones/xperia-5-ii-5g-td-lte-jp-a002so/score/index.json new file mode 100644 index 00000000000..c8db2b4c340 --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-ii-5g-td-lte-jp-a002so/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 3.0, + "camera": 5.1, + "battery": 16.1, + "display": 57.5, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-5-ii-5g-td-lte-jp-so-52a/index.json b/site/public/v1/smartphones/xperia-5-ii-5g-td-lte-jp-so-52a/index.json new file mode 100644 index 00000000000..5429f980a09 --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-ii-5g-td-lte-jp-so-52a/index.json @@ -0,0 +1,77 @@ +{ + "id": 4867, + "slug": "xperia-5-ii-5g-td-lte-jp-so-52a", + "name": "Xperia 5 II 5G TD-LTE JP SO-52A", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-11-12", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 21.0, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 3.0, + "camera": 5.1, + "battery": 16.1, + "display": 57.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.821717", + "updated_at": "2026-06-19T00:43:44.821717" +} diff --git a/site/public/v1/smartphones/xperia-5-ii-5g-td-lte-jp-so-52a/score/index.json b/site/public/v1/smartphones/xperia-5-ii-5g-td-lte-jp-so-52a/score/index.json new file mode 100644 index 00000000000..c8db2b4c340 --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-ii-5g-td-lte-jp-so-52a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 3.0, + "camera": 5.1, + "battery": 16.1, + "display": 57.5, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-5-ii-5g-td-lte-jp-sog02/index.json b/site/public/v1/smartphones/xperia-5-ii-5g-td-lte-jp-sog02/index.json new file mode 100644 index 00000000000..0e45060f9c8 --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-ii-5g-td-lte-jp-sog02/index.json @@ -0,0 +1,77 @@ +{ + "id": 4868, + "slug": "xperia-5-ii-5g-td-lte-jp-sog02", + "name": "Xperia 5 II 5G TD-LTE JP SOG02", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-10-17", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 21.0, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 3.0, + "camera": 5.1, + "battery": 16.1, + "display": 57.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.821717", + "updated_at": "2026-06-19T00:43:44.821717" +} diff --git a/site/public/v1/smartphones/xperia-5-ii-5g-td-lte-jp-sog02/score/index.json b/site/public/v1/smartphones/xperia-5-ii-5g-td-lte-jp-sog02/score/index.json new file mode 100644 index 00000000000..c8db2b4c340 --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-ii-5g-td-lte-jp-sog02/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.4, + "performance": 3.0, + "camera": 5.1, + "battery": 16.1, + "display": 57.5, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-5-iii-5g-dual-sim-td-lte-apac-256gb-xq-bq72/index.json b/site/public/v1/smartphones/xperia-5-iii-5g-dual-sim-td-lte-apac-256gb-xq-bq72/index.json new file mode 100644 index 00000000000..963ac4e607b --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-iii-5g-dual-sim-td-lte-apac-256gb-xq-bq72/index.json @@ -0,0 +1,77 @@ +{ + "id": 4894, + "slug": "xperia-5-iii-5g-dual-sim-td-lte-apac-256gb-xq-bq72", + "name": "Xperia 5 III 5G Dual SIM TD-LTE APAC 256GB XQ-BQ72", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-05-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.4, + "performance": 6.4, + "camera": 5.1, + "battery": 32.5, + "display": 57.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.824717", + "updated_at": "2026-06-19T00:43:44.824717" +} diff --git a/site/public/v1/smartphones/xperia-5-iii-5g-dual-sim-td-lte-apac-256gb-xq-bq72/score/index.json b/site/public/v1/smartphones/xperia-5-iii-5g-dual-sim-td-lte-apac-256gb-xq-bq72/score/index.json new file mode 100644 index 00000000000..abfcfe2ede4 --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-iii-5g-dual-sim-td-lte-apac-256gb-xq-bq72/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.4, + "performance": 6.4, + "camera": 5.1, + "battery": 32.5, + "display": 57.5, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-5-iii-5g-dual-sim-td-lte-jp-256gb-xq-bq42/index.json b/site/public/v1/smartphones/xperia-5-iii-5g-dual-sim-td-lte-jp-256gb-xq-bq42/index.json new file mode 100644 index 00000000000..586bcbb6758 --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-iii-5g-dual-sim-td-lte-jp-256gb-xq-bq42/index.json @@ -0,0 +1,77 @@ +{ + "id": 4916, + "slug": "xperia-5-iii-5g-dual-sim-td-lte-jp-256gb-xq-bq42", + "name": "Xperia 5 III 5G Dual SIM TD-LTE JP 256GB XQ-BQ42", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2022-04-22", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.4, + "performance": 6.4, + "camera": 5.1, + "battery": 32.5, + "display": 57.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.829224", + "updated_at": "2026-06-19T00:43:44.829224" +} diff --git a/site/public/v1/smartphones/xperia-5-iii-5g-dual-sim-td-lte-jp-256gb-xq-bq42/score/index.json b/site/public/v1/smartphones/xperia-5-iii-5g-dual-sim-td-lte-jp-256gb-xq-bq42/score/index.json new file mode 100644 index 00000000000..abfcfe2ede4 --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-iii-5g-dual-sim-td-lte-jp-256gb-xq-bq42/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.4, + "performance": 6.4, + "camera": 5.1, + "battery": 32.5, + "display": 57.5, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-5-iii-5g-dual-sim-td-lte-na-xq-bq62/index.json b/site/public/v1/smartphones/xperia-5-iii-5g-dual-sim-td-lte-na-xq-bq62/index.json new file mode 100644 index 00000000000..e918010143d --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-iii-5g-dual-sim-td-lte-na-xq-bq62/index.json @@ -0,0 +1,77 @@ +{ + "id": 4895, + "slug": "xperia-5-iii-5g-dual-sim-td-lte-na-xq-bq62", + "name": "Xperia 5 III 5G Dual SIM TD-LTE NA XQ-BQ62", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-08-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.4, + "performance": 6.4, + "camera": 5.1, + "battery": 32.5, + "display": 57.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.824717", + "updated_at": "2026-06-19T00:43:44.824717" +} diff --git a/site/public/v1/smartphones/xperia-5-iii-5g-dual-sim-td-lte-na-xq-bq62/score/index.json b/site/public/v1/smartphones/xperia-5-iii-5g-dual-sim-td-lte-na-xq-bq62/score/index.json new file mode 100644 index 00000000000..abfcfe2ede4 --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-iii-5g-dual-sim-td-lte-na-xq-bq62/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.4, + "performance": 6.4, + "camera": 5.1, + "battery": 32.5, + "display": 57.5, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-5-iii-5g-global-dual-sim-td-lte-xq-bq52/index.json b/site/public/v1/smartphones/xperia-5-iii-5g-global-dual-sim-td-lte-xq-bq52/index.json new file mode 100644 index 00000000000..e5571445c97 --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-iii-5g-global-dual-sim-td-lte-xq-bq52/index.json @@ -0,0 +1,77 @@ +{ + "id": 4896, + "slug": "xperia-5-iii-5g-global-dual-sim-td-lte-xq-bq52", + "name": "Xperia 5 III 5G Global Dual SIM TD-LTE XQ-BQ52", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-07-01", + "msrp_usd": 999, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.4, + "performance": 6.4, + "camera": 5.1, + "battery": 32.5, + "display": 57.5, + "value": 35.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.824717", + "updated_at": "2026-06-19T00:43:44.824717" +} diff --git a/site/public/v1/smartphones/xperia-5-iii-5g-global-dual-sim-td-lte-xq-bq52/score/index.json b/site/public/v1/smartphones/xperia-5-iii-5g-global-dual-sim-td-lte-xq-bq52/score/index.json new file mode 100644 index 00000000000..d9c0a6bc285 --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-iii-5g-global-dual-sim-td-lte-xq-bq52/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.4, + "performance": 6.4, + "camera": 5.1, + "battery": 32.5, + "display": 57.5, + "value": 35.8 +} diff --git a/site/public/v1/smartphones/xperia-5-iii-5g-td-lte-jp-128gb-a103so/index.json b/site/public/v1/smartphones/xperia-5-iii-5g-td-lte-jp-128gb-a103so/index.json new file mode 100644 index 00000000000..55cd4716285 --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-iii-5g-td-lte-jp-128gb-a103so/index.json @@ -0,0 +1,77 @@ +{ + "id": 4897, + "slug": "xperia-5-iii-5g-td-lte-jp-128gb-a103so", + "name": "Xperia 5 III 5G TD-LTE JP 128GB A103SO", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-11-12", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.4, + "performance": 6.4, + "camera": 5.1, + "battery": 32.5, + "display": 57.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.824717", + "updated_at": "2026-06-19T00:43:44.824717" +} diff --git a/site/public/v1/smartphones/xperia-5-iii-5g-td-lte-jp-128gb-a103so/score/index.json b/site/public/v1/smartphones/xperia-5-iii-5g-td-lte-jp-128gb-a103so/score/index.json new file mode 100644 index 00000000000..abfcfe2ede4 --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-iii-5g-td-lte-jp-128gb-a103so/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.4, + "performance": 6.4, + "camera": 5.1, + "battery": 32.5, + "display": 57.5, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-5-iii-5g-td-lte-jp-128gb-so-53b/index.json b/site/public/v1/smartphones/xperia-5-iii-5g-td-lte-jp-128gb-so-53b/index.json new file mode 100644 index 00000000000..66674a797c6 --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-iii-5g-td-lte-jp-128gb-so-53b/index.json @@ -0,0 +1,77 @@ +{ + "id": 4898, + "slug": "xperia-5-iii-5g-td-lte-jp-128gb-so-53b", + "name": "Xperia 5 III 5G TD-LTE JP 128GB SO-53B", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-11-12", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.4, + "performance": 6.4, + "camera": 5.1, + "battery": 32.5, + "display": 57.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.824717", + "updated_at": "2026-06-19T00:43:44.824717" +} diff --git a/site/public/v1/smartphones/xperia-5-iii-5g-td-lte-jp-128gb-so-53b/score/index.json b/site/public/v1/smartphones/xperia-5-iii-5g-td-lte-jp-128gb-so-53b/score/index.json new file mode 100644 index 00000000000..abfcfe2ede4 --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-iii-5g-td-lte-jp-128gb-so-53b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.4, + "performance": 6.4, + "camera": 5.1, + "battery": 32.5, + "display": 57.5, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-5-iii-5g-td-lte-jp-128gb-sog05/index.json b/site/public/v1/smartphones/xperia-5-iii-5g-td-lte-jp-128gb-sog05/index.json new file mode 100644 index 00000000000..5a080be0bbd --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-iii-5g-td-lte-jp-128gb-sog05/index.json @@ -0,0 +1,77 @@ +{ + "id": 4899, + "slug": "xperia-5-iii-5g-td-lte-jp-128gb-sog05", + "name": "Xperia 5 III 5G TD-LTE JP 128GB SOG05", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-11-12", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.4, + "performance": 6.4, + "camera": 5.1, + "battery": 32.5, + "display": 57.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.824717", + "updated_at": "2026-06-19T00:43:44.824717" +} diff --git a/site/public/v1/smartphones/xperia-5-iii-5g-td-lte-jp-128gb-sog05/score/index.json b/site/public/v1/smartphones/xperia-5-iii-5g-td-lte-jp-128gb-sog05/score/index.json new file mode 100644 index 00000000000..abfcfe2ede4 --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-iii-5g-td-lte-jp-128gb-sog05/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.4, + "performance": 6.4, + "camera": 5.1, + "battery": 32.5, + "display": 57.5, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-5-td-lte-jp-901so/index.json b/site/public/v1/smartphones/xperia-5-td-lte-jp-901so/index.json new file mode 100644 index 00000000000..8e7b5da1d6e --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-td-lte-jp-901so/index.json @@ -0,0 +1,76 @@ +{ + "id": 4836, + "slug": "xperia-5-td-lte-jp-901so", + "name": "Xperia 5 TD-LTE JP 901SO", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-10-26", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3140, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 1.5, + "camera": 5.1, + "battery": 2.1, + "display": 50.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.817718", + "updated_at": "2026-06-19T00:43:44.817718" +} diff --git a/site/public/v1/smartphones/xperia-5-td-lte-jp-901so/score/index.json b/site/public/v1/smartphones/xperia-5-td-lte-jp-901so/score/index.json new file mode 100644 index 00000000000..27874af5831 --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-td-lte-jp-901so/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 1.5, + "camera": 5.1, + "battery": 2.1, + "display": 50.0, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-5-td-lte-jp-so-01m/index.json b/site/public/v1/smartphones/xperia-5-td-lte-jp-so-01m/index.json new file mode 100644 index 00000000000..01518e79b67 --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-td-lte-jp-so-01m/index.json @@ -0,0 +1,76 @@ +{ + "id": 4837, + "slug": "xperia-5-td-lte-jp-so-01m", + "name": "Xperia 5 TD-LTE JP SO-01M", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-11-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3140, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 1.5, + "camera": 5.1, + "battery": 2.1, + "display": 50.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.817718", + "updated_at": "2026-06-19T00:43:44.817718" +} diff --git a/site/public/v1/smartphones/xperia-5-td-lte-jp-so-01m/score/index.json b/site/public/v1/smartphones/xperia-5-td-lte-jp-so-01m/score/index.json new file mode 100644 index 00000000000..27874af5831 --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-td-lte-jp-so-01m/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 1.5, + "camera": 5.1, + "battery": 2.1, + "display": 50.0, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-5-wimax-2-sov41/index.json b/site/public/v1/smartphones/xperia-5-wimax-2-sov41/index.json new file mode 100644 index 00000000000..4424567e086 --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-wimax-2-sov41/index.json @@ -0,0 +1,76 @@ +{ + "id": 4838, + "slug": "xperia-5-wimax-2-sov41", + "name": "Xperia 5 WiMAX 2+ SOV41", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-10-26", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.1, + "resolution": "1080x2520", + "type": "AM-OLED display", + "ppi": 450 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3140, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 164.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 1.5, + "camera": 5.1, + "battery": 2.1, + "display": 50.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.817718", + "updated_at": "2026-06-19T00:43:44.817718" +} diff --git a/site/public/v1/smartphones/xperia-5-wimax-2-sov41/score/index.json b/site/public/v1/smartphones/xperia-5-wimax-2-sov41/score/index.json new file mode 100644 index 00000000000..27874af5831 --- /dev/null +++ b/site/public/v1/smartphones/xperia-5-wimax-2-sov41/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 1.5, + "camera": 5.1, + "battery": 2.1, + "display": 50.0, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-8-lite-td-lte-jp-j3273/index.json b/site/public/v1/smartphones/xperia-8-lite-td-lte-jp-j3273/index.json new file mode 100644 index 00000000000..657816311b1 --- /dev/null +++ b/site/public/v1/smartphones/xperia-8-lite-td-lte-jp-j3273/index.json @@ -0,0 +1,76 @@ +{ + "id": 4870, + "slug": "xperia-8-lite-td-lte-jp-j3273", + "name": "Xperia 8 Lite TD-LTE JP J3273", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2020-09-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 2870, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.0, + "battery": 0.0, + "display": 50.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.821717", + "updated_at": "2026-06-19T00:43:44.821717" +} diff --git a/site/public/v1/smartphones/xperia-8-lite-td-lte-jp-j3273/score/index.json b/site/public/v1/smartphones/xperia-8-lite-td-lte-jp-j3273/score/index.json new file mode 100644 index 00000000000..776155ff363 --- /dev/null +++ b/site/public/v1/smartphones/xperia-8-lite-td-lte-jp-j3273/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.0, + "battery": 0.0, + "display": 50.7, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-8-td-lte-jp-902so/index.json b/site/public/v1/smartphones/xperia-8-td-lte-jp-902so/index.json new file mode 100644 index 00000000000..a57c92213d6 --- /dev/null +++ b/site/public/v1/smartphones/xperia-8-td-lte-jp-902so/index.json @@ -0,0 +1,76 @@ +{ + "id": 4839, + "slug": "xperia-8-td-lte-jp-902so", + "name": "Xperia 8 TD-LTE JP 902SO", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2019-10-26", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 2760, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.0, + "battery": 0.0, + "display": 50.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.817718", + "updated_at": "2026-06-19T00:43:44.817718" +} diff --git a/site/public/v1/smartphones/xperia-8-td-lte-jp-902so/score/index.json b/site/public/v1/smartphones/xperia-8-td-lte-jp-902so/score/index.json new file mode 100644 index 00000000000..776155ff363 --- /dev/null +++ b/site/public/v1/smartphones/xperia-8-td-lte-jp-902so/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.0, + "battery": 0.0, + "display": 50.7, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-8-wimax-2-sov42-xperia-8-lite-sov42-u/index.json b/site/public/v1/smartphones/xperia-8-wimax-2-sov42-xperia-8-lite-sov42-u/index.json new file mode 100644 index 00000000000..c2d29d4eb66 --- /dev/null +++ b/site/public/v1/smartphones/xperia-8-wimax-2-sov42-xperia-8-lite-sov42-u/index.json @@ -0,0 +1,76 @@ +{ + "id": 4840, + "slug": "xperia-8-wimax-2-sov42-xperia-8-lite-sov42-u", + "name": "Xperia 8 WiMAX 2+ SOV42 / Xperia 8 Lite SOV42-u", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2019-10-26", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2520", + "type": "Color IPS TFT LCD display", + "ppi": 457 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 2760, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.0, + "battery": 0.0, + "display": 50.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.817718", + "updated_at": "2026-06-19T00:43:44.817718" +} diff --git a/site/public/v1/smartphones/xperia-8-wimax-2-sov42-xperia-8-lite-sov42-u/score/index.json b/site/public/v1/smartphones/xperia-8-wimax-2-sov42-xperia-8-lite-sov42-u/score/index.json new file mode 100644 index 00000000000..776155ff363 --- /dev/null +++ b/site/public/v1/smartphones/xperia-8-wimax-2-sov42-xperia-8-lite-sov42-u/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.9, + "performance": 0.0, + "camera": 5.0, + "battery": 0.0, + "display": 50.7, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-ace-ii-lte-a-jp-so-41b/index.json b/site/public/v1/smartphones/xperia-ace-ii-lte-a-jp-so-41b/index.json new file mode 100644 index 00000000000..853698400d2 --- /dev/null +++ b/site/public/v1/smartphones/xperia-ace-ii-lte-a-jp-so-41b/index.json @@ -0,0 +1,76 @@ +{ + "id": 4901, + "slug": "xperia-ace-ii-lte-a-jp-so-41b", + "name": "Xperia Ace II LTE-A JP SO-41B", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2021-05-28", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1496", + "type": "Color IPS TFT LCD display", + "ppi": 302 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 0.0, + "camera": 5.3, + "battery": 22.5, + "display": 35.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.824717", + "updated_at": "2026-06-19T00:43:44.824717" +} diff --git a/site/public/v1/smartphones/xperia-ace-ii-lte-a-jp-so-41b/score/index.json b/site/public/v1/smartphones/xperia-ace-ii-lte-a-jp-so-41b/score/index.json new file mode 100644 index 00000000000..0d68374e405 --- /dev/null +++ b/site/public/v1/smartphones/xperia-ace-ii-lte-a-jp-so-41b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 0.0, + "camera": 5.3, + "battery": 22.5, + "display": 35.2, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-ace-lte-a-jp-so-02l/index.json b/site/public/v1/smartphones/xperia-ace-lte-a-jp-so-02l/index.json new file mode 100644 index 00000000000..9d24a6fc343 --- /dev/null +++ b/site/public/v1/smartphones/xperia-ace-lte-a-jp-so-02l/index.json @@ -0,0 +1,76 @@ +{ + "id": 4841, + "slug": "xperia-ace-lte-a-jp-so-02l", + "name": "Xperia Ace LTE-A JP SO-02L", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2019-06-02", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 483 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 2700, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 155.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.6, + "performance": 0.0, + "camera": 5.0, + "battery": 0.0, + "display": 53.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.818718", + "updated_at": "2026-06-19T00:43:44.818718" +} diff --git a/site/public/v1/smartphones/xperia-ace-lte-a-jp-so-02l/score/index.json b/site/public/v1/smartphones/xperia-ace-lte-a-jp-so-02l/score/index.json new file mode 100644 index 00000000000..6f9c5fed13d --- /dev/null +++ b/site/public/v1/smartphones/xperia-ace-lte-a-jp-so-02l/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.6, + "performance": 0.0, + "camera": 5.0, + "battery": 0.0, + "display": 53.3, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-ace-td-lte-jp-j3173-j3137/index.json b/site/public/v1/smartphones/xperia-ace-td-lte-jp-j3173-j3137/index.json new file mode 100644 index 00000000000..82ded8e94e1 --- /dev/null +++ b/site/public/v1/smartphones/xperia-ace-td-lte-jp-j3173-j3137/index.json @@ -0,0 +1,76 @@ +{ + "id": 4842, + "slug": "xperia-ace-td-lte-jp-j3173-j3137", + "name": "Xperia Ace TD-LTE JP J3173 / J3137", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2019-09-06", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 483 + }, + "cameras": [ + { + "type": "main", + "mp": 12.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 2700, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 155.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.6, + "performance": 0.0, + "camera": 5.0, + "battery": 0.0, + "display": 53.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.818718", + "updated_at": "2026-06-19T00:43:44.818718" +} diff --git a/site/public/v1/smartphones/xperia-ace-td-lte-jp-j3173-j3137/score/index.json b/site/public/v1/smartphones/xperia-ace-td-lte-jp-j3173-j3137/score/index.json new file mode 100644 index 00000000000..6f9c5fed13d --- /dev/null +++ b/site/public/v1/smartphones/xperia-ace-td-lte-jp-j3173-j3137/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.6, + "performance": 0.0, + "camera": 5.0, + "battery": 0.0, + "display": 53.3, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-l3-dual-sim-td-lte-apac-i4332/index.json b/site/public/v1/smartphones/xperia-l3-dual-sim-td-lte-apac-i4332/index.json new file mode 100644 index 00000000000..8a4bdd13fb6 --- /dev/null +++ b/site/public/v1/smartphones/xperia-l3-dual-sim-td-lte-apac-i4332/index.json @@ -0,0 +1,76 @@ +{ + "id": 4843, + "slug": "xperia-l3-dual-sim-td-lte-apac-i4332", + "name": "Xperia L3 Dual SIM TD-LTE APAC I4332", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 7.7 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.818718", + "updated_at": "2026-06-19T00:43:44.818718" +} diff --git a/site/public/v1/smartphones/xperia-l3-dual-sim-td-lte-apac-i4332/score/index.json b/site/public/v1/smartphones/xperia-l3-dual-sim-td-lte-apac-i4332/score/index.json new file mode 100644 index 00000000000..61f4c83875e --- /dev/null +++ b/site/public/v1/smartphones/xperia-l3-dual-sim-td-lte-apac-i4332/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-l3-dual-sim-td-lte-emea-i4312/index.json b/site/public/v1/smartphones/xperia-l3-dual-sim-td-lte-emea-i4312/index.json new file mode 100644 index 00000000000..66e8c75052d --- /dev/null +++ b/site/public/v1/smartphones/xperia-l3-dual-sim-td-lte-emea-i4312/index.json @@ -0,0 +1,76 @@ +{ + "id": 4844, + "slug": "xperia-l3-dual-sim-td-lte-emea-i4312", + "name": "Xperia L3 Dual SIM TD-LTE EMEA I4312", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 7.7 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.818718", + "updated_at": "2026-06-19T00:43:44.818718" +} diff --git a/site/public/v1/smartphones/xperia-l3-dual-sim-td-lte-emea-i4312/score/index.json b/site/public/v1/smartphones/xperia-l3-dual-sim-td-lte-emea-i4312/score/index.json new file mode 100644 index 00000000000..61f4c83875e --- /dev/null +++ b/site/public/v1/smartphones/xperia-l3-dual-sim-td-lte-emea-i4312/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-l3-lte-a-am-i3322/index.json b/site/public/v1/smartphones/xperia-l3-lte-a-am-i3322/index.json new file mode 100644 index 00000000000..2fa5e2b01f6 --- /dev/null +++ b/site/public/v1/smartphones/xperia-l3-lte-a-am-i3322/index.json @@ -0,0 +1,76 @@ +{ + "id": 4845, + "slug": "xperia-l3-lte-a-am-i3322", + "name": "Xperia L3 LTE-A AM I3322", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 7.7 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.818718", + "updated_at": "2026-06-19T00:43:44.818718" +} diff --git a/site/public/v1/smartphones/xperia-l3-lte-a-am-i3322/score/index.json b/site/public/v1/smartphones/xperia-l3-lte-a-am-i3322/score/index.json new file mode 100644 index 00000000000..61f4c83875e --- /dev/null +++ b/site/public/v1/smartphones/xperia-l3-lte-a-am-i3322/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-l3-td-lte-emea-i3312/index.json b/site/public/v1/smartphones/xperia-l3-td-lte-emea-i3312/index.json new file mode 100644 index 00000000000..eda049aecf4 --- /dev/null +++ b/site/public/v1/smartphones/xperia-l3-td-lte-emea-i3312/index.json @@ -0,0 +1,76 @@ +{ + "id": 4846, + "slug": "xperia-l3-td-lte-emea-i3312", + "name": "Xperia L3 TD-LTE EMEA I3312", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 12.8 + }, + { + "type": "selfie", + "mp": 7.7 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 156.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.818718", + "updated_at": "2026-06-19T00:43:44.818718" +} diff --git a/site/public/v1/smartphones/xperia-l3-td-lte-emea-i3312/score/index.json b/site/public/v1/smartphones/xperia-l3-td-lte-emea-i3312/score/index.json new file mode 100644 index 00000000000..61f4c83875e --- /dev/null +++ b/site/public/v1/smartphones/xperia-l3-td-lte-emea-i3312/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.9, + "performance": null, + "camera": 5.2, + "battery": 4.5, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-l4-dual-sim-td-lte-emea-xq-ad52/index.json b/site/public/v1/smartphones/xperia-l4-dual-sim-td-lte-emea-xq-ad52/index.json new file mode 100644 index 00000000000..3931c37791b --- /dev/null +++ b/site/public/v1/smartphones/xperia-l4-dual-sim-td-lte-emea-xq-ad52/index.json @@ -0,0 +1,76 @@ +{ + "id": 4871, + "slug": "xperia-l4-dual-sim-td-lte-emea-xq-ad52", + "name": "Xperia L4 Dual SIM TD-LTE EMEA XQ-AD52", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-04-27", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1680", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3580, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": null, + "camera": 5.3, + "battery": 8.7, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.821717", + "updated_at": "2026-06-19T00:43:44.821717" +} diff --git a/site/public/v1/smartphones/xperia-l4-dual-sim-td-lte-emea-xq-ad52/score/index.json b/site/public/v1/smartphones/xperia-l4-dual-sim-td-lte-emea-xq-ad52/score/index.json new file mode 100644 index 00000000000..a90dcbc1744 --- /dev/null +++ b/site/public/v1/smartphones/xperia-l4-dual-sim-td-lte-emea-xq-ad52/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": null, + "camera": 5.3, + "battery": 8.7, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-l4-td-lte-emea-xq-ad51/index.json b/site/public/v1/smartphones/xperia-l4-td-lte-emea-xq-ad51/index.json new file mode 100644 index 00000000000..42061617318 --- /dev/null +++ b/site/public/v1/smartphones/xperia-l4-td-lte-emea-xq-ad51/index.json @@ -0,0 +1,76 @@ +{ + "id": 4872, + "slug": "xperia-l4-td-lte-emea-xq-ad51", + "name": "Xperia L4 TD-LTE EMEA XQ-AD51", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-04-27", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "720x1680", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3580, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": null, + "camera": 5.3, + "battery": 8.7, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.821717", + "updated_at": "2026-06-19T00:43:44.821717" +} diff --git a/site/public/v1/smartphones/xperia-l4-td-lte-emea-xq-ad51/score/index.json b/site/public/v1/smartphones/xperia-l4-td-lte-emea-xq-ad51/score/index.json new file mode 100644 index 00000000000..a90dcbc1744 --- /dev/null +++ b/site/public/v1/smartphones/xperia-l4-td-lte-emea-xq-ad51/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.3, + "performance": null, + "camera": 5.3, + "battery": 8.7, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-pro-5g-2021-global-dual-sim-td-lte-512gb/index.json b/site/public/v1/smartphones/xperia-pro-5g-2021-global-dual-sim-td-lte-512gb/index.json new file mode 100644 index 00000000000..05f78dfb3b8 --- /dev/null +++ b/site/public/v1/smartphones/xperia-pro-5g-2021-global-dual-sim-td-lte-512gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 4903, + "slug": "xperia-pro-5g-2021-global-dual-sim-td-lte-512gb", + "name": "Xperia Pro 5G 2021 Global Dual SIM TD-LTE 512GB", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2021-05-11", + "msrp_usd": 2499, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 21.0, + "charging_wireless_w": null, + "weight_g": 225.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 6.0, + "camera": 5.1, + "battery": 16.1, + "display": 65.0, + "value": 11.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.825717", + "updated_at": "2026-06-19T00:43:44.825717" +} diff --git a/site/public/v1/smartphones/xperia-pro-5g-2021-global-dual-sim-td-lte-512gb/score/index.json b/site/public/v1/smartphones/xperia-pro-5g-2021-global-dual-sim-td-lte-512gb/score/index.json new file mode 100644 index 00000000000..9329ca89c57 --- /dev/null +++ b/site/public/v1/smartphones/xperia-pro-5g-2021-global-dual-sim-td-lte-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 6.0, + "camera": 5.1, + "battery": 16.1, + "display": 65.0, + "value": 11.6 +} diff --git a/site/public/v1/smartphones/xperia-pro-5g-uw-2021-dual-sim-td-lte-jp-512gb-xq-aq52/index.json b/site/public/v1/smartphones/xperia-pro-5g-uw-2021-dual-sim-td-lte-jp-512gb-xq-aq52/index.json new file mode 100644 index 00000000000..a54866b9178 --- /dev/null +++ b/site/public/v1/smartphones/xperia-pro-5g-uw-2021-dual-sim-td-lte-jp-512gb-xq-aq52/index.json @@ -0,0 +1,76 @@ +{ + "id": 4904, + "slug": "xperia-pro-5g-uw-2021-dual-sim-td-lte-jp-512gb-xq-aq52", + "name": "Xperia Pro 5G UW 2021 Dual SIM TD-LTE JP 512GB XQ-AQ52", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2021-02-09", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 21.0, + "charging_wireless_w": null, + "weight_g": 225.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 6.0, + "camera": 5.1, + "battery": 16.1, + "display": 65.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.825717", + "updated_at": "2026-06-19T00:43:44.825717" +} diff --git a/site/public/v1/smartphones/xperia-pro-5g-uw-2021-dual-sim-td-lte-jp-512gb-xq-aq52/score/index.json b/site/public/v1/smartphones/xperia-pro-5g-uw-2021-dual-sim-td-lte-jp-512gb-xq-aq52/score/index.json new file mode 100644 index 00000000000..4b100f7fa64 --- /dev/null +++ b/site/public/v1/smartphones/xperia-pro-5g-uw-2021-dual-sim-td-lte-jp-512gb-xq-aq52/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 6.0, + "camera": 5.1, + "battery": 16.1, + "display": 65.0, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-pro-5g-uw-2021-dual-sim-td-lte-us-512gb-xq-aq62/index.json b/site/public/v1/smartphones/xperia-pro-5g-uw-2021-dual-sim-td-lte-us-512gb-xq-aq62/index.json new file mode 100644 index 00000000000..51ef8460056 --- /dev/null +++ b/site/public/v1/smartphones/xperia-pro-5g-uw-2021-dual-sim-td-lte-us-512gb-xq-aq62/index.json @@ -0,0 +1,76 @@ +{ + "id": 4905, + "slug": "xperia-pro-5g-uw-2021-dual-sim-td-lte-us-512gb-xq-aq62", + "name": "Xperia Pro 5G UW 2021 Dual SIM TD-LTE US 512GB XQ-AQ62", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2021-02-24", + "msrp_usd": 2498, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 21.0, + "charging_wireless_w": null, + "weight_g": 225.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 6.0, + "camera": 5.1, + "battery": 16.1, + "display": 65.0, + "value": 11.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.825717", + "updated_at": "2026-06-19T00:43:44.825717" +} diff --git a/site/public/v1/smartphones/xperia-pro-5g-uw-2021-dual-sim-td-lte-us-512gb-xq-aq62/score/index.json b/site/public/v1/smartphones/xperia-pro-5g-uw-2021-dual-sim-td-lte-us-512gb-xq-aq62/score/index.json new file mode 100644 index 00000000000..9329ca89c57 --- /dev/null +++ b/site/public/v1/smartphones/xperia-pro-5g-uw-2021-dual-sim-td-lte-us-512gb-xq-aq62/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 6.0, + "camera": 5.1, + "battery": 16.1, + "display": 65.0, + "value": 11.6 +} diff --git a/site/public/v1/smartphones/xperia-pro-i-2021-5g-dual-sim-td-lte-apac-xq-be72/index.json b/site/public/v1/smartphones/xperia-pro-i-2021-5g-dual-sim-td-lte-apac-xq-be72/index.json new file mode 100644 index 00000000000..ac287800969 --- /dev/null +++ b/site/public/v1/smartphones/xperia-pro-i-2021-5g-dual-sim-td-lte-apac-xq-be72/index.json @@ -0,0 +1,77 @@ +{ + "id": 4906, + "slug": "xperia-pro-i-2021-5g-dual-sim-td-lte-apac-xq-be72", + "name": "Xperia Pro-I 2021 5G Dual SIM TD-LTE APAC XQ-BE72", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-12-17", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 211.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.6, + "performance": 9.4, + "camera": 5.1, + "battery": 35.4, + "display": 72.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.825717", + "updated_at": "2026-06-19T00:43:44.825717" +} diff --git a/site/public/v1/smartphones/xperia-pro-i-2021-5g-dual-sim-td-lte-apac-xq-be72/score/index.json b/site/public/v1/smartphones/xperia-pro-i-2021-5g-dual-sim-td-lte-apac-xq-be72/score/index.json new file mode 100644 index 00000000000..00e4f7027da --- /dev/null +++ b/site/public/v1/smartphones/xperia-pro-i-2021-5g-dual-sim-td-lte-apac-xq-be72/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.6, + "performance": 9.4, + "camera": 5.1, + "battery": 35.4, + "display": 72.5, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-pro-i-2021-5g-dual-sim-td-lte-emea-xq-be52/index.json b/site/public/v1/smartphones/xperia-pro-i-2021-5g-dual-sim-td-lte-emea-xq-be52/index.json new file mode 100644 index 00000000000..1c43ca0f9a2 --- /dev/null +++ b/site/public/v1/smartphones/xperia-pro-i-2021-5g-dual-sim-td-lte-emea-xq-be52/index.json @@ -0,0 +1,77 @@ +{ + "id": 4907, + "slug": "xperia-pro-i-2021-5g-dual-sim-td-lte-emea-xq-be52", + "name": "Xperia Pro-I 2021 5G Dual SIM TD-LTE EMEA XQ-BE52", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-12-01", + "msrp_usd": 1800, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 211.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.6, + "performance": 9.4, + "camera": 5.1, + "battery": 35.4, + "display": 72.5, + "value": 15.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.825717", + "updated_at": "2026-06-19T00:43:44.825717" +} diff --git a/site/public/v1/smartphones/xperia-pro-i-2021-5g-dual-sim-td-lte-emea-xq-be52/score/index.json b/site/public/v1/smartphones/xperia-pro-i-2021-5g-dual-sim-td-lte-emea-xq-be52/score/index.json new file mode 100644 index 00000000000..611bd5c6de8 --- /dev/null +++ b/site/public/v1/smartphones/xperia-pro-i-2021-5g-dual-sim-td-lte-emea-xq-be52/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.6, + "performance": 9.4, + "camera": 5.1, + "battery": 35.4, + "display": 72.5, + "value": 15.3 +} diff --git a/site/public/v1/smartphones/xperia-pro-i-2021-5g-dual-sim-td-lte-jp-xq-be42/index.json b/site/public/v1/smartphones/xperia-pro-i-2021-5g-dual-sim-td-lte-jp-xq-be42/index.json new file mode 100644 index 00000000000..e489b7e46f5 --- /dev/null +++ b/site/public/v1/smartphones/xperia-pro-i-2021-5g-dual-sim-td-lte-jp-xq-be42/index.json @@ -0,0 +1,77 @@ +{ + "id": 4908, + "slug": "xperia-pro-i-2021-5g-dual-sim-td-lte-jp-xq-be42", + "name": "Xperia Pro-I 2021 5G Dual SIM TD-LTE JP XQ-BE42", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-12-14", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 211.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.6, + "performance": 9.4, + "camera": 5.1, + "battery": 35.4, + "display": 72.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.827718", + "updated_at": "2026-06-19T00:43:44.827718" +} diff --git a/site/public/v1/smartphones/xperia-pro-i-2021-5g-dual-sim-td-lte-jp-xq-be42/score/index.json b/site/public/v1/smartphones/xperia-pro-i-2021-5g-dual-sim-td-lte-jp-xq-be42/score/index.json new file mode 100644 index 00000000000..00e4f7027da --- /dev/null +++ b/site/public/v1/smartphones/xperia-pro-i-2021-5g-dual-sim-td-lte-jp-xq-be42/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.6, + "performance": 9.4, + "camera": 5.1, + "battery": 35.4, + "display": 72.5, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-pro-i-2021-5g-dual-sim-td-lte-na-xq-be62/index.json b/site/public/v1/smartphones/xperia-pro-i-2021-5g-dual-sim-td-lte-na-xq-be62/index.json new file mode 100644 index 00000000000..339f35c88b0 --- /dev/null +++ b/site/public/v1/smartphones/xperia-pro-i-2021-5g-dual-sim-td-lte-na-xq-be62/index.json @@ -0,0 +1,77 @@ +{ + "id": 4909, + "slug": "xperia-pro-i-2021-5g-dual-sim-td-lte-na-xq-be62", + "name": "Xperia Pro-I 2021 5G Dual SIM TD-LTE NA XQ-BE62", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-12-11", + "msrp_usd": 1800, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.5, + "resolution": "1644x3840", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 643 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4500, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 211.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 30.6, + "performance": 9.4, + "camera": 5.1, + "battery": 35.4, + "display": 72.5, + "value": 15.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.827718", + "updated_at": "2026-06-19T00:43:44.827718" +} diff --git a/site/public/v1/smartphones/xperia-pro-i-2021-5g-dual-sim-td-lte-na-xq-be62/score/index.json b/site/public/v1/smartphones/xperia-pro-i-2021-5g-dual-sim-td-lte-na-xq-be62/score/index.json new file mode 100644 index 00000000000..611bd5c6de8 --- /dev/null +++ b/site/public/v1/smartphones/xperia-pro-i-2021-5g-dual-sim-td-lte-na-xq-be62/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 30.6, + "performance": 9.4, + "camera": 5.1, + "battery": 35.4, + "display": 72.5, + "value": 15.3 +} diff --git a/site/public/v1/smartphones/xperia-xa2-dual-sim-td-lte-emea-h4113/index.json b/site/public/v1/smartphones/xperia-xa2-dual-sim-td-lte-emea-h4113/index.json new file mode 100644 index 00000000000..70a01e7adff --- /dev/null +++ b/site/public/v1/smartphones/xperia-xa2-dual-sim-td-lte-emea-h4113/index.json @@ -0,0 +1,76 @@ +{ + "id": 4792, + "slug": "xperia-xa2-dual-sim-td-lte-emea-h4113", + "name": "Xperia XA2 Dual SIM TD-LTE EMEA H4113", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2018-02-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.2, + "resolution": "1080x1920", + "type": "Color TN-TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 22.9 + }, + { + "type": "selfie", + "mp": 7.7 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": 0.0, + "camera": 8.5, + "battery": 4.5, + "display": 47.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.812714", + "updated_at": "2026-06-19T00:43:44.812714" +} diff --git a/site/public/v1/smartphones/xperia-xa2-dual-sim-td-lte-emea-h4113/score/index.json b/site/public/v1/smartphones/xperia-xa2-dual-sim-td-lte-emea-h4113/score/index.json new file mode 100644 index 00000000000..f764298842e --- /dev/null +++ b/site/public/v1/smartphones/xperia-xa2-dual-sim-td-lte-emea-h4113/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": 0.0, + "camera": 8.5, + "battery": 4.5, + "display": 47.4, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-xa2-dual-sim-td-lte-h4133/index.json b/site/public/v1/smartphones/xperia-xa2-dual-sim-td-lte-h4133/index.json new file mode 100644 index 00000000000..49c2a6205bc --- /dev/null +++ b/site/public/v1/smartphones/xperia-xa2-dual-sim-td-lte-h4133/index.json @@ -0,0 +1,76 @@ +{ + "id": 4793, + "slug": "xperia-xa2-dual-sim-td-lte-h4133", + "name": "Xperia XA2 Dual SIM TD-LTE H4133", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2018-04-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.2, + "resolution": "1080x1920", + "type": "Color TN-TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 22.9 + }, + { + "type": "selfie", + "mp": 7.7 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": 0.0, + "camera": 8.5, + "battery": 4.5, + "display": 47.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.812714", + "updated_at": "2026-06-19T00:43:44.812714" +} diff --git a/site/public/v1/smartphones/xperia-xa2-dual-sim-td-lte-h4133/score/index.json b/site/public/v1/smartphones/xperia-xa2-dual-sim-td-lte-h4133/score/index.json new file mode 100644 index 00000000000..f764298842e --- /dev/null +++ b/site/public/v1/smartphones/xperia-xa2-dual-sim-td-lte-h4133/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": 0.0, + "camera": 8.5, + "battery": 4.5, + "display": 47.4, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-xa2-lte-a-na-h3123/index.json b/site/public/v1/smartphones/xperia-xa2-lte-a-na-h3123/index.json new file mode 100644 index 00000000000..7a158403684 --- /dev/null +++ b/site/public/v1/smartphones/xperia-xa2-lte-a-na-h3123/index.json @@ -0,0 +1,76 @@ +{ + "id": 4794, + "slug": "xperia-xa2-lte-a-na-h3123", + "name": "Xperia XA2 LTE-A NA H3123", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2018-02-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.2, + "resolution": "1080x1920", + "type": "Color TN-TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 22.9 + }, + { + "type": "selfie", + "mp": 7.7 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": 0.0, + "camera": 8.5, + "battery": 4.5, + "display": 47.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.812714", + "updated_at": "2026-06-19T00:43:44.812714" +} diff --git a/site/public/v1/smartphones/xperia-xa2-lte-a-na-h3123/score/index.json b/site/public/v1/smartphones/xperia-xa2-lte-a-na-h3123/score/index.json new file mode 100644 index 00000000000..f764298842e --- /dev/null +++ b/site/public/v1/smartphones/xperia-xa2-lte-a-na-h3123/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": 0.0, + "camera": 8.5, + "battery": 4.5, + "display": 47.4, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-xa2-plus-dual-sim-td-lte-64gb-apac-h4493/index.json b/site/public/v1/smartphones/xperia-xa2-plus-dual-sim-td-lte-64gb-apac-h4493/index.json new file mode 100644 index 00000000000..c1435f9d7b5 --- /dev/null +++ b/site/public/v1/smartphones/xperia-xa2-plus-dual-sim-td-lte-64gb-apac-h4493/index.json @@ -0,0 +1,76 @@ +{ + "id": 4795, + "slug": "xperia-xa2-plus-dual-sim-td-lte-64gb-apac-h4493", + "name": "Xperia XA2 Plus Dual SIM TD-LTE 64GB APAC H4493", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2018-08-22", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 22.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3580, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 204.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 1.5, + "camera": 8.5, + "battery": 9.3, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.812714", + "updated_at": "2026-06-19T00:43:44.812714" +} diff --git a/site/public/v1/smartphones/xperia-xa2-plus-dual-sim-td-lte-64gb-apac-h4493/score/index.json b/site/public/v1/smartphones/xperia-xa2-plus-dual-sim-td-lte-64gb-apac-h4493/score/index.json new file mode 100644 index 00000000000..430cee31bf1 --- /dev/null +++ b/site/public/v1/smartphones/xperia-xa2-plus-dual-sim-td-lte-64gb-apac-h4493/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.1, + "performance": 1.5, + "camera": 8.5, + "battery": 9.3, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-xa2-plus-global-dual-sim-td-lte-32gb-h4413/index.json b/site/public/v1/smartphones/xperia-xa2-plus-global-dual-sim-td-lte-32gb-h4413/index.json new file mode 100644 index 00000000000..7287762e58d --- /dev/null +++ b/site/public/v1/smartphones/xperia-xa2-plus-global-dual-sim-td-lte-32gb-h4413/index.json @@ -0,0 +1,76 @@ +{ + "id": 4796, + "slug": "xperia-xa2-plus-global-dual-sim-td-lte-32gb-h4413", + "name": "Xperia XA2 Plus Global Dual SIM TD-LTE 32GB H4413", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 22.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3580, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 204.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 0.0, + "camera": 8.5, + "battery": 9.3, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.812714", + "updated_at": "2026-06-19T00:43:44.812714" +} diff --git a/site/public/v1/smartphones/xperia-xa2-plus-global-dual-sim-td-lte-32gb-h4413/score/index.json b/site/public/v1/smartphones/xperia-xa2-plus-global-dual-sim-td-lte-32gb-h4413/score/index.json new file mode 100644 index 00000000000..2c07f7a6990 --- /dev/null +++ b/site/public/v1/smartphones/xperia-xa2-plus-global-dual-sim-td-lte-32gb-h4413/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 0.0, + "camera": 8.5, + "battery": 9.3, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-xa2-plus-global-td-lte-32gb-h3413/index.json b/site/public/v1/smartphones/xperia-xa2-plus-global-td-lte-32gb-h3413/index.json new file mode 100644 index 00000000000..da4aa49f7b7 --- /dev/null +++ b/site/public/v1/smartphones/xperia-xa2-plus-global-td-lte-32gb-h3413/index.json @@ -0,0 +1,76 @@ +{ + "id": 4797, + "slug": "xperia-xa2-plus-global-td-lte-32gb-h3413", + "name": "Xperia XA2 Plus Global TD-LTE 32GB H3413", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2018-08-22", + "msrp_usd": 239, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 22.9 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3580, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 204.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 0.0, + "camera": 8.5, + "battery": 9.3, + "display": 45.2, + "value": 57.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.812714", + "updated_at": "2026-06-19T00:43:44.812714" +} diff --git a/site/public/v1/smartphones/xperia-xa2-plus-global-td-lte-32gb-h3413/score/index.json b/site/public/v1/smartphones/xperia-xa2-plus-global-td-lte-32gb-h3413/score/index.json new file mode 100644 index 00000000000..949800dc975 --- /dev/null +++ b/site/public/v1/smartphones/xperia-xa2-plus-global-td-lte-32gb-h3413/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.8, + "performance": 0.0, + "camera": 8.5, + "battery": 9.3, + "display": 45.2, + "value": 57.9 +} diff --git a/site/public/v1/smartphones/xperia-xa2-td-lte-h3133/index.json b/site/public/v1/smartphones/xperia-xa2-td-lte-h3133/index.json new file mode 100644 index 00000000000..5d067255d04 --- /dev/null +++ b/site/public/v1/smartphones/xperia-xa2-td-lte-h3133/index.json @@ -0,0 +1,76 @@ +{ + "id": 4798, + "slug": "xperia-xa2-td-lte-h3133", + "name": "Xperia XA2 TD-LTE H3133", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.2, + "resolution": "1080x1920", + "type": "Color TN-TFT LCD display", + "ppi": 424 + }, + "cameras": [ + { + "type": "main", + "mp": 22.9 + }, + { + "type": "selfie", + "mp": 7.7 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 171.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": 0.0, + "camera": 8.5, + "battery": 4.5, + "display": 47.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.812714", + "updated_at": "2026-06-19T00:43:44.812714" +} diff --git a/site/public/v1/smartphones/xperia-xa2-td-lte-h3133/score/index.json b/site/public/v1/smartphones/xperia-xa2-td-lte-h3133/score/index.json new file mode 100644 index 00000000000..f764298842e --- /dev/null +++ b/site/public/v1/smartphones/xperia-xa2-td-lte-h3133/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.1, + "performance": 0.0, + "camera": 8.5, + "battery": 4.5, + "display": 47.4, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-xa2-ultra-lte-a-am-h3223/index.json b/site/public/v1/smartphones/xperia-xa2-ultra-lte-a-am-h3223/index.json new file mode 100644 index 00000000000..517a414dd4e --- /dev/null +++ b/site/public/v1/smartphones/xperia-xa2-ultra-lte-a-am-h3223/index.json @@ -0,0 +1,76 @@ +{ + "id": 4799, + "slug": "xperia-xa2-ultra-lte-a-am-h3223", + "name": "Xperia XA2 Ultra LTE-A AM H3223", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2018-02-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x1920", + "type": "Color TN-TFT LCD display", + "ppi": 367 + }, + "cameras": [ + { + "type": "main", + "mp": 22.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3580, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 221.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 8.5, + "battery": 8.7, + "display": 41.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.812714", + "updated_at": "2026-06-19T00:43:44.812714" +} diff --git a/site/public/v1/smartphones/xperia-xa2-ultra-lte-a-am-h3223/score/index.json b/site/public/v1/smartphones/xperia-xa2-ultra-lte-a-am-h3223/score/index.json new file mode 100644 index 00000000000..67fc7c4946c --- /dev/null +++ b/site/public/v1/smartphones/xperia-xa2-ultra-lte-a-am-h3223/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 8.5, + "battery": 8.7, + "display": 41.7, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-xa2-ultra-td-lte-emea-h3213-sm22/index.json b/site/public/v1/smartphones/xperia-xa2-ultra-td-lte-emea-h3213-sm22/index.json new file mode 100644 index 00000000000..d3cd208eb21 --- /dev/null +++ b/site/public/v1/smartphones/xperia-xa2-ultra-td-lte-emea-h3213-sm22/index.json @@ -0,0 +1,76 @@ +{ + "id": 4800, + "slug": "xperia-xa2-ultra-td-lte-emea-h3213-sm22", + "name": "Xperia XA2 Ultra TD-LTE EMEA H3213 / SM22", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2018-02-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.0, + "resolution": "1080x1920", + "type": "Color TN-TFT LCD display", + "ppi": 367 + }, + "cameras": [ + { + "type": "main", + "mp": 22.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3580, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 221.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 8.5, + "battery": 8.7, + "display": 41.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.812714", + "updated_at": "2026-06-19T00:43:44.812714" +} diff --git a/site/public/v1/smartphones/xperia-xa2-ultra-td-lte-emea-h3213-sm22/score/index.json b/site/public/v1/smartphones/xperia-xa2-ultra-td-lte-emea-h3213-sm22/score/index.json new file mode 100644 index 00000000000..67fc7c4946c --- /dev/null +++ b/site/public/v1/smartphones/xperia-xa2-ultra-td-lte-emea-h3213-sm22/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": 0.0, + "camera": 8.5, + "battery": 8.7, + "display": 41.7, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-xz2-compact-global-dual-sim-td-lte-h8324/index.json b/site/public/v1/smartphones/xperia-xz2-compact-global-dual-sim-td-lte-h8324/index.json new file mode 100644 index 00000000000..393ce43aee1 --- /dev/null +++ b/site/public/v1/smartphones/xperia-xz2-compact-global-dual-sim-td-lte-h8324/index.json @@ -0,0 +1,76 @@ +{ + "id": 4801, + "slug": "xperia-xz2-compact-global-dual-sim-td-lte-h8324", + "name": "Xperia XZ2 Compact Global Dual SIM TD-LTE H8324", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.96, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 487 + }, + "cameras": [ + { + "type": "main", + "mp": 19.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2870, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 0.0, + "camera": 7.3, + "battery": 0.0, + "display": 53.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.813713", + "updated_at": "2026-06-19T00:43:44.813713" +} diff --git a/site/public/v1/smartphones/xperia-xz2-compact-global-dual-sim-td-lte-h8324/score/index.json b/site/public/v1/smartphones/xperia-xz2-compact-global-dual-sim-td-lte-h8324/score/index.json new file mode 100644 index 00000000000..78d05e77376 --- /dev/null +++ b/site/public/v1/smartphones/xperia-xz2-compact-global-dual-sim-td-lte-h8324/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 0.0, + "camera": 7.3, + "battery": 0.0, + "display": 53.7, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-xz2-compact-global-td-lte-h8314-pf32/index.json b/site/public/v1/smartphones/xperia-xz2-compact-global-td-lte-h8314-pf32/index.json new file mode 100644 index 00000000000..c215b36adbd --- /dev/null +++ b/site/public/v1/smartphones/xperia-xz2-compact-global-td-lte-h8314-pf32/index.json @@ -0,0 +1,76 @@ +{ + "id": 4802, + "slug": "xperia-xz2-compact-global-td-lte-h8314-pf32", + "name": "Xperia XZ2 Compact Global TD-LTE H8314 / PF32", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-04-06", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.96, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 487 + }, + "cameras": [ + { + "type": "main", + "mp": 19.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2870, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 0.0, + "camera": 7.3, + "battery": 0.0, + "display": 53.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.813713", + "updated_at": "2026-06-19T00:43:44.813713" +} diff --git a/site/public/v1/smartphones/xperia-xz2-compact-global-td-lte-h8314-pf32/score/index.json b/site/public/v1/smartphones/xperia-xz2-compact-global-td-lte-h8314-pf32/score/index.json new file mode 100644 index 00000000000..78d05e77376 --- /dev/null +++ b/site/public/v1/smartphones/xperia-xz2-compact-global-td-lte-h8314-pf32/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 0.0, + "camera": 7.3, + "battery": 0.0, + "display": 53.7, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-xz2-compact-global-td-lte-so-05k/index.json b/site/public/v1/smartphones/xperia-xz2-compact-global-td-lte-so-05k/index.json new file mode 100644 index 00000000000..c42f68d5fa5 --- /dev/null +++ b/site/public/v1/smartphones/xperia-xz2-compact-global-td-lte-so-05k/index.json @@ -0,0 +1,76 @@ +{ + "id": 4803, + "slug": "xperia-xz2-compact-global-td-lte-so-05k", + "name": "Xperia XZ2 Compact Global TD-LTE SO-05K", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-06-14", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 4.96, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 487 + }, + "cameras": [ + { + "type": "main", + "mp": 19.2 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 2760, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 0.0, + "camera": 7.3, + "battery": 0.0, + "display": 53.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.813713", + "updated_at": "2026-06-19T00:43:44.813713" +} diff --git a/site/public/v1/smartphones/xperia-xz2-compact-global-td-lte-so-05k/score/index.json b/site/public/v1/smartphones/xperia-xz2-compact-global-td-lte-so-05k/score/index.json new file mode 100644 index 00000000000..78d05e77376 --- /dev/null +++ b/site/public/v1/smartphones/xperia-xz2-compact-global-td-lte-so-05k/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 0.0, + "camera": 7.3, + "battery": 0.0, + "display": 53.7, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-xz2-dual-sim-td-lte-h8296/index.json b/site/public/v1/smartphones/xperia-xz2-dual-sim-td-lte-h8296/index.json new file mode 100644 index 00000000000..28b5b768f71 --- /dev/null +++ b/site/public/v1/smartphones/xperia-xz2-dual-sim-td-lte-h8296/index.json @@ -0,0 +1,76 @@ +{ + "id": 4804, + "slug": "xperia-xz2-dual-sim-td-lte-h8296", + "name": "Xperia XZ2 Dual SIM TD-LTE H8296", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-03-21", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 19.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3180, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 1.5, + "camera": 7.3, + "battery": 2.7, + "display": 47.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.813713", + "updated_at": "2026-06-19T00:43:44.813713" +} diff --git a/site/public/v1/smartphones/xperia-xz2-dual-sim-td-lte-h8296/score/index.json b/site/public/v1/smartphones/xperia-xz2-dual-sim-td-lte-h8296/score/index.json new file mode 100644 index 00000000000..70d64f36a73 --- /dev/null +++ b/site/public/v1/smartphones/xperia-xz2-dual-sim-td-lte-h8296/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": 1.5, + "camera": 7.3, + "battery": 2.7, + "display": 47.6, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-xz2-premium-dual-sim-td-lte-h8166/index.json b/site/public/v1/smartphones/xperia-xz2-premium-dual-sim-td-lte-h8166/index.json new file mode 100644 index 00000000000..7df4d1470a5 --- /dev/null +++ b/site/public/v1/smartphones/xperia-xz2-premium-dual-sim-td-lte-h8166/index.json @@ -0,0 +1,76 @@ +{ + "id": 4805, + "slug": "xperia-xz2-premium-dual-sim-td-lte-h8166", + "name": "Xperia XZ2 Premium Dual SIM TD-LTE H8166", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.79, + "resolution": "2160x3840", + "type": "Color IPS TFT LCD display", + "ppi": 761 + }, + "cameras": [ + { + "type": "main", + "mp": 19.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3540, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 236.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 1.5, + "camera": 7.3, + "battery": 8.1, + "display": 65.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.813713", + "updated_at": "2026-06-19T00:43:44.813713" +} diff --git a/site/public/v1/smartphones/xperia-xz2-premium-dual-sim-td-lte-h8166/score/index.json b/site/public/v1/smartphones/xperia-xz2-premium-dual-sim-td-lte-h8166/score/index.json new file mode 100644 index 00000000000..3337024068a --- /dev/null +++ b/site/public/v1/smartphones/xperia-xz2-premium-dual-sim-td-lte-h8166/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 1.5, + "camera": 7.3, + "battery": 8.1, + "display": 65.0, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-xz2-premium-td-lte-h8116-pf12/index.json b/site/public/v1/smartphones/xperia-xz2-premium-td-lte-h8116-pf12/index.json new file mode 100644 index 00000000000..6da7f516d0f --- /dev/null +++ b/site/public/v1/smartphones/xperia-xz2-premium-td-lte-h8116-pf12/index.json @@ -0,0 +1,76 @@ +{ + "id": 4806, + "slug": "xperia-xz2-premium-td-lte-h8116-pf12", + "name": "Xperia XZ2 Premium TD-LTE H8116 / PF12", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.79, + "resolution": "2160x3840", + "type": "Color IPS TFT LCD display", + "ppi": 761 + }, + "cameras": [ + { + "type": "main", + "mp": 19.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3540, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 236.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 1.5, + "camera": 7.3, + "battery": 8.1, + "display": 65.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.813713", + "updated_at": "2026-06-19T00:43:44.813713" +} diff --git a/site/public/v1/smartphones/xperia-xz2-premium-td-lte-h8116-pf12/score/index.json b/site/public/v1/smartphones/xperia-xz2-premium-td-lte-h8116-pf12/score/index.json new file mode 100644 index 00000000000..3337024068a --- /dev/null +++ b/site/public/v1/smartphones/xperia-xz2-premium-td-lte-h8116-pf12/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 1.5, + "camera": 7.3, + "battery": 8.1, + "display": 65.0, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-xz2-premium-wimax-2-sov38/index.json b/site/public/v1/smartphones/xperia-xz2-premium-wimax-2-sov38/index.json new file mode 100644 index 00000000000..88c2bfb7b55 --- /dev/null +++ b/site/public/v1/smartphones/xperia-xz2-premium-wimax-2-sov38/index.json @@ -0,0 +1,76 @@ +{ + "id": 4807, + "slug": "xperia-xz2-premium-wimax-2-sov38", + "name": "Xperia XZ2 Premium WiMAX 2+ SOV38", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.79, + "resolution": "2160x3840", + "type": "Color IPS TFT LCD display", + "ppi": 761 + }, + "cameras": [ + { + "type": "main", + "mp": 19.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3540, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 236.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 1.5, + "camera": 7.3, + "battery": 8.1, + "display": 65.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.813713", + "updated_at": "2026-06-19T00:43:44.813713" +} diff --git a/site/public/v1/smartphones/xperia-xz2-premium-wimax-2-sov38/score/index.json b/site/public/v1/smartphones/xperia-xz2-premium-wimax-2-sov38/score/index.json new file mode 100644 index 00000000000..3337024068a --- /dev/null +++ b/site/public/v1/smartphones/xperia-xz2-premium-wimax-2-sov38/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 1.5, + "camera": 7.3, + "battery": 8.1, + "display": 65.0, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-xz2-td-lte-h8216-pf22/index.json b/site/public/v1/smartphones/xperia-xz2-td-lte-h8216-pf22/index.json new file mode 100644 index 00000000000..0a0a2c58c1a --- /dev/null +++ b/site/public/v1/smartphones/xperia-xz2-td-lte-h8216-pf22/index.json @@ -0,0 +1,76 @@ +{ + "id": 4808, + "slug": "xperia-xz2-td-lte-h8216-pf22", + "name": "Xperia XZ2 TD-LTE H8216 / PF22", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-04-06", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 19.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3180, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 0.0, + "camera": 7.3, + "battery": 2.7, + "display": 47.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.813713", + "updated_at": "2026-06-19T00:43:44.813713" +} diff --git a/site/public/v1/smartphones/xperia-xz2-td-lte-h8216-pf22/score/index.json b/site/public/v1/smartphones/xperia-xz2-td-lte-h8216-pf22/score/index.json new file mode 100644 index 00000000000..77a783cd617 --- /dev/null +++ b/site/public/v1/smartphones/xperia-xz2-td-lte-h8216-pf22/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 0.0, + "camera": 7.3, + "battery": 2.7, + "display": 47.6, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-xz2-td-lte-jp-702so/index.json b/site/public/v1/smartphones/xperia-xz2-td-lte-jp-702so/index.json new file mode 100644 index 00000000000..124e6bdb9ba --- /dev/null +++ b/site/public/v1/smartphones/xperia-xz2-td-lte-jp-702so/index.json @@ -0,0 +1,76 @@ +{ + "id": 4809, + "slug": "xperia-xz2-td-lte-jp-702so", + "name": "Xperia XZ2 TD-LTE JP 702SO", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-05-29", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 19.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3060, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.0, + "performance": 0.0, + "camera": 7.3, + "battery": 0.9, + "display": 47.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.814718", + "updated_at": "2026-06-19T00:43:44.814718" +} diff --git a/site/public/v1/smartphones/xperia-xz2-td-lte-jp-702so/score/index.json b/site/public/v1/smartphones/xperia-xz2-td-lte-jp-702so/score/index.json new file mode 100644 index 00000000000..dffd175bb4c --- /dev/null +++ b/site/public/v1/smartphones/xperia-xz2-td-lte-jp-702so/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.0, + "performance": 0.0, + "camera": 7.3, + "battery": 0.9, + "display": 47.6, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-xz2-td-lte-jp-so-03k/index.json b/site/public/v1/smartphones/xperia-xz2-td-lte-jp-so-03k/index.json new file mode 100644 index 00000000000..7281f90160b --- /dev/null +++ b/site/public/v1/smartphones/xperia-xz2-td-lte-jp-so-03k/index.json @@ -0,0 +1,76 @@ +{ + "id": 4810, + "slug": "xperia-xz2-td-lte-jp-so-03k", + "name": "Xperia XZ2 TD-LTE JP SO-03K", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-05-31", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 19.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3060, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.0, + "performance": 0.0, + "camera": 7.3, + "battery": 0.9, + "display": 47.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.814718", + "updated_at": "2026-06-19T00:43:44.814718" +} diff --git a/site/public/v1/smartphones/xperia-xz2-td-lte-jp-so-03k/score/index.json b/site/public/v1/smartphones/xperia-xz2-td-lte-jp-so-03k/score/index.json new file mode 100644 index 00000000000..dffd175bb4c --- /dev/null +++ b/site/public/v1/smartphones/xperia-xz2-td-lte-jp-so-03k/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.0, + "performance": 0.0, + "camera": 7.3, + "battery": 0.9, + "display": 47.6, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-xz2-wimax-2-sov37/index.json b/site/public/v1/smartphones/xperia-xz2-wimax-2-sov37/index.json new file mode 100644 index 00000000000..0801e88e67d --- /dev/null +++ b/site/public/v1/smartphones/xperia-xz2-wimax-2-sov37/index.json @@ -0,0 +1,76 @@ +{ + "id": 4811, + "slug": "xperia-xz2-wimax-2-sov37", + "name": "Xperia XZ2 WiMAX 2+ SOV37", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-05-31", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.67, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 426 + }, + "cameras": [ + { + "type": "main", + "mp": 19.2 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3060, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 198.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.0, + "performance": 0.0, + "camera": 7.3, + "battery": 0.9, + "display": 47.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.814718", + "updated_at": "2026-06-19T00:43:44.814718" +} diff --git a/site/public/v1/smartphones/xperia-xz2-wimax-2-sov37/score/index.json b/site/public/v1/smartphones/xperia-xz2-wimax-2-sov37/score/index.json new file mode 100644 index 00000000000..dffd175bb4c --- /dev/null +++ b/site/public/v1/smartphones/xperia-xz2-wimax-2-sov37/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.0, + "performance": 0.0, + "camera": 7.3, + "battery": 0.9, + "display": 47.6, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-xz3-dual-sim-td-lte-apac-h9493/index.json b/site/public/v1/smartphones/xperia-xz3-dual-sim-td-lte-apac-h9493/index.json new file mode 100644 index 00000000000..b773e084fca --- /dev/null +++ b/site/public/v1/smartphones/xperia-xz3-dual-sim-td-lte-apac-h9493/index.json @@ -0,0 +1,76 @@ +{ + "id": 4812, + "slug": "xperia-xz3-dual-sim-td-lte-apac-h9493", + "name": "Xperia XZ3 Dual SIM TD-LTE APAC H9493", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-10-04", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.98, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 19.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3330, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 1.5, + "camera": 7.3, + "battery": 5.0, + "display": 58.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.814718", + "updated_at": "2026-06-19T00:43:44.814718" +} diff --git a/site/public/v1/smartphones/xperia-xz3-dual-sim-td-lte-apac-h9493/score/index.json b/site/public/v1/smartphones/xperia-xz3-dual-sim-td-lte-apac-h9493/score/index.json new file mode 100644 index 00000000000..f04a676128b --- /dev/null +++ b/site/public/v1/smartphones/xperia-xz3-dual-sim-td-lte-apac-h9493/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.1, + "performance": 1.5, + "camera": 7.3, + "battery": 5.0, + "display": 58.8, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-xz3-dual-sim-td-lte-emea-h9436/index.json b/site/public/v1/smartphones/xperia-xz3-dual-sim-td-lte-emea-h9436/index.json new file mode 100644 index 00000000000..4a1e3cc97df --- /dev/null +++ b/site/public/v1/smartphones/xperia-xz3-dual-sim-td-lte-emea-h9436/index.json @@ -0,0 +1,76 @@ +{ + "id": 4813, + "slug": "xperia-xz3-dual-sim-td-lte-emea-h9436", + "name": "Xperia XZ3 Dual SIM TD-LTE EMEA H9436", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-10-04", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.98, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 19.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3330, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 7.3, + "battery": 5.0, + "display": 58.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.814718", + "updated_at": "2026-06-19T00:43:44.814718" +} diff --git a/site/public/v1/smartphones/xperia-xz3-dual-sim-td-lte-emea-h9436/score/index.json b/site/public/v1/smartphones/xperia-xz3-dual-sim-td-lte-emea-h9436/score/index.json new file mode 100644 index 00000000000..9880ad78b5c --- /dev/null +++ b/site/public/v1/smartphones/xperia-xz3-dual-sim-td-lte-emea-h9436/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 7.3, + "battery": 5.0, + "display": 58.8, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-xz3-global-td-lte-h8416-pf42/index.json b/site/public/v1/smartphones/xperia-xz3-global-td-lte-h8416-pf42/index.json new file mode 100644 index 00000000000..f9607b29244 --- /dev/null +++ b/site/public/v1/smartphones/xperia-xz3-global-td-lte-h8416-pf42/index.json @@ -0,0 +1,76 @@ +{ + "id": 4814, + "slug": "xperia-xz3-global-td-lte-h8416-pf42", + "name": "Xperia XZ3 Global TD-LTE H8416 / PF42", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-10-04", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.98, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 19.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3330, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 7.3, + "battery": 5.0, + "display": 58.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.814718", + "updated_at": "2026-06-19T00:43:44.814718" +} diff --git a/site/public/v1/smartphones/xperia-xz3-global-td-lte-h8416-pf42/score/index.json b/site/public/v1/smartphones/xperia-xz3-global-td-lte-h8416-pf42/score/index.json new file mode 100644 index 00000000000..9880ad78b5c --- /dev/null +++ b/site/public/v1/smartphones/xperia-xz3-global-td-lte-h8416-pf42/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 7.3, + "battery": 5.0, + "display": 58.8, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-xz3-td-lte-jp-801so/index.json b/site/public/v1/smartphones/xperia-xz3-td-lte-jp-801so/index.json new file mode 100644 index 00000000000..964ddbc5004 --- /dev/null +++ b/site/public/v1/smartphones/xperia-xz3-td-lte-jp-801so/index.json @@ -0,0 +1,76 @@ +{ + "id": 4815, + "slug": "xperia-xz3-td-lte-jp-801so", + "name": "Xperia XZ3 TD-LTE JP 801SO", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-11-09", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.98, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 19.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3330, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 7.3, + "battery": 5.0, + "display": 58.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.814718", + "updated_at": "2026-06-19T00:43:44.814718" +} diff --git a/site/public/v1/smartphones/xperia-xz3-td-lte-jp-801so/score/index.json b/site/public/v1/smartphones/xperia-xz3-td-lte-jp-801so/score/index.json new file mode 100644 index 00000000000..9880ad78b5c --- /dev/null +++ b/site/public/v1/smartphones/xperia-xz3-td-lte-jp-801so/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 7.3, + "battery": 5.0, + "display": 58.8, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-xz3-td-lte-jp-so-01l/index.json b/site/public/v1/smartphones/xperia-xz3-td-lte-jp-so-01l/index.json new file mode 100644 index 00000000000..45178308db8 --- /dev/null +++ b/site/public/v1/smartphones/xperia-xz3-td-lte-jp-so-01l/index.json @@ -0,0 +1,76 @@ +{ + "id": 4816, + "slug": "xperia-xz3-td-lte-jp-so-01l", + "name": "Xperia XZ3 TD-LTE JP SO-01L", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.98, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 19.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3330, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 7.3, + "battery": 5.0, + "display": 58.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.815718", + "updated_at": "2026-06-19T00:43:44.815718" +} diff --git a/site/public/v1/smartphones/xperia-xz3-td-lte-jp-so-01l/score/index.json b/site/public/v1/smartphones/xperia-xz3-td-lte-jp-so-01l/score/index.json new file mode 100644 index 00000000000..9880ad78b5c --- /dev/null +++ b/site/public/v1/smartphones/xperia-xz3-td-lte-jp-so-01l/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 7.3, + "battery": 5.0, + "display": 58.8, + "value": null +} diff --git a/site/public/v1/smartphones/xperia-xz3-wimax-2-jp-sov39/index.json b/site/public/v1/smartphones/xperia-xz3-wimax-2-jp-sov39/index.json new file mode 100644 index 00000000000..6b2db303bc1 --- /dev/null +++ b/site/public/v1/smartphones/xperia-xz3-wimax-2-jp-sov39/index.json @@ -0,0 +1,76 @@ +{ + "id": 4817, + "slug": "xperia-xz3-wimax-2-jp-sov39", + "name": "Xperia XZ3 WiMAX 2+ JP SOV39", + "brand": { + "id": 76, + "slug": "sony", + "name": "Sony", + "country": "JP", + "url": "/v1/brands/sony" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-11-09", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.98, + "resolution": "1440x2880", + "type": "AM-OLED display", + "ppi": 538 + }, + "cameras": [ + { + "type": "main", + "mp": 19.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3330, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 193.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 7.3, + "battery": 5.0, + "display": 58.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.815718", + "updated_at": "2026-06-19T00:43:44.815718" +} diff --git a/site/public/v1/smartphones/xperia-xz3-wimax-2-jp-sov39/score/index.json b/site/public/v1/smartphones/xperia-xz3-wimax-2-jp-sov39/score/index.json new file mode 100644 index 00000000000..9880ad78b5c --- /dev/null +++ b/site/public/v1/smartphones/xperia-xz3-wimax-2-jp-sov39/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 17.8, + "performance": 0.0, + "camera": 7.3, + "battery": 5.0, + "display": 58.8, + "value": null +} diff --git a/site/public/v1/smartphones/y-max-dual-sim-td-lte-apac-ars-lx2-honor-8x-max-ars-l22/index.json b/site/public/v1/smartphones/y-max-dual-sim-td-lte-apac-ars-lx2-honor-8x-max-ars-l22/index.json new file mode 100644 index 00000000000..1a750f11c08 --- /dev/null +++ b/site/public/v1/smartphones/y-max-dual-sim-td-lte-apac-ars-lx2-honor-8x-max-ars-l22/index.json @@ -0,0 +1,76 @@ +{ + "id": 939, + "slug": "y-max-dual-sim-td-lte-apac-ars-lx2-honor-8x-max-ars-l22", + "name": "Y Max Dual SIM TD-LTE APAC ARS-LX2 / Honor 8X Max ARS-L22", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 7.12, + "resolution": "1080x2244", + "type": "Color IPS TFT LCD display", + "ppi": 350 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 18.0, + "camera": 6.3, + "battery": 30.0, + "display": 40.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.237464", + "updated_at": "2026-06-19T00:43:44.237464" +} diff --git a/site/public/v1/smartphones/y-max-dual-sim-td-lte-apac-ars-lx2-honor-8x-max-ars-l22/score/index.json b/site/public/v1/smartphones/y-max-dual-sim-td-lte-apac-ars-lx2-honor-8x-max-ars-l22/score/index.json new file mode 100644 index 00000000000..bc3fae48d29 --- /dev/null +++ b/site/public/v1/smartphones/y-max-dual-sim-td-lte-apac-ars-lx2-honor-8x-max-ars-l22/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.6, + "performance": 18.0, + "camera": 6.3, + "battery": 30.0, + "display": 40.0, + "value": null +} diff --git a/site/public/v1/smartphones/y5-2019-dual-sim-lte-a-emea-32gb-amn-lx9-amn-l29/index.json b/site/public/v1/smartphones/y5-2019-dual-sim-lte-a-emea-32gb-amn-lx9-amn-l29/index.json new file mode 100644 index 00000000000..fa2a67507ca --- /dev/null +++ b/site/public/v1/smartphones/y5-2019-dual-sim-lte-a-emea-32gb-amn-lx9-amn-l29/index.json @@ -0,0 +1,76 @@ +{ + "id": 1097, + "slug": "y5-2019-dual-sim-lte-a-emea-32gb-amn-lx9-amn-l29", + "name": "Y5 2019 Dual SIM LTE-A EMEA 32GB AMN-LX9 / AMN-L29", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3020, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": null, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.262104", + "updated_at": "2026-06-19T00:43:44.262104" +} diff --git a/site/public/v1/smartphones/y5-2019-dual-sim-lte-a-emea-32gb-amn-lx9-amn-l29/score/index.json b/site/public/v1/smartphones/y5-2019-dual-sim-lte-a-emea-32gb-amn-lx9-amn-l29/score/index.json new file mode 100644 index 00000000000..124cad705d7 --- /dev/null +++ b/site/public/v1/smartphones/y5-2019-dual-sim-lte-a-emea-32gb-amn-lx9-amn-l29/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": null, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/y5-2019-dual-sim-lte-a-emea-amn-lx1-amn-l21/index.json b/site/public/v1/smartphones/y5-2019-dual-sim-lte-a-emea-amn-lx1-amn-l21/index.json new file mode 100644 index 00000000000..ebb93d7e793 --- /dev/null +++ b/site/public/v1/smartphones/y5-2019-dual-sim-lte-a-emea-amn-lx1-amn-l21/index.json @@ -0,0 +1,76 @@ +{ + "id": 1098, + "slug": "y5-2019-dual-sim-lte-a-emea-amn-lx1-amn-l21", + "name": "Y5 2019 Dual SIM LTE-A EMEA AMN-LX1 / AMN-L21", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.71, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3020, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": null, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.262104", + "updated_at": "2026-06-19T00:43:44.262104" +} diff --git a/site/public/v1/smartphones/y5-2019-dual-sim-lte-a-emea-amn-lx1-amn-l21/score/index.json b/site/public/v1/smartphones/y5-2019-dual-sim-lte-a-emea-amn-lx1-amn-l21/score/index.json new file mode 100644 index 00000000000..124cad705d7 --- /dev/null +++ b/site/public/v1/smartphones/y5-2019-dual-sim-lte-a-emea-amn-lx1-amn-l21/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": null, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/y5p-2020-global-dual-sim-td-lte-32gb-dra-lx9-dra-l29-dua-l29a/index.json b/site/public/v1/smartphones/y5p-2020-global-dual-sim-td-lte-32gb-dra-lx9-dra-l29-dua-l29a/index.json new file mode 100644 index 00000000000..96d2babc474 --- /dev/null +++ b/site/public/v1/smartphones/y5p-2020-global-dual-sim-td-lte-32gb-dra-lx9-dra-l29-dua-l29a/index.json @@ -0,0 +1,76 @@ +{ + "id": 1216, + "slug": "y5p-2020-global-dual-sim-td-lte-32gb-dra-lx9-dra-l29-dua-l29a", + "name": "Y5p 2020 Global Dual SIM TD-LTE 32GB DRA-LX9 / DRA-L29 / DUA-L29A", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-05-01", + "msrp_usd": 85, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3020, + "charging_wired_w": 5.0, + "charging_wireless_w": null, + "weight_g": 144.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.0, + "battery": 0.3, + "display": 35.0, + "value": 56.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.276606", + "updated_at": "2026-06-19T00:43:44.276606" +} diff --git a/site/public/v1/smartphones/y5p-2020-global-dual-sim-td-lte-32gb-dra-lx9-dra-l29-dua-l29a/score/index.json b/site/public/v1/smartphones/y5p-2020-global-dual-sim-td-lte-32gb-dra-lx9-dra-l29-dua-l29a/score/index.json new file mode 100644 index 00000000000..e829a1f5e52 --- /dev/null +++ b/site/public/v1/smartphones/y5p-2020-global-dual-sim-td-lte-32gb-dra-lx9-dra-l29-dua-l29a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.0, + "battery": 0.3, + "display": 35.0, + "value": 56.7 +} diff --git a/site/public/v1/smartphones/y6-2018-dual-sim-lte-apac-atu-lx2-atu-l22/index.json b/site/public/v1/smartphones/y6-2018-dual-sim-lte-apac-atu-lx2-atu-l22/index.json new file mode 100644 index 00000000000..e0c59cf19c6 --- /dev/null +++ b/site/public/v1/smartphones/y6-2018-dual-sim-lte-apac-atu-lx2-atu-l22/index.json @@ -0,0 +1,76 @@ +{ + "id": 940, + "slug": "y6-2018-dual-sim-lte-apac-atu-lx2-atu-l22", + "name": "Y6 2018 Dual SIM LTE APAC ATU-LX2 / ATU-L22", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.237464", + "updated_at": "2026-06-19T00:43:44.237464" +} diff --git a/site/public/v1/smartphones/y6-2018-dual-sim-lte-apac-atu-lx2-atu-l22/score/index.json b/site/public/v1/smartphones/y6-2018-dual-sim-lte-apac-atu-lx2-atu-l22/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/y6-2018-dual-sim-lte-apac-atu-lx2-atu-l22/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/y6-2018-dual-sim-lte-emea-atu-lx1-atu-l21/index.json b/site/public/v1/smartphones/y6-2018-dual-sim-lte-emea-atu-lx1-atu-l21/index.json new file mode 100644 index 00000000000..2950d911cec --- /dev/null +++ b/site/public/v1/smartphones/y6-2018-dual-sim-lte-emea-atu-lx1-atu-l21/index.json @@ -0,0 +1,76 @@ +{ + "id": 941, + "slug": "y6-2018-dual-sim-lte-emea-atu-lx1-atu-l21", + "name": "Y6 2018 Dual SIM LTE EMEA ATU-LX1 / ATU-L21", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.237464", + "updated_at": "2026-06-19T00:43:44.237464" +} diff --git a/site/public/v1/smartphones/y6-2018-dual-sim-lte-emea-atu-lx1-atu-l21/score/index.json b/site/public/v1/smartphones/y6-2018-dual-sim-lte-emea-atu-lx1-atu-l21/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/y6-2018-dual-sim-lte-emea-atu-lx1-atu-l21/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/y6-2018-dual-sim-lte-latam-atu-lx3-atu-l23/index.json b/site/public/v1/smartphones/y6-2018-dual-sim-lte-latam-atu-lx3-atu-l23/index.json new file mode 100644 index 00000000000..54d345cd6bc --- /dev/null +++ b/site/public/v1/smartphones/y6-2018-dual-sim-lte-latam-atu-lx3-atu-l23/index.json @@ -0,0 +1,76 @@ +{ + "id": 942, + "slug": "y6-2018-dual-sim-lte-latam-atu-lx3-atu-l23", + "name": "Y6 2018 Dual SIM LTE LATAM ATU-LX3 / ATU-L23", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.237464", + "updated_at": "2026-06-19T00:43:44.237464" +} diff --git a/site/public/v1/smartphones/y6-2018-dual-sim-lte-latam-atu-lx3-atu-l23/score/index.json b/site/public/v1/smartphones/y6-2018-dual-sim-lte-latam-atu-lx3-atu-l23/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/y6-2018-dual-sim-lte-latam-atu-lx3-atu-l23/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/y6-2018-lte-emea-atu-l11/index.json b/site/public/v1/smartphones/y6-2018-lte-emea-atu-l11/index.json new file mode 100644 index 00000000000..7a1c6944be7 --- /dev/null +++ b/site/public/v1/smartphones/y6-2018-lte-emea-atu-l11/index.json @@ -0,0 +1,76 @@ +{ + "id": 943, + "slug": "y6-2018-lte-emea-atu-l11", + "name": "Y6 2018 LTE EMEA ATU-L11", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.238469", + "updated_at": "2026-06-19T00:43:44.238469" +} diff --git a/site/public/v1/smartphones/y6-2018-lte-emea-atu-l11/score/index.json b/site/public/v1/smartphones/y6-2018-lte-emea-atu-l11/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/y6-2018-lte-emea-atu-l11/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/y6-2019-dual-sim-lte-latam-mrd-lx3-mrd-l23/index.json b/site/public/v1/smartphones/y6-2019-dual-sim-lte-latam-mrd-lx3-mrd-l23/index.json new file mode 100644 index 00000000000..949159b4e39 --- /dev/null +++ b/site/public/v1/smartphones/y6-2019-dual-sim-lte-latam-mrd-lx3-mrd-l23/index.json @@ -0,0 +1,76 @@ +{ + "id": 1100, + "slug": "y6-2019-dual-sim-lte-latam-mrd-lx3-mrd-l23", + "name": "Y6 2019 Dual SIM LTE LATAM MRD-LX3 / MRD-L23", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-03-07", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3020, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": null, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.262104", + "updated_at": "2026-06-19T00:43:44.262104" +} diff --git a/site/public/v1/smartphones/y6-2019-dual-sim-lte-latam-mrd-lx3-mrd-l23/score/index.json b/site/public/v1/smartphones/y6-2019-dual-sim-lte-latam-mrd-lx3-mrd-l23/score/index.json new file mode 100644 index 00000000000..124cad705d7 --- /dev/null +++ b/site/public/v1/smartphones/y6-2019-dual-sim-lte-latam-mrd-lx3-mrd-l23/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": null, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/y6-2019-dual-sim-td-lte-emea-mrd-lx1-mrd-l21-mrd-l21a/index.json b/site/public/v1/smartphones/y6-2019-dual-sim-td-lte-emea-mrd-lx1-mrd-l21-mrd-l21a/index.json new file mode 100644 index 00000000000..f3b4e80e3cf --- /dev/null +++ b/site/public/v1/smartphones/y6-2019-dual-sim-td-lte-emea-mrd-lx1-mrd-l21-mrd-l21a/index.json @@ -0,0 +1,76 @@ +{ + "id": 1101, + "slug": "y6-2019-dual-sim-td-lte-emea-mrd-lx1-mrd-l21-mrd-l21a", + "name": "Y6 2019 Dual SIM TD-LTE EMEA MRD-LX1 / MRD-L21 / MRD-L21A", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-03-01", + "msrp_usd": 132, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3020, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": null, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": 56.8 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.262104", + "updated_at": "2026-06-19T00:43:44.262104" +} diff --git a/site/public/v1/smartphones/y6-2019-dual-sim-td-lte-emea-mrd-lx1-mrd-l21-mrd-l21a/score/index.json b/site/public/v1/smartphones/y6-2019-dual-sim-td-lte-emea-mrd-lx1-mrd-l21-mrd-l21a/score/index.json new file mode 100644 index 00000000000..f38a395c7ff --- /dev/null +++ b/site/public/v1/smartphones/y6-2019-dual-sim-td-lte-emea-mrd-lx1-mrd-l21-mrd-l21a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": null, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": 56.8 +} diff --git a/site/public/v1/smartphones/y6-2019-lte-latam-mrd-lx3/index.json b/site/public/v1/smartphones/y6-2019-lte-latam-mrd-lx3/index.json new file mode 100644 index 00000000000..1daca8f6b14 --- /dev/null +++ b/site/public/v1/smartphones/y6-2019-lte-latam-mrd-lx3/index.json @@ -0,0 +1,76 @@ +{ + "id": 1102, + "slug": "y6-2019-lte-latam-mrd-lx3", + "name": "Y6 2019 LTE LATAM MRD-LX3", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-03-07", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3020, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": null, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.262104", + "updated_at": "2026-06-19T00:43:44.262104" +} diff --git a/site/public/v1/smartphones/y6-2019-lte-latam-mrd-lx3/score/index.json b/site/public/v1/smartphones/y6-2019-lte-latam-mrd-lx3/score/index.json new file mode 100644 index 00000000000..124cad705d7 --- /dev/null +++ b/site/public/v1/smartphones/y6-2019-lte-latam-mrd-lx3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": null, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/y6-prime-2018-dual-sim-lte-emea-atu-l31/index.json b/site/public/v1/smartphones/y6-prime-2018-dual-sim-lte-emea-atu-l31/index.json new file mode 100644 index 00000000000..3dc4fd64267 --- /dev/null +++ b/site/public/v1/smartphones/y6-prime-2018-dual-sim-lte-emea-atu-l31/index.json @@ -0,0 +1,76 @@ +{ + "id": 944, + "slug": "y6-prime-2018-dual-sim-lte-emea-atu-l31", + "name": "Y6 Prime 2018 Dual SIM LTE EMEA ATU-L31", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.238469", + "updated_at": "2026-06-19T00:43:44.238469" +} diff --git a/site/public/v1/smartphones/y6-prime-2018-dual-sim-lte-emea-atu-l31/score/index.json b/site/public/v1/smartphones/y6-prime-2018-dual-sim-lte-emea-atu-l31/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/y6-prime-2018-dual-sim-lte-emea-atu-l31/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/y6-prime-2018-dual-sim-td-lte-apac-atu-l42/index.json b/site/public/v1/smartphones/y6-prime-2018-dual-sim-td-lte-apac-atu-l42/index.json new file mode 100644 index 00000000000..0b627a28249 --- /dev/null +++ b/site/public/v1/smartphones/y6-prime-2018-dual-sim-td-lte-apac-atu-l42/index.json @@ -0,0 +1,76 @@ +{ + "id": 945, + "slug": "y6-prime-2018-dual-sim-td-lte-apac-atu-l42", + "name": "Y6 Prime 2018 Dual SIM TD-LTE APAC ATU-L42", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.67, + "resolution": "720x1440", + "type": "Color TN-TFT LCD display", + "ppi": 284 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.238469", + "updated_at": "2026-06-19T00:43:44.238469" +} diff --git a/site/public/v1/smartphones/y6-prime-2018-dual-sim-td-lte-apac-atu-l42/score/index.json b/site/public/v1/smartphones/y6-prime-2018-dual-sim-td-lte-apac-atu-l42/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/y6-prime-2018-dual-sim-td-lte-apac-atu-l42/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/y6-prime-2019-dual-sim-td-lte-emea-64gb-mrd-lx1f/index.json b/site/public/v1/smartphones/y6-prime-2019-dual-sim-td-lte-emea-64gb-mrd-lx1f/index.json new file mode 100644 index 00000000000..377d337db36 --- /dev/null +++ b/site/public/v1/smartphones/y6-prime-2019-dual-sim-td-lte-emea-64gb-mrd-lx1f/index.json @@ -0,0 +1,76 @@ +{ + "id": 1105, + "slug": "y6-prime-2019-dual-sim-td-lte-emea-64gb-mrd-lx1f", + "name": "Y6 Prime 2019 Dual SIM TD-LTE EMEA 64GB MRD-LX1F", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3020, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Yes", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": null, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.263097", + "updated_at": "2026-06-19T00:43:44.263097" +} diff --git a/site/public/v1/smartphones/y6-prime-2019-dual-sim-td-lte-emea-64gb-mrd-lx1f/score/index.json b/site/public/v1/smartphones/y6-prime-2019-dual-sim-td-lte-emea-64gb-mrd-lx1f/score/index.json new file mode 100644 index 00000000000..124cad705d7 --- /dev/null +++ b/site/public/v1/smartphones/y6-prime-2019-dual-sim-td-lte-emea-64gb-mrd-lx1f/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": null, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/y6-pro-2019-dual-sim-td-lte-apac-mrd-lx2-mrd-l22/index.json b/site/public/v1/smartphones/y6-pro-2019-dual-sim-td-lte-apac-mrd-lx2-mrd-l22/index.json new file mode 100644 index 00000000000..a2c22861a73 --- /dev/null +++ b/site/public/v1/smartphones/y6-pro-2019-dual-sim-td-lte-apac-mrd-lx2-mrd-l22/index.json @@ -0,0 +1,76 @@ +{ + "id": 1107, + "slug": "y6-pro-2019-dual-sim-td-lte-apac-mrd-lx2-mrd-l22", + "name": "Y6 Pro 2019 Dual SIM TD-LTE APAC MRD-LX2 / MRD-L22", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-02-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3020, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": null, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.263097", + "updated_at": "2026-06-19T00:43:44.263097" +} diff --git a/site/public/v1/smartphones/y6-pro-2019-dual-sim-td-lte-apac-mrd-lx2-mrd-l22/score/index.json b/site/public/v1/smartphones/y6-pro-2019-dual-sim-td-lte-apac-mrd-lx2-mrd-l22/score/index.json new file mode 100644 index 00000000000..124cad705d7 --- /dev/null +++ b/site/public/v1/smartphones/y6-pro-2019-dual-sim-td-lte-apac-mrd-lx2-mrd-l22/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.5, + "performance": null, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/y66/index.json b/site/public/v1/smartphones/y66/index.json new file mode 100644 index 00000000000..9653e774241 --- /dev/null +++ b/site/public/v1/smartphones/y66/index.json @@ -0,0 +1,70 @@ +{ + "id": 5046, + "slug": "y66", + "name": "Y66", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2017-01-01", + "msrp_usd": 179, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.5 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 155.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 2.6, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": null, + "value": 51.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.845781", + "updated_at": "2026-06-19T00:43:44.845781" +} diff --git a/site/public/v1/smartphones/y66/score/index.json b/site/public/v1/smartphones/y66/score/index.json new file mode 100644 index 00000000000..1278e9f5065 --- /dev/null +++ b/site/public/v1/smartphones/y66/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 2.6, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": null, + "value": 51.3 +} diff --git a/site/public/v1/smartphones/y6p-2020-global-dual-sim-td-lte-64gb-med-lx9-med-l29/index.json b/site/public/v1/smartphones/y6p-2020-global-dual-sim-td-lte-64gb-med-lx9-med-l29/index.json new file mode 100644 index 00000000000..3ea3d88bdef --- /dev/null +++ b/site/public/v1/smartphones/y6p-2020-global-dual-sim-td-lte-64gb-med-lx9-med-l29/index.json @@ -0,0 +1,76 @@ +{ + "id": 1218, + "slug": "y6p-2020-global-dual-sim-td-lte-64gb-med-lx9-med-l29", + "name": "Y6p 2020 Global Dual SIM TD-LTE 64GB MED-LX9 / MED-L29", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-05-01", + "msrp_usd": 133, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 279 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 61.7 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.277605", + "updated_at": "2026-06-19T00:43:44.277605" +} diff --git a/site/public/v1/smartphones/y6p-2020-global-dual-sim-td-lte-64gb-med-lx9-med-l29/score/index.json b/site/public/v1/smartphones/y6p-2020-global-dual-sim-td-lte-64gb-med-lx9-med-l29/score/index.json new file mode 100644 index 00000000000..f30fbd0b4af --- /dev/null +++ b/site/public/v1/smartphones/y6p-2020-global-dual-sim-td-lte-64gb-med-lx9-med-l29/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": 61.7 +} diff --git a/site/public/v1/smartphones/y6p-2020-global-dual-sim-td-lte-64gb-med-lx9n-med-l29n/index.json b/site/public/v1/smartphones/y6p-2020-global-dual-sim-td-lte-64gb-med-lx9n-med-l29n/index.json new file mode 100644 index 00000000000..8c288c4c549 --- /dev/null +++ b/site/public/v1/smartphones/y6p-2020-global-dual-sim-td-lte-64gb-med-lx9n-med-l29n/index.json @@ -0,0 +1,76 @@ +{ + "id": 1219, + "slug": "y6p-2020-global-dual-sim-td-lte-64gb-med-lx9n-med-l29n", + "name": "Y6p 2020 Global Dual SIM TD-LTE 64GB MED-LX9N / MED-L29N", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "720x1600", + "type": "Color IPS TFT LCD display", + "ppi": 279 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.277605", + "updated_at": "2026-06-19T00:43:44.277605" +} diff --git a/site/public/v1/smartphones/y6p-2020-global-dual-sim-td-lte-64gb-med-lx9n-med-l29n/score/index.json b/site/public/v1/smartphones/y6p-2020-global-dual-sim-td-lte-64gb-med-lx9n-med-l29n/score/index.json new file mode 100644 index 00000000000..d19ba3069c5 --- /dev/null +++ b/site/public/v1/smartphones/y6p-2020-global-dual-sim-td-lte-64gb-med-lx9n-med-l29n/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.4, + "performance": null, + "camera": 5.3, + "battery": 30.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/y6s-2019-dual-sim-lte-emea-32gb-jat-l41-honor-8a-pro/index.json b/site/public/v1/smartphones/y6s-2019-dual-sim-lte-emea-32gb-jat-l41-honor-8a-pro/index.json new file mode 100644 index 00000000000..3c2a5042217 --- /dev/null +++ b/site/public/v1/smartphones/y6s-2019-dual-sim-lte-emea-32gb-jat-l41-honor-8a-pro/index.json @@ -0,0 +1,76 @@ +{ + "id": 1109, + "slug": "y6s-2019-dual-sim-lte-emea-32gb-jat-l41-honor-8a-pro", + "name": "Y6s 2019 Dual SIM LTE EMEA 32GB JAT-L41 / Honor 8A Pro", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3020, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.2, + "performance": 0.0, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.263097", + "updated_at": "2026-06-19T00:43:44.263097" +} diff --git a/site/public/v1/smartphones/y6s-2019-dual-sim-lte-emea-32gb-jat-l41-honor-8a-pro/score/index.json b/site/public/v1/smartphones/y6s-2019-dual-sim-lte-emea-32gb-jat-l41-honor-8a-pro/score/index.json new file mode 100644 index 00000000000..83f9924d81f --- /dev/null +++ b/site/public/v1/smartphones/y6s-2019-dual-sim-lte-emea-32gb-jat-l41-honor-8a-pro/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.2, + "performance": 0.0, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/y6s-2019-dual-sim-lte-emea-64gb-jat-l21-honor-8a-prime-jat-lx1/index.json b/site/public/v1/smartphones/y6s-2019-dual-sim-lte-emea-64gb-jat-l21-honor-8a-prime-jat-lx1/index.json new file mode 100644 index 00000000000..d9708979d88 --- /dev/null +++ b/site/public/v1/smartphones/y6s-2019-dual-sim-lte-emea-64gb-jat-l21-honor-8a-prime-jat-lx1/index.json @@ -0,0 +1,76 @@ +{ + "id": 1110, + "slug": "y6s-2019-dual-sim-lte-emea-64gb-jat-l21-honor-8a-prime-jat-lx1", + "name": "Y6s 2019 Dual SIM LTE EMEA 64GB JAT-L21 / Honor 8A Prime JAT-LX1", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3020, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.2, + "performance": 0.0, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.263097", + "updated_at": "2026-06-19T00:43:44.263097" +} diff --git a/site/public/v1/smartphones/y6s-2019-dual-sim-lte-emea-64gb-jat-l21-honor-8a-prime-jat-lx1/score/index.json b/site/public/v1/smartphones/y6s-2019-dual-sim-lte-emea-64gb-jat-l21-honor-8a-prime-jat-lx1/score/index.json new file mode 100644 index 00000000000..83f9924d81f --- /dev/null +++ b/site/public/v1/smartphones/y6s-2019-dual-sim-lte-emea-64gb-jat-l21-honor-8a-prime-jat-lx1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.2, + "performance": 0.0, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/y6s-2019-dual-sim-td-lte-latam-64gb-jat-lx3-jat-l23/index.json b/site/public/v1/smartphones/y6s-2019-dual-sim-td-lte-latam-64gb-jat-lx3-jat-l23/index.json new file mode 100644 index 00000000000..b782b0e7fd2 --- /dev/null +++ b/site/public/v1/smartphones/y6s-2019-dual-sim-td-lte-latam-64gb-jat-lx3-jat-l23/index.json @@ -0,0 +1,76 @@ +{ + "id": 1221, + "slug": "y6s-2019-dual-sim-td-lte-latam-64gb-jat-lx3-jat-l23", + "name": "Y6s 2019 Dual SIM TD-LTE LATAM 64GB JAT-LX3 / JAT-L23", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2020-01-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3020, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.2, + "performance": 0.0, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.277605", + "updated_at": "2026-06-19T00:43:44.277605" +} diff --git a/site/public/v1/smartphones/y6s-2019-dual-sim-td-lte-latam-64gb-jat-lx3-jat-l23/score/index.json b/site/public/v1/smartphones/y6s-2019-dual-sim-td-lte-latam-64gb-jat-lx3-jat-l23/score/index.json new file mode 100644 index 00000000000..83f9924d81f --- /dev/null +++ b/site/public/v1/smartphones/y6s-2019-dual-sim-td-lte-latam-64gb-jat-lx3-jat-l23/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.2, + "performance": 0.0, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/y6s-2019-global-dual-sim-td-lte-64gb-jat-l29/index.json b/site/public/v1/smartphones/y6s-2019-global-dual-sim-td-lte-64gb-jat-l29/index.json new file mode 100644 index 00000000000..7647abd52c9 --- /dev/null +++ b/site/public/v1/smartphones/y6s-2019-global-dual-sim-td-lte-64gb-jat-l29/index.json @@ -0,0 +1,76 @@ +{ + "id": 1111, + "slug": "y6s-2019-global-dual-sim-td-lte-64gb-jat-l29", + "name": "Y6s 2019 Global Dual SIM TD-LTE 64GB JAT-L29", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 43, + "slug": "helio-p35", + "name": "Helio P35", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p35" + }, + "release_date": "2019-12-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3020, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 10.2, + "performance": 0.0, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.264097", + "updated_at": "2026-06-19T00:43:44.264097" +} diff --git a/site/public/v1/smartphones/y6s-2019-global-dual-sim-td-lte-64gb-jat-l29/score/index.json b/site/public/v1/smartphones/y6s-2019-global-dual-sim-td-lte-64gb-jat-l29/score/index.json new file mode 100644 index 00000000000..83f9924d81f --- /dev/null +++ b/site/public/v1/smartphones/y6s-2019-global-dual-sim-td-lte-64gb-jat-l29/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 10.2, + "performance": 0.0, + "camera": 5.3, + "battery": 0.3, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/y7-2018-dual-sim-lte-latam-ldn-lx3-ldn-l23/index.json b/site/public/v1/smartphones/y7-2018-dual-sim-lte-latam-ldn-lx3-ldn-l23/index.json new file mode 100644 index 00000000000..3d385244eef --- /dev/null +++ b/site/public/v1/smartphones/y7-2018-dual-sim-lte-latam-ldn-lx3-ldn-l23/index.json @@ -0,0 +1,76 @@ +{ + "id": 946, + "slug": "y7-2018-dual-sim-lte-latam-ldn-lx3-ldn-l23", + "name": "Y7 2018 Dual SIM LTE LATAM LDN-LX3 / LDN-L23", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-04-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 155.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.238469", + "updated_at": "2026-06-19T00:43:44.238469" +} diff --git a/site/public/v1/smartphones/y7-2018-dual-sim-lte-latam-ldn-lx3-ldn-l23/score/index.json b/site/public/v1/smartphones/y7-2018-dual-sim-lte-latam-ldn-lx3-ldn-l23/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/y7-2018-dual-sim-lte-latam-ldn-lx3-ldn-l23/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/y7-2018-lte-emea-ldn-l01/index.json b/site/public/v1/smartphones/y7-2018-lte-emea-ldn-l01/index.json new file mode 100644 index 00000000000..e35786b7c11 --- /dev/null +++ b/site/public/v1/smartphones/y7-2018-lte-emea-ldn-l01/index.json @@ -0,0 +1,76 @@ +{ + "id": 947, + "slug": "y7-2018-lte-emea-ldn-l01", + "name": "Y7 2018 LTE EMEA LDN-L01", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 155.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.238469", + "updated_at": "2026-06-19T00:43:44.238469" +} diff --git a/site/public/v1/smartphones/y7-2018-lte-emea-ldn-l01/score/index.json b/site/public/v1/smartphones/y7-2018-lte-emea-ldn-l01/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/y7-2018-lte-emea-ldn-l01/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/y7-2019-dual-sim-lte-a-emea-dub-lx1-y7-prime-2019-dub-l21/index.json b/site/public/v1/smartphones/y7-2019-dual-sim-lte-a-emea-dub-lx1-y7-prime-2019-dub-l21/index.json new file mode 100644 index 00000000000..10fb1c05462 --- /dev/null +++ b/site/public/v1/smartphones/y7-2019-dual-sim-lte-a-emea-dub-lx1-y7-prime-2019-dub-l21/index.json @@ -0,0 +1,76 @@ +{ + "id": 1113, + "slug": "y7-2019-dual-sim-lte-a-emea-dub-lx1-y7-prime-2019-dub-l21", + "name": "Y7 2019 Dual SIM LTE-A EMEA DUB-LX1 / Y7 Prime 2019 DUB-L21", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.264097", + "updated_at": "2026-06-19T00:43:44.264097" +} diff --git a/site/public/v1/smartphones/y7-2019-dual-sim-lte-a-emea-dub-lx1-y7-prime-2019-dub-l21/score/index.json b/site/public/v1/smartphones/y7-2019-dual-sim-lte-a-emea-dub-lx1-y7-prime-2019-dub-l21/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/y7-2019-dual-sim-lte-a-emea-dub-lx1-y7-prime-2019-dub-l21/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/y7-2019-dual-sim-lte-a-latam-dub-lx3-dub-l23/index.json b/site/public/v1/smartphones/y7-2019-dual-sim-lte-a-latam-dub-lx3-dub-l23/index.json new file mode 100644 index 00000000000..e44729da986 --- /dev/null +++ b/site/public/v1/smartphones/y7-2019-dual-sim-lte-a-latam-dub-lx3-dub-l23/index.json @@ -0,0 +1,76 @@ +{ + "id": 1114, + "slug": "y7-2019-dual-sim-lte-a-latam-dub-lx3-dub-l23", + "name": "Y7 2019 Dual SIM LTE-A LATAM DUB-LX3 / DUB-L23", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.264097", + "updated_at": "2026-06-19T00:43:44.264097" +} diff --git a/site/public/v1/smartphones/y7-2019-dual-sim-lte-a-latam-dub-lx3-dub-l23/score/index.json b/site/public/v1/smartphones/y7-2019-dual-sim-lte-a-latam-dub-lx3-dub-l23/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/y7-2019-dual-sim-lte-a-latam-dub-lx3-dub-l23/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/y7-prime-2018-dual-sim-lte-emea-ldn-lx1-ldn-l21/index.json b/site/public/v1/smartphones/y7-prime-2018-dual-sim-lte-emea-ldn-lx1-ldn-l21/index.json new file mode 100644 index 00000000000..9cad5569da0 --- /dev/null +++ b/site/public/v1/smartphones/y7-prime-2018-dual-sim-lte-emea-ldn-lx1-ldn-l21/index.json @@ -0,0 +1,76 @@ +{ + "id": 948, + "slug": "y7-prime-2018-dual-sim-lte-emea-ldn-lx1-ldn-l21", + "name": "Y7 Prime 2018 Dual SIM LTE EMEA LDN-LX1 / LDN-L21", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 155.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.238469", + "updated_at": "2026-06-19T00:43:44.238469" +} diff --git a/site/public/v1/smartphones/y7-prime-2018-dual-sim-lte-emea-ldn-lx1-ldn-l21/score/index.json b/site/public/v1/smartphones/y7-prime-2018-dual-sim-lte-emea-ldn-lx1-ldn-l21/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/y7-prime-2018-dual-sim-lte-emea-ldn-lx1-ldn-l21/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/y7-pro-2019-dual-sim-td-lte-apac-dub-lx2-dub-l22/index.json b/site/public/v1/smartphones/y7-pro-2019-dual-sim-td-lte-apac-dub-lx2-dub-l22/index.json new file mode 100644 index 00000000000..5db2493ca56 --- /dev/null +++ b/site/public/v1/smartphones/y7-pro-2019-dual-sim-td-lte-apac-dub-lx2-dub-l22/index.json @@ -0,0 +1,76 @@ +{ + "id": 1115, + "slug": "y7-pro-2019-dual-sim-td-lte-apac-dub-lx2-dub-l22", + "name": "Y7 Pro 2019 Dual SIM TD-LTE APAC DUB-LX2 / DUB-L22", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 118, + "slug": "snapdragon-450", + "name": "Snapdragon 450", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Qualcomm Adreno 506", + "url": "/v1/socs/snapdragon-450" + }, + "release_date": "2019-01-06", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.264097", + "updated_at": "2026-06-19T00:43:44.264097" +} diff --git a/site/public/v1/smartphones/y7-pro-2019-dual-sim-td-lte-apac-dub-lx2-dub-l22/score/index.json b/site/public/v1/smartphones/y7-pro-2019-dual-sim-td-lte-apac-dub-lx2-dub-l22/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/y7-pro-2019-dual-sim-td-lte-apac-dub-lx2-dub-l22/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/y7a-2021-dual-sim-lte-a-latam-64gb-ppa-lx3b-ppa-l23b/index.json b/site/public/v1/smartphones/y7a-2021-dual-sim-lte-a-latam-64gb-ppa-lx3b-ppa-l23b/index.json new file mode 100644 index 00000000000..b5f60e76189 --- /dev/null +++ b/site/public/v1/smartphones/y7a-2021-dual-sim-lte-a-latam-64gb-ppa-lx3b-ppa-l23b/index.json @@ -0,0 +1,76 @@ +{ + "id": 1222, + "slug": "y7a-2021-dual-sim-lte-a-latam-64gb-ppa-lx3b-ppa-l23b", + "name": "Y7a 2021 Dual SIM LTE-A LATAM 64GB PPA-LX3B / PPA-L23B", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 33, + "slug": "kirin-710a", + "name": "Kirin 710A", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51", + "url": "/v1/socs/kirin-710a" + }, + "release_date": "2020-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 0.0, + "camera": 16.5, + "battery": 31.4, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.277605", + "updated_at": "2026-06-19T00:43:44.277605" +} diff --git a/site/public/v1/smartphones/y7a-2021-dual-sim-lte-a-latam-64gb-ppa-lx3b-ppa-l23b/score/index.json b/site/public/v1/smartphones/y7a-2021-dual-sim-lte-a-latam-64gb-ppa-lx3b-ppa-l23b/score/index.json new file mode 100644 index 00000000000..6584fa20502 --- /dev/null +++ b/site/public/v1/smartphones/y7a-2021-dual-sim-lte-a-latam-64gb-ppa-lx3b-ppa-l23b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 0.0, + "camera": 16.5, + "battery": 31.4, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/y7a-2021-dual-sim-td-lte-emea-128gb-ppa-lx2b-ppa-l22b/index.json b/site/public/v1/smartphones/y7a-2021-dual-sim-td-lte-emea-128gb-ppa-lx2b-ppa-l22b/index.json new file mode 100644 index 00000000000..7d2ae626987 --- /dev/null +++ b/site/public/v1/smartphones/y7a-2021-dual-sim-td-lte-emea-128gb-ppa-lx2b-ppa-l22b/index.json @@ -0,0 +1,76 @@ +{ + "id": 1223, + "slug": "y7a-2021-dual-sim-td-lte-emea-128gb-ppa-lx2b-ppa-l22b", + "name": "Y7a 2021 Dual SIM TD-LTE EMEA 128GB PPA-LX2B / PPA-L22B", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 33, + "slug": "kirin-710a", + "name": "Kirin 710A", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51", + "url": "/v1/socs/kirin-710a" + }, + "release_date": "2020-10-31", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 0.0, + "camera": 16.5, + "battery": 31.4, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.277605", + "updated_at": "2026-06-19T00:43:44.277605" +} diff --git a/site/public/v1/smartphones/y7a-2021-dual-sim-td-lte-emea-128gb-ppa-lx2b-ppa-l22b/score/index.json b/site/public/v1/smartphones/y7a-2021-dual-sim-td-lte-emea-128gb-ppa-lx2b-ppa-l22b/score/index.json new file mode 100644 index 00000000000..6584fa20502 --- /dev/null +++ b/site/public/v1/smartphones/y7a-2021-dual-sim-td-lte-emea-128gb-ppa-lx2b-ppa-l22b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 0.0, + "camera": 16.5, + "battery": 31.4, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/y7a-2021-lte-a-latam-64gb-ppa-l03b/index.json b/site/public/v1/smartphones/y7a-2021-lte-a-latam-64gb-ppa-l03b/index.json new file mode 100644 index 00000000000..108d95398a5 --- /dev/null +++ b/site/public/v1/smartphones/y7a-2021-lte-a-latam-64gb-ppa-l03b/index.json @@ -0,0 +1,76 @@ +{ + "id": 1224, + "slug": "y7a-2021-lte-a-latam-64gb-ppa-l03b", + "name": "Y7a 2021 LTE-A LATAM 64GB PPA-L03B", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 33, + "slug": "kirin-710a", + "name": "Kirin 710A", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51", + "url": "/v1/socs/kirin-710a" + }, + "release_date": "2020-11-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 0.0, + "camera": 16.5, + "battery": 31.4, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.277605", + "updated_at": "2026-06-19T00:43:44.277605" +} diff --git a/site/public/v1/smartphones/y7a-2021-lte-a-latam-64gb-ppa-l03b/score/index.json b/site/public/v1/smartphones/y7a-2021-lte-a-latam-64gb-ppa-l03b/score/index.json new file mode 100644 index 00000000000..6584fa20502 --- /dev/null +++ b/site/public/v1/smartphones/y7a-2021-lte-a-latam-64gb-ppa-l03b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 0.0, + "camera": 16.5, + "battery": 31.4, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/y7a-2021-td-lte-emea-128gb-ppa-l02b/index.json b/site/public/v1/smartphones/y7a-2021-td-lte-emea-128gb-ppa-l02b/index.json new file mode 100644 index 00000000000..97cab3f3b4c --- /dev/null +++ b/site/public/v1/smartphones/y7a-2021-td-lte-emea-128gb-ppa-l02b/index.json @@ -0,0 +1,76 @@ +{ + "id": 1225, + "slug": "y7a-2021-td-lte-emea-128gb-ppa-l02b", + "name": "Y7a 2021 TD-LTE EMEA 128GB PPA-L02B", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 33, + "slug": "kirin-710a", + "name": "Kirin 710A", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51", + "url": "/v1/socs/kirin-710a" + }, + "release_date": "2020-10-31", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "type": "Color IPS TFT LCD display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 22.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 0.0, + "camera": 16.5, + "battery": 31.4, + "display": 44.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.277605", + "updated_at": "2026-06-19T00:43:44.277605" +} diff --git a/site/public/v1/smartphones/y7a-2021-td-lte-emea-128gb-ppa-l02b/score/index.json b/site/public/v1/smartphones/y7a-2021-td-lte-emea-128gb-ppa-l02b/score/index.json new file mode 100644 index 00000000000..6584fa20502 --- /dev/null +++ b/site/public/v1/smartphones/y7a-2021-td-lte-emea-128gb-ppa-l02b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.1, + "performance": 0.0, + "camera": 16.5, + "battery": 31.4, + "display": 44.5, + "value": null +} diff --git a/site/public/v1/smartphones/y7p-2020-dual-sim-td-lte-apac-latam-64gb-art-l28/index.json b/site/public/v1/smartphones/y7p-2020-dual-sim-td-lte-apac-latam-64gb-art-l28/index.json new file mode 100644 index 00000000000..a2dcdcea97b --- /dev/null +++ b/site/public/v1/smartphones/y7p-2020-dual-sim-td-lte-apac-latam-64gb-art-l28/index.json @@ -0,0 +1,76 @@ +{ + "id": 1226, + "slug": "y7p-2020-dual-sim-td-lte-apac-latam-64gb-art-l28", + "name": "Y7p 2020 Dual SIM TD-LTE APAC LATAM 64GB ART-L28", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2020-02-21", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 176.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.277605", + "updated_at": "2026-06-19T00:43:44.277605" +} diff --git a/site/public/v1/smartphones/y7p-2020-dual-sim-td-lte-apac-latam-64gb-art-l28/score/index.json b/site/public/v1/smartphones/y7p-2020-dual-sim-td-lte-apac-latam-64gb-art-l28/score/index.json new file mode 100644 index 00000000000..6de7755463e --- /dev/null +++ b/site/public/v1/smartphones/y7p-2020-dual-sim-td-lte-apac-latam-64gb-art-l28/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.6, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/y81/index.json b/site/public/v1/smartphones/y81/index.json new file mode 100644 index 00000000000..f38c8d0fd7c --- /dev/null +++ b/site/public/v1/smartphones/y81/index.json @@ -0,0 +1,70 @@ +{ + "id": 5151, + "slug": "y81", + "name": "Y81", + "brand": { + "id": 44, + "slug": "vivo", + "name": "vivo", + "country": "CN", + "url": "/v1/brands/vivo" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-01-01", + "msrp_usd": 149, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 5.0 + } + ], + "battery_mah": 3260, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 146.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": null, + "connectivity": {}, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 4.6, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": null, + "value": 52.3 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/abdulmalik1518/mobiles-dataset-2025" + ], + "created_at": "2026-06-19T00:43:44.858786", + "updated_at": "2026-06-19T00:43:44.858786" +} diff --git a/site/public/v1/smartphones/y81/score/index.json b/site/public/v1/smartphones/y81/score/index.json new file mode 100644 index 00000000000..08910fef25a --- /dev/null +++ b/site/public/v1/smartphones/y81/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 4.6, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": null, + "value": 52.3 +} diff --git a/site/public/v1/smartphones/y8p-2020-premium-edition-global-dual-sim-td-lte-128gb-aqm-l21a-p-smart-s-aqm-lx1/index.json b/site/public/v1/smartphones/y8p-2020-premium-edition-global-dual-sim-td-lte-128gb-aqm-l21a-p-smart-s-aqm-lx1/index.json new file mode 100644 index 00000000000..38b88acbeae --- /dev/null +++ b/site/public/v1/smartphones/y8p-2020-premium-edition-global-dual-sim-td-lte-128gb-aqm-l21a-p-smart-s-aqm-lx1/index.json @@ -0,0 +1,77 @@ +{ + "id": 1227, + "slug": "y8p-2020-premium-edition-global-dual-sim-td-lte-128gb-aqm-l21a-p-smart-s-aqm-lx1", + "name": "Y8p 2020 Premium Edition Global Dual SIM TD-LTE 128GB AQM-L21A / P Smart S AQM-LX1", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2020-06-08", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 418 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 29.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.278606", + "updated_at": "2026-06-19T00:43:44.278606" +} diff --git a/site/public/v1/smartphones/y8p-2020-premium-edition-global-dual-sim-td-lte-128gb-aqm-l21a-p-smart-s-aqm-lx1/score/index.json b/site/public/v1/smartphones/y8p-2020-premium-edition-global-dual-sim-td-lte-128gb-aqm-l21a-p-smart-s-aqm-lx1/score/index.json new file mode 100644 index 00000000000..d974997da23 --- /dev/null +++ b/site/public/v1/smartphones/y8p-2020-premium-edition-global-dual-sim-td-lte-128gb-aqm-l21a-p-smart-s-aqm-lx1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 29.3, + "value": null +} diff --git a/site/public/v1/smartphones/y8p-2020-premium-edition-global-dual-sim-td-lte-128gb-aqm-lx1-aqm-l21/index.json b/site/public/v1/smartphones/y8p-2020-premium-edition-global-dual-sim-td-lte-128gb-aqm-lx1-aqm-l21/index.json new file mode 100644 index 00000000000..129696973c9 --- /dev/null +++ b/site/public/v1/smartphones/y8p-2020-premium-edition-global-dual-sim-td-lte-128gb-aqm-lx1-aqm-l21/index.json @@ -0,0 +1,77 @@ +{ + "id": 1228, + "slug": "y8p-2020-premium-edition-global-dual-sim-td-lte-128gb-aqm-lx1-aqm-l21", + "name": "Y8p 2020 Premium Edition Global Dual SIM TD-LTE 128GB AQM-LX1 / AQM-L21", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2020-05-28", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 418 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 29.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.278606", + "updated_at": "2026-06-19T00:43:44.278606" +} diff --git a/site/public/v1/smartphones/y8p-2020-premium-edition-global-dual-sim-td-lte-128gb-aqm-lx1-aqm-l21/score/index.json b/site/public/v1/smartphones/y8p-2020-premium-edition-global-dual-sim-td-lte-128gb-aqm-lx1-aqm-l21/score/index.json new file mode 100644 index 00000000000..d974997da23 --- /dev/null +++ b/site/public/v1/smartphones/y8p-2020-premium-edition-global-dual-sim-td-lte-128gb-aqm-lx1-aqm-l21/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.6, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 29.3, + "value": null +} diff --git a/site/public/v1/smartphones/y8p-2020-standard-edition-global-dual-sim-td-lte-128gb-aqm-l21a-p-smart-s-aqm-lx1/index.json b/site/public/v1/smartphones/y8p-2020-standard-edition-global-dual-sim-td-lte-128gb-aqm-l21a-p-smart-s-aqm-lx1/index.json new file mode 100644 index 00000000000..352392d2494 --- /dev/null +++ b/site/public/v1/smartphones/y8p-2020-standard-edition-global-dual-sim-td-lte-128gb-aqm-l21a-p-smart-s-aqm-lx1/index.json @@ -0,0 +1,77 @@ +{ + "id": 1229, + "slug": "y8p-2020-standard-edition-global-dual-sim-td-lte-128gb-aqm-l21a-p-smart-s-aqm-lx1", + "name": "Y8p 2020 Standard Edition Global Dual SIM TD-LTE 128GB AQM-L21A / P Smart S AQM-LX1", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2020-06-08", + "msrp_usd": 260, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 418 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 29.3, + "value": 57.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.278606", + "updated_at": "2026-06-19T00:43:44.278606" +} diff --git a/site/public/v1/smartphones/y8p-2020-standard-edition-global-dual-sim-td-lte-128gb-aqm-l21a-p-smart-s-aqm-lx1/score/index.json b/site/public/v1/smartphones/y8p-2020-standard-edition-global-dual-sim-td-lte-128gb-aqm-l21a-p-smart-s-aqm-lx1/score/index.json new file mode 100644 index 00000000000..2dba88fae9b --- /dev/null +++ b/site/public/v1/smartphones/y8p-2020-standard-edition-global-dual-sim-td-lte-128gb-aqm-l21a-p-smart-s-aqm-lx1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 29.3, + "value": 57.6 +} diff --git a/site/public/v1/smartphones/y8p-2020-standard-edition-global-dual-sim-td-lte-128gb-aqm-lx1-aqm-l21/index.json b/site/public/v1/smartphones/y8p-2020-standard-edition-global-dual-sim-td-lte-128gb-aqm-lx1-aqm-l21/index.json new file mode 100644 index 00000000000..f90108838e0 --- /dev/null +++ b/site/public/v1/smartphones/y8p-2020-standard-edition-global-dual-sim-td-lte-128gb-aqm-lx1-aqm-l21/index.json @@ -0,0 +1,77 @@ +{ + "id": 1230, + "slug": "y8p-2020-standard-edition-global-dual-sim-td-lte-128gb-aqm-lx1-aqm-l21", + "name": "Y8p 2020 Standard Edition Global Dual SIM TD-LTE 128GB AQM-LX1 / AQM-L21", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2020-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 418 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 29.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.278606", + "updated_at": "2026-06-19T00:43:44.278606" +} diff --git a/site/public/v1/smartphones/y8p-2020-standard-edition-global-dual-sim-td-lte-128gb-aqm-lx1-aqm-l21/score/index.json b/site/public/v1/smartphones/y8p-2020-standard-edition-global-dual-sim-td-lte-128gb-aqm-lx1-aqm-l21/score/index.json new file mode 100644 index 00000000000..c6836ee29b1 --- /dev/null +++ b/site/public/v1/smartphones/y8p-2020-standard-edition-global-dual-sim-td-lte-128gb-aqm-lx1-aqm-l21/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 29.3, + "value": null +} diff --git a/site/public/v1/smartphones/y8p-2020-standard-edition-global-td-lte-128gb-aqm-l01a/index.json b/site/public/v1/smartphones/y8p-2020-standard-edition-global-td-lte-128gb-aqm-l01a/index.json new file mode 100644 index 00000000000..dbfa5823bab --- /dev/null +++ b/site/public/v1/smartphones/y8p-2020-standard-edition-global-td-lte-128gb-aqm-l01a/index.json @@ -0,0 +1,77 @@ +{ + "id": 1231, + "slug": "y8p-2020-standard-edition-global-td-lte-128gb-aqm-l01a", + "name": "Y8p 2020 Standard Edition Global TD-LTE 128GB AQM-L01A", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2020-05-28", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2400", + "refresh_hz": 60, + "type": "AM-OLED display", + "ppi": 418 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 163.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 29.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.278606", + "updated_at": "2026-06-19T00:43:44.278606" +} diff --git a/site/public/v1/smartphones/y8p-2020-standard-edition-global-td-lte-128gb-aqm-l01a/score/index.json b/site/public/v1/smartphones/y8p-2020-standard-edition-global-td-lte-128gb-aqm-l01a/score/index.json new file mode 100644 index 00000000000..c6836ee29b1 --- /dev/null +++ b/site/public/v1/smartphones/y8p-2020-standard-edition-global-td-lte-128gb-aqm-l01a/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 29.3, + "value": null +} diff --git a/site/public/v1/smartphones/y8s-2020-dual-sim-lte-a-apac-128gb-jkm-lx2/index.json b/site/public/v1/smartphones/y8s-2020-dual-sim-lte-a-apac-128gb-jkm-lx2/index.json new file mode 100644 index 00000000000..9522f22bbb4 --- /dev/null +++ b/site/public/v1/smartphones/y8s-2020-dual-sim-lte-a-apac-128gb-jkm-lx2/index.json @@ -0,0 +1,76 @@ +{ + "id": 1232, + "slug": "y8s-2020-dual-sim-lte-a-apac-128gb-jkm-lx2", + "name": "Y8s 2020 Dual SIM LTE-A APAC 128GB JKM-LX2", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.278606", + "updated_at": "2026-06-19T00:43:44.278606" +} diff --git a/site/public/v1/smartphones/y8s-2020-dual-sim-lte-a-apac-128gb-jkm-lx2/score/index.json b/site/public/v1/smartphones/y8s-2020-dual-sim-lte-a-apac-128gb-jkm-lx2/score/index.json new file mode 100644 index 00000000000..07efc435835 --- /dev/null +++ b/site/public/v1/smartphones/y8s-2020-dual-sim-lte-a-apac-128gb-jkm-lx2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/y8s-2020-dual-sim-lte-a-emea-jkm-lx1/index.json b/site/public/v1/smartphones/y8s-2020-dual-sim-lte-a-emea-jkm-lx1/index.json new file mode 100644 index 00000000000..b6f02a020cc --- /dev/null +++ b/site/public/v1/smartphones/y8s-2020-dual-sim-lte-a-emea-jkm-lx1/index.json @@ -0,0 +1,76 @@ +{ + "id": 1233, + "slug": "y8s-2020-dual-sim-lte-a-emea-jkm-lx1", + "name": "Y8s 2020 Dual SIM LTE-A EMEA JKM-LX1", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2020-05-13", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.278606", + "updated_at": "2026-06-19T00:43:44.278606" +} diff --git a/site/public/v1/smartphones/y8s-2020-dual-sim-lte-a-emea-jkm-lx1/score/index.json b/site/public/v1/smartphones/y8s-2020-dual-sim-lte-a-emea-jkm-lx1/score/index.json new file mode 100644 index 00000000000..07efc435835 --- /dev/null +++ b/site/public/v1/smartphones/y8s-2020-dual-sim-lte-a-emea-jkm-lx1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/y8s-2020-dual-sim-lte-a-latam-jkm-lx3/index.json b/site/public/v1/smartphones/y8s-2020-dual-sim-lte-a-latam-jkm-lx3/index.json new file mode 100644 index 00000000000..18b75b52c48 --- /dev/null +++ b/site/public/v1/smartphones/y8s-2020-dual-sim-lte-a-latam-jkm-lx3/index.json @@ -0,0 +1,76 @@ +{ + "id": 1234, + "slug": "y8s-2020-dual-sim-lte-a-latam-jkm-lx3", + "name": "Y8s 2020 Dual SIM LTE-A LATAM JKM-LX3", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2020-05-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.278606", + "updated_at": "2026-06-19T00:43:44.278606" +} diff --git a/site/public/v1/smartphones/y8s-2020-dual-sim-lte-a-latam-jkm-lx3/score/index.json b/site/public/v1/smartphones/y8s-2020-dual-sim-lte-a-latam-jkm-lx3/score/index.json new file mode 100644 index 00000000000..07efc435835 --- /dev/null +++ b/site/public/v1/smartphones/y8s-2020-dual-sim-lte-a-latam-jkm-lx3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/y8s-2020-lte-a-emea-jkm-lx1/index.json b/site/public/v1/smartphones/y8s-2020-lte-a-emea-jkm-lx1/index.json new file mode 100644 index 00000000000..d135d832644 --- /dev/null +++ b/site/public/v1/smartphones/y8s-2020-lte-a-emea-jkm-lx1/index.json @@ -0,0 +1,76 @@ +{ + "id": 1235, + "slug": "y8s-2020-lte-a-emea-jkm-lx1", + "name": "Y8s 2020 LTE-A EMEA JKM-LX1", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2020-05-13", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.278606", + "updated_at": "2026-06-19T00:43:44.278606" +} diff --git a/site/public/v1/smartphones/y8s-2020-lte-a-emea-jkm-lx1/score/index.json b/site/public/v1/smartphones/y8s-2020-lte-a-emea-jkm-lx1/score/index.json new file mode 100644 index 00000000000..07efc435835 --- /dev/null +++ b/site/public/v1/smartphones/y8s-2020-lte-a-emea-jkm-lx1/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.0, + "performance": 0.0, + "camera": 16.5, + "battery": 15.0, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/y9-2018-dual-sim-lte-a-emea-fla-lx1-fla-l21/index.json b/site/public/v1/smartphones/y9-2018-dual-sim-lte-a-emea-fla-lx1-fla-l21/index.json new file mode 100644 index 00000000000..08216916dd9 --- /dev/null +++ b/site/public/v1/smartphones/y9-2018-dual-sim-lte-a-emea-fla-lx1-fla-l21/index.json @@ -0,0 +1,76 @@ +{ + "id": 949, + "slug": "y9-2018-dual-sim-lte-a-emea-fla-lx1-fla-l21", + "name": "Y9 2018 Dual SIM LTE-A EMEA FLA-LX1 / FLA-L21", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 25, + "slug": "kirin-659", + "name": "Kirin 659", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 16.0, + "gpu_name": "Mali-T830 MP2", + "url": "/v1/socs/kirin-659" + }, + "release_date": "2018-05-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.93, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 407 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 45.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.238469", + "updated_at": "2026-06-19T00:43:44.238469" +} diff --git a/site/public/v1/smartphones/y9-2018-dual-sim-lte-a-emea-fla-lx1-fla-l21/score/index.json b/site/public/v1/smartphones/y9-2018-dual-sim-lte-a-emea-fla-lx1-fla-l21/score/index.json new file mode 100644 index 00000000000..96293b69c1f --- /dev/null +++ b/site/public/v1/smartphones/y9-2018-dual-sim-lte-a-emea-fla-lx1-fla-l21/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 45.7, + "value": null +} diff --git a/site/public/v1/smartphones/y9-2018-dual-sim-lte-a-latam-fla-lx3-fla-l23/index.json b/site/public/v1/smartphones/y9-2018-dual-sim-lte-a-latam-fla-lx3-fla-l23/index.json new file mode 100644 index 00000000000..34ec8cda5e5 --- /dev/null +++ b/site/public/v1/smartphones/y9-2018-dual-sim-lte-a-latam-fla-lx3-fla-l23/index.json @@ -0,0 +1,76 @@ +{ + "id": 950, + "slug": "y9-2018-dual-sim-lte-a-latam-fla-lx3-fla-l23", + "name": "Y9 2018 Dual SIM LTE-A LATAM FLA-LX3 / FLA-L23", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 25, + "slug": "kirin-659", + "name": "Kirin 659", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 16.0, + "gpu_name": "Mali-T830 MP2", + "url": "/v1/socs/kirin-659" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.93, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 407 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 45.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.238469", + "updated_at": "2026-06-19T00:43:44.238469" +} diff --git a/site/public/v1/smartphones/y9-2018-dual-sim-lte-a-latam-fla-lx3-fla-l23/score/index.json b/site/public/v1/smartphones/y9-2018-dual-sim-lte-a-latam-fla-lx3-fla-l23/score/index.json new file mode 100644 index 00000000000..96293b69c1f --- /dev/null +++ b/site/public/v1/smartphones/y9-2018-dual-sim-lte-a-latam-fla-lx3-fla-l23/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 45.7, + "value": null +} diff --git a/site/public/v1/smartphones/y9-2018-dual-sim-td-lte-apac-fla-lx2-fla-l22/index.json b/site/public/v1/smartphones/y9-2018-dual-sim-td-lte-apac-fla-lx2-fla-l22/index.json new file mode 100644 index 00000000000..4faf7bb8c59 --- /dev/null +++ b/site/public/v1/smartphones/y9-2018-dual-sim-td-lte-apac-fla-lx2-fla-l22/index.json @@ -0,0 +1,76 @@ +{ + "id": 951, + "slug": "y9-2018-dual-sim-td-lte-apac-fla-lx2-fla-l22", + "name": "Y9 2018 Dual SIM TD-LTE APAC FLA-LX2 / FLA-L22", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 25, + "slug": "kirin-659", + "name": "Kirin 659", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 16.0, + "gpu_name": "Mali-T830 MP2", + "url": "/v1/socs/kirin-659" + }, + "release_date": "2018-04-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.93, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 407 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 45.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.238469", + "updated_at": "2026-06-19T00:43:44.238469" +} diff --git a/site/public/v1/smartphones/y9-2018-dual-sim-td-lte-apac-fla-lx2-fla-l22/score/index.json b/site/public/v1/smartphones/y9-2018-dual-sim-td-lte-apac-fla-lx2-fla-l22/score/index.json new file mode 100644 index 00000000000..96293b69c1f --- /dev/null +++ b/site/public/v1/smartphones/y9-2018-dual-sim-td-lte-apac-fla-lx2-fla-l22/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.5, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 45.7, + "value": null +} diff --git a/site/public/v1/smartphones/y9-2019-dual-sim-lte-a-emea-jkm-lx1-jkm-l21/index.json b/site/public/v1/smartphones/y9-2019-dual-sim-lte-a-emea-jkm-lx1-jkm-l21/index.json new file mode 100644 index 00000000000..5745dc1fee3 --- /dev/null +++ b/site/public/v1/smartphones/y9-2019-dual-sim-lte-a-emea-jkm-lx1-jkm-l21/index.json @@ -0,0 +1,76 @@ +{ + "id": 952, + "slug": "y9-2019-dual-sim-lte-a-emea-jkm-lx1-jkm-l21", + "name": "Y9 2019 Dual SIM LTE-A EMEA JKM-LX1 / JKM-L21", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.238469", + "updated_at": "2026-06-19T00:43:44.238469" +} diff --git a/site/public/v1/smartphones/y9-2019-dual-sim-lte-a-emea-jkm-lx1-jkm-l21/score/index.json b/site/public/v1/smartphones/y9-2019-dual-sim-lte-a-emea-jkm-lx1-jkm-l21/score/index.json new file mode 100644 index 00000000000..edcebd82a6c --- /dev/null +++ b/site/public/v1/smartphones/y9-2019-dual-sim-lte-a-emea-jkm-lx1-jkm-l21/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/y9-2019-dual-sim-lte-a-latam-jkm-lx3-jkm-l23/index.json b/site/public/v1/smartphones/y9-2019-dual-sim-lte-a-latam-jkm-lx3-jkm-l23/index.json new file mode 100644 index 00000000000..073ed24ee7a --- /dev/null +++ b/site/public/v1/smartphones/y9-2019-dual-sim-lte-a-latam-jkm-lx3-jkm-l23/index.json @@ -0,0 +1,76 @@ +{ + "id": 953, + "slug": "y9-2019-dual-sim-lte-a-latam-jkm-lx3-jkm-l23", + "name": "Y9 2019 Dual SIM LTE-A LATAM JKM-LX3 / JKM-L23", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2018-10-16", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.240016", + "updated_at": "2026-06-19T00:43:44.240016" +} diff --git a/site/public/v1/smartphones/y9-2019-dual-sim-lte-a-latam-jkm-lx3-jkm-l23/score/index.json b/site/public/v1/smartphones/y9-2019-dual-sim-lte-a-latam-jkm-lx3-jkm-l23/score/index.json new file mode 100644 index 00000000000..edcebd82a6c --- /dev/null +++ b/site/public/v1/smartphones/y9-2019-dual-sim-lte-a-latam-jkm-lx3-jkm-l23/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/y9-2019-dual-sim-td-lte-apac-jkm-lx2-jkm-l22/index.json b/site/public/v1/smartphones/y9-2019-dual-sim-td-lte-apac-jkm-lx2-jkm-l22/index.json new file mode 100644 index 00000000000..7b9d09dc1fe --- /dev/null +++ b/site/public/v1/smartphones/y9-2019-dual-sim-td-lte-apac-jkm-lx2-jkm-l22/index.json @@ -0,0 +1,76 @@ +{ + "id": 1116, + "slug": "y9-2019-dual-sim-td-lte-apac-jkm-lx2-jkm-l22", + "name": "Y9 2019 Dual SIM TD-LTE APAC JKM-LX2 / JKM-L22", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-01-16", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.5, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 396 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 173.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 44.6, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.264097", + "updated_at": "2026-06-19T00:43:44.264097" +} diff --git a/site/public/v1/smartphones/y9-2019-dual-sim-td-lte-apac-jkm-lx2-jkm-l22/score/index.json b/site/public/v1/smartphones/y9-2019-dual-sim-td-lte-apac-jkm-lx2-jkm-l22/score/index.json new file mode 100644 index 00000000000..edcebd82a6c --- /dev/null +++ b/site/public/v1/smartphones/y9-2019-dual-sim-td-lte-apac-jkm-lx2-jkm-l22/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.2, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 44.6, + "value": null +} diff --git a/site/public/v1/smartphones/y9-prime-2019-lte-a-latam-128gb-stk-lx3-stk-l03b/index.json b/site/public/v1/smartphones/y9-prime-2019-lte-a-latam-128gb-stk-lx3-stk-l03b/index.json new file mode 100644 index 00000000000..f52d17437ed --- /dev/null +++ b/site/public/v1/smartphones/y9-prime-2019-lte-a-latam-128gb-stk-lx3-stk-l03b/index.json @@ -0,0 +1,76 @@ +{ + "id": 1117, + "slug": "y9-prime-2019-lte-a-latam-128gb-stk-lx3-stk-l03b", + "name": "Y9 Prime 2019 LTE-A LATAM 128GB STK-LX3 / STK-L03B", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 196.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 16.4, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 44.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.264097", + "updated_at": "2026-06-19T00:43:44.264097" +} diff --git a/site/public/v1/smartphones/y9-prime-2019-lte-a-latam-128gb-stk-lx3-stk-l03b/score/index.json b/site/public/v1/smartphones/y9-prime-2019-lte-a-latam-128gb-stk-lx3-stk-l03b/score/index.json new file mode 100644 index 00000000000..596a1b5ed0a --- /dev/null +++ b/site/public/v1/smartphones/y9-prime-2019-lte-a-latam-128gb-stk-lx3-stk-l03b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 16.4, + "performance": 0.0, + "camera": 6.3, + "battery": 15.0, + "display": 44.1, + "value": null +} diff --git a/site/public/v1/smartphones/y9a-4g-premium-edition-dual-sim-td-lte-emea-frl-l22-frl-lx2/index.json b/site/public/v1/smartphones/y9a-4g-premium-edition-dual-sim-td-lte-emea-frl-l22-frl-lx2/index.json new file mode 100644 index 00000000000..65b3d04fed9 --- /dev/null +++ b/site/public/v1/smartphones/y9a-4g-premium-edition-dual-sim-td-lte-emea-frl-l22-frl-lx2/index.json @@ -0,0 +1,77 @@ +{ + "id": 1236, + "slug": "y9a-4g-premium-edition-dual-sim-td-lte-emea-frl-l22-frl-lx2", + "name": "Y9a 4G Premium Edition Dual SIM TD-LTE EMEA FRL-L22 / FRL-LX2", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2020-09-01", + "msrp_usd": 240, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.63, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 3.0, + "camera": 21.5, + "battery": 22.8, + "display": 39.7, + "value": 60.9 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.279605", + "updated_at": "2026-06-19T00:43:44.279605" +} diff --git a/site/public/v1/smartphones/y9a-4g-premium-edition-dual-sim-td-lte-emea-frl-l22-frl-lx2/score/index.json b/site/public/v1/smartphones/y9a-4g-premium-edition-dual-sim-td-lte-emea-frl-l22-frl-lx2/score/index.json new file mode 100644 index 00000000000..acf51835611 --- /dev/null +++ b/site/public/v1/smartphones/y9a-4g-premium-edition-dual-sim-td-lte-emea-frl-l22-frl-lx2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.8, + "performance": 3.0, + "camera": 21.5, + "battery": 22.8, + "display": 39.7, + "value": 60.9 +} diff --git a/site/public/v1/smartphones/y9a-4g-standard-edition-dual-sim-td-lte-latam-frl-l23-frl-lx3/index.json b/site/public/v1/smartphones/y9a-4g-standard-edition-dual-sim-td-lte-latam-frl-l23-frl-lx3/index.json new file mode 100644 index 00000000000..025fd922916 --- /dev/null +++ b/site/public/v1/smartphones/y9a-4g-standard-edition-dual-sim-td-lte-latam-frl-l23-frl-lx3/index.json @@ -0,0 +1,77 @@ +{ + "id": 1237, + "slug": "y9a-4g-standard-edition-dual-sim-td-lte-latam-frl-l23-frl-lx3", + "name": "Y9a 4G Standard Edition Dual SIM TD-LTE LATAM FRL-L23 / FRL-LX3", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 62, + "slug": "helio-g80", + "name": "Helio G80", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G52 MP2", + "url": "/v1/socs/helio-g80" + }, + "release_date": "2020-09-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.63, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "Color IPS TFT LCD display", + "ppi": 397 + }, + "cameras": [ + { + "type": "main", + "mp": 63.7 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4200, + "charging_wired_w": 40.0, + "charging_wireless_w": null, + "weight_g": 197.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 1.5, + "camera": 21.5, + "battery": 22.8, + "display": 39.7, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.279605", + "updated_at": "2026-06-19T00:43:44.279605" +} diff --git a/site/public/v1/smartphones/y9a-4g-standard-edition-dual-sim-td-lte-latam-frl-l23-frl-lx3/score/index.json b/site/public/v1/smartphones/y9a-4g-standard-edition-dual-sim-td-lte-latam-frl-l23-frl-lx3/score/index.json new file mode 100644 index 00000000000..b44f56a25d2 --- /dev/null +++ b/site/public/v1/smartphones/y9a-4g-standard-edition-dual-sim-td-lte-latam-frl-l23-frl-lx3/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.4, + "performance": 1.5, + "camera": 21.5, + "battery": 22.8, + "display": 39.7, + "value": null +} diff --git a/site/public/v1/smartphones/y9s-2019-dual-sim-lte-a-emea-stk-l21-p-smart-pro-2019/index.json b/site/public/v1/smartphones/y9s-2019-dual-sim-lte-a-emea-stk-l21-p-smart-pro-2019/index.json new file mode 100644 index 00000000000..1310f5b6b17 --- /dev/null +++ b/site/public/v1/smartphones/y9s-2019-dual-sim-lte-a-emea-stk-l21-p-smart-pro-2019/index.json @@ -0,0 +1,76 @@ +{ + "id": 1118, + "slug": "y9s-2019-dual-sim-lte-a-emea-stk-l21-p-smart-pro-2019", + "name": "Y9s 2019 Dual SIM LTE-A EMEA STK-L21 / P Smart Pro 2019", + "brand": { + "id": 17, + "slug": "huawei", + "name": "Huawei", + "country": "CN", + "url": "/v1/brands/huawei" + }, + "soc": { + "id": 27, + "slug": "kirin-710", + "name": "Kirin 710", + "manufacturer": { + "slug": "huawei", + "name": "Huawei", + "url": "/v1/brands/huawei" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G51 MP4", + "url": "/v1/socs/kirin-710" + }, + "release_date": "2019-12-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.59, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 391 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 206.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.264097", + "updated_at": "2026-06-19T00:43:44.264097" +} diff --git a/site/public/v1/smartphones/y9s-2019-dual-sim-lte-a-emea-stk-l21-p-smart-pro-2019/score/index.json b/site/public/v1/smartphones/y9s-2019-dual-sim-lte-a-emea-stk-l21-p-smart-pro-2019/score/index.json new file mode 100644 index 00000000000..e919f97aa30 --- /dev/null +++ b/site/public/v1/smartphones/y9s-2019-dual-sim-lte-a-emea-stk-l21-p-smart-pro-2019/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.3, + "performance": 1.5, + "camera": 16.5, + "battery": 15.0, + "display": 44.1, + "value": null +} diff --git a/site/public/v1/smartphones/z3153vpp-blade-vantage-2-lte-us-z3153v/index.json b/site/public/v1/smartphones/z3153vpp-blade-vantage-2-lte-us-z3153v/index.json new file mode 100644 index 00000000000..09d1b355eda --- /dev/null +++ b/site/public/v1/smartphones/z3153vpp-blade-vantage-2-lte-us-z3153v/index.json @@ -0,0 +1,76 @@ +{ + "id": 6452, + "slug": "z3153vpp-blade-vantage-2-lte-us-z3153v", + "name": "Z3153VPP Blade Vantage 2 LTE US Z3153V", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "480x960", + "type": "Color TN-TFT LCD display", + "ppi": 215 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "battery_mah": 2050, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.011826", + "updated_at": "2026-06-19T00:43:45.011826" +} diff --git a/site/public/v1/smartphones/z3153vpp-blade-vantage-2-lte-us-z3153v/score/index.json b/site/public/v1/smartphones/z3153vpp-blade-vantage-2-lte-us-z3153v/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/z3153vpp-blade-vantage-2-lte-us-z3153v/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/z5-pro-gt-premium-edition-dual-sim-td-lte-cn-128gb-l78032/index.json b/site/public/v1/smartphones/z5-pro-gt-premium-edition-dual-sim-td-lte-cn-128gb-l78032/index.json new file mode 100644 index 00000000000..bca210119ed --- /dev/null +++ b/site/public/v1/smartphones/z5-pro-gt-premium-edition-dual-sim-td-lte-cn-128gb-l78032/index.json @@ -0,0 +1,76 @@ +{ + "id": 1458, + "slug": "z5-pro-gt-premium-edition-dual-sim-td-lte-cn-128gb-l78032", + "name": "Z5 Pro GT Premium Edition Dual SIM TD-LTE CN 128GB L78032", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-01-29", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3350, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 3.0, + "camera": 6.4, + "battery": 5.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.334605", + "updated_at": "2026-06-19T00:43:44.334605" +} diff --git a/site/public/v1/smartphones/z5-pro-gt-premium-edition-dual-sim-td-lte-cn-128gb-l78032/score/index.json b/site/public/v1/smartphones/z5-pro-gt-premium-edition-dual-sim-td-lte-cn-128gb-l78032/score/index.json new file mode 100644 index 00000000000..e5d16ebfc83 --- /dev/null +++ b/site/public/v1/smartphones/z5-pro-gt-premium-edition-dual-sim-td-lte-cn-128gb-l78032/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 3.0, + "camera": 6.4, + "battery": 5.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/z5-pro-gt-premium-edition-dual-sim-td-lte-cn-256gb-l78032/index.json b/site/public/v1/smartphones/z5-pro-gt-premium-edition-dual-sim-td-lte-cn-256gb-l78032/index.json new file mode 100644 index 00000000000..91a0c13ae7e --- /dev/null +++ b/site/public/v1/smartphones/z5-pro-gt-premium-edition-dual-sim-td-lte-cn-256gb-l78032/index.json @@ -0,0 +1,76 @@ +{ + "id": 1459, + "slug": "z5-pro-gt-premium-edition-dual-sim-td-lte-cn-256gb-l78032", + "name": "Z5 Pro GT Premium Edition Dual SIM TD-LTE CN 256GB L78032", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-01-29", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3350, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 3.0, + "camera": 6.4, + "battery": 5.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.335605", + "updated_at": "2026-06-19T00:43:44.335605" +} diff --git a/site/public/v1/smartphones/z5-pro-gt-premium-edition-dual-sim-td-lte-cn-256gb-l78032/score/index.json b/site/public/v1/smartphones/z5-pro-gt-premium-edition-dual-sim-td-lte-cn-256gb-l78032/score/index.json new file mode 100644 index 00000000000..e5d16ebfc83 --- /dev/null +++ b/site/public/v1/smartphones/z5-pro-gt-premium-edition-dual-sim-td-lte-cn-256gb-l78032/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.0, + "performance": 3.0, + "camera": 6.4, + "battery": 5.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/z5-pro-gt-standard-edition-dual-sim-td-lte-cn-128gb-l78032/index.json b/site/public/v1/smartphones/z5-pro-gt-standard-edition-dual-sim-td-lte-cn-128gb-l78032/index.json new file mode 100644 index 00000000000..b0d2e001a37 --- /dev/null +++ b/site/public/v1/smartphones/z5-pro-gt-standard-edition-dual-sim-td-lte-cn-128gb-l78032/index.json @@ -0,0 +1,76 @@ +{ + "id": 1460, + "slug": "z5-pro-gt-standard-edition-dual-sim-td-lte-cn-128gb-l78032", + "name": "Z5 Pro GT Standard Edition Dual SIM TD-LTE CN 128GB L78032", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-01-28", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3350, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.6, + "performance": 1.5, + "camera": 6.4, + "battery": 5.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.335605", + "updated_at": "2026-06-19T00:43:44.335605" +} diff --git a/site/public/v1/smartphones/z5-pro-gt-standard-edition-dual-sim-td-lte-cn-128gb-l78032/score/index.json b/site/public/v1/smartphones/z5-pro-gt-standard-edition-dual-sim-td-lte-cn-128gb-l78032/score/index.json new file mode 100644 index 00000000000..76a9221d482 --- /dev/null +++ b/site/public/v1/smartphones/z5-pro-gt-standard-edition-dual-sim-td-lte-cn-128gb-l78032/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.6, + "performance": 1.5, + "camera": 6.4, + "battery": 5.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/z5-pro-premium-edition-dual-sim-td-lte-cn-128gb-l78031/index.json b/site/public/v1/smartphones/z5-pro-premium-edition-dual-sim-td-lte-cn-128gb-l78031/index.json new file mode 100644 index 00000000000..0005212081f --- /dev/null +++ b/site/public/v1/smartphones/z5-pro-premium-edition-dual-sim-td-lte-cn-128gb-l78031/index.json @@ -0,0 +1,76 @@ +{ + "id": 1439, + "slug": "z5-pro-premium-edition-dual-sim-td-lte-cn-128gb-l78031", + "name": "Z5 Pro Premium Edition Dual SIM TD-LTE CN 128GB L78031", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2018-11-11", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3350, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 21.5, + "camera": 6.4, + "battery": 5.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.333605", + "updated_at": "2026-06-19T00:43:44.333605" +} diff --git a/site/public/v1/smartphones/z5-pro-premium-edition-dual-sim-td-lte-cn-128gb-l78031/score/index.json b/site/public/v1/smartphones/z5-pro-premium-edition-dual-sim-td-lte-cn-128gb-l78031/score/index.json new file mode 100644 index 00000000000..0414cdff562 --- /dev/null +++ b/site/public/v1/smartphones/z5-pro-premium-edition-dual-sim-td-lte-cn-128gb-l78031/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 21.5, + "camera": 6.4, + "battery": 5.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/z5-pro-premium-edition-dual-sim-td-lte-cn-64gb-l78031/index.json b/site/public/v1/smartphones/z5-pro-premium-edition-dual-sim-td-lte-cn-64gb-l78031/index.json new file mode 100644 index 00000000000..da8c6252442 --- /dev/null +++ b/site/public/v1/smartphones/z5-pro-premium-edition-dual-sim-td-lte-cn-64gb-l78031/index.json @@ -0,0 +1,76 @@ +{ + "id": 1440, + "slug": "z5-pro-premium-edition-dual-sim-td-lte-cn-64gb-l78031", + "name": "Z5 Pro Premium Edition Dual SIM TD-LTE CN 64GB L78031", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2018-11-11", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 16.3 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 3350, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 210.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 21.5, + "camera": 6.4, + "battery": 5.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.333605", + "updated_at": "2026-06-19T00:43:44.333605" +} diff --git a/site/public/v1/smartphones/z5-pro-premium-edition-dual-sim-td-lte-cn-64gb-l78031/score/index.json b/site/public/v1/smartphones/z5-pro-premium-edition-dual-sim-td-lte-cn-64gb-l78031/score/index.json new file mode 100644 index 00000000000..0414cdff562 --- /dev/null +++ b/site/public/v1/smartphones/z5-pro-premium-edition-dual-sim-td-lte-cn-64gb-l78031/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 21.5, + "camera": 6.4, + "battery": 5.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/z5-td-lte-dual-sim-128gb/index.json b/site/public/v1/smartphones/z5-td-lte-dual-sim-128gb/index.json new file mode 100644 index 00000000000..8809eb83336 --- /dev/null +++ b/site/public/v1/smartphones/z5-td-lte-dual-sim-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1442, + "slug": "z5-td-lte-dual-sim-128gb", + "name": "Z5 TD-LTE Dual SIM 128GB", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-06-12", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 6.3, + "battery": 4.5, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.333605", + "updated_at": "2026-06-19T00:43:44.333605" +} diff --git a/site/public/v1/smartphones/z5-td-lte-dual-sim-128gb/score/index.json b/site/public/v1/smartphones/z5-td-lte-dual-sim-128gb/score/index.json new file mode 100644 index 00000000000..b6741204a67 --- /dev/null +++ b/site/public/v1/smartphones/z5-td-lte-dual-sim-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 6.3, + "battery": 4.5, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/z5-td-lte-dual-sim-64gb/index.json b/site/public/v1/smartphones/z5-td-lte-dual-sim-64gb/index.json new file mode 100644 index 00000000000..0b3f4976c1d --- /dev/null +++ b/site/public/v1/smartphones/z5-td-lte-dual-sim-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1443, + "slug": "z5-td-lte-dual-sim-64gb", + "name": "Z5 TD-LTE Dual SIM 64GB", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-06-12", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.2, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 402 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 6.3, + "battery": 4.5, + "display": 45.2, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.333605", + "updated_at": "2026-06-19T00:43:44.333605" +} diff --git a/site/public/v1/smartphones/z5-td-lte-dual-sim-64gb/score/index.json b/site/public/v1/smartphones/z5-td-lte-dual-sim-64gb/score/index.json new file mode 100644 index 00000000000..b6741204a67 --- /dev/null +++ b/site/public/v1/smartphones/z5-td-lte-dual-sim-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 1.5, + "camera": 6.3, + "battery": 4.5, + "display": 45.2, + "value": null +} diff --git a/site/public/v1/smartphones/z5031o-optus-x-spirit-2-lte-au/index.json b/site/public/v1/smartphones/z5031o-optus-x-spirit-2-lte-au/index.json new file mode 100644 index 00000000000..23dd287cfba --- /dev/null +++ b/site/public/v1/smartphones/z5031o-optus-x-spirit-2-lte-au/index.json @@ -0,0 +1,76 @@ +{ + "id": 6453, + "slug": "z5031o-optus-x-spirit-2-lte-au", + "name": "Z5031O Optus X Spirit 2 LTE AU", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 104, + "slug": "snapdragon-210", + "name": "Snapdragon 210", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-210" + }, + "release_date": "2019-01-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.34, + "resolution": "480x960", + "type": "Color TN-TFT LCD display", + "ppi": 201 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "battery_mah": 2450, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 153.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.011826", + "updated_at": "2026-06-19T00:43:45.011826" +} diff --git a/site/public/v1/smartphones/z5031o-optus-x-spirit-2-lte-au/score/index.json b/site/public/v1/smartphones/z5031o-optus-x-spirit-2-lte-au/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/z5031o-optus-x-spirit-2-lte-au/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/z5151vs-blade-visible-r2-lte-us/index.json b/site/public/v1/smartphones/z5151vs-blade-visible-r2-lte-us/index.json new file mode 100644 index 00000000000..63467ab3227 --- /dev/null +++ b/site/public/v1/smartphones/z5151vs-blade-visible-r2-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 6454, + "slug": "z5151vs-blade-visible-r2-lte-us", + "name": "Z5151VS Blade Visible R2 LTE US", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2019-04-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 139.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": null, + "camera": 5.3, + "battery": 3.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.011826", + "updated_at": "2026-06-19T00:43:45.011826" +} diff --git a/site/public/v1/smartphones/z5151vs-blade-visible-r2-lte-us/score/index.json b/site/public/v1/smartphones/z5151vs-blade-visible-r2-lte-us/score/index.json new file mode 100644 index 00000000000..c0f0d918d09 --- /dev/null +++ b/site/public/v1/smartphones/z5151vs-blade-visible-r2-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": null, + "camera": 5.3, + "battery": 3.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/z557bl-zfive-g-lte-us/index.json b/site/public/v1/smartphones/z557bl-zfive-g-lte-us/index.json new file mode 100644 index 00000000000..8a39e7d8a2a --- /dev/null +++ b/site/public/v1/smartphones/z557bl-zfive-g-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 6379, + "slug": "z557bl-zfive-g-lte-us", + "name": "Z557BL ZFive G LTE US", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 104, + "slug": "snapdragon-210", + "name": "Snapdragon 210", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-210" + }, + "release_date": "2017-11-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.0, + "resolution": "480x854", + "type": "Color IPS TFT LCD display", + "ppi": 196 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "battery_mah": 2200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 141.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.003824", + "updated_at": "2026-06-19T00:43:45.003824" +} diff --git a/site/public/v1/smartphones/z557bl-zfive-g-lte-us/score/index.json b/site/public/v1/smartphones/z557bl-zfive-g-lte-us/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/z557bl-zfive-g-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/z558vl-zfive-c-lte-us/index.json b/site/public/v1/smartphones/z558vl-zfive-c-lte-us/index.json new file mode 100644 index 00000000000..71bb8158be6 --- /dev/null +++ b/site/public/v1/smartphones/z558vl-zfive-c-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 6380, + "slug": "z558vl-zfive-c-lte-us", + "name": "Z558VL ZFive C LTE US", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 104, + "slug": "snapdragon-210", + "name": "Snapdragon 210", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-210" + }, + "release_date": "2017-11-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.0, + "resolution": "480x854", + "type": "Color IPS TFT LCD display", + "ppi": 196 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "battery_mah": 2200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 141.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.003824", + "updated_at": "2026-06-19T00:43:45.003824" +} diff --git a/site/public/v1/smartphones/z558vl-zfive-c-lte-us/score/index.json b/site/public/v1/smartphones/z558vl-zfive-c-lte-us/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/z558vl-zfive-c-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/z559dl-blade-t2-lite-4g-lte-us/index.json b/site/public/v1/smartphones/z559dl-blade-t2-lite-4g-lte-us/index.json new file mode 100644 index 00000000000..193fd4bac17 --- /dev/null +++ b/site/public/v1/smartphones/z559dl-blade-t2-lite-4g-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 6455, + "slug": "z559dl-blade-t2-lite-4g-lte-us", + "name": "Z559DL Blade T2 Lite 4G LTE US", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 104, + "slug": "snapdragon-210", + "name": "Snapdragon 210", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-210" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "480x854", + "type": "Color IPS TFT LCD display", + "ppi": 196 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "battery_mah": 2200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 141.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.012824", + "updated_at": "2026-06-19T00:43:45.012824" +} diff --git a/site/public/v1/smartphones/z559dl-blade-t2-lite-4g-lte-us/score/index.json b/site/public/v1/smartphones/z559dl-blade-t2-lite-4g-lte-us/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/z559dl-blade-t2-lite-4g-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/z5g31-gabb-z1-lte-us/index.json b/site/public/v1/smartphones/z5g31-gabb-z1-lte-us/index.json new file mode 100644 index 00000000000..9233ab495f7 --- /dev/null +++ b/site/public/v1/smartphones/z5g31-gabb-z1-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 6456, + "slug": "z5g31-gabb-z1-lte-us", + "name": "Z5G31 Gabb Z1 LTE US", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 104, + "slug": "snapdragon-210", + "name": "Snapdragon 210", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-210" + }, + "release_date": "2019-09-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "480x854", + "type": "Color IPS TFT LCD display", + "ppi": 196 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "battery_mah": 2200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 141.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.012824", + "updated_at": "2026-06-19T00:43:45.012824" +} diff --git a/site/public/v1/smartphones/z5g31-gabb-z1-lte-us/score/index.json b/site/public/v1/smartphones/z5g31-gabb-z1-lte-us/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/z5g31-gabb-z1-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/z5s-premium-edition-dual-sim-td-lte-cn-128gb-l78071/index.json b/site/public/v1/smartphones/z5s-premium-edition-dual-sim-td-lte-cn-128gb-l78071/index.json new file mode 100644 index 00000000000..e2aebf09554 --- /dev/null +++ b/site/public/v1/smartphones/z5s-premium-edition-dual-sim-td-lte-cn-128gb-l78071/index.json @@ -0,0 +1,76 @@ +{ + "id": 1444, + "slug": "z5s-premium-edition-dual-sim-td-lte-cn-128gb-l78071", + "name": "Z5s Premium Edition Dual SIM TD-LTE CN 128GB L78071", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2018-12-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 21.5, + "camera": 6.3, + "battery": 4.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.333605", + "updated_at": "2026-06-19T00:43:44.333605" +} diff --git a/site/public/v1/smartphones/z5s-premium-edition-dual-sim-td-lte-cn-128gb-l78071/score/index.json b/site/public/v1/smartphones/z5s-premium-edition-dual-sim-td-lte-cn-128gb-l78071/score/index.json new file mode 100644 index 00000000000..5e1ea2d5209 --- /dev/null +++ b/site/public/v1/smartphones/z5s-premium-edition-dual-sim-td-lte-cn-128gb-l78071/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 21.5, + "camera": 6.3, + "battery": 4.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/z5s-premium-edition-dual-sim-td-lte-cn-64gb-l78071/index.json b/site/public/v1/smartphones/z5s-premium-edition-dual-sim-td-lte-cn-64gb-l78071/index.json new file mode 100644 index 00000000000..2ea3c42ef4b --- /dev/null +++ b/site/public/v1/smartphones/z5s-premium-edition-dual-sim-td-lte-cn-64gb-l78071/index.json @@ -0,0 +1,76 @@ +{ + "id": 1445, + "slug": "z5s-premium-edition-dual-sim-td-lte-cn-64gb-l78071", + "name": "Z5s Premium Edition Dual SIM TD-LTE CN 64GB L78071", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2018-12-24", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 21.5, + "camera": 6.3, + "battery": 4.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.333605", + "updated_at": "2026-06-19T00:43:44.333605" +} diff --git a/site/public/v1/smartphones/z5s-premium-edition-dual-sim-td-lte-cn-64gb-l78071/score/index.json b/site/public/v1/smartphones/z5s-premium-edition-dual-sim-td-lte-cn-64gb-l78071/score/index.json new file mode 100644 index 00000000000..5e1ea2d5209 --- /dev/null +++ b/site/public/v1/smartphones/z5s-premium-edition-dual-sim-td-lte-cn-64gb-l78071/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.6, + "performance": 21.5, + "camera": 6.3, + "battery": 4.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/z5s-standard-edition-dual-sim-td-lte-cn-64gb-l78071/index.json b/site/public/v1/smartphones/z5s-standard-edition-dual-sim-td-lte-cn-64gb-l78071/index.json new file mode 100644 index 00000000000..8b789756680 --- /dev/null +++ b/site/public/v1/smartphones/z5s-standard-edition-dual-sim-td-lte-cn-64gb-l78071/index.json @@ -0,0 +1,76 @@ +{ + "id": 1446, + "slug": "z5s-standard-edition-dual-sim-td-lte-cn-64gb-l78071", + "name": "Z5s Standard Edition Dual SIM TD-LTE CN 64GB L78071", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 129, + "slug": "snapdragon-710", + "name": "Snapdragon 710", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 616", + "url": "/v1/socs/snapdragon-710" + }, + "release_date": "2018-12-24", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 409 + }, + "cameras": [ + { + "type": "main", + "mp": 16.0 + }, + { + "type": "selfie", + "mp": 16.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 172.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 20.0, + "camera": 6.3, + "battery": 4.5, + "display": 45.9, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.333605", + "updated_at": "2026-06-19T00:43:44.333605" +} diff --git a/site/public/v1/smartphones/z5s-standard-edition-dual-sim-td-lte-cn-64gb-l78071/score/index.json b/site/public/v1/smartphones/z5s-standard-edition-dual-sim-td-lte-cn-64gb-l78071/score/index.json new file mode 100644 index 00000000000..fae9ebcee0c --- /dev/null +++ b/site/public/v1/smartphones/z5s-standard-edition-dual-sim-td-lte-cn-64gb-l78071/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.2, + "performance": 20.0, + "camera": 6.3, + "battery": 4.5, + "display": 45.9, + "value": null +} diff --git a/site/public/v1/smartphones/z6-premium-edition-dual-sim-td-lte-cn-128gb-l78121/index.json b/site/public/v1/smartphones/z6-premium-edition-dual-sim-td-lte-cn-128gb-l78121/index.json new file mode 100644 index 00000000000..c34f4129dca --- /dev/null +++ b/site/public/v1/smartphones/z6-premium-edition-dual-sim-td-lte-cn-128gb-l78121/index.json @@ -0,0 +1,77 @@ +{ + "id": 1461, + "slug": "z6-premium-edition-dual-sim-td-lte-cn-128gb-l78121", + "name": "Z6 Premium Edition Dual SIM TD-LTE CN 128GB L78121", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-07-04", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 3.0, + "camera": 8.8, + "battery": 15.0, + "display": 52.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.335605", + "updated_at": "2026-06-19T00:43:44.335605" +} diff --git a/site/public/v1/smartphones/z6-premium-edition-dual-sim-td-lte-cn-128gb-l78121/score/index.json b/site/public/v1/smartphones/z6-premium-edition-dual-sim-td-lte-cn-128gb-l78121/score/index.json new file mode 100644 index 00000000000..6f6507d559b --- /dev/null +++ b/site/public/v1/smartphones/z6-premium-edition-dual-sim-td-lte-cn-128gb-l78121/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.9, + "performance": 3.0, + "camera": 8.8, + "battery": 15.0, + "display": 52.8, + "value": null +} diff --git a/site/public/v1/smartphones/z6-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l79041/index.json b/site/public/v1/smartphones/z6-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l79041/index.json new file mode 100644 index 00000000000..e60e4b68765 --- /dev/null +++ b/site/public/v1/smartphones/z6-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l79041/index.json @@ -0,0 +1,76 @@ +{ + "id": 1485, + "slug": "z6-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l79041", + "name": "Z6 Pro 5G Premium Edition Dual SIM TD-LTE CN 256GB L79041", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2020-01-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 189.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.338605", + "updated_at": "2026-06-19T00:43:44.338605" +} diff --git a/site/public/v1/smartphones/z6-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l79041/score/index.json b/site/public/v1/smartphones/z6-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l79041/score/index.json new file mode 100644 index 00000000000..c9e71136cc6 --- /dev/null +++ b/site/public/v1/smartphones/z6-pro-5g-premium-edition-dual-sim-td-lte-cn-256gb-l79041/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/z6-pro-premium-edition-dual-sim-td-lte-cn-128gb-l78051/index.json b/site/public/v1/smartphones/z6-pro-premium-edition-dual-sim-td-lte-cn-128gb-l78051/index.json new file mode 100644 index 00000000000..e6bba5416a1 --- /dev/null +++ b/site/public/v1/smartphones/z6-pro-premium-edition-dual-sim-td-lte-cn-128gb-l78051/index.json @@ -0,0 +1,76 @@ +{ + "id": 1462, + "slug": "z6-pro-premium-edition-dual-sim-td-lte-cn-128gb-l78051", + "name": "Z6 Pro Premium Edition Dual SIM TD-LTE CN 128GB L78051", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-04-29", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.335605", + "updated_at": "2026-06-19T00:43:44.335605" +} diff --git a/site/public/v1/smartphones/z6-pro-premium-edition-dual-sim-td-lte-cn-128gb-l78051/score/index.json b/site/public/v1/smartphones/z6-pro-premium-edition-dual-sim-td-lte-cn-128gb-l78051/score/index.json new file mode 100644 index 00000000000..c9e71136cc6 --- /dev/null +++ b/site/public/v1/smartphones/z6-pro-premium-edition-dual-sim-td-lte-cn-128gb-l78051/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/z6-pro-premium-edition-dual-sim-td-lte-cn-256gb-l78051/index.json b/site/public/v1/smartphones/z6-pro-premium-edition-dual-sim-td-lte-cn-256gb-l78051/index.json new file mode 100644 index 00000000000..80c03a8eeb9 --- /dev/null +++ b/site/public/v1/smartphones/z6-pro-premium-edition-dual-sim-td-lte-cn-256gb-l78051/index.json @@ -0,0 +1,76 @@ +{ + "id": 1463, + "slug": "z6-pro-premium-edition-dual-sim-td-lte-cn-256gb-l78051", + "name": "Z6 Pro Premium Edition Dual SIM TD-LTE CN 256GB L78051", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-04-29", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.335605", + "updated_at": "2026-06-19T00:43:44.335605" +} diff --git a/site/public/v1/smartphones/z6-pro-premium-edition-dual-sim-td-lte-cn-256gb-l78051/score/index.json b/site/public/v1/smartphones/z6-pro-premium-edition-dual-sim-td-lte-cn-256gb-l78051/score/index.json new file mode 100644 index 00000000000..c9e71136cc6 --- /dev/null +++ b/site/public/v1/smartphones/z6-pro-premium-edition-dual-sim-td-lte-cn-256gb-l78051/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.5, + "performance": 3.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/z6-pro-standard-edition-dual-sim-td-lte-cn-128gb-l78051/index.json b/site/public/v1/smartphones/z6-pro-standard-edition-dual-sim-td-lte-cn-128gb-l78051/index.json new file mode 100644 index 00000000000..99d5f84210a --- /dev/null +++ b/site/public/v1/smartphones/z6-pro-standard-edition-dual-sim-td-lte-cn-128gb-l78051/index.json @@ -0,0 +1,76 @@ +{ + "id": 1464, + "slug": "z6-pro-standard-edition-dual-sim-td-lte-cn-128gb-l78051", + "name": "Z6 Pro Standard Edition Dual SIM TD-LTE CN 128GB L78051", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-04-29", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.335605", + "updated_at": "2026-06-19T00:43:44.335605" +} diff --git a/site/public/v1/smartphones/z6-pro-standard-edition-dual-sim-td-lte-cn-128gb-l78051/score/index.json b/site/public/v1/smartphones/z6-pro-standard-edition-dual-sim-td-lte-cn-128gb-l78051/score/index.json new file mode 100644 index 00000000000..a3b77af19b0 --- /dev/null +++ b/site/public/v1/smartphones/z6-pro-standard-edition-dual-sim-td-lte-cn-128gb-l78051/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 1.5, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/z6-pro-top-edition-dual-sim-td-lte-cn-512gb-l78051/index.json b/site/public/v1/smartphones/z6-pro-top-edition-dual-sim-td-lte-cn-512gb-l78051/index.json new file mode 100644 index 00000000000..aa590fa4b5e --- /dev/null +++ b/site/public/v1/smartphones/z6-pro-top-edition-dual-sim-td-lte-cn-512gb-l78051/index.json @@ -0,0 +1,76 @@ +{ + "id": 1465, + "slug": "z6-pro-top-edition-dual-sim-td-lte-cn-512gb-l78051", + "name": "Z6 Pro Top Edition Dual SIM TD-LTE CN 512GB L78051", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + }, + { + "type": "selfie", + "mp": 32.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 27.0, + "charging_wireless_w": null, + "weight_g": 185.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 6.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.335605", + "updated_at": "2026-06-19T00:43:44.335605" +} diff --git a/site/public/v1/smartphones/z6-pro-top-edition-dual-sim-td-lte-cn-512gb-l78051/score/index.json b/site/public/v1/smartphones/z6-pro-top-edition-dual-sim-td-lte-cn-512gb-l78051/score/index.json new file mode 100644 index 00000000000..f679648eefe --- /dev/null +++ b/site/public/v1/smartphones/z6-pro-top-edition-dual-sim-td-lte-cn-512gb-l78051/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.3, + "performance": 6.0, + "camera": 16.5, + "battery": 17.3, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/z6-standard-edition-dual-sim-td-lte-cn-128gb-l78121/index.json b/site/public/v1/smartphones/z6-standard-edition-dual-sim-td-lte-cn-128gb-l78121/index.json new file mode 100644 index 00000000000..249169ca165 --- /dev/null +++ b/site/public/v1/smartphones/z6-standard-edition-dual-sim-td-lte-cn-128gb-l78121/index.json @@ -0,0 +1,77 @@ +{ + "id": 1467, + "slug": "z6-standard-edition-dual-sim-td-lte-cn-128gb-l78121", + "name": "Z6 Standard Edition Dual SIM TD-LTE CN 128GB L78121", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-07-04", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.5, + "performance": 1.5, + "camera": 8.8, + "battery": 15.0, + "display": 52.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.336605", + "updated_at": "2026-06-19T00:43:44.336605" +} diff --git a/site/public/v1/smartphones/z6-standard-edition-dual-sim-td-lte-cn-128gb-l78121/score/index.json b/site/public/v1/smartphones/z6-standard-edition-dual-sim-td-lte-cn-128gb-l78121/score/index.json new file mode 100644 index 00000000000..cab1ac59709 --- /dev/null +++ b/site/public/v1/smartphones/z6-standard-edition-dual-sim-td-lte-cn-128gb-l78121/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.5, + "performance": 1.5, + "camera": 8.8, + "battery": 15.0, + "display": 52.8, + "value": null +} diff --git a/site/public/v1/smartphones/z6-standard-edition-dual-sim-td-lte-cn-64gb-l78121/index.json b/site/public/v1/smartphones/z6-standard-edition-dual-sim-td-lte-cn-64gb-l78121/index.json new file mode 100644 index 00000000000..88073062417 --- /dev/null +++ b/site/public/v1/smartphones/z6-standard-edition-dual-sim-td-lte-cn-64gb-l78121/index.json @@ -0,0 +1,77 @@ +{ + "id": 1468, + "slug": "z6-standard-edition-dual-sim-td-lte-cn-64gb-l78121", + "name": "Z6 Standard Edition Dual SIM TD-LTE CN 64GB L78121", + "brand": { + "id": 23, + "slug": "lenovo", + "name": "Lenovo", + "country": "CN", + "url": "/v1/brands/lenovo" + }, + "soc": { + "id": 134, + "slug": "snapdragon-730", + "name": "Snapdragon 730", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 8.0, + "gpu_name": "Adreno 618", + "url": "/v1/socs/snapdragon-730" + }, + "release_date": "2019-07-04", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 24.0 + }, + { + "type": "selfie", + "mp": 16.3 + } + ], + "battery_mah": 4000, + "charging_wired_w": 15.0, + "charging_wireless_w": null, + "weight_g": 159.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 19.5, + "performance": 1.5, + "camera": 8.8, + "battery": 15.0, + "display": 52.8, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.336605", + "updated_at": "2026-06-19T00:43:44.336605" +} diff --git a/site/public/v1/smartphones/z6-standard-edition-dual-sim-td-lte-cn-64gb-l78121/score/index.json b/site/public/v1/smartphones/z6-standard-edition-dual-sim-td-lte-cn-64gb-l78121/score/index.json new file mode 100644 index 00000000000..cab1ac59709 --- /dev/null +++ b/site/public/v1/smartphones/z6-standard-edition-dual-sim-td-lte-cn-64gb-l78121/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 19.5, + "performance": 1.5, + "camera": 8.8, + "battery": 15.0, + "display": 52.8, + "value": null +} diff --git a/site/public/v1/smartphones/z6050-blade-a6-max-lte-au-optus-x-power/index.json b/site/public/v1/smartphones/z6050-blade-a6-max-lte-au-optus-x-power/index.json new file mode 100644 index 00000000000..16fbef548ef --- /dev/null +++ b/site/public/v1/smartphones/z6050-blade-a6-max-lte-au-optus-x-power/index.json @@ -0,0 +1,76 @@ +{ + "id": 6418, + "slug": "z6050-blade-a6-max-lte-au-optus-x-power", + "name": "Z6050 Blade A6 Max LTE AU / Optus X Power", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 104, + "slug": "snapdragon-210", + "name": "Snapdragon 210", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-210" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.5, + "resolution": "720x1280", + "type": "Color TN-TFT LCD display", + "ppi": 267 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 161.5, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.007824", + "updated_at": "2026-06-19T00:43:45.007824" +} diff --git a/site/public/v1/smartphones/z6050-blade-a6-max-lte-au-optus-x-power/score/index.json b/site/public/v1/smartphones/z6050-blade-a6-max-lte-au-optus-x-power/score/index.json new file mode 100644 index 00000000000..7f209133483 --- /dev/null +++ b/site/public/v1/smartphones/z6050-blade-a6-max-lte-au-optus-x-power/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.3, + "performance": null, + "camera": 5.0, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/z62-dual-sim-td-lte-in/index.json b/site/public/v1/smartphones/z62-dual-sim-td-lte-in/index.json new file mode 100644 index 00000000000..64f39c4a526 --- /dev/null +++ b/site/public/v1/smartphones/z62-dual-sim-td-lte-in/index.json @@ -0,0 +1,76 @@ +{ + "id": 1424, + "slug": "z62-dual-sim-td-lte-in", + "name": "Z62 Dual SIM TD-LTE IN", + "brand": { + "id": 66, + "slug": "lava", + "name": "Lava International", + "country": "IN", + "url": "/v1/brands/lava" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-06-14", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 6.0, + "resolution": "480x960", + "type": "Color IPS TFT LCD display", + "ppi": 179 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3380, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 182.8, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": null, + "camera": 5.0, + "battery": 5.7, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.331605", + "updated_at": "2026-06-19T00:43:44.331605" +} diff --git a/site/public/v1/smartphones/z62-dual-sim-td-lte-in/score/index.json b/site/public/v1/smartphones/z62-dual-sim-td-lte-in/score/index.json new file mode 100644 index 00000000000..9d0acbd1b10 --- /dev/null +++ b/site/public/v1/smartphones/z62-dual-sim-td-lte-in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.2, + "performance": null, + "camera": 5.0, + "battery": 5.7, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/z620-blade-a7-prime-dual-sim-lte-z6201vs/index.json b/site/public/v1/smartphones/z620-blade-a7-prime-dual-sim-lte-z6201vs/index.json new file mode 100644 index 00000000000..de876912b1f --- /dev/null +++ b/site/public/v1/smartphones/z620-blade-a7-prime-dual-sim-lte-z6201vs/index.json @@ -0,0 +1,76 @@ +{ + "id": 6457, + "slug": "z620-blade-a7-prime-dual-sim-lte-z6201vs", + "name": "Z620 Blade A7 Prime Dual SIM LTE Z6201VS", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2019-11-28", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.09, + "resolution": "720x1560", + "type": "Color IPS TFT LCD display", + "ppi": 282 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": null, + "camera": 6.3, + "battery": 3.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.012824", + "updated_at": "2026-06-19T00:43:45.012824" +} diff --git a/site/public/v1/smartphones/z620-blade-a7-prime-dual-sim-lte-z6201vs/score/index.json b/site/public/v1/smartphones/z620-blade-a7-prime-dual-sim-lte-z6201vs/score/index.json new file mode 100644 index 00000000000..418740dd9c9 --- /dev/null +++ b/site/public/v1/smartphones/z620-blade-a7-prime-dual-sim-lte-z6201vs/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.8, + "performance": null, + "camera": 6.3, + "battery": 3.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/z6530v-blade-10-prime-lte-a-us-z6530vs/index.json b/site/public/v1/smartphones/z6530v-blade-10-prime-lte-a-us-z6530vs/index.json new file mode 100644 index 00000000000..679b60bd14c --- /dev/null +++ b/site/public/v1/smartphones/z6530v-blade-10-prime-lte-a-us-z6530vs/index.json @@ -0,0 +1,76 @@ +{ + "id": 6458, + "slug": "z6530v-blade-10-prime-lte-a-us-z6530vs", + "name": "Z6530V Blade 10 Prime LTE-A US Z6530VS", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 44, + "slug": "helio-p60", + "name": "Helio P60", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "Mali-G72 MP3", + "url": "/v1/socs/helio-p60" + }, + "release_date": "2019-11-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.3, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 400 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 3100, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 6.3, + "battery": 1.5, + "display": 45.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.012824", + "updated_at": "2026-06-19T00:43:45.012824" +} diff --git a/site/public/v1/smartphones/z6530v-blade-10-prime-lte-a-us-z6530vs/score/index.json b/site/public/v1/smartphones/z6530v-blade-10-prime-lte-a-us-z6530vs/score/index.json new file mode 100644 index 00000000000..a164fc1777b --- /dev/null +++ b/site/public/v1/smartphones/z6530v-blade-10-prime-lte-a-us-z6530vs/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.2, + "performance": 0.0, + "camera": 6.3, + "battery": 1.5, + "display": 45.0, + "value": null +} diff --git a/site/public/v1/smartphones/z71-dual-sim-td-lte-32gb/index.json b/site/public/v1/smartphones/z71-dual-sim-td-lte-32gb/index.json new file mode 100644 index 00000000000..bc26c0ada70 --- /dev/null +++ b/site/public/v1/smartphones/z71-dual-sim-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1425, + "slug": "z71-dual-sim-td-lte-32gb", + "name": "Z71 Dual SIM TD-LTE 32GB", + "brand": { + "id": 66, + "slug": "lava", + "name": "Lava International", + "country": "IN", + "url": "/v1/brands/lava" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2020-01-16", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": null, + "camera": 5.3, + "battery": 3.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.331605", + "updated_at": "2026-06-19T00:43:44.331605" +} diff --git a/site/public/v1/smartphones/z71-dual-sim-td-lte-32gb/score/index.json b/site/public/v1/smartphones/z71-dual-sim-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..c0f0d918d09 --- /dev/null +++ b/site/public/v1/smartphones/z71-dual-sim-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": null, + "camera": 5.3, + "battery": 3.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/z81-dual-sim-td-lte-16gb/index.json b/site/public/v1/smartphones/z81-dual-sim-td-lte-16gb/index.json new file mode 100644 index 00000000000..3f889a9ff16 --- /dev/null +++ b/site/public/v1/smartphones/z81-dual-sim-td-lte-16gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1418, + "slug": "z81-dual-sim-td-lte-16gb", + "name": "Z81 Dual SIM TD-LTE 16GB", + "brand": { + "id": 66, + "slug": "lava", + "name": "Lava International", + "country": "IN", + "url": "/v1/brands/lava" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2018-12-27", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 283 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 141.6, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.330606", + "updated_at": "2026-06-19T00:43:44.330606" +} diff --git a/site/public/v1/smartphones/z81-dual-sim-td-lte-16gb/score/index.json b/site/public/v1/smartphones/z81-dual-sim-td-lte-16gb/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/z81-dual-sim-td-lte-16gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/z81-dual-sim-td-lte-32gb/index.json b/site/public/v1/smartphones/z81-dual-sim-td-lte-32gb/index.json new file mode 100644 index 00000000000..031385169ea --- /dev/null +++ b/site/public/v1/smartphones/z81-dual-sim-td-lte-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 1419, + "slug": "z81-dual-sim-td-lte-32gb", + "name": "Z81 Dual SIM TD-LTE 32GB", + "brand": { + "id": 66, + "slug": "lava", + "name": "Lava International", + "country": "IN", + "url": "/v1/brands/lava" + }, + "soc": { + "id": 41, + "slug": "helio-a22", + "name": "Helio A22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8300", + "url": "/v1/socs/helio-a22" + }, + "release_date": "2018-12-27", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.7, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 283 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 141.6, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.330606", + "updated_at": "2026-06-19T00:43:44.330606" +} diff --git a/site/public/v1/smartphones/z81-dual-sim-td-lte-32gb/score/index.json b/site/public/v1/smartphones/z81-dual-sim-td-lte-32gb/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/z81-dual-sim-td-lte-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/z815-fanfare-2-lte-us/index.json b/site/public/v1/smartphones/z815-fanfare-2-lte-us/index.json new file mode 100644 index 00000000000..fa6d8c5375b --- /dev/null +++ b/site/public/v1/smartphones/z815-fanfare-2-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 6381, + "slug": "z815-fanfare-2-lte-us", + "name": "Z815 Fanfare 2 LTE US", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 104, + "slug": "snapdragon-210", + "name": "Snapdragon 210", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-210" + }, + "release_date": "2017-01-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 4.49, + "resolution": "480x854", + "type": "Color TN-TFT LCD display", + "ppi": 218 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "battery_mah": 2200, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 130.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "6.0", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.003824", + "updated_at": "2026-06-19T00:43:45.003824" +} diff --git a/site/public/v1/smartphones/z815-fanfare-2-lte-us/score/index.json b/site/public/v1/smartphones/z815-fanfare-2-lte-us/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/z815-fanfare-2-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/z836bl-zfive-2-lte-us/index.json b/site/public/v1/smartphones/z836bl-zfive-2-lte-us/index.json new file mode 100644 index 00000000000..722f438067e --- /dev/null +++ b/site/public/v1/smartphones/z836bl-zfive-2-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 6382, + "slug": "z836bl-zfive-2-lte-us", + "name": "Z836BL ZFive 2 LTE US", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2017-07-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "battery_mah": 2800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "6.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.003824", + "updated_at": "2026-06-19T00:43:45.003824" +} diff --git a/site/public/v1/smartphones/z836bl-zfive-2-lte-us/score/index.json b/site/public/v1/smartphones/z836bl-zfive-2-lte-us/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/z836bl-zfive-2-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/z837vl-zfive-2-lte-us/index.json b/site/public/v1/smartphones/z837vl-zfive-2-lte-us/index.json new file mode 100644 index 00000000000..604479c361b --- /dev/null +++ b/site/public/v1/smartphones/z837vl-zfive-2-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 6383, + "slug": "z837vl-zfive-2-lte-us", + "name": "Z837VL ZFive 2 LTE US", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2017-07-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.0, + "resolution": "720x1280", + "type": "Color IPS TFT LCD display", + "ppi": 294 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "battery_mah": 2800, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "6.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.003824", + "updated_at": "2026-06-19T00:43:45.003824" +} diff --git a/site/public/v1/smartphones/z837vl-zfive-2-lte-us/score/index.json b/site/public/v1/smartphones/z837vl-zfive-2-lte-us/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/z837vl-zfive-2-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/z851m-overture-3-lte-us/index.json b/site/public/v1/smartphones/z851m-overture-3-lte-us/index.json new file mode 100644 index 00000000000..6a2bcd324bd --- /dev/null +++ b/site/public/v1/smartphones/z851m-overture-3-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 6384, + "slug": "z851m-overture-3-lte-us", + "name": "Z851M Overture 3 LTE US", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 104, + "slug": "snapdragon-210", + "name": "Snapdragon 210", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-210" + }, + "release_date": "2017-11-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.0, + "resolution": "480x854", + "type": "Color TN-TFT LCD display", + "ppi": 196 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "battery_mah": 2115, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 158.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.003824", + "updated_at": "2026-06-19T00:43:45.003824" +} diff --git a/site/public/v1/smartphones/z851m-overture-3-lte-us/score/index.json b/site/public/v1/smartphones/z851m-overture-3-lte-us/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/z851m-overture-3-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/z852-fanfare-3-lte-us/index.json b/site/public/v1/smartphones/z852-fanfare-3-lte-us/index.json new file mode 100644 index 00000000000..672c92db3e8 --- /dev/null +++ b/site/public/v1/smartphones/z852-fanfare-3-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 6385, + "slug": "z852-fanfare-3-lte-us", + "name": "Z852 Fanfare 3 LTE US", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 104, + "slug": "snapdragon-210", + "name": "Snapdragon 210", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-210" + }, + "release_date": "2017-10-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.0, + "resolution": "480x854", + "type": "Color TN-TFT LCD display", + "ppi": 196 + }, + "cameras": [ + { + "type": "main", + "mp": 4.9 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "battery_mah": 2250, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 141.7, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.1", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.003824", + "updated_at": "2026-06-19T00:43:45.003824" +} diff --git a/site/public/v1/smartphones/z852-fanfare-3-lte-us/score/index.json b/site/public/v1/smartphones/z852-fanfare-3-lte-us/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/z852-fanfare-3-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/z855-avid-4-lte-us/index.json b/site/public/v1/smartphones/z855-avid-4-lte-us/index.json new file mode 100644 index 00000000000..4718445aa19 --- /dev/null +++ b/site/public/v1/smartphones/z855-avid-4-lte-us/index.json @@ -0,0 +1,76 @@ +{ + "id": 6386, + "slug": "z855-avid-4-lte-us", + "name": "Z855 Avid 4 LTE US", + "brand": { + "id": 47, + "slug": "zte", + "name": "ZTE", + "country": "CN", + "url": "/v1/brands/zte" + }, + "soc": { + "id": 104, + "slug": "snapdragon-210", + "name": "Snapdragon 210", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 304", + "url": "/v1/socs/snapdragon-210" + }, + "release_date": "2017-10-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 5.0, + "resolution": "480x854", + "type": "Color TN-TFT LCD display", + "ppi": 196 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 2520, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 158.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:45.003824", + "updated_at": "2026-06-19T00:43:45.003824" +} diff --git a/site/public/v1/smartphones/z855-avid-4-lte-us/score/index.json b/site/public/v1/smartphones/z855-avid-4-lte-us/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/z855-avid-4-lte-us/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/z92-premium-edition-dual-sim-td-lte-in/index.json b/site/public/v1/smartphones/z92-premium-edition-dual-sim-td-lte-in/index.json new file mode 100644 index 00000000000..a7ed2b4fbfe --- /dev/null +++ b/site/public/v1/smartphones/z92-premium-edition-dual-sim-td-lte-in/index.json @@ -0,0 +1,76 @@ +{ + "id": 1420, + "slug": "z92-premium-edition-dual-sim-td-lte-in", + "name": "Z92 Premium Edition Dual SIM TD-LTE IN", + "brand": { + "id": 66, + "slug": "lava", + "name": "Lava International", + "country": "IN", + "url": "/v1/brands/lava" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-04-02", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3260, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 159.2, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.330606", + "updated_at": "2026-06-19T00:43:44.330606" +} diff --git a/site/public/v1/smartphones/z92-premium-edition-dual-sim-td-lte-in/score/index.json b/site/public/v1/smartphones/z92-premium-edition-dual-sim-td-lte-in/score/index.json new file mode 100644 index 00000000000..b3b53c37307 --- /dev/null +++ b/site/public/v1/smartphones/z92-premium-edition-dual-sim-td-lte-in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/z92-standard-edition-dual-sim-td-lte-in/index.json b/site/public/v1/smartphones/z92-standard-edition-dual-sim-td-lte-in/index.json new file mode 100644 index 00000000000..1c48a9c83ed --- /dev/null +++ b/site/public/v1/smartphones/z92-standard-edition-dual-sim-td-lte-in/index.json @@ -0,0 +1,76 @@ +{ + "id": 1421, + "slug": "z92-standard-edition-dual-sim-td-lte-in", + "name": "Z92 Standard Edition Dual SIM TD-LTE IN", + "brand": { + "id": 66, + "slug": "lava", + "name": "Lava International", + "country": "IN", + "url": "/v1/brands/lava" + }, + "soc": { + "id": 42, + "slug": "helio-p22", + "name": "Helio P22", + "manufacturer": { + "slug": "mediatek", + "name": "MediaTek", + "url": "/v1/brands/mediatek" + }, + "process_nm": 12.0, + "gpu_name": "IMG PowerVR GE8320", + "url": "/v1/socs/helio-p22" + }, + "release_date": "2018-04-02", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.22, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 270 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3260, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 159.2, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.330606", + "updated_at": "2026-06-19T00:43:44.330606" +} diff --git a/site/public/v1/smartphones/z92-standard-edition-dual-sim-td-lte-in/score/index.json b/site/public/v1/smartphones/z92-standard-edition-dual-sim-td-lte-in/score/index.json new file mode 100644 index 00000000000..b3b53c37307 --- /dev/null +++ b/site/public/v1/smartphones/z92-standard-edition-dual-sim-td-lte-in/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.7, + "performance": null, + "camera": 5.3, + "battery": 3.9, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-5-2018-dual-sim-td-lte-br-us-tw-ph-au-version-b-ze620kl/index.json b/site/public/v1/smartphones/zenfone-5-2018-dual-sim-td-lte-br-us-tw-ph-au-version-b-ze620kl/index.json new file mode 100644 index 00000000000..0a579841515 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5-2018-dual-sim-td-lte-br-us-tw-ph-au-version-b-ze620kl/index.json @@ -0,0 +1,76 @@ +{ + "id": 311, + "slug": "zenfone-5-2018-dual-sim-td-lte-br-us-tw-ph-au-version-b-ze620kl", + "name": "ZenFone 5 2018 Dual SIM TD-LTE BR US TW PH AU Version B ZE620KL", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.7, + "performance": 0.0, + "camera": 5.1, + "battery": 4.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.151418", + "updated_at": "2026-06-19T00:43:44.151418" +} diff --git a/site/public/v1/smartphones/zenfone-5-2018-dual-sim-td-lte-br-us-tw-ph-au-version-b-ze620kl/score/index.json b/site/public/v1/smartphones/zenfone-5-2018-dual-sim-td-lte-br-us-tw-ph-au-version-b-ze620kl/score/index.json new file mode 100644 index 00000000000..e2840d7da63 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5-2018-dual-sim-td-lte-br-us-tw-ph-au-version-b-ze620kl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.7, + "performance": 0.0, + "camera": 5.1, + "battery": 4.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-5-2018-dual-sim-td-lte-br-version-b-ze620kl-128gb/index.json b/site/public/v1/smartphones/zenfone-5-2018-dual-sim-td-lte-br-version-b-ze620kl-128gb/index.json new file mode 100644 index 00000000000..5a675786049 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5-2018-dual-sim-td-lte-br-version-b-ze620kl-128gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 312, + "slug": "zenfone-5-2018-dual-sim-td-lte-br-version-b-ze620kl-128gb", + "name": "ZenFone 5 2018 Dual SIM TD-LTE BR Version B ZE620KL 128GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-04-18", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.7, + "performance": 0.0, + "camera": 5.1, + "battery": 4.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.151418", + "updated_at": "2026-06-19T00:43:44.151418" +} diff --git a/site/public/v1/smartphones/zenfone-5-2018-dual-sim-td-lte-br-version-b-ze620kl-128gb/score/index.json b/site/public/v1/smartphones/zenfone-5-2018-dual-sim-td-lte-br-version-b-ze620kl-128gb/score/index.json new file mode 100644 index 00000000000..e2840d7da63 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5-2018-dual-sim-td-lte-br-version-b-ze620kl-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.7, + "performance": 0.0, + "camera": 5.1, + "battery": 4.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-5-2018-dual-sim-td-lte-jp-version-b-ze620kl/index.json b/site/public/v1/smartphones/zenfone-5-2018-dual-sim-td-lte-jp-version-b-ze620kl/index.json new file mode 100644 index 00000000000..061fcd080dc --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5-2018-dual-sim-td-lte-jp-version-b-ze620kl/index.json @@ -0,0 +1,76 @@ +{ + "id": 313, + "slug": "zenfone-5-2018-dual-sim-td-lte-jp-version-b-ze620kl", + "name": "ZenFone 5 2018 Dual SIM TD-LTE JP Version B ZE620KL", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 1.5, + "camera": 5.1, + "battery": 4.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.151418", + "updated_at": "2026-06-19T00:43:44.151418" +} diff --git a/site/public/v1/smartphones/zenfone-5-2018-dual-sim-td-lte-jp-version-b-ze620kl/score/index.json b/site/public/v1/smartphones/zenfone-5-2018-dual-sim-td-lte-jp-version-b-ze620kl/score/index.json new file mode 100644 index 00000000000..62ec54da9ba --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5-2018-dual-sim-td-lte-jp-version-b-ze620kl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 1.5, + "camera": 5.1, + "battery": 4.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-5-2018-global-dual-sim-td-lte-version-a-ze620kl/index.json b/site/public/v1/smartphones/zenfone-5-2018-global-dual-sim-td-lte-version-a-ze620kl/index.json new file mode 100644 index 00000000000..8970e5ccc7d --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5-2018-global-dual-sim-td-lte-version-a-ze620kl/index.json @@ -0,0 +1,76 @@ +{ + "id": 314, + "slug": "zenfone-5-2018-global-dual-sim-td-lte-version-a-ze620kl", + "name": "ZenFone 5 2018 Global Dual SIM TD-LTE Version A ZE620KL", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-04-18", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 1.5, + "camera": 5.1, + "battery": 4.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.151418", + "updated_at": "2026-06-19T00:43:44.151418" +} diff --git a/site/public/v1/smartphones/zenfone-5-2018-global-dual-sim-td-lte-version-a-ze620kl/score/index.json b/site/public/v1/smartphones/zenfone-5-2018-global-dual-sim-td-lte-version-a-ze620kl/score/index.json new file mode 100644 index 00000000000..62ec54da9ba --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5-2018-global-dual-sim-td-lte-version-a-ze620kl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 1.5, + "camera": 5.1, + "battery": 4.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-5-2018-global-dual-sim-td-lte-version-c-ze620kl/index.json b/site/public/v1/smartphones/zenfone-5-2018-global-dual-sim-td-lte-version-c-ze620kl/index.json new file mode 100644 index 00000000000..954ee3380d0 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5-2018-global-dual-sim-td-lte-version-c-ze620kl/index.json @@ -0,0 +1,76 @@ +{ + "id": 315, + "slug": "zenfone-5-2018-global-dual-sim-td-lte-version-c-ze620kl", + "name": "ZenFone 5 2018 Global Dual SIM TD-LTE Version C ZE620KL", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-04-18", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 1.5, + "camera": 5.1, + "battery": 4.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.151418", + "updated_at": "2026-06-19T00:43:44.151418" +} diff --git a/site/public/v1/smartphones/zenfone-5-2018-global-dual-sim-td-lte-version-c-ze620kl/score/index.json b/site/public/v1/smartphones/zenfone-5-2018-global-dual-sim-td-lte-version-c-ze620kl/score/index.json new file mode 100644 index 00000000000..62ec54da9ba --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5-2018-global-dual-sim-td-lte-version-c-ze620kl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 1.5, + "camera": 5.1, + "battery": 4.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-5-lite-2018-dual-sim-td-lte-version-e-32gb-zc600kl/index.json b/site/public/v1/smartphones/zenfone-5-lite-2018-dual-sim-td-lte-version-e-32gb-zc600kl/index.json new file mode 100644 index 00000000000..9a666700535 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5-lite-2018-dual-sim-td-lte-version-e-32gb-zc600kl/index.json @@ -0,0 +1,76 @@ +{ + "id": 316, + "slug": "zenfone-5-lite-2018-dual-sim-td-lte-version-e-32gb-zc600kl", + "name": "ZenFone 5 Lite 2018 Dual SIM TD-LTE Version E 32GB ZC600KL", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": null, + "camera": 6.3, + "battery": 4.5, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.151418", + "updated_at": "2026-06-19T00:43:44.151418" +} diff --git a/site/public/v1/smartphones/zenfone-5-lite-2018-dual-sim-td-lte-version-e-32gb-zc600kl/score/index.json b/site/public/v1/smartphones/zenfone-5-lite-2018-dual-sim-td-lte-version-e-32gb-zc600kl/score/index.json new file mode 100644 index 00000000000..5bf68f955fe --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5-lite-2018-dual-sim-td-lte-version-e-32gb-zc600kl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": null, + "camera": 6.3, + "battery": 4.5, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-5-lite-2018-global-dual-sim-td-lte-version-b-64gb-zc600kl/index.json b/site/public/v1/smartphones/zenfone-5-lite-2018-global-dual-sim-td-lte-version-b-64gb-zc600kl/index.json new file mode 100644 index 00000000000..132bee49cfb --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5-lite-2018-global-dual-sim-td-lte-version-b-64gb-zc600kl/index.json @@ -0,0 +1,76 @@ +{ + "id": 317, + "slug": "zenfone-5-lite-2018-global-dual-sim-td-lte-version-b-64gb-zc600kl", + "name": "ZenFone 5 Lite 2018 Global Dual SIM TD-LTE Version B 64GB ZC600KL", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.0, + "performance": 0.0, + "camera": 6.3, + "battery": 4.5, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.151418", + "updated_at": "2026-06-19T00:43:44.151418" +} diff --git a/site/public/v1/smartphones/zenfone-5-lite-2018-global-dual-sim-td-lte-version-b-64gb-zc600kl/score/index.json b/site/public/v1/smartphones/zenfone-5-lite-2018-global-dual-sim-td-lte-version-b-64gb-zc600kl/score/index.json new file mode 100644 index 00000000000..70abdd0095c --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5-lite-2018-global-dual-sim-td-lte-version-b-64gb-zc600kl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.0, + "performance": 0.0, + "camera": 6.3, + "battery": 4.5, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-5-selfie-2018-dual-sim-lte-am-version-c-64gb-zc600kl/index.json b/site/public/v1/smartphones/zenfone-5-selfie-2018-dual-sim-lte-am-version-c-64gb-zc600kl/index.json new file mode 100644 index 00000000000..50b3a821631 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5-selfie-2018-dual-sim-lte-am-version-c-64gb-zc600kl/index.json @@ -0,0 +1,76 @@ +{ + "id": 318, + "slug": "zenfone-5-selfie-2018-dual-sim-lte-am-version-c-64gb-zc600kl", + "name": "ZenFone 5 Selfie 2018 Dual SIM LTE AM Version C 64GB ZC600KL", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-10-03", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": null, + "camera": 6.3, + "battery": 4.5, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.151418", + "updated_at": "2026-06-19T00:43:44.151418" +} diff --git a/site/public/v1/smartphones/zenfone-5-selfie-2018-dual-sim-lte-am-version-c-64gb-zc600kl/score/index.json b/site/public/v1/smartphones/zenfone-5-selfie-2018-dual-sim-lte-am-version-c-64gb-zc600kl/score/index.json new file mode 100644 index 00000000000..5bf68f955fe --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5-selfie-2018-dual-sim-lte-am-version-c-64gb-zc600kl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": null, + "camera": 6.3, + "battery": 4.5, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-5-selfie-pro-2018-dual-sim-lte-a-am-version-c-128gb-zc600kl/index.json b/site/public/v1/smartphones/zenfone-5-selfie-pro-2018-dual-sim-lte-a-am-version-c-128gb-zc600kl/index.json new file mode 100644 index 00000000000..73fbc90bcec --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5-selfie-pro-2018-dual-sim-lte-a-am-version-c-128gb-zc600kl/index.json @@ -0,0 +1,76 @@ +{ + "id": 319, + "slug": "zenfone-5-selfie-pro-2018-dual-sim-lte-a-am-version-c-128gb-zc600kl", + "name": "ZenFone 5 Selfie Pro 2018 Dual SIM LTE-A AM Version C 128GB ZC600KL", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2018-10-03", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.0, + "performance": 0.0, + "camera": 6.3, + "battery": 4.5, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.151418", + "updated_at": "2026-06-19T00:43:44.151418" +} diff --git a/site/public/v1/smartphones/zenfone-5-selfie-pro-2018-dual-sim-lte-a-am-version-c-128gb-zc600kl/score/index.json b/site/public/v1/smartphones/zenfone-5-selfie-pro-2018-dual-sim-lte-a-am-version-c-128gb-zc600kl/score/index.json new file mode 100644 index 00000000000..70abdd0095c --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5-selfie-pro-2018-dual-sim-lte-a-am-version-c-128gb-zc600kl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.0, + "performance": 0.0, + "camera": 6.3, + "battery": 4.5, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-5q-2018-dual-sim-lte-am-version-c-32gb-zc600kl/index.json b/site/public/v1/smartphones/zenfone-5q-2018-dual-sim-lte-am-version-c-32gb-zc600kl/index.json new file mode 100644 index 00000000000..df5ed49ebc5 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5q-2018-dual-sim-lte-am-version-c-32gb-zc600kl/index.json @@ -0,0 +1,76 @@ +{ + "id": 320, + "slug": "zenfone-5q-2018-dual-sim-lte-am-version-c-32gb-zc600kl", + "name": "ZenFone 5Q 2018 Dual SIM LTE AM Version C 32GB ZC600KL", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": null, + "camera": 6.3, + "battery": 4.5, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.152418", + "updated_at": "2026-06-19T00:43:44.152418" +} diff --git a/site/public/v1/smartphones/zenfone-5q-2018-dual-sim-lte-am-version-c-32gb-zc600kl/score/index.json b/site/public/v1/smartphones/zenfone-5q-2018-dual-sim-lte-am-version-c-32gb-zc600kl/score/index.json new file mode 100644 index 00000000000..5bf68f955fe --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5q-2018-dual-sim-lte-am-version-c-32gb-zc600kl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.7, + "performance": null, + "camera": 6.3, + "battery": 4.5, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-5q-dual-sim-td-lte-apac-version-d-64gb-zc600kl-zenfone-5-lite/index.json b/site/public/v1/smartphones/zenfone-5q-dual-sim-td-lte-apac-version-d-64gb-zc600kl-zenfone-5-lite/index.json new file mode 100644 index 00000000000..ed2c9bdd148 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5q-dual-sim-td-lte-apac-version-d-64gb-zc600kl-zenfone-5-lite/index.json @@ -0,0 +1,76 @@ +{ + "id": 321, + "slug": "zenfone-5q-dual-sim-td-lte-apac-version-d-64gb-zc600kl-zenfone-5-lite", + "name": "ZenFone 5Q Dual SIM TD-LTE APAC Version D 64GB ZC600KL / ZenFone 5 Lite", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2018-04-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.0, + "performance": 0.0, + "camera": 6.3, + "battery": 4.5, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.152418", + "updated_at": "2026-06-19T00:43:44.152418" +} diff --git a/site/public/v1/smartphones/zenfone-5q-dual-sim-td-lte-apac-version-d-64gb-zc600kl-zenfone-5-lite/score/index.json b/site/public/v1/smartphones/zenfone-5q-dual-sim-td-lte-apac-version-d-64gb-zc600kl-zenfone-5-lite/score/index.json new file mode 100644 index 00000000000..70abdd0095c --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5q-dual-sim-td-lte-apac-version-d-64gb-zc600kl-zenfone-5-lite/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.0, + "performance": 0.0, + "camera": 6.3, + "battery": 4.5, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-5q-dual-sim-td-lte-tw-jp-version-a-64gb-zc600kl-zenfone-5-lite/index.json b/site/public/v1/smartphones/zenfone-5q-dual-sim-td-lte-tw-jp-version-a-64gb-zc600kl-zenfone-5-lite/index.json new file mode 100644 index 00000000000..09c9e1f59c3 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5q-dual-sim-td-lte-tw-jp-version-a-64gb-zc600kl-zenfone-5-lite/index.json @@ -0,0 +1,76 @@ +{ + "id": 322, + "slug": "zenfone-5q-dual-sim-td-lte-tw-jp-version-a-64gb-zc600kl-zenfone-5-lite", + "name": "ZenFone 5Q Dual SIM TD-LTE TW JP Version A 64GB ZC600KL / ZenFone 5 Lite", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 119, + "slug": "snapdragon-630", + "name": "Snapdragon 630", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 508", + "url": "/v1/socs/snapdragon-630" + }, + "release_date": "2018-03-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.98, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 404 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 168.3, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.1", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.0, + "performance": 0.0, + "camera": 6.3, + "battery": 4.5, + "display": 45.4, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.152418", + "updated_at": "2026-06-19T00:43:44.152418" +} diff --git a/site/public/v1/smartphones/zenfone-5q-dual-sim-td-lte-tw-jp-version-a-64gb-zc600kl-zenfone-5-lite/score/index.json b/site/public/v1/smartphones/zenfone-5q-dual-sim-td-lte-tw-jp-version-a-64gb-zc600kl-zenfone-5-lite/score/index.json new file mode 100644 index 00000000000..70abdd0095c --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5q-dual-sim-td-lte-tw-jp-version-a-64gb-zc600kl-zenfone-5-lite/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.0, + "performance": 0.0, + "camera": 6.3, + "battery": 4.5, + "display": 45.4, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-5z-2018-dual-sim-td-lte-cn-version-c-zs620kl-64gb/index.json b/site/public/v1/smartphones/zenfone-5z-2018-dual-sim-td-lte-cn-version-c-zs620kl-64gb/index.json new file mode 100644 index 00000000000..488a4c39a90 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5z-2018-dual-sim-td-lte-cn-version-c-zs620kl-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 323, + "slug": "zenfone-5z-2018-dual-sim-td-lte-cn-version-c-zs620kl-64gb", + "name": "ZenFone 5Z 2018 Dual SIM TD-LTE CN Version C ZS620KL 64GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 11.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 1.5, + "camera": 5.0, + "battery": 4.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.152418", + "updated_at": "2026-06-19T00:43:44.152418" +} diff --git a/site/public/v1/smartphones/zenfone-5z-2018-dual-sim-td-lte-cn-version-c-zs620kl-64gb/score/index.json b/site/public/v1/smartphones/zenfone-5z-2018-dual-sim-td-lte-cn-version-c-zs620kl-64gb/score/index.json new file mode 100644 index 00000000000..61d31a478c7 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5z-2018-dual-sim-td-lte-cn-version-c-zs620kl-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 1.5, + "camera": 5.0, + "battery": 4.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-5z-2018-dual-sim-td-lte-in-zs621kl-256gb/index.json b/site/public/v1/smartphones/zenfone-5z-2018-dual-sim-td-lte-in-zs621kl-256gb/index.json new file mode 100644 index 00000000000..88dbd2ebc6d --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5z-2018-dual-sim-td-lte-in-zs621kl-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 324, + "slug": "zenfone-5z-2018-dual-sim-td-lte-in-zs621kl-256gb", + "name": "ZenFone 5Z 2018 Dual SIM TD-LTE IN ZS621KL 256GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 11.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 3.0, + "camera": 5.0, + "battery": 4.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.152418", + "updated_at": "2026-06-19T00:43:44.152418" +} diff --git a/site/public/v1/smartphones/zenfone-5z-2018-dual-sim-td-lte-in-zs621kl-256gb/score/index.json b/site/public/v1/smartphones/zenfone-5z-2018-dual-sim-td-lte-in-zs621kl-256gb/score/index.json new file mode 100644 index 00000000000..55355990f6b --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5z-2018-dual-sim-td-lte-in-zs621kl-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 3.0, + "camera": 5.0, + "battery": 4.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-5z-2018-dual-sim-td-lte-in-zs621kl-64gb/index.json b/site/public/v1/smartphones/zenfone-5z-2018-dual-sim-td-lte-in-zs621kl-64gb/index.json new file mode 100644 index 00000000000..d44ff29bda2 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5z-2018-dual-sim-td-lte-in-zs621kl-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 325, + "slug": "zenfone-5z-2018-dual-sim-td-lte-in-zs621kl-64gb", + "name": "ZenFone 5Z 2018 Dual SIM TD-LTE IN ZS621KL 64GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-07-16", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 11.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 1.5, + "camera": 5.0, + "battery": 4.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.152418", + "updated_at": "2026-06-19T00:43:44.152418" +} diff --git a/site/public/v1/smartphones/zenfone-5z-2018-dual-sim-td-lte-in-zs621kl-64gb/score/index.json b/site/public/v1/smartphones/zenfone-5z-2018-dual-sim-td-lte-in-zs621kl-64gb/score/index.json new file mode 100644 index 00000000000..61d31a478c7 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5z-2018-dual-sim-td-lte-in-zs621kl-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 1.5, + "camera": 5.0, + "battery": 4.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-5z-2018-dual-sim-td-lte-version-b-zs620kl-64gb/index.json b/site/public/v1/smartphones/zenfone-5z-2018-dual-sim-td-lte-version-b-zs620kl-64gb/index.json new file mode 100644 index 00000000000..3cb3eda5b38 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5z-2018-dual-sim-td-lte-version-b-zs620kl-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 326, + "slug": "zenfone-5z-2018-dual-sim-td-lte-version-b-zs620kl-64gb", + "name": "ZenFone 5Z 2018 Dual SIM TD-LTE Version B ZS620KL 64GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-08-11", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 11.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 1.5, + "camera": 5.0, + "battery": 4.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.152418", + "updated_at": "2026-06-19T00:43:44.152418" +} diff --git a/site/public/v1/smartphones/zenfone-5z-2018-dual-sim-td-lte-version-b-zs620kl-64gb/score/index.json b/site/public/v1/smartphones/zenfone-5z-2018-dual-sim-td-lte-version-b-zs620kl-64gb/score/index.json new file mode 100644 index 00000000000..61d31a478c7 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5z-2018-dual-sim-td-lte-version-b-zs620kl-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 1.5, + "camera": 5.0, + "battery": 4.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-5z-2018-global-dual-sim-td-lte-version-a-zs620kl-256gb/index.json b/site/public/v1/smartphones/zenfone-5z-2018-global-dual-sim-td-lte-version-a-zs620kl-256gb/index.json new file mode 100644 index 00000000000..680704f8958 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5z-2018-global-dual-sim-td-lte-version-a-zs620kl-256gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 327, + "slug": "zenfone-5z-2018-global-dual-sim-td-lte-version-a-zs620kl-256gb", + "name": "ZenFone 5Z 2018 Global Dual SIM TD-LTE Version A ZS620KL 256GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-08-02", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 11.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 3.0, + "camera": 5.0, + "battery": 4.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.152418", + "updated_at": "2026-06-19T00:43:44.152418" +} diff --git a/site/public/v1/smartphones/zenfone-5z-2018-global-dual-sim-td-lte-version-a-zs620kl-256gb/score/index.json b/site/public/v1/smartphones/zenfone-5z-2018-global-dual-sim-td-lte-version-a-zs620kl-256gb/score/index.json new file mode 100644 index 00000000000..55355990f6b --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5z-2018-global-dual-sim-td-lte-version-a-zs620kl-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.4, + "performance": 3.0, + "camera": 5.0, + "battery": 4.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-5z-2018-global-dual-sim-td-lte-version-a-zs620kl-64gb/index.json b/site/public/v1/smartphones/zenfone-5z-2018-global-dual-sim-td-lte-version-a-zs620kl-64gb/index.json new file mode 100644 index 00000000000..16444745d9d --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5z-2018-global-dual-sim-td-lte-version-a-zs620kl-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 328, + "slug": "zenfone-5z-2018-global-dual-sim-td-lte-version-a-zs620kl-64gb", + "name": "ZenFone 5Z 2018 Global Dual SIM TD-LTE Version A ZS620KL 64GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 123, + "slug": "snapdragon-845", + "name": "Snapdragon 845", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 10.0, + "gpu_name": "Adreno 630", + "url": "/v1/socs/snapdragon-845" + }, + "release_date": "2018-08-02", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 11.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 165.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 1.5, + "camera": 5.0, + "battery": 4.5, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.153418", + "updated_at": "2026-06-19T00:43:44.153418" +} diff --git a/site/public/v1/smartphones/zenfone-5z-2018-global-dual-sim-td-lte-version-a-zs620kl-64gb/score/index.json b/site/public/v1/smartphones/zenfone-5z-2018-global-dual-sim-td-lte-version-a-zs620kl-64gb/score/index.json new file mode 100644 index 00000000000..61d31a478c7 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-5z-2018-global-dual-sim-td-lte-version-a-zs620kl-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 14.1, + "performance": 1.5, + "camera": 5.0, + "battery": 4.5, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-6-2019-dual-sim-td-lte-am-version-c-zs630kl-256gb/index.json b/site/public/v1/smartphones/zenfone-6-2019-dual-sim-td-lte-am-version-c-zs630kl-256gb/index.json new file mode 100644 index 00000000000..308f7e82a54 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-6-2019-dual-sim-td-lte-am-version-c-zs630kl-256gb/index.json @@ -0,0 +1,72 @@ +{ + "id": 365, + "slug": "zenfone-6-2019-dual-sim-td-lte-am-version-c-zs630kl-256gb", + "name": "ZenFone 6 2019 Dual SIM TD-LTE AM Version C ZS630KL 256GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-26", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.157419", + "updated_at": "2026-06-19T00:43:44.157419" +} diff --git a/site/public/v1/smartphones/zenfone-6-2019-dual-sim-td-lte-am-version-c-zs630kl-256gb/score/index.json b/site/public/v1/smartphones/zenfone-6-2019-dual-sim-td-lte-am-version-c-zs630kl-256gb/score/index.json new file mode 100644 index 00000000000..19106bdf2b9 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-6-2019-dual-sim-td-lte-am-version-c-zs630kl-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-6-2019-dual-sim-td-lte-am-version-c-zs630kl-64gb/index.json b/site/public/v1/smartphones/zenfone-6-2019-dual-sim-td-lte-am-version-c-zs630kl-64gb/index.json new file mode 100644 index 00000000000..145d990d9fd --- /dev/null +++ b/site/public/v1/smartphones/zenfone-6-2019-dual-sim-td-lte-am-version-c-zs630kl-64gb/index.json @@ -0,0 +1,72 @@ +{ + "id": 366, + "slug": "zenfone-6-2019-dual-sim-td-lte-am-version-c-zs630kl-64gb", + "name": "ZenFone 6 2019 Dual SIM TD-LTE AM Version C ZS630KL 64GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-26", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.157419", + "updated_at": "2026-06-19T00:43:44.157419" +} diff --git a/site/public/v1/smartphones/zenfone-6-2019-dual-sim-td-lte-am-version-c-zs630kl-64gb/score/index.json b/site/public/v1/smartphones/zenfone-6-2019-dual-sim-td-lte-am-version-c-zs630kl-64gb/score/index.json new file mode 100644 index 00000000000..6e7dc14f334 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-6-2019-dual-sim-td-lte-am-version-c-zs630kl-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-128gb/index.json b/site/public/v1/smartphones/zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-128gb/index.json new file mode 100644 index 00000000000..2b1d3908a23 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-128gb/index.json @@ -0,0 +1,72 @@ +{ + "id": 367, + "slug": "zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-128gb", + "name": "ZenFone 6 2019 Dual SIM TD-LTE APAC Version B ZS630KL 128GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.158424", + "updated_at": "2026-06-19T00:43:44.158424" +} diff --git a/site/public/v1/smartphones/zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-128gb/score/index.json b/site/public/v1/smartphones/zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-128gb/score/index.json new file mode 100644 index 00000000000..6e7dc14f334 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-256gb/index.json b/site/public/v1/smartphones/zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-256gb/index.json new file mode 100644 index 00000000000..e06e0dd9a3f --- /dev/null +++ b/site/public/v1/smartphones/zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-256gb/index.json @@ -0,0 +1,72 @@ +{ + "id": 368, + "slug": "zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-256gb", + "name": "ZenFone 6 2019 Dual SIM TD-LTE APAC Version B ZS630KL 256GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.158424", + "updated_at": "2026-06-19T00:43:44.158424" +} diff --git a/site/public/v1/smartphones/zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-256gb/score/index.json b/site/public/v1/smartphones/zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-256gb/score/index.json new file mode 100644 index 00000000000..19106bdf2b9 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-64gb/index.json b/site/public/v1/smartphones/zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-64gb/index.json new file mode 100644 index 00000000000..21961b7977c --- /dev/null +++ b/site/public/v1/smartphones/zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-64gb/index.json @@ -0,0 +1,72 @@ +{ + "id": 369, + "slug": "zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-64gb", + "name": "ZenFone 6 2019 Dual SIM TD-LTE APAC Version B ZS630KL 64GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.158424", + "updated_at": "2026-06-19T00:43:44.158424" +} diff --git a/site/public/v1/smartphones/zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-64gb/score/index.json b/site/public/v1/smartphones/zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-64gb/score/index.json new file mode 100644 index 00000000000..6e7dc14f334 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-6-2019-dual-sim-td-lte-apac-version-b-zs630kl-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-6-2019-edition-30-dual-sim-td-lte-am-version-c-zs630kl-512gb/index.json b/site/public/v1/smartphones/zenfone-6-2019-edition-30-dual-sim-td-lte-am-version-c-zs630kl-512gb/index.json new file mode 100644 index 00000000000..733be2f5e5b --- /dev/null +++ b/site/public/v1/smartphones/zenfone-6-2019-edition-30-dual-sim-td-lte-am-version-c-zs630kl-512gb/index.json @@ -0,0 +1,72 @@ +{ + "id": 370, + "slug": "zenfone-6-2019-edition-30-dual-sim-td-lte-am-version-c-zs630kl-512gb", + "name": "ZenFone 6 2019 Edition 30 Dual SIM TD-LTE AM Version C ZS630KL 512GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 6.0, + "camera": 16.5, + "battery": 30.6, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.158424", + "updated_at": "2026-06-19T00:43:44.158424" +} diff --git a/site/public/v1/smartphones/zenfone-6-2019-edition-30-dual-sim-td-lte-am-version-c-zs630kl-512gb/score/index.json b/site/public/v1/smartphones/zenfone-6-2019-edition-30-dual-sim-td-lte-am-version-c-zs630kl-512gb/score/index.json new file mode 100644 index 00000000000..5422d9aef1d --- /dev/null +++ b/site/public/v1/smartphones/zenfone-6-2019-edition-30-dual-sim-td-lte-am-version-c-zs630kl-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 6.0, + "camera": 16.5, + "battery": 30.6, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-6-2019-edition-30-dual-sim-td-lte-apac-version-b-zs630kl-512gb/index.json b/site/public/v1/smartphones/zenfone-6-2019-edition-30-dual-sim-td-lte-apac-version-b-zs630kl-512gb/index.json new file mode 100644 index 00000000000..efa031cbaa0 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-6-2019-edition-30-dual-sim-td-lte-apac-version-b-zs630kl-512gb/index.json @@ -0,0 +1,72 @@ +{ + "id": 371, + "slug": "zenfone-6-2019-edition-30-dual-sim-td-lte-apac-version-b-zs630kl-512gb", + "name": "ZenFone 6 2019 Edition 30 Dual SIM TD-LTE APAC Version B ZS630KL 512GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 6.0, + "camera": 16.5, + "battery": 30.6, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.158424", + "updated_at": "2026-06-19T00:43:44.158424" +} diff --git a/site/public/v1/smartphones/zenfone-6-2019-edition-30-dual-sim-td-lte-apac-version-b-zs630kl-512gb/score/index.json b/site/public/v1/smartphones/zenfone-6-2019-edition-30-dual-sim-td-lte-apac-version-b-zs630kl-512gb/score/index.json new file mode 100644 index 00000000000..5422d9aef1d --- /dev/null +++ b/site/public/v1/smartphones/zenfone-6-2019-edition-30-dual-sim-td-lte-apac-version-b-zs630kl-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 6.0, + "camera": 16.5, + "battery": 30.6, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-6-2019-edition-30-global-dual-sim-td-lte-version-a-zs630kl-512gb/index.json b/site/public/v1/smartphones/zenfone-6-2019-edition-30-global-dual-sim-td-lte-version-a-zs630kl-512gb/index.json new file mode 100644 index 00000000000..835252af65c --- /dev/null +++ b/site/public/v1/smartphones/zenfone-6-2019-edition-30-global-dual-sim-td-lte-version-a-zs630kl-512gb/index.json @@ -0,0 +1,72 @@ +{ + "id": 372, + "slug": "zenfone-6-2019-edition-30-global-dual-sim-td-lte-version-a-zs630kl-512gb", + "name": "ZenFone 6 2019 Edition 30 Global Dual SIM TD-LTE Version A ZS630KL 512GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 512 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 6.0, + "camera": 16.5, + "battery": 30.6, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.158424", + "updated_at": "2026-06-19T00:43:44.158424" +} diff --git a/site/public/v1/smartphones/zenfone-6-2019-edition-30-global-dual-sim-td-lte-version-a-zs630kl-512gb/score/index.json b/site/public/v1/smartphones/zenfone-6-2019-edition-30-global-dual-sim-td-lte-version-a-zs630kl-512gb/score/index.json new file mode 100644 index 00000000000..5422d9aef1d --- /dev/null +++ b/site/public/v1/smartphones/zenfone-6-2019-edition-30-global-dual-sim-td-lte-version-a-zs630kl-512gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 6.0, + "camera": 16.5, + "battery": 30.6, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-128gb-6z/index.json b/site/public/v1/smartphones/zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-128gb-6z/index.json new file mode 100644 index 00000000000..a3694e5dbdf --- /dev/null +++ b/site/public/v1/smartphones/zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-128gb-6z/index.json @@ -0,0 +1,72 @@ +{ + "id": 373, + "slug": "zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-128gb-6z", + "name": "ZenFone 6 2019 Global Dual SIM TD-LTE Version A ZS630KL 128GB / 6z", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-05-26", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.158424", + "updated_at": "2026-06-19T00:43:44.158424" +} diff --git a/site/public/v1/smartphones/zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-128gb-6z/score/index.json b/site/public/v1/smartphones/zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-128gb-6z/score/index.json new file mode 100644 index 00000000000..6e7dc14f334 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-128gb-6z/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-256gb-6z/index.json b/site/public/v1/smartphones/zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-256gb-6z/index.json new file mode 100644 index 00000000000..6f15bb03ebc --- /dev/null +++ b/site/public/v1/smartphones/zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-256gb-6z/index.json @@ -0,0 +1,72 @@ +{ + "id": 374, + "slug": "zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-256gb-6z", + "name": "ZenFone 6 2019 Global Dual SIM TD-LTE Version A ZS630KL 256GB / 6z", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-07-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.159423", + "updated_at": "2026-06-19T00:43:44.159423" +} diff --git a/site/public/v1/smartphones/zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-256gb-6z/score/index.json b/site/public/v1/smartphones/zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-256gb-6z/score/index.json new file mode 100644 index 00000000000..19106bdf2b9 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-256gb-6z/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 3.0, + "camera": 16.5, + "battery": 30.6, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-64gb-6z/index.json b/site/public/v1/smartphones/zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-64gb-6z/index.json new file mode 100644 index 00000000000..3c943c2f077 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-64gb-6z/index.json @@ -0,0 +1,72 @@ +{ + "id": 375, + "slug": "zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-64gb-6z", + "name": "ZenFone 6 2019 Global Dual SIM TD-LTE Version A ZS630KL 64GB / 6z", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 130, + "slug": "snapdragon-855", + "name": "Snapdragon 855", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 640", + "url": "/v1/socs/snapdragon-855" + }, + "release_date": "2019-06-19", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.39, + "resolution": "1080x2340", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 48.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 18.0, + "charging_wireless_w": null, + "weight_g": 190.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "9.0", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.159423", + "updated_at": "2026-06-19T00:43:44.159423" +} diff --git a/site/public/v1/smartphones/zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-64gb-6z/score/index.json b/site/public/v1/smartphones/zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-64gb-6z/score/index.json new file mode 100644 index 00000000000..6e7dc14f334 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-6-2019-global-dual-sim-td-lte-version-a-zs630kl-64gb-6z/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.5, + "performance": 1.5, + "camera": 16.5, + "battery": 30.6, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-7-2020-premium-edition-global-dual-sim-td-lte-zs670ks-128gb/index.json b/site/public/v1/smartphones/zenfone-7-2020-premium-edition-global-dual-sim-td-lte-zs670ks-128gb/index.json new file mode 100644 index 00000000000..884fd9a4568 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-7-2020-premium-edition-global-dual-sim-td-lte-zs670ks-128gb/index.json @@ -0,0 +1,73 @@ +{ + "id": 388, + "slug": "zenfone-7-2020-premium-edition-global-dual-sim-td-lte-zs670ks-128gb", + "name": "ZenFone 7 2020 Premium Edition Global Dual SIM TD-LTE ZS670KS 128GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-09-19", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + } + ], + "battery_mah": 5000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 230.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.3, + "performance": 3.0, + "camera": 21.7, + "battery": 32.9, + "display": 39.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.161424", + "updated_at": "2026-06-19T00:43:44.161424" +} diff --git a/site/public/v1/smartphones/zenfone-7-2020-premium-edition-global-dual-sim-td-lte-zs670ks-128gb/score/index.json b/site/public/v1/smartphones/zenfone-7-2020-premium-edition-global-dual-sim-td-lte-zs670ks-128gb/score/index.json new file mode 100644 index 00000000000..41af9f4fc68 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-7-2020-premium-edition-global-dual-sim-td-lte-zs670ks-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.3, + "performance": 3.0, + "camera": 21.7, + "battery": 32.9, + "display": 39.5, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-7-2020-standard-edition-global-dual-sim-td-lte-zs670ks-128gb/index.json b/site/public/v1/smartphones/zenfone-7-2020-standard-edition-global-dual-sim-td-lte-zs670ks-128gb/index.json new file mode 100644 index 00000000000..e5a679d7781 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-7-2020-standard-edition-global-dual-sim-td-lte-zs670ks-128gb/index.json @@ -0,0 +1,73 @@ +{ + "id": 390, + "slug": "zenfone-7-2020-standard-edition-global-dual-sim-td-lte-zs670ks-128gb", + "name": "ZenFone 7 2020 Standard Edition Global Dual SIM TD-LTE ZS670KS 128GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 139, + "slug": "snapdragon-865", + "name": "Snapdragon 865", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865" + }, + "release_date": "2020-09-19", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + } + ], + "battery_mah": 5000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 230.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 1.5, + "camera": 21.7, + "battery": 32.9, + "display": 39.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.162423", + "updated_at": "2026-06-19T00:43:44.162423" +} diff --git a/site/public/v1/smartphones/zenfone-7-2020-standard-edition-global-dual-sim-td-lte-zs670ks-128gb/score/index.json b/site/public/v1/smartphones/zenfone-7-2020-standard-edition-global-dual-sim-td-lte-zs670ks-128gb/score/index.json new file mode 100644 index 00000000000..86d3e92a097 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-7-2020-standard-edition-global-dual-sim-td-lte-zs670ks-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 23.9, + "performance": 1.5, + "camera": 21.7, + "battery": 32.9, + "display": 39.5, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-7-pro-2020-global-dual-sim-td-lte-zs671ks-256gb/index.json b/site/public/v1/smartphones/zenfone-7-pro-2020-global-dual-sim-td-lte-zs671ks-256gb/index.json new file mode 100644 index 00000000000..5b281447e2e --- /dev/null +++ b/site/public/v1/smartphones/zenfone-7-pro-2020-global-dual-sim-td-lte-zs671ks-256gb/index.json @@ -0,0 +1,73 @@ +{ + "id": 392, + "slug": "zenfone-7-pro-2020-global-dual-sim-td-lte-zs671ks-256gb", + "name": "ZenFone 7 Pro 2020 Global Dual SIM TD-LTE ZS671KS 256GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 148, + "slug": "snapdragon-865-plus", + "name": "Snapdragon 865+", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 7.0, + "gpu_name": "Adreno 650", + "url": "/v1/socs/snapdragon-865-plus" + }, + "release_date": "2020-09-19", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + } + ], + "battery_mah": 5000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 230.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "10", + "connectivity": { + "bluetooth": "Bluetooth 5.1", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 3.4, + "camera": 21.7, + "battery": 32.9, + "display": 39.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.162423", + "updated_at": "2026-06-19T00:43:44.162423" +} diff --git a/site/public/v1/smartphones/zenfone-7-pro-2020-global-dual-sim-td-lte-zs671ks-256gb/score/index.json b/site/public/v1/smartphones/zenfone-7-pro-2020-global-dual-sim-td-lte-zs671ks-256gb/score/index.json new file mode 100644 index 00000000000..37f048b6bb7 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-7-pro-2020-global-dual-sim-td-lte-zs671ks-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.4, + "performance": 3.4, + "camera": 21.7, + "battery": 32.9, + "display": 39.5, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-8-2021-premium-edition-global-dual-sim-td-lte-zs590ks-256gb/index.json b/site/public/v1/smartphones/zenfone-8-2021-premium-edition-global-dual-sim-td-lte-zs590ks-256gb/index.json new file mode 100644 index 00000000000..6e47f7028d9 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-8-2021-premium-edition-global-dual-sim-td-lte-zs590ks-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 422, + "slug": "zenfone-8-2021-premium-edition-global-dual-sim-td-lte-zs590ks-256gb", + "name": "ZenFone 8 2021 Premium Edition Global Dual SIM TD-LTE ZS590KS 256GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-05-01", + "msrp_usd": null, + "ram_gb": 12, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.9, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 446 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.0, + "performance": 9.4, + "camera": 21.7, + "battery": 27.8, + "display": 57.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.166424", + "updated_at": "2026-06-19T00:43:44.166424" +} diff --git a/site/public/v1/smartphones/zenfone-8-2021-premium-edition-global-dual-sim-td-lte-zs590ks-256gb/score/index.json b/site/public/v1/smartphones/zenfone-8-2021-premium-edition-global-dual-sim-td-lte-zs590ks-256gb/score/index.json new file mode 100644 index 00000000000..e354ce96a52 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-8-2021-premium-edition-global-dual-sim-td-lte-zs590ks-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.0, + "performance": 9.4, + "camera": 21.7, + "battery": 27.8, + "display": 57.1, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-8-2021-standard-edition-dual-sim-td-lte-am-zs590ks-128gb/index.json b/site/public/v1/smartphones/zenfone-8-2021-standard-edition-dual-sim-td-lte-am-zs590ks-128gb/index.json new file mode 100644 index 00000000000..db0a5449670 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-8-2021-standard-edition-dual-sim-td-lte-am-zs590ks-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 424, + "slug": "zenfone-8-2021-standard-edition-dual-sim-td-lte-am-zs590ks-128gb", + "name": "ZenFone 8 2021 Standard Edition Dual SIM TD-LTE AM ZS590KS 128GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-06-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.9, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 446 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.2, + "performance": 6.4, + "camera": 21.7, + "battery": 27.8, + "display": 57.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.166424", + "updated_at": "2026-06-19T00:43:44.166424" +} diff --git a/site/public/v1/smartphones/zenfone-8-2021-standard-edition-dual-sim-td-lte-am-zs590ks-128gb/score/index.json b/site/public/v1/smartphones/zenfone-8-2021-standard-edition-dual-sim-td-lte-am-zs590ks-128gb/score/index.json new file mode 100644 index 00000000000..2ec25f50c80 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-8-2021-standard-edition-dual-sim-td-lte-am-zs590ks-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.2, + "performance": 6.4, + "camera": 21.7, + "battery": 27.8, + "display": 57.1, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-8-2021-standard-edition-dual-sim-td-lte-am-zs590ks-256gb/index.json b/site/public/v1/smartphones/zenfone-8-2021-standard-edition-dual-sim-td-lte-am-zs590ks-256gb/index.json new file mode 100644 index 00000000000..c283ae1c508 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-8-2021-standard-edition-dual-sim-td-lte-am-zs590ks-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 425, + "slug": "zenfone-8-2021-standard-edition-dual-sim-td-lte-am-zs590ks-256gb", + "name": "ZenFone 8 2021 Standard Edition Dual SIM TD-LTE AM ZS590KS 256GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-06-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.9, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 446 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.2, + "performance": 6.4, + "camera": 21.7, + "battery": 27.8, + "display": 57.1, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.166424", + "updated_at": "2026-06-19T00:43:44.166424" +} diff --git a/site/public/v1/smartphones/zenfone-8-2021-standard-edition-dual-sim-td-lte-am-zs590ks-256gb/score/index.json b/site/public/v1/smartphones/zenfone-8-2021-standard-edition-dual-sim-td-lte-am-zs590ks-256gb/score/index.json new file mode 100644 index 00000000000..2ec25f50c80 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-8-2021-standard-edition-dual-sim-td-lte-am-zs590ks-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.2, + "performance": 6.4, + "camera": 21.7, + "battery": 27.8, + "display": 57.1, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-8-2021-standard-edition-global-dual-sim-td-lte-zs590ks-128gb/index.json b/site/public/v1/smartphones/zenfone-8-2021-standard-edition-global-dual-sim-td-lte-zs590ks-128gb/index.json new file mode 100644 index 00000000000..2b484ae3c10 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-8-2021-standard-edition-global-dual-sim-td-lte-zs590ks-128gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 426, + "slug": "zenfone-8-2021-standard-edition-global-dual-sim-td-lte-zs590ks-128gb", + "name": "ZenFone 8 2021 Standard Edition Global Dual SIM TD-LTE ZS590KS 128GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-05-01", + "msrp_usd": 600, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.9, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 446 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.2, + "performance": 6.4, + "camera": 21.7, + "battery": 27.8, + "display": 57.1, + "value": 52.6 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.167425", + "updated_at": "2026-06-19T00:43:44.167425" +} diff --git a/site/public/v1/smartphones/zenfone-8-2021-standard-edition-global-dual-sim-td-lte-zs590ks-128gb/score/index.json b/site/public/v1/smartphones/zenfone-8-2021-standard-edition-global-dual-sim-td-lte-zs590ks-128gb/score/index.json new file mode 100644 index 00000000000..11639ea628e --- /dev/null +++ b/site/public/v1/smartphones/zenfone-8-2021-standard-edition-global-dual-sim-td-lte-zs590ks-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.2, + "performance": 6.4, + "camera": 21.7, + "battery": 27.8, + "display": 57.1, + "value": 52.6 +} diff --git a/site/public/v1/smartphones/zenfone-8-2021-standard-edition-global-dual-sim-td-lte-zs590ks-256gb/index.json b/site/public/v1/smartphones/zenfone-8-2021-standard-edition-global-dual-sim-td-lte-zs590ks-256gb/index.json new file mode 100644 index 00000000000..435672985f8 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-8-2021-standard-edition-global-dual-sim-td-lte-zs590ks-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 427, + "slug": "zenfone-8-2021-standard-edition-global-dual-sim-td-lte-zs590ks-256gb", + "name": "ZenFone 8 2021 Standard Edition Global Dual SIM TD-LTE ZS590KS 256GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-05-01", + "msrp_usd": 999, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.9, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 446 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 28.2, + "performance": 6.4, + "camera": 21.7, + "battery": 27.8, + "display": 57.1, + "value": 37.2 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.167425", + "updated_at": "2026-06-19T00:43:44.167425" +} diff --git a/site/public/v1/smartphones/zenfone-8-2021-standard-edition-global-dual-sim-td-lte-zs590ks-256gb/score/index.json b/site/public/v1/smartphones/zenfone-8-2021-standard-edition-global-dual-sim-td-lte-zs590ks-256gb/score/index.json new file mode 100644 index 00000000000..612d1c6fe27 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-8-2021-standard-edition-global-dual-sim-td-lte-zs590ks-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 28.2, + "performance": 6.4, + "camera": 21.7, + "battery": 27.8, + "display": 57.1, + "value": 37.2 +} diff --git a/site/public/v1/smartphones/zenfone-8-2021-top-edition-global-dual-sim-td-lte-zs590ks-256gb/index.json b/site/public/v1/smartphones/zenfone-8-2021-top-edition-global-dual-sim-td-lte-zs590ks-256gb/index.json new file mode 100644 index 00000000000..26aa3de85c3 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-8-2021-top-edition-global-dual-sim-td-lte-zs590ks-256gb/index.json @@ -0,0 +1,77 @@ +{ + "id": 429, + "slug": "zenfone-8-2021-top-edition-global-dual-sim-td-lte-zs590ks-256gb", + "name": "ZenFone 8 2021 Top Edition Global Dual SIM TD-LTE ZS590KS 256GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-05-01", + "msrp_usd": 829, + "ram_gb": 16, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 5.9, + "resolution": "1080x2400", + "refresh_hz": 120, + "type": "AM-OLED display", + "ppi": 446 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + }, + { + "type": "selfie", + "mp": 12.2 + } + ], + "battery_mah": 4000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 169.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 29.8, + "performance": 12.4, + "camera": 21.7, + "battery": 27.8, + "display": 57.1, + "value": 44.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.167425", + "updated_at": "2026-06-19T00:43:44.167425" +} diff --git a/site/public/v1/smartphones/zenfone-8-2021-top-edition-global-dual-sim-td-lte-zs590ks-256gb/score/index.json b/site/public/v1/smartphones/zenfone-8-2021-top-edition-global-dual-sim-td-lte-zs590ks-256gb/score/index.json new file mode 100644 index 00000000000..d824bfe7551 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-8-2021-top-edition-global-dual-sim-td-lte-zs590ks-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 29.8, + "performance": 12.4, + "camera": 21.7, + "battery": 27.8, + "display": 57.1, + "value": 44.5 +} diff --git a/site/public/v1/smartphones/zenfone-8-flip-2021-global-dual-sim-td-lte-zs672ks-128gb/index.json b/site/public/v1/smartphones/zenfone-8-flip-2021-global-dual-sim-td-lte-zs672ks-128gb/index.json new file mode 100644 index 00000000000..be0013516f5 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-8-flip-2021-global-dual-sim-td-lte-zs672ks-128gb/index.json @@ -0,0 +1,73 @@ +{ + "id": 431, + "slug": "zenfone-8-flip-2021-global-dual-sim-td-lte-zs672ks-128gb", + "name": "ZenFone 8 Flip 2021 Global Dual SIM TD-LTE ZS672KS 128GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-05-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + } + ], + "battery_mah": 5000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 230.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 6.4, + "camera": 21.7, + "battery": 42.9, + "display": 39.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.167425", + "updated_at": "2026-06-19T00:43:44.167425" +} diff --git a/site/public/v1/smartphones/zenfone-8-flip-2021-global-dual-sim-td-lte-zs672ks-128gb/score/index.json b/site/public/v1/smartphones/zenfone-8-flip-2021-global-dual-sim-td-lte-zs672ks-128gb/score/index.json new file mode 100644 index 00000000000..f6a7eccb1a5 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-8-flip-2021-global-dual-sim-td-lte-zs672ks-128gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 6.4, + "camera": 21.7, + "battery": 42.9, + "display": 39.5, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-8-flip-2021-global-dual-sim-td-lte-zs672ks-256gb/index.json b/site/public/v1/smartphones/zenfone-8-flip-2021-global-dual-sim-td-lte-zs672ks-256gb/index.json new file mode 100644 index 00000000000..0cc2077d5f3 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-8-flip-2021-global-dual-sim-td-lte-zs672ks-256gb/index.json @@ -0,0 +1,73 @@ +{ + "id": 432, + "slug": "zenfone-8-flip-2021-global-dual-sim-td-lte-zs672ks-256gb", + "name": "ZenFone 8 Flip 2021 Global Dual SIM TD-LTE ZS672KS 256GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 149, + "slug": "snapdragon-888", + "name": "Snapdragon 888", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 5.0, + "gpu_name": "Adreno 660", + "url": "/v1/socs/snapdragon-888" + }, + "release_date": "2021-05-01", + "msrp_usd": 829, + "ram_gb": 8, + "storage_options_gb": [ + 256 + ], + "display": { + "size_inch": 6.67, + "resolution": "1080x2400", + "refresh_hz": 90, + "type": "AM-OLED display", + "ppi": 395 + }, + "cameras": [ + { + "type": "main", + "mp": 64.2 + } + ], + "battery_mah": 5000, + "charging_wired_w": 30.0, + "charging_wireless_w": null, + "weight_g": 230.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "11", + "connectivity": { + "bluetooth": "Bluetooth 5.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 6.4, + "camera": 21.7, + "battery": 42.9, + "display": 39.5, + "value": 43.5 + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.167425", + "updated_at": "2026-06-19T00:43:44.167425" +} diff --git a/site/public/v1/smartphones/zenfone-8-flip-2021-global-dual-sim-td-lte-zs672ks-256gb/score/index.json b/site/public/v1/smartphones/zenfone-8-flip-2021-global-dual-sim-td-lte-zs672ks-256gb/score/index.json new file mode 100644 index 00000000000..511a7c36d86 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-8-flip-2021-global-dual-sim-td-lte-zs672ks-256gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 27.6, + "performance": 6.4, + "camera": 21.7, + "battery": 42.9, + "display": 39.5, + "value": 43.5 +} diff --git a/site/public/v1/smartphones/zenfone-ares-dual-sim-global-td-lte-128gb-zs572kl/index.json b/site/public/v1/smartphones/zenfone-ares-dual-sim-global-td-lte-128gb-zs572kl/index.json new file mode 100644 index 00000000000..c90181f2dbf --- /dev/null +++ b/site/public/v1/smartphones/zenfone-ares-dual-sim-global-td-lte-128gb-zs572kl/index.json @@ -0,0 +1,76 @@ +{ + "id": 329, + "slug": "zenfone-ares-dual-sim-global-td-lte-128gb-zs572kl", + "name": "ZenFone Ares Dual SIM Global TD-LTE 128GB ZS572KL", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 116, + "slug": "snapdragon-821", + "name": "Snapdragon 821", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 530", + "url": "/v1/socs/snapdragon-821" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 8, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 5.71, + "resolution": "1440x2560", + "type": "AM-OLED display", + "ppi": 515 + }, + "cameras": [ + { + "type": "main", + "mp": 22.6 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 3300, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 170.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "7.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 14.8, + "camera": 8.4, + "battery": 4.5, + "display": 56.5, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.153418", + "updated_at": "2026-06-19T00:43:44.153418" +} diff --git a/site/public/v1/smartphones/zenfone-ares-dual-sim-global-td-lte-128gb-zs572kl/score/index.json b/site/public/v1/smartphones/zenfone-ares-dual-sim-global-td-lte-128gb-zs572kl/score/index.json new file mode 100644 index 00000000000..54ee174c7cb --- /dev/null +++ b/site/public/v1/smartphones/zenfone-ares-dual-sim-global-td-lte-128gb-zs572kl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 21.1, + "performance": 14.8, + "camera": 8.4, + "battery": 4.5, + "display": 56.5, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-go-4-5-dual-sim-zb452kg/index.json b/site/public/v1/smartphones/zenfone-go-4-5-dual-sim-zb452kg/index.json new file mode 100644 index 00000000000..07e70e8e440 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-go-4-5-dual-sim-zb452kg/index.json @@ -0,0 +1,76 @@ +{ + "id": 307, + "slug": "zenfone-go-4-5-dual-sim-zb452kg", + "name": "ZenFone Go 4.5 Dual SIM ZB452KG", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 100, + "slug": "snapdragon-200", + "name": "Snapdragon 200", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 45.0, + "gpu_name": "Qualcomm Adreno 302", + "url": "/v1/socs/snapdragon-200" + }, + "release_date": "2016-07-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 8 + ], + "display": { + "size_inch": 4.5, + "resolution": "480x845", + "type": "Color IPS TFT LCD display", + "ppi": 216 + }, + "cameras": [ + { + "type": "main", + "mp": 8.0 + }, + { + "type": "selfie", + "mp": 1.9 + } + ], + "battery_mah": 2070, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 125.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "5.1", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-B (Micro-USB)" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.150418", + "updated_at": "2026-06-19T00:43:44.150418" +} diff --git a/site/public/v1/smartphones/zenfone-go-4-5-dual-sim-zb452kg/score/index.json b/site/public/v1/smartphones/zenfone-go-4-5-dual-sim-zb452kg/score/index.json new file mode 100644 index 00000000000..c6f6aac52e1 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-go-4-5-dual-sim-zb452kg/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.3, + "performance": null, + "camera": 5.0, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-live-l1-dual-sim-lte-latam-version-d-za550kl-16gb/index.json b/site/public/v1/smartphones/zenfone-live-l1-dual-sim-lte-latam-version-d-za550kl-16gb/index.json new file mode 100644 index 00000000000..b00825c0394 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-live-l1-dual-sim-lte-latam-version-d-za550kl-16gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 330, + "slug": "zenfone-live-l1-dual-sim-lte-latam-version-d-za550kl-16gb", + "name": "ZenFone Live L1 Dual SIM LTE LATAM Version D ZA550KL 16GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.153418", + "updated_at": "2026-06-19T00:43:44.153418" +} diff --git a/site/public/v1/smartphones/zenfone-live-l1-dual-sim-lte-latam-version-d-za550kl-16gb/score/index.json b/site/public/v1/smartphones/zenfone-live-l1-dual-sim-lte-latam-version-d-za550kl-16gb/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-live-l1-dual-sim-lte-latam-version-d-za550kl-16gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-live-l1-dual-sim-td-lte-apac-version-c-za550kl-16gb-zenfone-live-l2/index.json b/site/public/v1/smartphones/zenfone-live-l1-dual-sim-td-lte-apac-version-c-za550kl-16gb-zenfone-live-l2/index.json new file mode 100644 index 00000000000..3fac42b4e95 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-live-l1-dual-sim-td-lte-apac-version-c-za550kl-16gb-zenfone-live-l2/index.json @@ -0,0 +1,76 @@ +{ + "id": 331, + "slug": "zenfone-live-l1-dual-sim-td-lte-apac-version-c-za550kl-16gb-zenfone-live-l2", + "name": "ZenFone Live L1 Dual SIM TD-LTE APAC Version C ZA550KL 16GB / ZenFone Live L2", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-12-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.153418", + "updated_at": "2026-06-19T00:43:44.153418" +} diff --git a/site/public/v1/smartphones/zenfone-live-l1-dual-sim-td-lte-apac-version-c-za550kl-16gb-zenfone-live-l2/score/index.json b/site/public/v1/smartphones/zenfone-live-l1-dual-sim-td-lte-apac-version-c-za550kl-16gb-zenfone-live-l2/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-live-l1-dual-sim-td-lte-apac-version-c-za550kl-16gb-zenfone-live-l2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-live-l1-dual-sim-td-lte-emea-version-a-za550kl-16gb-zenfone-live-l2/index.json b/site/public/v1/smartphones/zenfone-live-l1-dual-sim-td-lte-emea-version-a-za550kl-16gb-zenfone-live-l2/index.json new file mode 100644 index 00000000000..f822cad9589 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-live-l1-dual-sim-td-lte-emea-version-a-za550kl-16gb-zenfone-live-l2/index.json @@ -0,0 +1,76 @@ +{ + "id": 332, + "slug": "zenfone-live-l1-dual-sim-td-lte-emea-version-a-za550kl-16gb-zenfone-live-l2", + "name": "ZenFone Live L1 Dual SIM TD-LTE EMEA Version A ZA550KL 16GB / ZenFone Live L2", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.153418", + "updated_at": "2026-06-19T00:43:44.153418" +} diff --git a/site/public/v1/smartphones/zenfone-live-l1-dual-sim-td-lte-emea-version-a-za550kl-16gb-zenfone-live-l2/score/index.json b/site/public/v1/smartphones/zenfone-live-l1-dual-sim-td-lte-emea-version-a-za550kl-16gb-zenfone-live-l2/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-live-l1-dual-sim-td-lte-emea-version-a-za550kl-16gb-zenfone-live-l2/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-live-l1-dual-sim-td-lte-id-version-b-za550kl-16gb/index.json b/site/public/v1/smartphones/zenfone-live-l1-dual-sim-td-lte-id-version-b-za550kl-16gb/index.json new file mode 100644 index 00000000000..73f5a377706 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-live-l1-dual-sim-td-lte-id-version-b-za550kl-16gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 333, + "slug": "zenfone-live-l1-dual-sim-td-lte-id-version-b-za550kl-16gb", + "name": "ZenFone Live L1 Dual SIM TD-LTE ID Version B ZA550KL 16GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-05-21", + "msrp_usd": null, + "ram_gb": 1, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.153418", + "updated_at": "2026-06-19T00:43:44.153418" +} diff --git a/site/public/v1/smartphones/zenfone-live-l1-dual-sim-td-lte-id-version-b-za550kl-16gb/score/index.json b/site/public/v1/smartphones/zenfone-live-l1-dual-sim-td-lte-id-version-b-za550kl-16gb/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-live-l1-dual-sim-td-lte-id-version-b-za550kl-16gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-live-l1-dual-sim-td-lte-id-version-b-za550kl-32gb/index.json b/site/public/v1/smartphones/zenfone-live-l1-dual-sim-td-lte-id-version-b-za550kl-32gb/index.json new file mode 100644 index 00000000000..e4983040e64 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-live-l1-dual-sim-td-lte-id-version-b-za550kl-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 334, + "slug": "zenfone-live-l1-dual-sim-td-lte-id-version-b-za550kl-32gb", + "name": "ZenFone Live L1 Dual SIM TD-LTE ID Version B ZA550KL 32GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-05-21", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.153418", + "updated_at": "2026-06-19T00:43:44.153418" +} diff --git a/site/public/v1/smartphones/zenfone-live-l1-dual-sim-td-lte-id-version-b-za550kl-32gb/score/index.json b/site/public/v1/smartphones/zenfone-live-l1-dual-sim-td-lte-id-version-b-za550kl-32gb/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-live-l1-dual-sim-td-lte-id-version-b-za550kl-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-live-l1-dual-sim-td-lte-in-za551kl-16gb/index.json b/site/public/v1/smartphones/zenfone-live-l1-dual-sim-td-lte-in-za551kl-16gb/index.json new file mode 100644 index 00000000000..f264ad5cfaa --- /dev/null +++ b/site/public/v1/smartphones/zenfone-live-l1-dual-sim-td-lte-in-za551kl-16gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 335, + "slug": "zenfone-live-l1-dual-sim-td-lte-in-za551kl-16gb", + "name": "ZenFone Live L1 Dual SIM TD-LTE IN ZA551KL 16GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-05-21", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 4.9 + } + ], + "battery_mah": 3000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 140.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.153418", + "updated_at": "2026-06-19T00:43:44.153418" +} diff --git a/site/public/v1/smartphones/zenfone-live-l1-dual-sim-td-lte-in-za551kl-16gb/score/index.json b/site/public/v1/smartphones/zenfone-live-l1-dual-sim-td-lte-in-za551kl-16gb/score/index.json new file mode 100644 index 00000000000..1d990ac27d5 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-live-l1-dual-sim-td-lte-in-za551kl-16gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.4, + "performance": null, + "camera": 5.3, + "battery": 0.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-max-m1-dual-sim-lte-na-version-d-zb555kl-16gb/index.json b/site/public/v1/smartphones/zenfone-max-m1-dual-sim-lte-na-version-d-zb555kl-16gb/index.json new file mode 100644 index 00000000000..7950a7a31fa --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-m1-dual-sim-lte-na-version-d-zb555kl-16gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 336, + "slug": "zenfone-max-m1-dual-sim-lte-na-version-d-zb555kl-16gb", + "name": "ZenFone Max M1 Dual SIM LTE NA Version D ZB555KL 16GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 111, + "slug": "snapdragon-425", + "name": "Snapdragon 425", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 308", + "url": "/v1/socs/snapdragon-425" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 2, + "storage_options_gb": [ + 16 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.153418", + "updated_at": "2026-06-19T00:43:44.153418" +} diff --git a/site/public/v1/smartphones/zenfone-max-m1-dual-sim-lte-na-version-d-zb555kl-16gb/score/index.json b/site/public/v1/smartphones/zenfone-max-m1-dual-sim-lte-na-version-d-zb555kl-16gb/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-m1-dual-sim-lte-na-version-d-zb555kl-16gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-max-m1-dual-sim-td-lte-apac-version-c-zb555kl-32gb/index.json b/site/public/v1/smartphones/zenfone-max-m1-dual-sim-td-lte-apac-version-c-zb555kl-32gb/index.json new file mode 100644 index 00000000000..d2e977f909f --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-m1-dual-sim-td-lte-apac-version-c-zb555kl-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 337, + "slug": "zenfone-max-m1-dual-sim-td-lte-apac-version-c-zb555kl-32gb", + "name": "ZenFone Max M1 Dual SIM TD-LTE APAC Version C ZB555KL 32GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-09-21", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.154418", + "updated_at": "2026-06-19T00:43:44.154418" +} diff --git a/site/public/v1/smartphones/zenfone-max-m1-dual-sim-td-lte-apac-version-c-zb555kl-32gb/score/index.json b/site/public/v1/smartphones/zenfone-max-m1-dual-sim-td-lte-apac-version-c-zb555kl-32gb/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-m1-dual-sim-td-lte-apac-version-c-zb555kl-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-max-m1-dual-sim-td-lte-emea-version-a-zb555kl-32gb/index.json b/site/public/v1/smartphones/zenfone-max-m1-dual-sim-td-lte-emea-version-a-zb555kl-32gb/index.json new file mode 100644 index 00000000000..e07e3119360 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-m1-dual-sim-td-lte-emea-version-a-zb555kl-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 338, + "slug": "zenfone-max-m1-dual-sim-td-lte-emea-version-a-zb555kl-32gb", + "name": "ZenFone Max M1 Dual SIM TD-LTE EMEA Version A ZB555KL 32GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-06-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.154418", + "updated_at": "2026-06-19T00:43:44.154418" +} diff --git a/site/public/v1/smartphones/zenfone-max-m1-dual-sim-td-lte-emea-version-a-zb555kl-32gb/score/index.json b/site/public/v1/smartphones/zenfone-max-m1-dual-sim-td-lte-emea-version-a-zb555kl-32gb/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-m1-dual-sim-td-lte-emea-version-a-zb555kl-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-max-m1-dual-sim-td-lte-in-version-b-zb555kl-32gb/index.json b/site/public/v1/smartphones/zenfone-max-m1-dual-sim-td-lte-in-version-b-zb555kl-32gb/index.json new file mode 100644 index 00000000000..856aa0ae006 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-m1-dual-sim-td-lte-in-version-b-zb555kl-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 339, + "slug": "zenfone-max-m1-dual-sim-td-lte-in-version-b-zb555kl-32gb", + "name": "ZenFone Max M1 Dual SIM TD-LTE IN Version B ZB555KL 32GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-09-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.154418", + "updated_at": "2026-06-19T00:43:44.154418" +} diff --git a/site/public/v1/smartphones/zenfone-max-m1-dual-sim-td-lte-in-version-b-zb555kl-32gb/score/index.json b/site/public/v1/smartphones/zenfone-max-m1-dual-sim-td-lte-in-version-b-zb555kl-32gb/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-m1-dual-sim-td-lte-in-version-b-zb555kl-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-max-m1-dual-sim-td-lte-in-zb556kl-32gb/index.json b/site/public/v1/smartphones/zenfone-max-m1-dual-sim-td-lte-in-zb556kl-32gb/index.json new file mode 100644 index 00000000000..abd6820d2d0 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-m1-dual-sim-td-lte-in-zb556kl-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 340, + "slug": "zenfone-max-m1-dual-sim-td-lte-in-zb556kl-32gb", + "name": "ZenFone Max M1 Dual SIM TD-LTE IN ZB556KL 32GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-10-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.154418", + "updated_at": "2026-06-19T00:43:44.154418" +} diff --git a/site/public/v1/smartphones/zenfone-max-m1-dual-sim-td-lte-in-zb556kl-32gb/score/index.json b/site/public/v1/smartphones/zenfone-max-m1-dual-sim-td-lte-in-zb556kl-32gb/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-m1-dual-sim-td-lte-in-zb556kl-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-max-m2-dtv-dual-sim-lte-br-version-e-zb555kl-32gb/index.json b/site/public/v1/smartphones/zenfone-max-m2-dtv-dual-sim-lte-br-version-e-zb555kl-32gb/index.json new file mode 100644 index 00000000000..6e16dd055c9 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-m2-dtv-dual-sim-lte-br-version-e-zb555kl-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 341, + "slug": "zenfone-max-m2-dtv-dual-sim-lte-br-version-e-zb555kl-32gb", + "name": "ZenFone Max M2 DTV Dual SIM LTE BR Version E ZB555KL 32GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 112, + "slug": "snapdragon-430", + "name": "Snapdragon 430", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 28.0, + "gpu_name": "Qualcomm Adreno 505", + "url": "/v1/socs/snapdragon-430" + }, + "release_date": "2018-12-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.45, + "resolution": "720x1440", + "type": "Color IPS TFT LCD display", + "ppi": 295 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 150.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.0", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.154418", + "updated_at": "2026-06-19T00:43:44.154418" +} diff --git a/site/public/v1/smartphones/zenfone-max-m2-dtv-dual-sim-lte-br-version-e-zb555kl-32gb/score/index.json b/site/public/v1/smartphones/zenfone-max-m2-dtv-dual-sim-lte-br-version-e-zb555kl-32gb/score/index.json new file mode 100644 index 00000000000..90f7b72354d --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-m2-dtv-dual-sim-lte-br-version-e-zb555kl-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 18.4, + "performance": null, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-apac-version-b-32gb-zb633kl/index.json b/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-apac-version-b-32gb-zb633kl/index.json new file mode 100644 index 00000000000..41fd90f513c --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-apac-version-b-32gb-zb633kl/index.json @@ -0,0 +1,76 @@ +{ + "id": 342, + "slug": "zenfone-max-m2-dual-sim-td-lte-apac-version-b-32gb-zb633kl", + "name": "ZenFone Max M2 Dual SIM TD-LTE APAC Version B 32GB ZB633KL", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2018-12-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.154418", + "updated_at": "2026-06-19T00:43:44.154418" +} diff --git a/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-apac-version-b-32gb-zb633kl/score/index.json b/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-apac-version-b-32gb-zb633kl/score/index.json new file mode 100644 index 00000000000..a59635bee66 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-apac-version-b-32gb-zb633kl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-apac-version-b-64gb-zb633kl/index.json b/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-apac-version-b-64gb-zb633kl/index.json new file mode 100644 index 00000000000..43469047929 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-apac-version-b-64gb-zb633kl/index.json @@ -0,0 +1,76 @@ +{ + "id": 343, + "slug": "zenfone-max-m2-dual-sim-td-lte-apac-version-b-64gb-zb633kl", + "name": "ZenFone Max M2 Dual SIM TD-LTE APAC Version B 64GB ZB633KL", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2018-12-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.154418", + "updated_at": "2026-06-19T00:43:44.154418" +} diff --git a/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-apac-version-b-64gb-zb633kl/score/index.json b/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-apac-version-b-64gb-zb633kl/score/index.json new file mode 100644 index 00000000000..a59635bee66 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-apac-version-b-64gb-zb633kl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-emea-version-a-32gb-zb633kl/index.json b/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-emea-version-a-32gb-zb633kl/index.json new file mode 100644 index 00000000000..442ddbf48a0 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-emea-version-a-32gb-zb633kl/index.json @@ -0,0 +1,76 @@ +{ + "id": 344, + "slug": "zenfone-max-m2-dual-sim-td-lte-emea-version-a-32gb-zb633kl", + "name": "ZenFone Max M2 Dual SIM TD-LTE EMEA Version A 32GB ZB633KL", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2018-12-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.154418", + "updated_at": "2026-06-19T00:43:44.154418" +} diff --git a/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-emea-version-a-32gb-zb633kl/score/index.json b/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-emea-version-a-32gb-zb633kl/score/index.json new file mode 100644 index 00000000000..a59635bee66 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-emea-version-a-32gb-zb633kl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-emea-version-a-64gb-zb633kl/index.json b/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-emea-version-a-64gb-zb633kl/index.json new file mode 100644 index 00000000000..41c486731dc --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-emea-version-a-64gb-zb633kl/index.json @@ -0,0 +1,76 @@ +{ + "id": 376, + "slug": "zenfone-max-m2-dual-sim-td-lte-emea-version-a-64gb-zb633kl", + "name": "ZenFone Max M2 Dual SIM TD-LTE EMEA Version A 64GB ZB633KL", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2019-01-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.160426", + "updated_at": "2026-06-19T00:43:44.160426" +} diff --git a/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-emea-version-a-64gb-zb633kl/score/index.json b/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-emea-version-a-64gb-zb633kl/score/index.json new file mode 100644 index 00000000000..a59635bee66 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-emea-version-a-64gb-zb633kl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-in-32gb-zb632kl/index.json b/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-in-32gb-zb632kl/index.json new file mode 100644 index 00000000000..06e6e71e93c --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-in-32gb-zb632kl/index.json @@ -0,0 +1,76 @@ +{ + "id": 345, + "slug": "zenfone-max-m2-dual-sim-td-lte-in-32gb-zb632kl", + "name": "ZenFone Max M2 Dual SIM TD-LTE IN 32GB ZB632KL", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2018-12-18", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.155418", + "updated_at": "2026-06-19T00:43:44.155418" +} diff --git a/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-in-32gb-zb632kl/score/index.json b/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-in-32gb-zb632kl/score/index.json new file mode 100644 index 00000000000..a59635bee66 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-in-32gb-zb632kl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-in-64gb-zb632kl/index.json b/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-in-64gb-zb632kl/index.json new file mode 100644 index 00000000000..79b64674854 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-in-64gb-zb632kl/index.json @@ -0,0 +1,76 @@ +{ + "id": 346, + "slug": "zenfone-max-m2-dual-sim-td-lte-in-64gb-zb632kl", + "name": "ZenFone Max M2 Dual SIM TD-LTE IN 64GB ZB632KL", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 126, + "slug": "snapdragon-632", + "name": "Snapdragon 632", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 506", + "url": "/v1/socs/snapdragon-632" + }, + "release_date": "2018-12-18", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "720x1520", + "type": "Color IPS TFT LCD display", + "ppi": 269 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 4000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 160.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 4.2", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.155418", + "updated_at": "2026-06-19T00:43:44.155418" +} diff --git a/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-in-64gb-zb632kl/score/index.json b/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-in-64gb-zb632kl/score/index.json new file mode 100644 index 00000000000..a59635bee66 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-m2-dual-sim-td-lte-in-64gb-zb632kl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 13.8, + "performance": 0.0, + "camera": 5.3, + "battery": 15.0, + "display": 35.0, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-max-pro-m1-dual-sim-td-lte-apac-version-b-zb602kl-32gb/index.json b/site/public/v1/smartphones/zenfone-max-pro-m1-dual-sim-td-lte-apac-version-b-zb602kl-32gb/index.json new file mode 100644 index 00000000000..ff652be9927 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-pro-m1-dual-sim-td-lte-apac-version-b-zb602kl-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 347, + "slug": "zenfone-max-pro-m1-dual-sim-td-lte-apac-version-b-zb602kl-32gb", + "name": "ZenFone Max Pro M1 Dual SIM TD-LTE APAC Version B ZB602KL 32GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-04-26", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.155418", + "updated_at": "2026-06-19T00:43:44.155418" +} diff --git a/site/public/v1/smartphones/zenfone-max-pro-m1-dual-sim-td-lte-apac-version-b-zb602kl-32gb/score/index.json b/site/public/v1/smartphones/zenfone-max-pro-m1-dual-sim-td-lte-apac-version-b-zb602kl-32gb/score/index.json new file mode 100644 index 00000000000..90f3b7ec534 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-pro-m1-dual-sim-td-lte-apac-version-b-zb602kl-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-max-pro-m1-dual-sim-td-lte-apac-version-b-zb602kl-64gb/index.json b/site/public/v1/smartphones/zenfone-max-pro-m1-dual-sim-td-lte-apac-version-b-zb602kl-64gb/index.json new file mode 100644 index 00000000000..94559c72e5e --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-pro-m1-dual-sim-td-lte-apac-version-b-zb602kl-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 348, + "slug": "zenfone-max-pro-m1-dual-sim-td-lte-apac-version-b-zb602kl-64gb", + "name": "ZenFone Max Pro M1 Dual SIM TD-LTE APAC Version B ZB602KL 64GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-04-26", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 1.5, + "camera": 6.3, + "battery": 30.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.155418", + "updated_at": "2026-06-19T00:43:44.155418" +} diff --git a/site/public/v1/smartphones/zenfone-max-pro-m1-dual-sim-td-lte-apac-version-b-zb602kl-64gb/score/index.json b/site/public/v1/smartphones/zenfone-max-pro-m1-dual-sim-td-lte-apac-version-b-zb602kl-64gb/score/index.json new file mode 100644 index 00000000000..75dd310b80b --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-pro-m1-dual-sim-td-lte-apac-version-b-zb602kl-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 1.5, + "camera": 6.3, + "battery": 30.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-max-pro-m1-dual-sim-td-lte-in-zb601kl-32gb/index.json b/site/public/v1/smartphones/zenfone-max-pro-m1-dual-sim-td-lte-in-zb601kl-32gb/index.json new file mode 100644 index 00000000000..678298e43d0 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-pro-m1-dual-sim-td-lte-in-zb601kl-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 349, + "slug": "zenfone-max-pro-m1-dual-sim-td-lte-in-zb601kl-32gb", + "name": "ZenFone Max Pro M1 Dual SIM TD-LTE IN ZB601KL 32GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-07-01", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.155418", + "updated_at": "2026-06-19T00:43:44.155418" +} diff --git a/site/public/v1/smartphones/zenfone-max-pro-m1-dual-sim-td-lte-in-zb601kl-32gb/score/index.json b/site/public/v1/smartphones/zenfone-max-pro-m1-dual-sim-td-lte-in-zb601kl-32gb/score/index.json new file mode 100644 index 00000000000..90f3b7ec534 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-pro-m1-dual-sim-td-lte-in-zb601kl-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-max-pro-m1-dual-sim-td-lte-in-zb601kl-64gb/index.json b/site/public/v1/smartphones/zenfone-max-pro-m1-dual-sim-td-lte-in-zb601kl-64gb/index.json new file mode 100644 index 00000000000..5793ebf055c --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-pro-m1-dual-sim-td-lte-in-zb601kl-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 350, + "slug": "zenfone-max-pro-m1-dual-sim-td-lte-in-zb601kl-64gb", + "name": "ZenFone Max Pro M1 Dual SIM TD-LTE IN ZB601KL 64GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-08-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 1.5, + "camera": 6.3, + "battery": 30.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.155418", + "updated_at": "2026-06-19T00:43:44.155418" +} diff --git a/site/public/v1/smartphones/zenfone-max-pro-m1-dual-sim-td-lte-in-zb601kl-64gb/score/index.json b/site/public/v1/smartphones/zenfone-max-pro-m1-dual-sim-td-lte-in-zb601kl-64gb/score/index.json new file mode 100644 index 00000000000..75dd310b80b --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-pro-m1-dual-sim-td-lte-in-zb601kl-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 1.5, + "camera": 6.3, + "battery": 30.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-max-pro-m1-global-dual-sim-td-lte-version-a-zb602kl-32gb/index.json b/site/public/v1/smartphones/zenfone-max-pro-m1-global-dual-sim-td-lte-version-a-zb602kl-32gb/index.json new file mode 100644 index 00000000000..1663e3246a0 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-pro-m1-global-dual-sim-td-lte-version-a-zb602kl-32gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 351, + "slug": "zenfone-max-pro-m1-global-dual-sim-td-lte-version-a-zb602kl-32gb", + "name": "ZenFone Max Pro M1 Global Dual SIM TD-LTE Version A ZB602KL 32GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-04-26", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 13.0 + }, + { + "type": "selfie", + "mp": 8.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.155418", + "updated_at": "2026-06-19T00:43:44.155418" +} diff --git a/site/public/v1/smartphones/zenfone-max-pro-m1-global-dual-sim-td-lte-version-a-zb602kl-32gb/score/index.json b/site/public/v1/smartphones/zenfone-max-pro-m1-global-dual-sim-td-lte-version-a-zb602kl-32gb/score/index.json new file mode 100644 index 00000000000..90f3b7ec534 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-pro-m1-global-dual-sim-td-lte-version-a-zb602kl-32gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.1, + "performance": 0.0, + "camera": 5.3, + "battery": 30.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-max-pro-m1-global-dual-sim-td-lte-version-a-zb602kl-64gb/index.json b/site/public/v1/smartphones/zenfone-max-pro-m1-global-dual-sim-td-lte-version-a-zb602kl-64gb/index.json new file mode 100644 index 00000000000..84ca31c18b6 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-pro-m1-global-dual-sim-td-lte-version-a-zb602kl-64gb/index.json @@ -0,0 +1,76 @@ +{ + "id": 352, + "slug": "zenfone-max-pro-m1-global-dual-sim-td-lte-version-a-zb602kl-64gb", + "name": "ZenFone Max Pro M1 Global Dual SIM TD-LTE Version A ZB602KL 64GB", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2018-04-26", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 5.99, + "resolution": "1080x2160", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 15.9 + }, + { + "type": "selfie", + "mp": 15.9 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 180.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 1.5, + "camera": 6.3, + "battery": 30.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.156419", + "updated_at": "2026-06-19T00:43:44.156419" +} diff --git a/site/public/v1/smartphones/zenfone-max-pro-m1-global-dual-sim-td-lte-version-a-zb602kl-64gb/score/index.json b/site/public/v1/smartphones/zenfone-max-pro-m1-global-dual-sim-td-lte-version-a-zb602kl-64gb/score/index.json new file mode 100644 index 00000000000..75dd310b80b --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-pro-m1-global-dual-sim-td-lte-version-a-zb602kl-64gb/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 20.8, + "performance": 1.5, + "camera": 6.3, + "battery": 30.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-max-pro-m2-dual-sim-td-lte-apac-version-b-128gb-zb631kl/index.json b/site/public/v1/smartphones/zenfone-max-pro-m2-dual-sim-td-lte-apac-version-b-128gb-zb631kl/index.json new file mode 100644 index 00000000000..8d65f88083b --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-pro-m2-dual-sim-td-lte-apac-version-b-128gb-zb631kl/index.json @@ -0,0 +1,76 @@ +{ + "id": 353, + "slug": "zenfone-max-pro-m2-dual-sim-td-lte-apac-version-b-128gb-zb631kl", + "name": "ZenFone Max Pro M2 Dual SIM TD-LTE APAC Version B 128GB ZB631KL", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-12-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 18.0, + "camera": 5.1, + "battery": 30.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.156419", + "updated_at": "2026-06-19T00:43:44.156419" +} diff --git a/site/public/v1/smartphones/zenfone-max-pro-m2-dual-sim-td-lte-apac-version-b-128gb-zb631kl/score/index.json b/site/public/v1/smartphones/zenfone-max-pro-m2-dual-sim-td-lte-apac-version-b-128gb-zb631kl/score/index.json new file mode 100644 index 00000000000..b6c95b5b229 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-pro-m2-dual-sim-td-lte-apac-version-b-128gb-zb631kl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 18.0, + "camera": 5.1, + "battery": 30.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-max-pro-m2-dual-sim-td-lte-apac-version-b-64gb-zb631kl/index.json b/site/public/v1/smartphones/zenfone-max-pro-m2-dual-sim-td-lte-apac-version-b-64gb-zb631kl/index.json new file mode 100644 index 00000000000..2ccdd1c8061 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-pro-m2-dual-sim-td-lte-apac-version-b-64gb-zb631kl/index.json @@ -0,0 +1,76 @@ +{ + "id": 377, + "slug": "zenfone-max-pro-m2-dual-sim-td-lte-apac-version-b-64gb-zb631kl", + "name": "ZenFone Max Pro M2 Dual SIM TD-LTE APAC Version B 64GB ZB631KL", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2019-01-01", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 18.0, + "camera": 5.1, + "battery": 30.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.160426", + "updated_at": "2026-06-19T00:43:44.160426" +} diff --git a/site/public/v1/smartphones/zenfone-max-pro-m2-dual-sim-td-lte-apac-version-b-64gb-zb631kl/score/index.json b/site/public/v1/smartphones/zenfone-max-pro-m2-dual-sim-td-lte-apac-version-b-64gb-zb631kl/score/index.json new file mode 100644 index 00000000000..b6c95b5b229 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-pro-m2-dual-sim-td-lte-apac-version-b-64gb-zb631kl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 18.0, + "camera": 5.1, + "battery": 30.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-max-pro-m2-dual-sim-td-lte-in-id-32gb-zb630kl/index.json b/site/public/v1/smartphones/zenfone-max-pro-m2-dual-sim-td-lte-in-id-32gb-zb630kl/index.json new file mode 100644 index 00000000000..4c8cea7d3f2 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-pro-m2-dual-sim-td-lte-in-id-32gb-zb630kl/index.json @@ -0,0 +1,76 @@ +{ + "id": 354, + "slug": "zenfone-max-pro-m2-dual-sim-td-lte-in-id-32gb-zb630kl", + "name": "ZenFone Max Pro M2 Dual SIM TD-LTE IN ID 32GB ZB630KL", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-12-18", + "msrp_usd": null, + "ram_gb": 3, + "storage_options_gb": [ + 32 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 18.0, + "camera": 5.1, + "battery": 30.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.156419", + "updated_at": "2026-06-19T00:43:44.156419" +} diff --git a/site/public/v1/smartphones/zenfone-max-pro-m2-dual-sim-td-lte-in-id-32gb-zb630kl/score/index.json b/site/public/v1/smartphones/zenfone-max-pro-m2-dual-sim-td-lte-in-id-32gb-zb630kl/score/index.json new file mode 100644 index 00000000000..b6c95b5b229 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-pro-m2-dual-sim-td-lte-in-id-32gb-zb630kl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 18.0, + "camera": 5.1, + "battery": 30.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-max-pro-m2-dual-sim-td-lte-in-id-64gb-zb630kl/index.json b/site/public/v1/smartphones/zenfone-max-pro-m2-dual-sim-td-lte-in-id-64gb-zb630kl/index.json new file mode 100644 index 00000000000..62a3c1032f6 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-pro-m2-dual-sim-td-lte-in-id-64gb-zb630kl/index.json @@ -0,0 +1,76 @@ +{ + "id": 355, + "slug": "zenfone-max-pro-m2-dual-sim-td-lte-in-id-64gb-zb630kl", + "name": "ZenFone Max Pro M2 Dual SIM TD-LTE IN ID 64GB ZB630KL", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-12-18", + "msrp_usd": null, + "ram_gb": 4, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 18.0, + "camera": 5.1, + "battery": 30.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.156419", + "updated_at": "2026-06-19T00:43:44.156419" +} diff --git a/site/public/v1/smartphones/zenfone-max-pro-m2-dual-sim-td-lte-in-id-64gb-zb630kl/score/index.json b/site/public/v1/smartphones/zenfone-max-pro-m2-dual-sim-td-lte-in-id-64gb-zb630kl/score/index.json new file mode 100644 index 00000000000..b6c95b5b229 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-pro-m2-dual-sim-td-lte-in-id-64gb-zb630kl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 24.6, + "performance": 18.0, + "camera": 5.1, + "battery": 30.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/zenfone-max-pro-m2-global-dual-sim-td-lte-version-a-64gb-zb631kl/index.json b/site/public/v1/smartphones/zenfone-max-pro-m2-global-dual-sim-td-lte-version-a-64gb-zb631kl/index.json new file mode 100644 index 00000000000..f15eb5ca89d --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-pro-m2-global-dual-sim-td-lte-version-a-64gb-zb631kl/index.json @@ -0,0 +1,76 @@ +{ + "id": 356, + "slug": "zenfone-max-pro-m2-global-dual-sim-td-lte-version-a-64gb-zb631kl", + "name": "ZenFone Max Pro M2 Global Dual SIM TD-LTE Version A 64GB ZB631KL", + "brand": { + "id": 89, + "slug": "asus", + "name": "ASUS", + "country": "TW", + "url": "/v1/brands/asus" + }, + "soc": { + "id": 121, + "slug": "snapdragon-660", + "name": "Snapdragon 660", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 512", + "url": "/v1/socs/snapdragon-660" + }, + "release_date": "2018-12-18", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.26, + "resolution": "1080x2280", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 13.0 + } + ], + "battery_mah": 5000, + "charging_wired_w": 10.0, + "charging_wireless_w": null, + "weight_g": 175.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB Micro-AB" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 25.0, + "performance": 19.5, + "camera": 5.1, + "battery": 30.0, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.156419", + "updated_at": "2026-06-19T00:43:44.156419" +} diff --git a/site/public/v1/smartphones/zenfone-max-pro-m2-global-dual-sim-td-lte-version-a-64gb-zb631kl/score/index.json b/site/public/v1/smartphones/zenfone-max-pro-m2-global-dual-sim-td-lte-version-a-64gb-zb631kl/score/index.json new file mode 100644 index 00000000000..d0d1119f698 --- /dev/null +++ b/site/public/v1/smartphones/zenfone-max-pro-m2-global-dual-sim-td-lte-version-a-64gb-zb631kl/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 25.0, + "performance": 19.5, + "camera": 5.1, + "battery": 30.0, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/zero-6-dual-sim-td-lte-64gb-x620b/index.json b/site/public/v1/smartphones/zero-6-dual-sim-td-lte-64gb-x620b/index.json new file mode 100644 index 00000000000..75dcbb935a9 --- /dev/null +++ b/site/public/v1/smartphones/zero-6-dual-sim-td-lte-64gb-x620b/index.json @@ -0,0 +1,76 @@ +{ + "id": 1347, + "slug": "zero-6-dual-sim-td-lte-64gb-x620b", + "name": "ZERO 6 Dual SIM TD-LTE 64GB X620B", + "brand": { + "id": 19, + "slug": "infinix", + "name": "Infinix Mobile", + "country": "CN", + "url": "/v1/brands/infinix" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 64 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3650, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.4, + "performance": 1.5, + "camera": 5.1, + "battery": 9.8, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.320606", + "updated_at": "2026-06-19T00:43:44.320606" +} diff --git a/site/public/v1/smartphones/zero-6-dual-sim-td-lte-64gb-x620b/score/index.json b/site/public/v1/smartphones/zero-6-dual-sim-td-lte-64gb-x620b/score/index.json new file mode 100644 index 00000000000..277cc92f221 --- /dev/null +++ b/site/public/v1/smartphones/zero-6-dual-sim-td-lte-64gb-x620b/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.4, + "performance": 1.5, + "camera": 5.1, + "battery": 9.8, + "display": 45.3, + "value": null +} diff --git a/site/public/v1/smartphones/zero-6-pro-dual-sim-td-lte-128gb-x620/index.json b/site/public/v1/smartphones/zero-6-pro-dual-sim-td-lte-128gb-x620/index.json new file mode 100644 index 00000000000..9289091184e --- /dev/null +++ b/site/public/v1/smartphones/zero-6-pro-dual-sim-td-lte-128gb-x620/index.json @@ -0,0 +1,76 @@ +{ + "id": 1348, + "slug": "zero-6-pro-dual-sim-td-lte-128gb-x620", + "name": "ZERO 6 Pro Dual SIM TD-LTE 128GB X620", + "brand": { + "id": 19, + "slug": "infinix", + "name": "Infinix Mobile", + "country": "CN", + "url": "/v1/brands/infinix" + }, + "soc": { + "id": 120, + "slug": "snapdragon-636", + "name": "Snapdragon 636", + "manufacturer": { + "slug": "qualcomm", + "name": "Qualcomm", + "url": "/v1/brands/qualcomm" + }, + "process_nm": 14.0, + "gpu_name": "Adreno 509", + "url": "/v1/socs/snapdragon-636" + }, + "release_date": "2019-03-01", + "msrp_usd": null, + "ram_gb": 6, + "storage_options_gb": [ + 128 + ], + "display": { + "size_inch": 6.18, + "resolution": "1080x2246", + "type": "Color IPS TFT LCD display", + "ppi": 403 + }, + "cameras": [ + { + "type": "main", + "mp": 12.2 + }, + { + "type": "selfie", + "mp": 19.7 + } + ], + "battery_mah": 3650, + "charging_wired_w": null, + "charging_wireless_w": null, + "weight_g": 178.0, + "dimensions": {}, + "ip_rating": null, + "os": "Android", + "os_version": "8.1", + "connectivity": { + "bluetooth": "Bluetooth 5.0", + "usb": "USB C reversible" + }, + "image_url": null, + "images": [], + "score": { + "algorithm_version": "1.0.0", + "overall": 15.4, + "performance": 1.5, + "camera": 5.1, + "battery": 9.8, + "display": 45.3, + "value": null + }, + "verified": false, + "source_urls": [ + "https://www.kaggle.com/datasets/sady36/mobile-phones-specs" + ], + "created_at": "2026-06-19T00:43:44.320606", + "updated_at": "2026-06-19T00:43:44.320606" +} diff --git a/site/public/v1/smartphones/zero-6-pro-dual-sim-td-lte-128gb-x620/score/index.json b/site/public/v1/smartphones/zero-6-pro-dual-sim-td-lte-128gb-x620/score/index.json new file mode 100644 index 00000000000..277cc92f221 --- /dev/null +++ b/site/public/v1/smartphones/zero-6-pro-dual-sim-td-lte-128gb-x620/score/index.json @@ -0,0 +1,9 @@ +{ + "algorithm_version": "1.0.0", + "overall": 15.4, + "performance": 1.5, + "camera": 5.1, + "battery": 9.8, + "display": 45.3, + "value": null +}